SENTRY-2458: Separate Web UI and service from service-server to prevent circular dependencies (Brian Towels, reviewed by Na Li, Stephen Moist, kalyan kumar kalvagadda)
diff --git a/pom.xml b/pom.xml
index 46ca38e..f28be5a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1192,6 +1192,9 @@
                   <exclude>**/THIRD-PARTY.properties</exclude>
                   <exclude>**/THIRD-PARTY.ftl</exclude>
                   <exclude>**/resources/licences/*</exclude>
+                  <exclude>**/*.svg</exclude>
+                  <exclude>**/*.woff</exclude>
+                  <exclude>**/*.woff2</exclude>
                   <!-- Lombok Config File -->
                   <exclude>lombok.config</exclude>
                 </excludes>
diff --git a/sentry-dist/pom.xml b/sentry-dist/pom.xml
index 62558d2..d6429bd 100644
--- a/sentry-dist/pom.xml
+++ b/sentry-dist/pom.xml
@@ -41,6 +41,12 @@
     <dependency>
       <groupId>org.apache.sentry</groupId>
       <artifactId>sentry-core-model-solr</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>org.eclipse.jetty</groupId>
+          <artifactId>*</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.sentry</groupId>
@@ -57,6 +63,40 @@
     <dependency>
       <groupId>org.apache.sentry</groupId>
       <artifactId>sentry-binding-solr</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>org.eclipse.jetty</groupId>
+          <artifactId>jetty-continuation</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.eclipse.jetty</groupId>
+          <artifactId>jetty-io</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.eclipse.jetty</groupId>
+          <artifactId>jetty-jmx</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.eclipse.jetty</groupId>
+          <artifactId>jetty-deploy</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.eclipse.jetty</groupId>
+          <artifactId>jetty-rewrite</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.eclipse.jetty</groupId>
+          <artifactId>jetty-security</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.eclipse.jetty</groupId>
+          <artifactId>jetty-servlets</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.eclipse.jetty</groupId>
+          <artifactId>jetty-xml</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.sentry</groupId>
@@ -120,6 +160,11 @@
     </dependency>
     <dependency>
       <groupId>org.apache.sentry</groupId>
+      <artifactId>sentry-service-web</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sentry</groupId>
       <artifactId>sentry-policy-engine</artifactId>
       <version>${project.version}</version>
     </dependency>
diff --git a/sentry-dist/src/license/THIRD-PARTY.properties b/sentry-dist/src/license/THIRD-PARTY.properties
index a1084db..aecd1b8 100644
--- a/sentry-dist/src/license/THIRD-PARTY.properties
+++ b/sentry-dist/src/license/THIRD-PARTY.properties
@@ -8,6 +8,7 @@
 # - CDDL 1.0
 # - CDDL 1.1
 # - CDDL 2
+# - CDDL License
 # - CDDL_1.0
 # - Common Public License Version 1.0
 # - Eclipse Public License - Version 1.0
@@ -23,22 +24,20 @@
 # - The Apache License, Version 2.0
 # - The Apache Software License, Version 1.1
 # - The Apache Software License, Version 2.0
-# - The BSD 3-Clause License
+# - The Go license
 # - http://ant-contrib.sourceforge.net/tasks/LICENSE.txt
 #-------------------------------------------------------------------------------
 # Please fill the missing licenses for dependencies :
 #
 #
-#Mon Jul 09 14:15:21 CDT 2018
+#Thu Nov 29 13:14:54 CST 2018
 ant--ant--1.5=The Apache Software License, Version 2.0
-asm--asm--3.1=BSD
 dom4j--dom4j--1.6.1=BSD
 javax.servlet--jsp-api--2.0=CDDL 2
-javax.servlet--servlet-api--2.5=CDDL 1.0
+javax.servlet--servlet-api--2.4=
 javax.servlet.jsp--jsp-api--2.1=CDDL 1.0
 javax.transaction--transaction-api--1.1=CDDL 2
 org.apache.zookeeper--zookeeper--3.4.5=The Apache Software License, Version 2.0
-org.apache.zookeeper--zookeeper--3.4.6=The Apache Software License, Version 2.0
 org.codehaus.jettison--jettison--1.1=Apache 2.0
 org.restlet.jee--org.restlet--2.3.0=
 org.restlet.jee--org.restlet.ext.servlet--2.3.0=
diff --git a/sentry-dist/src/main/assembly/bin.xml b/sentry-dist/src/main/assembly/bin.xml
index 986530c..7c359fa 100644
--- a/sentry-dist/src/main/assembly/bin.xml
+++ b/sentry-dist/src/main/assembly/bin.xml
@@ -46,6 +46,7 @@
         <exclude>org.apache.derby:derby</exclude>
         <!-- SENTRY-2283 multiple versions of metrics cause failures on startup -->
         <exclude>io.dropwizard.metrics:*</exclude>
+        <exclude>org.mortbay.jetty:*</exclude>
         <!-- exclude the original jars, we'll add them in later with the shaded versions. -->
         <exclude>org.apache.sentry:sentry-service-server</exclude>
         <exclude>org.apache.sentry:sentry-hdfs-service</exclude>
diff --git a/sentry-provider/sentry-provider-db/pom.xml b/sentry-provider/sentry-provider-db/pom.xml
index df56947..4321639 100644
--- a/sentry-provider/sentry-provider-db/pom.xml
+++ b/sentry-provider/sentry-provider-db/pom.xml
@@ -173,6 +173,12 @@
       <groupId>org.apache.hive</groupId>
       <artifactId>hive-service</artifactId>
       <version>${hive.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.mortbay.jetty</groupId>
+          <artifactId>jetty*</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.hive.hcatalog</groupId>
diff --git a/sentry-service/pom.xml b/sentry-service/pom.xml
index e653189..b3b5477 100644
--- a/sentry-service/pom.xml
+++ b/sentry-service/pom.xml
@@ -33,6 +33,8 @@
         <module>sentry-service-api</module>
         <module>sentry-service-server</module>
         <module>sentry-service-client</module>
+        <module>sentry-service-web</module>
+        <module>sentry-service-providers</module>
     </modules>
 
 </project>
diff --git a/sentry-service/sentry-service-providers/pom.xml b/sentry-service/sentry-service-providers/pom.xml
new file mode 100644
index 0000000..2fca392
--- /dev/null
+++ b/sentry-service/sentry-service-providers/pom.xml
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  ~
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <parent>
+    <artifactId>sentry-service</artifactId>
+    <groupId>org.apache.sentry</groupId>
+    <version>2.2.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.sentry</groupId>
+  <artifactId>sentry-service-providers</artifactId>
+  <name>Sentry Service Providers</name>
+
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.sentry</groupId>
+      <artifactId>sentry-spi</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.projectlombok</groupId>
+      <artifactId>lombok</artifactId>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file
diff --git a/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/AttributeDesc.java b/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/AttributeDesc.java
new file mode 100644
index 0000000..e2222c4
--- /dev/null
+++ b/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/AttributeDesc.java
@@ -0,0 +1,33 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package org.apache.sentry.server.provider.webservice;
+
+import lombok.Data;
+import lombok.RequiredArgsConstructor;
+
+/**
+ * Bean for definition of Servlet Attributes to be defined by WebServiceProvider
+ */
+@Data
+@RequiredArgsConstructor(staticName = "of")
+public class AttributeDesc {
+  private final String name;
+  private final Object attribute;
+}
diff --git a/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/FilterDesc.java b/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/FilterDesc.java
new file mode 100644
index 0000000..66d35c7
--- /dev/null
+++ b/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/FilterDesc.java
@@ -0,0 +1,37 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package org.apache.sentry.server.provider.webservice;
+
+import java.util.EnumSet;
+import javax.servlet.DispatcherType;
+import lombok.Data;
+import lombok.RequiredArgsConstructor;
+import org.eclipse.jetty.servlet.FilterHolder;
+
+/**
+ * Bean for definition of Servlet Filters to be defined by WebServiceProvider
+ */
+@Data
+@RequiredArgsConstructor(staticName = "of")
+public class FilterDesc {
+  private final String pathSpec;
+  private final FilterHolder filterHolder;
+  private final EnumSet<DispatcherType> dispatcherTypes;
+}
diff --git a/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/ServletDesc.java b/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/ServletDesc.java
new file mode 100644
index 0000000..ed9356b
--- /dev/null
+++ b/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/ServletDesc.java
@@ -0,0 +1,34 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package org.apache.sentry.server.provider.webservice;
+
+import lombok.Data;
+import lombok.RequiredArgsConstructor;
+import org.eclipse.jetty.servlet.ServletHolder;
+
+/**
+ * Bean for definition of Servlets to be defined by WebServiceProvider
+ */
+@Data
+@RequiredArgsConstructor(staticName = "of")
+public class ServletDesc {
+  private final String pathSpec;
+  private final ServletHolder servletHolder;
+}
diff --git a/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/WebServiceProvider.java b/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/WebServiceProvider.java
new file mode 100644
index 0000000..206876e
--- /dev/null
+++ b/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/WebServiceProvider.java
@@ -0,0 +1,47 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package org.apache.sentry.server.provider.webservice;
+
+import java.util.Collections;
+import java.util.EventListener;
+import java.util.List;
+import org.apache.sentry.spi.Provider;
+
+/**
+ * Sentry Web Service Provider interface
+ */
+public interface WebServiceProvider extends Provider {
+
+  default List<EventListener> getListeners() {
+    return Collections.emptyList();
+  }
+
+  default List<ServletDesc> getServlets() {
+    return Collections.emptyList();
+  }
+
+  default List<AttributeDesc> getAttributes() {
+    return Collections.emptyList();
+  }
+
+  default List<FilterDesc> getFilters() {
+    return Collections.emptyList();
+  }
+}
diff --git a/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/WebServiceProviderFactory.java b/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/WebServiceProviderFactory.java
new file mode 100644
index 0000000..6101e5a
--- /dev/null
+++ b/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/WebServiceProviderFactory.java
@@ -0,0 +1,30 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package org.apache.sentry.server.provider.webservice;
+
+import org.apache.hadoop.conf.Configuration;
+import org.apache.sentry.spi.ProviderFactory;
+
+/**
+ * Sentry Web Service Provider Factory interface
+ */
+public interface WebServiceProviderFactory extends ProviderFactory<WebServiceProvider> {
+  void init(Configuration config);
+}
diff --git a/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/WebServiceSpi.java b/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/WebServiceSpi.java
new file mode 100644
index 0000000..8b4e7f9
--- /dev/null
+++ b/sentry-service/sentry-service-providers/src/main/java/org/apache/sentry/server/provider/webservice/WebServiceSpi.java
@@ -0,0 +1,48 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package org.apache.sentry.server.provider.webservice;
+
+
+import org.apache.sentry.spi.Provider;
+import org.apache.sentry.spi.ProviderFactory;
+import org.apache.sentry.spi.Spi;
+
+/**
+ * Service Provider definition for Sentry Web Services
+ */
+public class WebServiceSpi implements Spi {
+
+  public static final String ID = "sentry-web-service";
+
+  @Override
+  public String getName() {
+    return ID;
+  }
+
+  @Override
+  public Class<? extends Provider> getProviderClass() {
+    return WebServiceProvider.class;
+  }
+
+  @Override
+  public Class<? extends ProviderFactory> getProviderFactoryClass() {
+    return WebServiceProviderFactory.class;
+  }
+}
diff --git a/sentry-service/sentry-service-providers/src/main/resources/META-INF/services/org.apache.sentry.spi.Spi b/sentry-service/sentry-service-providers/src/main/resources/META-INF/services/org.apache.sentry.spi.Spi
new file mode 100644
index 0000000..bea3802
--- /dev/null
+++ b/sentry-service/sentry-service-providers/src/main/resources/META-INF/services/org.apache.sentry.spi.Spi
@@ -0,0 +1,20 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+#
+
+org.apache.sentry.server.provider.webservice.WebServiceSpi
\ No newline at end of file
diff --git a/sentry-service/sentry-service-server/pom.xml b/sentry-service/sentry-service-server/pom.xml
index 44540ad..7f034f3 100644
--- a/sentry-service/sentry-service-server/pom.xml
+++ b/sentry-service/sentry-service-server/pom.xml
@@ -76,6 +76,11 @@
         </dependency>
         <dependency>
             <groupId>org.apache.sentry</groupId>
+            <artifactId>sentry-service-web</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sentry</groupId>
             <artifactId>sentry-core-common</artifactId>
             <version>${project.version}</version>
         </dependency>
@@ -222,39 +227,12 @@
                     <include>package.jdo</include>
                 </includes>
             </resource>
-            <resource>
-                <directory>${basedir}/src/main</directory>
-                <includes>
-                    <include>webapp/*</include>
-                    <include>webapp/css/*</include>
-                </includes>
-            </resource>
+          <resource>
+            <directory>${basedir}/src/main/resources</directory>
+          </resource>
         </resources>
         <plugins>
             <plugin>
-                <groupId>com.google.code.maven-replacer-plugin</groupId>
-                <artifactId>replacer</artifactId>
-                <version>1.5.2</version>
-                <executions>
-                    <execution>
-                        <id>replaceTokens</id>
-                        <phase>clean</phase>
-                        <goals>
-                            <goal>replace</goal>
-                        </goals>
-                    </execution>
-                </executions>
-                <configuration>
-                    <file>${basedir}/src/main/webapp/SentryService.html</file>
-                    <replacements>
-                        <replacement>
-                            <token>%PROJECT_VERSION%</token>
-                            <value>${project.version}</value>
-                        </replacement>
-                    </replacements>
-                </configuration>
-            </plugin>
-            <plugin>
                 <groupId>org.datanucleus</groupId>
                 <artifactId>datanucleus-maven-plugin</artifactId>
                 <configuration>
diff --git a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/RolesServlet.java b/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/RolesServlet.java
new file mode 100644
index 0000000..9ed2bf3
--- /dev/null
+++ b/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/RolesServlet.java
@@ -0,0 +1,64 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package org.apache.sentry.api.service.thrift;
+
+import com.google.gson.Gson;
+import java.io.IOException;
+import java.io.Writer;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Set;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.sentry.provider.db.service.persistent.SentryStore;
+import org.apache.sentry.service.web.ConfServlet;
+
+/**
+ * Servlet for the presentation of the list of roles in the Sentry system.
+ */
+public class RolesServlet extends HttpServlet {
+
+  public void doGet(HttpServletRequest request, HttpServletResponse response)
+      throws ServletException, IOException {
+    Configuration conf = (Configuration)getServletContext().getAttribute(
+        ConfServlet.CONF_CONTEXT_ATTRIBUTE);
+    assert conf != null;
+
+    Writer out = response.getWriter();
+    try {
+      SentryStore sentrystore = new SentryStore(conf);
+      Map<String, Set<TSentryPrivilege>> roleMap = new HashMap<>();
+      Set<String> roleSet = sentrystore.getAllRoleNames();
+      for (String roleName: roleSet) {
+        roleMap.put(roleName, sentrystore.getAllTSentryPrivilegesByRoleName(roleName));
+      }
+      String json = new Gson().toJson(roleMap);
+      response.setContentType("application/json");
+      response.setCharacterEncoding("UTF-8");
+      out.write(json);
+    } catch (Exception e) {
+      response.sendError(HttpServletResponse.SC_BAD_REQUEST, e.getMessage());
+    }
+    out.close();
+  }
+}
diff --git a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/SentryAdminServlet.java b/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/SentryAdminServlet.java
deleted file mode 100644
index 5dc6cd6..0000000
--- a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/SentryAdminServlet.java
+++ /dev/null
@@ -1,132 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.sentry.api.service.thrift;
-
-import com.google.gson.Gson;
-import org.apache.hadoop.conf.Configuration;
-import org.apache.sentry.provider.db.service.persistent.SentryStore;
-
-import javax.servlet.ServletException;
-import javax.servlet.http.HttpServlet;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-import java.io.IOException;
-import java.io.PrintWriter;
-import java.io.Writer;
-import java.util.HashMap;
-import java.util.Map;
-import java.util.Set;
-
-/**
- * Admin Servlet is only used when SENTRY_WEB_ADMIN_SERVLET_ENABLED is true.
- */
-public class SentryAdminServlet extends HttpServlet {
-  private static final String SHOW_ALL = "/showAll";
-  // Here we use the same way as in com.codahale.metrics.servlets.AdminServlet, and just
-  // use the TEMPLATE as a static html with some links referenced to other debug pages.
-  private static final String TEMPLATE = "<!DOCTYPE HTML>\n"+
-      "<html lang=\"en\">\n"+
-      "<head>\n"+
-      "    <meta charset=\"utf-8\">\n"+
-      "    <title>Sentry Service Admin</title>\n"+
-      "    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n"+
-      "    <meta name=\"description\" content=\"\">\n"+
-      "    <link href=\"css/bootstrap.min.css\" rel=\"stylesheet\">\n"+
-      "    <link href=\"css/bootstrap-theme.min.css\" rel=\"stylesheet\">\n"+
-      "    <link href=\"css/sentry.css\" rel=\"stylesheet\">\n"+
-      "</head>\n"+
-      "<body>\n"+
-      "<nav class=\"navbar navbar-default navbar-fixed-top\">\n"+
-      "    <div class=\"container\">\n"+
-      "        <div class=\"navbar-header\">\n"+
-      "            <a class=\"navbar-brand\" href=\"#\"><img src=\"sentry.png\" alt=\"Sentry Logo\"/></a>\n"+
-      "        </div>\n"+
-      "        <div class=\"collapse navbar-collapse\">\n"+
-      "            <ul class=\"nav navbar-nav\">\n"+
-      "                <li class=\"active\"><a href=\"#\">Admin</a></li>\n"+
-      "                <li><a href=\"/metrics?pretty=true\">Metrics</a></li>\n"+
-      "                <li><a href=\"/threads\">Threads</a></li>\n"+
-      "                <li><a href=\"/conf\">Configuration</a></li>\n"+
-      "                <li><a href=\"/admin/showAll\">ShowAllRoles</a></li>\n"+
-      "            </ul>\n"+
-      "        </div>\n"+
-      "    </div>\n"+
-      "</nav>\n"+
-      "<div class=\"container\">\n"+
-      "    <ul>\n"+
-      "        <li><a href=\"/metrics?pretty=true\">Metrics</a></li>\n"+
-      "        <li><a href=\"/threads\">Threads</a></li>\n"+
-      "        <li><a href=\"/conf\">Configuration</a></li>\n"+
-      "        <li><a href=\"/admin/showAll\">ShowAllRoles</a></li>\n"+
-      "    </ul>\n"+
-      "</div>\n"+
-      "</body>\n"+
-      "</html>";
-
-  @Override
-  public void doGet(HttpServletRequest request, HttpServletResponse response)
-      throws ServletException, IOException {
-    String uri = request.getPathInfo();
-    if(uri != null && !uri.equals("/")) {
-      if (uri.equals(SHOW_ALL)) {
-        showAll(response);
-      } else {
-        response.sendError(404);
-      }
-    } else {
-      response.setStatus(200);
-      response.setHeader("Cache-Control", "must-revalidate,no-cache,no-store");
-      response.setHeader("Pragma", "no-cache");
-      response.setDateHeader("Expires", 0);
-      response.setContentType("text/html");
-      PrintWriter writer = response.getWriter();
-      try {
-        writer.println(TEMPLATE);
-      } finally {
-        writer.close();
-      }
-    }
-  }
-
-  /**
-   * Print out all the roles and privileges information as json format.
-   */
-  private void showAll(HttpServletResponse response)
-      throws ServletException, IOException {
-    Configuration conf = (Configuration)getServletContext().getAttribute(
-        ConfServlet.CONF_CONTEXT_ATTRIBUTE);
-    assert conf != null;
-
-    Writer out = response.getWriter();
-    try {
-      SentryStore sentrystore = new SentryStore(conf);
-      Map<String, Set<TSentryPrivilege>> roleMap = new HashMap<>();
-      Set<String> roleSet = sentrystore.getAllRoleNames();
-      for (String roleName: roleSet) {
-        roleMap.put(roleName, sentrystore.getAllTSentryPrivilegesByRoleName(roleName));
-      }
-      String json = new Gson().toJson(roleMap);
-      response.setContentType("application/json");
-      response.setCharacterEncoding("UTF-8");
-      out.write(json);
-    } catch (Exception e) {
-      response.sendError(HttpServletResponse.SC_BAD_REQUEST, e.getMessage());
-    }
-    out.close();
-  }
-}
diff --git a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/SentryServiceWebServiceProvider.java b/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/SentryServiceWebServiceProvider.java
new file mode 100644
index 0000000..a6c140d
--- /dev/null
+++ b/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/SentryServiceWebServiceProvider.java
@@ -0,0 +1,89 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package org.apache.sentry.api.service.thrift;
+
+import com.codahale.metrics.servlets.HealthCheckServlet;
+import com.codahale.metrics.servlets.MetricsServlet;
+import com.codahale.metrics.servlets.PingServlet;
+import com.codahale.metrics.servlets.ThreadDumpServlet;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.EventListener;
+import java.util.List;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.sentry.server.provider.webservice.WebServiceProvider;
+import org.apache.sentry.server.provider.webservice.WebServiceProviderFactory;
+import org.apache.sentry.server.provider.webservice.ServletDesc;
+import org.apache.sentry.service.common.ServiceConstants.ServerConfig;
+import org.eclipse.jetty.servlet.ServletHolder;
+
+/**
+ * WebServiceProvider instance to add base Service functions to the web interface
+ */
+public class SentryServiceWebServiceProvider implements WebServiceProvider,
+    WebServiceProviderFactory {
+
+  public static final String ID = "sentry-admin";
+
+  private Configuration config;
+
+  @Override
+  public List<EventListener> getListeners() {
+    return Arrays.asList(
+        new SentryHealthCheckServletContextListener(),
+        new SentryMetricsServletContextListener());
+  }
+
+  @Override
+  public List<ServletDesc> getServlets() {
+    List<ServletDesc> servlets = new ArrayList<>();
+    servlets.add(ServletDesc.of("/metrics", new ServletHolder(MetricsServlet.class)));
+    servlets.add(ServletDesc.of("/threads", new ServletHolder(ThreadDumpServlet.class)));
+    servlets.add(ServletDesc.of("/healthcheck", new ServletHolder(HealthCheckServlet.class)));
+    servlets.add(ServletDesc.of("/ping", new ServletHolder(PingServlet.class)));
+
+    if (config.getBoolean(ServerConfig.SENTRY_WEB_ADMIN_SERVLET_ENABLED,
+        ServerConfig.SENTRY_WEB_ADMIN_SERVLET_ENABLED_DEFAULT)) {
+      servlets.add(ServletDesc.of("/admin/showAll", new ServletHolder(RolesServlet.class)));
+      servlets.add(ServletDesc.of("/admin/roles", new ServletHolder(RolesServlet.class)));
+    }
+    return servlets;
+  }
+
+  @Override
+  public void init(Configuration config) {
+    this.config = config;
+  }
+
+  @Override
+  public WebServiceProvider create() {
+    return this;
+  }
+
+  @Override
+  public String getId() {
+    return ID;
+  }
+
+  @Override
+  public void close() {
+
+  }
+}
diff --git a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/SentryWebServer.java b/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/SentryWebServer.java
deleted file mode 100644
index befe6c3..0000000
--- a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/SentryWebServer.java
+++ /dev/null
@@ -1,240 +0,0 @@
-package org.apache.sentry.api.service.thrift;
-
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import com.codahale.metrics.servlets.AdminServlet;
-import com.google.common.base.Preconditions;
-
-import java.io.IOException;
-import java.net.URL;
-import java.util.EnumSet;
-import java.util.EventListener;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
-
-import com.google.common.base.Splitter;
-import com.google.common.base.Strings;
-import com.google.common.collect.Sets;
-import javax.servlet.DispatcherType;
-import org.apache.hadoop.conf.Configuration;
-import org.apache.hadoop.security.SecurityUtil;
-import org.apache.hadoop.security.UserGroupInformation;
-import org.apache.hadoop.security.authentication.server.AuthenticationFilter;
-import org.apache.sentry.service.common.ServiceConstants.ServerConfig;
-import org.eclipse.jetty.security.ConstraintMapping;
-import org.eclipse.jetty.security.ConstraintSecurityHandler;
-import org.eclipse.jetty.server.Connector;
-import org.eclipse.jetty.server.Handler;
-import org.eclipse.jetty.server.HttpConfiguration;
-import org.eclipse.jetty.server.HttpConnectionFactory;
-import org.eclipse.jetty.server.SecureRequestCustomizer;
-import org.eclipse.jetty.server.ServerConnector;
-import org.eclipse.jetty.server.SslConnectionFactory;
-import org.eclipse.jetty.server.handler.ContextHandler;
-import org.eclipse.jetty.server.handler.ContextHandlerCollection;
-import org.eclipse.jetty.server.handler.ResourceHandler;
-import org.eclipse.jetty.server.Server;
-import org.eclipse.jetty.servlet.FilterHolder;
-import org.eclipse.jetty.servlet.ServletContextHandler;
-import org.eclipse.jetty.servlet.ServletHolder;
-import org.eclipse.jetty.util.resource.Resource;
-import org.eclipse.jetty.util.security.Constraint;
-import org.eclipse.jetty.util.ssl.SslContextFactory;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public class SentryWebServer {
-
-  private static final Logger LOGGER = LoggerFactory.getLogger(SentryWebServer.class);
-  private static final String RESOURCE_DIR = "/webapp";
-  private static final String WELCOME_PAGE = "SentryService.html";
-
-  private Server server;
-
-  public SentryWebServer(List<EventListener> listeners, int port, Configuration conf) {
-    server = new Server();
-
-    // Create a channel connector for "http/https" requests
-    ServerConnector connector;
-    if (conf.getBoolean(ServerConfig.SENTRY_WEB_USE_SSL, false)) {
-      SslContextFactory sslContextFactory = new SslContextFactory();
-      sslContextFactory.setKeyStorePath(conf.get(ServerConfig.SENTRY_WEB_SSL_KEYSTORE_PATH, ""));
-      sslContextFactory.setKeyStorePassword(
-          conf.get(ServerConfig.SENTRY_WEB_SSL_KEYSTORE_PASSWORD, ""));
-      // Exclude SSL blacklist protocols
-      sslContextFactory.setExcludeProtocols(ServerConfig.SENTRY_SSL_PROTOCOL_BLACKLIST_DEFAULT);
-      Set<String> moreExcludedSSLProtocols =
-          Sets.newHashSet(Splitter.on(",").trimResults().omitEmptyStrings()
-          .split(Strings.nullToEmpty(conf.get(ServerConfig.SENTRY_SSL_PROTOCOL_BLACKLIST))));
-      sslContextFactory.addExcludeProtocols(moreExcludedSSLProtocols.toArray(
-          new String[moreExcludedSSLProtocols.size()]));
-
-      HttpConfiguration httpConfiguration = new HttpConfiguration();
-      httpConfiguration.setSecurePort(port);
-      httpConfiguration.setSecureScheme("https");
-      httpConfiguration.addCustomizer(new SecureRequestCustomizer());
-
-      connector = new ServerConnector(
-          server,
-          new SslConnectionFactory(sslContextFactory, "http/1.1"),
-          new HttpConnectionFactory(httpConfiguration));
-
-      LOGGER.info("Now using SSL mode.");
-    } else {
-      connector = new ServerConnector(server, new HttpConnectionFactory());
-    }
-
-    connector.setPort(port);
-    server.setConnectors(new Connector[] { connector });
-
-    ServletContextHandler servletContextHandler = new ServletContextHandler();
-    ServletHolder servletHolder = new ServletHolder(AdminServlet.class);
-    servletContextHandler.addServlet(servletHolder, "/*");
-
-    for(EventListener listener:listeners) {
-      servletContextHandler.addEventListener(listener);
-    }
-
-    servletContextHandler.addServlet(new ServletHolder(ConfServlet.class), "/conf");
-
-    if (conf.getBoolean(ServerConfig.SENTRY_WEB_ADMIN_SERVLET_ENABLED,
-        ServerConfig.SENTRY_WEB_ADMIN_SERVLET_ENABLED_DEFAULT)) {
-      servletContextHandler.addServlet(
-          new ServletHolder(SentryAdminServlet.class), "/admin/*");
-    }
-    servletContextHandler.getServletContext()
-        .setAttribute(ConfServlet.CONF_CONTEXT_ATTRIBUTE, conf);
-
-    servletContextHandler.addServlet(new ServletHolder(LogLevelServlet.class), "/admin/logLevel");
-
-    if (conf.getBoolean(ServerConfig.SENTRY_WEB_PUBSUB_SERVLET_ENABLED,
-                        ServerConfig.SENTRY_WEB_PUBSUB_SERVLET_ENABLED_DEFAULT)) {
-      servletContextHandler.addServlet(new ServletHolder(PubSubServlet.class), "/admin/publishMessage");
-    }
-
-    ResourceHandler resourceHandler = new ResourceHandler();
-    resourceHandler.setDirectoriesListed(true);
-    URL url = this.getClass().getResource(RESOURCE_DIR);
-    try {
-      resourceHandler.setBaseResource(Resource.newResource(url.toString()));
-    } catch (IOException e) {
-      LOGGER.error("Got exception while setBaseResource for Sentry Service web UI", e);
-    }
-    resourceHandler.setWelcomeFiles(new String[]{WELCOME_PAGE});
-    ContextHandler contextHandler= new ContextHandler();
-    contextHandler.setHandler(resourceHandler);
-
-    ContextHandlerCollection contextHandlerCollection = new ContextHandlerCollection();
-    contextHandlerCollection.setHandlers(new Handler[]{contextHandler, servletContextHandler});
-
-    String authMethod = conf.get(ServerConfig.SENTRY_WEB_SECURITY_TYPE);
-    if (!ServerConfig.SENTRY_WEB_SECURITY_TYPE_NONE.equalsIgnoreCase(authMethod)) {
-      /**
-       * SentryAuthFilter is a subclass of AuthenticationFilter and
-       * AuthenticationFilter tagged as private and unstable interface:
-       * While there are not guarantees that this interface will not change,
-       * it is fairly stable and used by other projects (ie - Oozie)
-       */
-      FilterHolder filterHolder = servletContextHandler.addFilter(SentryAuthFilter.class, "/*", EnumSet.of(DispatcherType.REQUEST));
-      filterHolder.setInitParameters(loadWebAuthenticationConf(conf));
-    }
-
-    server.setHandler(disableTraceMethod(contextHandlerCollection));
-  }
-
-  /**
-   * Disables the HTTP TRACE method request which leads to Cross-Site Tracking (XST) problems.
-   *
-   * To disable it, we need to wrap the Handler (which has the HTTP TRACE enabled) with
-   * a constraint that denies access to the HTTP TRACE method.
-   *
-   * @param handler The Handler which has the HTTP TRACE enabled.
-   * @return A new Handler wrapped with the HTTP TRACE constraint and the Handler passed as parameter.
-   */
-  private Handler disableTraceMethod(Handler handler) {
-    Constraint disableTraceConstraint = new Constraint();
-    disableTraceConstraint.setName("Disable TRACE");
-    disableTraceConstraint.setAuthenticate(true);
-
-    ConstraintMapping mapping = new ConstraintMapping();
-    mapping.setConstraint(disableTraceConstraint);
-    mapping.setMethod("TRACE");
-    mapping.setPathSpec("/");
-
-    ConstraintSecurityHandler constraintSecurityHandler = new ConstraintSecurityHandler();
-    constraintSecurityHandler.addConstraintMapping(mapping);
-    constraintSecurityHandler.setHandler(handler);
-
-    return constraintSecurityHandler;
-  }
-
-  public void start() throws Exception{
-    server.start();
-  }
-  public void stop() throws Exception{
-    server.stop();
-  }
-  public boolean isAlive() {
-    return server != null && server.isStarted();
-  }
-  private static Map<String, String> loadWebAuthenticationConf(Configuration conf) {
-    Map<String,String> prop = new HashMap<String, String>();
-    prop.put(AuthenticationFilter.CONFIG_PREFIX, ServerConfig.SENTRY_WEB_SECURITY_PREFIX);
-    String allowUsers = conf.get(ServerConfig.SENTRY_WEB_SECURITY_ALLOW_CONNECT_USERS);
-    if (allowUsers == null || allowUsers.equals("")) {
-      allowUsers = conf.get(ServerConfig.ALLOW_CONNECT);
-      conf.set(ServerConfig.SENTRY_WEB_SECURITY_ALLOW_CONNECT_USERS, allowUsers);
-    }
-    validateConf(conf);
-    for (Map.Entry<String, String> entry : conf) {
-      String name = entry.getKey();
-      if (name.startsWith(ServerConfig.SENTRY_WEB_SECURITY_PREFIX)) {
-        String value = conf.get(name);
-        prop.put(name, value);
-      }
-    }
-    return prop;
-  }
-
-  private static void validateConf(Configuration conf) {
-    String authHandlerName = conf.get(ServerConfig.SENTRY_WEB_SECURITY_TYPE);
-    Preconditions.checkNotNull(authHandlerName, "Web authHandler should not be null.");
-    String allowUsers = conf.get(ServerConfig.SENTRY_WEB_SECURITY_ALLOW_CONNECT_USERS);
-    Preconditions.checkNotNull(allowUsers, "Allow connect user(s) should not be null.");
-    if (ServerConfig.SENTRY_WEB_SECURITY_TYPE_KERBEROS.equalsIgnoreCase(authHandlerName)) {
-      String principal = conf.get(ServerConfig.SENTRY_WEB_SECURITY_PRINCIPAL);
-      Preconditions.checkNotNull(principal, "Kerberos principal should not be null.");
-      Preconditions.checkArgument(principal.length() != 0, "Kerberos principal is not right.");
-      String keytabFile = conf.get(ServerConfig.SENTRY_WEB_SECURITY_KEYTAB);
-      Preconditions.checkNotNull(keytabFile, "Keytab File should not be null.");
-      Preconditions.checkArgument(keytabFile.length() != 0, "Keytab File is not right.");
-      try {
-        UserGroupInformation.setConfiguration(conf);
-        String hostPrincipal = SecurityUtil.getServerPrincipal(principal, ServerConfig.RPC_ADDRESS_DEFAULT);
-        UserGroupInformation.loginUserFromKeytab(hostPrincipal, keytabFile);
-      } catch (IOException ex) {
-        throw new IllegalArgumentException("Can't use Kerberos authentication, principal ["
-          + principal + "] keytab [" + keytabFile + "]", ex);
-      }
-      LOGGER.info("Using Kerberos authentication, principal [{}] keytab [{}]", principal, keytabFile);
-    }
-  }
-}
diff --git a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/service/thrift/SentryService.java b/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/service/thrift/SentryService.java
index b3a4934..1ebb62f 100644
--- a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/service/thrift/SentryService.java
+++ b/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/service/thrift/SentryService.java
@@ -25,9 +25,6 @@
 import java.net.MalformedURLException;
 import java.net.ServerSocket;
 import java.security.PrivilegedExceptionAction;
-import java.util.ArrayList;
-import java.util.EventListener;
-import java.util.List;
 import java.util.concurrent.*;
 
 import javax.security.auth.Subject;
@@ -52,10 +49,8 @@
 import org.apache.sentry.provider.db.service.persistent.HMSFollower;
 import org.apache.sentry.provider.db.service.persistent.LeaderStatusMonitor;
 import org.apache.sentry.provider.db.service.persistent.SentryStoreInterface;
-import org.apache.sentry.api.service.thrift.SentryHealthCheckServletContextListener;
 import org.apache.sentry.api.service.thrift.SentryMetrics;
-import org.apache.sentry.api.service.thrift.SentryMetricsServletContextListener;
-import org.apache.sentry.api.service.thrift.SentryWebServer;
+import org.apache.sentry.service.web.SentryWebServer;
 import org.apache.sentry.service.common.ServiceConstants;
 import org.apache.sentry.service.common.ServiceConstants.ConfUtilties;
 import org.apache.sentry.service.common.ServiceConstants.ServerConfig;
@@ -106,7 +101,6 @@
   private Future serviceStatus;
   private TServer thriftServer;
   private Status status;
-  private final int webServerPort;
   private SentryWebServer sentryWebServer;
   private final long maxMessageSize;
   /*
@@ -168,7 +162,6 @@
     this.sentryStore = getSentryStore(conf);
     sentryStore.setPersistUpdateDeltas(SentryServiceUtil.isHDFSSyncEnabled(conf));
     this.leaderMonitor = LeaderStatusMonitor.getLeaderStatusMonitor(conf);
-    webServerPort = conf.getInt(ServerConfig.SENTRY_WEB_PORT, ServerConfig.SENTRY_WEB_PORT_DEFAULT);
 
     status = Status.NOT_STARTED;
 
@@ -445,13 +438,9 @@
   }
 
   private void startSentryWebServer() throws Exception{
-    Boolean sentryReportingEnable = conf.getBoolean(ServerConfig.SENTRY_WEB_ENABLE,
-        ServerConfig.SENTRY_WEB_ENABLE_DEFAULT);
-    if(sentryReportingEnable) {
-      List<EventListener> listenerList = new ArrayList<>();
-      listenerList.add(new SentryHealthCheckServletContextListener());
-      listenerList.add(new SentryMetricsServletContextListener());
-      sentryWebServer = new SentryWebServer(listenerList, webServerPort, conf);
+    if(conf.getBoolean(ServerConfig.SENTRY_WEB_ENABLE,
+        ServerConfig.SENTRY_WEB_ENABLE_DEFAULT)) {
+      sentryWebServer = new SentryWebServer(conf);
       sentryWebServer.start();
     }
   }
diff --git a/sentry-service/sentry-service-server/src/main/resources/META-INF/services/org.apache.sentry.server.provider.webservice.WebServiceProviderFactory b/sentry-service/sentry-service-server/src/main/resources/META-INF/services/org.apache.sentry.server.provider.webservice.WebServiceProviderFactory
new file mode 100644
index 0000000..2200a79
--- /dev/null
+++ b/sentry-service/sentry-service-server/src/main/resources/META-INF/services/org.apache.sentry.server.provider.webservice.WebServiceProviderFactory
@@ -0,0 +1,20 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+#
+
+org.apache.sentry.api.service.thrift.SentryServiceWebServiceProvider
\ No newline at end of file
diff --git a/sentry-service/sentry-service-server/src/main/webapp/css/bootstrap-theme.min.css b/sentry-service/sentry-service-server/src/main/webapp/css/bootstrap-theme.min.css
deleted file mode 100644
index c31428b..0000000
--- a/sentry-service/sentry-service-server/src/main/webapp/css/bootstrap-theme.min.css
+++ /dev/null
@@ -1,10 +0,0 @@
-/*!
- * Bootstrap v3.0.0
- *
- * Copyright 2013 Twitter, Inc
- * Licensed under the Apache License v2.0
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Designed and built with all the love in the world by @mdo and @fat.
- */
-.btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn:active,.btn.active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-gradient(linear,left 0,left 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,0%,#e6e6e6,100%);background-image:-moz-linear-gradient(top,#fff 0,#e6e6e6 100%);background-image:linear-gradient(to bottom,#fff 0,#e6e6e6 100%);background-repeat:repeat-x;border-color:#e0e0e0;border-color:#ccc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0)}.btn-default:active,.btn-default.active{background-color:#e6e6e6;border-color:#e0e0e0}.btn-primary{background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#3071a9));background-image:-webkit-linear-gradient(top,#428bca,0%,#3071a9,100%);background-image:-moz-linear-gradient(top,#428bca 0,#3071a9 100%);background-image:linear-gradient(to bottom,#428bca 0,#3071a9 100%);background-repeat:repeat-x;border-color:#2d6ca2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3071a9',GradientType=0)}.btn-primary:active,.btn-primary.active{background-color:#3071a9;border-color:#2d6ca2}.btn-success{background-image:-webkit-gradient(linear,left 0,left 100%,from(#5cb85c),to(#449d44));background-image:-webkit-linear-gradient(top,#5cb85c,0%,#449d44,100%);background-image:-moz-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);background-repeat:repeat-x;border-color:#419641;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff449d44',GradientType=0)}.btn-success:active,.btn-success.active{background-color:#449d44;border-color:#419641}.btn-warning{background-image:-webkit-gradient(linear,left 0,left 100%,from(#f0ad4e),to(#ec971f));background-image:-webkit-linear-gradient(top,#f0ad4e,0%,#ec971f,100%);background-image:-moz-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);background-repeat:repeat-x;border-color:#eb9316;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffec971f',GradientType=0)}.btn-warning:active,.btn-warning.active{background-color:#ec971f;border-color:#eb9316}.btn-danger{background-image:-webkit-gradient(linear,left 0,left 100%,from(#d9534f),to(#c9302c));background-image:-webkit-linear-gradient(top,#d9534f,0%,#c9302c,100%);background-image:-moz-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);background-repeat:repeat-x;border-color:#c12e2a;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc9302c',GradientType=0)}.btn-danger:active,.btn-danger.active{background-color:#c9302c;border-color:#c12e2a}.btn-info{background-image:-webkit-gradient(linear,left 0,left 100%,from(#5bc0de),to(#31b0d5));background-image:-webkit-linear-gradient(top,#5bc0de,0%,#31b0d5,100%);background-image:-moz-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);background-repeat:repeat-x;border-color:#2aabd2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff31b0d5',GradientType=0)}.btn-info:active,.btn-info.active{background-color:#31b0d5;border-color:#2aabd2}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-color:#357ebd;background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#357ebd));background-image:-webkit-linear-gradient(top,#428bca,0%,#357ebd,100%);background-image:-moz-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.navbar{background-image:-webkit-gradient(linear,left 0,left 100%,from(#fff),to(#f8f8f8));background-image:-webkit-linear-gradient(top,#fff,0%,#f8f8f8,100%);background-image:-moz-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);background-repeat:repeat-x;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff8f8f8',GradientType=0);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075)}.navbar .navbar-nav>.active>a{background-color:#f8f8f8}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,0.25)}.navbar-inverse{background-image:-webkit-gradient(linear,left 0,left 100%,from(#3c3c3c),to(#222));background-image:-webkit-linear-gradient(top,#3c3c3c,0%,#222,100%);background-image:-moz-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c',endColorstr='#ff222222',GradientType=0)}.navbar-inverse .navbar-nav>.active>a{background-color:#222}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}.alert{text-shadow:0 1px 0 rgba(255,255,255,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05)}.alert-success{background-image:-webkit-gradient(linear,left 0,left 100%,from(#dff0d8),to(#c8e5bc));background-image:-webkit-linear-gradient(top,#dff0d8,0%,#c8e5bc,100%);background-image:-moz-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);background-repeat:repeat-x;border-color:#b2dba1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffc8e5bc',GradientType=0)}.alert-info{background-image:-webkit-gradient(linear,left 0,left 100%,from(#d9edf7),to(#b9def0));background-image:-webkit-linear-gradient(top,#d9edf7,0%,#b9def0,100%);background-image:-moz-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);background-repeat:repeat-x;border-color:#9acfea;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffb9def0',GradientType=0)}.alert-warning{background-image:-webkit-gradient(linear,left 0,left 100%,from(#fcf8e3),to(#f8efc0));background-image:-webkit-linear-gradient(top,#fcf8e3,0%,#f8efc0,100%);background-image:-moz-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);background-repeat:repeat-x;border-color:#f5e79e;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fff8efc0',GradientType=0)}.alert-danger{background-image:-webkit-gradient(linear,left 0,left 100%,from(#f2dede),to(#e7c3c3));background-image:-webkit-linear-gradient(top,#f2dede,0%,#e7c3c3,100%);background-image:-moz-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);background-repeat:repeat-x;border-color:#dca7a7;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffe7c3c3',GradientType=0)}.progress{background-image:-webkit-gradient(linear,left 0,left 100%,from(#ebebeb),to(#f5f5f5));background-image:-webkit-linear-gradient(top,#ebebeb,0%,#f5f5f5,100%);background-image:-moz-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff5f5f5',GradientType=0)}.progress-bar{background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#3071a9));background-image:-webkit-linear-gradient(top,#428bca,0%,#3071a9,100%);background-image:-moz-linear-gradient(top,#428bca 0,#3071a9 100%);background-image:linear-gradient(to bottom,#428bca 0,#3071a9 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3071a9',GradientType=0)}.progress-bar-success{background-image:-webkit-gradient(linear,left 0,left 100%,from(#5cb85c),to(#449d44));background-image:-webkit-linear-gradient(top,#5cb85c,0%,#449d44,100%);background-image:-moz-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff449d44',GradientType=0)}.progress-bar-info{background-image:-webkit-gradient(linear,left 0,left 100%,from(#5bc0de),to(#31b0d5));background-image:-webkit-linear-gradient(top,#5bc0de,0%,#31b0d5,100%);background-image:-moz-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff31b0d5',GradientType=0)}.progress-bar-warning{background-image:-webkit-gradient(linear,left 0,left 100%,from(#f0ad4e),to(#ec971f));background-image:-webkit-linear-gradient(top,#f0ad4e,0%,#ec971f,100%);background-image:-moz-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffec971f',GradientType=0)}.progress-bar-danger{background-image:-webkit-gradient(linear,left 0,left 100%,from(#d9534f),to(#c9302c));background-image:-webkit-linear-gradient(top,#d9534f,0%,#c9302c,100%);background-image:-moz-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc9302c',GradientType=0)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #3071a9;background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#3278b3));background-image:-webkit-linear-gradient(top,#428bca,0%,#3278b3,100%);background-image:-moz-linear-gradient(top,#428bca 0,#3278b3 100%);background-image:linear-gradient(to bottom,#428bca 0,#3278b3 100%);background-repeat:repeat-x;border-color:#3278b3;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff3278b3',GradientType=0)}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.panel-default>.panel-heading{background-image:-webkit-gradient(linear,left 0,left 100%,from(#f5f5f5),to(#e8e8e8));background-image:-webkit-linear-gradient(top,#f5f5f5,0%,#e8e8e8,100%);background-image:-moz-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0)}.panel-primary>.panel-heading{background-image:-webkit-gradient(linear,left 0,left 100%,from(#428bca),to(#357ebd));background-image:-webkit-linear-gradient(top,#428bca,0%,#357ebd,100%);background-image:-moz-linear-gradient(top,#428bca 0,#357ebd 100%);background-image:linear-gradient(to bottom,#428bca 0,#357ebd 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',endColorstr='#ff357ebd',GradientType=0)}.panel-success>.panel-heading{background-image:-webkit-gradient(linear,left 0,left 100%,from(#dff0d8),to(#d0e9c6));background-image:-webkit-linear-gradient(top,#dff0d8,0%,#d0e9c6,100%);background-image:-moz-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffd0e9c6',GradientType=0)}.panel-info>.panel-heading{background-image:-webkit-gradient(linear,left 0,left 100%,from(#d9edf7),to(#c4e3f3));background-image:-webkit-linear-gradient(top,#d9edf7,0%,#c4e3f3,100%);background-image:-moz-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffc4e3f3',GradientType=0)}.panel-warning>.panel-heading{background-image:-webkit-gradient(linear,left 0,left 100%,from(#fcf8e3),to(#faf2cc));background-image:-webkit-linear-gradient(top,#fcf8e3,0%,#faf2cc,100%);background-image:-moz-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fffaf2cc',GradientType=0)}.panel-danger>.panel-heading{background-image:-webkit-gradient(linear,left 0,left 100%,from(#f2dede),to(#ebcccc));background-image:-webkit-linear-gradient(top,#f2dede,0%,#ebcccc,100%);background-image:-moz-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffebcccc',GradientType=0)}.well{background-image:-webkit-gradient(linear,left 0,left 100%,from(#e8e8e8),to(#f5f5f5));background-image:-webkit-linear-gradient(top,#e8e8e8,0%,#f5f5f5,100%);background-image:-moz-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);background-repeat:repeat-x;border-color:#dcdcdc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8',endColorstr='#fff5f5f5',GradientType=0);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1)}
\ No newline at end of file
diff --git a/sentry-service/sentry-service-server/src/main/webapp/css/bootstrap.min.css b/sentry-service/sentry-service-server/src/main/webapp/css/bootstrap.min.css
deleted file mode 100644
index a553c4f..0000000
--- a/sentry-service/sentry-service-server/src/main/webapp/css/bootstrap.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * Bootstrap v3.0.0
- *
- * Copyright 2013 Twitter, Inc
- * Licensed under the Apache License v2.0
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Designed and built with all the love in the world by @mdo and @fat.
- *//*! normalize.css v2.1.0 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{margin:.67em 0;font-size:2em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box}mark{color:#000;background:#ff0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0}legend{padding:0;border:0}button,input,select,textarea{margin:0;font-family:inherit;font-size:100%}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{padding:0;box-sizing:border-box}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}@page{margin:2cm .5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.428571429;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}button,input,select[multiple],textarea{background-image:none}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}img{vertical-align:middle}.img-responsive{display:block;height:auto;max-width:100%}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;height:auto;max-width:100%;padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);border:0}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16.099999999999998px;font-weight:200;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small{font-size:85%}cite{font-style:normal}.text-muted{color:#999}.text-primary{color:#428bca}.text-warning{color:#c09853}.text-danger{color:#b94a48}.text-success{color:#468847}.text-info{color:#3a87ad}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{margin-top:20px;margin-bottom:10px}h4,h5,h6{margin-top:10px;margin-bottom:10px}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}h1 small,.h1 small{font-size:24px}h2 small,.h2 small{font-size:18px}h3 small,.h3 small,h4 small,.h4 small{font-size:14px}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}abbr.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{font-size:17.5px;font-weight:300;line-height:1.25}blockquote p:last-child{margin-bottom:0}blockquote small{display:block;line-height:1.428571429;color:#999}blockquote small:before{content:'\2014 \00A0'}blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right}blockquote.pull-right small:before{content:''}blockquote.pull-right small:after{content:'\00A0 \2014'}q:before,q:after,blockquote:before,blockquote:after{content:""}address{display:block;margin-bottom:20px;font-style:normal;line-height:1.428571429}code,pre{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;white-space:nowrap;background-color:#f9f2f4;border-radius:4px}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre.prettyprint{margin-bottom:20px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.row{margin-right:-15px;margin-left:-15px}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-sm-1,.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-10,.col-sm-11,.col-sm-12,.col-md-1,.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-10,.col-md-11,.col-md-12,.col-lg-1,.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-10,.col-lg-11,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11{float:left}.col-xs-1{width:8.333333333333332%}.col-xs-2{width:16.666666666666664%}.col-xs-3{width:25%}.col-xs-4{width:33.33333333333333%}.col-xs-5{width:41.66666666666667%}.col-xs-6{width:50%}.col-xs-7{width:58.333333333333336%}.col-xs-8{width:66.66666666666666%}.col-xs-9{width:75%}.col-xs-10{width:83.33333333333334%}.col-xs-11{width:91.66666666666666%}.col-xs-12{width:100%}@media(min-width:768px){.container{max-width:750px}.col-sm-1,.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-10,.col-sm-11{float:left}.col-sm-1{width:8.333333333333332%}.col-sm-2{width:16.666666666666664%}.col-sm-3{width:25%}.col-sm-4{width:33.33333333333333%}.col-sm-5{width:41.66666666666667%}.col-sm-6{width:50%}.col-sm-7{width:58.333333333333336%}.col-sm-8{width:66.66666666666666%}.col-sm-9{width:75%}.col-sm-10{width:83.33333333333334%}.col-sm-11{width:91.66666666666666%}.col-sm-12{width:100%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-11{left:91.66666666666666%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-11{margin-left:91.66666666666666%}}@media(min-width:992px){.container{max-width:970px}.col-md-1,.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-10,.col-md-11{float:left}.col-md-1{width:8.333333333333332%}.col-md-2{width:16.666666666666664%}.col-md-3{width:25%}.col-md-4{width:33.33333333333333%}.col-md-5{width:41.66666666666667%}.col-md-6{width:50%}.col-md-7{width:58.333333333333336%}.col-md-8{width:66.66666666666666%}.col-md-9{width:75%}.col-md-10{width:83.33333333333334%}.col-md-11{width:91.66666666666666%}.col-md-12{width:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.333333333333332%}.col-md-push-2{left:16.666666666666664%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333333333333%}.col-md-push-5{left:41.66666666666667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.333333333333336%}.col-md-push-8{left:66.66666666666666%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333333333334%}.col-md-push-11{left:91.66666666666666%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-11{right:91.66666666666666%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-11{margin-left:91.66666666666666%}}@media(min-width:1200px){.container{max-width:1170px}.col-lg-1,.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-10,.col-lg-11{float:left}.col-lg-1{width:8.333333333333332%}.col-lg-2{width:16.666666666666664%}.col-lg-3{width:25%}.col-lg-4{width:33.33333333333333%}.col-lg-5{width:41.66666666666667%}.col-lg-6{width:50%}.col-lg-7{width:58.333333333333336%}.col-lg-8{width:66.66666666666666%}.col-lg-9{width:75%}.col-lg-10{width:83.33333333333334%}.col-lg-11{width:91.66666666666666%}.col-lg-12{width:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-11{left:91.66666666666666%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-11{margin-left:91.66666666666666%}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table thead>tr>th,.table tbody>tr>th,.table tfoot>tr>th,.table thead>tr>td,.table tbody>tr>td,.table tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #ddd}.table thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table caption+thead tr:first-child th,.table colgroup+thead tr:first-child th,.table thead:first-child tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child td{border-top:0}.table tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed thead>tr>th,.table-condensed tbody>tr>th,.table-condensed tfoot>tr>th,.table-condensed thead>tr>td,.table-condensed tbody>tr>td,.table-condensed tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{display:table-cell;float:none}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8;border-color:#d6e9c6}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td{background-color:#d0e9c6;border-color:#c9e2b3}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede;border-color:#eed3d7}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td{background-color:#ebcccc;border-color:#e6c1c7}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3;border-color:#fbeed5}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td{background-color:#faf2cc;border-color:#f8e5be}@media(max-width:768px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:scroll;overflow-y:hidden;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0;background-color:#fff}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>thead>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>thead>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}select[multiple],select[size]{height:auto}select optgroup{font-family:inherit;font-size:inherit;font-style:inherit}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button{height:auto}.form-control:-moz-placeholder{color:#999}.form-control::-moz-placeholder{color:#999}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee}textarea.form-control{height:auto}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;padding-left:20px;margin-top:10px;margin-bottom:10px;vertical-align:middle}.radio label,.checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm{height:auto}.input-lg{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:45px;line-height:45px}textarea.input-lg{height:auto}.has-warning .help-block,.has-warning .control-label{color:#c09853}.has-warning .form-control{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e}.has-warning .input-group-addon{color:#c09853;background-color:#fcf8e3;border-color:#c09853}.has-error .help-block,.has-error .control-label{color:#b94a48}.has-error .form-control{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392}.has-error .input-group-addon{color:#b94a48;background-color:#f2dede;border-color:#b94a48}.has-success .help-block,.has-success .control-label{color:#468847}.has-success .form-control{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b}.has-success .input-group-addon{color:#468847;background-color:#dff0d8;border-color:#468847}.form-control-static{padding-top:7px;margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block}.form-inline .radio,.form-inline .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}@media(min-width:768px){.form-horizontal .control-label{text-align:right}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-link{font-weight:normal;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-xs{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;line-height:1}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-print:before{content:"\e045"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-briefcase:before{content:"\1f4bc"}.glyphicon-calendar:before{content:"\1f4c5"}.glyphicon-pushpin:before{content:"\1f4cc"}.glyphicon-paperclip:before{content:"\1f4ce"}.glyphicon-camera:before{content:"\1f4f7"}.glyphicon-lock:before{content:"\1f512"}.glyphicon-bell:before{content:"\1f514"}.glyphicon-bookmark:before{content:"\1f516"}.glyphicon-fire:before{content:"\1f525"}.glyphicon-wrench:before{content:"\1f527"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid #000;border-right:4px solid transparent;border-bottom:0 dotted;border-left:4px solid transparent;content:""}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#fff;text-decoration:none;background-color:#428bca}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0 dotted;border-bottom:4px solid #000;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}}.btn-default .caret{border-top-color:#333}.btn-primary .caret,.btn-success .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret{border-top-color:#fff}.dropup .btn-default .caret{border-bottom-color:#333}.dropup .btn-primary .caret,.dropup .btn-success .caret,.dropup .btn-warning .caret,.dropup .btn-danger .caret,.dropup .btn-info .caret{border-bottom-color:#fff}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group{float:left}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group-xs>.btn{padding:5px 10px;padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-bottom-left-radius:4px;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child>.btn:last-child,.btn-group-vertical>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;border-collapse:separate;table-layout:fixed}.btn-group-justified .btn{display:table-cell;float:none;width:1%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group.col{float:none;padding-right:0;padding-left:0}.input-group .form-control{width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-4px}.input-group-btn>.btn:hover,.input-group-btn>.btn:active{z-index:2}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}}.nav-tabs.nav-justified>li>a{margin-right:0;border-bottom:1px solid #ddd}.nav-tabs.nav-justified>.active>a{border-bottom-color:#fff}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:5px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-bottom:1px solid #ddd}.nav-tabs-justified>.active>a{border-bottom-color:#fff}.tabbable:before,.tabbable:after{display:table;content:" "}.tabbable:after{clear:both}.tabbable:before,.tabbable:after{display:table;content:" "}.tabbable:after{clear:both}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.nav .caret{border-top-color:#428bca;border-bottom-color:#428bca}.nav a:hover .caret{border-top-color:#2a6496;border-bottom-color:#2a6496}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;z-index:1000;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}@media(min-width:768px){.navbar{border-radius:4px}}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}@media(min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-collapse .navbar-nav.navbar-left:first-child{margin-left:-15px}.navbar-collapse .navbar-nav.navbar-right:last-child{margin-right:-15px}.navbar-collapse .navbar-text:last-child{margin-right:0}}.container>.navbar-header,.container>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;border-width:0 0 1px}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;z-index:1030}.navbar-fixed-bottom{bottom:0;margin-bottom:0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media(min-width:768px){.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:4px}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}@media(min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media(min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-nav.pull-right>li>.dropdown-menu,.navbar-nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-text{float:left;margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{margin-right:15px;margin-left:15px}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#ccc}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e6e6e6}.navbar-default .navbar-nav>.dropdown>a:hover .caret,.navbar-default .navbar-nav>.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.open>a .caret,.navbar-default .navbar-nav>.open>a:hover .caret,.navbar-default .navbar-nav>.open>a:focus .caret{border-top-color:#555;border-bottom-color:#555}.navbar-default .navbar-nav>.dropdown>a .caret{border-top-color:#777;border-bottom-color:#777}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.dropdown>a:hover .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar-inverse .navbar-nav>.dropdown>a .caret{border-top-color:#999;border-bottom-color:#999}.navbar-inverse .navbar-nav>.open>a .caret,.navbar-inverse .navbar-nav>.open>a:hover .caret,.navbar-inverse .navbar-nav>.open>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.428571429;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{background-color:#eee}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:#808080}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#999;border-radius:10px}.badge:empty{display:none}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.btn .badge{position:relative;top:-1px}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;font-size:21px;font-weight:200;line-height:2.1428571435;color:inherit;background-color:#eee}.jumbotron h1{line-height:1;color:inherit}.jumbotron p{line-height:1.4}.container .jumbotron{border-radius:6px}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1{font-size:63px}}.thumbnail{display:inline-block;display:block;height:auto;max-width:100%;padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img{display:block;height:auto;max-width:100%}a.thumbnail:hover,a.thumbnail:focus{border-color:#428bca}.thumbnail>img{margin-right:auto;margin-left:auto}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#356635}.alert-info{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#2d6987}.alert-warning{color:#c09853;background-color:#fcf8e3;border-color:#fbeed5}.alert-warning hr{border-top-color:#f8e5be}.alert-warning .alert-link{color:#a47e3c}.alert-danger{color:#b94a48;background-color:#f2dede;border-color:#eed3d7}.alert-danger hr{border-top-color:#e6c1c7}.alert-danger .alert-link{color:#953b39}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0}.panel>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group .list-group-item:last-child{border-bottom:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table{margin-bottom:0}.panel>.panel-body+.table{border-top:1px solid #ddd}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-title{margin-top:0;margin-bottom:0;font-size:16px}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-group .panel{margin-bottom:0;overflow:hidden;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-warning{border-color:#fbeed5}.panel-warning>.panel-heading{color:#c09853;background-color:#fcf8e3;border-color:#fbeed5}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#fbeed5}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#fbeed5}.panel-danger{border-color:#eed3d7}.panel-danger>.panel-heading{color:#b94a48;background-color:#f2dede;border-color:#eed3d7}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#eed3d7}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#eed3d7}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}body.modal-open,.modal-open .navbar-fixed-top,.modal-open .navbar-fixed-bottom{margin-right:15px}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:auto;overflow-y:scroll}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{z-index:1050;width:auto;padding:10px;margin-right:auto;margin-left:auto}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1030;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{min-height:16.428571429px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.428571429}.modal-body{position:relative;padding:20px}.modal-footer{padding:19px 20px 20px;margin-top:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media screen and (min-width:768px){.modal-dialog{right:auto;left:50%;width:600px;padding-top:30px;padding-bottom:30px}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}}.tooltip{position:absolute;z-index:1030;display:block;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0;content:" "}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0;content:" "}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0;content:" "}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0;content:" "}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;height:auto;max-width:100%;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);opacity:.5;filter:alpha(opacity=50)}.carousel-control.left{background-image:-webkit-gradient(linear,0 top,100% top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0.0001)));background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.5) 0),color-stop(rgba(0,0,0,0.0001) 100%));background-image:-moz-linear-gradient(left,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1)}.carousel-control.right{right:0;left:auto;background-image:-webkit-gradient(linear,0 top,100% top,from(rgba(0,0,0,0.0001)),to(rgba(0,0,0,0.5)));background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.0001) 0),color-stop(rgba(0,0,0,0.5) 100%));background-image:-moz-linear-gradient(left,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1)}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;left:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{display:table;content:" "}.clearfix:after{clear:both}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.affix{position:fixed}@-ms-viewport{width:device-width}@media screen and (max-width:400px){@-ms-viewport{width:320px}}.hidden{display:none!important;visibility:hidden!important}.visible-xs{display:none!important}tr.visible-xs{display:none!important}th.visible-xs,td.visible-xs{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-xs.visible-sm{display:block!important}tr.visible-xs.visible-sm{display:table-row!important}th.visible-xs.visible-sm,td.visible-xs.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-xs.visible-md{display:block!important}tr.visible-xs.visible-md{display:table-row!important}th.visible-xs.visible-md,td.visible-xs.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-xs.visible-lg{display:block!important}tr.visible-xs.visible-lg{display:table-row!important}th.visible-xs.visible-lg,td.visible-xs.visible-lg{display:table-cell!important}}.visible-sm{display:none!important}tr.visible-sm{display:none!important}th.visible-sm,td.visible-sm{display:none!important}@media(max-width:767px){.visible-sm.visible-xs{display:block!important}tr.visible-sm.visible-xs{display:table-row!important}th.visible-sm.visible-xs,td.visible-sm.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block!important}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-sm.visible-md{display:block!important}tr.visible-sm.visible-md{display:table-row!important}th.visible-sm.visible-md,td.visible-sm.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-sm.visible-lg{display:block!important}tr.visible-sm.visible-lg{display:table-row!important}th.visible-sm.visible-lg,td.visible-sm.visible-lg{display:table-cell!important}}.visible-md{display:none!important}tr.visible-md{display:none!important}th.visible-md,td.visible-md{display:none!important}@media(max-width:767px){.visible-md.visible-xs{display:block!important}tr.visible-md.visible-xs{display:table-row!important}th.visible-md.visible-xs,td.visible-md.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-md.visible-sm{display:block!important}tr.visible-md.visible-sm{display:table-row!important}th.visible-md.visible-sm,td.visible-md.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block!important}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-md.visible-lg{display:block!important}tr.visible-md.visible-lg{display:table-row!important}th.visible-md.visible-lg,td.visible-md.visible-lg{display:table-cell!important}}.visible-lg{display:none!important}tr.visible-lg{display:none!important}th.visible-lg,td.visible-lg{display:none!important}@media(max-width:767px){.visible-lg.visible-xs{display:block!important}tr.visible-lg.visible-xs{display:table-row!important}th.visible-lg.visible-xs,td.visible-lg.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-lg.visible-sm{display:block!important}tr.visible-lg.visible-sm{display:table-row!important}th.visible-lg.visible-sm,td.visible-lg.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-lg.visible-md{display:block!important}tr.visible-lg.visible-md{display:table-row!important}th.visible-lg.visible-md,td.visible-lg.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-lg{display:block!important}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}.hidden-xs{display:block!important}tr.hidden-xs{display:table-row!important}th.hidden-xs,td.hidden-xs{display:table-cell!important}@media(max-width:767px){.hidden-xs{display:none!important}tr.hidden-xs{display:none!important}th.hidden-xs,td.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-xs.hidden-sm{display:none!important}tr.hidden-xs.hidden-sm{display:none!important}th.hidden-xs.hidden-sm,td.hidden-xs.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-xs.hidden-md{display:none!important}tr.hidden-xs.hidden-md{display:none!important}th.hidden-xs.hidden-md,td.hidden-xs.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-xs.hidden-lg{display:none!important}tr.hidden-xs.hidden-lg{display:none!important}th.hidden-xs.hidden-lg,td.hidden-xs.hidden-lg{display:none!important}}.hidden-sm{display:block!important}tr.hidden-sm{display:table-row!important}th.hidden-sm,td.hidden-sm{display:table-cell!important}@media(max-width:767px){.hidden-sm.hidden-xs{display:none!important}tr.hidden-sm.hidden-xs{display:none!important}th.hidden-sm.hidden-xs,td.hidden-sm.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}tr.hidden-sm{display:none!important}th.hidden-sm,td.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-sm.hidden-md{display:none!important}tr.hidden-sm.hidden-md{display:none!important}th.hidden-sm.hidden-md,td.hidden-sm.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-sm.hidden-lg{display:none!important}tr.hidden-sm.hidden-lg{display:none!important}th.hidden-sm.hidden-lg,td.hidden-sm.hidden-lg{display:none!important}}.hidden-md{display:block!important}tr.hidden-md{display:table-row!important}th.hidden-md,td.hidden-md{display:table-cell!important}@media(max-width:767px){.hidden-md.hidden-xs{display:none!important}tr.hidden-md.hidden-xs{display:none!important}th.hidden-md.hidden-xs,td.hidden-md.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-md.hidden-sm{display:none!important}tr.hidden-md.hidden-sm{display:none!important}th.hidden-md.hidden-sm,td.hidden-md.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}tr.hidden-md{display:none!important}th.hidden-md,td.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-md.hidden-lg{display:none!important}tr.hidden-md.hidden-lg{display:none!important}th.hidden-md.hidden-lg,td.hidden-md.hidden-lg{display:none!important}}.hidden-lg{display:block!important}tr.hidden-lg{display:table-row!important}th.hidden-lg,td.hidden-lg{display:table-cell!important}@media(max-width:767px){.hidden-lg.hidden-xs{display:none!important}tr.hidden-lg.hidden-xs{display:none!important}th.hidden-lg.hidden-xs,td.hidden-lg.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-lg.hidden-sm{display:none!important}tr.hidden-lg.hidden-sm{display:none!important}th.hidden-lg.hidden-sm,td.hidden-lg.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-lg.hidden-md{display:none!important}tr.hidden-lg.hidden-md{display:none!important}th.hidden-lg.hidden-md,td.hidden-lg.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg{display:none!important}tr.hidden-lg{display:none!important}th.hidden-lg,td.hidden-lg{display:none!important}}.visible-print{display:none!important}tr.visible-print{display:none!important}th.visible-print,td.visible-print{display:none!important}@media print{.visible-print{display:block!important}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}.hidden-print{display:none!important}tr.hidden-print{display:none!important}th.hidden-print,td.hidden-print{display:none!important}}
\ No newline at end of file
diff --git a/sentry-service/sentry-service-server/src/test/java/org/apache/sentry/api/service/thrift/TestSentryWebServerWithoutSecurity.java b/sentry-service/sentry-service-server/src/test/java/org/apache/sentry/api/service/thrift/TestSentryWebServerWithoutSecurity.java
index 6e741e8..29adced 100644
--- a/sentry-service/sentry-service-server/src/test/java/org/apache/sentry/api/service/thrift/TestSentryWebServerWithoutSecurity.java
+++ b/sentry-service/sentry-service-server/src/test/java/org/apache/sentry/api/service/thrift/TestSentryWebServerWithoutSecurity.java
@@ -22,6 +22,7 @@
 
 import org.apache.commons.io.IOUtils;
 import org.apache.sentry.service.thrift.SentryServiceIntegrationBase;
+import org.apache.sentry.service.web.ConfServlet;
 import org.junit.After;
 import org.junit.Assert;
 import org.junit.Before;
diff --git a/sentry-service/sentry-service-web/pom.xml b/sentry-service/sentry-service-web/pom.xml
new file mode 100644
index 0000000..53c6e3f
--- /dev/null
+++ b/sentry-service/sentry-service-web/pom.xml
@@ -0,0 +1,118 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  ~
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <parent>
+    <artifactId>sentry-service</artifactId>
+    <groupId>org.apache.sentry</groupId>
+    <version>2.2.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.sentry</groupId>
+  <artifactId>sentry-service-web</artifactId>
+
+  <build>
+    <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
+    <testSourceDirectory>${basedir}/src/test/java</testSourceDirectory>
+    <resources>
+      <resource>
+        <directory>${basedir}/src/main</directory>
+        <includes>
+          <include>webapp/**</include>
+        </includes>
+        <filtering>true</filtering>
+      </resource>
+      <resource>
+        <directory>${basedir}/src/main/resources</directory>
+      </resource>
+    </resources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-resources-plugin</artifactId>
+        <configuration>
+          <nonFilteredFileExtensions>
+            <nonFilteredFileExtension>eot</nonFilteredFileExtension>
+            <nonFilteredFileExtension>png</nonFilteredFileExtension>
+            <nonFilteredFileExtension>svg</nonFilteredFileExtension>
+            <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
+            <nonFilteredFileExtension>woff</nonFilteredFileExtension>
+            <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
+          </nonFilteredFileExtensions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.projectlombok</groupId>
+      <artifactId>lombok</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sentry</groupId>
+      <artifactId>sentry-core-common</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sentry</groupId>
+      <artifactId>sentry-service-providers</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sentry</groupId>
+      <artifactId>sentry-spi</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+      <version>${jetty.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+      <version>${jetty.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-all</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-minikdc</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/ConfServlet.java b/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/ConfServlet.java
similarity index 97%
rename from sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/ConfServlet.java
rename to sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/ConfServlet.java
index 8625487..b0fda0e 100644
--- a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/ConfServlet.java
+++ b/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/ConfServlet.java
@@ -1,6 +1,4 @@
-package org.apache.sentry.api.service.thrift;
-
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -16,8 +14,11 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
  */
 
+package org.apache.sentry.service.web;
+
 import java.io.IOException;
 import java.io.Writer;
 
diff --git a/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/DefaultWebServicesProvider.java b/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/DefaultWebServicesProvider.java
new file mode 100644
index 0000000..9aafa29
--- /dev/null
+++ b/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/DefaultWebServicesProvider.java
@@ -0,0 +1,168 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package org.apache.sentry.service.web;
+
+import com.google.common.base.Preconditions;
+import java.io.IOException;
+import java.net.URL;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.EnumSet;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import javax.servlet.DispatcherType;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.security.SecurityUtil;
+import org.apache.hadoop.security.UserGroupInformation;
+import org.apache.hadoop.security.authentication.server.AuthenticationFilter;
+import org.apache.sentry.server.provider.webservice.AttributeDesc;
+import org.apache.sentry.server.provider.webservice.FilterDesc;
+import org.apache.sentry.server.provider.webservice.WebServiceProvider;
+import org.apache.sentry.server.provider.webservice.WebServiceProviderFactory;
+import org.apache.sentry.server.provider.webservice.ServletDesc;
+import org.apache.sentry.service.common.ServiceConstants.ServerConfig;
+import org.eclipse.jetty.servlet.DefaultServlet;
+import org.eclipse.jetty.servlet.FilterHolder;
+import org.eclipse.jetty.servlet.ServletHolder;
+
+/**
+ * Provides the Web Interface functions for default Sentry services.
+ */
+@Slf4j
+public class DefaultWebServicesProvider implements WebServiceProvider,
+    WebServiceProviderFactory {
+
+  public static final String ID = "default";
+  private static final String STATIC_RESOURCE_DIR = "/webapp";
+
+  private Configuration config;
+
+  @Override
+  public List<ServletDesc> getServlets() {
+    List<ServletDesc> servlets = new ArrayList<>();
+    servlets.add(ServletDesc.of("/conf", new ServletHolder(ConfServlet.class)));
+    servlets.add(ServletDesc.of("/admin/logLevel", new ServletHolder(LogLevelServlet.class)));
+    if (config.getBoolean(ServerConfig.SENTRY_WEB_PUBSUB_SERVLET_ENABLED,
+        ServerConfig.SENTRY_WEB_PUBSUB_SERVLET_ENABLED_DEFAULT)) {
+      servlets.add(ServletDesc.of("/admin/publishMessage", new ServletHolder(PubSubServlet.class)));
+    }
+    if (config.getBoolean(ServerConfig.SENTRY_WEB_ADMIN_SERVLET_ENABLED,
+        ServerConfig.SENTRY_WEB_ADMIN_SERVLET_ENABLED_DEFAULT)) {
+      // Static files holder
+      ServletHolder staticHolder = new ServletHolder(new DefaultServlet());
+      staticHolder.setInitParameter("pathInfoOnly", "true");
+      URL url = this.getClass().getResource(STATIC_RESOURCE_DIR);
+      staticHolder.setInitParameter("resourceBase", url.toString());
+      servlets.add(ServletDesc.of("/*", staticHolder));
+    }
+
+    return servlets;
+  }
+
+  @Override
+  public List<AttributeDesc> getAttributes() {
+    return Arrays.asList(AttributeDesc.of(ConfServlet.CONF_CONTEXT_ATTRIBUTE, config));
+  }
+
+  @Override
+  public List<FilterDesc> getFilters() {
+    List<FilterDesc> filters = new ArrayList<>();
+    String authMethod = config.get(ServerConfig.SENTRY_WEB_SECURITY_TYPE);
+    if (!ServerConfig.SENTRY_WEB_SECURITY_TYPE_NONE.equalsIgnoreCase(authMethod)) {
+      /**
+       * SentryAuthFilter is a subclass of AuthenticationFilter and
+       * AuthenticationFilter tagged as private and unstable interface:
+       * While there are not guarantees that this interface will not change,
+       * it is fairly stable and used by other projects (ie - Oozie)
+       */
+      FilterHolder sentryAuthFilterHolder = new FilterHolder(SentryAuthFilter.class);
+      sentryAuthFilterHolder.setInitParameters(loadWebAuthenticationConf(config));
+      filters.add(FilterDesc.of("/*", sentryAuthFilterHolder, EnumSet.of(DispatcherType.REQUEST)));
+    }
+    return filters;
+  }
+
+  private static Map<String, String> loadWebAuthenticationConf(Configuration conf) {
+    Map<String, String> prop = new HashMap<String, String>();
+    prop.put(AuthenticationFilter.CONFIG_PREFIX, ServerConfig.SENTRY_WEB_SECURITY_PREFIX);
+    String allowUsers = conf.get(ServerConfig.SENTRY_WEB_SECURITY_ALLOW_CONNECT_USERS);
+    if (allowUsers == null || allowUsers.equals("")) {
+      allowUsers = conf.get(ServerConfig.ALLOW_CONNECT);
+      conf.set(ServerConfig.SENTRY_WEB_SECURITY_ALLOW_CONNECT_USERS, allowUsers);
+    }
+    validateConf(conf);
+    for (Map.Entry<String, String> entry : conf) {
+      String name = entry.getKey();
+      if (name.startsWith(ServerConfig.SENTRY_WEB_SECURITY_PREFIX)) {
+        String value = conf.get(name);
+        prop.put(name, value);
+      }
+    }
+    return prop;
+  }
+
+  private static void validateConf(Configuration conf) {
+    String authHandlerName = conf.get(ServerConfig.SENTRY_WEB_SECURITY_TYPE);
+    Preconditions.checkNotNull(authHandlerName, "Web authHandler should not be null.");
+    String allowUsers = conf.get(ServerConfig.SENTRY_WEB_SECURITY_ALLOW_CONNECT_USERS);
+    Preconditions.checkNotNull(allowUsers, "Allow connect user(s) should not be null.");
+    if (ServerConfig.SENTRY_WEB_SECURITY_TYPE_KERBEROS.equalsIgnoreCase(authHandlerName)) {
+      String principal = conf.get(ServerConfig.SENTRY_WEB_SECURITY_PRINCIPAL);
+      Preconditions.checkNotNull(principal, "Kerberos principal should not be null.");
+      Preconditions.checkArgument(principal.length() != 0, "Kerberos principal is not right.");
+      String keytabFile = conf.get(ServerConfig.SENTRY_WEB_SECURITY_KEYTAB);
+      Preconditions.checkNotNull(keytabFile, "Keytab File should not be null.");
+      Preconditions.checkArgument(keytabFile.length() != 0, "Keytab File is not right.");
+      try {
+        UserGroupInformation.setConfiguration(conf);
+        String hostPrincipal = SecurityUtil
+            .getServerPrincipal(principal, ServerConfig.RPC_ADDRESS_DEFAULT);
+        UserGroupInformation.loginUserFromKeytab(hostPrincipal, keytabFile);
+      } catch (IOException ex) {
+        throw new IllegalArgumentException("Can't use Kerberos authentication, principal ["
+            + principal + "] keytab [" + keytabFile + "]", ex);
+      }
+      LOGGER
+          .info("Using Kerberos authentication, principal [{}] keytab [{}]", principal, keytabFile);
+    }
+  }
+
+  @Override
+  public void init(Configuration config) {
+    this.config = config;
+  }
+
+  @Override
+  public WebServiceProvider create() {
+    return this;
+  }
+
+  @Override
+  public String getId() {
+    return ID;
+  }
+
+  @Override
+  public void close() {
+
+  }
+}
diff --git a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/LogLevelServlet.java b/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/LogLevelServlet.java
similarity index 97%
rename from sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/LogLevelServlet.java
rename to sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/LogLevelServlet.java
index af81d6f..a496779 100644
--- a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/LogLevelServlet.java
+++ b/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/LogLevelServlet.java
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -6,16 +6,17 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * <p>
- * http://www.apache.org/licenses/LICENSE-2.0
- * <p>
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
  */
-package org.apache.sentry.api.service.thrift;
+package org.apache.sentry.service.web;
 
 import org.apache.log4j.Level;
 import org.apache.log4j.LogManager;
diff --git a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/PubSubServlet.java b/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/PubSubServlet.java
similarity index 97%
rename from sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/PubSubServlet.java
rename to sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/PubSubServlet.java
index 8da35f1..c7e281b 100644
--- a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/PubSubServlet.java
+++ b/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/PubSubServlet.java
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -6,16 +6,17 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * <p>
- * http://www.apache.org/licenses/LICENSE-2.0
- * <p>
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
  */
-package org.apache.sentry.api.service.thrift;
+package org.apache.sentry.service.web;
 
 import org.apache.sentry.core.common.utils.PubSub;
 
diff --git a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/SentryAuthFilter.java b/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/SentryAuthFilter.java
similarity index 98%
rename from sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/SentryAuthFilter.java
rename to sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/SentryAuthFilter.java
index 23121ec..a6d75ad 100644
--- a/sentry-service/sentry-service-server/src/main/java/org/apache/sentry/api/service/thrift/SentryAuthFilter.java
+++ b/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/SentryAuthFilter.java
@@ -1,4 +1,4 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -14,8 +14,9 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
  */
-package org.apache.sentry.api.service.thrift;
+package org.apache.sentry.service.web;
 
 import java.io.IOException;
 import java.util.Enumeration;
diff --git a/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/SentryWebServer.java b/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/SentryWebServer.java
new file mode 100644
index 0000000..61af4e1
--- /dev/null
+++ b/sentry-service/sentry-service-web/src/main/java/org/apache/sentry/service/web/SentryWebServer.java
@@ -0,0 +1,180 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package org.apache.sentry.service.web;
+
+import com.google.common.base.Splitter;
+import com.google.common.base.Strings;
+import com.google.common.collect.Sets;
+import java.util.EventListener;
+import java.util.List;
+import java.util.Set;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.sentry.server.provider.webservice.AttributeDesc;
+import org.apache.sentry.server.provider.webservice.FilterDesc;
+import org.apache.sentry.server.provider.webservice.WebServiceProvider;
+import org.apache.sentry.server.provider.webservice.WebServiceProviderFactory;
+import org.apache.sentry.server.provider.webservice.WebServiceSpi;
+import org.apache.sentry.server.provider.webservice.ServletDesc;
+import org.apache.sentry.service.common.ServiceConstants.ServerConfig;
+import org.apache.sentry.spi.ProviderManager;
+import org.eclipse.jetty.security.ConstraintMapping;
+import org.eclipse.jetty.security.ConstraintSecurityHandler;
+import org.eclipse.jetty.server.Connector;
+import org.eclipse.jetty.server.Handler;
+import org.eclipse.jetty.server.HttpConfiguration;
+import org.eclipse.jetty.server.HttpConnectionFactory;
+import org.eclipse.jetty.server.SecureRequestCustomizer;
+import org.eclipse.jetty.server.Server;
+import org.eclipse.jetty.server.ServerConnector;
+import org.eclipse.jetty.server.SslConnectionFactory;
+import org.eclipse.jetty.server.handler.ContextHandlerCollection;
+import org.eclipse.jetty.server.handler.DefaultHandler;
+import org.eclipse.jetty.servlet.ServletContextHandler;
+import org.eclipse.jetty.util.security.Constraint;
+import org.eclipse.jetty.util.ssl.SslContextFactory;
+
+@Slf4j
+public class SentryWebServer {
+
+  private Server server;
+
+  public SentryWebServer(Configuration conf) {
+    server = new Server();
+
+    // Create a channel connector for "http/https" requests
+    ServerConnector connector;
+    int port = conf.getInt(ServerConfig.SENTRY_WEB_PORT, ServerConfig.SENTRY_WEB_PORT_DEFAULT);
+    if (conf.getBoolean(ServerConfig.SENTRY_WEB_USE_SSL, false)) {
+      SslContextFactory sslContextFactory = new SslContextFactory();
+      sslContextFactory.setKeyStorePath(conf.get(ServerConfig.SENTRY_WEB_SSL_KEYSTORE_PATH, ""));
+      sslContextFactory.setKeyStorePassword(
+          conf.get(ServerConfig.SENTRY_WEB_SSL_KEYSTORE_PASSWORD, ""));
+      // Exclude SSL blacklist protocols
+      sslContextFactory.setExcludeProtocols(ServerConfig.SENTRY_SSL_PROTOCOL_BLACKLIST_DEFAULT);
+      Set<String> moreExcludedSSLProtocols =
+          Sets.newHashSet(Splitter.on(",").trimResults().omitEmptyStrings()
+              .split(Strings.nullToEmpty(conf.get(ServerConfig.SENTRY_SSL_PROTOCOL_BLACKLIST))));
+      sslContextFactory.addExcludeProtocols(moreExcludedSSLProtocols.toArray(
+          new String[moreExcludedSSLProtocols.size()]));
+
+      HttpConfiguration httpConfiguration = new HttpConfiguration();
+      httpConfiguration.setSecurePort(port);
+      httpConfiguration.setSecureScheme("https");
+      httpConfiguration.addCustomizer(new SecureRequestCustomizer());
+
+      connector = new ServerConnector(
+          server,
+          new SslConnectionFactory(sslContextFactory, "http/1.1"),
+          new HttpConnectionFactory(httpConfiguration));
+
+      LOGGER.info("Now using SSL mode.");
+    } else {
+      connector = new ServerConnector(server, new HttpConnectionFactory());
+    }
+
+    connector.setPort(port);
+    server.setConnectors(new Connector[]{connector});
+
+    ServletContextHandler contextHandler = new ServletContextHandler();
+
+    // Load all of the Web Service Provider
+
+    // get the web service providers
+    List<WebServiceProviderFactory> serviceProviderFactories = ProviderManager.getInstance()
+        .load(WebServiceSpi.ID);
+
+    // initialize the factories
+    for (WebServiceProviderFactory providerFactory : serviceProviderFactories) {
+      providerFactory.init(conf);
+      WebServiceProvider provider = providerFactory.create();
+
+      // register its listeners
+      for (EventListener listener : provider.getListeners()) {
+        contextHandler.addEventListener(listener);
+      }
+
+      //register its attributes
+      for (AttributeDesc attributeEntry : provider.getAttributes()) {
+        contextHandler.getServletContext()
+            .setAttribute(attributeEntry.getName(), attributeEntry.getAttribute());
+      }
+
+      // register its servlets
+      for (ServletDesc servletEntry : provider.getServlets()) {
+        contextHandler
+            .addServlet(servletEntry.getServletHolder(), servletEntry.getPathSpec());
+      }
+
+      // register its filters
+      for (FilterDesc filterDesc : provider.getFilters()) {
+        contextHandler.addFilter(filterDesc.getFilterHolder(), filterDesc.getPathSpec(),
+            filterDesc.getDispatcherTypes());
+      }
+    }
+
+    ContextHandlerCollection contextHandlerCollection = new ContextHandlerCollection();
+    contextHandlerCollection.setHandlers(new Handler[]{contextHandler,
+        new DefaultHandler()});
+
+    server.setHandler(disableTraceMethod(contextHandlerCollection));
+  }
+
+  /**
+   * Disables the HTTP TRACE method request which leads to Cross-Site Tracking (XST) problems.
+   *
+   * To disable it, we need to wrap the Handler (which has the HTTP TRACE enabled) with a constraint
+   * that denies access to the HTTP TRACE method.
+   *
+   * @param handler The Handler which has the HTTP TRACE enabled.
+   * @return A new Handler wrapped with the HTTP TRACE constraint and the Handler passed as
+   * parameter.
+   */
+  private Handler disableTraceMethod(Handler handler) {
+    Constraint disableTraceConstraint = new Constraint();
+    disableTraceConstraint.setName("Disable TRACE");
+    disableTraceConstraint.setAuthenticate(true);
+
+    ConstraintMapping mapping = new ConstraintMapping();
+    mapping.setConstraint(disableTraceConstraint);
+    mapping.setMethod("TRACE");
+    mapping.setPathSpec("/");
+
+    ConstraintSecurityHandler constraintSecurityHandler = new ConstraintSecurityHandler();
+    constraintSecurityHandler.addConstraintMapping(mapping);
+    constraintSecurityHandler.setHandler(handler);
+
+    return constraintSecurityHandler;
+  }
+
+  public void start() throws Exception {
+    server.start();
+  }
+
+  public void stop() throws Exception {
+    server.stop();
+  }
+
+  public boolean isAlive() {
+    return server != null && server.isStarted();
+  }
+
+
+}
diff --git a/sentry-service/sentry-service-web/src/main/resources/META-INF/services/org.apache.sentry.server.provider.webservice.WebServiceProviderFactory b/sentry-service/sentry-service-web/src/main/resources/META-INF/services/org.apache.sentry.server.provider.webservice.WebServiceProviderFactory
new file mode 100644
index 0000000..8111e69
--- /dev/null
+++ b/sentry-service/sentry-service-web/src/main/resources/META-INF/services/org.apache.sentry.server.provider.webservice.WebServiceProviderFactory
@@ -0,0 +1,20 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+#
+
+org.apache.sentry.service.web.DefaultWebServicesProvider
\ No newline at end of file
diff --git a/sentry-service/sentry-service-web/src/main/webapp/index.html b/sentry-service/sentry-service-web/src/main/webapp/index.html
new file mode 100644
index 0000000..08df9d1
--- /dev/null
+++ b/sentry-service/sentry-service-web/src/main/webapp/index.html
@@ -0,0 +1,84 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  ~
+  -->
+<!DOCTYPE HTML>
+<html lang="en">
+  <head>
+    <meta charset="utf-8">
+    <title>Sentry Service</title>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <meta name="description" content="">
+    <link href="/static/bootstrap/css/bootstrap-3.3.7.min.css" rel="stylesheet">
+    <link href="/static/bootstrap/css/bootstrap-theme-3.3.7.min.css" rel="stylesheet">
+    <link href="/static/materialdesign/css/materialdesignicons.min.css" rel="stylesheet">
+    <link href="/static/css/sentry.css" rel="stylesheet">
+  </head>
+
+  <body>
+    <nav class="navbar navbar-default navbar-fixed-top">
+      <div class="container">
+        <div class="navbar-header">
+          <a class="navbar-brand" href="#"><img src="/static/images/sentry.png" alt="Sentry Logo" width="48" height="36"/></a>
+        </div>
+        <div class="collapse navbar-collapse">
+          <ul class="nav navbar-nav">
+            <li class="active"><a href="#">Home</a></li>
+          </ul>
+        </div>
+      </div>
+    </nav>
+
+    <div class="container">
+      <div class="page-header"><h2>Sentry Service</h2></div>
+      <div class="panel panel-default">
+        <div class="panel-heading">
+          <h3 class="panel-title">Runtime Information</h3>
+        </div>
+        <div class="panel-body">
+            <div><a href="/conf"><span class="mdi mdi-settings"></span> Configuration</a></div>
+            <div><a href="/healthcheck"><span class="mdi mdi-heart-pulse"></span> Health Checks</a></div>
+            <div><a href="/metrics?pretty=true"><span class="mdi mdi-counter"></span> Metrics</a></div>
+            <div><a href="/threads"><span class="mdi mdi-source-fork"></span> Threads</a></div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading">
+          <h3 class="panel-title">Runtime Modifications</h3>
+        </div>
+        <div class="panel-body">
+            <div><a href="/admin/logLevel"><span class="mdi mdi-card-bulleted-settings"></span> Log Level</a></div>
+            <div><a href="/admin/publishMessage"><span class="mdi mdi-message"></span> Publish Message</a></div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading">
+          <h3 class="panel-title">Service Information</h3>
+        </div>
+        <div class="panel-body">
+            <div><a href="/admin/roles"><span class="mdi mdi-account-group"></span> Roles</a></div>
+        </div>
+      </div>
+    </div>
+
+    <footer class="footer">
+      <div class="container">
+        <p class="text-muted">${project.version}</p>
+      </div>
+    </footer>
+  </body>
+</html>
diff --git a/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/css/bootstrap-3.3.7.min.css b/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/css/bootstrap-3.3.7.min.css
new file mode 100644
index 0000000..cd574d5
--- /dev/null
+++ b/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/css/bootstrap-3.3.7.min.css
@@ -0,0 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{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 #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.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-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-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-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.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{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.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{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.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{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-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-image:-o-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-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);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-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-image:-o-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-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)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-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-image:-o-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-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)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-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-image:-o-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-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)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-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-image:-o-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-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)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.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-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
+/*# sourceMappingURL=bootstrap.min.css.map */
\ No newline at end of file
diff --git a/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/css/bootstrap-theme-3.3.7.min.css b/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/css/bootstrap-theme-3.3.7.min.css
new file mode 100644
index 0000000..d4d4cc1
--- /dev/null
+++ b/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/css/bootstrap-theme-3.3.7.min.css
@@ -0,0 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-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-image:-o-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-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)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}
+/*# sourceMappingURL=bootstrap-theme.min.css.map */
\ No newline at end of file
diff --git a/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.svg b/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.svg
new file mode 100644
index 0000000..94fb549
--- /dev/null
+++ b/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.svg
@@ -0,0 +1,288 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
+<font-face units-per-em="1200" ascent="960" descent="-240" />
+<missing-glyph horiz-adv-x="500" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="400" />
+<glyph unicode=" " />
+<glyph unicode="*" d="M600 1100q15 0 34 -1.5t30 -3.5l11 -1q10 -2 17.5 -10.5t7.5 -18.5v-224l158 158q7 7 18 8t19 -6l106 -106q7 -8 6 -19t-8 -18l-158 -158h224q10 0 18.5 -7.5t10.5 -17.5q6 -41 6 -75q0 -15 -1.5 -34t-3.5 -30l-1 -11q-2 -10 -10.5 -17.5t-18.5 -7.5h-224l158 -158 q7 -7 8 -18t-6 -19l-106 -106q-8 -7 -19 -6t-18 8l-158 158v-224q0 -10 -7.5 -18.5t-17.5 -10.5q-41 -6 -75 -6q-15 0 -34 1.5t-30 3.5l-11 1q-10 2 -17.5 10.5t-7.5 18.5v224l-158 -158q-7 -7 -18 -8t-19 6l-106 106q-7 8 -6 19t8 18l158 158h-224q-10 0 -18.5 7.5 t-10.5 17.5q-6 41 -6 75q0 15 1.5 34t3.5 30l1 11q2 10 10.5 17.5t18.5 7.5h224l-158 158q-7 7 -8 18t6 19l106 106q8 7 19 6t18 -8l158 -158v224q0 10 7.5 18.5t17.5 10.5q41 6 75 6z" />
+<glyph unicode="+" d="M450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-350h350q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-350v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v350h-350q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5 h350v350q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xa0;" />
+<glyph unicode="&#xa5;" d="M825 1100h250q10 0 12.5 -5t-5.5 -13l-364 -364q-6 -6 -11 -18h268q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-100h275q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-174q0 -11 -7.5 -18.5t-18.5 -7.5h-148q-11 0 -18.5 7.5t-7.5 18.5v174 h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h125v100h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h118q-5 12 -11 18l-364 364q-8 8 -5.5 13t12.5 5h250q25 0 43 -18l164 -164q8 -8 18 -8t18 8l164 164q18 18 43 18z" />
+<glyph unicode="&#x2000;" horiz-adv-x="650" />
+<glyph unicode="&#x2001;" horiz-adv-x="1300" />
+<glyph unicode="&#x2002;" horiz-adv-x="650" />
+<glyph unicode="&#x2003;" horiz-adv-x="1300" />
+<glyph unicode="&#x2004;" horiz-adv-x="433" />
+<glyph unicode="&#x2005;" horiz-adv-x="325" />
+<glyph unicode="&#x2006;" horiz-adv-x="216" />
+<glyph unicode="&#x2007;" horiz-adv-x="216" />
+<glyph unicode="&#x2008;" horiz-adv-x="162" />
+<glyph unicode="&#x2009;" horiz-adv-x="260" />
+<glyph unicode="&#x200a;" horiz-adv-x="72" />
+<glyph unicode="&#x202f;" horiz-adv-x="260" />
+<glyph unicode="&#x205f;" horiz-adv-x="325" />
+<glyph unicode="&#x20ac;" d="M744 1198q242 0 354 -189q60 -104 66 -209h-181q0 45 -17.5 82.5t-43.5 61.5t-58 40.5t-60.5 24t-51.5 7.5q-19 0 -40.5 -5.5t-49.5 -20.5t-53 -38t-49 -62.5t-39 -89.5h379l-100 -100h-300q-6 -50 -6 -100h406l-100 -100h-300q9 -74 33 -132t52.5 -91t61.5 -54.5t59 -29 t47 -7.5q22 0 50.5 7.5t60.5 24.5t58 41t43.5 61t17.5 80h174q-30 -171 -128 -278q-107 -117 -274 -117q-206 0 -324 158q-36 48 -69 133t-45 204h-217l100 100h112q1 47 6 100h-218l100 100h134q20 87 51 153.5t62 103.5q117 141 297 141z" />
+<glyph unicode="&#x20bd;" d="M428 1200h350q67 0 120 -13t86 -31t57 -49.5t35 -56.5t17 -64.5t6.5 -60.5t0.5 -57v-16.5v-16.5q0 -36 -0.5 -57t-6.5 -61t-17 -65t-35 -57t-57 -50.5t-86 -31.5t-120 -13h-178l-2 -100h288q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-138v-175q0 -11 -5.5 -18 t-15.5 -7h-149q-10 0 -17.5 7.5t-7.5 17.5v175h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v100h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v475q0 10 7.5 17.5t17.5 7.5zM600 1000v-300h203q64 0 86.5 33t22.5 119q0 84 -22.5 116t-86.5 32h-203z" />
+<glyph unicode="&#x2212;" d="M250 700h800q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#x231b;" d="M1000 1200v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-50v-100q0 -91 -49.5 -165.5t-130.5 -109.5q81 -35 130.5 -109.5t49.5 -165.5v-150h50q21 0 35.5 -14.5t14.5 -35.5v-150h-800v150q0 21 14.5 35.5t35.5 14.5h50v150q0 91 49.5 165.5t130.5 109.5q-81 35 -130.5 109.5 t-49.5 165.5v100h-50q-21 0 -35.5 14.5t-14.5 35.5v150h800zM400 1000v-100q0 -60 32.5 -109.5t87.5 -73.5q28 -12 44 -37t16 -55t-16 -55t-44 -37q-55 -24 -87.5 -73.5t-32.5 -109.5v-150h400v150q0 60 -32.5 109.5t-87.5 73.5q-28 12 -44 37t-16 55t16 55t44 37 q55 24 87.5 73.5t32.5 109.5v100h-400z" />
+<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
+<glyph unicode="&#x2601;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -206.5q0 -121 -85 -207.5t-205 -86.5h-750q-79 0 -135.5 57t-56.5 137q0 69 42.5 122.5t108.5 67.5q-2 12 -2 37q0 153 108 260.5t260 107.5z" />
+<glyph unicode="&#x26fa;" d="M774 1193.5q16 -9.5 20.5 -27t-5.5 -33.5l-136 -187l467 -746h30q20 0 35 -18.5t15 -39.5v-42h-1200v42q0 21 15 39.5t35 18.5h30l468 746l-135 183q-10 16 -5.5 34t20.5 28t34 5.5t28 -20.5l111 -148l112 150q9 16 27 20.5t34 -5zM600 200h377l-182 112l-195 534v-646z " />
+<glyph unicode="&#x2709;" d="M25 1100h1150q10 0 12.5 -5t-5.5 -13l-564 -567q-8 -8 -18 -8t-18 8l-564 567q-8 8 -5.5 13t12.5 5zM18 882l264 -264q8 -8 8 -18t-8 -18l-264 -264q-8 -8 -13 -5.5t-5 12.5v550q0 10 5 12.5t13 -5.5zM918 618l264 264q8 8 13 5.5t5 -12.5v-550q0 -10 -5 -12.5t-13 5.5 l-264 264q-8 8 -8 18t8 18zM818 482l364 -364q8 -8 5.5 -13t-12.5 -5h-1150q-10 0 -12.5 5t5.5 13l364 364q8 8 18 8t18 -8l164 -164q8 -8 18 -8t18 8l164 164q8 8 18 8t18 -8z" />
+<glyph unicode="&#x270f;" d="M1011 1210q19 0 33 -13l153 -153q13 -14 13 -33t-13 -33l-99 -92l-214 214l95 96q13 14 32 14zM1013 800l-615 -614l-214 214l614 614zM317 96l-333 -112l110 335z" />
+<glyph unicode="&#xe001;" d="M700 650v-550h250q21 0 35.5 -14.5t14.5 -35.5v-50h-800v50q0 21 14.5 35.5t35.5 14.5h250v550l-500 550h1200z" />
+<glyph unicode="&#xe002;" d="M368 1017l645 163q39 15 63 0t24 -49v-831q0 -55 -41.5 -95.5t-111.5 -63.5q-79 -25 -147 -4.5t-86 75t25.5 111.5t122.5 82q72 24 138 8v521l-600 -155v-606q0 -42 -44 -90t-109 -69q-79 -26 -147 -5.5t-86 75.5t25.5 111.5t122.5 82.5q72 24 138 7v639q0 38 14.5 59 t53.5 34z" />
+<glyph unicode="&#xe003;" d="M500 1191q100 0 191 -39t156.5 -104.5t104.5 -156.5t39 -191l-1 -2l1 -5q0 -141 -78 -262l275 -274q23 -26 22.5 -44.5t-22.5 -42.5l-59 -58q-26 -20 -46.5 -20t-39.5 20l-275 274q-119 -77 -261 -77l-5 1l-2 -1q-100 0 -191 39t-156.5 104.5t-104.5 156.5t-39 191 t39 191t104.5 156.5t156.5 104.5t191 39zM500 1022q-88 0 -162 -43t-117 -117t-43 -162t43 -162t117 -117t162 -43t162 43t117 117t43 162t-43 162t-117 117t-162 43z" />
+<glyph unicode="&#xe005;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104z" />
+<glyph unicode="&#xe006;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429z" />
+<glyph unicode="&#xe007;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429zM477 700h-240l197 -142l-74 -226 l193 139l195 -140l-74 229l192 140h-234l-78 211z" />
+<glyph unicode="&#xe008;" d="M600 1200q124 0 212 -88t88 -212v-250q0 -46 -31 -98t-69 -52v-75q0 -10 6 -21.5t15 -17.5l358 -230q9 -5 15 -16.5t6 -21.5v-93q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v93q0 10 6 21.5t15 16.5l358 230q9 6 15 17.5t6 21.5v75q-38 0 -69 52 t-31 98v250q0 124 88 212t212 88z" />
+<glyph unicode="&#xe009;" d="M25 1100h1150q10 0 17.5 -7.5t7.5 -17.5v-1050q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v1050q0 10 7.5 17.5t17.5 7.5zM100 1000v-100h100v100h-100zM875 1000h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5t17.5 -7.5h550 q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM1000 1000v-100h100v100h-100zM100 800v-100h100v100h-100zM1000 800v-100h100v100h-100zM100 600v-100h100v100h-100zM1000 600v-100h100v100h-100zM875 500h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5 t17.5 -7.5h550q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM100 400v-100h100v100h-100zM1000 400v-100h100v100h-100zM100 200v-100h100v100h-100zM1000 200v-100h100v100h-100z" />
+<glyph unicode="&#xe010;" d="M50 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM50 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe011;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM850 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 700h200q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5 t35.5 14.5z" />
+<glyph unicode="&#xe012;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h700q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe013;" d="M465 477l571 571q8 8 18 8t17 -8l177 -177q8 -7 8 -17t-8 -18l-783 -784q-7 -8 -17.5 -8t-17.5 8l-384 384q-8 8 -8 18t8 17l177 177q7 8 17 8t18 -8l171 -171q7 -7 18 -7t18 7z" />
+<glyph unicode="&#xe014;" d="M904 1083l178 -179q8 -8 8 -18.5t-8 -17.5l-267 -268l267 -268q8 -7 8 -17.5t-8 -18.5l-178 -178q-8 -8 -18.5 -8t-17.5 8l-268 267l-268 -267q-7 -8 -17.5 -8t-18.5 8l-178 178q-8 8 -8 18.5t8 17.5l267 268l-267 268q-8 7 -8 17.5t8 18.5l178 178q8 8 18.5 8t17.5 -8 l268 -267l268 268q7 7 17.5 7t18.5 -7z" />
+<glyph unicode="&#xe015;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM425 900h150q10 0 17.5 -7.5t7.5 -17.5v-75h75q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5 t-17.5 -7.5h-75v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-75q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v75q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe016;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM325 800h350q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-350q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe017;" d="M550 1200h100q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM800 975v166q167 -62 272 -209.5t105 -331.5q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5 t-184.5 123t-123 184.5t-45.5 224q0 184 105 331.5t272 209.5v-166q-103 -55 -165 -155t-62 -220q0 -116 57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5q0 120 -62 220t-165 155z" />
+<glyph unicode="&#xe018;" d="M1025 1200h150q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM725 800h150q10 0 17.5 -7.5t7.5 -17.5v-750q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v750 q0 10 7.5 17.5t17.5 7.5zM425 500h150q10 0 17.5 -7.5t7.5 -17.5v-450q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v450q0 10 7.5 17.5t17.5 7.5zM125 300h150q10 0 17.5 -7.5t7.5 -17.5v-250q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5 v250q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe019;" d="M600 1174q33 0 74 -5l38 -152l5 -1q49 -14 94 -39l5 -2l134 80q61 -48 104 -105l-80 -134l3 -5q25 -44 39 -93l1 -6l152 -38q5 -43 5 -73q0 -34 -5 -74l-152 -38l-1 -6q-15 -49 -39 -93l-3 -5l80 -134q-48 -61 -104 -105l-134 81l-5 -3q-44 -25 -94 -39l-5 -2l-38 -151 q-43 -5 -74 -5q-33 0 -74 5l-38 151l-5 2q-49 14 -94 39l-5 3l-134 -81q-60 48 -104 105l80 134l-3 5q-25 45 -38 93l-2 6l-151 38q-6 42 -6 74q0 33 6 73l151 38l2 6q13 48 38 93l3 5l-80 134q47 61 105 105l133 -80l5 2q45 25 94 39l5 1l38 152q43 5 74 5zM600 815 q-89 0 -152 -63t-63 -151.5t63 -151.5t152 -63t152 63t63 151.5t-63 151.5t-152 63z" />
+<glyph unicode="&#xe020;" d="M500 1300h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-75h-1100v75q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5zM500 1200v-100h300v100h-300zM1100 900v-800q0 -41 -29.5 -70.5t-70.5 -29.5h-700q-41 0 -70.5 29.5t-29.5 70.5 v800h900zM300 800v-700h100v700h-100zM500 800v-700h100v700h-100zM700 800v-700h100v700h-100zM900 800v-700h100v700h-100z" />
+<glyph unicode="&#xe021;" d="M18 618l620 608q8 7 18.5 7t17.5 -7l608 -608q8 -8 5.5 -13t-12.5 -5h-175v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v375h-300v-375q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v575h-175q-10 0 -12.5 5t5.5 13z" />
+<glyph unicode="&#xe022;" d="M600 1200v-400q0 -41 29.5 -70.5t70.5 -29.5h300v-650q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5h450zM1000 800h-250q-21 0 -35.5 14.5t-14.5 35.5v250z" />
+<glyph unicode="&#xe023;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h50q10 0 17.5 -7.5t7.5 -17.5v-275h175q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe024;" d="M1300 0h-538l-41 400h-242l-41 -400h-538l431 1200h209l-21 -300h162l-20 300h208zM515 800l-27 -300h224l-27 300h-170z" />
+<glyph unicode="&#xe025;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-450h191q20 0 25.5 -11.5t-7.5 -27.5l-327 -400q-13 -16 -32 -16t-32 16l-327 400q-13 16 -7.5 27.5t25.5 11.5h191v450q0 21 14.5 35.5t35.5 14.5zM1125 400h50q10 0 17.5 -7.5t7.5 -17.5v-350q0 -10 -7.5 -17.5t-17.5 -7.5 h-1050q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h50q10 0 17.5 -7.5t7.5 -17.5v-175h900v175q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe026;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -275q-13 -16 -32 -16t-32 16l-223 275q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z " />
+<glyph unicode="&#xe027;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM632 914l223 -275q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5l223 275q13 16 32 16 t32 -16z" />
+<glyph unicode="&#xe028;" d="M225 1200h750q10 0 19.5 -7t12.5 -17l186 -652q7 -24 7 -49v-425q0 -12 -4 -27t-9 -17q-12 -6 -37 -6h-1100q-12 0 -27 4t-17 8q-6 13 -6 38l1 425q0 25 7 49l185 652q3 10 12.5 17t19.5 7zM878 1000h-556q-10 0 -19 -7t-11 -18l-87 -450q-2 -11 4 -18t16 -7h150 q10 0 19.5 -7t11.5 -17l38 -152q2 -10 11.5 -17t19.5 -7h250q10 0 19.5 7t11.5 17l38 152q2 10 11.5 17t19.5 7h150q10 0 16 7t4 18l-87 450q-2 11 -11 18t-19 7z" />
+<glyph unicode="&#xe029;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM540 820l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
+<glyph unicode="&#xe030;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-362q0 -10 -7.5 -17.5t-17.5 -7.5h-362q-11 0 -13 5.5t5 12.5l133 133q-109 76 -238 76q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5h150q0 -117 -45.5 -224 t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117z" />
+<glyph unicode="&#xe031;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-361q0 -11 -7.5 -18.5t-18.5 -7.5h-361q-11 0 -13 5.5t5 12.5l134 134q-110 75 -239 75q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5h-150q0 117 45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117zM1027 600h150 q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5q-192 0 -348 118l-134 -134q-7 -8 -12.5 -5.5t-5.5 12.5v360q0 11 7.5 18.5t18.5 7.5h360q10 0 12.5 -5.5t-5.5 -12.5l-133 -133q110 -76 240 -76q116 0 214.5 57t155.5 155.5t57 214.5z" />
+<glyph unicode="&#xe032;" d="M125 1200h1050q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-1050q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM1075 1000h-850q-10 0 -17.5 -7.5t-7.5 -17.5v-850q0 -10 7.5 -17.5t17.5 -7.5h850q10 0 17.5 7.5t7.5 17.5v850 q0 10 -7.5 17.5t-17.5 7.5zM325 900h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 900h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 700h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 700h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 500h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 500h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 300h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 300h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe033;" d="M900 800v200q0 83 -58.5 141.5t-141.5 58.5h-300q-82 0 -141 -59t-59 -141v-200h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h900q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-100zM400 800v150q0 21 15 35.5t35 14.5h200 q20 0 35 -14.5t15 -35.5v-150h-300z" />
+<glyph unicode="&#xe034;" d="M125 1100h50q10 0 17.5 -7.5t7.5 -17.5v-1075h-100v1075q0 10 7.5 17.5t17.5 7.5zM1075 1052q4 0 9 -2q16 -6 16 -23v-421q0 -6 -3 -12q-33 -59 -66.5 -99t-65.5 -58t-56.5 -24.5t-52.5 -6.5q-26 0 -57.5 6.5t-52.5 13.5t-60 21q-41 15 -63 22.5t-57.5 15t-65.5 7.5 q-85 0 -160 -57q-7 -5 -15 -5q-6 0 -11 3q-14 7 -14 22v438q22 55 82 98.5t119 46.5q23 2 43 0.5t43 -7t32.5 -8.5t38 -13t32.5 -11q41 -14 63.5 -21t57 -14t63.5 -7q103 0 183 87q7 8 18 8z" />
+<glyph unicode="&#xe035;" d="M600 1175q116 0 227 -49.5t192.5 -131t131 -192.5t49.5 -227v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v300q0 127 -70.5 231.5t-184.5 161.5t-245 57t-245 -57t-184.5 -161.5t-70.5 -231.5v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50 q-10 0 -17.5 7.5t-7.5 17.5v300q0 116 49.5 227t131 192.5t192.5 131t227 49.5zM220 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460q0 8 6 14t14 6zM820 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460 q0 8 6 14t14 6z" />
+<glyph unicode="&#xe036;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM900 668l120 120q7 7 17 7t17 -7l34 -34q7 -7 7 -17t-7 -17l-120 -120l120 -120q7 -7 7 -17 t-7 -17l-34 -34q-7 -7 -17 -7t-17 7l-120 119l-120 -119q-7 -7 -17 -7t-17 7l-34 34q-7 7 -7 17t7 17l119 120l-119 120q-7 7 -7 17t7 17l34 34q7 8 17 8t17 -8z" />
+<glyph unicode="&#xe037;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6 l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238q-6 8 -4.5 18t9.5 17l29 22q7 5 15 5z" />
+<glyph unicode="&#xe038;" d="M967 1004h3q11 -1 17 -10q135 -179 135 -396q0 -105 -34 -206.5t-98 -185.5q-7 -9 -17 -10h-3q-9 0 -16 6l-42 34q-8 6 -9 16t5 18q111 150 111 328q0 90 -29.5 176t-84.5 157q-6 9 -5 19t10 16l42 33q7 5 15 5zM321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5 t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238 q-6 8 -4.5 18.5t9.5 16.5l29 22q7 5 15 5z" />
+<glyph unicode="&#xe039;" d="M500 900h100v-100h-100v-100h-400v-100h-100v600h500v-300zM1200 700h-200v-100h200v-200h-300v300h-200v300h-100v200h600v-500zM100 1100v-300h300v300h-300zM800 1100v-300h300v300h-300zM300 900h-100v100h100v-100zM1000 900h-100v100h100v-100zM300 500h200v-500 h-500v500h200v100h100v-100zM800 300h200v-100h-100v-100h-200v100h-100v100h100v200h-200v100h300v-300zM100 400v-300h300v300h-300zM300 200h-100v100h100v-100zM1200 200h-100v100h100v-100zM700 0h-100v100h100v-100zM1200 0h-300v100h300v-100z" />
+<glyph unicode="&#xe040;" d="M100 200h-100v1000h100v-1000zM300 200h-100v1000h100v-1000zM700 200h-200v1000h200v-1000zM900 200h-100v1000h100v-1000zM1200 200h-200v1000h200v-1000zM400 0h-300v100h300v-100zM600 0h-100v91h100v-91zM800 0h-100v91h100v-91zM1100 0h-200v91h200v-91z" />
+<glyph unicode="&#xe041;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
+<glyph unicode="&#xe042;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM800 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-56 56l424 426l-700 700h150zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5 t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
+<glyph unicode="&#xe043;" d="M300 1200h825q75 0 75 -75v-900q0 -25 -18 -43l-64 -64q-8 -8 -13 -5.5t-5 12.5v950q0 10 -7.5 17.5t-17.5 7.5h-700q-25 0 -43 -18l-64 -64q-8 -8 -5.5 -13t12.5 -5h700q10 0 17.5 -7.5t7.5 -17.5v-950q0 -10 -7.5 -17.5t-17.5 -7.5h-850q-10 0 -17.5 7.5t-7.5 17.5v975 q0 25 18 43l139 139q18 18 43 18z" />
+<glyph unicode="&#xe044;" d="M250 1200h800q21 0 35.5 -14.5t14.5 -35.5v-1150l-450 444l-450 -445v1151q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe045;" d="M822 1200h-444q-11 0 -19 -7.5t-9 -17.5l-78 -301q-7 -24 7 -45l57 -108q6 -9 17.5 -15t21.5 -6h450q10 0 21.5 6t17.5 15l62 108q14 21 7 45l-83 301q-1 10 -9 17.5t-19 7.5zM1175 800h-150q-10 0 -21 -6.5t-15 -15.5l-78 -156q-4 -9 -15 -15.5t-21 -6.5h-550 q-10 0 -21 6.5t-15 15.5l-78 156q-4 9 -15 15.5t-21 6.5h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-650q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h750q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5 t7.5 17.5v650q0 10 -7.5 17.5t-17.5 7.5zM850 200h-500q-10 0 -19.5 -7t-11.5 -17l-38 -152q-2 -10 3.5 -17t15.5 -7h600q10 0 15.5 7t3.5 17l-38 152q-2 10 -11.5 17t-19.5 7z" />
+<glyph unicode="&#xe046;" d="M500 1100h200q56 0 102.5 -20.5t72.5 -50t44 -59t25 -50.5l6 -20h150q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5h150q2 8 6.5 21.5t24 48t45 61t72 48t102.5 21.5zM900 800v-100 h100v100h-100zM600 730q-95 0 -162.5 -67.5t-67.5 -162.5t67.5 -162.5t162.5 -67.5t162.5 67.5t67.5 162.5t-67.5 162.5t-162.5 67.5zM600 603q43 0 73 -30t30 -73t-30 -73t-73 -30t-73 30t-30 73t30 73t73 30z" />
+<glyph unicode="&#xe047;" d="M681 1199l385 -998q20 -50 60 -92q18 -19 36.5 -29.5t27.5 -11.5l10 -2v-66h-417v66q53 0 75 43.5t5 88.5l-82 222h-391q-58 -145 -92 -234q-11 -34 -6.5 -57t25.5 -37t46 -20t55 -6v-66h-365v66q56 24 84 52q12 12 25 30.5t20 31.5l7 13l399 1006h93zM416 521h340 l-162 457z" />
+<glyph unicode="&#xe048;" d="M753 641q5 -1 14.5 -4.5t36 -15.5t50.5 -26.5t53.5 -40t50.5 -54.5t35.5 -70t14.5 -87q0 -67 -27.5 -125.5t-71.5 -97.5t-98.5 -66.5t-108.5 -40.5t-102 -13h-500v89q41 7 70.5 32.5t29.5 65.5v827q0 24 -0.5 34t-3.5 24t-8.5 19.5t-17 13.5t-28 12.5t-42.5 11.5v71 l471 -1q57 0 115.5 -20.5t108 -57t80.5 -94t31 -124.5q0 -51 -15.5 -96.5t-38 -74.5t-45 -50.5t-38.5 -30.5zM400 700h139q78 0 130.5 48.5t52.5 122.5q0 41 -8.5 70.5t-29.5 55.5t-62.5 39.5t-103.5 13.5h-118v-350zM400 200h216q80 0 121 50.5t41 130.5q0 90 -62.5 154.5 t-156.5 64.5h-159v-400z" />
+<glyph unicode="&#xe049;" d="M877 1200l2 -57q-83 -19 -116 -45.5t-40 -66.5l-132 -839q-9 -49 13 -69t96 -26v-97h-500v97q186 16 200 98l173 832q3 17 3 30t-1.5 22.5t-9 17.5t-13.5 12.5t-21.5 10t-26 8.5t-33.5 10q-13 3 -19 5v57h425z" />
+<glyph unicode="&#xe050;" d="M1300 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM175 1000h-75v-800h75l-125 -167l-125 167h75v800h-75l125 167z" />
+<glyph unicode="&#xe051;" d="M1100 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-650q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v650h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM1167 50l-167 -125v75h-800v-75l-167 125l167 125v-75h800v75z" />
+<glyph unicode="&#xe052;" d="M50 1100h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe053;" d="M250 1100h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM250 500h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe054;" d="M500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000 q-21 0 -35.5 14.5t-14.5 35.5zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5zM0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5z" />
+<glyph unicode="&#xe055;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe056;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 1100h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 800h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 500h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 500h800q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 200h800 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe057;" d="M400 0h-100v1100h100v-1100zM550 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM267 550l-167 -125v75h-200v100h200v75zM550 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe058;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM900 0h-100v1100h100v-1100zM50 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM1100 600h200v-100h-200v-75l-167 125l167 125v-75zM50 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe059;" d="M75 1000h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53v650q0 31 22 53t53 22zM1200 300l-300 300l300 300v-600z" />
+<glyph unicode="&#xe060;" d="M44 1100h1112q18 0 31 -13t13 -31v-1012q0 -18 -13 -31t-31 -13h-1112q-18 0 -31 13t-13 31v1012q0 18 13 31t31 13zM100 1000v-737l247 182l298 -131l-74 156l293 318l236 -288v500h-1000zM342 884q56 0 95 -39t39 -94.5t-39 -95t-95 -39.5t-95 39.5t-39 95t39 94.5 t95 39z" />
+<glyph unicode="&#xe062;" d="M648 1169q117 0 216 -60t156.5 -161t57.5 -218q0 -115 -70 -258q-69 -109 -158 -225.5t-143 -179.5l-54 -62q-9 8 -25.5 24.5t-63.5 67.5t-91 103t-98.5 128t-95.5 148q-60 132 -60 249q0 88 34 169.5t91.5 142t137 96.5t166.5 36zM652.5 974q-91.5 0 -156.5 -65 t-65 -157t65 -156.5t156.5 -64.5t156.5 64.5t65 156.5t-65 157t-156.5 65z" />
+<glyph unicode="&#xe063;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 173v854q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57z" />
+<glyph unicode="&#xe064;" d="M554 1295q21 -72 57.5 -143.5t76 -130t83 -118t82.5 -117t70 -116t49.5 -126t18.5 -136.5q0 -71 -25.5 -135t-68.5 -111t-99 -82t-118.5 -54t-125.5 -23q-84 5 -161.5 34t-139.5 78.5t-99 125t-37 164.5q0 69 18 136.5t49.5 126.5t69.5 116.5t81.5 117.5t83.5 119 t76.5 131t58.5 143zM344 710q-23 -33 -43.5 -70.5t-40.5 -102.5t-17 -123q1 -37 14.5 -69.5t30 -52t41 -37t38.5 -24.5t33 -15q21 -7 32 -1t13 22l6 34q2 10 -2.5 22t-13.5 19q-5 4 -14 12t-29.5 40.5t-32.5 73.5q-26 89 6 271q2 11 -6 11q-8 1 -15 -10z" />
+<glyph unicode="&#xe065;" d="M1000 1013l108 115q2 1 5 2t13 2t20.5 -1t25 -9.5t28.5 -21.5q22 -22 27 -43t0 -32l-6 -10l-108 -115zM350 1100h400q50 0 105 -13l-187 -187h-368q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v182l200 200v-332 q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM1009 803l-362 -362l-161 -50l55 170l355 355z" />
+<glyph unicode="&#xe066;" d="M350 1100h361q-164 -146 -216 -200h-195q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-103q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M824 1073l339 -301q8 -7 8 -17.5t-8 -17.5l-340 -306q-7 -6 -12.5 -4t-6.5 11v203q-26 1 -54.5 0t-78.5 -7.5t-92 -17.5t-86 -35t-70 -57q10 59 33 108t51.5 81.5t65 58.5t68.5 40.5t67 24.5t56 13.5t40 4.5v210q1 10 6.5 12.5t13.5 -4.5z" />
+<glyph unicode="&#xe067;" d="M350 1100h350q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-219q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M643 639l395 395q7 7 17.5 7t17.5 -7l101 -101q7 -7 7 -17.5t-7 -17.5l-531 -532q-7 -7 -17.5 -7t-17.5 7l-248 248q-7 7 -7 17.5t7 17.5l101 101q7 7 17.5 7t17.5 -7l111 -111q8 -7 18 -7t18 7z" />
+<glyph unicode="&#xe068;" d="M318 918l264 264q8 8 18 8t18 -8l260 -264q7 -8 4.5 -13t-12.5 -5h-170v-200h200v173q0 10 5 12t13 -5l264 -260q8 -7 8 -17.5t-8 -17.5l-264 -265q-8 -7 -13 -5t-5 12v173h-200v-200h170q10 0 12.5 -5t-4.5 -13l-260 -264q-8 -8 -18 -8t-18 8l-264 264q-8 8 -5.5 13 t12.5 5h175v200h-200v-173q0 -10 -5 -12t-13 5l-264 265q-8 7 -8 17.5t8 17.5l264 260q8 7 13 5t5 -12v-173h200v200h-175q-10 0 -12.5 5t5.5 13z" />
+<glyph unicode="&#xe069;" d="M250 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe070;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5 t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe071;" d="M1200 1050v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-492 480q-15 14 -15 35t15 35l492 480q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25z" />
+<glyph unicode="&#xe072;" d="M243 1074l814 -498q18 -11 18 -26t-18 -26l-814 -498q-18 -11 -30.5 -4t-12.5 28v1000q0 21 12.5 28t30.5 -4z" />
+<glyph unicode="&#xe073;" d="M250 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM650 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800 q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe074;" d="M1100 950v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5z" />
+<glyph unicode="&#xe075;" d="M500 612v438q0 21 10.5 25t25.5 -10l492 -480q15 -14 15 -35t-15 -35l-492 -480q-15 -14 -25.5 -10t-10.5 25v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10z" />
+<glyph unicode="&#xe076;" d="M1048 1102l100 1q20 0 35 -14.5t15 -35.5l5 -1000q0 -21 -14.5 -35.5t-35.5 -14.5l-100 -1q-21 0 -35.5 14.5t-14.5 35.5l-2 437l-463 -454q-14 -15 -24.5 -10.5t-10.5 25.5l-2 437l-462 -455q-15 -14 -25.5 -9.5t-10.5 24.5l-5 1000q0 21 10.5 25.5t25.5 -10.5l466 -450 l-2 438q0 20 10.5 24.5t25.5 -9.5l466 -451l-2 438q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe077;" d="M850 1100h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10l464 -453v438q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe078;" d="M686 1081l501 -540q15 -15 10.5 -26t-26.5 -11h-1042q-22 0 -26.5 11t10.5 26l501 540q15 15 36 15t36 -15zM150 400h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe079;" d="M885 900l-352 -353l352 -353l-197 -198l-552 552l552 550z" />
+<glyph unicode="&#xe080;" d="M1064 547l-551 -551l-198 198l353 353l-353 353l198 198z" />
+<glyph unicode="&#xe081;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM650 900h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-150 q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5h150v-150q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v150h150q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-150v150q0 21 -14.5 35.5t-35.5 14.5z" />
+<glyph unicode="&#xe082;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM850 700h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5 t35.5 -14.5h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5z" />
+<glyph unicode="&#xe083;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM741.5 913q-12.5 0 -21.5 -9l-120 -120l-120 120q-9 9 -21.5 9 t-21.5 -9l-141 -141q-9 -9 -9 -21.5t9 -21.5l120 -120l-120 -120q-9 -9 -9 -21.5t9 -21.5l141 -141q9 -9 21.5 -9t21.5 9l120 120l120 -120q9 -9 21.5 -9t21.5 9l141 141q9 9 9 21.5t-9 21.5l-120 120l120 120q9 9 9 21.5t-9 21.5l-141 141q-9 9 -21.5 9z" />
+<glyph unicode="&#xe084;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM546 623l-84 85q-7 7 -17.5 7t-18.5 -7l-139 -139q-7 -8 -7 -18t7 -18 l242 -241q7 -8 17.5 -8t17.5 8l375 375q7 7 7 17.5t-7 18.5l-139 139q-7 7 -17.5 7t-17.5 -7z" />
+<glyph unicode="&#xe085;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM588 941q-29 0 -59 -5.5t-63 -20.5t-58 -38.5t-41.5 -63t-16.5 -89.5 q0 -25 20 -25h131q30 -5 35 11q6 20 20.5 28t45.5 8q20 0 31.5 -10.5t11.5 -28.5q0 -23 -7 -34t-26 -18q-1 0 -13.5 -4t-19.5 -7.5t-20 -10.5t-22 -17t-18.5 -24t-15.5 -35t-8 -46q-1 -8 5.5 -16.5t20.5 -8.5h173q7 0 22 8t35 28t37.5 48t29.5 74t12 100q0 47 -17 83 t-42.5 57t-59.5 34.5t-64 18t-59 4.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe086;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM675 1000h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5 t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5zM675 700h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h75v-200h-75q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h350q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5 t-17.5 7.5h-75v275q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe087;" d="M525 1200h150q10 0 17.5 -7.5t7.5 -17.5v-194q103 -27 178.5 -102.5t102.5 -178.5h194q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-194q-27 -103 -102.5 -178.5t-178.5 -102.5v-194q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v194 q-103 27 -178.5 102.5t-102.5 178.5h-194q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h194q27 103 102.5 178.5t178.5 102.5v194q0 10 7.5 17.5t17.5 7.5zM700 893v-168q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v168q-68 -23 -119 -74 t-74 -119h168q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-168q23 -68 74 -119t119 -74v168q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-168q68 23 119 74t74 119h-168q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h168 q-23 68 -74 119t-119 74z" />
+<glyph unicode="&#xe088;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM759 823l64 -64q7 -7 7 -17.5t-7 -17.5l-124 -124l124 -124q7 -7 7 -17.5t-7 -17.5l-64 -64q-7 -7 -17.5 -7t-17.5 7l-124 124l-124 -124q-7 -7 -17.5 -7t-17.5 7l-64 64 q-7 7 -7 17.5t7 17.5l124 124l-124 124q-7 7 -7 17.5t7 17.5l64 64q7 7 17.5 7t17.5 -7l124 -124l124 124q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe089;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM782 788l106 -106q7 -7 7 -17.5t-7 -17.5l-320 -321q-8 -7 -18 -7t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l197 197q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe090;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5q0 -120 65 -225 l587 587q-105 65 -225 65zM965 819l-584 -584q104 -62 219 -62q116 0 214.5 57t155.5 155.5t57 214.5q0 115 -62 219z" />
+<glyph unicode="&#xe091;" d="M39 582l522 427q16 13 27.5 8t11.5 -26v-291h550q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-550v-291q0 -21 -11.5 -26t-27.5 8l-522 427q-16 13 -16 32t16 32z" />
+<glyph unicode="&#xe092;" d="M639 1009l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291h-550q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h550v291q0 21 11.5 26t27.5 -8z" />
+<glyph unicode="&#xe093;" d="M682 1161l427 -522q13 -16 8 -27.5t-26 -11.5h-291v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v550h-291q-21 0 -26 11.5t8 27.5l427 522q13 16 32 16t32 -16z" />
+<glyph unicode="&#xe094;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-550h291q21 0 26 -11.5t-8 -27.5l-427 -522q-13 -16 -32 -16t-32 16l-427 522q-13 16 -8 27.5t26 11.5h291v550q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe095;" d="M639 1109l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291q-94 -2 -182 -20t-170.5 -52t-147 -92.5t-100.5 -135.5q5 105 27 193.5t67.5 167t113 135t167 91.5t225.5 42v262q0 21 11.5 26t27.5 -8z" />
+<glyph unicode="&#xe096;" d="M850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5zM350 0h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249 q8 7 18 7t18 -7l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5z" />
+<glyph unicode="&#xe097;" d="M1014 1120l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249q8 7 18 7t18 -7zM250 600h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5z" />
+<glyph unicode="&#xe101;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM704 900h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5 t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe102;" d="M260 1200q9 0 19 -2t15 -4l5 -2q22 -10 44 -23l196 -118q21 -13 36 -24q29 -21 37 -12q11 13 49 35l196 118q22 13 45 23q17 7 38 7q23 0 47 -16.5t37 -33.5l13 -16q14 -21 18 -45l25 -123l8 -44q1 -9 8.5 -14.5t17.5 -5.5h61q10 0 17.5 -7.5t7.5 -17.5v-50 q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 -7.5t-7.5 -17.5v-175h-400v300h-200v-300h-400v175q0 10 -7.5 17.5t-17.5 7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5h61q11 0 18 3t7 8q0 4 9 52l25 128q5 25 19 45q2 3 5 7t13.5 15t21.5 19.5t26.5 15.5 t29.5 7zM915 1079l-166 -162q-7 -7 -5 -12t12 -5h219q10 0 15 7t2 17l-51 149q-3 10 -11 12t-15 -6zM463 917l-177 157q-8 7 -16 5t-11 -12l-51 -143q-3 -10 2 -17t15 -7h231q11 0 12.5 5t-5.5 12zM500 0h-375q-10 0 -17.5 7.5t-7.5 17.5v375h400v-400zM1100 400v-375 q0 -10 -7.5 -17.5t-17.5 -7.5h-375v400h400z" />
+<glyph unicode="&#xe103;" d="M1165 1190q8 3 21 -6.5t13 -17.5q-2 -178 -24.5 -323.5t-55.5 -245.5t-87 -174.5t-102.5 -118.5t-118 -68.5t-118.5 -33t-120 -4.5t-105 9.5t-90 16.5q-61 12 -78 11q-4 1 -12.5 0t-34 -14.5t-52.5 -40.5l-153 -153q-26 -24 -37 -14.5t-11 43.5q0 64 42 102q8 8 50.5 45 t66.5 58q19 17 35 47t13 61q-9 55 -10 102.5t7 111t37 130t78 129.5q39 51 80 88t89.5 63.5t94.5 45t113.5 36t129 31t157.5 37t182 47.5zM1116 1098q-8 9 -22.5 -3t-45.5 -50q-38 -47 -119 -103.5t-142 -89.5l-62 -33q-56 -30 -102 -57t-104 -68t-102.5 -80.5t-85.5 -91 t-64 -104.5q-24 -56 -31 -86t2 -32t31.5 17.5t55.5 59.5q25 30 94 75.5t125.5 77.5t147.5 81q70 37 118.5 69t102 79.5t99 111t86.5 148.5q22 50 24 60t-6 19z" />
+<glyph unicode="&#xe104;" d="M653 1231q-39 -67 -54.5 -131t-10.5 -114.5t24.5 -96.5t47.5 -80t63.5 -62.5t68.5 -46.5t65 -30q-4 7 -17.5 35t-18.5 39.5t-17 39.5t-17 43t-13 42t-9.5 44.5t-2 42t4 43t13.5 39t23 38.5q96 -42 165 -107.5t105 -138t52 -156t13 -159t-19 -149.5q-13 -55 -44 -106.5 t-68 -87t-78.5 -64.5t-72.5 -45t-53 -22q-72 -22 -127 -11q-31 6 -13 19q6 3 17 7q13 5 32.5 21t41 44t38.5 63.5t21.5 81.5t-6.5 94.5t-50 107t-104 115.5q10 -104 -0.5 -189t-37 -140.5t-65 -93t-84 -52t-93.5 -11t-95 24.5q-80 36 -131.5 114t-53.5 171q-2 23 0 49.5 t4.5 52.5t13.5 56t27.5 60t46 64.5t69.5 68.5q-8 -53 -5 -102.5t17.5 -90t34 -68.5t44.5 -39t49 -2q31 13 38.5 36t-4.5 55t-29 64.5t-36 75t-26 75.5q-15 85 2 161.5t53.5 128.5t85.5 92.5t93.5 61t81.5 25.5z" />
+<glyph unicode="&#xe105;" d="M600 1094q82 0 160.5 -22.5t140 -59t116.5 -82.5t94.5 -95t68 -95t42.5 -82.5t14 -57.5t-14 -57.5t-43 -82.5t-68.5 -95t-94.5 -95t-116.5 -82.5t-140 -59t-159.5 -22.5t-159.5 22.5t-140 59t-116.5 82.5t-94.5 95t-68.5 95t-43 82.5t-14 57.5t14 57.5t42.5 82.5t68 95 t94.5 95t116.5 82.5t140 59t160.5 22.5zM888 829q-15 15 -18 12t5 -22q25 -57 25 -119q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 59 23 114q8 19 4.5 22t-17.5 -12q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q22 -36 47 -71t70 -82t92.5 -81t113 -58.5t133.5 -24.5 t133.5 24t113 58.5t92.5 81.5t70 81.5t47 70.5q11 18 9 42.5t-14 41.5q-90 117 -163 189zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l35 34q14 15 12.5 33.5t-16.5 33.5q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
+<glyph unicode="&#xe106;" d="M592 0h-148l31 120q-91 20 -175.5 68.5t-143.5 106.5t-103.5 119t-66.5 110t-22 76q0 21 14 57.5t42.5 82.5t68 95t94.5 95t116.5 82.5t140 59t160.5 22.5q61 0 126 -15l32 121h148zM944 770l47 181q108 -85 176.5 -192t68.5 -159q0 -26 -19.5 -71t-59.5 -102t-93 -112 t-129 -104.5t-158 -75.5l46 173q77 49 136 117t97 131q11 18 9 42.5t-14 41.5q-54 70 -107 130zM310 824q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q18 -30 39 -60t57 -70.5t74 -73t90 -61t105 -41.5l41 154q-107 18 -178.5 101.5t-71.5 193.5q0 59 23 114q8 19 4.5 22 t-17.5 -12zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l12 11l22 86l-3 4q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
+<glyph unicode="&#xe107;" d="M-90 100l642 1066q20 31 48 28.5t48 -35.5l642 -1056q21 -32 7.5 -67.5t-50.5 -35.5h-1294q-37 0 -50.5 34t7.5 66zM155 200h345v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h345l-445 723zM496 700h208q20 0 32 -14.5t8 -34.5l-58 -252 q-4 -20 -21.5 -34.5t-37.5 -14.5h-54q-20 0 -37.5 14.5t-21.5 34.5l-58 252q-4 20 8 34.5t32 14.5z" />
+<glyph unicode="&#xe108;" d="M650 1200q62 0 106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -93 100 -113v-64q0 -21 -13 -29t-32 1l-205 128l-205 -128q-19 -9 -32 -1t-13 29v64q0 20 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5v41 q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44z" />
+<glyph unicode="&#xe109;" d="M850 1200h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-150h-1100v150q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-50h500v50q0 21 14.5 35.5t35.5 14.5zM1100 800v-750q0 -21 -14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v750h1100zM100 600v-100h100v100h-100zM300 600v-100h100v100h-100zM500 600v-100h100v100h-100zM700 600v-100h100v100h-100zM900 600v-100h100v100h-100zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400 v-100h100v100h-100zM700 400v-100h100v100h-100zM900 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100zM500 200v-100h100v100h-100zM700 200v-100h100v100h-100zM900 200v-100h100v100h-100z" />
+<glyph unicode="&#xe110;" d="M1135 1165l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-159l-600 -600h-291q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h209l600 600h241v150q0 21 10.5 25t24.5 -10zM522 819l-141 -141l-122 122h-209q-21 0 -35.5 14.5 t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h291zM1135 565l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-241l-181 181l141 141l122 -122h159v150q0 21 10.5 25t24.5 -10z" />
+<glyph unicode="&#xe111;" d="M100 1100h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5z" />
+<glyph unicode="&#xe112;" d="M150 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM850 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM1100 800v-300q0 -41 -3 -77.5t-15 -89.5t-32 -96t-58 -89t-89 -77t-129 -51t-174 -20t-174 20 t-129 51t-89 77t-58 89t-32 96t-15 89.5t-3 77.5v300h300v-250v-27v-42.5t1.5 -41t5 -38t10 -35t16.5 -30t25.5 -24.5t35 -19t46.5 -12t60 -4t60 4.5t46.5 12.5t35 19.5t25 25.5t17 30.5t10 35t5 38t2 40.5t-0.5 42v25v250h300z" />
+<glyph unicode="&#xe113;" d="M1100 411l-198 -199l-353 353l-353 -353l-197 199l551 551z" />
+<glyph unicode="&#xe114;" d="M1101 789l-550 -551l-551 551l198 199l353 -353l353 353z" />
+<glyph unicode="&#xe115;" d="M404 1000h746q21 0 35.5 -14.5t14.5 -35.5v-551h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v401h-381zM135 984l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-400h385l215 -200h-750q-21 0 -35.5 14.5 t-14.5 35.5v550h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe116;" d="M56 1200h94q17 0 31 -11t18 -27l38 -162h896q24 0 39 -18.5t10 -42.5l-100 -475q-5 -21 -27 -42.5t-55 -21.5h-633l48 -200h535q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-50q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-300v-50 q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-31q-18 0 -32.5 10t-20.5 19l-5 10l-201 961h-54q-20 0 -35 14.5t-15 35.5t15 35.5t35 14.5z" />
+<glyph unicode="&#xe117;" d="M1200 1000v-100h-1200v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500zM0 800h1200v-800h-1200v800z" />
+<glyph unicode="&#xe118;" d="M200 800l-200 -400v600h200q0 41 29.5 70.5t70.5 29.5h300q42 0 71 -29.5t29 -70.5h500v-200h-1000zM1500 700l-300 -700h-1200l300 700h1200z" />
+<glyph unicode="&#xe119;" d="M635 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-601h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v601h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe120;" d="M936 864l249 -229q14 -15 14 -35.5t-14 -35.5l-249 -229q-15 -15 -25.5 -10.5t-10.5 24.5v151h-600v-151q0 -20 -10.5 -24.5t-25.5 10.5l-249 229q-14 15 -14 35.5t14 35.5l249 229q15 15 25.5 10.5t10.5 -25.5v-149h600v149q0 21 10.5 25.5t25.5 -10.5z" />
+<glyph unicode="&#xe121;" d="M1169 400l-172 732q-5 23 -23 45.5t-38 22.5h-672q-20 0 -38 -20t-23 -41l-172 -739h1138zM1100 300h-1000q-41 0 -70.5 -29.5t-29.5 -70.5v-100q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v100q0 41 -29.5 70.5t-70.5 29.5zM800 100v100h100v-100h-100 zM1000 100v100h100v-100h-100z" />
+<glyph unicode="&#xe122;" d="M1150 1100q21 0 35.5 -14.5t14.5 -35.5v-850q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v850q0 21 14.5 35.5t35.5 14.5zM1000 200l-675 200h-38l47 -276q3 -16 -5.5 -20t-29.5 -4h-7h-84q-20 0 -34.5 14t-18.5 35q-55 337 -55 351v250v6q0 16 1 23.5t6.5 14 t17.5 6.5h200l675 250v-850zM0 750v-250q-4 0 -11 0.5t-24 6t-30 15t-24 30t-11 48.5v50q0 26 10.5 46t25 30t29 16t25.5 7z" />
+<glyph unicode="&#xe123;" d="M553 1200h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q19 0 33 -14.5t14 -35t-13 -40.5t-31 -27q-8 -4 -23 -9.5t-65 -19.5t-103 -25t-132.5 -20t-158.5 -9q-57 0 -115 5t-104 12t-88.5 15.5t-73.5 17.5t-54.5 16t-35.5 12l-11 4 q-18 8 -31 28t-13 40.5t14 35t33 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3.5 32t28.5 13zM498 110q50 -6 102 -6q53 0 102 6q-12 -49 -39.5 -79.5t-62.5 -30.5t-63 30.5t-39 79.5z" />
+<glyph unicode="&#xe124;" d="M800 946l224 78l-78 -224l234 -45l-180 -155l180 -155l-234 -45l78 -224l-224 78l-45 -234l-155 180l-155 -180l-45 234l-224 -78l78 224l-234 45l180 155l-180 155l234 45l-78 224l224 -78l45 234l155 -180l155 180z" />
+<glyph unicode="&#xe125;" d="M650 1200h50q40 0 70 -40.5t30 -84.5v-150l-28 -125h328q40 0 70 -40.5t30 -84.5v-100q0 -45 -29 -74l-238 -344q-16 -24 -38 -40.5t-45 -16.5h-250q-7 0 -42 25t-66 50l-31 25h-61q-45 0 -72.5 18t-27.5 57v400q0 36 20 63l145 196l96 198q13 28 37.5 48t51.5 20z M650 1100l-100 -212l-150 -213v-375h100l136 -100h214l250 375v125h-450l50 225v175h-50zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe126;" d="M600 1100h250q23 0 45 -16.5t38 -40.5l238 -344q29 -29 29 -74v-100q0 -44 -30 -84.5t-70 -40.5h-328q28 -118 28 -125v-150q0 -44 -30 -84.5t-70 -40.5h-50q-27 0 -51.5 20t-37.5 48l-96 198l-145 196q-20 27 -20 63v400q0 39 27.5 57t72.5 18h61q124 100 139 100z M50 1000h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM636 1000l-136 -100h-100v-375l150 -213l100 -212h50v175l-50 225h450v125l-250 375h-214z" />
+<glyph unicode="&#xe127;" d="M356 873l363 230q31 16 53 -6l110 -112q13 -13 13.5 -32t-11.5 -34l-84 -121h302q84 0 138 -38t54 -110t-55 -111t-139 -39h-106l-131 -339q-6 -21 -19.5 -41t-28.5 -20h-342q-7 0 -90 81t-83 94v525q0 17 14 35.5t28 28.5zM400 792v-503l100 -89h293l131 339 q6 21 19.5 41t28.5 20h203q21 0 30.5 25t0.5 50t-31 25h-456h-7h-6h-5.5t-6 0.5t-5 1.5t-5 2t-4 2.5t-4 4t-2.5 4.5q-12 25 5 47l146 183l-86 83zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500 q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe128;" d="M475 1103l366 -230q2 -1 6 -3.5t14 -10.5t18 -16.5t14.5 -20t6.5 -22.5v-525q0 -13 -86 -94t-93 -81h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-85 0 -139.5 39t-54.5 111t54 110t138 38h302l-85 121q-11 15 -10.5 34t13.5 32l110 112q22 22 53 6zM370 945l146 -183 q17 -22 5 -47q-2 -2 -3.5 -4.5t-4 -4t-4 -2.5t-5 -2t-5 -1.5t-6 -0.5h-6h-6.5h-6h-475v-100h221q15 0 29 -20t20 -41l130 -339h294l106 89v503l-342 236zM1050 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5 v500q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe129;" d="M550 1294q72 0 111 -55t39 -139v-106l339 -131q21 -6 41 -19.5t20 -28.5v-342q0 -7 -81 -90t-94 -83h-525q-17 0 -35.5 14t-28.5 28l-9 14l-230 363q-16 31 6 53l112 110q13 13 32 13.5t34 -11.5l121 -84v302q0 84 38 138t110 54zM600 972v203q0 21 -25 30.5t-50 0.5 t-25 -31v-456v-7v-6v-5.5t-0.5 -6t-1.5 -5t-2 -5t-2.5 -4t-4 -4t-4.5 -2.5q-25 -12 -47 5l-183 146l-83 -86l236 -339h503l89 100v293l-339 131q-21 6 -41 19.5t-20 28.5zM450 200h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe130;" d="M350 1100h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5zM600 306v-106q0 -84 -39 -139t-111 -55t-110 54t-38 138v302l-121 -84q-15 -12 -34 -11.5t-32 13.5l-112 110 q-22 22 -6 53l230 363q1 2 3.5 6t10.5 13.5t16.5 17t20 13.5t22.5 6h525q13 0 94 -83t81 -90v-342q0 -15 -20 -28.5t-41 -19.5zM308 900l-236 -339l83 -86l183 146q22 17 47 5q2 -1 4.5 -2.5t4 -4t2.5 -4t2 -5t1.5 -5t0.5 -6v-5.5v-6v-7v-456q0 -22 25 -31t50 0.5t25 30.5 v203q0 15 20 28.5t41 19.5l339 131v293l-89 100h-503z" />
+<glyph unicode="&#xe131;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM914 632l-275 223q-16 13 -27.5 8t-11.5 -26v-137h-275 q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h275v-137q0 -21 11.5 -26t27.5 8l275 223q16 13 16 32t-16 32z" />
+<glyph unicode="&#xe132;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM561 855l-275 -223q-16 -13 -16 -32t16 -32l275 -223q16 -13 27.5 -8 t11.5 26v137h275q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5h-275v137q0 21 -11.5 26t-27.5 -8z" />
+<glyph unicode="&#xe133;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM855 639l-223 275q-13 16 -32 16t-32 -16l-223 -275q-13 -16 -8 -27.5 t26 -11.5h137v-275q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v275h137q21 0 26 11.5t-8 27.5z" />
+<glyph unicode="&#xe134;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM675 900h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-275h-137q-21 0 -26 -11.5 t8 -27.5l223 -275q13 -16 32 -16t32 16l223 275q13 16 8 27.5t-26 11.5h-137v275q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe135;" d="M600 1176q116 0 222.5 -46t184 -123.5t123.5 -184t46 -222.5t-46 -222.5t-123.5 -184t-184 -123.5t-222.5 -46t-222.5 46t-184 123.5t-123.5 184t-46 222.5t46 222.5t123.5 184t184 123.5t222.5 46zM627 1101q-15 -12 -36.5 -20.5t-35.5 -12t-43 -8t-39 -6.5 q-15 -3 -45.5 0t-45.5 -2q-20 -7 -51.5 -26.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79q-9 -34 5 -93t8 -87q0 -9 17 -44.5t16 -59.5q12 0 23 -5t23.5 -15t19.5 -14q16 -8 33 -15t40.5 -15t34.5 -12q21 -9 52.5 -32t60 -38t57.5 -11 q7 -15 -3 -34t-22.5 -40t-9.5 -38q13 -21 23 -34.5t27.5 -27.5t36.5 -18q0 -7 -3.5 -16t-3.5 -14t5 -17q104 -2 221 112q30 29 46.5 47t34.5 49t21 63q-13 8 -37 8.5t-36 7.5q-15 7 -49.5 15t-51.5 19q-18 0 -41 -0.5t-43 -1.5t-42 -6.5t-38 -16.5q-51 -35 -66 -12 q-4 1 -3.5 25.5t0.5 25.5q-6 13 -26.5 17.5t-24.5 6.5q1 15 -0.5 30.5t-7 28t-18.5 11.5t-31 -21q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q7 -12 18 -24t21.5 -20.5t20 -15t15.5 -10.5l5 -3q2 12 7.5 30.5t8 34.5t-0.5 32q-3 18 3.5 29 t18 22.5t15.5 24.5q6 14 10.5 35t8 31t15.5 22.5t34 22.5q-6 18 10 36q8 0 24 -1.5t24.5 -1.5t20 4.5t20.5 15.5q-10 23 -31 42.5t-37.5 29.5t-49 27t-43.5 23q0 1 2 8t3 11.5t1.5 10.5t-1 9.5t-4.5 4.5q31 -13 58.5 -14.5t38.5 2.5l12 5q5 28 -9.5 46t-36.5 24t-50 15 t-41 20q-18 -4 -37 0zM613 994q0 -17 8 -42t17 -45t9 -23q-8 1 -39.5 5.5t-52.5 10t-37 16.5q3 11 16 29.5t16 25.5q10 -10 19 -10t14 6t13.5 14.5t16.5 12.5z" />
+<glyph unicode="&#xe136;" d="M756 1157q164 92 306 -9l-259 -138l145 -232l251 126q6 -89 -34 -156.5t-117 -110.5q-60 -34 -127 -39.5t-126 16.5l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5t15 37.5l600 599q-34 101 5.5 201.5t135.5 154.5z" />
+<glyph unicode="&#xe137;" horiz-adv-x="1220" d="M100 1196h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 1096h-200v-100h200v100zM100 796h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 696h-500v-100h500v100zM100 396h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 296h-300v-100h300v100z " />
+<glyph unicode="&#xe138;" d="M150 1200h900q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM700 500v-300l-200 -200v500l-350 500h900z" />
+<glyph unicode="&#xe139;" d="M500 1200h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5zM500 1100v-100h200v100h-200zM1200 400v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v200h1200z" />
+<glyph unicode="&#xe140;" d="M50 1200h300q21 0 25 -10.5t-10 -24.5l-94 -94l199 -199q7 -8 7 -18t-7 -18l-106 -106q-8 -7 -18 -7t-18 7l-199 199l-94 -94q-14 -14 -24.5 -10t-10.5 25v300q0 21 14.5 35.5t35.5 14.5zM850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-199 -199q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l199 199l-94 94q-14 14 -10 24.5t25 10.5zM364 470l106 -106q7 -8 7 -18t-7 -18l-199 -199l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l199 199 q8 7 18 7t18 -7zM1071 271l94 94q14 14 24.5 10t10.5 -25v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -25 10.5t10 24.5l94 94l-199 199q-7 8 -7 18t7 18l106 106q8 7 18 7t18 -7z" />
+<glyph unicode="&#xe141;" d="M596 1192q121 0 231.5 -47.5t190 -127t127 -190t47.5 -231.5t-47.5 -231.5t-127 -190.5t-190 -127t-231.5 -47t-231.5 47t-190.5 127t-127 190.5t-47 231.5t47 231.5t127 190t190.5 127t231.5 47.5zM596 1010q-112 0 -207.5 -55.5t-151 -151t-55.5 -207.5t55.5 -207.5 t151 -151t207.5 -55.5t207.5 55.5t151 151t55.5 207.5t-55.5 207.5t-151 151t-207.5 55.5zM454.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38.5 -16.5t-38.5 16.5t-16 39t16 38.5t38.5 16zM754.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38 -16.5q-14 0 -29 10l-55 -145 q17 -23 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 23 16 39t38.5 16zM345.5 709q22.5 0 38.5 -16t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16zM854.5 709q22.5 0 38.5 -16 t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16z" />
+<glyph unicode="&#xe142;" d="M546 173l469 470q91 91 99 192q7 98 -52 175.5t-154 94.5q-22 4 -47 4q-34 0 -66.5 -10t-56.5 -23t-55.5 -38t-48 -41.5t-48.5 -47.5q-376 -375 -391 -390q-30 -27 -45 -41.5t-37.5 -41t-32 -46.5t-16 -47.5t-1.5 -56.5q9 -62 53.5 -95t99.5 -33q74 0 125 51l548 548 q36 36 20 75q-7 16 -21.5 26t-32.5 10q-26 0 -50 -23q-13 -12 -39 -38l-341 -338q-15 -15 -35.5 -15.5t-34.5 13.5t-14 34.5t14 34.5q327 333 361 367q35 35 67.5 51.5t78.5 16.5q14 0 29 -1q44 -8 74.5 -35.5t43.5 -68.5q14 -47 2 -96.5t-47 -84.5q-12 -11 -32 -32 t-79.5 -81t-114.5 -115t-124.5 -123.5t-123 -119.5t-96.5 -89t-57 -45q-56 -27 -120 -27q-70 0 -129 32t-93 89q-48 78 -35 173t81 163l511 511q71 72 111 96q91 55 198 55q80 0 152 -33q78 -36 129.5 -103t66.5 -154q17 -93 -11 -183.5t-94 -156.5l-482 -476 q-15 -15 -36 -16t-37 14t-17.5 34t14.5 35z" />
+<glyph unicode="&#xe143;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104zM896 972q-33 0 -64.5 -19t-56.5 -46t-47.5 -53.5t-43.5 -45.5t-37.5 -19t-36 19t-40 45.5t-43 53.5t-54 46t-65.5 19q-67 0 -122.5 -55.5t-55.5 -132.5q0 -23 13.5 -51t46 -65t57.5 -63t76 -75l22 -22q15 -14 44 -44t50.5 -51t46 -44t41 -35t23 -12 t23.5 12t42.5 36t46 44t52.5 52t44 43q4 4 12 13q43 41 63.5 62t52 55t46 55t26 46t11.5 44q0 79 -53 133.5t-120 54.5z" />
+<glyph unicode="&#xe144;" d="M776.5 1214q93.5 0 159.5 -66l141 -141q66 -66 66 -160q0 -42 -28 -95.5t-62 -87.5l-29 -29q-31 53 -77 99l-18 18l95 95l-247 248l-389 -389l212 -212l-105 -106l-19 18l-141 141q-66 66 -66 159t66 159l283 283q65 66 158.5 66zM600 706l105 105q10 -8 19 -17l141 -141 q66 -66 66 -159t-66 -159l-283 -283q-66 -66 -159 -66t-159 66l-141 141q-66 66 -66 159.5t66 159.5l55 55q29 -55 75 -102l18 -17l-95 -95l247 -248l389 389z" />
+<glyph unicode="&#xe145;" d="M603 1200q85 0 162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5v953q0 21 30 46.5t81 48t129 37.5t163 15zM300 1000v-700h600v700h-600zM600 254q-43 0 -73.5 -30.5t-30.5 -73.5t30.5 -73.5t73.5 -30.5t73.5 30.5 t30.5 73.5t-30.5 73.5t-73.5 30.5z" />
+<glyph unicode="&#xe146;" d="M902 1185l283 -282q15 -15 15 -36t-14.5 -35.5t-35.5 -14.5t-35 15l-36 35l-279 -267v-300l-212 210l-308 -307l-280 -203l203 280l307 308l-210 212h300l267 279l-35 36q-15 14 -15 35t14.5 35.5t35.5 14.5t35 -15z" />
+<glyph unicode="&#xe148;" d="M700 1248v-78q38 -5 72.5 -14.5t75.5 -31.5t71 -53.5t52 -84t24 -118.5h-159q-4 36 -10.5 59t-21 45t-40 35.5t-64.5 20.5v-307l64 -13q34 -7 64 -16.5t70 -32t67.5 -52.5t47.5 -80t20 -112q0 -139 -89 -224t-244 -97v-77h-100v79q-150 16 -237 103q-40 40 -52.5 93.5 t-15.5 139.5h139q5 -77 48.5 -126t117.5 -65v335l-27 8q-46 14 -79 26.5t-72 36t-63 52t-40 72.5t-16 98q0 70 25 126t67.5 92t94.5 57t110 27v77h100zM600 754v274q-29 -4 -50 -11t-42 -21.5t-31.5 -41.5t-10.5 -65q0 -29 7 -50.5t16.5 -34t28.5 -22.5t31.5 -14t37.5 -10 q9 -3 13 -4zM700 547v-310q22 2 42.5 6.5t45 15.5t41.5 27t29 42t12 59.5t-12.5 59.5t-38 44.5t-53 31t-66.5 24.5z" />
+<glyph unicode="&#xe149;" d="M561 1197q84 0 160.5 -40t123.5 -109.5t47 -147.5h-153q0 40 -19.5 71.5t-49.5 48.5t-59.5 26t-55.5 9q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -26 13.5 -63t26.5 -61t37 -66q6 -9 9 -14h241v-100h-197q8 -50 -2.5 -115t-31.5 -95q-45 -62 -99 -112 q34 10 83 17.5t71 7.5q32 1 102 -16t104 -17q83 0 136 30l50 -147q-31 -19 -58 -30.5t-55 -15.5t-42 -4.5t-46 -0.5q-23 0 -76 17t-111 32.5t-96 11.5q-39 -3 -82 -16t-67 -25l-23 -11l-55 145q4 3 16 11t15.5 10.5t13 9t15.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221v100h166q-23 47 -44 104q-7 20 -12 41.5t-6 55.5t6 66.5t29.5 70.5t58.5 71q97 88 263 88z" />
+<glyph unicode="&#xe150;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM935 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-900h-200v900h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe151;" d="M1000 700h-100v100h-100v-100h-100v500h300v-500zM400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM801 1100v-200h100v200h-100zM1000 350l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150z " />
+<glyph unicode="&#xe152;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 1050l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150zM1000 0h-100v100h-100v-100h-100v500h300v-500zM801 400v-200h100v200h-100z " />
+<glyph unicode="&#xe153;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 700h-100v400h-100v100h200v-500zM1100 0h-100v100h-200v400h300v-500zM901 400v-200h100v200h-100z" />
+<glyph unicode="&#xe154;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1100 700h-100v100h-200v400h300v-500zM901 1100v-200h100v200h-100zM1000 0h-100v400h-100v100h200v-500z" />
+<glyph unicode="&#xe155;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM900 1000h-200v200h200v-200zM1000 700h-300v200h300v-200zM1100 400h-400v200h400v-200zM1200 100h-500v200h500v-200z" />
+<glyph unicode="&#xe156;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1200 1000h-500v200h500v-200zM1100 700h-400v200h400v-200zM1000 400h-300v200h300v-200zM900 100h-200v200h200v-200z" />
+<glyph unicode="&#xe157;" d="M350 1100h400q162 0 256 -93.5t94 -256.5v-400q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5z" />
+<glyph unicode="&#xe158;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-163 0 -256.5 92.5t-93.5 257.5v400q0 163 94 256.5t256 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM440 770l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
+<glyph unicode="&#xe159;" d="M350 1100h400q163 0 256.5 -94t93.5 -256v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 163 92.5 256.5t257.5 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM350 700h400q21 0 26.5 -12t-6.5 -28l-190 -253q-12 -17 -30 -17t-30 17l-190 253q-12 16 -6.5 28t26.5 12z" />
+<glyph unicode="&#xe160;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -163 -92.5 -256.5t-257.5 -93.5h-400q-163 0 -256.5 94t-93.5 256v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM580 693l190 -253q12 -16 6.5 -28t-26.5 -12h-400q-21 0 -26.5 12t6.5 28l190 253q12 17 30 17t30 -17z" />
+<glyph unicode="&#xe161;" d="M550 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h450q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-450q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM338 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
+<glyph unicode="&#xe162;" d="M793 1182l9 -9q8 -10 5 -27q-3 -11 -79 -225.5t-78 -221.5l300 1q24 0 32.5 -17.5t-5.5 -35.5q-1 0 -133.5 -155t-267 -312.5t-138.5 -162.5q-12 -15 -26 -15h-9l-9 8q-9 11 -4 32q2 9 42 123.5t79 224.5l39 110h-302q-23 0 -31 19q-10 21 6 41q75 86 209.5 237.5 t228 257t98.5 111.5q9 16 25 16h9z" />
+<glyph unicode="&#xe163;" d="M350 1100h400q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-450q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h450q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400 q0 165 92.5 257.5t257.5 92.5zM938 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
+<glyph unicode="&#xe164;" d="M750 1200h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -10.5 -25t-24.5 10l-109 109l-312 -312q-15 -15 -35.5 -15t-35.5 15l-141 141q-15 15 -15 35.5t15 35.5l312 312l-109 109q-14 14 -10 24.5t25 10.5zM456 900h-156q-41 0 -70.5 -29.5t-29.5 -70.5v-500 q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v148l200 200v-298q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5h300z" />
+<glyph unicode="&#xe165;" d="M600 1186q119 0 227.5 -46.5t187 -125t125 -187t46.5 -227.5t-46.5 -227.5t-125 -187t-187 -125t-227.5 -46.5t-227.5 46.5t-187 125t-125 187t-46.5 227.5t46.5 227.5t125 187t187 125t227.5 46.5zM600 1022q-115 0 -212 -56.5t-153.5 -153.5t-56.5 -212t56.5 -212 t153.5 -153.5t212 -56.5t212 56.5t153.5 153.5t56.5 212t-56.5 212t-153.5 153.5t-212 56.5zM600 794q80 0 137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137t57 137t137 57z" />
+<glyph unicode="&#xe166;" d="M450 1200h200q21 0 35.5 -14.5t14.5 -35.5v-350h245q20 0 25 -11t-9 -26l-383 -426q-14 -15 -33.5 -15t-32.5 15l-379 426q-13 15 -8.5 26t25.5 11h250v350q0 21 14.5 35.5t35.5 14.5zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe167;" d="M583 1182l378 -435q14 -15 9 -31t-26 -16h-244v-250q0 -20 -17 -35t-39 -15h-200q-20 0 -32 14.5t-12 35.5v250h-250q-20 0 -25.5 16.5t8.5 31.5l383 431q14 16 33.5 17t33.5 -14zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe168;" d="M396 723l369 369q7 7 17.5 7t17.5 -7l139 -139q7 -8 7 -18.5t-7 -17.5l-525 -525q-7 -8 -17.5 -8t-17.5 8l-292 291q-7 8 -7 18t7 18l139 139q8 7 18.5 7t17.5 -7zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50 h-100z" />
+<glyph unicode="&#xe169;" d="M135 1023l142 142q14 14 35 14t35 -14l77 -77l-212 -212l-77 76q-14 15 -14 36t14 35zM655 855l210 210q14 14 24.5 10t10.5 -25l-2 -599q-1 -20 -15.5 -35t-35.5 -15l-597 -1q-21 0 -25 10.5t10 24.5l208 208l-154 155l212 212zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5 v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe170;" d="M350 1200l599 -2q20 -1 35 -15.5t15 -35.5l1 -597q0 -21 -10.5 -25t-24.5 10l-208 208l-155 -154l-212 212l155 154l-210 210q-14 14 -10 24.5t25 10.5zM524 512l-76 -77q-15 -14 -36 -14t-35 14l-142 142q-14 14 -14 35t14 35l77 77zM50 300h1000q21 0 35.5 -14.5 t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe171;" d="M1200 103l-483 276l-314 -399v423h-399l1196 796v-1096zM483 424v-230l683 953z" />
+<glyph unicode="&#xe172;" d="M1100 1000v-850q0 -21 -14.5 -35.5t-35.5 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200z" />
+<glyph unicode="&#xe173;" d="M1100 1000l-2 -149l-299 -299l-95 95q-9 9 -21.5 9t-21.5 -9l-149 -147h-312v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1132 638l106 -106q7 -7 7 -17.5t-7 -17.5l-420 -421q-8 -7 -18 -7 t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l297 297q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe174;" d="M1100 1000v-269l-103 -103l-134 134q-15 15 -33.5 16.5t-34.5 -12.5l-266 -266h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1202 572l70 -70q15 -15 15 -35.5t-15 -35.5l-131 -131 l131 -131q15 -15 15 -35.5t-15 -35.5l-70 -70q-15 -15 -35.5 -15t-35.5 15l-131 131l-131 -131q-15 -15 -35.5 -15t-35.5 15l-70 70q-15 15 -15 35.5t15 35.5l131 131l-131 131q-15 15 -15 35.5t15 35.5l70 70q15 15 35.5 15t35.5 -15l131 -131l131 131q15 15 35.5 15 t35.5 -15z" />
+<glyph unicode="&#xe175;" d="M1100 1000v-300h-350q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM850 600h100q21 0 35.5 -14.5t14.5 -35.5v-250h150q21 0 25 -10.5t-10 -24.5 l-230 -230q-14 -14 -35 -14t-35 14l-230 230q-14 14 -10 24.5t25 10.5h150v250q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe176;" d="M1100 1000v-400l-165 165q-14 15 -35 15t-35 -15l-263 -265h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM935 565l230 -229q14 -15 10 -25.5t-25 -10.5h-150v-250q0 -20 -14.5 -35 t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35v250h-150q-21 0 -25 10.5t10 25.5l230 229q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe177;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-150h-1200v150q0 21 14.5 35.5t35.5 14.5zM1200 800v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v550h1200zM100 500v-200h400v200h-400z" />
+<glyph unicode="&#xe178;" d="M935 1165l248 -230q14 -14 14 -35t-14 -35l-248 -230q-14 -14 -24.5 -10t-10.5 25v150h-400v200h400v150q0 21 10.5 25t24.5 -10zM200 800h-50q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v-200zM400 800h-100v200h100v-200zM18 435l247 230 q14 14 24.5 10t10.5 -25v-150h400v-200h-400v-150q0 -21 -10.5 -25t-24.5 10l-247 230q-15 14 -15 35t15 35zM900 300h-100v200h100v-200zM1000 500h51q20 0 34.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-34.5 -14.5h-51v200z" />
+<glyph unicode="&#xe179;" d="M862 1073l276 116q25 18 43.5 8t18.5 -41v-1106q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v397q-4 1 -11 5t-24 17.5t-30 29t-24 42t-11 56.5v359q0 31 18.5 65t43.5 52zM550 1200q22 0 34.5 -12.5t14.5 -24.5l1 -13v-450q0 -28 -10.5 -59.5 t-25 -56t-29 -45t-25.5 -31.5l-10 -11v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447q-4 4 -11 11.5t-24 30.5t-30 46t-24 55t-11 60v450q0 2 0.5 5.5t4 12t8.5 15t14.5 12t22.5 5.5q20 0 32.5 -12.5t14.5 -24.5l3 -13v-350h100v350v5.5t2.5 12 t7 15t15 12t25.5 5.5q23 0 35.5 -12.5t13.5 -24.5l1 -13v-350h100v350q0 2 0.5 5.5t3 12t7 15t15 12t24.5 5.5z" />
+<glyph unicode="&#xe180;" d="M1200 1100v-56q-4 0 -11 -0.5t-24 -3t-30 -7.5t-24 -15t-11 -24v-888q0 -22 25 -34.5t50 -13.5l25 -2v-56h-400v56q75 0 87.5 6.5t12.5 43.5v394h-500v-394q0 -37 12.5 -43.5t87.5 -6.5v-56h-400v56q4 0 11 0.5t24 3t30 7.5t24 15t11 24v888q0 22 -25 34.5t-50 13.5 l-25 2v56h400v-56q-75 0 -87.5 -6.5t-12.5 -43.5v-394h500v394q0 37 -12.5 43.5t-87.5 6.5v56h400z" />
+<glyph unicode="&#xe181;" d="M675 1000h375q21 0 35.5 -14.5t14.5 -35.5v-150h-105l-295 -98v98l-200 200h-400l100 100h375zM100 900h300q41 0 70.5 -29.5t29.5 -70.5v-500q0 -41 -29.5 -70.5t-70.5 -29.5h-300q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5zM100 800v-200h300v200 h-300zM1100 535l-400 -133v163l400 133v-163zM100 500v-200h300v200h-300zM1100 398v-248q0 -21 -14.5 -35.5t-35.5 -14.5h-375l-100 -100h-375l-100 100h400l200 200h105z" />
+<glyph unicode="&#xe182;" d="M17 1007l162 162q17 17 40 14t37 -22l139 -194q14 -20 11 -44.5t-20 -41.5l-119 -118q102 -142 228 -268t267 -227l119 118q17 17 42.5 19t44.5 -12l192 -136q19 -14 22.5 -37.5t-13.5 -40.5l-163 -162q-3 -1 -9.5 -1t-29.5 2t-47.5 6t-62.5 14.5t-77.5 26.5t-90 42.5 t-101.5 60t-111 83t-119 108.5q-74 74 -133.5 150.5t-94.5 138.5t-60 119.5t-34.5 100t-15 74.5t-4.5 48z" />
+<glyph unicode="&#xe183;" d="M600 1100q92 0 175 -10.5t141.5 -27t108.5 -36.5t81.5 -40t53.5 -37t31 -27l9 -10v-200q0 -21 -14.5 -33t-34.5 -9l-202 34q-20 3 -34.5 20t-14.5 38v146q-141 24 -300 24t-300 -24v-146q0 -21 -14.5 -38t-34.5 -20l-202 -34q-20 -3 -34.5 9t-14.5 33v200q3 4 9.5 10.5 t31 26t54 37.5t80.5 39.5t109 37.5t141 26.5t175 10.5zM600 795q56 0 97 -9.5t60 -23.5t30 -28t12 -24l1 -10v-50l365 -303q14 -15 24.5 -40t10.5 -45v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v212q0 20 10.5 45t24.5 40l365 303v50 q0 4 1 10.5t12 23t30 29t60 22.5t97 10z" />
+<glyph unicode="&#xe184;" d="M1100 700l-200 -200h-600l-200 200v500h200v-200h200v200h200v-200h200v200h200v-500zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5 t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe185;" d="M700 1100h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-1000h300v1000q0 41 -29.5 70.5t-70.5 29.5zM1100 800h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-700h300v700q0 41 -29.5 70.5t-70.5 29.5zM400 0h-300v400q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-400z " />
+<glyph unicode="&#xe186;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
+<glyph unicode="&#xe187;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 300h-100v200h-100v-200h-100v500h100v-200h100v200h100v-500zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
+<glyph unicode="&#xe188;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-300h200v-100h-300v500h300v-100zM900 700h-200v-300h200v-100h-300v500h300v-100z" />
+<glyph unicode="&#xe189;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 400l-300 150l300 150v-300zM900 550l-300 -150v300z" />
+<glyph unicode="&#xe190;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM900 300h-700v500h700v-500zM800 700h-130q-38 0 -66.5 -43t-28.5 -108t27 -107t68 -42h130v300zM300 700v-300 h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130z" />
+<glyph unicode="&#xe191;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 300h-100v400h-100v100h200v-500z M700 300h-100v100h100v-100z" />
+<glyph unicode="&#xe192;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM300 700h200v-400h-300v500h100v-100zM900 300h-100v400h-100v100h200v-500zM300 600v-200h100v200h-100z M700 300h-100v100h100v-100z" />
+<glyph unicode="&#xe193;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 500l-199 -200h-100v50l199 200v150h-200v100h300v-300zM900 300h-100v400h-100v100h200v-500zM701 300h-100 v100h100v-100z" />
+<glyph unicode="&#xe194;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700h-300v-200h300v-100h-300l-100 100v200l100 100h300v-100z" />
+<glyph unicode="&#xe195;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700v-100l-50 -50l100 -100v-50h-100l-100 100h-150v-100h-100v400h300zM500 700v-100h200v100h-200z" />
+<glyph unicode="&#xe197;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -207t-85 -207t-205 -86.5h-128v250q0 21 -14.5 35.5t-35.5 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-250h-222q-80 0 -136 57.5t-56 136.5q0 69 43 122.5t108 67.5q-2 19 -2 37q0 100 49 185 t134 134t185 49zM525 500h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -244q-13 -16 -32 -16t-32 16l-223 244q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe198;" d="M502 1089q110 0 201 -59.5t135 -156.5q43 15 89 15q121 0 206 -86.5t86 -206.5q0 -99 -60 -181t-150 -110l-378 360q-13 16 -31.5 16t-31.5 -16l-381 -365h-9q-79 0 -135.5 57.5t-56.5 136.5q0 69 43 122.5t108 67.5q-2 19 -2 38q0 100 49 184.5t133.5 134t184.5 49.5z M632 467l223 -228q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5q199 204 223 228q19 19 31.5 19t32.5 -19z" />
+<glyph unicode="&#xe199;" d="M700 100v100h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170l-270 -300h400v-100h-50q-21 0 -35.5 -14.5t-14.5 -35.5v-50h400v50q0 21 -14.5 35.5t-35.5 14.5h-50z" />
+<glyph unicode="&#xe200;" d="M600 1179q94 0 167.5 -56.5t99.5 -145.5q89 -6 150.5 -71.5t61.5 -155.5q0 -61 -29.5 -112.5t-79.5 -82.5q9 -29 9 -55q0 -74 -52.5 -126.5t-126.5 -52.5q-55 0 -100 30v-251q21 0 35.5 -14.5t14.5 -35.5v-50h-300v50q0 21 14.5 35.5t35.5 14.5v251q-45 -30 -100 -30 q-74 0 -126.5 52.5t-52.5 126.5q0 18 4 38q-47 21 -75.5 65t-28.5 97q0 74 52.5 126.5t126.5 52.5q5 0 23 -2q0 2 -1 10t-1 13q0 116 81.5 197.5t197.5 81.5z" />
+<glyph unicode="&#xe201;" d="M1010 1010q111 -111 150.5 -260.5t0 -299t-150.5 -260.5q-83 -83 -191.5 -126.5t-218.5 -43.5t-218.5 43.5t-191.5 126.5q-111 111 -150.5 260.5t0 299t150.5 260.5q83 83 191.5 126.5t218.5 43.5t218.5 -43.5t191.5 -126.5zM476 1065q-4 0 -8 -1q-121 -34 -209.5 -122.5 t-122.5 -209.5q-4 -12 2.5 -23t18.5 -14l36 -9q3 -1 7 -1q23 0 29 22q27 96 98 166q70 71 166 98q11 3 17.5 13.5t3.5 22.5l-9 35q-3 13 -14 19q-7 4 -15 4zM512 920q-4 0 -9 -2q-80 -24 -138.5 -82.5t-82.5 -138.5q-4 -13 2 -24t19 -14l34 -9q4 -1 8 -1q22 0 28 21 q18 58 58.5 98.5t97.5 58.5q12 3 18 13.5t3 21.5l-9 35q-3 12 -14 19q-7 4 -15 4zM719.5 719.5q-49.5 49.5 -119.5 49.5t-119.5 -49.5t-49.5 -119.5t49.5 -119.5t119.5 -49.5t119.5 49.5t49.5 119.5t-49.5 119.5zM855 551q-22 0 -28 -21q-18 -58 -58.5 -98.5t-98.5 -57.5 q-11 -4 -17 -14.5t-3 -21.5l9 -35q3 -12 14 -19q7 -4 15 -4q4 0 9 2q80 24 138.5 82.5t82.5 138.5q4 13 -2.5 24t-18.5 14l-34 9q-4 1 -8 1zM1000 515q-23 0 -29 -22q-27 -96 -98 -166q-70 -71 -166 -98q-11 -3 -17.5 -13.5t-3.5 -22.5l9 -35q3 -13 14 -19q7 -4 15 -4 q4 0 8 1q121 34 209.5 122.5t122.5 209.5q4 12 -2.5 23t-18.5 14l-36 9q-3 1 -7 1z" />
+<glyph unicode="&#xe202;" d="M700 800h300v-380h-180v200h-340v-200h-380v755q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM700 300h162l-212 -212l-212 212h162v200h100v-200zM520 0h-395q-10 0 -17.5 7.5t-7.5 17.5v395zM1000 220v-195q0 -10 -7.5 -17.5t-17.5 -7.5h-195z" />
+<glyph unicode="&#xe203;" d="M700 800h300v-520l-350 350l-550 -550v1095q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM862 200h-162v-200h-100v200h-162l212 212zM480 0h-355q-10 0 -17.5 7.5t-7.5 17.5v55h380v-80zM1000 80v-55q0 -10 -7.5 -17.5t-17.5 -7.5h-155v80h180z" />
+<glyph unicode="&#xe204;" d="M1162 800h-162v-200h100l100 -100h-300v300h-162l212 212zM200 800h200q27 0 40 -2t29.5 -10.5t23.5 -30t7 -57.5h300v-100h-600l-200 -350v450h100q0 36 7 57.5t23.5 30t29.5 10.5t40 2zM800 400h240l-240 -400h-800l300 500h500v-100z" />
+<glyph unicode="&#xe205;" d="M650 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM1000 850v150q41 0 70.5 -29.5t29.5 -70.5v-800 q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-1 0 -20 4l246 246l-326 326v324q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM412 250l-212 -212v162h-200v100h200v162z" />
+<glyph unicode="&#xe206;" d="M450 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM800 850v150q41 0 70.5 -29.5t29.5 -70.5v-500 h-200v-300h200q0 -36 -7 -57.5t-23.5 -30t-29.5 -10.5t-40 -2h-600q-41 0 -70.5 29.5t-29.5 70.5v800q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM1212 250l-212 -212v162h-200v100h200v162z" />
+<glyph unicode="&#xe209;" d="M658 1197l637 -1104q23 -38 7 -65.5t-60 -27.5h-1276q-44 0 -60 27.5t7 65.5l637 1104q22 39 54 39t54 -39zM704 800h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM500 300v-100h200 v100h-200z" />
+<glyph unicode="&#xe210;" d="M425 1100h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM825 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM25 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5zM425 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5 v150q0 10 7.5 17.5t17.5 7.5zM25 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe211;" d="M700 1200h100v-200h-100v-100h350q62 0 86.5 -39.5t-3.5 -94.5l-66 -132q-41 -83 -81 -134h-772q-40 51 -81 134l-66 132q-28 55 -3.5 94.5t86.5 39.5h350v100h-100v200h100v100h200v-100zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100 h-950l138 100h-13q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe212;" d="M600 1300q40 0 68.5 -29.5t28.5 -70.5h-194q0 41 28.5 70.5t68.5 29.5zM443 1100h314q18 -37 18 -75q0 -8 -3 -25h328q41 0 44.5 -16.5t-30.5 -38.5l-175 -145h-678l-178 145q-34 22 -29 38.5t46 16.5h328q-3 17 -3 25q0 38 18 75zM250 700h700q21 0 35.5 -14.5 t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-150v-200l275 -200h-950l275 200v200h-150q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe213;" d="M600 1181q75 0 128 -53t53 -128t-53 -128t-128 -53t-128 53t-53 128t53 128t128 53zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13 l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe214;" d="M600 1300q47 0 92.5 -53.5t71 -123t25.5 -123.5q0 -78 -55.5 -133.5t-133.5 -55.5t-133.5 55.5t-55.5 133.5q0 62 34 143l144 -143l111 111l-163 163q34 26 63 26zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45 zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe215;" d="M600 1200l300 -161v-139h-300q0 -57 18.5 -108t50 -91.5t63 -72t70 -67.5t57.5 -61h-530q-60 83 -90.5 177.5t-30.5 178.5t33 164.5t87.5 139.5t126 96.5t145.5 41.5v-98zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100 h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe216;" d="M600 1300q41 0 70.5 -29.5t29.5 -70.5v-78q46 -26 73 -72t27 -100v-50h-400v50q0 54 27 100t73 72v78q0 41 29.5 70.5t70.5 29.5zM400 800h400q54 0 100 -27t72 -73h-172v-100h200v-100h-200v-100h200v-100h-200v-100h200q0 -83 -58.5 -141.5t-141.5 -58.5h-400 q-83 0 -141.5 58.5t-58.5 141.5v400q0 83 58.5 141.5t141.5 58.5z" />
+<glyph unicode="&#xe218;" d="M150 1100h900q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM125 400h950q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-283l224 -224q13 -13 13 -31.5t-13 -32 t-31.5 -13.5t-31.5 13l-88 88h-524l-87 -88q-13 -13 -32 -13t-32 13.5t-13 32t13 31.5l224 224h-289q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM541 300l-100 -100h324l-100 100h-124z" />
+<glyph unicode="&#xe219;" d="M200 1100h800q83 0 141.5 -58.5t58.5 -141.5v-200h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100v200q0 83 58.5 141.5t141.5 58.5zM100 600h1000q41 0 70.5 -29.5 t29.5 -70.5v-300h-1200v300q0 41 29.5 70.5t70.5 29.5zM300 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200zM1100 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200z" />
+<glyph unicode="&#xe221;" d="M480 1165l682 -683q31 -31 31 -75.5t-31 -75.5l-131 -131h-481l-517 518q-32 31 -32 75.5t32 75.5l295 296q31 31 75.5 31t76.5 -31zM108 794l342 -342l303 304l-341 341zM250 100h800q21 0 35.5 -14.5t14.5 -35.5v-50h-900v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe223;" d="M1057 647l-189 506q-8 19 -27.5 33t-40.5 14h-400q-21 0 -40.5 -14t-27.5 -33l-189 -506q-8 -19 1.5 -33t30.5 -14h625v-150q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v150h125q21 0 30.5 14t1.5 33zM897 0h-595v50q0 21 14.5 35.5t35.5 14.5h50v50 q0 21 14.5 35.5t35.5 14.5h48v300h200v-300h47q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-50z" />
+<glyph unicode="&#xe224;" d="M900 800h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-375v591l-300 300v84q0 10 7.5 17.5t17.5 7.5h375v-400zM1200 900h-200v200zM400 600h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-650q-10 0 -17.5 7.5t-7.5 17.5v950q0 10 7.5 17.5t17.5 7.5h375v-400zM700 700h-200v200z " />
+<glyph unicode="&#xe225;" d="M484 1095h195q75 0 146 -32.5t124 -86t89.5 -122.5t48.5 -142q18 -14 35 -20q31 -10 64.5 6.5t43.5 48.5q10 34 -15 71q-19 27 -9 43q5 8 12.5 11t19 -1t23.5 -16q41 -44 39 -105q-3 -63 -46 -106.5t-104 -43.5h-62q-7 -55 -35 -117t-56 -100l-39 -234q-3 -20 -20 -34.5 t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l12 70q-49 -14 -91 -14h-195q-24 0 -65 8l-11 -64q-3 -20 -20 -34.5t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l26 157q-84 74 -128 175l-159 53q-19 7 -33 26t-14 40v50q0 21 14.5 35.5t35.5 14.5h124q11 87 56 166l-111 95 q-16 14 -12.5 23.5t24.5 9.5h203q116 101 250 101zM675 1000h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h250q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe226;" d="M641 900l423 247q19 8 42 2.5t37 -21.5l32 -38q14 -15 12.5 -36t-17.5 -34l-139 -120h-390zM50 1100h106q67 0 103 -17t66 -71l102 -212h823q21 0 35.5 -14.5t14.5 -35.5v-50q0 -21 -14 -40t-33 -26l-737 -132q-23 -4 -40 6t-26 25q-42 67 -100 67h-300q-62 0 -106 44 t-44 106v200q0 62 44 106t106 44zM173 928h-80q-19 0 -28 -14t-9 -35v-56q0 -51 42 -51h134q16 0 21.5 8t5.5 24q0 11 -16 45t-27 51q-18 28 -43 28zM550 727q-32 0 -54.5 -22.5t-22.5 -54.5t22.5 -54.5t54.5 -22.5t54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5zM130 389 l152 130q18 19 34 24t31 -3.5t24.5 -17.5t25.5 -28q28 -35 50.5 -51t48.5 -13l63 5l48 -179q13 -61 -3.5 -97.5t-67.5 -79.5l-80 -69q-47 -40 -109 -35.5t-103 51.5l-130 151q-40 47 -35.5 109.5t51.5 102.5zM380 377l-102 -88q-31 -27 2 -65l37 -43q13 -15 27.5 -19.5 t31.5 6.5l61 53q19 16 14 49q-2 20 -12 56t-17 45q-11 12 -19 14t-23 -8z" />
+<glyph unicode="&#xe227;" d="M625 1200h150q10 0 17.5 -7.5t7.5 -17.5v-109q79 -33 131 -87.5t53 -128.5q1 -46 -15 -84.5t-39 -61t-46 -38t-39 -21.5l-17 -6q6 0 15 -1.5t35 -9t50 -17.5t53 -30t50 -45t35.5 -64t14.5 -84q0 -59 -11.5 -105.5t-28.5 -76.5t-44 -51t-49.5 -31.5t-54.5 -16t-49.5 -6.5 t-43.5 -1v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-100v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-175q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v600h-75q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5h175v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h100v75q0 10 7.5 17.5t17.5 7.5zM400 900v-200h263q28 0 48.5 10.5t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-263zM400 500v-200h363q28 0 48.5 10.5 t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-363z" />
+<glyph unicode="&#xe230;" d="M212 1198h780q86 0 147 -61t61 -147v-416q0 -51 -18 -142.5t-36 -157.5l-18 -66q-29 -87 -93.5 -146.5t-146.5 -59.5h-572q-82 0 -147 59t-93 147q-8 28 -20 73t-32 143.5t-20 149.5v416q0 86 61 147t147 61zM600 1045q-70 0 -132.5 -11.5t-105.5 -30.5t-78.5 -41.5 t-57 -45t-36 -41t-20.5 -30.5l-6 -12l156 -243h560l156 243q-2 5 -6 12.5t-20 29.5t-36.5 42t-57 44.5t-79 42t-105 29.5t-132.5 12zM762 703h-157l195 261z" />
+<glyph unicode="&#xe231;" d="M475 1300h150q103 0 189 -86t86 -189v-500q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
+<glyph unicode="&#xe232;" d="M475 1300h96q0 -150 89.5 -239.5t239.5 -89.5v-446q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
+<glyph unicode="&#xe233;" d="M1294 767l-638 -283l-378 170l-78 -60v-224l100 -150v-199l-150 148l-150 -149v200l100 150v250q0 4 -0.5 10.5t0 9.5t1 8t3 8t6.5 6l47 40l-147 65l642 283zM1000 380l-350 -166l-350 166v147l350 -165l350 165v-147z" />
+<glyph unicode="&#xe234;" d="M250 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM650 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1050 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
+<glyph unicode="&#xe235;" d="M550 1100q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 700q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 300q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
+<glyph unicode="&#xe236;" d="M125 1100h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM125 700h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM125 300h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe237;" d="M350 1200h500q162 0 256 -93.5t94 -256.5v-500q0 -165 -93.5 -257.5t-256.5 -92.5h-500q-165 0 -257.5 92.5t-92.5 257.5v500q0 165 92.5 257.5t257.5 92.5zM900 1000h-600q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h600q41 0 70.5 29.5 t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5zM350 900h500q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-500q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 14.5 35.5t35.5 14.5zM400 800v-200h400v200h-400z" />
+<glyph unicode="&#xe238;" d="M150 1100h1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe239;" d="M650 1187q87 -67 118.5 -156t0 -178t-118.5 -155q-87 66 -118.5 155t0 178t118.5 156zM300 800q124 0 212 -88t88 -212q-124 0 -212 88t-88 212zM1000 800q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM300 500q124 0 212 -88t88 -212q-124 0 -212 88t-88 212z M1000 500q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM700 199v-144q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v142q40 -4 43 -4q17 0 57 6z" />
+<glyph unicode="&#xe240;" d="M745 878l69 19q25 6 45 -12l298 -295q11 -11 15 -26.5t-2 -30.5q-5 -14 -18 -23.5t-28 -9.5h-8q1 0 1 -13q0 -29 -2 -56t-8.5 -62t-20 -63t-33 -53t-51 -39t-72.5 -14h-146q-184 0 -184 288q0 24 10 47q-20 4 -62 4t-63 -4q11 -24 11 -47q0 -288 -184 -288h-142 q-48 0 -84.5 21t-56 51t-32 71.5t-16 75t-3.5 68.5q0 13 2 13h-7q-15 0 -27.5 9.5t-18.5 23.5q-6 15 -2 30.5t15 25.5l298 296q20 18 46 11l76 -19q20 -5 30.5 -22.5t5.5 -37.5t-22.5 -31t-37.5 -5l-51 12l-182 -193h891l-182 193l-44 -12q-20 -5 -37.5 6t-22.5 31t6 37.5 t31 22.5z" />
+<glyph unicode="&#xe241;" d="M1200 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM500 450h-25q0 15 -4 24.5t-9 14.5t-17 7.5t-20 3t-25 0.5h-100v-425q0 -11 12.5 -17.5t25.5 -7.5h12v-50h-200v50q50 0 50 25v425h-100q-17 0 -25 -0.5t-20 -3t-17 -7.5t-9 -14.5t-4 -24.5h-25v150h500v-150z" />
+<glyph unicode="&#xe242;" d="M1000 300v50q-25 0 -55 32q-14 14 -25 31t-16 27l-4 11l-289 747h-69l-300 -754q-18 -35 -39 -56q-9 -9 -24.5 -18.5t-26.5 -14.5l-11 -5v-50h273v50q-49 0 -78.5 21.5t-11.5 67.5l69 176h293l61 -166q13 -34 -3.5 -66.5t-55.5 -32.5v-50h312zM412 691l134 342l121 -342 h-255zM1100 150v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5z" />
+<glyph unicode="&#xe243;" d="M50 1200h1100q21 0 35.5 -14.5t14.5 -35.5v-1100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5zM611 1118h-70q-13 0 -18 -12l-299 -753q-17 -32 -35 -51q-18 -18 -56 -34q-12 -5 -12 -18v-50q0 -8 5.5 -14t14.5 -6 h273q8 0 14 6t6 14v50q0 8 -6 14t-14 6q-55 0 -71 23q-10 14 0 39l63 163h266l57 -153q11 -31 -6 -55q-12 -17 -36 -17q-8 0 -14 -6t-6 -14v-50q0 -8 6 -14t14 -6h313q8 0 14 6t6 14v50q0 7 -5.5 13t-13.5 7q-17 0 -42 25q-25 27 -40 63h-1l-288 748q-5 12 -19 12zM639 611 h-197l103 264z" />
+<glyph unicode="&#xe244;" d="M1200 1100h-1200v100h1200v-100zM50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 1000h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM700 900v-300h300v300h-300z" />
+<glyph unicode="&#xe245;" d="M50 1200h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 700h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM700 600v-300h300v300h-300zM1200 0h-1200v100h1200v-100z" />
+<glyph unicode="&#xe246;" d="M50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-350h100v150q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-150h100v-100h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v150h-100v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM700 700v-300h300v300h-300z" />
+<glyph unicode="&#xe247;" d="M100 0h-100v1200h100v-1200zM250 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM300 1000v-300h300v300h-300zM250 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe248;" d="M600 1100h150q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-100h450q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h350v100h-150q-21 0 -35.5 14.5 t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h150v100h100v-100zM400 1000v-300h300v300h-300z" />
+<glyph unicode="&#xe249;" d="M1200 0h-100v1200h100v-1200zM550 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM600 1000v-300h300v300h-300zM50 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe250;" d="M865 565l-494 -494q-23 -23 -41 -23q-14 0 -22 13.5t-8 38.5v1000q0 25 8 38.5t22 13.5q18 0 41 -23l494 -494q14 -14 14 -35t-14 -35z" />
+<glyph unicode="&#xe251;" d="M335 635l494 494q29 29 50 20.5t21 -49.5v-1000q0 -41 -21 -49.5t-50 20.5l-494 494q-14 14 -14 35t14 35z" />
+<glyph unicode="&#xe252;" d="M100 900h1000q41 0 49.5 -21t-20.5 -50l-494 -494q-14 -14 -35 -14t-35 14l-494 494q-29 29 -20.5 50t49.5 21z" />
+<glyph unicode="&#xe253;" d="M635 865l494 -494q29 -29 20.5 -50t-49.5 -21h-1000q-41 0 -49.5 21t20.5 50l494 494q14 14 35 14t35 -14z" />
+<glyph unicode="&#xe254;" d="M700 741v-182l-692 -323v221l413 193l-413 193v221zM1200 0h-800v200h800v-200z" />
+<glyph unicode="&#xe255;" d="M1200 900h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300zM0 700h50q0 21 4 37t9.5 26.5t18 17.5t22 11t28.5 5.5t31 2t37 0.5h100v-550q0 -22 -25 -34.5t-50 -13.5l-25 -2v-100h400v100q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v550h100q25 0 37 -0.5t31 -2 t28.5 -5.5t22 -11t18 -17.5t9.5 -26.5t4 -37h50v300h-800v-300z" />
+<glyph unicode="&#xe256;" d="M800 700h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-100v-550q0 -22 25 -34.5t50 -14.5l25 -1v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v550h-100q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h800v-300zM1100 200h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300z" />
+<glyph unicode="&#xe257;" d="M701 1098h160q16 0 21 -11t-7 -23l-464 -464l464 -464q12 -12 7 -23t-21 -11h-160q-13 0 -23 9l-471 471q-7 8 -7 18t7 18l471 471q10 9 23 9z" />
+<glyph unicode="&#xe258;" d="M339 1098h160q13 0 23 -9l471 -471q7 -8 7 -18t-7 -18l-471 -471q-10 -9 -23 -9h-160q-16 0 -21 11t7 23l464 464l-464 464q-12 12 -7 23t21 11z" />
+<glyph unicode="&#xe259;" d="M1087 882q11 -5 11 -21v-160q0 -13 -9 -23l-471 -471q-8 -7 -18 -7t-18 7l-471 471q-9 10 -9 23v160q0 16 11 21t23 -7l464 -464l464 464q12 12 23 7z" />
+<glyph unicode="&#xe260;" d="M618 993l471 -471q9 -10 9 -23v-160q0 -16 -11 -21t-23 7l-464 464l-464 -464q-12 -12 -23 -7t-11 21v160q0 13 9 23l471 471q8 7 18 7t18 -7z" />
+<glyph unicode="&#xf8ff;" d="M1000 1200q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM450 1000h100q21 0 40 -14t26 -33l79 -194q5 1 16 3q34 6 54 9.5t60 7t65.5 1t61 -10t56.5 -23t42.5 -42t29 -64t5 -92t-19.5 -121.5q-1 -7 -3 -19.5t-11 -50t-20.5 -73t-32.5 -81.5t-46.5 -83t-64 -70 t-82.5 -50q-13 -5 -42 -5t-65.5 2.5t-47.5 2.5q-14 0 -49.5 -3.5t-63 -3.5t-43.5 7q-57 25 -104.5 78.5t-75 111.5t-46.5 112t-26 90l-7 35q-15 63 -18 115t4.5 88.5t26 64t39.5 43.5t52 25.5t58.5 13t62.5 2t59.5 -4.5t55.5 -8l-147 192q-12 18 -5.5 30t27.5 12z" />
+<glyph unicode="&#x1f511;" d="M250 1200h600q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-500l-255 -178q-19 -9 -32 -1t-13 29v650h-150q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM400 1100v-100h300v100h-300z" />
+<glyph unicode="&#x1f6aa;" d="M250 1200h750q39 0 69.5 -40.5t30.5 -84.5v-933l-700 -117v950l600 125h-700v-1000h-100v1025q0 23 15.5 49t34.5 26zM500 525v-100l100 20v100z" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/js/bootstrap-3.3.7.js b/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/js/bootstrap-3.3.7.js
new file mode 100644
index 0000000..fa7a2e2
--- /dev/null
+++ b/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/js/bootstrap-3.3.7.js
@@ -0,0 +1,2390 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+if (typeof jQuery === 'undefined') {
+  throw new Error('Bootstrap\'s JavaScript requires jQuery')
+}
+
++function ($) {
+  'use strict';
+  var version = $.fn.jquery.split(' ')[0].split('.')
+  if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] > 3)) {
+    throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4')
+  }
+}(jQuery);
+
+/* ========================================================================
+ * Bootstrap: transition.js v3.3.7
+ * http://getbootstrap.com/javascript/#transitions
+ * ========================================================================
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * ======================================================================== */
+
+
++function ($) {
+  'use strict';
+
+  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
+  // ============================================================
+
+  function transitionEnd() {
+    var el = document.createElement('bootstrap')
+
+    var transEndEventNames = {
+      WebkitTransition : 'webkitTransitionEnd',
+      MozTransition    : 'transitionend',
+      OTransition      : 'oTransitionEnd otransitionend',
+      transition       : 'transitionend'
+    }
+
+    for (var name in transEndEventNames) {
+      if (el.style[name] !== undefined) {
+        return { end: transEndEventNames[name] }
+      }
+    }
+
+    return false // explicit for ie8 (  ._.)
+  }
+
+  // http://blog.alexmaccaw.com/css-transitions
+  $.fn.emulateTransitionEnd = function (duration) {
+    var called = false
+    var $el = this
+    $(this).one('bsTransitionEnd', function () { called = true })
+    var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
+    setTimeout(callback, duration)
+    return this
+  }
+
+  $(function () {
+    $.support.transition = transitionEnd()
+
+    if (!$.support.transition) return
+
+    $.event.special.bsTransitionEnd = {
+      bindType: $.support.transition.end,
+      delegateType: $.support.transition.end,
+      handle: function (e) {
+        if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
+      }
+    }
+  })
+
+}(jQuery);
+
+/* ========================================================================
+ * Bootstrap: alert.js v3.3.7
+ * http://getbootstrap.com/javascript/#alerts
+ * ========================================================================
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * ======================================================================== */
+
+
++function ($) {
+  'use strict';
+
+  // ALERT CLASS DEFINITION
+  // ======================
+
+  var dismiss = '[data-dismiss="alert"]'
+  var Alert   = function (el) {
+    $(el).on('click', dismiss, this.close)
+  }
+
+  Alert.VERSION = '3.3.7'
+
+  Alert.TRANSITION_DURATION = 150
+
+  Alert.prototype.close = function (e) {
+    var $this    = $(this)
+    var selector = $this.attr('data-target')
+
+    if (!selector) {
+      selector = $this.attr('href')
+      selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
+    }
+
+    var $parent = $(selector === '#' ? [] : selector)
+
+    if (e) e.preventDefault()
+
+    if (!$parent.length) {
+      $parent = $this.closest('.alert')
+    }
+
+    $parent.trigger(e = $.Event('close.bs.alert'))
+
+    if (e.isDefaultPrevented()) return
+
+    $parent.removeClass('in')
+
+    function removeElement() {
+      // detach from parent, fire event then clean up data
+      $parent.detach().trigger('closed.bs.alert').remove()
+    }
+
+    $.support.transition && $parent.hasClass('fade') ?
+      $parent
+        .one('bsTransitionEnd', removeElement)
+        .emulateTransitionEnd(Alert.TRANSITION_DURATION) :
+      removeElement()
+  }
+
+
+  // ALERT PLUGIN DEFINITION
+  // =======================
+
+  function Plugin(option) {
+    return this.each(function () {
+      var $this = $(this)
+      var data  = $this.data('bs.alert')
+
+      if (!data) $this.data('bs.alert', (data = new Alert(this)))
+      if (typeof option == 'string') data[option].call($this)
+    })
+  }
+
+  var old = $.fn.alert
+
+  $.fn.alert             = Plugin
+  $.fn.alert.Constructor = Alert
+
+
+  // ALERT NO CONFLICT
+  // =================
+
+  $.fn.alert.noConflict = function () {
+    $.fn.alert = old
+    return this
+  }
+
+
+  // ALERT DATA-API
+  // ==============
+
+  $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
+
+}(jQuery);
+
+/* ========================================================================
+ * Bootstrap: button.js v3.3.7
+ * http://getbootstrap.com/javascript/#buttons
+ * ========================================================================
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * ======================================================================== */
+
+
++function ($) {
+  'use strict';
+
+  // BUTTON PUBLIC CLASS DEFINITION
+  // ==============================
+
+  var Button = function (element, options) {
+    this.$element  = $(element)
+    this.options   = $.extend({}, Button.DEFAULTS, options)
+    this.isLoading = false
+  }
+
+  Button.VERSION  = '3.3.7'
+
+  Button.DEFAULTS = {
+    loadingText: 'loading...'
+  }
+
+  Button.prototype.setState = function (state) {
+    var d    = 'disabled'
+    var $el  = this.$element
+    var val  = $el.is('input') ? 'val' : 'html'
+    var data = $el.data()
+
+    state += 'Text'
+
+    if (data.resetText == null) $el.data('resetText', $el[val]())
+
+    // push to event loop to allow forms to submit
+    setTimeout($.proxy(function () {
+      $el[val](data[state] == null ? this.options[state] : data[state])
+
+      if (state == 'loadingText') {
+        this.isLoading = true
+        $el.addClass(d).attr(d, d).prop(d, true)
+      } else if (this.isLoading) {
+        this.isLoading = false
+        $el.removeClass(d).removeAttr(d).prop(d, false)
+      }
+    }, this), 0)
+  }
+
+  Button.prototype.toggle = function () {
+    var changed = true
+    var $parent = this.$element.closest('[data-toggle="buttons"]')
+
+    if ($parent.length) {
+      var $input = this.$element.find('input')
+      if ($input.prop('type') == 'radio') {
+        if ($input.prop('checked')) changed = false
+        $parent.find('.active').removeClass('active')
+        this.$element.addClass('active')
+      } else if ($input.prop('type') == 'checkbox') {
+        if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false
+        this.$element.toggleClass('active')
+      }
+      $input.prop('checked', this.$element.hasClass('active'))
+      if (changed) $input.trigger('change')
+    } else {
+      this.$element.attr('aria-pressed', !this.$element.hasClass('active'))
+      this.$element.toggleClass('active')
+    }
+  }
+
+
+  // BUTTON PLUGIN DEFINITION
+  // ========================
+
+  function Plugin(option) {
+    return this.each(function () {
+      var $this   = $(this)
+      var data    = $this.data('bs.button')
+      var options = typeof option == 'object' && option
+
+      if (!data) $this.data('bs.button', (data = new Button(this, options)))
+
+      if (option == 'toggle') data.toggle()
+      else if (option) data.setState(option)
+    })
+  }
+
+  var old = $.fn.button
+
+  $.fn.button             = Plugin
+  $.fn.button.Constructor = Button
+
+
+  // BUTTON NO CONFLICT
+  // ==================
+
+  $.fn.button.noConflict = function () {
+    $.fn.button = old
+    return this
+  }
+
+
+  // BUTTON DATA-API
+  // ===============
+
+  $(document)
+    .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) {
+      var $btn = $(e.target).closest('.btn')
+      Plugin.call($btn, 'toggle')
+      if (!($(e.target).is('input[type="radio"], input[type="checkbox"]'))) {
+        // Prevent double click on radios, and the double selections (so cancellation) on checkboxes
+        e.preventDefault()
+        // The target component still receive the focus
+        if ($btn.is('input,button')) $btn.trigger('focus')
+        else $btn.find('input:visible,button:visible').first().trigger('focus')
+      }
+    })
+    .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) {
+      $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type))
+    })
+
+}(jQuery);
+
+/* ========================================================================
+ * Bootstrap: carousel.js v3.3.7
+ * http://getbootstrap.com/javascript/#carousel
+ * ========================================================================
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * ======================================================================== */
+
+
++function ($) {
+  'use strict';
+
+  // CAROUSEL CLASS DEFINITION
+  // =========================
+
+  var Carousel = function (element, options) {
+    this.$element    = $(element)
+    this.$indicators = this.$element.find('.carousel-indicators')
+    this.options     = options
+    this.paused      = null
+    this.sliding     = null
+    this.interval    = null
+    this.$active     = null
+    this.$items      = null
+
+    this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this))
+
+    this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element
+      .on('mouseenter.bs.carousel', $.proxy(this.pause, this))
+      .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
+  }
+
+  Carousel.VERSION  = '3.3.7'
+
+  Carousel.TRANSITION_DURATION = 600
+
+  Carousel.DEFAULTS = {
+    interval: 5000,
+    pause: 'hover',
+    wrap: true,
+    keyboard: true
+  }
+
+  Carousel.prototype.keydown = function (e) {
+    if (/input|textarea/i.test(e.target.tagName)) return
+    switch (e.which) {
+      case 37: this.prev(); break
+      case 39: this.next(); break
+      default: return
+    }
+
+    e.preventDefault()
+  }
+
+  Carousel.prototype.cycle = function (e) {
+    e || (this.paused = false)
+
+    this.interval && clearInterval(this.interval)
+
+    this.options.interval
+      && !this.paused
+      && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
+
+    return this
+  }
+
+  Carousel.prototype.getItemIndex = function (item) {
+    this.$items = item.parent().children('.item')
+    return this.$items.index(item || this.$active)
+  }
+
+  Carousel.prototype.getItemForDirection = function (direction, active) {
+    var activeIndex = this.getItemIndex(active)
+    var willWrap = (direction == 'prev' && activeIndex === 0)
+                || (direction == 'next' && activeIndex == (this.$items.length - 1))
+    if (willWrap && !this.options.wrap) return active
+    var delta = direction == 'prev' ? -1 : 1
+    var itemIndex = (activeIndex + delta) % this.$items.length
+    return this.$items.eq(itemIndex)
+  }
+
+  Carousel.prototype.to = function (pos) {
+    var that        = this
+    var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))
+
+    if (pos > (this.$items.length - 1) || pos < 0) return
+
+    if (this.sliding)       return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid"
+    if (activeIndex == pos) return this.pause().cycle()
+
+    return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))
+  }
+
+  Carousel.prototype.pause = function (e) {
+    e || (this.paused = true)
+
+    if (this.$element.find('.next, .prev').length && $.support.transition) {
+      this.$element.trigger($.support.transition.end)
+      this.cycle(true)
+    }
+
+    this.interval = clearInterval(this.interval)
+
+    return this
+  }
+
+  Carousel.prototype.next = function () {
+    if (this.sliding) return
+    return this.slide('next')
+  }
+
+  Carousel.prototype.prev = function () {
+    if (this.sliding) return
+    return this.slide('prev')
+  }
+
+  Carousel.prototype.slide = function (type, next) {
+    var $active   = this.$element.find('.item.active')
+    var $next     = next || this.getItemForDirection(type, $active)
+    var isCycling = this.interval
+    var direction = type == 'next' ? 'left' : 'right'
+    var that      = this
+
+    if ($next.hasClass('active')) return (this.sliding = false)
+
+    var relatedTarget = $next[0]
+    var slideEvent = $.Event('slide.bs.carousel', {
+      relatedTarget: relatedTarget,
+      direction: direction
+    })
+    this.$element.trigger(slideEvent)
+    if (slideEvent.isDefaultPrevented()) return
+
+    this.sliding = true
+
+    isCycling && this.pause()
+
+    if (this.$indicators.length) {
+      this.$indicators.find('.active').removeClass('active')
+      var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])
+      $nextIndicator && $nextIndicator.addClass('active')
+    }
+
+    var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid"
+    if ($.support.transition && this.$element.hasClass('slide')) {
+      $next.addClass(type)
+      $next[0].offsetWidth // force reflow
+      $active.addClass(direction)
+      $next.addClass(direction)
+      $active
+        .one('bsTransitionEnd', function () {
+          $next.removeClass([type, direction].join(' ')).addClass('active')
+          $active.removeClass(['active', direction].join(' '))
+          that.sliding = false
+          setTimeout(function () {
+            that.$element.trigger(slidEvent)
+          }, 0)
+        })
+        .emulateTransitionEnd(Carousel.TRANSITION_DURATION)
+    } else {
+      $active.removeClass('active')
+      $next.addClass('active')
+      this.sliding = false
+      this.$element.trigger(slidEvent)
+    }
+
+    isCycling && this.cycle()
+
+    return this
+  }
+
+
+  // CAROUSEL PLUGIN DEFINITION
+  // ==========================
+
+  function Plugin(option) {
+    return this.each(function () {
+      var $this   = $(this)
+      var data    = $this.data('bs.carousel')
+      var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
+      var action  = typeof option == 'string' ? option : options.slide
+
+      if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
+      if (typeof option == 'number') data.to(option)
+      else if (action) data[action]()
+      else if (options.interval) data.pause().cycle()
+    })
+  }
+
+  var old = $.fn.carousel
+
+  $.fn.carousel             = Plugin
+  $.fn.carousel.Constructor = Carousel
+
+
+  // CAROUSEL NO CONFLICT
+  // ====================
+
+  $.fn.carousel.noConflict = function () {
+    $.fn.carousel = old
+    return this
+  }
+
+
+  // CAROUSEL DATA-API
+  // =================
+
+  var clickHandler = function (e) {
+    var href
+    var $this   = $(this)
+    var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
+    if (!$target.hasClass('carousel')) return
+    var options = $.extend({}, $target.data(), $this.data())
+    var slideIndex = $this.attr('data-slide-to')
+    if (slideIndex) options.interval = false
+
+    Plugin.call($target, options)
+
+    if (slideIndex) {
+      $target.data('bs.carousel').to(slideIndex)
+    }
+
+    e.preventDefault()
+  }
+
+  $(document)
+    .on('click.bs.carousel.data-api', '[data-slide]', clickHandler)
+    .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)
+
+  $(window).on('load', function () {
+    $('[data-ride="carousel"]').each(function () {
+      var $carousel = $(this)
+      Plugin.call($carousel, $carousel.data())
+    })
+  })
+
+}(jQuery);
+
+/* ========================================================================
+ * Bootstrap: collapse.js v3.3.7
+ * http://getbootstrap.com/javascript/#collapse
+ * ========================================================================
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * ======================================================================== */
+
+/* jshint latedef: false */
+
++function ($) {
+  'use strict';
+
+  // COLLAPSE PUBLIC CLASS DEFINITION
+  // ================================
+
+  var Collapse = function (element, options) {
+    this.$element      = $(element)
+    this.options       = $.extend({}, Collapse.DEFAULTS, options)
+    this.$trigger      = $('[data-toggle="collapse"][href="#' + element.id + '"],' +
+                           '[data-toggle="collapse"][data-target="#' + element.id + '"]')
+    this.transitioning = null
+
+    if (this.options.parent) {
+      this.$parent = this.getParent()
+    } else {
+      this.addAriaAndCollapsedClass(this.$element, this.$trigger)
+    }
+
+    if (this.options.toggle) this.toggle()
+  }
+
+  Collapse.VERSION  = '3.3.7'
+
+  Collapse.TRANSITION_DURATION = 350
+
+  Collapse.DEFAULTS = {
+    toggle: true
+  }
+
+  Collapse.prototype.dimension = function () {
+    var hasWidth = this.$element.hasClass('width')
+    return hasWidth ? 'width' : 'height'
+  }
+
+  Collapse.prototype.show = function () {
+    if (this.transitioning || this.$element.hasClass('in')) return
+
+    var activesData
+    var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing')
+
+    if (actives && actives.length) {
+      activesData = actives.data('bs.collapse')
+      if (activesData && activesData.transitioning) return
+    }
+
+    var startEvent = $.Event('show.bs.collapse')
+    this.$element.trigger(startEvent)
+    if (startEvent.isDefaultPrevented()) return
+
+    if (actives && actives.length) {
+      Plugin.call(actives, 'hide')
+      activesData || actives.data('bs.collapse', null)
+    }
+
+    var dimension = this.dimension()
+
+    this.$element
+      .removeClass('collapse')
+      .addClass('collapsing')[dimension](0)
+      .attr('aria-expanded', true)
+
+    this.$trigger
+      .removeClass('collapsed')
+      .attr('aria-expanded', true)
+
+    this.transitioning = 1
+
+    var complete = function () {
+      this.$element
+        .removeClass('collapsing')
+        .addClass('collapse in')[dimension]('')
+      this.transitioning = 0
+      this.$element
+        .trigger('shown.bs.collapse')
+    }
+
+    if (!$.support.transition) return complete.call(this)
+
+    var scrollSize = $.camelCase(['scroll', dimension].join('-'))
+
+    this.$element
+      .one('bsTransitionEnd', $.proxy(complete, this))
+      .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])
+  }
+
+  Collapse.prototype.hide = function () {
+    if (this.transitioning || !this.$element.hasClass('in')) return
+
+    var startEvent = $.Event('hide.bs.collapse')
+    this.$element.trigger(startEvent)
+    if (startEvent.isDefaultPrevented()) return
+
+    var dimension = this.dimension()
+
+    this.$element[dimension](this.$element[dimension]())[0].offsetHeight
+
+    this.$element
+      .addClass('collapsing')
+      .removeClass('collapse in')
+      .attr('aria-expanded', false)
+
+    this.$trigger
+      .addClass('collapsed')
+      .attr('aria-expanded', false)
+
+    this.transitioning = 1
+
+    var complete = function () {
+      this.transitioning = 0
+      this.$element
+        .removeClass('collapsing')
+        .addClass('collapse')
+        .trigger('hidden.bs.collapse')
+    }
+
+    if (!$.support.transition) return complete.call(this)
+
+    this.$element
+      [dimension](0)
+      .one('bsTransitionEnd', $.proxy(complete, this))
+      .emulateTransitionEnd(Collapse.TRANSITION_DURATION)
+  }
+
+  Collapse.prototype.toggle = function () {
+    this[this.$element.hasClass('in') ? 'hide' : 'show']()
+  }
+
+  Collapse.prototype.getParent = function () {
+    return $(this.options.parent)
+      .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]')
+      .each($.proxy(function (i, element) {
+        var $element = $(element)
+        this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element)
+      }, this))
+      .end()
+  }
+
+  Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) {
+    var isOpen = $element.hasClass('in')
+
+    $element.attr('aria-expanded', isOpen)
+    $trigger
+      .toggleClass('collapsed', !isOpen)
+      .attr('aria-expanded', isOpen)
+  }
+
+  function getTargetFromTrigger($trigger) {
+    var href
+    var target = $trigger.attr('data-target')
+      || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
+
+    return $(target)
+  }
+
+
+  // COLLAPSE PLUGIN DEFINITION
+  // ==========================
+
+  function Plugin(option) {
+    return this.each(function () {
+      var $this   = $(this)
+      var data    = $this.data('bs.collapse')
+      var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
+
+      if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false
+      if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
+      if (typeof option == 'string') data[option]()
+    })
+  }
+
+  var old = $.fn.collapse
+
+  $.fn.collapse             = Plugin
+  $.fn.collapse.Constructor = Collapse
+
+
+  // COLLAPSE NO CONFLICT
+  // ====================
+
+  $.fn.collapse.noConflict = function () {
+    $.fn.collapse = old
+    return this
+  }
+
+
+  // COLLAPSE DATA-API
+  // =================
+
+  $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) {
+    var $this   = $(this)
+
+    if (!$this.attr('data-target')) e.preventDefault()
+
+    var $target = getTargetFromTrigger($this)
+    var data    = $target.data('bs.collapse')
+    var option  = data ? 'toggle' : $this.data()
+
+    Plugin.call($target, option)
+  })
+
+}(jQuery);
+
+/* ========================================================================
+ * Bootstrap: dropdown.js v3.3.7
+ * http://getbootstrap.com/javascript/#dropdowns
+ * ========================================================================
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * ======================================================================== */
+
+
++function ($) {
+  'use strict';
+
+  // DROPDOWN CLASS DEFINITION
+  // =========================
+
+  var backdrop = '.dropdown-backdrop'
+  var toggle   = '[data-toggle="dropdown"]'
+  var Dropdown = function (element) {
+    $(element).on('click.bs.dropdown', this.toggle)
+  }
+
+  Dropdown.VERSION = '3.3.7'
+
+  function getParent($this) {
+    var selector = $this.attr('data-target')
+
+    if (!selector) {
+      selector = $this.attr('href')
+      selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
+    }
+
+    var $parent = selector && $(selector)
+
+    return $parent && $parent.length ? $parent : $this.parent()
+  }
+
+  function clearMenus(e) {
+    if (e && e.which === 3) return
+    $(backdrop).remove()
+    $(toggle).each(function () {
+      var $this         = $(this)
+      var $parent       = getParent($this)
+      var relatedTarget = { relatedTarget: this }
+
+      if (!$parent.hasClass('open')) return
+
+      if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return
+
+      $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
+
+      if (e.isDefaultPrevented()) return
+
+      $this.attr('aria-expanded', 'false')
+      $parent.removeClass('open').trigger($.Event('hidden.bs.dropdown', relatedTarget))
+    })
+  }
+
+  Dropdown.prototype.toggle = function (e) {
+    var $this = $(this)
+
+    if ($this.is('.disabled, :disabled')) return
+
+    var $parent  = getParent($this)
+    var isActive = $parent.hasClass('open')
+
+    clearMenus()
+
+    if (!isActive) {
+      if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
+        // if mobile we use a backdrop because click events don't delegate
+        $(document.createElement('div'))
+          .addClass('dropdown-backdrop')
+          .insertAfter($(this))
+          .on('click', clearMenus)
+      }
+
+      var relatedTarget = { relatedTarget: this }
+      $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
+
+      if (e.isDefaultPrevented()) return
+
+      $this
+        .trigger('focus')
+        .attr('aria-expanded', 'true')
+
+      $parent
+        .toggleClass('open')
+        .trigger($.Event('shown.bs.dropdown', relatedTarget))
+    }
+
+    return false
+  }
+
+  Dropdown.prototype.keydown = function (e) {
+    if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return
+
+    var $this = $(this)
+
+    e.preventDefault()
+    e.stopPropagation()
+
+    if ($this.is('.disabled, :disabled')) return
+
+    var $parent  = getParent($this)
+    var isActive = $parent.hasClass('open')
+
+    if (!isActive && e.which != 27 || isActive && e.which == 27) {
+      if (e.which == 27) $parent.find(toggle).trigger('focus')
+      return $this.trigger('click')
+    }
+
+    var desc = ' li:not(.disabled):visible a'
+    var $items = $parent.find('.dropdown-menu' + desc)
+
+    if (!$items.length) return
+
+    var index = $items.index(e.target)
+
+    if (e.which == 38 && index > 0)                 index--         // up
+    if (e.which == 40 && index < $items.length - 1) index++         // down
+    if (!~index)                                    index = 0
+
+    $items.eq(index).trigger('focus')
+  }
+
+
+  // DROPDOWN PLUGIN DEFINITION
+  // ==========================
+
+  function Plugin(option) {
+    return this.each(function () {
+      var $this = $(this)
+      var data  = $this.data('bs.dropdown')
+
+      if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
+      if (typeof option == 'string') data[option].call($this)
+    })
+  }
+
+  var old = $.fn.dropdown
+
+  $.fn.dropdown             = Plugin
+  $.fn.dropdown.Constructor = Dropdown
+
+
+  // DROPDOWN NO CONFLICT
+  // ====================
+
+  $.fn.dropdown.noConflict = function () {
+    $.fn.dropdown = old
+    return this
+  }
+
+
+  // APPLY TO STANDARD DROPDOWN ELEMENTS
+  // ===================================
+
+  $(document)
+    .on('click.bs.dropdown.data-api', clearMenus)
+    .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
+    .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
+    .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
+    .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown)
+
+}(jQuery);
+
+/* ========================================================================
+ * Bootstrap: modal.js v3.3.7
+ * http://getbootstrap.com/javascript/#modals
+ * ========================================================================
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * ======================================================================== */
+
+
++function ($) {
+  'use strict';
+
+  // MODAL CLASS DEFINITION
+  // ======================
+
+  var Modal = function (element, options) {
+    this.options             = options
+    this.$body               = $(document.body)
+    this.$element            = $(element)
+    this.$dialog             = this.$element.find('.modal-dialog')
+    this.$backdrop           = null
+    this.isShown             = null
+    this.originalBodyPad     = null
+    this.scrollbarWidth      = 0
+    this.ignoreBackdropClick = false
+
+    if (this.options.remote) {
+      this.$element
+        .find('.modal-content')
+        .load(this.options.remote, $.proxy(function () {
+          this.$element.trigger('loaded.bs.modal')
+        }, this))
+    }
+  }
+
+  Modal.VERSION  = '3.3.7'
+
+  Modal.TRANSITION_DURATION = 300
+  Modal.BACKDROP_TRANSITION_DURATION = 150
+
+  Modal.DEFAULTS = {
+    backdrop: true,
+    keyboard: true,
+    show: true
+  }
+
+  Modal.prototype.toggle = function (_relatedTarget) {
+    return this.isShown ? this.hide() : this.show(_relatedTarget)
+  }
+
+  Modal.prototype.show = function (_relatedTarget) {
+    var that = this
+    var e    = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
+
+    this.$element.trigger(e)
+
+    if (this.isShown || e.isDefaultPrevented()) return
+
+    this.isShown = true
+
+    this.checkScrollbar()
+    this.setScrollbar()
+    this.$body.addClass('modal-open')
+
+    this.escape()
+    this.resize()
+
+    this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
+
+    this.$dialog.on('mousedown.dismiss.bs.modal', function () {
+      that.$element.one('mouseup.dismiss.bs.modal', function (e) {
+        if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true
+      })
+    })
+
+    this.backdrop(function () {
+      var transition = $.support.transition && that.$element.hasClass('fade')
+
+      if (!that.$element.parent().length) {
+        that.$element.appendTo(that.$body) // don't move modals dom position
+      }
+
+      that.$element
+        .show()
+        .scrollTop(0)
+
+      that.adjustDialog()
+
+      if (transition) {
+        that.$element[0].offsetWidth // force reflow
+      }
+
+      that.$element.addClass('in')
+
+      that.enforceFocus()
+
+      var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
+
+      transition ?
+        that.$dialog // wait for modal to slide in
+          .one('bsTransitionEnd', function () {
+            that.$element.trigger('focus').trigger(e)
+          })
+          .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
+        that.$element.trigger('focus').trigger(e)
+    })
+  }
+
+  Modal.prototype.hide = function (e) {
+    if (e) e.preventDefault()
+
+    e = $.Event('hide.bs.modal')
+
+    this.$element.trigger(e)
+
+    if (!this.isShown || e.isDefaultPrevented()) return
+
+    this.isShown = false
+
+    this.escape()
+    this.resize()
+
+    $(document).off('focusin.bs.modal')
+
+    this.$element
+      .removeClass('in')
+      .off('click.dismiss.bs.modal')
+      .off('mouseup.dismiss.bs.modal')
+
+    this.$dialog.off('mousedown.dismiss.bs.modal')
+
+    $.support.transition && this.$element.hasClass('fade') ?
+      this.$element
+        .one('bsTransitionEnd', $.proxy(this.hideModal, this))
+        .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
+      this.hideModal()
+  }
+
+  Modal.prototype.enforceFocus = function () {
+    $(document)
+      .off('focusin.bs.modal') // guard against infinite focus loop
+      .on('focusin.bs.modal', $.proxy(function (e) {
+        if (document !== e.target &&
+            this.$element[0] !== e.target &&
+            !this.$element.has(e.target).length) {
+          this.$element.trigger('focus')
+        }
+      }, this))
+  }
+
+  Modal.prototype.escape = function () {
+    if (this.isShown && this.options.keyboard) {
+      this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {
+        e.which == 27 && this.hide()
+      }, this))
+    } else if (!this.isShown) {
+      this.$element.off('keydown.dismiss.bs.modal')
+    }
+  }
+
+  Modal.prototype.resize = function () {
+    if (this.isShown) {
+      $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this))
+    } else {
+      $(window).off('resize.bs.modal')
+    }
+  }
+
+  Modal.prototype.hideModal = function () {
+    var that = this
+    this.$element.hide()
+    this.backdrop(function () {
+      that.$body.removeClass('modal-open')
+      that.resetAdjustments()
+      that.resetScrollbar()
+      that.$element.trigger('hidden.bs.modal')
+    })
+  }
+
+  Modal.prototype.removeBackdrop = function () {
+    this.$backdrop && this.$backdrop.remove()
+    this.$backdrop = null
+  }
+
+  Modal.prototype.backdrop = function (callback) {
+    var that = this
+    var animate = this.$element.hasClass('fade') ? 'fade' : ''
+
+    if (this.isShown && this.options.backdrop) {
+      var doAnimate = $.support.transition && animate
+
+      this.$backdrop = $(document.createElement('div'))
+        .addClass('modal-backdrop ' + animate)
+        .appendTo(this.$body)
+
+      this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
+        if (this.ignoreBackdropClick) {
+          this.ignoreBackdropClick = false
+          return
+        }
+        if (e.target !== e.currentTarget) return
+        this.options.backdrop == 'static'
+          ? this.$element[0].focus()
+          : this.hide()
+      }, this))
+
+      if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
+
+      this.$backdrop.addClass('in')
+
+      if (!callback) return
+
+      doAnimate ?
+        this.$backdrop
+          .one('bsTransitionEnd', callback)
+          .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
+        callback()
+
+    } else if (!this.isShown && this.$backdrop) {
+      this.$backdrop.removeClass('in')
+
+      var callbackRemove = function () {
+        that.removeBackdrop()
+        callback && callback()
+      }
+      $.support.transition && this.$element.hasClass('fade') ?
+        this.$backdrop
+          .one('bsTransitionEnd', callbackRemove)
+          .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
+        callbackRemove()
+
+    } else if (callback) {
+      callback()
+    }
+  }
+
+  // these following methods are used to handle overflowing modals
+
+  Modal.prototype.handleUpdate = function () {
+    this.adjustDialog()
+  }
+
+  Modal.prototype.adjustDialog = function () {
+    var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight
+
+    this.$element.css({
+      paddingLeft:  !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
+      paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''
+    })
+  }
+
+  Modal.prototype.resetAdjustments = function () {
+    this.$element.css({
+      paddingLeft: '',
+      paddingRight: ''
+    })
+  }
+
+  Modal.prototype.checkScrollbar = function () {
+    var fullWindowWidth = window.innerWidth
+    if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8
+      var documentElementRect = document.documentElement.getBoundingClientRect()
+      fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left)
+    }
+    this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth
+    this.scrollbarWidth = this.measureScrollbar()
+  }
+
+  Modal.prototype.setScrollbar = function () {
+    var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
+    this.originalBodyPad = document.body.style.paddingRight || ''
+    if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
+  }
+
+  Modal.prototype.resetScrollbar = function () {
+    this.$body.css('padding-right', this.originalBodyPad)
+  }
+
+  Modal.prototype.measureScrollbar = function () { // thx walsh
+    var scrollDiv = document.createElement('div')
+    scrollDiv.className = 'modal-scrollbar-measure'
+    this.$body.append(scrollDiv)
+    var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth
+    this.$body[0].removeChild(scrollDiv)
+    return scrollbarWidth
+  }
+
+
+  // MODAL PLUGIN DEFINITION
+  // =======================
+
+  function Plugin(option, _relatedTarget) {
+    return this.each(function () {
+      var $this   = $(this)
+      var data    = $this.data('bs.modal')
+      var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
+
+      if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
+      if (typeof option == 'string') data[option](_relatedTarget)
+      else if (options.show) data.show(_relatedTarget)
+    })
+  }
+
+  var old = $.fn.modal
+
+  $.fn.modal             = Plugin
+  $.fn.modal.Constructor = Modal
+
+
+  // MODAL NO CONFLICT
+  // =================
+
+  $.fn.modal.noConflict = function () {
+    $.fn.modal = old
+    return this
+  }
+
+
+  // MODAL DATA-API
+  // ==============
+
+  $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
+    var $this   = $(this)
+    var href    = $this.attr('href')
+    var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7
+    var option  = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
+
+    if ($this.is('a')) e.preventDefault()
+
+    $target.one('show.bs.modal', function (showEvent) {
+      if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown
+      $target.one('hidden.bs.modal', function () {
+        $this.is(':visible') && $this.trigger('focus')
+      })
+    })
+    Plugin.call($target, option, this)
+  })
+
+}(jQuery);
+
+/* ========================================================================
+ * Bootstrap: tooltip.js v3.3.7
+ * http://getbootstrap.com/javascript/#tooltip
+ * Inspired by the original jQuery.tipsy by Jason Frame
+ * ========================================================================
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * ======================================================================== */
+
+
++function ($) {
+  'use strict';
+
+  // TOOLTIP PUBLIC CLASS DEFINITION
+  // ===============================
+
+  var Tooltip = function (element, options) {
+    this.type       = null
+    this.options    = null
+    this.enabled    = null
+    this.timeout    = null
+    this.hoverState = null
+    this.$element   = null
+    this.inState    = null
+
+    this.init('tooltip', element, options)
+  }
+
+  Tooltip.VERSION  = '3.3.7'
+
+  Tooltip.TRANSITION_DURATION = 150
+
+  Tooltip.DEFAULTS = {
+    animation: true,
+    placement: 'top',
+    selector: false,
+    template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
+    trigger: 'hover focus',
+    title: '',
+    delay: 0,
+    html: false,
+    container: false,
+    viewport: {
+      selector: 'body',
+      padding: 0
+    }
+  }
+
+  Tooltip.prototype.init = function (type, element, options) {
+    this.enabled   = true
+    this.type      = type
+    this.$element  = $(element)
+    this.options   = this.getOptions(options)
+    this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport))
+    this.inState   = { click: false, hover: false, focus: false }
+
+    if (this.$element[0] instanceof document.constructor && !this.options.selector) {
+      throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!')
+    }
+
+    var triggers = this.options.trigger.split(' ')
+
+    for (var i = triggers.length; i--;) {
+      var trigger = triggers[i]
+
+      if (trigger == 'click') {
+        this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
+      } else if (trigger != 'manual') {
+        var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin'
+        var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
+
+        this.$element.on(eventIn  + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
+        this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
+      }
+    }
+
+    this.options.selector ?
+      (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
+      this.fixTitle()
+  }
+
+  Tooltip.prototype.getDefaults = function () {
+    return Tooltip.DEFAULTS
+  }
+
+  Tooltip.prototype.getOptions = function (options) {
+    options = $.extend({}, this.getDefaults(), this.$element.data(), options)
+
+    if (options.delay && typeof options.delay == 'number') {
+      options.delay = {
+        show: options.delay,
+        hide: options.delay
+      }
+    }
+
+    return options
+  }
+
+  Tooltip.prototype.getDelegateOptions = function () {
+    var options  = {}
+    var defaults = this.getDefaults()
+
+    this._options && $.each(this._options, function (key, value) {
+      if (defaults[key] != value) options[key] = value
+    })
+
+    return options
+  }
+
+  Tooltip.prototype.enter = function (obj) {
+    var self = obj instanceof this.constructor ?
+      obj : $(obj.currentTarget).data('bs.' + this.type)
+
+    if (!self) {
+      self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
+      $(obj.currentTarget).data('bs.' + this.type, self)
+    }
+
+    if (obj instanceof $.Event) {
+      self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true
+    }
+
+    if (self.tip().hasClass('in') || self.hoverState == 'in') {
+      self.hoverState = 'in'
+      return
+    }
+
+    clearTimeout(self.timeout)
+
+    self.hoverState = 'in'
+
+    if (!self.options.delay || !self.options.delay.show) return self.show()
+
+    self.timeout = setTimeout(function () {
+      if (self.hoverState == 'in') self.show()
+    }, self.options.delay.show)
+  }
+
+  Tooltip.prototype.isInStateTrue = function () {
+    for (var key in this.inState) {
+      if (this.inState[key]) return true
+    }
+
+    return false
+  }
+
+  Tooltip.prototype.leave = function (obj) {
+    var self = obj instanceof this.constructor ?
+      obj : $(obj.currentTarget).data('bs.' + this.type)
+
+    if (!self) {
+      self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
+      $(obj.currentTarget).data('bs.' + this.type, self)
+    }
+
+    if (obj instanceof $.Event) {
+      self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false
+    }
+
+    if (self.isInStateTrue()) return
+
+    clearTimeout(self.timeout)
+
+    self.hoverState = 'out'
+
+    if (!self.options.delay || !self.options.delay.hide) return self.hide()
+
+    self.timeout = setTimeout(function () {
+      if (self.hoverState == 'out') self.hide()
+    }, self.options.delay.hide)
+  }
+
+  Tooltip.prototype.show = function () {
+    var e = $.Event('show.bs.' + this.type)
+
+    if (this.hasContent() && this.enabled) {
+      this.$element.trigger(e)
+
+      var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0])
+      if (e.isDefaultPrevented() || !inDom) return
+      var that = this
+
+      var $tip = this.tip()
+
+      var tipId = this.getUID(this.type)
+
+      this.setContent()
+      $tip.attr('id', tipId)
+      this.$element.attr('aria-describedby', tipId)
+
+      if (this.options.animation) $tip.addClass('fade')
+
+      var placement = typeof this.options.placement == 'function' ?
+        this.options.placement.call(this, $tip[0], this.$element[0]) :
+        this.options.placement
+
+      var autoToken = /\s?auto?\s?/i
+      var autoPlace = autoToken.test(placement)
+      if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
+
+      $tip
+        .detach()
+        .css({ top: 0, left: 0, display: 'block' })
+        .addClass(placement)
+        .data('bs.' + this.type, this)
+
+      this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
+      this.$element.trigger('inserted.bs.' + this.type)
+
+      var pos          = this.getPosition()
+      var actualWidth  = $tip[0].offsetWidth
+      var actualHeight = $tip[0].offsetHeight
+
+      if (autoPlace) {
+        var orgPlacement = placement
+        var viewportDim = this.getPosition(this.$viewport)
+
+        placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top'    :
+                    placement == 'top'    && pos.top    - actualHeight < viewportDim.top    ? 'bottom' :
+                    placement == 'right'  && pos.right  + actualWidth  > viewportDim.width  ? 'left'   :
+                    placement == 'left'   && pos.left   - actualWidth  < viewportDim.left   ? 'right'  :
+                    placement
+
+        $tip
+          .removeClass(orgPlacement)
+          .addClass(placement)
+      }
+
+      var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
+
+      this.applyPlacement(calculatedOffset, placement)
+
+      var complete = function () {
+        var prevHoverState = that.hoverState
+        that.$element.trigger('shown.bs.' + that.type)
+        that.hoverState = null
+
+        if (prevHoverState == 'out') that.leave(that)
+      }
+
+      $.support.transition && this.$tip.hasClass('fade') ?
+        $tip
+          .one('bsTransitionEnd', complete)
+          .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
+        complete()
+    }
+  }
+
+  Tooltip.prototype.applyPlacement = function (offset, placement) {
+    var $tip   = this.tip()
+    var width  = $tip[0].offsetWidth
+    var height = $tip[0].offsetHeight
+
+    // manually read margins because getBoundingClientRect includes difference
+    var marginTop = parseInt($tip.css('margin-top'), 10)
+    var marginLeft = parseInt($tip.css('margin-left'), 10)
+
+    // we must check for NaN for ie 8/9
+    if (isNaN(marginTop))  marginTop  = 0
+    if (isNaN(marginLeft)) marginLeft = 0
+
+    offset.top  += marginTop
+    offset.left += marginLeft
+
+    // $.fn.offset doesn't round pixel values
+    // so we use setOffset directly with our own function B-0
+    $.offset.setOffset($tip[0], $.extend({
+      using: function (props) {
+        $tip.css({
+          top: Math.round(props.top),
+          left: Math.round(props.left)
+        })
+      }
+    }, offset), 0)
+
+    $tip.addClass('in')
+
+    // check to see if placing tip in new offset caused the tip to resize itself
+    var actualWidth  = $tip[0].offsetWidth
+    var actualHeight = $tip[0].offsetHeight
+
+    if (placement == 'top' && actualHeight != height) {
+      offset.top = offset.top + height - actualHeight
+    }
+
+    var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)
+
+    if (delta.left) offset.left += delta.left
+    else offset.top += delta.top
+
+    var isVertical          = /top|bottom/.test(placement)
+    var arrowDelta          = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight
+    var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight'
+
+    $tip.offset(offset)
+    this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical)
+  }
+
+  Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) {
+    this.arrow()
+      .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%')
+      .css(isVertical ? 'top' : 'left', '')
+  }
+
+  Tooltip.prototype.setContent = function () {
+    var $tip  = this.tip()
+    var title = this.getTitle()
+
+    $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
+    $tip.removeClass('fade in top bottom left right')
+  }
+
+  Tooltip.prototype.hide = function (callback) {
+    var that = this
+    var $tip = $(this.$tip)
+    var e    = $.Event('hide.bs.' + this.type)
+
+    function complete() {
+      if (that.hoverState != 'in') $tip.detach()
+      if (that.$element) { // TODO: Check whether guarding this code with this `if` is really necessary.
+        that.$element
+          .removeAttr('aria-describedby')
+          .trigger('hidden.bs.' + that.type)
+      }
+      callback && callback()
+    }
+
+    this.$element.trigger(e)
+
+    if (e.isDefaultPrevented()) return
+
+    $tip.removeClass('in')
+
+    $.support.transition && $tip.hasClass('fade') ?
+      $tip
+        .one('bsTransitionEnd', complete)
+        .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
+      complete()
+
+    this.hoverState = null
+
+    return this
+  }
+
+  Tooltip.prototype.fixTitle = function () {
+    var $e = this.$element
+    if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') {
+      $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
+    }
+  }
+
+  Tooltip.prototype.hasContent = function () {
+    return this.getTitle()
+  }
+
+  Tooltip.prototype.getPosition = function ($element) {
+    $element   = $element || this.$element
+
+    var el     = $element[0]
+    var isBody = el.tagName == 'BODY'
+
+    var elRect    = el.getBoundingClientRect()
+    if (elRect.width == null) {
+      // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093
+      elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top })
+    }
+    var isSvg = window.SVGElement && el instanceof window.SVGElement
+    // Avoid using $.offset() on SVGs since it gives incorrect results in jQuery 3.
+    // See https://github.com/twbs/bootstrap/issues/20280
+    var elOffset  = isBody ? { top: 0, left: 0 } : (isSvg ? null : $element.offset())
+    var scroll    = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() }
+    var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null
+
+    return $.extend({}, elRect, scroll, outerDims, elOffset)
+  }
+
+  Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
+    return placement == 'bottom' ? { top: pos.top + pos.height,   left: pos.left + pos.width / 2 - actualWidth / 2 } :
+           placement == 'top'    ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
+           placement == 'left'   ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
+        /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
+
+  }
+
+  Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) {
+    var delta = { top: 0, left: 0 }
+    if (!this.$viewport) return delta
+
+    var viewportPadding = this.options.viewport && this.options.viewport.padding || 0
+    var viewportDimensions = this.getPosition(this.$viewport)
+
+    if (/right|left/.test(placement)) {
+      var topEdgeOffset    = pos.top - viewportPadding - viewportDimensions.scroll
+      var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight
+      if (topEdgeOffset < viewportDimensions.top) { // top overflow
+        delta.top = viewportDimensions.top - topEdgeOffset
+      } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow
+        delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset
+      }
+    } else {
+      var leftEdgeOffset  = pos.left - viewportPadding
+      var rightEdgeOffset = pos.left + viewportPadding + actualWidth
+      if (leftEdgeOffset < viewportDimensions.left) { // left overflow
+        delta.left = viewportDimensions.left - leftEdgeOffset
+      } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow
+        delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset
+      }
+    }
+
+    return delta
+  }
+
+  Tooltip.prototype.getTitle = function () {
+    var title
+    var $e = this.$element
+    var o  = this.options
+
+    title = $e.attr('data-original-title')
+      || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)
+
+    return title
+  }
+
+  Tooltip.prototype.getUID = function (prefix) {
+    do prefix += ~~(Math.random() * 1000000)
+    while (document.getElementById(prefix))
+    return prefix
+  }
+
+  Tooltip.prototype.tip = function () {
+    if (!this.$tip) {
+      this.$tip = $(this.options.template)
+      if (this.$tip.length != 1) {
+        throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!')
+      }
+    }
+    return this.$tip
+  }
+
+  Tooltip.prototype.arrow = function () {
+    return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow'))
+  }
+
+  Tooltip.prototype.enable = function () {
+    this.enabled = true
+  }
+
+  Tooltip.prototype.disable = function () {
+    this.enabled = false
+  }
+
+  Tooltip.prototype.toggleEnabled = function () {
+    this.enabled = !this.enabled
+  }
+
+  Tooltip.prototype.toggle = function (e) {
+    var self = this
+    if (e) {
+      self = $(e.currentTarget).data('bs.' + this.type)
+      if (!self) {
+        self = new this.constructor(e.currentTarget, this.getDelegateOptions())
+        $(e.currentTarget).data('bs.' + this.type, self)
+      }
+    }
+
+    if (e) {
+      self.inState.click = !self.inState.click
+      if (self.isInStateTrue()) self.enter(self)
+      else self.leave(self)
+    } else {
+      self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
+    }
+  }
+
+  Tooltip.prototype.destroy = function () {
+    var that = this
+    clearTimeout(this.timeout)
+    this.hide(function () {
+      that.$element.off('.' + that.type).removeData('bs.' + that.type)
+      if (that.$tip) {
+        that.$tip.detach()
+      }
+      that.$tip = null
+      that.$arrow = null
+      that.$viewport = null
+      that.$element = null
+    })
+  }
+
+
+  // TOOLTIP PLUGIN DEFINITION
+  // =========================
+
+  function Plugin(option) {
+    return this.each(function () {
+      var $this   = $(this)
+      var data    = $this.data('bs.tooltip')
+      var options = typeof option == 'object' && option
+
+      if (!data && /destroy|hide/.test(option)) return
+      if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
+      if (typeof option == 'string') data[option]()
+    })
+  }
+
+  var old = $.fn.tooltip
+
+  $.fn.tooltip             = Plugin
+  $.fn.tooltip.Constructor = Tooltip
+
+
+  // TOOLTIP NO CONFLICT
+  // ===================
+
+  $.fn.tooltip.noConflict = function () {
+    $.fn.tooltip = old
+    return this
+  }
+
+}(jQuery);
+
+/* ========================================================================
+ * Bootstrap: popover.js v3.3.7
+ * http://getbootstrap.com/javascript/#popovers
+ * ========================================================================
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * ======================================================================== */
+
+
++function ($) {
+  'use strict';
+
+  // POPOVER PUBLIC CLASS DEFINITION
+  // ===============================
+
+  var Popover = function (element, options) {
+    this.init('popover', element, options)
+  }
+
+  if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
+
+  Popover.VERSION  = '3.3.7'
+
+  Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
+    placement: 'right',
+    trigger: 'click',
+    content: '',
+    template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
+  })
+
+
+  // NOTE: POPOVER EXTENDS tooltip.js
+  // ================================
+
+  Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
+
+  Popover.prototype.constructor = Popover
+
+  Popover.prototype.getDefaults = function () {
+    return Popover.DEFAULTS
+  }
+
+  Popover.prototype.setContent = function () {
+    var $tip    = this.tip()
+    var title   = this.getTitle()
+    var content = this.getContent()
+
+    $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
+    $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events
+      this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
+    ](content)
+
+    $tip.removeClass('fade top bottom left right in')
+
+    // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
+    // this manually by checking the contents.
+    if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
+  }
+
+  Popover.prototype.hasContent = function () {
+    return this.getTitle() || this.getContent()
+  }
+
+  Popover.prototype.getContent = function () {
+    var $e = this.$element
+    var o  = this.options
+
+    return $e.attr('data-content')
+      || (typeof o.content == 'function' ?
+            o.content.call($e[0]) :
+            o.content)
+  }
+
+  Popover.prototype.arrow = function () {
+    return (this.$arrow = this.$arrow || this.tip().find('.arrow'))
+  }
+
+
+  // POPOVER PLUGIN DEFINITION
+  // =========================
+
+  function Plugin(option) {
+    return this.each(function () {
+      var $this   = $(this)
+      var data    = $this.data('bs.popover')
+      var options = typeof option == 'object' && option
+
+      if (!data && /destroy|hide/.test(option)) return
+      if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
+      if (typeof option == 'string') data[option]()
+    })
+  }
+
+  var old = $.fn.popover
+
+  $.fn.popover             = Plugin
+  $.fn.popover.Constructor = Popover
+
+
+  // POPOVER NO CONFLICT
+  // ===================
+
+  $.fn.popover.noConflict = function () {
+    $.fn.popover = old
+    return this
+  }
+
+}(jQuery);
+
+/* ========================================================================
+ * Bootstrap: scrollspy.js v3.3.7
+ * http://getbootstrap.com/javascript/#scrollspy
+ * ========================================================================
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * ======================================================================== */
+
+
++function ($) {
+  'use strict';
+
+  // SCROLLSPY CLASS DEFINITION
+  // ==========================
+
+  function ScrollSpy(element, options) {
+    this.$body          = $(document.body)
+    this.$scrollElement = $(element).is(document.body) ? $(window) : $(element)
+    this.options        = $.extend({}, ScrollSpy.DEFAULTS, options)
+    this.selector       = (this.options.target || '') + ' .nav li > a'
+    this.offsets        = []
+    this.targets        = []
+    this.activeTarget   = null
+    this.scrollHeight   = 0
+
+    this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this))
+    this.refresh()
+    this.process()
+  }
+
+  ScrollSpy.VERSION  = '3.3.7'
+
+  ScrollSpy.DEFAULTS = {
+    offset: 10
+  }
+
+  ScrollSpy.prototype.getScrollHeight = function () {
+    return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight)
+  }
+
+  ScrollSpy.prototype.refresh = function () {
+    var that          = this
+    var offsetMethod  = 'offset'
+    var offsetBase    = 0
+
+    this.offsets      = []
+    this.targets      = []
+    this.scrollHeight = this.getScrollHeight()
+
+    if (!$.isWindow(this.$scrollElement[0])) {
+      offsetMethod = 'position'
+      offsetBase   = this.$scrollElement.scrollTop()
+    }
+
+    this.$body
+      .find(this.selector)
+      .map(function () {
+        var $el   = $(this)
+        var href  = $el.data('target') || $el.attr('href')
+        var $href = /^#./.test(href) && $(href)
+
+        return ($href
+          && $href.length
+          && $href.is(':visible')
+          && [[$href[offsetMethod]().top + offsetBase, href]]) || null
+      })
+      .sort(function (a, b) { return a[0] - b[0] })
+      .each(function () {
+        that.offsets.push(this[0])
+        that.targets.push(this[1])
+      })
+  }
+
+  ScrollSpy.prototype.process = function () {
+    var scrollTop    = this.$scrollElement.scrollTop() + this.options.offset
+    var scrollHeight = this.getScrollHeight()
+    var maxScroll    = this.options.offset + scrollHeight - this.$scrollElement.height()
+    var offsets      = this.offsets
+    var targets      = this.targets
+    var activeTarget = this.activeTarget
+    var i
+
+    if (this.scrollHeight != scrollHeight) {
+      this.refresh()
+    }
+
+    if (scrollTop >= maxScroll) {
+      return activeTarget != (i = targets[targets.length - 1]) && this.activate(i)
+    }
+
+    if (activeTarget && scrollTop < offsets[0]) {
+      this.activeTarget = null
+      return this.clear()
+    }
+
+    for (i = offsets.length; i--;) {
+      activeTarget != targets[i]
+        && scrollTop >= offsets[i]
+        && (offsets[i + 1] === undefined || scrollTop < offsets[i + 1])
+        && this.activate(targets[i])
+    }
+  }
+
+  ScrollSpy.prototype.activate = function (target) {
+    this.activeTarget = target
+
+    this.clear()
+
+    var selector = this.selector +
+      '[data-target="' + target + '"],' +
+      this.selector + '[href="' + target + '"]'
+
+    var active = $(selector)
+      .parents('li')
+      .addClass('active')
+
+    if (active.parent('.dropdown-menu').length) {
+      active = active
+        .closest('li.dropdown')
+        .addClass('active')
+    }
+
+    active.trigger('activate.bs.scrollspy')
+  }
+
+  ScrollSpy.prototype.clear = function () {
+    $(this.selector)
+      .parentsUntil(this.options.target, '.active')
+      .removeClass('active')
+  }
+
+
+  // SCROLLSPY PLUGIN DEFINITION
+  // ===========================
+
+  function Plugin(option) {
+    return this.each(function () {
+      var $this   = $(this)
+      var data    = $this.data('bs.scrollspy')
+      var options = typeof option == 'object' && option
+
+      if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
+      if (typeof option == 'string') data[option]()
+    })
+  }
+
+  var old = $.fn.scrollspy
+
+  $.fn.scrollspy             = Plugin
+  $.fn.scrollspy.Constructor = ScrollSpy
+
+
+  // SCROLLSPY NO CONFLICT
+  // =====================
+
+  $.fn.scrollspy.noConflict = function () {
+    $.fn.scrollspy = old
+    return this
+  }
+
+
+  // SCROLLSPY DATA-API
+  // ==================
+
+  $(window).on('load.bs.scrollspy.data-api', function () {
+    $('[data-spy="scroll"]').each(function () {
+      var $spy = $(this)
+      Plugin.call($spy, $spy.data())
+    })
+  })
+
+}(jQuery);
+
+/* ========================================================================
+ * Bootstrap: tab.js v3.3.7
+ * http://getbootstrap.com/javascript/#tabs
+ * ========================================================================
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * ======================================================================== */
+
+
++function ($) {
+  'use strict';
+
+  // TAB CLASS DEFINITION
+  // ====================
+
+  var Tab = function (element) {
+    // jscs:disable requireDollarBeforejQueryAssignment
+    this.element = $(element)
+    // jscs:enable requireDollarBeforejQueryAssignment
+  }
+
+  Tab.VERSION = '3.3.7'
+
+  Tab.TRANSITION_DURATION = 150
+
+  Tab.prototype.show = function () {
+    var $this    = this.element
+    var $ul      = $this.closest('ul:not(.dropdown-menu)')
+    var selector = $this.data('target')
+
+    if (!selector) {
+      selector = $this.attr('href')
+      selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
+    }
+
+    if ($this.parent('li').hasClass('active')) return
+
+    var $previous = $ul.find('.active:last a')
+    var hideEvent = $.Event('hide.bs.tab', {
+      relatedTarget: $this[0]
+    })
+    var showEvent = $.Event('show.bs.tab', {
+      relatedTarget: $previous[0]
+    })
+
+    $previous.trigger(hideEvent)
+    $this.trigger(showEvent)
+
+    if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return
+
+    var $target = $(selector)
+
+    this.activate($this.closest('li'), $ul)
+    this.activate($target, $target.parent(), function () {
+      $previous.trigger({
+        type: 'hidden.bs.tab',
+        relatedTarget: $this[0]
+      })
+      $this.trigger({
+        type: 'shown.bs.tab',
+        relatedTarget: $previous[0]
+      })
+    })
+  }
+
+  Tab.prototype.activate = function (element, container, callback) {
+    var $active    = container.find('> .active')
+    var transition = callback
+      && $.support.transition
+      && ($active.length && $active.hasClass('fade') || !!container.find('> .fade').length)
+
+    function next() {
+      $active
+        .removeClass('active')
+        .find('> .dropdown-menu > .active')
+          .removeClass('active')
+        .end()
+        .find('[data-toggle="tab"]')
+          .attr('aria-expanded', false)
+
+      element
+        .addClass('active')
+        .find('[data-toggle="tab"]')
+          .attr('aria-expanded', true)
+
+      if (transition) {
+        element[0].offsetWidth // reflow for transition
+        element.addClass('in')
+      } else {
+        element.removeClass('fade')
+      }
+
+      if (element.parent('.dropdown-menu').length) {
+        element
+          .closest('li.dropdown')
+            .addClass('active')
+          .end()
+          .find('[data-toggle="tab"]')
+            .attr('aria-expanded', true)
+      }
+
+      callback && callback()
+    }
+
+    $active.length && transition ?
+      $active
+        .one('bsTransitionEnd', next)
+        .emulateTransitionEnd(Tab.TRANSITION_DURATION) :
+      next()
+
+    $active.removeClass('in')
+  }
+
+
+  // TAB PLUGIN DEFINITION
+  // =====================
+
+  function Plugin(option) {
+    return this.each(function () {
+      var $this = $(this)
+      var data  = $this.data('bs.tab')
+
+      if (!data) $this.data('bs.tab', (data = new Tab(this)))
+      if (typeof option == 'string') data[option]()
+    })
+  }
+
+  var old = $.fn.tab
+
+  $.fn.tab             = Plugin
+  $.fn.tab.Constructor = Tab
+
+
+  // TAB NO CONFLICT
+  // ===============
+
+  $.fn.tab.noConflict = function () {
+    $.fn.tab = old
+    return this
+  }
+
+
+  // TAB DATA-API
+  // ============
+
+  var clickHandler = function (e) {
+    e.preventDefault()
+    Plugin.call($(this), 'show')
+  }
+
+  $(document)
+    .on('click.bs.tab.data-api', '[data-toggle="tab"]', clickHandler)
+    .on('click.bs.tab.data-api', '[data-toggle="pill"]', clickHandler)
+
+}(jQuery);
+
+/* ========================================================================
+ * Bootstrap: affix.js v3.3.7
+ * http://getbootstrap.com/javascript/#affix
+ * ========================================================================
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * ======================================================================== */
+
+
++function ($) {
+  'use strict';
+
+  // AFFIX CLASS DEFINITION
+  // ======================
+
+  var Affix = function (element, options) {
+    this.options = $.extend({}, Affix.DEFAULTS, options)
+
+    this.$target = $(this.options.target)
+      .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
+      .on('click.bs.affix.data-api',  $.proxy(this.checkPositionWithEventLoop, this))
+
+    this.$element     = $(element)
+    this.affixed      = null
+    this.unpin        = null
+    this.pinnedOffset = null
+
+    this.checkPosition()
+  }
+
+  Affix.VERSION  = '3.3.7'
+
+  Affix.RESET    = 'affix affix-top affix-bottom'
+
+  Affix.DEFAULTS = {
+    offset: 0,
+    target: window
+  }
+
+  Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) {
+    var scrollTop    = this.$target.scrollTop()
+    var position     = this.$element.offset()
+    var targetHeight = this.$target.height()
+
+    if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false
+
+    if (this.affixed == 'bottom') {
+      if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom'
+      return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom'
+    }
+
+    var initializing   = this.affixed == null
+    var colliderTop    = initializing ? scrollTop : position.top
+    var colliderHeight = initializing ? targetHeight : height
+
+    if (offsetTop != null && scrollTop <= offsetTop) return 'top'
+    if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom'
+
+    return false
+  }
+
+  Affix.prototype.getPinnedOffset = function () {
+    if (this.pinnedOffset) return this.pinnedOffset
+    this.$element.removeClass(Affix.RESET).addClass('affix')
+    var scrollTop = this.$target.scrollTop()
+    var position  = this.$element.offset()
+    return (this.pinnedOffset = position.top - scrollTop)
+  }
+
+  Affix.prototype.checkPositionWithEventLoop = function () {
+    setTimeout($.proxy(this.checkPosition, this), 1)
+  }
+
+  Affix.prototype.checkPosition = function () {
+    if (!this.$element.is(':visible')) return
+
+    var height       = this.$element.height()
+    var offset       = this.options.offset
+    var offsetTop    = offset.top
+    var offsetBottom = offset.bottom
+    var scrollHeight = Math.max($(document).height(), $(document.body).height())
+
+    if (typeof offset != 'object')         offsetBottom = offsetTop = offset
+    if (typeof offsetTop == 'function')    offsetTop    = offset.top(this.$element)
+    if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
+
+    var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom)
+
+    if (this.affixed != affix) {
+      if (this.unpin != null) this.$element.css('top', '')
+
+      var affixType = 'affix' + (affix ? '-' + affix : '')
+      var e         = $.Event(affixType + '.bs.affix')
+
+      this.$element.trigger(e)
+
+      if (e.isDefaultPrevented()) return
+
+      this.affixed = affix
+      this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
+
+      this.$element
+        .removeClass(Affix.RESET)
+        .addClass(affixType)
+        .trigger(affixType.replace('affix', 'affixed') + '.bs.affix')
+    }
+
+    if (affix == 'bottom') {
+      this.$element.offset({
+        top: scrollHeight - height - offsetBottom
+      })
+    }
+  }
+
+
+  // AFFIX PLUGIN DEFINITION
+  // =======================
+
+  function Plugin(option) {
+    return this.each(function () {
+      var $this   = $(this)
+      var data    = $this.data('bs.affix')
+      var options = typeof option == 'object' && option
+
+      if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
+      if (typeof option == 'string') data[option]()
+    })
+  }
+
+  var old = $.fn.affix
+
+  $.fn.affix             = Plugin
+  $.fn.affix.Constructor = Affix
+
+
+  // AFFIX NO CONFLICT
+  // =================
+
+  $.fn.affix.noConflict = function () {
+    $.fn.affix = old
+    return this
+  }
+
+
+  // AFFIX DATA-API
+  // ==============
+
+  $(window).on('load', function () {
+    $('[data-spy="affix"]').each(function () {
+      var $spy = $(this)
+      var data = $spy.data()
+
+      data.offset = data.offset || {}
+
+      if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom
+      if (data.offsetTop    != null) data.offset.top    = data.offsetTop
+
+      Plugin.call($spy, data)
+    })
+  })
+
+}(jQuery);
diff --git a/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/js/bootstrap-3.3.7.min.js b/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/js/bootstrap-3.3.7.min.js
new file mode 100644
index 0000000..fbbb5fa
--- /dev/null
+++ b/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/js/bootstrap-3.3.7.min.js
@@ -0,0 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b.target).is(this))return b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.7",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a("#"===f?[]:f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.7",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target).closest(".btn");b.call(d,"toggle"),a(c.target).is('input[type="radio"], input[type="checkbox"]')||(c.preventDefault(),d.is("input,button")?d.trigger("focus"):d.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(a>this.$items.length-1||a<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){if(!this.sliding)return this.slide("next")},c.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.7",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.7",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",c).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in"),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){document===a.target||this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a(document.createElement("div")).addClass("modal-backdrop "+e).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",a,b)};c.VERSION="3.3.7",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);if(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),!c.isInStateTrue())return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-m<o.top?"bottom":"right"==h&&k.right+l>o.width?"left":"left"==h&&k.left-l<o.left?"right":h,f.removeClass(n).addClass(h)}var p=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(p,h);var q=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",q).emulateTransitionEnd(c.TRANSITION_DURATION):q()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top+=g,b.left+=h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element&&e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);if(this.$element.trigger(g),!g.isDefaultPrevented())return f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=window.SVGElement&&c instanceof window.SVGElement,g=d?{top:0,left:0}:f?null:b.offset(),h={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},i=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,h,i,g)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null,a.$element=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.7",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.7",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){
+this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.7",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.7",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return e<c&&"top";if("bottom"==this.affixed)return null!=c?!(e+this.unpin<=f.top)&&"bottom":!(e+g<=a-d)&&"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&e<=c?"top":null!=d&&i+j>=a-d&&"bottom"},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
\ No newline at end of file
diff --git a/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/js/npm.js b/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/js/npm.js
new file mode 100644
index 0000000..599c22e
--- /dev/null
+++ b/sentry-service/sentry-service-web/src/main/webapp/static/bootstrap/js/npm.js
@@ -0,0 +1,32 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
+require('../../js/transition.js')
+require('../../js/alert.js')
+require('../../js/button.js')
+require('../../js/carousel.js')
+require('../../js/collapse.js')
+require('../../js/dropdown.js')
+require('../../js/modal.js')
+require('../../js/tooltip.js')
+require('../../js/popover.js')
+require('../../js/scrollspy.js')
+require('../../js/tab.js')
+require('../../js/affix.js')
\ No newline at end of file
diff --git a/sentry-service/sentry-service-server/src/main/webapp/css/sentry.css b/sentry-service/sentry-service-web/src/main/webapp/static/css/sentry.css
similarity index 100%
rename from sentry-service/sentry-service-server/src/main/webapp/css/sentry.css
rename to sentry-service/sentry-service-web/src/main/webapp/static/css/sentry.css
diff --git a/sentry-service/sentry-service-server/src/main/webapp/sentry.png b/sentry-service/sentry-service-web/src/main/webapp/static/images/sentry.png
similarity index 100%
rename from sentry-service/sentry-service-server/src/main/webapp/sentry.png
rename to sentry-service/sentry-service-web/src/main/webapp/static/images/sentry.png
Binary files differ
diff --git a/sentry-service/sentry-service-web/src/main/webapp/static/materialdesign/css/materialdesignicons.min.css b/sentry-service/sentry-service-web/src/main/webapp/static/materialdesign/css/materialdesignicons.min.css
new file mode 100644
index 0000000..6ad16e5
--- /dev/null
+++ b/sentry-service/sentry-service-web/src/main/webapp/static/materialdesign/css/materialdesignicons.min.css
@@ -0,0 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+/* MaterialDesignIcons.com */@font-face{font-family:"Material Design Icons";src:url("../fonts/materialdesignicons-webfont.eot?v=3.0.39");src:url("../fonts/materialdesignicons-webfont.eot?#iefix&v=3.0.39") format("embedded-opentype"),url("../fonts/materialdesignicons-webfont.woff2?v=3.0.39") format("woff2"),url("../fonts/materialdesignicons-webfont.woff?v=3.0.39") format("woff"),url("../fonts/materialdesignicons-webfont.ttf?v=3.0.39") format("truetype"),url("../fonts/materialdesignicons-webfont.svg?v=3.0.39#materialdesigniconsregular") format("svg");font-weight:normal;font-style:normal}.mdi:before,.mdi-set{display:inline-block;font:normal normal normal 24px/1 "Material Design Icons";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mdi-access-point:before{content:"\F002"}.mdi-access-point-network:before{content:"\F003"}.mdi-account:before{content:"\F004"}.mdi-account-alert:before{content:"\F005"}.mdi-account-alert-outline:before{content:"\FB2C"}.mdi-account-arrow-left:before{content:"\FB2D"}.mdi-account-arrow-left-outline:before{content:"\FB2E"}.mdi-account-arrow-right:before{content:"\FB2F"}.mdi-account-arrow-right-outline:before{content:"\FB30"}.mdi-account-box:before{content:"\F006"}.mdi-account-box-multiple:before{content:"\F933"}.mdi-account-box-outline:before{content:"\F007"}.mdi-account-card-details:before{content:"\F5D2"}.mdi-account-check:before{content:"\F008"}.mdi-account-child:before{content:"\FA88"}.mdi-account-child-circle:before{content:"\FA89"}.mdi-account-circle:before{content:"\F009"}.mdi-account-circle-outline:before{content:"\FB31"}.mdi-account-clock:before{content:"\FB32"}.mdi-account-clock-outline:before{content:"\FB33"}.mdi-account-convert:before{content:"\F00A"}.mdi-account-details:before{content:"\F631"}.mdi-account-edit:before{content:"\F6BB"}.mdi-account-group:before{content:"\F848"}.mdi-account-group-outline:before{content:"\FB34"}.mdi-account-heart:before{content:"\F898"}.mdi-account-key:before{content:"\F00B"}.mdi-account-location:before{content:"\F00C"}.mdi-account-minus:before{content:"\F00D"}.mdi-account-minus-outline:before{content:"\FAEB"}.mdi-account-multiple:before{content:"\F00E"}.mdi-account-multiple-check:before{content:"\F8C4"}.mdi-account-multiple-minus:before{content:"\F5D3"}.mdi-account-multiple-outline:before{content:"\F00F"}.mdi-account-multiple-plus:before{content:"\F010"}.mdi-account-multiple-plus-outline:before{content:"\F7FF"}.mdi-account-network:before{content:"\F011"}.mdi-account-off:before{content:"\F012"}.mdi-account-outline:before{content:"\F013"}.mdi-account-plus:before{content:"\F014"}.mdi-account-plus-outline:before{content:"\F800"}.mdi-account-question:before{content:"\FB35"}.mdi-account-question-outline:before{content:"\FB36"}.mdi-account-remove:before{content:"\F015"}.mdi-account-remove-outline:before{content:"\FAEC"}.mdi-account-search:before{content:"\F016"}.mdi-account-search-outline:before{content:"\F934"}.mdi-account-settings:before{content:"\F630"}.mdi-account-star:before{content:"\F017"}.mdi-account-supervisor:before{content:"\FA8A"}.mdi-account-supervisor-circle:before{content:"\FA8B"}.mdi-account-switch:before{content:"\F019"}.mdi-accusoft:before{content:"\F849"}.mdi-adjust:before{content:"\F01A"}.mdi-adobe:before{content:"\F935"}.mdi-air-conditioner:before{content:"\F01B"}.mdi-airballoon:before{content:"\F01C"}.mdi-airplane:before{content:"\F01D"}.mdi-airplane-landing:before{content:"\F5D4"}.mdi-airplane-off:before{content:"\F01E"}.mdi-airplane-takeoff:before{content:"\F5D5"}.mdi-airplay:before{content:"\F01F"}.mdi-airport:before{content:"\F84A"}.mdi-alarm:before{content:"\F020"}.mdi-alarm-bell:before{content:"\F78D"}.mdi-alarm-check:before{content:"\F021"}.mdi-alarm-light:before{content:"\F78E"}.mdi-alarm-multiple:before{content:"\F022"}.mdi-alarm-off:before{content:"\F023"}.mdi-alarm-plus:before{content:"\F024"}.mdi-alarm-snooze:before{content:"\F68D"}.mdi-album:before{content:"\F025"}.mdi-alert:before{content:"\F026"}.mdi-alert-box:before{content:"\F027"}.mdi-alert-circle:before{content:"\F028"}.mdi-alert-circle-outline:before{content:"\F5D6"}.mdi-alert-decagram:before{content:"\F6BC"}.mdi-alert-octagon:before{content:"\F029"}.mdi-alert-octagram:before{content:"\F766"}.mdi-alert-outline:before{content:"\F02A"}.mdi-alien:before{content:"\F899"}.mdi-all-inclusive:before{content:"\F6BD"}.mdi-alpha:before{content:"\F02B"}.mdi-alpha-a:before{content:"\41"}.mdi-alpha-a-box:before{content:"\FAED"}.mdi-alpha-b:before{content:"\42"}.mdi-alpha-b-box:before{content:"\FAEE"}.mdi-alpha-c:before{content:"\43"}.mdi-alpha-c-box:before{content:"\FAEF"}.mdi-alpha-d:before{content:"\44"}.mdi-alpha-d-box:before{content:"\FAF0"}.mdi-alpha-e:before{content:"\45"}.mdi-alpha-e-box:before{content:"\FAF1"}.mdi-alpha-f:before{content:"\46"}.mdi-alpha-f-box:before{content:"\FAF2"}.mdi-alpha-g:before{content:"\47"}.mdi-alpha-g-box:before{content:"\FAF3"}.mdi-alpha-h:before{content:"\48"}.mdi-alpha-h-box:before{content:"\FAF4"}.mdi-alpha-i:before{content:"\49"}.mdi-alpha-i-box:before{content:"\FAF5"}.mdi-alpha-j:before{content:"\4A"}.mdi-alpha-j-box:before{content:"\FAF6"}.mdi-alpha-k:before{content:"\4B"}.mdi-alpha-k-box:before{content:"\FAF7"}.mdi-alpha-l:before{content:"\4C"}.mdi-alpha-l-box:before{content:"\FAF8"}.mdi-alpha-m:before{content:"\4D"}.mdi-alpha-m-box:before{content:"\FAF9"}.mdi-alpha-n:before{content:"\4E"}.mdi-alpha-n-box:before{content:"\FAFA"}.mdi-alpha-o:before{content:"\4F"}.mdi-alpha-o-box:before{content:"\FAFB"}.mdi-alpha-p:before{content:"\50"}.mdi-alpha-p-box:before{content:"\FAFC"}.mdi-alpha-q:before{content:"\51"}.mdi-alpha-q-box:before{content:"\FAFD"}.mdi-alpha-r:before{content:"\52"}.mdi-alpha-r-box:before{content:"\FAFE"}.mdi-alpha-s:before{content:"\53"}.mdi-alpha-s-box:before{content:"\FAFF"}.mdi-alpha-t:before{content:"\54"}.mdi-alpha-t-box:before{content:"\FB00"}.mdi-alpha-u:before{content:"\55"}.mdi-alpha-u-box:before{content:"\FB01"}.mdi-alpha-v:before{content:"\56"}.mdi-alpha-v-box:before{content:"\FB02"}.mdi-alpha-w:before{content:"\57"}.mdi-alpha-w-box:before{content:"\FB03"}.mdi-alpha-x:before{content:"\58"}.mdi-alpha-x-box:before{content:"\FB04"}.mdi-alpha-y:before{content:"\59"}.mdi-alpha-y-box:before{content:"\FB05"}.mdi-alpha-z:before{content:"\5A"}.mdi-alpha-z-box:before{content:"\FB06"}.mdi-alphabetical:before{content:"\F02C"}.mdi-altimeter:before{content:"\F5D7"}.mdi-amazon:before{content:"\F02D"}.mdi-amazon-alexa:before{content:"\F8C5"}.mdi-amazon-drive:before{content:"\F02E"}.mdi-ambulance:before{content:"\F02F"}.mdi-ampersand:before{content:"\FA8C"}.mdi-amplifier:before{content:"\F030"}.mdi-anchor:before{content:"\F031"}.mdi-android:before{content:"\F032"}.mdi-android-auto:before{content:"\FA8D"}.mdi-android-debug-bridge:before{content:"\F033"}.mdi-android-head:before{content:"\F78F"}.mdi-android-studio:before{content:"\F034"}.mdi-angle-acute:before{content:"\F936"}.mdi-angle-obtuse:before{content:"\F937"}.mdi-angle-right:before{content:"\F938"}.mdi-angular:before{content:"\F6B1"}.mdi-angularjs:before{content:"\F6BE"}.mdi-animation:before{content:"\F5D8"}.mdi-animation-outline:before{content:"\FA8E"}.mdi-animation-play:before{content:"\F939"}.mdi-animation-play-outline:before{content:"\FA8F"}.mdi-anvil:before{content:"\F89A"}.mdi-apple:before{content:"\F035"}.mdi-apple-finder:before{content:"\F036"}.mdi-apple-icloud:before{content:"\F038"}.mdi-apple-ios:before{content:"\F037"}.mdi-apple-keyboard-caps:before{content:"\F632"}.mdi-apple-keyboard-command:before{content:"\F633"}.mdi-apple-keyboard-control:before{content:"\F634"}.mdi-apple-keyboard-option:before{content:"\F635"}.mdi-apple-keyboard-shift:before{content:"\F636"}.mdi-apple-safari:before{content:"\F039"}.mdi-application:before{content:"\F614"}.mdi-apps:before{content:"\F03B"}.mdi-arch:before{content:"\F8C6"}.mdi-archive:before{content:"\F03C"}.mdi-arrange-bring-forward:before{content:"\F03D"}.mdi-arrange-bring-to-front:before{content:"\F03E"}.mdi-arrange-send-backward:before{content:"\F03F"}.mdi-arrange-send-to-back:before{content:"\F040"}.mdi-arrow-all:before{content:"\F041"}.mdi-arrow-bottom-left:before{content:"\F042"}.mdi-arrow-bottom-left-bold-outline:before{content:"\F9B6"}.mdi-arrow-bottom-left-thick:before{content:"\F9B7"}.mdi-arrow-bottom-right:before{content:"\F043"}.mdi-arrow-bottom-right-bold-outline:before{content:"\F9B8"}.mdi-arrow-bottom-right-thick:before{content:"\F9B9"}.mdi-arrow-collapse:before{content:"\F615"}.mdi-arrow-collapse-all:before{content:"\F044"}.mdi-arrow-collapse-down:before{content:"\F791"}.mdi-arrow-collapse-horizontal:before{content:"\F84B"}.mdi-arrow-collapse-left:before{content:"\F792"}.mdi-arrow-collapse-right:before{content:"\F793"}.mdi-arrow-collapse-up:before{content:"\F794"}.mdi-arrow-collapse-vertical:before{content:"\F84C"}.mdi-arrow-decision:before{content:"\F9BA"}.mdi-arrow-decision-auto:before{content:"\F9BB"}.mdi-arrow-decision-auto-outline:before{content:"\F9BC"}.mdi-arrow-decision-outline:before{content:"\F9BD"}.mdi-arrow-down:before{content:"\F045"}.mdi-arrow-down-bold:before{content:"\F72D"}.mdi-arrow-down-bold-box:before{content:"\F72E"}.mdi-arrow-down-bold-box-outline:before{content:"\F72F"}.mdi-arrow-down-bold-circle:before{content:"\F047"}.mdi-arrow-down-bold-circle-outline:before{content:"\F048"}.mdi-arrow-down-bold-hexagon-outline:before{content:"\F049"}.mdi-arrow-down-bold-outline:before{content:"\F9BE"}.mdi-arrow-down-box:before{content:"\F6BF"}.mdi-arrow-down-drop-circle:before{content:"\F04A"}.mdi-arrow-down-drop-circle-outline:before{content:"\F04B"}.mdi-arrow-down-thick:before{content:"\F046"}.mdi-arrow-expand:before{content:"\F616"}.mdi-arrow-expand-all:before{content:"\F04C"}.mdi-arrow-expand-down:before{content:"\F795"}.mdi-arrow-expand-horizontal:before{content:"\F84D"}.mdi-arrow-expand-left:before{content:"\F796"}.mdi-arrow-expand-right:before{content:"\F797"}.mdi-arrow-expand-up:before{content:"\F798"}.mdi-arrow-expand-vertical:before{content:"\F84E"}.mdi-arrow-left:before{content:"\F04D"}.mdi-arrow-left-bold:before{content:"\F730"}.mdi-arrow-left-bold-box:before{content:"\F731"}.mdi-arrow-left-bold-box-outline:before{content:"\F732"}.mdi-arrow-left-bold-circle:before{content:"\F04F"}.mdi-arrow-left-bold-circle-outline:before{content:"\F050"}.mdi-arrow-left-bold-hexagon-outline:before{content:"\F051"}.mdi-arrow-left-bold-outline:before{content:"\F9BF"}.mdi-arrow-left-box:before{content:"\F6C0"}.mdi-arrow-left-drop-circle:before{content:"\F052"}.mdi-arrow-left-drop-circle-outline:before{content:"\F053"}.mdi-arrow-left-right-bold-outline:before{content:"\F9C0"}.mdi-arrow-left-thick:before{content:"\F04E"}.mdi-arrow-right:before{content:"\F054"}.mdi-arrow-right-bold:before{content:"\F733"}.mdi-arrow-right-bold-box:before{content:"\F734"}.mdi-arrow-right-bold-box-outline:before{content:"\F735"}.mdi-arrow-right-bold-circle:before{content:"\F056"}.mdi-arrow-right-bold-circle-outline:before{content:"\F057"}.mdi-arrow-right-bold-hexagon-outline:before{content:"\F058"}.mdi-arrow-right-bold-outline:before{content:"\F9C1"}.mdi-arrow-right-box:before{content:"\F6C1"}.mdi-arrow-right-drop-circle:before{content:"\F059"}.mdi-arrow-right-drop-circle-outline:before{content:"\F05A"}.mdi-arrow-right-thick:before{content:"\F055"}.mdi-arrow-split-horizontal:before{content:"\F93A"}.mdi-arrow-split-vertical:before{content:"\F93B"}.mdi-arrow-top-left:before{content:"\F05B"}.mdi-arrow-top-left-bold-outline:before{content:"\F9C2"}.mdi-arrow-top-left-thick:before{content:"\F9C3"}.mdi-arrow-top-right:before{content:"\F05C"}.mdi-arrow-top-right-bold-outline:before{content:"\F9C4"}.mdi-arrow-top-right-thick:before{content:"\F9C5"}.mdi-arrow-up:before{content:"\F05D"}.mdi-arrow-up-bold:before{content:"\F736"}.mdi-arrow-up-bold-box:before{content:"\F737"}.mdi-arrow-up-bold-box-outline:before{content:"\F738"}.mdi-arrow-up-bold-circle:before{content:"\F05F"}.mdi-arrow-up-bold-circle-outline:before{content:"\F060"}.mdi-arrow-up-bold-hexagon-outline:before{content:"\F061"}.mdi-arrow-up-bold-outline:before{content:"\F9C6"}.mdi-arrow-up-box:before{content:"\F6C2"}.mdi-arrow-up-down-bold-outline:before{content:"\F9C7"}.mdi-arrow-up-drop-circle:before{content:"\F062"}.mdi-arrow-up-drop-circle-outline:before{content:"\F063"}.mdi-arrow-up-thick:before{content:"\F05E"}.mdi-artist:before{content:"\F802"}.mdi-artstation:before{content:"\FB37"}.mdi-aspect-ratio:before{content:"\FA23"}.mdi-assistant:before{content:"\F064"}.mdi-asterisk:before{content:"\F6C3"}.mdi-at:before{content:"\F065"}.mdi-atlassian:before{content:"\F803"}.mdi-atom:before{content:"\F767"}.mdi-attachment:before{content:"\F066"}.mdi-audio-video:before{content:"\F93C"}.mdi-audiobook:before{content:"\F067"}.mdi-augmented-reality:before{content:"\F84F"}.mdi-auto-fix:before{content:"\F068"}.mdi-auto-upload:before{content:"\F069"}.mdi-autorenew:before{content:"\F06A"}.mdi-av-timer:before{content:"\F06B"}.mdi-axe:before{content:"\F8C7"}.mdi-azure:before{content:"\F804"}.mdi-babel:before{content:"\FA24"}.mdi-baby:before{content:"\F06C"}.mdi-baby-buggy:before{content:"\F68E"}.mdi-backburger:before{content:"\F06D"}.mdi-backspace:before{content:"\F06E"}.mdi-backspace-outline:before{content:"\FB38"}.mdi-backup-restore:before{content:"\F06F"}.mdi-badminton:before{content:"\F850"}.mdi-balloon:before{content:"\FA25"}.mdi-ballot:before{content:"\F9C8"}.mdi-ballot-outline:before{content:"\F9C9"}.mdi-bandcamp:before{content:"\F674"}.mdi-bank:before{content:"\F070"}.mdi-bank-transfer:before{content:"\FA26"}.mdi-bank-transfer-in:before{content:"\FA27"}.mdi-bank-transfer-out:before{content:"\FA28"}.mdi-barcode:before{content:"\F071"}.mdi-barcode-scan:before{content:"\F072"}.mdi-barley:before{content:"\F073"}.mdi-barley-off:before{content:"\FB39"}.mdi-barn:before{content:"\FB3A"}.mdi-barrel:before{content:"\F074"}.mdi-baseball:before{content:"\F851"}.mdi-baseball-bat:before{content:"\F852"}.mdi-basecamp:before{content:"\F075"}.mdi-basket:before{content:"\F076"}.mdi-basket-fill:before{content:"\F077"}.mdi-basket-unfill:before{content:"\F078"}.mdi-basketball:before{content:"\F805"}.mdi-bat:before{content:"\FB3B"}.mdi-battery:before{content:"\F079"}.mdi-battery-10:before{content:"\F07A"}.mdi-battery-10-bluetooth:before{content:"\F93D"}.mdi-battery-20:before{content:"\F07B"}.mdi-battery-20-bluetooth:before{content:"\F93E"}.mdi-battery-30:before{content:"\F07C"}.mdi-battery-30-bluetooth:before{content:"\F93F"}.mdi-battery-40:before{content:"\F07D"}.mdi-battery-40-bluetooth:before{content:"\F940"}.mdi-battery-50:before{content:"\F07E"}.mdi-battery-50-bluetooth:before{content:"\F941"}.mdi-battery-60:before{content:"\F07F"}.mdi-battery-60-bluetooth:before{content:"\F942"}.mdi-battery-70:before{content:"\F080"}.mdi-battery-70-bluetooth:before{content:"\F943"}.mdi-battery-80:before{content:"\F081"}.mdi-battery-80-bluetooth:before{content:"\F944"}.mdi-battery-90:before{content:"\F082"}.mdi-battery-90-bluetooth:before{content:"\F945"}.mdi-battery-alert:before{content:"\F083"}.mdi-battery-alert-bluetooth:before{content:"\F946"}.mdi-battery-bluetooth:before{content:"\F947"}.mdi-battery-bluetooth-variant:before{content:"\F948"}.mdi-battery-charging:before{content:"\F084"}.mdi-battery-charging-10:before{content:"\F89B"}.mdi-battery-charging-100:before{content:"\F085"}.mdi-battery-charging-20:before{content:"\F086"}.mdi-battery-charging-30:before{content:"\F087"}.mdi-battery-charging-40:before{content:"\F088"}.mdi-battery-charging-50:before{content:"\F89C"}.mdi-battery-charging-60:before{content:"\F089"}.mdi-battery-charging-70:before{content:"\F89D"}.mdi-battery-charging-80:before{content:"\F08A"}.mdi-battery-charging-90:before{content:"\F08B"}.mdi-battery-charging-outline:before{content:"\F89E"}.mdi-battery-charging-wireless:before{content:"\F806"}.mdi-battery-charging-wireless-10:before{content:"\F807"}.mdi-battery-charging-wireless-20:before{content:"\F808"}.mdi-battery-charging-wireless-30:before{content:"\F809"}.mdi-battery-charging-wireless-40:before{content:"\F80A"}.mdi-battery-charging-wireless-50:before{content:"\F80B"}.mdi-battery-charging-wireless-60:before{content:"\F80C"}.mdi-battery-charging-wireless-70:before{content:"\F80D"}.mdi-battery-charging-wireless-80:before{content:"\F80E"}.mdi-battery-charging-wireless-90:before{content:"\F80F"}.mdi-battery-charging-wireless-alert:before{content:"\F810"}.mdi-battery-charging-wireless-outline:before{content:"\F811"}.mdi-battery-minus:before{content:"\F08C"}.mdi-battery-negative:before{content:"\F08D"}.mdi-battery-outline:before{content:"\F08E"}.mdi-battery-plus:before{content:"\F08F"}.mdi-battery-positive:before{content:"\F090"}.mdi-battery-unknown:before{content:"\F091"}.mdi-battery-unknown-bluetooth:before{content:"\F949"}.mdi-battlenet:before{content:"\FB3C"}.mdi-beach:before{content:"\F092"}.mdi-beaker:before{content:"\F68F"}.mdi-beats:before{content:"\F097"}.mdi-bed-empty:before{content:"\F89F"}.mdi-beer:before{content:"\F098"}.mdi-behance:before{content:"\F099"}.mdi-bell:before{content:"\F09A"}.mdi-bell-off:before{content:"\F09B"}.mdi-bell-off-outline:before{content:"\FA90"}.mdi-bell-outline:before{content:"\F09C"}.mdi-bell-plus:before{content:"\F09D"}.mdi-bell-plus-outline:before{content:"\FA91"}.mdi-bell-ring:before{content:"\F09E"}.mdi-bell-ring-outline:before{content:"\F09F"}.mdi-bell-sleep:before{content:"\F0A0"}.mdi-bell-sleep-outline:before{content:"\FA92"}.mdi-beta:before{content:"\F0A1"}.mdi-betamax:before{content:"\F9CA"}.mdi-bible:before{content:"\F0A2"}.mdi-bike:before{content:"\F0A3"}.mdi-billiards:before{content:"\FB3D"}.mdi-billiards-rack:before{content:"\FB3E"}.mdi-bing:before{content:"\F0A4"}.mdi-binoculars:before{content:"\F0A5"}.mdi-bio:before{content:"\F0A6"}.mdi-biohazard:before{content:"\F0A7"}.mdi-bitbucket:before{content:"\F0A8"}.mdi-bitcoin:before{content:"\F812"}.mdi-black-mesa:before{content:"\F0A9"}.mdi-blackberry:before{content:"\F0AA"}.mdi-blender:before{content:"\F0AB"}.mdi-blinds:before{content:"\F0AC"}.mdi-block-helper:before{content:"\F0AD"}.mdi-blogger:before{content:"\F0AE"}.mdi-bluetooth:before{content:"\F0AF"}.mdi-bluetooth-audio:before{content:"\F0B0"}.mdi-bluetooth-connect:before{content:"\F0B1"}.mdi-bluetooth-off:before{content:"\F0B2"}.mdi-bluetooth-settings:before{content:"\F0B3"}.mdi-bluetooth-transfer:before{content:"\F0B4"}.mdi-blur:before{content:"\F0B5"}.mdi-blur-linear:before{content:"\F0B6"}.mdi-blur-off:before{content:"\F0B7"}.mdi-blur-radial:before{content:"\F0B8"}.mdi-bomb:before{content:"\F690"}.mdi-bomb-off:before{content:"\F6C4"}.mdi-bone:before{content:"\F0B9"}.mdi-book:before{content:"\F0BA"}.mdi-book-lock:before{content:"\F799"}.mdi-book-lock-open:before{content:"\F79A"}.mdi-book-minus:before{content:"\F5D9"}.mdi-book-multiple:before{content:"\F0BB"}.mdi-book-multiple-minus:before{content:"\FA93"}.mdi-book-multiple-plus:before{content:"\FA94"}.mdi-book-multiple-remove:before{content:"\FA95"}.mdi-book-multiple-variant:before{content:"\F0BC"}.mdi-book-open:before{content:"\F0BD"}.mdi-book-open-outline:before{content:"\FB3F"}.mdi-book-open-page-variant:before{content:"\F5DA"}.mdi-book-open-variant:before{content:"\F0BE"}.mdi-book-outline:before{content:"\FB40"}.mdi-book-plus:before{content:"\F5DB"}.mdi-book-remove:before{content:"\FA96"}.mdi-book-variant:before{content:"\F0BF"}.mdi-bookmark:before{content:"\F0C0"}.mdi-bookmark-check:before{content:"\F0C1"}.mdi-bookmark-minus:before{content:"\F9CB"}.mdi-bookmark-minus-outline:before{content:"\F9CC"}.mdi-bookmark-music:before{content:"\F0C2"}.mdi-bookmark-off:before{content:"\F9CD"}.mdi-bookmark-off-outline:before{content:"\F9CE"}.mdi-bookmark-outline:before{content:"\F0C3"}.mdi-bookmark-plus:before{content:"\F0C5"}.mdi-bookmark-plus-outline:before{content:"\F0C4"}.mdi-bookmark-remove:before{content:"\F0C6"}.mdi-boombox:before{content:"\F5DC"}.mdi-bootstrap:before{content:"\F6C5"}.mdi-border-all:before{content:"\F0C7"}.mdi-border-all-variant:before{content:"\F8A0"}.mdi-border-bottom:before{content:"\F0C8"}.mdi-border-bottom-variant:before{content:"\F8A1"}.mdi-border-color:before{content:"\F0C9"}.mdi-border-horizontal:before{content:"\F0CA"}.mdi-border-inside:before{content:"\F0CB"}.mdi-border-left:before{content:"\F0CC"}.mdi-border-left-variant:before{content:"\F8A2"}.mdi-border-none:before{content:"\F0CD"}.mdi-border-none-variant:before{content:"\F8A3"}.mdi-border-outside:before{content:"\F0CE"}.mdi-border-right:before{content:"\F0CF"}.mdi-border-right-variant:before{content:"\F8A4"}.mdi-border-style:before{content:"\F0D0"}.mdi-border-top:before{content:"\F0D1"}.mdi-border-top-variant:before{content:"\F8A5"}.mdi-border-vertical:before{content:"\F0D2"}.mdi-bottle-wine:before{content:"\F853"}.mdi-bow-tie:before{content:"\F677"}.mdi-bowl:before{content:"\F617"}.mdi-bowling:before{content:"\F0D3"}.mdi-box:before{content:"\F0D4"}.mdi-box-cutter:before{content:"\F0D5"}.mdi-box-shadow:before{content:"\F637"}.mdi-boxing-glove:before{content:"\FB41"}.mdi-braille:before{content:"\F9CF"}.mdi-brain:before{content:"\F9D0"}.mdi-bridge:before{content:"\F618"}.mdi-briefcase:before{content:"\F0D6"}.mdi-briefcase-check:before{content:"\F0D7"}.mdi-briefcase-download:before{content:"\F0D8"}.mdi-briefcase-edit:before{content:"\FA97"}.mdi-briefcase-minus:before{content:"\FA29"}.mdi-briefcase-outline:before{content:"\F813"}.mdi-briefcase-plus:before{content:"\FA2A"}.mdi-briefcase-remove:before{content:"\FA2B"}.mdi-briefcase-search:before{content:"\FA2C"}.mdi-briefcase-upload:before{content:"\F0D9"}.mdi-brightness-1:before{content:"\F0DA"}.mdi-brightness-2:before{content:"\F0DB"}.mdi-brightness-3:before{content:"\F0DC"}.mdi-brightness-4:before{content:"\F0DD"}.mdi-brightness-5:before{content:"\F0DE"}.mdi-brightness-6:before{content:"\F0DF"}.mdi-brightness-7:before{content:"\F0E0"}.mdi-brightness-auto:before{content:"\F0E1"}.mdi-broom:before{content:"\F0E2"}.mdi-brush:before{content:"\F0E3"}.mdi-buddhism:before{content:"\F94A"}.mdi-buffer:before{content:"\F619"}.mdi-bug:before{content:"\F0E4"}.mdi-bug-check:before{content:"\FA2D"}.mdi-bug-check-outline:before{content:"\FA2E"}.mdi-bug-outline:before{content:"\FA2F"}.mdi-bulldozer:before{content:"\FB07"}.mdi-bulletin-board:before{content:"\F0E5"}.mdi-bullhorn:before{content:"\F0E6"}.mdi-bullhorn-outline:before{content:"\FB08"}.mdi-bullseye:before{content:"\F5DD"}.mdi-bullseye-arrow:before{content:"\F8C8"}.mdi-bus:before{content:"\F0E7"}.mdi-bus-alert:before{content:"\FA98"}.mdi-bus-articulated-end:before{content:"\F79B"}.mdi-bus-articulated-front:before{content:"\F79C"}.mdi-bus-clock:before{content:"\F8C9"}.mdi-bus-double-decker:before{content:"\F79D"}.mdi-bus-school:before{content:"\F79E"}.mdi-bus-side:before{content:"\F79F"}.mdi-cached:before{content:"\F0E8"}.mdi-cake:before{content:"\F0E9"}.mdi-cake-layered:before{content:"\F0EA"}.mdi-cake-variant:before{content:"\F0EB"}.mdi-calculator:before{content:"\F0EC"}.mdi-calculator-variant:before{content:"\FA99"}.mdi-calendar:before{content:"\F0ED"}.mdi-calendar-alert:before{content:"\FA30"}.mdi-calendar-blank:before{content:"\F0EE"}.mdi-calendar-blank-outline:before{content:"\FB42"}.mdi-calendar-check:before{content:"\F0EF"}.mdi-calendar-clock:before{content:"\F0F0"}.mdi-calendar-edit:before{content:"\F8A6"}.mdi-calendar-export:before{content:"\FB09"}.mdi-calendar-heart:before{content:"\F9D1"}.mdi-calendar-import:before{content:"\FB0A"}.mdi-calendar-multiple:before{content:"\F0F1"}.mdi-calendar-multiple-check:before{content:"\F0F2"}.mdi-calendar-multiselect:before{content:"\FA31"}.mdi-calendar-outline:before{content:"\FB43"}.mdi-calendar-plus:before{content:"\F0F3"}.mdi-calendar-question:before{content:"\F691"}.mdi-calendar-range:before{content:"\F678"}.mdi-calendar-range-outline:before{content:"\FB44"}.mdi-calendar-remove:before{content:"\F0F4"}.mdi-calendar-search:before{content:"\F94B"}.mdi-calendar-star:before{content:"\F9D2"}.mdi-calendar-text:before{content:"\F0F5"}.mdi-calendar-today:before{content:"\F0F6"}.mdi-calendar-week:before{content:"\FA32"}.mdi-calendar-week-begin:before{content:"\FA33"}.mdi-call-made:before{content:"\F0F7"}.mdi-call-merge:before{content:"\F0F8"}.mdi-call-missed:before{content:"\F0F9"}.mdi-call-received:before{content:"\F0FA"}.mdi-call-split:before{content:"\F0FB"}.mdi-camcorder:before{content:"\F0FC"}.mdi-camcorder-box:before{content:"\F0FD"}.mdi-camcorder-box-off:before{content:"\F0FE"}.mdi-camcorder-off:before{content:"\F0FF"}.mdi-camera:before{content:"\F100"}.mdi-camera-account:before{content:"\F8CA"}.mdi-camera-burst:before{content:"\F692"}.mdi-camera-control:before{content:"\FB45"}.mdi-camera-enhance:before{content:"\F101"}.mdi-camera-enhance-outline:before{content:"\FB46"}.mdi-camera-front:before{content:"\F102"}.mdi-camera-front-variant:before{content:"\F103"}.mdi-camera-gopro:before{content:"\F7A0"}.mdi-camera-image:before{content:"\F8CB"}.mdi-camera-iris:before{content:"\F104"}.mdi-camera-metering-center:before{content:"\F7A1"}.mdi-camera-metering-matrix:before{content:"\F7A2"}.mdi-camera-metering-partial:before{content:"\F7A3"}.mdi-camera-metering-spot:before{content:"\F7A4"}.mdi-camera-off:before{content:"\F5DF"}.mdi-camera-party-mode:before{content:"\F105"}.mdi-camera-rear:before{content:"\F106"}.mdi-camera-rear-variant:before{content:"\F107"}.mdi-camera-switch:before{content:"\F108"}.mdi-camera-timer:before{content:"\F109"}.mdi-cancel:before{content:"\F739"}.mdi-candle:before{content:"\F5E2"}.mdi-candycane:before{content:"\F10A"}.mdi-cannabis:before{content:"\F7A5"}.mdi-caps-lock:before{content:"\FA9A"}.mdi-car:before{content:"\F10B"}.mdi-car-battery:before{content:"\F10C"}.mdi-car-connected:before{content:"\F10D"}.mdi-car-convertible:before{content:"\F7A6"}.mdi-car-door:before{content:"\FB47"}.mdi-car-electric:before{content:"\FB48"}.mdi-car-estate:before{content:"\F7A7"}.mdi-car-hatchback:before{content:"\F7A8"}.mdi-car-key:before{content:"\FB49"}.mdi-car-limousine:before{content:"\F8CC"}.mdi-car-multiple:before{content:"\FB4A"}.mdi-car-pickup:before{content:"\F7A9"}.mdi-car-side:before{content:"\F7AA"}.mdi-car-sports:before{content:"\F7AB"}.mdi-car-wash:before{content:"\F10E"}.mdi-caravan:before{content:"\F7AC"}.mdi-card:before{content:"\FB4B"}.mdi-card-bulleted:before{content:"\FB4C"}.mdi-card-bulleted-off:before{content:"\FB4D"}.mdi-card-bulleted-off-outline:before{content:"\FB4E"}.mdi-card-bulleted-outline:before{content:"\FB4F"}.mdi-card-bulleted-settings:before{content:"\FB50"}.mdi-card-bulleted-settings-outline:before{content:"\FB51"}.mdi-card-outline:before{content:"\FB52"}.mdi-card-text:before{content:"\FB53"}.mdi-card-text-outline:before{content:"\FB54"}.mdi-cards:before{content:"\F638"}.mdi-cards-club:before{content:"\F8CD"}.mdi-cards-diamond:before{content:"\F8CE"}.mdi-cards-heart:before{content:"\F8CF"}.mdi-cards-outline:before{content:"\F639"}.mdi-cards-playing-outline:before{content:"\F63A"}.mdi-cards-spade:before{content:"\F8D0"}.mdi-cards-variant:before{content:"\F6C6"}.mdi-carrot:before{content:"\F10F"}.mdi-cart:before{content:"\F110"}.mdi-cart-off:before{content:"\F66B"}.mdi-cart-outline:before{content:"\F111"}.mdi-cart-plus:before{content:"\F112"}.mdi-case-sensitive-alt:before{content:"\F113"}.mdi-cash:before{content:"\F114"}.mdi-cash-100:before{content:"\F115"}.mdi-cash-multiple:before{content:"\F116"}.mdi-cash-refund:before{content:"\FA9B"}.mdi-cash-usd:before{content:"\F117"}.mdi-cassette:before{content:"\F9D3"}.mdi-cast:before{content:"\F118"}.mdi-cast-connected:before{content:"\F119"}.mdi-cast-off:before{content:"\F789"}.mdi-castle:before{content:"\F11A"}.mdi-cat:before{content:"\F11B"}.mdi-cctv:before{content:"\F7AD"}.mdi-ceiling-light:before{content:"\F768"}.mdi-cellphone:before{content:"\F11C"}.mdi-cellphone-android:before{content:"\F11D"}.mdi-cellphone-arrow-down:before{content:"\F9D4"}.mdi-cellphone-basic:before{content:"\F11E"}.mdi-cellphone-dock:before{content:"\F11F"}.mdi-cellphone-erase:before{content:"\F94C"}.mdi-cellphone-iphone:before{content:"\F120"}.mdi-cellphone-key:before{content:"\F94D"}.mdi-cellphone-link:before{content:"\F121"}.mdi-cellphone-link-off:before{content:"\F122"}.mdi-cellphone-lock:before{content:"\F94E"}.mdi-cellphone-message:before{content:"\F8D2"}.mdi-cellphone-off:before{content:"\F94F"}.mdi-cellphone-screenshot:before{content:"\FA34"}.mdi-cellphone-settings:before{content:"\F123"}.mdi-cellphone-settings-variant:before{content:"\F950"}.mdi-cellphone-sound:before{content:"\F951"}.mdi-cellphone-text:before{content:"\F8D1"}.mdi-cellphone-wireless:before{content:"\F814"}.mdi-certificate:before{content:"\F124"}.mdi-chair-school:before{content:"\F125"}.mdi-chart-arc:before{content:"\F126"}.mdi-chart-areaspline:before{content:"\F127"}.mdi-chart-bar:before{content:"\F128"}.mdi-chart-bar-stacked:before{content:"\F769"}.mdi-chart-bubble:before{content:"\F5E3"}.mdi-chart-donut:before{content:"\F7AE"}.mdi-chart-donut-variant:before{content:"\F7AF"}.mdi-chart-gantt:before{content:"\F66C"}.mdi-chart-histogram:before{content:"\F129"}.mdi-chart-line:before{content:"\F12A"}.mdi-chart-line-stacked:before{content:"\F76A"}.mdi-chart-line-variant:before{content:"\F7B0"}.mdi-chart-multiline:before{content:"\F8D3"}.mdi-chart-pie:before{content:"\F12B"}.mdi-chart-scatterplot-hexbin:before{content:"\F66D"}.mdi-chart-timeline:before{content:"\F66E"}.mdi-chat:before{content:"\FB55"}.mdi-chat-alert:before{content:"\FB56"}.mdi-chat-processing:before{content:"\FB57"}.mdi-check:before{content:"\F12C"}.mdi-check-all:before{content:"\F12D"}.mdi-check-circle:before{content:"\F5E0"}.mdi-check-circle-outline:before{content:"\F5E1"}.mdi-check-decagram:before{content:"\F790"}.mdi-check-outline:before{content:"\F854"}.mdi-checkbook:before{content:"\FA9C"}.mdi-checkbox-blank:before{content:"\F12E"}.mdi-checkbox-blank-circle:before{content:"\F12F"}.mdi-checkbox-blank-circle-outline:before{content:"\F130"}.mdi-checkbox-blank-outline:before{content:"\F131"}.mdi-checkbox-intermediate:before{content:"\F855"}.mdi-checkbox-marked:before{content:"\F132"}.mdi-checkbox-marked-circle:before{content:"\F133"}.mdi-checkbox-marked-circle-outline:before{content:"\F134"}.mdi-checkbox-marked-outline:before{content:"\F135"}.mdi-checkbox-multiple-blank:before{content:"\F136"}.mdi-checkbox-multiple-blank-circle:before{content:"\F63B"}.mdi-checkbox-multiple-blank-circle-outline:before{content:"\F63C"}.mdi-checkbox-multiple-blank-outline:before{content:"\F137"}.mdi-checkbox-multiple-marked:before{content:"\F138"}.mdi-checkbox-multiple-marked-circle:before{content:"\F63D"}.mdi-checkbox-multiple-marked-circle-outline:before{content:"\F63E"}.mdi-checkbox-multiple-marked-outline:before{content:"\F139"}.mdi-checkerboard:before{content:"\F13A"}.mdi-chef-hat:before{content:"\FB58"}.mdi-chemical-weapon:before{content:"\F13B"}.mdi-chess-bishop:before{content:"\F85B"}.mdi-chess-king:before{content:"\F856"}.mdi-chess-knight:before{content:"\F857"}.mdi-chess-pawn:before{content:"\F858"}.mdi-chess-queen:before{content:"\F859"}.mdi-chess-rook:before{content:"\F85A"}.mdi-chevron-double-down:before{content:"\F13C"}.mdi-chevron-double-left:before{content:"\F13D"}.mdi-chevron-double-right:before{content:"\F13E"}.mdi-chevron-double-up:before{content:"\F13F"}.mdi-chevron-down:before{content:"\F140"}.mdi-chevron-down-box:before{content:"\F9D5"}.mdi-chevron-down-box-outline:before{content:"\F9D6"}.mdi-chevron-down-circle:before{content:"\FB0B"}.mdi-chevron-down-circle-outline:before{content:"\FB0C"}.mdi-chevron-left:before{content:"\F141"}.mdi-chevron-left-box:before{content:"\F9D7"}.mdi-chevron-left-box-outline:before{content:"\F9D8"}.mdi-chevron-left-circle:before{content:"\FB0D"}.mdi-chevron-left-circle-outline:before{content:"\FB0E"}.mdi-chevron-right:before{content:"\F142"}.mdi-chevron-right-box:before{content:"\F9D9"}.mdi-chevron-right-box-outline:before{content:"\F9DA"}.mdi-chevron-right-circle:before{content:"\FB0F"}.mdi-chevron-right-circle-outline:before{content:"\FB10"}.mdi-chevron-up:before{content:"\F143"}.mdi-chevron-up-box:before{content:"\F9DB"}.mdi-chevron-up-box-outline:before{content:"\F9DC"}.mdi-chevron-up-circle:before{content:"\FB11"}.mdi-chevron-up-circle-outline:before{content:"\FB12"}.mdi-chili-hot:before{content:"\F7B1"}.mdi-chili-medium:before{content:"\F7B2"}.mdi-chili-mild:before{content:"\F7B3"}.mdi-chip:before{content:"\F61A"}.mdi-christianity:before{content:"\F952"}.mdi-church:before{content:"\F144"}.mdi-circle:before{content:"\F764"}.mdi-circle-edit-outline:before{content:"\F8D4"}.mdi-circle-medium:before{content:"\F9DD"}.mdi-circle-outline:before{content:"\F765"}.mdi-circle-slice-1:before{content:"\FA9D"}.mdi-circle-slice-2:before{content:"\FA9E"}.mdi-circle-slice-3:before{content:"\FA9F"}.mdi-circle-slice-4:before{content:"\FAA0"}.mdi-circle-slice-5:before{content:"\FAA1"}.mdi-circle-slice-6:before{content:"\FAA2"}.mdi-circle-slice-7:before{content:"\FAA3"}.mdi-circle-slice-8:before{content:"\FAA4"}.mdi-circle-small:before{content:"\F9DE"}.mdi-cisco-webex:before{content:"\F145"}.mdi-city:before{content:"\F146"}.mdi-city-variant:before{content:"\FA35"}.mdi-city-variant-outline:before{content:"\FA36"}.mdi-clipboard:before{content:"\F147"}.mdi-clipboard-account:before{content:"\F148"}.mdi-clipboard-alert:before{content:"\F149"}.mdi-clipboard-arrow-down:before{content:"\F14A"}.mdi-clipboard-arrow-left:before{content:"\F14B"}.mdi-clipboard-check:before{content:"\F14C"}.mdi-clipboard-check-outline:before{content:"\F8A7"}.mdi-clipboard-flow:before{content:"\F6C7"}.mdi-clipboard-outline:before{content:"\F14D"}.mdi-clipboard-plus:before{content:"\F750"}.mdi-clipboard-pulse:before{content:"\F85C"}.mdi-clipboard-pulse-outline:before{content:"\F85D"}.mdi-clipboard-text:before{content:"\F14E"}.mdi-clipboard-text-outline:before{content:"\FA37"}.mdi-clippy:before{content:"\F14F"}.mdi-clock:before{content:"\F953"}.mdi-clock-alert:before{content:"\F954"}.mdi-clock-alert-outline:before{content:"\F5CE"}.mdi-clock-end:before{content:"\F151"}.mdi-clock-fast:before{content:"\F152"}.mdi-clock-in:before{content:"\F153"}.mdi-clock-out:before{content:"\F154"}.mdi-clock-outline:before{content:"\F150"}.mdi-clock-start:before{content:"\F155"}.mdi-close:before{content:"\F156"}.mdi-close-box:before{content:"\F157"}.mdi-close-box-outline:before{content:"\F158"}.mdi-close-circle:before{content:"\F159"}.mdi-close-circle-outline:before{content:"\F15A"}.mdi-close-network:before{content:"\F15B"}.mdi-close-octagon:before{content:"\F15C"}.mdi-close-octagon-outline:before{content:"\F15D"}.mdi-close-outline:before{content:"\F6C8"}.mdi-closed-caption:before{content:"\F15E"}.mdi-cloud:before{content:"\F15F"}.mdi-cloud-alert:before{content:"\F9DF"}.mdi-cloud-braces:before{content:"\F7B4"}.mdi-cloud-check:before{content:"\F160"}.mdi-cloud-circle:before{content:"\F161"}.mdi-cloud-download:before{content:"\F162"}.mdi-cloud-download-outline:before{content:"\FB59"}.mdi-cloud-off-outline:before{content:"\F164"}.mdi-cloud-outline:before{content:"\F163"}.mdi-cloud-print:before{content:"\F165"}.mdi-cloud-print-outline:before{content:"\F166"}.mdi-cloud-question:before{content:"\FA38"}.mdi-cloud-search:before{content:"\F955"}.mdi-cloud-search-outline:before{content:"\F956"}.mdi-cloud-sync:before{content:"\F63F"}.mdi-cloud-tags:before{content:"\F7B5"}.mdi-cloud-upload:before{content:"\F167"}.mdi-cloud-upload-outline:before{content:"\FB5A"}.mdi-clover:before{content:"\F815"}.mdi-code-array:before{content:"\F168"}.mdi-code-braces:before{content:"\F169"}.mdi-code-brackets:before{content:"\F16A"}.mdi-code-equal:before{content:"\F16B"}.mdi-code-greater-than:before{content:"\F16C"}.mdi-code-greater-than-or-equal:before{content:"\F16D"}.mdi-code-less-than:before{content:"\F16E"}.mdi-code-less-than-or-equal:before{content:"\F16F"}.mdi-code-not-equal:before{content:"\F170"}.mdi-code-not-equal-variant:before{content:"\F171"}.mdi-code-parentheses:before{content:"\F172"}.mdi-code-string:before{content:"\F173"}.mdi-code-tags:before{content:"\F174"}.mdi-code-tags-check:before{content:"\F693"}.mdi-codepen:before{content:"\F175"}.mdi-coffee:before{content:"\F176"}.mdi-coffee-outline:before{content:"\F6C9"}.mdi-coffee-to-go:before{content:"\F177"}.mdi-coffin:before{content:"\FB5B"}.mdi-cogs:before{content:"\F8D5"}.mdi-coin:before{content:"\F178"}.mdi-coins:before{content:"\F694"}.mdi-collage:before{content:"\F640"}.mdi-collapse-all:before{content:"\FAA5"}.mdi-collapse-all-outline:before{content:"\FAA6"}.mdi-color-helper:before{content:"\F179"}.mdi-comment:before{content:"\F17A"}.mdi-comment-account:before{content:"\F17B"}.mdi-comment-account-outline:before{content:"\F17C"}.mdi-comment-alert:before{content:"\F17D"}.mdi-comment-alert-outline:before{content:"\F17E"}.mdi-comment-arrow-left:before{content:"\F9E0"}.mdi-comment-arrow-left-outline:before{content:"\F9E1"}.mdi-comment-arrow-right:before{content:"\F9E2"}.mdi-comment-arrow-right-outline:before{content:"\F9E3"}.mdi-comment-check:before{content:"\F17F"}.mdi-comment-check-outline:before{content:"\F180"}.mdi-comment-eye:before{content:"\FA39"}.mdi-comment-eye-outline:before{content:"\FA3A"}.mdi-comment-multiple:before{content:"\F85E"}.mdi-comment-multiple-outline:before{content:"\F181"}.mdi-comment-outline:before{content:"\F182"}.mdi-comment-plus:before{content:"\F9E4"}.mdi-comment-plus-outline:before{content:"\F183"}.mdi-comment-processing:before{content:"\F184"}.mdi-comment-processing-outline:before{content:"\F185"}.mdi-comment-question:before{content:"\F816"}.mdi-comment-question-outline:before{content:"\F186"}.mdi-comment-remove:before{content:"\F5DE"}.mdi-comment-remove-outline:before{content:"\F187"}.mdi-comment-search:before{content:"\FA3B"}.mdi-comment-search-outline:before{content:"\FA3C"}.mdi-comment-text:before{content:"\F188"}.mdi-comment-text-multiple:before{content:"\F85F"}.mdi-comment-text-multiple-outline:before{content:"\F860"}.mdi-comment-text-outline:before{content:"\F189"}.mdi-compare:before{content:"\F18A"}.mdi-compass:before{content:"\F18B"}.mdi-compass-off:before{content:"\FB5C"}.mdi-compass-off-outline:before{content:"\FB5D"}.mdi-compass-outline:before{content:"\F18C"}.mdi-console:before{content:"\F18D"}.mdi-console-line:before{content:"\F7B6"}.mdi-console-network:before{content:"\F8A8"}.mdi-contact-mail:before{content:"\F18E"}.mdi-contacts:before{content:"\F6CA"}.mdi-contain:before{content:"\FA3D"}.mdi-contain-end:before{content:"\FA3E"}.mdi-contain-start:before{content:"\FA3F"}.mdi-content-copy:before{content:"\F18F"}.mdi-content-cut:before{content:"\F190"}.mdi-content-duplicate:before{content:"\F191"}.mdi-content-paste:before{content:"\F192"}.mdi-content-save:before{content:"\F193"}.mdi-content-save-all:before{content:"\F194"}.mdi-content-save-outline:before{content:"\F817"}.mdi-content-save-settings:before{content:"\F61B"}.mdi-content-save-settings-outline:before{content:"\FB13"}.mdi-contrast:before{content:"\F195"}.mdi-contrast-box:before{content:"\F196"}.mdi-contrast-circle:before{content:"\F197"}.mdi-controller-classic:before{content:"\FB5E"}.mdi-controller-classic-outline:before{content:"\FB5F"}.mdi-cookie:before{content:"\F198"}.mdi-copyright:before{content:"\F5E6"}.mdi-cordova:before{content:"\F957"}.mdi-corn:before{content:"\F7B7"}.mdi-counter:before{content:"\F199"}.mdi-cow:before{content:"\F19A"}.mdi-crane:before{content:"\F861"}.mdi-creation:before{content:"\F1C9"}.mdi-credit-card:before{content:"\F19B"}.mdi-credit-card-multiple:before{content:"\F19C"}.mdi-credit-card-off:before{content:"\F5E4"}.mdi-credit-card-plus:before{content:"\F675"}.mdi-credit-card-refund:before{content:"\FAA7"}.mdi-credit-card-scan:before{content:"\F19D"}.mdi-credit-card-settings:before{content:"\F8D6"}.mdi-crop:before{content:"\F19E"}.mdi-crop-free:before{content:"\F19F"}.mdi-crop-landscape:before{content:"\F1A0"}.mdi-crop-portrait:before{content:"\F1A1"}.mdi-crop-rotate:before{content:"\F695"}.mdi-crop-square:before{content:"\F1A2"}.mdi-crosshairs:before{content:"\F1A3"}.mdi-crosshairs-gps:before{content:"\F1A4"}.mdi-crown:before{content:"\F1A5"}.mdi-cryengine:before{content:"\F958"}.mdi-crystal-ball:before{content:"\FB14"}.mdi-cube:before{content:"\F1A6"}.mdi-cube-outline:before{content:"\F1A7"}.mdi-cube-scan:before{content:"\FB60"}.mdi-cube-send:before{content:"\F1A8"}.mdi-cube-unfolded:before{content:"\F1A9"}.mdi-cup:before{content:"\F1AA"}.mdi-cup-off:before{content:"\F5E5"}.mdi-cup-water:before{content:"\F1AB"}.mdi-cupcake:before{content:"\F959"}.mdi-curling:before{content:"\F862"}.mdi-currency-bdt:before{content:"\F863"}.mdi-currency-brl:before{content:"\FB61"}.mdi-currency-btc:before{content:"\F1AC"}.mdi-currency-chf:before{content:"\F7B8"}.mdi-currency-cny:before{content:"\F7B9"}.mdi-currency-eth:before{content:"\F7BA"}.mdi-currency-eur:before{content:"\F1AD"}.mdi-currency-gbp:before{content:"\F1AE"}.mdi-currency-inr:before{content:"\F1AF"}.mdi-currency-jpy:before{content:"\F7BB"}.mdi-currency-krw:before{content:"\F7BC"}.mdi-currency-kzt:before{content:"\F864"}.mdi-currency-ngn:before{content:"\F1B0"}.mdi-currency-php:before{content:"\F9E5"}.mdi-currency-rub:before{content:"\F1B1"}.mdi-currency-sign:before{content:"\F7BD"}.mdi-currency-try:before{content:"\F1B2"}.mdi-currency-twd:before{content:"\F7BE"}.mdi-currency-usd:before{content:"\F1B3"}.mdi-currency-usd-off:before{content:"\F679"}.mdi-current-ac:before{content:"\F95A"}.mdi-current-dc:before{content:"\F95B"}.mdi-cursor-default:before{content:"\F1B4"}.mdi-cursor-default-outline:before{content:"\F1B5"}.mdi-cursor-move:before{content:"\F1B6"}.mdi-cursor-pointer:before{content:"\F1B7"}.mdi-cursor-text:before{content:"\F5E7"}.mdi-database:before{content:"\F1B8"}.mdi-database-check:before{content:"\FAA8"}.mdi-database-edit:before{content:"\FB62"}.mdi-database-export:before{content:"\F95D"}.mdi-database-import:before{content:"\F95C"}.mdi-database-lock:before{content:"\FAA9"}.mdi-database-minus:before{content:"\F1B9"}.mdi-database-plus:before{content:"\F1BA"}.mdi-database-search:before{content:"\F865"}.mdi-death-star:before{content:"\F8D7"}.mdi-death-star-variant:before{content:"\F8D8"}.mdi-deathly-hallows:before{content:"\FB63"}.mdi-debian:before{content:"\F8D9"}.mdi-debug-step-into:before{content:"\F1BB"}.mdi-debug-step-out:before{content:"\F1BC"}.mdi-debug-step-over:before{content:"\F1BD"}.mdi-decagram:before{content:"\F76B"}.mdi-decagram-outline:before{content:"\F76C"}.mdi-decimal-decrease:before{content:"\F1BE"}.mdi-decimal-increase:before{content:"\F1BF"}.mdi-delete:before{content:"\F1C0"}.mdi-delete-circle:before{content:"\F682"}.mdi-delete-circle-outline:before{content:"\FB64"}.mdi-delete-empty:before{content:"\F6CB"}.mdi-delete-forever:before{content:"\F5E8"}.mdi-delete-forever-outline:before{content:"\FB65"}.mdi-delete-outline:before{content:"\F9E6"}.mdi-delete-restore:before{content:"\F818"}.mdi-delete-sweep:before{content:"\F5E9"}.mdi-delete-variant:before{content:"\F1C1"}.mdi-delta:before{content:"\F1C2"}.mdi-desk-lamp:before{content:"\F95E"}.mdi-deskphone:before{content:"\F1C3"}.mdi-desktop-classic:before{content:"\F7BF"}.mdi-desktop-mac:before{content:"\F1C4"}.mdi-desktop-mac-dashboard:before{content:"\F9E7"}.mdi-desktop-tower:before{content:"\F1C5"}.mdi-desktop-tower-monitor:before{content:"\FAAA"}.mdi-details:before{content:"\F1C6"}.mdi-developer-board:before{content:"\F696"}.mdi-deviantart:before{content:"\F1C7"}.mdi-dialpad:before{content:"\F61C"}.mdi-diamond:before{content:"\FB66"}.mdi-diamond-outline:before{content:"\FB67"}.mdi-diamond-stone:before{content:"\F1C8"}.mdi-dice-1:before{content:"\F1CA"}.mdi-dice-2:before{content:"\F1CB"}.mdi-dice-3:before{content:"\F1CC"}.mdi-dice-4:before{content:"\F1CD"}.mdi-dice-5:before{content:"\F1CE"}.mdi-dice-6:before{content:"\F1CF"}.mdi-dice-d10:before{content:"\F76E"}.mdi-dice-d12:before{content:"\F866"}.mdi-dice-d20:before{content:"\F5EA"}.mdi-dice-d4:before{content:"\F5EB"}.mdi-dice-d6:before{content:"\F5EC"}.mdi-dice-d8:before{content:"\F5ED"}.mdi-dice-multiple:before{content:"\F76D"}.mdi-dictionary:before{content:"\F61D"}.mdi-dip-switch:before{content:"\F7C0"}.mdi-directions:before{content:"\F1D0"}.mdi-directions-fork:before{content:"\F641"}.mdi-disc:before{content:"\F5EE"}.mdi-disc-alert:before{content:"\F1D1"}.mdi-disc-player:before{content:"\F95F"}.mdi-discord:before{content:"\F66F"}.mdi-dishwasher:before{content:"\FAAB"}.mdi-disqus:before{content:"\F1D2"}.mdi-disqus-outline:before{content:"\F1D3"}.mdi-division:before{content:"\F1D4"}.mdi-division-box:before{content:"\F1D5"}.mdi-dlna:before{content:"\FA40"}.mdi-dna:before{content:"\F683"}.mdi-dns:before{content:"\F1D6"}.mdi-dns-outline:before{content:"\FB68"}.mdi-do-not-disturb:before{content:"\F697"}.mdi-do-not-disturb-off:before{content:"\F698"}.mdi-docker:before{content:"\F867"}.mdi-doctor:before{content:"\FA41"}.mdi-dog:before{content:"\FA42"}.mdi-dog-service:before{content:"\FAAC"}.mdi-dog-side:before{content:"\FA43"}.mdi-dolby:before{content:"\F6B2"}.mdi-domain:before{content:"\F1D7"}.mdi-donkey:before{content:"\F7C1"}.mdi-door:before{content:"\F819"}.mdi-door-closed:before{content:"\F81A"}.mdi-door-open:before{content:"\F81B"}.mdi-doorbell-video:before{content:"\F868"}.mdi-dot-net:before{content:"\FAAD"}.mdi-dots-horizontal:before{content:"\F1D8"}.mdi-dots-horizontal-circle:before{content:"\F7C2"}.mdi-dots-horizontal-circle-outline:before{content:"\FB69"}.mdi-dots-vertical:before{content:"\F1D9"}.mdi-dots-vertical-circle:before{content:"\F7C3"}.mdi-dots-vertical-circle-outline:before{content:"\FB6A"}.mdi-douban:before{content:"\F699"}.mdi-download:before{content:"\F1DA"}.mdi-download-multiple:before{content:"\F9E8"}.mdi-download-network:before{content:"\F6F3"}.mdi-download-outline:before{content:"\FB6B"}.mdi-drag:before{content:"\F1DB"}.mdi-drag-horizontal:before{content:"\F1DC"}.mdi-drag-variant:before{content:"\FB6C"}.mdi-drag-vertical:before{content:"\F1DD"}.mdi-drawing:before{content:"\F1DE"}.mdi-drawing-box:before{content:"\F1DF"}.mdi-dribbble:before{content:"\F1E0"}.mdi-dribbble-box:before{content:"\F1E1"}.mdi-drone:before{content:"\F1E2"}.mdi-dropbox:before{content:"\F1E3"}.mdi-drupal:before{content:"\F1E4"}.mdi-duck:before{content:"\F1E5"}.mdi-dumbbell:before{content:"\F1E6"}.mdi-ear-hearing:before{content:"\F7C4"}.mdi-ear-hearing-off:before{content:"\FA44"}.mdi-earth:before{content:"\F1E7"}.mdi-earth-box:before{content:"\F6CC"}.mdi-earth-box-off:before{content:"\F6CD"}.mdi-earth-off:before{content:"\F1E8"}.mdi-edge:before{content:"\F1E9"}.mdi-egg:before{content:"\FAAE"}.mdi-egg-easter:before{content:"\FAAF"}.mdi-eight-track:before{content:"\F9E9"}.mdi-eject:before{content:"\F1EA"}.mdi-eject-outline:before{content:"\FB6D"}.mdi-elephant:before{content:"\F7C5"}.mdi-elevation-decline:before{content:"\F1EB"}.mdi-elevation-rise:before{content:"\F1EC"}.mdi-elevator:before{content:"\F1ED"}.mdi-email:before{content:"\F1EE"}.mdi-email-alert:before{content:"\F6CE"}.mdi-email-check:before{content:"\FAB0"}.mdi-email-check-outline:before{content:"\FAB1"}.mdi-email-lock:before{content:"\F1F1"}.mdi-email-mark-as-unread:before{content:"\FB6E"}.mdi-email-open:before{content:"\F1EF"}.mdi-email-open-outline:before{content:"\F5EF"}.mdi-email-outline:before{content:"\F1F0"}.mdi-email-plus:before{content:"\F9EA"}.mdi-email-plus-outline:before{content:"\F9EB"}.mdi-email-search:before{content:"\F960"}.mdi-email-search-outline:before{content:"\F961"}.mdi-email-variant:before{content:"\F5F0"}.mdi-ember:before{content:"\FB15"}.mdi-emby:before{content:"\F6B3"}.mdi-emoticon:before{content:"\F1F2"}.mdi-emoticon-cool:before{content:"\F1F3"}.mdi-emoticon-dead:before{content:"\F69A"}.mdi-emoticon-devil:before{content:"\F1F4"}.mdi-emoticon-excited:before{content:"\F69B"}.mdi-emoticon-happy:before{content:"\F1F5"}.mdi-emoticon-neutral:before{content:"\F1F6"}.mdi-emoticon-poop:before{content:"\F1F7"}.mdi-emoticon-sad:before{content:"\F1F8"}.mdi-emoticon-tongue:before{content:"\F1F9"}.mdi-engine:before{content:"\F1FA"}.mdi-engine-off:before{content:"\FA45"}.mdi-engine-off-outline:before{content:"\FA46"}.mdi-engine-outline:before{content:"\F1FB"}.mdi-equal:before{content:"\F1FC"}.mdi-equal-box:before{content:"\F1FD"}.mdi-eraser:before{content:"\F1FE"}.mdi-eraser-variant:before{content:"\F642"}.mdi-escalator:before{content:"\F1FF"}.mdi-et:before{content:"\FAB2"}.mdi-ethereum:before{content:"\F869"}.mdi-ethernet:before{content:"\F200"}.mdi-ethernet-cable:before{content:"\F201"}.mdi-ethernet-cable-off:before{content:"\F202"}.mdi-etsy:before{content:"\F203"}.mdi-ev-station:before{content:"\F5F1"}.mdi-eventbrite:before{content:"\F7C6"}.mdi-evernote:before{content:"\F204"}.mdi-exclamation:before{content:"\F205"}.mdi-exit-run:before{content:"\FA47"}.mdi-exit-to-app:before{content:"\F206"}.mdi-expand-all:before{content:"\FAB3"}.mdi-expand-all-outline:before{content:"\FAB4"}.mdi-exponent:before{content:"\F962"}.mdi-exponent-box:before{content:"\F963"}.mdi-export:before{content:"\F207"}.mdi-export-variant:before{content:"\FB6F"}.mdi-eye:before{content:"\F208"}.mdi-eye-circle:before{content:"\FB70"}.mdi-eye-circle-outline:before{content:"\FB71"}.mdi-eye-off:before{content:"\F209"}.mdi-eye-off-outline:before{content:"\F6D0"}.mdi-eye-outline:before{content:"\F6CF"}.mdi-eye-plus:before{content:"\F86A"}.mdi-eye-plus-outline:before{content:"\F86B"}.mdi-eye-settings:before{content:"\F86C"}.mdi-eye-settings-outline:before{content:"\F86D"}.mdi-eyedropper:before{content:"\F20A"}.mdi-eyedropper-variant:before{content:"\F20B"}.mdi-face:before{content:"\F643"}.mdi-face-outline:before{content:"\FB72"}.mdi-face-profile:before{content:"\F644"}.mdi-facebook:before{content:"\F20C"}.mdi-facebook-box:before{content:"\F20D"}.mdi-facebook-messenger:before{content:"\F20E"}.mdi-facebook-workplace:before{content:"\FB16"}.mdi-factory:before{content:"\F20F"}.mdi-fan:before{content:"\F210"}.mdi-fan-off:before{content:"\F81C"}.mdi-fast-forward:before{content:"\F211"}.mdi-fast-forward-outline:before{content:"\F6D1"}.mdi-fax:before{content:"\F212"}.mdi-feather:before{content:"\F6D2"}.mdi-feature-search:before{content:"\FA48"}.mdi-feature-search-outline:before{content:"\FA49"}.mdi-fedora:before{content:"\F8DA"}.mdi-ferry:before{content:"\F213"}.mdi-file:before{content:"\F214"}.mdi-file-account:before{content:"\F73A"}.mdi-file-alert:before{content:"\FA4A"}.mdi-file-alert-outline:before{content:"\FA4B"}.mdi-file-cabinet:before{content:"\FAB5"}.mdi-file-chart:before{content:"\F215"}.mdi-file-check:before{content:"\F216"}.mdi-file-cloud:before{content:"\F217"}.mdi-file-compare:before{content:"\F8A9"}.mdi-file-delimited:before{content:"\F218"}.mdi-file-document:before{content:"\F219"}.mdi-file-document-box:before{content:"\F21A"}.mdi-file-document-box-multiple:before{content:"\FAB6"}.mdi-file-document-box-multiple-outline:before{content:"\FAB7"}.mdi-file-document-box-outline:before{content:"\F9EC"}.mdi-file-document-outline:before{content:"\F9ED"}.mdi-file-download:before{content:"\F964"}.mdi-file-download-outline:before{content:"\F965"}.mdi-file-excel:before{content:"\F21B"}.mdi-file-excel-box:before{content:"\F21C"}.mdi-file-export:before{content:"\F21D"}.mdi-file-find:before{content:"\F21E"}.mdi-file-find-outline:before{content:"\FB73"}.mdi-file-hidden:before{content:"\F613"}.mdi-file-image:before{content:"\F21F"}.mdi-file-import:before{content:"\F220"}.mdi-file-lock:before{content:"\F221"}.mdi-file-move:before{content:"\FAB8"}.mdi-file-multiple:before{content:"\F222"}.mdi-file-music:before{content:"\F223"}.mdi-file-outline:before{content:"\F224"}.mdi-file-pdf:before{content:"\F225"}.mdi-file-pdf-box:before{content:"\F226"}.mdi-file-percent:before{content:"\F81D"}.mdi-file-plus:before{content:"\F751"}.mdi-file-powerpoint:before{content:"\F227"}.mdi-file-powerpoint-box:before{content:"\F228"}.mdi-file-presentation-box:before{content:"\F229"}.mdi-file-question:before{content:"\F86E"}.mdi-file-remove:before{content:"\FB74"}.mdi-file-replace:before{content:"\FB17"}.mdi-file-replace-outline:before{content:"\FB18"}.mdi-file-restore:before{content:"\F670"}.mdi-file-send:before{content:"\F22A"}.mdi-file-tree:before{content:"\F645"}.mdi-file-undo:before{content:"\F8DB"}.mdi-file-upload:before{content:"\FA4C"}.mdi-file-upload-outline:before{content:"\FA4D"}.mdi-file-video:before{content:"\F22B"}.mdi-file-word:before{content:"\F22C"}.mdi-file-word-box:before{content:"\F22D"}.mdi-file-xml:before{content:"\F22E"}.mdi-film:before{content:"\F22F"}.mdi-filmstrip:before{content:"\F230"}.mdi-filmstrip-off:before{content:"\F231"}.mdi-filter:before{content:"\F232"}.mdi-filter-outline:before{content:"\F233"}.mdi-filter-remove:before{content:"\F234"}.mdi-filter-remove-outline:before{content:"\F235"}.mdi-filter-variant:before{content:"\F236"}.mdi-finance:before{content:"\F81E"}.mdi-find-replace:before{content:"\F6D3"}.mdi-fingerprint:before{content:"\F237"}.mdi-fire:before{content:"\F238"}.mdi-fire-truck:before{content:"\F8AA"}.mdi-firebase:before{content:"\F966"}.mdi-firefox:before{content:"\F239"}.mdi-fish:before{content:"\F23A"}.mdi-flag:before{content:"\F23B"}.mdi-flag-checkered:before{content:"\F23C"}.mdi-flag-minus:before{content:"\FB75"}.mdi-flag-outline:before{content:"\F23D"}.mdi-flag-plus:before{content:"\FB76"}.mdi-flag-remove:before{content:"\FB77"}.mdi-flag-triangle:before{content:"\F23F"}.mdi-flag-variant:before{content:"\F240"}.mdi-flag-variant-outline:before{content:"\F23E"}.mdi-flash:before{content:"\F241"}.mdi-flash-auto:before{content:"\F242"}.mdi-flash-circle:before{content:"\F81F"}.mdi-flash-off:before{content:"\F243"}.mdi-flash-outline:before{content:"\F6D4"}.mdi-flash-red-eye:before{content:"\F67A"}.mdi-flashlight:before{content:"\F244"}.mdi-flashlight-off:before{content:"\F245"}.mdi-flask:before{content:"\F093"}.mdi-flask-empty:before{content:"\F094"}.mdi-flask-empty-outline:before{content:"\F095"}.mdi-flask-outline:before{content:"\F096"}.mdi-flattr:before{content:"\F246"}.mdi-flip-to-back:before{content:"\F247"}.mdi-flip-to-front:before{content:"\F248"}.mdi-floor-lamp:before{content:"\F8DC"}.mdi-floor-plan:before{content:"\F820"}.mdi-floppy:before{content:"\F249"}.mdi-floppy-variant:before{content:"\F9EE"}.mdi-flower:before{content:"\F24A"}.mdi-flower-outline:before{content:"\F9EF"}.mdi-flower-tulip:before{content:"\F9F0"}.mdi-flower-tulip-outline:before{content:"\F9F1"}.mdi-folder:before{content:"\F24B"}.mdi-folder-account:before{content:"\F24C"}.mdi-folder-account-outline:before{content:"\FB78"}.mdi-folder-clock:before{content:"\FAB9"}.mdi-folder-clock-outline:before{content:"\FABA"}.mdi-folder-download:before{content:"\F24D"}.mdi-folder-edit:before{content:"\F8DD"}.mdi-folder-google-drive:before{content:"\F24E"}.mdi-folder-image:before{content:"\F24F"}.mdi-folder-key:before{content:"\F8AB"}.mdi-folder-key-network:before{content:"\F8AC"}.mdi-folder-lock:before{content:"\F250"}.mdi-folder-lock-open:before{content:"\F251"}.mdi-folder-move:before{content:"\F252"}.mdi-folder-multiple:before{content:"\F253"}.mdi-folder-multiple-image:before{content:"\F254"}.mdi-folder-multiple-outline:before{content:"\F255"}.mdi-folder-network:before{content:"\F86F"}.mdi-folder-open:before{content:"\F76F"}.mdi-folder-outline:before{content:"\F256"}.mdi-folder-plus:before{content:"\F257"}.mdi-folder-plus-outline:before{content:"\FB79"}.mdi-folder-remove:before{content:"\F258"}.mdi-folder-remove-outline:before{content:"\FB7A"}.mdi-folder-search:before{content:"\F967"}.mdi-folder-search-outline:before{content:"\F968"}.mdi-folder-star:before{content:"\F69C"}.mdi-folder-star-outline:before{content:"\FB7B"}.mdi-folder-upload:before{content:"\F259"}.mdi-font-awesome:before{content:"\F03A"}.mdi-food:before{content:"\F25A"}.mdi-food-apple:before{content:"\F25B"}.mdi-food-croissant:before{content:"\F7C7"}.mdi-food-fork-drink:before{content:"\F5F2"}.mdi-food-off:before{content:"\F5F3"}.mdi-food-variant:before{content:"\F25C"}.mdi-football:before{content:"\F25D"}.mdi-football-australian:before{content:"\F25E"}.mdi-football-helmet:before{content:"\F25F"}.mdi-forklift:before{content:"\F7C8"}.mdi-format-align-bottom:before{content:"\F752"}.mdi-format-align-center:before{content:"\F260"}.mdi-format-align-justify:before{content:"\F261"}.mdi-format-align-left:before{content:"\F262"}.mdi-format-align-middle:before{content:"\F753"}.mdi-format-align-right:before{content:"\F263"}.mdi-format-align-top:before{content:"\F754"}.mdi-format-annotation-minus:before{content:"\FABB"}.mdi-format-annotation-plus:before{content:"\F646"}.mdi-format-bold:before{content:"\F264"}.mdi-format-clear:before{content:"\F265"}.mdi-format-color-fill:before{content:"\F266"}.mdi-format-color-text:before{content:"\F69D"}.mdi-format-columns:before{content:"\F8DE"}.mdi-format-float-center:before{content:"\F267"}.mdi-format-float-left:before{content:"\F268"}.mdi-format-float-none:before{content:"\F269"}.mdi-format-float-right:before{content:"\F26A"}.mdi-format-font:before{content:"\F6D5"}.mdi-format-font-size-decrease:before{content:"\F9F2"}.mdi-format-font-size-increase:before{content:"\F9F3"}.mdi-format-header-1:before{content:"\F26B"}.mdi-format-header-2:before{content:"\F26C"}.mdi-format-header-3:before{content:"\F26D"}.mdi-format-header-4:before{content:"\F26E"}.mdi-format-header-5:before{content:"\F26F"}.mdi-format-header-6:before{content:"\F270"}.mdi-format-header-decrease:before{content:"\F271"}.mdi-format-header-equal:before{content:"\F272"}.mdi-format-header-increase:before{content:"\F273"}.mdi-format-header-pound:before{content:"\F274"}.mdi-format-horizontal-align-center:before{content:"\F61E"}.mdi-format-horizontal-align-left:before{content:"\F61F"}.mdi-format-horizontal-align-right:before{content:"\F620"}.mdi-format-indent-decrease:before{content:"\F275"}.mdi-format-indent-increase:before{content:"\F276"}.mdi-format-italic:before{content:"\F277"}.mdi-format-letter-case:before{content:"\FB19"}.mdi-format-letter-case-lower:before{content:"\FB1A"}.mdi-format-letter-case-upper:before{content:"\FB1B"}.mdi-format-line-spacing:before{content:"\F278"}.mdi-format-line-style:before{content:"\F5C8"}.mdi-format-line-weight:before{content:"\F5C9"}.mdi-format-list-bulleted:before{content:"\F279"}.mdi-format-list-bulleted-type:before{content:"\F27A"}.mdi-format-list-checkbox:before{content:"\F969"}.mdi-format-list-checks:before{content:"\F755"}.mdi-format-list-numbers:before{content:"\F27B"}.mdi-format-page-break:before{content:"\F6D6"}.mdi-format-paint:before{content:"\F27C"}.mdi-format-paragraph:before{content:"\F27D"}.mdi-format-pilcrow:before{content:"\F6D7"}.mdi-format-quote-close:before{content:"\F27E"}.mdi-format-quote-open:before{content:"\F756"}.mdi-format-rotate-90:before{content:"\F6A9"}.mdi-format-section:before{content:"\F69E"}.mdi-format-size:before{content:"\F27F"}.mdi-format-strikethrough:before{content:"\F280"}.mdi-format-strikethrough-variant:before{content:"\F281"}.mdi-format-subscript:before{content:"\F282"}.mdi-format-superscript:before{content:"\F283"}.mdi-format-text:before{content:"\F284"}.mdi-format-textdirection-l-to-r:before{content:"\F285"}.mdi-format-textdirection-r-to-l:before{content:"\F286"}.mdi-format-title:before{content:"\F5F4"}.mdi-format-underline:before{content:"\F287"}.mdi-format-vertical-align-bottom:before{content:"\F621"}.mdi-format-vertical-align-center:before{content:"\F622"}.mdi-format-vertical-align-top:before{content:"\F623"}.mdi-format-wrap-inline:before{content:"\F288"}.mdi-format-wrap-square:before{content:"\F289"}.mdi-format-wrap-tight:before{content:"\F28A"}.mdi-format-wrap-top-bottom:before{content:"\F28B"}.mdi-forum:before{content:"\F28C"}.mdi-forum-outline:before{content:"\F821"}.mdi-forward:before{content:"\F28D"}.mdi-fountain:before{content:"\F96A"}.mdi-foursquare:before{content:"\F28E"}.mdi-freebsd:before{content:"\F8DF"}.mdi-fridge:before{content:"\F290"}.mdi-fridge-bottom:before{content:"\F292"}.mdi-fridge-outline:before{content:"\F28F"}.mdi-fridge-top:before{content:"\F291"}.mdi-fuel:before{content:"\F7C9"}.mdi-fullscreen:before{content:"\F293"}.mdi-fullscreen-exit:before{content:"\F294"}.mdi-function:before{content:"\F295"}.mdi-function-variant:before{content:"\F870"}.mdi-gamepad:before{content:"\F296"}.mdi-gamepad-variant:before{content:"\F297"}.mdi-garage:before{content:"\F6D8"}.mdi-garage-alert:before{content:"\F871"}.mdi-garage-open:before{content:"\F6D9"}.mdi-gas-cylinder:before{content:"\F647"}.mdi-gas-station:before{content:"\F298"}.mdi-gate:before{content:"\F299"}.mdi-gate-and:before{content:"\F8E0"}.mdi-gate-nand:before{content:"\F8E1"}.mdi-gate-nor:before{content:"\F8E2"}.mdi-gate-not:before{content:"\F8E3"}.mdi-gate-or:before{content:"\F8E4"}.mdi-gate-xnor:before{content:"\F8E5"}.mdi-gate-xor:before{content:"\F8E6"}.mdi-gauge:before{content:"\F29A"}.mdi-gauge-empty:before{content:"\F872"}.mdi-gauge-full:before{content:"\F873"}.mdi-gauge-low:before{content:"\F874"}.mdi-gavel:before{content:"\F29B"}.mdi-gender-female:before{content:"\F29C"}.mdi-gender-male:before{content:"\F29D"}.mdi-gender-male-female:before{content:"\F29E"}.mdi-gender-transgender:before{content:"\F29F"}.mdi-gentoo:before{content:"\F8E7"}.mdi-gesture:before{content:"\F7CA"}.mdi-gesture-double-tap:before{content:"\F73B"}.mdi-gesture-pinch:before{content:"\FABC"}.mdi-gesture-spread:before{content:"\FABD"}.mdi-gesture-swipe-down:before{content:"\F73C"}.mdi-gesture-swipe-horizontal:before{content:"\FABE"}.mdi-gesture-swipe-left:before{content:"\F73D"}.mdi-gesture-swipe-right:before{content:"\F73E"}.mdi-gesture-swipe-up:before{content:"\F73F"}.mdi-gesture-swipe-vertical:before{content:"\FABF"}.mdi-gesture-tap:before{content:"\F740"}.mdi-gesture-two-double-tap:before{content:"\F741"}.mdi-gesture-two-tap:before{content:"\F742"}.mdi-ghost:before{content:"\F2A0"}.mdi-ghost-off:before{content:"\F9F4"}.mdi-gift:before{content:"\F2A1"}.mdi-git:before{content:"\F2A2"}.mdi-github-box:before{content:"\F2A3"}.mdi-github-circle:before{content:"\F2A4"}.mdi-github-face:before{content:"\F6DA"}.mdi-gitlab:before{content:"\FB7C"}.mdi-glass-cocktail:before{content:"\F356"}.mdi-glass-flute:before{content:"\F2A5"}.mdi-glass-mug:before{content:"\F2A6"}.mdi-glass-stange:before{content:"\F2A7"}.mdi-glass-tulip:before{content:"\F2A8"}.mdi-glass-wine:before{content:"\F875"}.mdi-glassdoor:before{content:"\F2A9"}.mdi-glasses:before{content:"\F2AA"}.mdi-globe-model:before{content:"\F8E8"}.mdi-gmail:before{content:"\F2AB"}.mdi-gnome:before{content:"\F2AC"}.mdi-gog:before{content:"\FB7D"}.mdi-golf:before{content:"\F822"}.mdi-gondola:before{content:"\F685"}.mdi-google:before{content:"\F2AD"}.mdi-google-allo:before{content:"\F801"}.mdi-google-analytics:before{content:"\F7CB"}.mdi-google-assistant:before{content:"\F7CC"}.mdi-google-cardboard:before{content:"\F2AE"}.mdi-google-chrome:before{content:"\F2AF"}.mdi-google-circles:before{content:"\F2B0"}.mdi-google-circles-communities:before{content:"\F2B1"}.mdi-google-circles-extended:before{content:"\F2B2"}.mdi-google-circles-group:before{content:"\F2B3"}.mdi-google-controller:before{content:"\F2B4"}.mdi-google-controller-off:before{content:"\F2B5"}.mdi-google-drive:before{content:"\F2B6"}.mdi-google-earth:before{content:"\F2B7"}.mdi-google-fit:before{content:"\F96B"}.mdi-google-glass:before{content:"\F2B8"}.mdi-google-hangouts:before{content:"\F2C9"}.mdi-google-home:before{content:"\F823"}.mdi-google-keep:before{content:"\F6DB"}.mdi-google-lens:before{content:"\F9F5"}.mdi-google-maps:before{content:"\F5F5"}.mdi-google-nearby:before{content:"\F2B9"}.mdi-google-pages:before{content:"\F2BA"}.mdi-google-photos:before{content:"\F6DC"}.mdi-google-physical-web:before{content:"\F2BB"}.mdi-google-play:before{content:"\F2BC"}.mdi-google-plus:before{content:"\F2BD"}.mdi-google-plus-box:before{content:"\F2BE"}.mdi-google-spreadsheet:before{content:"\F9F6"}.mdi-google-translate:before{content:"\F2BF"}.mdi-google-wallet:before{content:"\F2C0"}.mdi-gpu:before{content:"\F8AD"}.mdi-gradient:before{content:"\F69F"}.mdi-graphql:before{content:"\F876"}.mdi-grave-stone:before{content:"\FB7E"}.mdi-grease-pencil:before{content:"\F648"}.mdi-greater-than:before{content:"\F96C"}.mdi-greater-than-or-equal:before{content:"\F96D"}.mdi-grid:before{content:"\F2C1"}.mdi-grid-large:before{content:"\F757"}.mdi-grid-off:before{content:"\F2C2"}.mdi-group:before{content:"\F2C3"}.mdi-guitar-acoustic:before{content:"\F770"}.mdi-guitar-electric:before{content:"\F2C4"}.mdi-guitar-pick:before{content:"\F2C5"}.mdi-guitar-pick-outline:before{content:"\F2C6"}.mdi-guy-fawkes-mask:before{content:"\F824"}.mdi-hackernews:before{content:"\F624"}.mdi-hail:before{content:"\FAC0"}.mdi-halloween:before{content:"\FB7F"}.mdi-hamburger:before{content:"\F684"}.mdi-hammer:before{content:"\F8E9"}.mdi-hand:before{content:"\FA4E"}.mdi-hand-okay:before{content:"\FA4F"}.mdi-hand-peace:before{content:"\FA50"}.mdi-hand-peace-variant:before{content:"\FA51"}.mdi-hand-pointing-down:before{content:"\FA52"}.mdi-hand-pointing-left:before{content:"\FA53"}.mdi-hand-pointing-right:before{content:"\F2C7"}.mdi-hand-pointing-up:before{content:"\FA54"}.mdi-hanger:before{content:"\F2C8"}.mdi-hard-hat:before{content:"\F96E"}.mdi-harddisk:before{content:"\F2CA"}.mdi-hat-fedora:before{content:"\FB80"}.mdi-headphones:before{content:"\F2CB"}.mdi-headphones-bluetooth:before{content:"\F96F"}.mdi-headphones-box:before{content:"\F2CC"}.mdi-headphones-off:before{content:"\F7CD"}.mdi-headphones-settings:before{content:"\F2CD"}.mdi-headset:before{content:"\F2CE"}.mdi-headset-dock:before{content:"\F2CF"}.mdi-headset-off:before{content:"\F2D0"}.mdi-heart:before{content:"\F2D1"}.mdi-heart-box:before{content:"\F2D2"}.mdi-heart-box-outline:before{content:"\F2D3"}.mdi-heart-broken:before{content:"\F2D4"}.mdi-heart-circle:before{content:"\F970"}.mdi-heart-circle-outline:before{content:"\F971"}.mdi-heart-half:before{content:"\F6DE"}.mdi-heart-half-full:before{content:"\F6DD"}.mdi-heart-half-outline:before{content:"\F6DF"}.mdi-heart-multiple:before{content:"\FA55"}.mdi-heart-multiple-outline:before{content:"\FA56"}.mdi-heart-off:before{content:"\F758"}.mdi-heart-outline:before{content:"\F2D5"}.mdi-heart-pulse:before{content:"\F5F6"}.mdi-helicopter:before{content:"\FAC1"}.mdi-help:before{content:"\F2D6"}.mdi-help-box:before{content:"\F78A"}.mdi-help-circle:before{content:"\F2D7"}.mdi-help-circle-outline:before{content:"\F625"}.mdi-help-network:before{content:"\F6F4"}.mdi-help-rhombus:before{content:"\FB81"}.mdi-help-rhombus-outline:before{content:"\FB82"}.mdi-hexagon:before{content:"\F2D8"}.mdi-hexagon-multiple:before{content:"\F6E0"}.mdi-hexagon-outline:before{content:"\F2D9"}.mdi-hexagon-slice-1:before{content:"\FAC2"}.mdi-hexagon-slice-2:before{content:"\FAC3"}.mdi-hexagon-slice-3:before{content:"\FAC4"}.mdi-hexagon-slice-4:before{content:"\FAC5"}.mdi-hexagon-slice-5:before{content:"\FAC6"}.mdi-hexagon-slice-6:before{content:"\FAC7"}.mdi-hexagram:before{content:"\FAC8"}.mdi-hexagram-outline:before{content:"\FAC9"}.mdi-high-definition:before{content:"\F7CE"}.mdi-high-definition-box:before{content:"\F877"}.mdi-highway:before{content:"\F5F7"}.mdi-hinduism:before{content:"\F972"}.mdi-history:before{content:"\F2DA"}.mdi-hockey-puck:before{content:"\F878"}.mdi-hockey-sticks:before{content:"\F879"}.mdi-hololens:before{content:"\F2DB"}.mdi-home:before{content:"\F2DC"}.mdi-home-account:before{content:"\F825"}.mdi-home-alert:before{content:"\F87A"}.mdi-home-assistant:before{content:"\F7CF"}.mdi-home-automation:before{content:"\F7D0"}.mdi-home-circle:before{content:"\F7D1"}.mdi-home-currency-usd:before{content:"\F8AE"}.mdi-home-heart:before{content:"\F826"}.mdi-home-lock:before{content:"\F8EA"}.mdi-home-lock-open:before{content:"\F8EB"}.mdi-home-map-marker:before{content:"\F5F8"}.mdi-home-minus:before{content:"\F973"}.mdi-home-modern:before{content:"\F2DD"}.mdi-home-outline:before{content:"\F6A0"}.mdi-home-plus:before{content:"\F974"}.mdi-home-variant:before{content:"\F2DE"}.mdi-home-variant-outline:before{content:"\FB83"}.mdi-hook:before{content:"\F6E1"}.mdi-hook-off:before{content:"\F6E2"}.mdi-hops:before{content:"\F2DF"}.mdi-horseshoe:before{content:"\FA57"}.mdi-hospital:before{content:"\F2E0"}.mdi-hospital-building:before{content:"\F2E1"}.mdi-hospital-marker:before{content:"\F2E2"}.mdi-hot-tub:before{content:"\F827"}.mdi-hotel:before{content:"\F2E3"}.mdi-houzz:before{content:"\F2E4"}.mdi-houzz-box:before{content:"\F2E5"}.mdi-hulu:before{content:"\F828"}.mdi-human:before{content:"\F2E6"}.mdi-human-child:before{content:"\F2E7"}.mdi-human-female:before{content:"\F649"}.mdi-human-female-boy:before{content:"\FA58"}.mdi-human-female-female:before{content:"\FA59"}.mdi-human-female-girl:before{content:"\FA5A"}.mdi-human-greeting:before{content:"\F64A"}.mdi-human-handsdown:before{content:"\F64B"}.mdi-human-handsup:before{content:"\F64C"}.mdi-human-male:before{content:"\F64D"}.mdi-human-male-boy:before{content:"\FA5B"}.mdi-human-male-female:before{content:"\F2E8"}.mdi-human-male-girl:before{content:"\FA5C"}.mdi-human-male-male:before{content:"\FA5D"}.mdi-human-pregnant:before{content:"\F5CF"}.mdi-humble-bundle:before{content:"\F743"}.mdi-ice-cream:before{content:"\F829"}.mdi-image:before{content:"\F2E9"}.mdi-image-album:before{content:"\F2EA"}.mdi-image-area:before{content:"\F2EB"}.mdi-image-area-close:before{content:"\F2EC"}.mdi-image-broken:before{content:"\F2ED"}.mdi-image-broken-variant:before{content:"\F2EE"}.mdi-image-filter:before{content:"\F2EF"}.mdi-image-filter-black-white:before{content:"\F2F0"}.mdi-image-filter-center-focus:before{content:"\F2F1"}.mdi-image-filter-center-focus-weak:before{content:"\F2F2"}.mdi-image-filter-drama:before{content:"\F2F3"}.mdi-image-filter-frames:before{content:"\F2F4"}.mdi-image-filter-hdr:before{content:"\F2F5"}.mdi-image-filter-none:before{content:"\F2F6"}.mdi-image-filter-tilt-shift:before{content:"\F2F7"}.mdi-image-filter-vintage:before{content:"\F2F8"}.mdi-image-move:before{content:"\F9F7"}.mdi-image-multiple:before{content:"\F2F9"}.mdi-image-off:before{content:"\F82A"}.mdi-image-outline:before{content:"\F975"}.mdi-image-plus:before{content:"\F87B"}.mdi-image-search:before{content:"\F976"}.mdi-image-search-outline:before{content:"\F977"}.mdi-import:before{content:"\F2FA"}.mdi-inbox:before{content:"\F686"}.mdi-inbox-arrow-down:before{content:"\F2FB"}.mdi-inbox-arrow-up:before{content:"\F3D1"}.mdi-inbox-multiple:before{content:"\F8AF"}.mdi-inbox-multiple-outline:before{content:"\FB84"}.mdi-incognito:before{content:"\F5F9"}.mdi-infinity:before{content:"\F6E3"}.mdi-information:before{content:"\F2FC"}.mdi-information-outline:before{content:"\F2FD"}.mdi-information-variant:before{content:"\F64E"}.mdi-instagram:before{content:"\F2FE"}.mdi-instapaper:before{content:"\F2FF"}.mdi-internet-explorer:before{content:"\F300"}.mdi-invert-colors:before{content:"\F301"}.mdi-ip:before{content:"\FA5E"}.mdi-ip-network:before{content:"\FA5F"}.mdi-islam:before{content:"\F978"}.mdi-itunes:before{content:"\F676"}.mdi-jeepney:before{content:"\F302"}.mdi-jira:before{content:"\F303"}.mdi-jquery:before{content:"\F87C"}.mdi-jsfiddle:before{content:"\F304"}.mdi-json:before{content:"\F626"}.mdi-judaism:before{content:"\F979"}.mdi-karate:before{content:"\F82B"}.mdi-keg:before{content:"\F305"}.mdi-kettle:before{content:"\F5FA"}.mdi-key:before{content:"\F306"}.mdi-key-change:before{content:"\F307"}.mdi-key-minus:before{content:"\F308"}.mdi-key-plus:before{content:"\F309"}.mdi-key-remove:before{content:"\F30A"}.mdi-key-variant:before{content:"\F30B"}.mdi-keyboard:before{content:"\F30C"}.mdi-keyboard-backspace:before{content:"\F30D"}.mdi-keyboard-caps:before{content:"\F30E"}.mdi-keyboard-close:before{content:"\F30F"}.mdi-keyboard-off:before{content:"\F310"}.mdi-keyboard-outline:before{content:"\F97A"}.mdi-keyboard-return:before{content:"\F311"}.mdi-keyboard-settings:before{content:"\F9F8"}.mdi-keyboard-settings-outline:before{content:"\F9F9"}.mdi-keyboard-tab:before{content:"\F312"}.mdi-keyboard-variant:before{content:"\F313"}.mdi-kickstarter:before{content:"\F744"}.mdi-knife:before{content:"\F9FA"}.mdi-knife-military:before{content:"\F9FB"}.mdi-kodi:before{content:"\F314"}.mdi-label:before{content:"\F315"}.mdi-label-off:before{content:"\FACA"}.mdi-label-off-outline:before{content:"\FACB"}.mdi-label-outline:before{content:"\F316"}.mdi-label-variant:before{content:"\FACC"}.mdi-label-variant-outline:before{content:"\FACD"}.mdi-ladybug:before{content:"\F82C"}.mdi-lambda:before{content:"\F627"}.mdi-lamp:before{content:"\F6B4"}.mdi-lan:before{content:"\F317"}.mdi-lan-connect:before{content:"\F318"}.mdi-lan-disconnect:before{content:"\F319"}.mdi-lan-pending:before{content:"\F31A"}.mdi-language-c:before{content:"\F671"}.mdi-language-cpp:before{content:"\F672"}.mdi-language-csharp:before{content:"\F31B"}.mdi-language-css3:before{content:"\F31C"}.mdi-language-go:before{content:"\F7D2"}.mdi-language-html5:before{content:"\F31D"}.mdi-language-java:before{content:"\FB1C"}.mdi-language-javascript:before{content:"\F31E"}.mdi-language-lua:before{content:"\F8B0"}.mdi-language-php:before{content:"\F31F"}.mdi-language-python:before{content:"\F320"}.mdi-language-python-text:before{content:"\F321"}.mdi-language-r:before{content:"\F7D3"}.mdi-language-ruby-on-rails:before{content:"\FACE"}.mdi-language-swift:before{content:"\F6E4"}.mdi-language-typescript:before{content:"\F6E5"}.mdi-laptop:before{content:"\F322"}.mdi-laptop-chromebook:before{content:"\F323"}.mdi-laptop-mac:before{content:"\F324"}.mdi-laptop-off:before{content:"\F6E6"}.mdi-laptop-windows:before{content:"\F325"}.mdi-laravel:before{content:"\FACF"}.mdi-lastfm:before{content:"\F326"}.mdi-lastpass:before{content:"\F446"}.mdi-launch:before{content:"\F327"}.mdi-lava-lamp:before{content:"\F7D4"}.mdi-layers:before{content:"\F328"}.mdi-layers-off:before{content:"\F329"}.mdi-layers-off-outline:before{content:"\F9FC"}.mdi-layers-outline:before{content:"\F9FD"}.mdi-lead-pencil:before{content:"\F64F"}.mdi-leaf:before{content:"\F32A"}.mdi-led-off:before{content:"\F32B"}.mdi-led-on:before{content:"\F32C"}.mdi-led-outline:before{content:"\F32D"}.mdi-led-strip:before{content:"\F7D5"}.mdi-led-variant-off:before{content:"\F32E"}.mdi-led-variant-on:before{content:"\F32F"}.mdi-led-variant-outline:before{content:"\F330"}.mdi-less-than:before{content:"\F97B"}.mdi-less-than-or-equal:before{content:"\F97C"}.mdi-library:before{content:"\F331"}.mdi-library-books:before{content:"\F332"}.mdi-library-music:before{content:"\F333"}.mdi-library-plus:before{content:"\F334"}.mdi-library-shelves:before{content:"\FB85"}.mdi-lifebuoy:before{content:"\F87D"}.mdi-light-switch:before{content:"\F97D"}.mdi-lightbulb:before{content:"\F335"}.mdi-lightbulb-on:before{content:"\F6E7"}.mdi-lightbulb-on-outline:before{content:"\F6E8"}.mdi-lightbulb-outline:before{content:"\F336"}.mdi-lighthouse:before{content:"\F9FE"}.mdi-lighthouse-on:before{content:"\F9FF"}.mdi-link:before{content:"\F337"}.mdi-link-off:before{content:"\F338"}.mdi-link-variant:before{content:"\F339"}.mdi-link-variant-off:before{content:"\F33A"}.mdi-linkedin:before{content:"\F33B"}.mdi-linkedin-box:before{content:"\F33C"}.mdi-linux:before{content:"\F33D"}.mdi-linux-mint:before{content:"\F8EC"}.mdi-litecoin:before{content:"\FA60"}.mdi-loading:before{content:"\F771"}.mdi-lock:before{content:"\F33E"}.mdi-lock-alert:before{content:"\F8ED"}.mdi-lock-clock:before{content:"\F97E"}.mdi-lock-open:before{content:"\F33F"}.mdi-lock-open-outline:before{content:"\F340"}.mdi-lock-outline:before{content:"\F341"}.mdi-lock-pattern:before{content:"\F6E9"}.mdi-lock-plus:before{content:"\F5FB"}.mdi-lock-question:before{content:"\F8EE"}.mdi-lock-reset:before{content:"\F772"}.mdi-lock-smart:before{content:"\F8B1"}.mdi-locker:before{content:"\F7D6"}.mdi-locker-multiple:before{content:"\F7D7"}.mdi-login:before{content:"\F342"}.mdi-login-variant:before{content:"\F5FC"}.mdi-logout:before{content:"\F343"}.mdi-logout-variant:before{content:"\F5FD"}.mdi-looks:before{content:"\F344"}.mdi-loop:before{content:"\F6EA"}.mdi-loupe:before{content:"\F345"}.mdi-lumx:before{content:"\F346"}.mdi-lyft:before{content:"\FB1D"}.mdi-magnet:before{content:"\F347"}.mdi-magnet-on:before{content:"\F348"}.mdi-magnify:before{content:"\F349"}.mdi-magnify-close:before{content:"\F97F"}.mdi-magnify-minus:before{content:"\F34A"}.mdi-magnify-minus-cursor:before{content:"\FA61"}.mdi-magnify-minus-outline:before{content:"\F6EB"}.mdi-magnify-plus:before{content:"\F34B"}.mdi-magnify-plus-cursor:before{content:"\FA62"}.mdi-magnify-plus-outline:before{content:"\F6EC"}.mdi-mail-ru:before{content:"\F34C"}.mdi-mailbox:before{content:"\F6ED"}.mdi-map:before{content:"\F34D"}.mdi-map-legend:before{content:"\FA00"}.mdi-map-marker:before{content:"\F34E"}.mdi-map-marker-circle:before{content:"\F34F"}.mdi-map-marker-distance:before{content:"\F8EF"}.mdi-map-marker-minus:before{content:"\F650"}.mdi-map-marker-multiple:before{content:"\F350"}.mdi-map-marker-off:before{content:"\F351"}.mdi-map-marker-outline:before{content:"\F7D8"}.mdi-map-marker-plus:before{content:"\F651"}.mdi-map-marker-radius:before{content:"\F352"}.mdi-map-minus:before{content:"\F980"}.mdi-map-outline:before{content:"\F981"}.mdi-map-plus:before{content:"\F982"}.mdi-map-search:before{content:"\F983"}.mdi-map-search-outline:before{content:"\F984"}.mdi-mapbox:before{content:"\FB86"}.mdi-margin:before{content:"\F353"}.mdi-markdown:before{content:"\F354"}.mdi-marker:before{content:"\F652"}.mdi-marker-check:before{content:"\F355"}.mdi-mastodon:before{content:"\FAD0"}.mdi-mastodon-variant:before{content:"\FAD1"}.mdi-material-design:before{content:"\F985"}.mdi-material-ui:before{content:"\F357"}.mdi-math-compass:before{content:"\F358"}.mdi-matrix:before{content:"\F628"}.mdi-maxcdn:before{content:"\F359"}.mdi-medal:before{content:"\F986"}.mdi-medical-bag:before{content:"\F6EE"}.mdi-medium:before{content:"\F35A"}.mdi-meetup:before{content:"\FAD2"}.mdi-memory:before{content:"\F35B"}.mdi-menu:before{content:"\F35C"}.mdi-menu-down:before{content:"\F35D"}.mdi-menu-down-outline:before{content:"\F6B5"}.mdi-menu-left:before{content:"\F35E"}.mdi-menu-left-outline:before{content:"\FA01"}.mdi-menu-open:before{content:"\FB87"}.mdi-menu-right:before{content:"\F35F"}.mdi-menu-right-outline:before{content:"\FA02"}.mdi-menu-swap:before{content:"\FA63"}.mdi-menu-swap-outline:before{content:"\FA64"}.mdi-menu-up:before{content:"\F360"}.mdi-menu-up-outline:before{content:"\F6B6"}.mdi-message:before{content:"\F361"}.mdi-message-alert:before{content:"\F362"}.mdi-message-alert-outline:before{content:"\FA03"}.mdi-message-bulleted:before{content:"\F6A1"}.mdi-message-bulleted-off:before{content:"\F6A2"}.mdi-message-draw:before{content:"\F363"}.mdi-message-image:before{content:"\F364"}.mdi-message-outline:before{content:"\F365"}.mdi-message-plus:before{content:"\F653"}.mdi-message-processing:before{content:"\F366"}.mdi-message-reply:before{content:"\F367"}.mdi-message-reply-text:before{content:"\F368"}.mdi-message-settings:before{content:"\F6EF"}.mdi-message-settings-variant:before{content:"\F6F0"}.mdi-message-text:before{content:"\F369"}.mdi-message-text-outline:before{content:"\F36A"}.mdi-message-video:before{content:"\F36B"}.mdi-meteor:before{content:"\F629"}.mdi-metronome:before{content:"\F7D9"}.mdi-metronome-tick:before{content:"\F7DA"}.mdi-micro-sd:before{content:"\F7DB"}.mdi-microphone:before{content:"\F36C"}.mdi-microphone-minus:before{content:"\F8B2"}.mdi-microphone-off:before{content:"\F36D"}.mdi-microphone-outline:before{content:"\F36E"}.mdi-microphone-plus:before{content:"\F8B3"}.mdi-microphone-settings:before{content:"\F36F"}.mdi-microphone-variant:before{content:"\F370"}.mdi-microphone-variant-off:before{content:"\F371"}.mdi-microscope:before{content:"\F654"}.mdi-microsoft:before{content:"\F372"}.mdi-microsoft-dynamics:before{content:"\F987"}.mdi-midi:before{content:"\F8F0"}.mdi-midi-port:before{content:"\F8F1"}.mdi-minecraft:before{content:"\F373"}.mdi-mini-sd:before{content:"\FA04"}.mdi-minidisc:before{content:"\FA05"}.mdi-minus:before{content:"\F374"}.mdi-minus-box:before{content:"\F375"}.mdi-minus-box-outline:before{content:"\F6F1"}.mdi-minus-circle:before{content:"\F376"}.mdi-minus-circle-outline:before{content:"\F377"}.mdi-minus-network:before{content:"\F378"}.mdi-mixcloud:before{content:"\F62A"}.mdi-mixed-reality:before{content:"\F87E"}.mdi-mixer:before{content:"\F7DC"}.mdi-molecule:before{content:"\FB88"}.mdi-monitor:before{content:"\F379"}.mdi-monitor-cellphone:before{content:"\F988"}.mdi-monitor-cellphone-star:before{content:"\F989"}.mdi-monitor-dashboard:before{content:"\FA06"}.mdi-monitor-multiple:before{content:"\F37A"}.mdi-more:before{content:"\F37B"}.mdi-motorbike:before{content:"\F37C"}.mdi-mouse:before{content:"\F37D"}.mdi-mouse-bluetooth:before{content:"\F98A"}.mdi-mouse-off:before{content:"\F37E"}.mdi-mouse-variant:before{content:"\F37F"}.mdi-mouse-variant-off:before{content:"\F380"}.mdi-move-resize:before{content:"\F655"}.mdi-move-resize-variant:before{content:"\F656"}.mdi-movie:before{content:"\F381"}.mdi-movie-roll:before{content:"\F7DD"}.mdi-muffin:before{content:"\F98B"}.mdi-multiplication:before{content:"\F382"}.mdi-multiplication-box:before{content:"\F383"}.mdi-mushroom:before{content:"\F7DE"}.mdi-mushroom-outline:before{content:"\F7DF"}.mdi-music:before{content:"\F759"}.mdi-music-box:before{content:"\F384"}.mdi-music-box-outline:before{content:"\F385"}.mdi-music-circle:before{content:"\F386"}.mdi-music-circle-outline:before{content:"\FAD3"}.mdi-music-note:before{content:"\F387"}.mdi-music-note-bluetooth:before{content:"\F5FE"}.mdi-music-note-bluetooth-off:before{content:"\F5FF"}.mdi-music-note-eighth:before{content:"\F388"}.mdi-music-note-half:before{content:"\F389"}.mdi-music-note-off:before{content:"\F38A"}.mdi-music-note-quarter:before{content:"\F38B"}.mdi-music-note-sixteenth:before{content:"\F38C"}.mdi-music-note-whole:before{content:"\F38D"}.mdi-music-off:before{content:"\F75A"}.mdi-nas:before{content:"\F8F2"}.mdi-nativescript:before{content:"\F87F"}.mdi-nature:before{content:"\F38E"}.mdi-nature-people:before{content:"\F38F"}.mdi-navigation:before{content:"\F390"}.mdi-near-me:before{content:"\F5CD"}.mdi-needle:before{content:"\F391"}.mdi-netflix:before{content:"\F745"}.mdi-network:before{content:"\F6F2"}.mdi-network-strength-1:before{content:"\F8F3"}.mdi-network-strength-1-alert:before{content:"\F8F4"}.mdi-network-strength-2:before{content:"\F8F5"}.mdi-network-strength-2-alert:before{content:"\F8F6"}.mdi-network-strength-3:before{content:"\F8F7"}.mdi-network-strength-3-alert:before{content:"\F8F8"}.mdi-network-strength-4:before{content:"\F8F9"}.mdi-network-strength-4-alert:before{content:"\F8FA"}.mdi-network-strength-off:before{content:"\F8FB"}.mdi-network-strength-off-outline:before{content:"\F8FC"}.mdi-network-strength-outline:before{content:"\F8FD"}.mdi-new-box:before{content:"\F394"}.mdi-newspaper:before{content:"\F395"}.mdi-nfc:before{content:"\F396"}.mdi-nfc-tap:before{content:"\F397"}.mdi-nfc-variant:before{content:"\F398"}.mdi-ninja:before{content:"\F773"}.mdi-nintendo-switch:before{content:"\F7E0"}.mdi-nodejs:before{content:"\F399"}.mdi-not-equal:before{content:"\F98C"}.mdi-not-equal-variant:before{content:"\F98D"}.mdi-note:before{content:"\F39A"}.mdi-note-multiple:before{content:"\F6B7"}.mdi-note-multiple-outline:before{content:"\F6B8"}.mdi-note-outline:before{content:"\F39B"}.mdi-note-plus:before{content:"\F39C"}.mdi-note-plus-outline:before{content:"\F39D"}.mdi-note-text:before{content:"\F39E"}.mdi-notebook:before{content:"\F82D"}.mdi-notification-clear-all:before{content:"\F39F"}.mdi-npm:before{content:"\F6F6"}.mdi-npm-variant:before{content:"\F98E"}.mdi-npm-variant-outline:before{content:"\F98F"}.mdi-nuke:before{content:"\F6A3"}.mdi-null:before{content:"\F7E1"}.mdi-numeric:before{content:"\F3A0"}.mdi-numeric-0:before{content:"\30"}.mdi-numeric-0-box:before{content:"\F3A1"}.mdi-numeric-0-box-multiple-outline:before{content:"\F3A2"}.mdi-numeric-0-box-outline:before{content:"\F3A3"}.mdi-numeric-1:before{content:"\31"}.mdi-numeric-1-box:before{content:"\F3A4"}.mdi-numeric-1-box-multiple-outline:before{content:"\F3A5"}.mdi-numeric-1-box-outline:before{content:"\F3A6"}.mdi-numeric-2:before{content:"\32"}.mdi-numeric-2-box:before{content:"\F3A7"}.mdi-numeric-2-box-multiple-outline:before{content:"\F3A8"}.mdi-numeric-2-box-outline:before{content:"\F3A9"}.mdi-numeric-3:before{content:"\33"}.mdi-numeric-3-box:before{content:"\F3AA"}.mdi-numeric-3-box-multiple-outline:before{content:"\F3AB"}.mdi-numeric-3-box-outline:before{content:"\F3AC"}.mdi-numeric-4:before{content:"\34"}.mdi-numeric-4-box:before{content:"\F3AD"}.mdi-numeric-4-box-multiple-outline:before{content:"\F3AE"}.mdi-numeric-4-box-outline:before{content:"\F3AF"}.mdi-numeric-5:before{content:"\35"}.mdi-numeric-5-box:before{content:"\F3B0"}.mdi-numeric-5-box-multiple-outline:before{content:"\F3B1"}.mdi-numeric-5-box-outline:before{content:"\F3B2"}.mdi-numeric-6:before{content:"\36"}.mdi-numeric-6-box:before{content:"\F3B3"}.mdi-numeric-6-box-multiple-outline:before{content:"\F3B4"}.mdi-numeric-6-box-outline:before{content:"\F3B5"}.mdi-numeric-7:before{content:"\37"}.mdi-numeric-7-box:before{content:"\F3B6"}.mdi-numeric-7-box-multiple-outline:before{content:"\F3B7"}.mdi-numeric-7-box-outline:before{content:"\F3B8"}.mdi-numeric-8:before{content:"\38"}.mdi-numeric-8-box:before{content:"\F3B9"}.mdi-numeric-8-box-multiple-outline:before{content:"\F3BA"}.mdi-numeric-8-box-outline:before{content:"\F3BB"}.mdi-numeric-9:before{content:"\39"}.mdi-numeric-9-box:before{content:"\F3BC"}.mdi-numeric-9-box-multiple-outline:before{content:"\F3BD"}.mdi-numeric-9-box-outline:before{content:"\F3BE"}.mdi-numeric-9-plus-box:before{content:"\F3BF"}.mdi-numeric-9-plus-box-multiple-outline:before{content:"\F3C0"}.mdi-numeric-9-plus-box-outline:before{content:"\F3C1"}.mdi-nut:before{content:"\F6F7"}.mdi-nutrition:before{content:"\F3C2"}.mdi-oar:before{content:"\F67B"}.mdi-octagon:before{content:"\F3C3"}.mdi-octagon-outline:before{content:"\F3C4"}.mdi-octagram:before{content:"\F6F8"}.mdi-octagram-outline:before{content:"\F774"}.mdi-odnoklassniki:before{content:"\F3C5"}.mdi-office:before{content:"\F3C6"}.mdi-office-building:before{content:"\F990"}.mdi-oil:before{content:"\F3C7"}.mdi-oil-temperature:before{content:"\F3C8"}.mdi-omega:before{content:"\F3C9"}.mdi-one-up:before{content:"\FB89"}.mdi-onedrive:before{content:"\F3CA"}.mdi-onenote:before{content:"\F746"}.mdi-onepassword:before{content:"\F880"}.mdi-opacity:before{content:"\F5CC"}.mdi-open-in-app:before{content:"\F3CB"}.mdi-open-in-new:before{content:"\F3CC"}.mdi-open-source-initiative:before{content:"\FB8A"}.mdi-openid:before{content:"\F3CD"}.mdi-opera:before{content:"\F3CE"}.mdi-orbit:before{content:"\F018"}.mdi-origin:before{content:"\FB2B"}.mdi-ornament:before{content:"\F3CF"}.mdi-ornament-variant:before{content:"\F3D0"}.mdi-owl:before{content:"\F3D2"}.mdi-pac-man:before{content:"\FB8B"}.mdi-package:before{content:"\F3D3"}.mdi-package-down:before{content:"\F3D4"}.mdi-package-up:before{content:"\F3D5"}.mdi-package-variant:before{content:"\F3D6"}.mdi-package-variant-closed:before{content:"\F3D7"}.mdi-page-first:before{content:"\F600"}.mdi-page-last:before{content:"\F601"}.mdi-page-layout-body:before{content:"\F6F9"}.mdi-page-layout-footer:before{content:"\F6FA"}.mdi-page-layout-header:before{content:"\F6FB"}.mdi-page-layout-sidebar-left:before{content:"\F6FC"}.mdi-page-layout-sidebar-right:before{content:"\F6FD"}.mdi-page-next:before{content:"\FB8C"}.mdi-page-next-outline:before{content:"\FB8D"}.mdi-page-previous:before{content:"\FB8E"}.mdi-page-previous-outline:before{content:"\FB8F"}.mdi-palette:before{content:"\F3D8"}.mdi-palette-advanced:before{content:"\F3D9"}.mdi-palette-swatch:before{content:"\F8B4"}.mdi-pan:before{content:"\FB90"}.mdi-pan-bottom-left:before{content:"\FB91"}.mdi-pan-bottom-right:before{content:"\FB92"}.mdi-pan-down:before{content:"\FB93"}.mdi-pan-horizontal:before{content:"\FB94"}.mdi-pan-left:before{content:"\FB95"}.mdi-pan-right:before{content:"\FB96"}.mdi-pan-top-left:before{content:"\FB97"}.mdi-pan-top-right:before{content:"\FB98"}.mdi-pan-up:before{content:"\FB99"}.mdi-pan-vertical:before{content:"\FB9A"}.mdi-panda:before{content:"\F3DA"}.mdi-pandora:before{content:"\F3DB"}.mdi-panorama:before{content:"\F3DC"}.mdi-panorama-fisheye:before{content:"\F3DD"}.mdi-panorama-horizontal:before{content:"\F3DE"}.mdi-panorama-vertical:before{content:"\F3DF"}.mdi-panorama-wide-angle:before{content:"\F3E0"}.mdi-paper-cut-vertical:before{content:"\F3E1"}.mdi-paperclip:before{content:"\F3E2"}.mdi-parking:before{content:"\F3E3"}.mdi-passport:before{content:"\F7E2"}.mdi-patreon:before{content:"\F881"}.mdi-pause:before{content:"\F3E4"}.mdi-pause-circle:before{content:"\F3E5"}.mdi-pause-circle-outline:before{content:"\F3E6"}.mdi-pause-octagon:before{content:"\F3E7"}.mdi-pause-octagon-outline:before{content:"\F3E8"}.mdi-paw:before{content:"\F3E9"}.mdi-paw-off:before{content:"\F657"}.mdi-paypal:before{content:"\F882"}.mdi-peace:before{content:"\F883"}.mdi-pen:before{content:"\F3EA"}.mdi-pencil:before{content:"\F3EB"}.mdi-pencil-box:before{content:"\F3EC"}.mdi-pencil-box-outline:before{content:"\F3ED"}.mdi-pencil-circle:before{content:"\F6FE"}.mdi-pencil-circle-outline:before{content:"\F775"}.mdi-pencil-lock:before{content:"\F3EE"}.mdi-pencil-off:before{content:"\F3EF"}.mdi-pentagon:before{content:"\F6FF"}.mdi-pentagon-outline:before{content:"\F700"}.mdi-percent:before{content:"\F3F0"}.mdi-periodic-table:before{content:"\F8B5"}.mdi-periodic-table-co2:before{content:"\F7E3"}.mdi-periscope:before{content:"\F747"}.mdi-pharmacy:before{content:"\F3F1"}.mdi-phone:before{content:"\F3F2"}.mdi-phone-bluetooth:before{content:"\F3F3"}.mdi-phone-classic:before{content:"\F602"}.mdi-phone-forward:before{content:"\F3F4"}.mdi-phone-hangup:before{content:"\F3F5"}.mdi-phone-in-talk:before{content:"\F3F6"}.mdi-phone-incoming:before{content:"\F3F7"}.mdi-phone-lock:before{content:"\F3F8"}.mdi-phone-log:before{content:"\F3F9"}.mdi-phone-minus:before{content:"\F658"}.mdi-phone-missed:before{content:"\F3FA"}.mdi-phone-outgoing:before{content:"\F3FB"}.mdi-phone-paused:before{content:"\F3FC"}.mdi-phone-plus:before{content:"\F659"}.mdi-phone-return:before{content:"\F82E"}.mdi-phone-rotate-landscape:before{content:"\F884"}.mdi-phone-rotate-portrait:before{content:"\F885"}.mdi-phone-settings:before{content:"\F3FD"}.mdi-phone-voip:before{content:"\F3FE"}.mdi-pi:before{content:"\F3FF"}.mdi-pi-box:before{content:"\F400"}.mdi-piano:before{content:"\F67C"}.mdi-pickaxe:before{content:"\F8B6"}.mdi-pier:before{content:"\F886"}.mdi-pier-crane:before{content:"\F887"}.mdi-pig:before{content:"\F401"}.mdi-pill:before{content:"\F402"}.mdi-pillar:before{content:"\F701"}.mdi-pin:before{content:"\F403"}.mdi-pin-off:before{content:"\F404"}.mdi-pin-off-outline:before{content:"\F92F"}.mdi-pin-outline:before{content:"\F930"}.mdi-pine-tree:before{content:"\F405"}.mdi-pine-tree-box:before{content:"\F406"}.mdi-pinterest:before{content:"\F407"}.mdi-pinterest-box:before{content:"\F408"}.mdi-pinwheel:before{content:"\FAD4"}.mdi-pinwheel-outline:before{content:"\FAD5"}.mdi-pipe:before{content:"\F7E4"}.mdi-pipe-disconnected:before{content:"\F7E5"}.mdi-pipe-leak:before{content:"\F888"}.mdi-pirate:before{content:"\FA07"}.mdi-pistol:before{content:"\F702"}.mdi-piston:before{content:"\F889"}.mdi-pizza:before{content:"\F409"}.mdi-plane-shield:before{content:"\F6BA"}.mdi-play:before{content:"\F40A"}.mdi-play-box-outline:before{content:"\F40B"}.mdi-play-circle:before{content:"\F40C"}.mdi-play-circle-outline:before{content:"\F40D"}.mdi-play-network:before{content:"\F88A"}.mdi-play-pause:before{content:"\F40E"}.mdi-play-protected-content:before{content:"\F40F"}.mdi-play-speed:before{content:"\F8FE"}.mdi-playlist-check:before{content:"\F5C7"}.mdi-playlist-edit:before{content:"\F8FF"}.mdi-playlist-minus:before{content:"\F410"}.mdi-playlist-play:before{content:"\F411"}.mdi-playlist-plus:before{content:"\F412"}.mdi-playlist-remove:before{content:"\F413"}.mdi-playstation:before{content:"\F414"}.mdi-plex:before{content:"\F6B9"}.mdi-plus:before{content:"\F415"}.mdi-plus-box:before{content:"\F416"}.mdi-plus-box-outline:before{content:"\F703"}.mdi-plus-circle:before{content:"\F417"}.mdi-plus-circle-multiple-outline:before{content:"\F418"}.mdi-plus-circle-outline:before{content:"\F419"}.mdi-plus-minus:before{content:"\F991"}.mdi-plus-minus-box:before{content:"\F992"}.mdi-plus-network:before{content:"\F41A"}.mdi-plus-one:before{content:"\F41B"}.mdi-plus-outline:before{content:"\F704"}.mdi-pocket:before{content:"\F41C"}.mdi-podcast:before{content:"\F993"}.mdi-pokeball:before{content:"\F41D"}.mdi-pokemon-go:before{content:"\FA08"}.mdi-poker-chip:before{content:"\F82F"}.mdi-polaroid:before{content:"\F41E"}.mdi-poll:before{content:"\F41F"}.mdi-poll-box:before{content:"\F420"}.mdi-polymer:before{content:"\F421"}.mdi-pool:before{content:"\F606"}.mdi-popcorn:before{content:"\F422"}.mdi-pot:before{content:"\F65A"}.mdi-pot-mix:before{content:"\F65B"}.mdi-pound:before{content:"\F423"}.mdi-pound-box:before{content:"\F424"}.mdi-power:before{content:"\F425"}.mdi-power-cycle:before{content:"\F900"}.mdi-power-off:before{content:"\F901"}.mdi-power-on:before{content:"\F902"}.mdi-power-plug:before{content:"\F6A4"}.mdi-power-plug-off:before{content:"\F6A5"}.mdi-power-settings:before{content:"\F426"}.mdi-power-sleep:before{content:"\F903"}.mdi-power-socket:before{content:"\F427"}.mdi-power-socket-au:before{content:"\F904"}.mdi-power-socket-eu:before{content:"\F7E6"}.mdi-power-socket-uk:before{content:"\F7E7"}.mdi-power-socket-us:before{content:"\F7E8"}.mdi-power-standby:before{content:"\F905"}.mdi-powershell:before{content:"\FA09"}.mdi-prescription:before{content:"\F705"}.mdi-presentation:before{content:"\F428"}.mdi-presentation-play:before{content:"\F429"}.mdi-printer:before{content:"\F42A"}.mdi-printer-3d:before{content:"\F42B"}.mdi-printer-alert:before{content:"\F42C"}.mdi-printer-settings:before{content:"\F706"}.mdi-printer-wireless:before{content:"\FA0A"}.mdi-priority-high:before{content:"\F603"}.mdi-priority-low:before{content:"\F604"}.mdi-professional-hexagon:before{content:"\F42D"}.mdi-progress-check:before{content:"\F994"}.mdi-progress-clock:before{content:"\F995"}.mdi-progress-download:before{content:"\F996"}.mdi-progress-upload:before{content:"\F997"}.mdi-projector:before{content:"\F42E"}.mdi-projector-screen:before{content:"\F42F"}.mdi-publish:before{content:"\F6A6"}.mdi-pulse:before{content:"\F430"}.mdi-pumpkin:before{content:"\FB9B"}.mdi-puzzle:before{content:"\F431"}.mdi-puzzle-outline:before{content:"\FA65"}.mdi-qi:before{content:"\F998"}.mdi-qqchat:before{content:"\F605"}.mdi-qrcode:before{content:"\F432"}.mdi-qrcode-edit:before{content:"\F8B7"}.mdi-qrcode-scan:before{content:"\F433"}.mdi-quadcopter:before{content:"\F434"}.mdi-quality-high:before{content:"\F435"}.mdi-quality-low:before{content:"\FA0B"}.mdi-quality-medium:before{content:"\FA0C"}.mdi-quicktime:before{content:"\F436"}.mdi-rabbit:before{content:"\F906"}.mdi-radar:before{content:"\F437"}.mdi-radiator:before{content:"\F438"}.mdi-radiator-disabled:before{content:"\FAD6"}.mdi-radiator-off:before{content:"\FAD7"}.mdi-radio:before{content:"\F439"}.mdi-radio-handheld:before{content:"\F43A"}.mdi-radio-tower:before{content:"\F43B"}.mdi-radioactive:before{content:"\F43C"}.mdi-radiobox-blank:before{content:"\F43D"}.mdi-radiobox-marked:before{content:"\F43E"}.mdi-raspberrypi:before{content:"\F43F"}.mdi-ray-end:before{content:"\F440"}.mdi-ray-end-arrow:before{content:"\F441"}.mdi-ray-start:before{content:"\F442"}.mdi-ray-start-arrow:before{content:"\F443"}.mdi-ray-start-end:before{content:"\F444"}.mdi-ray-vertex:before{content:"\F445"}.mdi-react:before{content:"\F707"}.mdi-read:before{content:"\F447"}.mdi-receipt:before{content:"\F449"}.mdi-record:before{content:"\F44A"}.mdi-record-player:before{content:"\F999"}.mdi-record-rec:before{content:"\F44B"}.mdi-recycle:before{content:"\F44C"}.mdi-reddit:before{content:"\F44D"}.mdi-redo:before{content:"\F44E"}.mdi-redo-variant:before{content:"\F44F"}.mdi-reflect-horizontal:before{content:"\FA0D"}.mdi-reflect-vertical:before{content:"\FA0E"}.mdi-refresh:before{content:"\F450"}.mdi-regex:before{content:"\F451"}.mdi-registered-trademark:before{content:"\FA66"}.mdi-relative-scale:before{content:"\F452"}.mdi-reload:before{content:"\F453"}.mdi-reminder:before{content:"\F88B"}.mdi-remote:before{content:"\F454"}.mdi-remote-desktop:before{content:"\F8B8"}.mdi-rename-box:before{content:"\F455"}.mdi-reorder-horizontal:before{content:"\F687"}.mdi-reorder-vertical:before{content:"\F688"}.mdi-repeat:before{content:"\F456"}.mdi-repeat-off:before{content:"\F457"}.mdi-repeat-once:before{content:"\F458"}.mdi-replay:before{content:"\F459"}.mdi-reply:before{content:"\F45A"}.mdi-reply-all:before{content:"\F45B"}.mdi-reproduction:before{content:"\F45C"}.mdi-resistor:before{content:"\FB1F"}.mdi-resistor-nodes:before{content:"\FB20"}.mdi-resize:before{content:"\FA67"}.mdi-resize-bottom-right:before{content:"\F45D"}.mdi-responsive:before{content:"\F45E"}.mdi-restart:before{content:"\F708"}.mdi-restore:before{content:"\F99A"}.mdi-restore-clock:before{content:"\F6A7"}.mdi-rewind:before{content:"\F45F"}.mdi-rewind-outline:before{content:"\F709"}.mdi-rhombus:before{content:"\F70A"}.mdi-rhombus-medium:before{content:"\FA0F"}.mdi-rhombus-outline:before{content:"\F70B"}.mdi-rhombus-split:before{content:"\FA10"}.mdi-ribbon:before{content:"\F460"}.mdi-rice:before{content:"\F7E9"}.mdi-ring:before{content:"\F7EA"}.mdi-road:before{content:"\F461"}.mdi-road-variant:before{content:"\F462"}.mdi-robot:before{content:"\F6A8"}.mdi-robot-industrial:before{content:"\FB21"}.mdi-robot-vacuum:before{content:"\F70C"}.mdi-robot-vacuum-variant:before{content:"\F907"}.mdi-rocket:before{content:"\F463"}.mdi-rollupjs:before{content:"\FB9C"}.mdi-room-service:before{content:"\F88C"}.mdi-rotate-3d:before{content:"\F464"}.mdi-rotate-left:before{content:"\F465"}.mdi-rotate-left-variant:before{content:"\F466"}.mdi-rotate-right:before{content:"\F467"}.mdi-rotate-right-variant:before{content:"\F468"}.mdi-rounded-corner:before{content:"\F607"}.mdi-router-wireless:before{content:"\F469"}.mdi-router-wireless-settings:before{content:"\FA68"}.mdi-routes:before{content:"\F46A"}.mdi-rowing:before{content:"\F608"}.mdi-rss:before{content:"\F46B"}.mdi-rss-box:before{content:"\F46C"}.mdi-ruler:before{content:"\F46D"}.mdi-run:before{content:"\F70D"}.mdi-run-fast:before{content:"\F46E"}.mdi-safe:before{content:"\FA69"}.mdi-sale:before{content:"\F46F"}.mdi-salesforce:before{content:"\F88D"}.mdi-sass:before{content:"\F7EB"}.mdi-satellite:before{content:"\F470"}.mdi-satellite-uplink:before{content:"\F908"}.mdi-satellite-variant:before{content:"\F471"}.mdi-sausage:before{content:"\F8B9"}.mdi-saxophone:before{content:"\F609"}.mdi-scale:before{content:"\F472"}.mdi-scale-balance:before{content:"\F5D1"}.mdi-scale-bathroom:before{content:"\F473"}.mdi-scanner:before{content:"\F6AA"}.mdi-scanner-off:before{content:"\F909"}.mdi-school:before{content:"\F474"}.mdi-scissors-cutting:before{content:"\FA6A"}.mdi-screen-rotation:before{content:"\F475"}.mdi-screen-rotation-lock:before{content:"\F476"}.mdi-screwdriver:before{content:"\F477"}.mdi-script:before{content:"\FB9D"}.mdi-script-outline:before{content:"\F478"}.mdi-script-text:before{content:"\FB9E"}.mdi-script-text-outline:before{content:"\FB9F"}.mdi-sd:before{content:"\F479"}.mdi-seal:before{content:"\F47A"}.mdi-search-web:before{content:"\F70E"}.mdi-seat-flat:before{content:"\F47B"}.mdi-seat-flat-angled:before{content:"\F47C"}.mdi-seat-individual-suite:before{content:"\F47D"}.mdi-seat-legroom-extra:before{content:"\F47E"}.mdi-seat-legroom-normal:before{content:"\F47F"}.mdi-seat-legroom-reduced:before{content:"\F480"}.mdi-seat-recline-extra:before{content:"\F481"}.mdi-seat-recline-normal:before{content:"\F482"}.mdi-security:before{content:"\F483"}.mdi-security-account:before{content:"\F88E"}.mdi-security-account-outline:before{content:"\FA11"}.mdi-security-close:before{content:"\F99B"}.mdi-security-home:before{content:"\F689"}.mdi-security-lock:before{content:"\F99C"}.mdi-security-network:before{content:"\F484"}.mdi-security-off:before{content:"\F99D"}.mdi-select:before{content:"\F485"}.mdi-select-all:before{content:"\F486"}.mdi-select-compare:before{content:"\FAD8"}.mdi-select-drag:before{content:"\FA6B"}.mdi-select-inverse:before{content:"\F487"}.mdi-select-off:before{content:"\F488"}.mdi-selection:before{content:"\F489"}.mdi-selection-drag:before{content:"\FA6C"}.mdi-selection-off:before{content:"\F776"}.mdi-send:before{content:"\F48A"}.mdi-send-lock:before{content:"\F7EC"}.mdi-serial-port:before{content:"\F65C"}.mdi-server:before{content:"\F48B"}.mdi-server-minus:before{content:"\F48C"}.mdi-server-network:before{content:"\F48D"}.mdi-server-network-off:before{content:"\F48E"}.mdi-server-off:before{content:"\F48F"}.mdi-server-plus:before{content:"\F490"}.mdi-server-remove:before{content:"\F491"}.mdi-server-security:before{content:"\F492"}.mdi-set-all:before{content:"\F777"}.mdi-set-center:before{content:"\F778"}.mdi-set-center-right:before{content:"\F779"}.mdi-set-left:before{content:"\F77A"}.mdi-set-left-center:before{content:"\F77B"}.mdi-set-left-right:before{content:"\F77C"}.mdi-set-none:before{content:"\F77D"}.mdi-set-right:before{content:"\F77E"}.mdi-set-top-box:before{content:"\F99E"}.mdi-settings:before{content:"\F493"}.mdi-settings-box:before{content:"\F494"}.mdi-settings-helper:before{content:"\FA6D"}.mdi-settings-outline:before{content:"\F8BA"}.mdi-shape:before{content:"\F830"}.mdi-shape-circle-plus:before{content:"\F65D"}.mdi-shape-outline:before{content:"\F831"}.mdi-shape-plus:before{content:"\F495"}.mdi-shape-polygon-plus:before{content:"\F65E"}.mdi-shape-rectangle-plus:before{content:"\F65F"}.mdi-shape-square-plus:before{content:"\F660"}.mdi-share:before{content:"\F496"}.mdi-share-outline:before{content:"\F931"}.mdi-share-variant:before{content:"\F497"}.mdi-shield:before{content:"\F498"}.mdi-shield-half-full:before{content:"\F77F"}.mdi-shield-key:before{content:"\FBA0"}.mdi-shield-key-outline:before{content:"\FBA1"}.mdi-shield-outline:before{content:"\F499"}.mdi-shield-plus:before{content:"\FAD9"}.mdi-shield-plus-outline:before{content:"\FADA"}.mdi-shield-remove:before{content:"\FADB"}.mdi-shield-remove-outline:before{content:"\FADC"}.mdi-ship-wheel:before{content:"\F832"}.mdi-shoe-formal:before{content:"\FB22"}.mdi-shoe-heel:before{content:"\FB23"}.mdi-shopify:before{content:"\FADD"}.mdi-shopping:before{content:"\F49A"}.mdi-shopping-music:before{content:"\F49B"}.mdi-shovel:before{content:"\F70F"}.mdi-shovel-off:before{content:"\F710"}.mdi-shower:before{content:"\F99F"}.mdi-shower-head:before{content:"\F9A0"}.mdi-shredder:before{content:"\F49C"}.mdi-shuffle:before{content:"\F49D"}.mdi-shuffle-disabled:before{content:"\F49E"}.mdi-shuffle-variant:before{content:"\F49F"}.mdi-sigma:before{content:"\F4A0"}.mdi-sigma-lower:before{content:"\F62B"}.mdi-sign-caution:before{content:"\F4A1"}.mdi-sign-direction:before{content:"\F780"}.mdi-sign-text:before{content:"\F781"}.mdi-signal:before{content:"\F4A2"}.mdi-signal-2g:before{content:"\F711"}.mdi-signal-3g:before{content:"\F712"}.mdi-signal-4g:before{content:"\F713"}.mdi-signal-5g:before{content:"\FA6E"}.mdi-signal-cellular-1:before{content:"\F8BB"}.mdi-signal-cellular-2:before{content:"\F8BC"}.mdi-signal-cellular-3:before{content:"\F8BD"}.mdi-signal-cellular-outline:before{content:"\F8BE"}.mdi-signal-hspa:before{content:"\F714"}.mdi-signal-hspa-plus:before{content:"\F715"}.mdi-signal-off:before{content:"\F782"}.mdi-signal-variant:before{content:"\F60A"}.mdi-silo:before{content:"\FB24"}.mdi-silverware:before{content:"\F4A3"}.mdi-silverware-fork:before{content:"\F4A4"}.mdi-silverware-fork-knife:before{content:"\FA6F"}.mdi-silverware-spoon:before{content:"\F4A5"}.mdi-silverware-variant:before{content:"\F4A6"}.mdi-sim:before{content:"\F4A7"}.mdi-sim-alert:before{content:"\F4A8"}.mdi-sim-off:before{content:"\F4A9"}.mdi-sina-weibo:before{content:"\FADE"}.mdi-sitemap:before{content:"\F4AA"}.mdi-skip-backward:before{content:"\F4AB"}.mdi-skip-forward:before{content:"\F4AC"}.mdi-skip-next:before{content:"\F4AD"}.mdi-skip-next-circle:before{content:"\F661"}.mdi-skip-next-circle-outline:before{content:"\F662"}.mdi-skip-previous:before{content:"\F4AE"}.mdi-skip-previous-circle:before{content:"\F663"}.mdi-skip-previous-circle-outline:before{content:"\F664"}.mdi-skull:before{content:"\F68B"}.mdi-skull-crossbones:before{content:"\FBA2"}.mdi-skull-crossbones-outline:before{content:"\FBA3"}.mdi-skull-outline:before{content:"\FBA4"}.mdi-skype:before{content:"\F4AF"}.mdi-skype-business:before{content:"\F4B0"}.mdi-slack:before{content:"\F4B1"}.mdi-slackware:before{content:"\F90A"}.mdi-sleep:before{content:"\F4B2"}.mdi-sleep-off:before{content:"\F4B3"}.mdi-smog:before{content:"\FA70"}.mdi-smoke-detector:before{content:"\F392"}.mdi-smoking:before{content:"\F4B4"}.mdi-smoking-off:before{content:"\F4B5"}.mdi-snapchat:before{content:"\F4B6"}.mdi-snowflake:before{content:"\F716"}.mdi-snowman:before{content:"\F4B7"}.mdi-soccer:before{content:"\F4B8"}.mdi-soccer-field:before{content:"\F833"}.mdi-sofa:before{content:"\F4B9"}.mdi-solar-power:before{content:"\FA71"}.mdi-solid:before{content:"\F68C"}.mdi-sort:before{content:"\F4BA"}.mdi-sort-alphabetical:before{content:"\F4BB"}.mdi-sort-ascending:before{content:"\F4BC"}.mdi-sort-descending:before{content:"\F4BD"}.mdi-sort-numeric:before{content:"\F4BE"}.mdi-sort-variant:before{content:"\F4BF"}.mdi-soundcloud:before{content:"\F4C0"}.mdi-source-branch:before{content:"\F62C"}.mdi-source-commit:before{content:"\F717"}.mdi-source-commit-end:before{content:"\F718"}.mdi-source-commit-end-local:before{content:"\F719"}.mdi-source-commit-local:before{content:"\F71A"}.mdi-source-commit-next-local:before{content:"\F71B"}.mdi-source-commit-start:before{content:"\F71C"}.mdi-source-commit-start-next-local:before{content:"\F71D"}.mdi-source-fork:before{content:"\F4C1"}.mdi-source-merge:before{content:"\F62D"}.mdi-source-pull:before{content:"\F4C2"}.mdi-soy-sauce:before{content:"\F7ED"}.mdi-space-invaders:before{content:"\FBA5"}.mdi-speaker:before{content:"\F4C3"}.mdi-speaker-bluetooth:before{content:"\F9A1"}.mdi-speaker-off:before{content:"\F4C4"}.mdi-speaker-wireless:before{content:"\F71E"}.mdi-speedometer:before{content:"\F4C5"}.mdi-spellcheck:before{content:"\F4C6"}.mdi-spider-web:before{content:"\FBA6"}.mdi-spotify:before{content:"\F4C7"}.mdi-spotlight:before{content:"\F4C8"}.mdi-spotlight-beam:before{content:"\F4C9"}.mdi-spray:before{content:"\F665"}.mdi-spray-bottle:before{content:"\FADF"}.mdi-square:before{content:"\F763"}.mdi-square-edit-outline:before{content:"\F90B"}.mdi-square-inc:before{content:"\F4CA"}.mdi-square-inc-cash:before{content:"\F4CB"}.mdi-square-medium:before{content:"\FA12"}.mdi-square-medium-outline:before{content:"\FA13"}.mdi-square-outline:before{content:"\F762"}.mdi-square-root:before{content:"\F783"}.mdi-square-root-box:before{content:"\F9A2"}.mdi-square-small:before{content:"\FA14"}.mdi-squeegee:before{content:"\FAE0"}.mdi-ssh:before{content:"\F8BF"}.mdi-stack-exchange:before{content:"\F60B"}.mdi-stack-overflow:before{content:"\F4CC"}.mdi-stadium:before{content:"\F71F"}.mdi-stairs:before{content:"\F4CD"}.mdi-standard-definition:before{content:"\F7EE"}.mdi-star:before{content:"\F4CE"}.mdi-star-box:before{content:"\FA72"}.mdi-star-box-outline:before{content:"\FA73"}.mdi-star-circle:before{content:"\F4CF"}.mdi-star-circle-outline:before{content:"\F9A3"}.mdi-star-face:before{content:"\F9A4"}.mdi-star-four-points:before{content:"\FAE1"}.mdi-star-four-points-outline:before{content:"\FAE2"}.mdi-star-half:before{content:"\F4D0"}.mdi-star-off:before{content:"\F4D1"}.mdi-star-outline:before{content:"\F4D2"}.mdi-star-three-points:before{content:"\FAE3"}.mdi-star-three-points-outline:before{content:"\FAE4"}.mdi-steam:before{content:"\F4D3"}.mdi-steam-box:before{content:"\F90C"}.mdi-steering:before{content:"\F4D4"}.mdi-steering-off:before{content:"\F90D"}.mdi-step-backward:before{content:"\F4D5"}.mdi-step-backward-2:before{content:"\F4D6"}.mdi-step-forward:before{content:"\F4D7"}.mdi-step-forward-2:before{content:"\F4D8"}.mdi-stethoscope:before{content:"\F4D9"}.mdi-sticker:before{content:"\F5D0"}.mdi-sticker-emoji:before{content:"\F784"}.mdi-stocking:before{content:"\F4DA"}.mdi-stop:before{content:"\F4DB"}.mdi-stop-circle:before{content:"\F666"}.mdi-stop-circle-outline:before{content:"\F667"}.mdi-store:before{content:"\F4DC"}.mdi-store-24-hour:before{content:"\F4DD"}.mdi-stove:before{content:"\F4DE"}.mdi-strava:before{content:"\FB25"}.mdi-subdirectory-arrow-left:before{content:"\F60C"}.mdi-subdirectory-arrow-right:before{content:"\F60D"}.mdi-subtitles:before{content:"\FA15"}.mdi-subtitles-outline:before{content:"\FA16"}.mdi-subway:before{content:"\F6AB"}.mdi-subway-variant:before{content:"\F4DF"}.mdi-summit:before{content:"\F785"}.mdi-sunglasses:before{content:"\F4E0"}.mdi-surround-sound:before{content:"\F5C5"}.mdi-surround-sound-2-0:before{content:"\F7EF"}.mdi-surround-sound-3-1:before{content:"\F7F0"}.mdi-surround-sound-5-1:before{content:"\F7F1"}.mdi-surround-sound-7-1:before{content:"\F7F2"}.mdi-svg:before{content:"\F720"}.mdi-swap-horizontal:before{content:"\F4E1"}.mdi-swap-horizontal-bold:before{content:"\FBA9"}.mdi-swap-horizontal-variant:before{content:"\F8C0"}.mdi-swap-vertical:before{content:"\F4E2"}.mdi-swap-vertical-bold:before{content:"\FBAA"}.mdi-swap-vertical-variant:before{content:"\F8C1"}.mdi-swim:before{content:"\F4E3"}.mdi-switch:before{content:"\F4E4"}.mdi-sword:before{content:"\F4E5"}.mdi-sword-cross:before{content:"\F786"}.mdi-symfony:before{content:"\FAE5"}.mdi-sync:before{content:"\F4E6"}.mdi-sync-alert:before{content:"\F4E7"}.mdi-sync-off:before{content:"\F4E8"}.mdi-tab:before{content:"\F4E9"}.mdi-tab-minus:before{content:"\FB26"}.mdi-tab-plus:before{content:"\F75B"}.mdi-tab-remove:before{content:"\FB27"}.mdi-tab-unselected:before{content:"\F4EA"}.mdi-table:before{content:"\F4EB"}.mdi-table-border:before{content:"\FA17"}.mdi-table-column:before{content:"\F834"}.mdi-table-column-plus-after:before{content:"\F4EC"}.mdi-table-column-plus-before:before{content:"\F4ED"}.mdi-table-column-remove:before{content:"\F4EE"}.mdi-table-column-width:before{content:"\F4EF"}.mdi-table-edit:before{content:"\F4F0"}.mdi-table-large:before{content:"\F4F1"}.mdi-table-merge-cells:before{content:"\F9A5"}.mdi-table-of-contents:before{content:"\F835"}.mdi-table-plus:before{content:"\FA74"}.mdi-table-remove:before{content:"\FA75"}.mdi-table-row:before{content:"\F836"}.mdi-table-row-height:before{content:"\F4F2"}.mdi-table-row-plus-after:before{content:"\F4F3"}.mdi-table-row-plus-before:before{content:"\F4F4"}.mdi-table-row-remove:before{content:"\F4F5"}.mdi-table-search:before{content:"\F90E"}.mdi-table-settings:before{content:"\F837"}.mdi-tablet:before{content:"\F4F6"}.mdi-tablet-android:before{content:"\F4F7"}.mdi-tablet-cellphone:before{content:"\F9A6"}.mdi-tablet-ipad:before{content:"\F4F8"}.mdi-taco:before{content:"\F761"}.mdi-tag:before{content:"\F4F9"}.mdi-tag-faces:before{content:"\F4FA"}.mdi-tag-heart:before{content:"\F68A"}.mdi-tag-heart-outline:before{content:"\FBAB"}.mdi-tag-minus:before{content:"\F90F"}.mdi-tag-multiple:before{content:"\F4FB"}.mdi-tag-outline:before{content:"\F4FC"}.mdi-tag-plus:before{content:"\F721"}.mdi-tag-remove:before{content:"\F722"}.mdi-tag-text-outline:before{content:"\F4FD"}.mdi-tape-measure:before{content:"\FB28"}.mdi-target:before{content:"\F4FE"}.mdi-target-account:before{content:"\FBAC"}.mdi-target-variant:before{content:"\FA76"}.mdi-taxi:before{content:"\F4FF"}.mdi-teach:before{content:"\F88F"}.mdi-teamviewer:before{content:"\F500"}.mdi-telegram:before{content:"\F501"}.mdi-telescope:before{content:"\FB29"}.mdi-television:before{content:"\F502"}.mdi-television-box:before{content:"\F838"}.mdi-television-classic:before{content:"\F7F3"}.mdi-television-classic-off:before{content:"\F839"}.mdi-television-guide:before{content:"\F503"}.mdi-television-off:before{content:"\F83A"}.mdi-temperature-celsius:before{content:"\F504"}.mdi-temperature-fahrenheit:before{content:"\F505"}.mdi-temperature-kelvin:before{content:"\F506"}.mdi-tennis:before{content:"\F507"}.mdi-tent:before{content:"\F508"}.mdi-terrain:before{content:"\F509"}.mdi-test-tube:before{content:"\F668"}.mdi-test-tube-empty:before{content:"\F910"}.mdi-test-tube-off:before{content:"\F911"}.mdi-text:before{content:"\F9A7"}.mdi-text-shadow:before{content:"\F669"}.mdi-text-short:before{content:"\F9A8"}.mdi-text-subject:before{content:"\F9A9"}.mdi-text-to-speech:before{content:"\F50A"}.mdi-text-to-speech-off:before{content:"\F50B"}.mdi-textbox:before{content:"\F60E"}.mdi-textbox-password:before{content:"\F7F4"}.mdi-texture:before{content:"\F50C"}.mdi-theater:before{content:"\F50D"}.mdi-theme-light-dark:before{content:"\F50E"}.mdi-thermometer:before{content:"\F50F"}.mdi-thermometer-lines:before{content:"\F510"}.mdi-thermostat:before{content:"\F393"}.mdi-thermostat-box:before{content:"\F890"}.mdi-thought-bubble:before{content:"\F7F5"}.mdi-thought-bubble-outline:before{content:"\F7F6"}.mdi-thumb-down:before{content:"\F511"}.mdi-thumb-down-outline:before{content:"\F512"}.mdi-thumb-up:before{content:"\F513"}.mdi-thumb-up-outline:before{content:"\F514"}.mdi-thumbs-up-down:before{content:"\F515"}.mdi-ticket:before{content:"\F516"}.mdi-ticket-account:before{content:"\F517"}.mdi-ticket-confirmation:before{content:"\F518"}.mdi-ticket-outline:before{content:"\F912"}.mdi-ticket-percent:before{content:"\F723"}.mdi-tie:before{content:"\F519"}.mdi-tilde:before{content:"\F724"}.mdi-timelapse:before{content:"\F51A"}.mdi-timeline:before{content:"\FBAD"}.mdi-timeline-outline:before{content:"\FBAE"}.mdi-timeline-text:before{content:"\FBAF"}.mdi-timeline-text-outline:before{content:"\FBB0"}.mdi-timer:before{content:"\F51B"}.mdi-timer-10:before{content:"\F51C"}.mdi-timer-3:before{content:"\F51D"}.mdi-timer-off:before{content:"\F51E"}.mdi-timer-sand:before{content:"\F51F"}.mdi-timer-sand-empty:before{content:"\F6AC"}.mdi-timer-sand-full:before{content:"\F78B"}.mdi-timetable:before{content:"\F520"}.mdi-toggle-switch:before{content:"\F521"}.mdi-toggle-switch-off:before{content:"\F522"}.mdi-toggle-switch-off-outline:before{content:"\FA18"}.mdi-toggle-switch-outline:before{content:"\FA19"}.mdi-toilet:before{content:"\F9AA"}.mdi-toolbox:before{content:"\F9AB"}.mdi-toolbox-outline:before{content:"\F9AC"}.mdi-tooltip:before{content:"\F523"}.mdi-tooltip-edit:before{content:"\F524"}.mdi-tooltip-image:before{content:"\F525"}.mdi-tooltip-image-outline:before{content:"\FBB1"}.mdi-tooltip-outline:before{content:"\F526"}.mdi-tooltip-plus:before{content:"\FBB2"}.mdi-tooltip-plus-outline:before{content:"\F527"}.mdi-tooltip-text:before{content:"\F528"}.mdi-tooltip-text-outline:before{content:"\FBB3"}.mdi-tooth:before{content:"\F8C2"}.mdi-tooth-outline:before{content:"\F529"}.mdi-tor:before{content:"\F52A"}.mdi-tournament:before{content:"\F9AD"}.mdi-tower-beach:before{content:"\F680"}.mdi-tower-fire:before{content:"\F681"}.mdi-towing:before{content:"\F83B"}.mdi-track-light:before{content:"\F913"}.mdi-trackpad:before{content:"\F7F7"}.mdi-trackpad-lock:before{content:"\F932"}.mdi-tractor:before{content:"\F891"}.mdi-trademark:before{content:"\FA77"}.mdi-traffic-light:before{content:"\F52B"}.mdi-train:before{content:"\F52C"}.mdi-train-car:before{content:"\FBB4"}.mdi-train-variant:before{content:"\F8C3"}.mdi-tram:before{content:"\F52D"}.mdi-transcribe:before{content:"\F52E"}.mdi-transcribe-close:before{content:"\F52F"}.mdi-transfer:before{content:"\F530"}.mdi-transit-transfer:before{content:"\F6AD"}.mdi-transition:before{content:"\F914"}.mdi-transition-masked:before{content:"\F915"}.mdi-translate:before{content:"\F5CA"}.mdi-trash-can:before{content:"\FA78"}.mdi-trash-can-outline:before{content:"\FA79"}.mdi-treasure-chest:before{content:"\F725"}.mdi-tree:before{content:"\F531"}.mdi-trello:before{content:"\F532"}.mdi-trending-down:before{content:"\F533"}.mdi-trending-neutral:before{content:"\F534"}.mdi-trending-up:before{content:"\F535"}.mdi-triangle:before{content:"\F536"}.mdi-triangle-outline:before{content:"\F537"}.mdi-triforce:before{content:"\FBB5"}.mdi-trophy:before{content:"\F538"}.mdi-trophy-award:before{content:"\F539"}.mdi-trophy-outline:before{content:"\F53A"}.mdi-trophy-variant:before{content:"\F53B"}.mdi-trophy-variant-outline:before{content:"\F53C"}.mdi-truck:before{content:"\F53D"}.mdi-truck-delivery:before{content:"\F53E"}.mdi-truck-fast:before{content:"\F787"}.mdi-truck-trailer:before{content:"\F726"}.mdi-tshirt-crew:before{content:"\FA7A"}.mdi-tshirt-crew-outline:before{content:"\F53F"}.mdi-tshirt-v:before{content:"\FA7B"}.mdi-tshirt-v-outline:before{content:"\F540"}.mdi-tumble-dryer:before{content:"\F916"}.mdi-tumblr:before{content:"\F541"}.mdi-tumblr-box:before{content:"\F917"}.mdi-tumblr-reblog:before{content:"\F542"}.mdi-tune:before{content:"\F62E"}.mdi-tune-vertical:before{content:"\F66A"}.mdi-twitch:before{content:"\F543"}.mdi-twitter:before{content:"\F544"}.mdi-twitter-box:before{content:"\F545"}.mdi-twitter-circle:before{content:"\F546"}.mdi-twitter-retweet:before{content:"\F547"}.mdi-two-factor-authentication:before{content:"\F9AE"}.mdi-uber:before{content:"\F748"}.mdi-ubisoft:before{content:"\FBB6"}.mdi-ubuntu:before{content:"\F548"}.mdi-ultra-high-definition:before{content:"\F7F8"}.mdi-umbraco:before{content:"\F549"}.mdi-umbrella:before{content:"\F54A"}.mdi-umbrella-closed:before{content:"\F9AF"}.mdi-umbrella-outline:before{content:"\F54B"}.mdi-undo:before{content:"\F54C"}.mdi-undo-variant:before{content:"\F54D"}.mdi-unfold-less-horizontal:before{content:"\F54E"}.mdi-unfold-less-vertical:before{content:"\F75F"}.mdi-unfold-more-horizontal:before{content:"\F54F"}.mdi-unfold-more-vertical:before{content:"\F760"}.mdi-ungroup:before{content:"\F550"}.mdi-unity:before{content:"\F6AE"}.mdi-unreal:before{content:"\F9B0"}.mdi-untappd:before{content:"\F551"}.mdi-update:before{content:"\F6AF"}.mdi-upload:before{content:"\F552"}.mdi-upload-multiple:before{content:"\F83C"}.mdi-upload-network:before{content:"\F6F5"}.mdi-usb:before{content:"\F553"}.mdi-van-passenger:before{content:"\F7F9"}.mdi-van-utility:before{content:"\F7FA"}.mdi-vanish:before{content:"\F7FB"}.mdi-variable:before{content:"\FAE6"}.mdi-vector-arrange-above:before{content:"\F554"}.mdi-vector-arrange-below:before{content:"\F555"}.mdi-vector-bezier:before{content:"\FAE7"}.mdi-vector-circle:before{content:"\F556"}.mdi-vector-circle-variant:before{content:"\F557"}.mdi-vector-combine:before{content:"\F558"}.mdi-vector-curve:before{content:"\F559"}.mdi-vector-difference:before{content:"\F55A"}.mdi-vector-difference-ab:before{content:"\F55B"}.mdi-vector-difference-ba:before{content:"\F55C"}.mdi-vector-ellipse:before{content:"\F892"}.mdi-vector-intersection:before{content:"\F55D"}.mdi-vector-line:before{content:"\F55E"}.mdi-vector-point:before{content:"\F55F"}.mdi-vector-polygon:before{content:"\F560"}.mdi-vector-polyline:before{content:"\F561"}.mdi-vector-radius:before{content:"\F749"}.mdi-vector-rectangle:before{content:"\F5C6"}.mdi-vector-selection:before{content:"\F562"}.mdi-vector-square:before{content:"\F001"}.mdi-vector-triangle:before{content:"\F563"}.mdi-vector-union:before{content:"\F564"}.mdi-venmo:before{content:"\F578"}.mdi-verified:before{content:"\F565"}.mdi-vhs:before{content:"\FA1A"}.mdi-vibrate:before{content:"\F566"}.mdi-video:before{content:"\F567"}.mdi-video-3d:before{content:"\F7FC"}.mdi-video-4k-box:before{content:"\F83D"}.mdi-video-account:before{content:"\F918"}.mdi-video-image:before{content:"\F919"}.mdi-video-input-antenna:before{content:"\F83E"}.mdi-video-input-component:before{content:"\F83F"}.mdi-video-input-hdmi:before{content:"\F840"}.mdi-video-input-svideo:before{content:"\F841"}.mdi-video-minus:before{content:"\F9B1"}.mdi-video-off:before{content:"\F568"}.mdi-video-off-outline:before{content:"\FBB7"}.mdi-video-outline:before{content:"\FBB8"}.mdi-video-plus:before{content:"\F9B2"}.mdi-video-stabilization:before{content:"\F91A"}.mdi-video-switch:before{content:"\F569"}.mdi-video-vintage:before{content:"\FA1B"}.mdi-view-agenda:before{content:"\F56A"}.mdi-view-array:before{content:"\F56B"}.mdi-view-carousel:before{content:"\F56C"}.mdi-view-column:before{content:"\F56D"}.mdi-view-dashboard:before{content:"\F56E"}.mdi-view-dashboard-outline:before{content:"\FA1C"}.mdi-view-dashboard-variant:before{content:"\F842"}.mdi-view-day:before{content:"\F56F"}.mdi-view-grid:before{content:"\F570"}.mdi-view-headline:before{content:"\F571"}.mdi-view-list:before{content:"\F572"}.mdi-view-module:before{content:"\F573"}.mdi-view-parallel:before{content:"\F727"}.mdi-view-quilt:before{content:"\F574"}.mdi-view-sequential:before{content:"\F728"}.mdi-view-split-horizontal:before{content:"\FBA7"}.mdi-view-split-vertical:before{content:"\FBA8"}.mdi-view-stream:before{content:"\F575"}.mdi-view-week:before{content:"\F576"}.mdi-vimeo:before{content:"\F577"}.mdi-violin:before{content:"\F60F"}.mdi-virtual-reality:before{content:"\F893"}.mdi-visual-studio:before{content:"\F610"}.mdi-visual-studio-code:before{content:"\FA1D"}.mdi-vk:before{content:"\F579"}.mdi-vk-box:before{content:"\F57A"}.mdi-vk-circle:before{content:"\F57B"}.mdi-vlc:before{content:"\F57C"}.mdi-voice:before{content:"\F5CB"}.mdi-voicemail:before{content:"\F57D"}.mdi-volleyball:before{content:"\F9B3"}.mdi-volume-high:before{content:"\F57E"}.mdi-volume-low:before{content:"\F57F"}.mdi-volume-medium:before{content:"\F580"}.mdi-volume-minus:before{content:"\F75D"}.mdi-volume-mute:before{content:"\F75E"}.mdi-volume-off:before{content:"\F581"}.mdi-volume-plus:before{content:"\F75C"}.mdi-vote:before{content:"\FA1E"}.mdi-vote-outline:before{content:"\FA1F"}.mdi-vpn:before{content:"\F582"}.mdi-vuejs:before{content:"\F843"}.mdi-walk:before{content:"\F583"}.mdi-wall:before{content:"\F7FD"}.mdi-wall-sconce:before{content:"\F91B"}.mdi-wall-sconce-flat:before{content:"\F91C"}.mdi-wall-sconce-variant:before{content:"\F91D"}.mdi-wallet:before{content:"\F584"}.mdi-wallet-giftcard:before{content:"\F585"}.mdi-wallet-membership:before{content:"\F586"}.mdi-wallet-outline:before{content:"\FBB9"}.mdi-wallet-travel:before{content:"\F587"}.mdi-wan:before{content:"\F588"}.mdi-washing-machine:before{content:"\F729"}.mdi-watch:before{content:"\F589"}.mdi-watch-export:before{content:"\F58A"}.mdi-watch-export-variant:before{content:"\F894"}.mdi-watch-import:before{content:"\F58B"}.mdi-watch-import-variant:before{content:"\F895"}.mdi-watch-variant:before{content:"\F896"}.mdi-watch-vibrate:before{content:"\F6B0"}.mdi-water:before{content:"\F58C"}.mdi-water-off:before{content:"\F58D"}.mdi-water-percent:before{content:"\F58E"}.mdi-water-pump:before{content:"\F58F"}.mdi-watermark:before{content:"\F612"}.mdi-waves:before{content:"\F78C"}.mdi-waze:before{content:"\FBBA"}.mdi-weather-cloudy:before{content:"\F590"}.mdi-weather-fog:before{content:"\F591"}.mdi-weather-hail:before{content:"\F592"}.mdi-weather-hurricane:before{content:"\F897"}.mdi-weather-lightning:before{content:"\F593"}.mdi-weather-lightning-rainy:before{content:"\F67D"}.mdi-weather-night:before{content:"\F594"}.mdi-weather-partlycloudy:before{content:"\F595"}.mdi-weather-pouring:before{content:"\F596"}.mdi-weather-rainy:before{content:"\F597"}.mdi-weather-snowy:before{content:"\F598"}.mdi-weather-snowy-rainy:before{content:"\F67E"}.mdi-weather-sunny:before{content:"\F599"}.mdi-weather-sunset:before{content:"\F59A"}.mdi-weather-sunset-down:before{content:"\F59B"}.mdi-weather-sunset-up:before{content:"\F59C"}.mdi-weather-windy:before{content:"\F59D"}.mdi-weather-windy-variant:before{content:"\F59E"}.mdi-web:before{content:"\F59F"}.mdi-webcam:before{content:"\F5A0"}.mdi-webhook:before{content:"\F62F"}.mdi-webpack:before{content:"\F72A"}.mdi-wechat:before{content:"\F611"}.mdi-weight:before{content:"\F5A1"}.mdi-weight-kilogram:before{content:"\F5A2"}.mdi-weight-pound:before{content:"\F9B4"}.mdi-whatsapp:before{content:"\F5A3"}.mdi-wheelchair-accessibility:before{content:"\F5A4"}.mdi-whistle:before{content:"\F9B5"}.mdi-white-balance-auto:before{content:"\F5A5"}.mdi-white-balance-incandescent:before{content:"\F5A6"}.mdi-white-balance-iridescent:before{content:"\F5A7"}.mdi-white-balance-sunny:before{content:"\F5A8"}.mdi-widgets:before{content:"\F72B"}.mdi-wifi:before{content:"\F5A9"}.mdi-wifi-off:before{content:"\F5AA"}.mdi-wifi-strength-1:before{content:"\F91E"}.mdi-wifi-strength-1-alert:before{content:"\F91F"}.mdi-wifi-strength-1-lock:before{content:"\F920"}.mdi-wifi-strength-2:before{content:"\F921"}.mdi-wifi-strength-2-alert:before{content:"\F922"}.mdi-wifi-strength-2-lock:before{content:"\F923"}.mdi-wifi-strength-3:before{content:"\F924"}.mdi-wifi-strength-3-alert:before{content:"\F925"}.mdi-wifi-strength-3-lock:before{content:"\F926"}.mdi-wifi-strength-4:before{content:"\F927"}.mdi-wifi-strength-4-alert:before{content:"\F928"}.mdi-wifi-strength-4-lock:before{content:"\F929"}.mdi-wifi-strength-alert-outline:before{content:"\F92A"}.mdi-wifi-strength-lock-outline:before{content:"\F92B"}.mdi-wifi-strength-off:before{content:"\F92C"}.mdi-wifi-strength-off-outline:before{content:"\F92D"}.mdi-wifi-strength-outline:before{content:"\F92E"}.mdi-wii:before{content:"\F5AB"}.mdi-wiiu:before{content:"\F72C"}.mdi-wikipedia:before{content:"\F5AC"}.mdi-window-close:before{content:"\F5AD"}.mdi-window-closed:before{content:"\F5AE"}.mdi-window-maximize:before{content:"\F5AF"}.mdi-window-minimize:before{content:"\F5B0"}.mdi-window-open:before{content:"\F5B1"}.mdi-window-restore:before{content:"\F5B2"}.mdi-windows:before{content:"\F5B3"}.mdi-windows-classic:before{content:"\FA20"}.mdi-wiper:before{content:"\FAE8"}.mdi-wordpress:before{content:"\F5B4"}.mdi-worker:before{content:"\F5B5"}.mdi-wrap:before{content:"\F5B6"}.mdi-wrap-disabled:before{content:"\FBBB"}.mdi-wrench:before{content:"\F5B7"}.mdi-wrench-outline:before{content:"\FBBC"}.mdi-wunderlist:before{content:"\F5B8"}.mdi-xamarin:before{content:"\F844"}.mdi-xamarin-outline:before{content:"\F845"}.mdi-xaml:before{content:"\F673"}.mdi-xbox:before{content:"\F5B9"}.mdi-xbox-controller:before{content:"\F5BA"}.mdi-xbox-controller-battery-alert:before{content:"\F74A"}.mdi-xbox-controller-battery-charging:before{content:"\FA21"}.mdi-xbox-controller-battery-empty:before{content:"\F74B"}.mdi-xbox-controller-battery-full:before{content:"\F74C"}.mdi-xbox-controller-battery-low:before{content:"\F74D"}.mdi-xbox-controller-battery-medium:before{content:"\F74E"}.mdi-xbox-controller-battery-unknown:before{content:"\F74F"}.mdi-xbox-controller-off:before{content:"\F5BB"}.mdi-xda:before{content:"\F5BC"}.mdi-xing:before{content:"\F5BD"}.mdi-xing-box:before{content:"\F5BE"}.mdi-xing-circle:before{content:"\F5BF"}.mdi-xml:before{content:"\F5C0"}.mdi-xmpp:before{content:"\F7FE"}.mdi-yahoo:before{content:"\FB2A"}.mdi-yammer:before{content:"\F788"}.mdi-yeast:before{content:"\F5C1"}.mdi-yelp:before{content:"\F5C2"}.mdi-yin-yang:before{content:"\F67F"}.mdi-youtube:before{content:"\F5C3"}.mdi-youtube-creator-studio:before{content:"\F846"}.mdi-youtube-gaming:before{content:"\F847"}.mdi-youtube-tv:before{content:"\F448"}.mdi-z-wave:before{content:"\FAE9"}.mdi-zend:before{content:"\FAEA"}.mdi-zip-box:before{content:"\F5C4"}.mdi-zip-disk:before{content:"\FA22"}.mdi-zodiac-aquarius:before{content:"\FA7C"}.mdi-zodiac-aries:before{content:"\FA7D"}.mdi-zodiac-cancer:before{content:"\FA7E"}.mdi-zodiac-capricorn:before{content:"\FA7F"}.mdi-zodiac-gemini:before{content:"\FA80"}.mdi-zodiac-leo:before{content:"\FA81"}.mdi-zodiac-libra:before{content:"\FA82"}.mdi-zodiac-pisces:before{content:"\FA83"}.mdi-zodiac-sagittarius:before{content:"\FA84"}.mdi-zodiac-scorpio:before{content:"\FA85"}.mdi-zodiac-taurus:before{content:"\FA86"}.mdi-zodiac-virgo:before{content:"\FA87"}.mdi-blank:before{content:"\F68C";visibility:hidden}.mdi-18px.mdi-set,.mdi-18px.mdi:before{font-size:18px}.mdi-24px.mdi-set,.mdi-24px.mdi:before{font-size:24px}.mdi-36px.mdi-set,.mdi-36px.mdi:before{font-size:36px}.mdi-48px.mdi-set,.mdi-48px.mdi:before{font-size:48px}.mdi-dark:before{color:rgba(0,0,0,0.54)}.mdi-dark.mdi-inactive:before{color:rgba(0,0,0,0.26)}.mdi-light:before{color:#fff}.mdi-light.mdi-inactive:before{color:rgba(255,255,255,0.3)}.mdi-rotate-45:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.mdi-rotate-90:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.mdi-rotate-135:before{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.mdi-rotate-180:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.mdi-rotate-225:before{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg)}.mdi-rotate-270:before{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.mdi-rotate-315:before{-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.mdi-flip-h:before{-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:"FlipH"}.mdi-flip-v:before{-webkit-transform:scaleY(-1);transform:scaleY(-1);filter:FlipV;-ms-filter:"FlipV"}.mdi-spin:before{-webkit-animation:mdi-spin 2s infinite linear;animation:mdi-spin 2s infinite linear}@-webkit-keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}
+/*# sourceMappingURL=materialdesignicons.min.css.map */
diff --git a/sentry-service/sentry-service-web/src/main/webapp/static/materialdesign/fonts/materialdesignicons-webfont.svg b/sentry-service/sentry-service-web/src/main/webapp/static/materialdesign/fonts/materialdesignicons-webfont.svg
new file mode 100644
index 0000000..ed361cb
--- /dev/null
+++ b/sentry-service/sentry-service-web/src/main/webapp/static/materialdesign/fonts/materialdesignicons-webfont.svg
@@ -0,0 +1,9129 @@
+<?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="Material Design Icons" horiz-adv-x="24">
+    <font-face font-family="Material Design Icons"
+      units-per-em="512" ascent="448"
+      descent="64" />
+    <missing-glyph horiz-adv-x="0" />
+    <glyph glyph-name="access-point"
+      unicode="&#xF002;"
+      horiz-adv-x="512" d=" M105.1733333333333 342.8266666666667C66.56 304.2133333333334 42.6666666666667 250.88 42.6666666666667 192C42.6666666666667 133.12 66.56 79.7866666666668 105.1733333333333 41.1733333333333L135.2533333333333 71.2533333333333C104.32 101.9733333333334 85.3333333333333 144.64 85.3333333333333 192C85.3333333333333 239.1466666666667 104.32 282.0266666666667 135.2533333333333 312.7466666666667L105.1733333333333 342.8266666666667M406.8266666666667 342.8266666666667L376.7466666666667 312.7466666666667C407.68 282.0266666666667 426.6666666666667 239.1466666666667 426.6666666666667 192C426.6666666666667 144.64 407.68 101.9733333333334 376.7466666666667 71.2533333333333L406.8266666666667 41.1733333333333C445.44 79.7866666666666 469.3333333333333 133.12 469.3333333333333 192C469.3333333333333 250.88 445.44 304.2133333333334 406.8266666666667 342.8266666666667M165.5466666666667 282.4533333333334C142.2933333333333 259.2000000000001 128 227.2 128 192C128 156.8 142.2933333333333 124.8 165.5466666666667 101.5466666666666L195.6266666666667 131.6266666666667C180.2666666666667 146.9866666666667 170.6666666666667 168.3200000000001 170.6666666666667 192S180.2666666666667 237.0133333333333 195.6266666666667 252.3733333333334L165.5466666666667 282.4533333333334M346.4533333333334 282.4533333333334L316.3733333333334 252.3733333333334C331.7333333333334 237.0133333333333 341.3333333333333 215.68 341.3333333333333 192S331.7333333333334 146.9866666666667 316.3733333333334 131.6266666666667L346.4533333333333 101.5466666666667C369.7066666666666 124.8 384 156.8 384 192C384 227.2 369.7066666666666 259.2000000000001 346.4533333333333 282.4533333333334M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="access-point-network"
+      unicode="&#xF003;"
+      horiz-adv-x="512" d=" M105.1733333333333 385.4933333333334C66.56 346.88 42.6666666666667 293.5466666666667 42.6666666666667 234.6666666666667C42.6666666666667 175.7866666666667 66.56 122.4533333333334 105.1733333333333 83.84L135.2533333333333 113.92C104.32 144.64 85.3333333333333 187.3066666666667 85.3333333333333 234.6666666666667C85.3333333333333 281.8133333333334 104.32 324.6933333333334 135.2533333333333 355.4133333333334L105.1733333333333 385.4933333333334M406.8266666666667 385.4933333333334L376.7466666666667 355.4133333333334C407.68 324.6933333333334 426.6666666666667 281.8133333333334 426.6666666666667 234.6666666666667C426.6666666666667 187.3066666666667 407.68 144.6400000000001 376.7466666666667 113.92L406.8266666666667 83.84C445.44 122.4533333333334 469.3333333333333 175.7866666666667 469.3333333333333 234.6666666666667C469.3333333333333 293.5466666666667 445.44 346.88 406.8266666666667 385.4933333333334M165.5466666666667 325.12C142.2933333333333 301.8666666666667 128 269.8666666666667 128 234.6666666666667C128 199.4666666666667 142.2933333333333 167.4666666666667 165.5466666666667 144.2133333333334L195.6266666666667 174.2933333333334C180.2666666666667 189.6533333333334 170.6666666666667 210.9866666666667 170.6666666666667 234.6666666666667S180.2666666666667 279.68 195.6266666666667 295.04L165.5466666666667 325.12M346.4533333333334 325.12L316.3733333333334 295.04C331.7333333333334 279.68 341.3333333333333 258.3466666666667 341.3333333333333 234.6666666666667S331.7333333333334 189.6533333333334 316.3733333333334 174.2933333333334L346.4533333333333 144.2133333333334C369.7066666666666 167.4666666666667 384 199.4666666666667 384 234.6666666666667C384 269.8666666666667 369.7066666666666 301.8666666666667 346.4533333333333 325.12M256 277.3333333333334C232.5333333333334 277.3333333333334 213.3333333333333 258.1333333333334 213.3333333333333 234.6666666666667S232.5333333333334 192 256 192S298.6666666666667 211.2 298.6666666666667 234.6666666666667S279.4666666666667 277.3333333333334 256 277.3333333333334M234.6666666666667 149.3333333333334V64H213.3333333333333C201.6 64 192 54.4 192 42.6666666666667H42.6666666666667V0H192C192 -11.7333333333333 201.6 -21.3333333333333 213.3333333333333 -21.3333333333333H298.6666666666667C310.4 -21.3333333333333 320 -11.7333333333333 320 0H469.3333333333333V42.6666666666667H320C320 54.4 310.4 64 298.6666666666667 64H277.3333333333333V149.3333333333334H234.6666666666667z" />
+    <glyph glyph-name="account"
+      unicode="&#xF004;"
+      horiz-adv-x="512" d=" M256 362.6666666666667C303.1466666666667 362.6666666666667 341.3333333333333 324.48 341.3333333333333 277.3333333333334S303.1466666666667 192 256 192S170.6666666666667 230.1866666666667 170.6666666666667 277.3333333333334S208.8533333333333 362.6666666666667 256 362.6666666666667M256 149.3333333333334C350.2933333333334 149.3333333333334 426.6666666666667 111.1466666666667 426.6666666666667 64V21.3333333333334H85.3333333333333V64C85.3333333333333 111.1466666666667 161.7066666666667 149.3333333333334 256 149.3333333333334z" />
+    <glyph glyph-name="account-alert"
+      unicode="&#xF005;"
+      horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667C260.48 362.6666666666667 298.6666666666667 324.48 298.6666666666667 277.3333333333334S260.48 192 213.3333333333333 192S128 230.1866666666667 128 277.3333333333334S166.1866666666667 362.6666666666667 213.3333333333333 362.6666666666667M213.3333333333333 149.3333333333334C307.6266666666667 149.3333333333334 384 111.1466666666667 384 64V21.3333333333334H42.6666666666667V64C42.6666666666667 111.1466666666667 119.04 149.3333333333334 213.3333333333333 149.3333333333334M426.6666666666667 192V298.6666666666667H469.3333333333333V192H426.6666666666667M426.6666666666667 106.6666666666667V149.3333333333334H469.3333333333333V106.6666666666667H426.6666666666667z" />
+    <glyph glyph-name="account-alert-outline"
+      unicode="&#xFB2C;"
+      horiz-adv-x="512" d=" M426.6666666666667 192V298.6666666666667H469.3333333333333V192H426.6666666666667M426.6666666666667 106.6666666666667V149.3333333333334H469.3333333333333V106.6666666666667H426.6666666666667M213.3333333333333 170.6666666666667C270.2933333333333 170.6666666666667 384 142.0800000000001 384 85.3333333333334V21.3333333333334H42.6666666666667V85.3333333333334C42.6666666666667 142.0800000000001 156.3733333333333 170.6666666666667 213.3333333333333 170.6666666666667M213.3333333333333 362.6666666666667C260.48 362.6666666666667 298.6666666666667 324.48 298.6666666666667 277.3333333333334S260.48 192 213.3333333333333 192S128 230.1866666666667 128 277.3333333333334S166.1866666666667 362.6666666666667 213.3333333333333 362.6666666666667M213.3333333333333 130.1333333333333C149.9733333333333 130.1333333333333 83.2 98.9866666666667 83.2 85.3333333333334V61.8666666666667H343.4666666666667V85.3333333333334C343.4666666666667 98.9866666666667 276.6933333333334 130.1333333333333 213.3333333333334 130.1333333333333M213.3333333333334 322.1333333333334C188.5866666666667 322.1333333333334 168.5333333333334 302.0800000000001 168.5333333333334 277.3333333333334C168.5333333333334 252.5866666666667 188.5866666666667 232.5333333333334 213.3333333333334 232.5333333333334C238.0800000000001 232.5333333333334 258.1333333333334 252.5866666666667 258.1333333333334 277.3333333333334C258.1333333333334 302.0800000000001 238.0800000000001 322.1333333333334 213.3333333333334 322.1333333333334z" />
+    <glyph glyph-name="account-arrow-left"
+      unicode="&#xFB2D;"
+      horiz-adv-x="512" d=" M384 0L320 64L384 128V85.3333333333334H469.3333333333333V42.6666666666667H384V0M213.3333333333333 362.6666666666667C260.48 362.6666666666667 298.6666666666667 324.48 298.6666666666667 277.3333333333334S260.48 192 213.3333333333333 192S128 230.1866666666667 128 277.3333333333334S166.1866666666667 362.6666666666667 213.3333333333333 362.6666666666667M213.3333333333333 149.3333333333334C237.8666666666667 149.3333333333334 261.3333333333333 146.7733333333334 282.4533333333333 142.0800000000001C265.8133333333334 120.5333333333334 256 93.44 256 64C256 49.0666666666667 258.56 34.7733333333333 263.2533333333334 21.3333333333334H42.6666666666667V64C42.6666666666667 111.1466666666667 119.04 149.3333333333334 213.3333333333333 149.3333333333334z" />
+    <glyph glyph-name="account-arrow-left-outline"
+      unicode="&#xFB2E;"
+      horiz-adv-x="512" d=" M384 0L320 64L384 128V85.3333333333334H469.3333333333333V42.6666666666667H384V0M277.3333333333333 64C277.3333333333333 48.8533333333334 280.5333333333333 34.3466666666667 286.2933333333333 21.3333333333334H42.6666666666667V85.3333333333334C42.6666666666667 132.48 119.04 170.6666666666667 213.3333333333333 170.6666666666667C234.6666666666667 170.6666666666667 255.1466666666667 168.7466666666667 274.1333333333334 165.12C291.84 161.7066666666667 308.0533333333333 157.0133333333333 322.3466666666667 151.04C295.04 131.6266666666667 277.3333333333333 99.84 277.3333333333333 64M85.3333333333333 85.3333333333334V64H234.6666666666667C234.6666666666667 86.1866666666667 239.5733333333333 107.3066666666667 248.32 126.2933333333334L213.3333333333333 128C142.72 128 85.3333333333333 108.8 85.3333333333333 85.3333333333334M213.3333333333333 362.6666666666667C260.48 362.6666666666667 298.6666666666667 324.48 298.6666666666667 277.3333333333334S260.48 192 213.3333333333333 192S128 230.1866666666667 128 277.3333333333334S166.1866666666667 362.6666666666667 213.3333333333333 362.6666666666667M213.3333333333333 320C189.8666666666667 320 170.6666666666667 300.8 170.6666666666667 277.3333333333334S189.8666666666667 234.6666666666667 213.3333333333333 234.6666666666667S256 253.8666666666667 256 277.3333333333334S236.8 320 213.3333333333333 320z" />
+    <glyph glyph-name="account-arrow-right"
+      unicode="&#xFB2F;"
+      horiz-adv-x="512" d=" M405.3333333333333 0V42.6666666666667H320V85.3333333333334H405.3333333333333V128L469.3333333333333 64L405.3333333333333 0M213.3333333333333 362.6666666666667C260.48 362.6666666666667 298.6666666666667 324.48 298.6666666666667 277.3333333333334S260.48 192 213.3333333333333 192S128 230.1866666666667 128 277.3333333333334S166.1866666666667 362.6666666666667 213.3333333333333 362.6666666666667M213.3333333333333 149.3333333333334C237.8666666666667 149.3333333333334 261.3333333333333 146.7733333333334 282.4533333333333 142.0800000000001C265.8133333333334 120.5333333333334 256 93.44 256 64C256 49.0666666666667 258.56 34.7733333333333 263.2533333333334 21.3333333333334H42.6666666666667V64C42.6666666666667 111.1466666666667 119.04 149.3333333333334 213.3333333333333 149.3333333333334z" />
+    <glyph glyph-name="account-arrow-right-outline"
+      unicode="&#xFB30;"
+      horiz-adv-x="512" d=" M405.3333333333333 0V42.6666666666667H320V85.3333333333334H405.3333333333333V128L469.3333333333333 64L405.3333333333333 0M277.3333333333333 64C277.3333333333333 48.8533333333334 280.5333333333333 34.3466666666667 286.2933333333333 21.3333333333334H42.6666666666667V85.3333333333334C42.6666666666667 132.48 119.04 170.6666666666667 213.3333333333333 170.6666666666667C234.6666666666667 170.6666666666667 255.1466666666667 168.7466666666667 274.1333333333334 165.12C291.84 161.7066666666667 308.0533333333333 157.0133333333333 322.3466666666667 151.04C295.04 131.6266666666667 277.3333333333333 99.84 277.3333333333333 64M85.3333333333333 85.3333333333334V64H234.6666666666667C234.6666666666667 86.1866666666667 239.5733333333333 107.3066666666667 248.32 126.2933333333334L213.3333333333333 128C142.72 128 85.3333333333333 108.8 85.3333333333333 85.3333333333334M213.3333333333333 362.6666666666667C260.48 362.6666666666667 298.6666666666667 324.48 298.6666666666667 277.3333333333334S260.48 192 213.3333333333333 192S128 230.1866666666667 128 277.3333333333334S166.1866666666667 362.6666666666667 213.3333333333333 362.6666666666667M213.3333333333333 320C189.8666666666667 320 170.6666666666667 300.8 170.6666666666667 277.3333333333334S189.8666666666667 234.6666666666667 213.3333333333333 234.6666666666667S256 253.8666666666667 256 277.3333333333334S236.8 320 213.3333333333333 320z" />
+    <glyph glyph-name="account-box"
+      unicode="&#xF006;"
+      horiz-adv-x="512" d=" M128 85.3333333333334C128 128 213.3333333333333 151.4666666666667 256 151.4666666666667S384 128 384 85.3333333333334V64H128M320 256C320 220.5866666666667 291.4133333333333 192 256 192S192 220.5866666666667 192 256S220.5866666666667 320 256 320S320 291.4133333333334 320 256M64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334z" />
+    <glyph glyph-name="account-box-multiple"
+      unicode="&#xF933;"
+      horiz-adv-x="512" d=" M85.3333333333333 320H42.6666666666667V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H384V21.3333333333334H85.3333333333333V320M426.6666666666667 405.3333333333333C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H170.6666666666667C147.2 64 128 83.2 128 106.6666666666667V362.6666666666667C128 386.1333333333334 147.2 405.3333333333333 170.6666666666667 405.3333333333333H426.6666666666667M362.6666666666667 298.6666666666667C362.6666666666667 334.0800000000001 334.08 362.6666666666667 298.6666666666667 362.6666666666667S234.6666666666667 334.0800000000001 234.6666666666667 298.6666666666667S263.2533333333334 234.6666666666667 298.6666666666667 234.6666666666667S362.6666666666667 263.2533333333334 362.6666666666667 298.6666666666667M170.6666666666667 128V106.6666666666667H426.6666666666667V128C426.6666666666667 170.6666666666667 341.3333333333333 194.1333333333333 298.6666666666667 194.1333333333333S170.6666666666667 170.6666666666667 170.6666666666667 128z" />
+    <glyph glyph-name="account-box-outline"
+      unicode="&#xF007;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M352 101.3333333333334C352 133.3333333333334 288 149.3333333333334 256 149.3333333333334S160 133.3333333333334 160 101.3333333333334V85.3333333333334H352M256 186.6666666666667C282.4533333333333 186.6666666666667 304 208.2133333333334 304 234.6666666666667S282.4533333333333 282.6666666666667 256 282.6666666666667S208 261.12 208 234.6666666666667S229.5466666666667 186.6666666666667 256 186.6666666666667z" />
+    <glyph glyph-name="account-card-details"
+      unicode="&#xF5D2;"
+      horiz-adv-x="512" d=" M42.6666666666667 384H469.3333333333333C491.7333333333333 384 512 363.7333333333334 512 341.3333333333334V42.6666666666667C512 20.2666666666667 491.7333333333333 0 469.3333333333333 0H42.6666666666667C20.2666666666667 0 0 20.2666666666667 0 42.6666666666667V341.3333333333334C0 363.7333333333334 20.2666666666667 384 42.6666666666667 384M298.6666666666667 320V298.6666666666667H469.3333333333333V320H298.6666666666667M298.6666666666667 277.3333333333334V256H469.3333333333333V277.3333333333334H298.6666666666667M298.6666666666667 234.6666666666667V213.3333333333334H448V234.6666666666667H298.6666666666667M170.6666666666667 151.2533333333333C128 151.2533333333333 42.6666666666667 128 42.6666666666667 85.3333333333334V64H298.6666666666667V85.3333333333334C298.6666666666667 128 213.3333333333333 151.2533333333333 170.6666666666667 151.2533333333333M170.6666666666667 320C135.2533333333333 320 106.6666666666667 291.4133333333334 106.6666666666667 256S135.2533333333333 192 170.6666666666667 192S234.6666666666667 220.5866666666667 234.6666666666667 256S206.08 320 170.6666666666667 320z" />
+    <glyph glyph-name="account-check"
+      unicode="&#xF008;"
+      horiz-adv-x="512" d=" M192 341.3333333333334C233.1733333333333 341.3333333333334 266.6666666666667 307.8400000000001 266.6666666666667 266.6666666666667S233.1733333333333 192 192 192S117.3333333333333 225.4933333333334 117.3333333333333 266.6666666666667S150.8266666666667 341.3333333333334 192 341.3333333333334M192 154.6666666666667C274.56 154.6666666666667 341.3333333333333 121.1733333333334 341.3333333333333 80V42.6666666666667H42.6666666666667V80C42.6666666666667 121.1733333333334 109.44 154.6666666666667 192 154.6666666666667M362.6666666666667 177.92L304 241.92L328.7466666666667 266.6666666666667L362.6666666666667 232.7466666666667L439.2533333333334 309.3333333333334L464 279.2533333333334L362.6666666666667 177.92z" />
+    <glyph glyph-name="account-child"
+      unicode="&#xFA88;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C291.4133333333333 405.3333333333333 320 376.7466666666667 320 341.3333333333334S291.4133333333333 277.3333333333334 256 277.3333333333334S192 305.92 192 341.3333333333334S220.5866666666667 405.3333333333333 256 405.3333333333333M256 256C290.7733333333333 256 322.56 248.5333333333334 352 233.6C380.5866666666667 218.4533333333333 394.6666666666667 200.32 394.6666666666667 178.9866666666667V55.8933333333333C394.6666666666667 31.9999999999999 376.32 11.9466666666667 338.9866666666667 -4.0533333333333V42.6666666666667C338.9866666666667 62.9333333333333 320.64 77.2266666666667 283.9466666666667 85.9733333333334C272 88.7466666666667 262.6133333333334 90.0266666666668 256 90.0266666666668C237.44 90.0266666666668 219.7333333333334 86.4 203.52 78.9333333333334C187.0933333333333 71.6800000000001 177.28 62.2933333333334 174.08 50.9866666666668C202.6666666666667 39.6800000000001 229.9733333333334 33.9200000000001 256 33.9200000000001L277.3333333333333 36.0533333333335V-20.0533333333332L256 -21.3333333333333C226.7733333333333 -21.3333333333333 199.04 -15.36 173.0133333333333 -4.0533333333333C135.68 11.9466666666667 117.3333333333333 32 117.3333333333333 55.8933333333333V178.9866666666666C117.3333333333333 200.3199999999999 131.4133333333333 218.4533333333333 160 233.6C189.44 248.5333333333334 221.44 256 256 256M256 213.3333333333334C232.5333333333334 213.3333333333334 213.3333333333333 194.1333333333333 213.3333333333333 170.6666666666667S232.5333333333334 128 256 128S298.6666666666667 147.2000000000001 298.6666666666667 170.6666666666667S279.4666666666667 213.3333333333334 256 213.3333333333334z" />
+    <glyph glyph-name="account-child-circle"
+      unicode="&#xFA89;"
+      horiz-adv-x="512" d=" M256 192C273.7066666666667 192 288 177.7066666666667 288 160S273.7066666666667 128 256 128S224 142.2933333333334 224 160S238.2933333333333 192 256 192M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 106.6666666666667C271.36 106.6666666666667 285.8666666666667 103.4666666666667 299.52 96C313.1733333333333 89.6 320 81.0666666666667 320 71.04V33.92C348.5866666666667 46.72 362.6666666666667 62.2933333333334 362.6666666666667 81.0666666666667V174.9333333333334C362.6666666666667 192.0000000000001 352 205.8666666666667 329.6 217.6C307.2 229.1200000000001 282.6666666666667 234.6666666666667 256 234.6666666666667S204.8 229.1200000000001 182.4 217.6C160 205.8666666666667 149.3333333333333 192 149.3333333333333 174.9333333333333V81.0666666666666C149.3333333333333 63.9999999999999 160.64 49.28 184.1066666666666 37.9733333333333C207.36 26.6666666666666 231.2533333333334 21.3333333333333 256 21.3333333333333L277.3333333333333 23.0399999999999V65.92L256 64C234.6666666666667 64 213.3333333333333 68.2666666666667 193.0666666666667 77.0133333333333C195.6266666666667 85.3333333333334 203.3066666666667 91.9466666666667 216.1066666666667 97.92C228.6933333333334 103.8933333333334 241.92 106.6666666666667 256 106.6666666666667M256 362.6666666666667C226.56 362.6666666666667 202.6666666666667 338.7733333333333 202.6666666666667 309.3333333333334S226.56 256 256 256S309.3333333333333 279.8933333333333 309.3333333333333 309.3333333333334S285.44 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="account-circle"
+      unicode="&#xF009;"
+      horiz-adv-x="512" d=" M256 38.4C202.6666666666667 38.4 155.52 65.7066666666667 128 106.6666666666667C128.64 149.3333333333334 213.3333333333333 172.8 256 172.8S383.36 149.3333333333334 384 106.6666666666667C356.48 65.7066666666667 309.3333333333333 38.4 256 38.4M256 341.3333333333334C291.4133333333333 341.3333333333334 320 312.7466666666667 320 277.3333333333334S291.4133333333333 213.3333333333334 256 213.3333333333334S192 241.92 192 277.3333333333334S220.5866666666667 341.3333333333334 256 341.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192C469.3333333333333 309.9733333333334 373.3333333333333 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="account-circle-outline"
+      unicode="&#xFB31;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M150.8266666666667 58.0266666666666C160 77.2266666666666 215.8933333333334 96 256 96S352 77.2266666666667 361.1733333333333 58.0266666666666C332.16 34.9866666666667 295.68 21.3333333333334 256 21.3333333333334C216.32 21.3333333333334 179.84 34.9866666666667 150.8266666666667 58.0266666666666M391.68 88.96C361.1733333333333 126.08 287.1466666666667 138.6666666666666 256 138.6666666666666S150.8266666666667 126.08 120.32 88.96C98.56 117.3333333333334 85.3333333333333 153.1733333333334 85.3333333333333 192C85.3333333333333 286.0800000000001 161.92 362.6666666666667 256 362.6666666666667S426.6666666666667 286.0800000000001 426.6666666666667 192C426.6666666666667 153.1733333333334 413.44 117.3333333333334 391.68 88.96M256 320C214.6133333333334 320 181.3333333333333 286.7200000000001 181.3333333333333 245.3333333333334S214.6133333333334 170.6666666666667 256 170.6666666666667S330.6666666666667 203.9466666666667 330.6666666666667 245.3333333333334S297.3866666666667 320 256 320M256 213.3333333333334C238.2933333333333 213.3333333333334 224 227.6266666666667 224 245.3333333333334S238.2933333333333 277.3333333333334 256 277.3333333333334S288 263.04 288 245.3333333333334S273.7066666666667 213.3333333333334 256 213.3333333333334z" />
+    <glyph glyph-name="account-clock"
+      unicode="&#xFB32;"
+      horiz-adv-x="512" d=" M226.7733333333334 147.2000000000001C260.9066666666667 222.2933333333334 349.4400000000001 255.36 424.5333333333333 221.2266666666667C499.6266666666666 187.0933333333334 532.6933333333333 98.5600000000001 498.5599999999999 23.4666666666667C474.4533333333333 -29.8666666666666 421.3333333333333 -64 362.6666666666667 -64C305.0666666666667 -64 252.3733333333334 -30.72 227.6266666666667 21.3333333333334H21.3333333333333V64C22.6133333333333 88.3200000000001 39.2533333333333 108.16 71.2533333333333 124.16S143.36 148.48 192 149.3333333333334C204.16 149.3333333333334 215.68 148.2666666666667 226.7733333333333 147.2000000000001M192 362.6666666666667C215.8933333333334 362.0266666666667 235.9466666666667 353.7066666666667 251.9466666666667 337.7066666666667S275.84 301.6533333333333 275.84 277.3333333333334C275.84 253.0133333333333 267.9466666666667 232.96 251.9466666666667 216.96C235.9466666666667 200.96 215.8933333333333 193.0666666666667 192 193.0666666666667S148.0533333333333 200.96 132.0533333333333 216.96C116.0533333333334 232.96 108.16 253.0133333333333 108.16 277.3333333333334C108.16 301.6533333333333 116.0533333333334 321.7066666666667 132.0533333333334 337.7066666666667C148.0533333333334 353.7066666666667 168.1066666666667 362.0266666666667 192 362.6666666666667M362.6666666666667 -21.3333333333333C421.5466666666666 -21.3333333333333 469.3333333333333 26.4533333333334 469.3333333333333 85.3333333333334S421.5466666666666 192 362.6666666666667 192S256 144.2133333333334 256 85.3333333333334S303.7866666666667 -21.3333333333333 362.6666666666667 -21.3333333333333M341.3333333333333 149.3333333333334H373.3333333333333V89.1733333333334L425.3866666666667 59.0933333333334L409.3866666666667 31.36L341.3333333333333 70.6133333333334V149.3333333333334z" />
+    <glyph glyph-name="account-clock-outline"
+      unicode="&#xFB33;"
+      horiz-adv-x="512" d=" M341.3333333333333 149.3333333333334H373.3333333333333V89.1733333333334L425.3866666666667 59.0933333333334L409.3866666666667 31.36L341.3333333333333 70.6133333333334V149.3333333333334M362.6666666666667 192C303.7866666666667 192 256 144.2133333333334 256 85.3333333333334S303.7866666666667 -21.3333333333333 362.6666666666667 -21.3333333333333S469.3333333333333 26.4533333333334 469.3333333333333 85.3333333333334S421.5466666666666 192 362.6666666666667 192M362.6666666666667 234.6666666666667C445.2266666666667 234.6666666666667 512 167.8933333333334 512 85.3333333333334S445.2266666666667 -64 362.6666666666667 -64C303.1466666666667 -64 251.7333333333334 -29.0133333333333 227.6266666666667 21.3333333333334H21.3333333333333V85.3333333333334C21.3333333333333 142.0800000000001 135.04 170.6666666666667 192 170.6666666666667C204.8 170.6666666666667 220.5866666666667 169.1733333333334 237.2266666666667 166.4C263.68 207.36 309.9733333333333 234.6666666666667 362.6666666666667 234.6666666666667M213.3333333333333 85.3333333333334C213.3333333333333 100.2666666666667 215.4666666666667 114.7733333333333 219.52 128C210.56 129.4933333333334 201.1733333333333 130.1333333333333 192 130.1333333333333C128.64 130.1333333333333 61.8666666666667 98.9866666666667 61.8666666666667 85.3333333333334V61.8666666666667H215.2533333333333C213.9733333333333 69.5466666666666 213.3333333333333 77.44 213.3333333333333 85.3333333333334M192 362.6666666666667C239.1466666666667 362.6666666666667 277.3333333333333 324.48 277.3333333333333 277.3333333333334S239.1466666666667 192 192 192S106.6666666666667 230.1866666666667 106.6666666666667 277.3333333333334S144.8533333333333 362.6666666666667 192 362.6666666666667M192 322.1333333333334C167.2533333333333 322.1333333333334 147.2 302.0800000000001 147.2 277.3333333333334C147.2 252.5866666666667 167.2533333333333 232.5333333333334 192 232.5333333333334C216.7466666666667 232.5333333333334 236.8 252.5866666666667 236.8 277.3333333333334C236.8 302.0800000000001 216.7466666666667 322.1333333333334 192 322.1333333333334z" />
+    <glyph glyph-name="account-convert"
+      unicode="&#xF00A;"
+      horiz-adv-x="512" d=" M160 -10.6666666666666L188.8 17.92L270.08 -63.36L256 -64C121.8133333333333 -64 11.9466666666667 39.2533333333333 1.0666666666667 170.6666666666667H33.0666666666667C40.7466666666667 90.4533333333334 90.6666666666667 22.6133333333333 160 -10.6666666666666M352 394.6666666666667L323.2 366.0800000000001L241.92 447.36L256 448C390.1866666666666 448 500.0533333333333 344.7466666666667 510.9333333333333 213.3333333333334H478.9333333333333C471.2533333333333 293.5466666666667 421.3333333333333 361.1733333333334 352 394.6666666666667M128 85.3333333333334C128 128 213.3333333333333 151.4666666666667 256 151.4666666666667S384 128 384 85.3333333333334V64H128V85.3333333333334M320 256C320 220.5866666666667 291.4133333333333 192 256 192S192 220.5866666666667 192 256S220.5866666666667 320 256 320S320 291.4133333333334 320 256z" />
+    <glyph glyph-name="account-details"
+      unicode="&#xF631;"
+      horiz-adv-x="512" d=" M160 128C184.1066666666666 128 209.4933333333334 122.4533333333334 236.5866666666667 111.5733333333334C263.4666666666667 100.48 277.3333333333333 86.4 277.3333333333333 68.9066666666667V21.3333333333334H42.6666666666667V68.9066666666667C42.6666666666667 86.4 56.5333333333333 100.48 83.4133333333333 111.5733333333334C110.5066666666667 122.4533333333334 136.1066666666667 128 160 128M277.3333333333333 170.6666666666667H469.3333333333333V128H277.3333333333333V170.6666666666667M277.3333333333333 256H469.3333333333333V213.3333333333334H277.3333333333333V256M277.3333333333333 341.3333333333334H469.3333333333333V298.6666666666667H277.3333333333333V341.3333333333334M160 277.3333333333334C189.44 277.3333333333334 213.3333333333333 253.4400000000001 213.3333333333333 224S189.44 170.6666666666667 160 170.6666666666667S106.6666666666667 194.56 106.6666666666667 224S130.56 277.3333333333334 160 277.3333333333334z" />
+    <glyph glyph-name="account-edit"
+      unicode="&#xF6BB;"
+      horiz-adv-x="512" d=" M462.9333333333333 163.2000000000001L441.6 141.8666666666667L397.8666666666666 185.6L419.2 206.9333333333333C423.68 211.4133333333334 431.1466666666666 211.4133333333334 435.6266666666666 206.9333333333333L462.9333333333333 179.6266666666667C467.4133333333333 175.1466666666667 467.4133333333333 167.68 462.9333333333333 163.2000000000001M256 43.9466666666667L385.28 173.2266666666666L429.0133333333333 129.4933333333333L299.9466666666667 0H256V43.9466666666667M256 149.3333333333334C161.7066666666667 149.3333333333334 85.3333333333333 111.1466666666667 85.3333333333333 64V21.3333333333334H213.3333333333333V61.6533333333334L298.6666666666667 146.9866666666667C284.5866666666667 148.6933333333334 270.2933333333333 149.3333333333334 256 149.3333333333334M256 362.6666666666667C208.8533333333333 362.6666666666667 170.6666666666667 324.48 170.6666666666667 277.3333333333334S208.8533333333333 192 256 192S341.3333333333333 230.1866666666667 341.3333333333333 277.3333333333334S303.1466666666667 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="account-group"
+      unicode="&#xF848;"
+      horiz-adv-x="512" d=" M256 320C220.5866666666667 320 192 291.4133333333334 192 256S220.5866666666667 192 256 192S320 220.5866666666667 320 256S291.4133333333333 320 256 320M128 273.7066666666667C98.56 273.7066666666667 74.6666666666667 249.8133333333334 74.6666666666667 220.3733333333333S98.56 167.04 128 167.04C146.7733333333333 167.04 163.2 176.8533333333334 172.5866666666667 191.36C158.2933333333333 209.4933333333334 149.3333333333333 231.4666666666667 149.3333333333333 256C149.3333333333333 260.2666666666667 149.3333333333333 264.5333333333334 150.1866666666667 268.8C143.36 272 135.8933333333333 273.7066666666667 128 273.7066666666667M384 273.7066666666667C376.1066666666667 273.7066666666667 368.64 272 361.8133333333334 268.8C362.6666666666667 264.5333333333334 362.6666666666667 260.2666666666667 362.6666666666667 256C362.6666666666667 231.4666666666667 353.7066666666666 209.4933333333334 339.4133333333333 191.36C348.8 176.8533333333334 365.2266666666667 167.04 384 167.04C413.44 167.04 437.3333333333333 190.9333333333333 437.3333333333333 220.3733333333333S413.44 273.7066666666667 384 273.7066666666667M256 149.3333333333334C213.3333333333333 149.3333333333334 128 128 128 85.3333333333334V42.6666666666667H384V85.3333333333334C384 128 298.6666666666667 149.3333333333334 256 149.3333333333334M99.6266666666667 128.64C64 122.4533333333334 21.3333333333333 105.8133333333334 21.3333333333333 78.2933333333334V42.6666666666667H85.3333333333333V85.3333333333334C85.3333333333333 101.9733333333334 91.52 116.6933333333334 99.6266666666667 128.64M412.3733333333333 128.64C420.4799999999999 116.6933333333333 426.6666666666667 101.9733333333334 426.6666666666667 85.3333333333334V42.6666666666667H490.6666666666666V78.2933333333334C490.6666666666666 105.8133333333334 448 122.4533333333334 412.3733333333333 128.6400000000001z" />
+    <glyph glyph-name="account-group-outline"
+      unicode="&#xFB34;"
+      horiz-adv-x="512" d=" M256 341.3333333333334C214.8266666666667 341.3333333333334 181.3333333333333 307.8400000000001 181.3333333333333 266.6666666666667S214.8266666666667 192 256 192S330.6666666666667 225.4933333333334 330.6666666666667 266.6666666666667S297.1733333333333 341.3333333333334 256 341.3333333333334M256 298.6666666666667C273.7066666666667 298.6666666666667 288 284.3733333333334 288 266.6666666666667S273.7066666666667 234.6666666666667 256 234.6666666666667S224 248.96 224 266.6666666666667S238.2933333333333 298.6666666666667 256 298.6666666666667M117.3333333333333 277.3333333333334C87.8933333333333 277.3333333333334 64 253.4400000000001 64 224C64 203.9466666666667 75.3066666666667 186.6666666666667 91.52 177.4933333333334C99.2 173.2266666666667 107.9466666666667 170.6666666666667 117.3333333333333 170.6666666666667C126.72 170.6666666666667 135.4666666666667 173.2266666666667 143.1466666666667 177.4933333333334C151.04 181.9733333333334 157.6533333333333 188.3733333333333 162.56 196.0533333333334C146.9866666666667 216.32 138.6666666666667 241.0666666666667 138.6666666666667 266.6666666666667V272.64C132.2666666666667 275.6266666666667 125.0133333333333 277.3333333333334 117.3333333333333 277.3333333333334M394.6666666666667 277.3333333333334C386.9866666666667 277.3333333333334 379.7333333333334 275.6266666666667 373.3333333333333 272.64V266.6666666666667C373.3333333333333 241.0666666666667 365.0133333333333 216.32 349.44 196.0533333333334C352 192 354.7733333333333 188.8 357.9733333333333 185.6C361.3866666666666 182.4 364.8 179.6266666666667 368.8533333333333 177.4933333333334C376.5333333333333 173.2266666666667 385.28 170.6666666666666 394.6666666666667 170.6666666666666C404.0533333333334 170.6666666666666 412.8 173.2266666666666 420.48 177.4933333333334C436.6933333333334 186.6666666666666 448 203.9466666666667 448 224C448 253.4400000000001 424.1066666666667 277.3333333333334 394.6666666666667 277.3333333333334M256 149.3333333333334C206.08 149.3333333333334 106.6666666666667 124.3733333333333 106.6666666666667 74.6666666666667V42.6666666666667H405.3333333333333V74.6666666666667C405.3333333333333 124.3733333333333 305.92 149.3333333333334 256 149.3333333333334M100.48 137.6C59.3066666666667 132.6933333333334 0 111.7866666666667 0 74.6666666666667V42.6666666666667H64V83.84C64 105.3866666666667 78.72 123.3066666666667 100.48 137.6M411.52 137.6C433.28 123.3066666666667 448 105.3866666666667 448 83.84V42.6666666666667H512V74.6666666666667C512 111.7866666666667 452.6933333333333 132.6933333333334 411.52 137.6M256 106.6666666666667C288.64 106.6666666666667 325.12 96 346.24 85.3333333333334H165.76C186.88 96 223.36 106.6666666666667 256 106.6666666666667z" />
+    <glyph glyph-name="account-heart"
+      unicode="&#xF898;"
+      horiz-adv-x="512" d=" M320 149.3333333333334C262.4 149.3333333333334 149.3333333333333 121.6 149.3333333333333 64V21.3333333333334H490.6666666666666V64C490.6666666666666 121.6 377.6 149.3333333333334 320 149.3333333333334M320 192C367.1466666666667 192 405.3333333333333 230.1866666666667 405.3333333333333 277.3333333333334S367.1466666666667 362.6666666666667 320 362.6666666666667S234.6666666666667 324.48 234.6666666666667 277.3333333333334S272.8533333333333 192 320 192M106.6666666666667 128L93.8666666666667 138.6666666666667C51.2 179.2000000000001 21.3333333333333 204.8 21.3333333333333 236.8C21.3333333333333 262.4 42.6666666666667 283.7333333333334 68.2666666666667 283.7333333333334C83.2 283.7333333333334 98.1333333333333 277.3333333333334 106.6666666666667 266.6666666666667C115.2 277.3333333333334 130.1333333333333 283.7333333333334 145.0666666666667 283.7333333333334C170.6666666666667 283.7333333333334 192 264.5333333333334 192 236.8C192 204.8 162.1333333333333 179.2 119.4666666666667 138.6666666666667L106.6666666666667 128z" />
+    <glyph glyph-name="account-key"
+      unicode="&#xF00B;"
+      horiz-adv-x="512" d=" M234.6666666666667 234.6666666666667V192H213.3333333333333V149.3333333333334H170.6666666666667V192H124.3733333333333C115.6266666666667 167.04 91.9466666666667 149.3333333333334 64 149.3333333333334C28.5866666666667 149.3333333333334 0 177.92 0 213.3333333333334S28.5866666666667 277.3333333333334 64 277.3333333333334C91.9466666666667 277.3333333333334 115.6266666666667 259.6266666666667 124.3733333333333 234.6666666666667H234.6666666666667M64 234.6666666666667C52.2666666666667 234.6666666666667 42.6666666666667 225.0666666666667 42.6666666666667 213.3333333333334S52.2666666666667 192 64 192S85.3333333333333 201.6 85.3333333333333 213.3333333333334S75.7333333333333 234.6666666666667 64 234.6666666666667M341.3333333333333 149.3333333333334C398.2933333333334 149.3333333333334 512 120.7466666666667 512 64V21.3333333333334H170.6666666666667V64C170.6666666666667 120.7466666666667 284.3733333333334 149.3333333333334 341.3333333333333 149.3333333333334M341.3333333333333 192C294.1866666666666 192 256 230.1866666666667 256 277.3333333333334S294.1866666666666 362.6666666666667 341.3333333333333 362.6666666666667S426.6666666666667 324.48 426.6666666666667 277.3333333333334S388.48 192 341.3333333333333 192z" />
+    <glyph glyph-name="account-location"
+      unicode="&#xF00C;"
+      horiz-adv-x="512" d=" M384 106.6666666666667H128V125.8666666666667C128 168.5333333333334 213.3333333333333 192 256 192S384 168.5333333333334 384 125.8666666666667M256 334.9333333333334C288 334.9333333333334 313.6 309.3333333333334 313.6 277.3333333333334C313.6 245.3333333333334 288 219.7333333333334 256 219.7333333333334C224 219.7333333333334 198.4 245.3333333333334 198.4 277.3333333333334C198.4 309.3333333333334 224 334.9333333333334 256 334.9333333333334M405.3333333333333 405.3333333333333H106.6666666666667C82.9866666666667 405.3333333333333 64 386.3466666666667 64 362.6666666666667V64C64 40.5333333333333 83.2 21.3333333333334 106.6666666666667 21.3333333333334H192L256 -42.6666666666666L320 21.3333333333334H405.3333333333333C428.8 21.3333333333334 448 40.5333333333333 448 64V362.6666666666667C448 386.3466666666667 428.8 405.3333333333333 405.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="account-minus"
+      unicode="&#xF00D;"
+      horiz-adv-x="512" d=" M320 149.3333333333334C263.04 149.3333333333334 149.3333333333333 120.96 149.3333333333333 64V21.3333333333334H490.6666666666666V64C490.6666666666666 120.96 376.9600000000001 149.3333333333334 320 149.3333333333334M21.3333333333333 234.6666666666667V192H192V234.6666666666667M320 192C367.1466666666667 192 405.3333333333333 230.1866666666667 405.3333333333333 277.3333333333334S367.1466666666667 362.6666666666667 320 362.6666666666667S234.6666666666667 324.48 234.6666666666667 277.3333333333334S272.8533333333333 192 320 192z" />
+    <glyph glyph-name="account-minus-outline"
+      unicode="&#xFAEB;"
+      horiz-adv-x="512" d=" M320 362.6666666666667C272.8533333333333 362.6666666666667 234.6666666666667 324.48 234.6666666666667 277.3333333333334S272.8533333333333 192 320 192S405.3333333333333 230.1866666666667 405.3333333333333 277.3333333333334S367.1466666666667 362.6666666666667 320 362.6666666666667M320 322.1333333333334C344.7466666666667 322.1333333333334 364.8 302.0800000000001 364.8 277.3333333333334C364.8 252.5866666666667 344.7466666666667 232.5333333333334 320 232.5333333333334C295.2533333333334 232.5333333333334 275.2000000000001 252.5866666666667 275.2000000000001 277.3333333333334C275.2000000000001 302.0800000000001 295.2533333333334 322.1333333333334 320 322.1333333333334M21.3333333333333 234.6666666666667V192H192V234.6666666666667H21.3333333333333M320 170.6666666666667C263.04 170.6666666666667 149.3333333333333 142.2933333333334 149.3333333333333 85.3333333333334V21.3333333333334H490.6666666666666V85.3333333333334C490.6666666666666 142.2933333333334 376.9600000000001 170.6666666666667 320 170.6666666666667M320 130.1333333333333C383.36 130.1333333333333 450.1333333333334 98.9866666666667 450.1333333333334 85.3333333333334V61.8666666666667H189.8666666666667V85.3333333333334C189.8666666666667 98.9866666666667 256 130.1333333333333 320 130.1333333333333z" />
+    <glyph glyph-name="account-multiple"
+      unicode="&#xF00E;"
+      horiz-adv-x="512" d=" M341.3333333333333 170.6666666666667C335.1466666666667 170.6666666666667 328.1066666666667 170.6666666666667 320.64 169.6C345.3866666666667 151.68 362.6666666666667 128 362.6666666666667 96V42.6666666666667H490.6666666666666V96C490.6666666666666 145.7066666666667 391.04 170.6666666666667 341.3333333333333 170.6666666666667M170.6666666666667 170.6666666666667C120.96 170.6666666666667 21.3333333333333 145.7066666666667 21.3333333333333 96V42.6666666666667H320V96C320 145.7066666666667 220.3733333333333 170.6666666666667 170.6666666666667 170.6666666666667M170.6666666666667 213.3333333333334C206.08 213.3333333333334 234.6666666666667 241.92 234.6666666666667 277.3333333333334S206.08 341.3333333333334 170.6666666666667 341.3333333333334S106.6666666666667 312.7466666666667 106.6666666666667 277.3333333333334S135.2533333333333 213.3333333333334 170.6666666666667 213.3333333333334M341.3333333333333 213.3333333333334C376.7466666666667 213.3333333333334 405.3333333333333 241.92 405.3333333333333 277.3333333333334S376.7466666666667 341.3333333333334 341.3333333333333 341.3333333333334S277.3333333333333 312.7466666666667 277.3333333333333 277.3333333333334S305.92 213.3333333333334 341.3333333333333 213.3333333333334z" />
+    <glyph glyph-name="account-multiple-check"
+      unicode="&#xF8C4;"
+      horiz-adv-x="512" d=" M481.92 279.04L506.6666666666666 248.96L405.3333333333333 147.6266666666667L346.6666666666667 211.6266666666667L371.4133333333333 236.3733333333334L405.3333333333333 202.6666666666667L481.92 279.04M128 341.3333333333334C163.4133333333333 341.3333333333334 192 312.7466666666667 192 277.3333333333334S163.4133333333333 213.3333333333334 128 213.3333333333334S64 241.92 64 277.3333333333334S92.5866666666667 341.3333333333334 128 341.3333333333334M234.6666666666667 341.3333333333334C270.08 341.3333333333334 298.6666666666667 312.7466666666667 298.6666666666667 277.3333333333334S270.08 213.3333333333334 234.6666666666667 213.3333333333334C227.84 213.3333333333334 221.2266666666666 214.4 215.04 216.5333333333334C227.2 233.8133333333334 234.6666666666667 254.7200000000001 234.6666666666667 277.3333333333334S227.2 321.0666666666667 215.04 338.3466666666667C221.2266666666666 340.2666666666667 227.84 341.3333333333333 234.6666666666667 341.3333333333333M128 170.6666666666667C170.6666666666667 170.6666666666667 256 149.3333333333334 256 106.6666666666667V64H0V106.6666666666667C0 149.3333333333334 85.3333333333333 170.6666666666667 128 170.6666666666667M269.2266666666667 167.2533333333333C312.1066666666667 160 362.6666666666667 139.52 362.6666666666667 106.6666666666667V64H298.6666666666667V106.6666666666667C298.6666666666667 131.84 286.9333333333333 151.8933333333334 269.2266666666667 167.2533333333333z" />
+    <glyph glyph-name="account-multiple-minus"
+      unicode="&#xF5D3;"
+      horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667C234.6666666666667 170.6666666666667 149.3333333333333 149.3333333333334 149.3333333333333 106.6666666666667V64H405.3333333333333V106.6666666666667C405.3333333333333 149.3333333333334 320 170.6666666666667 277.3333333333333 170.6666666666667M418.56 167.2533333333333C436.2666666666667 151.8933333333333 448 131.84 448 106.6666666666667V64H512V106.6666666666667C512 139.52 461.4399999999999 160 418.56 167.2533333333333M277.3333333333333 213.3333333333334C312.7466666666667 213.3333333333334 341.3333333333333 241.92 341.3333333333333 277.3333333333334S312.7466666666667 341.3333333333334 277.3333333333333 341.3333333333334S213.3333333333333 312.7466666666667 213.3333333333333 277.3333333333334S241.92 213.3333333333334 277.3333333333333 213.3333333333334M384 213.3333333333334C419.4133333333333 213.3333333333334 448 241.92 448 277.3333333333334S419.4133333333333 341.3333333333334 384 341.3333333333334C377.1733333333333 341.3333333333334 370.56 340.2666666666667 364.3733333333333 338.3466666666667C376.5333333333333 321.0666666666667 384 299.9466666666667 384 277.3333333333334C384 254.72 376.5333333333333 233.8133333333334 364.3733333333333 216.5333333333334C370.56 214.4 377.1733333333333 213.3333333333334 384 213.3333333333334M170.6666666666667 234.6666666666667H0V192H170.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="account-multiple-outline"
+      unicode="&#xF00F;"
+      horiz-adv-x="512" d=" M352 309.3333333333334C375.4666666666667 309.3333333333334 394.6666666666667 290.1333333333334 394.6666666666667 266.6666666666667S375.4666666666667 224 352 224S309.3333333333333 243.2 309.3333333333333 266.6666666666667S328.5333333333333 309.3333333333334 352 309.3333333333334M352 192C393.1733333333333 192 426.6666666666667 225.4933333333334 426.6666666666667 266.6666666666667S393.1733333333333 341.3333333333334 352 341.3333333333334S277.3333333333333 307.8400000000001 277.3333333333333 266.6666666666667S310.8266666666667 192 352 192M160 309.3333333333334C183.4666666666667 309.3333333333334 202.6666666666667 290.1333333333334 202.6666666666667 266.6666666666667S183.4666666666667 224 160 224S117.3333333333333 243.2 117.3333333333333 266.6666666666667S136.5333333333333 309.3333333333334 160 309.3333333333334M160 192C201.1733333333333 192 234.6666666666667 225.4933333333334 234.6666666666667 266.6666666666667S201.1733333333333 341.3333333333334 160 341.3333333333334S85.3333333333333 307.8400000000001 85.3333333333333 266.6666666666667S118.8266666666667 192 160 192M458.6666666666666 74.6666666666667H298.6666666666667V101.3333333333334C298.6666666666667 111.1466666666667 294.4 119.68 288 127.36C306.3466666666667 133.7600000000001 329.3866666666667 138.6666666666667 352 138.6666666666667C404.0533333333334 138.6666666666667 458.6666666666666 112.8533333333334 458.6666666666666 101.3333333333334M266.6666666666667 74.6666666666667H53.3333333333333V101.3333333333334C53.3333333333333 112.8533333333334 107.9466666666667 138.6666666666667 160 138.6666666666667S266.6666666666667 112.8533333333334 266.6666666666667 101.3333333333334M352 170.6666666666667C326.4 170.6666666666667 286.5066666666667 163.4133333333334 256 149.3333333333334C225.4933333333334 163.6266666666667 185.6 170.6666666666667 160 170.6666666666667C113.7066666666667 170.6666666666667 21.3333333333333 147.6266666666667 21.3333333333333 101.3333333333334V42.6666666666667H490.6666666666666V101.3333333333334C490.6666666666666 147.6266666666667 398.2933333333334 170.6666666666667 352 170.6666666666667z" />
+    <glyph glyph-name="account-multiple-plus"
+      unicode="&#xF010;"
+      horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667C234.6666666666667 170.6666666666667 149.3333333333333 149.3333333333334 149.3333333333333 106.6666666666667V64H405.3333333333333V106.6666666666667C405.3333333333333 149.3333333333334 320 170.6666666666667 277.3333333333333 170.6666666666667M418.56 167.2533333333333C436.2666666666667 151.8933333333333 448 131.84 448 106.6666666666667V64H512V106.6666666666667C512 139.52 461.4399999999999 160 418.56 167.2533333333333M277.3333333333333 213.3333333333334C312.7466666666667 213.3333333333334 341.3333333333333 241.92 341.3333333333333 277.3333333333334S312.7466666666667 341.3333333333334 277.3333333333333 341.3333333333334S213.3333333333333 312.7466666666667 213.3333333333333 277.3333333333334S241.92 213.3333333333334 277.3333333333333 213.3333333333334M384 213.3333333333334C419.4133333333333 213.3333333333334 448 241.92 448 277.3333333333334S419.4133333333333 341.3333333333334 384 341.3333333333334C377.1733333333333 341.3333333333334 370.56 340.2666666666667 364.3733333333333 338.3466666666667C376.5333333333333 321.0666666666667 384 299.9466666666667 384 277.3333333333334C384 254.72 376.5333333333333 233.8133333333334 364.3733333333333 216.5333333333334C370.56 214.4 377.1733333333333 213.3333333333334 384 213.3333333333334M170.6666666666667 234.6666666666667H106.6666666666667V298.6666666666667H64V234.6666666666667H0V192H64V128H106.6666666666667V192H170.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="account-multiple-plus-outline"
+      unicode="&#xF7FF;"
+      horiz-adv-x="512" d=" M288 341.3333333333334C246.8266666666667 341.3333333333334 213.3333333333333 307.8400000000001 213.3333333333333 266.6666666666667S246.8266666666667 192 288 192C304 192 318.72 197.12 330.6666666666667 205.6533333333334C342.8266666666667 197.12 357.5466666666667 192 373.3333333333333 192C414.5066666666667 192 448 225.4933333333334 448 266.6666666666667S414.5066666666667 341.3333333333334 373.3333333333333 341.3333333333334C357.5466666666667 341.3333333333334 343.04 336 330.6666666666667 327.4666666666667C318.9333333333333 336.2133333333334 304 341.3333333333334 288 341.3333333333334M288 309.3333333333334C311.4666666666667 309.3333333333334 330.6666666666667 290.1333333333334 330.6666666666667 266.6666666666667S311.4666666666667 224 288 224S245.3333333333333 243.2 245.3333333333333 266.6666666666667S264.5333333333333 309.3333333333334 288 309.3333333333334M373.3333333333333 309.3333333333334C396.8 309.3333333333334 416 290.1333333333334 416 266.6666666666667S396.8 224 373.3333333333333 224C365.6533333333333 224 358.6133333333333 226.1333333333334 352 229.76C358.8266666666667 240.64 362.6666666666667 253.2266666666667 362.6666666666667 266.6666666666667C362.6666666666667 280.1066666666667 358.8266666666667 292.6933333333334 352 303.5733333333334C358.6133333333333 307.2000000000001 365.6533333333333 309.3333333333334 373.3333333333333 309.3333333333334M64 277.3333333333334V213.3333333333334H0V170.6666666666667H64V106.6666666666667H106.6666666666667V170.6666666666667H170.6666666666667V213.3333333333334H106.6666666666667V277.3333333333334H64M288 170.6666666666667C241.7066666666667 170.6666666666667 149.3333333333333 147.6266666666667 149.3333333333333 101.3333333333334V42.6666666666667H512V101.3333333333334C512 147.6266666666667 419.6266666666667 170.6666666666667 373.3333333333333 170.6666666666667C361.6 170.6666666666667 346.6666666666667 168.96 330.6666666666667 165.9733333333334C315.3066666666666 168.96 300.16 170.6666666666667 288 170.6666666666667M288 138.6666666666667C340.0533333333333 138.6666666666667 394.6666666666667 112.8533333333334 394.6666666666667 101.3333333333334V74.6666666666667H181.3333333333333V101.3333333333334C181.3333333333333 112.8533333333334 235.9466666666667 138.6666666666667 288 138.6666666666667M407.04 135.2533333333333C446.5066666666667 128 480 110.2933333333334 480 101.3333333333334V74.6666666666667H426.6666666666667V101.3333333333334C426.6666666666667 114.56 418.9866666666667 125.8666666666667 407.04 135.2533333333333z" />
+    <glyph glyph-name="account-network"
+      unicode="&#xF011;"
+      horiz-adv-x="512" d=" M277.3333333333333 106.6666666666667V64H298.6666666666667C310.4 64 320 54.4 320 42.6666666666667H469.3333333333333V0H320C320 -11.7333333333333 310.4 -21.3333333333333 298.6666666666667 -21.3333333333333H213.3333333333333C201.6 -21.3333333333333 192 -11.7333333333333 192 0H42.6666666666667V42.6666666666667H192C192 54.4 201.6 64 213.3333333333333 64H234.6666666666667V106.6666666666667H106.6666666666667V138.6666666666667C106.6666666666667 179.84 173.44 213.3333333333334 256 213.3333333333334S405.3333333333333 179.84 405.3333333333333 138.6666666666667V106.6666666666667H277.3333333333333M256 405.3333333333333C297.1733333333333 405.3333333333333 330.6666666666667 371.8400000000001 330.6666666666667 330.6666666666667S297.1733333333333 256 256 256S181.3333333333333 289.4933333333334 181.3333333333333 330.6666666666667S214.8266666666667 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="account-off"
+      unicode="&#xF012;"
+      horiz-adv-x="512" d=" M256 362.6666666666667C303.1466666666667 362.6666666666667 341.3333333333333 324.48 341.3333333333333 277.3333333333334C341.3333333333333 235.7333333333334 311.4666666666667 200.96 272 193.4933333333334L172.16 293.3333333333334C179.6266666666667 332.8 214.4 362.6666666666667 256 362.6666666666667M261.9733333333333 149.3333333333334L389.9733333333334 21.3333333333334L426.6666666666667 -15.36L399.5733333333333 -42.6666666666666L335.5733333333333 21.3333333333334H85.3333333333333V64C85.3333333333333 103.2533333333333 138.6666666666667 136.3200000000001 210.56 146.3466666666667L59.3066666666667 297.6L86.4 324.6933333333334L261.9733333333333 149.3333333333334M426.6666666666667 64V38.8266666666667L322.9866666666667 142.5066666666667C384 129.4933333333334 426.6666666666667 99.2 426.6666666666667 64z" />
+    <glyph glyph-name="account-outline"
+      unicode="&#xF013;"
+      horiz-adv-x="512" d=" M256 170.6666666666667C199.04 170.6666666666667 85.3333333333333 142.2933333333334 85.3333333333333 85.3333333333334V21.3333333333334H426.6666666666667V85.3333333333334C426.6666666666667 142.2933333333334 312.96 170.6666666666667 256 170.6666666666667M256 362.6666666666667C208.8533333333333 362.6666666666667 170.6666666666667 324.48 170.6666666666667 277.3333333333334S208.8533333333333 192 256 192S341.3333333333333 230.1866666666667 341.3333333333333 277.3333333333334S303.1466666666667 362.6666666666667 256 362.6666666666667M256 130.1333333333333C319.36 130.1333333333333 386.1333333333334 98.9866666666667 386.1333333333334 85.3333333333334V61.8666666666667H125.8666666666667V85.3333333333334C125.8666666666667 98.9866666666667 192 130.1333333333333 256 130.1333333333333M256 322.1333333333334C280.7466666666667 322.1333333333334 300.8 302.0800000000001 300.8 277.3333333333334C300.8 252.5866666666667 280.7466666666667 232.5333333333334 256 232.5333333333334C231.2533333333334 232.5333333333334 211.2 252.5866666666667 211.2 277.3333333333334C211.2 302.0800000000001 231.2533333333334 322.1333333333334 256 322.1333333333334z" />
+    <glyph glyph-name="account-plus"
+      unicode="&#xF014;"
+      horiz-adv-x="512" d=" M320 149.3333333333334C263.04 149.3333333333334 149.3333333333333 120.96 149.3333333333333 64V21.3333333333334H490.6666666666666V64C490.6666666666666 120.96 376.9600000000001 149.3333333333334 320 149.3333333333334M128 234.6666666666667V298.6666666666667H85.3333333333333V234.6666666666667H21.3333333333333V192H85.3333333333333V128H128V192H192V234.6666666666667M320 192C367.1466666666667 192 405.3333333333333 230.1866666666667 405.3333333333333 277.3333333333334S367.1466666666667 362.6666666666667 320 362.6666666666667S234.6666666666667 324.48 234.6666666666667 277.3333333333334S272.8533333333333 192 320 192z" />
+    <glyph glyph-name="account-plus-outline"
+      unicode="&#xF800;"
+      horiz-adv-x="512" d=" M320 362.6666666666667C272.8533333333333 362.6666666666667 234.6666666666667 324.48 234.6666666666667 277.3333333333334S272.8533333333333 192 320 192S405.3333333333333 230.1866666666667 405.3333333333333 277.3333333333334S367.1466666666667 362.6666666666667 320 362.6666666666667M320 322.1333333333334C344.7466666666667 322.1333333333334 364.8 302.0800000000001 364.8 277.3333333333334C364.8 252.5866666666667 344.7466666666667 232.5333333333334 320 232.5333333333334C295.2533333333334 232.5333333333334 275.2000000000001 252.5866666666667 275.2000000000001 277.3333333333334C275.2000000000001 302.0800000000001 295.2533333333334 322.1333333333334 320 322.1333333333334M85.3333333333333 298.6666666666667V234.6666666666667H21.3333333333333V192H85.3333333333333V128H128V192H192V234.6666666666667H128V298.6666666666667H85.3333333333333M320 170.6666666666667C263.04 170.6666666666667 149.3333333333333 142.2933333333334 149.3333333333333 85.3333333333334V21.3333333333334H490.6666666666666V85.3333333333334C490.6666666666666 142.2933333333334 376.9600000000001 170.6666666666667 320 170.6666666666667M320 130.1333333333333C383.36 130.1333333333333 450.1333333333334 98.9866666666667 450.1333333333334 85.3333333333334V61.8666666666667H189.8666666666667V85.3333333333334C189.8666666666667 98.9866666666667 256 130.1333333333333 320 130.1333333333333z" />
+    <glyph glyph-name="account-question"
+      unicode="&#xFB35;"
+      horiz-adv-x="512" d=" M277.3333333333333 277.3333333333334C277.3333333333333 230.1866666666667 239.1466666666667 192 192 192S106.6666666666667 230.1866666666667 106.6666666666667 277.3333333333334S144.8533333333333 362.6666666666667 192 362.6666666666667S277.3333333333333 324.48 277.3333333333333 277.3333333333334M362.6666666666667 64V21.3333333333334H21.3333333333333V64C21.3333333333333 111.1466666666667 97.7066666666667 149.3333333333334 192 149.3333333333334S362.6666666666667 111.1466666666667 362.6666666666667 64M437.3333333333333 138.6666666666667V106.6666666666667H405.3333333333333V138.6666666666667H437.3333333333333M394.6666666666667 245.3333333333334H362.6666666666667V256C362.6666666666667 291.4133333333334 391.2533333333334 320 426.6666666666667 320S490.6666666666666 291.4133333333334 490.6666666666666 256C490.6666666666666 235.3066666666667 480 215.8933333333334 463.1466666666666 204.5866666666667L456.7466666666667 200.5333333333334C444.5866666666667 192 437.3333333333333 178.9866666666667 437.3333333333333 164.2666666666667V160.0000000000001H405.3333333333333V164.2666666666667C405.3333333333333 189.6533333333334 418.1333333333334 213.3333333333334 439.2533333333334 227.2000000000001L445.44 231.2533333333334C453.76 236.8000000000001 458.6666666666666 245.9733333333334 458.6666666666666 256.0000000000001C458.6666666666666 273.7066666666667 444.3733333333333 288.0000000000001 426.6666666666667 288.0000000000001S394.6666666666667 273.7066666666667 394.6666666666667 256.0000000000001V245.3333333333334z" />
+    <glyph glyph-name="account-question-outline"
+      unicode="&#xFB36;"
+      horiz-adv-x="512" d=" M437.3333333333333 138.6666666666667V106.6666666666667H405.3333333333333V138.6666666666667H437.3333333333333M394.6666666666667 245.3333333333334H362.6666666666667V256C362.6666666666667 291.4133333333334 391.2533333333334 320 426.6666666666667 320S490.6666666666666 291.4133333333334 490.6666666666666 256C490.6666666666666 235.3066666666667 480 215.8933333333334 463.1466666666666 204.5866666666667L456.7466666666667 200.5333333333334C444.5866666666667 192 437.3333333333333 178.9866666666667 437.3333333333333 164.2666666666667V160.0000000000001H405.3333333333333V164.2666666666667C405.3333333333333 189.6533333333334 418.1333333333334 213.3333333333334 439.2533333333334 227.2000000000001L445.44 231.2533333333334C453.76 236.8000000000001 458.6666666666666 245.9733333333334 458.6666666666666 256.0000000000001C458.6666666666666 273.7066666666667 444.3733333333333 288.0000000000001 426.6666666666667 288.0000000000001S394.6666666666667 273.7066666666667 394.6666666666667 256.0000000000001V245.3333333333334M192 170.6666666666667C248.96 170.6666666666667 362.6666666666667 142.0800000000001 362.6666666666667 85.3333333333334V21.3333333333334H21.3333333333333V85.3333333333334C21.3333333333333 142.0800000000001 135.04 170.6666666666667 192 170.6666666666667M192 362.6666666666667C239.1466666666667 362.6666666666667 277.3333333333333 324.48 277.3333333333333 277.3333333333334S239.1466666666667 192 192 192S106.6666666666667 230.1866666666667 106.6666666666667 277.3333333333334S144.8533333333333 362.6666666666667 192 362.6666666666667M192 130.1333333333333C128.64 130.1333333333333 61.8666666666667 98.9866666666667 61.8666666666667 85.3333333333334V61.8666666666667H322.1333333333334V85.3333333333334C322.1333333333334 98.9866666666667 255.36 130.1333333333333 192 130.1333333333333M192 322.1333333333334C167.2533333333333 322.1333333333334 147.2 302.0800000000001 147.2 277.3333333333334C147.2 252.5866666666667 167.2533333333333 232.5333333333334 192 232.5333333333334C216.7466666666667 232.5333333333334 236.8 252.5866666666667 236.8 277.3333333333334C236.8 302.0800000000001 216.7466666666667 322.1333333333334 192 322.1333333333334z" />
+    <glyph glyph-name="account-remove"
+      unicode="&#xF015;"
+      horiz-adv-x="512" d=" M320 149.3333333333334C376.9600000000001 149.3333333333334 490.6666666666666 120.96 490.6666666666666 64V21.3333333333334H149.3333333333333V64C149.3333333333333 120.96 263.04 149.3333333333334 320 149.3333333333334M320 192C272.8533333333333 192 234.6666666666667 230.1866666666667 234.6666666666667 277.3333333333334S272.8533333333333 362.6666666666667 320 362.6666666666667S405.3333333333333 324.48 405.3333333333333 277.3333333333334S367.1466666666667 192 320 192M106.6666666666667 243.4133333333334L151.8933333333333 288.8533333333334L182.1866666666667 258.5600000000001L136.7466666666667 213.3333333333334L182.1866666666667 168.1066666666667L151.8933333333333 137.8133333333333L106.6666666666667 183.2533333333333L61.44 137.8133333333334L31.1466666666667 168.1066666666667L76.5866666666667 213.3333333333334L31.1466666666667 258.56L61.44 288.8533333333334L106.6666666666667 243.4133333333334z" />
+    <glyph glyph-name="account-remove-outline"
+      unicode="&#xFAEC;"
+      horiz-adv-x="512" d=" M31.1466666666667 258.56L61.44 288.8533333333334L106.6666666666667 243.4133333333334L151.8933333333333 288.8533333333334L182.1866666666667 258.5600000000001L136.7466666666667 213.3333333333334L182.1866666666667 168.1066666666667L151.8933333333333 137.8133333333333L106.6666666666667 183.2533333333333L61.44 137.8133333333334L31.1466666666667 168.1066666666667L76.5866666666667 213.3333333333334L31.1466666666667 258.56M320 362.6666666666667C367.1466666666667 362.6666666666667 405.3333333333333 324.48 405.3333333333333 277.3333333333334S367.1466666666667 192 320 192S234.6666666666667 230.1866666666667 234.6666666666667 277.3333333333334S272.8533333333333 362.6666666666667 320 362.6666666666667M320 322.1333333333334C295.2533333333334 322.1333333333334 275.2 302.0800000000001 275.2 277.3333333333334C275.2 252.5866666666667 295.2533333333334 232.5333333333334 320 232.5333333333334C344.7466666666667 232.5333333333334 364.8 252.5866666666667 364.8 277.3333333333334C364.8 302.0800000000001 344.7466666666667 322.1333333333334 320 322.1333333333334M320 170.6666666666667C376.9600000000001 170.6666666666667 490.6666666666666 142.2933333333334 490.6666666666666 85.3333333333334V21.3333333333334H149.3333333333333V85.3333333333334C149.3333333333333 142.2933333333334 263.04 170.6666666666667 320 170.6666666666667M320 130.1333333333333C256 130.1333333333333 189.8666666666667 98.9866666666667 189.8666666666667 85.3333333333334V61.8666666666667H450.1333333333334V85.3333333333334C450.1333333333334 98.9866666666667 383.36 130.1333333333333 320 130.1333333333333z" />
+    <glyph glyph-name="account-search"
+      unicode="&#xF016;"
+      horiz-adv-x="512" d=" M330.6666666666667 192C384 192 426.6666666666667 149.3333333333334 426.6666666666667 96C426.6666666666667 77.2266666666667 421.3333333333333 59.52 411.9466666666666 44.8000000000001L477.6533333333333 -21.3333333333333L448 -50.9866666666667L381.44 14.5066666666667C366.7199999999999 5.3333333333334 349.2266666666666 0 330.6666666666667 0C277.3333333333333 0 234.6666666666667 42.6666666666667 234.6666666666667 96S277.3333333333333 192 330.6666666666667 192M330.6666666666667 149.3333333333334C301.2266666666667 149.3333333333334 277.3333333333333 125.44 277.3333333333333 96S301.2266666666667 42.6666666666667 330.6666666666667 42.6666666666667S384 66.5600000000001 384 96S360.1066666666667 149.3333333333334 330.6666666666667 149.3333333333334M213.3333333333333 362.6666666666667C260.48 362.6666666666667 298.6666666666667 324.48 298.6666666666667 277.3333333333334C298.6666666666667 257.92 292.0533333333333 240 281.1733333333333 225.4933333333334C262.8266666666667 218.6666666666667 246.4 207.7866666666667 232.7466666666667 194.1333333333333L213.3333333333333 192C166.1866666666667 192 128 230.1866666666667 128 277.3333333333334S166.1866666666667 362.6666666666667 213.3333333333333 362.6666666666667M42.6666666666667 21.3333333333334V64C42.6666666666667 109.2266666666667 113.28 146.3466666666667 202.6666666666667 149.3333333333334C195.84 132.6933333333334 192 114.7733333333333 192 96C192 68.48 200.1066666666667 42.6666666666667 213.3333333333333 21.3333333333334H42.6666666666667z" />
+    <glyph glyph-name="account-search-outline"
+      unicode="&#xF934;"
+      horiz-adv-x="512" d=" M213.3333333333333 170.6666666666667C205.8666666666667 158.0800000000001 199.68 144.2133333333334 196.0533333333333 129.4933333333334C138.6666666666667 124.5866666666667 83.2 97.7066666666667 83.2 85.3333333333334V61.8666666666667H196.2666666666667C199.8933333333333 47.36 205.8666666666666 33.7066666666667 213.3333333333333 21.3333333333334H42.6666666666667V85.3333333333334C42.6666666666667 142.0800000000001 156.3733333333333 170.6666666666667 213.3333333333333 170.6666666666667M213.3333333333333 362.6666666666667C260.48 362.6666666666667 298.6666666666667 324.48 298.6666666666667 277.3333333333334C298.6666666666667 257.92 292.0533333333333 240 281.1733333333333 225.4933333333334C262.8266666666667 218.6666666666667 246.4 207.7866666666667 232.7466666666667 194.1333333333333L213.3333333333333 192C166.1866666666667 192 128 230.1866666666667 128 277.3333333333334S166.1866666666667 362.6666666666667 213.3333333333333 362.6666666666667M213.3333333333333 322.1333333333334C188.5866666666667 322.1333333333334 168.5333333333333 302.0800000000001 168.5333333333333 277.3333333333334C168.5333333333333 252.5866666666667 188.5866666666667 232.5333333333334 213.3333333333333 232.5333333333334C238.08 232.5333333333334 258.1333333333334 252.5866666666667 258.1333333333334 277.3333333333334C258.1333333333334 302.0800000000001 238.08 322.1333333333334 213.3333333333333 322.1333333333334M330.6666666666667 192C384 192 426.6666666666667 149.3333333333334 426.6666666666667 96C426.6666666666667 77.2266666666667 421.3333333333333 59.52 411.9466666666666 44.8000000000001L477.6533333333333 -21.3333333333333L448 -50.9866666666667L381.44 14.5066666666667C366.7199999999999 5.3333333333334 349.2266666666666 0 330.6666666666667 0C277.3333333333333 0 234.6666666666667 42.6666666666667 234.6666666666667 96S277.3333333333333 192 330.6666666666667 192M330.6666666666667 149.3333333333334C301.2266666666667 149.3333333333334 277.3333333333333 125.44 277.3333333333333 96S301.2266666666667 42.6666666666667 330.6666666666667 42.6666666666667S384 66.5600000000001 384 96S360.1066666666667 149.3333333333334 330.6666666666667 149.3333333333334z" />
+    <glyph glyph-name="account-settings"
+      unicode="&#xF630;"
+      horiz-adv-x="512" d=" M256 362.6666666666667C303.1466666666667 362.6666666666667 341.3333333333333 324.48 341.3333333333333 277.3333333333334S303.1466666666667 192 256 192S170.6666666666667 230.1866666666667 170.6666666666667 277.3333333333334S208.8533333333333 362.6666666666667 256 362.6666666666667M256 149.3333333333334C350.2933333333334 149.3333333333334 426.6666666666667 111.1466666666667 426.6666666666667 64V21.3333333333334H85.3333333333333V64C85.3333333333333 111.1466666666667 161.7066666666667 149.3333333333334 256 149.3333333333334M149.3333333333333 -21.3333333333333H192V-64H149.3333333333333V-21.3333333333333M234.6666666666667 -21.3333333333333H277.3333333333333V-64H234.6666666666667V-21.3333333333333M320 -21.3333333333333H362.6666666666667V-64H320V-21.3333333333333z" />
+    <glyph glyph-name="account-star"
+      unicode="&#xF017;"
+      horiz-adv-x="512" d=" M320 149.3333333333334C263.04 149.3333333333334 149.3333333333333 120.96 149.3333333333333 64V21.3333333333334H490.6666666666666V64C490.6666666666666 120.96 376.9600000000001 149.3333333333334 320 149.3333333333334M320 192C367.1466666666667 192 405.3333333333333 230.1866666666667 405.3333333333333 277.3333333333334S367.1466666666667 362.6666666666667 320 362.6666666666667S234.6666666666667 324.48 234.6666666666667 277.3333333333334S272.8533333333333 192 320 192M106.6666666666667 164.6933333333334L158.9333333333333 132.9066666666667L145.0666666666667 192.8533333333334L192 232.96L130.3466666666666 238.2933333333334L106.6666666666667 294.6133333333334L82.56 238.2933333333334L21.3333333333333 232.96L67.84 192.8533333333333L53.3333333333333 132.9066666666667L106.6666666666667 164.6933333333334z" />
+    <glyph glyph-name="account-supervisor"
+      unicode="&#xFA8A;"
+      horiz-adv-x="512" d=" M352 192C381.44 192 405.3333333333333 215.8933333333334 405.3333333333333 245.3333333333334S381.44 298.6666666666667 352 298.6666666666667S298.6666666666667 274.7733333333334 298.6666666666667 245.3333333333334S322.56 192 352 192M192 213.3333333333334C227.4133333333334 213.3333333333334 256 241.92 256 277.3333333333334S227.4133333333334 341.3333333333334 192 341.3333333333334S128 312.7466666666667 128 277.3333333333334S156.5866666666667 213.3333333333334 192 213.3333333333334M352 149.3333333333334C312.96 149.3333333333334 234.6666666666667 129.7066666666667 234.6666666666667 90.6666666666667V42.6666666666667H469.3333333333333V90.6666666666667C469.3333333333333 129.7066666666667 391.04 149.3333333333334 352 149.3333333333334M192 170.6666666666667C142.2933333333333 170.6666666666667 42.6666666666667 145.7066666666667 42.6666666666667 96V42.6666666666667H192V90.6666666666667C192 108.8 199.04 140.5866666666667 242.56 164.6933333333334C224 168.5333333333334 206.08 170.6666666666667 192 170.6666666666667z" />
+    <glyph glyph-name="account-supervisor-circle"
+      unicode="&#xFA8B;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.0266666666667 405.3333333333333 42.6666666666667 309.3333333333334 42.6666666666667 192C42.6666666666667 74.24 138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M332.8 270.0800000000001C355.6266666666666 270.0800000000001 373.9733333333334 251.7333333333334 373.9733333333334 228.9066666666667C373.9733333333334 206.08 355.6266666666667 187.7333333333334 332.8 187.7333333333334C309.9733333333334 187.7333333333334 291.6266666666667 206.08 291.6266666666667 228.9066666666667C291.4133333333334 251.7333333333334 309.9733333333334 270.0800000000001 332.8 270.0800000000001M204.8 303.7866666666667C232.5333333333334 303.7866666666667 255.1466666666667 281.1733333333334 255.1466666666667 253.4400000000001C255.1466666666667 225.7066666666667 232.5333333333334 202.6666666666667 204.8 202.6666666666667C177.0666666666667 202.6666666666667 154.4533333333334 225.7066666666667 154.4533333333334 253.44C154.4533333333334 281.3866666666667 176.8533333333334 303.7866666666667 204.8 303.7866666666667M204.8 109.0133333333333V29.0133333333333C153.6 45.0133333333333 113.0666666666667 84.48 95.1466666666667 134.8266666666667C117.3333333333333 158.72 173.44 170.6666666666667 204.8 170.6666666666667C216.1066666666666 170.6666666666667 230.4 169.1733333333334 245.3333333333333 166.1866666666667C210.3466666666666 147.6266666666667 204.8 123.0933333333334 204.8 109.0133333333333M256 21.3333333333334C250.0266666666667 21.3333333333334 244.48 21.3333333333334 238.9333333333333 22.1866666666667V109.0133333333333C238.9333333333333 139.3066666666667 301.6533333333333 154.4533333333333 332.8 154.4533333333333C355.6266666666666 154.4533333333333 394.6666666666667 146.1333333333333 414.7199999999999 129.92C389.76 66.5600000000001 328.1066666666667 21.3333333333334 256 21.3333333333334z" />
+    <glyph glyph-name="account-switch"
+      unicode="&#xF019;"
+      horiz-adv-x="512" d=" M341.3333333333333 256C391.04 256 490.6666666666666 231.04 490.6666666666666 181.3333333333334V128H362.6666666666667V181.3333333333334C362.6666666666667 213.3333333333334 345.3866666666667 237.0133333333333 320.8533333333333 254.9333333333334L341.3333333333333 256M170.6666666666667 256C220.3733333333333 256 320 231.04 320 181.3333333333334V128H21.3333333333333V181.3333333333334C21.3333333333333 231.04 120.96 256 170.6666666666667 256M170.6666666666667 298.6666666666667C135.2533333333333 298.6666666666667 106.6666666666667 327.2533333333334 106.6666666666667 362.6666666666667S135.2533333333333 426.6666666666667 170.6666666666667 426.6666666666667S234.6666666666667 398.08 234.6666666666667 362.6666666666667S206.08 298.6666666666667 170.6666666666667 298.6666666666667M341.3333333333333 298.6666666666667C305.92 298.6666666666667 277.3333333333333 327.2533333333334 277.3333333333333 362.6666666666667S305.92 426.6666666666667 341.3333333333333 426.6666666666667S405.3333333333333 398.08 405.3333333333333 362.6666666666667S376.7466666666667 298.6666666666667 341.3333333333333 298.6666666666667M192 90.6666666666667V42.6666666666667H320V90.6666666666667L389.3333333333333 21.3333333333334L320 -48V0H192V-48L122.6666666666667 21.3333333333334L192 90.6666666666667z" />
+    <glyph glyph-name="accusoft"
+      unicode="&#xF849;"
+      horiz-adv-x="512" d=" M373.3333333333333 114.9866666666667C369.7066666666666 120.1066666666667 203.3066666666667 332.8000000000001 197.76 339.6266666666667C192 346.6666666666667 193.7066666666667 348.8 194.7733333333333 350.0800000000001C196.6933333333333 352 199.68 352 211.84 352C218.88 352 289.92 352 297.3866666666667 352.64C312.7466666666667 352.64 315.3066666666666 351.36 316.8 350.7200000000001C318.5066666666667 350.2933333333334 322.7733333333333 346.6666666666667 325.5466666666666 343.04C327.04 341.3333333333334 476.16 162.9866666666667 477.6533333333333 161.0666666666667C479.1466666666666 159.1466666666667 481.92 155.9466666666667 483.6266666666667 152.7466666666667C485.5466666666667 149.3333333333334 485.76 145.4933333333334 482.9866666666667 144C481.28 142.9333333333333 398.9333333333333 109.0133333333333 396.5866666666667 108.16C394.6666666666667 106.6666666666667 389.76 105.3866666666667 386.3466666666667 105.8133333333334C384 106.6666666666667 379.0933333333333 108.3733333333333 373.3333333333333 114.9866666666667M458.0266666666666 119.04L464 117.9733333333334S483.84 114.1333333333333 485.76 113.7066666666667C487.8933333333333 113.28 489.8133333333333 111.7866666666667 489.6 111.1466666666667C489.3866666666666 109.4400000000001 488.5333333333333 108.5866666666667 487.04 107.7333333333334C485.76 106.6666666666667 396.3733333333333 51.6266666666667 394.6666666666667 50.7733333333334C393.1733333333333 49.9200000000001 391.04 48.64 386.3466666666667 48.0000000000001C377.6 46.2933333333335 360.7466666666667 50.9866666666668 355.4133333333333 52.0533333333335C350.08 53.3333333333334 131.2 101.7600000000001 129.28 102.4000000000001C127.36 103.0400000000001 126.08 103.2533333333335 125.8666666666667 104.9600000000002C125.6533333333333 107.9466666666668 130.3466666666667 109.2266666666668 133.9733333333333 110.7200000000001C137.8133333333333 112.0000000000001 240.64 149.3333333333335 244.2666666666667 150.8266666666668C247.8933333333333 152.3200000000001 252.5866666666667 152.7466666666668 254.9333333333333 152.9600000000001C257.28 153.1733333333334 271.5733333333333 150.8266666666668 277.9733333333333 149.9733333333334C284.5866666666667 149.3333333333334 302.9333333333333 146.1333333333335 302.9333333333333 146.1333333333335L344.7466666666667 91.7333333333335C352 83.4133333333334 356.6933333333333 80.0000000000001 362.6666666666667 79.3600000000001C365.8666666666666 79.1466666666668 369.28 80.0000000000002 371.6266666666667 81.0666666666668C373.3333333333333 81.9200000000001 458.0266666666667 119.0400000000001 458.0266666666667 119.0400000000001M218.6666666666667 252.1600000000001L255.1466666666667 205.44L256 203.7333333333334V202.6666666666667C255.1466666666667 201.8133333333334 190.5066666666667 142.5066666666667 190.08 141.8666666666667L122.0266666666667 117.3333333333334S120.1066666666667 116.2666666666667 119.04 115.6266666666667C117.9733333333333 114.9866666666667 116.6933333333333 113.7066666666667 117.3333333333333 110.5066666666667V89.8133333333334L33.28 63.1466666666667C29.2266666666667 61.8666666666667 21.3333333333333 59.0933333333334 20.2666666666667 59.9466666666667C18.7733333333333 61.0133333333334 20.6933333333333 63.3600000000001 21.3333333333333 64.64C22.6133333333333 65.92 193.7066666666667 234.6666666666667 200.32 241.0666666666667C209.92 250.8800000000001 218.6666666666667 252.1600000000001 218.6666666666667 252.1600000000001" />
+    <glyph glyph-name="adjust"
+      unicode="&#xF01A;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 21.3333333333334C161.92 21.3333333333334 85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667S426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334M320 192C320 156.5866666666667 291.4133333333333 128 256 128S192 156.5866666666667 192 192S220.5866666666667 256 256 256S320 227.4133333333334 320 192z" />
+    <glyph glyph-name="adobe"
+      unicode="&#xF935;"
+      horiz-adv-x="512" d=" M311.04 384H469.3333333333333V28.3733333333333L311.04 384M200.96 384H42.6666666666667V28.3733333333333L200.96 384M256 252.3733333333334L355.6266666666667 28.3733333333333H288L259.6266666666667 99.6266666666667H186.6666666666667L256 252.3733333333334z" />
+    <glyph glyph-name="air-conditioner"
+      unicode="&#xF01B;"
+      horiz-adv-x="512" d=" M140.5866666666667 433.92C190.5066666666667 472.5333333333333 244.6933333333333 425.3866666666667 256.8533333333333 352C266.0266666666667 352 274.9866666666666 349.44 283.0933333333333 344.7466666666667C294.1866666666666 357.5466666666667 304 375.04 300.16 394.6666666666667C291.2 440.5333333333333 342.6133333333333 477.6533333333333 391.4666666666667 414.2933333333334C430.08 364.3733333333334 382.9333333333334 310.1866666666667 309.3333333333334 298.0266666666667C309.3333333333334 288.8533333333334 306.9866666666667 279.68 302.0800000000001 271.5733333333334C314.88 260.6933333333334 332.3733333333334 250.88 352 254.7200000000001C397.44 263.6800000000001 434.7733333333333 212.48 371.4133333333333 163.4133333333334C321.4933333333334 124.8 267.3066666666667 171.9466666666667 255.1466666666667 245.3333333333334C245.9733333333334 245.3333333333334 237.0133333333334 248.1066666666667 229.12 252.8C218.0266666666667 240 208 222.2933333333334 211.84 202.6666666666667C220.8 157.0133333333333 169.3866666666667 119.68 120.5333333333333 183.04C81.7066666666667 233.1733333333334 129.0666666666667 287.36 202.6666666666667 299.3066666666667C202.6666666666667 308.48 205.44 317.44 210.1333333333333 325.5466666666667C197.3333333333333 336.4266666666667 179.84 346.4533333333334 160 342.6133333333334C114.56 333.6533333333333 77.2266666666667 384.8533333333334 140.5866666666667 433.92M106.6666666666667 106.6666666666667H149.3333333333333C172.8 106.6666666666667 192 87.4666666666667 192 64V-64H149.3333333333333V-21.3333333333333H106.6666666666667V-64H64V64C64 87.4666666666667 83.2 106.6666666666667 106.6666666666667 106.6666666666667M106.6666666666667 64V21.3333333333334H149.3333333333333V64H106.6666666666667M275.84 106.6666666666667H320L257.4933333333334 -64H213.3333333333333L275.84 106.6666666666667M384 106.6666666666667H448V64H384V-21.3333333333333H448V-64H384C360.5333333333333 -64 341.3333333333333 -44.8 341.3333333333333 -21.3333333333333V64C341.3333333333333 87.4666666666667 360.5333333333333 106.6666666666667 384 106.6666666666667z" />
+    <glyph glyph-name="airballoon"
+      unicode="&#xF01C;"
+      horiz-adv-x="512" d=" M234.6666666666667 -42.6666666666666C211.2 -42.6666666666666 192 -23.4666666666667 192 0V42.6666666666667H320V0C320 -23.4666666666667 300.8 -42.6666666666666 277.3333333333333 -42.6666666666666H234.6666666666667M256 426.6666666666667C271.1466666666667 426.6666666666667 285.6533333333333 424.7466666666667 299.7333333333334 421.12C324.6933333333334 387.6266666666667 341.3333333333333 326.1866666666667 341.3333333333333 256C341.3333333333333 207.36 333.2266666666667 162.7733333333333 320 106.6666666666667C320 83.2 300.8 64 277.3333333333333 64H234.6666666666667C211.2 64 192 83.2 192 106.6666666666667C178.7733333333334 162.7733333333333 170.6666666666667 207.36 170.6666666666667 256C170.6666666666667 326.1866666666667 187.3066666666667 387.6266666666667 212.2666666666667 421.12C226.3466666666667 424.7466666666667 240.8533333333333 426.6666666666667 256 426.6666666666667M426.6666666666667 277.3333333333334C426.6666666666667 209.4933333333334 387.2 108.3733333333333 329.8133333333334 80.8533333333334C350.08 119.68 362.6666666666667 195.6266666666667 362.6666666666667 256C362.6666666666667 316.3733333333334 350.08 370.9866666666667 329.8133333333334 409.8133333333334C387.2 382.2933333333334 426.6666666666667 345.1733333333334 426.6666666666667 277.3333333333334M85.3333333333333 277.3333333333334C85.3333333333333 345.1733333333334 124.8 382.2933333333334 182.1866666666667 409.8133333333334C161.92 370.9866666666667 149.3333333333333 316.3733333333334 149.3333333333333 256S161.92 119.68 182.1866666666667 80.8533333333334C124.8 108.3733333333333 85.3333333333333 209.4933333333334 85.3333333333333 277.3333333333334z" />
+    <glyph glyph-name="airplane"
+      unicode="&#xF01D;"
+      horiz-adv-x="512" d=" M448 106.6666666666667V149.3333333333334L277.3333333333333 256V373.3333333333334C277.3333333333333 391.04 263.04 405.3333333333333 245.3333333333333 405.3333333333333S213.3333333333333 391.04 213.3333333333333 373.3333333333334V256L42.6666666666667 149.3333333333334V106.6666666666667L213.3333333333333 160V42.6666666666667L170.6666666666667 10.6666666666667V-21.3333333333333L245.3333333333333 0L320 -21.3333333333333V10.6666666666667L277.3333333333333 42.6666666666667V160L448 106.6666666666667z" />
+    <glyph glyph-name="airplane-landing"
+      unicode="&#xF5D4;"
+      horiz-adv-x="512" d=" M53.3333333333333 42.6666666666667H458.6666666666666V0H53.3333333333333V42.6666666666667M206.5066666666667 164.9066666666667L299.3066666666666 140.16L412.5866666666667 109.8666666666667C429.6533333333333 105.3866666666667 447.1466666666667 115.4133333333334 451.84 132.48C456.32 149.3333333333334 446.2933333333333 167.0400000000001 429.2266666666667 171.7333333333334L315.9466666666667 202.0266666666667L257.0666666666667 394.6666666666667L215.8933333333334 405.3333333333333V228.6933333333334L109.8666666666667 257.0666666666667L90.0266666666667 306.5600000000001L59.0933333333333 314.88V204.5866666666667L93.2266666666667 195.4133333333334L206.5066666666667 164.9066666666667z" />
+    <glyph glyph-name="airplane-off"
+      unicode="&#xF01E;"
+      horiz-adv-x="512" d=" M67.2 335.5733333333334L173.44 229.12L45.8666666666667 149.3333333333334V106.6666666666667L216.5333333333333 160V42.6666666666667L173.8666666666667 10.6666666666667V-21.3333333333333L248.5333333333334 0L323.2 -21.3333333333333V10.6666666666667L280.5333333333333 42.6666666666667V122.24L402.56 0L429.8666666666667 27.0933333333334L94.2933333333333 362.6666666666667M280.5333333333333 256V373.3333333333334C280.5333333333333 391.04 266.24 405.3333333333333 248.5333333333334 405.3333333333333S216.5333333333333 391.04 216.5333333333333 373.3333333333334V294.8266666666667L383.36 128L451.1999999999999 106.6666666666667V149.3333333333334L280.5333333333333 256z" />
+    <glyph glyph-name="airplane-takeoff"
+      unicode="&#xF5D5;"
+      horiz-adv-x="512" d=" M53.3333333333333 42.6666666666667H458.6666666666666V0H53.3333333333333V42.6666666666667M470.8266666666667 242.3466666666667C466.3466666666666 259.4133333333334 448.64 269.6533333333333 431.5733333333333 264.9600000000001L318.2933333333333 234.6666666666667L170.6666666666667 371.8400000000001L129.92 360.9600000000001L218.24 208L112.2133333333333 179.6266666666667L70.1866666666667 212.48L39.2533333333334 204.16L78.08 136.7466666666667L94.5066666666667 108.3733333333333L128.64 117.3333333333334L241.92 147.84L334.72 172.5866666666667L448 202.6666666666667C465.28 207.7866666666667 475.3066666666667 225.2800000000001 470.8266666666667 242.3466666666667z" />
+    <glyph glyph-name="airplay"
+      unicode="&#xF01F;"
+      horiz-adv-x="512" d=" M128 -21.3333333333333H384L256 106.6666666666667M448 384H64C40.5333333333333 384 21.3333333333333 364.8 21.3333333333333 341.3333333333334V85.3333333333334C21.3333333333333 61.8666666666667 40.5333333333333 42.6666666666667 64 42.6666666666667H149.3333333333333V85.3333333333334H64V341.3333333333334H448V85.3333333333334H362.6666666666667V42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V341.3333333333334C490.6666666666666 364.8 471.4666666666667 384 448 384z" />
+    <glyph glyph-name="airport"
+      unicode="&#xF84A;"
+      horiz-adv-x="512" d=" M319.36 321.7066666666667C316.3733333333334 332.5866666666667 305.0666666666667 339.2000000000001 294.1866666666667 336.2133333333334L221.6533333333333 316.8L126.9333333333333 404.6933333333334L100.6933333333333 397.6533333333333L157.44 299.7333333333334L89.3866666666667 281.6L62.5066666666667 302.5066666666667L42.6666666666667 297.1733333333334L78.08 235.7333333333334L304.64 296.3200000000001C315.7333333333334 299.5200000000001 322.1333333333334 310.8266666666667 319.36 321.7066666666667M448 234.6666666666667L426.6666666666667 192H320L298.6666666666667 234.6666666666667L320 256H362.6666666666667V298.6666666666667H384V256H426.6666666666667L448 234.6666666666667M469.3333333333333 21.3333333333334V-21.3333333333333H42.6666666666667V21.3333333333334H320V170.6666666666667H426.6666666666667V21.3333333333334H469.3333333333333z" />
+    <glyph glyph-name="alarm"
+      unicode="&#xF020;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667S173.44 320 256 320S405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667S338.56 21.3333333333334 256 21.3333333333334M256 362.6666666666667C149.9733333333333 362.6666666666667 64 276.6933333333334 64 170.6666666666667S149.9733333333333 -21.3333333333333 256 -21.3333333333333S448 64.64 448 170.6666666666667S362.0266666666667 362.6666666666667 256 362.6666666666667M266.6666666666667 277.3333333333334H234.6666666666667V149.3333333333334L336 88.5333333333333L352 114.7733333333333L266.6666666666667 165.3333333333334V277.3333333333334M168.1066666666667 375.68L140.8 408.32L42.6666666666667 326.1866666666667L70.1866666666667 293.5466666666667L168.1066666666667 375.68M469.3333333333333 325.9733333333334L371.2 408.32L343.68 375.68L441.8133333333334 293.3333333333334L469.3333333333333 325.9733333333334z" />
+    <glyph glyph-name="alarm-bell"
+      unicode="&#xF78D;"
+      horiz-adv-x="512" d=" M320 49.92V-21.3333333333333H106.6666666666667V49.92C172.5866666666667 11.7333333333333 254.08 11.7333333333333 320 49.92M469.3333333333333 362.6666666666667C469.3333333333333 386.1333333333334 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333C420.0533333333334 405.3333333333333 413.6533333333333 403.8400000000001 407.8933333333333 400.8533333333334C401.4933333333334 397.6533333333333 395.9466666666667 392.96 391.68 387.2C378.0266666666667 368 382.7199999999999 341.3333333333334 402.1333333333333 327.68C409.1733333333333 322.7733333333333 417.9199999999999 320 426.6666666666666 320H431.7866666666665C468.6933333333332 225.4933333333334 440.7466666666666 118.1866666666667 362.6666666666665 53.3333333333334C355.8399999999998 48 348.7999999999999 42.6666666666667 341.3333333333332 37.9733333333334V0H362.6666666666665V26.8800000000001C429.6533333333332 74.6666666666667 469.3333333333331 152.3200000000001 469.3333333333331 234.6666666666667C469.3333333333331 266.6666666666668 463.3599999999998 298.6666666666668 451.6266666666666 328.1066666666667C462.7199999999999 336.2133333333334 469.3333333333331 349.0133333333334 469.3333333333331 362.6666666666668M383.9999999999999 234.6666666666667C383.9999999999999 140.3733333333334 307.6266666666665 64 213.3333333333332 64S42.6666666666665 140.3733333333333 42.6666666666665 234.6666666666667S119.0399999999999 405.3333333333333 213.3333333333332 405.3333333333333S383.9999999999999 328.9600000000001 383.9999999999999 234.6666666666667z" />
+    <glyph glyph-name="alarm-check"
+      unicode="&#xF021;"
+      horiz-adv-x="512" d=" M224.8533333333333 138.0266666666667L179.4133333333333 183.4666666666667L156.8 160.8533333333334L224.64 93.0133333333333L352.64 221.0133333333333L330.0266666666667 243.6266666666667L224.8533333333334 138.0266666666667M256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667S173.44 320 256 320S405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667S338.56 21.3333333333334 256 21.3333333333334M256 362.6666666666667C149.9733333333333 362.6666666666667 64 276.6933333333334 64 170.6666666666667S149.9733333333333 -21.3333333333333 256 -21.3333333333333S448 64.64 448 170.6666666666667S362.0266666666667 362.6666666666667 256 362.6666666666667M168.1066666666667 375.68L140.8 408.32L42.6666666666667 326.1866666666667L70.1866666666667 293.5466666666667L168.1066666666667 375.68M469.3333333333333 325.9733333333334L371.2 408.32L343.68 375.68L441.8133333333334 293.3333333333334L469.3333333333333 325.9733333333334z" />
+    <glyph glyph-name="alarm-light"
+      unicode="&#xF78E;"
+      horiz-adv-x="512" d=" M128 300.8L82.56 346.0266666666667L112.64 376.1066666666667L157.8666666666667 330.6666666666667L128 300.8M277.3333333333333 426.6666666666667V362.6666666666667H234.6666666666667V426.6666666666667H277.3333333333333M429.44 346.0266666666667L384 300.8L354.1333333333334 330.6666666666667L399.36 376.1066666666667L429.4400000000001 346.0266666666667M96 224V181.3333333333334H32V224H96M416 224H480V181.3333333333334H416V224M128 21.3333333333334H384C407.4666666666667 21.3333333333334 426.6666666666667 2.1333333333334 426.6666666666667 -21.3333333333333H85.3333333333333C85.3333333333333 2.1333333333334 104.5333333333333 21.3333333333334 128 21.3333333333334M256 341.3333333333334C326.6133333333334 341.3333333333334 384 283.9466666666667 384 213.3333333333334V42.6666666666667H128V213.3333333333334C128 283.9466666666667 185.3866666666667 341.3333333333334 256 341.3333333333334z" />
+    <glyph glyph-name="alarm-multiple"
+      unicode="&#xF022;"
+      horiz-adv-x="512" d=" M198.1866666666667 378.6666666666667L110.08 304.64L85.3333333333333 334.0800000000001L173.6533333333333 408.1066666666667L198.1866666666667 378.6666666666667M469.3333333333333 333.8666666666667L444.5866666666667 304.4266666666667L356.2666666666667 378.6666666666667L381.0133333333333 408.1066666666667L469.3333333333333 333.8666666666667M277.3333333333333 362.6666666666667C371.6266666666667 362.6666666666667 448 286.2933333333334 448 192S371.6266666666667 21.3333333333334 277.3333333333333 21.3333333333334S106.6666666666667 97.7066666666667 106.6666666666667 192S183.04 362.6666666666667 277.3333333333333 362.6666666666667M277.3333333333333 320C206.72 320 149.3333333333333 262.6133333333334 149.3333333333333 192S206.72 64 277.3333333333333 64S405.3333333333333 121.3866666666667 405.3333333333333 192S347.9466666666666 320 277.3333333333333 320M256 288H288V191.36L356.6933333333333 160L343.4666666666666 130.9866666666667L256 170.6666666666667V288M21.3333333333333 149.3333333333334C21.3333333333333 202.6666666666667 45.44 249.6 83.4133333333333 280.9600000000001C71.04 253.8666666666667 64 224 64 192L65.28 167.8933333333334L64 149.3333333333334C64 100.6933333333333 91.0933333333333 58.4533333333334 130.9866666666667 36.6933333333333C158.72 10.6666666666667 193.4933333333334 -8.32 232.32 -16.64C219.3066666666667 -19.6266666666667 205.8666666666667 -21.3333333333333 192 -21.3333333333333C97.7066666666667 -21.3333333333333 21.3333333333333 55.04 21.3333333333333 149.3333333333334z" />
+    <glyph glyph-name="alarm-off"
+      unicode="&#xF023;"
+      horiz-adv-x="512" d=" M170.6666666666667 378.0266666666667L140.8 408.32L122.4533333333333 393.1733333333334L152.7466666666667 362.6666666666667M351.36 55.68C325.5466666666666 34.3466666666667 292.2666666666667 21.3333333333334 256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667C106.6666666666667 206.9333333333333 119.68 240.2133333333334 141.0133333333333 266.0266666666667M62.2933333333333 399.1466666666667L35.2 371.8400000000001L64 343.4666666666667L39.8933333333333 323.6266666666667L70.1866666666667 293.3333333333334L93.8666666666667 313.3866666666667L110.9333333333333 296.32C81.7066666666667 262.6133333333334 64 218.6666666666667 64 170.6666666666667C64 64.64 149.9733333333333 -21.3333333333333 256 -21.3333333333333C304 -21.3333333333333 347.9466666666666 -3.6266666666667 381.6533333333333 25.6L428.5866666666667 -21.3333333333333L455.6799999999999 5.76L82.9866666666667 378.24L62.2933333333333 399.1466666666667M469.3333333333333 325.9733333333334L371.2 408.32L343.68 375.68L441.8133333333334 293.3333333333334L469.3333333333333 325.9733333333334M256 320C338.56 320 405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667C405.3333333333333 152.7466666666667 401.92 135.4666666666667 396.16 119.4666666666667L428.5866666666667 87.04C440.9599999999999 112.4266666666666 448 140.5866666666667 448 170.6666666666666C448 276.6933333333334 362.0266666666667 362.6666666666667 256 362.6666666666667C225.92 362.6666666666667 197.76 355.6266666666667 172.3733333333333 343.2533333333334L204.8 310.8266666666667C220.8 316.5866666666667 238.08 320 256 320z" />
+    <glyph glyph-name="alarm-plus"
+      unicode="&#xF024;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H234.6666666666667V192H170.6666666666667V149.3333333333334H234.6666666666667V85.3333333333334H277.3333333333333V149.3333333333334H341.3333333333333V192H277.3333333333333M256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667S173.44 320 256 320S405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667S338.56 21.3333333333334 256 21.3333333333334M256 362.6666666666667C149.9733333333333 362.6666666666667 64 276.6933333333334 64 170.6666666666667S149.9733333333333 -21.3333333333333 256 -21.3333333333333S448 64.64 448 170.6666666666667S362.0266666666667 362.6666666666667 256 362.6666666666667M469.3333333333333 325.9733333333334L371.2 408.32L343.68 375.68L441.8133333333334 293.3333333333334M168.1066666666667 375.68L140.8 408.32L42.6666666666667 326.1866666666667L70.1866666666667 293.5466666666667L168.1066666666667 375.68z" />
+    <glyph glyph-name="alarm-snooze"
+      unicode="&#xF68D;"
+      horiz-adv-x="512" d=" M168.1066666666667 375.68L140.8 408.32L42.6666666666667 326.1866666666667L70.1866666666667 293.5466666666667L168.1066666666667 375.68M469.3333333333333 325.9733333333334L371.2 408.32L343.68 375.68L441.8133333333334 293.3333333333334L469.3333333333333 325.9733333333334M256 362.6666666666667C149.9733333333333 362.6666666666667 64 276.6933333333334 64 170.6666666666667S149.9733333333333 -21.3333333333333 256 -21.3333333333333S448 64.64 448 170.6666666666667S362.0266666666667 362.6666666666667 256 362.6666666666667M256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667S173.44 320 256 320S405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667S338.56 21.3333333333334 256 21.3333333333334M192 213.3333333333334H269.44L192 123.7333333333334V85.3333333333334H320V128H242.56L320 217.6V256H192V213.3333333333334z" />
+    <glyph glyph-name="album"
+      unicode="&#xF025;"
+      horiz-adv-x="512" d=" M256 213.3333333333334C244.2666666666667 213.3333333333334 234.6666666666667 203.7333333333334 234.6666666666667 192S244.2666666666667 170.6666666666667 256 170.6666666666667S277.3333333333333 180.2666666666667 277.3333333333333 192S267.7333333333334 213.3333333333334 256 213.3333333333334M256 96C202.6666666666667 96 160 138.6666666666667 160 192S202.6666666666667 288 256 288S352 245.3333333333334 352 192S309.3333333333333 96 256 96M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="alert"
+      unicode="&#xF026;"
+      horiz-adv-x="512" d=" M277.3333333333333 149.3333333333334H234.6666666666667V234.6666666666667H277.3333333333333M277.3333333333333 64H234.6666666666667V106.6666666666667H277.3333333333333M21.3333333333333 0H490.6666666666666L256 405.3333333333333L21.3333333333333 0z" />
+    <glyph glyph-name="alert-box"
+      unicode="&#xF027;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M277.3333333333333 170.6666666666667V298.6666666666667H234.6666666666667V170.6666666666667H277.3333333333333M277.3333333333333 85.3333333333334V128H234.6666666666667V85.3333333333334H277.3333333333333z" />
+    <glyph glyph-name="alert-circle"
+      unicode="&#xF028;"
+      horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667H234.6666666666667V298.6666666666667H277.3333333333333M277.3333333333333 85.3333333333334H234.6666666666667V128H277.3333333333333M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="alert-circle-outline"
+      unicode="&#xF5D6;"
+      horiz-adv-x="512" d=" M234.6666666666667 128H277.3333333333333V85.3333333333334H234.6666666666667V128M234.6666666666667 298.6666666666667H277.3333333333333V170.6666666666667H234.6666666666667V298.6666666666667M256 405.3333333333333C138.0266666666667 405.3333333333333 42.6666666666667 309.3333333333334 42.6666666666667 192C42.6666666666667 74.24 138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334z" />
+    <glyph glyph-name="alert-decagram"
+      unicode="&#xF6BC;"
+      horiz-adv-x="512" d=" M490.6666666666666 192L438.6133333333333 251.3066666666667L445.8666666666666 329.8133333333334L368.8533333333333 347.3066666666667L328.5333333333333 415.1466666666667L256 384L183.4666666666667 415.1466666666667L143.1466666666667 347.3066666666667L66.1333333333333 330.0266666666667L73.3866666666667 251.5200000000001L21.3333333333333 192L73.3866666666667 132.6933333333334L66.1333333333333 53.9733333333334L143.1466666666667 36.48L183.4666666666667 -31.36L256 0L328.5333333333333 -31.1466666666666L368.8533333333333 36.6933333333333L445.8666666666666 54.1866666666667L438.6133333333333 132.6933333333333L490.6666666666666 192M277.3333333333333 85.3333333333334H234.6666666666667V128H277.3333333333333V85.3333333333334M277.3333333333333 170.6666666666667H234.6666666666667V298.6666666666667H277.3333333333333V170.6666666666667z" />
+    <glyph glyph-name="alert-octagon"
+      unicode="&#xF029;"
+      horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667H234.6666666666667V298.6666666666667H277.3333333333333M256 78.9333333333333C240.64 78.9333333333333 228.2666666666667 91.3066666666666 228.2666666666667 106.6666666666667C228.2666666666667 122.0266666666667 240.64 134.4 256 134.4C271.36 134.4 283.7333333333334 122.0266666666667 283.7333333333334 106.6666666666667C283.7333333333334 91.3066666666667 271.36 78.9333333333333 256 78.9333333333333M335.5733333333333 384H176.4266666666667L64 271.5733333333334V112.4266666666667L176.4266666666667 0H335.5733333333333L448 112.4266666666667V271.5733333333334L335.5733333333333 384z" />
+    <glyph glyph-name="alert-octagram"
+      unicode="&#xF766;"
+      horiz-adv-x="512" d=" M46.9333333333333 105.3866666666667L82.7733333333333 192L46.9333333333333 278.6133333333334L133.5466666666667 314.4533333333333L169.3866666666667 401.0666666666667L256 365.2266666666667L342.6133333333333 401.0666666666667L378.4533333333333 314.4533333333334L465.0666666666666 278.6133333333334L429.2266666666667 192L465.0666666666667 105.3866666666667L378.4533333333334 69.5466666666667L342.6133333333334 -17.0666666666666L256 18.7733333333333L169.3866666666667 -17.0666666666667L133.5466666666667 69.5466666666666L46.9333333333334 105.3866666666667M277.3333333333333 85.3333333333334V128H234.6666666666667V85.3333333333334H277.3333333333333M277.3333333333333 170.6666666666667V298.6666666666667H234.6666666666667V170.6666666666667H277.3333333333333z" />
+    <glyph glyph-name="alert-outline"
+      unicode="&#xF02A;"
+      horiz-adv-x="512" d=" M256 405.3333333333333L21.3333333333333 0H490.6666666666666M256 320L416.64 42.6666666666667H95.36M234.6666666666667 234.6666666666667V149.3333333333334H277.3333333333333V234.6666666666667M234.6666666666667 106.6666666666667V64H277.3333333333333V106.6666666666667" />
+    <glyph glyph-name="alien"
+      unicode="&#xF899;"
+      horiz-adv-x="512" d=" M256 384C362.0266666666667 384 448 307.6266666666667 448 213.3333333333334S320 0 256 0S64 119.04 64 213.3333333333334S149.9733333333333 384 256 384M219.9466666666667 214.8266666666667C198.1866666666667 249.8133333333334 159.36 264.9600000000001 133.3333333333333 248.7466666666667C107.3066666666667 232.5333333333334 103.8933333333333 190.9333333333333 125.6533333333333 155.9466666666667C147.6266666666667 120.96 186.4533333333333 105.8133333333334 212.48 122.0266666666667C238.5066666666667 138.6666666666667 241.7066666666667 179.84 219.9466666666667 214.8266666666667M292.0533333333334 214.8266666666667C270.2933333333334 179.84 273.4933333333334 138.6666666666667 299.52 122.0266666666667C325.5466666666667 105.8133333333334 364.3733333333334 120.96 386.3466666666667 155.9466666666667C408.1066666666667 190.9333333333334 404.6933333333333 232.5333333333334 378.6666666666667 248.7466666666667C352.64 264.9600000000001 313.8133333333334 249.8133333333334 292.0533333333334 214.8266666666667M256 69.3333333333334C213.3333333333333 69.3333333333334 202.6666666666667 85.3333333333334 202.6666666666667 85.3333333333334C202.6666666666667 84.6933333333333 213.3333333333333 42.6666666666667 256 42.6666666666667S309.3333333333333 85.3333333333334 309.3333333333333 85.3333333333334S298.6666666666667 69.3333333333334 256 69.3333333333334z" />
+    <glyph glyph-name="all-inclusive"
+      unicode="&#xF6BD;"
+      horiz-adv-x="512" d=" M396.8 306.7733333333333C366.08 306.7733333333333 337.0666666666667 294.8266666666667 316.3733333333334 274.1333333333334L166.4 141.0133333333333C152.7466666666667 127.36 134.6133333333333 119.8933333333333 115.2 119.8933333333333C75.3066666666667 119.8933333333333 42.6666666666667 152.1066666666667 42.6666666666667 192C42.6666666666667 231.8933333333334 75.3066666666667 264.1066666666667 115.2 264.1066666666667C134.6133333333334 264.1066666666667 152.7466666666667 256.64 167.2533333333333 242.1333333333334L191.36 220.8L224 249.3866666666667L196.6933333333333 273.0666666666667C174.9333333333333 294.8266666666667 145.92 306.7733333333333 115.2 306.7733333333333C51.6266666666667 306.7733333333333 0 255.1466666666667 0 192S51.6266666666667 77.2266666666667 115.2 77.2266666666667C145.92 77.2266666666667 174.9333333333333 89.1733333333334 195.6266666666667 109.8666666666667L345.6 242.9866666666667C359.2533333333334 256.6400000000001 377.3866666666666 264.1066666666667 396.8 264.1066666666667C436.6933333333333 264.1066666666667 469.3333333333333 231.8933333333334 469.3333333333333 192C469.3333333333333 152.1066666666667 436.6933333333332 119.8933333333334 396.8 119.8933333333334C377.6 119.8933333333334 359.2533333333332 127.36 344.7466666666666 141.8666666666667L320 163.4133333333334L288 134.8266666666667L315.3066666666666 110.9333333333333C337.0666666666666 89.3866666666667 365.8666666666666 77.44 396.8 77.44C460.3733333333333 77.44 512 128.8533333333334 512 192C512 256 460.3733333333333 306.7733333333333 396.8 306.7733333333333z" />
+    <glyph glyph-name="alpha"
+      unicode="&#xF02B;"
+      horiz-adv-x="512" d=" M385.7066666666666 68.2666666666667C375.8933333333333 65.4933333333333 367.1466666666666 64 359.4666666666666 64C333.8666666666666 64 316.5866666666666 82.7733333333333 307.8399999999999 120.5333333333334H306.7733333333333C285.6533333333333 79.7866666666668 255.9999999999999 59.52 218.6666666666666 59.52C190.7199999999999 59.52 168.3199999999999 69.9733333333333 151.4666666666666 91.0933333333334S126.2933333333333 138.6666666666667 126.2933333333333 170.6666666666667C126.2933333333333 208 135.8933333333333 237.8666666666667 154.88 261.12C173.8666666666667 284.3733333333334 199.68 296.1066666666667 232.32 296.1066666666667C249.8133333333334 296.1066666666667 265.6 291.2 279.2533333333334 281.6C292.9066666666667 271.7866666666667 303.36 258.1333333333334 310.6133333333334 240.4266666666667H311.4666666666667L326.6133333333333 291.6266666666667H381.2266666666666L335.5733333333333 178.1333333333333C340.6933333333333 151.68 346.0266666666666 133.5466666666667 351.9999999999999 123.9466666666667C357.1199999999999 114.3466666666667 364.3733333333332 109.44 373.3333333333333 109.44C378.4533333333332 109.44 382.5066666666666 110.2933333333333 386.1333333333333 111.7866666666666L385.7066666666666 68.2666666666667M294.8266666666666 180.0533333333334C290.3466666666666 204.16 283.0933333333333 222.9333333333333 273.28 235.7333333333333C263.68 248.7466666666667 251.9466666666667 255.1466666666667 238.5066666666667 255.1466666666667C221.0133333333333 255.1466666666667 206.9333333333333 247.2533333333334 196.48 231.68C186.0266666666667 215.8933333333333 181.3333333333333 196.48 181.3333333333333 173.6533333333333C181.3333333333333 152.7466666666667 185.3866666666667 135.4666666666667 194.56 121.3866666666667C203.52 107.3066666666666 215.68 100.48 230.8266666666667 100.48C243.6266666666666 100.48 255.36 106.6666666666666 265.8133333333333 118.4C276.48 130.56 285.2266666666667 148.2666666666667 292.2666666666667 171.52L294.8266666666666 180.0533333333333z" />
+    <glyph glyph-name="alpha-a"
+      unicode="&#x41;"
+      horiz-adv-x="512" d=" M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V85.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333V85.3333333333334H320V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667V256z" />
+    <glyph glyph-name="alpha-a-box"
+      unicode="&#xFAED;"
+      horiz-adv-x="512" d=" M64 341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V85.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333V85.3333333333334H320V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667V256z" />
+    <glyph glyph-name="alpha-b"
+      unicode="&#x42;"
+      horiz-adv-x="512" d=" M320 224V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H192V85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V160C320 177.0666666666667 305.0666666666667 192 288 192C305.0666666666667 192 320 206.9333333333333 320 224M277.3333333333333 128H234.6666666666667V170.6666666666667H277.3333333333333V128M277.3333333333333 213.3333333333334H234.6666666666667V256H277.3333333333333V213.3333333333334z" />
+    <glyph glyph-name="alpha-b-box"
+      unicode="&#xFAEE;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M320 224V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H192V85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V160C320 177.0666666666667 305.0666666666667 192 288 192C305.0666666666667 192 320 206.9333333333333 320 224M277.3333333333333 128H234.6666666666667V170.6666666666667H277.3333333333333V128M277.3333333333333 213.3333333333334H234.6666666666667V256H277.3333333333333V213.3333333333334z" />
+    <glyph glyph-name="alpha-c"
+      unicode="&#x43;"
+      horiz-adv-x="512" d=" M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V149.3333333333334H277.3333333333333V128H234.6666666666667V256H277.3333333333333V234.6666666666667H320V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667z" />
+    <glyph glyph-name="alpha-c-box"
+      unicode="&#xFAEF;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V149.3333333333334H277.3333333333333V128H234.6666666666667V256H277.3333333333333V234.6666666666667H320V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667z" />
+    <glyph glyph-name="alpha-d"
+      unicode="&#x44;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H192M234.6666666666667 256H277.3333333333333V128H234.6666666666667V256z" />
+    <glyph glyph-name="alpha-d-box"
+      unicode="&#xFAF0;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H192M234.6666666666667 256H277.3333333333333V128H234.6666666666667V256M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-e"
+      unicode="&#x45;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H320V128H234.6666666666667V170.6666666666667H320V213.3333333333334H234.6666666666667V256H320V298.6666666666667H192z" />
+    <glyph glyph-name="alpha-e-box"
+      unicode="&#xFAF1;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H320V128H234.6666666666667V170.6666666666667H320V213.3333333333334H234.6666666666667V256H320V298.6666666666667H192M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-f"
+      unicode="&#x46;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H234.6666666666667V170.6666666666667H298.6666666666667V213.3333333333334H234.6666666666667V256H320V298.6666666666667H192z" />
+    <glyph glyph-name="alpha-f-box"
+      unicode="&#xFAF2;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H234.6666666666667V170.6666666666667H298.6666666666667V213.3333333333334H234.6666666666667V256H320V298.6666666666667H192M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-g"
+      unicode="&#x47;"
+      horiz-adv-x="512" d=" M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V213.3333333333334H277.3333333333333V128H234.6666666666667V256H320V298.6666666666667H234.6666666666667z" />
+    <glyph glyph-name="alpha-g-box"
+      unicode="&#xFAF3;"
+      horiz-adv-x="512" d=" M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V213.3333333333334H277.3333333333333V128H234.6666666666667V256H320V298.6666666666667H234.6666666666667M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-h"
+      unicode="&#x48;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333V85.3333333333334H320V298.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667V298.6666666666667H192z" />
+    <glyph glyph-name="alpha-h-box"
+      unicode="&#xFAF4;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333V85.3333333333334H320V298.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667V298.6666666666667H192M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-i"
+      unicode="&#x49;"
+      horiz-adv-x="512" d=" M298.6666666666667 298.6666666666667V256H277.3333333333333V128H298.6666666666667V85.3333333333334H213.3333333333333V128H234.6666666666667V256H213.3333333333333V298.6666666666667H298.6666666666667z" />
+    <glyph glyph-name="alpha-i-box"
+      unicode="&#xFAF5;"
+      horiz-adv-x="512" d=" M298.6666666666667 298.6666666666667H213.3333333333333V256H234.6666666666667V128H213.3333333333333V85.3333333333334H298.6666666666667V128H277.3333333333333V256H298.6666666666667V298.6666666666667M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-j"
+      unicode="&#x4A;"
+      horiz-adv-x="512" d=" M277.3333333333333 298.6666666666667V128H234.6666666666667V149.3333333333334H192V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V298.6666666666667H277.3333333333333z" />
+    <glyph glyph-name="alpha-j-box"
+      unicode="&#xFAF6;"
+      horiz-adv-x="512" d=" M277.3333333333333 298.6666666666667V128H234.6666666666667V149.3333333333334H192V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V298.6666666666667H277.3333333333333M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-k"
+      unicode="&#x4B;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H234.6666666666667V156.3733333333333L277.3333333333333 85.3333333333334H320L256 192L320 298.6666666666667H277.3333333333333L234.6666666666667 227.6266666666667V298.6666666666667H192z" />
+    <glyph glyph-name="alpha-k-box"
+      unicode="&#xFAF7;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H234.6666666666667V156.3733333333333L277.3333333333333 85.3333333333334H320L256 192L320 298.6666666666667H277.3333333333333L234.6666666666667 227.6266666666667V298.6666666666667H192M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-l"
+      unicode="&#x4C;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H320V128H234.6666666666667V298.6666666666667H192z" />
+    <glyph glyph-name="alpha-l-box"
+      unicode="&#xFAF8;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H320V128H234.6666666666667V298.6666666666667H192M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-m"
+      unicode="&#x4D;"
+      horiz-adv-x="512" d=" M192 298.6666666666667C168.5333333333333 298.6666666666667 149.3333333333333 279.4666666666667 149.3333333333333 256V85.3333333333334H192V256H234.6666666666667V106.6666666666667H277.3333333333333V256H320V85.3333333333334H362.6666666666667V256C362.6666666666667 279.4666666666667 343.4666666666667 298.6666666666667 320 298.6666666666667H192z" />
+    <glyph glyph-name="alpha-m-box"
+      unicode="&#xFAF9;"
+      horiz-adv-x="512" d=" M192 298.6666666666667C168.5333333333333 298.6666666666667 149.3333333333333 279.4666666666667 149.3333333333333 256V85.3333333333334H192V256H234.6666666666667V106.6666666666667H277.3333333333333V256H320V85.3333333333334H362.6666666666667V256C362.6666666666667 279.4666666666667 343.4666666666667 298.6666666666667 320 298.6666666666667H192M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-n"
+      unicode="&#x4E;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H234.6666666666667V192L277.3333333333333 85.3333333333334H320V298.6666666666667H277.3333333333333V192L234.6666666666667 298.6666666666667H192z" />
+    <glyph glyph-name="alpha-n-box"
+      unicode="&#xFAFA;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H234.6666666666667V192L277.3333333333333 85.3333333333334H320V298.6666666666667H277.3333333333333V192L234.6666666666667 298.6666666666667H192M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-o"
+      unicode="&#x4F;"
+      horiz-adv-x="512" d=" M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667M234.6666666666667 256H277.3333333333333V128H234.6666666666667V256z" />
+    <glyph glyph-name="alpha-o-box"
+      unicode="&#xFAFB;"
+      horiz-adv-x="512" d=" M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667M234.6666666666667 256H277.3333333333333V128H234.6666666666667V256M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-p"
+      unicode="&#x50;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333C300.8 170.6666666666667 320 189.8666666666667 320 213.3333333333334V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H192M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667V256z" />
+    <glyph glyph-name="alpha-p-box"
+      unicode="&#xFAFC;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333C300.8 170.6666666666667 320 189.8666666666667 320 213.3333333333334V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H192M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667V256M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-q"
+      unicode="&#x51;"
+      horiz-adv-x="512" d=" M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334V42.6666666666667H277.3333333333333V85.3333333333334C300.8 85.3333333333334 320 104.5333333333333 320 128V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667M234.6666666666667 256H277.3333333333333V128H234.6666666666667V256z" />
+    <glyph glyph-name="alpha-q-box"
+      unicode="&#xFAFD;"
+      horiz-adv-x="512" d=" M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334V42.6666666666667H277.3333333333333V85.3333333333334C300.8 85.3333333333334 320 104.5333333333333 320 128V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667M234.6666666666667 256H277.3333333333333V128H234.6666666666667V256M106.6666666666667 362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320V21.3333333333334C448 -2.1333333333333 428.8 -21.3333333333333 405.3333333333333 -21.3333333333333H106.6666666666667C83.2 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V320C64 343.4666666666667 83.2 362.6666666666667 106.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="alpha-r"
+      unicode="&#x52;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H234.6666666666667V170.6666666666667H251.7333333333334L277.3333333333333 85.3333333333334H320L293.5466666666666 173.8666666666667C309.3333333333333 180.2666666666667 320 195.4133333333334 320 213.3333333333334V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H192M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667V256z" />
+    <glyph glyph-name="alpha-r-box"
+      unicode="&#xFAFE;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V85.3333333333334H234.6666666666667V170.6666666666667H251.7333333333334L277.3333333333333 85.3333333333334H320L293.5466666666666 173.8666666666667C309.3333333333333 180.2666666666667 320 195.4133333333334 320 213.3333333333334V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H192M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667V256M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-s"
+      unicode="&#x53;"
+      horiz-adv-x="512" d=" M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V213.3333333333334C192 189.8666666666667 211.2 170.6666666666667 234.6666666666667 170.6666666666667H277.3333333333333V128H192V85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V170.6666666666667C320 194.1333333333333 300.8 213.3333333333334 277.3333333333333 213.3333333333334H234.6666666666667V256H320V298.6666666666667H234.6666666666667z" />
+    <glyph glyph-name="alpha-s-box"
+      unicode="&#xFAFF;"
+      horiz-adv-x="512" d=" M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V213.3333333333334C192 189.8666666666667 211.2 170.6666666666667 234.6666666666667 170.6666666666667H277.3333333333333V128H192V85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V170.6666666666667C320 194.1333333333333 300.8 213.3333333333334 277.3333333333333 213.3333333333334H234.6666666666667V256H320V298.6666666666667H234.6666666666667M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-t"
+      unicode="&#x54;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V256H234.6666666666667V85.3333333333334H277.3333333333333V256H320V298.6666666666667H192z" />
+    <glyph glyph-name="alpha-t-box"
+      unicode="&#xFB00;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V256H234.6666666666667V85.3333333333334H277.3333333333333V256H320V298.6666666666667H192M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-u"
+      unicode="&#x55;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V298.6666666666667H277.3333333333333V128H234.6666666666667V298.6666666666667H192z" />
+    <glyph glyph-name="alpha-u-box"
+      unicode="&#xFB01;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V298.6666666666667H277.3333333333333V128H234.6666666666667V298.6666666666667H192M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-v"
+      unicode="&#x56;"
+      horiz-adv-x="512" d=" M192 298.6666666666667L234.6666666666667 85.3333333333334H277.3333333333333L320 298.6666666666667H277.3333333333333L256 192L234.6666666666667 298.6666666666667H192z" />
+    <glyph glyph-name="alpha-v-box"
+      unicode="&#xFB02;"
+      horiz-adv-x="512" d=" M192 298.6666666666667L234.6666666666667 85.3333333333334H277.3333333333333L320 298.6666666666667H277.3333333333333L256 192L234.6666666666667 298.6666666666667H192M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-w"
+      unicode="&#x57;"
+      horiz-adv-x="512" d=" M192 85.3333333333334C168.5333333333333 85.3333333333334 149.3333333333333 104.5333333333333 149.3333333333333 128V298.6666666666667H192V128H234.6666666666667V277.3333333333334H277.3333333333333V128H320V298.6666666666667H362.6666666666667V128C362.6666666666667 104.5333333333333 343.4666666666667 85.3333333333334 320 85.3333333333334H192z" />
+    <glyph glyph-name="alpha-w-box"
+      unicode="&#xFB03;"
+      horiz-adv-x="512" d=" M192 85.3333333333334H320C343.4666666666667 85.3333333333334 362.6666666666667 104.5333333333333 362.6666666666667 128V298.6666666666667H320V128H277.3333333333333V277.3333333333334H234.6666666666667V128H192V298.6666666666667H149.3333333333333V128C149.3333333333333 104.5333333333333 168.5333333333333 85.3333333333334 192 85.3333333333334M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-x"
+      unicode="&#x58;"
+      horiz-adv-x="512" d=" M192 298.6666666666667L234.6666666666667 192L192 85.3333333333334H234.6666666666667L256 138.6666666666667L277.3333333333333 85.3333333333334H320L277.3333333333333 192L320 298.6666666666667H277.3333333333333L256 245.3333333333334L234.6666666666667 298.6666666666667H192z" />
+    <glyph glyph-name="alpha-x-box"
+      unicode="&#xFB04;"
+      horiz-adv-x="512" d=" M192 298.6666666666667L234.6666666666667 192L192 85.3333333333334H234.6666666666667L256 138.6666666666667L277.3333333333333 85.3333333333334H320L277.3333333333333 192L320 298.6666666666667H277.3333333333333L256 245.3333333333334L234.6666666666667 298.6666666666667H192M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-y"
+      unicode="&#x59;"
+      horiz-adv-x="512" d=" M192 298.6666666666667L234.6666666666667 170.6666666666667V85.3333333333334H277.3333333333333V170.6666666666667L320 298.6666666666667H277.3333333333333L256 234.6666666666667L234.6666666666667 298.6666666666667H192z" />
+    <glyph glyph-name="alpha-y-box"
+      unicode="&#xFB05;"
+      horiz-adv-x="512" d=" M192 298.6666666666667L234.6666666666667 170.6666666666667V85.3333333333334H277.3333333333333V170.6666666666667L320 298.6666666666667H277.3333333333333L256 234.6666666666667L234.6666666666667 298.6666666666667H192M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alpha-z"
+      unicode="&#x5A;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V256H277.3333333333333L192 128V85.3333333333334H320V128H234.6666666666667L320 256V298.6666666666667H192z" />
+    <glyph glyph-name="alpha-z-box"
+      unicode="&#xFB06;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V256H277.3333333333333L192 128V85.3333333333334H320V128H234.6666666666667L320 256V298.6666666666667H192M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="alphabetical"
+      unicode="&#xF02C;"
+      horiz-adv-x="512" d=" M128 213.3333333333334C151.4666666666667 213.3333333333334 170.6666666666667 194.1333333333333 170.6666666666667 170.6666666666667V85.3333333333334H85.3333333333333C61.8666666666667 85.3333333333334 42.6666666666667 104.5333333333333 42.6666666666667 128V170.6666666666667C42.6666666666667 194.1333333333333 61.8666666666667 213.3333333333334 85.3333333333333 213.3333333333334H128M85.3333333333333 170.6666666666667V128H128V170.6666666666667H85.3333333333333M426.6666666666667 170.6666666666667V128H469.3333333333333V85.3333333333334H426.6666666666667C403.2 85.3333333333334 384 104.5333333333333 384 128V170.6666666666667C384 194.1333333333333 403.2 213.3333333333334 426.6666666666667 213.3333333333334H469.3333333333333V170.6666666666667H426.6666666666667M256 298.6666666666667V213.3333333333334H298.6666666666667C322.1333333333334 213.3333333333334 341.3333333333333 194.1333333333333 341.3333333333333 170.6666666666667V128C341.3333333333333 104.5333333333333 322.1333333333334 85.3333333333334 298.6666666666667 85.3333333333334H256C232.5333333333334 85.3333333333334 213.3333333333333 104.5333333333333 213.3333333333333 128V298.6666666666667H256M256 128H298.6666666666667V170.6666666666667H256V128z" />
+    <glyph glyph-name="altimeter"
+      unicode="&#xF5D7;"
+      horiz-adv-x="512" d=" M149.3333333333333 384V341.3333333333334H362.6666666666667V384H149.3333333333333M192 298.6666666666667V256H320V298.6666666666667H192M42.6666666666667 278.1866666666667V105.8133333333334L128.64 192L42.6666666666667 278.1866666666667M469.9733333333334 278.1866666666667L384 192L469.9733333333334 105.8133333333334V278.1866666666667M149.3333333333333 213.3333333333334V170.6666666666667H362.6666666666667V213.3333333333334H149.3333333333333M192 128V85.3333333333334H320V128H192M149.3333333333333 42.6666666666667V0H362.6666666666667V42.6666666666667H149.3333333333333z" />
+    <glyph glyph-name="amazon"
+      unicode="&#xF02D;"
+      horiz-adv-x="512" d=" M339.84 83.4133333333334C336 80 330.6666666666667 79.7866666666666 326.4 82.1333333333334C307.4133333333333 97.92 304 105.1733333333334 293.5466666666666 120.3200000000001C262.1866666666666 88.3200000000001 240 78.72 199.2533333333333 78.72C151.2533333333333 78.72 113.7066666666666 108.3733333333334 113.7066666666666 167.6800000000001C113.7066666666666 214.1866666666667 138.6666666666666 245.3333333333334 174.72 261.1200000000001C205.8666666666666 274.7733333333335 249.1733333333333 277.3333333333334 282.2399999999999 280.9600000000001V288C282.2399999999999 302.0800000000001 283.3066666666666 318.0800000000001 275.2 329.8133333333334C268.3733333333332 340.2666666666667 254.9333333333333 344.7466666666667 243.2 344.7466666666667C221.44 344.7466666666667 202.0266666666666 333.44 197.3333333333333 310.4C196.2666666666666 305.28 191.9999999999999 300.1600000000001 187.3066666666666 299.9466666666667L131.8399999999999 305.92C127.1466666666666 306.9866666666667 122.0266666666666 310.6133333333334 123.3066666666666 317.8666666666667C136.1066666666666 385.0666666666667 196.9066666666666 405.3333333333333 251.3066666666666 405.3333333333333C279.0399999999999 405.3333333333333 315.3066666666666 397.8666666666667 337.2799999999999 376.9600000000001C365.0133333333333 350.9333333333334 362.6666666666667 316.1600000000001 362.6666666666667 278.4V189.44C362.6666666666667 162.7733333333333 373.3333333333333 150.8266666666667 384 136.5333333333333C387.6266666666667 131.2 388.48 125.0133333333333 384 121.3866666666667L340.0533333333333 83.4133333333333H339.84M282.24 222.72V234.6666666666667C240.8533333333334 234.6666666666667 197.12 226.3466666666667 197.12 177.7066666666667C197.12 152.96 210.1333333333333 136.1066666666667 231.8933333333334 136.1066666666667C248.1066666666667 136.1066666666667 262.4 146.1333333333334 271.5733333333333 162.1333333333334C282.6666666666667 181.9733333333334 282.24 200.5333333333334 282.24 222.72M430.08 31.1466666666667C384 -2.9866666666667 316.16 -21.3333333333333 258.1333333333334 -21.3333333333333C176.8533333333333 -21.3333333333333 103.4666666666667 8.7466666666667 48 58.88C43.7333333333333 62.72 47.5733333333333 68.0533333333333 53.3333333333333 65.0666666666666C112.64 30.2933333333333 186.6666666666667 9.3866666666667 263.04 9.3866666666667C314.4533333333333 9.3866666666667 371.2 20.0533333333333 423.2533333333334 42.0266666666666C431.1466666666667 45.44 437.3333333333333 36.9066666666667 430.08 31.1466666666667M449.4933333333334 53.3333333333333C443.52 61.0133333333333 410.0266666666667 56.96 394.6666666666667 55.0399999999999C390.6133333333333 54.6133333333332 389.9733333333334 58.4533333333333 394.0266666666667 61.4399999999999C420.4799999999999 80.2133333333333 464.2133333333333 74.6666666666666 469.3333333333333 68.4799999999999C474.4533333333333 62.0799999999999 467.84 18.3466666666665 442.88 -2.3466666666668C439.04 -5.7600000000001 435.4133333333333 -3.8400000000001 437.3333333333333 -1e-13C442.88 14.2933333333332 455.4666666666667 45.6533333333332 449.4933333333334 53.3333333333332z" />
+    <glyph glyph-name="amazon-alexa"
+      unicode="&#xF8C5;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M222.5066666666667 -18.56V23.2533333333333C222.5066666666667 37.9733333333334 213.3333333333333 51.84 199.4666666666667 57.6C147.4133333333333 79.7866666666666 110.2933333333333 131.6266666666667 110.2933333333333 192C110.2933333333333 271.7866666666667 175.36 337.7066666666667 256 337.7066666666667C336.64 337.7066666666667 401.7066666666666 271.7866666666667 401.7066666666666 192C401.7066666666666 97.4933333333333 328.32 8.3200000000001 222.5066666666666 -18.5599999999999z" />
+    <glyph glyph-name="amazon-drive"
+      unicode="&#xF02E;"
+      horiz-adv-x="512" d=" M105.3866666666667 210.7733333333334C111.5733333333333 210.7733333333334 117.3333333333333 209.9200000000001 122.88 208.4266666666667C123.0933333333333 254.0800000000001 160 291.2000000000001 205.8666666666667 291.2000000000001C240.4266666666667 291.2000000000001 270.2933333333333 269.8666666666668 282.4533333333333 239.5733333333334C295.04 256 314.4533333333333 266.0266666666667 336.2133333333333 266.0266666666667C373.3333333333333 266.0266666666667 404.0533333333334 235.7333333333334 404.0533333333334 198.1866666666667C404.0533333333334 193.0666666666667 403.4133333333333 187.7333333333334 402.3466666666667 182.8266666666667C407.4666666666667 184.7466666666667 413.2266666666668 185.8133333333334 419.2000000000001 185.8133333333334C446.9333333333334 185.8133333333334 469.3333333333334 163.2000000000001 469.3333333333334 135.4666666666667C469.3333333333334 107.7333333333334 446.9333333333334 85.3333333333334 419.2000000000001 85.3333333333334H105.3866666666667C70.8266666666667 85.3333333333334 42.6666666666667 113.4933333333334 42.6666666666667 148.0533333333334C42.6666666666667 182.8266666666667 70.8266666666667 210.7733333333333 105.3866666666667 210.7733333333333z" />
+    <glyph glyph-name="ambulance"
+      unicode="&#xF02F;"
+      horiz-adv-x="512" d=" M384 53.3333333333334C401.7066666666666 53.3333333333334 416 67.6266666666667 416 85.3333333333334S401.7066666666666 117.3333333333334 384 117.3333333333334S352 103.04 352 85.3333333333334S366.2933333333334 53.3333333333334 384 53.3333333333334M416 245.3333333333334H362.6666666666667V192H457.8133333333333L416 245.3333333333334M128 53.3333333333334C145.7066666666667 53.3333333333334 160 67.6266666666667 160 85.3333333333334S145.7066666666667 117.3333333333334 128 117.3333333333334S96 103.04 96 85.3333333333334S110.2933333333333 53.3333333333334 128 53.3333333333334M426.6666666666667 277.3333333333334L490.6666666666666 192V85.3333333333334H448C448 49.92 419.4133333333333 21.3333333333334 384 21.3333333333334S320 49.92 320 85.3333333333334H192C192 49.92 163.4133333333333 21.3333333333334 128 21.3333333333334S64 49.92 64 85.3333333333334H21.3333333333333V320C21.3333333333333 343.68 40.32 362.6666666666667 64 362.6666666666667H362.6666666666667V277.3333333333334H426.6666666666667M170.6666666666667 320V256H106.6666666666667V213.3333333333334H170.6666666666667V149.3333333333334H213.3333333333333V213.3333333333334H277.3333333333333V256H213.3333333333333V320H170.6666666666667z" />
+    <glyph glyph-name="ampersand"
+      unicode="&#xFA8C;"
+      horiz-adv-x="512" d=" M93.8666666666667 96C93.8666666666667 115.2000000000001 100.2666666666667 134.4 110.9333333333333 151.4666666666667S142.9333333333333 187.7333333333334 174.9333333333333 209.0666666666667C155.7333333333333 232.5333333333334 145.0666666666666 249.6 138.6666666666666 262.4000000000001C130.1333333333333 277.3333333333334 128 290.1333333333334 128 305.0666666666667C128 337.0666666666667 136.5333333333333 360.5333333333334 155.7333333333333 379.7333333333334C174.9333333333333 398.9333333333334 200.5333333333333 405.3333333333334 232.5333333333333 405.3333333333334C260.2666666666667 405.3333333333334 283.7333333333333 396.8 302.9333333333333 379.7333333333334C322.1333333333334 362.6666666666667 330.6666666666667 341.3333333333334 330.6666666666667 317.8666666666667C330.6666666666667 300.8 326.4 285.8666666666667 317.8666666666667 270.9333333333334C309.3333333333333 256 294.4 241.0666666666667 273.0666666666667 226.1333333333334L243.2 202.6666666666667L334.9333333333333 91.7333333333334C347.7333333333334 117.3333333333334 354.1333333333333 142.9333333333334 354.1333333333333 174.9333333333334H401.0666666666666C401.0666666666666 125.8666666666667 390.3999999999999 85.3333333333334 366.9333333333332 53.3333333333334L426.6666666666666 -17.0666666666667H362.6666666666666L334.9333333333332 14.9333333333333C319.9999999999999 2.1333333333333 305.0666666666666 -6.4 285.8666666666666 -12.8C266.6666666666665 -19.2 247.4666666666666 -23.4666666666667 228.2666666666666 -23.4666666666667C187.7333333333332 -23.4666666666667 155.7333333333332 -12.8 130.1333333333333 8.5333333333333C106.6666666666666 32 93.8666666666666 59.7333333333333 93.8666666666666 96M228.2666666666666 21.3333333333334C255.9999999999999 21.3333333333334 281.5999999999999 32 305.0666666666666 53.3333333333334L204.7999999999999 174.9333333333333L196.2666666666666 168.5333333333333C164.2666666666667 145.0666666666667 149.3333333333333 121.6 149.3333333333333 96C149.3333333333333 72.5333333333333 155.7333333333333 55.4666666666667 170.6666666666667 42.6666666666667C185.6 29.8666666666667 202.6666666666667 21.3333333333334 228.2666666666667 21.3333333333334M181.3333333333333 305.0666666666667C181.3333333333333 285.8666666666667 192 264.5333333333334 215.4666666666667 236.8L249.6 260.2666666666667C262.4 268.8 270.9333333333333 277.3333333333334 275.2 285.8666666666667C279.4666666666666 294.4 281.6 305.0666666666667 281.6 315.7333333333334C281.6 328.5333333333333 277.3333333333333 339.2 266.6666666666667 347.7333333333334C258.1333333333334 356.2666666666667 245.3333333333333 360.5333333333333 230.4 360.5333333333333S202.6666666666667 356.2666666666667 194.1333333333334 345.6C185.6 334.9333333333333 181.3333333333334 322.1333333333334 181.3333333333334 305.0666666666667z" />
+    <glyph glyph-name="amplifier"
+      unicode="&#xF030;"
+      horiz-adv-x="512" d=" M213.3333333333333 405.3333333333333H298.6666666666667C310.4 405.3333333333333 320 395.7333333333334 320 384H448V0H405.3333333333333C405.3333333333333 -11.7333333333333 395.7333333333334 -21.3333333333333 384 -21.3333333333333S362.6666666666667 -11.7333333333333 362.6666666666667 0H149.3333333333333C149.3333333333333 -11.7333333333333 139.7333333333333 -21.3333333333333 128 -21.3333333333333S106.6666666666667 -11.7333333333333 106.6666666666667 0H64V384H192C192 395.7333333333334 201.6 405.3333333333333 213.3333333333333 405.3333333333333M106.6666666666667 341.3333333333334V256H405.3333333333333V341.3333333333334H106.6666666666667M149.3333333333333 320C161.0666666666667 320 170.6666666666667 310.4 170.6666666666667 298.6666666666667S161.0666666666667 277.3333333333334 149.3333333333333 277.3333333333334S128 286.9333333333334 128 298.6666666666667S137.6 320 149.3333333333333 320M256 320H298.6666666666667V298.6666666666667H256V320M320 320H341.3333333333333V277.3333333333334H320V320M362.6666666666667 320H384V277.3333333333334H362.6666666666667V320M256 213.3333333333334C208.8533333333333 213.3333333333334 170.6666666666667 175.1466666666667 170.6666666666667 128S208.8533333333333 42.6666666666667 256 42.6666666666667S341.3333333333333 80.8533333333334 341.3333333333333 128S303.1466666666667 213.3333333333334 256 213.3333333333334M213.3333333333333 320C225.0666666666667 320 234.6666666666667 310.4 234.6666666666667 298.6666666666667S225.0666666666667 277.3333333333334 213.3333333333333 277.3333333333334S192 286.9333333333334 192 298.6666666666667S201.6 320 213.3333333333333 320z" />
+    <glyph glyph-name="anchor"
+      unicode="&#xF031;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C220.5866666666667 405.3333333333333 192 376.7466666666667 192 341.3333333333334C192 314.24 209.0666666666667 290.1333333333334 234.6666666666667 280.9600000000001V234.6666666666667H170.6666666666667V192H234.6666666666667V44.3733333333333C195.4133333333333 50.5599999999999 160.64 73.1733333333334 139.3066666666667 106.6666666666667H170.6666666666667V149.3333333333334H64V42.6666666666667H106.6666666666667V78.9333333333333C140.3733333333333 29.6533333333334 196.2666666666667 0 256 0S371.6266666666667 29.6533333333334 405.3333333333333 78.72V42.6666666666667H448V149.3333333333334H341.3333333333333V106.6666666666667H372.48C351.1466666666667 73.3866666666667 316.3733333333334 50.5600000000001 277.3333333333333 44.3733333333333V192H341.3333333333333V234.6666666666667H277.3333333333333V281.1733333333334C302.9333333333333 290.1333333333334 320 314.24 320 341.3333333333334C320 376.7466666666667 291.4133333333333 405.3333333333333 256 405.3333333333333M256 362.6666666666667C267.7333333333334 362.6666666666667 277.3333333333333 353.0666666666667 277.3333333333333 341.3333333333334S267.7333333333334 320 256 320S234.6666666666667 329.6 234.6666666666667 341.3333333333334S244.2666666666667 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="android"
+      unicode="&#xF032;"
+      horiz-adv-x="512" d=" M320 341.3333333333334H298.6666666666667V362.6666666666667H320M213.3333333333333 341.3333333333334H192V362.6666666666667H213.3333333333333M331.3066666666667 401.92L359.2533333333334 429.8666666666667C363.3066666666667 433.92 363.3066666666667 440.7466666666667 359.2533333333334 445.0133333333333C354.9866666666667 449.0666666666667 348.16 449.0666666666667 344.1066666666667 445.0133333333333L312.5333333333333 413.44C295.4666666666667 421.76 276.2666666666667 426.6666666666667 256 426.6666666666667C235.52 426.6666666666667 216.32 421.76 199.2533333333333 413.2266666666667L167.4666666666667 445.0133333333333C163.4133333333333 449.0666666666667 156.5866666666667 449.0666666666667 152.5333333333333 445.0133333333333C148.2666666666667 440.7466666666667 148.2666666666667 433.92 152.5333333333333 429.8666666666667L180.48 401.92C148.6933333333333 378.4533333333334 128 341.3333333333334 128 298.6666666666667H384C384 341.3333333333334 362.6666666666667 378.6666666666667 331.3066666666666 401.92M437.3333333333333 277.3333333333334C419.6266666666667 277.3333333333334 405.3333333333333 263.04 405.3333333333333 245.3333333333334V96C405.3333333333333 78.2933333333334 419.6266666666667 64 437.3333333333333 64S469.3333333333333 78.2933333333334 469.3333333333333 96V245.3333333333334C469.3333333333333 263.04 455.04 277.3333333333334 437.3333333333333 277.3333333333334M74.6666666666667 277.3333333333334C56.96 277.3333333333334 42.6666666666667 263.04 42.6666666666667 245.3333333333334V96C42.6666666666667 78.2933333333334 56.96 64 74.6666666666667 64S106.6666666666667 78.2933333333334 106.6666666666667 96V245.3333333333334C106.6666666666667 263.04 92.3733333333333 277.3333333333334 74.6666666666667 277.3333333333334M128 64C128 52.2666666666667 137.6 42.6666666666667 149.3333333333333 42.6666666666667H170.6666666666667V-32C170.6666666666667 -49.7066666666666 184.96 -64 202.6666666666667 -64S234.6666666666667 -49.7066666666666 234.6666666666667 -32V42.6666666666667H277.3333333333333V-32C277.3333333333333 -49.7066666666666 291.6266666666667 -64 309.3333333333333 -64S341.3333333333333 -49.7066666666666 341.3333333333333 -32V42.6666666666667H362.6666666666667C374.4 42.6666666666667 384 52.2666666666667 384 64V277.3333333333334H128V64z" />
+    <glyph glyph-name="android-auto"
+      unicode="&#xFA8D;"
+      horiz-adv-x="512" d=" M485.9733333333334 65.92C489.3866666666667 60.5866666666667 490.6666666666666 55.04 490.6666666666666 49.0666666666667C490.6666666666666 40.96 487.8933333333333 34.3466666666667 481.4933333333333 29.0133333333333S468.0533333333333 21.3333333333334 459.9466666666666 21.3333333333334H407.04L264.96 277.3333333333334H247.04L104.96 21.3333333333334H50.9866666666667C40.96 21.3333333333334 32.64 25.6 26.0266666666667 34.5600000000001C19.4133333333333 43.5200000000001 18.9866666666667 53.3333333333334 24.96 64L229.9733333333333 411.9466666666667C236.5866666666667 421.9733333333334 245.3333333333333 426.6666666666667 256 426.6666666666667C267.3066666666666 426.6666666666667 275.6266666666667 421.9733333333334 280.96 411.9466666666667L485.9733333333334 65.92M101.9733333333334 -27.9466666666667L256 247.8933333333333L410.0266666666667 -27.9466666666667L394.6666666666667 -42.6666666666667L256 14.0799999999999L116.0533333333334 -42.6666666666666L101.9733333333333 -27.9466666666666z" />
+    <glyph glyph-name="android-debug-bridge"
+      unicode="&#xF033;"
+      horiz-adv-x="512" d=" M320 256C308.2666666666667 256 298.6666666666667 265.6 298.6666666666667 277.3333333333334S308.2666666666667 298.6666666666667 320 298.6666666666667S341.3333333333333 289.0666666666667 341.3333333333333 277.3333333333334S331.7333333333334 256 320 256M192 256C180.2666666666667 256 170.6666666666667 265.6 170.6666666666667 277.3333333333334S180.2666666666667 298.6666666666667 192 298.6666666666667S213.3333333333333 289.0666666666667 213.3333333333333 277.3333333333334S203.7333333333334 256 192 256M343.8933333333333 354.7733333333333L388.6933333333334 399.5733333333333L371.2000000000001 417.28L321.92 368C302.08 378.0266666666667 279.68 384 256 384C232.1066666666667 384 209.92 378.0266666666667 190.08 368L140.8 417.28L123.3066666666667 399.5733333333333L168.1066666666666 354.7733333333333C130.9866666666667 327.68 106.6666666666667 284.1600000000001 106.6666666666667 234.6666666666667V213.3333333333334H405.3333333333333V234.6666666666667C405.3333333333333 284.1600000000001 381.0133333333333 327.68 343.8933333333333 354.7733333333333M106.6666666666667 106.6666666666667C106.6666666666667 24.3200000000001 173.44 -42.6666666666666 256 -42.6666666666666S405.3333333333333 24.1066666666667 405.3333333333333 106.6666666666667V192H106.6666666666667V106.6666666666667z" />
+    <glyph glyph-name="android-head"
+      unicode="&#xF78F;"
+      horiz-adv-x="512" d=" M170.6666666666667 202.6666666666667C155.9466666666667 202.6666666666667 144 190.72 144 176S155.9466666666667 149.3333333333334 170.6666666666667 149.3333333333334S197.3333333333333 161.28 197.3333333333333 176S185.3866666666667 202.6666666666667 170.6666666666667 202.6666666666667M341.3333333333333 202.6666666666667C326.6133333333334 202.6666666666667 314.6666666666667 190.72 314.6666666666667 176S326.6133333333334 149.3333333333334 341.3333333333333 149.3333333333334S368 161.28 368 176S356.0533333333334 202.6666666666667 341.3333333333333 202.6666666666667M256 298.6666666666667C288 298.6666666666667 317.8666666666667 291.6266666666667 345.1733333333333 279.2533333333334L391.2533333333334 325.3333333333334C399.5733333333333 333.6533333333333 413.0133333333333 333.6533333333333 421.3333333333333 325.3333333333334C429.6533333333333 317.0133333333333 429.6533333333333 303.5733333333334 421.3333333333333 295.2533333333334L382.9333333333333 256.8533333333334C435.4133333333333 217.8133333333334 469.3333333333333 155.52 469.3333333333333 85.3333333333334H42.6666666666667C42.6666666666667 155.52 76.5866666666667 217.8133333333334 129.0666666666667 256.8533333333334L90.6666666666667 295.2533333333334C82.3466666666667 303.5733333333333 82.3466666666667 317.0133333333333 90.6666666666667 325.3333333333333C98.9866666666667 333.6533333333333 112.4266666666667 333.6533333333333 120.7466666666667 325.3333333333333L166.8266666666667 279.2533333333334C194.1333333333333 291.6266666666667 224 298.6666666666667 256 298.6666666666667z" />
+    <glyph glyph-name="android-studio"
+      unicode="&#xF034;"
+      horiz-adv-x="512" d=" M234.6666666666667 405.3333333333333H277.3333333333333V362.6666666666667H288C305.7066666666667 362.6666666666667 320 348.3733333333334 320 330.6666666666667V256L310.6133333333334 246.6133333333334L345.6 186.0266666666667C369.28 209.28 384 241.4933333333334 384 277.3333333333334H426.6666666666667C426.6666666666667 225.7066666666667 403.84 179.4133333333334 367.5733333333333 148.0533333333334L434.56 32L437.3333333333333 -15.36L397.44 10.6666666666667L331.9466666666666 124.3733333333333C309.3333333333333 113.0666666666667 283.3066666666666 106.6666666666667 256 106.6666666666667C228.6933333333333 106.6666666666667 202.6666666666666 113.0666666666667 180.0533333333333 124.3733333333333L114.56 10.6666666666667L74.6666666666667 -15.36L77.44 32L201.3866666666667 246.6133333333334L192 256V330.6666666666667C192 348.3733333333334 206.2933333333333 362.6666666666667 224 362.6666666666667H234.6666666666667V405.3333333333333M201.3866666666667 161.4933333333334C218.0266666666667 153.6 236.5866666666667 149.3333333333334 256 149.3333333333334C275.4133333333333 149.3333333333334 293.9733333333333 153.6 310.6133333333334 161.4933333333334L279.4666666666667 215.4666666666667H279.2533333333334C266.0266666666667 202.6666666666667 245.9733333333333 202.6666666666667 232.7466666666667 215.4666666666667H232.5333333333334L201.3866666666667 161.4933333333334M256 320C244.2666666666667 320 234.6666666666667 310.4 234.6666666666667 298.6666666666667S244.2666666666667 277.3333333333334 256 277.3333333333334S277.3333333333333 286.9333333333334 277.3333333333333 298.6666666666667S267.7333333333334 320 256 320z" />
+    <glyph glyph-name="angle-acute"
+      unicode="&#xF936;"
+      horiz-adv-x="512" d=" M426.6666666666667 42.6666666666667H87.2533333333333L302.5066666666667 353.4933333333334L337.4933333333334 329.1733333333334L240.64 189.2266666666667C274.9866666666667 171.5200000000001 298.6666666666667 136.1066666666667 298.6666666666667 95.1466666666667C298.6666666666667 91.7333333333334 298.6666666666667 88.5333333333334 298.0266666666667 85.3333333333334H426.6666666666667V42.6666666666667M168.7466666666667 85.3333333333334H255.1466666666667C256 88.5333333333333 256 91.7333333333334 256 95.1466666666667C256 122.0266666666667 239.7866666666667 144.6400000000001 216.32 154.0266666666667L168.7466666666667 85.3333333333334z" />
+    <glyph glyph-name="angle-obtuse"
+      unicode="&#xF937;"
+      horiz-adv-x="512" d=" M448 42.6666666666667H198.6133333333334L86.8266666666667 333.6533333333333L126.5066666666667 349.0133333333333L191.1466666666667 181.3333333333334C202.6666666666667 185.8133333333334 215.2533333333333 188.3733333333333 228.48 188.3733333333333C285.44 188.3733333333333 331.9466666666667 142.0800000000001 332.3733333333334 85.3333333333334H448V42.6666666666667M228.0533333333333 85.3333333333334H289.7066666666667C289.28 119.04 262.4 145.7066666666667 228.48 145.7066666666667C220.5866666666667 145.7066666666667 213.3333333333333 144.2133333333334 206.2933333333334 141.6533333333334L228.0533333333333 85.3333333333334z" />
+    <glyph glyph-name="angle-right"
+      unicode="&#xF938;"
+      horiz-adv-x="512" d=" M106.6666666666667 362.6666666666667H149.3333333333333V213.3333333333334H277.3333333333333V85.3333333333334H426.6666666666667V42.6666666666667H106.6666666666667V362.6666666666667M149.3333333333333 85.3333333333334H234.6666666666667V170.6666666666667H149.3333333333333V85.3333333333334z" />
+    <glyph glyph-name="angular"
+      unicode="&#xF6B1;"
+      horiz-adv-x="512" d=" M256 394.6666666666667L444.5866666666667 327.4666666666667L416 77.8666666666667L256 -10.6666666666666L96 77.8666666666667L67.4133333333333 327.4666666666667L256 394.6666666666667M256 349.8666666666667L138.0266666666667 85.3333333333334H181.9733333333333L205.6533333333333 144.64H305.92L329.6 85.3333333333334H373.3333333333333L256 349.8666666666667M290.56 181.3333333333334H221.6533333333333L256 263.8933333333333L290.56 181.3333333333334z" />
+    <glyph glyph-name="angularjs"
+      unicode="&#xF6BE;"
+      horiz-adv-x="512" d=" M256 394.6666666666667L444.5866666666667 327.4666666666667L416 77.8666666666667L256 -10.6666666666666L96 77.8666666666667L67.4133333333333 327.4666666666667L256 394.6666666666667M256 352L106.6666666666667 298.6666666666667L129.7066666666667 101.9733333333334L256 32L382.2933333333334 101.9733333333334L405.3333333333333 298.6666666666667L256 352M256 325.9733333333334L353.7066666666666 106.6666666666667H317.2266666666666L297.3866666666666 155.3066666666667H214.1866666666666L194.56 106.6666666666667H158.08L256 325.9733333333334M284.5866666666667 185.6L256 254.5066666666667L227.4133333333334 185.6H284.5866666666667z" />
+    <glyph glyph-name="animation"
+      unicode="&#xF5D8;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333C61.6533333333333 405.3333333333333 42.6666666666667 386.3466666666667 42.6666666666667 362.6666666666667V149.3333333333334H85.3333333333333V362.6666666666667H298.6666666666667V405.3333333333333H85.3333333333333M170.6666666666667 320C146.9866666666667 320 128 301.0133333333333 128 277.3333333333334V64H170.6666666666667V277.3333333333334H384V320H170.6666666666667M256 234.6666666666667C232.32 234.6666666666667 213.3333333333333 215.68 213.3333333333333 192V21.3333333333334C213.3333333333333 -2.3466666666666 232.32 -21.3333333333333 256 -21.3333333333333H426.6666666666667C450.3466666666667 -21.3333333333333 469.3333333333333 -2.3466666666666 469.3333333333333 21.3333333333334V192C469.3333333333333 215.68 450.3466666666667 234.6666666666667 426.6666666666667 234.6666666666667H256z" />
+    <glyph glyph-name="animation-outline"
+      unicode="&#xFA8E;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V149.3333333333334H85.3333333333333V362.6666666666667H298.6666666666667V405.3333333333333H85.3333333333333M170.6666666666667 320C147.2 320 128 300.8 128 277.3333333333334V64H170.6666666666667V277.3333333333334H384V320H170.6666666666667M426.6666666666667 192V21.3333333333334H256V192H426.6666666666667M426.6666666666667 234.6666666666667H256C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192V21.3333333333334C213.3333333333333 -2.1333333333333 232.5333333333334 -21.3333333333333 256 -21.3333333333333H426.6666666666667C450.1333333333334 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V192C469.3333333333333 215.4666666666667 450.1333333333334 234.6666666666667 426.6666666666667 234.6666666666667z" />
+    <glyph glyph-name="animation-play"
+      unicode="&#xF939;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H298.6666666666667V362.6666666666667H85.3333333333333V149.3333333333334H42.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.6533333333333 405.3333333333333 85.3333333333333 405.3333333333333M170.6666666666667 320H384V277.3333333333334H170.6666666666667V64H128V277.3333333333334C128 301.0133333333333 146.9866666666667 320 170.6666666666667 320M256 234.6666666666667H426.6666666666667C450.3466666666667 234.6666666666667 469.3333333333333 215.68 469.3333333333333 192V21.3333333333334C469.3333333333333 -2.3466666666666 450.3466666666667 -21.3333333333333 426.6666666666667 -21.3333333333333H256C232.32 -21.3333333333333 213.3333333333333 -2.3466666666666 213.3333333333333 21.3333333333334V192C213.3333333333333 215.68 232.32 234.6666666666667 256 234.6666666666667M298.6666666666667 192V21.3333333333334L426.6666666666667 106.6666666666667L298.6666666666667 192z" />
+    <glyph glyph-name="animation-play-outline"
+      unicode="&#xFA8F;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V149.3333333333334H85.3333333333333V362.6666666666667H298.6666666666667V405.3333333333333H85.3333333333333M170.6666666666667 320C147.2 320 128 300.8 128 277.3333333333334V64H170.6666666666667V277.3333333333334H384V320H170.6666666666667M426.6666666666667 192V21.3333333333334H256V192H426.6666666666667M426.6666666666667 234.6666666666667H256C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192V21.3333333333334C213.3333333333333 -2.1333333333333 232.5333333333334 -21.3333333333333 256 -21.3333333333333H426.6666666666667C450.1333333333334 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V192C469.3333333333333 215.4666666666667 450.1333333333334 234.6666666666667 426.6666666666667 234.6666666666667M298.6666666666667 170.6666666666667V42.6666666666667L384 106.6666666666667L298.6666666666667 170.6666666666667z" />
+    <glyph glyph-name="anvil"
+      unicode="&#xF89A;"
+      horiz-adv-x="512" d=" M192 341.3333333333334V234.6666666666667C277.9733333333334 181.9733333333334 180.0533333333333 128.6400000000001 128 106.6666666666667V42.6666666666667H448V106.6666666666667C311.2533333333334 164.9066666666667 372.6933333333333 256 469.3333333333333 277.3333333333334V341.3333333333334H192M42.6666666666667 320C59.9466666666667 274.5600000000001 94.2933333333333 245.3333333333334 149.3333333333333 234.6666666666667V320H42.6666666666667z" />
+    <glyph glyph-name="apple"
+      unicode="&#xF035;"
+      horiz-adv-x="512" d=" M399.1466666666667 32C381.4400000000001 5.5466666666667 362.6666666666667 -20.2666666666666 334.08 -20.6933333333333C305.4933333333334 -21.3333333333333 296.32 -3.84 263.8933333333333 -3.84C231.2533333333334 -3.84 221.2266666666667 -20.2666666666666 194.1333333333334 -21.3333333333333C166.1866666666667 -22.4 145.0666666666667 6.8266666666667 127.1466666666667 32.64C90.6666666666667 85.3333333333334 62.72 182.4 100.2666666666667 247.68C118.8266666666667 280.1066666666667 152.1066666666667 300.5866666666667 188.16 301.2266666666667C215.4666666666667 301.6533333333333 241.4933333333334 282.6666666666667 258.3466666666667 282.6666666666667C274.9866666666666 282.6666666666667 306.56 305.4933333333334 339.6266666666667 302.08C353.4933333333334 301.44 392.32 296.5333333333333 417.28 259.8400000000001C415.36 258.56 370.9866666666667 232.5333333333334 371.4133333333333 178.56C372.0533333333334 114.1333333333333 427.9466666666666 92.5866666666667 428.5866666666667 92.3733333333333C427.9466666666666 90.88 419.6266666666666 61.6533333333333 399.1466666666667 32M277.3333333333333 373.3333333333334C292.9066666666667 391.04 318.72 404.48 340.0533333333333 405.3333333333333C342.8266666666667 380.3733333333334 332.8 355.2000000000001 317.8666666666666 337.2800000000001C303.1466666666667 319.1466666666667 278.8266666666666 305.0666666666667 254.9333333333333 306.9866666666667C251.7333333333333 331.5200000000001 263.68 357.12 277.3333333333333 373.3333333333334z" />
+    <glyph glyph-name="apple-finder"
+      unicode="&#xF036;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H253.6533333333334C265.8133333333334 385.92 280.1066666666667 407.8933333333333 297.1733333333333 426.6666666666667L320.8533333333333 402.9866666666667C311.68 390.4 303.5733333333333 376.7466666666667 296.32 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H318.5066666666667L325.5466666666666 -26.24L286.5066666666667 -41.6L275.84 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M85.3333333333333 320V42.6666666666667H267.52C266.6666666666667 49.7066666666667 265.3866666666667 56.7466666666667 264.5333333333333 64H256C197.3333333333333 64 144.64 74.6666666666667 109.44 90.4533333333333L128.8533333333333 125.44C149.3333333333333 114.3466666666667 195.6266666666667 106.6666666666667 256 106.6666666666667H261.12C260.48 120.96 260.6933333333334 135.2533333333333 261.76 149.3333333333334H192S200.5333333333333 235.3066666666667 234.6666666666667 320H85.3333333333333M426.6666666666667 42.6666666666667V320H277.3333333333333C258.1333333333334 272.64 247.04 224.8533333333333 241.0666666666667 192H302.2933333333334C298.6666666666667 164.6933333333334 298.0266666666667 136.1066666666667 299.9466666666667 108.16C338.5600000000001 110.9333333333334 368.0000000000001 117.3333333333334 383.1466666666667 125.4400000000001L402.56 90.4533333333334C377.3866666666667 78.9333333333334 343.4666666666667 70.4 304.8533333333334 66.3466666666668C306.1333333333334 58.2400000000001 307.4133333333333 50.3466666666668 309.3333333333334 42.6666666666667H426.6666666666667M128 277.3333333333334H170.6666666666667V213.3333333333334H128V277.3333333333334M341.3333333333333 277.3333333333334H384V213.3333333333334H341.3333333333333V277.3333333333334z" />
+    <glyph glyph-name="apple-icloud"
+      unicode="&#xF038;"
+      horiz-adv-x="512" d=" M469.3333333333333 127.1466666666667C469.3333333333333 80.4266666666667 431.7866666666667 42.6666666666667 385.4933333333334 42.6666666666667H126.5066666666667C80.2133333333333 42.6666666666667 42.6666666666667 80.4266666666667 42.6666666666667 127.1466666666667C42.6666666666667 169.1733333333334 73.1733333333333 203.9466666666667 113.28 210.3466666666667C112.64 213.3333333333334 112.4266666666667 216.32 112.4266666666667 219.5200000000001C112.4266666666667 248.9600000000001 136.1066666666667 273.0666666666667 165.5466666666667 273.0666666666667C178.56 273.0666666666667 190.72 268.1600000000001 199.8933333333334 260.2666666666667C216.32 297.6 237.44 331.9466666666667 296.7466666666667 331.9466666666667C368.64 331.9466666666667 402.56 276.0533333333334 402.56 216.96C402.56 214.6133333333334 402.56 212.0533333333334 402.3466666666667 209.7066666666667C440.5333333333333 201.8133333333334 469.3333333333333 167.8933333333334 469.3333333333333 127.1466666666667z" />
+    <glyph glyph-name="apple-ios"
+      unicode="&#xF037;"
+      horiz-adv-x="512" d=" M426.6666666666667 256V298.6666666666667H341.3333333333333C317.8666666666667 298.6666666666667 298.6666666666667 279.4666666666667 298.6666666666667 256V213.3333333333334C298.6666666666667 189.8666666666667 317.8666666666667 170.6666666666667 341.3333333333333 170.6666666666667H384V128H298.6666666666667V85.3333333333334H384C407.4666666666667 85.3333333333334 426.6666666666667 104.5333333333333 426.6666666666667 128V170.6666666666667C426.6666666666667 194.1333333333333 407.4666666666667 213.3333333333334 384 213.3333333333334H341.3333333333333V256M234.6666666666667 128H192V256H234.6666666666667M234.6666666666667 298.6666666666667H192C168.5333333333333 298.6666666666667 149.3333333333333 279.4666666666667 149.3333333333333 256V128C149.3333333333333 104.5333333333333 168.5333333333333 85.3333333333334 192 85.3333333333334H234.6666666666667C258.1333333333334 85.3333333333334 277.3333333333333 104.5333333333333 277.3333333333333 128V256C277.3333333333333 279.4666666666667 258.1333333333334 298.6666666666667 234.6666666666667 298.6666666666667M85.3333333333333 85.3333333333334H128V213.3333333333334H85.3333333333333M85.3333333333333 256H128V298.6666666666667H85.3333333333333V256z" />
+    <glyph glyph-name="apple-keyboard-caps"
+      unicode="&#xF632;"
+      horiz-adv-x="512" d=" M320 149.3333333333334V277.3333333333334H366.2933333333334L256 387.6266666666667L145.7066666666667 277.3333333333334H192V149.3333333333334H320M256 448L469.3333333333333 234.6666666666667H362.6666666666667V106.6666666666667H149.3333333333333V234.6666666666667H42.6666666666667L256 448M149.3333333333333 64H362.6666666666667V-64H149.3333333333333V64M320 21.3333333333334H192V-21.3333333333333H320V21.3333333333334z" />
+    <glyph glyph-name="apple-keyboard-command"
+      unicode="&#xF633;"
+      horiz-adv-x="512" d=" M128 405.3333333333333C175.1466666666667 405.3333333333333 213.3333333333333 367.1466666666667 213.3333333333333 320V277.3333333333334H298.6666666666667V320C298.6666666666667 367.1466666666667 336.8533333333333 405.3333333333333 384 405.3333333333333S469.3333333333333 367.1466666666667 469.3333333333333 320S431.1466666666667 234.6666666666667 384 234.6666666666667H341.3333333333333V149.3333333333334H384C431.1466666666667 149.3333333333334 469.3333333333333 111.1466666666667 469.3333333333333 64S431.1466666666667 -21.3333333333333 384 -21.3333333333333S298.6666666666667 16.8533333333334 298.6666666666667 64V106.6666666666667H213.3333333333333V64C213.3333333333333 16.8533333333334 175.1466666666667 -21.3333333333333 128 -21.3333333333333S42.6666666666667 16.8533333333334 42.6666666666667 64S80.8533333333333 149.3333333333334 128 149.3333333333334H170.6666666666667V234.6666666666667H128C80.8533333333333 234.6666666666667 42.6666666666667 272.8533333333334 42.6666666666667 320S80.8533333333333 405.3333333333333 128 405.3333333333333M341.3333333333333 64C341.3333333333333 40.5333333333333 360.5333333333333 21.3333333333334 384 21.3333333333334S426.6666666666667 40.5333333333333 426.6666666666667 64S407.4666666666667 106.6666666666667 384 106.6666666666667H341.3333333333333V64M298.6666666666667 234.6666666666667H213.3333333333333V149.3333333333334H298.6666666666667V234.6666666666667M128 106.6666666666667C104.5333333333333 106.6666666666667 85.3333333333333 87.4666666666667 85.3333333333333 64S104.5333333333333 21.3333333333334 128 21.3333333333334S170.6666666666667 40.5333333333333 170.6666666666667 64V106.6666666666667H128M170.6666666666667 320C170.6666666666667 343.4666666666667 151.4666666666667 362.6666666666667 128 362.6666666666667S85.3333333333333 343.4666666666667 85.3333333333333 320S104.5333333333333 277.3333333333334 128 277.3333333333334H170.6666666666667V320M384 277.3333333333334C407.4666666666667 277.3333333333334 426.6666666666667 296.5333333333334 426.6666666666667 320S407.4666666666667 362.6666666666667 384 362.6666666666667S341.3333333333333 343.4666666666667 341.3333333333333 320V277.3333333333334H384z" />
+    <glyph glyph-name="apple-keyboard-control"
+      unicode="&#xF634;"
+      horiz-adv-x="512" d=" M421.9733333333334 196.6933333333334L391.68 166.6133333333334L256 302.2933333333334L120.32 166.6133333333334L90.0266666666667 196.6933333333333L256 362.6666666666667L421.9733333333334 196.6933333333333z" />
+    <glyph glyph-name="apple-keyboard-option"
+      unicode="&#xF635;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H194.3466666666666L344.5333333333333 64H448V21.3333333333334H317.44L167.2533333333333 320H64V362.6666666666667M298.6666666666667 362.6666666666667H448V320H298.6666666666667V362.6666666666667z" />
+    <glyph glyph-name="apple-keyboard-shift"
+      unicode="&#xF636;"
+      horiz-adv-x="512" d=" M320 64V192H366.2933333333334L256 302.2933333333334L145.7066666666667 192H192V64H320M256 362.6666666666667L469.3333333333333 149.3333333333334H362.6666666666667V21.3333333333334H149.3333333333333V149.3333333333334H42.6666666666667L256 362.6666666666667z" />
+    <glyph glyph-name="apple-safari"
+      unicode="&#xF039;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192C85.3333333333333 147.4133333333334 102.4 106.6666666666667 130.3466666666666 76.5866666666667L210.7733333333333 237.2266666666667L371.4133333333333 317.6533333333334C341.3333333333333 345.6 300.5866666666667 362.6666666666667 256 362.6666666666667M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192C426.6666666666667 236.5866666666667 409.6 277.3333333333334 381.6533333333333 307.4133333333334L301.2266666666667 146.7733333333333L140.5866666666667 66.3466666666667C170.6666666666667 38.4 211.4133333333333 21.3333333333334 256 21.3333333333334M256 192L239.5733333333333 208.4266666666667L206.9333333333333 142.9333333333333L272.4266666666666 175.5733333333333L256 192M256 74.6666666666667H277.3333333333333V42.6666666666667H256V74.6666666666667M338.7733333333333 109.0133333333333L353.92 124.16L376.5333333333333 101.5466666666667L361.3866666666666 86.4L338.7733333333333 109.0133333333334M373.3333333333333 192V213.3333333333334H405.3333333333333V192H373.3333333333333M256 309.3333333333334H234.6666666666667V341.3333333333334H256V309.3333333333334M173.2266666666666 274.9866666666667L158.08 259.8400000000001L135.4666666666667 282.4533333333334L150.6133333333333 297.6L173.2266666666666 274.9866666666667M138.6666666666667 192V170.6666666666667H106.6666666666667V192H138.6666666666667z" />
+    <glyph glyph-name="application"
+      unicode="&#xF614;"
+      horiz-adv-x="512" d=" M405.3333333333333 362.6666666666667C429.0133333333333 362.6666666666667 448 343.4666666666667 448 320V64C448 40.5333333333333 428.8 21.3333333333334 405.3333333333333 21.3333333333334H106.6666666666667C82.9866666666667 21.3333333333334 64 40.5333333333333 64 64V320C64 343.4666666666667 83.2 362.6666666666667 106.6666666666667 362.6666666666667H405.3333333333333M405.3333333333333 64V277.3333333333334H106.6666666666667V64H405.3333333333333z" />
+    <glyph glyph-name="apps"
+      unicode="&#xF03B;"
+      horiz-adv-x="512" d=" M341.3333333333333 21.3333333333334H426.6666666666667V106.6666666666667H341.3333333333333M341.3333333333333 149.3333333333334H426.6666666666667V234.6666666666667H341.3333333333333M213.3333333333333 277.3333333333334H298.6666666666667V362.6666666666667H213.3333333333333M341.3333333333333 277.3333333333334H426.6666666666667V362.6666666666667H341.3333333333333M213.3333333333333 149.3333333333334H298.6666666666667V234.6666666666667H213.3333333333333M85.3333333333333 149.3333333333334H170.6666666666667V234.6666666666667H85.3333333333333M85.3333333333333 21.3333333333334H170.6666666666667V106.6666666666667H85.3333333333333M213.3333333333333 21.3333333333334H298.6666666666667V106.6666666666667H213.3333333333333M85.3333333333333 277.3333333333334H170.6666666666667V362.6666666666667H85.3333333333333V277.3333333333334z" />
+    <glyph glyph-name="arch"
+      unicode="&#xF8C6;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C237.0133333333333 358.8266666666667 225.4933333333334 328.3200000000001 204.3733333333333 283.0933333333334C217.3866666666667 269.44 233.1733333333333 253.44 258.9866666666667 235.3066666666667C231.2533333333334 246.8266666666667 212.2666666666667 258.1333333333334 198.1866666666667 270.0800000000001C170.6666666666667 213.3333333333334 128.64 133.3333333333334 42.6666666666667 -21.3333333333333C110.2933333333333 17.7066666666667 162.7733333333333 41.8133333333334 211.6266666666667 50.9866666666667C209.4933333333334 59.9466666666667 208.2133333333333 69.76 208.4266666666667 80V82.1333333333334C209.4933333333334 125.4400000000001 232.1066666666667 158.72 258.7733333333333 156.3733333333334C285.44 154.2400000000001 306.1333333333334 117.3333333333334 305.0666666666666 73.8133333333334C304.8533333333333 65.7066666666667 304 57.8133333333334 302.5066666666667 50.5600000000001C350.7199999999999 41.1733333333333 402.56 17.2800000000001 469.3333333333333 -21.3333333333333C456.1066666666666 2.9866666666667 444.3733333333333 24.7466666666667 433.28 45.44C416 59.0933333333334 397.0133333333333 77.0133333333333 359.4666666666666 96C385.28 89.6 403.84 81.92 418.3466666666667 73.1733333333334C304.2133333333333 285.44 295.04 313.6 256 405.3333333333333z" />
+    <glyph glyph-name="archive"
+      unicode="&#xF03C;"
+      horiz-adv-x="512" d=" M64 384H448V298.6666666666667H64V384M85.3333333333333 277.3333333333334H426.6666666666667V0H85.3333333333333V277.3333333333334M202.6666666666667 213.3333333333334C196.6933333333333 213.3333333333334 192 208.64 192 202.6666666666667V170.6666666666667H320V202.6666666666667C320 208.64 315.3066666666666 213.3333333333334 309.3333333333333 213.3333333333334H202.6666666666667z" />
+    <glyph glyph-name="arrange-bring-forward"
+      unicode="&#xF03D;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H341.3333333333333V106.6666666666667H42.6666666666667V405.3333333333333M469.3333333333333 277.3333333333334V-21.3333333333333H170.6666666666667V64H213.3333333333333V21.3333333333334H426.6666666666667V234.6666666666667H384V277.3333333333334H469.3333333333333z" />
+    <glyph glyph-name="arrange-bring-to-front"
+      unicode="&#xF03E;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H234.6666666666667V320H192V362.6666666666667H85.3333333333333V256H128V213.3333333333334H42.6666666666667V405.3333333333333M469.3333333333333 170.6666666666667V-21.3333333333333H277.3333333333333V64H320V21.3333333333334H426.6666666666667V128H384V170.6666666666667H469.3333333333333M170.6666666666667 277.3333333333334H341.3333333333333V106.6666666666667H170.6666666666667V277.3333333333334z" />
+    <glyph glyph-name="arrange-send-backward"
+      unicode="&#xF03F;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H341.3333333333333V106.6666666666667H42.6666666666667V405.3333333333333M469.3333333333333 277.3333333333334V-21.3333333333333H170.6666666666667V64H384V277.3333333333334H469.3333333333333M85.3333333333333 362.6666666666667V149.3333333333334H298.6666666666667V362.6666666666667H85.3333333333333z" />
+    <glyph glyph-name="arrange-send-to-back"
+      unicode="&#xF040;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H234.6666666666667V213.3333333333334H42.6666666666667V405.3333333333333M192 362.6666666666667H85.3333333333333V256H192V362.6666666666667M469.3333333333333 170.6666666666667V-21.3333333333333H277.3333333333333V170.6666666666667H469.3333333333333M320 21.3333333333334H426.6666666666667V128H320V21.3333333333334M341.3333333333333 277.3333333333334V213.3333333333334H277.3333333333333V277.3333333333334H341.3333333333333M234.6666666666667 106.6666666666667H170.6666666666667V170.6666666666667H234.6666666666667V106.6666666666667z" />
+    <glyph glyph-name="arrow-all"
+      unicode="&#xF041;"
+      horiz-adv-x="512" d=" M277.3333333333333 213.3333333333334H384L352 245.3333333333334L382.2933333333334 275.6266666666667L465.92 192L382.2933333333334 108.3733333333333L352 138.6666666666667L384 170.6666666666667H277.3333333333333V64L309.3333333333333 96L339.6266666666667 65.7066666666667L256 -17.92L172.3733333333333 65.7066666666667L202.6666666666667 96L234.6666666666667 64V170.6666666666667H128L160 138.6666666666667L129.7066666666667 108.3733333333333L46.08 192L129.7066666666667 275.6266666666667L160 245.3333333333334L128 213.3333333333334H234.6666666666667V320L202.6666666666667 288L172.3733333333333 318.2933333333334L256 401.92L339.6266666666667 318.2933333333334L309.3333333333333 288L277.3333333333333 320V213.3333333333334z" />
+    <glyph glyph-name="arrow-bottom-left"
+      unicode="&#xF042;"
+      horiz-adv-x="512" d=" M405.3333333333333 311.2533333333334L375.2533333333334 341.3333333333334L149.3333333333333 115.4133333333334V256H106.6666666666667V42.6666666666667H320V85.3333333333334H179.4133333333333L405.3333333333333 311.2533333333334z" />
+    <glyph glyph-name="arrow-bottom-left-bold-outline"
+      unicode="&#xF9B6;"
+      horiz-adv-x="512" d=" M391.68 26.0266666666666H90.0266666666667V327.68L180.6933333333333 237.2266666666667L301.2266666666667 357.9733333333334L421.9733333333334 237.2266666666667L301.2266666666667 116.48L391.68 26.0266666666666M135.2533333333333 71.2533333333333H286.08L240.8533333333333 116.48L361.6 237.2266666666667L301.2266666666667 297.6L180.48 176.8533333333334L135.2533333333333 222.08V71.2533333333333z" />
+    <glyph glyph-name="arrow-bottom-left-thick"
+      unicode="&#xF9B7;"
+      horiz-adv-x="512" d=" M330.6666666666667 326.6133333333334L390.6133333333333 266.6666666666667L254.72 130.3466666666667H360.32V57.3866666666667H121.3866666666667V296.32H194.56V190.72L330.6666666666667 326.6133333333334z" />
+    <glyph glyph-name="arrow-bottom-right"
+      unicode="&#xF043;"
+      horiz-adv-x="512" d=" M106.6666666666667 311.2533333333334L136.7466666666667 341.3333333333334L362.6666666666667 115.4133333333334V256H405.3333333333333V42.6666666666667H192V85.3333333333334H332.5866666666667L106.6666666666667 311.2533333333334z" />
+    <glyph glyph-name="arrow-bottom-right-bold-outline"
+      unicode="&#xF9B8;"
+      horiz-adv-x="512" d=" M210.7733333333334 116.48L90.0266666666667 237.2266666666667L210.7733333333333 357.9733333333334L331.52 237.2266666666667L421.9733333333334 327.68V26.0266666666666H120.32L210.7733333333333 116.48M376.7466666666667 222.08L331.52 176.8533333333334L210.7733333333333 297.6L150.4 237.2266666666667L271.1466666666667 116.48L225.92 71.2533333333333H376.7466666666667V222.08z" />
+    <glyph glyph-name="arrow-bottom-right-thick"
+      unicode="&#xF9B9;"
+      horiz-adv-x="512" d=" M317.6533333333333 190.72V296.32H390.6133333333334V57.3866666666667H151.68V130.3466666666667H257.28L121.3866666666667 266.6666666666667L181.3333333333333 326.6133333333334L317.6533333333333 190.72z" />
+    <glyph glyph-name="arrow-collapse"
+      unicode="&#xF615;"
+      horiz-adv-x="512" d=" M416 382.0800000000001L320 286.0800000000001V362.6666666666667H277.3333333333333V213.3333333333334H426.6666666666667V256H350.08L446.08 352L416 382.0800000000001M85.3333333333333 170.6666666666667V128H161.92L65.92 32L96 1.92L192 97.92V21.3333333333334H234.6666666666667V170.6666666666667H85.3333333333333z" />
+    <glyph glyph-name="arrow-collapse-all"
+      unicode="&#xF044;"
+      horiz-adv-x="512" d=" M416 382.0800000000001L446.08 352L350.08 256H426.6666666666667V213.3333333333334H277.3333333333333V362.6666666666667H320V286.0800000000001L416 382.0800000000001M446.08 32L416 1.92L320 97.92V21.3333333333334H277.3333333333333V170.6666666666667H426.6666666666667V128H350.08L446.08 32M96 382.0800000000001L192 286.0800000000001V362.6666666666667H234.6666666666667V213.3333333333334H85.3333333333333V256H161.92L65.92 352L96 382.0800000000001M65.92 32L161.92 128H85.3333333333333V170.6666666666667H234.6666666666667V21.3333333333334H192V97.92L96 1.92L65.92 32z" />
+    <glyph glyph-name="arrow-collapse-down"
+      unicode="&#xF791;"
+      horiz-adv-x="512" d=" M424.9600000000001 190.2933333333334L256 21.3333333333334L87.04 190.2933333333334L117.3333333333333 220.3733333333333L234.6666666666667 103.04V405.3333333333333H277.3333333333333V103.04L394.6666666666667 220.5866666666667L424.9600000000001 190.2933333333333M256 21.3333333333334H42.6666666666667V-21.3333333333333H469.3333333333333V21.3333333333334H256z" />
+    <glyph glyph-name="arrow-collapse-horizontal"
+      unicode="&#xF84B;"
+      horiz-adv-x="512" d=" M277.3333333333333 21.3333333333334V362.6666666666667H320.64V21.3333333333334H277.3333333333333M213.3333333333333 21.3333333333334V362.6666666666667H256.64V21.3333333333334H213.3333333333333M106.6666666666667 277.3333333333334L192.64 192L106.6666666666667 106.6666666666667V170.6666666666667H42.6666666666667V213.3333333333334H106.6666666666667V277.3333333333334M426.6666666666667 106.6666666666667L341.3333333333333 192L426.6666666666667 277.3333333333334V213.3333333333334H490.6666666666666V170.6666666666667H426.6666666666667V106.6666666666667z" />
+    <glyph glyph-name="arrow-collapse-left"
+      unicode="&#xF792;"
+      horiz-adv-x="512" d=" M254.2933333333333 23.04L85.3333333333333 192L254.2933333333333 360.9600000000001L284.3733333333334 330.6666666666667L167.04 213.3333333333334H469.3333333333333V170.6666666666667H167.04L284.5866666666667 53.3333333333334L254.2933333333333 23.04M85.3333333333333 192V405.3333333333333H42.6666666666667V-21.3333333333333H85.3333333333333V192z" />
+    <glyph glyph-name="arrow-collapse-right"
+      unicode="&#xF793;"
+      horiz-adv-x="512" d=" M257.7066666666667 360.9600000000001L426.6666666666667 192L257.7066666666667 23.04L227.6266666666667 53.3333333333334L344.9600000000001 170.6666666666667H42.6666666666667V213.3333333333334H344.9600000000001L227.6266666666667 330.6666666666667L257.7066666666667 360.9600000000001M426.6666666666667 192V-21.3333333333333H469.3333333333333V405.3333333333333H426.6666666666667V192z" />
+    <glyph glyph-name="arrow-collapse-up"
+      unicode="&#xF794;"
+      horiz-adv-x="512" d=" M87.04 193.7066666666667L256 362.6666666666667L424.9600000000001 193.7066666666667L394.6666666666667 163.6266666666667L277.3333333333333 280.9600000000001V-21.3333333333333H234.6666666666667V280.9600000000001L117.3333333333333 163.6266666666667L87.04 193.7066666666667M256 362.6666666666667H469.3333333333333V405.3333333333333H42.6666666666667V362.6666666666667H256z" />
+    <glyph glyph-name="arrow-collapse-vertical"
+      unicode="&#xF84C;"
+      horiz-adv-x="512" d=" M85.3333333333333 192H426.6666666666667V149.3333333333334H85.3333333333333V192M85.3333333333333 256H426.6666666666667V213.3333333333334H85.3333333333333V256M341.3333333333333 362.6666666666667L256 277.3333333333334L170.6666666666667 362.6666666666667H234.6666666666667V426.6666666666667H277.3333333333333V362.6666666666667H341.3333333333333M170.6666666666667 42.6666666666667L256 128L341.3333333333333 42.6666666666667H277.3333333333333V-21.3333333333333H234.6666666666667V42.6666666666667H170.6666666666667z" />
+    <glyph glyph-name="arrow-decision"
+      unicode="&#xF9BA;"
+      horiz-adv-x="512" d=" M234.6666666666667 341.3333333333334H170.6666666666667L256 426.6666666666667L341.3333333333333 341.3333333333334H277.3333333333333V246.8266666666667C261.3333333333333 237.0133333333333 247.04 224.8533333333334 234.6666666666667 210.7733333333334V341.3333333333334M469.3333333333333 213.3333333333334L384 298.6666666666667V234.6666666666667C306.9866666666667 237.8666666666667 241.28 179.84 234.6666666666667 103.04C201.3866666666667 91.3066666666666 183.8933333333334 54.6133333333333 195.6266666666667 21.3333333333334C207.36 -11.9466666666666 244.0533333333333 -29.4399999999999 277.3333333333333 -17.7066666666666C310.6133333333334 -5.76 328.1066666666667 30.72 316.3733333333334 64C309.9733333333333 82.3466666666667 295.4666666666667 96.64 277.3333333333333 103.04C287.36 188.3733333333333 372.6933333333333 192.64 382.9333333333333 192.64V128.64L469.3333333333333 213.3333333333334M226.7733333333334 200.7466666666667C198.4 222.5066666666667 163.6266666666667 234.6666666666667 128 234.6666666666667V298.6666666666667L42.6666666666667 213.3333333333334L128 128V192C156.5866666666667 191.36 184.1066666666666 181.3333333333334 205.6533333333333 162.1333333333333C210.9866666666667 175.7866666666667 218.0266666666667 188.8 226.7733333333334 200.7466666666667z" />
+    <glyph glyph-name="arrow-decision-auto"
+      unicode="&#xF9BB;"
+      horiz-adv-x="512" d=" M256 341.3333333333334H192L277.3333333333333 426.6666666666667L362.6666666666667 341.3333333333334H298.6666666666667V246.8266666666667C282.6666666666667 237.0133333333333 268.3733333333334 224.8533333333334 256 210.7733333333334V341.3333333333334M221.8666666666667 128H181.3333333333333L166.4 170.6666666666667H98.1333333333333L83.2 128H42.6666666666667L110.9333333333333 320H153.6L221.8666666666667 128M156.8 199.4666666666667L132.2666666666667 277.3333333333334L107.7333333333334 199.4666666666667H156.8M490.6666666666666 213.3333333333334L405.3333333333333 298.6666666666667V234.6666666666667C328.32 237.8666666666667 262.6133333333333 179.84 256 103.04C222.72 91.3066666666666 205.2266666666667 54.6133333333333 216.96 21.3333333333334C228.6933333333334 -11.9466666666666 265.3866666666667 -29.4399999999999 298.6666666666667 -17.7066666666666C331.9466666666667 -5.76 349.44 30.72 337.7066666666667 64C331.3066666666666 82.3466666666667 316.8 96.64 298.6666666666667 103.04C308.6933333333334 188.3733333333333 394.0266666666667 192.64 404.2666666666667 192.64V128.64L490.6666666666666 213.3333333333334z" />
+    <glyph glyph-name="arrow-decision-auto-outline"
+      unicode="&#xF9BC;"
+      horiz-adv-x="512" d=" M405.3333333333333 128V192C394.6666666666667 192 309.3333333333333 188.5866666666667 299.7333333333334 102.4C333.0133333333333 90.6666666666667 350.5066666666667 53.9733333333334 338.7733333333333 20.6933333333333C327.04 -12.5866666666666 290.3466666666667 -30.08 257.0666666666667 -18.3466666666666C224 -6.4 206.2933333333334 30.08 218.0266666666667 63.36C224 81.7066666666667 238.9333333333334 96 257.0666666666667 102.4C263.2533333333334 178.9866666666666 328.5333333333333 237.2266666666667 405.3333333333333 234.6666666666666V298.6666666666667L490.6666666666666 213.3333333333334L405.3333333333333 128M298.6666666666667 42.6666666666667C298.6666666666667 54.4 289.0666666666667 64 277.3333333333333 64S256 54.4 256 42.6666666666667S265.6 21.3333333333334 277.3333333333333 21.3333333333334S298.6666666666667 30.9333333333333 298.6666666666667 42.6666666666667M256 210.7733333333333C268.3733333333334 224.8533333333333 282.6666666666667 237.0133333333333 298.6666666666667 246.8266666666667V341.3333333333334H362.6666666666667L277.3333333333333 426.6666666666667L192 341.3333333333334H256V210.7733333333333M153.6 320H110.9333333333333L42.6666666666667 128H83.2L98.1333333333333 170.6666666666667H166.4L181.3333333333333 128H221.8666666666667L153.6 320M107.7333333333334 199.4666666666667L132.2666666666667 277.3333333333334L156.8 199.4666666666667H107.7333333333333z" />
+    <glyph glyph-name="arrow-decision-outline"
+      unicode="&#xF9BD;"
+      horiz-adv-x="512" d=" M205.6533333333333 162.1333333333333C184.1066666666667 181.3333333333334 156.5866666666667 191.36 128 192V128L42.6666666666667 213.3333333333334L128 298.6666666666667V234.6666666666667C163.6266666666667 234.6666666666667 198.4 222.5066666666667 226.7733333333333 200.7466666666667C218.0266666666667 188.8 210.9866666666666 175.7866666666667 205.6533333333333 162.1333333333333M384 128V192C373.3333333333333 192 288 188.5866666666667 278.4 102.4C311.68 90.6666666666667 329.1733333333333 53.9733333333334 317.44 20.6933333333333C305.7066666666667 -12.5866666666666 269.0133333333333 -30.08 235.7333333333334 -18.3466666666666C202.6666666666667 -6.4 184.96 30.08 196.6933333333333 63.36C202.6666666666667 81.7066666666667 217.6 96 235.7333333333334 102.4C241.92 178.9866666666666 307.2 237.2266666666667 384 234.6666666666666V298.6666666666667L469.3333333333333 213.3333333333334L384 128M277.3333333333333 42.6666666666667C277.3333333333333 54.4 267.7333333333334 64 256 64S234.6666666666667 54.4 234.6666666666667 42.6666666666667S244.2666666666667 21.3333333333334 256 21.3333333333334S277.3333333333333 30.9333333333333 277.3333333333333 42.6666666666667M234.6666666666667 210.7733333333333C247.04 224.8533333333333 261.3333333333333 237.0133333333333 277.3333333333333 246.8266666666667V341.3333333333334H341.3333333333333L256 426.6666666666667L170.6666666666667 341.3333333333334H234.6666666666667V210.7733333333333z" />
+    <glyph glyph-name="arrow-down"
+      unicode="&#xF045;"
+      horiz-adv-x="512" d=" M234.6666666666667 362.6666666666667H277.3333333333333V106.6666666666667L394.6666666666667 224L424.9600000000001 193.7066666666667L256 24.7466666666667L87.04 193.7066666666667L117.3333333333333 224L234.6666666666667 106.6666666666667V362.6666666666667z" />
+    <glyph glyph-name="arrow-down-bold"
+      unicode="&#xF72D;"
+      horiz-adv-x="512" d=" M192 362.6666666666667H320V192H423.2533333333334L256 24.7466666666667L88.7466666666667 192H192V362.6666666666667z" />
+    <glyph glyph-name="arrow-down-bold-box"
+      unicode="&#xF72E;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M256 85.3333333333334L362.6666666666667 192H298.6666666666667V277.3333333333334H213.3333333333333V192H149.3333333333333L256 85.3333333333334z" />
+    <glyph glyph-name="arrow-down-bold-box-outline"
+      unicode="&#xF72F;"
+      horiz-adv-x="512" d=" M256 85.3333333333334L149.3333333333333 192H213.3333333333333V277.3333333333334H298.6666666666667V192H362.6666666666667L256 85.3333333333334M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M106.6666666666667 341.3333333333334V42.6666666666667H405.3333333333333V341.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="arrow-down-bold-circle"
+      unicode="&#xF047;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 85.3333333333334L362.6666666666667 192H298.6666666666667V277.3333333333334H213.3333333333333V192H149.3333333333333L256 85.3333333333334z" />
+    <glyph glyph-name="arrow-down-bold-circle-outline"
+      unicode="&#xF048;"
+      horiz-adv-x="512" d=" M256 85.3333333333334L149.3333333333333 192H213.3333333333333V277.3333333333334H298.6666666666667V192H362.6666666666667L256 85.3333333333334M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="arrow-down-bold-hexagon-outline"
+      unicode="&#xF049;"
+      horiz-adv-x="512" d=" M256 85.3333333333334L149.3333333333333 192H213.3333333333333V277.3333333333334H298.6666666666667V192H362.6666666666667L256 85.3333333333334M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
+    <glyph glyph-name="arrow-down-bold-outline"
+      unicode="&#xF9BE;"
+      horiz-adv-x="512" d=" M469.3333333333333 213.3333333333334L256 0L42.6666666666667 213.3333333333334H170.6666666666667V384H341.3333333333333V213.3333333333334H469.3333333333333M256 64L362.6666666666667 170.6666666666667H298.6666666666667V341.3333333333334H213.3333333333333V170.6666666666667H149.3333333333333L256 64z" />
+    <glyph glyph-name="arrow-down-box"
+      unicode="&#xF6BF;"
+      horiz-adv-x="512" d=" M64 341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334M234.6666666666667 320V138.6666666666667L160 213.3333333333334L129.7066666666667 183.04L256 56.7466666666667L382.2933333333334 183.04L352 213.3333333333334L277.3333333333333 138.6666666666667V320H234.6666666666667z" />
+    <glyph glyph-name="arrow-down-drop-circle"
+      unicode="&#xF04A;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M149.3333333333333 234.6666666666667L256 128L362.6666666666667 234.6666666666667H149.3333333333333z" />
+    <glyph glyph-name="arrow-down-drop-circle-outline"
+      unicode="&#xF04B;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 362.6666666666667C350.2933333333334 362.6666666666667 426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334S85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667M149.3333333333333 234.6666666666667L256 128L362.6666666666667 234.6666666666667H149.3333333333333z" />
+    <glyph glyph-name="arrow-down-thick"
+      unicode="&#xF046;"
+      horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667H298.6666666666667V170.6666666666667L373.3333333333333 245.3333333333334L424.9600000000001 193.7066666666667L256 24.7466666666667L87.04 193.7066666666667L138.6666666666667 245.3333333333334L213.3333333333333 170.6666666666667V362.6666666666667z" />
+    <glyph glyph-name="arrow-expand"
+      unicode="&#xF616;"
+      horiz-adv-x="512" d=" M213.3333333333333 0V42.6666666666667H136.7466666666667L232.7466666666667 138.6666666666667L202.6666666666667 168.7466666666667L106.6666666666667 72.7466666666667V149.3333333333334H64V0H213.3333333333333M309.3333333333333 215.2533333333333L405.3333333333333 311.2533333333334V234.6666666666667H448V384H298.6666666666667V341.3333333333334H375.2533333333334L279.2533333333334 245.3333333333334L309.3333333333333 215.2533333333333z" />
+    <glyph glyph-name="arrow-expand-all"
+      unicode="&#xF04C;"
+      horiz-adv-x="512" d=" M202.6666666666667 168.7466666666667L232.7466666666667 138.6666666666667L136.7466666666667 42.6666666666667H213.3333333333333V0H64V149.3333333333334H106.6666666666667V72.7466666666667L202.6666666666667 168.7466666666667M232.7466666666667 245.3333333333334L202.6666666666667 215.2533333333333L106.6666666666667 311.2533333333334V234.6666666666667H64V384H213.3333333333333V341.3333333333334H136.7466666666667L232.7466666666667 245.3333333333334M309.3333333333333 168.7466666666667L405.3333333333333 72.7466666666667V149.3333333333334H448V0H298.6666666666667V42.6666666666667H375.2533333333334L279.2533333333334 138.6666666666667L309.3333333333333 168.7466666666667M279.2533333333334 245.3333333333334L375.2533333333334 341.3333333333334H298.6666666666667V384H448V234.6666666666667H405.3333333333333V311.2533333333334L309.3333333333333 215.2533333333333L279.2533333333334 245.3333333333334z" />
+    <glyph glyph-name="arrow-expand-down"
+      unicode="&#xF795;"
+      horiz-adv-x="512" d=" M469.3333333333333 362.6666666666667V405.3333333333333H42.6666666666667V362.6666666666667H234.6666666666667V60.3733333333333L117.3333333333333 177.7066666666667L87.04 147.6266666666667L256 -21.3333333333333L424.9600000000001 147.6266666666667L394.6666666666667 177.7066666666667L277.3333333333333 60.3733333333333V362.6666666666667H469.3333333333333z" />
+    <glyph glyph-name="arrow-expand-horizontal"
+      unicode="&#xF84D;"
+      horiz-adv-x="512" d=" M192 213.3333333333334H320V277.3333333333334L405.3333333333333 192L320 106.6666666666667V170.6666666666667H192V106.6666666666667L106.6666666666667 192L192 277.3333333333334V213.3333333333334M42.6666666666667 21.3333333333334V362.6666666666667H85.3333333333333V21.3333333333334H42.6666666666667M426.6666666666667 21.3333333333334V362.6666666666667H469.3333333333333V21.3333333333334H426.6666666666667z" />
+    <glyph glyph-name="arrow-expand-left"
+      unicode="&#xF796;"
+      horiz-adv-x="512" d=" M426.6666666666667 -21.3333333333333H469.3333333333333V405.3333333333333H426.6666666666667V213.3333333333334H124.3733333333333L241.7066666666667 330.6666666666667L211.6266666666667 360.9600000000001L42.6666666666667 192L211.6266666666667 23.04L241.7066666666667 53.3333333333334L124.3733333333333 170.6666666666667H426.6666666666667V-21.3333333333333z" />
+    <glyph glyph-name="arrow-expand-right"
+      unicode="&#xF797;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H42.6666666666667V-21.3333333333333H85.3333333333333V170.6666666666667H387.6266666666667L270.2933333333334 53.3333333333334L300.3733333333334 23.04L469.3333333333333 192L300.3733333333334 360.9600000000001L270.2933333333333 330.6666666666667L387.6266666666667 213.3333333333334H85.3333333333333V405.3333333333333z" />
+    <glyph glyph-name="arrow-expand-up"
+      unicode="&#xF798;"
+      horiz-adv-x="512" d=" M42.6666666666667 21.3333333333334V-21.3333333333333H469.3333333333333V21.3333333333334H277.3333333333333V323.6266666666667L394.6666666666667 206.2933333333334L424.9600000000001 236.3733333333334L256 405.3333333333333L87.04 236.3733333333334L117.3333333333333 206.2933333333334L234.6666666666667 323.6266666666667V21.3333333333334H42.6666666666667z" />
+    <glyph glyph-name="arrow-expand-vertical"
+      unicode="&#xF84E;"
+      horiz-adv-x="512" d=" M277.3333333333333 256V128H341.3333333333333L256 42.6666666666667L170.6666666666667 128H234.6666666666667V256H170.6666666666667L256 341.3333333333334L341.3333333333333 256H277.3333333333333M85.3333333333333 405.3333333333333H426.6666666666667V362.6666666666667H85.3333333333333V405.3333333333333M85.3333333333333 21.3333333333334H426.6666666666667V-21.3333333333333H85.3333333333333V21.3333333333334z" />
+    <glyph glyph-name="arrow-left"
+      unicode="&#xF04D;"
+      horiz-adv-x="512" d=" M426.6666666666667 213.3333333333334V170.6666666666667H170.6666666666667L288 53.3333333333334L257.7066666666667 23.04L88.7466666666667 192L257.7066666666667 360.9600000000001L288 330.6666666666667L170.6666666666667 213.3333333333334H426.6666666666667z" />
+    <glyph glyph-name="arrow-left-bold"
+      unicode="&#xF730;"
+      horiz-adv-x="512" d=" M426.6666666666667 256V128H256V24.7466666666667L88.7466666666667 192L256 359.2533333333334V256H426.6666666666667z" />
+    <glyph glyph-name="arrow-left-bold-box"
+      unicode="&#xF731;"
+      horiz-adv-x="512" d=" M448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334M149.3333333333333 192L256 85.3333333333334V149.3333333333334H341.3333333333333V234.6666666666667H256V298.6666666666667L149.3333333333333 192z" />
+    <glyph glyph-name="arrow-left-bold-box-outline"
+      unicode="&#xF732;"
+      horiz-adv-x="512" d=" M149.3333333333333 192L256 298.6666666666667V234.6666666666667H341.3333333333333V149.3333333333334H256V85.3333333333334L149.3333333333333 192M448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334M405.3333333333333 341.3333333333334H106.6666666666667V42.6666666666667H405.3333333333333V341.3333333333334z" />
+    <glyph glyph-name="arrow-left-bold-circle"
+      unicode="&#xF04F;"
+      horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M149.3333333333333 192L256 85.3333333333334V149.3333333333334H341.3333333333333V234.6666666666667H256V298.6666666666667L149.3333333333333 192z" />
+    <glyph glyph-name="arrow-left-bold-circle-outline"
+      unicode="&#xF050;"
+      horiz-adv-x="512" d=" M149.3333333333333 192L256 298.6666666666667V234.6666666666667H341.3333333333333V149.3333333333334H256V85.3333333333334L149.3333333333333 192M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192z" />
+    <glyph glyph-name="arrow-left-bold-hexagon-outline"
+      unicode="&#xF051;"
+      horiz-adv-x="512" d=" M149.3333333333333 192L256 298.6666666666667V234.6666666666667H341.3333333333333V149.3333333333334H256V85.3333333333334L149.3333333333333 192M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
+    <glyph glyph-name="arrow-left-bold-outline"
+      unicode="&#xF9BF;"
+      horiz-adv-x="512" d=" M277.3333333333333 -21.3333333333333L64 192L277.3333333333333 405.3333333333333V277.3333333333334H448V106.6666666666667H277.3333333333333V-21.3333333333333M128 192L234.6666666666667 85.3333333333334V149.3333333333334H405.3333333333333V234.6666666666667H234.6666666666667V298.6666666666667L128 192z" />
+    <glyph glyph-name="arrow-left-box"
+      unicode="&#xF6C0;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 83.2 384 106.6666666666667 384H405.3333333333333M384 213.3333333333334H202.6666666666667L277.3333333333333 288L247.04 318.2933333333334L120.7466666666667 192L247.04 65.7066666666667L277.3333333333333 96L202.6666666666667 170.6666666666667H384V213.3333333333334z" />
+    <glyph glyph-name="arrow-left-drop-circle"
+      unicode="&#xF052;"
+      horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M298.6666666666667 298.6666666666667L192 192L298.6666666666667 85.3333333333334V298.6666666666667z" />
+    <glyph glyph-name="arrow-left-drop-circle-outline"
+      unicode="&#xF053;"
+      horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 309.76 373.76 405.3333333333333 256 405.3333333333333S42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192M426.6666666666667 192C426.6666666666667 97.7066666666667 350.2933333333334 21.3333333333334 256 21.3333333333334S85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192M298.6666666666667 298.6666666666667L192 192L298.6666666666667 85.3333333333334V298.6666666666667z" />
+    <glyph glyph-name="arrow-left-right-bold-outline"
+      unicode="&#xF9C0;"
+      horiz-adv-x="512" d=" M298.6666666666667 106.6666666666667V-21.3333333333333L512 192L298.6666666666667 405.3333333333333V277.3333333333334H213.3333333333333V405.3333333333333L0 192L213.3333333333333 -21.3333333333333V106.6666666666667H298.6666666666667M170.6666666666667 149.3333333333334V85.3333333333334L64 192L170.6666666666667 298.6666666666667V234.6666666666667H341.3333333333333V298.6666666666667L448 192L341.3333333333333 85.3333333333334V149.3333333333334H170.6666666666667z" />
+    <glyph glyph-name="arrow-left-thick"
+      unicode="&#xF04E;"
+      horiz-adv-x="512" d=" M426.6666666666667 234.6666666666667V149.3333333333334H234.6666666666667L309.3333333333333 74.6666666666667L257.7066666666667 23.04L88.7466666666667 192L257.7066666666667 360.9600000000001L309.3333333333333 309.3333333333334L234.6666666666667 234.6666666666667H426.6666666666667z" />
+    <glyph glyph-name="arrow-right"
+      unicode="&#xF054;"
+      horiz-adv-x="512" d=" M85.3333333333333 213.3333333333334V170.6666666666667H341.3333333333333L224 53.3333333333334L254.2933333333333 23.04L423.2533333333334 192L254.2933333333333 360.9600000000001L224 330.6666666666667L341.3333333333333 213.3333333333334H85.3333333333333z" />
+    <glyph glyph-name="arrow-right-bold"
+      unicode="&#xF733;"
+      horiz-adv-x="512" d=" M85.3333333333333 128V256H256V359.2533333333334L423.2533333333334 192L256 24.7466666666667V128H85.3333333333333z" />
+    <glyph glyph-name="arrow-right-bold-box"
+      unicode="&#xF734;"
+      horiz-adv-x="512" d=" M64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667M362.6666666666667 192L256 298.6666666666667V234.6666666666667H170.6666666666667V149.3333333333334H256V85.3333333333334L362.6666666666667 192z" />
+    <glyph glyph-name="arrow-right-bold-box-outline"
+      unicode="&#xF735;"
+      horiz-adv-x="512" d=" M362.6666666666667 192L256 85.3333333333334V149.3333333333334H170.6666666666667V234.6666666666667H256V298.6666666666667L362.6666666666667 192M64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667M106.6666666666667 42.6666666666667H405.3333333333333V341.3333333333334H106.6666666666667V42.6666666666667z" />
+    <glyph glyph-name="arrow-right-bold-circle"
+      unicode="&#xF056;"
+      horiz-adv-x="512" d=" M42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192M362.6666666666667 192L256 298.6666666666667V234.6666666666667H170.6666666666667V149.3333333333334H256V85.3333333333334L362.6666666666667 192z" />
+    <glyph glyph-name="arrow-right-bold-circle-outline"
+      unicode="&#xF057;"
+      horiz-adv-x="512" d=" M362.6666666666667 192L256 85.3333333333334V149.3333333333334H170.6666666666667V234.6666666666667H256V298.6666666666667L362.6666666666667 192M42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192M85.3333333333333 192C85.3333333333333 97.7066666666667 161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192z" />
+    <glyph glyph-name="arrow-right-bold-hexagon-outline"
+      unicode="&#xF058;"
+      horiz-adv-x="512" d=" M362.6666666666667 192L256 85.3333333333334V149.3333333333334H170.6666666666667V234.6666666666667H256V298.6666666666667L362.6666666666667 192M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
+    <glyph glyph-name="arrow-right-bold-outline"
+      unicode="&#xF9C1;"
+      horiz-adv-x="512" d=" M234.6666666666667 106.6666666666667H64V277.3333333333334H234.6666666666667V405.3333333333333L448 192L234.6666666666667 -21.3333333333333V106.6666666666667M277.3333333333333 298.6666666666667V234.6666666666667H106.6666666666667V149.3333333333334H277.3333333333333V85.3333333333334L384 192L277.3333333333333 298.6666666666667z" />
+    <glyph glyph-name="arrow-right-box"
+      unicode="&#xF6C1;"
+      horiz-adv-x="512" d=" M106.6666666666667 0C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 18.9866666666667 428.8 0 405.3333333333333 0H106.6666666666667M128 170.6666666666667H309.3333333333333L234.6666666666667 96L264.96 65.7066666666667L391.2533333333334 192L264.96 318.2933333333334L234.6666666666667 288L309.3333333333333 213.3333333333334H128V170.6666666666667z" />
+    <glyph glyph-name="arrow-right-drop-circle"
+      unicode="&#xF059;"
+      horiz-adv-x="512" d=" M42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192M213.3333333333333 85.3333333333334L320 192L213.3333333333333 298.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="arrow-right-drop-circle-outline"
+      unicode="&#xF05A;"
+      horiz-adv-x="512" d=" M42.6666666666667 192C42.6666666666667 74.24 138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333S42.6666666666667 309.76 42.6666666666667 192M85.3333333333333 192C85.3333333333333 286.2933333333334 161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334S85.3333333333333 97.7066666666667 85.3333333333333 192M213.3333333333333 85.3333333333334L320 192L213.3333333333333 298.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="arrow-right-thick"
+      unicode="&#xF055;"
+      horiz-adv-x="512" d=" M85.3333333333333 234.6666666666667V149.3333333333334H277.3333333333333L202.6666666666667 74.6666666666667L254.2933333333333 23.04L423.2533333333334 192L254.2933333333333 360.9600000000001L202.6666666666667 309.3333333333334L277.3333333333333 234.6666666666667H85.3333333333333z" />
+    <glyph glyph-name="arrow-split-horizontal"
+      unicode="&#xF93A;"
+      horiz-adv-x="512" d=" M170.6666666666667 64H234.6666666666667V128H42.6666666666667V170.6666666666667H469.3333333333333V128H277.3333333333333V64H341.3333333333333L256 -21.3333333333333L170.6666666666667 64M256 405.3333333333333L170.6666666666667 320H234.6666666666667V256H42.6666666666667V213.3333333333334H469.3333333333333V256H277.3333333333333V320H341.3333333333333L256 405.3333333333333z" />
+    <glyph glyph-name="arrow-split-vertical"
+      unicode="&#xF93B;"
+      horiz-adv-x="512" d=" M384 106.6666666666667V170.6666666666667H320V-21.3333333333333H277.3333333333333V405.3333333333333H320V213.3333333333334H384V277.3333333333334L469.3333333333333 192L384 106.6666666666667M42.6666666666667 192L128 106.6666666666667V170.6666666666667H192V-21.3333333333333H234.6666666666667V405.3333333333333H192V213.3333333333334H128V277.3333333333334L42.6666666666667 192z" />
+    <glyph glyph-name="arrow-top-left"
+      unicode="&#xF05B;"
+      horiz-adv-x="512" d=" M405.3333333333333 72.7466666666667L375.2533333333334 42.6666666666667L149.3333333333333 268.5866666666667V128H106.6666666666667V341.3333333333334H320V298.6666666666667H179.4133333333333L405.3333333333333 72.7466666666667z" />
+    <glyph glyph-name="arrow-top-left-bold-outline"
+      unicode="&#xF9C2;"
+      horiz-adv-x="512" d=" M301.2266666666667 267.52L421.9733333333334 146.7733333333333L301.2266666666667 26.0266666666666L180.48 146.7733333333333L90.0266666666667 56.3200000000001V357.9733333333334H391.68L301.2266666666667 267.52M135.2533333333333 161.92L180.48 207.1466666666667L301.2266666666667 86.4L361.6 146.7733333333334L240.8533333333333 267.3066666666668L286.08 312.7466666666667H135.2533333333333V161.92z" />
+    <glyph glyph-name="arrow-top-left-thick"
+      unicode="&#xF9C3;"
+      horiz-adv-x="512" d=" M194.56 193.28V87.68H121.3866666666667V326.6133333333334H360.32V253.44H254.7200000000001L390.6133333333334 117.3333333333334L330.6666666666667 57.3866666666667L194.56 193.2800000000001z" />
+    <glyph glyph-name="arrow-top-right"
+      unicode="&#xF05C;"
+      horiz-adv-x="512" d=" M106.6666666666667 72.7466666666667L332.5866666666667 298.6666666666667H192V341.3333333333334H405.3333333333333V128H362.6666666666667V268.5866666666667L136.7466666666667 42.6666666666667L106.6666666666667 72.7466666666667z" />
+    <glyph glyph-name="arrow-top-right-bold-outline"
+      unicode="&#xF9C4;"
+      horiz-adv-x="512" d=" M120.32 357.9733333333334H421.9733333333334V56.3200000000001L331.52 146.7733333333334L210.7733333333334 26.0266666666666L90.0266666666667 146.7733333333333L210.7733333333334 267.52L120.32 357.9733333333334M376.7466666666667 312.7466666666667H225.92L271.1466666666667 267.52L150.4 146.7733333333333L210.7733333333334 86.4L331.52 207.1466666666666L376.7466666666667 161.92V312.7466666666667z" />
+    <glyph glyph-name="arrow-top-right-thick"
+      unicode="&#xF9C5;"
+      horiz-adv-x="512" d=" M181.3333333333333 57.3866666666667L121.3866666666667 117.3333333333334L257.28 253.44H151.68V326.6133333333334H390.6133333333333V87.68H317.6533333333333V193.28L181.3333333333333 57.3866666666667z" />
+    <glyph glyph-name="arrow-up"
+      unicode="&#xF05D;"
+      horiz-adv-x="512" d=" M277.3333333333333 21.3333333333334H234.6666666666667V277.3333333333334L117.3333333333333 160L87.04 190.2933333333334L256 359.2533333333334L424.9600000000001 190.2933333333334L394.6666666666667 160L277.3333333333333 277.3333333333334V21.3333333333334z" />
+    <glyph glyph-name="arrow-up-bold"
+      unicode="&#xF736;"
+      horiz-adv-x="512" d=" M320 21.3333333333334H192V192H88.7466666666667L256 359.2533333333334L423.2533333333334 192H320V21.3333333333334z" />
+    <glyph glyph-name="arrow-up-bold-box"
+      unicode="&#xF737;"
+      horiz-adv-x="512" d=" M405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0M256 298.6666666666667L149.3333333333333 192H213.3333333333333V106.6666666666667H298.6666666666667V192H362.6666666666667L256 298.6666666666667z" />
+    <glyph glyph-name="arrow-up-bold-box-outline"
+      unicode="&#xF738;"
+      horiz-adv-x="512" d=" M256 298.6666666666667L362.6666666666667 192H298.6666666666667V106.6666666666667H213.3333333333333V192H149.3333333333333L256 298.6666666666667M405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0M405.3333333333333 42.6666666666667V341.3333333333334H106.6666666666667V42.6666666666667H405.3333333333333z" />
+    <glyph glyph-name="arrow-up-bold-circle"
+      unicode="&#xF05F;"
+      horiz-adv-x="512" d=" M256 -21.3333333333333C138.24 -21.3333333333333 42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333M256 298.6666666666667L149.3333333333333 192H213.3333333333333V106.6666666666667H298.6666666666667V192H362.6666666666667L256 298.6666666666667z" />
+    <glyph glyph-name="arrow-up-bold-circle-outline"
+      unicode="&#xF060;"
+      horiz-adv-x="512" d=" M256 298.6666666666667L362.6666666666667 192H298.6666666666667V106.6666666666667H213.3333333333333V192H149.3333333333333L256 298.6666666666667M256 -21.3333333333333C138.24 -21.3333333333333 42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334z" />
+    <glyph glyph-name="arrow-up-bold-hexagon-outline"
+      unicode="&#xF061;"
+      horiz-adv-x="512" d=" M256 298.6666666666667L362.6666666666667 192H298.6666666666667V106.6666666666667H213.3333333333333V192H149.3333333333333L256 298.6666666666667M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
+    <glyph glyph-name="arrow-up-bold-outline"
+      unicode="&#xF9C6;"
+      horiz-adv-x="512" d=" M341.3333333333333 170.6666666666667V0H170.6666666666667V170.6666666666667H42.6666666666667L256 384L469.3333333333333 170.6666666666667H341.3333333333333M149.3333333333333 213.3333333333334H213.3333333333333V42.6666666666667H298.6666666666667V213.3333333333334H362.6666666666667L256 320L149.3333333333333 213.3333333333334z" />
+    <glyph glyph-name="arrow-up-box"
+      unicode="&#xF6C2;"
+      horiz-adv-x="512" d=" M448 42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C429.0133333333333 384 448 364.8 448 341.3333333333334V42.6666666666667M277.3333333333333 64V245.3333333333334L352 170.6666666666667L382.2933333333334 200.96L256 327.2533333333334L129.7066666666667 200.96L160 170.6666666666667L234.6666666666667 245.3333333333334V64H277.3333333333333z" />
+    <glyph glyph-name="arrow-up-down-bold-outline"
+      unicode="&#xF9C7;"
+      horiz-adv-x="512" d=" M341.3333333333333 234.6666666666667H469.3333333333333L256 448L42.6666666666667 234.6666666666667H170.6666666666667V149.3333333333334H42.6666666666667L256 -64L469.3333333333333 149.3333333333334H341.3333333333333V234.6666666666667M298.6666666666667 106.6666666666667H362.6666666666667L256 0L149.3333333333333 106.6666666666667H213.3333333333333V277.3333333333334H149.3333333333333L256 384L362.6666666666667 277.3333333333334H298.6666666666667V106.6666666666667z" />
+    <glyph glyph-name="arrow-up-drop-circle"
+      unicode="&#xF062;"
+      horiz-adv-x="512" d=" M256 -21.3333333333333C138.24 -21.3333333333333 42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333M362.6666666666667 149.3333333333334L256 256L149.3333333333333 149.3333333333334H362.6666666666667z" />
+    <glyph glyph-name="arrow-up-drop-circle-outline"
+      unicode="&#xF063;"
+      horiz-adv-x="512" d=" M256 -21.3333333333333C373.76 -21.3333333333333 469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333S42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M362.6666666666667 149.3333333333334L256 256L149.3333333333333 149.3333333333334H362.6666666666667z" />
+    <glyph glyph-name="arrow-up-thick"
+      unicode="&#xF05E;"
+      horiz-adv-x="512" d=" M298.6666666666667 21.3333333333334H213.3333333333333V213.3333333333334L138.6666666666667 138.6666666666667L87.04 190.2933333333334L256 359.2533333333334L424.9600000000001 190.2933333333334L373.3333333333333 138.6666666666667L298.6666666666667 213.3333333333334V21.3333333333334z" />
+    <glyph glyph-name="artist"
+      unicode="&#xF802;"
+      horiz-adv-x="512" d=" M234.6666666666667 149.3333333333334C256 149.3333333333334 278.4 145.92 302.9333333333333 139.9466666666667C285.6533333333333 121.3866666666667 277.3333333333333 99.6266666666667 277.3333333333333 74.6666666666667C277.3333333333333 55.68 282.6666666666667 37.76 293.9733333333333 21.3333333333334H64V64C64 89.3866666666667 83.4133333333333 109.8666666666667 122.4533333333333 125.44C161.4933333333334 141.2266666666667 199.04 149.3333333333334 234.6666666666667 149.3333333333334M394.6666666666667 234.6666666666667H469.3333333333333V192H426.6666666666667V74.6666666666667C426.6666666666667 60.3733333333333 421.76 47.5733333333334 411.0933333333333 36.9066666666667S387.6266666666666 21.3333333333334 373.3333333333333 21.3333333333334C358.4 21.3333333333334 345.8133333333334 26.24 335.5733333333333 36.9066666666667C325.12 47.5733333333334 320 60.3733333333334 320 74.6666666666667C320 89.6 325.12 102.1866666666667 335.5733333333333 112.4266666666667C345.8133333333334 122.88 358.4 128 373.3333333333333 128C379.7333333333334 128 386.9866666666667 126.2933333333334 394.6666666666667 123.0933333333334V234.6666666666667M234.6666666666667 192C211.6266666666667 192 192 200.32 174.5066666666667 216.96C157.44 233.6 149.3333333333333 253.6533333333334 149.3333333333333 277.3333333333334C149.3333333333333 300.3733333333334 157.44 320 174.5066666666667 337.4933333333334C192 354.56 211.6266666666667 362.6666666666667 234.6666666666667 362.6666666666667C258.3466666666667 362.6666666666667 278.4 354.56 295.04 337.4933333333334C311.68 320 320 300.3733333333334 320 277.3333333333334C320 253.6533333333334 311.68 233.6 295.04 216.96C278.4 200.32 258.3466666666667 192 234.6666666666667 192z" />
+    <glyph glyph-name="artstation"
+      unicode="&#xFB37;"
+      horiz-adv-x="512" d=" M37.76 87.8933333333334L74.6666666666667 24.3200000000001C81.92 9.8133333333334 96.8533333333333 0 113.7066666666667 0H358.1866666666666L307.84 87.8933333333334H37.76M474.24 87.4666666666667C474.24 96 471.6799999999999 104.3200000000001 467.2 111.3600000000001L323.6266666666667 360.5333333333334C316.16 374.6133333333334 301.8666666666667 384 284.8 384H209.0666666666667L430.5066666666667 0L465.4933333333333 61.0133333333333C472.1066666666666 72.5333333333333 474.24 77.6533333333334 474.24 87.4666666666666M271.5733333333333 150.6133333333334L172.8 321.7066666666667L73.6 150.6133333333334H271.5733333333333z" />
+    <glyph glyph-name="aspect-ratio"
+      unicode="&#xFA23;"
+      horiz-adv-x="512" d=" M405.3333333333333 192H362.6666666666667V128H298.6666666666667V85.3333333333334H405.3333333333333V192M149.3333333333333 256H213.3333333333333V298.6666666666667H106.6666666666667V192H149.3333333333333V256M448 384H64C40.5333333333333 384 21.3333333333333 364.8 21.3333333333333 341.3333333333334V42.6666666666667C21.3333333333333 19.2 40.5333333333333 0 64 0H448C471.4666666666667 0 490.6666666666666 19.2 490.6666666666666 42.6666666666667V341.3333333333334C490.6666666666666 364.8 471.4666666666667 384 448 384M448 42.6666666666667H64V341.3333333333334H448V42.6666666666667z" />
+    <glyph glyph-name="assistant"
+      unicode="&#xF064;"
+      horiz-adv-x="512" d=" M405.3333333333333 405.3333333333333H106.6666666666667C83.2 405.3333333333333 64 386.1333333333334 64 362.6666666666667V64C64 40.5333333333333 83.2 21.3333333333334 106.6666666666667 21.3333333333334H192L256 -42.6666666666666L320 21.3333333333334H405.3333333333333C428.8 21.3333333333334 448 40.5333333333333 448 64V362.6666666666667C448 386.1333333333334 428.8 405.3333333333333 405.3333333333333 405.3333333333333M296.1066666666667 173.2266666666667L256 85.3333333333334L215.8933333333334 173.2266666666667L128 213.3333333333334L215.8933333333334 253.44L256 341.3333333333334L296.1066666666667 253.44L384 213.3333333333334" />
+    <glyph glyph-name="asterisk"
+      unicode="&#xF6C3;"
+      horiz-adv-x="512" d=" M213.3333333333333 405.3333333333333H298.6666666666667L281.8133333333334 236.5866666666667L419.4133333333333 335.5733333333333L462.08 261.76L307.6266666666667 192L462.08 122.24L419.4133333333333 48.4266666666667L281.8133333333334 147.4133333333334L298.6666666666667 -21.3333333333333H213.3333333333333L230.1866666666667 147.4133333333334L92.5866666666667 48.4266666666667L49.92 122.24L204.3733333333333 192L49.92 261.76L92.5866666666667 335.5733333333333L230.1866666666667 236.5866666666667L213.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="at"
+      unicode="&#xF065;"
+      horiz-adv-x="512" d=" M256 128C273.28 128 288 134.4 301.0133333333333 146.9866666666667C313.6 160 320 174.72 320 192C320 209.28 313.6 224 301.0133333333333 237.0133333333333C288 249.6 273.28 256 256 256C238.72 256 224 249.6 210.9866666666667 237.0133333333333C198.4 224 192 209.28 192 192C192 174.72 198.4 160 210.9866666666667 146.9866666666667C224 134.4 238.7200000000001 128 256 128M256 405.3333333333333C314.6666666666667 405.3333333333333 364.8 384 406.4 342.4C448 300.8 469.3333333333333 250.6666666666667 469.3333333333333 192V161.0666666666667C469.3333333333333 139.7333333333334 461.8666666666666 121.6 448 106.6666666666667C433.0666666666667 92.3733333333333 416 85.3333333333334 394.6666666666667 85.3333333333334C369.0666666666667 85.3333333333334 347.9466666666666 96 331.9466666666667 117.3333333333334C310.6133333333334 96 285.44 85.3333333333334 256 85.3333333333334C226.7733333333333 85.3333333333334 201.6 96 180.48 116.48C160 137.6 149.3333333333333 162.56 149.3333333333333 192C149.3333333333333 221.2266666666667 160 246.4000000000001 180.48 267.52C201.6 288 226.7733333333334 298.6666666666667 256 298.6666666666667C285.44 298.6666666666667 310.4 288 331.52 267.52C352 246.4000000000001 362.6666666666667 221.2266666666667 362.6666666666667 192V161.0666666666667C362.6666666666667 152.3200000000001 366.08 144.6400000000001 372.48 138.0266666666667C378.88 131.4133333333334 386.3466666666667 128 394.6666666666667 128C403.6266666666667 128 411.0933333333333 131.4133333333334 417.4933333333334 138.0266666666667C423.8933333333333 144.6400000000001 426.6666666666667 152.3200000000001 426.6666666666667 161.0666666666667V192C426.6666666666667 238.72 410.24 278.8266666666667 376.5333333333333 312.5333333333334S302.72 362.6666666666667 256 362.6666666666667C209.28 362.6666666666667 169.1733333333333 346.24 135.4666666666667 312.5333333333334S85.3333333333333 238.72 85.3333333333333 192C85.3333333333333 145.28 101.76 105.1733333333334 135.4666666666667 71.4666666666667S209.28 21.3333333333334 256 21.3333333333334H362.6666666666667V-21.3333333333333H256C197.3333333333333 -21.3333333333333 147.2 0 105.6 41.6C64 83.2 42.6666666666667 133.3333333333334 42.6666666666667 192S64 300.8 105.6 342.4C147.2 384 197.3333333333333 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="atlassian"
+      unicode="&#xF803;"
+      horiz-adv-x="512" d=" M169.1733333333333 208.2133333333334C165.12 213.3333333333334 157.44 214.6133333333334 152.1066666666667 210.56C150.6133333333333 209.28 149.3333333333333 207.7866666666666 148.48 206.08L43.9466666666667 -3.2C40.7466666666667 -9.3866666666667 43.3066666666667 -16.8533333333334 49.4933333333333 -20.0533333333333C51.2 -21.3333333333333 53.3333333333333 -21.3333333333333 55.2533333333333 -21.3333333333333H200.7466666666667C205.44 -21.3333333333333 209.92 -18.7733333333333 212.0533333333333 -14.5066666666667C243.4133333333334 50.5600000000001 224 149.3333333333334 169.1733333333333 208.2133333333334M245.9733333333333 398.72C193.0666666666667 317.0133333333333 186.88 213.3333333333334 229.76 126.0800000000001L299.9466666666666 -14.5066666666667C302.2933333333333 -18.7733333333333 306.56 -21.3333333333333 311.2533333333333 -21.3333333333333H456.7466666666666C463.7866666666665 -21.3333333333333 469.3333333333333 -15.7866666666666 469.3333333333333 -8.7466666666667C469.3333333333333 -6.8266666666667 469.3333333333333 -4.9066666666666 468.0533333333333 -3.1999999999999C468.0533333333333 -3.1999999999999 272.2133333333333 388.9066666666667 266.6666666666667 398.7200000000001C264.32 404.48 257.28 407.04 251.3066666666666 404.0533333333334C248.96 402.9866666666667 247.04 401.0666666666667 245.9733333333333 398.7200000000001z" />
+    <glyph glyph-name="atom"
+      unicode="&#xF767;"
+      horiz-adv-x="512" d=" M256 213.3333333333334C267.7333333333334 213.3333333333334 277.3333333333333 203.7333333333334 277.3333333333333 192S267.7333333333334 170.6666666666667 256 170.6666666666667S234.6666666666667 180.2666666666667 234.6666666666667 192S244.2666666666667 213.3333333333334 256 213.3333333333334M90.0266666666667 357.9733333333334C120.5333333333333 388.48 186.6666666666667 374.8266666666667 256 329.3866666666667C325.3333333333333 374.8266666666667 391.4666666666667 388.48 421.9733333333334 357.9733333333334C452.48 327.4666666666667 438.8266666666667 261.3333333333334 393.3866666666667 192C438.8266666666667 122.6666666666667 452.48 56.5333333333333 421.9733333333334 26.0266666666666C391.4666666666667 -4.48 325.3333333333333 9.1733333333333 256 54.6133333333333C186.6666666666667 9.1733333333333 120.5333333333333 -4.48 90.0266666666667 26.0266666666666C59.52 56.5333333333333 73.1733333333333 122.6666666666667 118.6133333333333 192C73.1733333333333 261.3333333333334 59.52 327.4666666666667 90.0266666666667 357.9733333333334M331.52 267.52C344.5333333333333 254.2933333333334 356.48 240.8533333333333 367.5733333333333 227.4133333333334C397.0133333333333 272.8533333333334 407.68 311.8933333333333 391.68 327.68C375.8933333333333 343.68 336.8533333333333 333.0133333333333 291.4133333333333 303.5733333333334C304.8533333333334 292.48 318.2933333333333 280.5333333333334 331.52 267.5200000000001M180.48 116.48C167.4666666666667 129.7066666666667 155.52 143.1466666666667 144.4266666666667 156.5866666666667C114.9866666666667 111.1466666666667 104.32 72.1066666666667 120.32 56.3200000000001C136.1066666666667 40.3200000000001 175.1466666666667 50.9866666666667 220.5866666666667 80.4266666666667C207.1466666666667 91.52 193.7066666666667 103.4666666666667 180.48 116.48M120.32 327.68C104.32 311.8933333333333 114.9866666666667 272.8533333333334 144.4266666666667 227.4133333333334C155.52 240.8533333333334 167.4666666666667 254.2933333333334 180.48 267.52C193.7066666666667 280.5333333333333 207.1466666666667 292.48 220.5866666666667 303.5733333333333C175.1466666666667 333.0133333333333 136.1066666666667 343.68 120.32 327.68M210.7733333333333 146.7733333333333C225.7066666666666 131.84 241.0666666666667 118.1866666666667 256 106.0266666666666C270.9333333333333 118.1866666666667 286.2933333333333 131.84 301.2266666666667 146.7733333333333C316.16 161.7066666666667 329.8133333333334 177.0666666666667 341.9733333333334 192C329.8133333333334 206.9333333333333 316.16 222.2933333333334 301.2266666666667 237.2266666666667C286.2933333333334 252.1600000000001 270.9333333333334 265.8133333333334 256 277.9733333333334C241.0666666666667 265.8133333333334 225.7066666666667 252.1600000000001 210.7733333333333 237.2266666666667C195.84 222.2933333333334 182.1866666666667 206.9333333333334 170.0266666666667 192C182.1866666666667 177.0666666666667 195.84 161.7066666666667 210.7733333333333 146.7733333333333M391.68 56.3200000000001C407.68 72.1066666666667 397.0133333333333 111.1466666666667 367.5733333333333 156.5866666666667C356.48 143.1466666666667 344.5333333333333 129.7066666666667 331.52 116.48C318.2933333333334 103.4666666666667 304.8533333333334 91.52 291.4133333333333 80.4266666666667C336.8533333333333 50.9866666666667 375.8933333333333 40.3200000000001 391.68 56.3200000000001z" />
+    <glyph glyph-name="attachment"
+      unicode="&#xF066;"
+      horiz-adv-x="512" d=" M160 64C95.1466666666667 64 42.6666666666667 116.48 42.6666666666667 181.3333333333334S95.1466666666667 298.6666666666667 160 298.6666666666667H384C431.1466666666667 298.6666666666667 469.3333333333333 260.48 469.3333333333333 213.3333333333334S431.1466666666667 128 384 128H202.6666666666667C173.2266666666666 128 149.3333333333333 151.8933333333333 149.3333333333333 181.3333333333334S173.2266666666666 234.6666666666667 202.6666666666667 234.6666666666667H362.6666666666667V202.6666666666667H202.6666666666667C190.9333333333333 202.6666666666667 181.3333333333333 193.0666666666667 181.3333333333333 181.3333333333334S190.9333333333333 160 202.6666666666667 160H384C413.44 160 437.3333333333333 183.8933333333334 437.3333333333333 213.3333333333334S413.44 266.6666666666667 384 266.6666666666667H160C112.8533333333333 266.6666666666667 74.6666666666667 228.48 74.6666666666667 181.3333333333334S112.8533333333333 96 160 96H362.6666666666667V64H160z" />
+    <glyph glyph-name="audio-video"
+      unicode="&#xF93C;"
+      horiz-adv-x="512" d=" M426.6666666666667 298.6666666666667H85.3333333333333C61.8666666666667 298.6666666666667 42.6666666666667 279.4666666666667 42.6666666666667 256V128C42.6666666666667 104.5333333333333 61.8666666666667 85.3333333333334 85.3333333333333 85.3333333333334H106.6666666666667V64C106.6666666666667 51.2 115.2 42.6666666666667 128 42.6666666666667H170.6666666666667C183.4666666666667 42.6666666666667 192 51.2 192 64V85.3333333333334H320V64C320 51.2 328.5333333333333 42.6666666666667 341.3333333333333 42.6666666666667H384C396.8 42.6666666666667 405.3333333333333 51.2 405.3333333333333 64V85.3333333333334H426.6666666666667C450.1333333333334 85.3333333333334 469.3333333333333 104.5333333333333 469.3333333333333 128V256C469.3333333333333 279.4666666666667 450.1333333333334 298.6666666666667 426.6666666666667 298.6666666666667M298.6666666666667 192H85.3333333333333V234.6666666666667H298.6666666666667V192M384 170.6666666666667C360.5333333333333 170.6666666666667 341.3333333333333 189.8666666666667 341.3333333333333 213.3333333333334S360.5333333333333 256 384 256S426.6666666666667 236.8 426.6666666666667 213.3333333333334S407.4666666666667 170.6666666666667 384 170.6666666666667M128 128H85.3333333333333V149.3333333333334H128V128M213.3333333333333 128H170.6666666666667V149.3333333333334H213.3333333333333V128M298.6666666666667 128H256V149.3333333333334H298.6666666666667V128z" />
+    <glyph glyph-name="audiobook"
+      unicode="&#xF067;"
+      horiz-adv-x="512" d=" M384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.5333333333333 405.3333333333333 128 405.3333333333333H149.3333333333333V256L202.6666666666667 288L256 256V405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333M277.3333333333333 128C253.8666666666667 128 234.6666666666667 108.8 234.6666666666667 85.3333333333334S253.8666666666667 42.6666666666667 277.3333333333333 42.6666666666667S320 61.8666666666667 320 85.3333333333334V192H384V234.6666666666667H298.6666666666667V122.24C292.48 125.8666666666667 285.0133333333333 128 277.3333333333333 128z" />
+    <glyph glyph-name="augmented-reality"
+      unicode="&#xF84F;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667M165.3333333333333 256H197.3333333333333L234.6666666666667 128H202.6666666666667L196.48 149.3333333333334H166.1866666666667L160 128H128L165.3333333333333 256M277.3333333333333 256H352C370.1333333333334 256 384 242.1333333333334 384 224V202.6666666666667C384 189.8666666666667 375.4666666666667 178.1333333333333 364.8 172.8L384 128H352L333.8666666666667 170.6666666666667H309.3333333333333V128H277.3333333333333V256M309.3333333333333 224V202.6666666666667H352V224H309.3333333333333M181.3333333333333 201.1733333333334L175.5733333333333 181.3333333333334H187.0933333333333L181.3333333333333 201.1733333333334z" />
+    <glyph glyph-name="auto-fix"
+      unicode="&#xF068;"
+      horiz-adv-x="512" d=" M160 328.5333333333334L106.6666666666667 298.6666666666667L136.5333333333333 352L106.6666666666667 405.3333333333333L160 375.4666666666667L213.3333333333333 405.3333333333333L183.4666666666667 352L213.3333333333333 298.6666666666667L160 328.5333333333334M416 119.4666666666667L469.3333333333333 149.3333333333334L439.4666666666667 96L469.3333333333333 42.6666666666667L416 72.5333333333333L362.6666666666667 42.6666666666667L392.5333333333333 96L362.6666666666667 149.3333333333334L416 119.4666666666667M469.3333333333333 405.3333333333333L439.4666666666667 352L469.3333333333333 298.6666666666667L416 328.5333333333334L362.6666666666667 298.6666666666667L392.5333333333333 352L362.6666666666667 405.3333333333333L416 375.4666666666667L469.3333333333333 405.3333333333333M284.5866666666667 175.36L336.64 227.4133333333334L291.4133333333333 272.6400000000001L239.36 220.5866666666667L284.5866666666667 175.3600000000001M306.56 292.4800000000001L356.48 242.5600000000001C364.8 234.6666666666668 364.8 220.8000000000001 356.48 212.4800000000001L107.52 -36.48C99.2 -44.8 85.3333333333333 -44.8 77.44 -36.48L27.52 13.44C19.2 21.3333333333334 19.2 35.2 27.52 43.52L276.48 292.48C284.8 300.8 298.6666666666667 300.8 306.56 292.48z" />
+    <glyph glyph-name="auto-upload"
+      unicode="&#xF069;"
+      horiz-adv-x="512" d=" M114.1333333333333 178.1333333333333L138.6666666666667 256L163.2 178.1333333333333M117.3333333333333 298.6666666666667L49.0666666666667 106.6666666666667H89.6L104.5333333333333 149.3333333333334H172.8L187.7333333333333 106.6666666666667H228.2666666666667L160 298.6666666666667M234.6666666666667 21.3333333333334H469.3333333333333V64H234.6666666666667M298.6666666666667 106.6666666666667H405.3333333333333V213.3333333333334H469.3333333333333L352 330.6666666666667L234.6666666666667 213.3333333333334H298.6666666666667V106.6666666666667z" />
+    <glyph glyph-name="autorenew"
+      unicode="&#xF06A;"
+      horiz-adv-x="512" d=" M256 320V256L341.3333333333333 341.3333333333334L256 426.6666666666667V362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192C85.3333333333333 158.5066666666667 95.1466666666667 127.36 111.7866666666667 101.1200000000001L142.9333333333333 132.2666666666667C133.3333333333333 149.9733333333334 128 170.6666666666667 128 192C128 262.6133333333334 185.3866666666667 320 256 320M400.2133333333333 282.88L369.0666666666667 251.7333333333334C378.4533333333334 233.8133333333334 384 213.3333333333334 384 192C384 121.3866666666667 326.6133333333334 64 256 64V128L170.6666666666667 42.6666666666667L256 -42.6666666666666V21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192C426.6666666666667 225.4933333333334 416.8533333333333 256.64 400.2133333333334 282.88z" />
+    <glyph glyph-name="av-timer"
+      unicode="&#xF06B;"
+      horiz-adv-x="512" d=" M234.6666666666667 85.3333333333334C234.6666666666667 73.6 244.2666666666667 64 256 64S277.3333333333333 73.6 277.3333333333333 85.3333333333334S267.7333333333334 106.6666666666667 256 106.6666666666667S234.6666666666667 97.0666666666667 234.6666666666667 85.3333333333334M234.6666666666667 384V298.6666666666667H277.3333333333333V339.6266666666667C349.6533333333333 329.1733333333334 405.3333333333333 267.3066666666667 405.3333333333333 192C405.3333333333333 109.44 338.56 42.6666666666667 256 42.6666666666667S106.6666666666667 109.44 106.6666666666667 192C106.6666666666667 227.84 119.2533333333333 260.6933333333334 140.3733333333333 286.2933333333334L256 170.6666666666667L286.08 200.7466666666667L141.0133333333333 345.8133333333334V345.3866666666667C94.2933333333333 310.4 64 254.9333333333334 64 192C64 85.9733333333334 149.9733333333333 0 256 0S448 85.9733333333334 448 192S362.0266666666667 384 256 384M384 192C384 203.7333333333334 374.4 213.3333333333334 362.6666666666667 213.3333333333334S341.3333333333333 203.7333333333334 341.3333333333333 192S350.9333333333333 170.6666666666667 362.6666666666667 170.6666666666667S384 180.2666666666667 384 192M128 192C128 180.2666666666667 137.6 170.6666666666667 149.3333333333333 170.6666666666667S170.6666666666667 180.2666666666667 170.6666666666667 192S161.0666666666667 213.3333333333334 149.3333333333333 213.3333333333334S128 203.7333333333334 128 192z" />
+    <glyph glyph-name="axe"
+      unicode="&#xF8C7;"
+      horiz-adv-x="512" d=" M256 405.3333333333333L469.3333333333333 277.3333333333334C469.3333333333333 192 426.6666666666667 149.3333333333334 341.3333333333333 128L277.3333333333333 234.6666666666667L192 320L256 405.3333333333333M87.68 24.7466666666667L45.2266666666667 56.96L196.0533333333333 256L234.6666666666667 217.3866666666667L87.68 24.7466666666667z" />
+    <glyph glyph-name="azure"
+      unicode="&#xF804;"
+      horiz-adv-x="512" d=" M278.4 357.5466666666667L139.9466666666667 62.9333333333333L42.6666666666667 64L151.2533333333333 250.88L278.4 357.5466666666667M293.3333333333333 334.2933333333334L469.3333333333333 26.4533333333333H143.7866666666667L342.1866666666666 61.8666666666667L238.2933333333333 185.3866666666667L293.3333333333333 334.2933333333333z" />
+    <glyph glyph-name="babel"
+      unicode="&#xFA24;"
+      horiz-adv-x="512" d=" M388.9066666666667 202.6666666666667C388.2666666666667 206.08 378.88 217.8133333333334 360.7466666666667 237.8666666666667C360.32 241.92 366.9333333333333 247.4666666666667 379.9466666666666 254.9333333333334L417.0666666666666 288C425.3866666666666 298.6666666666667 430.2933333333333 315.3066666666668 431.7866666666667 338.7733333333334L431.36 344.3200000000001C429.8666666666666 360.9600000000001 417.92 374.1866666666667 395.3066666666666 384.64C381.8666666666666 393.6 357.7599999999999 398.5066666666667 323.2 399.1466666666667C294.4 396.8 256.8533333333333 386.56 210.56 368.64C197.7599999999999 359.4666666666667 183.2533333333333 350.2933333333334 167.0399999999999 341.3333333333334L167.2533333333333 338.3466666666667L171.7333333333333 340.0533333333334C173.44 340.2666666666667 174.5066666666666 339.4133333333334 174.72 337.7066666666667L177.4933333333333 339.2000000000001L178.9866666666666 339.4133333333334L179.2 338.1333333333334C179.2 336.64 169.1733333333333 328.7466666666667 141.6533333333333 309.3333333333334L140.3733333333333 306.7733333333333C133.76 306.3466666666667 127.36 301.44 120.96 292.48L122.6666666666667 289.92L128 291.8400000000001L131.84 286.7200000000001C138.6666666666666 293.76 145.92 299.9466666666667 153.8133333333333 305.28C157.8666666666667 304.2133333333334 160 302.9333333333334 163.2 301.8666666666667C184.96 317.8666666666667 206.5066666666667 329.6 228.0533333333333 336.8533333333334L228.2666666666667 333.8666666666667C224 328.1066666666667 221.44 324.9066666666667 220.16 324.9066666666667L222.2933333333333 320C222.5066666666666 315.9466666666667 167.8933333333333 170.6666666666667 80.2133333333333 11.9466666666667L81.92 7.8933333333333C89.3866666666666 9.5999999999999 94.2933333333333 11.52 97.92 13.44L98.1333333333333 10.6666666666667L106.6666666666666 11.3066666666667L92.3733333333333 -26.24L95.36 -27.52C107.52 -13.8666666666666 116.6933333333333 0 123.0933333333333 12.5866666666667C158.72 23.04 185.8133333333333 33.28 204.5866666666666 43.3066666666667C223.36 45.0133333333333 237.8666666666666 49.92 247.68 58.24L267.3066666666666 68.2666666666667C294.3999999999999 89.1733333333334 314.6666666666667 103.8933333333333 328.5333333333333 112.64C356.9066666666666 133.5466666666667 375.4666666666666 153.8133333333333 384 173.44L388.9066666666667 202.6666666666667M315.0933333333333 153.3866666666667L277.3333333333333 123.7333333333334C249.8133333333334 105.6 234.6666666666667 96 232.7466666666667 96C188.5866666666667 71.8933333333334 161.0666666666667 59.3066666666667 150.4 58.4533333333333L149.3333333333334 58.24C150.1866666666667 63.1466666666667 169.8133333333333 103.4666666666666 208 179.1999999999999C224.64 180.48 251.0933333333333 188.3733333333333 287.1466666666667 202.6666666666666L295.8933333333333 203.3066666666666C314.0266666666667 205.0133333333333 327.68 201.3866666666666 336.64 192.8533333333333L337.28 187.3066666666666C330.6666666666667 168.1066666666666 322.9866666666667 156.5866666666666 315.0933333333333 153.3866666666666M338.3466666666667 276.6933333333333C334.5066666666667 271.9999999999999 323.84 264.1066666666666 306.3466666666667 253.0133333333333C300.5866666666667 252.3733333333333 279.2533333333334 244.0533333333333 242.1333333333334 227.8399999999999L236.16 228.9066666666666L235.9466666666667 231.4666666666666C235.52 236.8 237.8666666666667 243.6266666666666 243.2 251.7333333333333C245.9733333333334 266.6666666666666 249.1733333333333 275.6266666666666 252.5866666666667 277.3333333333333L283.52 347.3066666666666C283.0933333333333 351.9999999999999 289.7066666666666 354.7733333333332 303.36 357.1199999999999L307.84 357.5466666666665L308.0533333333333 353.7066666666666L332.8 357.1199999999999C357.3333333333333 359.2533333333332 370.1333333333334 354.1333333333332 371.2 342.1866666666666L373.9733333333333 342.6133333333333L373.3333333333333 349.4399999999999L376.5333333333332 349.8666666666666C383.9999999999999 345.8133333333332 387.6266666666666 341.3333333333332 388.0533333333332 335.3599999999999C388.4799999999999 331.5199999999999 386.3466666666666 326.6133333333333 381.8666666666666 320.8533333333333C379.9466666666666 320.6399999999999 378.8799999999999 322.1333333333332 378.6666666666666 324.6933333333332L375.6799999999999 324.4799999999999L375.0399999999999 315.9466666666666C362.6666666666666 297.3866666666666 353.4933333333332 287.9999999999999 347.9466666666666 287.3599999999999L338.3466666666666 276.6933333333332z" />
+    <glyph glyph-name="baby"
+      unicode="&#xF06C;"
+      horiz-adv-x="512" d=" M394.6666666666667 362.6666666666667C424.1066666666667 362.6666666666667 448 338.7733333333333 448 309.3333333333334S424.1066666666667 256 394.6666666666667 256S341.3333333333333 279.8933333333333 341.3333333333333 309.3333333333334S365.2266666666667 362.6666666666667 394.6666666666667 362.6666666666667M96 21.3333333333334C78.2933333333333 21.3333333333334 64 35.6266666666667 64 53.3333333333334S78.2933333333333 85.3333333333334 96 85.3333333333334H245.3333333333333C263.04 85.3333333333334 277.3333333333333 71.04 277.3333333333333 53.3333333333334S263.04 21.3333333333334 245.3333333333333 21.3333333333334H96M343.2533333333334 42.6666666666667L313.3866666666667 128H234.6666666666667L144 218.6666666666667S192 272 266.6666666666667 272C330.6666666666667 272 338.1333333333334 250.6666666666667 342.6133333333333 237.44L403.6266666666667 64C409.6 47.36 400.64 29.0133333333333 384 23.04C367.36 17.28 349.0133333333333 26.0266666666666 343.2533333333334 42.6666666666667z" />
+    <glyph glyph-name="baby-buggy"
+      unicode="&#xF68E;"
+      horiz-adv-x="512" d=" M277.3333333333333 405.3333333333333V234.6666666666667H448C448 328.9600000000001 371.6266666666667 405.3333333333333 277.3333333333333 405.3333333333333M412.16 109.0133333333333C434.56 137.8133333333334 448 174.0800000000001 448 213.3333333333334H137.3866666666667L117.3333333333333 256H42.6666666666667V213.3333333333334H90.0266666666667S130.3466666666667 126.5066666666667 135.2533333333333 119.04C111.7866666666667 106.6666666666667 96 81.7066666666667 96 53.3333333333334C96 12.16 129.4933333333334 -21.3333333333333 170.6666666666667 -21.3333333333333C208.2133333333333 -21.3333333333333 239.36 6.4 244.48 42.6666666666667H288.8533333333334C293.9733333333334 6.4 325.12 -21.3333333333333 362.6666666666667 -21.3333333333333C403.84 -21.3333333333333 437.3333333333333 12.16 437.3333333333333 53.3333333333334C437.3333333333333 75.52 427.52 95.36 412.16 109.0133333333333M170.6666666666667 21.3333333333334C152.96 21.3333333333334 138.6666666666667 35.6266666666667 138.6666666666667 53.3333333333334S152.96 85.3333333333334 170.6666666666667 85.3333333333334S202.6666666666667 71.04 202.6666666666667 53.3333333333334S188.3733333333333 21.3333333333334 170.6666666666667 21.3333333333334M362.6666666666667 21.3333333333334C344.9600000000001 21.3333333333334 330.6666666666667 35.6266666666667 330.6666666666667 53.3333333333334S344.9600000000001 85.3333333333334 362.6666666666667 85.3333333333334S394.6666666666667 71.04 394.6666666666667 53.3333333333334S380.3733333333333 21.3333333333334 362.6666666666667 21.3333333333334z" />
+    <glyph glyph-name="backburger"
+      unicode="&#xF06D;"
+      horiz-adv-x="512" d=" M106.6666666666667 170.6666666666667L192 85.3333333333334L162.1333333333333 55.04L25.1733333333333 192L162.1333333333333 328.9600000000001L192 298.6666666666667L106.6666666666667 213.3333333333334H448V170.6666666666667H106.6666666666667M448 320V277.3333333333334H234.6666666666667V320H448M448 106.6666666666667V64H234.6666666666667V106.6666666666667H448z" />
+    <glyph glyph-name="backspace"
+      unicode="&#xF06E;"
+      horiz-adv-x="512" d=" M469.3333333333333 384H149.3333333333333C134.6133333333334 384 123.0933333333333 376.5333333333333 115.4133333333333 365.2266666666667L0 192L115.4133333333333 18.9866666666667C123.0933333333333 7.68 134.6133333333334 0 149.3333333333333 0H469.3333333333333C492.8 0 512 19.2 512 42.6666666666667V341.3333333333334C512 364.8 492.8 384 469.3333333333333 384M405.3333333333333 115.4133333333334L375.2533333333334 85.3333333333334L298.6666666666667 161.92L222.08 85.3333333333334L192 115.4133333333334L268.5866666666667 192L192 268.5866666666667L222.08 298.6666666666667L298.6666666666667 222.08L375.2533333333334 298.6666666666667L405.3333333333333 268.5866666666667L328.7466666666667 192" />
+    <glyph glyph-name="backspace-outline"
+      unicode="&#xFB38;"
+      horiz-adv-x="512" d=" M405.3333333333333 115.4133333333334L375.2533333333334 85.3333333333334L298.6666666666667 161.92L222.08 85.3333333333334L192 115.4133333333334L268.5866666666667 192L192 268.5866666666667L222.08 298.6666666666667L298.6666666666667 222.08L375.2533333333334 298.6666666666667L405.3333333333333 268.5866666666667L328.7466666666667 192L405.3333333333333 115.4133333333334M469.3333333333333 384C492.8 384 512 364.8 512 341.3333333333334V42.6666666666667C512 19.2 492.8 0 469.3333333333333 0H149.3333333333333C134.6133333333334 0 123.0933333333333 7.68 115.4133333333333 18.9866666666667L0 192L115.4133333333333 365.2266666666667C123.0933333333333 376.5333333333333 134.6133333333333 384 149.3333333333333 384H469.3333333333333M469.3333333333333 341.3333333333334H149.3333333333333L48.64 192L149.3333333333333 42.6666666666667H469.3333333333333V341.3333333333334z" />
+    <glyph glyph-name="backup-restore"
+      unicode="&#xF06F;"
+      horiz-adv-x="512" d=" M256 384C149.9733333333333 384 64 298.0266666666667 64 192H0L85.3333333333333 106.6666666666667L170.6666666666667 192H106.6666666666667C106.6666666666667 274.5600000000001 173.44 341.3333333333334 256 341.3333333333334S405.3333333333333 274.5600000000001 405.3333333333333 192S338.56 42.6666666666667 256 42.6666666666667C224 42.6666666666667 193.92 53.3333333333334 169.3866666666667 70.4L138.6666666666667 39.68C171.52 14.9333333333333 212.0533333333333 0 256 0C362.0266666666667 0 448 85.9733333333334 448 192S362.0266666666667 384 256 384M298.6666666666667 192C298.6666666666667 215.4666666666667 279.4666666666667 234.6666666666667 256 234.6666666666667S213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192z" />
+    <glyph glyph-name="badminton"
+      unicode="&#xF850;"
+      horiz-adv-x="512" d=" M262.4 405.3333333333333C241.7066666666667 404.6933333333334 225.7066666666667 387.4133333333334 226.3466666666667 366.9333333333334C226.56 361.8133333333334 227.6266666666667 356.9066666666667 229.76 352L235.9466666666667 338.3466666666667C236.8 335.5733333333334 235.3066666666667 332.5866666666667 232.32 331.7333333333334C230.4 330.6666666666667 228.2666666666667 331.7333333333334 226.7733333333334 333.4400000000001L217.8133333333333 345.1733333333334C210.7733333333334 354.1333333333334 200.1066666666667 359.68 188.8 359.8933333333334C168.1066666666667 360.3200000000001 151.04 343.8933333333334 150.6133333333334 323.4133333333334C150.4 314.4533333333334 153.3866666666667 305.92 158.9333333333333 298.6666666666667L167.8933333333334 288H168.1066666666667C169.8133333333333 285.2266666666667 169.1733333333334 281.8133333333334 166.8266666666667 280.1066666666667C164.9066666666667 278.6133333333334 162.3466666666667 278.6133333333334 160.64 280.1066666666667L149.3333333333333 289.0666666666667C142.08 294.6133333333334 133.3333333333333 297.6 124.5866666666667 297.3866666666667C104.1066666666667 296.9600000000001 87.68 279.8933333333333 88.1066666666667 259.2C88.32 247.8933333333333 93.8666666666667 237.2266666666667 102.8266666666667 230.1866666666667L114.9866666666667 220.8C117.3333333333334 218.6666666666667 117.3333333333334 215.2533333333333 114.7733333333334 213.3333333333334C113.28 211.84 111.1466666666667 211.4133333333334 109.2266666666667 212.2666666666667H109.0133333333334L96 218.24C91.0933333333333 220.16 86.1866666666667 221.44 81.0666666666667 221.6533333333333C60.5866666666667 222.2933333333333 43.3066666666667 206.08 42.6666666666667 185.3866666666667C42.6666666666667 170.0266666666667 51.2 155.9466666666667 65.28 149.9733333333334L308.2666666666667 41.8133333333334L406.1866666666666 139.7333333333334L298.0266666666667 382.7200000000001C292.0533333333333 397.0133333333333 277.3333333333333 405.9733333333334 262.4 405.3333333333333M280.1066666666667 317.8666666666667C289.0666666666667 318.0800000000001 297.1733333333334 312.9600000000001 300.5866666666667 304.8533333333334L365.6533333333333 158.9333333333333L281.3866666666667 242.9866666666667L261.5466666666667 288C255.1466666666667 301.44 264.9600000000001 317.44 280.1066666666667 317.8666666666667M210.1333333333333 259.2000000000001C215.8933333333333 259.2000000000001 221.2266666666666 257.0666666666667 225.28 252.8L327.8933333333333 150.1866666666667C336.4266666666666 142.08 336.64 128.64 328.5333333333333 120.1066666666667C319.9999999999999 111.5733333333333 306.7733333333333 111.36 297.8133333333333 120.1066666666667L195.2 222.72C186.6666666666666 230.8266666666667 186.4533333333333 244.48 194.7733333333333 252.8C198.8266666666666 257.0666666666666 204.3733333333333 259.2 210.1333333333333 259.2M152.1066666666666 188.3733333333333C154.88 188.3733333333333 157.8666666666666 187.52 160 186.4533333333333L205.44 166.4L289.4933333333333 82.3466666666667L143.1466666666666 147.4133333333334C121.3866666666666 156.8 128.64 189.0133333333333 152.1066666666666 188.3733333333333M432.64 105.8133333333334L342.1866666666666 15.36L360.32 -2.7733333333334C376.5333333333334 -18.7733333333334 400 -24.96 421.9733333333334 -19.2C443.9466666666667 -13.2266666666667 461.2266666666667 4.0533333333333 467.2 26.0266666666666C472.96 48 466.7733333333334 71.4666666666666 450.7733333333334 87.68L432.64 105.8133333333334z" />
+    <glyph glyph-name="balloon"
+      unicode="&#xFA25;"
+      horiz-adv-x="512" d=" M280.7466666666667 176.2133333333334L298.6666666666667 149.3333333333334H266.6666666666667C263.4666666666667 91.52 256 33.92 245.3333333333333 -23.04L224 -19.6266666666666C234.6666666666667 36.2666666666668 241.92 92.5866666666668 245.3333333333333 149.3333333333334H213.3333333333333L231.2533333333334 176.2133333333334C184.32 196.48 149.3333333333333 269.6533333333334 149.3333333333333 320C149.3333333333333 378.88 197.12 426.6666666666667 256 426.6666666666667S362.6666666666667 378.88 362.6666666666667 320C362.6666666666667 269.6533333333334 327.68 196.48 280.7466666666667 176.2133333333334z" />
+    <glyph glyph-name="ballot"
+      unicode="&#xF9C8;"
+      horiz-adv-x="512" d=" M277.3333333333333 245.3333333333334H384V288H277.3333333333333V245.3333333333334M277.3333333333333 96H384V138.6666666666667H277.3333333333333V96M405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0M128 213.3333333333334H234.6666666666667V320H128V213.3333333333334M149.3333333333333 298.6666666666667H213.3333333333333V234.6666666666667H149.3333333333333V298.6666666666667M128 64H234.6666666666667V170.6666666666667H128V64M149.3333333333333 149.3333333333334H213.3333333333333V85.3333333333334H149.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="ballot-outline"
+      unicode="&#xF9C9;"
+      horiz-adv-x="512" d=" M277.3333333333333 288H384V245.3333333333334H277.3333333333333V288M277.3333333333333 138.6666666666667H384V96H277.3333333333333V138.6666666666667M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M405.3333333333333 42.6666666666667V341.3333333333334H106.6666666666667V42.6666666666667H405.3333333333333M234.6666666666667 320V213.3333333333334H128V320H234.6666666666667M213.3333333333333 234.6666666666667V298.6666666666667H149.3333333333333V234.6666666666667H213.3333333333333M234.6666666666667 170.6666666666667V64H128V170.6666666666667H234.6666666666667M213.3333333333333 85.3333333333334V149.3333333333334H149.3333333333333V85.3333333333334H213.3333333333333z" />
+    <glyph glyph-name="bandcamp"
+      unicode="&#xF674;"
+      horiz-adv-x="512" d=" M469.3333333333333 320L330.6666666666667 64H42.6666666666667L181.3333333333333 320H469.3333333333333z" />
+    <glyph glyph-name="bank"
+      unicode="&#xF070;"
+      horiz-adv-x="512" d=" M245.3333333333333 426.6666666666667L42.6666666666667 320V277.3333333333334H448V320M341.3333333333333 234.6666666666667V85.3333333333334H405.3333333333333V234.6666666666667M42.6666666666667 -21.3333333333333H448V42.6666666666667H42.6666666666667M213.3333333333333 234.6666666666667V85.3333333333334H277.3333333333333V234.6666666666667M85.3333333333333 234.6666666666667V85.3333333333334H149.3333333333333V234.6666666666667H85.3333333333333z" />
+    <glyph glyph-name="bank-transfer"
+      unicode="&#xFA26;"
+      horiz-adv-x="512" d=" M320 149.3333333333334V213.3333333333334H384V256L469.3333333333333 181.3333333333334L384 106.6666666666667V149.3333333333334H320M298.6666666666667 283.7333333333334V256H42.6666666666667V283.7333333333334L170.6666666666667 362.6666666666667L298.6666666666667 283.7333333333334M149.3333333333333 234.6666666666667H192V128H149.3333333333333V234.6666666666667M64 234.6666666666667H106.6666666666667V128H64V234.6666666666667M277.3333333333333 234.6666666666667V181.3333333333334L234.6666666666667 142.9333333333333V234.6666666666667H277.3333333333333M194.1333333333333 106.6666666666667L181.3333333333333 96L217.6 64H42.6666666666667V106.6666666666667H194.1333333333333M362.6666666666667 128V64H298.6666666666667V21.3333333333334L213.3333333333333 96L298.6666666666667 170.6666666666667V128H362.6666666666667z" />
+    <glyph glyph-name="bank-transfer-in"
+      unicode="&#xFA27;"
+      horiz-adv-x="512" d=" M42.6666666666667 128V192H106.6666666666667V234.6666666666667L192 160L106.6666666666667 85.3333333333334V128H42.6666666666667M469.3333333333333 262.4000000000001V234.6666666666667H213.3333333333333V262.4000000000001L341.3333333333333 341.3333333333334L469.3333333333333 262.4000000000001M213.3333333333333 85.3333333333334H469.3333333333333V42.6666666666667H213.3333333333333V85.3333333333334M320 213.3333333333334H362.6666666666667V106.6666666666667H320V213.3333333333334M234.6666666666667 213.3333333333334H277.3333333333333V106.6666666666667H234.6666666666667V213.3333333333334M405.3333333333333 213.3333333333334H448V106.6666666666667H405.3333333333333V213.3333333333334z" />
+    <glyph glyph-name="bank-transfer-out"
+      unicode="&#xFA28;"
+      horiz-adv-x="512" d=" M320 128V192H384V234.6666666666667L469.3333333333333 160L384 85.3333333333334V128H320M298.6666666666667 262.4000000000001V234.6666666666667H42.6666666666667V262.4000000000001L170.6666666666667 341.3333333333334L298.6666666666667 262.4000000000001M42.6666666666667 85.3333333333334H298.6666666666667V42.6666666666667H42.6666666666667V85.3333333333334M149.3333333333333 213.3333333333334H192V106.6666666666667H149.3333333333333V213.3333333333334M64 213.3333333333334H106.6666666666667V106.6666666666667H64V213.3333333333334M234.6666666666667 213.3333333333334H277.3333333333333V106.6666666666667H234.6666666666667V213.3333333333334z" />
+    <glyph glyph-name="barcode"
+      unicode="&#xF071;"
+      horiz-adv-x="512" d=" M42.6666666666667 320H85.3333333333333V64H42.6666666666667V320M106.6666666666667 320H128V64H106.6666666666667V320M149.3333333333333 320H213.3333333333333V64H149.3333333333333V320M234.6666666666667 320H256V64H234.6666666666667V320M298.6666666666667 320H341.3333333333333V64H298.6666666666667V320M362.6666666666667 320H426.6666666666667V64H362.6666666666667V320M448 320H469.3333333333333V64H448V320z" />
+    <glyph glyph-name="barcode-scan"
+      unicode="&#xF072;"
+      horiz-adv-x="512" d=" M85.3333333333333 320H128V64H85.3333333333333V320M149.3333333333333 320H170.6666666666667V64H149.3333333333333V320M192 320H256V64H192V320M277.3333333333333 320H298.6666666666667V64H277.3333333333333V320M341.3333333333333 320H384V64H341.3333333333333V320M405.3333333333333 320H426.6666666666667V64H405.3333333333333V320M42.6666666666667 362.6666666666667V277.3333333333334H0V362.6666666666667C0 386.1333333333334 19.2 405.3333333333333 42.6666666666667 405.3333333333333H128V362.6666666666667H42.6666666666667M469.3333333333333 405.3333333333333C492.8 405.3333333333333 512 386.1333333333334 512 362.6666666666667V277.3333333333334H469.3333333333333V362.6666666666667H384V405.3333333333333H469.3333333333333M42.6666666666667 106.6666666666667V21.3333333333334H128V-21.3333333333333H42.6666666666667C19.2 -21.3333333333333 0 -2.1333333333333 0 21.3333333333334V106.6666666666667H42.6666666666667M469.3333333333333 21.3333333333334V106.6666666666667H512V21.3333333333334C512 -2.1333333333333 492.8 -21.3333333333333 469.3333333333333 -21.3333333333333H384V21.3333333333334H469.3333333333333z" />
+    <glyph glyph-name="barley"
+      unicode="&#xF073;"
+      horiz-adv-x="512" d=" M156.3733333333333 56.96C138.6666666666667 81.7066666666667 138.6666666666667 110.2933333333334 138.6666666666667 138.6666666666668C174.2933333333333 117.3333333333334 209.7066666666667 96 227.6266666666667 71.0400000000001L234.6666666666667 59.0933333333334V107.7333333333334C202.6666666666667 126.9333333333334 172.3733333333333 146.5600000000001 156.3733333333333 168.96C138.6666666666667 193.7066666666667 138.6666666666667 222.2933333333334 138.6666666666667 250.6666666666667C174.2933333333333 229.3333333333334 209.7066666666667 208.0000000000001 227.6266666666667 183.0400000000001L234.6666666666667 170.6666666666667V219.7333333333334C202.6666666666667 238.9333333333334 172.3733333333333 258.5600000000001 156.3733333333333 280.9600000000001C138.6666666666667 305.7066666666667 138.6666666666667 334.2933333333334 138.6666666666667 362.6666666666667C174.2933333333333 341.3333333333334 209.7066666666667 320 227.6266666666667 295.04C229.76 292.0533333333334 231.68 288.8533333333334 233.3866666666667 285.44C229.76 298.6666666666667 227.4133333333334 311.04 227.2 323.8400000000001C226.9866666666667 356.0533333333334 241.0666666666667 389.12 255.1466666666667 422.1866666666667C269.8666666666667 390.6133333333334 284.5866666666667 358.8266666666667 284.8 326.6133333333334C285.0133333333333 313.1733333333334 282.6666666666667 299.52 278.8266666666667 286.0800000000001C280.5333333333334 289.0666666666667 282.24 292.0533333333334 284.3733333333334 295.04C302.2933333333333 320 337.7066666666667 341.3333333333334 373.3333333333333 362.6666666666667C373.3333333333333 334.2933333333334 373.3333333333333 305.7066666666667 355.6266666666667 280.9600000000001C339.6266666666667 258.56 309.3333333333333 238.9333333333334 277.3333333333333 219.7333333333334V170.6666666666667L284.3733333333334 183.04C302.2933333333333 208 337.7066666666667 229.3333333333334 373.3333333333333 250.6666666666667C373.3333333333333 222.2933333333334 373.3333333333333 193.7066666666667 355.6266666666667 168.96C339.6266666666667 146.56 309.3333333333334 126.9333333333333 277.3333333333334 107.7333333333334V59.0933333333334L284.3733333333334 71.04C302.2933333333334 96 337.7066666666667 117.3333333333333 373.3333333333333 138.6666666666666C373.3333333333333 110.2933333333333 373.3333333333333 81.7066666666667 355.6266666666667 56.96C339.6266666666667 34.5599999999999 309.3333333333334 14.9333333333333 277.3333333333334 -4.2666666666667V-42.6666666666666H234.6666666666667V-4.2666666666667C202.6666666666667 14.9333333333333 172.3733333333334 34.5600000000001 156.3733333333334 56.96z" />
+    <glyph glyph-name="barley-off"
+      unicode="&#xFB39;"
+      horiz-adv-x="512" d=" M255.1466666666667 422.1866666666667C241.0666666666667 389.12 226.9866666666667 356.0533333333334 227.2 323.8400000000001C227.4133333333334 311.04 229.76 298.6666666666667 233.3866666666667 285.44C231.68 288.8533333333334 229.76 292.0533333333334 227.6266666666667 295.04C209.7066666666667 320 174.2933333333333 341.3333333333334 138.6666666666667 362.6666666666667C138.6666666666667 345.6 138.6666666666667 328.7466666666667 142.5066666666667 312.3200000000001L277.3333333333333 177.4933333333334V219.7333333333334C309.3333333333333 238.9333333333334 339.6266666666667 258.5600000000001 355.6266666666667 280.9600000000001C373.3333333333333 305.7066666666667 373.3333333333333 334.2933333333334 373.3333333333333 362.6666666666667C337.7066666666667 341.3333333333334 302.2933333333333 320 284.3733333333334 295.04C282.24 292.0533333333334 280.5333333333333 289.0666666666667 278.8266666666667 286.0800000000001C282.6666666666667 299.5200000000001 285.0133333333333 313.1733333333334 284.8 326.6133333333334C284.5866666666667 358.8266666666667 269.8666666666667 390.6133333333334 255.1466666666667 422.1866666666667M69.9733333333333 330.6666666666667L42.6666666666667 303.5733333333334L141.6533333333333 204.5866666666667C144 192 148.2666666666667 180.2666666666667 156.3733333333333 168.96C172.3733333333333 146.56 202.6666666666667 126.9333333333333 234.6666666666667 107.7333333333334V59.0933333333334L227.6266666666667 71.04C209.7066666666667 96 174.2933333333333 117.3333333333333 138.6666666666667 138.6666666666666C138.6666666666667 110.2933333333333 138.6666666666667 81.7066666666667 156.3733333333333 56.96C172.3733333333333 34.5599999999999 202.6666666666667 14.9333333333333 234.6666666666667 -4.2666666666667V-42.6666666666666H277.3333333333333V-4.2666666666667C293.12 5.1200000000001 308.2666666666667 14.72 321.4933333333334 24.7466666666667L399.5733333333333 -53.3333333333333L426.6666666666667 -26.0266666666666C298.6666666666667 101.76 194.1333333333333 206.5066666666667 69.9733333333333 330.6666666666667M373.3333333333333 250.6666666666667C337.7066666666667 229.3333333333334 302.2933333333333 208 284.3733333333334 183.04L279.8933333333333 175.1466666666667L320 135.2533333333333C334.2933333333333 145.92 347.0933333333333 157.0133333333333 355.6266666666667 168.96C373.3333333333333 193.7066666666667 373.3333333333333 222.2933333333334 373.3333333333333 250.6666666666667M373.3333333333333 138.6666666666667C361.1733333333333 131.4133333333334 349.44 124.16 338.1333333333334 116.6933333333334L368.8533333333333 85.9733333333334C373.3333333333333 103.0400000000001 373.3333333333333 120.96 373.3333333333333 138.6666666666668z" />
+    <glyph glyph-name="barn"
+      unicode="&#xFB3A;"
+      horiz-adv-x="512" d=" M256 384L64 273.0666666666667V0H192L253.8666666666667 64L320 0H448V273.0666666666667L256 384M168.5333333333333 21.3333333333334V149.3333333333334L232.5333333333334 85.3333333333334L168.5333333333333 21.3333333333334M189.8666666666667 170.6666666666667H317.8666666666667L253.8666666666667 106.6666666666667L189.8666666666667 170.6666666666667M339.2 21.3333333333334L275.2 85.3333333333334L339.2 149.3333333333334V21.3333333333334M320 213.3333333333334H187.7333333333334V256H320V213.3333333333334z" />
+    <glyph glyph-name="barrel"
+      unicode="&#xF074;"
+      horiz-adv-x="512" d=" M384 42.6666666666667H405.3333333333333V0H106.6666666666667V42.6666666666667H128V170.6666666666667H106.6666666666667V213.3333333333334H128V341.3333333333334H106.6666666666667V384H405.3333333333333V341.3333333333334H384V213.3333333333334H405.3333333333333V170.6666666666667H384V42.6666666666667M192 170.6666666666667C192 135.2533333333333 220.5866666666667 106.6666666666667 256 106.6666666666667S320 135.2533333333333 320 170.6666666666667C320 213.3333333333334 256 285.2266666666667 256 285.2266666666667S192 213.3333333333334 192 170.6666666666667z" />
+    <glyph glyph-name="baseball"
+      unicode="&#xF851;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C202.6666666666667 405.3333333333333 154.6666666666667 386.1333333333334 117.3333333333333 354.1333333333334C128 345.3866666666667 136.7466666666667 335.5733333333333 145.0666666666667 325.12L168.32 338.56L189.6533333333333 301.44L168.32 289.28C180.2666666666667 266.0266666666667 188.16 240.4266666666667 190.9333333333333 213.3333333333333H213.3333333333333V170.6666666666666H190.9333333333333C188.16 143.5733333333333 180.2666666666667 117.9733333333333 168.32 94.72L189.6533333333333 82.56L168.32 45.44L145.0666666666666 58.88C136.7466666666667 48.4266666666667 128 38.6133333333333 117.3333333333333 29.8666666666667C154.6666666666666 -2.1333333333333 202.6666666666667 -21.3333333333333 256 -21.3333333333333S357.3333333333333 -2.1333333333333 394.6666666666667 29.8666666666667C384 38.6133333333333 375.2533333333334 48.4266666666667 366.7200000000001 58.88L343.68 45.44L322.3466666666667 82.56L343.68 94.9333333333333C331.7333333333333 117.9733333333333 323.84 143.5733333333333 321.0666666666666 170.6666666666666H298.6666666666667V213.3333333333333H321.0666666666667C323.8400000000001 240.4266666666666 331.7333333333334 266.0266666666667 343.68 289.0666666666666L322.3466666666667 301.44L343.68 338.56L366.7199999999999 325.12C375.2533333333332 335.5733333333333 383.9999999999999 345.3866666666666 394.6666666666666 354.1333333333333C357.3333333333333 386.1333333333334 309.3333333333333 405.3333333333333 256 405.3333333333333M87.8933333333333 323.2000000000001C59.52 286.9333333333334 42.6666666666667 241.4933333333334 42.6666666666667 192C42.6666666666667 142.5066666666667 59.52 97.0666666666667 87.8933333333333 60.8000000000001C95.1466666666667 66.7733333333334 101.5466666666667 73.6000000000001 107.7333333333333 80.64L94.5066666666667 88.1066666666667L115.84 125.2266666666668L131.4133333333333 116.0533333333334C139.7333333333333 132.9066666666668 145.4933333333334 151.2533333333335 147.84 170.6666666666668H128V213.3333333333334H147.84C145.4933333333333 232.7466666666668 139.7333333333333 251.0933333333334 131.4133333333333 267.9466666666668L115.84 258.7733333333335L94.5066666666667 295.8933333333335L107.7333333333333 303.3600000000002C101.5466666666667 310.4000000000001 95.1466666666667 317.2266666666668 87.8933333333333 323.2000000000001M424.1066666666667 323.2000000000001C416.8533333333333 317.2266666666668 410.4533333333333 310.4000000000001 404.2666666666667 303.3600000000002L417.4933333333334 295.8933333333335L396.16 258.7733333333335L380.5866666666667 267.9466666666668C372.2666666666667 251.0933333333334 366.5066666666667 232.7466666666668 364.16 213.3333333333334H384V170.6666666666668H364.16C366.5066666666667 151.2533333333335 372.2666666666667 132.9066666666668 380.5866666666667 116.0533333333334L396.16 125.2266666666668L417.4933333333334 88.1066666666667L404.2666666666667 80.64C410.4533333333333 73.6000000000001 416.8533333333333 66.7733333333334 424.1066666666667 60.8000000000001C452.48 97.0666666666667 469.3333333333333 142.5066666666667 469.3333333333333 192C469.3333333333333 241.4933333333334 452.48 286.9333333333334 424.1066666666667 323.2000000000001z" />
+    <glyph glyph-name="baseball-bat"
+      unicode="&#xF852;"
+      horiz-adv-x="512" d=" M426.6666666666667 405.3333333333333C420.6933333333333 405.3333333333333 416 402.9866666666667 411.52 399.1466666666667L208.8533333333333 196.48C208 195.6266666666667 207.36 194.7733333333334 154.24 120.5333333333334L85.3333333333333 51.4133333333334L79.1466666666667 57.8133333333334C74.6666666666667 61.8666666666667 69.5466666666667 64 64 64C52.0533333333333 64 42.6666666666667 54.6133333333333 42.6666666666667 42.6666666666667C42.6666666666667 37.12 44.8 32 48.8533333333333 27.52L91.52 -15.1466666666666C99.84 -23.6799999999999 113.28 -23.8933333333333 121.8133333333333 -15.7866666666667C130.3466666666667 -7.4666666666667 130.56 5.9733333333333 121.8133333333333 15.1466666666666L115.4133333333333 21.3333333333333L184.32 90.24L260.48 144.8533333333333L463.1466666666666 347.52C471.4666666666667 355.8399999999999 471.4666666666667 369.4933333333333 463.1466666666666 377.8133333333333L441.8133333333334 399.1466666666666C437.3333333333333 403.2 432.2133333333334 405.3333333333333 426.6666666666667 405.3333333333333M394.6666666666667 170.6666666666667C365.2266666666667 170.6666666666667 341.3333333333333 146.7733333333333 341.3333333333333 117.3333333333334S365.2266666666667 64 394.6666666666667 64S448 87.8933333333334 448 117.3333333333334S424.1066666666667 170.6666666666667 394.6666666666667 170.6666666666667z" />
+    <glyph glyph-name="basecamp"
+      unicode="&#xF075;"
+      horiz-adv-x="512" d=" M42.6666666666667 101.3333333333334S85.3333333333333 368 256 368S469.3333333333333 101.3333333333334 469.3333333333333 101.3333333333334S426.6666666666667 16 256 16S42.6666666666667 101.3333333333334 42.6666666666667 101.3333333333334M71.4666666666667 114.1333333333333S91.7333333333333 42.6666666666667 256 42.6666666666667C362.6666666666667 42.6666666666667 426.6666666666667 68.2666666666667 440.5333333333333 109.8666666666667C454.3999999999999 151.4666666666667 333.8666666666666 285.8666666666667 312.5333333333333 285.8666666666667S238.9333333333333 192 222.9333333333333 192C180.2666666666667 192 189.8666666666666 234.6666666666667 152.5333333333333 234.6666666666667C115.2 234.6666666666667 71.4666666666667 114.1333333333333 71.4666666666667 114.1333333333333z" />
+    <glyph glyph-name="basket"
+      unicode="&#xF076;"
+      horiz-adv-x="512" d=" M117.3333333333333 0C100.6933333333333 0 86.1866666666667 9.6 79.1466666666667 23.4666666666667L23.4666666666667 225.2800000000001L21.3333333333333 234.6666666666667C21.3333333333333 246.4000000000001 30.9333333333333 256 42.6666666666667 256H140.3733333333333L238.5066666666667 396.1600000000001C242.3466666666667 401.7066666666667 248.7466666666667 405.3333333333334 256 405.3333333333334C263.2533333333334 405.3333333333334 269.8666666666667 401.7066666666667 273.7066666666667 395.9466666666667L371.6266666666667 256H469.3333333333333C481.0666666666667 256 490.6666666666666 246.4000000000001 490.6666666666666 234.6666666666667L489.8133333333333 228.48L432.8533333333333 23.4666666666667C425.8133333333334 9.6000000000001 411.3066666666666 0 394.6666666666667 0H117.3333333333333M256 346.88L192 256H320L256 346.88M256 170.6666666666667C232.5333333333334 170.6666666666667 213.3333333333333 151.4666666666667 213.3333333333333 128S232.5333333333334 85.3333333333334 256 85.3333333333334S298.6666666666667 104.5333333333333 298.6666666666667 128S279.4666666666667 170.6666666666667 256 170.6666666666667z" />
+    <glyph glyph-name="basket-fill"
+      unicode="&#xF077;"
+      horiz-adv-x="512" d=" M64 405.3333333333333H128V341.3333333333334H64V405.3333333333333M128 298.6666666666667H192V234.6666666666667H128V298.6666666666667M170.6666666666667 405.3333333333333H234.6666666666667V341.3333333333334H170.6666666666667V405.3333333333333M362.6666666666667 213.3333333333334L256 320H320V405.3333333333333H405.3333333333333V320H469.3333333333333L362.6666666666667 213.3333333333334M160 -21.3333333333333C143.36 -21.3333333333333 128.8533333333333 -11.7333333333333 121.8133333333333 2.1333333333334L66.1333333333333 161.28L64 170.6666666666667C64 182.4 73.6 192 85.3333333333333 192H426.6666666666667C438.4 192 448 182.4 448 170.6666666666667L447.1466666666667 164.48L390.1866666666666 2.1333333333334C383.1466666666667 -11.7333333333332 368.64 -21.3333333333333 352 -21.3333333333333H160M162.3466666666667 21.3333333333334H349.6533333333333L396.16 149.3333333333334H115.6266666666667L162.3466666666666 21.3333333333334z" />
+    <glyph glyph-name="basket-unfill"
+      unicode="&#xF078;"
+      horiz-adv-x="512" d=" M64 234.6666666666667H128V298.6666666666667H64V234.6666666666667M106.6666666666667 341.3333333333334H170.6666666666667V405.3333333333333H106.6666666666667V341.3333333333334M170.6666666666667 234.6666666666667H234.6666666666667V298.6666666666667H170.6666666666667V234.6666666666667M362.6666666666667 426.6666666666667L256 320H320V234.6666666666667H405.3333333333333V320H469.3333333333333L362.6666666666667 426.6666666666667M160 -21.3333333333333C143.36 -21.3333333333333 128.8533333333333 -11.7333333333333 121.8133333333333 2.1333333333334L66.1333333333333 161.28L64 170.6666666666667C64 182.4 73.6 192 85.3333333333333 192H426.6666666666667C438.4 192 448 182.4 448 170.6666666666667L447.1466666666667 164.48L390.1866666666666 2.1333333333334C383.1466666666667 -11.7333333333332 368.64 -21.3333333333333 352 -21.3333333333333H160M162.3466666666667 21.3333333333334H349.6533333333333L396.16 149.3333333333334H115.6266666666667L162.3466666666666 21.3333333333334z" />
+    <glyph glyph-name="basketball"
+      unicode="&#xF805;"
+      horiz-adv-x="512" d=" M49.92 135.8933333333333C62.72 140.5866666666667 75.9466666666667 142.9333333333333 90.0266666666667 142.9333333333333C118.6133333333333 142.9333333333333 143.5733333333333 133.9733333333334 164.9066666666667 116.0533333333334L97.92 49.0666666666667C75.3066666666667 74.6666666666667 59.3066666666667 103.8933333333334 49.92 135.8933333333334M331.9466666666667 238.9333333333334C373.9733333333334 207.5733333333333 419.4133333333333 199.8933333333333 468.0533333333333 215.8933333333333C468.6933333333334 211.4133333333333 469.3333333333333 203.3066666666667 469.3333333333333 192C469.3333333333333 170.0266666666667 464 145.4933333333334 453.9733333333334 118.4C443.9466666666667 91.52 431.5733333333333 69.76 417.0666666666667 53.3333333333334L282.0266666666667 187.9466666666667L331.9466666666667 238.9333333333334M187.0933333333333 93.0133333333333C209.7066666666667 60.3733333333333 214.4 24.7466666666667 200.96 -14.08C170.6666666666667 -5.3333333333333 143.5733333333333 8.3200000000001 120.96 27.0933333333334L187.0933333333333 93.0133333333333M260.0533333333333 165.9733333333334L394.6666666666667 30.9333333333333C348.3733333333333 -9.6 293.9733333333334 -26.6666666666666 232.1066666666667 -20.0533333333333C236.5866666666667 -5.9733333333334 238.9333333333333 9.3866666666667 238.9333333333333 26.0266666666666C238.9333333333333 39.2533333333333 235.9466666666667 54.8266666666667 229.9733333333333 72.5333333333333C224 90.24 216.96 104.7466666666667 209.0666666666666 116.0533333333333L260.0533333333333 165.9733333333333M187.9466666666667 138.6666666666667C168.1066666666667 156.3733333333333 145.0666666666667 167.4666666666667 119.04 172.5866666666667C93.0133333333333 177.4933333333334 68.0533333333333 176 43.9466666666667 167.8933333333333C43.3066666666667 172.5866666666667 42.6666666666667 180.6933333333333 42.6666666666667 192C42.6666666666667 213.9733333333333 48 238.5066666666667 58.0266666666667 265.6C68.0533333333333 292.48 80.4266666666667 314.24 94.9333333333333 330.6666666666667L237.0133333333333 187.9466666666667L187.9466666666666 138.6666666666666M331.9466666666666 283.0933333333333C303.36 318.2933333333333 296.7466666666666 356.6933333333333 312.1066666666667 398.08C325.3333333333333 394.6666666666667 340.48 388.2666666666666 357.5466666666666 378.4533333333333C374.3999999999999 368.8533333333333 388.2666666666667 359.2533333333333 398.9333333333333 350.08L331.9466666666666 283.0933333333333M462.0799999999999 247.8933333333333C449.2799999999999 243.4133333333333 436.0533333333333 241.0666666666666 421.9733333333333 241.0666666666666C398.7199999999999 241.0666666666666 376.32 247.8933333333333 354.9866666666666 261.9733333333333L420.9066666666666 327.04C439.6799999999999 303.5733333333333 453.3333333333333 277.3333333333333 462.0799999999999 247.8933333333333M260.0533333333333 210.9866666666666L117.3333333333333 353.0666666666667C163.6266666666667 393.6 218.0266666666667 410.6666666666667 280.1066666666667 404.0533333333334C275.4133333333333 389.9733333333334 273.0666666666666 374.6133333333334 273.0666666666666 357.9733333333334C273.0666666666666 342.6133333333334 276.48 325.3333333333333 283.52 305.92C290.56 286.7200000000001 298.6666666666667 271.36 309.3333333333333 260.0533333333334L260.0533333333333 210.9866666666667z" />
+    <glyph glyph-name="bat"
+      unicode="&#xFB3B;"
+      horiz-adv-x="512" d=" M16 277.3333333333334S106.6666666666667 298.6666666666667 170.6666666666667 256C170.6666666666667 256 181.3333333333333 176 224 176V213.3333333333334S234.6666666666667 192 256 192S288 213.3333333333334 288 213.3333333333334V176C330.6666666666667 176 341.3333333333333 256 341.3333333333333 256C405.3333333333333 298.6666666666667 496 277.3333333333334 496 277.3333333333334C453.3333333333333 256 448 181.3333333333334 448 181.3333333333334C362.6666666666667 181.3333333333334 362.6666666666667 112 362.6666666666667 112C256 133.3333333333334 256 53.3333333333334 256 53.3333333333334S256 133.3333333333334 149.3333333333333 112C149.3333333333333 112 149.3333333333333 181.3333333333334 64 181.3333333333334C64 181.3333333333334 58.6666666666667 256 16 277.3333333333334z" />
+    <glyph glyph-name="battery"
+      unicode="&#xF079;"
+      horiz-adv-x="512" d=" M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
+    <glyph glyph-name="battery-10"
+      unicode="&#xF07A;"
+      horiz-adv-x="512" d=" M341.3333333333333 64H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
+    <glyph glyph-name="battery-10-bluetooth"
+      unicode="&#xF93D;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667M85.3333333333333 320H256V64H85.3333333333333V320M405.3333333333333 277.3333333333334V196.48L356.48 245.3333333333334L341.3333333333333 230.1866666666667L400.8533333333333 170.6666666666667L341.3333333333333 111.1466666666667L356.48 96L405.3333333333333 144.8533333333334V64H416L476.8 125.0133333333333L431.1466666666667 170.6666666666667L476.8 216.5333333333334L416 277.3333333333334H405.3333333333333M426.6666666666667 236.5866666666667L446.7200000000001 216.5333333333334L426.6666666666667 196.48V236.5866666666667M426.6666666666667 144.8533333333334L446.7200000000001 125.0133333333333L426.6666666666667 104.96V144.8533333333334z" />
+    <glyph glyph-name="battery-20"
+      unicode="&#xF07B;"
+      horiz-adv-x="512" d=" M341.3333333333333 85.3333333333334H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
+    <glyph glyph-name="battery-20-bluetooth"
+      unicode="&#xF93E;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667M85.3333333333333 320H256V85.3333333333334H85.3333333333333V320M405.3333333333333 277.3333333333334V196.48L356.48 245.3333333333334L341.3333333333333 230.1866666666667L400.8533333333333 170.6666666666667L341.3333333333333 111.1466666666667L356.48 96L405.3333333333333 144.8533333333334V64H416L476.8 125.0133333333333L431.1466666666667 170.6666666666667L476.8 216.5333333333334L416 277.3333333333334H405.3333333333333M426.6666666666667 236.5866666666667L446.7200000000001 216.5333333333334L426.6666666666667 196.48V236.5866666666667M426.6666666666667 144.8533333333334L446.7200000000001 125.0133333333333L426.6666666666667 104.96V144.8533333333334z" />
+    <glyph glyph-name="battery-30"
+      unicode="&#xF07C;"
+      horiz-adv-x="512" d=" M341.3333333333333 128H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
+    <glyph glyph-name="battery-30-bluetooth"
+      unicode="&#xF93F;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667M85.3333333333333 320H256V128H85.3333333333333V320M405.3333333333333 277.3333333333334V196.48L356.48 245.3333333333334L341.3333333333333 230.1866666666667L400.8533333333333 170.6666666666667L341.3333333333333 111.1466666666667L356.48 96L405.3333333333333 144.8533333333334V64H416L476.8 125.0133333333333L431.1466666666667 170.6666666666667L476.8 216.5333333333334L416 277.3333333333334H405.3333333333333M426.6666666666667 236.5866666666667L446.7200000000001 216.5333333333334L426.6666666666667 196.48V236.5866666666667M426.6666666666667 144.8533333333334L446.7200000000001 125.0133333333333L426.6666666666667 104.96V144.8533333333334z" />
+    <glyph glyph-name="battery-40"
+      unicode="&#xF07D;"
+      horiz-adv-x="512" d=" M341.3333333333333 149.3333333333334H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
+    <glyph glyph-name="battery-40-bluetooth"
+      unicode="&#xF940;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667M85.3333333333333 320H256V149.3333333333334H85.3333333333333V320M405.3333333333333 277.3333333333334V196.48L356.48 245.3333333333334L341.3333333333333 230.1866666666667L400.8533333333333 170.6666666666667L341.3333333333333 111.1466666666667L356.48 96L405.3333333333333 144.8533333333334V64H416L476.8 125.0133333333333L431.1466666666667 170.6666666666667L476.8 216.5333333333334L416 277.3333333333334H405.3333333333333M426.6666666666667 236.5866666666667L446.7200000000001 216.5333333333334L426.6666666666667 196.48V236.5866666666667M426.6666666666667 144.8533333333334L446.7200000000001 125.0133333333333L426.6666666666667 104.96V144.8533333333334z" />
+    <glyph glyph-name="battery-50"
+      unicode="&#xF07E;"
+      horiz-adv-x="512" d=" M341.3333333333333 170.6666666666667H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
+    <glyph glyph-name="battery-50-bluetooth"
+      unicode="&#xF941;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667M85.3333333333333 320H256V170.6666666666667H85.3333333333333V320M405.3333333333333 277.3333333333334V196.48L356.48 245.3333333333334L341.3333333333333 230.1866666666667L400.8533333333333 170.6666666666667L341.3333333333333 111.1466666666667L356.48 96L405.3333333333333 144.8533333333334V64H416L476.8 125.0133333333333L431.1466666666667 170.6666666666667L476.8 216.5333333333334L416 277.3333333333334H405.3333333333333M426.6666666666667 236.5866666666667L446.7200000000001 216.5333333333334L426.6666666666667 196.48V236.5866666666667M426.6666666666667 144.8533333333334L446.7200000000001 125.0133333333333L426.6666666666667 104.96V144.8533333333334z" />
+    <glyph glyph-name="battery-60"
+      unicode="&#xF07F;"
+      horiz-adv-x="512" d=" M341.3333333333333 192H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
+    <glyph glyph-name="battery-60-bluetooth"
+      unicode="&#xF942;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667M85.3333333333333 320H256V192H85.3333333333333V320M405.3333333333333 277.3333333333334V196.48L356.48 245.3333333333334L341.3333333333333 230.1866666666667L400.8533333333333 170.6666666666667L341.3333333333333 111.1466666666667L356.48 96L405.3333333333333 144.8533333333334V64H416L476.8 125.0133333333333L431.1466666666667 170.6666666666667L476.8 216.5333333333334L416 277.3333333333334H405.3333333333333M426.6666666666667 236.5866666666667L446.7200000000001 216.5333333333334L426.6666666666667 196.48V236.5866666666667M426.6666666666667 144.8533333333334L446.7200000000001 125.0133333333333L426.6666666666667 104.96V144.8533333333334z" />
+    <glyph glyph-name="battery-70"
+      unicode="&#xF080;"
+      horiz-adv-x="512" d=" M341.3333333333333 234.6666666666667H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
+    <glyph glyph-name="battery-70-bluetooth"
+      unicode="&#xF943;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667M85.3333333333333 320H256V234.6666666666667H85.3333333333333V320M405.3333333333333 277.3333333333334V196.48L356.48 245.3333333333334L341.3333333333333 230.1866666666667L400.8533333333333 170.6666666666667L341.3333333333333 111.1466666666667L356.48 96L405.3333333333333 144.8533333333334V64H416L476.8 125.0133333333333L431.1466666666667 170.6666666666667L476.8 216.5333333333334L416 277.3333333333334H405.3333333333333M426.6666666666667 236.5866666666667L446.7200000000001 216.5333333333334L426.6666666666667 196.48V236.5866666666667M426.6666666666667 144.8533333333334L446.7200000000001 125.0133333333333L426.6666666666667 104.96V144.8533333333334z" />
+    <glyph glyph-name="battery-80"
+      unicode="&#xF081;"
+      horiz-adv-x="512" d=" M341.3333333333333 256H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
+    <glyph glyph-name="battery-80-bluetooth"
+      unicode="&#xF944;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667M85.3333333333333 320H256V256H85.3333333333333V320M405.3333333333333 277.3333333333334V196.48L356.48 245.3333333333334L341.3333333333333 230.1866666666667L400.8533333333333 170.6666666666667L341.3333333333333 111.1466666666667L356.48 96L405.3333333333333 144.8533333333334V64H416L476.8 125.0133333333333L431.1466666666667 170.6666666666667L476.8 216.5333333333334L416 277.3333333333334H405.3333333333333M426.6666666666667 236.5866666666667L446.7200000000001 216.5333333333334L426.6666666666667 196.48V236.5866666666667M426.6666666666667 144.8533333333334L446.7200000000001 125.0133333333333L426.6666666666667 104.96V144.8533333333334z" />
+    <glyph glyph-name="battery-90"
+      unicode="&#xF082;"
+      horiz-adv-x="512" d=" M341.3333333333333 277.3333333333334H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
+    <glyph glyph-name="battery-90-bluetooth"
+      unicode="&#xF945;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667M85.3333333333333 320H256V277.3333333333334H85.3333333333333V320M405.3333333333333 277.3333333333334V196.48L356.48 245.3333333333334L341.3333333333333 230.1866666666667L400.8533333333333 170.6666666666667L341.3333333333333 111.1466666666667L356.48 96L405.3333333333333 144.8533333333334V64H416L476.8 125.0133333333333L431.1466666666667 170.6666666666667L476.8 216.5333333333334L416 277.3333333333334H405.3333333333333M426.6666666666667 236.5866666666667L446.7200000000001 216.5333333333334L426.6666666666667 196.48V236.5866666666667M426.6666666666667 144.8533333333334L446.7200000000001 125.0133333333333L426.6666666666667 104.96V144.8533333333334z" />
+    <glyph glyph-name="battery-alert"
+      unicode="&#xF083;"
+      horiz-adv-x="512" d=" M277.3333333333333 149.3333333333334H234.6666666666667V256H277.3333333333333M277.3333333333333 64H234.6666666666667V106.6666666666667H277.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
+    <glyph glyph-name="battery-alert-bluetooth"
+      unicode="&#xF946;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667M405.3333333333333 277.3333333333334V196.48L356.48 245.3333333333334L341.3333333333333 230.1866666666667L400.8533333333333 170.6666666666667L341.3333333333333 111.1466666666667L356.48 96L405.3333333333333 144.8533333333334V64H416L476.8 125.0133333333333L431.1466666666667 170.6666666666667L476.8 216.5333333333334L416 277.3333333333334H405.3333333333333M149.3333333333333 256H192V149.3333333333334H149.3333333333333V256M426.6666666666667 236.5866666666667L446.7200000000001 216.5333333333334L426.6666666666667 196.48V236.5866666666667M426.6666666666667 144.8533333333334L446.7200000000001 125.0133333333333L426.6666666666667 104.96V144.8533333333334M149.3333333333333 106.6666666666667H192V64H149.3333333333333V106.6666666666667z" />
+    <glyph glyph-name="battery-bluetooth"
+      unicode="&#xF947;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667M405.3333333333333 277.3333333333334V196.48L356.48 245.3333333333334L341.3333333333333 230.1866666666667L400.8533333333333 170.6666666666667L341.3333333333333 111.1466666666667L356.48 96L405.3333333333333 144.8533333333334V64H416L476.8 125.0133333333333L431.1466666666667 170.6666666666667L476.8 216.5333333333334L416 277.3333333333334H405.3333333333333M426.6666666666667 236.5866666666667L446.7200000000001 216.5333333333334L426.6666666666667 196.48V236.5866666666667M426.6666666666667 144.8533333333334L446.7200000000001 125.0133333333333L426.6666666666667 104.96V144.8533333333334z" />
+    <glyph glyph-name="battery-bluetooth-variant"
+      unicode="&#xF948;"
+      horiz-adv-x="512" d=" M192 405.3333333333333V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667H320V405.3333333333333H192M252.3733333333334 277.3333333333334H263.04L323.84 216.5333333333334L278.1866666666666 170.6666666666667L323.6266666666666 125.0133333333333L263.04 64H252.3733333333334V144.8533333333334L203.52 96L188.3733333333333 111.1466666666667L247.8933333333333 170.6666666666667L188.3733333333333 230.1866666666667L203.52 245.3333333333334L252.3733333333333 196.48V277.3333333333334M273.7066666666666 236.5866666666667V196.48L293.76 216.5333333333334L273.7066666666666 236.5866666666667M273.7066666666666 144.8533333333334V104.96L293.76 125.0133333333333L273.7066666666666 144.8533333333333z" />
+    <glyph glyph-name="battery-charging"
+      unicode="&#xF084;"
+      horiz-adv-x="512" d=" M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.2533333333333C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.4133333333333C371.2 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667M234.6666666666667 21.3333333333334V138.6666666666667H192L277.3333333333333 298.6666666666667V181.3333333333334H320" />
+    <glyph glyph-name="battery-charging-10"
+      unicode="&#xF89B;"
+      horiz-adv-x="512" d=" M491.7333333333333 213.3333333333334H427.7333333333334V362.6666666666667L321.0666666666667 149.3333333333334H385.0666666666667V-21.3333333333333M256 64H85.3333333333333L86.4 320H257.0666666666667M271.36 362.6666666666667H235.7333333333334V405.3333333333333H107.7333333333334V362.6666666666667H72.1066666666667C56.5333333333333 362.6666666666667 43.7333333333333 349.8666666666667 43.7333333333333 334.2933333333334V7.04C43.7333333333333 -8.5333333333334 56.5333333333333 -21.3333333333333 72.1066666666667 -21.3333333333333H271.36C286.9333333333333 -21.3333333333333 299.7333333333333 -8.5333333333333 299.7333333333333 7.04V334.2933333333334C299.7333333333333 349.8666666666667 286.9333333333333 362.6666666666667 271.36 362.6666666666667z" />
+    <glyph glyph-name="battery-charging-100"
+      unicode="&#xF085;"
+      horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667z" />
+    <glyph glyph-name="battery-charging-20"
+      unicode="&#xF086;"
+      horiz-adv-x="512" d=" M491.7333333333333 213.3333333333334H427.7333333333334V362.6666666666667L321.0666666666667 149.3333333333334H385.0666666666667V-21.3333333333333M257.0666666666667 85.3333333333334H86.4V320H257.0666666666667M271.36 362.6666666666667H235.7333333333334V405.3333333333333H107.7333333333334V362.6666666666667H72.1066666666667C56.5333333333333 362.6666666666667 43.7333333333333 349.8666666666667 43.7333333333333 334.2933333333334V7.04C43.7333333333333 -8.5333333333334 56.5333333333333 -21.3333333333333 72.1066666666667 -21.3333333333333H271.36C286.9333333333333 -21.3333333333333 299.7333333333333 -8.5333333333333 299.7333333333333 7.04V334.2933333333334C299.7333333333333 349.8666666666667 286.9333333333333 362.6666666666667 271.36 362.6666666666667z" />
+    <glyph glyph-name="battery-charging-30"
+      unicode="&#xF087;"
+      horiz-adv-x="512" d=" M256 128H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333L490.6666666666666 213.3333333333334z" />
+    <glyph glyph-name="battery-charging-40"
+      unicode="&#xF088;"
+      horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333M256 170.6666666666667H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667z" />
+    <glyph glyph-name="battery-charging-50"
+      unicode="&#xF89C;"
+      horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333M256 170.6666666666667H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667z" />
+    <glyph glyph-name="battery-charging-60"
+      unicode="&#xF089;"
+      horiz-adv-x="512" d=" M256 213.3333333333334H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333L490.6666666666666 213.3333333333334z" />
+    <glyph glyph-name="battery-charging-70"
+      unicode="&#xF89D;"
+      horiz-adv-x="512" d=" M256 234.6666666666667H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333L490.6666666666666 213.3333333333334z" />
+    <glyph glyph-name="battery-charging-80"
+      unicode="&#xF08A;"
+      horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333M256 256H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667z" />
+    <glyph glyph-name="battery-charging-90"
+      unicode="&#xF08B;"
+      horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H426.6666666666667V362.6666666666667L320 149.3333333333334H384V-21.3333333333333M256 277.3333333333334H85.3333333333333V320H256M270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.04C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.04V334.2933333333334C298.6666666666667 349.8666666666667 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667z" />
+    <glyph glyph-name="battery-charging-outline"
+      unicode="&#xF89E;"
+      horiz-adv-x="512" d=" M491.7333333333333 213.3333333333334H427.7333333333334V362.6666666666667L321.0666666666667 149.3333333333334H385.0666666666667V-21.3333333333333M256 21.3333333333334H85.3333333333333L86.4 320H257.0666666666667M271.36 362.6666666666667H235.7333333333334V405.3333333333333H107.7333333333334V362.6666666666667H72.1066666666667C56.5333333333333 362.6666666666667 43.7333333333333 349.8666666666667 43.7333333333333 334.2933333333334V7.04C43.7333333333333 -8.5333333333334 56.5333333333333 -21.3333333333333 72.1066666666667 -21.3333333333333H271.36C286.9333333333333 -21.3333333333333 299.7333333333333 -8.5333333333333 299.7333333333333 7.04V334.2933333333334C299.7333333333333 349.8666666666667 286.9333333333333 362.6666666666667 271.36 362.6666666666667z" />
+    <glyph glyph-name="battery-charging-wireless"
+      unicode="&#xF806;"
+      horiz-adv-x="512" d=" M277.3333333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H64C52.2666666666667 362.6666666666667 42.6666666666667 353.0666666666667 42.6666666666667 341.3333333333334V0C42.6666666666667 -11.7333333333333 52.2666666666667 -21.3333333333333 64 -21.3333333333333H277.3333333333333C289.0666666666667 -21.3333333333333 298.6666666666667 -11.7333333333333 298.6666666666667 0V341.3333333333334C298.6666666666667 353.0666666666667 289.0666666666667 362.6666666666667 277.3333333333333 362.6666666666667M428.16 342.8266666666667L398.08 312.7466666666667C464.8533333333333 246.1866666666667 464.8533333333333 138.0266666666667 398.08 71.2533333333333L428.16 41.1733333333333C511.36 124.3733333333333 511.36 259.4133333333334 428.16 342.8266666666667M367.7866666666667 282.4533333333334L337.7066666666667 252.3733333333334C370.9866666666667 219.0933333333333 370.9866666666667 165.12 337.7066666666667 131.6266666666667L367.7866666666667 101.5466666666667C417.7066666666667 151.4666666666667 417.7066666666667 232.5333333333334 367.7866666666667 282.4533333333334z" />
+    <glyph glyph-name="battery-charging-wireless-10"
+      unicode="&#xF807;"
+      horiz-adv-x="512" d=" M428.16 342.8266666666667L398.08 312.7466666666667C464.8533333333333 246.1866666666667 464.8533333333333 138.0266666666667 398.08 71.2533333333333L428.16 41.1733333333333C511.36 124.3733333333333 511.36 259.4133333333334 428.16 342.8266666666667M367.7866666666667 282.4533333333334L337.7066666666667 252.3733333333334C370.9866666666667 219.0933333333333 370.9866666666667 165.12 337.7066666666667 131.6266666666667L367.7866666666667 101.5466666666667C417.7066666666667 151.4666666666667 417.7066666666667 232.5333333333334 367.7866666666667 282.4533333333334M277.3333333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H64C52.2666666666667 362.6666666666667 42.6666666666667 353.0666666666667 42.6666666666667 341.3333333333334V0C42.6666666666667 -11.7333333333333 52.2666666666667 -21.3333333333333 64 -21.3333333333333H277.3333333333333C289.0666666666667 -21.3333333333333 298.6666666666667 -11.7333333333333 298.6666666666667 0V341.3333333333334C298.6666666666667 353.0666666666667 289.0666666666667 362.6666666666667 277.3333333333333 362.6666666666667M256 53.3333333333334H85.3333333333333V320H256V53.3333333333334z" />
+    <glyph glyph-name="battery-charging-wireless-20"
+      unicode="&#xF808;"
+      horiz-adv-x="512" d=" M428.16 342.8266666666667L398.08 312.7466666666667C464.8533333333333 246.1866666666667 464.8533333333333 138.0266666666667 398.08 71.2533333333333L428.16 41.1733333333333C511.36 124.3733333333333 511.36 259.4133333333334 428.16 342.8266666666667M367.7866666666667 282.4533333333334L337.7066666666667 252.3733333333334C370.9866666666667 219.0933333333333 370.9866666666667 165.12 337.7066666666667 131.6266666666667L367.7866666666667 101.5466666666667C417.7066666666667 151.4666666666667 417.7066666666667 232.5333333333334 367.7866666666667 282.4533333333334M277.3333333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H64C52.2666666666667 362.6666666666667 42.6666666666667 353.0666666666667 42.6666666666667 341.3333333333334V0C42.6666666666667 -11.7333333333333 52.2666666666667 -21.3333333333333 64 -21.3333333333333H277.3333333333333C289.0666666666667 -21.3333333333333 298.6666666666667 -11.7333333333333 298.6666666666667 0V341.3333333333334C298.6666666666667 353.0666666666667 289.0666666666667 362.6666666666667 277.3333333333333 362.6666666666667M256 85.3333333333334H85.3333333333333V320H256V85.3333333333334z" />
+    <glyph glyph-name="battery-charging-wireless-30"
+      unicode="&#xF809;"
+      horiz-adv-x="512" d=" M428.16 342.8266666666667L398.08 312.7466666666667C464.8533333333333 246.1866666666667 464.8533333333333 138.0266666666667 398.08 71.2533333333333L428.16 41.1733333333333C511.36 124.3733333333333 511.36 259.4133333333334 428.16 342.8266666666667M367.7866666666667 282.4533333333334L337.7066666666667 252.3733333333334C370.9866666666667 219.0933333333333 370.9866666666667 165.12 337.7066666666667 131.6266666666667L367.7866666666667 101.5466666666667C417.7066666666667 151.4666666666667 417.7066666666667 232.5333333333334 367.7866666666667 282.4533333333334M277.3333333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H64C52.2666666666667 362.6666666666667 42.6666666666667 353.0666666666667 42.6666666666667 341.3333333333334V0C42.6666666666667 -11.7333333333333 52.2666666666667 -21.3333333333333 64 -21.3333333333333H277.3333333333333C289.0666666666667 -21.3333333333333 298.6666666666667 -11.7333333333333 298.6666666666667 0V341.3333333333334C298.6666666666667 353.0666666666667 289.0666666666667 362.6666666666667 277.3333333333333 362.6666666666667M256 106.6666666666667H85.3333333333333V320H256V106.6666666666667z" />
+    <glyph glyph-name="battery-charging-wireless-40"
+      unicode="&#xF80A;"
+      horiz-adv-x="512" d=" M428.16 342.8266666666667L398.08 312.7466666666667C464.8533333333333 246.1866666666667 464.8533333333333 138.0266666666667 398.08 71.2533333333333L428.16 41.1733333333333C511.36 124.3733333333333 511.36 259.4133333333334 428.16 342.8266666666667M367.7866666666667 282.4533333333334L337.7066666666667 252.3733333333334C370.9866666666667 219.0933333333333 370.9866666666667 165.12 337.7066666666667 131.6266666666667L367.7866666666667 101.5466666666667C417.7066666666667 151.4666666666667 417.7066666666667 232.5333333333334 367.7866666666667 282.4533333333334M277.3333333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H64C52.2666666666667 362.6666666666667 42.6666666666667 353.0666666666667 42.6666666666667 341.3333333333334V0C42.6666666666667 -11.7333333333333 52.2666666666667 -21.3333333333333 64 -21.3333333333333H277.3333333333333C289.0666666666667 -21.3333333333333 298.6666666666667 -11.7333333333333 298.6666666666667 0V341.3333333333334C298.6666666666667 353.0666666666667 289.0666666666667 362.6666666666667 277.3333333333333 362.6666666666667M256 138.6666666666667H85.3333333333333V320H256V138.6666666666667z" />
+    <glyph glyph-name="battery-charging-wireless-50"
+      unicode="&#xF80B;"
+      horiz-adv-x="512" d=" M428.16 342.8266666666667L398.08 312.7466666666667C464.8533333333333 246.1866666666667 464.8533333333333 138.0266666666667 398.08 71.2533333333333L428.16 41.1733333333333C511.36 124.3733333333333 511.36 259.4133333333334 428.16 342.8266666666667M367.7866666666667 282.4533333333334L337.7066666666667 252.3733333333334C370.9866666666667 219.0933333333333 370.9866666666667 165.12 337.7066666666667 131.6266666666667L367.7866666666667 101.5466666666667C417.7066666666667 151.4666666666667 417.7066666666667 232.5333333333334 367.7866666666667 282.4533333333334M277.3333333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H64C52.2666666666667 362.6666666666667 42.6666666666667 353.0666666666667 42.6666666666667 341.3333333333334V0C42.6666666666667 -11.7333333333333 52.2666666666667 -21.3333333333333 64 -21.3333333333333H277.3333333333333C289.0666666666667 -21.3333333333333 298.6666666666667 -11.7333333333333 298.6666666666667 0V341.3333333333334C298.6666666666667 353.0666666666667 289.0666666666667 362.6666666666667 277.3333333333333 362.6666666666667M256 170.6666666666667H85.3333333333333V320H256V170.6666666666667z" />
+    <glyph glyph-name="battery-charging-wireless-60"
+      unicode="&#xF80C;"
+      horiz-adv-x="512" d=" M428.16 342.8266666666667L398.08 312.7466666666667C464.8533333333333 246.1866666666667 464.8533333333333 138.0266666666667 398.08 71.2533333333333L428.16 41.1733333333333C511.36 124.3733333333333 511.36 259.4133333333334 428.16 342.8266666666667M367.7866666666667 282.4533333333334L337.7066666666667 252.3733333333334C370.9866666666667 219.0933333333333 370.9866666666667 165.12 337.7066666666667 131.6266666666667L367.7866666666667 101.5466666666667C417.7066666666667 151.4666666666667 417.7066666666667 232.5333333333334 367.7866666666667 282.4533333333334M277.3333333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H64C52.2666666666667 362.6666666666667 42.6666666666667 353.0666666666667 42.6666666666667 341.3333333333334V0C42.6666666666667 -11.7333333333333 52.2666666666667 -21.3333333333333 64 -21.3333333333333H277.3333333333333C289.0666666666667 -21.3333333333333 298.6666666666667 -11.7333333333333 298.6666666666667 0V341.3333333333334C298.6666666666667 353.0666666666667 289.0666666666667 362.6666666666667 277.3333333333333 362.6666666666667M256 200.5333333333334H85.3333333333333V320H256V200.5333333333334z" />
+    <glyph glyph-name="battery-charging-wireless-70"
+      unicode="&#xF80D;"
+      horiz-adv-x="512" d=" M428.16 342.8266666666667L398.08 312.7466666666667C464.8533333333333 246.1866666666667 464.8533333333333 138.0266666666667 398.08 71.2533333333333L428.16 41.1733333333333C511.36 124.3733333333333 511.36 259.4133333333334 428.16 342.8266666666667M367.7866666666667 282.4533333333334L337.7066666666667 252.3733333333334C370.9866666666667 219.0933333333333 370.9866666666667 165.12 337.7066666666667 131.6266666666667L367.7866666666667 101.5466666666667C417.7066666666667 151.4666666666667 417.7066666666667 232.5333333333334 367.7866666666667 282.4533333333334M277.3333333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H64C52.2666666666667 362.6666666666667 42.6666666666667 353.0666666666667 42.6666666666667 341.3333333333334V0C42.6666666666667 -11.7333333333333 52.2666666666667 -21.3333333333333 64 -21.3333333333333H277.3333333333333C289.0666666666667 -21.3333333333333 298.6666666666667 -11.7333333333333 298.6666666666667 0V341.3333333333334C298.6666666666667 353.0666666666667 289.0666666666667 362.6666666666667 277.3333333333333 362.6666666666667M256 234.6666666666667H85.3333333333333V320H256V234.6666666666667z" />
+    <glyph glyph-name="battery-charging-wireless-80"
+      unicode="&#xF80E;"
+      horiz-adv-x="512" d=" M428.16 342.8266666666667L398.08 312.7466666666667C464.8533333333333 246.1866666666667 464.8533333333333 138.0266666666667 398.08 71.2533333333333L428.16 41.1733333333333C511.36 124.3733333333333 511.36 259.4133333333334 428.16 342.8266666666667M367.7866666666667 282.4533333333334L337.7066666666667 252.3733333333334C370.9866666666667 219.0933333333333 370.9866666666667 165.12 337.7066666666667 131.6266666666667L367.7866666666667 101.5466666666667C417.7066666666667 151.4666666666667 417.7066666666667 232.5333333333334 367.7866666666667 282.4533333333334M277.3333333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H64C52.2666666666667 362.6666666666667 42.6666666666667 353.0666666666667 42.6666666666667 341.3333333333334V0C42.6666666666667 -11.7333333333333 52.2666666666667 -21.3333333333333 64 -21.3333333333333H277.3333333333333C289.0666666666667 -21.3333333333333 298.6666666666667 -11.7333333333333 298.6666666666667 0V341.3333333333334C298.6666666666667 353.0666666666667 289.0666666666667 362.6666666666667 277.3333333333333 362.6666666666667M256 256H85.3333333333333V320H256V256z" />
+    <glyph glyph-name="battery-charging-wireless-90"
+      unicode="&#xF80F;"
+      horiz-adv-x="512" d=" M428.16 342.8266666666667L398.08 312.7466666666667C464.8533333333333 246.1866666666667 464.8533333333333 138.0266666666667 398.08 71.2533333333333L428.16 41.1733333333333C511.36 124.3733333333333 511.36 259.4133333333334 428.16 342.8266666666667M367.7866666666667 282.4533333333334L337.7066666666667 252.3733333333334C370.9866666666667 219.0933333333333 370.9866666666667 165.12 337.7066666666667 131.6266666666667L367.7866666666667 101.5466666666667C417.7066666666667 151.4666666666667 417.7066666666667 232.5333333333334 367.7866666666667 282.4533333333334M277.3333333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H64C52.2666666666667 362.6666666666667 42.6666666666667 353.0666666666667 42.6666666666667 341.3333333333334V0C42.6666666666667 -11.7333333333333 52.2666666666667 -21.3333333333333 64 -21.3333333333333H277.3333333333333C289.0666666666667 -21.3333333333333 298.6666666666667 -11.7333333333333 298.6666666666667 0V341.3333333333334C298.6666666666667 353.0666666666667 289.0666666666667 362.6666666666667 277.3333333333333 362.6666666666667M256 288H85.3333333333333V320H256V288z" />
+    <glyph glyph-name="battery-charging-wireless-alert"
+      unicode="&#xF810;"
+      horiz-adv-x="512" d=" M277.3333333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H64C52.2666666666667 362.6666666666667 42.6666666666667 353.0666666666667 42.6666666666667 341.3333333333334V0C42.6666666666667 -11.7333333333333 52.2666666666667 -21.3333333333333 64 -21.3333333333333H277.3333333333333C289.0666666666667 -21.3333333333333 298.6666666666667 -11.7333333333333 298.6666666666667 0V341.3333333333334C298.6666666666667 353.0666666666667 289.0666666666667 362.6666666666667 277.3333333333333 362.6666666666667M192 64H149.3333333333333V106.6666666666667H192V64M192 149.3333333333334H149.3333333333333V256H192V149.3333333333334M428.16 342.8266666666667L398.08 312.7466666666667C464.8533333333333 246.1866666666667 464.8533333333333 138.0266666666667 398.08 71.2533333333333L428.16 41.1733333333333C511.36 124.3733333333333 511.36 259.4133333333334 428.16 342.8266666666667M367.7866666666667 282.4533333333334L337.7066666666667 252.3733333333334C370.9866666666667 219.0933333333333 370.9866666666667 165.12 337.7066666666667 131.6266666666667L367.7866666666667 101.5466666666667C417.7066666666667 151.4666666666667 417.7066666666667 232.5333333333334 367.7866666666667 282.4533333333334z" />
+    <glyph glyph-name="battery-charging-wireless-outline"
+      unicode="&#xF811;"
+      horiz-adv-x="512" d=" M428.16 342.8266666666667L398.08 312.7466666666667C464.8533333333333 246.1866666666667 464.8533333333333 138.0266666666667 398.08 71.2533333333333L428.16 41.1733333333333C511.36 124.3733333333333 511.36 259.4133333333334 428.16 342.8266666666667M367.7866666666667 282.4533333333334L337.7066666666667 252.3733333333334C370.9866666666667 219.0933333333333 370.9866666666667 165.12 337.7066666666667 131.6266666666667L367.7866666666667 101.5466666666667C417.7066666666667 151.4666666666667 417.7066666666667 232.5333333333334 367.7866666666667 282.4533333333334M277.3333333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667V362.6666666666667H64C52.2666666666667 362.6666666666667 42.6666666666667 353.0666666666667 42.6666666666667 341.3333333333334V0C42.6666666666667 -11.7333333333333 52.2666666666667 -21.3333333333333 64 -21.3333333333333H277.3333333333333C289.0666666666667 -21.3333333333333 298.6666666666667 -11.7333333333333 298.6666666666667 0V341.3333333333334C298.6666666666667 353.0666666666667 289.0666666666667 362.6666666666667 277.3333333333333 362.6666666666667M256 21.3333333333334H85.3333333333333V320H256V21.3333333333334z" />
+    <glyph glyph-name="battery-minus"
+      unicode="&#xF08C;"
+      horiz-adv-x="512" d=" M355.6266666666667 362.6666666666667C371.2 362.6666666666667 384 349.8666666666667 384 334.2933333333334V7.04C384 -8.5333333333334 371.2 -21.3333333333333 355.6266666666667 -21.3333333333333H156.3733333333333C140.8 -21.3333333333333 128 -8.5333333333333 128 7.04V334.2933333333334C128 349.8666666666667 140.8 362.6666666666667 156.3733333333333 362.6666666666667H192V405.3333333333333H320V362.6666666666667H355.6266666666667M170.6666666666667 192V149.3333333333334H341.3333333333333V192" />
+    <glyph glyph-name="battery-negative"
+      unicode="&#xF08D;"
+      horiz-adv-x="512" d=" M248.96 362.6666666666667C264.5333333333333 362.6666666666667 277.3333333333333 349.8666666666667 277.3333333333333 334.2933333333334V7.04C277.3333333333333 -8.5333333333334 264.5333333333333 -21.3333333333333 248.96 -21.3333333333333H49.7066666666667C34.1333333333333 -21.3333333333333 21.3333333333333 -8.5333333333333 21.3333333333333 7.04V334.2933333333334C21.3333333333333 349.8666666666667 34.1333333333333 362.6666666666667 49.7066666666667 362.6666666666667H85.3333333333333V405.3333333333333H213.3333333333333V362.6666666666667H248.96M320 192H490.6666666666666V149.3333333333334H320V192M64 170.6666666666667H234.6666666666667V320H64V170.6666666666667z" />
+    <glyph glyph-name="battery-outline"
+      unicode="&#xF08E;"
+      horiz-adv-x="512" d=" M341.3333333333333 21.3333333333334H170.6666666666667V320H341.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.04C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.04V334.2933333333334C384 349.8666666666667 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
+    <glyph glyph-name="battery-plus"
+      unicode="&#xF08F;"
+      horiz-adv-x="512" d=" M355.6266666666667 362.6666666666667C371.2 362.6666666666667 384 349.8666666666667 384 334.2933333333334V7.04C384 -8.5333333333334 371.2 -21.3333333333333 355.6266666666667 -21.3333333333333H156.3733333333333C140.8 -21.3333333333333 128 -8.5333333333333 128 7.04V334.2933333333334C128 349.8666666666667 140.8 362.6666666666667 156.3733333333333 362.6666666666667H192V405.3333333333333H320V362.6666666666667H355.6266666666667M341.3333333333333 149.3333333333334V192H277.3333333333333V256H234.6666666666667V192H170.6666666666667V149.3333333333334H234.6666666666667V85.3333333333334H277.3333333333333V149.3333333333334H341.3333333333333z" />
+    <glyph glyph-name="battery-positive"
+      unicode="&#xF090;"
+      horiz-adv-x="512" d=" M248.96 362.6666666666667C264.5333333333333 362.6666666666667 277.3333333333333 349.8666666666667 277.3333333333333 334.2933333333334V7.04C277.3333333333333 -8.5333333333334 264.5333333333333 -21.3333333333333 248.96 -21.3333333333333H49.7066666666667C34.1333333333333 -21.3333333333333 21.3333333333333 -8.5333333333333 21.3333333333333 7.04V334.2933333333334C21.3333333333333 349.8666666666667 34.1333333333333 362.6666666666667 49.7066666666667 362.6666666666667H85.3333333333333V405.3333333333333H213.3333333333333V362.6666666666667H248.96M490.6666666666666 149.3333333333334H426.6666666666667V85.3333333333334H384V149.3333333333334H320V192H384V256H426.6666666666667V192H490.6666666666666V149.3333333333334M64 170.6666666666667H234.6666666666667V320H64V170.6666666666667z" />
+    <glyph glyph-name="battery-unknown"
+      unicode="&#xF091;"
+      horiz-adv-x="512" d=" M321.4933333333334 186.6666666666667L302.2933333333333 167.04C290.7733333333333 155.52 282.6666666666667 145.4933333333334 279.2533333333334 128H235.7333333333334C238.08 147.2000000000001 246.6133333333334 164.6933333333334 259.6266666666667 177.7066666666667L286.0800000000001 204.5866666666667C293.9733333333334 212.2666666666667 298.6666666666667 222.9333333333333 298.6666666666667 234.6666666666667C298.6666666666667 258.3466666666667 279.4666666666667 277.3333333333334 256 277.3333333333334S213.3333333333334 258.1333333333334 213.3333333333334 234.6666666666667H170.6666666666667C170.6666666666667 281.8133333333334 208.8533333333333 320 256 320S341.3333333333333 281.8133333333334 341.3333333333333 234.6666666666667C341.3333333333333 215.8933333333333 333.6533333333333 198.8266666666667 321.4933333333334 186.6666666666667M277.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H277.3333333333333M355.6266666666667 362.6666666666667H320V405.3333333333333H192V362.6666666666667H156.3733333333333C140.8 362.6666666666667 128 349.8666666666667 128 334.2933333333334V7.2533333333333C128 -8.5333333333333 140.8 -21.3333333333333 156.3733333333333 -21.3333333333333H355.6266666666667C371.2000000000001 -21.3333333333333 384 -8.5333333333333 384 7.2533333333333V334.2933333333334C384 350.0800000000001 371.2 362.6666666666667 355.6266666666667 362.6666666666667z" />
+    <glyph glyph-name="battery-unknown-bluetooth"
+      unicode="&#xF949;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V362.6666666666667H71.04C55.4666666666667 362.6666666666667 42.6666666666667 349.8666666666667 42.6666666666667 334.2933333333334V7.2533333333333C42.6666666666667 -8.5333333333333 55.4666666666667 -21.3333333333333 71.04 -21.3333333333333H270.2933333333333C285.8666666666667 -21.3333333333333 298.6666666666667 -8.5333333333333 298.6666666666667 7.2533333333333V334.2933333333334C298.6666666666667 350.0800000000001 285.8666666666667 362.6666666666667 270.2933333333333 362.6666666666667H234.6666666666667V405.3333333333333H106.6666666666667M170.6666666666667 320C217.8133333333333 320 256 281.8133333333334 256 234.6666666666667C256 215.8933333333333 248.32 198.8266666666667 236.16 186.6666666666667L216.96 167.04C205.44 155.52 197.3333333333333 145.4933333333334 193.92 128H150.4C152.7466666666667 147.2000000000001 161.28 164.6933333333334 174.2933333333333 177.7066666666667L200.7466666666667 204.5866666666667C208.64 212.2666666666667 213.3333333333333 222.9333333333333 213.3333333333333 234.6666666666667C213.3333333333333 258.3466666666667 194.1333333333333 277.3333333333334 170.6666666666667 277.3333333333334S128 258.1333333333334 128 234.6666666666667H85.3333333333333C85.3333333333333 281.8133333333334 123.52 320 170.6666666666667 320M405.3333333333333 277.3333333333334V196.48L356.48 245.3333333333334L341.3333333333333 230.1866666666667L400.8533333333333 170.6666666666667L341.3333333333333 111.1466666666667L356.48 96L405.3333333333333 144.8533333333334V64H416L476.8 125.0133333333333L431.1466666666667 170.6666666666667L476.8 216.5333333333334L416 277.3333333333334H405.3333333333333M426.6666666666667 236.5866666666667L446.7200000000001 216.5333333333334L426.6666666666667 196.48V236.5866666666667M426.6666666666667 144.8533333333334L446.7200000000001 125.0133333333333L426.6666666666667 104.96V144.8533333333334M149.3333333333333 85.3333333333334H192V42.6666666666667H149.3333333333333V85.3333333333334z" />
+    <glyph glyph-name="battlenet"
+      unicode="&#xFB3C;"
+      horiz-adv-x="512" d=" M424.9600000000001 218.4533333333334S480 186.88 480 151.68C480 117.3333333333334 416 105.3866666666667 345.1733333333333 108.8C345.1733333333333 108.8 315.0933333333333 66.7733333333333 286.2933333333333 49.0666666666667C317.44 -9.3866666666666 341.3333333333333 -32 340.6933333333333 -32C340.6933333333333 -32 324.9066666666667 -36.0533333333333 277.3333333333333 41.8133333333334C248.7466666666666 23.68 216.96 16.4266666666667 203.9466666666666 27.7333333333334C190.72 39.0400000000001 200.96 58.0266666666666 206.5066666666666 67.2000000000001C200.7466666666666 64.0000000000001 170.6666666666666 46.2933333333334 144 46.2933333333334C112.2133333333333 46.2933333333334 107.7333333333333 69.9733333333334 107.7333333333333 82.1333333333334C107.7333333333333 128 151.8933333333333 192 151.8933333333333 192S131.4133333333333 237.2266666666667 129.0666666666667 272.64C88.96 276.0533333333334 42.6666666666667 269.0133333333333 32.64 265.8133333333334C29.8666666666667 265.8133333333334 39.2533333333333 272.64 42.6666666666667 273.4933333333334C45.8666666666667 274.56 83.4133333333333 284.3733333333334 128 284.3733333333334C128 321.4933333333334 135.4666666666667 355.6266666666667 158.08 355.6266666666667C173.44 355.6266666666667 185.8133333333333 331.7333333333333 185.8133333333333 331.7333333333333S185.6 416 229.12 416C273.0666666666667 416 320 317.6533333333333 320 317.6533333333333S367.36 313.1733333333334 402.1333333333334 296.7466666666667C416 325.76 428.5866666666667 338.9866666666667 443.9466666666667 384C448.0000000000001 369.0666666666667 430.9333333333334 330.6666666666667 412.8 292.2666666666667C412.8 292.2666666666667 461.8666666666667 266.6666666666667 461.8666666666667 238.2933333333334C461.8666666666667 216.7466666666667 424.9600000000001 218.4533333333334 424.9600000000001 218.4533333333334M227.8400000000001 51.6266666666667C242.3466666666667 49.2800000000001 264.7466666666667 61.8666666666667 264.5333333333334 61.8666666666667L247.04 94.5066666666668L221.8666666666667 76.8000000000001C221.6533333333334 76.5866666666668 205.6533333333334 55.8933333333334 227.8400000000001 51.6266666666668M429.8666666666667 239.7866666666668C429.8666666666667 253.8666666666668 404.2666666666667 269.8666666666668 401.2800000000001 271.5733333333335L381.6533333333333 240.0000000000001L408.9600000000001 226.7733333333335C417.9200000000001 227.4133333333335 429.8666666666667 227.2000000000002 429.8666666666667 239.7866666666668M170.6666666666667 327.8933333333333C164.2666666666667 327.8933333333333 151.2533333333333 318.5066666666667 151.2533333333333 285.0133333333333L188.3733333333333 283.7333333333334L186.0266666666667 313.6C183.4666666666667 320 177.0666666666667 327.8933333333333 170.6666666666667 327.8933333333333M217.1733333333333 111.36C190.2933333333333 125.2266666666667 174.08 148.0533333333334 160.8533333333333 172.8C160.8533333333333 172.8 127.1466666666667 116.2666666666667 148.6933333333333 101.9733333333333C170.6666666666666 87.68 205.6533333333333 103.2533333333333 217.1733333333333 111.36M276.6933333333333 69.12C301.0133333333333 87.68 366.7199999999999 133.76 372.2666666666667 211.6266666666666C310.8266666666667 246.6133333333333 226.56 262.1866666666667 226.56 262.1866666666667S226.3466666666667 272.8533333333334 228.2666666666667 280.32C248.32 277.9733333333333 311.2533333333334 267.3066666666667 363.3066666666667 246.8266666666667C348.8 271.36 337.92 280.5333333333333 327.8933333333333 288C352.64 282.4533333333333 370.3466666666667 250.4533333333333 370.3466666666667 250.4533333333333L389.9733333333334 278.1866666666666S296.7466666666667 328.32 217.3866666666667 289.7066666666667C215.68 228.2666666666667 247.2533333333334 137.3866666666667 247.2533333333334 137.3866666666667L230.8266666666667 130.3466666666666C219.7333333333334 152.7466666666667 205.4400000000001 190.0799999999999 192 263.04C185.6 254.2933333333333 174.2933333333334 244.2666666666666 174.0800000000001 211.4133333333333C164.2666666666667 238.9333333333334 184.7466666666667 268.16 184.96 268.3733333333334L150.8266666666667 271.7866666666667C152.96 236.3733333333333 171.7333333333334 145.0666666666666 227.8400000000001 116.6933333333333C277.3333333333334 144.8533333333334 330.6666666666667 201.8133333333333 344.1066666666667 218.24L358.8266666666667 207.36L263.4666666666668 107.3066666666666C289.9200000000001 106.6666666666666 305.4933333333335 112.64 316.1600000000001 117.3333333333333C300.8000000000001 101.3333333333334 274.3466666666668 99.84 261.7600000000001 99.84C261.9733333333335 99.4133333333334 268.1600000000002 83.84 276.6933333333335 69.12M299.3066666666668 318.9333333333334C298.6666666666668 320.64 270.0800000000002 369.28 244.6933333333335 365.6533333333333C228.0533333333335 360.32 218.4533333333334 332.16 218.2400000000001 301.44C229.5466666666668 308.0533333333333 256.0000000000001 320 299.3066666666668 318.9333333333334M356.4800000000001 126.5066666666667S426.6666666666667 128 424.5333333333333 154.4533333333334C424.5333333333333 180.0533333333334 382.2933333333333 206.2933333333334 382.2933333333333 205.8666666666667C382.5066666666667 160.6400000000001 356.4799999999999 126.5066666666667 356.4799999999999 126.5066666666667z" />
+    <glyph glyph-name="beach"
+      unicode="&#xF092;"
+      horiz-adv-x="512" d=" M320 52.48C365.44 59.52 416 64 469.3333333333333 64V-21.3333333333333H106.6666666666667C106.6666666666667 -7.4666666666667 174.9333333333333 24.3200000000001 277.3333333333333 44.8000000000001V183.4666666666667C259.4133333333333 178.1333333333334 244.2666666666667 166.1866666666667 234.6666666666667 150.4C221.6533333333333 172.16 197.76 186.6666666666667 170.6666666666667 186.6666666666667S119.68 172.16 106.6666666666667 150.4C107.3066666666667 226.7733333333334 181.3333333333333 289.4933333333334 277.3333333333333 297.8133333333334V298.6666666666667C277.3333333333333 310.4 286.9333333333333 320 298.6666666666667 320S320 310.4 320 298.6666666666667V297.8133333333334C416 289.4933333333334 489.8133333333333 226.7733333333333 490.6666666666666 150.4C477.6533333333333 172.16 453.76 186.6666666666667 426.6666666666667 186.6666666666667S375.68 172.16 362.6666666666667 150.4C353.0666666666667 166.1866666666667 337.92 178.1333333333334 320 183.6800000000001V52.48M149.3333333333333 405.3333333333333C149.3333333333333 346.4533333333334 101.5466666666667 298.6666666666667 42.6666666666667 298.6666666666667V405.3333333333333H149.3333333333333z" />
+    <glyph glyph-name="beaker"
+      unicode="&#xF68F;"
+      horiz-adv-x="512" d=" M64 384H448V341.3333333333334C424.5333333333333 341.3333333333334 405.3333333333333 322.1333333333334 405.3333333333333 298.6666666666667V42.6666666666667C405.3333333333333 19.2 386.1333333333334 0 362.6666666666667 0H149.3333333333333C125.8666666666667 0 106.6666666666667 19.2 106.6666666666667 42.6666666666667V298.6666666666667C106.6666666666667 322.1333333333334 87.4666666666667 341.3333333333334 64 341.3333333333334V384M149.3333333333333 341.3333333333334V298.6666666666667H256V277.3333333333334H149.3333333333333V256H213.3333333333333V234.6666666666667H149.3333333333333V213.3333333333334H213.3333333333333V192H149.3333333333333V170.6666666666667H256V149.3333333333334H149.3333333333333V128H213.3333333333333V106.6666666666667H149.3333333333333V42.6666666666667H362.6666666666667V341.3333333333334H149.3333333333333z" />
+    <glyph glyph-name="beats"
+      unicode="&#xF097;"
+      horiz-adv-x="512" d=" M149.3333333333333 192C149.3333333333333 133.12 197.12 85.3333333333334 256 85.3333333333334S362.6666666666667 133.12 362.6666666666667 192S314.88 298.6666666666667 256 298.6666666666667C231.8933333333334 298.6666666666667 209.92 290.7733333333333 192 277.3333333333334V395.52C212.2666666666667 401.92 233.6 405.3333333333333 256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192C42.6666666666667 270.9333333333334 85.3333333333333 339.8400000000001 149.3333333333333 376.7466666666667V192M256 256C291.4133333333333 256 320 227.4133333333334 320 192S291.4133333333333 128 256 128S192 156.5866666666667 192 192S220.5866666666667 256 256 256z" />
+    <glyph glyph-name="bed-empty"
+      unicode="&#xF89F;"
+      horiz-adv-x="512" d=" M405.3333333333333 298.6666666666667H106.6666666666667V149.3333333333334H64V341.3333333333334H21.3333333333333V21.3333333333334H64V85.3333333333334H448V21.3333333333334H490.6666666666666V213.3333333333334C490.6666666666666 260.48 452.48 298.6666666666667 405.3333333333333 298.6666666666667" />
+    <glyph glyph-name="beer"
+      unicode="&#xF098;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H405.3333333333333L362.6666666666667 -21.3333333333333H128L85.3333333333333 405.3333333333333M132.2666666666667 362.6666666666667L166.4 21.3333333333334H187.7333333333334L158.5066666666667 312.7466666666667C181.3333333333333 320 210.9866666666667 322.3466666666667 234.6666666666667 298.6666666666667C267.9466666666667 265.3866666666667 327.04 283.9466666666667 352 293.76L358.4 362.6666666666667H132.2666666666667z" />
+    <glyph glyph-name="behance"
+      unicode="&#xF099;"
+      horiz-adv-x="512" d=" M417.7066666666666 186.24C416.8533333333333 199.4666666666667 412.3733333333333 209.4933333333334 404.4799999999999 216.32C396.5866666666666 223.1466666666667 386.7733333333333 226.5600000000001 375.04 226.5600000000001C362.6666666666667 226.5600000000001 352 222.9333333333334 345.3866666666666 215.68C338.3466666666666 208.4266666666667 333.8666666666666 198.6133333333334 332.16 186.24M467.6266666666666 191.1466666666667C469.3333333333333 182.4 469.3333333333333 169.8133333333334 469.3333333333333 153.3866666666667H330.6666666666666C331.7333333333333 134.1866666666667 338.1333333333332 120.96 350.7199999999999 113.2800000000001C358.1866666666666 108.3733333333334 367.36 106.0266666666668 378.2399999999999 106.0266666666668C389.5466666666666 106.0266666666668 398.7199999999999 109.0133333333334 405.3333333333333 114.7733333333334C409.5999999999999 117.9733333333334 413.0133333333332 122.2400000000001 415.9999999999999 128.0000000000001H466.7733333333332C465.4933333333332 116.48 459.3066666666665 105.1733333333334 447.9999999999999 93.4400000000001C431.3599999999999 74.6666666666667 407.4666666666666 65.7066666666667 376.7466666666666 65.7066666666667C351.3599999999999 65.7066666666667 329.1733333333333 73.6000000000001 309.3333333333333 89.1733333333334C290.5599999999999 104.7466666666668 280.7466666666666 130.1333333333335 280.7466666666666 165.3333333333334C280.7466666666666 198.4000000000001 289.4933333333333 224.0000000000001 306.9866666666666 241.0666666666668C324.4799999999999 258.7733333333335 347.0933333333333 267.5200000000001 375.04 267.5200000000001C391.4666666666666 267.5200000000001 406.3999999999999 264.5333333333334 419.6266666666666 258.5600000000001C432.8533333333333 252.5866666666668 443.9466666666666 243.4133333333334 452.4799999999999 230.4000000000001C460.3733333333333 219.0933333333335 465.28 206.0800000000001 467.6266666666666 191.1466666666668M204.3733333333333 147.84C204.3733333333333 161.7066666666667 198.6133333333334 171.3066666666667 187.52 176.4266666666667C181.3333333333333 179.2000000000001 172.3733333333333 180.6933333333333 160.8533333333333 181.3333333333334H103.8933333333333V110.08H160C171.52 110.08 180.48 111.5733333333334 186.88 114.7733333333334C198.6133333333334 120.5333333333334 204.3733333333333 131.6266666666667 204.3733333333333 147.84M103.8933333333333 224.8533333333334H160C171.52 224.8533333333334 181.3333333333333 226.9866666666667 188.16 231.4666666666667C195.4133333333333 235.7333333333334 198.8266666666667 243.6266666666667 198.8266666666667 254.7200000000001C198.8266666666667 266.6666666666668 194.1333333333333 275.2000000000001 184.7466666666667 279.2533333333334C176.4266666666667 282.0266666666667 165.9733333333333 283.3066666666668 153.3866666666667 283.3066666666668H103.8933333333333M250.0266666666667 183.0400000000001C256.8533333333333 172.3733333333334 260.2666666666667 159.3600000000001 260.2666666666667 144.2133333333334C260.2666666666667 128.0000000000001 256 114.3466666666667 248.5333333333333 101.7600000000001C243.4133333333333 93.4400000000001 237.2266666666667 86.6133333333334 229.76 80.8533333333334C221.2266666666666 74.6666666666667 211.2 69.9733333333334 199.68 67.6266666666667C188.1599999999999 65.2800000000001 175.7866666666666 64 162.3466666666666 64H42.6666666666667V329.6H170.6666666666667C203.3066666666667 328.9600000000001 226.1333333333334 320 239.5733333333333 301.2266666666667C247.68 289.92 251.7333333333334 276.48 251.7333333333334 260.6933333333334C251.7333333333334 244.48 247.68 231.4666666666667 239.5733333333333 221.6533333333334C234.6666666666667 216.1066666666667 228.2666666666667 210.9866666666667 219.3066666666667 206.5066666666667C232.7466666666667 201.6 242.9866666666667 193.7066666666667 250.0266666666667 183.04M427.9466666666667 291.8400000000001H321.0666666666667V318.5066666666667H427.9466666666667V291.8400000000001z" />
+    <glyph glyph-name="bell"
+      unicode="&#xF09A;"
+      horiz-adv-x="512" d=" M448 42.6666666666667V21.3333333333334H64V42.6666666666667L106.6666666666667 85.3333333333334V213.3333333333334C106.6666666666667 279.4666666666667 149.9733333333333 337.7066666666667 213.3333333333333 356.48V362.6666666666667C213.3333333333333 386.1333333333334 232.5333333333334 405.3333333333333 256 405.3333333333333S298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667V356.48C362.0266666666667 337.7066666666667 405.3333333333333 279.4666666666667 405.3333333333333 213.3333333333334V85.3333333333334L448 42.6666666666667M298.6666666666667 0C298.6666666666667 -23.4666666666667 279.4666666666667 -42.6666666666666 256 -42.6666666666666S213.3333333333333 -23.4666666666667 213.3333333333333 0" />
+    <glyph glyph-name="bell-off"
+      unicode="&#xF09B;"
+      horiz-adv-x="512" d=" M444.5866666666667 -36.9066666666666L386.3466666666667 21.3333333333334H64V42.6666666666667L106.6666666666667 85.3333333333334V213.3333333333334C106.6666666666667 237.6533333333334 112.8533333333333 261.76 124.3733333333333 283.3066666666667L23.68 384L50.9866666666667 411.0933333333334L471.6799999999999 -9.8133333333333L444.5866666666667 -36.9066666666666M405.3333333333333 110.9333333333333V213.3333333333334C405.3333333333333 279.4666666666667 362.0266666666667 337.7066666666667 298.6666666666667 356.48V362.6666666666667C298.6666666666667 386.1333333333334 279.4666666666667 405.3333333333333 256 405.3333333333333S213.3333333333333 386.1333333333334 213.3333333333333 362.6666666666667V356.48C200.32 352.64 187.7333333333334 346.88 176.2133333333333 339.4133333333334L405.3333333333333 110.9333333333333M256 -42.6666666666666C279.4666666666667 -42.6666666666666 298.6666666666667 -23.4666666666667 298.6666666666667 0H213.3333333333333C213.3333333333333 -23.4666666666667 232.5333333333334 -42.6666666666666 256 -42.6666666666666z" />
+    <glyph glyph-name="bell-off-outline"
+      unicode="&#xFA90;"
+      horiz-adv-x="512" d=" M471.6799999999999 -9.8133333333333L50.9866666666667 411.0933333333334L23.68 384L124.3733333333333 283.3066666666667C112.8533333333333 261.76 106.6666666666667 237.6533333333334 106.6666666666667 213.3333333333334V85.3333333333334L64 42.6666666666667V21.3333333333334H386.3466666666667L444.5866666666667 -36.9066666666666L471.6799999999999 -9.8133333333333M149.3333333333333 64V213.3333333333334C149.3333333333333 226.3466666666667 151.68 239.1466666666667 156.5866666666667 251.0933333333334L343.68 64H149.3333333333333M213.3333333333333 0H298.6666666666667C298.6666666666667 -23.4666666666667 279.4666666666667 -42.6666666666666 256 -42.6666666666666S213.3333333333333 -23.4666666666667 213.3333333333333 0M176.8533333333333 339.4133333333334C188.16 346.6666666666667 200.5333333333333 352 213.3333333333333 356.48V362.6666666666667C213.3333333333333 386.1333333333334 232.5333333333334 405.3333333333333 256 405.3333333333333S298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667V356.48C362.0266666666667 337.7066666666667 405.3333333333333 279.4666666666667 405.3333333333333 213.3333333333334V110.9333333333333L362.6666666666667 153.6V213.3333333333334C362.6666666666667 272.2133333333334 314.88 320 256 320C239.36 320 222.9333333333333 315.7333333333334 208.2133333333333 308.0533333333334L176.8533333333333 339.4133333333334z" />
+    <glyph glyph-name="bell-outline"
+      unicode="&#xF09C;"
+      horiz-adv-x="512" d=" M341.3333333333333 85.3333333333334H149.3333333333333V224C149.3333333333333 277.3333333333334 192 320 245.3333333333333 320S341.3333333333333 277.3333333333334 341.3333333333333 224M384 106.6666666666667V224C384 289.4933333333334 338.3466666666667 344.32 277.3333333333333 358.8266666666667V373.3333333333334C277.3333333333333 391.04 263.04 405.3333333333333 245.3333333333333 405.3333333333333S213.3333333333333 391.04 213.3333333333333 373.3333333333334V358.8266666666667C152.1066666666667 344.3200000000001 106.6666666666667 289.4933333333334 106.6666666666667 224V106.6666666666667L64 64V42.6666666666667H426.6666666666667V64M245.3333333333333 -21.3333333333333C268.8 -21.3333333333333 288 -2.1333333333333 288 21.3333333333334H202.6666666666667C202.6666666666667 -2.1333333333333 221.8666666666667 -21.3333333333333 245.3333333333333 -21.3333333333333z" />
+    <glyph glyph-name="bell-plus"
+      unicode="&#xF09D;"
+      horiz-adv-x="512" d=" M213.3333333333333 0H298.6666666666667C298.6666666666667 -23.4666666666667 279.4666666666667 -42.6666666666666 256 -42.6666666666666C232.32 -42.6666666666666 213.3333333333333 -23.4666666666667 213.3333333333333 0M448 42.6666666666667V21.3333333333334H64V42.6666666666667L106.6666666666667 85.3333333333334V213.3333333333334C106.6666666666667 279.4666666666667 149.9733333333333 337.7066666666667 213.3333333333333 356.48V362.6666666666667C213.3333333333333 386.1333333333334 232.5333333333334 405.3333333333333 256 405.3333333333333S298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667V356.48C362.0266666666667 337.7066666666667 405.3333333333333 279.4666666666667 405.3333333333333 213.3333333333334V85.3333333333334L448 42.6666666666667M341.3333333333333 213.3333333333334H277.3333333333333V277.3333333333334H234.6666666666667V213.3333333333334H170.6666666666667V170.6666666666667H234.6666666666667V106.6666666666667H277.3333333333333V170.6666666666667H341.3333333333333V213.3333333333334z" />
+    <glyph glyph-name="bell-plus-outline"
+      unicode="&#xFA91;"
+      horiz-adv-x="512" d=" M213.3333333333333 0H298.6666666666667C298.6666666666667 -23.4666666666667 279.4666666666667 -42.6666666666666 256 -42.6666666666666S213.3333333333333 -23.4666666666667 213.3333333333333 0M448 42.6666666666667V21.3333333333334H64V42.6666666666667L106.6666666666667 85.3333333333334V213.3333333333334C106.6666666666667 279.4666666666667 149.9733333333333 337.7066666666667 213.3333333333333 356.48V362.6666666666667C213.3333333333333 386.1333333333334 232.5333333333334 405.3333333333333 256 405.3333333333333S298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667V356.48C362.0266666666667 337.7066666666667 405.3333333333333 279.4666666666667 405.3333333333333 213.3333333333334V85.3333333333334L448 42.6666666666667M362.6666666666667 213.3333333333334C362.6666666666667 272.2133333333334 314.88 320 256 320S149.3333333333333 272.2133333333334 149.3333333333333 213.3333333333334V64H362.6666666666667V213.3333333333334M320 170.6666666666667H277.3333333333333V128H234.6666666666667V170.6666666666667H192V213.3333333333334H234.6666666666667V256H277.3333333333333V213.3333333333334H320" />
+    <glyph glyph-name="bell-ring"
+      unicode="&#xF09E;"
+      horiz-adv-x="512" d=" M448 42.6666666666667V21.3333333333334H64V42.6666666666667L106.6666666666667 85.3333333333334V213.3333333333334C106.6666666666667 279.4666666666667 149.9733333333333 337.7066666666667 213.3333333333333 356.48V362.6666666666667C213.3333333333333 386.1333333333334 232.5333333333334 405.3333333333333 256 405.3333333333333S298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667V356.48C362.0266666666667 337.7066666666667 405.3333333333333 279.4666666666667 405.3333333333333 213.3333333333334V85.3333333333334L448 42.6666666666667M298.6666666666667 0C298.6666666666667 -23.4666666666667 279.4666666666667 -42.6666666666666 256 -42.6666666666666S213.3333333333333 -23.4666666666667 213.3333333333333 0M421.3333333333333 379.9466666666667L391.04 349.6533333333333C427.52 313.6 448 264.5333333333334 448 213.3333333333334H490.6666666666666C490.6666666666666 275.8400000000001 465.92 336 421.3333333333333 379.9466666666667M21.3333333333333 213.3333333333334H64C64 264.5333333333334 84.48 313.6 120.96 349.6533333333333L90.6666666666667 379.9466666666667C46.08 336 21.3333333333333 275.8400000000001 21.3333333333333 213.3333333333334z" />
+    <glyph glyph-name="bell-ring-outline"
+      unicode="&#xF09F;"
+      horiz-adv-x="512" d=" M213.3333333333333 0H298.6666666666667C298.6666666666667 -23.4666666666667 279.4666666666667 -42.6666666666666 256 -42.6666666666666S213.3333333333333 -23.4666666666667 213.3333333333333 0M448 42.6666666666667V21.3333333333334H64V42.6666666666667L106.6666666666667 85.3333333333334V213.3333333333334C106.6666666666667 279.4666666666667 149.9733333333333 337.7066666666667 213.3333333333333 356.48V362.6666666666667C213.3333333333333 386.1333333333334 232.5333333333334 405.3333333333333 256 405.3333333333333S298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667V356.48C362.0266666666667 337.7066666666667 405.3333333333333 279.4666666666667 405.3333333333333 213.3333333333334V85.3333333333334L448 42.6666666666667M362.6666666666667 213.3333333333334C362.6666666666667 272.2133333333334 314.88 320 256 320S149.3333333333333 272.2133333333334 149.3333333333333 213.3333333333334V64H362.6666666666667V213.3333333333334M421.3333333333333 379.9466666666667L391.04 349.6533333333333C427.52 313.6 448 264.5333333333334 448 213.3333333333334H490.6666666666666C490.6666666666666 275.8400000000001 465.92 336 421.3333333333333 379.9466666666667M21.3333333333333 213.3333333333334H64C64 264.5333333333334 84.48 313.6 120.96 349.6533333333333L90.6666666666667 379.9466666666667C46.08 336 21.3333333333333 275.8400000000001 21.3333333333333 213.3333333333334z" />
+    <glyph glyph-name="bell-sleep"
+      unicode="&#xF0A0;"
+      horiz-adv-x="512" d=" M213.3333333333333 0H298.6666666666667C298.6666666666667 -23.4666666666667 279.4666666666667 -42.6666666666666 256 -42.6666666666666S213.3333333333333 -23.4666666666667 213.3333333333333 0M448 42.6666666666667V21.3333333333334H64V42.6666666666667L106.6666666666667 85.3333333333334V213.3333333333334C106.6666666666667 279.4666666666667 149.9733333333333 337.7066666666667 213.3333333333333 356.48V362.6666666666667C213.3333333333333 386.1333333333334 232.5333333333334 405.3333333333333 256 405.3333333333333S298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667V356.48C362.0266666666667 337.7066666666667 405.3333333333333 279.4666666666667 405.3333333333333 213.3333333333334V85.3333333333334L448 42.6666666666667M320 256H192V213.3333333333334H261.12L192 155.7333333333334V106.6666666666667H320V149.3333333333334H250.88L320 206.9333333333333V256z" />
+    <glyph glyph-name="bell-sleep-outline"
+      unicode="&#xFA92;"
+      horiz-adv-x="512" d=" M213.3333333333333 0H298.6666666666667C298.6666666666667 -23.4666666666667 279.4666666666667 -42.6666666666666 256 -42.6666666666666S213.3333333333333 -23.4666666666667 213.3333333333333 0M448 42.6666666666667V21.3333333333334H64V42.6666666666667L106.6666666666667 85.3333333333334V213.3333333333334C106.6666666666667 279.4666666666667 149.9733333333333 337.7066666666667 213.3333333333333 356.48V362.6666666666667C213.3333333333333 386.1333333333334 232.5333333333334 405.3333333333333 256 405.3333333333333S298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667V356.48C362.0266666666667 337.7066666666667 405.3333333333333 279.4666666666667 405.3333333333333 213.3333333333334V85.3333333333334L448 42.6666666666667M362.6666666666667 213.3333333333334C362.6666666666667 272.2133333333334 314.88 320 256 320S149.3333333333333 272.2133333333334 149.3333333333333 213.3333333333334V64H362.6666666666667V213.3333333333334M192 256V213.3333333333334H261.12L192 155.7333333333334V106.6666666666667H320V149.3333333333334H250.88L320 206.9333333333333V256H192z" />
+    <glyph glyph-name="beta"
+      unicode="&#xF0A1;"
+      horiz-adv-x="512" d=" M196.9066666666667 72.7466666666667V-45.2266666666667H146.7733333333333V304.64C146.7733333333333 335.5733333333334 155.9466666666667 359.8933333333333 174.08 378.0266666666667C192 396.16 216.96 405.3333333333333 247.68 405.3333333333333C277.3333333333333 405.3333333333333 300.16 398.08 317.2266666666667 384C334.08 369.4933333333334 342.4 349.44 342.4 324.0533333333334C342.4 306.56 336.8533333333334 290.1333333333334 325.76 274.9866666666667C314.6666666666667 259.8400000000001 300.3733333333334 249.3866666666667 282.6666666666667 243.6266666666667V242.7733333333334C309.3333333333334 238.5066666666667 330.0266666666667 228.9066666666667 344.1066666666667 213.3333333333334C358.1866666666667 198.1866666666667 365.2266666666667 178.7733333333333 365.2266666666667 154.88C365.2266666666667 126.72 355.4133333333333 103.68 336 85.9733333333334C316.3733333333334 68.2666666666668 290.7733333333333 59.5200000000001 258.7733333333333 59.5200000000001C236.16 59.5200000000001 215.4666666666667 64.0000000000001 196.9066666666667 72.7466666666668M228.6933333333333 218.6666666666668V259.6266666666667C247.2533333333333 261.9733333333334 262.4 268.8 274.56 280.32C286.5066666666667 292.0533333333334 292.48 305.0666666666667 292.48 320C292.48 349.44 277.3333333333333 364.3733333333334 247.4666666666667 364.3733333333334C231.2533333333334 364.3733333333334 218.6666666666667 359.2533333333334 209.92 348.8C201.1733333333333 338.3466666666667 196.9066666666667 323.8400000000001 196.9066666666667 304.8533333333334V117.3333333333334C216.32 106.0266666666666 235.3066666666667 100.48 253.6533333333334 100.48C271.5733333333333 100.48 285.6533333333333 105.1733333333334 295.68 114.3466666666667C305.7066666666667 123.7333333333334 310.6133333333334 136.96 310.6133333333334 153.8133333333334C310.6133333333334 192 283.3066666666667 213.3333333333334 228.6933333333334 218.6666666666667z" />
+    <glyph glyph-name="betamax"
+      unicode="&#xF9CA;"
+      horiz-adv-x="512" d=" M85.3333333333333 341.3333333333334C61.8666666666667 341.3333333333334 42.6666666666667 322.1333333333334 42.6666666666667 298.6666666666667V85.3333333333334C42.6666666666667 61.8666666666667 61.8666666666667 42.6666666666667 85.3333333333333 42.6666666666667H426.6666666666667C450.1333333333334 42.6666666666667 469.3333333333333 61.8666666666667 469.3333333333333 85.3333333333334V298.6666666666667C469.3333333333333 322.1333333333334 450.1333333333334 341.3333333333334 426.6666666666667 341.3333333333334H85.3333333333333M170.6666666666667 256C217.8133333333333 256 256 217.8133333333334 256 170.6666666666667S217.8133333333333 85.3333333333334 170.6666666666667 85.3333333333334S85.3333333333333 123.52 85.3333333333333 170.6666666666667S123.52 256 170.6666666666667 256M277.3333333333333 256H426.6666666666667V85.3333333333334H277.3333333333333V256M170.6666666666667 213.3333333333334C147.2 213.3333333333334 128 194.1333333333333 128 170.6666666666667S147.2 128 170.6666666666667 128S213.3333333333333 147.2000000000001 213.3333333333333 170.6666666666667S194.1333333333333 213.3333333333334 170.6666666666667 213.3333333333334z" />
+    <glyph glyph-name="bible"
+      unicode="&#xF0A2;"
+      horiz-adv-x="512" d=" M123.9466666666667 405.3333333333333H149.3333333333333V256L202.6666666666667 288L256 256V405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -1.0666666666667 406.4 -21.3333333333333 384 -21.3333333333333H128C105.6 -21.3333333333333 85.3333333333333 -1.0666666666667 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 384 103.04 403.4133333333334 123.9466666666667 405.3333333333333M277.3333333333333 234.6666666666667V170.6666666666667H213.3333333333333V128H277.3333333333333V21.3333333333334H320V128H384V170.6666666666667H320V234.6666666666667H277.3333333333333z" />
+    <glyph glyph-name="bike"
+      unicode="&#xF0A3;"
+      horiz-adv-x="512" d=" M106.6666666666667 10.6666666666667C65.4933333333333 10.6666666666667 32 44.16 32 85.3333333333334S65.4933333333333 160 106.6666666666667 160S181.3333333333333 126.5066666666667 181.3333333333333 85.3333333333334S147.84 10.6666666666667 106.6666666666667 10.6666666666667M106.6666666666667 192C47.7866666666667 192 0 144.2133333333334 0 85.3333333333334S47.7866666666667 -21.3333333333333 106.6666666666667 -21.3333333333333S213.3333333333333 26.4533333333334 213.3333333333333 85.3333333333334S165.5466666666667 192 106.6666666666667 192M315.7333333333334 234.6666666666667H405.3333333333333V273.0666666666667H337.0666666666667L295.68 342.8266666666667C289.4933333333334 353.4933333333334 277.3333333333334 360.5333333333334 264.5333333333334 360.5333333333334C254.5066666666667 360.5333333333334 245.3333333333334 356.48 238.9333333333334 349.8666666666667L160 271.1466666666667C153.3866666666667 264.5333333333334 149.3333333333333 256 149.3333333333333 245.3333333333334C149.3333333333333 231.8933333333333 156.3733333333333 220.5866666666667 167.4666666666667 213.9733333333333L238.9333333333333 170.6666666666667V64H277.3333333333333V202.6666666666667L229.3333333333333 237.8666666666667L278.8266666666667 288M405.3333333333333 10.6666666666667C364.16 10.6666666666667 330.6666666666667 44.16 330.6666666666667 85.3333333333334S364.16 160 405.3333333333333 160S480 126.5066666666667 480 85.3333333333334S446.5066666666667 10.6666666666667 405.3333333333333 10.6666666666667M405.3333333333333 192C346.4533333333334 192 298.6666666666667 144.2133333333334 298.6666666666667 85.3333333333334S346.4533333333334 -21.3333333333333 405.3333333333333 -21.3333333333333S512 26.4533333333334 512 85.3333333333334S464.2133333333333 192 405.3333333333333 192M341.3333333333333 345.6C362.6666666666667 345.6 379.7333333333334 362.6666666666667 379.7333333333334 384S362.6666666666667 422.4 341.3333333333333 422.4S302.9333333333333 405.3333333333333 302.9333333333333 384S320 345.6 341.3333333333333 345.6z" />
+    <glyph glyph-name="billiards"
+      unicode="&#xFB3D;"
+      horiz-adv-x="512" d=" M234.6666666666667 170.6666666666667H277.3333333333333V128H234.6666666666667M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667M234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V160C320 177.7066666666667 305.7066666666667 192 288 192C305.7066666666667 192 320 206.2933333333334 320 224V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V224C192 206.2933333333334 206.2933333333333 192 224 192C206.2933333333333 192 192 177.7066666666667 192 160V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334M256 426.6666666666667C126.2933333333333 426.6666666666667 21.3333333333333 321.7066666666667 21.3333333333333 192S126.2933333333333 -42.6666666666666 256 -42.6666666666666S490.6666666666666 62.2933333333334 490.6666666666666 192S385.7066666666666 426.6666666666667 256 426.6666666666667M256 42.6666666666667C173.44 42.6666666666667 106.6666666666667 109.44 106.6666666666667 192S173.44 341.3333333333334 256 341.3333333333334S405.3333333333333 274.5600000000001 405.3333333333333 192S338.56 42.6666666666667 256 42.6666666666667z" />
+    <glyph glyph-name="billiards-rack"
+      unicode="&#xFB3E;"
+      horiz-adv-x="512" d=" M433.28 97.28L310.1866666666666 309.9733333333334C292.6933333333333 340.48 253.6533333333333 350.9333333333334 223.1466666666667 333.2266666666667C213.3333333333333 327.68 205.44 320 199.68 309.9733333333334L76.8 97.28C59.0933333333333 66.7733333333333 69.5466666666667 27.9466666666667 100.0533333333333 10.6666666666667C109.6533333333333 4.6933333333333 120.5333333333333 1.7066666666666 131.84 1.7066666666666H378.24C413.44 1.92 442.0266666666667 30.5066666666667 441.8133333333334 65.7066666666667C441.8133333333334 76.8 438.8266666666667 87.68 433.2800000000001 97.28M114.5600000000001 76.16L237.0133333333334 288.6400000000001C242.7733333333334 298.6666666666667 256.0000000000001 302.5066666666667 265.8133333333334 296.5333333333334C269.2266666666667 294.8266666666667 272 292.0533333333334 273.9200000000001 288.6400000000001L396.3733333333335 76.16C402.1333333333335 65.92 398.7200000000001 53.3333333333334 388.4800000000001 47.1466666666667C385.2800000000001 45.2266666666667 381.6533333333334 44.16 378.0266666666668 44.16H132.48C120.7466666666667 44.3733333333334 111.1466666666667 53.9733333333334 111.36 65.7066666666667C111.36 69.3333333333334 112.2133333333333 72.96 114.1333333333333 76.16H114.56M255.36 161.0666666666667C231.8933333333333 161.0666666666667 213.3333333333333 180.0533333333334 213.3333333333333 203.5200000000001C213.3333333333333 227.2 231.8933333333333 246.1866666666667 255.36 246.1866666666667S298.0266666666667 226.9866666666667 298.0266666666667 203.5200000000001S278.8266666666666 161.0666666666667 254.9333333333333 161.0666666666667H255.36M201.8133333333333 65.4933333333333C178.3466666666666 65.4933333333333 159.36 84.48 159.36 107.9466666666667S178.3466666666666 150.4 201.8133333333333 150.4S244.48 131.4133333333334 244.48 107.9466666666667S225.28 65.4933333333333 201.8133333333333 65.4933333333333M308.0533333333333 65.4933333333333C284.5866666666667 65.4933333333333 265.6 84.48 265.6 107.9466666666667S284.5866666666667 150.4 308.0533333333333 150.4S350.7199999999999 131.4133333333334 350.7199999999999 107.9466666666667S331.5199999999999 65.4933333333333 308.0533333333333 65.4933333333333z" />
+    <glyph glyph-name="bing"
+      unicode="&#xF0A4;"
+      horiz-adv-x="512" d=" M106.6666666666667 384V42.6666666666667L186.0266666666667 0L384 110.5066666666667V197.76L208.4266666666667 257.0666666666667L242.7733333333333 174.0800000000001L297.3866666666667 149.3333333333334L185.6 87.04V356.9066666666667L106.6666666666667 384" />
+    <glyph glyph-name="binoculars"
+      unicode="&#xF0A5;"
+      horiz-adv-x="512" d=" M234.6666666666667 320H277.3333333333333V170.6666666666667H234.6666666666667V320M192 21.3333333333334C192 9.6 182.4 0 170.6666666666667 0H106.6666666666667C94.9333333333333 0 85.3333333333333 9.6 85.3333333333333 21.3333333333334V128L128 320H213.3333333333333V170.6666666666667C213.3333333333333 158.9333333333333 203.7333333333334 149.3333333333334 192 149.3333333333334V21.3333333333334M213.3333333333333 341.3333333333334H149.3333333333333V384H213.3333333333333V341.3333333333334M320 21.3333333333334V149.3333333333334C308.2666666666667 149.3333333333334 298.6666666666667 158.9333333333333 298.6666666666667 170.6666666666667V320H384L426.6666666666667 128V21.3333333333334C426.6666666666667 9.6 417.0666666666667 0 405.3333333333333 0H341.3333333333333C329.6 0 320 9.6 320 21.3333333333334M298.6666666666667 341.3333333333334V384H362.6666666666667V341.3333333333334H298.6666666666667z" />
+    <glyph glyph-name="bio"
+      unicode="&#xF0A6;"
+      horiz-adv-x="512" d=" M362.6666666666667 192H426.6666666666667C450.1333333333334 192 469.3333333333333 172.8 469.3333333333333 149.3333333333334V85.3333333333334C469.3333333333333 61.8666666666667 450.1333333333334 42.6666666666667 426.6666666666667 42.6666666666667H362.6666666666667C339.2 42.6666666666667 320 61.8666666666667 320 85.3333333333334V149.3333333333334C320 172.8 339.2 192 362.6666666666667 192M362.6666666666667 149.3333333333334V85.3333333333334H426.6666666666667V149.3333333333334H362.6666666666667M42.6666666666667 298.6666666666667H149.3333333333333C172.8 298.6666666666667 192 279.4666666666667 192 256V213.3333333333334C192 189.8666666666667 172.8 170.6666666666667 149.3333333333333 170.6666666666667C172.8 170.6666666666667 192 151.4666666666667 192 128V85.3333333333334C192 61.8666666666667 172.8 42.6666666666667 149.3333333333333 42.6666666666667H42.6666666666667V298.6666666666667M85.3333333333333 256V192H149.3333333333333V256H85.3333333333333M85.3333333333333 85.3333333333334H149.3333333333333V149.3333333333334H85.3333333333333V85.3333333333334M234.6666666666667 170.6666666666667H277.3333333333333V42.6666666666667H234.6666666666667V170.6666666666667M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667V256z" />
+    <glyph glyph-name="biohazard"
+      unicode="&#xF0A7;"
+      horiz-adv-x="512" d=" M490.6666666666666 105.3866666666667C490.6666666666666 100.48 490.6666666666666 96 489.8133333333333 91.7333333333334C485.9733333333334 146.3466666666667 440.32 189.6533333333334 384 189.6533333333334C376.1066666666667 189.6533333333334 368.4266666666666 188.5866666666667 360.9600000000001 187.0933333333334C361.8133333333334 181.3333333333334 362.6666666666667 176.4266666666667 362.6666666666667 170.6666666666668C362.6666666666667 120.5333333333334 326.6133333333334 78.5066666666667 278.8266666666667 68.0533333333334C286.2933333333333 20.2666666666668 326.6133333333334 -16.8533333333333 376.5333333333333 -20.48C371.84 -21.3333333333333 367.36 -21.3333333333333 362.6666666666667 -21.3333333333333C318.2933333333333 -21.3333333333333 278.8266666666667 1.28 256 35.4133333333334C233.1733333333333 1.28 193.92 -21.3333333333333 149.3333333333333 -21.3333333333333C144.64 -21.3333333333333 140.16 -21.3333333333333 135.4666666666667 -20.48C185.3866666666667 -16.8533333333333 225.4933333333334 20.0533333333333 233.1733333333333 68.0533333333333C185.1733333333333 78.5066666666667 149.3333333333333 120.5333333333334 149.3333333333333 170.6666666666667C149.3333333333333 176.4266666666667 150.1866666666667 181.3333333333334 150.8266666666667 187.0933333333334C143.5733333333333 188.5866666666667 135.8933333333333 189.6533333333333 128 189.6533333333333C71.68 189.6533333333333 26.0266666666667 146.3466666666667 21.9733333333333 91.7333333333333C21.3333333333333 95.9999999999999 21.3333333333333 100.48 21.3333333333333 105.3866666666667C21.3333333333333 173.8666666666667 76.5866666666667 229.5466666666666 145.28 231.68C134.4 250.24 128 272 128 295.04C128 342.6133333333334 154.24 384 193.28 405.3333333333333C166.6133333333333 386.1333333333334 149.3333333333333 355.4133333333334 149.3333333333333 320C149.3333333333333 291.2000000000001 161.28 264.7466666666667 180.6933333333333 245.3333333333334C200.1066666666667 264.7466666666667 226.56 276.48 256 276.48C285.2266666666667 276.48 311.8933333333333 264.7466666666667 330.6666666666667 245.3333333333334C350.5066666666667 264.7466666666667 362.6666666666667 291.2000000000001 362.6666666666667 320C362.6666666666667 355.4133333333334 345.1733333333333 386.1333333333334 318.72 405.3333333333333C357.76 384 384 342.6133333333334 384 295.04C384 272 377.6 250.24 366.7200000000001 231.68C435.6266666666667 229.5466666666667 490.6666666666666 173.8666666666667 490.6666666666666 105.3866666666667M197.76 232.32C214.4 221.44 234.6666666666667 215.04 256 215.04S297.6 221.44 314.24 232.32C298.6666666666667 246.4000000000001 278.6133333333334 255.36 256 255.36S213.3333333333333 246.4000000000001 197.76 232.32M256 139.3066666666667C273.4933333333334 139.3066666666667 288 153.6 288 170.6666666666667C288 188.3733333333333 273.7066666666667 202.6666666666667 256 202.6666666666667S224 188.3733333333333 224 170.6666666666667C224 153.6 238.2933333333333 139.3066666666667 256 139.3066666666667M234.0266666666667 89.8133333333334C231.8933333333334 130.1333333333334 207.1466666666667 164.48 171.7333333333334 180.2666666666667C171.3066666666667 177.0666666666667 170.6666666666667 174.0800000000001 170.6666666666667 170.6666666666668C170.6666666666667 131.84 197.76 99.4133333333334 234.0266666666667 89.8133333333334M340.48 180.2666666666667C304.8533333333334 164.48 279.8933333333333 130.1333333333334 277.3333333333333 89.8133333333334C314.24 99.4133333333334 341.3333333333333 131.84 341.3333333333333 170.6666666666667C341.3333333333333 174.0800000000001 340.6933333333334 177.0666666666667 340.48 180.2666666666667z" />
+    <glyph glyph-name="bitbucket"
+      unicode="&#xF0A8;"
+      horiz-adv-x="512" d=" M457.1733333333333 405.3333333333333C464.8533333333333 403.8400000000001 469.9733333333334 396.3733333333334 469.3333333333333 387.8400000000001L450.56 262.4000000000001L411.0933333333333 -8.5333333333333C409.6 -16 404.2666666666667 -21.3333333333333 397.44 -21.3333333333333H114.56C107.7333333333333 -21.3333333333333 102.4 -16 100.9066666666667 -8.5333333333333L61.44 262.4000000000001L42.6666666666667 387.8400000000001C42.0266666666667 396.3733333333334 47.1466666666667 403.8400000000001 54.8266666666667 405.3333333333333H457.1733333333333M300.3733333333334 122.4533333333334L322.1333333333334 262.4000000000001H189.8666666666667L211.6266666666667 122.4533333333334H300.3733333333334z" />
+    <glyph glyph-name="bitcoin"
+      unicode="&#xF812;"
+      horiz-adv-x="512" d=" M96 341.3333333333334H170.6666666666667V405.3333333333333H213.3333333333333V341.3333333333334H245.3333333333333V405.3333333333333H288V341.3333333333334C405.3333333333333 341.3333333333334 405.3333333333333 213.3333333333334 341.3333333333333 208C426.6666666666667 213.3333333333334 448 42.6666666666667 288 42.6666666666667V-21.3333333333333H245.3333333333333V42.6666666666667H213.3333333333333V-21.3333333333333H170.6666666666667V42.6666666666667H96L106.6666666666667 85.3333333333334H128C139.7333333333333 85.3333333333334 149.3333333333333 94.9333333333333 149.3333333333333 106.6666666666667V277.3333333333334C149.3333333333333 289.0666666666667 139.7333333333333 298.6666666666667 128 298.6666666666667H96V341.3333333333334M213.3333333333333 298.6666666666667V213.3333333333334S309.3333333333333 208 309.3333333333333 256S213.3333333333333 298.6666666666667 213.3333333333333 298.6666666666667M213.3333333333333 181.3333333333334V85.3333333333334S330.6666666666667 85.3333333333334 330.6666666666667 133.3333333333334S213.3333333333333 181.3333333333334 213.3333333333333 181.3333333333334z" />
+    <glyph glyph-name="black-mesa"
+      unicode="&#xF0A9;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192C85.3333333333333 141.0133333333333 107.7333333333333 95.36 143.1466666666667 64H192V192H362.6666666666667L408.5333333333333 115.4133333333334C420.0533333333333 138.6666666666667 426.6666666666667 164.48 426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="blackberry"
+      unicode="&#xF0AA;"
+      horiz-adv-x="512" d=" M116.2666666666667 228.6933333333334C136.5333333333333 228.6933333333334 160 212.2666666666667 160 192S136.5333333333333 155.3066666666667 116.2666666666667 155.3066666666667H42.6666666666667L57.3866666666667 228.6933333333334H116.2666666666667M130.9866666666666 346.4533333333333C151.2533333333333 346.4533333333333 175.1466666666667 330.0266666666667 175.1466666666667 309.3333333333333C175.1466666666667 289.4933333333334 151.2533333333333 272.8533333333334 130.9866666666666 272.8533333333334H57.3866666666667L72.1066666666667 346.4533333333333H130.9866666666667M277.9733333333333 346.4533333333333C298.6666666666667 346.4533333333333 322.1333333333334 330.0266666666667 322.1333333333334 309.3333333333333C322.1333333333334 289.4933333333334 298.6666666666667 272.8533333333334 277.9733333333333 272.8533333333334H200.7466666666667L215.4666666666667 346.4533333333333H277.9733333333333M263.2533333333334 228.6933333333334C283.7333333333334 228.6933333333334 307.4133333333333 212.2666666666667 307.4133333333333 192S283.7333333333334 155.3066666666666 263.2533333333334 155.3066666666666H186.0266666666667L200.7466666666667 228.6933333333333H263.2533333333334M234.0266666666667 111.1466666666667C254.2933333333333 111.1466666666667 277.9733333333333 94.5066666666666 277.9733333333333 74.6666666666666C277.9733333333333 53.9733333333333 254.2933333333333 37.5466666666666 234.0266666666667 37.5466666666666H160L175.1466666666667 111.1466666666667H234.0266666666667M395.7333333333334 155.3066666666666C416 155.3066666666666 439.8933333333333 138.6666666666666 439.8933333333333 118.4S416 81.7066666666667 395.7333333333334 81.7066666666667H322.1333333333334L336.8533333333333 155.3066666666666H395.7333333333333M425.1733333333333 272.8533333333333C445.4399999999999 272.8533333333333 469.3333333333333 256 469.3333333333333 236.16C469.3333333333333 215.8933333333333 445.4399999999999 199.2533333333333 425.1733333333333 199.2533333333333H352L366.2933333333334 272.8533333333333H425.1733333333333z" />
+    <glyph glyph-name="blender"
+      unicode="&#xF0AB;"
+      horiz-adv-x="512" d=" M170.6666666666667 384C170.6666666666667 376.7466666666667 174.2933333333333 369.28 181.3333333333333 365.2266666666667L256 320H53.3333333333333C35.6266666666667 320 21.3333333333333 305.7066666666667 21.3333333333333 288S35.6266666666667 256 53.3333333333333 256H179.4133333333333L42.6666666666667 170.6666666666667C24.7466666666667 160 21.3333333333333 144.64 21.3333333333333 128C21.3333333333333 106.6666666666667 37.76 85.3333333333334 64 85.3333333333334C78.72 85.3333333333334 93.6533333333333 96 106.6666666666667 106.6666666666667L149.3333333333333 141.2266666666667C153.6 50.7733333333334 228.48 -21.3333333333333 320 -21.3333333333333C414.2933333333334 -21.3333333333333 490.6666666666666 55.04 490.6666666666666 149.3333333333334C490.6666666666666 211.6266666666667 457.1733333333333 266.6666666666667 407.2533333333334 295.8933333333333C406.6133333333333 296.32 405.9733333333334 296.9600000000001 405.3333333333333 297.3866666666667C405.3333333333333 297.3866666666667 403.6266666666667 298.6666666666667 402.3466666666667 299.3066666666667C336.2133333333333 343.8933333333333 277.9733333333333 368.64 203.7333333333333 402.56C199.2533333333333 404.48 195.4133333333333 405.3333333333333 192 405.3333333333333C179.2 405.3333333333333 170.6666666666667 395.52 170.6666666666667 384M320 256C378.88 256 426.6666666666667 208.2133333333334 426.6666666666667 149.3333333333334S378.88 42.6666666666667 320 42.6666666666667S213.3333333333333 90.4533333333334 213.3333333333333 149.3333333333334S261.12 256 320 256M320 224C278.8266666666667 224 245.3333333333333 190.5066666666667 245.3333333333333 149.3333333333334S278.8266666666667 74.6666666666667 320 74.6666666666667S394.6666666666667 108.16 394.6666666666667 149.3333333333334S361.1733333333333 224 320 224z" />
+    <glyph glyph-name="blinds"
+      unicode="&#xF0AC;"
+      horiz-adv-x="512" d=" M64 405.3333333333333H448C459.7333333333333 405.3333333333333 469.3333333333333 395.7333333333334 469.3333333333333 384V341.3333333333334C469.3333333333333 329.6 459.7333333333333 320 448 320H426.6666666666667V170.6666666666667C426.6666666666667 158.9333333333333 417.0666666666667 149.3333333333334 405.3333333333333 149.3333333333334H277.3333333333333V103.04C302.2933333333333 94.2933333333333 320 70.6133333333334 320 42.6666666666667C320 7.2533333333333 291.4133333333333 -21.3333333333333 256 -21.3333333333333S192 7.2533333333333 192 42.6666666666667C192 70.6133333333334 209.7066666666667 94.2933333333334 234.6666666666667 103.04V149.3333333333334H106.6666666666667C94.9333333333333 149.3333333333334 85.3333333333333 158.9333333333333 85.3333333333333 170.6666666666667V320H64C52.2666666666667 320 42.6666666666667 329.6 42.6666666666667 341.3333333333334V384C42.6666666666667 395.7333333333334 52.2666666666667 405.3333333333333 64 405.3333333333333M256 64C244.2666666666667 64 234.6666666666667 54.4 234.6666666666667 42.6666666666667S244.2666666666667 21.3333333333334 256 21.3333333333334S277.3333333333333 30.9333333333333 277.3333333333333 42.6666666666667S267.7333333333334 64 256 64z" />
+    <glyph glyph-name="block-helper"
+      unicode="&#xF0AD;"
+      horiz-adv-x="512" d=" M256 448C397.44 448 512 333.44 512 192S397.44 -64 256 -64S0 50.5600000000001 0 192S114.56 448 256 448M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192C42.6666666666667 140.8 60.8 93.8666666666667 90.88 56.96L391.04 357.12C354.1333333333334 387.2 307.2 405.3333333333333 256 405.3333333333333M256 -21.3333333333333C373.76 -21.3333333333333 469.3333333333333 74.24 469.3333333333333 192C469.3333333333333 243.2 451.1999999999999 290.1333333333334 421.12 327.04L120.96 26.8800000000001C157.8666666666667 -3.1999999999999 204.8 -21.3333333333333 256 -21.3333333333333z" />
+    <glyph glyph-name="blogger"
+      unicode="&#xF0AE;"
+      horiz-adv-x="512" d=" M298.6666666666667 170.6666666666667H212.2666666666667C200.5333333333333 170.6666666666667 190.9333333333333 161.0666666666667 190.9333333333333 149.3333333333334S200.5333333333333 128 212.2666666666667 128H298.6666666666667C310.4 128 320 137.6 320 149.3333333333334S310.4 170.6666666666667 298.6666666666667 170.6666666666667M212.2666666666667 234.6666666666667H267.7333333333333C279.4666666666667 234.6666666666667 289.0666666666666 244.2666666666667 289.0666666666666 256S279.4666666666667 277.3333333333334 267.7333333333333 277.3333333333334H212.2666666666667C200.5333333333333 277.3333333333334 190.9333333333333 267.7333333333334 190.9333333333333 256S200.5333333333333 234.6666666666667 212.2666666666667 234.6666666666667M341.3333333333333 256V234.6666666666667C341.3333333333333 222.9333333333333 350.9333333333333 213.3333333333334 362.6666666666667 213.3333333333334S384 203.7333333333334 384 192V128C384 92.5866666666667 355.4133333333333 64 320 64H192C156.5866666666667 64 128 92.5866666666667 128 128V277.3333333333334C128 312.7466666666667 156.5866666666667 341.3333333333334 192 341.3333333333334H277.3333333333333C312.7466666666667 341.3333333333334 341.3333333333333 312.7466666666667 341.3333333333333 277.3333333333334M426.6666666666667 405.3333333333333H85.3333333333333C61.6533333333333 405.3333333333333 42.6666666666667 386.3466666666667 42.6666666666667 362.6666666666667V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H426.6666666666667C450.1333333333334 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="bluetooth"
+      unicode="&#xF0AF;"
+      horiz-adv-x="512" d=" M317.44 100.48L277.3333333333333 60.3733333333333V140.5866666666667M277.3333333333333 323.6266666666667L317.44 283.52L277.3333333333333 243.6266666666667M377.8133333333334 283.52L256 405.3333333333333H234.6666666666667V243.6266666666667L136.7466666666667 341.3333333333334L106.6666666666667 311.2533333333334L225.92 192L106.6666666666667 72.96L136.7466666666667 42.6666666666667L234.6666666666667 140.5866666666667V-21.3333333333333H256L377.8133333333334 100.48L286.08 192L377.8133333333334 283.52z" />
+    <glyph glyph-name="bluetooth-audio"
+      unicode="&#xF0B0;"
+      horiz-adv-x="512" d=" M274.7733333333333 100.48L234.6666666666667 60.3733333333333V140.5866666666667M234.6666666666667 323.6266666666667L274.7733333333333 283.52L234.6666666666667 243.6266666666667M335.1466666666667 283.52L213.3333333333333 405.3333333333333H192V243.6266666666667L94.08 341.3333333333334L64 311.2533333333334L183.2533333333333 192L64 72.96L94.08 42.6666666666667L192 140.5866666666667V-21.3333333333333H213.3333333333333L335.1466666666667 100.48L243.4133333333334 192M416.64 304.8533333333334L389.5466666666667 277.3333333333334C402.9866666666667 252.1600000000001 410.6666666666667 222.9333333333333 410.6666666666667 192C410.6666666666667 161.0666666666667 402.9866666666667 131.84 389.5466666666667 106.6666666666667L415.1466666666667 80.64C435.84 113.4933333333334 448 152.1066666666667 448 193.92C448 234.6666666666667 436.48 272.4266666666667 416.64 304.8533333333334M303.7866666666667 192L353.28 142.2933333333334C359.2533333333334 157.8666666666667 362.6666666666667 174.5066666666667 362.6666666666667 192C362.6666666666667 209.4933333333334 359.2533333333334 226.1333333333334 353.4933333333334 241.4933333333334L303.7866666666667 192z" />
+    <glyph glyph-name="bluetooth-connect"
+      unicode="&#xF0B1;"
+      horiz-adv-x="512" d=" M405.3333333333333 234.6666666666667L362.6666666666667 192L405.3333333333333 149.3333333333334L448 192M317.44 100.48L277.3333333333333 60.3733333333333V140.5866666666667M277.3333333333333 323.6266666666667L317.44 283.52L277.3333333333333 243.6266666666667M377.8133333333334 283.52L256 405.3333333333333H234.6666666666667V243.6266666666667L136.7466666666667 341.3333333333334L106.6666666666667 311.2533333333334L225.92 192L106.6666666666667 72.96L136.7466666666667 42.6666666666667L234.6666666666667 140.5866666666667V-21.3333333333333H256L377.8133333333334 100.48L286.08 192M149.3333333333333 192L106.6666666666667 234.6666666666667L64 192L106.6666666666667 149.3333333333334L149.3333333333333 192z" />
+    <glyph glyph-name="bluetooth-off"
+      unicode="&#xF0B2;"
+      horiz-adv-x="512" d=" M277.3333333333333 323.6266666666667L317.44 283.52L283.3066666666666 249.3866666666667L313.3866666666667 219.3066666666667L377.8133333333334 283.7333333333334L256 405.3333333333333H234.6666666666667V298.0266666666667L277.3333333333333 255.36M115.4133333333333 362.6666666666667L85.3333333333333 332.5866666666667L225.92 192L106.6666666666667 72.7466666666667L136.7466666666667 42.6666666666667L234.6666666666667 140.5866666666667V-21.3333333333333H256L347.52 70.1866666666667L396.5866666666667 21.3333333333334L426.6666666666667 51.4133333333334M277.3333333333333 60.3733333333334V140.5866666666667L317.44 100.48" />
+    <glyph glyph-name="bluetooth-settings"
+      unicode="&#xF0B3;"
+      horiz-adv-x="512" d=" M317.44 143.1466666666667L277.3333333333333 103.04V183.2533333333333L317.44 143.1466666666667M277.3333333333333 366.2933333333334L317.44 326.1866666666667L277.3333333333333 286.0800000000001M377.8133333333334 326.1866666666667L256 448H234.6666666666667V286.0800000000001L136.7466666666667 384L106.6666666666667 353.92L225.92 234.6666666666667L106.6666666666667 115.4133333333334L136.7466666666667 85.3333333333334L234.6666666666667 183.2533333333333V21.3333333333334H256L377.8133333333334 143.1466666666667L286.08 234.6666666666667L377.8133333333334 326.1866666666667M320 -64H362.6666666666667V-21.3333333333333H320M149.3333333333333 -64H192V-21.3333333333333H149.3333333333333M234.6666666666667 -64H277.3333333333333V-21.3333333333333H234.6666666666667V-64z" />
+    <glyph glyph-name="bluetooth-transfer"
+      unicode="&#xF0B4;"
+      horiz-adv-x="512" d=" M313.8133333333334 283.52L222.08 192L313.8133333333334 100.48L192 -21.3333333333333H170.6666666666667V140.5866666666667L72.7466666666667 42.6666666666667L42.6666666666667 72.7466666666667L161.92 192L42.6666666666667 311.2533333333334L72.7466666666667 341.3333333333334L170.6666666666667 243.4133333333334V405.3333333333333H192L313.8133333333334 283.52M213.3333333333333 323.6266666666667V243.4133333333334L253.44 283.52L213.3333333333333 323.6266666666667M253.44 100.48L213.3333333333333 140.5866666666667V60.3733333333333L253.44 100.48M469.3333333333333 277.3333333333334H426.6666666666667V213.3333333333334H384V277.3333333333334H341.3333333333333L405.3333333333333 362.6666666666667L469.3333333333333 277.3333333333334M469.3333333333333 106.6666666666667L405.3333333333333 21.3333333333334L341.3333333333333 106.6666666666667H384V170.6666666666667H426.6666666666667V106.6666666666667H469.3333333333333z" />
+    <glyph glyph-name="blur"
+      unicode="&#xF0B5;"
+      horiz-adv-x="512" d=" M298.6666666666667 266.6666666666667C280.96 266.6666666666667 266.6666666666667 252.3733333333334 266.6666666666667 234.6666666666667S280.96 202.6666666666667 298.6666666666667 202.6666666666667S330.6666666666667 216.96 330.6666666666667 234.6666666666667S316.3733333333334 266.6666666666667 298.6666666666667 266.6666666666667M298.6666666666667 181.3333333333334C280.96 181.3333333333334 266.6666666666667 167.04 266.6666666666667 149.3333333333334S280.96 117.3333333333334 298.6666666666667 117.3333333333334S330.6666666666667 131.6266666666667 330.6666666666667 149.3333333333334S316.3733333333334 181.3333333333334 298.6666666666667 181.3333333333334M213.3333333333333 85.3333333333334C201.6 85.3333333333334 192 75.7333333333334 192 64S201.6 42.6666666666667 213.3333333333333 42.6666666666667S234.6666666666667 52.2666666666667 234.6666666666667 64S225.0666666666667 85.3333333333334 213.3333333333333 85.3333333333334M213.3333333333333 266.6666666666667C195.6266666666667 266.6666666666667 181.3333333333333 252.3733333333334 181.3333333333333 234.6666666666667S195.6266666666667 202.6666666666667 213.3333333333333 202.6666666666667S245.3333333333333 216.96 245.3333333333333 234.6666666666667S231.04 266.6666666666667 213.3333333333333 266.6666666666667M298.6666666666667 10.6666666666667C292.6933333333334 10.6666666666667 288 5.9733333333334 288 0S292.6933333333334 -10.6666666666666 298.6666666666667 -10.6666666666666S309.3333333333333 -5.9733333333334 309.3333333333333 0S304.64 10.6666666666667 298.6666666666667 10.6666666666667M298.6666666666667 85.3333333333334C286.9333333333333 85.3333333333334 277.3333333333333 75.7333333333334 277.3333333333333 64S286.9333333333333 42.6666666666667 298.6666666666667 42.6666666666667S320 52.2666666666667 320 64S310.4 85.3333333333334 298.6666666666667 85.3333333333334M448 160C442.0266666666667 160 437.3333333333333 155.3066666666667 437.3333333333333 149.3333333333334S442.0266666666667 138.6666666666667 448 138.6666666666667S458.6666666666666 143.36 458.6666666666666 149.3333333333334S453.9733333333334 160 448 160M384 341.3333333333334C372.2666666666667 341.3333333333334 362.6666666666667 331.7333333333334 362.6666666666667 320S372.2666666666667 298.6666666666667 384 298.6666666666667S405.3333333333333 308.2666666666667 405.3333333333333 320S395.7333333333334 341.3333333333334 384 341.3333333333334M384 256C372.2666666666667 256 362.6666666666667 246.4000000000001 362.6666666666667 234.6666666666667S372.2666666666667 213.3333333333334 384 213.3333333333334S405.3333333333333 222.9333333333333 405.3333333333333 234.6666666666667S395.7333333333334 256 384 256M384 85.3333333333334C372.2666666666667 85.3333333333334 362.6666666666667 75.7333333333334 362.6666666666667 64S372.2666666666667 42.6666666666667 384 42.6666666666667S405.3333333333333 52.2666666666667 405.3333333333333 64S395.7333333333334 85.3333333333334 384 85.3333333333334M384 170.6666666666667C372.2666666666667 170.6666666666667 362.6666666666667 161.0666666666667 362.6666666666667 149.3333333333334S372.2666666666667 128 384 128S405.3333333333333 137.6 405.3333333333333 149.3333333333334S395.7333333333334 170.6666666666667 384 170.6666666666667M213.3333333333333 181.3333333333334C195.6266666666667 181.3333333333334 181.3333333333333 167.04 181.3333333333333 149.3333333333334S195.6266666666667 117.3333333333334 213.3333333333333 117.3333333333334S245.3333333333333 131.6266666666667 245.3333333333333 149.3333333333334S231.04 181.3333333333334 213.3333333333333 181.3333333333334M213.3333333333333 298.6666666666667C225.0666666666667 298.6666666666667 234.6666666666667 308.2666666666667 234.6666666666667 320S225.0666666666667 341.3333333333334 213.3333333333333 341.3333333333334S192 331.7333333333334 192 320S201.6 298.6666666666667 213.3333333333333 298.6666666666667M213.3333333333333 373.3333333333334C219.3066666666667 373.3333333333334 224 378.0266666666667 224 384S219.3066666666667 394.6666666666667 213.3333333333333 394.6666666666667S202.6666666666667 389.9733333333334 202.6666666666667 384S207.36 373.3333333333334 213.3333333333333 373.3333333333334M213.3333333333333 10.6666666666667C207.36 10.6666666666667 202.6666666666667 5.9733333333334 202.6666666666667 0S207.36 -10.6666666666666 213.3333333333333 -10.6666666666666S224 -5.9733333333334 224 0S219.3066666666667 10.6666666666667 213.3333333333333 10.6666666666667M64 160C58.0266666666667 160 53.3333333333333 155.3066666666667 53.3333333333333 149.3333333333334S58.0266666666667 138.6666666666667 64 138.6666666666667S74.6666666666667 143.36 74.6666666666667 149.3333333333334S69.9733333333333 160 64 160M298.6666666666667 373.3333333333334C304.64 373.3333333333334 309.3333333333333 378.0266666666667 309.3333333333333 384S304.64 394.6666666666667 298.6666666666667 394.6666666666667S288 389.9733333333334 288 384S292.6933333333334 373.3333333333334 298.6666666666667 373.3333333333334M298.6666666666667 298.6666666666667C310.4 298.6666666666667 320 308.2666666666667 320 320S310.4 341.3333333333334 298.6666666666667 341.3333333333334S277.3333333333333 331.7333333333334 277.3333333333333 320S286.9333333333333 298.6666666666667 298.6666666666667 298.6666666666667M448 224C453.9733333333334 224 458.6666666666666 228.6933333333334 458.6666666666666 234.6666666666667S453.9733333333334 245.3333333333334 448 245.3333333333334S437.3333333333333 240.64 437.3333333333333 234.6666666666667S442.0266666666667 224 448 224M128 341.3333333333334C116.2666666666667 341.3333333333334 106.6666666666667 331.7333333333334 106.6666666666667 320S116.2666666666667 298.6666666666667 128 298.6666666666667S149.3333333333333 308.2666666666667 149.3333333333333 320S139.7333333333333 341.3333333333334 128 341.3333333333334M64 245.3333333333334C58.0266666666667 245.3333333333334 53.3333333333333 240.64 53.3333333333333 234.6666666666667S58.0266666666667 224 64 224S74.6666666666667 228.6933333333334 74.6666666666667 234.6666666666667S69.9733333333333 245.3333333333334 64 245.3333333333334M128 256C116.2666666666667 256 106.6666666666667 246.4000000000001 106.6666666666667 234.6666666666667S116.2666666666667 213.3333333333334 128 213.3333333333334S149.3333333333333 222.9333333333333 149.3333333333333 234.6666666666667S139.7333333333333 256 128 256M128 85.3333333333334C116.2666666666667 85.3333333333334 106.6666666666667 75.7333333333334 106.6666666666667 64S116.2666666666667 42.6666666666667 128 42.6666666666667S149.3333333333333 52.2666666666667 149.3333333333333 64S139.7333333333333 85.3333333333334 128 85.3333333333334M128 170.6666666666667C116.2666666666667 170.6666666666667 106.6666666666667 161.0666666666667 106.6666666666667 149.3333333333334S116.2666666666667 128 128 128S149.3333333333333 137.6 149.3333333333333 149.3333333333334S139.7333333333333 170.6666666666667 128 170.6666666666667z" />
+    <glyph glyph-name="blur-linear"
+      unicode="&#xF0B6;"
+      horiz-adv-x="512" d=" M277.3333333333333 85.3333333333334C289.0666666666667 85.3333333333334 298.6666666666667 94.9333333333333 298.6666666666667 106.6666666666667S289.0666666666667 128 277.3333333333333 128S256 118.4 256 106.6666666666667S265.6 85.3333333333334 277.3333333333333 85.3333333333334M277.3333333333333 170.6666666666667C289.0666666666667 170.6666666666667 298.6666666666667 180.2666666666667 298.6666666666667 192S289.0666666666667 213.3333333333334 277.3333333333333 213.3333333333334S256 203.7333333333334 256 192S265.6 170.6666666666667 277.3333333333333 170.6666666666667M277.3333333333333 256C289.0666666666667 256 298.6666666666667 265.6 298.6666666666667 277.3333333333334S289.0666666666667 298.6666666666667 277.3333333333333 298.6666666666667S256 289.0666666666667 256 277.3333333333334S265.6 256 277.3333333333333 256M362.6666666666667 181.3333333333334C368.64 181.3333333333334 373.3333333333333 186.0266666666667 373.3333333333333 192S368.64 202.6666666666667 362.6666666666667 202.6666666666667S352 197.9733333333333 352 192S356.6933333333333 181.3333333333334 362.6666666666667 181.3333333333334M362.6666666666667 266.6666666666667C368.64 266.6666666666667 373.3333333333333 271.36 373.3333333333333 277.3333333333334S368.64 288 362.6666666666667 288S352 283.3066666666667 352 277.3333333333334S356.6933333333333 266.6666666666667 362.6666666666667 266.6666666666667M64 384V341.3333333333334H448V384M362.6666666666667 96C368.64 96 373.3333333333333 100.6933333333333 373.3333333333333 106.6666666666667S368.64 117.3333333333334 362.6666666666667 117.3333333333334S352 112.64 352 106.6666666666667S356.6933333333333 96 362.6666666666667 96M192 85.3333333333334C203.7333333333334 85.3333333333334 213.3333333333333 94.9333333333333 213.3333333333333 106.6666666666667S203.7333333333334 128 192 128S170.6666666666667 118.4 170.6666666666667 106.6666666666667S180.2666666666667 85.3333333333334 192 85.3333333333334M106.6666666666667 160C124.3733333333333 160 138.6666666666667 174.2933333333334 138.6666666666667 192S124.3733333333333 224 106.6666666666667 224S74.6666666666667 209.7066666666667 74.6666666666667 192S88.96 160 106.6666666666667 160M106.6666666666667 245.3333333333334C124.3733333333333 245.3333333333334 138.6666666666667 259.6266666666667 138.6666666666667 277.3333333333334S124.3733333333333 309.3333333333334 106.6666666666667 309.3333333333334S74.6666666666667 295.04 74.6666666666667 277.3333333333334S88.96 245.3333333333334 106.6666666666667 245.3333333333334M64 0H448V42.6666666666667H64M192 256C203.7333333333334 256 213.3333333333333 265.6 213.3333333333333 277.3333333333334S203.7333333333334 298.6666666666667 192 298.6666666666667S170.6666666666667 289.0666666666667 170.6666666666667 277.3333333333334S180.2666666666667 256 192 256M192 170.6666666666667C203.7333333333334 170.6666666666667 213.3333333333333 180.2666666666667 213.3333333333333 192S203.7333333333334 213.3333333333334 192 213.3333333333334S170.6666666666667 203.7333333333334 170.6666666666667 192S180.2666666666667 170.6666666666667 192 170.6666666666667M106.6666666666667 74.6666666666667C124.3733333333333 74.6666666666667 138.6666666666667 88.96 138.6666666666667 106.6666666666667S124.3733333333333 138.6666666666667 106.6666666666667 138.6666666666667S74.6666666666667 124.3733333333333 74.6666666666667 106.6666666666667S88.96 74.6666666666667 106.6666666666667 74.6666666666667z" />
+    <glyph glyph-name="blur-off"
+      unicode="&#xF0B7;"
+      horiz-adv-x="512" d=" M64 160C58.0266666666667 160 53.3333333333333 155.3066666666667 53.3333333333333 149.3333333333334S58.0266666666667 138.6666666666667 64 138.6666666666667S74.6666666666667 143.36 74.6666666666667 149.3333333333334S69.9733333333333 160 64 160M128 85.3333333333334C116.2666666666667 85.3333333333334 106.6666666666667 75.7333333333334 106.6666666666667 64S116.2666666666667 42.6666666666667 128 42.6666666666667S149.3333333333333 52.2666666666667 149.3333333333333 64S139.7333333333333 85.3333333333334 128 85.3333333333334M213.3333333333333 10.6666666666667C207.36 10.6666666666667 202.6666666666667 5.9733333333334 202.6666666666667 0S207.36 -10.6666666666666 213.3333333333333 -10.6666666666666S224 -5.9733333333334 224 0S219.3066666666667 10.6666666666667 213.3333333333333 10.6666666666667M64 245.3333333333334C58.0266666666667 245.3333333333334 53.3333333333333 240.64 53.3333333333333 234.6666666666667S58.0266666666667 224 64 224S74.6666666666667 228.6933333333334 74.6666666666667 234.6666666666667S69.9733333333333 245.3333333333334 64 245.3333333333334M128 170.6666666666667C116.2666666666667 170.6666666666667 106.6666666666667 161.0666666666667 106.6666666666667 149.3333333333334S116.2666666666667 128 128 128S149.3333333333333 137.6 149.3333333333333 149.3333333333334S139.7333333333333 170.6666666666667 128 170.6666666666667M448 160C442.0266666666667 160 437.3333333333333 155.3066666666667 437.3333333333333 149.3333333333334S442.0266666666667 138.6666666666667 448 138.6666666666667S458.6666666666666 143.36 458.6666666666666 149.3333333333334S453.9733333333334 160 448 160M213.3333333333333 85.3333333333334C201.6 85.3333333333334 192 75.7333333333334 192 64S201.6 42.6666666666667 213.3333333333333 42.6666666666667S234.6666666666667 52.2666666666667 234.6666666666667 64S225.0666666666667 85.3333333333334 213.3333333333333 85.3333333333334M53.3333333333333 335.5733333333334L133.9733333333333 254.9333333333334L128 256C116.2666666666667 256 106.6666666666667 246.4000000000001 106.6666666666667 234.6666666666667S116.2666666666667 213.3333333333334 128 213.3333333333334S149.3333333333333 222.9333333333333 149.3333333333333 234.6666666666667C149.3333333333333 236.8 148.6933333333333 238.72 148.0533333333334 240.64L208 180.6933333333333C192.8533333333333 178.3466666666667 181.3333333333333 165.12 181.3333333333333 149.3333333333333C181.3333333333333 131.6266666666667 195.6266666666667 117.3333333333333 213.3333333333333 117.3333333333333C229.12 117.3333333333333 242.3466666666667 128.8533333333334 244.6933333333334 144L304.64 84.0533333333333C302.7200000000001 84.6933333333333 300.8 85.3333333333333 298.6666666666667 85.3333333333333C286.9333333333334 85.3333333333333 277.3333333333334 75.7333333333333 277.3333333333334 63.9999999999999S286.9333333333334 42.6666666666666 298.6666666666667 42.6666666666666S320 52.2666666666666 320 63.9999999999999C320 66.1333333333333 319.36 68.0533333333333 318.7200000000001 69.9733333333333L399.36 -10.6666666666667L426.6666666666667 16.4266666666667L80.4266666666667 362.6666666666667L53.3333333333333 335.5733333333334M298.6666666666667 10.6666666666667C292.6933333333334 10.6666666666667 288 5.9733333333334 288 0S292.6933333333334 -10.6666666666666 298.6666666666667 -10.6666666666666S309.3333333333333 -5.9733333333334 309.3333333333333 0S304.64 10.6666666666667 298.6666666666667 10.6666666666667M384 298.6666666666667C395.7333333333334 298.6666666666667 405.3333333333333 308.2666666666667 405.3333333333333 320S395.7333333333334 341.3333333333334 384 341.3333333333334S362.6666666666667 331.7333333333334 362.6666666666667 320S372.2666666666667 298.6666666666667 384 298.6666666666667M384 213.3333333333334C395.7333333333334 213.3333333333334 405.3333333333333 222.9333333333333 405.3333333333333 234.6666666666667S395.7333333333334 256 384 256S362.6666666666667 246.4000000000001 362.6666666666667 234.6666666666667S372.2666666666667 213.3333333333334 384 213.3333333333334M384 128C395.7333333333334 128 405.3333333333333 137.6 405.3333333333333 149.3333333333334S395.7333333333334 170.6666666666667 384 170.6666666666667S362.6666666666667 161.0666666666667 362.6666666666667 149.3333333333334S372.2666666666667 128 384 128M213.3333333333333 298.6666666666667C225.0666666666667 298.6666666666667 234.6666666666667 308.2666666666667 234.6666666666667 320S225.0666666666667 341.3333333333334 213.3333333333333 341.3333333333334S192 331.7333333333334 192 320S201.6 298.6666666666667 213.3333333333333 298.6666666666667M448 224C453.9733333333334 224 458.6666666666666 228.6933333333334 458.6666666666666 234.6666666666667S453.9733333333334 245.3333333333334 448 245.3333333333334S437.3333333333333 240.64 437.3333333333333 234.6666666666667S442.0266666666667 224 448 224M213.3333333333333 373.3333333333334C219.3066666666667 373.3333333333334 224 378.0266666666667 224 384S219.3066666666667 394.6666666666667 213.3333333333333 394.6666666666667S202.6666666666667 389.9733333333334 202.6666666666667 384S207.36 373.3333333333334 213.3333333333333 373.3333333333334M298.6666666666667 373.3333333333334C304.64 373.3333333333334 309.3333333333333 378.0266666666667 309.3333333333333 384S304.64 394.6666666666667 298.6666666666667 394.6666666666667S288 389.9733333333334 288 384S292.6933333333334 373.3333333333334 298.6666666666667 373.3333333333334M294.4 202.6666666666667H298.6666666666667C316.3733333333334 202.6666666666667 330.6666666666667 216.96 330.6666666666667 234.6666666666667S316.3733333333334 266.6666666666667 298.6666666666667 266.6666666666667S266.6666666666667 252.3733333333334 266.6666666666667 234.6666666666667V230.4000000000001C269.0133333333333 216.1066666666667 280.1066666666667 205.0133333333334 294.4 202.6666666666667M298.6666666666667 298.6666666666667C310.4 298.6666666666667 320 308.2666666666667 320 320S310.4 341.3333333333334 298.6666666666667 341.3333333333334S277.3333333333333 331.7333333333334 277.3333333333333 320S286.9333333333333 298.6666666666667 298.6666666666667 298.6666666666667z" />
+    <glyph glyph-name="blur-radial"
+      unicode="&#xF0B8;"
+      horiz-adv-x="512" d=" M298.6666666666667 170.6666666666667C286.9333333333333 170.6666666666667 277.3333333333333 161.0666666666667 277.3333333333333 149.3333333333334S286.9333333333333 128 298.6666666666667 128S320 137.6 320 149.3333333333334S310.4 170.6666666666667 298.6666666666667 170.6666666666667M298.6666666666667 96C292.6933333333334 96 288 91.3066666666667 288 85.3333333333334S292.6933333333334 74.6666666666667 298.6666666666667 74.6666666666667S309.3333333333333 79.36 309.3333333333333 85.3333333333334S304.64 96 298.6666666666667 96M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M362.6666666666667 245.3333333333334C356.6933333333333 245.3333333333334 352 240.64 352 234.6666666666667S356.6933333333333 224 362.6666666666667 224S373.3333333333333 228.6933333333334 373.3333333333333 234.6666666666667S368.64 245.3333333333334 362.6666666666667 245.3333333333334M362.6666666666667 160C356.6933333333333 160 352 155.3066666666667 352 149.3333333333334S356.6933333333333 138.6666666666667 362.6666666666667 138.6666666666667S373.3333333333333 143.36 373.3333333333333 149.3333333333334S368.64 160 362.6666666666667 160M298.6666666666667 288C304.64 288 309.3333333333333 292.6933333333334 309.3333333333333 298.6666666666667S304.64 309.3333333333334 298.6666666666667 309.3333333333334S288 304.64 288 298.6666666666667S292.6933333333334 288 298.6666666666667 288M298.6666666666667 256C286.9333333333333 256 277.3333333333333 246.4000000000001 277.3333333333333 234.6666666666667S286.9333333333333 213.3333333333334 298.6666666666667 213.3333333333334S320 222.9333333333333 320 234.6666666666667S310.4 256 298.6666666666667 256M213.3333333333333 288C219.3066666666667 288 224 292.6933333333334 224 298.6666666666667S219.3066666666667 309.3333333333334 213.3333333333333 309.3333333333334S202.6666666666667 304.64 202.6666666666667 298.6666666666667S207.36 288 213.3333333333333 288M149.3333333333333 160C143.36 160 138.6666666666667 155.3066666666667 138.6666666666667 149.3333333333334S143.36 138.6666666666667 149.3333333333333 138.6666666666667S160 143.36 160 149.3333333333334S155.3066666666667 160 149.3333333333333 160M213.3333333333333 96C207.36 96 202.6666666666667 91.3066666666667 202.6666666666667 85.3333333333334S207.36 74.6666666666667 213.3333333333333 74.6666666666667S224 79.36 224 85.3333333333334S219.3066666666667 96 213.3333333333333 96M149.3333333333333 245.3333333333334C143.36 245.3333333333334 138.6666666666667 240.64 138.6666666666667 234.6666666666667S143.36 224 149.3333333333333 224S160 228.6933333333334 160 234.6666666666667S155.3066666666667 245.3333333333334 149.3333333333333 245.3333333333334M213.3333333333333 170.6666666666667C201.6 170.6666666666667 192 161.0666666666667 192 149.3333333333334S201.6 128 213.3333333333333 128S234.6666666666667 137.6 234.6666666666667 149.3333333333334S225.0666666666667 170.6666666666667 213.3333333333333 170.6666666666667M213.3333333333333 256C201.6 256 192 246.4000000000001 192 234.6666666666667S201.6 213.3333333333334 213.3333333333333 213.3333333333334S234.6666666666667 222.9333333333333 234.6666666666667 234.6666666666667S225.0666666666667 256 213.3333333333333 256z" />
+    <glyph glyph-name="bomb"
+      unicode="&#xF690;"
+      horiz-adv-x="512" d=" M240 320C240 358.1866666666667 271.1466666666667 389.3333333333333 309.3333333333333 389.3333333333333S378.6666666666667 358.1866666666667 378.6666666666667 320C378.6666666666667 311.04 385.7066666666666 304 394.6666666666667 304S410.6666666666667 311.04 410.6666666666667 320V336H442.6666666666667V320C442.6666666666667 293.5466666666667 421.12 272 394.6666666666667 272S346.6666666666667 293.5466666666667 346.6666666666667 320C346.6666666666667 340.6933333333334 330.0266666666667 357.3333333333334 309.3333333333333 357.3333333333334S272 340.6933333333334 272 320H298.6666666666667V292.48C360.32 274.1333333333334 405.3333333333333 216.96 405.3333333333333 149.3333333333334C405.3333333333333 66.7733333333333 338.56 0 256 0S106.6666666666667 66.7733333333333 106.6666666666667 149.3333333333334C106.6666666666667 216.96 151.68 274.1333333333334 213.3333333333333 292.48V320H240M469.3333333333333 320H512V298.6666666666667H469.3333333333333V320M405.3333333333333 362.6666666666667V405.3333333333333H426.6666666666667V362.6666666666667H405.3333333333333M446.08 354.56L476.3733333333333 384.8533333333334L491.52 369.7066666666667L461.2266666666666 339.4133333333334L446.08 354.56z" />
+    <glyph glyph-name="bomb-off"
+      unicode="&#xF6C4;"
+      horiz-adv-x="512" d=" M309.3333333333333 389.3333333333333C270.9333333333333 389.3333333333333 240 358.4 240 320H213.3333333333333V292.48C198.6133333333334 288 184.96 281.3866666666667 172.3733333333333 273.0666666666667L379.52 65.92C396.3733333333333 90.4533333333333 405.3333333333333 119.68 405.3333333333333 149.3333333333334C405.3333333333333 216.96 360.32 274.1333333333334 298.6666666666667 292.48V320H272C272 340.6933333333334 288.64 357.3333333333334 309.3333333333333 357.3333333333334S346.6666666666667 340.6933333333334 346.6666666666667 320C346.6666666666667 293.5466666666667 368.2133333333334 272 394.6666666666667 272S442.4533333333333 293.5466666666667 442.4533333333333 320V336H410.6666666666667V320C410.6666666666667 311.04 403.4133333333333 304 394.6666666666667 304C385.7066666666666 304 378.6666666666667 311.04 378.6666666666667 320C378.6666666666667 358.4 347.52 389.3333333333333 309.3333333333333 389.3333333333333M72.7466666666667 312.32L42.6666666666667 282.24L118.4 206.5066666666667C110.9333333333333 189.0133333333333 106.6666666666667 169.8133333333334 106.6666666666667 149.3333333333334C106.6666666666667 66.9866666666667 173.44 0 256 0C275.6266666666667 0 295.04 4.0533333333334 313.1733333333333 11.7333333333333L388.9066666666667 -64L418.9866666666667 -33.92L72.7466666666667 312.32z" />
+    <glyph glyph-name="bone"
+      unicode="&#xF0B9;"
+      horiz-adv-x="512" d=" M170.6666666666667 149.3333333333334C170.6666666666667 113.92 142.08 85.3333333333334 106.6666666666667 85.3333333333334S42.6666666666667 113.92 42.6666666666667 149.3333333333334C42.6666666666667 165.76 48.8533333333333 180.6933333333334 58.88 192C48.8533333333333 203.3066666666667 42.6666666666667 218.24 42.6666666666667 234.6666666666667C42.6666666666667 270.0800000000001 71.2533333333333 298.6666666666667 106.6666666666667 298.6666666666667S170.6666666666667 270.0800000000001 170.6666666666667 234.6666666666667C199.04 232.96 227.6266666666667 231.04 256 231.04S312.96 232.96 341.3333333333333 234.6666666666667C341.3333333333333 270.0800000000001 369.92 298.6666666666667 405.3333333333333 298.6666666666667S469.3333333333333 270.0800000000001 469.3333333333333 234.6666666666667C469.3333333333333 218.24 463.1466666666666 203.3066666666667 453.1199999999999 192C463.1466666666666 180.6933333333334 469.3333333333333 165.76 469.3333333333333 149.3333333333334C469.3333333333333 113.92 440.7466666666667 85.3333333333334 405.3333333333333 85.3333333333334S341.3333333333333 113.92 341.3333333333333 149.3333333333334C312.96 151.04 284.3733333333334 152.96 256 152.96S199.04 151.04 170.6666666666667 149.3333333333334z" />
+    <glyph glyph-name="book"
+      unicode="&#xF0BA;"
+      horiz-adv-x="512" d=" M384 -21.3333333333333C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.3466666666667 407.4666666666667 405.3333333333333 384 405.3333333333333H256V256L202.6666666666667 288L149.3333333333333 256V405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384z" />
+    <glyph glyph-name="book-lock"
+      unicode="&#xF799;"
+      horiz-adv-x="512" d=" M384 405.3333333333333H256V256L202.6666666666667 288L149.3333333333333 256V405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.1333333333334 407.4666666666667 405.3333333333333 384 405.3333333333333M384 21.3333333333334H213.3333333333333V106.6666666666667H234.6666666666667V128C234.6666666666667 163.4133333333334 263.2533333333334 192 298.6666666666667 192S362.6666666666667 163.4133333333334 362.6666666666667 128V106.6666666666667H384V21.3333333333334M320 128V106.6666666666667H277.3333333333333V128C277.3333333333333 139.7333333333334 286.9333333333333 149.3333333333334 298.6666666666667 149.3333333333334S320 139.7333333333334 320 128z" />
+    <glyph glyph-name="book-lock-open"
+      unicode="&#xF79A;"
+      horiz-adv-x="512" d=" M384 405.3333333333333H256V256L202.6666666666667 288L149.3333333333333 256V405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.1333333333334 407.4666666666667 405.3333333333333 384 405.3333333333333M384 21.3333333333334H213.3333333333333V106.6666666666667H234.6666666666667V149.3333333333334C234.6666666666667 184.7466666666667 263.2533333333334 213.3333333333334 298.6666666666667 213.3333333333334S362.6666666666667 184.7466666666667 362.6666666666667 149.3333333333334H320C320 161.0666666666667 310.4 170.6666666666667 298.6666666666667 170.6666666666667S277.3333333333333 161.0666666666667 277.3333333333333 149.3333333333334V106.6666666666667H384V21.3333333333334z" />
+    <glyph glyph-name="book-minus"
+      unicode="&#xF5D9;"
+      horiz-adv-x="512" d=" M384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.5333333333333 405.3333333333333 128 405.3333333333333H149.3333333333333V256L202.6666666666667 288L256 256V405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333M384 64V106.6666666666667H256V64H384z" />
+    <glyph glyph-name="book-multiple"
+      unicode="&#xF0BB;"
+      horiz-adv-x="512" d=" M405.3333333333333 64H192C168.5333333333333 64 149.3333333333333 83.2 149.3333333333333 106.6666666666667V362.6666666666667C149.3333333333333 386.1333333333334 168.5333333333333 405.3333333333333 192 405.3333333333333H213.3333333333333V298.6666666666667L256 330.6666666666667L298.6666666666667 298.6666666666667V405.3333333333333H405.3333333333333C428.8 405.3333333333333 448 386.1333333333334 448 362.6666666666667V106.6666666666667C448 83.2 428.8 64 405.3333333333333 64M362.6666666666667 21.3333333333334V-21.3333333333333H106.6666666666667C83.2 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V320H106.6666666666667V21.3333333333334H362.6666666666667z" />
+    <glyph glyph-name="book-multiple-minus"
+      unicode="&#xFA93;"
+      horiz-adv-x="512" d=" M192 405.3333333333333C168.5333333333333 405.3333333333333 149.3333333333333 386.1333333333334 149.3333333333333 362.6666666666667V106.6666666666667C149.3333333333333 83.2 168.5333333333333 64 192 64H405.3333333333333C428.8 64 448 83.2 448 106.6666666666667V362.6666666666667C448 386.1333333333334 428.8 405.3333333333333 405.3333333333333 405.3333333333333H298.6666666666667V298.6666666666667L256 330.6666666666667L213.3333333333333 298.6666666666667V405.3333333333333H192M64 320V21.3333333333334C64 -2.1333333333333 83.2 -21.3333333333333 106.6666666666667 -21.3333333333333H362.6666666666667V21.3333333333334H106.6666666666667V320H64M405.3333333333333 192V149.3333333333334H277.3333333333333V192H405.3333333333333z" />
+    <glyph glyph-name="book-multiple-plus"
+      unicode="&#xFA94;"
+      horiz-adv-x="512" d=" M192 405.3333333333333C168.5333333333333 405.3333333333333 149.3333333333333 386.1333333333334 149.3333333333333 362.6666666666667V106.6666666666667C149.3333333333333 83.2 168.5333333333333 64 192 64H405.3333333333333C428.8 64 448 83.2 448 106.6666666666667V362.6666666666667C448 386.1333333333334 428.8 405.3333333333333 405.3333333333333 405.3333333333333H298.6666666666667V298.6666666666667L256 330.6666666666667L213.3333333333333 298.6666666666667V405.3333333333333H192M64 320V21.3333333333334C64 -2.1333333333333 83.2 -21.3333333333333 106.6666666666667 -21.3333333333333H362.6666666666667V21.3333333333334H106.6666666666667V320H64M320 234.6666666666667H362.6666666666667V192H405.3333333333333V149.3333333333334H362.6666666666667V106.6666666666667H320V149.3333333333334H277.3333333333333V192H320V234.6666666666667z" />
+    <glyph glyph-name="book-multiple-remove"
+      unicode="&#xFA95;"
+      horiz-adv-x="512" d=" M192 405.3333333333333C168.5333333333333 405.3333333333333 149.3333333333333 386.1333333333334 149.3333333333333 362.6666666666667V106.6666666666667C149.3333333333333 83.2 168.5333333333333 64 192 64H405.3333333333333C428.8 64 448 83.2 448 106.6666666666667V362.6666666666667C448 386.1333333333334 428.8 405.3333333333333 405.3333333333333 405.3333333333333H298.6666666666667V298.6666666666667L256 330.6666666666667L213.3333333333333 298.6666666666667V405.3333333333333H192M64 320V21.3333333333334C64 -2.1333333333333 83.2 -21.3333333333333 106.6666666666667 -21.3333333333333H362.6666666666667V21.3333333333334H106.6666666666667V320H64M311.2533333333334 231.04L341.3333333333333 200.7466666666667L371.4133333333333 231.04L401.7066666666666 200.7466666666667L371.4133333333333 170.6666666666667L401.7066666666666 140.5866666666667L371.4133333333333 110.2933333333334L341.3333333333333 140.5866666666667L311.2533333333334 110.2933333333334L280.96 140.5866666666667L311.2533333333334 170.6666666666667L280.96 200.7466666666667L311.2533333333334 231.04z" />
+    <glyph glyph-name="book-multiple-variant"
+      unicode="&#xF0BC;"
+      horiz-adv-x="512" d=" M405.3333333333333 64H192C168.5333333333333 64 149.3333333333333 83.2 149.3333333333333 106.6666666666667V362.6666666666667C149.3333333333333 386.1333333333334 168.5333333333333 405.3333333333333 192 405.3333333333333H405.3333333333333C428.8 405.3333333333333 448 386.1333333333334 448 362.6666666666667V106.6666666666667C448 83.2 428.8 64 405.3333333333333 64M213.3333333333333 256L256 288L298.6666666666667 256V362.6666666666667H213.3333333333333V256M362.6666666666667 21.3333333333334V-21.3333333333333H106.6666666666667C83.2 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V320H106.6666666666667V21.3333333333334H362.6666666666667z" />
+    <glyph glyph-name="book-open"
+      unicode="&#xF0BD;"
+      horiz-adv-x="512" d=" M277.3333333333333 192H426.6666666666667V160H277.3333333333333M277.3333333333333 245.3333333333334H426.6666666666667V213.3333333333334H277.3333333333333M277.3333333333333 138.6666666666667H426.6666666666667V106.6666666666667H277.3333333333333M448 362.6666666666667H64C40.5333333333333 362.6666666666667 21.3333333333333 343.4666666666667 21.3333333333333 320V42.6666666666667C21.3333333333333 19.2 40.5333333333333 0 64 0H448C471.4666666666667 0 490.6666666666666 19.2 490.6666666666666 42.6666666666667V320C490.6666666666666 343.4666666666667 471.4666666666667 362.6666666666667 448 362.6666666666667M448 42.6666666666667H256V320H448" />
+    <glyph glyph-name="book-open-outline"
+      unicode="&#xFB3F;"
+      horiz-adv-x="512" d=" M448 362.6666666666667H64C40.5333333333333 362.6666666666667 21.3333333333333 343.4666666666667 21.3333333333333 320V42.6666666666667C21.3333333333333 19.2 40.5333333333333 0 64 0H448C471.4666666666667 0 490.6666666666666 19.2 490.6666666666666 42.6666666666667V320C490.6666666666666 343.4666666666667 471.4666666666667 362.6666666666667 448 362.6666666666667M64 42.6666666666667V320H234.6666666666667V42.6666666666667H64M448 42.6666666666667H277.3333333333333V320H448V42.6666666666667M298.6666666666667 245.3333333333334H426.6666666666667V213.3333333333334H298.6666666666667V245.3333333333334M298.6666666666667 192H426.6666666666667V160H298.6666666666667V192M298.6666666666667 138.6666666666667H426.6666666666667V106.6666666666667H298.6666666666667V138.6666666666667z" />
+    <glyph glyph-name="book-open-page-variant"
+      unicode="&#xF5DA;"
+      horiz-adv-x="512" d=" M405.3333333333333 405.3333333333333L298.6666666666667 309.3333333333334V74.6666666666667L405.3333333333333 170.6666666666667V405.3333333333333M138.6666666666667 341.3333333333334C97.0666666666667 341.3333333333334 52.2666666666667 332.8 21.3333333333333 309.3333333333334V-3.4133333333333C21.3333333333333 -8.7466666666667 26.6666666666667 -14.08 32 -14.08C34.1333333333333 -14.08 35.2 -12.5866666666666 37.3333333333333 -12.5866666666666C66.1333333333333 1.28 107.7333333333333 10.6666666666667 138.6666666666667 10.6666666666667C180.2666666666667 10.6666666666667 225.0666666666667 2.1333333333334 256 -21.3333333333333C284.8 -3.1999999999999 337.0666666666667 10.6666666666667 373.3333333333333 10.6666666666667C408.5333333333333 10.6666666666667 444.8 4.0533333333334 474.6666666666666 -11.9466666666666C476.8 -13.0133333333333 477.8666666666666 -12.5866666666666 480 -12.5866666666666C485.3333333333333 -12.5866666666666 490.6666666666666 -7.2533333333333 490.6666666666666 -1.92V309.3333333333334C477.8666666666666 318.9333333333334 464 325.3333333333334 448 330.6666666666667V42.6666666666667C424.5333333333333 50.1333333333334 398.9333333333333 53.3333333333334 373.3333333333333 53.3333333333334C337.0666666666667 53.3333333333334 284.8 39.4666666666667 256 21.3333333333334V309.3333333333334C225.0666666666667 332.8 180.2666666666667 341.3333333333334 138.6666666666667 341.3333333333334z" />
+    <glyph glyph-name="book-open-variant"
+      unicode="&#xF0BE;"
+      horiz-adv-x="512" d=" M448 341.3333333333334C424.32 348.8 398.2933333333334 352 373.3333333333333 352C331.7333333333334 352 286.9333333333333 343.4666666666667 256 320C225.0666666666667 343.4666666666667 180.2666666666667 352 138.6666666666667 352C97.0666666666667 352 52.2666666666667 343.4666666666667 21.3333333333333 320V7.4666666666667C21.3333333333333 2.1333333333334 26.6666666666667 -3.1999999999999 32 -3.1999999999999C34.1333333333333 -3.1999999999999 35.2 -2.1333333333333 37.3333333333333 -2.1333333333333C66.1333333333333 11.7333333333333 107.7333333333333 21.3333333333334 138.6666666666667 21.3333333333334C180.2666666666667 21.3333333333334 225.0666666666667 12.8000000000001 256 -10.6666666666666C284.8 7.4666666666667 337.0666666666667 21.3333333333334 373.3333333333333 21.3333333333334C408.5333333333333 21.3333333333334 444.8 14.9333333333333 474.6666666666666 -1.0666666666667C476.8 -2.1333333333333 477.8666666666666 -2.1333333333333 480 -2.1333333333333C485.3333333333333 -2.1333333333333 490.6666666666666 3.2 490.6666666666666 8.5333333333333V320C477.8666666666666 329.6 464 336 448 341.3333333333334M448 53.3333333333334C424.5333333333333 60.8000000000001 398.9333333333333 64 373.3333333333333 64C337.0666666666667 64 284.8 50.1333333333334 256 32V277.3333333333334C284.8 295.4666666666667 337.0666666666667 309.3333333333334 373.3333333333333 309.3333333333334C398.9333333333333 309.3333333333334 424.5333333333333 306.1333333333334 448 298.6666666666667V53.3333333333334z" />
+    <glyph glyph-name="book-outline"
+      unicode="&#xFB40;"
+      horiz-adv-x="512" d=" M384 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.1333333333334 407.4666666666667 405.3333333333333 384 405.3333333333333M192 362.6666666666667H234.6666666666667V256L213.3333333333333 272L192 256V362.6666666666667M384 21.3333333333334H128V362.6666666666667H149.3333333333333V170.6666666666667L213.3333333333333 218.6666666666667L277.3333333333333 170.6666666666667V362.6666666666667H384V21.3333333333334z" />
+    <glyph glyph-name="book-plus"
+      unicode="&#xF5DB;"
+      horiz-adv-x="512" d=" M384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.5333333333333 405.3333333333333 128 405.3333333333333H149.3333333333333V256L202.6666666666667 288L256 256V405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333M298.6666666666667 21.3333333333334H341.3333333333333V64H384V106.6666666666667H341.3333333333333V149.3333333333334H298.6666666666667V106.6666666666667H256V64H298.6666666666667V21.3333333333334z" />
+    <glyph glyph-name="book-remove"
+      unicode="&#xFA96;"
+      horiz-adv-x="512" d=" M384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.5333333333333 405.3333333333333 128 405.3333333333333H149.3333333333333V256L202.6666666666667 288L256 256V405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333M350.08 24.96L380.3733333333333 55.2533333333334L350.08 85.3333333333334L380.3733333333333 115.4133333333334L350.08 145.7066666666667L320 115.4133333333334L289.92 145.7066666666667L259.6266666666667 115.4133333333334L289.92 85.3333333333334L259.6266666666667 55.2533333333333L289.92 24.96L320 55.2533333333333L350.08 24.96z" />
+    <glyph glyph-name="book-variant"
+      unicode="&#xF0BF;"
+      horiz-adv-x="512" d=" M128 362.6666666666667H234.6666666666667V192L181.3333333333333 224L128 192M384 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.1333333333334 407.4666666666667 405.3333333333333 384 405.3333333333333z" />
+    <glyph glyph-name="bookmark"
+      unicode="&#xF0C0;"
+      horiz-adv-x="512" d=" M362.6666666666667 384H149.3333333333333C125.8666666666667 384 106.6666666666667 364.8 106.6666666666667 341.3333333333334V0L256 64L405.3333333333333 0V341.3333333333334C405.3333333333333 365.0133333333333 386.1333333333334 384 362.6666666666667 384z" />
+    <glyph glyph-name="bookmark-check"
+      unicode="&#xF0C1;"
+      horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M234.6666666666667 149.3333333333334L368 282.4533333333334L337.92 312.7466666666667L234.6666666666667 209.4933333333334L179.4133333333333 264.7466666666667L149.3333333333333 234.6666666666667L234.6666666666667 149.3333333333334z" />
+    <glyph glyph-name="bookmark-minus"
+      unicode="&#xF9CB;"
+      horiz-adv-x="512" d=" M362.6666666666667 384H149.3333333333333C125.8666666666667 384 106.6666666666667 364.8 106.6666666666667 341.3333333333334V0L256 64L405.3333333333333 0V341.3333333333334C405.3333333333333 364.8 386.1333333333334 384 362.6666666666667 384M320 213.3333333333334H192V256H320V213.3333333333334z" />
+    <glyph glyph-name="bookmark-minus-outline"
+      unicode="&#xF9CC;"
+      horiz-adv-x="512" d=" M192 213.3333333333334V256H320V213.3333333333334H192M405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667C386.3466666666667 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334M362.6666666666667 341.3333333333334H149.3333333333333V64L256 110.5066666666667L362.6666666666667 64V341.3333333333334z" />
+    <glyph glyph-name="bookmark-music"
+      unicode="&#xF0C2;"
+      horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M234.6666666666667 213.3333333333334C211.2 213.3333333333334 192 194.1333333333333 192 170.6666666666667S211.2 128 234.6666666666667 128S277.3333333333333 147.2000000000001 277.3333333333333 170.6666666666667V277.3333333333334H341.3333333333333V320H256V207.5733333333334C249.8133333333334 211.2 242.3466666666667 213.3333333333334 234.6666666666667 213.3333333333334z" />
+    <glyph glyph-name="bookmark-off"
+      unicode="&#xF9CD;"
+      horiz-adv-x="512" d=" M426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L357.9733333333334 20.2666666666667L256 64L106.6666666666667 0V271.5733333333334L42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334M405.3333333333333 81.92V341.3333333333334C405.3333333333333 365.0133333333333 386.1333333333334 384 362.6666666666667 384H149.3333333333333C136.7466666666667 384 125.6533333333333 378.24 117.3333333333333 369.4933333333334L405.3333333333333 81.92z" />
+    <glyph glyph-name="bookmark-off-outline"
+      unicode="&#xF9CE;"
+      horiz-adv-x="512" d=" M69.9733333333333 362.6666666666667L42.6666666666667 335.5733333333334L106.6666666666667 271.5733333333334V0L256 64L357.9733333333334 20.2666666666667L399.5733333333333 -21.3333333333333L426.6666666666667 5.9733333333334L69.9733333333333 362.6666666666667M149.3333333333333 64V228.9066666666667L277.3333333333333 101.3333333333334L256 110.5066666666667L149.3333333333333 64M149.3333333333333 337.92L117.3333333333333 369.7066666666667C125.44 378.4533333333334 136.7466666666667 384 149.3333333333333 384H362.6666666666667C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V81.92L362.6666666666667 124.5866666666667V341.3333333333334H149.3333333333333V337.92z" />
+    <glyph glyph-name="bookmark-outline"
+      unicode="&#xF0C3;"
+      horiz-adv-x="512" d=" M362.6666666666667 64L256 110.5066666666667L149.3333333333333 64V341.3333333333334H362.6666666666667M362.6666666666667 384H149.3333333333333C125.8666666666667 384 106.6666666666667 364.8 106.6666666666667 341.3333333333334V0L256 64L405.3333333333333 0V341.3333333333334C405.3333333333333 365.0133333333333 386.1333333333334 384 362.6666666666667 384z" />
+    <glyph glyph-name="bookmark-plus"
+      unicode="&#xF0C5;"
+      horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M234.6666666666667 298.6666666666667V256H192V213.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333V213.3333333333334H320V256H277.3333333333333V298.6666666666667H234.6666666666667z" />
+    <glyph glyph-name="bookmark-plus-outline"
+      unicode="&#xF0C4;"
+      horiz-adv-x="512" d=" M362.6666666666667 64V341.3333333333334H149.3333333333333V64L256 110.5066666666667L362.6666666666667 64M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M234.6666666666667 298.6666666666667H277.3333333333333V256H320V213.3333333333334H277.3333333333333V170.6666666666667H234.6666666666667V213.3333333333334H192V256H234.6666666666667V298.6666666666667z" />
+    <glyph glyph-name="bookmark-remove"
+      unicode="&#xF0C6;"
+      horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V0L256 64L106.6666666666667 0V341.3333333333334C106.6666666666667 365.0133333333333 125.8666666666667 384 149.3333333333333 384H362.6666666666667M174.2933333333333 264.9600000000001L225.92 213.3333333333334L174.2933333333333 161.92L204.5866666666667 131.6266666666667L256 183.2533333333333L307.4133333333333 131.6266666666667L337.7066666666667 161.92L286.08 213.3333333333334L337.7066666666667 264.9600000000001L307.4133333333333 295.04L256 243.6266666666667L204.5866666666667 295.04L174.2933333333333 264.9600000000001z" />
+    <glyph glyph-name="boombox"
+      unicode="&#xF5DC;"
+      horiz-adv-x="512" d=" M149.3333333333333 341.3333333333334L106.6666666666667 298.6666666666667V277.3333333333334H64C52.2666666666667 277.3333333333334 42.6666666666667 267.7333333333334 42.6666666666667 256V85.3333333333334C42.6666666666667 73.6 52.2666666666667 64 64 64H448C459.7333333333333 64 469.3333333333333 73.6 469.3333333333333 85.3333333333334V256C469.3333333333333 267.7333333333334 459.7333333333333 277.3333333333334 448 277.3333333333334H405.3333333333333V298.6666666666667L362.6666666666667 341.3333333333334H149.3333333333333M149.3333333333333 298.6666666666667H362.6666666666667V277.3333333333334H149.3333333333333V298.6666666666667M234.6666666666667 256H277.3333333333333C283.3066666666666 256 288 251.3066666666667 288 245.3333333333334S283.3066666666666 234.6666666666667 277.3333333333333 234.6666666666667H234.6666666666667C228.6933333333334 234.6666666666667 224 239.36 224 245.3333333333334S228.6933333333334 256 234.6666666666667 256M160 224C195.4133333333333 224 224 195.4133333333334 224 160S195.4133333333333 96 160 96S96 124.5866666666667 96 160S124.5866666666667 224 160 224M352 224C387.4133333333333 224 416 195.4133333333334 416 160S387.4133333333333 96 352 96S288 124.5866666666667 288 160S316.5866666666667 224 352 224M160 192C142.2933333333333 192 128 177.7066666666667 128 160S142.2933333333333 128 160 128S192 142.2933333333334 192 160S177.7066666666667 192 160 192M352 192C334.2933333333333 192 320 177.7066666666667 320 160S334.2933333333333 128 352 128S384 142.2933333333334 384 160S369.7066666666666 192 352 192z" />
+    <glyph glyph-name="bootstrap"
+      unicode="&#xF6C5;"
+      horiz-adv-x="512" d=" M64 341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334M160 320V64H266.6666666666667C314.6666666666667 64 352 90.6666666666667 352 138.6666666666667C352 181.3333333333334 315.0933333333333 202.6666666666667 282.6666666666667 202.6666666666667C315.0933333333333 202.6666666666667 341.3333333333333 228.9066666666667 341.3333333333333 261.3333333333334S304.4266666666666 320 272 320H160M213.3333333333333 213.3333333333334V277.3333333333334H245.3333333333333C263.04 277.3333333333334 277.3333333333333 263.04 277.3333333333333 245.3333333333334S263.04 213.3333333333334 245.3333333333333 213.3333333333334H213.3333333333333M213.3333333333333 170.6666666666667H256C273.7066666666667 170.6666666666667 288 156.3733333333333 288 138.6666666666667S273.7066666666667 106.6666666666667 256 106.6666666666667H213.3333333333333V170.6666666666667z" />
+    <glyph glyph-name="border-all"
+      unicode="&#xF0C7;"
+      horiz-adv-x="512" d=" M405.3333333333333 213.3333333333334H277.3333333333333V341.3333333333334H405.3333333333333M405.3333333333333 42.6666666666667H277.3333333333333V170.6666666666667H405.3333333333333M234.6666666666667 213.3333333333334H106.6666666666667V341.3333333333334H234.6666666666667M234.6666666666667 42.6666666666667H106.6666666666667V170.6666666666667H234.6666666666667M64 0H448V384H64V0z" />
+    <glyph glyph-name="border-all-variant"
+      unicode="&#xF8A0;"
+      horiz-adv-x="512" d=" M64 0V384H448V0H64M106.6666666666667 341.3333333333334V42.6666666666667H405.3333333333333V341.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="border-bottom"
+      unicode="&#xF0C8;"
+      horiz-adv-x="512" d=" M106.6666666666667 128H64V85.3333333333334H106.6666666666667M64 0H448V42.6666666666667H64M106.6666666666667 213.3333333333334H64V170.6666666666667H106.6666666666667M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M106.6666666666667 298.6666666666667H64V256H106.6666666666667M405.3333333333333 85.3333333333334H448V128H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M362.6666666666667 384H320V341.3333333333334H362.6666666666667M277.3333333333333 384H234.6666666666667V341.3333333333334H277.3333333333333M362.6666666666667 213.3333333333334H320V170.6666666666667H362.6666666666667M277.3333333333333 298.6666666666667H234.6666666666667V256H277.3333333333333M106.6666666666667 384H64V341.3333333333334H106.6666666666667M277.3333333333333 213.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333M192 384H149.3333333333333V341.3333333333334H192M277.3333333333333 128H234.6666666666667V85.3333333333334H277.3333333333333M192 213.3333333333334H149.3333333333333V170.6666666666667H192V213.3333333333334z" />
+    <glyph glyph-name="border-bottom-variant"
+      unicode="&#xF8A1;"
+      horiz-adv-x="512" d=" M106.6666666666667 128H64V85.3333333333334H106.6666666666667M64 0H448V42.6666666666667H64M106.6666666666667 213.3333333333334H64V170.6666666666667H106.6666666666667M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M106.6666666666667 298.6666666666667H64V256H106.6666666666667M405.3333333333333 85.3333333333334H448V128H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M362.6666666666667 384H320V341.3333333333334H362.6666666666667M277.3333333333333 384H234.6666666666667V341.3333333333334H277.3333333333333M106.6666666666667 384H64V341.3333333333334H106.6666666666667M192 384H149.3333333333333V341.3333333333334H192" />
+    <glyph glyph-name="border-color"
+      unicode="&#xF0C9;"
+      horiz-adv-x="512" d=" M441.8133333333334 361.8133333333334C450.1333333333334 370.1333333333334 450.1333333333334 384 441.8133333333334 391.8933333333333L391.8933333333333 441.8133333333334C384 450.1333333333334 370.1333333333334 450.1333333333334 361.8133333333334 441.8133333333334L320 400L400 320M378.6666666666667 298.6666666666667L298.6666666666667 378.6666666666667L85.3333333333333 165.3333333333334V85.3333333333334H165.3333333333333L378.6666666666667 298.6666666666667z" />
+    <glyph glyph-name="border-horizontal"
+      unicode="&#xF0CA;"
+      horiz-adv-x="512" d=" M405.3333333333333 0H448V42.6666666666667H405.3333333333333M320 0H362.6666666666667V42.6666666666667H320M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M64 170.6666666666667H448V213.3333333333334H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M405.3333333333333 85.3333333333334H448V128H405.3333333333333M277.3333333333333 384H234.6666666666667V341.3333333333334H277.3333333333333M277.3333333333333 298.6666666666667H234.6666666666667V256H277.3333333333333M362.6666666666667 384H320V341.3333333333334H362.6666666666667M192 384H149.3333333333333V341.3333333333334H192M106.6666666666667 384H64V341.3333333333334H106.6666666666667M149.3333333333333 0H192V42.6666666666667H149.3333333333333M64 85.3333333333334H106.6666666666667V128H64M106.6666666666667 298.6666666666667H64V256H106.6666666666667M64 0H106.6666666666667V42.6666666666667H64V0z" />
+    <glyph glyph-name="border-inside"
+      unicode="&#xF0CB;"
+      horiz-adv-x="512" d=" M405.3333333333333 85.3333333333334H448V128H405.3333333333333M405.3333333333333 0H448V42.6666666666667H405.3333333333333M277.3333333333333 384H234.6666666666667V213.3333333333334H64V170.6666666666667H234.6666666666667V0H277.3333333333333V170.6666666666667H448V213.3333333333334H277.3333333333333M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 341.3333333333334H448V384H405.3333333333333M405.3333333333333 256H448V298.6666666666667H405.3333333333333M362.6666666666667 384H320V341.3333333333334H362.6666666666667M106.6666666666667 384H64V341.3333333333334H106.6666666666667M192 384H149.3333333333333V341.3333333333334H192M64 85.3333333333334H106.6666666666667V128H64M106.6666666666667 298.6666666666667H64V256H106.6666666666667M149.3333333333333 0H192V42.6666666666667H149.3333333333333M64 0H106.6666666666667V42.6666666666667H64V0z" />
+    <glyph glyph-name="border-left"
+      unicode="&#xF0CC;"
+      horiz-adv-x="512" d=" M320 341.3333333333334H362.6666666666667V384H320M320 170.6666666666667H362.6666666666667V213.3333333333334H320M405.3333333333333 0H448V42.6666666666667H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M405.3333333333333 85.3333333333334H448V128H405.3333333333333M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 256H448V298.6666666666667H405.3333333333333M64 0H106.6666666666667V384H64M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 341.3333333333334H192V384H149.3333333333333M149.3333333333333 0H192V42.6666666666667H149.3333333333333M234.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M234.6666666666667 256H277.3333333333333V298.6666666666667H234.6666666666667M234.6666666666667 341.3333333333334H277.3333333333333V384H234.6666666666667M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667V0z" />
+    <glyph glyph-name="border-left-variant"
+      unicode="&#xF8A2;"
+      horiz-adv-x="512" d=" M320 341.3333333333334H362.6666666666667V384H320M405.3333333333333 0H448V42.6666666666667H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M405.3333333333333 85.3333333333334H448V128H405.3333333333333M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 256H448V298.6666666666667H405.3333333333333M64 0H106.6666666666667V384H64M149.3333333333333 341.3333333333334H192V384H149.3333333333333M149.3333333333333 0H192V42.6666666666667H149.3333333333333M234.6666666666667 341.3333333333334H277.3333333333333V384H234.6666666666667M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667V0z" />
+    <glyph glyph-name="border-none"
+      unicode="&#xF0CD;"
+      horiz-adv-x="512" d=" M320 341.3333333333334H362.6666666666667V384H320M320 170.6666666666667H362.6666666666667V213.3333333333334H320M320 0H362.6666666666667V42.6666666666667H320M234.6666666666667 341.3333333333334H277.3333333333333V384H234.6666666666667M405.3333333333333 341.3333333333334H448V384H405.3333333333333M234.6666666666667 256H277.3333333333333V298.6666666666667H234.6666666666667M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 0H448V42.6666666666667H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 85.3333333333334H448V128H405.3333333333333M234.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M64 341.3333333333334H106.6666666666667V384H64M64 256H106.6666666666667V298.6666666666667H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M64 85.3333333333334H106.6666666666667V128H64M64 0H106.6666666666667V42.6666666666667H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M149.3333333333333 0H192V42.6666666666667H149.3333333333333M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 341.3333333333334H192V384H149.3333333333333V341.3333333333334z" />
+    <glyph glyph-name="border-none-variant"
+      unicode="&#xF8A3;"
+      horiz-adv-x="512" d=" M320 341.3333333333334H362.6666666666667V384H320M320 0H362.6666666666667V42.6666666666667H320M234.6666666666667 341.3333333333334H277.3333333333333V384H234.6666666666667M405.3333333333333 341.3333333333334H448V384H405.3333333333333M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 0H448V42.6666666666667H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 85.3333333333334H448V128H405.3333333333333M64 341.3333333333334H106.6666666666667V384H64M64 256H106.6666666666667V298.6666666666667H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M64 85.3333333333334H106.6666666666667V128H64M64 0H106.6666666666667V42.6666666666667H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M149.3333333333333 0H192V42.6666666666667H149.3333333333333M149.3333333333333 341.3333333333334H192V384H149.3333333333333V341.3333333333334z" />
+    <glyph glyph-name="border-outside"
+      unicode="&#xF0CE;"
+      horiz-adv-x="512" d=" M192 213.3333333333334H149.3333333333333V170.6666666666667H192M277.3333333333333 128H234.6666666666667V85.3333333333334H277.3333333333333M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M64 0H448V384H64M362.6666666666667 213.3333333333334H320V170.6666666666667H362.6666666666667M277.3333333333333 213.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333M277.3333333333333 298.6666666666667H234.6666666666667V256H277.3333333333333V298.6666666666667z" />
+    <glyph glyph-name="border-right"
+      unicode="&#xF0CF;"
+      horiz-adv-x="512" d=" M234.6666666666667 256H277.3333333333333V298.6666666666667H234.6666666666667M234.6666666666667 341.3333333333334H277.3333333333333V384H234.6666666666667M234.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M320 341.3333333333334H362.6666666666667V384H320M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 0H448V384H405.3333333333333M320 170.6666666666667H362.6666666666667V213.3333333333334H320M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M64 256H106.6666666666667V298.6666666666667H64M64 85.3333333333334H106.6666666666667V128H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M64 0H106.6666666666667V42.6666666666667H64M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 341.3333333333334H192V384H149.3333333333333M64 341.3333333333334H106.6666666666667V384H64M149.3333333333333 0H192V42.6666666666667H149.3333333333333V0z" />
+    <glyph glyph-name="border-right-variant"
+      unicode="&#xF8A4;"
+      horiz-adv-x="512" d=" M234.6666666666667 341.3333333333334H277.3333333333333V384H234.6666666666667M320 341.3333333333334H362.6666666666667V384H320M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 0H448V384H405.3333333333333M64 256H106.6666666666667V298.6666666666667H64M64 85.3333333333334H106.6666666666667V128H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M64 0H106.6666666666667V42.6666666666667H64M149.3333333333333 341.3333333333334H192V384H149.3333333333333M64 341.3333333333334H106.6666666666667V384H64M149.3333333333333 0H192V42.6666666666667H149.3333333333333V0z" />
+    <glyph glyph-name="border-style"
+      unicode="&#xF0D0;"
+      horiz-adv-x="512" d=" M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 0H448V42.6666666666667H405.3333333333333M149.3333333333333 0H192V42.6666666666667H149.3333333333333M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M405.3333333333333 85.3333333333334H448V128H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M64 384V0H106.6666666666667V341.3333333333334H448V384M405.3333333333333 256H448V298.6666666666667H405.3333333333333" />
+    <glyph glyph-name="border-top"
+      unicode="&#xF0D1;"
+      horiz-adv-x="512" d=" M320 170.6666666666667H362.6666666666667V213.3333333333334H320M405.3333333333333 0H448V42.6666666666667H405.3333333333333M234.6666666666667 256H277.3333333333333V298.6666666666667H234.6666666666667M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 85.3333333333334H448V128H405.3333333333333M64 341.3333333333334H448V384H64M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 256H448V298.6666666666667H405.3333333333333M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M64 256H106.6666666666667V298.6666666666667H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M64 0H106.6666666666667V42.6666666666667H64M64 85.3333333333334H106.6666666666667V128H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M234.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 0H192V42.6666666666667H149.3333333333333V0z" />
+    <glyph glyph-name="border-top-variant"
+      unicode="&#xF8A5;"
+      horiz-adv-x="512" d=" M405.3333333333333 0H448V42.6666666666667H405.3333333333333M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 85.3333333333334H448V128H405.3333333333333M64 341.3333333333334H448V384H64M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 256H448V298.6666666666667H405.3333333333333M64 256H106.6666666666667V298.6666666666667H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M64 0H106.6666666666667V42.6666666666667H64M64 85.3333333333334H106.6666666666667V128H64M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M149.3333333333333 0H192V42.6666666666667H149.3333333333333V0z" />
+    <glyph glyph-name="border-vertical"
+      unicode="&#xF0D2;"
+      horiz-adv-x="512" d=" M320 170.6666666666667H362.6666666666667V213.3333333333334H320M320 0H362.6666666666667V42.6666666666667H320M320 341.3333333333334H362.6666666666667V384H320M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H448V384H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M405.3333333333333 0H448V42.6666666666667H405.3333333333333M234.6666666666667 0H277.3333333333333V384H234.6666666666667M405.3333333333333 85.3333333333334H448V128H405.3333333333333M149.3333333333333 341.3333333333334H192V384H149.3333333333333M64 85.3333333333334H106.6666666666667V128H64M64 0H106.6666666666667V42.6666666666667H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64M149.3333333333333 170.6666666666667H192V213.3333333333334H149.3333333333333M149.3333333333333 0H192V42.6666666666667H149.3333333333333M64 341.3333333333334H106.6666666666667V384H64M64 256H106.6666666666667V298.6666666666667H64V256z" />
+    <glyph glyph-name="bottle-wine"
+      unicode="&#xF853;"
+      horiz-adv-x="512" d=" M213.3333333333333 -21.3333333333333C201.6 -21.3333333333333 192 -11.7333333333333 192 0V213.3333333333334C192 256 213.3333333333333 293.3333333333334 234.6666666666667 298.6666666666667V394.6666666666667C234.6666666666667 400.64 239.36 405.3333333333333 245.3333333333333 405.3333333333333H266.6666666666667C272.64 405.3333333333333 277.3333333333333 400.64 277.3333333333333 394.6666666666667V298.6666666666667C298.6666666666667 293.3333333333334 320 256 320 213.3333333333334V0C320 -11.7333333333333 310.4 -21.3333333333333 298.6666666666667 -21.3333333333333H213.3333333333333z" />
+    <glyph glyph-name="bow-tie"
+      unicode="&#xF677;"
+      horiz-adv-x="512" d=" M320 149.3333333333334L448 85.3333333333334V298.6666666666667L320 234.6666666666667V149.3333333333334M192 149.3333333333334L64 85.3333333333334V298.6666666666667L192 234.6666666666667V149.3333333333334M213.3333333333333 234.6666666666667H298.6666666666667V149.3333333333334H213.3333333333333V234.6666666666667z" />
+    <glyph glyph-name="bowl"
+      unicode="&#xF617;"
+      horiz-adv-x="512" d=" M469.3333333333333 128C469.3333333333333 45.44 402.56 -21.3333333333333 320 -21.3333333333333H192C109.44 -21.3333333333333 42.6666666666667 45.44 42.6666666666667 128V192H332.3733333333334L433.0666666666667 353.28L469.3333333333333 330.6666666666667L382.7200000000001 192H469.3333333333333V128z" />
+    <glyph glyph-name="bowling"
+      unicode="&#xF0D3;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M266.6666666666667 213.3333333333334C248.96 213.3333333333334 234.6666666666667 199.04 234.6666666666667 181.3333333333334S248.96 149.3333333333334 266.6666666666667 149.3333333333334S298.6666666666667 163.6266666666667 298.6666666666667 181.3333333333334S284.3733333333334 213.3333333333334 266.6666666666667 213.3333333333334M256 341.3333333333334C232.5333333333334 341.3333333333334 213.3333333333333 322.1333333333334 213.3333333333333 298.6666666666667S232.5333333333334 256 256 256S298.6666666666667 275.2000000000001 298.6666666666667 298.6666666666667S279.4666666666667 341.3333333333334 256 341.3333333333334M126.5066666666667 266.6666666666667C114.7733333333333 246.4000000000001 121.8133333333333 220.3733333333333 142.08 208.64C162.56 196.6933333333333 188.5866666666667 203.7333333333333 200.5333333333333 224C212.2666666666667 244.6933333333334 205.2266666666667 270.7200000000001 184.7466666666667 282.4533333333334C164.48 294.1866666666667 138.6666666666667 287.36 126.5066666666667 266.6666666666667z" />
+    <glyph glyph-name="box"
+      unicode="&#xF0D4;"
+      horiz-adv-x="512" d=" M328.32 148.48C328.32 178.7733333333334 303.7866666666667 203.3066666666667 273.4933333333334 203.3066666666667C243.4133333333334 203.3066666666667 218.88 178.7733333333334 218.88 148.48C218.88 118.4 243.4133333333334 93.8666666666667 273.4933333333334 93.8666666666667C303.7866666666667 93.8666666666667 328.32 118.4000000000001 328.32 148.4800000000001M364.8 148.4800000000001C364.8 98.1333333333334 323.8400000000001 57.3866666666668 273.4933333333334 57.3866666666668C238.7200000000001 57.3866666666668 208.4266666666667 77.0133333333335 193.0666666666667 105.8133333333335C177.7066666666667 77.0133333333334 147.4133333333333 57.3866666666668 112.64 57.3866666666668C62.72 57.3866666666668 22.1866666666667 97.4933333333335 21.3333333333334 146.9866666666668V298.6666666666667C21.3333333333334 308.0533333333334 29.6533333333334 316.1600000000001 39.68 316.1600000000001S57.6 308.0533333333334 57.8133333333334 298.6666666666667V221.44C73.1733333333334 232.96 92.16 239.7866666666667 112.64 239.7866666666667C147.4133333333334 239.7866666666667 177.7066666666667 220.16 193.0666666666667 191.36C208.4266666666667 220.16 238.7200000000001 239.7866666666667 273.4933333333334 239.7866666666667C323.84 239.7866666666667 364.8 198.8266666666667 364.8 148.48M167.2533333333334 148.48C167.2533333333334 178.7733333333333 142.72 203.3066666666666 112.64 203.3066666666666C82.3466666666667 203.3066666666666 57.8133333333334 178.7733333333333 57.8133333333334 148.48C57.8133333333334 118.4 82.3466666666667 93.8666666666667 112.64 93.8666666666667C142.72 93.8666666666667 167.2533333333334 118.4 167.2533333333334 148.48M487.2533333333334 86.1866666666667C489.6 82.7733333333333 490.6666666666667 78.9333333333333 490.6666666666667 75.3066666666666C490.6666666666667 69.7599999999999 488.1066666666667 63.9999999999999 483.4133333333334 60.8C480.0000000000001 58.4533333333333 476.3733333333334 57.1733333333333 472.5333333333334 57.1733333333333C467.2 57.1733333333333 461.8666666666667 59.5199999999999 458.6666666666667 63.9999999999999L417.9200000000001 117.9733333333333L377.6 64C373.9733333333333 59.52 368.64 57.1733333333334 363.3066666666666 57.1733333333334C359.4666666666666 57.1733333333334 355.6266666666666 58.4533333333333 351.9999999999999 60.8000000000001C347.5199999999999 64 344.9599999999999 69.9733333333334 344.9599999999999 75.5200000000001C344.9599999999999 79.1466666666668 346.2399999999999 82.9866666666668 348.3733333333333 86.1866666666667L394.6666666666667 148.4800000000001L348.3733333333333 210.9866666666667C346.0266666666667 214.1866666666667 344.9599999999999 217.8133333333334 344.9599999999999 221.6533333333334C344.9599999999999 227.2000000000001 347.52 232.5333333333334 351.9999999999999 236.1600000000001C360.32 242.1333333333334 371.4133333333333 240.6400000000001 377.5999999999999 232.7466666666668L417.9199999999999 178.9866666666667L458.6666666666666 232.7466666666668C464.2133333333333 240.6400000000001 475.5199999999999 242.1333333333334 483.4133333333332 236.1600000000001C488.3199999999999 232.5333333333334 490.6666666666666 226.9866666666668 490.6666666666666 221.2266666666668C490.6666666666666 217.6000000000001 489.5999999999999 213.9733333333334 487.2533333333332 210.9866666666667L440.7466666666666 148.4800000000001L487.2533333333332 86.1866666666667z" />
+    <glyph glyph-name="box-cutter"
+      unicode="&#xF0D5;"
+      horiz-adv-x="512" d=" M154.0266666666667 193.92C146.9866666666667 186.88 143.1466666666667 178.1333333333333 142.08 168.96L259.6266666666667 118.6133333333334L440.7466666666667 299.5200000000001C457.3866666666667 316.3733333333334 457.3866666666667 343.2533333333334 440.7466666666667 359.8933333333334L410.4533333333334 390.1866666666667C393.8133333333334 406.8266666666667 366.9333333333334 406.8266666666667 350.0800000000001 390.1866666666667L154.0266666666668 193.9200000000001M106.6666666666667 106.6666666666667V-16L230.6133333333333 95.36L123.9466666666666 138.0266666666667L106.6666666666667 106.6666666666667M365.2266666666667 344.9600000000001C373.3333333333333 353.28 387.2000000000001 353.28 395.52 344.9600000000001C403.84 336.4266666666667 403.84 322.9866666666667 395.52 314.6666666666667C387.2 306.3466666666667 373.3333333333333 306.3466666666667 365.2266666666666 314.6666666666667C356.9066666666666 322.9866666666667 356.9066666666666 336.4266666666667 365.2266666666666 344.9600000000001z" />
+    <glyph glyph-name="box-shadow"
+      unicode="&#xF637;"
+      horiz-adv-x="512" d=" M64 384H384V64H64V384M405.3333333333333 42.6666666666667H448V0H405.3333333333333V42.6666666666667M405.3333333333333 106.6666666666667H448V64H405.3333333333333V106.6666666666667M405.3333333333333 170.6666666666667H448V128H405.3333333333333V170.6666666666667M405.3333333333333 234.6666666666667H448V192H405.3333333333333V234.6666666666667M405.3333333333333 298.6666666666667H448V256H405.3333333333333V298.6666666666667M341.3333333333333 42.6666666666667H384V0H341.3333333333333V42.6666666666667M277.3333333333333 42.6666666666667H320V0H277.3333333333333V42.6666666666667M213.3333333333333 42.6666666666667H256V0H213.3333333333333V42.6666666666667M149.3333333333333 42.6666666666667H192V0H149.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="boxing-glove"
+      unicode="&#xFB41;"
+      horiz-adv-x="512" d=" M405.3333333333333 106.6666666666667V320H469.3333333333333V106.6666666666667H405.3333333333333M256 362.6666666666667H149.3333333333333S42.6666666666667 362.6666666666667 42.6666666666667 277.3333333333334V149.3333333333334C42.6666666666667 111.5733333333334 64 90.4533333333334 86.8266666666667 78.72C93.8666666666667 118.8266666666667 128.64 149.3333333333334 170.6666666666667 149.3333333333334H234.6666666666667V106.6666666666667H170.6666666666667C147.2 106.6666666666667 128 87.4666666666667 128 64C128 40.3200000000001 147.2 21.3333333333334 170.6666666666667 21.3333333333334H277.3333333333333C362.6666666666667 21.3333333333334 362.6666666666667 106.6666666666667 362.6666666666667 106.6666666666667V320S341.3333333333333 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="braille"
+      unicode="&#xF9CF;"
+      horiz-adv-x="512" d=" M149.3333333333333 277.3333333333334C149.3333333333333 289.0666666666667 158.9333333333333 298.6666666666667 170.6666666666667 298.6666666666667S192 289.0666666666667 192 277.3333333333334V181.9733333333334L217.8133333333333 179.2000000000001L323.2000000000001 132.48C334.2933333333334 127.36 341.3333333333334 116.0533333333334 341.3333333333334 103.68V10.6666666666667C340.6933333333334 -6.8266666666667 326.8266666666667 -20.6933333333333 309.3333333333334 -21.3333333333333H170.6666666666667C162.56 -21.3333333333333 154.88 -18.1333333333333 149.3333333333333 -12.16L44.8 77.44L60.5866666666667 93.8666666666667C64.64 98.3466666666667 70.4 100.6933333333333 76.3733333333333 100.6933333333333H81.0666666666667L149.3333333333333 64V277.3333333333334M416 405.3333333333333C398.2933333333334 405.3333333333333 384 391.04 384 373.3333333333334S398.2933333333334 341.3333333333334 416 341.3333333333334S448 355.6266666666667 448 373.3333333333334S433.7066666666666 405.3333333333333 416 405.3333333333333M416 298.6666666666667C398.2933333333334 298.6666666666667 384 284.3733333333334 384 266.6666666666667S398.2933333333334 234.6666666666667 416 234.6666666666667S448 248.96 448 266.6666666666667S433.7066666666666 298.6666666666667 416 298.6666666666667M309.3333333333333 298.6666666666667C291.6266666666667 298.6666666666667 277.3333333333333 284.3733333333334 277.3333333333333 266.6666666666667S291.6266666666667 234.6666666666667 309.3333333333333 234.6666666666667S341.3333333333333 248.96 341.3333333333333 266.6666666666667S327.04 298.6666666666667 309.3333333333333 298.6666666666667M416 192C398.2933333333334 192 384 177.7066666666667 384 160S398.2933333333334 128 416 128S448 142.2933333333334 448 160S433.7066666666666 192 416 192z" />
+    <glyph glyph-name="brain"
+      unicode="&#xF9D0;"
+      horiz-adv-x="512" d=" M455.04 172.5866666666667C456.9599999999999 139.52 441.8133333333333 107.7333333333334 414.7199999999999 88.3200000000001L431.1466666666666 56.5333333333334C436.0533333333333 46.9333333333334 436.6933333333333 35.6266666666667 432.4266666666666 25.6000000000001C428.3733333333332 15.5733333333334 420.0533333333333 7.6800000000001 409.8133333333333 4.2666666666668L392.9599999999999 -1.0666666666666C389.3333333333333 -2.3466666666666 385.28 -2.9866666666666 381.44 -2.9866666666666C370.56 -2.9866666666666 360.32 1.9200000000001 353.28 10.6666666666667L308.0533333333333 64C289.0666666666666 67.2 271.1466666666667 75.3066666666667 256 87.4666666666667C245.3333333333333 84.2666666666668 234.6666666666667 82.5600000000001 224 82.5600000000001C205.2266666666666 82.5600000000001 186.4533333333333 88.3200000000001 170.6666666666667 99.4133333333334C159.36 96 147.84 94.5066666666667 136.1066666666667 94.72C119.2533333333333 94.5066666666667 102.6133333333333 97.92 87.04 104.3200000000001C56.5333333333333 117.9733333333334 36.2666666666667 147.84 35.2 181.3333333333334C33.4933333333333 196.6933333333334 36.0533333333333 212.2666666666667 42.6666666666667 226.3466666666667C36.48 242.3466666666667 35.84 259.8400000000001 41.1733333333333 276.0533333333334C49.0666666666667 296.32 64 313.1733333333334 82.56 323.8400000000001C94.9333333333333 359.8933333333333 129.7066666666667 384 167.8933333333333 381.44C202.0266666666667 413.44 254.2933333333333 416.8533333333334 292.2666666666667 389.3333333333333C301.2266666666667 391.68 310.6133333333333 392.96 320 392.96C349.0133333333333 393.6 376.5333333333333 380.8 394.6666666666667 357.9733333333334C438.1866666666666 346.6666666666667 469.3333333333333 307.8400000000001 471.04 262.6133333333334C472.1066666666666 238.9333333333334 465.7066666666666 215.68 452.6933333333333 195.84C454.1866666666666 188.16 455.04 180.48 455.04 172.5866666666667M348.3733333333333 202.6666666666667C360.5333333333333 201.1733333333334 370.1333333333333 192 370.1333333333333 179.84C370.1333333333333 168.1066666666667 360.5333333333333 158.5066666666667 348.8 158.5066666666667H335.3599999999999C328.5333333333333 139.3066666666667 316.5866666666666 122.4533333333334 300.8 109.6533333333334C306.1333333333333 107.7333333333334 311.68 106.6666666666667 317.2266666666666 105.1733333333334C426.6666666666666 106.6666666666667 413.8666666666666 173.44 413.8666666666666 174.5066666666667C412.5866666666667 205.0133333333333 386.9866666666666 228.9066666666667 356.4799999999999 227.6266666666667C344.7466666666666 227.6266666666667 335.1466666666666 237.2266666666667 335.1466666666666 248.96S344.7466666666666 270.2933333333334 356.4799999999999 270.2933333333334C382.7199999999999 269.6533333333334 407.8933333333333 259.8400000000001 427.52 242.56C428.5866666666667 248.7466666666667 429.2266666666666 255.1466666666667 429.2266666666666 261.5466666666667C427.9466666666666 288 415.9999999999999 311.04 367.9999999999999 315.52C341.3333333333333 378.6666666666667 274.1333333333332 343.68 274.1333333333332 324.0533333333334C273.4933333333333 319.1466666666667 278.6133333333333 308.6933333333334 279.4666666666666 308.0533333333334C291.2 308.0533333333334 300.7999999999999 298.4533333333333 300.7999999999999 286.7200000000001S291.2 265.3866666666667 279.4666666666666 265.3866666666667C268.1599999999999 265.8133333333334 257.4933333333333 270.0800000000001 248.9599999999999 277.3333333333334C238.7199999999999 270.7200000000001 226.9866666666666 266.6666666666667 214.8266666666666 265.3866666666667C202.6666666666666 264.32 192.6399999999999 272.8533333333334 191.9999999999999 284.5866666666667C190.2933333333332 296.5333333333334 199.0399999999999 306.9866666666667 210.7733333333333 308.0533333333334C214.1866666666666 308.48 230.8266666666666 311.04 230.8266666666666 324.48C230.8266666666666 338.56 236.1599999999999 352 245.3333333333333 362.6666666666667C225.7066666666666 368 204.5866666666666 360.96 183.2533333333333 335.1466666666667C144 341.3333333333334 128 336 116.2666666666667 294.4C96 284.3733333333334 85.3333333333333 277.3333333333334 80.64 256C103.68 260.6933333333334 127.36 258.7733333333334 149.3333333333333 250.6666666666667C160 246.6133333333334 165.9733333333333 234.6666666666667 161.92 223.1466666666667C157.8666666666667 212.0533333333334 145.4933333333334 206.5066666666667 134.4 210.56C118.8266666666667 217.3866666666667 101.3333333333333 217.8133333333334 85.3333333333333 211.84C78.5066666666667 206.0800000000001 78.5066666666667 194.1333333333334 78.5066666666667 184.7466666666667C78.5066666666667 168.96 86.4 154.2400000000001 99.84 145.7066666666667C111.1466666666667 139.9466666666667 123.7333333333333 136.96 136.32 137.1733333333334C133.12 142.72 130.3466666666666 148.48 128 154.4533333333334C123.9466666666667 165.9733333333334 130.1333333333333 178.5600000000001 141.6533333333333 182.6133333333334C153.1733333333333 186.6666666666668 165.76 180.4800000000001 169.8133333333333 168.96C178.3466666666666 144.6400000000001 200.1066666666666 128.0000000000001 225.7066666666667 125.2266666666667C254.9333333333333 126.72 280.96 144.0000000000001 293.76 170.6666666666667C298.6666666666667 200.1066666666667 322.3466666666667 202.6666666666667 348.3733333333333 202.6666666666667M391.04 43.3066666666667L377.8133333333333 71.0400000000001L362.6666666666666 67.6266666666667L383.9999999999999 40.96L391.0399999999999 43.3066666666667M291.8399999999999 226.9866666666667C292.2666666666666 238.2933333333334 283.7333333333332 247.8933333333334 272.4266666666665 248.96C257.2799999999999 249.8133333333334 242.5599999999999 244.6933333333334 231.2533333333332 234.6666666666667C219.0933333333332 222.2933333333334 212.6933333333332 205.2266666666667 213.3333333333332 187.9466666666667C213.3333333333332 176.2133333333334 222.9333333333332 166.6133333333334 234.6666666666666 166.6133333333334C246.8266666666666 166.6133333333334 255.9999999999999 176.2133333333334 255.9999999999999 187.9466666666667C255.9999999999999 193.7066666666667 257.4933333333333 199.4666666666667 260.9066666666665 204.16C263.4666666666666 206.2933333333334 266.6666666666665 207.36 270.0799999999999 207.36C281.8133333333332 206.72 291.8399999999999 215.4666666666667 291.8399999999999 226.9866666666667z" />
+    <glyph glyph-name="bridge"
+      unicode="&#xF618;"
+      horiz-adv-x="512" d=" M149.3333333333333 149.3333333333334V215.2533333333333C133.9733333333333 222.2933333333334 119.68 230.8266666666667 106.6666666666667 240.8533333333333V149.3333333333334H149.3333333333333M106.6666666666667 64H64V106.6666666666667H21.3333333333333V149.3333333333334H64V298.6666666666667H106.6666666666667V268.1600000000001C145.0666666666667 234.6666666666667 197.76 213.3333333333334 256 213.3333333333334C314.24 213.3333333333334 366.9333333333333 234.6666666666667 405.3333333333333 268.1600000000001V298.6666666666667H448V149.3333333333334H490.6666666666666V106.6666666666667H448V64H405.3333333333333V106.6666666666667H106.6666666666667V64M362.6666666666667 215.2533333333333V149.3333333333334H405.3333333333333V240.8533333333333C392.32 230.8266666666667 378.0266666666667 222.2933333333334 362.6666666666667 215.2533333333333M341.3333333333333 149.3333333333334V206.5066666666667C327.68 201.6 313.3866666666667 197.9733333333333 298.6666666666667 195.4133333333334V149.3333333333334H341.3333333333333M277.3333333333333 149.3333333333334V192.8533333333333L256 192L234.6666666666667 192.8533333333333V149.3333333333334H277.3333333333333M213.3333333333333 149.3333333333334V195.4133333333334C198.6133333333334 197.9733333333333 184.32 201.6 170.6666666666667 206.5066666666667V149.3333333333334H213.3333333333333z" />
+    <glyph glyph-name="briefcase"
+      unicode="&#xF0D6;"
+      horiz-adv-x="512" d=" M213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V320H426.6666666666667C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.6533333333333 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V277.3333333333334C42.6666666666667 301.0133333333333 61.6533333333333 320 85.3333333333333 320H170.6666666666667V362.6666666666667C170.6666666666667 386.3466666666667 189.6533333333333 405.3333333333333 213.3333333333333 405.3333333333333M298.6666666666667 320V362.6666666666667H213.3333333333333V320H298.6666666666667z" />
+    <glyph glyph-name="briefcase-check"
+      unicode="&#xF0D7;"
+      horiz-adv-x="512" d=" M213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V320H426.6666666666667C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V277.3333333333334C42.6666666666667 300.8 61.8666666666667 320 85.3333333333333 320H170.6666666666667V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333M298.6666666666667 320V362.6666666666667H213.3333333333333V320H298.6666666666667M224 74.6666666666667L364.5866666666667 215.2533333333333L334.5066666666667 245.3333333333334L224 135.04L179.4133333333333 179.4133333333334L149.3333333333333 149.3333333333334L224 74.6666666666667z" />
+    <glyph glyph-name="briefcase-download"
+      unicode="&#xF0D8;"
+      horiz-adv-x="512" d=" M213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V320H426.6666666666667C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.6533333333333 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V277.3333333333334C42.6666666666667 301.0133333333333 61.6533333333333 320 85.3333333333333 320H170.6666666666667V362.6666666666667C170.6666666666667 386.3466666666667 189.6533333333333 405.3333333333333 213.3333333333333 405.3333333333333M298.6666666666667 320V362.6666666666667H213.3333333333333V320H298.6666666666667M256 42.6666666666667L362.6666666666667 149.3333333333334H298.6666666666667V234.6666666666667H213.3333333333333V149.3333333333334H149.3333333333333L256 42.6666666666667z" />
+    <glyph glyph-name="briefcase-edit"
+      unicode="&#xFA97;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V320H426.6666666666667C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334L231.4666666666667 42.6666666666667V0H85.3333333333333C61.6533333333333 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V277.3333333333334C42.6666666666667 301.0133333333333 61.6533333333333 320 85.3333333333333 320H170.6666666666667V362.6666666666667C170.6666666666667 386.3466666666667 189.6533333333333 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667M298.6666666666667 320V362.6666666666667H213.3333333333333V320H298.6666666666667M448.8533333333333 189.2266666666667C445.8666666666666 189.2266666666667 442.88 187.9466666666667 440.5333333333333 185.6L419.2 164.2666666666667L462.9333333333333 120.5333333333334L484.2666666666667 141.8666666666667C488.9599999999999 146.3466666666668 488.9599999999999 153.8133333333334 484.2666666666667 158.2933333333334L456.9599999999999 185.6C454.6133333333333 187.9466666666667 451.84 189.2266666666667 448.8533333333333 189.2266666666667M406.8266666666667 151.8933333333334L277.3333333333333 22.6133333333333V-21.3333333333333H321.28L450.56 108.16L406.8266666666667 151.8933333333334z" />
+    <glyph glyph-name="briefcase-minus"
+      unicode="&#xFA29;"
+      horiz-adv-x="512" d=" M469.3333333333333 85.3333333333334V42.6666666666667H298.6666666666667V85.3333333333334H469.3333333333333M213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V320H426.6666666666667C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V159.36C446.7200000000001 179.6266666666667 416.8533333333333 192 384 192C313.3866666666667 192 256 134.6133333333334 256 64C256 40.7466666666667 262.1866666666666 18.7733333333333 273.0666666666667 0H85.3333333333333C61.6533333333333 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V277.3333333333334C42.6666666666667 301.0133333333333 61.6533333333333 320 85.3333333333333 320H170.6666666666667V362.6666666666667C170.6666666666667 386.3466666666667 189.6533333333333 405.3333333333333 213.3333333333333 405.3333333333333M298.6666666666667 320V362.6666666666667H213.3333333333333V320H298.6666666666667z" />
+    <glyph glyph-name="briefcase-outline"
+      unicode="&#xF813;"
+      horiz-adv-x="512" d=" M426.6666666666667 320C439.04 320 449.0666666666667 315.7333333333334 456.96 307.4133333333334C465.0666666666667 298.6666666666667 469.3333333333333 289.0666666666667 469.3333333333333 277.3333333333334V42.6666666666667C469.3333333333333 30.9333333333333 465.0666666666667 21.3333333333334 456.96 12.5866666666667C449.0666666666667 4.2666666666667 439.04 0 426.6666666666667 0H85.3333333333333C72.96 0 62.9333333333333 4.2666666666667 55.04 12.5866666666667C46.9333333333333 21.3333333333334 42.6666666666667 30.9333333333333 42.6666666666667 42.6666666666667V277.3333333333334C42.6666666666667 289.0666666666667 46.9333333333333 298.6666666666667 55.04 307.4133333333334C62.9333333333333 315.7333333333334 72.96 320 85.3333333333333 320H170.6666666666667V362.6666666666667C170.6666666666667 375.04 174.9333333333333 385.0666666666667 183.04 392.96C190.9333333333333 401.0666666666667 200.96 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C311.04 405.3333333333333 321.0666666666667 401.0666666666667 328.96 392.96C337.0666666666667 385.0666666666667 341.3333333333333 375.04 341.3333333333333 362.6666666666667V320H426.6666666666667M85.3333333333333 277.3333333333334V42.6666666666667H426.6666666666667V277.3333333333334H85.3333333333333M298.6666666666667 320V362.6666666666667H213.3333333333333V320H298.6666666666667z" />
+    <glyph glyph-name="briefcase-plus"
+      unicode="&#xFA2A;"
+      horiz-adv-x="512" d=" M362.6666666666667 149.3333333333334H405.3333333333333V85.3333333333334H469.3333333333333V42.6666666666667H405.3333333333333V-21.3333333333333H362.6666666666667V42.6666666666667H298.6666666666667V85.3333333333334H362.6666666666667V149.3333333333334M213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V320H426.6666666666667C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V159.36C446.7200000000001 179.6266666666667 416.8533333333333 192 384 192C313.3866666666667 192 256 134.6133333333334 256 64C256 40.7466666666667 262.1866666666666 18.7733333333333 273.0666666666667 0H85.3333333333333C61.6533333333333 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V277.3333333333334C42.6666666666667 301.0133333333333 61.6533333333333 320 85.3333333333333 320H170.6666666666667V362.6666666666667C170.6666666666667 386.3466666666667 189.6533333333333 405.3333333333333 213.3333333333333 405.3333333333333M298.6666666666667 320V362.6666666666667H213.3333333333333V320H298.6666666666667z" />
+    <glyph glyph-name="briefcase-remove"
+      unicode="&#xFA2B;"
+      horiz-adv-x="512" d=" M308.48 109.2266666666667L338.7733333333333 139.52L384 94.08L429.2266666666667 139.52L459.52 109.2266666666667L414.08 64L459.52 18.7733333333333L429.2266666666666 -11.52L384 33.92L338.7733333333333 -11.52L308.48 18.7733333333334L353.92 64L308.48 109.2266666666667M213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V320H426.6666666666667C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V159.36C446.7200000000001 179.6266666666667 416.8533333333333 192 384 192C313.3866666666667 192 256 134.6133333333334 256 64C256 40.7466666666667 262.1866666666666 18.7733333333333 273.0666666666667 0H85.3333333333333C61.6533333333333 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V277.3333333333334C42.6666666666667 301.0133333333333 61.6533333333333 320 85.3333333333333 320H170.6666666666667V362.6666666666667C170.6666666666667 386.3466666666667 189.6533333333333 405.3333333333333 213.3333333333333 405.3333333333333M298.6666666666667 320V362.6666666666667H213.3333333333333V320H298.6666666666667z" />
+    <glyph glyph-name="briefcase-search"
+      unicode="&#xFA2C;"
+      horiz-adv-x="512" d=" M352 192C405.3333333333333 192 448 149.3333333333334 448 96C448 77.2266666666667 442.6666666666667 59.52 433.28 44.8000000000001L498.9866666666667 -21.3333333333333L469.3333333333333 -50.9866666666667L402.7733333333333 14.5066666666667C388.0533333333333 5.3333333333334 370.56 0 352 0C298.6666666666667 0 256 42.6666666666667 256 96S298.6666666666667 192 352 192M352 149.3333333333334C322.56 149.3333333333334 298.6666666666667 125.44 298.6666666666667 96S322.56 42.6666666666667 352 42.6666666666667S405.3333333333333 66.5600000000001 405.3333333333333 96S381.44 149.3333333333334 352 149.3333333333334M213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V320H426.6666666666667C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V170.0266666666667C444.8 208.8533333333333 401.4933333333334 234.6666666666667 352 234.6666666666667C275.4133333333333 234.6666666666667 213.3333333333333 172.5866666666667 213.3333333333333 96C213.3333333333333 58.6666666666667 228.0533333333333 24.96 251.9466666666667 0H85.3333333333333C61.6533333333333 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V277.3333333333334C42.6666666666667 301.0133333333333 61.6533333333333 320 85.3333333333333 320H170.6666666666667V362.6666666666667C170.6666666666667 386.3466666666667 189.6533333333333 405.3333333333333 213.3333333333333 405.3333333333333M298.6666666666667 320V362.6666666666667H213.3333333333333V320H298.6666666666667z" />
+    <glyph glyph-name="briefcase-upload"
+      unicode="&#xF0D9;"
+      horiz-adv-x="512" d=" M213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V320H426.6666666666667C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.6533333333333 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V277.3333333333334C42.6666666666667 301.0133333333333 61.6533333333333 320 85.3333333333333 320H170.6666666666667V362.6666666666667C170.6666666666667 386.3466666666667 189.6533333333333 405.3333333333333 213.3333333333333 405.3333333333333M298.6666666666667 320V362.6666666666667H213.3333333333333V320H298.6666666666667M256 256L149.3333333333333 149.3333333333334H213.3333333333333V64H298.6666666666667V149.3333333333334H362.6666666666667L256 256z" />
+    <glyph glyph-name="brightness-1"
+      unicode="&#xF0DA;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="brightness-2"
+      unicode="&#xF0DB;"
+      horiz-adv-x="512" d=" M213.3333333333333 405.3333333333333C174.5066666666667 405.3333333333333 138.0266666666667 394.6666666666667 106.6666666666667 376.5333333333333C170.6666666666667 339.6266666666667 213.3333333333333 270.9333333333334 213.3333333333333 192S170.6666666666667 44.3733333333333 106.6666666666667 7.4666666666667C138.0266666666667 -10.6666666666666 174.5066666666667 -21.3333333333333 213.3333333333333 -21.3333333333333C331.0933333333333 -21.3333333333333 426.6666666666667 74.24 426.6666666666667 192S331.0933333333333 405.3333333333333 213.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="brightness-3"
+      unicode="&#xF0DC;"
+      horiz-adv-x="512" d=" M192 405.3333333333333C169.6 405.3333333333333 148.2666666666667 401.92 128 395.52C214.6133333333333 368.4266666666667 277.3333333333333 288 277.3333333333333 192C277.3333333333333 96 214.6133333333334 15.5733333333334 128 -11.52C148.2666666666667 -17.92 169.6 -21.3333333333333 192 -21.3333333333333C309.76 -21.3333333333333 405.3333333333333 74.24 405.3333333333333 192S309.76 405.3333333333333 192 405.3333333333333z" />
+    <glyph glyph-name="brightness-4"
+      unicode="&#xF0DD;"
+      horiz-adv-x="512" d=" M256 64C237.0133333333333 64 218.88 68.2666666666667 202.6666666666667 75.7333333333334C246.6133333333334 96 277.3333333333333 140.3733333333333 277.3333333333333 192C277.3333333333333 243.6266666666667 246.6133333333334 288 202.6666666666667 308.2666666666667C218.88 315.7333333333334 237.0133333333333 320 256 320C326.6133333333334 320 384 262.6133333333334 384 192S326.6133333333334 64 256 64M426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667L497.28 192L426.6666666666667 262.6133333333334z" />
+    <glyph glyph-name="brightness-5"
+      unicode="&#xF0DE;"
+      horiz-adv-x="512" d=" M256 64C185.3866666666667 64 128 121.3866666666667 128 192S185.3866666666667 320 256 320S384 262.6133333333334 384 192S326.6133333333334 64 256 64M426.6666666666667 121.3866666666667L497.28 192L426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667z" />
+    <glyph glyph-name="brightness-6"
+      unicode="&#xF0DF;"
+      horiz-adv-x="512" d=" M256 64V320C326.6133333333334 320 384 262.6133333333334 384 192S326.6133333333334 64 256 64M426.6666666666667 121.3866666666667L497.28 192L426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667z" />
+    <glyph glyph-name="brightness-7"
+      unicode="&#xF0E0;"
+      horiz-adv-x="512" d=" M256 277.3333333333334C208.8533333333333 277.3333333333334 170.6666666666667 239.1466666666667 170.6666666666667 192S208.8533333333333 106.6666666666667 256 106.6666666666667S341.3333333333333 144.8533333333334 341.3333333333333 192S303.1466666666667 277.3333333333334 256 277.3333333333334M256 64C185.3866666666667 64 128 121.3866666666667 128 192S185.3866666666667 320 256 320S384 262.6133333333334 384 192S326.6133333333334 64 256 64M426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667L497.28 192L426.6666666666667 262.6133333333334z" />
+    <glyph glyph-name="brightness-auto"
+      unicode="&#xF0E1;"
+      horiz-adv-x="512" d=" M305.0666666666667 106.6666666666667L290.1333333333334 149.3333333333334H221.8666666666667L206.9333333333334 106.6666666666667H166.4L234.6666666666667 298.6666666666667H277.3333333333333L345.6 106.6666666666667H305.0666666666666M426.6666666666667 262.6133333333334V362.6666666666667H326.6133333333333L256 433.28L185.3866666666667 362.6666666666667H85.3333333333333V262.6133333333334L14.72 192L85.3333333333333 121.3866666666667V21.3333333333334H185.3866666666667L256 -49.28L326.6133333333334 21.3333333333334H426.6666666666667V121.3866666666667L497.28 192L426.6666666666667 262.6133333333334M231.4666666666667 178.1333333333334H280.5333333333333L256 256L231.4666666666667 178.1333333333333z" />
+    <glyph glyph-name="broom"
+      unicode="&#xF0E2;"
+      horiz-adv-x="512" d=" M413.0133333333333 389.9733333333334L443.3066666666667 359.68L321.2800000000001 237.8666666666667C344.1066666666667 205.0133333333333 347.3066666666667 165.5466666666666 328.1066666666667 139.9466666666667L193.28 274.7733333333334C218.88 293.9733333333334 258.3466666666667 290.7733333333334 291.2 267.9466666666667L413.0133333333333 389.9733333333334M126.5066666666667 73.1733333333334C83.6266666666667 116.0533333333334 57.3866666666667 167.2533333333333 50.1333333333333 215.04L154.24 259.6266666666667L312.96 100.9066666666667L268.3733333333334 -3.1999999999999C220.5866666666667 4.0533333333334 169.3866666666667 30.2933333333334 126.5066666666667 73.1733333333334z" />
+    <glyph glyph-name="brush"
+      unicode="&#xF0E3;"
+      horiz-adv-x="512" d=" M441.8133333333334 349.2266666666667L413.2266666666667 377.8133333333334C405.3333333333333 386.1333333333334 391.4666666666667 386.1333333333334 383.1466666666667 377.8133333333334L192 186.6666666666667L250.6666666666667 128L441.8133333333334 319.1466666666667C450.1333333333334 327.4666666666667 450.1333333333334 341.3333333333334 441.8133333333334 349.2266666666667M149.3333333333333 149.3333333333334C113.92 149.3333333333334 85.3333333333333 120.7466666666667 85.3333333333333 85.3333333333334C85.3333333333333 57.3866666666667 60.5866666666667 42.6666666666667 42.6666666666667 42.6666666666667C62.2933333333333 16.64 96 0 128 0C175.1466666666667 0 213.3333333333333 38.1866666666667 213.3333333333333 85.3333333333334C213.3333333333333 120.7466666666667 184.7466666666667 149.3333333333334 149.3333333333333 149.3333333333334z" />
+    <glyph glyph-name="buddhism"
+      unicode="&#xF94A;"
+      horiz-adv-x="512" d=" M234.6666666666667 405.3333333333333V384C197.76 379.7333333333334 164.0533333333333 364.8 136.5333333333333 342.6133333333334L120.32 358.8266666666667L90.0266666666667 328.5333333333334L106.6666666666667 312.5333333333334C83.2 284.1600000000001 68.48 249.6 64 213.3333333333334H42.6666666666667V170.6666666666667H64C68.48 134.8266666666667 83.2 101.1200000000001 106.6666666666667 73.3866666666667L90.0266666666667 57.1733333333334L120.32 26.88L136.32 42.6666666666666C164.48 19.8399999999999 198.4 4.9066666666666 234.6666666666667 -1e-13V-21.3333333333334H277.3333333333333V-1e-13C313.3866666666667 4.9066666666666 347.52 19.8399999999999 375.4666666666667 42.6666666666666L391.6800000000001 26.88L421.9733333333334 57.1733333333334L405.3333333333333 73.1733333333334C428.8 100.9066666666667 443.52 134.8266666666667 448 170.6666666666667H469.3333333333333V213.3333333333334H448C443.52 249.6 428.8 283.9466666666667 405.3333333333333 312.32L421.9733333333334 328.5333333333333L391.68 358.8266666666667L375.68 342.6133333333334C347.52 365.44 313.3866666666667 379.7333333333334 277.3333333333333 384V405.3333333333333H234.6666666666667M234.6666666666667 341.3333333333334V277.3333333333334L213.3333333333333 266.6666666666667L166.6133333333334 312.5333333333334C186.0266666666667 327.04 209.28 337.7066666666667 234.6666666666667 341.3333333333334M277.3333333333333 341.3333333333334C302.08 337.4933333333334 325.5466666666666 327.68 345.6 312.5333333333334L298.6666666666667 266.6666666666667L277.3333333333333 277.3333333333334V341.3333333333334M136.5333333333333 282.4533333333334L181.3333333333333 234.6666666666667L170.6666666666667 213.3333333333334H106.6666666666667C110.08 238.08 121.6 262.4000000000001 136.32 282.6666666666667L136.5333333333333 282.4533333333334M375.4666666666666 282.4533333333334C391.04 262.1866666666667 401.28 238.5066666666667 405.3333333333333 213.3333333333334H341.3333333333333L330.6666666666666 234.6666666666667L375.6799999999999 282.4533333333334H375.4666666666666M256 234.6666666666667C279.8933333333333 234.6666666666667 298.6666666666667 215.8933333333333 298.6666666666667 192S279.8933333333333 149.3333333333334 256 149.3333333333334S213.3333333333333 168.1066666666667 213.3333333333333 192S232.1066666666667 234.6666666666667 256 234.6666666666667M106.6666666666667 170.6666666666667H170.6666666666667L182.8266666666667 149.3333333333334L136.32 103.4666666666667C120.96 122.88 110.72 145.92 106.6666666666667 170.6666666666667M341.3333333333333 170.6666666666667H405.3333333333333C401.28 146.1333333333333 391.04 122.88 375.68 103.2533333333333L330.6666666666667 149.3333333333334L341.3333333333333 170.6666666666667M213.3333333333333 117.3333333333334L234.6666666666667 106.6666666666667V42.6666666666667C209.7066666666667 46.9333333333333 186.24 57.3866666666667 166.4 73.1733333333334L213.3333333333333 117.3333333333334M298.6666666666667 117.3333333333334L345.3866666666667 73.1733333333334C325.9733333333334 58.6666666666667 302.7200000000001 46.2933333333333 277.3333333333334 42.6666666666667V106.6666666666667L298.6666666666667 117.3333333333334z" />
+    <glyph glyph-name="buffer"
+      unicode="&#xF619;"
+      horiz-adv-x="512" d=" M268.8 386.9866666666667C325.76 360.5333333333334 384 333.0133333333333 440.7466666666667 306.56C443.9466666666666 305.0666666666667 448 304 448 299.7333333333334S443.9466666666666 294.6133333333334 440.7466666666667 293.12C384 266.6666666666667 326.4 239.5733333333334 269.2266666666667 213.3333333333334C260.48 208.8533333333333 251.52 208.8533333333333 242.7733333333333 213.3333333333334C185.3866666666667 239.7866666666667 128 266.6666666666667 70.8266666666667 293.3333333333334C67.84 294.6133333333334 64 295.68 64 299.9466666666667C64 303.7866666666667 67.84 304.8533333333334 70.6133333333333 306.1333333333334C128 333.0133333333333 186.4533333333333 360.5333333333334 244.0533333333333 387.2C250.24 389.9733333333334 262.4 389.76 268.8 386.9866666666667M256 -3.1999999999999C251.7333333333334 -3.1999999999999 248.7466666666667 -1.4933333333333 242.7733333333334 0.64C185.3866666666667 27.0933333333334 128 53.9733333333334 71.04 80.64C68.0533333333333 82.1333333333334 64 82.9866666666667 64 87.4666666666667C64 91.7333333333334 68.0533333333333 92.5866666666667 71.2533333333333 94.08C80.64 98.5600000000001 90.24 103.0400000000001 99.6266666666667 107.52C109.2266666666667 111.7866666666667 118.6133333333333 111.7866666666667 128 107.3066666666667C166.1866666666667 89.6000000000001 204.16 71.8933333333334 242.1333333333334 54.1866666666667C251.52 49.7066666666667 260.9066666666667 49.92 270.2933333333333 54.1866666666667C308.2666666666667 72.1066666666667 346.24 89.8133333333334 384 107.52C393.3866666666667 111.7866666666666 402.56 112 411.52 107.7333333333334C421.76 103.2533333333333 431.7866666666667 98.3466666666667 441.8133333333334 93.6533333333334C443.3066666666667 93.0133333333333 444.8 92.16 446.08 91.0933333333334C448.8533333333333 88.96 448.8533333333333 85.3333333333334 446.08 83.6266666666667C444.3733333333334 82.3466666666667 442.4533333333333 81.28 440.5333333333333 80.4266666666667C384 53.3333333333334 327.04 27.3066666666667 270.08 1.0666666666667C265.8133333333333 -1.0666666666667 260.0533333333333 -3.1999999999999 256 -3.1999999999999M256 103.0400000000001C253.8666666666666 103.0400000000001 246.4 105.1733333333334 242.3466666666666 106.6666666666667C185.1733333333333 133.5466666666668 128 160.0000000000001 71.2533333333333 186.8800000000001C68.2666666666666 188.1600000000001 64 189.2266666666667 64 193.4933333333334C64 197.9733333333334 68.2666666666666 198.8266666666667 71.4666666666666 200.3200000000001C81.0666666666666 205.0133333333334 90.6666666666666 209.4933333333334 100.2666666666666 213.9733333333334C109.44 218.0266666666667 118.6133333333333 218.0266666666667 128 213.3333333333334C165.9733333333333 195.8400000000001 204.3733333333333 177.9200000000001 242.7733333333333 160.0000000000001C251.52 155.9466666666668 260.48 155.9466666666668 269.44 160.0000000000001C307.84 178.1333333333335 346.24 196.0533333333334 384.8533333333333 213.9733333333334C393.6 218.0266666666667 402.56 218.0266666666667 411.52 213.9733333333334C421.5466666666666 209.2800000000001 431.7866666666667 204.5866666666668 441.8133333333334 199.8933333333334C443.0933333333333 199.2533333333334 444.5866666666667 198.6133333333334 445.8666666666667 197.5466666666668C448.8533333333334 195.2000000000001 448.8533333333334 192.0000000000001 445.6533333333333 189.4400000000001C444.5866666666667 188.5866666666668 443.0933333333333 187.9466666666667 441.8133333333334 187.3066666666667C384 160.0000000000001 326.6133333333334 133.3333333333334 269.0133333333333 106.6666666666667C264.9600000000001 104.7466666666668 257.7066666666667 103.0400000000001 256 103.0400000000001z" />
+    <glyph glyph-name="bug"
+      unicode="&#xF0E4;"
+      horiz-adv-x="512" d=" M298.6666666666667 192H213.3333333333333V234.6666666666667H298.6666666666667M298.6666666666667 106.6666666666667H213.3333333333333V149.3333333333334H298.6666666666667M426.6666666666667 277.3333333333334H366.7200000000001C357.12 293.9733333333334 343.8933333333333 308.2666666666667 327.8933333333333 319.1466666666667L362.6666666666667 353.92L332.5866666666667 384L286.2933333333333 337.7066666666667C276.48 340.0533333333334 266.6666666666667 341.3333333333334 256 341.3333333333334C245.3333333333333 341.3333333333334 235.52 340.0533333333334 225.92 337.7066666666667L179.4133333333333 384L149.3333333333333 353.92L183.8933333333334 319.1466666666667C168.1066666666667 308.2666666666667 154.88 293.9733333333334 145.28 277.3333333333334H85.3333333333333V234.6666666666667H129.92C128.8533333333333 227.6266666666667 128 220.5866666666667 128 213.3333333333334V192H85.3333333333333V149.3333333333334H128V128C128 120.7466666666667 128.8533333333333 113.7066666666667 129.92 106.6666666666667H85.3333333333333V64H145.28C167.4666666666667 25.8133333333334 208.64 0 256 0S344.5333333333333 25.8133333333334 366.7200000000001 64H426.6666666666667V106.6666666666667H382.08C383.1466666666667 113.7066666666667 384 120.7466666666667 384 128V149.3333333333334H426.6666666666667V192H384V213.3333333333334C384 220.5866666666667 383.1466666666667 227.6266666666667 382.08 234.6666666666667H426.6666666666667V277.3333333333334z" />
+    <glyph glyph-name="bug-check"
+      unicode="&#xFA2D;"
+      horiz-adv-x="512" d=" M384 298.6666666666667H324.0533333333333C314.4533333333333 315.7333333333334 301.2266666666667 330.6666666666667 285.2266666666667 341.3333333333334L320 375.2533333333334L289.92 405.3333333333333L243.6266666666667 359.04C233.8133333333334 361.3866666666667 224 362.6666666666667 213.3333333333333 362.6666666666667C202.6666666666667 362.6666666666667 193.0666666666667 361.3866666666667 183.2533333333333 359.04L136.7466666666667 405.3333333333333L106.6666666666667 375.2533333333334L141.2266666666667 341.3333333333334C125.2266666666667 330.6666666666667 112.2133333333333 315.52 102.6133333333334 298.6666666666667H42.6666666666667V256H87.2533333333333C85.9733333333333 248.96 85.3333333333333 241.92 85.3333333333333 234.6666666666667V213.3333333333334H42.6666666666667V170.6666666666667H85.3333333333333V149.3333333333334C85.3333333333333 142.0800000000001 85.9733333333333 135.04 87.2533333333333 128H42.6666666666667V85.3333333333334H102.6133333333334C133.5466666666667 32 197.9733333333334 8.3200000000001 256 28.8000000000001V42.6666666666667C256 96.8533333333334 290.3466666666667 145.0666666666667 341.3333333333333 163.2000000000001V170.6666666666667H384V213.3333333333334H341.3333333333333V234.6666666666667C341.3333333333333 241.92 340.6933333333334 248.96 339.4133333333333 256H384V298.6666666666667M256 128H170.6666666666667V170.6666666666667H256V128M256 213.3333333333334H170.6666666666667V256H256V213.3333333333334M378.6666666666667 -24.7466666666667L320 39.2533333333333L344.7466666666667 64L378.6666666666667 30.08L455.2533333333333 106.6666666666667L480 76.5866666666667L378.6666666666667 -24.7466666666667z" />
+    <glyph glyph-name="bug-check-outline"
+      unicode="&#xFA2E;"
+      horiz-adv-x="512" d=" M384 298.6666666666667H324.0533333333333C314.4533333333333 315.7333333333334 301.2266666666667 330.6666666666667 285.2266666666667 341.3333333333334L320 375.2533333333334L289.92 405.3333333333333L243.6266666666667 359.04C233.8133333333334 361.3866666666667 224 362.6666666666667 213.3333333333333 362.6666666666667C202.6666666666667 362.6666666666667 193.0666666666667 361.3866666666667 183.2533333333333 359.04L136.7466666666667 405.3333333333333L106.6666666666667 375.2533333333334L141.2266666666667 341.3333333333334C125.2266666666667 330.6666666666667 112.2133333333333 315.52 102.6133333333334 298.6666666666667H42.6666666666667V256H87.2533333333333C85.9733333333333 248.96 85.3333333333333 241.92 85.3333333333333 234.6666666666667V213.3333333333334H42.6666666666667V170.6666666666667H85.3333333333333V149.3333333333334C85.3333333333333 142.0800000000001 85.9733333333333 135.04 87.2533333333333 128H42.6666666666667V85.3333333333334H102.6133333333334C133.5466666666667 32 197.9733333333334 8.3200000000001 256 28.8000000000001V42.6666666666667C256 54.8266666666667 257.92 66.9866666666667 261.3333333333333 78.72C247.2533333333334 69.1200000000001 230.4 64 213.3333333333333 64C166.1866666666667 64 128 102.1866666666667 128 149.3333333333334V234.6666666666667C128 281.8133333333334 166.1866666666667 320 213.3333333333333 320S298.6666666666667 281.8133333333334 298.6666666666667 234.6666666666667V149.3333333333334C298.6666666666667 145.28 298.6666666666667 141.0133333333333 297.6 136.96C310.1866666666666 148.48 325.12 157.44 341.3333333333333 163.2000000000001V170.6666666666667H384V213.3333333333334H341.3333333333333V234.6666666666667C341.3333333333333 241.92 340.6933333333334 248.96 339.4133333333333 256H384V298.6666666666667M455.2533333333333 106.6666666666667L378.6666666666667 30.08L344.7466666666667 64L320 39.2533333333333L378.6666666666667 -24.7466666666667L480 76.5866666666667L455.2533333333333 106.6666666666667M256 256V213.3333333333334H170.6666666666667V256H256M256 170.6666666666667V128H170.6666666666667V170.6666666666667H256z" />
+    <glyph glyph-name="bug-outline"
+      unicode="&#xFA2F;"
+      horiz-adv-x="512" d=" M426.6666666666667 277.3333333333334H366.7200000000001C357.12 294.4 343.8933333333333 309.3333333333334 327.8933333333333 320L362.6666666666667 353.92L332.5866666666667 384L286.2933333333333 337.7066666666667C276.48 340.0533333333334 266.6666666666667 341.3333333333334 256 341.3333333333334C245.3333333333333 341.3333333333334 235.7333333333334 340.0533333333334 225.92 337.7066666666667L179.4133333333333 384L149.3333333333333 353.92L183.8933333333333 320C167.8933333333333 309.3333333333334 154.88 294.1866666666667 145.28 277.3333333333334H85.3333333333333V234.6666666666667H129.92C128.64 227.6266666666667 128 220.5866666666667 128 213.3333333333334V192H85.3333333333333V149.3333333333334H128V128C128 120.7466666666667 128.64 113.7066666666667 129.92 106.6666666666667H85.3333333333333V64H145.28C180.6933333333333 2.7733333333333 258.9866666666667 -17.92 320 17.4933333333333C339.4133333333333 28.5866666666667 355.6266666666667 44.8000000000001 366.7200000000001 64H426.6666666666667V106.6666666666667H382.08C383.36 113.7066666666667 384 120.7466666666667 384 128V149.3333333333334H426.6666666666667V192H384V213.3333333333334C384 220.5866666666667 383.36 227.6266666666667 382.08 234.6666666666667H426.6666666666667V277.3333333333334M341.3333333333333 128C341.3333333333333 80.8533333333334 303.1466666666667 42.6666666666667 256 42.6666666666667S170.6666666666667 80.8533333333334 170.6666666666667 128V213.3333333333334C170.6666666666667 260.48 208.8533333333333 298.6666666666667 256 298.6666666666667S341.3333333333333 260.48 341.3333333333333 213.3333333333334V128M298.6666666666667 234.6666666666667V192H213.3333333333333V234.6666666666667H298.6666666666667M213.3333333333333 149.3333333333334H298.6666666666667V106.6666666666667H213.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="bulldozer"
+      unicode="&#xFB07;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667C73.6 362.6666666666667 64 353.0666666666667 64 341.3333333333334V234.6666666666667C54.1866666666667 234.6666666666667 45.6533333333333 228.0533333333334 43.3066666666667 218.4533333333334V149.9733333333334H48.8533333333333C56.5333333333333 162.7733333333334 70.4 170.6666666666667 85.3333333333333 170.6666666666667H277.3333333333333C292.2666666666667 170.6666666666667 306.1333333333334 162.7733333333334 313.8133333333334 149.9733333333334H341.9733333333334L341.3333333333333 213.3333333333334C341.3333333333333 225.0666666666667 331.7333333333334 234.6666666666667 320 234.6666666666667H277.3333333333333V277.3333333333334C277.3333333333333 289.0666666666667 267.7333333333334 298.6666666666667 256 298.6666666666667S234.6666666666667 289.0666666666667 234.6666666666667 277.3333333333334V234.6666666666667H192V341.3333333333334C192 353.0666666666667 182.4 362.6666666666667 170.6666666666667 362.6666666666667H85.3333333333333M106.6666666666667 320H149.3333333333333V213.3333333333334H106.6666666666667V320M362.6666666666667 213.3333333333334V42.6666666666667H469.3333333333333V64L405.3333333333333 85.3333333333334L384 213.3333333333334H362.6666666666667M85.3333333333333 128C61.8666666666667 128 42.6666666666667 108.8 42.6666666666667 85.3333333333334S61.8666666666667 42.6666666666667 85.3333333333333 42.6666666666667H277.3333333333333C300.8 42.6666666666667 320 61.8666666666667 320 85.3333333333334S300.8 128 277.3333333333333 128H85.3333333333333z" />
+    <glyph glyph-name="bulletin-board"
+      unicode="&#xF0E5;"
+      horiz-adv-x="512" d=" M256.8533333333333 394.6666666666667L203.3066666666667 341.3333333333334H309.9733333333333L256.8533333333333 394.6666666666667M85.3333333333333 298.6666666666667V21.3333333333334H426.6666666666667V298.6666666666667H85.3333333333333M256 448L362.6666666666667 341.3333333333334H426.6666666666667C450.1333333333334 341.3333333333334 469.3333333333333 322.1333333333334 469.3333333333333 298.6666666666667V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V298.6666666666667C42.6666666666667 322.1333333333334 61.8666666666667 341.3333333333334 85.3333333333333 341.3333333333334H149.3333333333333L256 448M149.3333333333333 64V149.3333333333334H256V64H149.3333333333333M298.6666666666667 85.3333333333334V234.6666666666667H384V85.3333333333334H298.6666666666667M128 192V256H234.6666666666667V192H128z" />
+    <glyph glyph-name="bullhorn"
+      unicode="&#xF0E6;"
+      horiz-adv-x="512" d=" M256 277.3333333333334H85.3333333333333C61.8666666666667 277.3333333333334 42.6666666666667 258.1333333333334 42.6666666666667 234.6666666666667V149.3333333333334C42.6666666666667 125.8666666666667 61.8666666666667 106.6666666666667 85.3333333333333 106.6666666666667H106.6666666666667V21.3333333333334C106.6666666666667 9.6 116.2666666666667 0 128 0H170.6666666666667C182.4 0 192 9.6 192 21.3333333333334V106.6666666666667H256L362.6666666666667 21.3333333333334V362.6666666666667L256 277.3333333333334M458.6666666666666 192C458.6666666666666 155.52 438.1866666666666 122.4533333333334 405.3333333333333 106.6666666666667V277.3333333333334C437.9733333333334 261.3333333333334 458.6666666666666 228.2666666666667 458.6666666666666 192z" />
+    <glyph glyph-name="bullhorn-outline"
+      unicode="&#xFB08;"
+      horiz-adv-x="512" d=" M256 277.3333333333334H85.3333333333333C61.8666666666667 277.3333333333334 42.6666666666667 258.1333333333334 42.6666666666667 234.6666666666667V149.3333333333334C42.6666666666667 125.8666666666667 61.8666666666667 106.6666666666667 85.3333333333333 106.6666666666667H106.6666666666667V21.3333333333334C106.6666666666667 9.6 116.2666666666667 0 128 0H170.6666666666667C182.4 0 192 9.6 192 21.3333333333334V106.6666666666667H256L362.6666666666667 21.3333333333334V362.6666666666667L256 277.3333333333334M320 115.2000000000001L277.3333333333333 149.3333333333334H85.3333333333333V234.6666666666667H277.3333333333333L320 268.8V115.2M458.6666666666666 192C458.6666666666666 155.52 438.1866666666666 122.4533333333333 405.3333333333333 106.6666666666667V277.3333333333334C437.9733333333334 261.3333333333334 458.6666666666666 228.2666666666667 458.6666666666666 192z" />
+    <glyph glyph-name="bullseye"
+      unicode="&#xF5DD;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 362.6666666666667C350.2933333333334 362.6666666666667 426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334S85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667M256 320C185.3866666666667 320 128 262.6133333333334 128 192S185.3866666666667 64 256 64S384 121.3866666666667 384 192S326.6133333333334 320 256 320M256 277.3333333333334C303.1466666666667 277.3333333333334 341.3333333333333 239.1466666666667 341.3333333333333 192S303.1466666666667 106.6666666666667 256 106.6666666666667S170.6666666666667 144.8533333333334 170.6666666666667 192S208.8533333333333 277.3333333333334 256 277.3333333333334M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="bullseye-arrow"
+      unicode="&#xF8C8;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192C469.3333333333333 216.7466666666667 464.8533333333333 241.2800000000001 456.32 264.3200000000001L422.1866666666666 230.1866666666667C425.1733333333333 217.6 426.6666666666667 204.8000000000001 426.6666666666667 192C426.6666666666667 97.7066666666667 350.2933333333334 21.3333333333334 256 21.3333333333334S85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667C268.8 362.6666666666667 281.6 361.1733333333334 294.1866666666666 358.1866666666667L328.5333333333333 392.5333333333333C305.28 400.8533333333334 280.7466666666667 405.3333333333333 256 405.3333333333333M405.3333333333333 405.3333333333333L320 320V288L265.6 233.6C262.4 234.6666666666667 259.2 234.6666666666667 256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192C298.6666666666667 195.2 298.6666666666667 198.4 297.6 201.6L352 256H384L469.3333333333333 341.3333333333334H405.3333333333333V405.3333333333333M256 320C185.3866666666667 320 128 262.6133333333334 128 192S185.3866666666667 64 256 64S384 121.3866666666667 384 192H341.3333333333333C341.3333333333333 144.8533333333334 303.1466666666667 106.6666666666667 256 106.6666666666667S170.6666666666667 144.8533333333334 170.6666666666667 192S208.8533333333333 277.3333333333334 256 277.3333333333334V320z" />
+    <glyph glyph-name="bus"
+      unicode="&#xF0E7;"
+      horiz-adv-x="512" d=" M384 213.3333333333334H128V320H384M352 85.3333333333334C334.2933333333333 85.3333333333334 320 99.6266666666667 320 117.3333333333334S334.2933333333333 149.3333333333334 352 149.3333333333334S384 135.04 384 117.3333333333334S369.7066666666666 85.3333333333334 352 85.3333333333334M160 85.3333333333334C142.2933333333333 85.3333333333334 128 99.6266666666667 128 117.3333333333334S142.2933333333333 149.3333333333334 160 149.3333333333334S192 135.04 192 117.3333333333334S177.7066666666667 85.3333333333334 160 85.3333333333334M85.3333333333333 106.6666666666667C85.3333333333333 87.8933333333334 93.6533333333333 71.04 106.6666666666667 59.3066666666667V21.3333333333334C106.6666666666667 9.6 116.2666666666667 0 128 0H149.3333333333333C161.0666666666667 0 170.6666666666667 9.6 170.6666666666667 21.3333333333334V42.6666666666667H341.3333333333333V21.3333333333334C341.3333333333333 9.6 350.9333333333333 0 362.6666666666667 0H384C395.7333333333334 0 405.3333333333333 9.6 405.3333333333333 21.3333333333334V59.3066666666667C418.3466666666667 71.0400000000001 426.6666666666667 87.8933333333334 426.6666666666667 106.6666666666667V320C426.6666666666667 394.6666666666667 350.2933333333334 405.3333333333333 256 405.3333333333333S85.3333333333333 394.6666666666667 85.3333333333333 320V106.6666666666667z" />
+    <glyph glyph-name="bus-alert"
+      unicode="&#xFA98;"
+      horiz-adv-x="512" d=" M341.3333333333333 426.6666666666667C423.8933333333333 426.6666666666667 490.6666666666666 359.8933333333333 490.6666666666666 277.3333333333334C490.6666666666666 202.0266666666667 434.9866666666667 139.7333333333334 362.6666666666667 129.4933333333334V64C362.6666666666667 46.08 355.2 30.2933333333334 340.48 17.0666666666667V-21.3333333333333C340.48 -27.0933333333333 338.56 -32 334.5066666666667 -36.48C330.6666666666667 -40.7466666666667 325.5466666666667 -42.6666666666666 320 -42.6666666666666H298.6666666666667C292.48 -42.6666666666666 287.36 -40.7466666666667 283.0933333333334 -36.48C278.6133333333334 -32 276.48 -27.0933333333333 276.48 -21.3333333333333V0H107.52V-21.3333333333333C107.52 -27.0933333333333 105.3866666666667 -32 100.9066666666667 -36.48C96.64 -40.7466666666667 91.52 -42.6666666666666 85.3333333333333 -42.6666666666666H64C58.4533333333333 -42.6666666666666 53.3333333333333 -40.7466666666667 49.4933333333333 -36.48C45.44 -32 43.52 -27.0933333333333 43.52 -21.3333333333333V17.0666666666667C28.8 30.2933333333334 21.3333333333333 46.08 21.3333333333333 64V277.3333333333334C21.3333333333333 311.04 36.2666666666667 333.8666666666667 65.4933333333333 345.6C94.72 357.12 136.96 362.6666666666667 192 362.6666666666667L218.24 362.0266666666667C245.3333333333333 401.0666666666667 290.3466666666667 426.6666666666667 341.3333333333333 426.6666666666667M341.3333333333333 384C282.4533333333333 384 234.6666666666667 336.2133333333334 234.6666666666667 277.3333333333334S282.4533333333333 170.6666666666667 341.3333333333333 170.6666666666667S448 218.4533333333334 448 277.3333333333334S400.2133333333333 384 341.3333333333333 384M320 234.6666666666667H362.6666666666667V192H320V234.6666666666667M320 362.6666666666667H362.6666666666667V256H320V362.6666666666667M64 170.6666666666667H236.5866666666667C209.0666666666667 197.9733333333333 192 235.52 192 277.3333333333334H64V170.6666666666667M96 106.6666666666667C78.72 106.6666666666667 64 92.3733333333333 64 74.6666666666667S78.2933333333333 42.6666666666667 96 42.6666666666667C114.1333333333333 42.6666666666667 128 56.96 128 74.6666666666667S113.7066666666667 106.6666666666667 96 106.6666666666667M288 106.6666666666667C269.8666666666667 106.6666666666667 256 92.3733333333333 256 74.6666666666667S270.2933333333333 42.6666666666667 288 42.6666666666667C305.28 42.6666666666667 320 56.96 320 74.6666666666667S305.7066666666667 106.6666666666667 288 106.6666666666667z" />
+    <glyph glyph-name="bus-articulated-end"
+      unicode="&#xF79B;"
+      horiz-adv-x="512" d=" M458.6666666666666 320L426.6666666666667 288L458.6666666666666 256L426.6666666666667 224L458.6666666666666 192L426.6666666666667 160L458.6666666666666 128H266.6666666666667C266.6666666666667 92.5866666666667 238.08 64 202.6666666666667 64S138.6666666666667 92.5866666666667 138.6666666666667 128H53.3333333333333V277.3333333333334C53.3333333333333 301.0133333333333 72.32 320 96 320H458.6666666666666M394.6666666666667 288H320V234.6666666666667H394.6666666666667V288M288 288H202.6666666666667V234.6666666666667H288V288M170.6666666666667 288H85.3333333333333V234.6666666666667H170.6666666666667V288M202.6666666666667 160C184.96 160 170.6666666666667 145.7066666666667 170.6666666666667 128S184.96 96 202.6666666666667 96S234.6666666666667 110.2933333333334 234.6666666666667 128S220.3733333333333 160 202.6666666666667 160z" />
+    <glyph glyph-name="bus-articulated-front"
+      unicode="&#xF79C;"
+      horiz-adv-x="512" d=" M21.3333333333333 320L53.3333333333333 288L21.3333333333333 256L53.3333333333333 224L21.3333333333333 192L53.3333333333333 160L21.3333333333333 128H64C64 92.5866666666667 92.5866666666667 64 128 64S192 92.5866666666667 192 128H320C320 92.5866666666667 348.5866666666667 64 384 64S448 92.5866666666667 448 128H490.6666666666666V277.3333333333334C490.6666666666666 301.0133333333333 471.6799999999999 320 448 320H21.3333333333333M85.3333333333333 288H138.6666666666667V234.6666666666667H85.3333333333333V288M170.6666666666667 288H256V234.6666666666667H170.6666666666667V288M288 288H373.3333333333333V234.6666666666667H288V288M405.3333333333333 288H458.6666666666666V170.6666666666667L405.3333333333333 213.3333333333334V288M128 160C145.7066666666667 160 160 145.7066666666667 160 128S145.7066666666667 96 128 96S96 110.2933333333334 96 128S110.2933333333333 160 128 160M384 160C401.7066666666666 160 416 145.7066666666667 416 128S401.7066666666666 96 384 96S352 110.2933333333334 352 128S366.2933333333334 160 384 160z" />
+    <glyph glyph-name="bus-clock"
+      unicode="&#xF8C9;"
+      horiz-adv-x="512" d=" M352 362.6666666666667V272L413.0133333333333 235.9466666666667L397.0133333333333 209.92L320 256V362.6666666666667H352M341.3333333333333 170.6666666666667C370.3466666666667 170.6666666666667 395.52 181.3333333333334 416 202.0266666666667C437.3333333333333 222.72 448 247.6800000000001 448 277.3333333333334C448 306.3466666666667 437.3333333333333 331.52 416 352C395.52 373.3333333333334 370.3466666666667 384 341.3333333333333 384C311.68 384 286.72 373.3333333333334 266.0266666666667 352C245.3333333333333 331.52 234.6666666666667 306.3466666666667 234.6666666666667 277.3333333333334C234.6666666666667 247.68 245.3333333333333 222.72 266.0266666666667 202.0266666666667C286.7200000000001 181.3333333333334 311.68 170.6666666666667 341.3333333333333 170.6666666666667M288 42.6666666666667C297.3866666666667 42.6666666666667 305.0666666666667 46.08 311.04 52.48C317.0133333333333 58.8800000000001 320 66.3466666666667 320 74.6666666666667C320 83.6266666666667 317.0133333333333 91.0933333333334 311.04 97.4933333333333C305.0666666666667 103.8933333333334 297.3866666666667 106.6666666666667 288 106.6666666666667C278.6133333333334 106.6666666666667 270.9333333333333 103.8933333333334 264.96 97.4933333333333S256 83.6266666666667 256 74.6666666666667C256 66.3466666666667 258.9866666666667 58.8800000000001 264.96 52.48C270.9333333333333 46.08 278.6133333333334 42.6666666666667 288 42.6666666666667M64 170.6666666666667H237.0133333333333C206.9333333333333 199.68 192 234.6666666666667 192 277.3333333333334H64V170.6666666666667M96 42.6666666666667C105.3866666666667 42.6666666666667 113.0666666666667 46.08 119.04 52.48C125.0133333333333 58.8800000000001 128 66.3466666666667 128 74.6666666666667C128 83.6266666666667 125.0133333333333 91.0933333333334 119.04 97.4933333333333C113.0666666666667 103.8933333333334 105.3866666666667 106.6666666666667 96 106.6666666666667C86.6133333333333 106.6666666666667 78.9333333333333 103.8933333333334 72.96 97.4933333333333S64 83.6266666666667 64 74.6666666666667C64 66.3466666666667 66.9866666666667 58.8800000000001 72.96 52.48C78.9333333333333 46.08 86.6133333333333 42.6666666666667 96 42.6666666666667M341.3333333333333 426.6666666666667C382.2933333333334 426.6666666666667 417.7066666666666 412.3733333333334 446.9333333333333 382.9333333333334C476.3733333333333 353.7066666666667 490.6666666666666 318.2933333333334 490.6666666666666 277.3333333333334C490.6666666666666 239.5733333333334 478.72 207.1466666666667 453.9733333333334 179.4133333333334C429.4400000000001 151.8933333333334 398.9333333333334 135.2533333333333 362.6666666666667 129.92V64C362.6666666666667 46.08 355.6266666666667 30.2933333333334 341.3333333333333 17.0666666666667V-21.3333333333333C341.3333333333333 -27.0933333333333 338.9866666666667 -32 334.9333333333333 -36.48C330.6666666666667 -40.7466666666667 325.9733333333333 -42.6666666666666 320 -42.6666666666666H298.6666666666667C292.9066666666667 -42.6666666666666 288 -40.7466666666667 283.52 -36.48C279.2533333333334 -32 277.3333333333333 -27.0933333333333 277.3333333333333 -21.3333333333333V0H106.6666666666667V-21.3333333333333C106.6666666666667 -27.0933333333333 104.7466666666667 -32 100.48 -36.48C96 -40.7466666666667 91.0933333333333 -42.6666666666666 85.3333333333333 -42.6666666666666H64C58.0266666666667 -42.6666666666666 53.3333333333333 -40.7466666666667 49.0666666666667 -36.48C45.0133333333333 -32 42.6666666666667 -27.0933333333333 42.6666666666667 -21.3333333333333V17.0666666666667C28.3733333333333 30.2933333333334 21.3333333333333 46.08 21.3333333333333 64V277.3333333333334C21.3333333333333 311.04 35.6266666666667 333.8666666666667 65.0666666666667 345.6C94.2933333333333 357.12 136.7466666666667 362.6666666666667 192 362.6666666666667H205.0133333333333C210.9866666666666 362.6666666666667 215.2533333333333 362.0266666666667 218.0266666666667 362.0266666666667C248.1066666666667 405.3333333333333 289.0666666666667 426.6666666666667 341.3333333333333 426.6666666666667z" />
+    <glyph glyph-name="bus-double-decker"
+      unicode="&#xF79D;"
+      horiz-adv-x="512" d=" M64 362.6666666666667C40.32 362.6666666666667 21.3333333333333 343.68 21.3333333333333 320V85.3333333333334H64C64 49.92 92.5866666666667 21.3333333333334 128 21.3333333333334S192 49.92 192 85.3333333333334H320C320 49.92 348.5866666666667 21.3333333333334 384 21.3333333333334S448 49.92 448 85.3333333333334H490.6666666666666V149.3333333333334C490.6666666666666 173.0133333333333 471.6799999999999 192 448 192H405.3333333333333V245.3333333333334H490.6666666666666V320C490.6666666666666 343.68 471.6799999999999 362.6666666666667 448 362.6666666666667H64M53.3333333333333 330.6666666666667H138.6666666666667V277.3333333333334H53.3333333333333V330.6666666666667M170.6666666666667 330.6666666666667H256V277.3333333333334H170.6666666666667V330.6666666666667M288 330.6666666666667H373.3333333333333V277.3333333333334H288V330.6666666666667M405.3333333333333 330.6666666666667H458.6666666666666V277.3333333333334H405.3333333333333V330.6666666666667M288 245.3333333333334H373.3333333333333V192H288V245.3333333333334M53.3333333333333 245.3333333333334H138.6666666666667V192H53.3333333333333V245.3333333333334M170.6666666666667 245.3333333333334H256V192H170.6666666666667V245.3333333333334M128 117.3333333333334C145.7066666666667 117.3333333333334 160 103.04 160 85.3333333333334S145.7066666666667 53.3333333333334 128 53.3333333333334S96 67.6266666666667 96 85.3333333333334S110.2933333333333 117.3333333333334 128 117.3333333333334M384 117.3333333333334C401.7066666666666 117.3333333333334 416 103.04 416 85.3333333333334S401.7066666666666 53.3333333333334 384 53.3333333333334S352 67.6266666666667 352 85.3333333333334S366.2933333333334 117.3333333333334 384 117.3333333333334z" />
+    <glyph glyph-name="bus-school"
+      unicode="&#xF79E;"
+      horiz-adv-x="512" d=" M64 320C40.32 320 21.3333333333333 301.0133333333333 21.3333333333333 277.3333333333334V128H64C64 92.5866666666667 92.5866666666667 64 128 64S192 92.5866666666667 192 128H320C320 92.5866666666667 348.5866666666667 64 384 64S448 92.5866666666667 448 128H490.6666666666666V192C490.6666666666666 215.68 471.6799999999999 234.6666666666667 448 234.6666666666667H405.3333333333333V277.3333333333334C405.3333333333333 301.0133333333333 386.3466666666667 320 362.6666666666667 320H64M288 288H373.3333333333333V234.6666666666667H288V288M53.3333333333333 288H138.6666666666667V234.6666666666667H53.3333333333333V288M170.6666666666667 288H256V234.6666666666667H170.6666666666667V288M128 160C145.7066666666667 160 160 145.7066666666667 160 128S145.7066666666667 96 128 96S96 110.2933333333334 96 128S110.2933333333333 160 128 160M384 160C401.7066666666666 160 416 145.7066666666667 416 128S401.7066666666666 96 384 96S352 110.2933333333334 352 128S366.2933333333334 160 384 160z" />
+    <glyph glyph-name="bus-side"
+      unicode="&#xF79F;"
+      horiz-adv-x="512" d=" M64 320C40.32 320 21.3333333333333 301.0133333333333 21.3333333333333 277.3333333333334V128H64C64 92.5866666666667 92.5866666666667 64 128 64S192 92.5866666666667 192 128H320C320 92.5866666666667 348.5866666666667 64 384 64S448 92.5866666666667 448 128H490.6666666666666V277.3333333333334C490.6666666666666 301.0133333333333 471.6799999999999 320 448 320H64M53.3333333333333 288H138.6666666666667V234.6666666666667H53.3333333333333V288M170.6666666666667 288H256V234.6666666666667H170.6666666666667V288M288 288H373.3333333333333V234.6666666666667H288V288M405.3333333333333 288H458.6666666666666V170.6666666666667L405.3333333333333 213.3333333333334V288M128 160C145.7066666666667 160 160 145.7066666666667 160 128S145.7066666666667 96 128 96S96 110.2933333333334 96 128S110.2933333333333 160 128 160M384 160C401.7066666666666 160 416 145.7066666666667 416 128S401.7066666666666 96 384 96S352 110.2933333333334 352 128S366.2933333333334 160 384 160z" />
+    <glyph glyph-name="cached"
+      unicode="&#xF0E8;"
+      horiz-adv-x="512" d=" M405.3333333333333 277.3333333333334L320 192H384C384 121.3866666666667 326.6133333333334 64 256 64C234.6666666666667 64 213.9733333333333 69.3333333333334 196.2666666666667 78.9333333333333L165.12 47.7866666666666C191.36 31.1466666666667 222.5066666666667 21.3333333333334 256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192H490.6666666666666M128 192C128 262.6133333333334 185.3866666666667 320 256 320C277.3333333333333 320 298.0266666666667 314.6666666666667 315.7333333333334 305.0666666666667L346.88 336.2133333333334C320.64 352.8533333333334 289.4933333333334 362.6666666666667 256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192H21.3333333333333L106.6666666666667 106.6666666666667L192 192" />
+    <glyph glyph-name="cake"
+      unicode="&#xF0E9;"
+      horiz-adv-x="512" d=" M245.3333333333333 437.3333333333333C256 432 277.3333333333333 396.8 277.3333333333333 373.3333333333334S263.04 341.3333333333334 245.3333333333333 341.3333333333334S213.3333333333333 344.5333333333334 213.3333333333333 368S234.6666666666667 405.3333333333333 245.3333333333333 437.3333333333333M394.6666666666667 256C448 256 490.6666666666666 213.3333333333334 490.6666666666666 160C490.6666666666666 126.72 473.8133333333333 97.4933333333333 448 80.2133333333333V-42.6666666666666H64V80.2133333333333C38.1866666666667 97.4933333333333 21.3333333333333 126.72 21.3333333333333 160C21.3333333333333 213.3333333333334 64 256 117.3333333333333 256H213.3333333333333V320H277.3333333333333V256H394.6666666666667M256 106.6666666666667C285.44 106.6666666666667 309.3333333333333 130.5600000000001 309.3333333333333 160H341.3333333333333C341.3333333333333 130.5600000000001 365.2266666666667 106.6666666666667 394.6666666666667 106.6666666666667S448 130.5600000000001 448 160S424.1066666666667 213.3333333333334 394.6666666666667 213.3333333333334H117.3333333333333C87.8933333333333 213.3333333333334 64 189.4400000000001 64 160S87.8933333333333 106.6666666666667 117.3333333333333 106.6666666666667S170.6666666666667 130.56 170.6666666666667 160H202.6666666666667C202.6666666666667 130.5600000000001 226.56 106.6666666666667 256 106.6666666666667z" />
+    <glyph glyph-name="cake-layered"
+      unicode="&#xF0EA;"
+      horiz-adv-x="512" d=" M448 0V85.3333333333334C448 109.0133333333333 428.8 128 405.3333333333333 128H384V192C384 215.68 364.8 234.6666666666667 341.3333333333333 234.6666666666667H277.3333333333333V277.3333333333334H234.6666666666667V234.6666666666667H170.6666666666667C146.9866666666667 234.6666666666667 128 215.68 128 192V128H106.6666666666667C82.9866666666667 128 64 109.0133333333333 64 85.3333333333334V0H21.3333333333333V-42.6666666666666H490.6666666666666V0M256 298.6666666666667C279.4666666666667 298.6666666666667 298.6666666666667 317.8666666666667 298.6666666666667 341.3333333333334C298.6666666666667 349.44 296.5333333333333 356.9066666666667 292.48 363.3066666666667L256 426.6666666666667L219.3066666666667 363.3066666666667C215.4666666666667 356.9066666666667 213.3333333333333 349.44 213.3333333333333 341.3333333333334C213.3333333333333 317.8666666666667 232.5333333333334 298.6666666666667 256 298.6666666666667z" />
+    <glyph glyph-name="cake-variant"
+      unicode="&#xF0EB;"
+      horiz-adv-x="512" d=" M256 320C279.68 320 298.6666666666667 339.2000000000001 298.6666666666667 362.6666666666667C298.6666666666667 370.7733333333333 296.5333333333333 378.24 292.48 384.64L256 448L219.52 384.64C215.4666666666667 378.24 213.3333333333333 370.7733333333333 213.3333333333333 362.6666666666667C213.3333333333333 339.2000000000001 232.5333333333334 320 256 320M354.1333333333334 106.6666666666667L331.3066666666667 129.7066666666667L308.2666666666667 106.6666666666667C280.5333333333333 79.1466666666667 231.8933333333333 78.9333333333333 203.9466666666666 106.6666666666667L181.3333333333333 129.7066666666667L157.8666666666667 106.6666666666667C144 93.0133333333333 125.44 85.3333333333334 105.8133333333334 85.3333333333334C90.24 85.3333333333334 75.9466666666667 90.24 64 98.3466666666667V0C64 -11.7333333333333 73.6 -21.3333333333333 85.3333333333333 -21.3333333333333H426.6666666666667C438.4 -21.3333333333333 448 -11.7333333333333 448 0V98.3466666666667C436.0533333333334 90.24 421.76 85.3333333333334 406.1866666666666 85.3333333333334C386.56 85.3333333333334 368 93.0133333333333 354.1333333333333 106.6666666666667M384 256H277.3333333333333V298.6666666666667H234.6666666666667V256H128C92.5866666666667 256 64 227.4133333333334 64 192V159.1466666666667C64 136.1066666666667 82.7733333333333 117.3333333333334 105.8133333333333 117.3333333333334C117.3333333333333 117.3333333333334 128 121.6 135.2533333333333 129.4933333333334L181.3333333333333 174.9333333333333L226.3466666666667 129.4933333333334C242.1333333333334 113.7066666666667 269.6533333333333 113.7066666666667 285.44 129.4933333333334L330.6666666666667 174.9333333333333L376.5333333333333 129.4933333333334C384 121.6 394.6666666666667 117.3333333333334 405.9733333333333 117.3333333333334C429.0133333333333 117.3333333333334 447.9999999999999 136.1066666666667 447.9999999999999 159.1466666666667V192C447.9999999999999 227.4133333333334 419.4133333333333 256 383.9999999999999 256z" />
+    <glyph glyph-name="calculator"
+      unicode="&#xF0EC;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333H362.6666666666667C386.1333333333334 405.3333333333333 405.3333333333333 386.1333333333334 405.3333333333333 362.6666666666667V21.3333333333334C405.3333333333333 -2.1333333333333 386.1333333333334 -21.3333333333333 362.6666666666667 -21.3333333333333H149.3333333333333C125.8666666666667 -21.3333333333333 106.6666666666667 -2.1333333333333 106.6666666666667 21.3333333333334V362.6666666666667C106.6666666666667 386.1333333333334 125.8666666666667 405.3333333333333 149.3333333333333 405.3333333333333M149.3333333333333 362.6666666666667V277.3333333333334H362.6666666666667V362.6666666666667H149.3333333333333M149.3333333333333 234.6666666666667V192H192V234.6666666666667H149.3333333333333M234.6666666666667 234.6666666666667V192H277.3333333333333V234.6666666666667H234.6666666666667M320 234.6666666666667V192H362.6666666666667V234.6666666666667H320M149.3333333333333 149.3333333333334V106.6666666666667H192V149.3333333333334H149.3333333333333M234.6666666666667 149.3333333333334V106.6666666666667H277.3333333333333V149.3333333333334H234.6666666666667M320 149.3333333333334V106.6666666666667H362.6666666666667V149.3333333333334H320M149.3333333333333 64V21.3333333333334H192V64H149.3333333333333M234.6666666666667 64V21.3333333333334H277.3333333333333V64H234.6666666666667M320 64V21.3333333333334H362.6666666666667V64H320z" />
+    <glyph glyph-name="calculator-variant"
+      unicode="&#xFA99;"
+      horiz-adv-x="512" d=" M192 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V256C42.6666666666667 232.5333333333334 61.8666666666667 213.3333333333334 85.3333333333333 213.3333333333334H192C215.4666666666667 213.3333333333334 234.6666666666667 232.5333333333334 234.6666666666667 256V362.6666666666667C234.6666666666667 386.1333333333334 215.4666666666667 405.3333333333333 192 405.3333333333333M192 298.6666666666667H85.3333333333333V320H192V298.6666666666667M426.6666666666667 170.6666666666667H320C296.5333333333333 170.6666666666667 277.3333333333333 151.4666666666667 277.3333333333333 128V21.3333333333334C277.3333333333333 -2.1333333333333 296.5333333333333 -21.3333333333333 320 -21.3333333333333H426.6666666666667C450.1333333333334 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V128C469.3333333333333 151.4666666666667 450.1333333333334 170.6666666666667 426.6666666666667 170.6666666666667M426.6666666666667 42.6666666666667H320V64H426.6666666666667V42.6666666666667M426.6666666666667 85.3333333333334H320V106.6666666666667H426.6666666666667V85.3333333333334M426.6666666666667 405.3333333333333H320C296.5333333333333 405.3333333333333 277.3333333333333 386.1333333333334 277.3333333333333 362.6666666666667V256C277.3333333333333 232.5333333333334 296.5333333333333 213.3333333333334 320 213.3333333333334H426.6666666666667C450.1333333333334 213.3333333333334 469.3333333333333 232.5333333333334 469.3333333333333 256V362.6666666666667C469.3333333333333 386.1333333333334 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333M426.6666666666667 298.6666666666667H384V256H362.6666666666667V298.6666666666667H320V320H362.6666666666667V362.6666666666667H384V320H426.6666666666667V298.6666666666667M192 170.6666666666667H85.3333333333333C61.8666666666667 170.6666666666667 42.6666666666667 151.4666666666667 42.6666666666667 128V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H192C215.4666666666667 -21.3333333333333 234.6666666666667 -2.1333333333333 234.6666666666667 21.3333333333334V128C234.6666666666667 151.4666666666667 215.4666666666667 170.6666666666667 192 170.6666666666667M183.8933333333333 44.5866666666667L168.7466666666667 29.44L138.6666666666666 59.52L108.5866666666667 29.44L93.44 44.5866666666667L123.52 74.6666666666667L93.44 104.7466666666667L108.5866666666667 119.8933333333334L138.6666666666666 89.8133333333334L168.7466666666667 119.8933333333334L183.8933333333333 104.7466666666667L153.8133333333333 74.6666666666667L183.8933333333333 44.5866666666667z" />
+    <glyph glyph-name="calendar"
+      unicode="&#xF0ED;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M341.3333333333333 426.6666666666667V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384H384V426.6666666666667M362.6666666666667 192H256V85.3333333333334H362.6666666666667V192z" />
+    <glyph glyph-name="calendar-alert"
+      unicode="&#xFA30;"
+      horiz-adv-x="512" d=" M128 426.6666666666667V384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H384V426.6666666666667H341.3333333333333V384H170.6666666666667V426.6666666666667H128M106.6666666666667 298.6666666666667H405.3333333333333V42.6666666666667H106.6666666666667V298.6666666666667M234.6666666666667 277.3333333333334V170.6666666666667H277.3333333333333V277.3333333333334H234.6666666666667M234.6666666666667 128V85.3333333333334H277.3333333333333V128H234.6666666666667z" />
+    <glyph glyph-name="calendar-blank"
+      unicode="&#xF0EE;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M341.3333333333333 426.6666666666667V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384H384V426.6666666666667" />
+    <glyph glyph-name="calendar-blank-outline"
+      unicode="&#xFB42;"
+      horiz-adv-x="512" d=" M405.3333333333333 362.6666666666667H384V405.3333333333333H341.3333333333333V362.6666666666667H170.6666666666667V405.3333333333333H128V362.6666666666667H106.6666666666667C82.9866666666667 362.6666666666667 64 343.4666666666667 64 320V21.3333333333334C64 -2.1333333333333 83.2 -21.3333333333333 106.6666666666667 -21.3333333333333H405.3333333333333C428.8 -21.3333333333333 448 -2.1333333333333 448 21.3333333333334V320C448 343.4666666666667 428.8 362.6666666666667 405.3333333333333 362.6666666666667M405.3333333333333 21.3333333333334H106.6666666666667V234.6666666666667H405.3333333333333V21.3333333333334M405.3333333333333 277.3333333333334H106.6666666666667V320H405.3333333333333V277.3333333333334z" />
+    <glyph glyph-name="calendar-check"
+      unicode="&#xF0EF;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M405.3333333333333 384H384V426.6666666666667H341.3333333333333V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M352.64 212.0533333333334L330.0266666666667 234.6666666666667L225.92 130.5600000000001L180.6933333333333 175.7866666666668L158.08 153.1733333333334L225.92 85.3333333333334L352.64 212.0533333333334z" />
+    <glyph glyph-name="calendar-clock"
+      unicode="&#xF0F0;"
+      horiz-adv-x="512" d=" M320 170.6666666666667H352V110.5066666666667L404.0533333333334 80.4266666666667L388.0533333333334 52.6933333333333L320 91.9466666666667V170.6666666666667M405.3333333333333 277.3333333333334H106.6666666666667V42.6666666666667H206.2933333333333C197.12 62.08 192 83.84 192 106.6666666666667C192 189.2266666666667 258.7733333333333 256 341.3333333333333 256C364.16 256 385.92 250.88 405.3333333333333 241.7066666666667V277.3333333333334M106.6666666666667 0C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384H128V426.6666666666667H170.6666666666667V384H341.3333333333333V426.6666666666667H384V384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V211.2C474.4533333333333 184.3200000000001 490.6666666666666 147.4133333333334 490.6666666666666 106.6666666666667C490.6666666666666 24.1066666666667 423.8933333333333 -42.6666666666666 341.3333333333333 -42.6666666666666C300.5866666666667 -42.6666666666666 263.68 -26.4533333333333 236.8 0H106.6666666666667M341.3333333333333 210.1333333333333C284.16 210.1333333333333 237.8666666666667 163.84 237.8666666666667 106.6666666666667C237.8666666666667 49.4933333333333 284.16 3.2 341.3333333333333 3.2C398.5066666666667 3.2 444.8 49.4933333333333 444.8 106.6666666666667C444.8 163.84 398.5066666666667 210.1333333333333 341.3333333333333 210.1333333333333z" />
+    <glyph glyph-name="calendar-edit"
+      unicode="&#xF8A6;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H384V426.6666666666667H341.3333333333333V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H213.3333333333333V42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333V256H448V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M462.9333333333333 163.2000000000001L441.6 141.8666666666667L397.8666666666666 184.5333333333334L419.2 205.8666666666667C423.4666666666666 210.3466666666667 430.7199999999999 210.56 435.6266666666666 205.8666666666667L462.9333333333333 178.5600000000001C466.9866666666667 174.2933333333334 466.9866666666667 167.4666666666667 462.9333333333333 163.2000000000001M256 43.9466666666667L385.4933333333334 173.2266666666666L429.2266666666667 130.56L299.9466666666667 0H256V43.9466666666667z" />
+    <glyph glyph-name="calendar-export"
+      unicode="&#xFB09;"
+      horiz-adv-x="512" d=" M256 -21.3333333333333L341.3333333333333 64H277.3333333333333V192H234.6666666666667V64H170.6666666666667M405.3333333333333 362.6666666666667H384V405.3333333333333H341.3333333333333V362.6666666666667H170.6666666666667V405.3333333333333H128V362.6666666666667H106.6666666666667C83.2 362.6666666666667 64 343.4666666666667 64 320V21.3333333333334C64 -2.1333333333333 83.2 -21.3333333333333 106.6666666666667 -21.3333333333333H170.6666666666667V21.3333333333334H106.6666666666667V256H405.3333333333333V21.3333333333334H341.3333333333333V-21.3333333333333H405.3333333333333C428.8 -21.3333333333333 448 -2.1333333333333 448 21.3333333333334V320C448 343.4666666666667 428.8 362.6666666666667 405.3333333333333 362.6666666666667z" />
+    <glyph glyph-name="calendar-heart"
+      unicode="&#xF9D1;"
+      horiz-adv-x="512" d=" M405.3333333333333 21.3333333333334V256H106.6666666666667V21.3333333333334H405.3333333333333M341.3333333333333 405.3333333333333H384V362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320V21.3333333333334C448 -2.1333333333333 428.8 -21.3333333333333 405.3333333333333 -21.3333333333333H106.6666666666667C83.2 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V320C64 343.4666666666667 83.2 362.6666666666667 106.6666666666667 362.6666666666667H128V405.3333333333333H170.6666666666667V362.6666666666667H341.3333333333333V405.3333333333333M256 60.3733333333333L243.6266666666667 71.68C199.68 111.5733333333334 170.6666666666667 137.8133333333334 170.6666666666667 170.0266666666667C170.6666666666667 196.2666666666667 191.36 216.96 217.6 216.96C232.5333333333333 216.96 246.6133333333333 210.1333333333334 256 199.2533333333334C265.3866666666667 210.1333333333334 279.4666666666667 216.96 294.4 216.96C320.64 216.96 341.3333333333333 196.2666666666667 341.3333333333333 170.0266666666668C341.3333333333333 137.8133333333334 312.32 111.5733333333334 268.3733333333334 71.6800000000001L256 60.3733333333334z" />
+    <glyph glyph-name="calendar-import"
+      unicode="&#xFB0A;"
+      horiz-adv-x="512" d=" M256 192L170.6666666666667 106.6666666666667H234.6666666666667V-21.3333333333333H277.3333333333333V106.6666666666667H341.3333333333333M405.3333333333333 362.6666666666667H384V405.3333333333333H341.3333333333333V362.6666666666667H170.6666666666667V405.3333333333333H128V362.6666666666667H106.6666666666667C83.2 362.6666666666667 64 343.4666666666667 64 320V21.3333333333334C64 -2.1333333333333 83.2 -21.3333333333333 106.6666666666667 -21.3333333333333H192V21.3333333333334H106.6666666666667V256H405.3333333333333V21.3333333333334H320V-21.3333333333333H405.3333333333333C428.8 -21.3333333333333 448 -2.1333333333333 448 21.3333333333334V320C448 343.4666666666667 428.8 362.6666666666667 405.3333333333333 362.6666666666667z" />
+    <glyph glyph-name="calendar-multiple"
+      unicode="&#xF0F1;"
+      horiz-adv-x="512" d=" M448 85.3333333333334V277.3333333333334H149.3333333333333V85.3333333333334H448M448 384C471.4666666666667 384 490.6666666666666 364.8 490.6666666666666 341.3333333333334V85.3333333333334C490.6666666666666 61.8666666666667 471.4666666666667 42.6666666666667 448 42.6666666666667H149.3333333333333C125.6533333333333 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V341.3333333333334C106.6666666666667 364.8 125.8666666666667 384 149.3333333333333 384H170.6666666666667V426.6666666666667H213.3333333333333V384H384V426.6666666666667H426.6666666666667V384H448M64 0H362.6666666666667V-42.6666666666666H64C40.32 -42.6666666666666 21.3333333333333 -23.4666666666667 21.3333333333333 0V256H64V0M405.3333333333333 128H320V213.3333333333334H405.3333333333333V128z" />
+    <glyph glyph-name="calendar-multiple-check"
+      unicode="&#xF0F2;"
+      horiz-adv-x="512" d=" M448 85.3333333333334V277.3333333333334H149.3333333333333V85.3333333333334H448M448 384C471.4666666666667 384 490.6666666666666 364.8 490.6666666666666 341.3333333333334V85.3333333333334C490.6666666666666 61.8666666666667 471.4666666666667 42.6666666666667 448 42.6666666666667H149.3333333333333C125.6533333333333 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V341.3333333333334C106.6666666666667 364.8 125.8666666666667 384 149.3333333333333 384H170.6666666666667V426.6666666666667H213.3333333333333V384H384V426.6666666666667H426.6666666666667V384H448M373.9733333333334 212.0533333333334L279.2533333333334 117.3333333333334L222.08 174.5066666666667L244.6933333333334 197.12L279.2533333333334 162.5600000000001L351.36 234.6666666666667L373.9733333333333 212.0533333333334M64 0H362.6666666666667V-42.6666666666666H64C40.32 -42.6666666666666 21.3333333333333 -23.4666666666667 21.3333333333333 0V256H64V0z" />
+    <glyph glyph-name="calendar-multiselect"
+      unicode="&#xFA31;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667V277.3333333333334H106.6666666666667V42.6666666666667H405.3333333333333M341.3333333333333 426.6666666666667H384V384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384H128V426.6666666666667H170.6666666666667V384H341.3333333333333V426.6666666666667M149.3333333333333 234.6666666666667H192V192H149.3333333333333V234.6666666666667M320 234.6666666666667H362.6666666666667V192H320V234.6666666666667M234.6666666666667 149.3333333333334H277.3333333333333V106.6666666666667H234.6666666666667V149.3333333333334M320 149.3333333333334H362.6666666666667V106.6666666666667H320V149.3333333333334z" />
+    <glyph glyph-name="calendar-outline"
+      unicode="&#xFB43;"
+      horiz-adv-x="512" d=" M405.3333333333333 362.6666666666667H384V405.3333333333333H341.3333333333333V362.6666666666667H170.6666666666667V405.3333333333333H128V362.6666666666667H106.6666666666667C82.9866666666667 362.6666666666667 64 343.4666666666667 64 320V21.3333333333334C64 -2.1333333333333 83.2 -21.3333333333333 106.6666666666667 -21.3333333333333H405.3333333333333C428.8 -21.3333333333333 448 -2.1333333333333 448 21.3333333333334V320C448 343.4666666666667 428.8 362.6666666666667 405.3333333333333 362.6666666666667M405.3333333333333 21.3333333333334H106.6666666666667V234.6666666666667H405.3333333333333V21.3333333333334M405.3333333333333 277.3333333333334H106.6666666666667V320H405.3333333333333V277.3333333333334M256 170.6666666666667H362.6666666666667V64H256V170.6666666666667z" />
+    <glyph glyph-name="calendar-plus"
+      unicode="&#xF0F3;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667V298.6666666666667H106.6666666666667V42.6666666666667H405.3333333333333M341.3333333333333 426.6666666666667H384V384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384H128V426.6666666666667H170.6666666666667V384H341.3333333333333V426.6666666666667M234.6666666666667 256H277.3333333333333V192H341.3333333333333V149.3333333333334H277.3333333333333V85.3333333333334H234.6666666666667V149.3333333333334H170.6666666666667V192H234.6666666666667V256z" />
+    <glyph glyph-name="calendar-question"
+      unicode="&#xF691;"
+      horiz-adv-x="512" d=" M128 426.6666666666667V384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H384V426.6666666666667H341.3333333333333V384H170.6666666666667V426.6666666666667H128M106.6666666666667 277.3333333333334H405.3333333333333V42.6666666666667H106.6666666666667V277.3333333333334M260.0533333333334 256C241.4933333333334 256 226.56 251.7333333333334 215.04 243.4133333333334C203.9466666666667 234.6666666666667 198.4 222.5066666666667 198.6133333333334 205.6533333333334L198.8266666666667 205.0133333333334H240.0000000000001C240.2133333333334 211.4133333333334 242.1333333333334 216.32 245.9733333333334 219.7333333333334C249.8133333333334 222.9333333333334 254.5066666666667 224.6400000000001 260.0533333333334 224.6400000000001C266.6666666666667 224.6400000000001 272.2133333333334 222.5066666666667 276.0533333333334 218.6666666666667C279.8933333333333 214.6133333333334 281.6 209.0666666666667 281.6 202.6666666666667C281.6 195.84 280.1066666666667 190.0800000000001 276.6933333333334 185.1733333333334C273.7066666666667 180.2666666666667 269.2266666666667 176.0000000000001 263.68 172.5866666666667C252.8 165.3333333333334 245.3333333333334 158.9333333333334 241.28 153.1733333333334C237.0133333333334 147.6266666666667 234.6666666666667 138.6666666666668 234.6666666666667 128.0000000000001H277.3333333333333C277.3333333333333 134.6133333333334 278.1866666666666 139.9466666666667 280.1066666666667 143.7866666666668C282.0266666666667 147.6266666666667 285.6533333333333 151.4666666666667 290.9866666666667 154.8800000000001C300.5866666666667 160.0000000000001 308.48 166.1866666666667 314.6666666666667 174.72C320.8533333333333 183.2533333333334 324.0533333333333 192.0000000000001 324.0533333333333 202.6666666666667C324.0533333333333 218.8800000000001 318.2933333333333 231.8933333333334 306.7733333333333 241.4933333333334C295.4666666666667 251.0933333333334 279.8933333333333 256.0000000000001 260.0533333333333 256.0000000000001M234.6666666666667 106.6666666666667V64H277.3333333333333V106.6666666666667H234.6666666666667z" />
+    <glyph glyph-name="calendar-range"
+      unicode="&#xF678;"
+      horiz-adv-x="512" d=" M192 234.6666666666667H149.3333333333333V192H192V234.6666666666667M277.3333333333333 234.6666666666667H234.6666666666667V192H277.3333333333333V234.6666666666667M362.6666666666667 234.6666666666667H320V192H362.6666666666667V234.6666666666667M405.3333333333333 384H384V426.6666666666667H341.3333333333333V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="calendar-range-outline"
+      unicode="&#xFB44;"
+      horiz-adv-x="512" d=" M149.3333333333333 192H192V149.3333333333334H149.3333333333333V192M448 320V21.3333333333334C448 -2.1333333333333 428.8 -21.3333333333333 405.3333333333333 -21.3333333333333H106.6666666666667C82.9866666666667 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V320C64 343.4666666666667 83.2 362.6666666666667 106.6666666666667 362.6666666666667H128V405.3333333333333H170.6666666666667V362.6666666666667H341.3333333333333V405.3333333333333H384V362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320M106.6666666666667 277.3333333333334H405.3333333333333V320H106.6666666666667V277.3333333333334M405.3333333333333 21.3333333333334V234.6666666666667H106.6666666666667V21.3333333333334H405.3333333333333M320 149.3333333333334H362.6666666666667V192H320V149.3333333333334M234.6666666666667 149.3333333333334H277.3333333333333V192H234.6666666666667V149.3333333333334z" />
+    <glyph glyph-name="calendar-remove"
+      unicode="&#xF0F4;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M405.3333333333333 384H384V426.6666666666667H341.3333333333333V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M198.6133333333334 85.3333333333334L250.6666666666667 137.3866666666667L302.72 85.3333333333334L325.3333333333333 107.9466666666667L273.28 160L325.3333333333333 212.0533333333334L302.72 234.6666666666667L250.6666666666667 182.6133333333334L198.6133333333334 234.6666666666667L176 212.0533333333334L228.0533333333333 160L176 107.9466666666667L198.6133333333334 85.3333333333334z" />
+    <glyph glyph-name="calendar-search"
+      unicode="&#xF94B;"
+      horiz-adv-x="512" d=" M330.6666666666667 192C384 192 426.6666666666667 149.3333333333334 426.6666666666667 96C426.6666666666667 77.2266666666667 421.3333333333333 59.52 411.9466666666666 44.8000000000001L477.6533333333333 -21.3333333333333L448 -50.9866666666667L381.44 14.5066666666667C366.7199999999999 5.3333333333334 349.2266666666666 0 330.6666666666667 0C277.3333333333333 0 234.6666666666667 42.6666666666667 234.6666666666667 96S277.3333333333333 192 330.6666666666667 192M330.6666666666667 149.3333333333334C301.2266666666667 149.3333333333334 277.3333333333333 125.44 277.3333333333333 96S301.2266666666667 42.6666666666667 330.6666666666667 42.6666666666667S384 66.5600000000001 384 96S360.1066666666667 149.3333333333334 330.6666666666667 149.3333333333334M405.3333333333333 277.3333333333334H106.6666666666667V42.6666666666667H202.6666666666667C209.28 26.6666666666667 218.88 12.3733333333333 230.6133333333334 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384H128V426.6666666666667H170.6666666666667V384H341.3333333333333V426.6666666666667H384V384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V170.0266666666667C437.3333333333333 187.3066666666667 422.4 201.8133333333334 405.3333333333333 213.3333333333334V277.3333333333334z" />
+    <glyph glyph-name="calendar-star"
+      unicode="&#xF9D2;"
+      horiz-adv-x="512" d=" M405.3333333333333 21.3333333333334H106.6666666666667V256H405.3333333333333M341.3333333333333 405.3333333333333V362.6666666666667H170.6666666666667V405.3333333333333H128V362.6666666666667H106.6666666666667C83.2 362.6666666666667 64 343.4666666666667 64 320V21.3333333333334C64 -2.1333333333333 83.2 -21.3333333333333 106.6666666666667 -21.3333333333333H405.3333333333333C428.8 -21.3333333333333 448 -2.1333333333333 448 21.3333333333334V320C448 343.4666666666667 428.8 362.6666666666667 405.3333333333333 362.6666666666667H384V405.3333333333333M232.1066666666667 170.6666666666667H155.0933333333333L217.3866666666667 125.6533333333334L193.7066666666667 52.0533333333334L256 97.4933333333333L318.2933333333333 52.0533333333334L294.4 125.4400000000001L356.6933333333333 170.6666666666667H279.8933333333333L256 244.0533333333334L232.1066666666667 170.6666666666667z" />
+    <glyph glyph-name="calendar-text"
+      unicode="&#xF0F5;"
+      horiz-adv-x="512" d=" M298.6666666666667 149.3333333333334H149.3333333333333V106.6666666666667H298.6666666666667M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M405.3333333333333 384H384V426.6666666666667H341.3333333333333V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M362.6666666666667 234.6666666666667H149.3333333333333V192H362.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="calendar-today"
+      unicode="&#xF0F6;"
+      horiz-adv-x="512" d=" M149.3333333333333 234.6666666666667H256V128H149.3333333333333M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M405.3333333333333 384H384V426.6666666666667H341.3333333333333V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="calendar-week"
+      unicode="&#xFA32;"
+      horiz-adv-x="512" d=" M128 426.6666666666667H170.6666666666667V384H341.3333333333333V426.6666666666667H384V384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384H128V426.6666666666667M106.6666666666667 298.6666666666667V42.6666666666667H405.3333333333333V298.6666666666667H106.6666666666667M149.3333333333333 256H362.6666666666667V213.3333333333334H149.3333333333333V256z" />
+    <glyph glyph-name="calendar-week-begin"
+      unicode="&#xFA33;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M341.3333333333333 426.6666666666667V384H170.6666666666667V426.6666666666667H128V384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384H384V426.6666666666667M192 234.6666666666667H149.3333333333333V85.3333333333334H192V234.6666666666667z" />
+    <glyph glyph-name="call-made"
+      unicode="&#xF0F7;"
+      horiz-adv-x="512" d=" M192 341.3333333333334V298.6666666666667H332.5866666666667L85.3333333333333 51.4133333333334L115.4133333333333 21.3333333333334L362.6666666666667 268.5866666666667V128H405.3333333333333V341.3333333333334" />
+    <glyph glyph-name="call-merge"
+      unicode="&#xF0F8;"
+      horiz-adv-x="512" d=" M362.6666666666667 12.5866666666667L392.7466666666667 42.6666666666667L320 115.4133333333334L289.92 85.3333333333334M160 277.3333333333334H234.6666666666667V158.0800000000001L119.2533333333333 42.6666666666667L149.3333333333333 12.5866666666667L277.3333333333333 140.5866666666667V277.3333333333334H352L256 373.3333333333334" />
+    <glyph glyph-name="call-missed"
+      unicode="&#xF0F9;"
+      horiz-adv-x="512" d=" M417.92 298.6666666666667L256 136.7466666666667L136.7466666666667 256H234.6666666666667V298.6666666666667H64V128H106.6666666666667V225.92L256 76.5866666666667L448 268.5866666666667" />
+    <glyph glyph-name="call-received"
+      unicode="&#xF0FA;"
+      horiz-adv-x="512" d=" M426.6666666666667 332.5866666666667L396.5866666666667 362.6666666666667L149.3333333333333 115.4133333333334V256H106.6666666666667V42.6666666666667H320V85.3333333333334H179.4133333333333" />
+    <glyph glyph-name="call-split"
+      unicode="&#xF0FB;"
+      horiz-adv-x="512" d=" M298.6666666666667 362.6666666666667L347.52 313.8133333333334L286.08 252.3733333333334L316.3733333333334 222.08L377.8133333333334 283.52L426.6666666666667 234.6666666666667V362.6666666666667M213.3333333333333 362.6666666666667H85.3333333333333V234.6666666666667L134.1866666666667 283.52L234.6666666666667 183.2533333333333V21.3333333333334H277.3333333333333V200.7466666666667L164.48 313.8133333333334" />
+    <glyph glyph-name="camcorder"
+      unicode="&#xF0FC;"
+      horiz-adv-x="512" d=" M362.6666666666667 224V298.6666666666667C362.6666666666667 310.4 353.0666666666667 320 341.3333333333333 320H85.3333333333333C73.6 320 64 310.4 64 298.6666666666667V85.3333333333334C64 73.6 73.6 64 85.3333333333333 64H341.3333333333333C353.0666666666667 64 362.6666666666667 73.6 362.6666666666667 85.3333333333334V160L448 74.6666666666667V309.3333333333334L362.6666666666667 224z" />
+    <glyph glyph-name="camcorder-box"
+      unicode="&#xF0FD;"
+      horiz-adv-x="512" d=" M384 106.6666666666667L298.6666666666667 174.9333333333333V106.6666666666667H128V277.3333333333334H298.6666666666667V209.0666666666667L384 277.3333333333334M426.6666666666667 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="camcorder-box-off"
+      unicode="&#xF0FE;"
+      horiz-adv-x="512" d=" M128 277.3333333333334H143.5733333333333L298.6666666666667 122.24V106.6666666666667H128M48.4266666666667 426.6666666666667L21.3333333333333 399.5733333333333L64 356.6933333333334C51.4133333333333 349.4400000000001 42.6666666666667 335.7866666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H399.5733333333333L442.24 -21.3333333333333L469.3333333333333 5.76M426.6666666666667 362.6666666666667H166.8266666666667L252.16 277.3333333333334H298.6666666666667V230.8266666666667L310.8266666666667 218.6666666666667L384 277.3333333333334V145.4933333333334L469.3333333333333 60.3733333333333V320C469.3333333333333 343.4666666666667 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="camcorder-off"
+      unicode="&#xF0FF;"
+      horiz-adv-x="512" d=" M69.76 405.3333333333333L42.6666666666667 378.24L100.9066666666667 320H85.3333333333333C73.6 320 64 310.4 64 298.6666666666667V85.3333333333334C64 73.6 73.6 64 85.3333333333333 64H341.3333333333333C345.6 64 349.6533333333333 65.7066666666667 352.8533333333333 67.84L420.9066666666667 0L448 27.0933333333334M448 309.3333333333334L362.6666666666667 224V298.6666666666667C362.6666666666667 310.4 353.0666666666667 320 341.3333333333333 320H209.4933333333334L448 81.4933333333333V309.3333333333334z" />
+    <glyph glyph-name="camera"
+      unicode="&#xF100;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H149.3333333333333L192 405.3333333333333H320L362.6666666666667 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M256 298.6666666666667C197.12 298.6666666666667 149.3333333333333 250.88 149.3333333333333 192S197.12 85.3333333333334 256 85.3333333333334S362.6666666666667 133.12 362.6666666666667 192S314.88 298.6666666666667 256 298.6666666666667M256 256C291.4133333333333 256 320 227.4133333333334 320 192S291.4133333333333 128 256 128S192 156.5866666666667 192 192S220.5866666666667 256 256 256z" />
+    <glyph glyph-name="camera-account"
+      unicode="&#xF8CA;"
+      horiz-adv-x="512" d=" M85.3333333333333 341.3333333333334H149.3333333333333L192 384H320L362.6666666666667 341.3333333333334H426.6666666666667C450.1333333333334 341.3333333333334 469.3333333333333 322.1333333333334 469.3333333333333 298.6666666666667V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V298.6666666666667C42.6666666666667 322.1333333333334 61.8666666666667 341.3333333333334 85.3333333333333 341.3333333333334M341.3333333333333 85.3333333333334V106.6666666666667C341.3333333333333 135.04 284.3733333333334 149.3333333333334 256 149.3333333333334S170.6666666666667 135.04 170.6666666666667 106.6666666666667V85.3333333333334H341.3333333333333M256 256C232.5333333333334 256 213.3333333333333 236.8 213.3333333333333 213.3333333333334S232.5333333333334 170.6666666666667 256 170.6666666666667S298.6666666666667 189.8666666666667 298.6666666666667 213.3333333333334S279.4666666666667 256 256 256z" />
+    <glyph glyph-name="camera-burst"
+      unicode="&#xF692;"
+      horiz-adv-x="512" d=" M21.3333333333333 341.3333333333334H64V42.6666666666667H21.3333333333333V341.3333333333334M106.6666666666667 341.3333333333334H149.3333333333333V42.6666666666667H106.6666666666667V341.3333333333334M469.3333333333333 341.3333333333334H213.3333333333333C201.6 341.3333333333334 192 331.7333333333334 192 320V64C192 52.2666666666667 201.6 42.6666666666667 213.3333333333333 42.6666666666667H469.3333333333333C481.0666666666667 42.6666666666667 490.6666666666666 52.2666666666667 490.6666666666666 64V320C490.6666666666666 331.7333333333334 481.0666666666667 341.3333333333334 469.3333333333333 341.3333333333334M234.6666666666667 85.3333333333334L288 152.5333333333334L326.1866666666666 106.6666666666667L379.52 175.36L448 85.3333333333334H234.6666666666667z" />
+    <glyph glyph-name="camera-control"
+      unicode="&#xFB45;"
+      horiz-adv-x="512" d=" M192 192C192 209.28 198.4 224 210.9866666666667 237.0133333333333C224 249.6 238.72 256 256 256C273.28 256 288 249.6 301.0133333333333 237.0133333333333C313.6 224 320 209.28 320 192C320 174.72 313.6 160 301.0133333333333 146.9866666666667C288 134.4 273.28 128 256 128C238.72 128 224 134.4 210.9866666666667 146.9866666666667C198.4 160 192 174.72 192 192M117.9733333333333 267.9466666666667L155.9466666666667 229.9733333333334L117.9733333333333 192L155.9466666666667 154.0266666666667L117.9733333333333 116.0533333333334L42.6666666666667 192L117.9733333333333 267.9466666666667M180.0533333333333 53.9733333333334L218.0266666666667 91.9466666666667L256 53.9733333333334L293.9733333333333 91.9466666666667L331.9466666666666 53.9733333333334L256 -21.3333333333333L180.0533333333333 53.9733333333334M394.0266666666667 116.0533333333334L356.0533333333333 154.0266666666667L394.0266666666667 192L356.0533333333333 229.9733333333334L394.0266666666667 267.9466666666667L469.3333333333333 192L394.0266666666667 116.0533333333334M331.9466666666667 330.0266666666667L293.9733333333334 292.0533333333334L256 330.0266666666667L218.0266666666667 292.0533333333334L180.0533333333334 330.0266666666667L256 405.3333333333333L331.9466666666667 330.0266666666667z" />
+    <glyph glyph-name="camera-enhance"
+      unicode="&#xF101;"
+      horiz-adv-x="512" d=" M192 384L152.96 341.3333333333334H85.3333333333333C61.8666666666667 341.3333333333334 42.6666666666667 322.1333333333334 42.6666666666667 298.6666666666667V42.6666666666667C42.6666666666667 19.2 61.8666666666667 0 85.3333333333333 0H426.6666666666667C450.1333333333334 0 469.3333333333333 19.2 469.3333333333333 42.6666666666667V298.6666666666667C469.3333333333333 322.1333333333334 450.1333333333334 341.3333333333334 426.6666666666667 341.3333333333334H359.04L320 384M256 64C197.12 64 149.3333333333333 111.7866666666667 149.3333333333333 170.6666666666667S197.12 277.3333333333334 256 277.3333333333334S362.6666666666667 229.5466666666667 362.6666666666667 170.6666666666667S314.88 64 256 64M256 85.3333333333334L282.6666666666667 144L341.3333333333333 170.6666666666667L282.6666666666667 197.3333333333334L256 256L229.3333333333333 197.3333333333334L170.6666666666667 170.6666666666667L229.3333333333333 144" />
+    <glyph glyph-name="camera-enhance-outline"
+      unicode="&#xFB46;"
+      horiz-adv-x="512" d=" M256 234.6666666666667L235.9466666666667 190.72L192 170.6666666666667L235.9466666666667 150.6133333333334L256 106.6666666666667L276.0533333333333 150.6133333333334L320 170.6666666666667L276.0533333333333 190.72L256 234.6666666666667M426.6666666666667 341.3333333333334H359.04L320 384H192L152.96 341.3333333333334H85.3333333333333C61.8666666666667 341.3333333333334 42.6666666666667 322.1333333333334 42.6666666666667 298.6666666666667V42.6666666666667C42.6666666666667 19.2 61.8666666666667 0 85.3333333333333 0H426.6666666666667C450.1333333333334 0 469.3333333333333 19.2 469.3333333333333 42.6666666666667V298.6666666666667C469.3333333333333 322.1333333333334 450.1333333333334 341.3333333333334 426.6666666666667 341.3333333333334M426.6666666666667 42.6666666666667H85.3333333333333V298.6666666666667H171.7333333333334L184.32 312.5333333333334L210.7733333333334 341.3333333333334H301.2266666666667L327.68 312.5333333333334L340.2666666666667 298.6666666666667H426.6666666666667V42.6666666666667M256 277.3333333333334C197.12 277.3333333333334 149.3333333333333 229.5466666666667 149.3333333333333 170.6666666666667S197.12 64 256 64S362.6666666666667 111.7866666666667 362.6666666666667 170.6666666666667S314.88 277.3333333333334 256 277.3333333333334M256 106.6666666666667C220.5866666666667 106.6666666666667 192 135.2533333333333 192 170.6666666666667S220.5866666666667 234.6666666666667 256 234.6666666666667S320 206.08 320 170.6666666666667S291.4133333333333 106.6666666666667 256 106.6666666666667z" />
+    <glyph glyph-name="camera-front"
+      unicode="&#xF102;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333H362.6666666666667V181.3333333333334C362.6666666666667 216.96 291.6266666666667 234.6666666666667 256 234.6666666666667S149.3333333333333 216.96 149.3333333333333 181.3333333333334M362.6666666666667 448H149.3333333333333C125.8666666666667 448 106.6666666666667 428.8 106.6666666666667 405.3333333333333V106.6666666666667C106.6666666666667 83.2 125.8666666666667 64 149.3333333333333 64H362.6666666666667C386.1333333333334 64 405.3333333333333 83.2 405.3333333333333 106.6666666666667V405.3333333333333C405.3333333333333 428.8 386.1333333333334 448 362.6666666666667 448M256 277.3333333333334C279.4666666666667 277.3333333333334 298.6666666666667 296.5333333333334 298.6666666666667 320S279.4666666666667 362.6666666666667 256 362.6666666666667S213.3333333333333 343.4666666666667 213.3333333333333 320S232.5333333333334 277.3333333333334 256 277.3333333333334M298.6666666666667 21.3333333333334V-21.3333333333333H405.3333333333333V21.3333333333334M213.3333333333333 21.3333333333334H106.6666666666667V-21.3333333333333H213.3333333333333V-64L277.3333333333333 0L213.3333333333333 64V21.3333333333334z" />
+    <glyph glyph-name="camera-front-variant"
+      unicode="&#xF103;"
+      horiz-adv-x="512" d=" M128 448H384C407.4666666666667 448 426.6666666666667 428.8 426.6666666666667 405.3333333333333V-21.3333333333333C426.6666666666667 -44.8 407.4666666666667 -64 384 -64H128C104.5333333333333 -64 85.3333333333333 -44.8 85.3333333333333 -21.3333333333333V405.3333333333333C85.3333333333333 428.8 104.5333333333333 448 128 448M256 320C291.4133333333333 320 320 291.4133333333334 320 256S291.4133333333333 192 256 192S192 220.5866666666667 192 256S220.5866666666667 320 256 320M234.6666666666667 426.6666666666667V384H277.3333333333333V426.6666666666667H234.6666666666667M128 362.6666666666667V96C128 125.44 185.3866666666667 149.3333333333334 256 149.3333333333334S384 125.44 384 96V362.6666666666667H128M277.3333333333333 64H192V21.3333333333334H277.3333333333333V-21.3333333333333L341.3333333333333 42.6666666666667L277.3333333333333 106.6666666666667V64z" />
+    <glyph glyph-name="camera-gopro"
+      unicode="&#xF7A0;"
+      horiz-adv-x="512" d=" M426.6666666666667 341.3333333333334H320C296.5333333333333 341.3333333333334 277.3333333333333 322.1333333333334 277.3333333333333 298.6666666666667V192C277.3333333333333 168.5333333333334 296.5333333333333 149.3333333333334 320 149.3333333333334H426.6666666666667C450.1333333333334 149.3333333333334 469.3333333333333 168.5333333333334 469.3333333333333 192V298.6666666666667C469.3333333333333 322.1333333333334 450.1333333333334 341.3333333333334 426.6666666666667 341.3333333333334M373.3333333333333 181.3333333333334C337.92 181.3333333333334 309.3333333333333 209.92 309.3333333333333 245.3333333333334S337.92 309.3333333333334 373.3333333333333 309.3333333333334S437.3333333333333 280.7466666666667 437.3333333333333 245.3333333333334S408.7466666666667 181.3333333333334 373.3333333333333 181.3333333333334M373.3333333333333 213.3333333333334C355.6266666666667 213.3333333333334 341.3333333333333 227.6266666666667 341.3333333333333 245.3333333333334S355.6266666666667 277.3333333333334 373.3333333333333 277.3333333333334S405.3333333333333 263.04 405.3333333333333 245.3333333333334S391.04 213.3333333333334 373.3333333333333 213.3333333333334M256 128V341.3333333333334H85.3333333333333C61.8666666666667 341.3333333333334 42.6666666666667 322.1333333333334 42.6666666666667 298.6666666666667V85.3333333333334C42.6666666666667 61.8666666666667 61.8666666666667 42.6666666666667 85.3333333333333 42.6666666666667H426.6666666666667C450.1333333333334 42.6666666666667 469.3333333333333 61.8666666666667 469.3333333333333 85.3333333333334V128H256M213.3333333333333 192H85.3333333333333V298.6666666666667H213.3333333333333V192z" />
+    <glyph glyph-name="camera-image"
+      unicode="&#xF8CB;"
+      horiz-adv-x="512" d=" M85.3333333333333 341.3333333333334H149.3333333333333L192 384H320L362.6666666666667 341.3333333333334H426.6666666666667C450.1333333333334 341.3333333333334 469.3333333333333 322.1333333333334 469.3333333333333 298.6666666666667V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V298.6666666666667C42.6666666666667 322.1333333333334 61.8666666666667 341.3333333333334 85.3333333333333 341.3333333333334M279.2533333333334 246.4000000000001L235.7333333333334 188.16L268.8 144L250.2400000000001 129.92L197.7600000000001 199.68L128 106.6666666666667H384L279.2533333333334 246.4000000000001z" />
+    <glyph glyph-name="camera-iris"
+      unicode="&#xF104;"
+      horiz-adv-x="512" d=" M292.9066666666667 128L209.7066666666667 -16.2133333333333C224.64 -19.4133333333332 240 -21.3333333333333 256 -21.3333333333333C307.2 -21.3333333333333 354.1333333333334 -3.1999999999999 390.8266666666667 26.6666666666667L312.7466666666667 162.1333333333335M52.48 128C72.1066666666667 65.7066666666667 119.68 15.7866666666667 180.2666666666667 -7.2533333333333L258.56 128M182.1866666666667 192L98.9866666666666 336C64 298.6666666666667 42.6666666666667 247.68 42.6666666666667 192C42.6666666666667 177.4933333333334 44.16 163.2000000000001 46.9333333333333 149.3333333333334H206.72M465.0666666666667 234.6666666666667H305.28L311.4666666666667 224L413.0133333333333 48C448 85.9733333333334 469.3333333333333 136.5333333333334 469.3333333333333 192C469.3333333333333 206.72 467.84 221.0133333333333 465.0666666666667 234.6666666666667M459.52 256C439.8933333333333 318.5066666666667 392.32 368.2133333333334 331.7333333333333 391.2533333333334L253.44 256M200.5333333333333 224L302.2933333333333 400.2133333333333C287.36 403.4133333333334 272 405.3333333333333 256 405.3333333333333C204.8 405.3333333333333 157.8666666666667 387.4133333333334 121.1733333333333 357.3333333333334L199.2533333333333 221.8666666666667L200.5333333333333 224z" />
+    <glyph glyph-name="camera-metering-center"
+      unicode="&#xF7A1;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M85.3333333333333 320V64H426.6666666666667V320H85.3333333333333M256 224C273.7066666666667 224 288 209.7066666666667 288 192S273.7066666666667 160 256 160S224 174.2933333333334 224 192S238.2933333333333 224 256 224M256 288C301.6533333333333 288 339.84 256 349.6533333333333 213.3333333333334H316.3733333333334C307.6266666666667 238.2933333333334 283.9466666666667 256 256 256S204.3733333333333 238.2933333333334 195.6266666666667 213.3333333333334H162.3466666666667C172.16 256 210.3466666666666 288 256 288M256 96C210.3466666666666 96 172.16 128 162.3466666666667 170.6666666666667H195.6266666666667C204.3733333333333 145.7066666666667 228.0533333333333 128 256 128S307.6266666666667 145.7066666666667 316.3733333333334 170.6666666666667H349.6533333333333C339.84 128 301.6533333333333 96 256 96z" />
+    <glyph glyph-name="camera-metering-matrix"
+      unicode="&#xF7A2;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M85.3333333333333 320V64H426.6666666666667V320H85.3333333333333M117.3333333333333 288H234.6666666666667V252.3733333333334C216.5333333333333 245.9733333333334 202.0266666666667 231.4666666666667 195.6266666666667 213.3333333333334H117.3333333333333V288M394.6666666666667 288V213.3333333333334H316.3733333333334C309.9733333333333 231.4666666666667 295.4666666666667 245.9733333333334 277.3333333333333 252.3733333333334V288H394.6666666666667M394.6666666666667 96H277.3333333333333V131.6266666666667C295.4666666666667 138.0266666666667 309.9733333333333 152.5333333333334 316.3733333333334 170.6666666666667H394.6666666666667V96M117.3333333333333 96V170.6666666666667H195.6266666666667C202.0266666666667 152.5333333333334 216.5333333333333 138.0266666666667 234.6666666666667 131.6266666666667V96H117.3333333333333M256 224C273.7066666666667 224 288 209.7066666666667 288 192S273.7066666666667 160 256 160S224 174.2933333333334 224 192S238.2933333333333 224 256 224z" />
+    <glyph glyph-name="camera-metering-partial"
+      unicode="&#xF7A3;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M85.3333333333333 320V64H426.6666666666667V320H85.3333333333333M256 288C301.6533333333333 288 339.84 256 349.6533333333333 213.3333333333334H316.3733333333334C307.6266666666667 238.2933333333334 283.9466666666667 256 256 256S204.3733333333333 238.2933333333334 195.6266666666667 213.3333333333334H162.3466666666667C172.16 256 210.3466666666666 288 256 288M256 96C210.3466666666666 96 172.16 128 162.3466666666667 170.6666666666667H195.6266666666667C204.3733333333333 145.7066666666667 228.0533333333333 128 256 128S307.6266666666667 145.7066666666667 316.3733333333334 170.6666666666667H349.6533333333333C339.84 128 301.6533333333333 96 256 96z" />
+    <glyph glyph-name="camera-metering-spot"
+      unicode="&#xF7A4;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M85.3333333333333 320V64H426.6666666666667V320H85.3333333333333M256 224C273.7066666666667 224 288 209.7066666666667 288 192S273.7066666666667 160 256 160S224 174.2933333333334 224 192S238.2933333333333 224 256 224z" />
+    <glyph glyph-name="camera-off"
+      unicode="&#xF5DF;"
+      horiz-adv-x="512" d=" M25.6 352.64L53.3333333333333 379.7333333333334L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L356.9066666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 324.6933333333334 43.52 329.1733333333334 44.8 333.44L25.6 352.64M149.3333333333333 362.6666666666667L192 405.3333333333333H320L362.6666666666667 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 51.2 463.7866666666666 39.8933333333334 454.8266666666667 32L348.3733333333333 138.6666666666667C357.5466666666666 154.24 362.6666666666667 172.5866666666667 362.6666666666667 192C362.6666666666667 250.88 314.88 298.6666666666667 256 298.6666666666667C236.5866666666667 298.6666666666667 218.24 293.5466666666667 202.6666666666667 284.3733333333334L124.16 362.6666666666667H149.3333333333333M149.3333333333333 192C149.3333333333333 133.12 197.12 85.3333333333334 256 85.3333333333334C266.6666666666667 85.3333333333334 277.9733333333333 87.04 288 90.24L250.0266666666667 128C219.52 131.2000000000001 195.2 155.52 192 186.0266666666667L154.24 224C151.04 213.9733333333333 149.3333333333333 202.6666666666667 149.3333333333333 192M256 256C291.4133333333333 256 320 227.4133333333334 320 192C320 184.5333333333334 318.72 177.28 316.3733333333334 170.6666666666667L234.6666666666667 252.3733333333334C241.28 254.72 248.5333333333334 256 256 256z" />
+    <glyph glyph-name="camera-party-mode"
+      unicode="&#xF105;"
+      horiz-adv-x="512" d=" M256 85.3333333333334C221.2266666666667 85.3333333333334 190.72 102.1866666666667 170.6666666666667 128H256C291.4133333333333 128 320 156.5866666666667 320 192C320 199.4666666666667 318.5066666666667 206.72 316.16 213.3333333333334H360.5333333333333C361.8133333333333 206.5066666666667 362.6666666666667 199.2533333333333 362.6666666666667 192C362.6666666666667 133.12 314.88 85.3333333333334 256 85.3333333333334M256 298.6666666666667C290.7733333333333 298.6666666666667 321.28 281.8133333333334 341.3333333333333 256H256C220.5866666666667 256 192 227.4133333333334 192 192C192 184.5333333333334 193.4933333333334 177.4933333333334 195.84 170.6666666666667H151.4666666666667C149.9733333333333 177.4933333333334 149.3333333333333 184.7466666666667 149.3333333333333 192C149.3333333333333 250.88 197.12 298.6666666666667 256 298.6666666666667M426.6666666666667 362.6666666666667H359.04L320 405.3333333333333H192L152.96 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="camera-rear"
+      unicode="&#xF106;"
+      horiz-adv-x="512" d=" M256 320C232.32 320 213.3333333333333 339.2000000000001 213.3333333333333 362.6666666666667S232.5333333333334 405.3333333333333 256 405.3333333333333C279.2533333333334 405.3333333333333 298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667S279.4666666666667 320 256 320M362.6666666666667 448H149.3333333333333C125.8666666666667 448 106.6666666666667 428.8 106.6666666666667 405.3333333333333V106.6666666666667C106.6666666666667 83.2 125.8666666666667 64 149.3333333333333 64H362.6666666666667C386.1333333333334 64 405.3333333333333 83.2 405.3333333333333 106.6666666666667V405.3333333333333C405.3333333333333 428.8 386.1333333333334 448 362.6666666666667 448M298.6666666666667 21.3333333333334V-21.3333333333333H405.3333333333333V21.3333333333334M213.3333333333333 21.3333333333334H106.6666666666667V-21.3333333333333H213.3333333333333V-64L277.3333333333333 0L213.3333333333333 64V21.3333333333334z" />
+    <glyph glyph-name="camera-rear-variant"
+      unicode="&#xF107;"
+      horiz-adv-x="512" d=" M128 448H384C407.4666666666667 448 426.6666666666667 428.8 426.6666666666667 405.3333333333333V-21.3333333333333C426.6666666666667 -44.8 407.4666666666667 -64 384 -64H128C104.5333333333333 -64 85.3333333333333 -44.8 85.3333333333333 -21.3333333333333V405.3333333333333C85.3333333333333 428.8 104.5333333333333 448 128 448M256 405.3333333333333C232.5333333333334 405.3333333333333 213.3333333333333 386.1333333333334 213.3333333333333 362.6666666666667S232.5333333333334 320 256 320S298.6666666666667 339.2000000000001 298.6666666666667 362.6666666666667S279.4666666666667 405.3333333333333 256 405.3333333333333M277.3333333333333 64H192V21.3333333333334H277.3333333333333V-21.3333333333333L341.3333333333333 42.6666666666667L277.3333333333333 106.6666666666667V64z" />
+    <glyph glyph-name="camera-switch"
+      unicode="&#xF108;"
+      horiz-adv-x="512" d=" M320 117.3333333333334V170.6666666666667H192V117.3333333333334L117.3333333333333 192L192 266.6666666666667V213.3333333333334H320V266.6666666666667L394.6666666666667 192M426.6666666666667 362.6666666666667H359.04L320 405.3333333333333H192L152.96 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="camera-timer"
+      unicode="&#xF109;"
+      horiz-adv-x="512" d=" M105.3866666666667 312.5333333333334C97.0666666666667 320.8533333333334 97.0666666666667 334.5066666666667 105.3866666666667 342.8266666666667C113.7066666666667 351.1466666666667 127.1466666666667 351.1466666666667 135.4666666666667 342.8266666666667L278.8266666666667 228.0533333333334L286.2933333333333 222.0800000000001C302.9333333333333 205.4400000000001 302.9333333333333 178.3466666666668 286.2933333333333 161.7066666666667C269.6533333333333 145.0666666666667 242.56 145.0666666666667 225.92 161.7066666666667L219.9466666666667 169.1733333333334L105.3866666666667 312.5333333333334M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192C426.6666666666667 239.1466666666667 407.4666666666667 281.8133333333334 376.7466666666667 312.7466666666667L406.8266666666667 342.8266666666667C445.44 304.2133333333334 469.3333333333333 250.88 469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192H85.3333333333333C85.3333333333333 97.7066666666667 161.7066666666667 21.3333333333334 256 21.3333333333334M256 426.6666666666667C279.4666666666667 426.6666666666667 298.6666666666667 407.4666666666667 298.6666666666667 384S279.4666666666667 341.3333333333334 256 341.3333333333334S213.3333333333333 360.5333333333334 213.3333333333333 384S232.5333333333334 426.6666666666667 256 426.6666666666667z" />
+    <glyph glyph-name="cancel"
+      unicode="&#xF739;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192C85.3333333333333 152.5333333333334 98.7733333333333 116.2666666666667 121.1733333333333 87.2533333333333L360.7466666666667 326.8266666666667C331.7333333333334 349.2266666666667 295.4666666666667 362.6666666666667 256 362.6666666666667M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192C426.6666666666667 231.4666666666667 413.2266666666667 267.7333333333334 390.8266666666667 296.7466666666667L151.2533333333333 57.1733333333334C180.2666666666667 34.7733333333333 216.5333333333333 21.3333333333334 256 21.3333333333334z" />
+    <glyph glyph-name="candle"
+      unicode="&#xF5E2;"
+      horiz-adv-x="512" d=" M266.6666666666667 405.3333333333333C231.2533333333334 405.3333333333333 202.6666666666667 334.0800000000001 202.6666666666667 298.6666666666667C202.6666666666667 263.2533333333334 231.2533333333334 234.6666666666667 266.6666666666667 234.6666666666667S330.6666666666667 263.2533333333334 330.6666666666667 298.6666666666667S302.08 405.3333333333333 266.6666666666667 405.3333333333333M266.6666666666667 309.3333333333334C278.4 309.3333333333334 288 299.7333333333334 288 288S278.4 266.6666666666667 266.6666666666667 266.6666666666667S245.3333333333333 276.2666666666667 245.3333333333333 288S254.9333333333333 309.3333333333334 266.6666666666667 309.3333333333334M213.3333333333333 213.3333333333334C201.6 213.3333333333334 192 203.7333333333334 192 192V21.3333333333334H149.3333333333333C137.6 21.3333333333334 128 30.9333333333333 128 42.6666666666667V64C128 75.7333333333334 118.4 85.3333333333334 106.6666666666667 85.3333333333334S85.3333333333333 75.7333333333334 85.3333333333333 64V42.6666666666667C85.3333333333333 7.2533333333333 113.92 -21.3333333333333 149.3333333333333 -21.3333333333333H405.3333333333333C417.0666666666667 -21.3333333333333 426.6666666666667 -11.7333333333333 426.6666666666667 0S417.0666666666667 21.3333333333334 405.3333333333333 21.3333333333334H341.3333333333333V192C341.3333333333333 203.7333333333334 331.7333333333334 213.3333333333334 320 213.3333333333334H213.3333333333333z" />
+    <glyph glyph-name="candycane"
+      unicode="&#xF10A;"
+      horiz-adv-x="512" d=" M213.3333333333333 234.6666666666667C213.3333333333333 211.2 194.1333333333333 192 170.6666666666667 192S128 211.2 128 234.6666666666667V277.3333333333334C128 290.7733333333333 130.1333333333333 303.5733333333334 133.76 315.7333333333334L213.3333333333333 236.1600000000001V234.6666666666667M256 405.3333333333333C271.7866666666667 405.3333333333333 286.72 402.56 300.5866666666667 397.2266666666667L255.36 320C237.6533333333334 320 222.72 309.3333333333334 216.5333333333333 293.3333333333334L154.4533333333333 355.4133333333334C177.92 385.7066666666667 214.6133333333334 405.3333333333333 256 405.3333333333333M378.88 313.3866666666667L298.6666666666667 233.1733333333334V277.3333333333334C298.6666666666667 285.44 296.5333333333333 292.9066666666667 292.6933333333334 299.3066666666667L337.7066666666667 375.8933333333333C357.12 359.8933333333333 371.6266666666667 338.1333333333334 378.88 313.3866666666667M384 168.7466666666667L298.6666666666667 83.4133333333334V172.8L384 258.1333333333334V168.7466666666667M384 21.3333333333334C384 -2.1333333333333 364.8 -21.3333333333333 341.3333333333333 -21.3333333333333S298.6666666666667 -2.1333333333333 298.6666666666667 21.3333333333334V23.2533333333333L384 108.5866666666667V21.3333333333334z" />
+    <glyph glyph-name="cannabis"
+      unicode="&#xF7A5;"
+      horiz-adv-x="512" d=" M245.3333333333333 -21.3333333333333V77.8666666666667C234.6666666666667 61.2266666666666 213.3333333333333 40.7466666666667 171.3066666666667 25.3866666666667C171.3066666666667 25.3866666666667 181.9733333333333 61.8666666666667 212.0533333333333 86.4C184.32 80.4266666666666 142.5066666666667 81.28 85.3333333333333 106.6666666666666C85.3333333333333 106.6666666666666 138.0266666666667 136.7466666666666 197.9733333333333 128.6399999999999C164.0533333333334 149.3333333333334 121.6 190.2933333333334 88.96 274.9866666666667C88.96 274.9866666666667 184.96 248.7466666666667 232.7466666666667 167.68C189.44 272.2133333333334 256 405.3333333333333 256 405.3333333333333C307.84 288.64 296.7466666666667 211.2 279.8933333333333 168.5333333333334C327.8933333333333 248.96 423.04 274.9866666666667 423.04 274.9866666666667C390.4 190.2933333333334 347.9466666666667 149.3333333333334 314.0266666666667 128.6400000000001C373.9733333333334 136.7466666666667 426.6666666666667 106.6666666666667 426.6666666666667 106.6666666666667C369.4933333333334 81.28 327.68 80.4266666666667 299.9466666666666 86.4C330.0266666666667 61.8666666666667 340.6933333333333 25.3866666666667 340.6933333333333 25.3866666666667C298.6666666666667 40.7466666666667 277.3333333333333 61.2266666666667 266.6666666666667 77.8666666666667V-21.3333333333333H245.3333333333333z" />
+    <glyph glyph-name="caps-lock"
+      unicode="&#xFA9A;"
+      horiz-adv-x="512" d=" M212.48 155.52L256 271.1466666666667L299.3066666666666 155.3066666666667M237.6533333333334 320L137.1733333333333 64H178.3466666666666L198.8266666666667 118.8266666666667H313.1733333333333L333.6533333333333 64H374.8266666666667L274.3466666666667 320H237.6533333333333M426.6666666666667 405.3333333333333H85.3333333333333C61.6533333333333 405.3333333333333 42.6666666666667 386.3466666666667 42.6666666666667 362.6666666666667V21.3333333333334C42.6666666666667 -2.3466666666666 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H426.6666666666667C450.3466666666667 -21.3333333333333 469.3333333333333 -2.3466666666666 469.3333333333333 21.3333333333334V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333M426.6666666666667 21.3333333333334H85.3333333333333V362.6666666666667H426.6666666666667V21.3333333333334z" />
+    <glyph glyph-name="car"
+      unicode="&#xF10B;"
+      horiz-adv-x="512" d=" M106.6666666666667 213.3333333333334L138.6666666666667 309.3333333333334H373.3333333333333L405.3333333333333 213.3333333333334M373.3333333333333 106.6666666666667C355.6266666666667 106.6666666666667 341.3333333333333 120.96 341.3333333333333 138.6666666666667S355.6266666666667 170.6666666666667 373.3333333333333 170.6666666666667S405.3333333333333 156.3733333333333 405.3333333333333 138.6666666666667S391.04 106.6666666666667 373.3333333333333 106.6666666666667M138.6666666666667 106.6666666666667C120.96 106.6666666666667 106.6666666666667 120.96 106.6666666666667 138.6666666666667S120.96 170.6666666666667 138.6666666666667 170.6666666666667S170.6666666666667 156.3733333333333 170.6666666666667 138.6666666666667S156.3733333333333 106.6666666666667 138.6666666666667 106.6666666666667M403.6266666666667 320C399.36 332.3733333333334 387.4133333333333 341.3333333333334 373.3333333333333 341.3333333333334H138.6666666666667C124.5866666666667 341.3333333333334 112.64 332.3733333333334 108.3733333333333 320L64 192V21.3333333333334C64 9.6 73.6 0 85.3333333333333 0H106.6666666666667C118.4 0 128 9.6 128 21.3333333333334V42.6666666666667H384V21.3333333333334C384 9.6 393.6 0 405.3333333333333 0H426.6666666666667C438.4 0 448 9.6 448 21.3333333333334V192L403.6266666666667 320z" />
+    <glyph glyph-name="car-battery"
+      unicode="&#xF10C;"
+      horiz-adv-x="512" d=" M85.3333333333333 384V320H21.3333333333333V21.3333333333334H490.6666666666666V320H426.6666666666667V384H298.6666666666667V320H213.3333333333333V384H85.3333333333333M64 277.3333333333334H448V64H64V277.3333333333334M320 234.6666666666667V192H277.3333333333333V149.3333333333334H320V106.6666666666667H362.6666666666667V149.3333333333334H405.3333333333333V192H362.6666666666667V234.6666666666667H320M106.6666666666667 192V149.3333333333334H234.6666666666667V192H106.6666666666667z" />
+    <glyph glyph-name="car-connected"
+      unicode="&#xF10D;"
+      horiz-adv-x="512" d=" M106.6666666666667 149.3333333333334H405.3333333333333L373.3333333333333 245.3333333333334H138.6666666666667L106.6666666666667 149.3333333333334M373.3333333333333 42.6666666666667C391.04 42.6666666666667 405.3333333333333 56.96 405.3333333333333 74.6666666666667S391.04 106.6666666666667 373.3333333333333 106.6666666666667S341.3333333333333 92.3733333333333 341.3333333333333 74.6666666666667S355.6266666666667 42.6666666666667 373.3333333333333 42.6666666666667M138.6666666666667 42.6666666666667C156.3733333333333 42.6666666666667 170.6666666666667 56.96 170.6666666666667 74.6666666666667S156.3733333333333 106.6666666666667 138.6666666666667 106.6666666666667S106.6666666666667 92.3733333333333 106.6666666666667 74.6666666666667S120.96 42.6666666666667 138.6666666666667 42.6666666666667M403.6266666666667 256L448 128V-42.6666666666666C448 -54.4 438.4 -64 426.6666666666667 -64H405.3333333333333C393.6 -64 384 -54.4 384 -42.6666666666666V-21.3333333333333H128V-42.6666666666666C128 -54.4 118.4 -64 106.6666666666667 -64H85.3333333333333C73.6 -64 64 -54.4 64 -42.6666666666666V128L108.3733333333333 256C112.64 268.3733333333334 124.8 277.3333333333334 138.6666666666667 277.3333333333334H373.3333333333333C387.2 277.3333333333334 399.36 268.3733333333334 403.6266666666667 256M256 448C301.2266666666667 448 344.5333333333333 429.6533333333333 376.5333333333333 397.8666666666667L346.2399999999999 367.5733333333333C322.3466666666667 391.4666666666667 289.7066666666667 405.3333333333333 256 405.3333333333333C222.2933333333333 405.3333333333333 189.6533333333333 391.4666666666667 165.76 367.5733333333333L135.68 397.8666666666667C167.4666666666667 429.6533333333333 210.7733333333334 448 256 448M256 362.6666666666667C278.6133333333334 362.6666666666667 300.16 353.28 316.16 337.4933333333334L285.8666666666667 307.2000000000001C277.9733333333334 315.0933333333334 267.3066666666667 320 256 320C245.3333333333333 320 234.0266666666667 315.0933333333334 226.1333333333334 307.2000000000001L195.84 337.4933333333334C211.84 353.28 233.3866666666667 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="car-convertible"
+      unicode="&#xF7A6;"
+      horiz-adv-x="512" d=" M341.3333333333333 320L320 304L373.3333333333333 234.6666666666667H288V266.6666666666667H256V234.6666666666667H64C40.32 234.6666666666667 21.3333333333333 215.68 21.3333333333333 192V128H64C64 92.5866666666667 92.5866666666667 64 128 64S192 92.5866666666667 192 128H320C320 92.5866666666667 348.5866666666667 64 384 64S448 92.5866666666667 448 128H490.6666666666666V192C490.6666666666666 215.68 471.6799999999999 234.6666666666667 448 234.6666666666667H405.3333333333333L341.3333333333333 320M128 160C145.7066666666667 160 160 145.7066666666667 160 128S145.7066666666667 96 128 96S96 110.2933333333334 96 128S110.2933333333333 160 128 160M384 160C401.7066666666666 160 416 145.7066666666667 416 128S401.7066666666666 96 384 96S352 110.2933333333334 352 128S366.2933333333334 160 384 160z" />
+    <glyph glyph-name="car-door"
+      unicode="&#xFB47;"
+      horiz-adv-x="512" d=" M405.3333333333333 149.3333333333334H341.3333333333333V106.6666666666667H405.3333333333333V149.3333333333334M469.3333333333333 0H64V213.3333333333334L234.6666666666667 384H448C459.7333333333333 384 469.3333333333333 374.4 469.3333333333333 362.6666666666667V0M252.3733333333334 341.3333333333334L124.3733333333333 213.3333333333334H426.6666666666667V341.3333333333334H252.3733333333334z" />
+    <glyph glyph-name="car-electric"
+      unicode="&#xFB48;"
+      horiz-adv-x="512" d=" M106.6666666666667 170.6666666666667L138.6666666666667 266.6666666666667H373.3333333333333L405.3333333333333 170.6666666666667M373.3333333333333 64C355.6266666666667 64 341.3333333333333 78.2933333333334 341.3333333333333 96S355.6266666666667 128 373.3333333333333 128S405.3333333333333 113.7066666666667 405.3333333333333 96S391.04 64 373.3333333333333 64M138.6666666666667 64C120.96 64 106.6666666666667 78.2933333333334 106.6666666666667 96S120.96 128 138.6666666666667 128S170.6666666666667 113.7066666666667 170.6666666666667 96S156.3733333333333 64 138.6666666666667 64M403.6266666666667 277.3333333333334C399.1466666666667 290.1333333333334 386.9866666666667 298.6666666666667 373.3333333333333 298.6666666666667H138.6666666666667C125.0133333333333 298.6666666666667 112.8533333333333 290.1333333333334 108.3733333333333 277.3333333333334L64 149.3333333333334V-21.3333333333333C64 -33.0666666666667 73.6 -42.6666666666666 85.3333333333333 -42.6666666666666H106.6666666666667C118.4 -42.6666666666666 128 -33.0666666666667 128 -21.3333333333333V0H384V-21.3333333333333C384 -33.0666666666667 393.6 -42.6666666666666 405.3333333333333 -42.6666666666666H426.6666666666667C438.4 -42.6666666666666 448 -33.0666666666667 448 -21.3333333333333V149.3333333333334M234.6666666666667 320V362.6666666666667H149.3333333333333L277.3333333333333 426.6666666666667V384H362.6666666666667L234.6666666666667 320z" />
+    <glyph glyph-name="car-estate"
+      unicode="&#xF7A7;"
+      horiz-adv-x="512" d=" M64 320H341.3333333333333L405.3333333333333 234.6666666666667H448C471.6799999999999 234.6666666666667 490.6666666666666 215.68 490.6666666666666 192V128H448C448 92.5866666666667 419.4133333333333 64 384 64S320 92.5866666666667 320 128H192C192 92.5866666666667 163.4133333333333 64 128 64S64 92.5866666666667 64 128H21.3333333333333V277.3333333333334C21.3333333333333 301.0133333333333 40.32 320 64 320M53.3333333333333 288V234.6666666666667H224V288H53.3333333333333M256 288V234.6666666666667H365.6533333333333L325.3333333333333 288H256M128 160C110.2933333333333 160 96 145.7066666666667 96 128S110.2933333333333 96 128 96S160 110.2933333333334 160 128S145.7066666666667 160 128 160M384 160C366.2933333333334 160 352 145.7066666666667 352 128S366.2933333333334 96 384 96S416 110.2933333333334 416 128S401.7066666666666 160 384 160z" />
+    <glyph glyph-name="car-hatchback"
+      unicode="&#xF7A8;"
+      horiz-adv-x="512" d=" M341.3333333333333 320H128L21.3333333333333 192V128H64C64 92.5866666666667 92.5866666666667 64 128 64S192 92.5866666666667 192 128H320C320 92.5866666666667 348.5866666666667 64 384 64S448 92.5866666666667 448 128H490.6666666666666V192C490.6666666666666 215.68 471.6799999999999 234.6666666666667 448 234.6666666666667H405.3333333333333L341.3333333333333 320M138.6666666666667 288H224V234.6666666666667H96L138.6666666666667 288M256 288H330.6666666666667L372.48 234.6666666666667H256V288M128 160C145.7066666666667 160 160 145.7066666666667 160 128S145.7066666666667 96 128 96S96 110.2933333333334 96 128S110.2933333333333 160 128 160M384 160C401.7066666666666 160 416 145.7066666666667 416 128S401.7066666666666 96 384 96S352 110.2933333333334 352 128S366.2933333333334 160 384 160z" />
+    <glyph glyph-name="car-key"
+      unicode="&#xFB49;"
+      horiz-adv-x="512" d=" M202.6666666666667 448C167.2533333333333 448 138.6666666666667 419.4133333333334 138.6666666666667 384S167.2533333333333 320 202.6666666666667 320C230.6133333333334 320 254.2933333333333 337.7066666666667 263.04 362.6666666666667H309.3333333333333V320H352V362.6666666666667H373.3333333333333V405.3333333333333H263.04C254.2933333333333 430.2933333333334 230.6133333333334 448 202.6666666666667 448M202.6666666666667 405.3333333333333C214.4 405.3333333333333 224 395.7333333333334 224 384S214.4 362.6666666666667 202.6666666666667 362.6666666666667S181.3333333333333 372.2666666666667 181.3333333333333 384S190.9333333333333 405.3333333333333 202.6666666666667 405.3333333333333M138.6666666666667 277.3333333333334C124.5866666666667 277.3333333333334 112.64 268.3733333333334 108.3733333333333 256L64 128V-42.6666666666666C64 -54.4 73.6 -64 85.3333333333333 -64H106.6666666666667C118.4 -64 128 -54.4 128 -42.6666666666666V-21.3333333333333H384V-42.6666666666666C384 -54.4 393.6 -64 405.3333333333333 -64H426.6666666666667C438.4 -64 448 -54.4 448 -42.6666666666666V128L403.6266666666667 256C399.36 268.3733333333334 387.4133333333333 277.3333333333334 373.3333333333333 277.3333333333334H138.6666666666667M138.6666666666667 245.3333333333334H373.3333333333333L405.3333333333333 149.3333333333334H106.6666666666667L138.6666666666667 245.3333333333334M138.6666666666667 106.6666666666667C156.3733333333333 106.6666666666667 170.6666666666667 92.3733333333333 170.6666666666667 74.6666666666667S156.3733333333333 42.6666666666667 138.6666666666667 42.6666666666667S106.6666666666667 56.96 106.6666666666667 74.6666666666667S120.96 106.6666666666667 138.6666666666667 106.6666666666667M373.3333333333333 106.6666666666667C391.04 106.6666666666667 405.3333333333333 92.3733333333333 405.3333333333333 74.6666666666667S391.04 42.6666666666667 373.3333333333333 42.6666666666667S341.3333333333333 56.96 341.3333333333333 74.6666666666667S355.6266666666667 106.6666666666667 373.3333333333333 106.6666666666667z" />
+    <glyph glyph-name="car-limousine"
+      unicode="&#xF8CC;"
+      horiz-adv-x="512" d=" M21.3333333333333 320L53.3333333333333 288L21.3333333333333 256L53.3333333333333 224L21.3333333333333 192L53.3333333333333 160L21.3333333333333 128H320C320 92.5866666666667 348.5866666666667 64 384 64S448 92.5866666666667 448 128H490.6666666666666V192C490.6666666666666 215.68 471.6799999999999 234.6666666666667 448 234.6666666666667H405.3333333333333L341.3333333333333 320H21.3333333333333M98.56 288H224V234.6666666666667H87.8933333333333L66.56 256L98.56 288M256 288H330.6666666666667L372.48 234.6666666666667H256V288M384 160C401.7066666666666 160 416 145.7066666666667 416 128S401.7066666666666 96 384 96S352 110.2933333333334 352 128S366.2933333333334 160 384 160z" />
+    <glyph glyph-name="car-multiple"
+      unicode="&#xFB4A;"
+      horiz-adv-x="512" d=" M170.6666666666667 213.3333333333334L202.6666666666667 309.3333333333334H394.6666666666667L426.6666666666667 213.3333333333334M394.6666666666667 106.6666666666667C376.9600000000001 106.6666666666667 362.6666666666667 120.96 362.6666666666667 138.6666666666667S376.9600000000001 170.6666666666667 394.6666666666667 170.6666666666667S426.6666666666667 156.3733333333333 426.6666666666667 138.6666666666667S412.3733333333333 106.6666666666667 394.6666666666667 106.6666666666667M202.6666666666667 106.6666666666667C184.96 106.6666666666667 170.6666666666667 120.96 170.6666666666667 138.6666666666667S184.96 170.6666666666667 202.6666666666667 170.6666666666667S234.6666666666667 156.3733333333333 234.6666666666667 138.6666666666667S220.3733333333333 106.6666666666667 202.6666666666667 106.6666666666667M424.9600000000001 320C420.48 332.8 408.32 341.3333333333334 394.6666666666667 341.3333333333334H202.6666666666667C189.0133333333333 341.3333333333334 176.8533333333333 332.8 172.3733333333333 320L128 192V21.3333333333334C128 9.6 137.6 0 149.3333333333333 0H170.6666666666667C182.4 0 192 9.6 192 21.3333333333334V42.6666666666667H405.3333333333333V21.3333333333334C405.3333333333333 9.6 414.9333333333333 0 426.6666666666667 0H448C459.7333333333333 0 469.3333333333333 9.6 469.3333333333333 21.3333333333334V192L424.9600000000001 320M318.2933333333334 384C313.8133333333334 396.8 301.6533333333334 405.3333333333333 288 405.3333333333333H96C82.3466666666667 405.3333333333333 70.1866666666667 396.8 65.7066666666667 384L21.3333333333333 256V85.3333333333334C21.3333333333333 73.6 30.9333333333333 64 42.6666666666667 64H64C75.7333333333333 64 85.3333333333333 73.6 85.3333333333333 85.3333333333334V172.5866666666667C68.6933333333333 178.56 60.16 196.9066666666667 66.1333333333333 213.3333333333334C70.8266666666667 226.1333333333334 82.56 234.6666666666667 96 234.6666666666667H97.4933333333333L112.4266666666667 277.3333333333334H64L96 373.3333333333334H321.92L318.2933333333333 384z" />
+    <glyph glyph-name="car-pickup"
+      unicode="&#xF7A9;"
+      horiz-adv-x="512" d=" M341.3333333333333 320H224V234.6666666666667H21.3333333333333V128H64C64 92.5866666666667 92.5866666666667 64 128 64S192 92.5866666666667 192 128H320C320 92.5866666666667 348.5866666666667 64 384 64S448 92.5866666666667 448 128H490.6666666666666V192C490.6666666666666 215.68 471.6799999999999 234.6666666666667 448 234.6666666666667H405.3333333333333L341.3333333333333 320M256 288H330.6666666666667L372.48 234.6666666666667H256V288M128 160C145.7066666666667 160 160 145.7066666666667 160 128S145.7066666666667 96 128 96S96 110.2933333333334 96 128S110.2933333333333 160 128 160M384 160C401.7066666666666 160 416 145.7066666666667 416 128S401.7066666666666 96 384 96S352 110.2933333333334 352 128S366.2933333333334 160 384 160z" />
+    <glyph glyph-name="car-side"
+      unicode="&#xF7AA;"
+      horiz-adv-x="512" d=" M341.3333333333333 320L405.3333333333333 234.6666666666667H448C471.6799999999999 234.6666666666667 490.6666666666666 215.68 490.6666666666666 192V128H448C448 92.5866666666667 419.4133333333333 64 384 64S320 92.5866666666667 320 128H192C192 92.5866666666667 163.4133333333333 64 128 64S64 92.5866666666667 64 128H21.3333333333333V192C21.3333333333333 215.68 40.32 234.6666666666667 64 234.6666666666667L128 320H341.3333333333333M224 288H144L103.68 234.6666666666667H224V288M256 288V234.6666666666667H365.6533333333333L325.3333333333333 288H256M128 160C110.2933333333333 160 96 145.7066666666667 96 128S110.2933333333333 96 128 96S160 110.2933333333334 160 128S145.7066666666667 160 128 160M384 160C366.2933333333334 160 352 145.7066666666667 352 128S366.2933333333334 96 384 96S416 110.2933333333334 416 128S401.7066666666666 160 384 160z" />
+    <glyph glyph-name="car-sports"
+      unicode="&#xF7AB;"
+      horiz-adv-x="512" d=" M256 266.6666666666667H149.3333333333333L85.3333333333333 213.3333333333334H64C40.32 213.3333333333334 21.3333333333333 194.3466666666667 21.3333333333333 170.6666666666667V106.6666666666667H67.6266666666667C76.8 81.0666666666667 100.9066666666667 64 128 64S179.2 81.0666666666667 188.16 106.6666666666667H323.6266666666667C332.8 81.0666666666667 356.9066666666667 64 384 64S435.2 81.0666666666667 444.16 106.6666666666667H490.6666666666666V128C490.6666666666666 151.68 468.6933333333333 159.36 448 170.6666666666667L256 266.6666666666667M112 192L160 234.6666666666667H245.3333333333333L330.6666666666667 192H112M128 160C145.7066666666667 160 160 145.7066666666667 160 128S145.7066666666667 96 128 96S96 110.2933333333334 96 128S110.2933333333333 160 128 160M384 160C401.7066666666666 160 416 145.7066666666667 416 128S401.7066666666666 96 384 96S352 110.2933333333334 352 128S366.2933333333334 160 384 160z" />
+    <glyph glyph-name="car-wash"
+      unicode="&#xF10E;"
+      horiz-adv-x="512" d=" M106.6666666666667 170.6666666666667L138.6666666666667 266.6666666666667H373.3333333333333L405.3333333333333 170.6666666666667M373.3333333333333 64C355.6266666666667 64 341.3333333333333 78.2933333333334 341.3333333333333 96S355.6266666666667 128 373.3333333333333 128S405.3333333333333 113.7066666666667 405.3333333333333 96S391.04 64 373.3333333333333 64M138.6666666666667 64C120.96 64 106.6666666666667 78.2933333333334 106.6666666666667 96S120.96 128 138.6666666666667 128S170.6666666666667 113.7066666666667 170.6666666666667 96S156.3733333333333 64 138.6666666666667 64M403.6266666666667 277.3333333333334C399.36 289.7066666666667 387.4133333333333 298.6666666666667 373.3333333333333 298.6666666666667H138.6666666666667C124.5866666666667 298.6666666666667 112.64 289.7066666666667 108.3733333333333 277.3333333333334L64 149.3333333333334V-21.3333333333333C64 -33.0666666666667 73.6 -42.6666666666666 85.3333333333333 -42.6666666666666H106.6666666666667C118.4 -42.6666666666666 128 -33.0666666666667 128 -21.3333333333333V0H384V-21.3333333333333C384 -33.0666666666667 393.6 -42.6666666666666 405.3333333333333 -42.6666666666666H426.6666666666667C438.4 -42.6666666666666 448 -33.0666666666667 448 -21.3333333333333V149.3333333333334M149.3333333333333 341.3333333333334C167.04 341.3333333333334 181.3333333333333 355.6266666666667 181.3333333333333 373.3333333333334C181.3333333333333 394.6666666666667 149.3333333333333 430.9333333333334 149.3333333333333 430.9333333333334S117.3333333333333 394.6666666666667 117.3333333333333 373.3333333333334C117.3333333333333 355.6266666666667 131.6266666666667 341.3333333333334 149.3333333333333 341.3333333333334M256 341.3333333333334C273.7066666666667 341.3333333333334 288 355.6266666666667 288 373.3333333333334C288 394.6666666666667 256 430.9333333333334 256 430.9333333333334S224 394.6666666666667 224 373.3333333333334C224 355.6266666666667 238.2933333333333 341.3333333333334 256 341.3333333333334M362.6666666666667 341.3333333333334C380.3733333333333 341.3333333333334 394.6666666666667 355.6266666666667 394.6666666666667 373.3333333333334C394.6666666666667 394.6666666666667 362.6666666666667 430.9333333333334 362.6666666666667 430.9333333333334S330.6666666666667 394.6666666666667 330.6666666666667 373.3333333333334C330.6666666666667 355.6266666666667 344.9600000000001 341.3333333333334 362.6666666666667 341.3333333333334z" />
+    <glyph glyph-name="caravan"
+      unicode="&#xF7AC;"
+      horiz-adv-x="512" d=" M106.6666666666667 298.6666666666667C83.2 298.6666666666667 64 279.4666666666667 64 256V128C64 104.5333333333333 83.2 85.3333333333334 106.6666666666667 85.3333333333334H149.3333333333333C149.3333333333333 49.92 177.92 21.3333333333334 213.3333333333333 21.3333333333334S277.3333333333333 49.92 277.3333333333333 85.3333333333334H448V128H405.3333333333333V256C405.3333333333333 279.4666666666667 386.1333333333334 298.6666666666667 362.6666666666667 298.6666666666667H106.6666666666667M106.6666666666667 256H213.3333333333333V192H106.6666666666667V256M277.3333333333333 256H362.6666666666667V192H277.3333333333333V256M213.3333333333333 106.6666666666667C225.0666666666667 106.6666666666667 234.6666666666667 97.0666666666667 234.6666666666667 85.3333333333334S225.0666666666667 64 213.3333333333333 64S192 73.6 192 85.3333333333334S201.6 106.6666666666667 213.3333333333333 106.6666666666667z" />
+    <glyph glyph-name="card"
+      unicode="&#xFB4B;"
+      horiz-adv-x="512" d=" M426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334z" />
+    <glyph glyph-name="card-bulleted"
+      unicode="&#xFB4C;"
+      horiz-adv-x="512" d=" M426.6666666666667 362.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667M234.6666666666667 170.6666666666667H192V128H234.6666666666667V170.6666666666667M405.3333333333333 170.6666666666667H277.3333333333333V128H405.3333333333333V170.6666666666667M149.3333333333333 256H106.6666666666667V213.3333333333334H149.3333333333333V256M405.3333333333333 256H192V213.3333333333334H405.3333333333333V256z" />
+    <glyph glyph-name="card-bulleted-off"
+      unicode="&#xFB4D;"
+      horiz-adv-x="512" d=" M71.4666666666667 371.6266666666667L440.5333333333334 2.7733333333334L410.2400000000001 -27.52L361.3866666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 325.9733333333334 43.9466666666667 331.52 46.08 336.64L26.24 356.48L56.5333333333333 386.7733333333333L71.4666666666667 371.6266666666667M140.8 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 55.4666666666667 466.7733333333333 47.5733333333334 462.5066666666667 40.96L375.4666666666667 128H426.6666666666667V170.6666666666667H332.8L290.1333333333334 213.3333333333334H426.6666666666667V256H247.4666666666667L140.8 362.6666666666667M212.0533333333333 170.6666666666667H192V128H234.6666666666667V148.0533333333334L212.0533333333333 170.6666666666667M126.72 256H106.6666666666667V213.3333333333334H149.3333333333333V233.3866666666667L126.72 256z" />
+    <glyph glyph-name="card-bulleted-off-outline"
+      unicode="&#xFB4E;"
+      horiz-adv-x="512" d=" M439.2533333333334 2.7733333333333L408.9600000000001 -27.52L360.1066666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 325.5466666666667 43.7333333333333 330.6666666666667 45.6533333333333 335.7866666666667L24.96 356.48L55.2533333333333 386.7733333333333L79.5733333333333 362.6666666666667L439.2533333333334 2.7733333333333M139.52 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 55.2533333333333 466.56 46.9333333333333 462.08 40.1066666666667L426.6666666666667 75.52V320H182.1866666666667L139.52 362.6666666666667M85.3333333333333 64H317.44L253.44 128H213.3333333333333V168.1066666666667L168.1066666666667 213.3333333333334H128V253.4400000000001L85.3333333333333 296.1066666666667V64M384 128H374.1866666666666L331.52 170.6666666666667H384V128M384 213.3333333333334H288.8533333333333L246.1866666666667 256H384V213.3333333333334z" />
+    <glyph glyph-name="card-bulleted-outline"
+      unicode="&#xFB4F;"
+      horiz-adv-x="512" d=" M256 128H213.3333333333333V170.6666666666667H256V128M384 128H298.6666666666667V170.6666666666667H384V128M170.6666666666667 213.3333333333334H128V256H170.6666666666667V213.3333333333334M384 213.3333333333334H213.3333333333333V256H384V213.3333333333334M426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334M85.3333333333333 320V64H426.6666666666667V320H85.3333333333333z" />
+    <glyph glyph-name="card-bulleted-settings"
+      unicode="&#xFB50;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333V-64H149.3333333333333V-21.3333333333333H192M277.3333333333333 -21.3333333333333V-64H234.6666666666667V-21.3333333333333H277.3333333333333M362.6666666666667 -21.3333333333333V-64H320V-21.3333333333333H362.6666666666667M426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334M234.6666666666667 170.6666666666667H192V128H234.6666666666667V170.6666666666667M405.3333333333333 170.6666666666667H277.3333333333333V128H405.3333333333333V170.6666666666667M149.3333333333333 256H106.6666666666667V213.3333333333334H149.3333333333333V256M405.3333333333333 256H192V213.3333333333334H405.3333333333333V256z" />
+    <glyph glyph-name="card-bulleted-settings-outline"
+      unicode="&#xFB51;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333V-64H149.3333333333333V-21.3333333333333H192M277.3333333333333 -21.3333333333333V-64H234.6666666666667V-21.3333333333333H277.3333333333333M362.6666666666667 -21.3333333333333V-64H320V-21.3333333333333H362.6666666666667M256 128H213.3333333333333V170.6666666666667H256V128M384 128H298.6666666666667V170.6666666666667H384V128M170.6666666666667 213.3333333333334H128V256H170.6666666666667V213.3333333333334M384 213.3333333333334H213.3333333333333V256H384V213.3333333333334M426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334M85.3333333333333 320V64H426.6666666666667V320H85.3333333333333z" />
+    <glyph glyph-name="card-outline"
+      unicode="&#xFB52;"
+      horiz-adv-x="512" d=" M426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334M85.3333333333333 320V64H426.6666666666667V320H85.3333333333333z" />
+    <glyph glyph-name="card-text"
+      unicode="&#xFB53;"
+      horiz-adv-x="512" d=" M426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334M106.6666666666667 170.6666666666667V128H341.3333333333333V170.6666666666667H106.6666666666667M106.6666666666667 256V213.3333333333334H405.3333333333333V256H106.6666666666667z" />
+    <glyph glyph-name="card-text-outline"
+      unicode="&#xFB54;"
+      horiz-adv-x="512" d=" M426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334M85.3333333333333 320V64H426.6666666666667V320H85.3333333333333M128 256H384V213.3333333333334H128V256M128 170.6666666666667H341.3333333333333V128H128V170.6666666666667z" />
+    <glyph glyph-name="cards"
+      unicode="&#xF638;"
+      horiz-adv-x="512" d=" M458.0266666666666 355.2000000000001L429.44 367.1466666666667V174.5066666666667L481.28 299.5200000000001C490.0266666666666 321.2800000000001 480 346.2400000000001 458.0266666666666 355.2000000000001M42.0266666666666 276.2666666666668L147.84 21.3333333333334C154.4533333333333 4.9066666666667 170.0266666666667 -5.1199999999999 186.4533333333333 -5.5466666666667C192 -5.5466666666667 197.76 -4.48 203.3066666666667 -2.1333333333333L360.5333333333334 62.9333333333333C376.5333333333334 69.5466666666666 386.3466666666667 85.3333333333334 386.7733333333334 101.12C386.9866666666668 106.6666666666667 385.9200000000001 112.8533333333334 384.0000000000001 118.4L277.3333333333333 373.3333333333334C271.1466666666667 389.76 255.36 399.7866666666667 238.72 400C233.1733333333333 400 227.6266666666667 398.7200000000001 222.2933333333333 396.8L65.28 331.7333333333334C43.52 322.7733333333333 33.0666666666667 297.8133333333334 42.0266666666667 276.2666666666667M386.56 357.3333333333333C386.56 380.8 367.36 400 343.8933333333333 400H312.9599999999999L386.56 222.08" />
+    <glyph glyph-name="cards-club"
+      unicode="&#xF8CD;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C305.0666666666667 405.3333333333333 347.7333333333334 362.6666666666667 347.7333333333334 315.7333333333334C345.8133333333334 260.9066666666667 305.92 238.2933333333334 299.52 234.6666666666667C320.8533333333334 245.3333333333334 352 245.3333333333334 352 245.3333333333334C405.3333333333333 245.3333333333334 448 206.9333333333333 448 153.6S405.3333333333333 64 352 64C352 64 320 64 277.3333333333333 85.3333333333334C277.3333333333333 85.3333333333334 270.9333333333333 42.6666666666667 320 -21.3333333333333H192C241.0666666666667 42.6666666666667 234.6666666666667 85.3333333333334 234.6666666666667 85.3333333333334C192 64 160 64 160 64C106.6666666666667 64 64 100.2666666666667 64 153.6S106.6666666666667 245.3333333333334 160 245.3333333333334C160 245.3333333333334 191.1466666666667 245.3333333333334 212.48 234.6666666666667C206.08 238.2933333333334 166.1866666666667 260.9066666666667 164.2666666666667 315.7333333333334C164.2666666666667 362.6666666666667 206.9333333333333 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="cards-diamond"
+      unicode="&#xF8CE;"
+      horiz-adv-x="512" d=" M405.3333333333333 192L256 -21.3333333333333L106.6666666666667 192L256 405.3333333333333" />
+    <glyph glyph-name="cards-heart"
+      unicode="&#xF8CF;"
+      horiz-adv-x="512" d=" M256 -7.4666666666667L225.0666666666667 20.6933333333333C115.2 120.3200000000001 42.6666666666667 186.24 42.6666666666667 266.6666666666667C42.6666666666667 332.5866666666667 94.2933333333333 384 160 384C197.12 384 232.7466666666667 366.7200000000001 256 339.6266666666667C279.2533333333334 366.7200000000001 314.88 384 352 384C417.7066666666666 384 469.3333333333333 332.5866666666667 469.3333333333333 266.6666666666667C469.3333333333333 186.24 396.8 120.3200000000001 286.9333333333333 20.6933333333333L256 -7.4666666666667z" />
+    <glyph glyph-name="cards-outline"
+      unicode="&#xF639;"
+      horiz-adv-x="512" d=" M238.72 400C233.1733333333333 400 227.6266666666667 398.7200000000001 222.2933333333333 396.8L65.28 331.7333333333334C43.52 322.7733333333333 33.0666666666667 297.8133333333334 42.0266666666667 276.2666666666667L147.84 21.3333333333334C154.4533333333333 4.9066666666667 170.0266666666667 -4.9066666666666 186.4533333333333 -5.3333333333333C192 -5.3333333333333 197.76 -4.6933333333333 203.3066666666667 -2.1333333333333L360.5333333333334 62.9333333333333C376.5333333333334 69.5466666666666 386.3466666666667 85.3333333333334 386.7733333333334 101.3333333333334C386.9866666666668 106.6666666666667 385.9200000000001 112.8533333333334 384.0000000000001 118.4L277.3333333333333 373.3333333333334C271.1466666666667 389.76 255.36 399.7866666666667 238.72 400M312.96 400L386.56 221.8666666666667V357.3333333333334C386.56 380.8 367.36 400 343.8933333333333 400M429.4400000000001 367.1466666666667V174.5066666666667L481.28 299.52C490.0266666666667 321.2800000000001 480.0000000000001 346.0266666666667 458.0266666666667 354.9866666666667M238.7200000000001 357.9733333333334L344.9600000000001 101.5466666666667L187.3066666666667 36.2666666666668L81.0666666666667 292.48" />
+    <glyph glyph-name="cards-playing-outline"
+      unicode="&#xF63A;"
+      horiz-adv-x="512" d=" M238.72 400C255.36 399.7866666666667 271.1466666666667 389.76 277.3333333333333 373.3333333333334L384 118.4C385.92 112.8533333333334 386.9866666666667 106.6666666666667 386.7733333333333 101.3333333333334C386.3466666666667 85.3333333333334 376.5333333333333 69.5466666666667 360.5333333333333 62.9333333333333L203.3066666666667 -2.1333333333333C197.76 -4.6933333333334 192 -5.3333333333333 186.4533333333333 -5.3333333333333C170.0266666666667 -4.9066666666666 154.4533333333333 4.9066666666667 147.84 21.3333333333334L42.0266666666667 276.2666666666667C33.0666666666667 297.8133333333334 43.52 322.7733333333333 65.28 331.7333333333334L222.2933333333333 396.8C227.6266666666667 398.72 233.1733333333333 400 238.72 400M312.96 400H343.8933333333333C367.36 400 386.56 380.8 386.56 357.3333333333333V221.8666666666667L312.9600000000001 400M429.4400000000001 367.1466666666667L458.0266666666667 354.9866666666666C480.0000000000001 346.0266666666667 490.0266666666667 321.28 481.28 299.52L429.4400000000001 174.5066666666666V367.1466666666667M238.7200000000001 357.9733333333334L81.0666666666667 292.48L187.0933333333333 36.2666666666667L344.9600000000001 101.5466666666666L238.7200000000001 357.9733333333333M184.5333333333333 265.8133333333334L253.44 214.4L244.0533333333334 128.8533333333334L175.1466666666667 180.48L184.5333333333333 265.8133333333334z" />
+    <glyph glyph-name="cards-spade"
+      unicode="&#xF8D0;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C192 298.6666666666667 85.3333333333333 256 85.3333333333333 149.3333333333334C85.3333333333333 106.6666666666667 128 64 170.6666666666667 64C192 64 213.3333333333333 64 234.6666666666667 85.3333333333334C234.6666666666667 85.3333333333334 241.4933333333334 42.6666666666667 192 -21.3333333333333H320C277.3333333333333 42.6666666666667 277.3333333333333 85.3333333333334 277.3333333333333 85.3333333333334C298.6666666666667 64 320 64 341.3333333333333 64C384 64 426.6666666666667 106.6666666666667 426.6666666666667 149.3333333333334C426.6666666666667 256 320 298.6666666666667 256 405.3333333333333z" />
+    <glyph glyph-name="cards-variant"
+      unicode="&#xF6C6;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333H405.3333333333333C417.0666666666667 405.3333333333333 426.6666666666667 395.7333333333334 426.6666666666667 384V170.6666666666667C426.6666666666667 158.9333333333333 417.0666666666667 149.3333333333334 405.3333333333333 149.3333333333334H106.6666666666667C94.9333333333333 149.3333333333334 85.3333333333333 158.9333333333333 85.3333333333333 170.6666666666667V384C85.3333333333333 395.7333333333334 94.9333333333333 405.3333333333333 106.6666666666667 405.3333333333333M128 362.6666666666667V192H384V362.6666666666667H128M426.6666666666667 85.3333333333334C426.6666666666667 73.6 417.0666666666667 64 405.3333333333333 64H106.6666666666667C94.9333333333333 64 85.3333333333333 73.6 85.3333333333333 85.3333333333334V106.6666666666667H426.6666666666667V85.3333333333334M426.6666666666667 0C426.6666666666667 -11.7333333333333 417.0666666666667 -21.3333333333333 405.3333333333333 -21.3333333333333H106.6666666666667C94.9333333333333 -21.3333333333333 85.3333333333333 -11.7333333333333 85.3333333333333 0V21.3333333333334H426.6666666666667V0z" />
+    <glyph glyph-name="carrot"
+      unicode="&#xF10F;"
+      horiz-adv-x="512" d=" M341.3333333333333 234.6666666666667L337.0666666666667 213.3333333333334H288C282.0266666666667 213.3333333333334 277.3333333333333 208.64 277.3333333333333 202.6666666666667S282.0266666666667 192 288 192H332.8L311.4666666666667 85.3333333333334H266.6666666666667C260.6933333333334 85.3333333333334 256 80.64 256 74.6666666666667S260.6933333333334 64 266.6666666666667 64H307.2L298.6666666666667 21.3333333333334C298.6666666666667 -2.1333333333333 279.4666666666667 -21.3333333333333 256 -21.3333333333333S213.3333333333333 -2.1333333333333 213.3333333333333 21.3333333333334L192 128H224C229.9733333333333 128 234.6666666666667 132.6933333333334 234.6666666666667 138.6666666666667S229.9733333333333 149.3333333333334 224 149.3333333333334H187.7333333333334L170.6666666666667 234.6666666666667C170.6666666666667 260.2666666666667 190.5066666666667 282.24 219.52 292.48L189.8666666666667 335.36C183.2533333333333 345.1733333333334 185.6 358.4 195.4133333333333 365.0133333333333C205.0133333333333 371.84 218.24 369.28 225.0666666666667 359.68L234.6666666666667 345.6V384C234.6666666666667 395.7333333333334 244.2666666666667 405.3333333333333 256 405.3333333333333S277.3333333333333 395.7333333333334 277.3333333333333 384V335.36L309.3333333333333 372.48C316.3733333333334 381.4400000000001 330.0266666666667 382.5066666666667 338.9866666666667 374.8266666666667C347.9466666666667 367.36 349.0133333333333 353.92 341.3333333333333 344.7466666666667L295.8933333333333 291.2000000000001C322.9866666666667 280.5333333333334 341.3333333333333 259.2000000000001 341.3333333333333 234.6666666666667z" />
+    <glyph glyph-name="cart"
+      unicode="&#xF110;"
+      horiz-adv-x="512" d=" M362.6666666666667 64C338.9866666666667 64 320 45.0133333333333 320 21.3333333333334C320 -2.1333333333333 339.2 -21.3333333333333 362.6666666666667 -21.3333333333333S405.3333333333333 -2.1333333333333 405.3333333333333 21.3333333333334C405.3333333333333 45.0133333333333 386.1333333333334 64 362.6666666666667 64M21.3333333333333 405.3333333333333V362.6666666666667H64L140.8 200.7466666666667L111.7866666666667 148.48C108.5866666666667 142.5066666666667 106.6666666666666 135.4666666666667 106.6666666666666 128C106.6666666666666 104.5333333333333 125.8666666666667 85.3333333333334 149.3333333333333 85.3333333333334H405.3333333333333V128H158.2933333333333C155.3066666666667 128 152.96 130.3466666666667 152.96 133.3333333333334C152.96 134.4 153.1733333333333 135.2533333333333 153.6 135.8933333333333L172.8 170.6666666666667H331.7333333333334C347.7333333333334 170.6666666666667 361.8133333333334 179.6266666666667 369.0666666666667 192.64L445.4400000000001 330.6666666666667C446.9333333333334 334.08 448.0000000000001 337.7066666666667 448.0000000000001 341.3333333333333C448.0000000000001 353.0666666666667 438.4000000000001 362.6666666666667 426.6666666666668 362.6666666666667H111.1466666666667L91.0933333333333 405.3333333333333M149.3333333333333 64C125.6533333333333 64 106.6666666666667 45.0133333333333 106.6666666666667 21.3333333333334C106.6666666666667 -2.1333333333333 125.8666666666667 -21.3333333333333 149.3333333333333 -21.3333333333333S192 -2.1333333333333 192 21.3333333333334C192 45.0133333333333 172.8 64 149.3333333333333 64z" />
+    <glyph glyph-name="cart-off"
+      unicode="&#xF66B;"
+      horiz-adv-x="512" d=" M484.9066666666666 -36.9066666666666L27.0933333333333 420.9066666666667L0 393.8133333333334L93.6533333333333 300.1600000000001L140.8 200.7466666666667L112 148.48C108.5866666666667 142.5066666666667 106.6666666666667 135.4666666666667 106.6666666666667 128C106.6666666666667 104.5333333333333 125.8666666666667 85.3333333333334 149.3333333333333 85.3333333333334H308.48L337.92 55.8933333333334C327.2533333333334 48.2133333333334 320 35.6266666666667 320 21.3333333333334C320 -2.1333333333333 339.2 -21.3333333333333 362.6666666666667 -21.3333333333333C376.9600000000001 -21.3333333333333 389.5466666666667 -14.2933333333333 397.2266666666667 -3.4133333333333L457.8133333333333 -64L484.9066666666666 -36.9066666666666M158.2933333333333 128C155.3066666666667 128 152.96 130.3466666666667 152.96 133.3333333333334L153.6 135.8933333333333L172.8 170.6666666666667H223.1466666666667L265.8133333333333 128H158.2933333333333M331.7333333333334 170.6666666666667C347.7333333333334 170.6666666666667 361.8133333333334 179.4133333333334 369.0666666666667 192.64L445.4400000000001 330.6666666666667C447.1466666666667 334.08 448.0000000000001 337.7066666666667 448.0000000000001 341.3333333333333C448.0000000000001 353.0666666666667 438.4000000000001 362.6666666666667 426.6666666666668 362.6666666666667H139.52L331.7333333333334 170.6666666666667M149.3333333333333 64C125.8666666666667 64 106.6666666666667 44.8000000000001 106.6666666666667 21.3333333333334S125.8666666666667 -21.3333333333333 149.3333333333333 -21.3333333333333S192 -2.1333333333333 192 21.3333333333334S172.8 64 149.3333333333333 64z" />
+    <glyph glyph-name="cart-outline"
+      unicode="&#xF111;"
+      horiz-adv-x="512" d=" M362.6666666666667 64C386.1333333333334 64 405.3333333333333 44.8000000000001 405.3333333333333 21.3333333333334S386.1333333333334 -21.3333333333333 362.6666666666667 -21.3333333333333C338.9866666666667 -21.3333333333333 320 -2.1333333333333 320 21.3333333333334C320 45.0133333333333 338.9866666666667 64 362.6666666666667 64M21.3333333333333 405.3333333333333H91.0933333333333L111.1466666666667 362.6666666666667H426.6666666666667C438.4 362.6666666666667 448 353.0666666666667 448 341.3333333333334C448 337.7066666666667 446.9333333333333 334.0800000000001 445.44 330.6666666666667L369.0666666666666 192.6400000000001C361.8133333333333 179.6266666666667 347.7333333333333 170.6666666666668 331.7333333333333 170.6666666666668H172.8L153.6 135.8933333333334L152.96 133.3333333333334C152.96 130.3466666666667 155.3066666666667 128.0000000000001 158.2933333333333 128.0000000000001H405.3333333333333V85.3333333333334H149.3333333333333C125.6533333333333 85.3333333333334 106.6666666666667 104.5333333333333 106.6666666666667 128C106.6666666666667 135.4666666666667 108.5866666666667 142.5066666666667 111.7866666666667 148.48L140.8 200.7466666666667L64 362.6666666666667H21.3333333333333V405.3333333333333M149.3333333333333 64C172.8 64 192 44.8000000000001 192 21.3333333333334S172.8 -21.3333333333333 149.3333333333333 -21.3333333333333C125.6533333333333 -21.3333333333333 106.6666666666667 -2.1333333333333 106.6666666666667 21.3333333333334C106.6666666666667 45.0133333333333 125.6533333333333 64 149.3333333333333 64M341.3333333333333 213.3333333333334L400.64 320H130.9866666666667L181.3333333333333 213.3333333333334H341.3333333333333z" />
+    <glyph glyph-name="cart-plus"
+      unicode="&#xF112;"
+      horiz-adv-x="512" d=" M234.6666666666667 256H277.3333333333333V320H341.3333333333333V362.6666666666667H277.3333333333333V426.6666666666667H234.6666666666667V362.6666666666667H170.6666666666667V320H234.6666666666667M149.3333333333333 64C125.8666666666667 64 106.6666666666667 44.8000000000001 106.6666666666667 21.3333333333334S125.8666666666667 -21.3333333333333 149.3333333333333 -21.3333333333333S192 -2.1333333333333 192 21.3333333333334S172.8 64 149.3333333333333 64M362.6666666666667 64C339.2 64 320 44.8000000000001 320 21.3333333333334S339.2 -21.3333333333333 362.6666666666667 -21.3333333333333S405.3333333333333 -2.1333333333333 405.3333333333333 21.3333333333334S386.1333333333334 64 362.6666666666667 64M152.96 133.3333333333334L153.6 135.8933333333333L172.8 170.6666666666667H331.7333333333334C347.7333333333334 170.6666666666667 361.8133333333334 179.4133333333334 369.0666666666667 192.64L451.4133333333333 342.1866666666667L414.2933333333334 362.6666666666667H414.08L390.6133333333333 320L331.7333333333333 213.3333333333334H181.9733333333333L179.2 219.0933333333333L131.4133333333333 320L111.1466666666667 362.6666666666667L91.0933333333333 405.3333333333333H21.3333333333333V362.6666666666667H64L140.8 200.7466666666667L112 148.48C108.5866666666667 142.5066666666667 106.6666666666667 135.4666666666667 106.6666666666667 128C106.6666666666667 104.5333333333333 125.8666666666667 85.3333333333334 149.3333333333333 85.3333333333334H405.3333333333333V128H158.2933333333333C155.52 128 152.96 130.3466666666667 152.96 133.3333333333334z" />
+    <glyph glyph-name="case-sensitive-alt"
+      unicode="&#xF113;"
+      horiz-adv-x="512" d=" M426.6666666666667 149.3333333333334C426.6666666666667 181.3333333333334 416 192 384 192H341.3333333333333V213.3333333333334C341.3333333333333 234.6666666666667 341.3333333333333 234.6666666666667 298.6666666666667 234.6666666666667V42.6666666666667H384C416 42.6666666666667 426.6666666666667 53.9733333333334 426.6666666666667 85.3333333333334V149.3333333333334M256 192C256 224 244.6933333333334 234.6666666666667 213.3333333333333 234.6666666666667H128C96 234.6666666666667 85.3333333333333 224 85.3333333333333 192V42.6666666666667H128V106.6666666666667H213.3333333333333V42.6666666666667H256V192M213.3333333333333 298.6666666666667H298.6666666666667V341.3333333333334H213.3333333333333V298.6666666666667M469.3333333333333 256V21.3333333333334C469.3333333333333 -2.3466666666666 450.3466666666667 -21.3333333333333 426.6666666666667 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V256C42.6666666666667 279.68 61.6533333333333 298.6666666666667 85.3333333333333 298.6666666666667H170.6666666666667V341.3333333333334L213.3333333333333 384H298.6666666666667L341.3333333333333 341.3333333333334V298.6666666666667H426.6666666666667C450.1333333333334 298.6666666666667 469.3333333333333 279.4666666666667 469.3333333333333 256M341.3333333333333 85.3333333333334H384V149.3333333333334H341.3333333333333V85.3333333333334M128 192H213.3333333333333V149.3333333333334H128V192z" />
+    <glyph glyph-name="cash"
+      unicode="&#xF114;"
+      horiz-adv-x="512" d=" M64 320H448V64H64V320M256 256C291.4133333333333 256 320 227.4133333333334 320 192S291.4133333333333 128 256 128S192 156.5866666666667 192 192S220.5866666666667 256 256 256M149.3333333333333 277.3333333333334C149.3333333333333 253.8666666666667 130.1333333333333 234.6666666666667 106.6666666666667 234.6666666666667V149.3333333333334C130.1333333333333 149.3333333333334 149.3333333333333 130.1333333333333 149.3333333333333 106.6666666666667H362.6666666666667C362.6666666666667 130.1333333333333 381.8666666666666 149.3333333333334 405.3333333333333 149.3333333333334V234.6666666666667C381.8666666666666 234.6666666666667 362.6666666666667 253.8666666666667 362.6666666666667 277.3333333333334H149.3333333333333z" />
+    <glyph glyph-name="cash-100"
+      unicode="&#xF115;"
+      horiz-adv-x="512" d=" M42.6666666666667 341.3333333333334H469.3333333333333V21.3333333333334H42.6666666666667V341.3333333333334M426.6666666666667 64V298.6666666666667H85.3333333333333V64H426.6666666666667M362.6666666666667 277.3333333333334C362.6666666666667 253.8666666666667 381.8666666666666 234.6666666666667 405.3333333333333 234.6666666666667V128C381.8666666666666 128 362.6666666666667 108.8 362.6666666666667 85.3333333333334H149.3333333333333C149.3333333333333 108.8 130.1333333333333 128 106.6666666666667 128V234.6666666666667C130.1333333333333 234.6666666666667 149.3333333333333 253.8666666666667 149.3333333333333 277.3333333333334H362.6666666666667M362.6666666666667 170.6666666666667V192C362.6666666666667 215.4666666666667 348.3733333333333 234.6666666666667 330.6666666666667 234.6666666666667S298.6666666666667 215.4666666666667 298.6666666666667 192V170.6666666666667C298.6666666666667 147.2000000000001 312.96 128 330.6666666666667 128S362.6666666666667 147.2000000000001 362.6666666666667 170.6666666666667M330.6666666666667 213.3333333333334C336.64 213.3333333333334 341.3333333333333 208.64 341.3333333333333 202.6666666666667V160C341.3333333333333 154.0266666666667 336.64 149.3333333333334 330.6666666666667 149.3333333333334S320 154.0266666666667 320 160V202.6666666666667C320 208.64 324.6933333333334 213.3333333333334 330.6666666666667 213.3333333333334M277.3333333333333 170.6666666666667V192C277.3333333333333 215.4666666666667 263.04 234.6666666666667 245.3333333333333 234.6666666666667S213.3333333333333 215.4666666666667 213.3333333333333 192V170.6666666666667C213.3333333333333 147.2000000000001 227.6266666666667 128 245.3333333333333 128S277.3333333333333 147.2000000000001 277.3333333333333 170.6666666666667M245.3333333333333 213.3333333333334C251.3066666666667 213.3333333333334 256 208.64 256 202.6666666666667V160C256 154.0266666666667 251.3066666666667 149.3333333333334 245.3333333333333 149.3333333333334S234.6666666666667 154.0266666666667 234.6666666666667 160V202.6666666666667C234.6666666666667 208.64 239.36 213.3333333333334 245.3333333333333 213.3333333333334M170.6666666666667 128H192V234.6666666666667H170.6666666666667L149.3333333333333 224V202.6666666666667L170.6666666666667 213.3333333333334V128z" />
+    <glyph glyph-name="cash-multiple"
+      unicode="&#xF116;"
+      horiz-adv-x="512" d=" M106.6666666666667 320H490.6666666666666V64H106.6666666666667V320M298.6666666666667 256C334.08 256 362.6666666666667 227.4133333333334 362.6666666666667 192S334.08 128 298.6666666666667 128S234.6666666666667 156.5866666666667 234.6666666666667 192S263.2533333333334 256 298.6666666666667 256M192 277.3333333333334C192 253.8666666666667 172.8 234.6666666666667 149.3333333333333 234.6666666666667V149.3333333333334C172.8 149.3333333333334 192 130.1333333333333 192 106.6666666666667H405.3333333333333C405.3333333333333 130.1333333333333 424.5333333333333 149.3333333333334 448 149.3333333333334V234.6666666666667C424.5333333333333 234.6666666666667 405.3333333333333 253.8666666666667 405.3333333333333 277.3333333333334H192M21.3333333333333 234.6666666666667H64V21.3333333333334H405.3333333333333V-21.3333333333333H21.3333333333333V234.6666666666667z" />
+    <glyph glyph-name="cash-refund"
+      unicode="&#xFA9B;"
+      horiz-adv-x="512" d=" M64 213.3333333333334H448V-42.6666666666666H64V213.3333333333334M256 128C279.4666666666667 128 298.6666666666667 108.8 298.6666666666667 85.3333333333334S279.4666666666667 42.6666666666667 256 42.6666666666667S213.3333333333333 61.8666666666667 213.3333333333333 85.3333333333334S232.5333333333334 128 256 128M149.3333333333333 170.6666666666667C149.3333333333333 147.2000000000001 130.1333333333333 128 106.6666666666667 128V42.6666666666667C130.1333333333333 42.6666666666667 149.3333333333333 23.4666666666667 149.3333333333333 0H362.6666666666667C362.6666666666667 23.4666666666667 381.8666666666666 42.6666666666667 405.3333333333333 42.6666666666667V128C381.8666666666666 128 362.6666666666667 147.2000000000001 362.6666666666667 170.6666666666667H149.3333333333333M362.6666666666667 341.3333333333334V234.6666666666667H330.6666666666667V309.3333333333334H210.7733333333334L262.4 257.4933333333334L239.7866666666667 234.6666666666667L149.3333333333333 325.3333333333334L239.7866666666667 416L262.4 393.1733333333334L210.7733333333334 341.3333333333334H362.6666666666667z" />
+    <glyph glyph-name="cash-usd"
+      unicode="&#xF117;"
+      horiz-adv-x="512" d=" M426.6666666666667 64H85.3333333333333V320H426.6666666666667M426.6666666666667 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667M234.6666666666667 85.3333333333334H277.3333333333333V106.6666666666667H298.6666666666667C310.4 106.6666666666667 320 116.2666666666667 320 128V192C320 203.7333333333334 310.4 213.3333333333334 298.6666666666667 213.3333333333334H234.6666666666667V234.6666666666667H320V277.3333333333334H277.3333333333333V298.6666666666667H234.6666666666667V277.3333333333334H213.3333333333333C201.6 277.3333333333334 192 267.7333333333334 192 256V192C192 180.2666666666667 201.6 170.6666666666667 213.3333333333333 170.6666666666667H277.3333333333333V149.3333333333334H192V106.6666666666667H234.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="cassette"
+      unicode="&#xF9D3;"
+      horiz-adv-x="512" d=" M85.3333333333333 341.3333333333334C61.8666666666667 341.3333333333334 42.6666666666667 322.1333333333334 42.6666666666667 298.6666666666667V85.3333333333334C42.6666666666667 61.8666666666667 61.8666666666667 42.6666666666667 85.3333333333333 42.6666666666667H128L149.3333333333333 85.3333333333334H362.6666666666667L384 42.6666666666667H426.6666666666667C450.1333333333334 42.6666666666667 469.3333333333333 61.8666666666667 469.3333333333333 85.3333333333334V298.6666666666667C469.3333333333333 322.1333333333334 450.1333333333334 341.3333333333334 426.6666666666667 341.3333333333334H85.3333333333333M138.6666666666667 234.6666666666667C156.3733333333333 234.6666666666667 170.6666666666667 220.3733333333333 170.6666666666667 202.6666666666667S156.3733333333333 170.6666666666667 138.6666666666667 170.6666666666667S106.6666666666667 184.96 106.6666666666667 202.6666666666667S120.96 234.6666666666667 138.6666666666667 234.6666666666667M192 234.6666666666667H320V170.6666666666667H192V234.6666666666667M373.3333333333333 234.6666666666667C391.04 234.6666666666667 405.3333333333333 220.3733333333333 405.3333333333333 202.6666666666667S391.04 170.6666666666667 373.3333333333333 170.6666666666667S341.3333333333333 184.96 341.3333333333333 202.6666666666667S355.6266666666667 234.6666666666667 373.3333333333333 234.6666666666667z" />
+    <glyph glyph-name="cast"
+      unicode="&#xF118;"
+      horiz-adv-x="512" d=" M21.3333333333333 234.6666666666667V192C127.36 192 213.3333333333333 106.0266666666666 213.3333333333333 0H256C256 129.7066666666667 150.8266666666667 234.6666666666667 21.3333333333333 234.6666666666667M21.3333333333333 149.3333333333334V106.6666666666667C80.2133333333333 106.6666666666667 128 58.88 128 0H170.6666666666667C170.6666666666667 82.5600000000001 103.8933333333333 149.3333333333334 21.3333333333333 149.3333333333334M21.3333333333333 64V0H85.3333333333333C85.3333333333333 35.4133333333334 56.7466666666667 64 21.3333333333333 64M448 384H64C40.32 384 21.3333333333333 365.0133333333333 21.3333333333333 341.3333333333334V277.3333333333334H64V341.3333333333334H448V42.6666666666667H298.6666666666667V0H448C471.4666666666667 0 490.6666666666666 19.2 490.6666666666666 42.6666666666667V341.3333333333334C490.6666666666666 365.0133333333333 471.4666666666667 384 448 384z" />
+    <glyph glyph-name="cast-connected"
+      unicode="&#xF119;"
+      horiz-adv-x="512" d=" M448 384H64C40.32 384 21.3333333333333 365.0133333333333 21.3333333333333 341.3333333333334V277.3333333333334H64V341.3333333333334H448V42.6666666666667H298.6666666666667V0H448C471.4666666666667 0 490.6666666666666 19.2 490.6666666666666 42.6666666666667V341.3333333333334C490.6666666666666 365.0133333333333 471.4666666666667 384 448 384M21.3333333333333 234.6666666666667V192C127.36 192 213.3333333333333 106.0266666666666 213.3333333333333 0H256C256 129.7066666666667 150.8266666666667 234.6666666666667 21.3333333333333 234.6666666666667M405.3333333333333 298.6666666666667H106.6666666666667V263.8933333333334C191.1466666666667 236.5866666666667 257.92 169.8133333333334 285.2266666666667 85.3333333333334H405.3333333333333M21.3333333333333 149.3333333333334V106.6666666666667C80.2133333333333 106.6666666666667 128 58.88 128 0H170.6666666666667C170.6666666666667 82.5600000000001 103.8933333333333 149.3333333333334 21.3333333333333 149.3333333333334M21.3333333333333 64V0H85.3333333333333C85.3333333333333 35.4133333333334 56.7466666666667 64 21.3333333333333 64z" />
+    <glyph glyph-name="cast-off"
+      unicode="&#xF789;"
+      horiz-adv-x="512" d=" M34.1333333333333 420.9066666666667L5.3333333333333 389.3333333333333L30.08 366.9333333333334C24.7466666666667 359.8933333333333 21.3333333333333 350.9333333333334 21.3333333333333 341.3333333333334V277.3333333333334H64V336.4266666666667L388.2666666666667 42.6666666666667H298.6666666666667V0H435.4133333333333L475.9466666666666 -36.6933333333333L504.5333333333333 -5.1199999999999M138.6666666666667 384L185.6 341.3333333333334H448V103.68L490.6666666666666 65.0666666666667V341.3333333333334C490.6666666666666 365.0133333333333 471.4666666666667 384 448 384M21.3333333333333 234.6666666666667V192C127.36 192 213.3333333333333 106.0266666666666 213.3333333333333 0H256C256 129.7066666666667 151.04 234.6666666666667 21.3333333333333 234.6666666666667M21.3333333333333 149.3333333333334V106.6666666666667C80.2133333333333 106.6666666666667 128 58.88 128 0H170.6666666666667C170.6666666666667 82.5600000000001 103.8933333333333 149.3333333333334 21.3333333333333 149.3333333333334M21.3333333333333 64V0H85.3333333333333C85.3333333333333 35.4133333333334 56.7466666666667 64 21.3333333333333 64z" />
+    <glyph glyph-name="castle"
+      unicode="&#xF11A;"
+      horiz-adv-x="512" d=" M42.6666666666667 170.6666666666667H85.3333333333333V128H128V170.6666666666667H170.6666666666667V128H213.3333333333333V170.6666666666667H256V128H298.6666666666667V234.6666666666667L362.6666666666667 298.6666666666667V426.6666666666667H405.3333333333333L490.6666666666666 384L405.3333333333333 341.3333333333334V298.6666666666667L469.3333333333333 234.6666666666667V-21.3333333333333H234.6666666666667V42.6666666666667C234.6666666666667 66.1333333333334 215.4666666666667 85.3333333333334 192 85.3333333333334S149.3333333333333 66.1333333333334 149.3333333333333 42.6666666666667V-21.3333333333333H42.6666666666667V170.6666666666667M384 234.6666666666667C372.2666666666667 234.6666666666667 362.6666666666667 223.1466666666667 362.6666666666667 209.0666666666667V170.6666666666667H405.3333333333333V209.0666666666667C405.3333333333333 223.1466666666667 395.7333333333334 234.6666666666667 384 234.6666666666667z" />
+    <glyph glyph-name="cat"
+      unicode="&#xF11B;"
+      horiz-adv-x="512" d=" M256 277.3333333333334L227.6266666666667 275.4133333333334C209.28 297.1733333333334 157.8666666666667 352 106.6666666666667 352C106.6666666666667 352 64.64 288.8533333333334 105.8133333333333 204.5866666666667C94.08 186.88 86.8266666666667 177.7066666666667 85.3333333333333 156.5866666666667L44.16 150.4L48.64 129.4933333333334L86.1866666666667 135.04L89.1733333333333 119.8933333333334L55.68 99.84L65.7066666666667 80.8533333333334L96.64 99.84C121.1733333333333 47.7866666666666 183.2533333333333 21.3333333333334 256 21.3333333333334S390.8266666666667 47.7866666666666 415.36 99.84L446.2933333333333 80.8533333333334L456.3199999999999 99.84L422.8266666666666 119.8933333333333L425.8133333333333 135.04L463.36 129.4933333333334L467.84 150.4L426.6666666666667 156.5866666666667C425.1733333333333 177.7066666666667 417.92 186.88 406.1866666666666 204.5866666666667C447.36 288.8533333333334 405.3333333333333 352 405.3333333333333 352C354.1333333333334 352 302.7200000000001 297.1733333333334 284.3733333333334 275.4133333333334L256 277.3333333333334M192 213.3333333333334C203.7333333333334 213.3333333333334 213.3333333333333 203.7333333333334 213.3333333333333 192S203.7333333333334 170.6666666666667 192 170.6666666666667S170.6666666666667 180.2666666666667 170.6666666666667 192S180.2666666666667 213.3333333333334 192 213.3333333333334M320 213.3333333333334C331.7333333333334 213.3333333333334 341.3333333333333 203.7333333333334 341.3333333333333 192S331.7333333333334 170.6666666666667 320 170.6666666666667S298.6666666666667 180.2666666666667 298.6666666666667 192S308.2666666666667 213.3333333333334 320 213.3333333333334M234.6666666666667 149.3333333333334H277.3333333333333L262.4 119.68C266.6666666666667 106.0266666666666 278.6133333333334 96 293.3333333333333 96C311.04 96 325.3333333333333 110.2933333333334 325.3333333333333 128H336C336 104.5333333333333 316.8 85.3333333333334 293.3333333333333 85.3333333333334C277.3333333333333 85.3333333333334 263.4666666666667 94.08 256 106.6666666666667C248.5333333333334 94.08 234.6666666666667 85.3333333333334 218.6666666666667 85.3333333333334C195.2 85.3333333333334 176 104.5333333333333 176 128H186.6666666666667C186.6666666666667 110.2933333333334 200.96 96 218.6666666666667 96C233.3866666666667 96 245.3333333333333 106.0266666666666 249.6 119.68L234.6666666666667 149.3333333333334z" />
+    <glyph glyph-name="cctv"
+      unicode="&#xF7AD;"
+      horiz-adv-x="512" d=" M387.2 342.6133333333334C379.0933333333333 343.2533333333334 370.56 341.3333333333334 362.6666666666667 337.0666666666667L178.1333333333333 230.4000000000001C157.6533333333333 218.4533333333334 150.8266666666667 192 162.56 171.9466666666667L194.56 116.6933333333334C206.2933333333333 96 232.32 89.1733333333334 252.8 100.9066666666667L291.2 123.0933333333334C296.96 113.28 305.4933333333334 105.3866666666667 315.9466666666667 100.9066666666667V63.1466666666667C315.9466666666667 39.8933333333334 334.9333333333334 21.3333333333334 358.6133333333334 21.3333333333334H469.3333333333333V63.1466666666667H358.6133333333333V100.9066666666667C378.0266666666667 109.4400000000001 390.6133333333333 128.6400000000001 390.6133333333333 149.3333333333334C390.6133333333333 159.1466666666667 388.0533333333333 168.3200000000001 383.36 176.4266666666667L437.3333333333333 207.5733333333334C458.0266666666666 219.5200000000001 465.0666666666667 245.3333333333334 453.1199999999999 266.0266666666667L421.12 321.2800000000001C413.8666666666666 334.0800000000001 400.8533333333333 341.3333333333334 387.2 342.6133333333334M132.6933333333333 167.04L42.6666666666667 152.1066666666667L58.6666666666667 124.3733333333333L101.3333333333333 50.5600000000001L117.3333333333333 22.8266666666667L175.36 93.2266666666667L132.6933333333333 167.0400000000001z" />
+    <glyph glyph-name="ceiling-light"
+      unicode="&#xF768;"
+      horiz-adv-x="512" d=" M170.6666666666667 256H234.6666666666667V362.6666666666667H277.3333333333333V256H341.3333333333333L426.6666666666667 85.3333333333334H85.3333333333333L170.6666666666667 256M298.6666666666667 64C298.6666666666667 40.5333333333333 279.4666666666667 21.3333333333334 256 21.3333333333334S213.3333333333333 40.5333333333333 213.3333333333333 64H298.6666666666667z" />
+    <glyph glyph-name="cellphone"
+      unicode="&#xF11C;"
+      horiz-adv-x="512" d=" M362.6666666666667 42.6666666666667H149.3333333333333V341.3333333333334H362.6666666666667M362.6666666666667 426.6666666666667H149.3333333333333C125.6533333333333 426.6666666666667 106.6666666666667 407.68 106.6666666666667 384V0C106.6666666666667 -23.4666666666667 125.8666666666667 -42.6666666666666 149.3333333333333 -42.6666666666666H362.6666666666667C386.1333333333334 -42.6666666666666 405.3333333333333 -23.4666666666667 405.3333333333333 0V384C405.3333333333333 407.68 386.1333333333334 426.6666666666667 362.6666666666667 426.6666666666667z" />
+    <glyph glyph-name="cellphone-android"
+      unicode="&#xF11D;"
+      horiz-adv-x="512" d=" M368 64H144V362.6666666666667H368M298.6666666666667 0H213.3333333333333V21.3333333333334H298.6666666666667M341.3333333333333 426.6666666666667H170.6666666666667C135.2533333333333 426.6666666666667 106.6666666666667 398.08 106.6666666666667 362.6666666666667V21.3333333333334C106.6666666666667 -14.08 135.2533333333333 -42.6666666666666 170.6666666666667 -42.6666666666666H341.3333333333333C376.7466666666667 -42.6666666666666 405.3333333333333 -14.08 405.3333333333333 21.3333333333334V362.6666666666667C405.3333333333333 398.08 376.7466666666667 426.6666666666667 341.3333333333333 426.6666666666667z" />
+    <glyph glyph-name="cellphone-arrow-down"
+      unicode="&#xF9D4;"
+      horiz-adv-x="512" d=" M362.6666666666667 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V0C106.6666666666667 -23.4666666666667 125.8666666666667 -42.6666666666666 149.3333333333333 -42.6666666666666H362.6666666666667C386.1333333333334 -42.6666666666666 405.3333333333333 -23.4666666666667 405.3333333333333 0V384C405.3333333333333 407.4666666666667 386.1333333333334 426.6666666666667 362.6666666666667 426.6666666666667M362.6666666666667 42.6666666666667H149.3333333333333V341.3333333333334H362.6666666666667V42.6666666666667M341.3333333333333 170.6666666666667H277.3333333333333V277.3333333333334H234.6666666666667V170.6666666666667H170.6666666666667L256 85.3333333333334L341.3333333333333 170.6666666666667z" />
+    <glyph glyph-name="cellphone-basic"
+      unicode="&#xF11E;"
+      horiz-adv-x="512" d=" M320 405.3333333333333C308.2666666666667 405.3333333333333 298.6666666666667 395.7333333333334 298.6666666666667 384V320H213.3333333333333C189.6533333333333 320 170.6666666666667 301.0133333333333 170.6666666666667 277.3333333333334V21.3333333333334C170.6666666666667 -2.3466666666666 189.6533333333333 -21.3333333333333 213.3333333333333 -21.3333333333333H320C343.68 -21.3333333333333 362.6666666666667 -2.3466666666666 362.6666666666667 21.3333333333334V277.3333333333334C362.6666666666667 293.12 354.1333333333334 306.7733333333333 341.3333333333333 314.0266666666667V384C341.3333333333333 395.7333333333334 331.7333333333334 405.3333333333333 320 405.3333333333333M213.3333333333333 277.3333333333334H320V170.6666666666667H213.3333333333333V277.3333333333334M213.3333333333333 128H234.6666666666667V106.6666666666667H213.3333333333333V128M256 128H277.3333333333333V106.6666666666667H256V128M298.6666666666667 128H320V106.6666666666667H298.6666666666667V128M213.3333333333333 85.3333333333334H234.6666666666667V64H213.3333333333333V85.3333333333334M256 85.3333333333334H277.3333333333333V64H256V85.3333333333334M298.6666666666667 85.3333333333334H320V64H298.6666666666667V85.3333333333334M213.3333333333333 42.6666666666667H234.6666666666667V21.3333333333334H213.3333333333333V42.6666666666667M256 42.6666666666667H277.3333333333333V21.3333333333334H256V42.6666666666667M298.6666666666667 42.6666666666667H320V21.3333333333334H298.6666666666667V42.6666666666667z" />
+    <glyph glyph-name="cellphone-dock"
+      unicode="&#xF11F;"
+      horiz-adv-x="512" d=" M341.3333333333333 128H170.6666666666667V341.3333333333334H341.3333333333333M341.3333333333333 426.6666666666667H170.6666666666667C146.9866666666667 426.6666666666667 128 407.68 128 384V85.3333333333334C128 61.8666666666667 147.2 42.6666666666667 170.6666666666667 42.6666666666667H341.3333333333333C364.8 42.6666666666667 384 61.8666666666667 384 85.3333333333334V384C384 407.68 364.8 426.6666666666667 341.3333333333333 426.6666666666667M170.6666666666667 -42.6666666666666H341.3333333333333V0H170.6666666666667V-42.6666666666666z" />
+    <glyph glyph-name="cellphone-erase"
+      unicode="&#xF94C;"
+      horiz-adv-x="512" d=" M234.6666666666667 273.0666666666667L213.3333333333333 294.4000000000001L128 209.0666666666667L42.6666666666667 294.4000000000001L21.3333333333333 273.0666666666667L106.6666666666667 187.7333333333334L21.3333333333333 102.4L42.6666666666667 81.0666666666667L128 166.4L213.3333333333333 81.0666666666667L234.6666666666667 102.4L149.3333333333333 187.7333333333334L234.6666666666667 273.0666666666667M362.6666666666667 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V320H149.3333333333333V362.6666666666667H362.6666666666667V21.3333333333334H149.3333333333333V64H106.6666666666667V0C106.6666666666667 -23.4666666666667 125.8666666666667 -42.6666666666666 149.3333333333333 -42.6666666666666H362.6666666666667C386.1333333333334 -42.6666666666666 405.3333333333333 -23.4666666666667 405.3333333333333 0V384C405.3333333333333 407.4666666666667 386.1333333333334 426.6666666666667 362.6666666666667 426.6666666666667z" />
+    <glyph glyph-name="cellphone-iphone"
+      unicode="&#xF120;"
+      horiz-adv-x="512" d=" M341.3333333333333 64H149.3333333333333V362.6666666666667H341.3333333333333M245.3333333333333 -21.3333333333333C227.6266666666667 -21.3333333333333 213.3333333333333 -7.04 213.3333333333333 10.6666666666667S227.6266666666667 42.6666666666667 245.3333333333333 42.6666666666667S277.3333333333333 28.3733333333333 277.3333333333333 10.6666666666667S263.04 -21.3333333333333 245.3333333333333 -21.3333333333333M330.6666666666667 426.6666666666667H160C130.56 426.6666666666667 106.6666666666667 402.7733333333333 106.6666666666667 373.3333333333334V10.6666666666667C106.6666666666667 -18.7733333333333 130.56 -42.6666666666666 160 -42.6666666666666H330.6666666666667C360.1066666666667 -42.6666666666666 384 -18.7733333333333 384 10.6666666666667V373.3333333333334C384 402.7733333333333 360.1066666666667 426.6666666666667 330.6666666666667 426.6666666666667z" />
+    <glyph glyph-name="cellphone-key"
+      unicode="&#xF94D;"
+      horiz-adv-x="512" d=" M149.3333333333333 426.6666666666667C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V298.6666666666667H149.3333333333333V362.6666666666667H362.6666666666667V21.3333333333334H149.3333333333333V85.3333333333334H106.6666666666667V0C106.6666666666667 -23.4666666666667 125.8666666666667 -42.6666666666666 149.3333333333333 -42.6666666666666H362.6666666666667C386.1333333333334 -42.6666666666666 405.3333333333333 -23.4666666666667 405.3333333333333 0V384C405.3333333333333 407.4666666666667 386.1333333333334 426.6666666666667 362.6666666666667 426.6666666666667H149.3333333333333M128 256C92.5866666666667 256 64 227.4133333333334 64 192S92.5866666666667 128 128 128C155.9466666666667 128 179.6266666666667 145.7066666666667 188.3733333333333 170.6666666666667H234.6666666666667V128H277.3333333333333V170.6666666666667H298.6666666666667V213.3333333333334H188.3733333333333C179.6266666666667 238.2933333333334 155.9466666666667 256 128 256M128 213.3333333333334C139.7333333333333 213.3333333333334 149.3333333333333 203.7333333333334 149.3333333333333 192S139.7333333333333 170.6666666666667 128 170.6666666666667S106.6666666666667 180.2666666666667 106.6666666666667 192S116.2666666666667 213.3333333333334 128 213.3333333333334z" />
+    <glyph glyph-name="cellphone-link"
+      unicode="&#xF121;"
+      horiz-adv-x="512" d=" M469.3333333333333 85.3333333333334H384V234.6666666666667H469.3333333333333M490.6666666666666 277.3333333333334H362.6666666666667C350.9333333333333 277.3333333333334 341.3333333333333 267.7333333333334 341.3333333333333 256V42.6666666666667C341.3333333333333 30.9333333333333 350.9333333333333 21.3333333333334 362.6666666666667 21.3333333333334H490.6666666666666C502.4 21.3333333333334 512 30.9333333333333 512 42.6666666666667V256C512 267.7333333333334 502.4 277.3333333333334 490.6666666666666 277.3333333333334M85.3333333333333 320H469.3333333333333V362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V85.3333333333334H0V21.3333333333334H298.6666666666667V85.3333333333334H85.3333333333333V320z" />
+    <glyph glyph-name="cellphone-link-off"
+      unicode="&#xF122;"
+      horiz-adv-x="512" d=" M490.6666666666666 277.3333333333334H362.6666666666667C350.9333333333333 277.3333333333334 341.3333333333333 267.7333333333334 341.3333333333333 256V166.8266666666667L384 124.16V234.6666666666667H469.3333333333333V85.3333333333334H422.8266666666667L486.8266666666667 21.3333333333334H490.6666666666666C502.4 21.3333333333334 512 30.9333333333333 512 42.6666666666667V256C512 267.7333333333334 502.4 277.3333333333334 490.6666666666666 277.3333333333334M85.3333333333333 314.24L314.24 85.3333333333334H85.3333333333333V314.24M40.96 412.8L13.8666666666667 385.7066666666667L52.6933333333333 346.88C46.5066666666667 339.6266666666667 42.6666666666667 330.6666666666667 42.6666666666667 320V85.3333333333334H0V21.3333333333334H378.24L428.3733333333334 -28.8L455.4666666666667 -1.7066666666667L82.9866666666667 370.7733333333333L40.96 412.8M469.3333333333333 320V362.6666666666667H145.4933333333334L188.16 320H469.3333333333333z" />
+    <glyph glyph-name="cellphone-lock"
+      unicode="&#xF94E;"
+      horiz-adv-x="512" d=" M362.6666666666667 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V320H149.3333333333333V362.6666666666667H362.6666666666667V21.3333333333334H149.3333333333333V64H106.6666666666667V0C106.6666666666667 -23.4666666666667 125.8666666666667 -42.6666666666666 149.3333333333333 -42.6666666666666H362.6666666666667C386.1333333333334 -42.6666666666666 405.3333333333333 -23.4666666666667 405.3333333333333 0V384C405.3333333333333 407.4666666666667 386.1333333333334 426.6666666666667 362.6666666666667 426.6666666666667M187.7333333333334 213.3333333333334V245.3333333333334C187.7333333333334 275.2000000000001 157.8666666666667 298.6666666666667 128 298.6666666666667S68.2666666666667 275.2000000000001 68.2666666666667 245.3333333333334V213.3333333333334C55.4666666666667 213.3333333333334 42.6666666666667 200.5333333333334 42.6666666666667 187.7333333333334V113.0666666666667C42.6666666666667 98.1333333333334 55.4666666666667 85.3333333333334 68.2666666666667 85.3333333333334H185.6C200.5333333333333 85.3333333333334 213.3333333333333 98.1333333333334 213.3333333333333 110.9333333333333V185.6C213.3333333333333 200.5333333333333 200.5333333333333 213.3333333333334 187.7333333333334 213.3333333333334M160 213.3333333333334H96V245.3333333333334C96 262.4000000000001 110.9333333333334 273.0666666666667 128 273.0666666666667S160 262.4000000000001 160 245.3333333333334V213.3333333333334z" />
+    <glyph glyph-name="cellphone-message"
+      unicode="&#xF8D2;"
+      horiz-adv-x="512" d=" M234.6666666666667 85.3333333333334V298.6666666666667H85.3333333333333V85.3333333333334H234.6666666666667M234.6666666666667 384C258.1333333333334 384 277.3333333333333 364.8 277.3333333333333 341.3333333333334V42.6666666666667C277.3333333333333 19.2 258.1333333333334 0 234.6666666666667 0H85.3333333333333C61.6533333333333 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V341.3333333333334C42.6666666666667 364.8 61.8666666666667 384 85.3333333333333 384H234.6666666666667M352 384H458.6666666666666C476.3733333333333 384 490.6666666666666 369.7066666666667 490.6666666666666 352V288C490.6666666666666 270.2933333333334 476.3733333333333 256 458.6666666666666 256H384L320 192V352C320 369.7066666666667 334.2933333333333 384 352 384z" />
+    <glyph glyph-name="cellphone-off"
+      unicode="&#xF94F;"
+      horiz-adv-x="512" d=" M50.7733333333333 411.0933333333334L23.68 384L106.6666666666667 301.0133333333333V0C106.6666666666667 -23.4666666666667 125.8666666666667 -42.6666666666666 149.3333333333333 -42.6666666666666H362.6666666666667C386.1333333333334 -42.6666666666666 405.3333333333333 -23.4666666666667 405.3333333333333 0V2.3466666666667L444.5866666666667 -36.9066666666666L471.6799999999999 -9.8133333333333M362.6666666666667 42.6666666666667H149.3333333333333V258.3466666666667L362.6666666666667 45.0133333333333V42.6666666666667M362.6666666666667 341.3333333333334V153.6L405.3333333333333 110.9333333333333V384C405.3333333333333 407.4666666666667 386.1333333333334 426.6666666666667 362.6666666666667 426.6666666666667H149.3333333333333C133.9733333333333 426.6666666666667 119.4666666666667 418.7733333333333 111.7866666666667 405.3333333333333L175.7866666666667 341.3333333333334H362.6666666666667z" />
+    <glyph glyph-name="cellphone-screenshot"
+      unicode="&#xFA34;"
+      horiz-adv-x="512" d=" M149.3333333333333 426.6666666666667C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V0C106.6666666666667 -23.4666666666667 125.8666666666667 -42.6666666666666 149.3333333333333 -42.6666666666666H362.6666666666667C386.1333333333334 -42.6666666666666 405.3333333333333 -23.4666666666667 405.3333333333333 0V384C405.3333333333333 407.4666666666667 386.1333333333334 426.6666666666667 362.6666666666667 426.6666666666667H149.3333333333333M149.3333333333333 362.6666666666667H362.6666666666667V21.3333333333334H149.3333333333333V362.6666666666667M192 320V234.6666666666667H224V288H277.3333333333333V320H192M288 149.3333333333334V96H234.6666666666667V64H320V149.3333333333334H288z" />
+    <glyph glyph-name="cellphone-settings"
+      unicode="&#xF123;"
+      horiz-adv-x="512" d=" M341.3333333333333 106.6666666666667H170.6666666666667V362.6666666666667H341.3333333333333M341.3333333333333 448H170.6666666666667C147.2 448 128 428.8 128 405.3333333333333V64C128 40.5333333333333 147.2 21.3333333333334 170.6666666666667 21.3333333333334H341.3333333333333C364.8 21.3333333333334 384 40.5333333333333 384 64V405.3333333333333C384 428.8 364.8 448 341.3333333333333 448M320 -64H362.6666666666667V-21.3333333333333H320M234.6666666666667 -64H277.3333333333333V-21.3333333333333H234.6666666666667M149.3333333333333 -64H192V-21.3333333333333H149.3333333333333V-64z" />
+    <glyph glyph-name="cellphone-settings-variant"
+      unicode="&#xF950;"
+      horiz-adv-x="512" d=" M209.4933333333334 181.3333333333334C209.92 184.96 210.3466666666666 188.3733333333333 210.3466666666666 192C210.3466666666666 195.6266666666667 209.92 199.04 209.4933333333334 202.6666666666667L232.5333333333334 219.9466666666667C234.6666666666667 221.44 234.6666666666667 224 233.8133333333334 226.7733333333334L211.84 263.68C210.56 266.0266666666667 207.5733333333333 266.6666666666667 205.2266666666666 266.0266666666667L177.92 255.36C172.16 259.6266666666667 165.9733333333333 263.04 159.36 265.8133333333334L155.0933333333333 294.1866666666667C155.0933333333333 296.7466666666667 152.7466666666667 298.6666666666667 149.9733333333333 298.6666666666667H106.6666666666667C103.4666666666667 298.6666666666667 101.12 296.7466666666667 100.6933333333333 294.1866666666667L96 266.0266666666667C89.8133333333333 263.4666666666667 83.6266666666667 259.6266666666667 77.8666666666667 256L50.56 266.6666666666667C48 267.3066666666667 45.2266666666667 266.6666666666667 43.9466666666667 263.8933333333333L21.9733333333333 226.9866666666667C20.6933333333333 224 21.3333333333333 221.6533333333333 23.4666666666667 219.9466666666667L46.5066666666667 202.6666666666666C46.08 199.04 45.8666666666667 195.4133333333333 45.8666666666667 192C45.8666666666667 188.3733333333333 46.2933333333333 184.96 46.72 181.3333333333333L23.4666666666667 163.84C21.3333333333333 162.3466666666666 21.3333333333333 159.36 22.1866666666667 157.0133333333333L44.16 120.1066666666666C45.44 117.3333333333333 48.4266666666667 117.3333333333333 50.7733333333333 117.3333333333333L78.08 128C83.84 124.16 90.0266666666667 120.7466666666666 96.64 117.9733333333333L100.9066666666667 89.8133333333333C101.12 87.2533333333333 103.4666666666667 85.3333333333333 106.6666666666667 85.3333333333333H150.1866666666667C152.96 85.3333333333333 155.3066666666667 87.2533333333333 155.52 89.8133333333333L160 117.9733333333333C166.4 120.5333333333333 172.5866666666667 124.3733333333333 178.3466666666666 128L205.6533333333333 117.3333333333333C208.2133333333333 116.6933333333333 210.9866666666666 117.3333333333333 212.2666666666667 120.1066666666667L234.6666666666667 157.0133333333333C235.52 159.36 234.6666666666667 162.1333333333333 232.96 163.84L209.4933333333334 181.3333333333334M128 154.6666666666667C106.6666666666667 154.6666666666667 89.6 171.3066666666667 89.6 192S106.6666666666667 229.3333333333334 128 229.3333333333334S166.4 212.6933333333334 166.4 192S149.3333333333333 154.6666666666667 128 154.6666666666667M362.6666666666667 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V320H149.3333333333333V362.6666666666667H362.6666666666667V21.3333333333334H149.3333333333333V64H106.6666666666667V0C106.6666666666667 -23.4666666666667 125.8666666666667 -42.6666666666666 149.3333333333333 -42.6666666666666H362.6666666666667C386.1333333333334 -42.6666666666666 405.3333333333333 -23.4666666666667 405.3333333333333 0V384C405.3333333333333 407.4666666666667 386.1333333333334 426.6666666666667 362.6666666666667 426.6666666666667z" />
+    <glyph glyph-name="cellphone-sound"
+      unicode="&#xF951;"
+      horiz-adv-x="512" d=" M407.4666666666667 262.4000000000001C445.8666666666667 224 445.8666666666667 164.2666666666667 407.4666666666667 123.7333333333334L428.8 102.4C482.1333333333333 151.4666666666667 482.1333333333333 232.5333333333334 428.8 283.7333333333334L407.4666666666667 262.4000000000001M384 238.9333333333334L362.6666666666667 217.6C373.3333333333333 202.6666666666667 373.3333333333333 183.4666666666667 362.6666666666667 168.5333333333333L384 147.2C409.6 172.8 409.6 211.2 384 238.9333333333334M298.6666666666667 426.6666666666667H85.3333333333333C61.8666666666667 426.6666666666667 42.6666666666667 407.4666666666667 42.6666666666667 384V0C42.6666666666667 -23.4666666666667 61.8666666666667 -42.6666666666666 85.3333333333333 -42.6666666666666H298.6666666666667C322.1333333333334 -42.6666666666666 341.3333333333333 -23.4666666666667 341.3333333333333 0V384C341.3333333333333 407.4666666666667 322.1333333333334 426.6666666666667 298.6666666666667 426.6666666666667M298.6666666666667 21.3333333333334H85.3333333333333V362.6666666666667H298.6666666666667V21.3333333333334z" />
+    <glyph glyph-name="cellphone-text"
+      unicode="&#xF8D1;"
+      horiz-adv-x="512" d=" M362.6666666666667 42.6666666666667V341.3333333333334H149.3333333333333V42.6666666666667H362.6666666666667M362.6666666666667 426.6666666666667C386.1333333333334 426.6666666666667 405.3333333333333 407.4666666666667 405.3333333333333 384V0C405.3333333333333 -23.4666666666667 386.1333333333334 -42.6666666666666 362.6666666666667 -42.6666666666666H149.3333333333333C125.6533333333333 -42.6666666666666 106.6666666666667 -23.4666666666667 106.6666666666667 0V384C106.6666666666667 407.68 125.6533333333333 426.6666666666667 149.3333333333333 426.6666666666667H362.6666666666667M192 298.6666666666667H320V256H192V298.6666666666667M192 213.3333333333334H277.3333333333333V170.6666666666667H192V213.3333333333334z" />
+    <glyph glyph-name="cellphone-wireless"
+      unicode="&#xF814;"
+      horiz-adv-x="512" d=" M428.16 342.8266666666667C466.7733333333333 304.2133333333334 490.6666666666666 250.88 490.6666666666666 192C490.6666666666666 133.12 466.7733333333333 79.7866666666668 428.16 41.1733333333333L398.08 71.2533333333333C429.0133333333333 101.9733333333334 448 144.64 448 192C448 239.1466666666667 429.0133333333333 282.0266666666667 398.08 312.7466666666667L428.16 342.8266666666667M367.7866666666667 282.4533333333334C391.04 259.2000000000001 405.3333333333333 227.2 405.3333333333333 192C405.3333333333333 156.8 391.04 124.8 367.7866666666667 101.5466666666666L337.7066666666666 131.6266666666667C353.0666666666667 146.9866666666667 362.6666666666667 168.3200000000001 362.6666666666667 192S353.0666666666667 237.0133333333333 337.7066666666667 252.3733333333334L367.7866666666667 282.4533333333334M277.3333333333333 234.6666666666667C300.8 234.6666666666667 320 215.4666666666667 320 192S300.8 149.3333333333334 277.3333333333333 149.3333333333334S234.6666666666667 168.5333333333334 234.6666666666667 192S253.8666666666667 234.6666666666667 277.3333333333333 234.6666666666667M245.3333333333333 426.6666666666667C274.7733333333333 426.6666666666667 298.6666666666667 402.7733333333333 298.6666666666667 373.3333333333334V277.3333333333334H256V362.6666666666667H64V42.6666666666667H256V106.6666666666667H298.6666666666667V10.6666666666667C298.6666666666667 -18.7733333333333 274.7733333333333 -42.6666666666666 245.3333333333333 -42.6666666666666H74.6666666666667C45.2266666666667 -42.6666666666666 21.3333333333333 -18.7733333333333 21.3333333333333 10.6666666666667V373.3333333333334C21.3333333333333 402.7733333333333 45.2266666666667 426.6666666666667 74.6666666666667 426.6666666666667H245.3333333333333z" />
+    <glyph glyph-name="certificate"
+      unicode="&#xF124;"
+      horiz-adv-x="512" d=" M85.3333333333333 384C61.6533333333333 384 42.6666666666667 365.0133333333333 42.6666666666667 341.3333333333334V128C42.6666666666667 104.5333333333333 61.8666666666667 85.3333333333334 85.3333333333333 85.3333333333334H256V-21.3333333333333L320 42.6666666666667L384 -21.3333333333333V85.3333333333334H426.6666666666667C450.1333333333334 85.3333333333334 469.3333333333333 104.5333333333333 469.3333333333333 128V341.3333333333334C469.3333333333333 364.8 450.1333333333334 384 426.6666666666667 384H85.3333333333333M256 341.3333333333334L320 298.6666666666667L384 341.3333333333334V266.6666666666667L448 234.6666666666667L384 202.6666666666667V128L320 170.6666666666667L256 128V202.6666666666667L192 234.6666666666667L256 266.6666666666667V341.3333333333334M85.3333333333333 341.3333333333334H192V298.6666666666667H85.3333333333333V341.3333333333334M85.3333333333333 256H149.3333333333333V213.3333333333334H85.3333333333333V256M85.3333333333333 170.6666666666667H192V128H85.3333333333333V170.6666666666667z" />
+    <glyph glyph-name="chair-school"
+      unicode="&#xF125;"
+      horiz-adv-x="512" d=" M469.3333333333333 341.3333333333334V298.6666666666667H362.6666666666667L288.64 192H341.3333333333333V149.3333333333334H308.48L387.6266666666667 -21.3333333333333H340.6933333333334L320.8533333333334 21.3333333333334H136.1066666666667L114.1333333333333 -21.3333333333333H66.1333333333333L154.24 149.3333333333334H149.3333333333333C139.7333333333333 149.3333333333334 131.6266666666667 155.7333333333334 128.8533333333333 164.2666666666667L61.2266666666667 366.0800000000001L81.4933333333333 373.3333333333334C92.5866666666667 376.7466666666667 104.7466666666667 370.56 108.3733333333333 359.4666666666667L164.6933333333333 192H258.1333333333334L332.16 298.6666666666667H256V341.3333333333334H469.3333333333333M202.6666666666667 149.3333333333334L158.2933333333333 64H301.0133333333333L261.5466666666666 149.3333333333334H202.6666666666667z" />
+    <glyph glyph-name="chart-arc"
+      unicode="&#xF126;"
+      horiz-adv-x="512" d=" M345.1733333333333 29.8666666666667L302.2933333333333 104.1066666666667C323.2 119.4666666666667 337.7066666666667 143.36 340.6933333333334 170.6666666666667H426.6666666666667C423.04 111.7866666666667 391.4666666666667 60.5866666666667 345.1733333333333 29.8666666666667M277.3333333333333 298.0266666666667V384C369.0666666666667 378.4533333333334 442.4533333333334 305.0666666666667 448 213.3333333333334H362.0266666666667C357.12 257.92 321.92 293.12 277.3333333333333 298.0266666666667M149.3333333333333 181.3333333333334C149.3333333333333 167.68 152.1066666666667 154.6666666666667 157.44 142.9333333333333L83.2 100.0533333333334C70.8266666666667 124.5866666666667 64 152.1066666666667 64 181.3333333333334C64 277.9733333333334 139.52 356.9066666666667 234.6666666666667 362.6666666666667V276.6933333333334C186.6666666666667 271.36 149.3333333333333 230.8266666666667 149.3333333333333 181.3333333333334M245.3333333333333 0C181.9733333333333 0 126.2933333333333 32 93.8666666666667 81.4933333333333L168.1066666666667 124.3733333333333C185.6 100.6933333333333 213.3333333333333 85.3333333333334 245.3333333333333 85.3333333333334C258.9866666666667 85.3333333333334 272 88.1066666666667 283.7333333333334 93.44L326.6133333333334 19.2C302.08 6.8266666666667 274.56 0 245.3333333333333 0z" />
+    <glyph glyph-name="chart-areaspline"
+      unicode="&#xF127;"
+      horiz-adv-x="512" d=" M372.2666666666667 124.16L469.3333333333333 292.0533333333334V0H42.6666666666667V384H85.3333333333333V116.48L202.6666666666667 320L341.3333333333333 239.36L431.7866666666667 395.7333333333334L468.6933333333334 374.4000000000001L357.12 181.3333333333334L218.2400000000001 261.3333333333334L91.9466666666667 42.6666666666667H140.16L233.8133333333333 203.9466666666667L372.2666666666667 124.16z" />
+    <glyph glyph-name="chart-bar"
+      unicode="&#xF128;"
+      horiz-adv-x="512" d=" M469.3333333333333 0H42.6666666666667V384H85.3333333333333V42.6666666666667H128V234.6666666666667H213.3333333333333V42.6666666666667H256V320H341.3333333333333V42.6666666666667H384V149.3333333333334H469.3333333333333V0z" />
+    <glyph glyph-name="chart-bar-stacked"
+      unicode="&#xF769;"
+      horiz-adv-x="512" d=" M469.3333333333333 0H42.6666666666667V384H85.3333333333333V42.6666666666667H128V85.3333333333334H213.3333333333333V42.6666666666667H256V106.6666666666667H341.3333333333333V42.6666666666667H384V85.3333333333334H469.3333333333333V0M384 149.3333333333334H469.3333333333333V106.6666666666667H384V149.3333333333334M256 320H341.3333333333333V256H256V320M341.3333333333333 128H256V234.6666666666667H341.3333333333333V128M128 234.6666666666667H213.3333333333333V192H128V234.6666666666667M213.3333333333333 106.6666666666667H128V170.6666666666667H213.3333333333333V106.6666666666667z" />
+    <glyph glyph-name="chart-bubble"
+      unicode="&#xF5E3;"
+      horiz-adv-x="512" d=" M153.6 209.0666666666667C191.36 209.0666666666667 221.8666666666667 178.5600000000001 221.8666666666667 140.8000000000001C221.8666666666667 103.0400000000001 191.36 72.5333333333334 153.6 72.5333333333334C115.84 72.5333333333334 85.3333333333333 103.0400000000001 85.3333333333333 140.8000000000001C85.3333333333333 178.5600000000001 115.84 209.0666666666667 153.6 209.0666666666667M315.7333333333334 106.6666666666667C339.2 106.6666666666667 358.4 87.4666666666667 358.4 64S339.2 21.3333333333334 315.7333333333334 21.3333333333334S273.0666666666667 40.5333333333333 273.0666666666667 64S292.2666666666667 106.6666666666667 315.7333333333334 106.6666666666667M324.2666666666667 362.6666666666667C380.8 362.6666666666667 426.6666666666667 316.8 426.6666666666667 260.2666666666667S380.8 157.8666666666667 324.2666666666667 157.8666666666667S221.8666666666666 203.7333333333333 221.8666666666666 260.2666666666667S267.7333333333334 362.6666666666667 324.2666666666667 362.6666666666667z" />
+    <glyph glyph-name="chart-donut"
+      unicode="&#xF7AE;"
+      horiz-adv-x="512" d=" M277.3333333333333 404.2666666666667V339.6266666666667C349.6533333333333 329.1733333333334 405.3333333333333 267.3066666666667 405.3333333333333 192C405.3333333333333 172.8 401.4933333333334 154.6666666666667 394.6666666666667 137.8133333333334L450.56 105.1733333333334C462.5066666666667 131.6266666666667 469.3333333333333 161.0666666666667 469.3333333333333 192C469.3333333333333 302.5066666666667 385.0666666666667 393.6 277.3333333333333 404.2666666666667M256 42.6666666666667C173.44 42.6666666666667 106.6666666666667 109.44 106.6666666666667 192C106.6666666666667 267.3066666666667 162.3466666666666 329.1733333333334 234.6666666666667 339.6266666666667V404.2666666666667C126.72 393.6 42.6666666666667 302.7200000000001 42.6666666666667 192C42.6666666666667 74.24 138.24 -21.3333333333333 256 -21.3333333333333C326.4 -21.3333333333333 388.9066666666667 13.0133333333333 427.7333333333334 65.92L372.2666666666667 98.5600000000001C344.9600000000001 64 303.1466666666667 42.6666666666667 256 42.6666666666667z" />
+    <glyph glyph-name="chart-donut-variant"
+      unicode="&#xF7AF;"
+      horiz-adv-x="512" d=" M277.3333333333333 404.2666666666667C385.0666666666667 393.6 469.3333333333333 302.5066666666667 469.3333333333333 192C469.3333333333333 161.0666666666667 462.5066666666667 131.6266666666667 450.56 105.1733333333334L394.6666666666667 137.8133333333333C401.4933333333334 154.6666666666667 405.3333333333333 172.8 405.3333333333333 192C405.3333333333333 267.3066666666667 349.6533333333333 329.1733333333334 277.3333333333333 339.6266666666667V404.2666666666667M256 42.6666666666667C303.1466666666667 42.6666666666667 344.9600000000001 64 372.2666666666667 98.5600000000001L427.7333333333334 65.92C388.9066666666667 13.0133333333333 326.4 -21.3333333333333 256 -21.3333333333333C138.0266666666667 -21.3333333333333 42.6666666666667 74.6666666666667 42.6666666666667 192C42.6666666666667 302.7200000000001 126.72 393.6 234.6666666666667 404.2666666666667V339.6266666666667C162.3466666666667 329.1733333333334 106.6666666666667 267.3066666666667 106.6666666666667 192C106.6666666666667 109.44 173.44 42.6666666666667 256 42.6666666666667M256 320C326.6133333333334 320 384 262.6133333333334 384 192C384 128.64 337.92 75.9466666666667 277.3333333333333 65.7066666666667V131.6266666666667C302.2933333333333 140.3733333333333 320 164.0533333333333 320 192C320 227.4133333333333 291.4133333333333 256 256 256L244.2666666666667 254.9333333333333L211.4133333333333 311.8933333333333C225.28 317.2266666666667 240.2133333333333 320 256 320M128 192C128 231.68 146.1333333333333 266.6666666666667 174.5066666666667 290.56L207.36 233.6C197.76 222.5066666666667 192 207.7866666666667 192 192C192 164.0533333333334 209.7066666666667 140.3733333333333 234.6666666666667 131.6266666666667V65.7066666666667C174.08 75.9466666666667 128 128.64 128 192z" />
+    <glyph glyph-name="chart-gantt"
+      unicode="&#xF66C;"
+      horiz-adv-x="512" d=" M42.6666666666667 341.3333333333334H213.3333333333333V405.3333333333333H256V-21.3333333333333H213.3333333333333V64H128V128H213.3333333333333V170.6666666666667H85.3333333333333V234.6666666666667H213.3333333333333V277.3333333333334H42.6666666666667V341.3333333333334M298.6666666666667 341.3333333333334H362.6666666666667V277.3333333333334H298.6666666666667V341.3333333333334M298.6666666666667 234.6666666666667H405.3333333333333V170.6666666666667H298.6666666666667V234.6666666666667M298.6666666666667 128H469.3333333333333V64H298.6666666666667V128z" />
+    <glyph glyph-name="chart-histogram"
+      unicode="&#xF129;"
+      horiz-adv-x="512" d=" M64 384H106.6666666666667V170.6666666666667H192V298.6666666666667H277.3333333333333V213.3333333333334H362.6666666666667V128H448V0H64V384z" />
+    <glyph glyph-name="chart-line"
+      unicode="&#xF12A;"
+      horiz-adv-x="512" d=" M341.3333333333333 196.6933333333334L431.7866666666667 353.0666666666667L468.6933333333334 331.7333333333334L357.12 138.6666666666667L218.2400000000001 218.6666666666667L116.48 42.6666666666667H469.3333333333333V0H42.6666666666667V384H85.3333333333333V73.8133333333334L202.6666666666667 277.3333333333334L341.3333333333333 196.6933333333334z" />
+    <glyph glyph-name="chart-line-stacked"
+      unicode="&#xF76A;"
+      horiz-adv-x="512" d=" M372.2666666666667 124.16L469.3333333333333 302.7200000000001V0H42.6666666666667V384H85.3333333333333V42.6666666666667H140.16L233.8133333333334 203.9466666666667L372.2666666666667 124.16M469.3333333333333 384L468.6933333333333 374.4L362.6666666666667 213.3333333333334L213.3333333333333 320L128 192V384H469.3333333333333z" />
+    <glyph glyph-name="chart-line-variant"
+      unicode="&#xF7B0;"
+      horiz-adv-x="512" d=" M74.6666666666667 53.3333333333334L202.6666666666667 181.3333333333334L288 96L469.3333333333333 300.3733333333334L439.2533333333334 330.6666666666667L288 160L202.6666666666667 245.3333333333334L42.6666666666667 85.3333333333334L74.6666666666667 53.3333333333334z" />
+    <glyph glyph-name="chart-multiline"
+      unicode="&#xF8D3;"
+      horiz-adv-x="512" d=" M469.3333333333333 300.3733333333334L439.2533333333334 330.6666666666667L378.4533333333333 261.9733333333334C334.5066666666667 311.4666666666667 273.7066666666667 341.3333333333334 205.0133333333333 341.3333333333334C143.36 341.3333333333334 86.8266666666667 316.5866666666667 42.6666666666667 277.3333333333334L72.96 247.04C109.2266666666667 278.8266666666667 155.0933333333333 298.6666666666667 205.0133333333333 298.6666666666667C263.4666666666667 298.6666666666667 313.6 271.7866666666667 349.44 229.5466666666667L288 160L202.6666666666667 245.3333333333334L42.6666666666667 85.3333333333334L74.6666666666667 53.3333333333334L202.6666666666667 181.3333333333334L288 96L374.4 193.4933333333334C390.4 164.6933333333334 401.0666666666667 131.6266666666667 405.3333333333333 96H448C443.3066666666667 145.4933333333334 427.7333333333334 190.0800000000001 404.48 227.4133333333334L469.3333333333333 300.3733333333334z" />
+    <glyph glyph-name="chart-pie"
+      unicode="&#xF12B;"
+      horiz-adv-x="512" d=" M448 213.3333333333334H277.3333333333333V384C371.6266666666667 384 448 307.6266666666667 448 213.3333333333334M405.3333333333333 170.6666666666667C405.3333333333333 111.36 375.04 59.0933333333334 329.1733333333333 28.3733333333333L247.04 170.6666666666667H405.3333333333333M234.6666666666667 0C175.36 0 123.0933333333333 30.2933333333334 92.3733333333333 76.16L230.8266666666667 156.16L310.6133333333334 17.7066666666667C288 6.4 261.9733333333334 0 234.6666666666667 0M64 170.6666666666667C64 264.9600000000001 140.3733333333333 341.3333333333334 234.6666666666667 341.3333333333334V183.04L81.7066666666667 94.72C70.4 117.3333333333334 64 143.36 64 170.6666666666667z" />
+    <glyph glyph-name="chart-scatterplot-hexbin"
+      unicode="&#xF66D;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H85.3333333333333V21.3333333333334H469.3333333333333V-21.3333333333333H42.6666666666667V405.3333333333333M298.6666666666667 138.6666666666667L256 64H169.3866666666667L126.2933333333333 138.6666666666667L169.3866666666667 213.3333333333334H256L298.6666666666667 138.6666666666667M300.3733333333334 309.3333333333334L257.28 234.6666666666667H170.6666666666667L128 309.3333333333334L170.6666666666667 384H257.28L300.3733333333333 309.3333333333334M453.3333333333333 224L410.24 149.3333333333334H324.0533333333334L280.9600000000001 224L324.0533333333333 298.6666666666667H410.24L453.3333333333333 224z" />
+    <glyph glyph-name="chart-timeline"
+      unicode="&#xF66E;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H85.3333333333333V21.3333333333334H469.3333333333333V-21.3333333333333H42.6666666666667V405.3333333333333M149.3333333333333 234.6666666666667H362.6666666666667V170.6666666666667H149.3333333333333V234.6666666666667M234.6666666666667 128H448V64H234.6666666666667V128M128 362.6666666666667H469.3333333333333V277.3333333333334H426.6666666666667V320H170.6666666666667V277.3333333333334H128V362.6666666666667z" />
+    <glyph glyph-name="chat"
+      unicode="&#xFB55;"
+      horiz-adv-x="512" d=" M256 384C373.3333333333333 384 469.3333333333333 307.6266666666667 469.3333333333333 213.3333333333334S373.3333333333333 42.6666666666667 256 42.6666666666667C229.5466666666667 42.6666666666667 204.16 46.5066666666667 180.6933333333333 53.3333333333334C118.4 0 42.6666666666667 0 42.6666666666667 0C92.3733333333333 49.7066666666667 100.2666666666667 83.2 101.3333333333333 96C65.0666666666667 126.5066666666667 42.6666666666667 167.8933333333333 42.6666666666667 213.3333333333334C42.6666666666667 307.6266666666667 138.6666666666667 384 256 384z" />
+    <glyph glyph-name="chat-alert"
+      unicode="&#xFB56;"
+      horiz-adv-x="512" d=" M256 384C373.3333333333333 384 469.3333333333333 307.6266666666667 469.3333333333333 213.3333333333334S373.3333333333333 42.6666666666667 256 42.6666666666667C229.5466666666667 42.6666666666667 204.16 46.5066666666667 180.6933333333333 53.3333333333334C118.4 0 42.6666666666667 0 42.6666666666667 0C92.3733333333333 49.7066666666667 100.2666666666667 83.2 101.3333333333333 96C65.0666666666667 126.5066666666667 42.6666666666667 167.8933333333333 42.6666666666667 213.3333333333334C42.6666666666667 307.6266666666667 138.6666666666667 384 256 384M234.6666666666667 149.3333333333334V106.6666666666667H277.3333333333333V149.3333333333334H234.6666666666667M234.6666666666667 192H277.3333333333333V320H234.6666666666667V192z" />
+    <glyph glyph-name="chat-processing"
+      unicode="&#xFB57;"
+      horiz-adv-x="512" d=" M256 384C373.3333333333333 384 469.3333333333333 307.6266666666667 469.3333333333333 213.3333333333334S373.3333333333333 42.6666666666667 256 42.6666666666667C229.5466666666667 42.6666666666667 204.16 46.5066666666667 180.6933333333333 53.3333333333334C118.4 0 42.6666666666667 0 42.6666666666667 0C92.3733333333333 49.7066666666667 100.2666666666667 83.2 101.3333333333333 96C65.0666666666667 126.5066666666667 42.6666666666667 167.8933333333333 42.6666666666667 213.3333333333334C42.6666666666667 307.6266666666667 138.6666666666667 384 256 384M362.6666666666667 192V234.6666666666667H320V192H362.6666666666667M277.3333333333333 192V234.6666666666667H234.6666666666667V192H277.3333333333333M192 192V234.6666666666667H149.3333333333333V192H192z" />
+    <glyph glyph-name="check"
+      unicode="&#xF12C;"
+      horiz-adv-x="512" d=" M448 298.6666666666667L192 42.6666666666667L74.6666666666667 160L104.7466666666667 190.0800000000001L192 103.04L417.92 328.7466666666667L448 298.6666666666667z" />
+    <glyph glyph-name="check-all"
+      unicode="&#xF12D;"
+      horiz-adv-x="512" d=" M8.7466666666667 161.92L128 42.6666666666667L158.08 72.96L39.04 192M474.4533333333334 328.9600000000001L248.7466666666667 103.04L160 192L129.4933333333334 161.92L248.7466666666667 42.6666666666667L504.7466666666667 298.6666666666667M384 298.6666666666667L353.92 328.9600000000001L218.4533333333333 193.4933333333334L248.7466666666667 163.4133333333334L384 298.6666666666667z" />
+    <glyph glyph-name="check-circle"
+      unicode="&#xF5E0;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M234.6666666666667 96L384 245.3333333333334L353.92 275.4133333333334L234.6666666666667 156.3733333333333L168.7466666666667 222.08L138.6666666666667 192L234.6666666666667 96z" />
+    <glyph glyph-name="check-circle-outline"
+      unicode="&#xF5E1;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M234.6666666666667 96L138.6666666666667 192L168.7466666666667 222.08L234.6666666666667 156.3733333333333L353.92 275.4133333333334L384 245.3333333333334L234.6666666666667 96z" />
+    <glyph glyph-name="check-decagram"
+      unicode="&#xF790;"
+      horiz-adv-x="512" d=" M490.6666666666666 192L438.6133333333333 251.3066666666667L445.8666666666666 329.8133333333334L368.8533333333333 347.3066666666667L328.5333333333333 415.1466666666667L256 384L183.4666666666667 415.1466666666667L143.1466666666667 347.3066666666667L66.1333333333333 330.0266666666667L73.3866666666667 251.5200000000001L21.3333333333333 192L73.3866666666667 132.6933333333334L66.1333333333333 53.9733333333334L143.1466666666667 36.48L183.4666666666667 -31.36L256 0L328.5333333333333 -31.1466666666666L368.8533333333333 36.6933333333333L445.8666666666666 54.1866666666667L438.6133333333333 132.6933333333333L490.6666666666666 192M213.3333333333333 85.3333333333334L128 170.6666666666667L158.08 200.7466666666667L213.3333333333333 145.7066666666667L353.92 286.2933333333334L384 256L213.3333333333333 85.3333333333334z" />
+    <glyph glyph-name="check-outline"
+      unicode="&#xF854;"
+      horiz-adv-x="512" d=" M421.9733333333334 401.0666666666667L512 311.04L180.0533333333333 -21.3333333333333L0 158.9333333333333L90.0266666666667 248.96L180.0533333333333 158.9333333333333L421.9733333333334 401.0666666666667M421.9733333333334 341.3333333333334L180.0533333333333 98.9866666666667L90.0266666666667 187.9466666666667L59.9466666666667 158.9333333333334L180.0533333333333 39.0400000000001L452.0533333333333 311.04L421.9733333333334 341.3333333333334z" />
+    <glyph glyph-name="checkbook"
+      unicode="&#xFA9C;"
+      horiz-adv-x="512" d=" M106.6666666666667 149.3333333333334H405.3333333333333V128H106.6666666666667V149.3333333333334M448 85.3333333333334V277.3333333333334H64V85.3333333333334H448M21.3333333333333 341.3333333333334H490.6666666666666V42.6666666666667H21.3333333333333V341.3333333333334M106.6666666666667 234.6666666666667H256V192H106.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="checkbox-blank"
+      unicode="&#xF12E;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="checkbox-blank-circle"
+      unicode="&#xF12F;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="checkbox-blank-circle-outline"
+      unicode="&#xF130;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="checkbox-blank-outline"
+      unicode="&#xF131;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M405.3333333333333 341.3333333333334V42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333z" />
+    <glyph glyph-name="checkbox-intermediate"
+      unicode="&#xF855;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333V42.6666666666667M362.6666666666667 85.3333333333334H149.3333333333333V298.6666666666667H362.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="checkbox-marked"
+      unicode="&#xF132;"
+      horiz-adv-x="512" d=" M213.3333333333333 85.3333333333334L106.6666666666667 192L136.7466666666667 222.2933333333334L213.3333333333333 145.7066666666667L375.2533333333334 307.6266666666667L405.3333333333333 277.3333333333334M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="checkbox-marked-circle"
+      unicode="&#xF133;"
+      horiz-adv-x="512" d=" M213.3333333333333 85.3333333333334L106.6666666666667 192L136.7466666666667 222.2933333333334L213.3333333333333 145.7066666666667L375.2533333333334 307.6266666666667L405.3333333333333 277.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="checkbox-marked-circle-outline"
+      unicode="&#xF134;"
+      horiz-adv-x="512" d=" M426.6666666666667 192C426.6666666666667 97.7066666666667 350.2933333333334 21.3333333333334 256 21.3333333333334S85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667C272.2133333333333 362.6666666666667 288 360.32 302.9333333333333 356.0533333333334L336.4266666666666 389.5466666666667C311.68 399.7866666666667 284.5866666666667 405.3333333333333 256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192M168.7466666666667 232.96L138.6666666666667 202.6666666666667L234.6666666666667 106.6666666666667L448 320L417.92 350.2933333333334L234.6666666666667 167.04L168.7466666666667 232.96z" />
+    <glyph glyph-name="checkbox-marked-outline"
+      unicode="&#xF135;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H320V384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V213.3333333333334H405.3333333333333M168.7466666666667 232.96L138.6666666666667 202.6666666666667L234.6666666666667 106.6666666666667L448 320L417.92 350.2933333333334L234.6666666666667 167.04L168.7466666666667 232.96z" />
+    <glyph glyph-name="checkbox-multiple-blank"
+      unicode="&#xF136;"
+      horiz-adv-x="512" d=" M469.3333333333333 106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H170.6666666666667C146.9866666666667 64 128 83.2 128 106.6666666666667V362.6666666666667C128 386.3466666666667 146.9866666666667 405.3333333333333 170.6666666666667 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667M341.3333333333333 21.3333333333334V-21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V298.6666666666667H85.3333333333333V21.3333333333334H341.3333333333333z" />
+    <glyph glyph-name="checkbox-multiple-blank-circle"
+      unicode="&#xF63B;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333C204.3733333333333 405.3333333333333 128 328.9600000000001 128 234.6666666666667S204.3733333333333 64 298.6666666666667 64S469.3333333333333 140.3733333333333 469.3333333333333 234.6666666666667S392.9600000000001 405.3333333333333 298.6666666666667 405.3333333333333M105.1733333333333 323.8400000000001C65.7066666666667 291.4133333333334 42.6666666666667 242.9866666666667 42.6666666666667 192C42.6666666666667 97.7066666666667 119.04 21.3333333333334 213.3333333333333 21.3333333333334C226.9866666666667 21.3333333333334 240.4266666666667 23.04 253.44 26.24C215.8933333333333 34.5600000000001 181.3333333333333 53.3333333333334 152.96 79.1466666666667C111.36 101.3333333333334 85.3333333333333 144.8533333333334 85.3333333333333 192C85.3333333333333 198.4 85.9733333333333 204.5866666666667 86.8266666666667 210.9866666666667C85.9733333333333 218.88 85.3333333333333 226.7733333333334 85.3333333333333 234.6666666666667C85.3333333333333 265.3866666666667 92.16 295.8933333333333 105.1733333333333 323.8400000000001z" />
+    <glyph glyph-name="checkbox-multiple-blank-circle-outline"
+      unicode="&#xF63C;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333C204.3733333333333 405.3333333333333 128 328.9600000000001 128 234.6666666666667S204.3733333333333 64 298.6666666666667 64S469.3333333333333 140.3733333333333 469.3333333333333 234.6666666666667S392.9600000000001 405.3333333333333 298.6666666666667 405.3333333333333M298.6666666666667 362.6666666666667C369.4933333333334 362.6666666666667 426.6666666666667 305.2800000000001 426.6666666666667 234.6666666666667C426.6666666666667 163.84 369.4933333333334 106.6666666666667 298.6666666666667 106.6666666666667C228.0533333333333 106.6666666666667 170.6666666666667 164.0533333333334 170.6666666666667 234.6666666666667S228.0533333333333 362.6666666666667 298.6666666666667 362.6666666666667M105.1733333333333 323.8400000000001C65.7066666666667 291.4133333333334 42.6666666666667 242.9866666666667 42.6666666666667 192C42.6666666666667 97.7066666666667 119.04 21.3333333333334 213.3333333333333 21.3333333333334C226.9866666666667 21.3333333333334 240.4266666666667 23.04 253.44 26.24C215.8933333333333 34.5600000000001 181.3333333333333 53.3333333333334 152.96 79.1466666666667C111.36 101.3333333333334 85.3333333333333 144.8533333333334 85.3333333333333 192C85.3333333333333 198.4 85.9733333333333 204.5866666666667 86.8266666666667 210.9866666666667C85.9733333333333 218.88 85.3333333333333 226.7733333333334 85.3333333333333 234.6666666666667C85.3333333333333 265.3866666666667 92.16 295.8933333333333 105.1733333333333 323.8400000000001z" />
+    <glyph glyph-name="checkbox-multiple-blank-outline"
+      unicode="&#xF137;"
+      horiz-adv-x="512" d=" M426.6666666666667 106.6666666666667V362.6666666666667H170.6666666666667V106.6666666666667H426.6666666666667M469.3333333333333 106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H170.6666666666667C146.9866666666667 64 128 83.2 128 106.6666666666667V362.6666666666667C128 386.3466666666667 146.9866666666667 405.3333333333333 170.6666666666667 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667M341.3333333333333 21.3333333333334V-21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V298.6666666666667H85.3333333333333V21.3333333333334H341.3333333333333z" />
+    <glyph glyph-name="checkbox-multiple-marked"
+      unicode="&#xF138;"
+      horiz-adv-x="512" d=" M469.3333333333333 106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H170.6666666666667C146.9866666666667 64 128 83.2 128 106.6666666666667V362.6666666666667C128 386.3466666666667 146.9866666666667 405.3333333333333 170.6666666666667 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667M341.3333333333333 21.3333333333334V-21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V298.6666666666667H85.3333333333333V21.3333333333334H341.3333333333333M277.3333333333333 149.3333333333334L426.6666666666667 298.6666666666667L396.5866666666667 328.7466666666667L277.3333333333333 209.7066666666667L211.4133333333333 275.4133333333334L181.3333333333333 245.3333333333334L277.3333333333333 149.3333333333334z" />
+    <glyph glyph-name="checkbox-multiple-marked-circle"
+      unicode="&#xF63D;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333C204.3733333333333 405.3333333333333 128 328.9600000000001 128 234.6666666666667S204.3733333333333 64 298.6666666666667 64S469.3333333333333 140.3733333333333 469.3333333333333 234.6666666666667S392.9600000000001 405.3333333333333 298.6666666666667 405.3333333333333M105.1733333333333 323.8400000000001C65.7066666666667 291.4133333333334 42.6666666666667 242.9866666666667 42.6666666666667 192C42.6666666666667 97.7066666666667 119.04 21.3333333333334 213.3333333333333 21.3333333333334C226.9866666666667 21.3333333333334 240.4266666666667 23.04 253.44 26.24C215.8933333333333 34.5600000000001 181.3333333333333 53.3333333333334 152.96 79.1466666666667C111.36 101.3333333333334 85.3333333333333 144.8533333333334 85.3333333333333 192C85.3333333333333 198.4 85.9733333333333 204.5866666666667 86.8266666666667 210.9866666666667C85.9733333333333 218.88 85.3333333333333 226.7733333333334 85.3333333333333 234.6666666666667C85.3333333333333 265.3866666666667 92.16 295.8933333333333 105.1733333333333 323.8400000000001M385.92 318.2933333333334L416 288L277.3333333333333 149.3333333333334L196.48 230.1866666666667L226.7733333333334 260.48L277.3333333333333 209.7066666666667" />
+    <glyph glyph-name="checkbox-multiple-marked-circle-outline"
+      unicode="&#xF63E;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333C204.3733333333333 405.3333333333333 128 328.9600000000001 128 234.6666666666667S204.3733333333333 64 298.6666666666667 64S469.3333333333333 140.3733333333333 469.3333333333333 234.6666666666667H426.6666666666667C426.6666666666667 163.84 369.4933333333334 106.6666666666667 298.6666666666667 106.6666666666667C228.0533333333333 106.6666666666667 170.6666666666667 164.0533333333334 170.6666666666667 234.6666666666667S228.0533333333333 362.6666666666667 298.6666666666667 362.6666666666667C307.84 362.6666666666667 317.0133333333333 361.6 325.76 359.68L360.1066666666667 393.8133333333334C340.48 401.4933333333334 320 405.3333333333333 298.6666666666667 405.3333333333333M439.2533333333334 371.6266666666667L298.6666666666667 231.04L247.8933333333334 281.8133333333334L217.8133333333333 251.52L298.6666666666667 170.6666666666667L469.3333333333333 341.3333333333334M105.1733333333333 323.8400000000001C65.7066666666667 291.4133333333334 42.6666666666667 242.9866666666667 42.6666666666667 192C42.6666666666667 97.7066666666667 119.04 21.3333333333334 213.3333333333333 21.3333333333334C226.9866666666667 21.3333333333334 240.4266666666667 23.04 253.44 26.24C215.8933333333333 34.5600000000001 181.3333333333333 53.3333333333334 152.96 79.1466666666667C111.36 101.3333333333334 85.3333333333333 144.8533333333334 85.3333333333333 192C85.3333333333333 198.4 85.9733333333333 204.5866666666667 86.8266666666667 210.9866666666667C85.9733333333333 218.88 85.3333333333333 226.7733333333334 85.3333333333333 234.6666666666667C85.3333333333333 265.3866666666667 92.16 295.8933333333333 105.1733333333333 323.8400000000001z" />
+    <glyph glyph-name="checkbox-multiple-marked-outline"
+      unicode="&#xF139;"
+      horiz-adv-x="512" d=" M426.6666666666667 106.6666666666667V234.6666666666667H469.3333333333333V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H170.6666666666667C146.9866666666667 64 128 83.2 128 106.6666666666667V362.6666666666667C128 386.3466666666667 146.9866666666667 405.3333333333333 170.6666666666667 405.3333333333333H341.3333333333333V362.6666666666667H170.6666666666667V106.6666666666667H426.6666666666667M232.7466666666667 296.9600000000001L298.6666666666667 231.04L439.2533333333334 371.6266666666667L469.3333333333333 341.3333333333334L298.6666666666667 170.6666666666667L202.6666666666667 266.6666666666667L232.7466666666667 296.9600000000001M341.3333333333333 21.3333333333334V-21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V298.6666666666667H85.3333333333333V21.3333333333334H341.3333333333333z" />
+    <glyph glyph-name="checkerboard"
+      unicode="&#xF13A;"
+      horiz-adv-x="512" d=" M64 384H448V0H64V384M106.6666666666667 341.3333333333334V192H256V42.6666666666667H405.3333333333333V192H256V341.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="chef-hat"
+      unicode="&#xFB58;"
+      horiz-adv-x="512" d=" M266.6666666666667 416C228.9066666666667 416 195.6266666666667 391.04 184.96 354.7733333333333C173.6533333333333 359.8933333333333 161.7066666666667 362.6666666666667 149.3333333333333 362.6666666666667C102.1866666666667 362.6666666666667 64 324.48 64 277.3333333333334C64 238.5066666666667 90.4533333333333 204.5866666666667 128 194.7733333333333V42.6666666666667H405.3333333333333V194.7733333333333C442.88 204.5866666666667 469.3333333333333 238.5066666666667 469.3333333333333 277.3333333333334C469.3333333333333 324.48 431.1466666666667 362.6666666666667 384 362.6666666666667C371.6266666666667 362.6666666666667 359.68 359.8933333333333 348.3733333333333 354.7733333333333C337.7066666666666 391.04 304.4266666666666 416 266.6666666666667 416M256 224H277.3333333333333V74.6666666666667H256V224M192 181.3333333333334H213.3333333333333V74.6666666666667H192V181.3333333333334M320 181.3333333333334H341.3333333333333V74.6666666666667H320V181.3333333333334M128 21.3333333333334V0C128 -11.7333333333333 137.6 -21.3333333333333 149.3333333333333 -21.3333333333333H384C395.7333333333334 -21.3333333333333 405.3333333333333 -11.7333333333333 405.3333333333333 0V21.3333333333334H128z" />
+    <glyph glyph-name="chemical-weapon"
+      unicode="&#xF13B;"
+      horiz-adv-x="512" d=" M234.6666666666667 280.9600000000001C209.7066666666667 289.7066666666667 192 313.6 192 341.3333333333334C192 376.7466666666667 220.5866666666667 405.3333333333333 256 405.3333333333333S320 376.7466666666667 320 341.3333333333334C320 313.3866666666667 302.08 289.7066666666667 277.3333333333333 280.9600000000001V221.0133333333333C270.5066666666667 222.9333333333333 263.4666666666667 224 256 224S241.4933333333334 222.9333333333333 234.6666666666667 221.0133333333333V280.9600000000001M390.4 -2.1333333333333C366.08 11.7333333333333 354.56 38.8266666666667 359.2533333333334 64.8533333333334L307.2 94.9333333333333C317.44 104.7466666666667 325.12 117.3333333333334 328.5333333333333 131.84L380.5866666666667 101.76C400.64 119.04 430.08 122.4533333333334 454.1866666666666 108.5866666666667C484.9066666666666 90.8800000000001 495.36 51.84 477.6533333333333 21.3333333333334C459.9466666666667 -9.3866666666667 420.9066666666667 -19.84 390.4 -2.1333333333333M57.6 108.8C81.7066666666667 122.6666666666667 111.1466666666667 119.04 131.2 101.9733333333334L183.4666666666667 132.0533333333334C186.88 117.3333333333334 194.3466666666667 104.96 204.8 95.1466666666667L152.5333333333334 65.0666666666667C157.44 39.0400000000001 145.7066666666667 11.7333333333333 121.6 -2.1333333333333C90.88 -19.8399999999999 51.84 -9.3866666666666 34.1333333333334 21.3333333333334C16.4266666666667 51.8400000000001 26.88 91.0933333333334 57.6 108.8000000000001M298.6666666666667 149.3333333333334C298.6666666666667 125.8666666666667 279.4666666666667 106.6666666666667 256 106.6666666666667C232.32 106.6666666666667 213.3333333333333 125.8666666666667 213.3333333333333 149.3333333333334S232.5333333333334 192 256 192C279.68 192 298.6666666666667 172.8 298.6666666666667 149.3333333333334M362.6666666666667 149.3333333333334L362.0266666666667 137.1733333333334L330.6666666666667 155.52C328.5333333333333 178.3466666666667 316.3733333333333 198.1866666666667 298.6666666666667 210.7733333333333V247.2533333333334C336.4266666666666 230.6133333333334 362.6666666666667 193.0666666666667 362.6666666666667 149.3333333333334M319.36 63.36C301.6533333333333 50.3466666666667 279.68 42.6666666666667 256 42.6666666666667S210.3466666666666 50.3466666666667 192.64 64L224 81.7066666666667C233.8133333333334 77.2266666666666 244.6933333333334 74.6666666666667 256 74.6666666666667S277.9733333333333 77.2266666666667 288 81.7066666666667L319.36 63.36M149.9733333333333 137.3866666666667L149.3333333333333 149.3333333333334C149.3333333333333 193.0666666666667 175.5733333333333 230.6133333333334 213.3333333333333 247.04V210.56C195.6266666666667 198.1866666666667 183.4666666666667 178.3466666666667 181.3333333333333 155.7333333333334L149.9733333333333 137.3866666666667z" />
+    <glyph glyph-name="chess-bishop"
+      unicode="&#xF85B;"
+      horiz-adv-x="512" d=" M405.3333333333333 -21.3333333333333H106.6666666666667V21.3333333333334H405.3333333333333V-21.3333333333333M366.08 271.7866666666667C388.6933333333333 242.5600000000001 402.3466666666667 207.36 405.3333333333333 170.6666666666667C405.3333333333333 111.7866666666667 338.56 64 256 64S106.6666666666667 111.7866666666667 106.6666666666667 170.6666666666667C106.6666666666667 221.44 156.3733333333333 311.68 223.1466666666667 335.5733333333334C216.7466666666667 343.2533333333334 213.3333333333333 352.8533333333334 213.3333333333333 362.6666666666667C213.3333333333333 386.1333333333334 232.5333333333334 405.3333333333334 256 405.3333333333334S298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667C298.6666666666667 352.8533333333334 295.2533333333334 343.2533333333334 288.8533333333333 335.5733333333334C307.2 328.5333333333334 323.84 317.8666666666667 337.92 304.2133333333334L240.8533333333333 207.1466666666667L271.1466666666667 176.8533333333334L366.08 271.7866666666668z" />
+    <glyph glyph-name="chess-king"
+      unicode="&#xF856;"
+      horiz-adv-x="512" d=" M405.3333333333333 -21.3333333333333H106.6666666666667V21.3333333333334H405.3333333333333V-21.3333333333333M362.6666666666667 234.6666666666667C332.3733333333334 234.6666666666667 304.2133333333333 218.24 289.0666666666667 192H277.3333333333333V298.6666666666667H341.3333333333333V341.3333333333334H277.3333333333333V405.3333333333333H234.6666666666667V341.3333333333334H170.6666666666667V298.6666666666667H234.6666666666667V192H222.9333333333333C199.4666666666667 232.7466666666667 147.2 246.8266666666667 106.6666666666667 223.1466666666667C65.4933333333333 199.68 51.6266666666667 147.4133333333334 74.6666666666667 106.6666666666667C90.4533333333333 80.2133333333334 118.8266666666667 64 149.3333333333333 64H362.6666666666667C409.8133333333334 64 448 102.1866666666667 448 149.3333333333334S409.8133333333334 234.6666666666667 362.6666666666667 234.6666666666667z" />
+    <glyph glyph-name="chess-knight"
+      unicode="&#xF857;"
+      horiz-adv-x="512" d=" M405.3333333333333 -21.3333333333333H106.6666666666667V21.3333333333334H405.3333333333333V-21.3333333333333M277.3333333333333 405.3333333333333C250.6666666666667 405.3333333333333 225.7066666666667 392.1066666666667 210.9866666666667 369.92L149.3333333333333 277.3333333333334L192 234.6666666666667L235.9466666666667 263.8933333333334C245.3333333333333 270.5066666666667 258.9866666666667 267.9466666666667 265.6 258.1333333333334C266.0266666666667 257.4933333333334 266.6666666666667 256.8533333333334 266.6666666666667 256.0000000000001C273.0666666666667 243.4133333333334 270.7200000000001 228.2666666666667 260.6933333333334 218.2400000000001L158.2933333333334 115.8400000000001C146.5600000000001 103.8933333333334 146.5600000000001 84.6933333333334 158.5066666666667 72.96C164.0533333333334 67.4133333333334 171.7333333333334 64 179.6266666666667 64H362.6666666666667V320C362.6666666666667 367.1466666666667 324.48 405.3333333333333 277.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="chess-pawn"
+      unicode="&#xF858;"
+      horiz-adv-x="512" d=" M405.3333333333333 -21.3333333333333H106.6666666666667V21.3333333333334H405.3333333333333V-21.3333333333333M341.3333333333333 64L281.6 282.88C314.0266666666667 297.1733333333334 328.7466666666667 334.7200000000001 314.4533333333333 367.1466666666667C300.3733333333333 399.5733333333333 262.6133333333333 414.2933333333334 230.1866666666667 400C197.76 385.92 183.04 348.1600000000001 197.3333333333333 315.7333333333334C203.7333333333334 301.0133333333333 215.4666666666667 289.28 230.1866666666667 282.88L170.6666666666667 64H341.3333333333333z" />
+    <glyph glyph-name="chess-queen"
+      unicode="&#xF859;"
+      horiz-adv-x="512" d=" M384 384C407.4666666666667 384 426.6666666666667 364.8 426.6666666666667 341.3333333333334C426.6666666666667 324.0533333333334 416 309.3333333333334 401.7066666666666 302.5066666666667L362.6666666666667 167.4666666666667V64H149.3333333333333V167.4666666666667L110.2933333333333 302.5066666666667C96 309.3333333333334 85.3333333333333 324.0533333333334 85.3333333333333 341.3333333333334C85.3333333333333 364.8 104.5333333333333 384 128 384S170.6666666666667 364.8 170.6666666666667 341.3333333333334C170.6666666666667 330.6666666666667 166.8266666666667 321.0666666666667 160 313.6L219.7333333333334 248.5333333333334L231.04 328.1066666666667C220.3733333333333 335.7866666666667 213.3333333333333 348.3733333333334 213.3333333333333 362.6666666666667C213.3333333333333 386.1333333333334 232.5333333333334 405.3333333333333 256 405.3333333333333S298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667C298.6666666666667 348.3733333333334 291.6266666666667 335.7866666666667 280.96 328.1066666666667L292.2666666666667 248.5333333333334L351.36 313.8133333333334C345.1733333333333 321.28 341.3333333333333 330.6666666666667 341.3333333333333 341.3333333333334C341.3333333333333 364.8 360.5333333333333 384 384 384M106.6666666666667 21.3333333333334H405.3333333333333V-21.3333333333333H106.6666666666667V21.3333333333334z" />
+    <glyph glyph-name="chess-rook"
+      unicode="&#xF85A;"
+      horiz-adv-x="512" d=" M106.6666666666667 21.3333333333334H405.3333333333333V-21.3333333333333H106.6666666666667V21.3333333333334M362.6666666666667 405.3333333333333V341.3333333333334H320V405.3333333333333H277.3333333333333V341.3333333333334H234.6666666666667V405.3333333333333H192V341.3333333333334H149.3333333333333V405.3333333333333H106.6666666666667V277.3333333333334H149.3333333333333V64H362.6666666666667V277.3333333333334H405.3333333333333V405.3333333333333H362.6666666666667z" />
+    <glyph glyph-name="chevron-double-down"
+      unicode="&#xF13C;"
+      horiz-adv-x="512" d=" M353.92 328.7466666666667L384 298.6666666666667L256 170.6666666666667L128 298.6666666666667L158.08 328.7466666666667L256 231.04L353.92 328.7466666666667M353.92 200.7466666666667L384 170.6666666666667L256 42.6666666666667L128 170.6666666666667L158.08 200.7466666666667L256 103.04L353.92 200.7466666666667z" />
+    <glyph glyph-name="chevron-double-left"
+      unicode="&#xF13D;"
+      horiz-adv-x="512" d=" M392.7466666666667 289.92L362.6666666666667 320L234.6666666666667 192L362.6666666666667 64L392.7466666666667 94.08L295.04 192L392.7466666666667 289.92M264.7466666666667 289.92L234.6666666666667 320L106.6666666666667 192L234.6666666666667 64L264.7466666666667 94.08L167.04 192L264.7466666666667 289.92z" />
+    <glyph glyph-name="chevron-double-right"
+      unicode="&#xF13E;"
+      horiz-adv-x="512" d=" M119.2533333333333 289.92L149.3333333333333 320L277.3333333333333 192L149.3333333333333 64L119.2533333333333 94.08L216.96 192L119.2533333333333 289.92M247.2533333333334 289.92L277.3333333333333 320L405.3333333333333 192L277.3333333333333 64L247.2533333333334 94.08L344.9600000000001 192L247.2533333333334 289.92z" />
+    <glyph glyph-name="chevron-double-up"
+      unicode="&#xF13F;"
+      horiz-adv-x="512" d=" M158.08 55.2533333333333L128 85.3333333333334L256 213.3333333333334L384 85.3333333333334L353.92 55.2533333333333L256 152.96L158.08 55.2533333333333M158.08 183.2533333333333L128 213.3333333333334L256 341.3333333333334L384 213.3333333333334L353.92 183.2533333333333L256 280.9600000000001L158.08 183.2533333333333z" />
+    <glyph glyph-name="chevron-down"
+      unicode="&#xF140;"
+      horiz-adv-x="512" d=" M158.08 264.9600000000001L256 167.04L353.92 264.9600000000001L384 234.6666666666667L256 106.6666666666667L128 234.6666666666667L158.08 264.9600000000001z" />
+    <glyph glyph-name="chevron-down-box"
+      unicode="&#xF9D5;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 18.9866666666667 83.2 0 106.6666666666667 0H405.3333333333333C429.0133333333333 0 448 18.9866666666667 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M256 112.8533333333334L128 240.8533333333333L158.08 271.1466666666667L256 173.2266666666667L353.92 271.1466666666667L384 240.8533333333333L256 112.8533333333334z" />
+    <glyph glyph-name="chevron-down-box-outline"
+      unicode="&#xF9D6;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 18.9866666666667 83.2 0 106.6666666666667 0H405.3333333333333C429.0133333333333 0 448 18.9866666666667 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333V42.6666666666667M158.08 271.1466666666667L256 173.2266666666667L353.92 271.1466666666667L384 240.8533333333333L256 112.8533333333334L128 240.8533333333333L158.08 271.1466666666667z" />
+    <glyph glyph-name="chevron-down-circle"
+      unicode="&#xFB0B;"
+      horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M128 234.6666666666667L256 106.6666666666667L384 234.6666666666667L354.1333333333334 264.5333333333334L256 166.4L157.8666666666667 264.5333333333334L128 234.6666666666667z" />
+    <glyph glyph-name="chevron-down-circle-outline"
+      unicode="&#xFB0C;"
+      horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192M128 234.6666666666667L256 106.6666666666667L384 234.6666666666667L354.1333333333334 264.5333333333334L256 166.4L157.8666666666667 264.5333333333334L128 234.6666666666667z" />
+    <glyph glyph-name="chevron-left"
+      unicode="&#xF141;"
+      horiz-adv-x="512" d=" M328.7466666666667 94.2933333333334L231.04 192L328.7466666666667 289.92L298.6666666666667 320L170.6666666666667 192L298.6666666666667 64L328.7466666666667 94.2933333333334z" />
+    <glyph glyph-name="chevron-left-box"
+      unicode="&#xF9D7;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 18.9866666666667 83.2 0 106.6666666666667 0H405.3333333333333C429.0133333333333 0 448 18.9866666666667 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M335.1466666666667 94.08L304.8533333333333 64L176.8533333333333 192L304.8533333333333 320L335.1466666666667 289.92L237.2266666666667 192L335.1466666666667 94.08z" />
+    <glyph glyph-name="chevron-left-box-outline"
+      unicode="&#xF9D8;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 18.9866666666667 83.2 0 106.6666666666667 0H405.3333333333333C429.0133333333333 0 448 18.9866666666667 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333V42.6666666666667M335.1466666666667 289.92L237.2266666666667 192L335.1466666666667 94.08L304.8533333333333 64L176.8533333333333 192L304.8533333333333 320L335.1466666666667 289.92z" />
+    <glyph glyph-name="chevron-left-circle"
+      unicode="&#xFB0D;"
+      horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M328.5333333333333 93.8666666666667L230.4 192L328.5333333333333 290.1333333333334L298.6666666666667 320L170.6666666666667 192L298.6666666666667 64L328.5333333333333 93.8666666666667z" />
+    <glyph glyph-name="chevron-left-circle-outline"
+      unicode="&#xFB0E;"
+      horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192M328.5333333333333 93.8666666666667L230.4 192L328.5333333333333 290.1333333333334L298.6666666666667 320L170.6666666666667 192L298.6666666666667 64L328.5333333333333 93.8666666666667z" />
+    <glyph glyph-name="chevron-right"
+      unicode="&#xF142;"
+      horiz-adv-x="512" d=" M183.2533333333333 94.2933333333334L280.96 192L183.2533333333333 289.92L213.3333333333333 320L341.3333333333333 192L213.3333333333333 64L183.2533333333333 94.2933333333334z" />
+    <glyph glyph-name="chevron-right-box"
+      unicode="&#xF9D9;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 18.9866666666667 83.2 0 106.6666666666667 0H405.3333333333333C429.0133333333333 0 448 18.9866666666667 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M207.1466666666667 64L176.8533333333334 94.08L274.7733333333333 192L176.8533333333333 289.92L207.1466666666667 320L335.1466666666667 192L207.1466666666667 64z" />
+    <glyph glyph-name="chevron-right-box-outline"
+      unicode="&#xF9DA;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 18.9866666666667 83.2 0 106.6666666666667 0H405.3333333333333C429.0133333333333 0 448 18.9866666666667 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333V42.6666666666667M176.8533333333333 94.08L274.7733333333333 192L176.8533333333333 289.92L207.1466666666667 320L335.1466666666667 192L207.1466666666667 64L176.8533333333334 94.08z" />
+    <glyph glyph-name="chevron-right-circle"
+      unicode="&#xFB0F;"
+      horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M213.3333333333333 64L341.3333333333333 192L213.3333333333333 320L183.4666666666667 290.1333333333334L281.6 192L183.4666666666667 93.8666666666667L213.3333333333333 64z" />
+    <glyph glyph-name="chevron-right-circle-outline"
+      unicode="&#xFB10;"
+      horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192M183.4666666666667 93.8666666666667L281.6 192L183.4666666666667 290.1333333333334L213.3333333333333 320L341.3333333333333 192L213.3333333333333 64L183.4666666666667 93.8666666666667z" />
+    <glyph glyph-name="chevron-up"
+      unicode="&#xF143;"
+      horiz-adv-x="512" d=" M158.08 119.2533333333333L256 216.96L353.92 119.2533333333333L384 149.3333333333334L256 277.3333333333334L128 149.3333333333334L158.08 119.2533333333333z" />
+    <glyph glyph-name="chevron-up-box"
+      unicode="&#xF9DB;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 18.9866666666667 83.2 0 106.6666666666667 0H405.3333333333333C429.0133333333333 0 448 18.9866666666667 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M353.92 112.8533333333334L256 210.7733333333334L158.08 112.8533333333334L128 143.1466666666667L256 271.1466666666667L384 143.1466666666667L353.92 112.8533333333334z" />
+    <glyph glyph-name="chevron-up-box-outline"
+      unicode="&#xF9DC;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 18.9866666666667 83.2 0 106.6666666666667 0H405.3333333333333C429.0133333333333 0 448 18.9866666666667 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333V42.6666666666667M353.92 112.8533333333334L256 210.7733333333334L158.08 112.8533333333334L128 143.1466666666667L256 271.1466666666667L384 143.1466666666667L353.92 112.8533333333334z" />
+    <glyph glyph-name="chevron-up-circle"
+      unicode="&#xFB11;"
+      horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M157.8666666666667 119.4666666666667L256 217.6L354.1333333333334 119.4666666666667L384 149.3333333333334L256 277.3333333333334L128 149.3333333333334L157.8666666666667 119.4666666666667z" />
+    <glyph glyph-name="chevron-up-circle-outline"
+      unicode="&#xFB12;"
+      horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192M157.8666666666667 119.4666666666667L256 217.6L354.1333333333334 119.4666666666667L384 149.3333333333334L256 277.3333333333334L128 149.3333333333334L157.8666666666667 119.4666666666667z" />
+    <glyph glyph-name="chili-hot"
+      unicode="&#xF7B1;"
+      horiz-adv-x="512" d=" M378.6666666666667 256L404.2666666666667 272.2133333333334C417.7066666666666 264.9600000000001 426.6666666666667 250.88 426.6666666666667 234.6666666666667V-16S256 21.3333333333334 256 213.3333333333334V234.6666666666667C256 250.24 264.32 263.8933333333334 276.6933333333334 271.36L307.84 256L341.3333333333333 277.3333333333334L378.6666666666667 256M298.6666666666667 405.3333333333333C331.3066666666666 405.3333333333333 358.4 380.8 362.6666666666667 349.0133333333333C384 342.8266666666667 401.28 327.04 410.0266666666667 306.56L378.6666666666667 288L341.3333333333333 309.3333333333333L307.84 288L272.2133333333333 305.7066666666667C280.5333333333333 325.9733333333334 297.6 341.3333333333333 318.72 348.5866666666667C315.7333333333334 356.6933333333334 307.84 362.6666666666667 298.6666666666667 362.6666666666667V405.3333333333333M213.3333333333333 234.6666666666667C213.3333333333333 64 290.7733333333333 24.7466666666667 341.3333333333333 -16C341.3333333333333 -16 170.6666666666667 21.3333333333334 170.6666666666667 213.3333333333334V234.6666666666667C170.6666666666667 250.24 178.9866666666667 263.8933333333334 191.36 271.36L219.7333333333334 257.2800000000001C215.68 250.6666666666667 213.3333333333333 242.9866666666667 213.3333333333333 234.6666666666667M222.5066666666667 288L186.88 305.7066666666667C195.2 325.9733333333334 212.2666666666667 341.3333333333334 233.3866666666667 348.5866666666667C230.4 356.6933333333334 222.5066666666667 362.6666666666667 213.3333333333333 362.6666666666667V405.3333333333333C229.76 405.3333333333333 244.6933333333334 399.1466666666667 256 389.12V362.6666666666667C265.1733333333333 362.6666666666667 273.0666666666667 356.6933333333334 276.0533333333333 348.5866666666667C254.9333333333333 341.3333333333334 237.8666666666666 325.9733333333334 222.5066666666667 288M128 234.6666666666667C128 64 205.44 24.7466666666667 256 -16C256 -16 85.3333333333333 21.3333333333334 85.3333333333333 213.3333333333334V234.6666666666667C85.3333333333333 250.24 93.6533333333333 263.8933333333334 106.0266666666667 271.36L134.4 257.2800000000001C130.3466666666666 250.6666666666667 128 242.9866666666667 128 234.6666666666667M137.1733333333333 288L101.5466666666667 305.7066666666667C109.8666666666667 325.9733333333334 126.9333333333333 341.3333333333334 148.0533333333334 348.5866666666667C145.0666666666667 356.6933333333334 137.1733333333333 362.6666666666667 128 362.6666666666667V405.3333333333333C144.4266666666667 405.3333333333333 159.36 399.1466666666667 170.6666666666667 389.12V362.6666666666667C179.84 362.6666666666667 187.7333333333334 356.6933333333334 190.72 348.5866666666667C169.6 341.3333333333334 152.5333333333333 325.9733333333334 137.1733333333333 288z" />
+    <glyph glyph-name="chili-medium"
+      unicode="&#xF7B2;"
+      horiz-adv-x="512" d=" M336 256L361.6 272.2133333333334C375.04 264.9600000000001 384 250.88 384 234.6666666666667V-16S213.3333333333333 21.3333333333334 213.3333333333333 213.3333333333334V234.6666666666667C213.3333333333333 250.24 221.6533333333333 263.8933333333334 234.0266666666667 271.36L265.1733333333333 256L298.6666666666667 277.3333333333334L336 256M256 405.3333333333333C288.64 405.3333333333333 315.7333333333334 380.8 320 349.0133333333333C341.3333333333333 342.8266666666667 358.6133333333333 327.04 367.36 306.56L336 288L298.6666666666667 309.3333333333333L265.1733333333333 288L229.5466666666666 305.7066666666667C237.8666666666666 325.9733333333334 254.9333333333333 341.3333333333333 276.0533333333333 348.5866666666667C273.0666666666667 356.6933333333334 265.1733333333333 362.6666666666667 256 362.6666666666667V405.3333333333333M170.6666666666667 234.6666666666667C170.6666666666667 64 248.1066666666667 24.7466666666667 298.6666666666667 -16C298.6666666666667 -16 128 21.3333333333334 128 213.3333333333334V234.6666666666667C128 250.24 136.32 263.8933333333334 148.6933333333333 271.36L177.0666666666667 257.2800000000001C173.0133333333334 250.6666666666667 170.6666666666667 242.9866666666667 170.6666666666667 234.6666666666667M179.84 288L144.2133333333333 305.7066666666667C152.5333333333333 325.9733333333334 169.6 341.3333333333334 190.72 348.5866666666667C187.7333333333334 356.6933333333334 179.84 362.6666666666667 170.6666666666667 362.6666666666667V405.3333333333333C187.0933333333333 405.3333333333333 202.0266666666667 399.1466666666667 213.3333333333333 389.12V362.6666666666667C222.5066666666667 362.6666666666667 230.4 356.6933333333334 233.3866666666667 348.5866666666667C212.2666666666667 341.3333333333334 195.2 325.9733333333334 179.84 288z" />
+    <glyph glyph-name="chili-mild"
+      unicode="&#xF7B3;"
+      horiz-adv-x="512" d=" M293.3333333333333 256L318.9333333333333 272.2133333333334C332.3733333333334 264.9600000000001 341.3333333333333 250.88 341.3333333333333 234.6666666666667V-16S170.6666666666667 21.3333333333334 170.6666666666667 213.3333333333334V234.6666666666667C170.6666666666667 250.24 178.9866666666667 263.8933333333334 191.36 271.36L222.5066666666667 256L256 277.3333333333334L293.3333333333333 256M213.3333333333333 405.3333333333333C245.9733333333333 405.3333333333333 273.0666666666667 380.8 277.3333333333333 349.0133333333333C298.6666666666667 342.8266666666667 315.9466666666667 327.04 324.6933333333334 306.56L293.3333333333333 288L256 309.3333333333333L222.5066666666667 288L186.88 305.7066666666667C195.2 325.9733333333334 212.2666666666667 341.3333333333333 233.3866666666667 348.5866666666667C230.4 356.6933333333334 222.5066666666667 362.6666666666667 213.3333333333333 362.6666666666667V405.3333333333333z" />
+    <glyph glyph-name="chip"
+      unicode="&#xF61A;"
+      horiz-adv-x="512" d=" M128 362.6666666666667H384V341.3333333333334H448V298.6666666666667H384V256H448V213.3333333333334H384V170.6666666666667H448V128H384V85.3333333333334H448V42.6666666666667H384V21.3333333333334H128V42.6666666666667H64V85.3333333333334H128V128H64V170.6666666666667H128V213.3333333333334H64V256H128V298.6666666666667H64V341.3333333333334H128V362.6666666666667M234.6666666666667 128V64H256V128H234.6666666666667M277.3333333333333 128V64H298.6666666666667V128H277.3333333333333M320 128V64H341.3333333333333V128H320z" />
+    <glyph glyph-name="christianity"
+      unicode="&#xF952;"
+      horiz-adv-x="512" d=" M224 405.3333333333333H288V277.3333333333334H405.3333333333333V213.3333333333334H288V-21.3333333333333H224V213.3333333333334H106.6666666666667V277.3333333333334H224V405.3333333333333z" />
+    <glyph glyph-name="church"
+      unicode="&#xF144;"
+      horiz-adv-x="512" d=" M234.6666666666667 405.3333333333333H277.3333333333333V362.6666666666667H320V320H277.3333333333333V247.4666666666667L469.3333333333333 170.6666666666667V128L426.6666666666667 145.0666666666667V-21.3333333333333H298.6666666666667V85.3333333333334C298.6666666666667 108.8 279.4666666666667 128 256 128S213.3333333333333 108.8 213.3333333333333 85.3333333333334V-21.3333333333333H85.3333333333333V145.0666666666667L42.6666666666667 128V170.6666666666667L234.6666666666667 247.4666666666667V320H192V362.6666666666667H234.6666666666667V405.3333333333333M128 21.3333333333334H170.6666666666667V128L149.3333333333333 149.3333333333334L128 128V21.3333333333334M341.3333333333333 21.3333333333334H384V128L362.6666666666667 149.3333333333334L341.3333333333333 128V21.3333333333334z" />
+    <glyph glyph-name="circle"
+      unicode="&#xF764;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="circle-edit-outline"
+      unicode="&#xF8D4;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192H426.6666666666667C426.6666666666667 97.7066666666667 350.2933333333334 21.3333333333334 256 21.3333333333334S85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667V405.3333333333333M400.64 384C397.0133333333333 384 393.1733333333333 382.5066666666667 390.4 379.7333333333334L364.3733333333334 353.92L417.7066666666667 300.5866666666667L443.7333333333334 326.4C449.2800000000001 331.9466666666667 449.2800000000001 341.3333333333334 443.7333333333334 346.6666666666667L410.6666666666667 379.7333333333334C407.8933333333333 382.5066666666667 404.2666666666667 384 400.64 384M349.2266666666667 338.7733333333333L192 181.3333333333334V128H245.3333333333333L402.56 285.44L349.2266666666667 338.7733333333333z" />
+    <glyph glyph-name="circle-medium"
+      unicode="&#xF9DD;"
+      horiz-adv-x="512" d=" M256 277.3333333333334C208.8533333333333 277.3333333333334 170.6666666666667 239.1466666666667 170.6666666666667 192S208.8533333333333 106.6666666666667 256 106.6666666666667S341.3333333333333 144.8533333333334 341.3333333333333 192S303.1466666666667 277.3333333333334 256 277.3333333333334z" />
+    <glyph glyph-name="circle-outline"
+      unicode="&#xF765;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="circle-slice-1"
+      unicode="&#xFA9D;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M360.5333333333333 296.5333333333334L256 192V341.3333333333334C296.5333333333333 341.3333333333334 334.9333333333333 324.2666666666667 360.5333333333333 296.5333333333334z" />
+    <glyph glyph-name="circle-slice-2"
+      unicode="&#xFA9E;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M405.3333333333333 192H256V341.3333333333334C296.5333333333333 341.3333333333334 332.8 322.1333333333334 360.5333333333333 296.5333333333334C388.2666666666667 270.9333333333334 405.3333333333333 232.5333333333334 405.3333333333333 192z" />
+    <glyph glyph-name="circle-slice-3"
+      unicode="&#xFA9F;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M360.5333333333333 87.4666666666667L256 192V341.3333333333334C296.5333333333333 341.3333333333334 332.8 322.1333333333334 360.5333333333333 296.5333333333334C388.2666666666667 270.9333333333334 405.3333333333333 232.5333333333334 405.3333333333333 192C405.3333333333333 151.4666666666667 388.2666666666667 115.2000000000001 360.5333333333333 87.4666666666667z" />
+    <glyph glyph-name="circle-slice-4"
+      unicode="&#xFAA0;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M360.5333333333333 296.5333333333334C388.2666666666667 270.9333333333334 405.3333333333333 232.5333333333334 405.3333333333333 192C405.3333333333333 151.4666666666667 386.1333333333334 115.2000000000001 360.5333333333333 87.4666666666667C334.9333333333333 59.7333333333334 296.5333333333333 42.6666666666667 256 42.6666666666667V341.3333333333334C296.5333333333333 341.3333333333334 334.9333333333333 324.2666666666667 360.5333333333333 296.5333333333334z" />
+    <glyph glyph-name="circle-slice-5"
+      unicode="&#xFAA1;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M360.5333333333333 296.5333333333334C388.2666666666667 270.9333333333334 405.3333333333333 232.5333333333334 405.3333333333333 192C405.3333333333333 151.4666666666667 386.1333333333334 115.2000000000001 360.5333333333333 87.4666666666667C334.9333333333333 59.7333333333334 296.5333333333333 42.6666666666667 256 42.6666666666667C215.4666666666666 42.6666666666667 179.2 59.7333333333334 151.4666666666666 87.4666666666667L256 192V341.3333333333334C296.5333333333333 341.3333333333334 334.9333333333333 324.2666666666667 360.5333333333333 296.5333333333334z" />
+    <glyph glyph-name="circle-slice-6"
+      unicode="&#xFAA2;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M360.5333333333333 296.5333333333334C388.2666666666667 270.9333333333334 405.3333333333333 232.5333333333334 405.3333333333333 192C405.3333333333333 151.4666666666667 386.1333333333334 115.2000000000001 360.5333333333333 87.4666666666667C334.9333333333333 59.7333333333334 296.5333333333333 42.6666666666667 256 42.6666666666667C215.4666666666666 42.6666666666667 179.2 61.8666666666667 151.4666666666666 87.4666666666667C123.7333333333333 113.0666666666667 106.6666666666667 151.4666666666667 106.6666666666667 192H256V341.3333333333334C296.5333333333333 341.3333333333334 334.9333333333333 324.2666666666667 360.5333333333333 296.5333333333334z" />
+    <glyph glyph-name="circle-slice-7"
+      unicode="&#xFAA3;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M360.5333333333333 296.5333333333334C388.2666666666667 270.9333333333334 405.3333333333333 232.5333333333334 405.3333333333333 192C405.3333333333333 151.4666666666667 386.1333333333334 115.2000000000001 360.5333333333333 87.4666666666667C334.9333333333333 59.7333333333334 296.5333333333333 42.6666666666667 256 42.6666666666667C215.4666666666666 42.6666666666667 179.2 61.8666666666667 151.4666666666666 87.4666666666667C123.7333333333333 113.0666666666667 106.6666666666667 151.4666666666667 106.6666666666667 192C106.6666666666667 232.5333333333334 123.7333333333333 270.9333333333334 151.4666666666667 296.5333333333334L256 192V341.3333333333334C296.5333333333333 341.3333333333334 334.9333333333333 324.2666666666667 360.5333333333333 296.5333333333334z" />
+    <glyph glyph-name="circle-slice-8"
+      unicode="&#xFAA4;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M256 42.6666666666667C215.4666666666667 42.6666666666667 177.0666666666667 59.7333333333334 151.4666666666667 87.4666666666667C125.8666666666667 115.2000000000001 106.6666666666667 151.4666666666667 106.6666666666667 192C106.6666666666667 232.5333333333334 123.7333333333333 270.9333333333334 151.4666666666667 296.5333333333334C179.2 322.1333333333334 215.4666666666667 341.3333333333334 256 341.3333333333334C296.5333333333333 341.3333333333334 334.9333333333333 324.2666666666667 360.5333333333333 296.5333333333334C386.1333333333333 268.8 405.3333333333333 232.5333333333334 405.3333333333333 192C405.3333333333333 151.4666666666667 388.2666666666667 113.0666666666667 360.5333333333333 87.4666666666667C332.8 61.8666666666667 296.5333333333333 42.6666666666667 256 42.6666666666667z" />
+    <glyph glyph-name="circle-small"
+      unicode="&#xF9DE;"
+      horiz-adv-x="512" d=" M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192C213.3333333333333 168.3200000000001 232.5333333333334 149.3333333333334 256 149.3333333333334C279.68 149.3333333333334 298.6666666666667 168.3200000000001 298.6666666666667 192C298.6666666666667 215.4666666666667 279.4666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="cisco-webex"
+      unicode="&#xF145;"
+      horiz-adv-x="512" d=" M256 384C362.0266666666667 384 448 298.0266666666667 448 192S362.0266666666667 0 256 0S64 85.9733333333334 64 192S149.9733333333333 384 256 384M126.72 266.6666666666667C85.3333333333333 195.2 109.8666666666667 103.8933333333334 181.3333333333333 62.72C252.8 21.3333333333334 402.1333333333334 280.1066666666667 330.6666666666667 321.2800000000001C259.2 362.6666666666667 167.8933333333333 338.1333333333334 126.72 266.6666666666667z" />
+    <glyph glyph-name="city"
+      unicode="&#xF146;"
+      horiz-adv-x="512" d=" M405.3333333333333 128H362.6666666666667V170.6666666666667H405.3333333333333M405.3333333333333 42.6666666666667H362.6666666666667V85.3333333333334H405.3333333333333M277.3333333333333 298.6666666666667H234.6666666666667V341.3333333333334H277.3333333333333M277.3333333333333 213.3333333333334H234.6666666666667V256H277.3333333333333M277.3333333333333 128H234.6666666666667V170.6666666666667H277.3333333333333M277.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H277.3333333333333M149.3333333333333 213.3333333333334H106.6666666666667V256H149.3333333333333M149.3333333333333 128H106.6666666666667V170.6666666666667H149.3333333333333M149.3333333333333 42.6666666666667H106.6666666666667V85.3333333333334H149.3333333333333M320 213.3333333333334V341.3333333333334L256 405.3333333333333L192 341.3333333333334V298.6666666666667H64V0H448V213.3333333333334H320z" />
+    <glyph glyph-name="city-variant"
+      unicode="&#xFA35;"
+      horiz-adv-x="512" d=" M405.3333333333333 256V298.6666666666667C405.3333333333333 322.1333333333334 386.1333333333334 341.3333333333334 362.6666666666667 341.3333333333334H341.3333333333333V405.3333333333333H298.6666666666667V341.3333333333334H277.3333333333333C253.8666666666667 341.3333333333334 234.6666666666667 322.1333333333334 234.6666666666667 298.6666666666667V256C211.2 256 192 236.8 192 213.3333333333334V192H106.6666666666667C83.2 192 64 172.8 64 149.3333333333334V-21.3333333333333H128V21.3333333333334H170.6666666666667V-21.3333333333333H256V21.3333333333334H298.6666666666667V-21.3333333333333H341.3333333333333V21.3333333333334H384V-21.3333333333333H448V213.3333333333334C448 236.8 428.8 256 405.3333333333333 256M170.6666666666667 64H128V106.6666666666667H170.6666666666667V64M298.6666666666667 64H256V106.6666666666667H298.6666666666667V64M298.6666666666667 149.3333333333334H256V192H298.6666666666667V149.3333333333334M277.3333333333333 256V298.6666666666667H362.6666666666667V256H277.3333333333333M384 64H341.3333333333333V106.6666666666667H384V64M384 149.3333333333334H341.3333333333333V192H384V149.3333333333334z" />
+    <glyph glyph-name="city-variant-outline"
+      unicode="&#xFA36;"
+      horiz-adv-x="512" d=" M320 -42.6666666666666H277.3333333333333V0H320V-42.6666666666666M405.3333333333333 0H362.6666666666667V-42.6666666666666H405.3333333333333V0M320 85.3333333333334H277.3333333333333V42.6666666666667H320V85.3333333333334M149.3333333333333 0H106.6666666666667V-42.6666666666666H149.3333333333333V0M149.3333333333333 85.3333333333334H106.6666666666667V42.6666666666667H149.3333333333333V85.3333333333334M405.3333333333333 85.3333333333334H362.6666666666667V42.6666666666667H405.3333333333333V85.3333333333334M320 170.6666666666667H277.3333333333333V128H320V170.6666666666667M405.3333333333333 170.6666666666667H362.6666666666667V128H405.3333333333333V170.6666666666667M448 256C471.4666666666667 256 490.6666666666666 236.8 490.6666666666666 213.3333333333334V-42.6666666666666H448V213.3333333333334H234.6666666666667V-42.6666666666666H192V128H64V-42.6666666666666H21.3333333333333V128C21.3333333333333 151.4666666666667 40.5333333333333 170.6666666666667 64 170.6666666666667H192V213.3333333333334C192 236.8 211.2 256 234.6666666666667 256V298.6666666666667C234.6666666666667 322.1333333333334 253.8666666666667 341.3333333333334 277.3333333333333 341.3333333333334H320V426.6666666666667H362.6666666666667V341.3333333333334H405.3333333333333C428.8 341.3333333333334 448 322.1333333333334 448 298.6666666666667V256M405.3333333333333 256V298.6666666666667H277.3333333333333V256H405.3333333333333z" />
+    <glyph glyph-name="clipboard"
+      unicode="&#xF147;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384" />
+    <glyph glyph-name="clipboard-account"
+      unicode="&#xF148;"
+      horiz-adv-x="512" d=" M384 42.6666666666667H128V72.5333333333333C128 115.2 213.3333333333333 138.6666666666666 256 138.6666666666666S384 115.2 384 72.5333333333333M256 298.6666666666667C291.4133333333333 298.6666666666667 320 270.0800000000001 320 234.6666666666667S291.4133333333333 170.6666666666667 256 170.6666666666667S192 199.2533333333333 192 234.6666666666667S220.5866666666667 298.6666666666667 256 298.6666666666667M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="clipboard-alert"
+      unicode="&#xF149;"
+      horiz-adv-x="512" d=" M256 341.3333333333334C244.2666666666667 341.3333333333334 234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384S277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334M277.3333333333333 149.3333333333334H234.6666666666667V277.3333333333334H277.3333333333333M277.3333333333333 64H234.6666666666667V106.6666666666667H277.3333333333333M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="clipboard-arrow-down"
+      unicode="&#xF14A;"
+      horiz-adv-x="512" d=" M256 64L149.3333333333333 170.6666666666667H213.3333333333333V256H298.6666666666667V170.6666666666667H362.6666666666667M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="clipboard-arrow-left"
+      unicode="&#xF14B;"
+      horiz-adv-x="512" d=" M341.3333333333333 128H256V64L149.3333333333333 170.6666666666667L256 277.3333333333334V213.3333333333334H341.3333333333333M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="clipboard-check"
+      unicode="&#xF14C;"
+      horiz-adv-x="512" d=" M213.3333333333333 85.3333333333334L128 170.6666666666667L158.08 200.7466666666667L213.3333333333333 145.7066666666667L353.92 286.2933333333334L384 256M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="clipboard-check-outline"
+      unicode="&#xF8A7;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M149.3333333333333 298.6666666666667H362.6666666666667V341.3333333333334H405.3333333333333V42.6666666666667H106.6666666666667V341.3333333333334H149.3333333333333V298.6666666666667M160 160L192 192L234.6666666666667 149.3333333333334L330.6666666666667 245.3333333333334L362.6666666666667 213.3333333333334L234.6666666666667 85.3333333333334L160 160z" />
+    <glyph glyph-name="clipboard-flow"
+      unicode="&#xF6C7;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M320 42.6666666666667L234.6666666666667 128H298.6666666666667V277.3333333333334H341.3333333333333V128H405.3333333333333L320 42.6666666666667M213.3333333333333 106.6666666666667H170.6666666666667V256H106.6666666666667L192 341.3333333333334L277.3333333333333 256H213.3333333333333V106.6666666666667" />
+    <glyph glyph-name="clipboard-outline"
+      unicode="&#xF14D;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M149.3333333333333 298.6666666666667H362.6666666666667V341.3333333333334H405.3333333333333V42.6666666666667H106.6666666666667V341.3333333333334H149.3333333333333V298.6666666666667z" />
+    <glyph glyph-name="clipboard-plus"
+      unicode="&#xF750;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M277.3333333333333 192H341.3333333333333V149.3333333333334H277.3333333333333V85.3333333333334H234.6666666666667V149.3333333333334H170.6666666666667V192H234.6666666666667V256H277.3333333333333V192z" />
+    <glyph glyph-name="clipboard-pulse"
+      unicode="&#xF85C;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M106.6666666666667 160.8533333333334H152.96L224 296.96L244.0533333333333 148.2666666666667L297.1733333333333 216.32L352.64 160.8533333333334H405.3333333333333V128H338.9866666666667L300.16 166.1866666666667L221.44 65.7066666666667L205.2266666666667 188.8L173.0133333333333 128H106.6666666666667V160.8533333333334z" />
+    <glyph glyph-name="clipboard-pulse-outline"
+      unicode="&#xF85D;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M106.6666666666667 128H173.0133333333333L205.2266666666666 188.8L221.44 65.7066666666667L300.16 166.1866666666667L338.9866666666667 128H405.3333333333333V42.6666666666667H106.6666666666667V128M405.3333333333333 160.8533333333334H352.64L297.1733333333334 216.32L244.0533333333334 148.2666666666667L224 296.96L152.96 160.8533333333334H106.6666666666667V341.3333333333334H149.3333333333333V320H362.6666666666667V341.3333333333334H405.3333333333333V160.8533333333334z" />
+    <glyph glyph-name="clipboard-text"
+      unicode="&#xF14E;"
+      horiz-adv-x="512" d=" M362.6666666666667 256H149.3333333333333V298.6666666666667H362.6666666666667M362.6666666666667 170.6666666666667H149.3333333333333V213.3333333333334H362.6666666666667M298.6666666666667 85.3333333333334H149.3333333333333V128H298.6666666666667M256 384C267.7333333333334 384 277.3333333333333 374.4 277.3333333333333 362.6666666666667S267.7333333333334 341.3333333333334 256 341.3333333333334S234.6666666666667 350.9333333333334 234.6666666666667 362.6666666666667S244.2666666666667 384 256 384M405.3333333333333 384H316.16C307.2 408.7466666666667 283.7333333333334 426.6666666666667 256 426.6666666666667C228.2666666666667 426.6666666666667 204.8 408.7466666666667 195.84 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="clipboard-text-outline"
+      unicode="&#xFA37;"
+      horiz-adv-x="512" d=" M405.3333333333333 362.6666666666667H316.16C304 395.9466666666667 267.3066666666667 413.0133333333333 234.6666666666667 401.0666666666667C216.32 394.6666666666667 202.6666666666667 380.5866666666667 195.84 362.6666666666667H106.6666666666667C83.2 362.6666666666667 64 343.4666666666667 64 320V21.3333333333334C64 -2.1333333333333 83.2 -21.3333333333333 106.6666666666667 -21.3333333333333H405.3333333333333C428.8 -21.3333333333333 448 -2.1333333333333 448 21.3333333333334V320C448 343.4666666666667 428.8 362.6666666666667 405.3333333333333 362.6666666666667M256 362.6666666666667C267.7333333333334 362.6666666666667 277.3333333333333 353.0666666666667 277.3333333333333 341.3333333333334S267.7333333333334 320 256 320S234.6666666666667 329.6 234.6666666666667 341.3333333333334S244.2666666666667 362.6666666666667 256 362.6666666666667M149.3333333333333 277.3333333333334H362.6666666666667V320H405.3333333333333V21.3333333333334H106.6666666666667V320H149.3333333333333V277.3333333333334M362.6666666666667 192H149.3333333333333V234.6666666666667H362.6666666666667V192M320 106.6666666666667H149.3333333333333V149.3333333333334H320V106.6666666666667z" />
+    <glyph glyph-name="clippy"
+      unicode="&#xF14F;"
+      horiz-adv-x="512" d=" M320 117.3333333333334C320 87.8933333333334 296.1066666666667 64 266.6666666666667 64S213.3333333333333 87.8933333333334 213.3333333333333 117.3333333333334V154.6666666666667C213.3333333333333 163.4133333333334 220.5866666666667 170.6666666666667 229.3333333333333 170.6666666666667S245.3333333333333 163.4133333333334 245.3333333333333 154.6666666666667V117.3333333333334C245.3333333333333 105.6 254.9333333333333 96 266.6666666666667 96S288 105.6 288 117.3333333333334V194.3466666666667C269.44 200.32 256 216.1066666666667 256 234.6666666666667C256 258.1333333333334 277.3333333333333 277.3333333333334 304 277.3333333333334S352 258.1333333333334 352 234.6666666666667C352 216.1066666666667 338.56 200.32 320 194.3466666666667V117.3333333333334M176 277.3333333333334C202.6666666666667 277.3333333333334 224 258.1333333333334 224 234.6666666666667C224 216.1066666666667 210.56 200.32 192 194.3466666666667V80C192 41.8133333333334 223.1466666666667 10.6666666666667 261.3333333333333 10.6666666666667S330.6666666666667 41.8133333333334 330.6666666666667 80V154.6666666666667C330.6666666666667 163.4133333333334 337.92 170.6666666666667 346.6666666666667 170.6666666666667S362.6666666666667 163.4133333333334 362.6666666666667 154.6666666666667V80C362.6666666666667 24.1066666666667 317.2266666666667 -21.3333333333333 261.3333333333333 -21.3333333333333S160 24.1066666666667 160 80V194.3466666666667C141.44 200.32 128 216.1066666666667 128 234.6666666666667C128 258.1333333333334 149.3333333333333 277.3333333333334 176 277.3333333333334M214.6133333333334 317.2266666666667L205.44 286.0800000000001C196.6933333333333 290.7733333333333 186.6666666666667 293.3333333333334 176 293.3333333333334C156.5866666666667 293.3333333333334 139.3066666666667 284.8 128.64 271.5733333333334L103.04 290.7733333333334C116.48 307.8400000000001 136.7466666666667 320 160 324.0533333333334V325.3333333333334C160 369.4933333333334 195.84 405.3333333333333 240 405.3333333333333C284.16 405.3333333333333 320 369.4933333333334 320 325.3333333333334V324.0533333333334C343.2533333333334 320 363.52 307.8400000000001 376.9600000000001 290.7733333333334L351.36 271.5733333333334C340.6933333333334 284.8 323.4133333333334 293.3333333333334 304 293.3333333333334C293.3333333333334 293.3333333333334 283.3066666666667 290.7733333333333 274.56 286.0800000000001L265.3866666666667 317.2266666666667C272.4266666666667 320 280.1066666666667 322.7733333333333 288 324.0533333333334V325.3333333333334C288 352 266.6666666666667 373.3333333333334 240.0000000000001 373.3333333333334S192 352 192 325.3333333333334V324.0533333333334C199.8933333333333 322.7733333333334 207.5733333333333 320 214.6133333333334 317.2266666666667M304 250.6666666666667C292.2666666666667 250.6666666666667 282.6666666666667 243.4133333333334 282.6666666666667 234.6666666666667S292.2666666666667 218.6666666666667 304 218.6666666666667S325.3333333333333 225.92 325.3333333333333 234.6666666666667S315.7333333333334 250.6666666666667 304 250.6666666666667M176 250.6666666666667C164.2666666666667 250.6666666666667 154.6666666666667 243.4133333333334 154.6666666666667 234.6666666666667S164.2666666666667 218.6666666666667 176 218.6666666666667S197.3333333333333 225.92 197.3333333333333 234.6666666666667S187.7333333333334 250.6666666666667 176 250.6666666666667z" />
+    <glyph glyph-name="clock"
+      unicode="&#xF953;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M345.6 102.4L234.6666666666667 170.6666666666667V298.6666666666667H266.6666666666667V187.7333333333334L362.6666666666667 130.1333333333334L345.6 102.4z" />
+    <glyph glyph-name="clock-alert"
+      unicode="&#xF954;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C351.1466666666667 405.3333333333333 432.2133333333333 342.4 459.52 256H384V21.3333333333334C348.3733333333333 -5.3333333333333 304 -21.3333333333333 256 -21.3333333333333C138.24 -21.3333333333333 42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M345.6 102.4L362.6666666666667 130.1333333333334L266.6666666666667 187.7333333333334V298.6666666666667H234.6666666666667V170.6666666666667L345.6 102.4M426.6666666666667 213.3333333333334H469.3333333333333V64H426.6666666666667V213.3333333333334M426.6666666666667 21.3333333333334H469.3333333333333V-21.3333333333333H426.6666666666667V21.3333333333334z" />
+    <glyph glyph-name="clock-alert-outline"
+      unicode="&#xF5CE;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.0266666666667 405.3333333333333 42.6666666666667 309.3333333333334 42.6666666666667 192C42.6666666666667 74.24 138.24 -21.3333333333333 256 -21.3333333333333C304 -21.3333333333333 348.3733333333333 -5.1199999999999 384 21.3333333333334V79.36C352.64 43.9466666666667 306.9866666666667 21.3333333333334 256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667C327.68 362.6666666666667 388.9066666666667 318.5066666666667 414.08 256H459.52C432.4266666666666 342.6133333333334 352 405.3333333333333 256 405.3333333333333M234.6666666666667 298.6666666666667V170.6666666666667L346.6666666666667 103.4666666666667L362.6666666666667 129.7066666666667L266.6666666666667 186.6666666666668V298.6666666666667H234.6666666666667M426.6666666666667 213.3333333333334V64H469.3333333333333V213.3333333333334H426.6666666666667M426.6666666666667 21.3333333333334V-21.3333333333333H469.3333333333333V21.3333333333334H426.6666666666667z" />
+    <glyph glyph-name="clock-end"
+      unicode="&#xF151;"
+      horiz-adv-x="512" d=" M256 426.6666666666667C173.6533333333333 426.6666666666667 106.6666666666667 359.68 106.6666666666667 277.3333333333334C106.6666666666667 194.7733333333333 173.44 128 256 128C338.3466666666667 128 405.3333333333333 194.7733333333333 405.3333333333333 277.3333333333334C405.3333333333333 359.68 338.3466666666667 426.6666666666667 256 426.6666666666667M256 380.8C312.96 380.8 359.4666666666667 334.5066666666667 359.4666666666667 277.3333333333334C359.4666666666667 220.16 312.9600000000001 173.8666666666667 256 173.8666666666667C198.8266666666667 173.8666666666667 152.5333333333334 220.16 152.5333333333334 277.3333333333334C152.5333333333334 334.5066666666667 198.8266666666667 380.8 256 380.8M234.6666666666667 341.3333333333334V262.6133333333334L302.72 223.36L318.72 251.0933333333334L266.6666666666667 281.1733333333334V341.3333333333334M320 106.6666666666667V42.6666666666667H64V0H320V-64L405.3333333333333 21.3333333333334M405.3333333333333 21.3333333333334V-64H448V106.6666666666667H405.3333333333333" />
+    <glyph glyph-name="clock-fast"
+      unicode="&#xF152;"
+      horiz-adv-x="512" d=" M320 362.6666666666667C414.2933333333334 362.6666666666667 490.6666666666666 286.2933333333334 490.6666666666666 192S414.2933333333334 21.3333333333334 320 21.3333333333334S149.3333333333333 97.7066666666667 149.3333333333333 192S225.7066666666667 362.6666666666667 320 362.6666666666667M320 320C249.3866666666667 320 192 262.6133333333334 192 192S249.3866666666667 64 320 64S448 121.3866666666667 448 192S390.6133333333333 320 320 320M298.6666666666667 277.3333333333334H330.6666666666667V196.6933333333334L380.3733333333333 146.9866666666667L357.76 124.3733333333333L298.6666666666667 183.4666666666667V277.3333333333334M42.6666666666667 64C30.9333333333333 64 21.3333333333333 73.6 21.3333333333333 85.3333333333334S30.9333333333333 106.6666666666667 42.6666666666667 106.6666666666667H124.3733333333333C130.9866666666667 91.52 139.52 77.2266666666667 149.3333333333333 64H42.6666666666667M64 170.6666666666667C52.2666666666667 170.6666666666667 42.6666666666667 180.2666666666667 42.6666666666667 192S52.2666666666667 213.3333333333334 64 213.3333333333334H107.7333333333333L106.6666666666667 192L107.7333333333333 170.6666666666667H64M85.3333333333333 277.3333333333334C73.6 277.3333333333334 64 286.9333333333334 64 298.6666666666667S73.6 320 85.3333333333333 320H149.3333333333333C139.52 306.7733333333333 130.9866666666667 292.48 124.3733333333333 277.3333333333334H85.3333333333333z" />
+    <glyph glyph-name="clock-in"
+      unicode="&#xF153;"
+      horiz-adv-x="512" d=" M47.1466666666667 431.1466666666667L16.8533333333333 400.8533333333334L102.4 315.52L64 277.3333333333334H170.6666666666667V384L132.48 345.6M256 277.3333333333334C173.6533333333333 277.3333333333334 106.6666666666667 210.56 106.6666666666667 128S173.44 -21.3333333333333 256 -21.3333333333333C338.3466666666667 -21.3333333333333 405.3333333333333 45.44 405.3333333333333 128S338.56 277.3333333333334 256 277.3333333333334M256 231.4666666666667C312.96 231.4666666666667 359.4666666666667 185.1733333333334 359.4666666666667 128C359.4666666666667 70.8266666666667 313.1733333333334 24.5333333333333 256 24.5333333333333C198.8266666666667 24.5333333333333 152.5333333333334 70.8266666666667 152.5333333333334 128C152.5333333333334 185.1733333333333 198.8266666666667 231.4666666666667 256 231.4666666666667M234.6666666666667 192V113.28L302.72 74.0266666666666L318.72 101.76L266.6666666666667 131.84V192" />
+    <glyph glyph-name="clock-out"
+      unicode="&#xF154;"
+      horiz-adv-x="512" d=" M384 426.6666666666667L422.4 388.48L336.8533333333334 303.1466666666667L367.1466666666667 272.8533333333334L452.48 358.1866666666667L490.6666666666666 320V426.6666666666667M256 277.3333333333334C173.6533333333333 277.3333333333334 106.6666666666667 210.56 106.6666666666667 128S173.44 -21.3333333333333 256 -21.3333333333333C338.3466666666667 -21.3333333333333 405.3333333333333 45.44 405.3333333333333 128S338.56 277.3333333333334 256 277.3333333333334M256 231.4666666666667C312.96 231.4666666666667 359.4666666666667 185.1733333333334 359.4666666666667 128C359.4666666666667 70.8266666666667 313.1733333333334 24.5333333333333 256 24.5333333333333C198.8266666666667 24.5333333333333 152.5333333333334 70.8266666666667 152.5333333333334 128C152.5333333333334 185.1733333333333 198.8266666666667 231.4666666666667 256 231.4666666666667M234.6666666666667 192V113.28L302.72 74.0266666666666L318.72 101.76L266.6666666666667 131.84V192" />
+    <glyph glyph-name="clock-outline"
+      unicode="&#xF150;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333C138.0266666666667 -21.3333333333333 42.6666666666667 74.6666666666667 42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333M266.6666666666667 298.6666666666667V186.6666666666667L362.6666666666667 129.7066666666667L346.6666666666667 103.4666666666667L234.6666666666667 170.6666666666667V298.6666666666667H266.6666666666667z" />
+    <glyph glyph-name="clock-start"
+      unicode="&#xF155;"
+      horiz-adv-x="512" d=" M256 426.6666666666667C173.6533333333333 426.6666666666667 106.6666666666667 359.68 106.6666666666667 277.3333333333334C106.6666666666667 194.7733333333333 173.44 128 256 128C338.3466666666667 128 405.3333333333333 194.7733333333333 405.3333333333333 277.3333333333334C405.3333333333333 359.68 338.3466666666667 426.6666666666667 256 426.6666666666667M256 380.8C312.96 380.8 359.4666666666667 334.5066666666667 359.4666666666667 277.3333333333334C359.4666666666667 220.16 312.9600000000001 173.8666666666667 256 173.8666666666667C198.8266666666667 173.8666666666667 152.5333333333334 220.16 152.5333333333334 277.3333333333334C152.5333333333334 334.5066666666667 198.8266666666667 380.8 256 380.8M234.6666666666667 341.3333333333334V262.6133333333334L302.72 223.36L318.72 251.0933333333334L266.6666666666667 281.1733333333334V341.3333333333334M85.3333333333333 106.6666666666667V-64H128V0H384V-64L469.3333333333333 21.3333333333334L384 106.6666666666667V42.6666666666667H128V106.6666666666667" />
+    <glyph glyph-name="close"
+      unicode="&#xF156;"
+      horiz-adv-x="512" d=" M405.3333333333333 311.2533333333334L375.2533333333334 341.3333333333334L256 222.08L136.7466666666667 341.3333333333334L106.6666666666667 311.2533333333334L225.92 192L106.6666666666667 72.7466666666667L136.7466666666667 42.6666666666667L256 161.92L375.2533333333334 42.6666666666667L405.3333333333333 72.7466666666667L286.08 192L405.3333333333333 311.2533333333334z" />
+    <glyph glyph-name="close-box"
+      unicode="&#xF157;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M332.8 85.3333333333334L256 162.1333333333333L179.2 85.3333333333334L149.3333333333333 115.2000000000001L226.1333333333334 192L149.3333333333333 268.8L179.2 298.6666666666667L256 221.8666666666667L332.8 298.6666666666667L362.6666666666667 268.8L285.8666666666667 192L362.6666666666667 115.2000000000001L332.8 85.3333333333334z" />
+    <glyph glyph-name="close-box-outline"
+      unicode="&#xF158;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333V42.6666666666667M362.6666666666667 268.8L285.8666666666667 192L362.6666666666667 115.2000000000001L332.8 85.3333333333334L256 162.1333333333333L179.2 85.3333333333334L149.3333333333333 115.2000000000001L226.1333333333334 192L149.3333333333333 268.8L179.2 298.6666666666667L256 221.8666666666667L332.8 298.6666666666667L362.6666666666667 268.8z" />
+    <glyph glyph-name="close-circle"
+      unicode="&#xF159;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.9733333333334 405.3333333333333 469.3333333333333 309.9733333333334 469.3333333333333 192S373.9733333333334 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.0266666666666 42.6666666666667 192S138.0266666666667 405.3333333333333 256 405.3333333333333M332.5866666666667 298.6666666666667L256 222.08L179.4133333333333 298.6666666666667L149.3333333333333 268.5866666666667L225.92 192L149.3333333333333 115.4133333333334L179.4133333333333 85.3333333333334L256 161.92L332.5866666666667 85.3333333333334L362.6666666666667 115.4133333333334L286.08 192L362.6666666666667 268.5866666666667L332.5866666666667 298.6666666666667z" />
+    <glyph glyph-name="close-circle-outline"
+      unicode="&#xF15A;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C161.92 21.3333333333334 85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667S426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.0266666666667 405.3333333333333 42.6666666666667 309.9733333333334 42.6666666666667 192S138.0266666666667 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.0266666666666 469.3333333333333 192S373.9733333333334 405.3333333333333 256 405.3333333333333M311.2533333333334 277.3333333333334L256 222.08L200.7466666666667 277.3333333333334L170.6666666666667 247.2533333333334L225.92 192L170.6666666666667 136.7466666666667L200.7466666666667 106.6666666666667L256 161.92L311.2533333333334 106.6666666666667L341.3333333333333 136.7466666666667L286.08 192L341.3333333333333 247.2533333333334L311.2533333333334 277.3333333333334z" />
+    <glyph glyph-name="close-network"
+      unicode="&#xF15B;"
+      horiz-adv-x="512" d=" M311.2533333333334 320L256 264.7466666666667L200.7466666666667 320L170.6666666666667 289.92L225.92 234.6666666666667L170.6666666666667 179.4133333333334L200.7466666666667 149.3333333333334L256 204.5866666666667L311.2533333333334 149.3333333333334L341.3333333333333 179.4133333333334L286.08 234.6666666666667L341.3333333333333 289.92L311.2533333333334 320M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V128C405.3333333333333 104.5333333333333 386.1333333333334 85.3333333333334 362.6666666666667 85.3333333333334H277.3333333333333V42.6666666666667H298.6666666666667C310.4 42.6666666666667 320 33.0666666666667 320 21.3333333333334H469.3333333333333V-21.3333333333333H320C320 -33.0666666666667 310.4 -42.6666666666666 298.6666666666667 -42.6666666666666H213.3333333333333C201.6 -42.6666666666666 192 -33.0666666666667 192 -21.3333333333333H42.6666666666667V21.3333333333334H192C192 33.0666666666667 201.6 42.6666666666667 213.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H149.3333333333333C125.6533333333333 85.3333333333334 106.6666666666667 104.5333333333333 106.6666666666667 128V341.3333333333334C106.6666666666667 364.8 125.8666666666667 384 149.3333333333333 384H362.6666666666667z" />
+    <glyph glyph-name="close-octagon"
+      unicode="&#xF15C;"
+      horiz-adv-x="512" d=" M176.4266666666667 384L64 271.5733333333334V112.4266666666667L176.4266666666667 0H335.5733333333333L448 112.4266666666667V271.5733333333334L335.5733333333333 384M179.4133333333333 298.6666666666667L256 222.08L332.5866666666667 298.6666666666667L362.6666666666667 268.5866666666667L286.08 192L362.6666666666667 115.4133333333334L332.5866666666667 85.3333333333334L256 161.92L179.4133333333333 85.3333333333334L149.3333333333333 115.4133333333334L225.92 192L149.3333333333333 268.5866666666667" />
+    <glyph glyph-name="close-octagon-outline"
+      unicode="&#xF15D;"
+      horiz-adv-x="512" d=" M176.4266666666667 384L64 271.5733333333334V112.4266666666667L176.4266666666667 0H335.5733333333333C373.3333333333333 37.5466666666667 448 112.4266666666667 448 112.4266666666667V271.5733333333334L335.5733333333333 384M194.1333333333333 341.3333333333334H317.8666666666666L405.3333333333333 253.8666666666667V130.1333333333334L317.8666666666667 42.6666666666667H194.1333333333333L106.6666666666667 130.1333333333333V253.8666666666667M194.56 283.52L164.48 253.4400000000001L225.92 192L164.48 130.5600000000001L194.56 100.48L256 161.92L317.44 100.48L347.52 130.5600000000001L286.08 192L347.52 253.44L317.44 283.52L256 222.08" />
+    <glyph glyph-name="close-outline"
+      unicode="&#xF6C8;"
+      horiz-adv-x="512" d=" M64 90.8800000000001L165.5466666666667 192L64 293.12L154.88 384L256 282.4533333333334L357.12 384L448 293.12L346.4533333333333 192L448 90.8800000000001L357.12 0L256 101.5466666666667L154.88 0L64 90.8800000000001M256 161.9200000000001L357.12 60.5866666666668L387.4133333333334 90.8800000000001L286.08 192L387.4133333333333 293.12L357.12 323.4133333333334L256 222.08L154.88 323.4133333333334L124.5866666666667 293.12L225.92 192L124.5866666666667 90.88L154.88 60.5866666666666L256 161.92z" />
+    <glyph glyph-name="closed-caption"
+      unicode="&#xF15E;"
+      horiz-adv-x="512" d=" M384 213.3333333333334H352V224H309.3333333333333V160H352V170.6666666666667H384V149.3333333333334C384 137.6 374.4 128 362.6666666666667 128H298.6666666666667C286.9333333333333 128 277.3333333333333 137.6 277.3333333333333 149.3333333333334V234.6666666666667C277.3333333333333 246.4000000000001 286.9333333333333 256 298.6666666666667 256H362.6666666666667C374.4 256 384 246.4000000000001 384 234.6666666666667M234.6666666666667 213.3333333333334H202.6666666666667V224H160V160H202.6666666666667V170.6666666666667H234.6666666666667V149.3333333333334C234.6666666666667 137.6 225.0666666666667 128 213.3333333333333 128H149.3333333333333C137.6 128 128 137.6 128 149.3333333333334V234.6666666666667C128 246.4000000000001 137.6 256 149.3333333333333 256H213.3333333333333C225.0666666666667 256 234.6666666666667 246.4000000000001 234.6666666666667 234.6666666666667M405.3333333333333 362.6666666666667H106.6666666666667C82.9866666666667 362.6666666666667 64 343.68 64 320V64C64 40.5333333333333 83.2 21.3333333333334 106.6666666666667 21.3333333333334H405.3333333333333C428.8 21.3333333333334 448 40.5333333333333 448 64V320C448 343.68 428.8 362.6666666666667 405.3333333333333 362.6666666666667z" />
+    <glyph glyph-name="cloud"
+      unicode="&#xF15F;"
+      horiz-adv-x="512" d=" M412.8 234.0266666666667C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C194.3466666666666 362.6666666666667 140.8 327.68 114.1333333333333 276.6933333333334C49.92 269.6533333333334 0 215.4666666666667 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H405.3333333333333C464.2133333333333 21.3333333333334 512 69.1200000000001 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 234.0266666666667z" />
+    <glyph glyph-name="cloud-alert"
+      unicode="&#xF9DF;"
+      horiz-adv-x="512" d=" M405.3333333333333 21.3333333333334H128C57.8133333333333 21.3333333333334 0 79.1466666666667 0 149.3333333333334C0 215.4666666666667 49.92 269.6533333333334 114.1333333333333 276.6933333333334C140.8 327.68 194.3466666666666 362.6666666666667 256 362.6666666666667C333.6533333333333 362.6666666666667 398.2933333333334 307.4133333333334 412.8 234.0266666666667C468.2666666666667 229.9733333333334 512 184.32 512 128C512 69.5466666666666 463.7866666666667 21.3333333333334 405.3333333333333 21.3333333333334M234.6666666666667 128V85.3333333333334H277.3333333333333V128H234.6666666666667M234.6666666666667 170.6666666666667H277.3333333333333V277.3333333333334H234.6666666666667V170.6666666666667z" />
+    <glyph glyph-name="cloud-braces"
+      unicode="&#xF7B4;"
+      horiz-adv-x="512" d=" M128 21.3333333333334C57.3866666666667 21.3333333333334 0 78.72 0 149.3333333333334C0 215.2533333333333 49.92 269.6533333333334 114.1333333333333 276.48C140.8 327.68 194.3466666666666 362.6666666666667 256 362.6666666666667C333.44 362.6666666666667 398.08 307.6266666666667 412.8 234.6666666666667C468.2666666666667 230.6133333333334 512 184.3200000000001 512 128C512 69.1200000000001 464.2133333333333 21.3333333333334 405.3333333333333 21.3333333333334H128M394.6666666666667 192H384C372.2666666666667 192 362.6666666666667 201.6 362.6666666666667 213.3333333333334V234.6666666666667C362.6666666666667 258.1333333333334 343.4666666666667 277.3333333333334 320 277.3333333333334H288V234.6666666666667H320V213.3333333333334C320 189.8666666666667 339.2 170.6666666666667 362.6666666666667 170.6666666666667C339.2 170.6666666666667 320 151.4666666666667 320 128V106.6666666666667H288V64H320C343.4666666666667 64 362.6666666666667 83.2 362.6666666666667 106.6666666666667V128C362.6666666666667 139.7333333333334 372.2666666666667 149.3333333333334 384 149.3333333333334H394.6666666666667V192M117.3333333333333 192V149.3333333333334H128C139.7333333333333 149.3333333333334 149.3333333333333 139.7333333333334 149.3333333333333 128V106.6666666666667C149.3333333333333 83.2 168.5333333333333 64 192 64H224V106.6666666666667H192V128C192 151.4666666666667 172.8 170.6666666666667 149.3333333333333 170.6666666666667C172.8 170.6666666666667 192 189.8666666666667 192 213.3333333333334V234.6666666666667H224V277.3333333333334H192C168.5333333333333 277.3333333333334 149.3333333333333 258.1333333333334 149.3333333333333 234.6666666666667V213.3333333333334C149.3333333333333 201.6 139.7333333333333 192 128 192H117.3333333333333z" />
+    <glyph glyph-name="cloud-check"
+      unicode="&#xF160;"
+      horiz-adv-x="512" d=" M213.3333333333333 85.3333333333334L138.6666666666667 160L168.7466666666667 190.2933333333334L213.3333333333333 145.7066666666667L323.84 256L353.92 225.92M412.8 234.0266666666667C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C194.3466666666666 362.6666666666667 140.8 327.68 114.1333333333333 276.6933333333334C49.92 269.6533333333334 0 215.4666666666667 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H405.3333333333333C464.2133333333333 21.3333333333334 512 69.1200000000001 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 234.0266666666667z" />
+    <glyph glyph-name="cloud-circle"
+      unicode="&#xF161;"
+      horiz-adv-x="512" d=" M352 106.6666666666667H170.6666666666667C135.2533333333333 106.6666666666667 106.6666666666667 135.2533333333333 106.6666666666667 170.6666666666667S135.2533333333333 234.6666666666667 170.6666666666667 234.6666666666667H173.6533333333333C183.04 271.36 216.1066666666667 298.6666666666667 256 298.6666666666667C303.1466666666667 298.6666666666667 341.3333333333333 260.48 341.3333333333333 213.3333333333334H352C381.44 213.3333333333334 405.3333333333333 189.44 405.3333333333333 160S381.44 106.6666666666667 352 106.6666666666667M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="cloud-download"
+      unicode="&#xF162;"
+      horiz-adv-x="512" d=" M362.6666666666667 170.6666666666667L256 64L149.3333333333333 170.6666666666667H213.3333333333333V256H298.6666666666667V170.6666666666667M412.8 234.0266666666667C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C194.3466666666666 362.6666666666667 140.8 327.68 114.1333333333333 276.6933333333334C49.92 269.6533333333334 0 215.4666666666667 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H405.3333333333333C464.2133333333333 21.3333333333334 512 69.1200000000001 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 234.0266666666667z" />
+    <glyph glyph-name="cloud-download-outline"
+      unicode="&#xFB59;"
+      horiz-adv-x="512" d=" M170.6666666666667 170.6666666666667H225.0666666666667V234.6666666666667H286.9333333333334V170.6666666666667H341.3333333333333L256 85.3333333333334L170.6666666666667 170.6666666666667M412.8 233.8133333333334C468.2666666666667 229.9733333333334 512 184.3200000000001 512 128C512 69.1200000000001 464.2133333333333 21.3333333333334 405.3333333333333 21.3333333333334H128C57.3866666666667 21.3333333333334 0 78.72 0 149.3333333333334C0 215.2533333333333 49.92 269.6533333333334 114.1333333333333 276.48C140.8 327.68 194.3466666666666 362.6666666666667 256 362.6666666666667C333.6533333333333 362.6666666666667 398.2933333333334 307.4133333333334 412.8 233.8133333333334M405.3333333333333 64C440.7466666666667 64 469.3333333333333 92.5866666666667 469.3333333333333 128C469.3333333333333 161.0666666666667 443.3066666666667 189.0133333333333 410.0266666666667 191.1466666666667L377.3866666666666 193.4933333333334L370.9866666666666 225.4933333333334C360.1066666666667 280.32 311.8933333333333 320 256 320C212.0533333333333 320 172.3733333333333 295.68 152.1066666666667 256.64L141.44 236.3733333333334L118.6133333333333 234.0266666666667C75.3066666666667 229.5466666666667 42.6666666666667 193.0666666666667 42.6666666666667 149.3333333333334C42.6666666666667 102.1866666666667 80.8533333333333 64 128 64H405.3333333333333z" />
+    <glyph glyph-name="cloud-off-outline"
+      unicode="&#xF164;"
+      horiz-adv-x="512" d=" M164.9066666666667 234.6666666666667L335.5733333333333 64H128C80.8533333333333 64 42.6666666666667 102.1866666666667 42.6666666666667 149.3333333333334S80.8533333333333 234.6666666666667 128 234.6666666666667M64 335.5733333333334L122.6666666666667 277.3333333333334C54.6133333333333 274.1333333333334 0 218.24 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H378.24L420.9066666666667 -21.3333333333333L448 5.76L91.0933333333333 362.6666666666667M412.8 234.0266666666667C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C224 362.6666666666667 195.2 353.4933333333334 170.6666666666667 337.7066666666667L201.6 306.56C217.8133333333333 315.0933333333334 236.3733333333334 320 256 320C320.8533333333333 320 373.3333333333333 267.52 373.3333333333333 202.6666666666667V192H405.3333333333333C440.7466666666667 192 469.3333333333333 163.4133333333334 469.3333333333333 128C469.3333333333333 103.8933333333334 455.6799999999999 82.9866666666667 436.0533333333334 72.1066666666667L466.9866666666667 41.1733333333333C494.08 60.5866666666667 512 92.16 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 234.0266666666667z" />
+    <glyph glyph-name="cloud-outline"
+      unicode="&#xF163;"
+      horiz-adv-x="512" d=" M405.3333333333333 64H128C80.8533333333333 64 42.6666666666667 102.1866666666667 42.6666666666667 149.3333333333334S80.8533333333333 234.6666666666667 128 234.6666666666667H143.1466666666667C157.2266666666667 283.9466666666667 202.6666666666667 320 256 320C320.8533333333333 320 373.3333333333333 267.52 373.3333333333333 202.6666666666667V192H405.3333333333333C440.7466666666667 192 469.3333333333333 163.4133333333334 469.3333333333333 128S440.7466666666667 64 405.3333333333333 64M412.8 234.0266666666667C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C194.3466666666666 362.6666666666667 140.8 327.68 114.1333333333333 276.6933333333334C49.92 269.6533333333334 0 215.4666666666667 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H405.3333333333333C464.2133333333333 21.3333333333334 512 69.1200000000001 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 234.0266666666667z" />
+    <glyph glyph-name="cloud-print"
+      unicode="&#xF165;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C194.3466666666666 405.3333333333333 140.8 370.3466666666667 114.1333333333333 319.1466666666667C49.92 312.32 0 257.92 0 192C0 121.3866666666667 57.3866666666667 64 128 64V-21.3333333333333H384V64H405.3333333333333C464.2133333333333 64 512 111.7866666666667 512 170.6666666666667C512 226.9866666666667 468.2666666666667 272.6400000000001 412.8 276.48C398.2933333333334 350.0800000000001 333.6533333333333 405.3333333333333 256 405.3333333333333M170.6666666666667 170.6666666666667H341.3333333333333V21.3333333333334H170.6666666666667V170.6666666666667M192 149.3333333333334V128H320V149.3333333333334H192M192 106.6666666666667V85.3333333333334H320V106.6666666666667H192M192 64V42.6666666666667H320V64H192z" />
+    <glyph glyph-name="cloud-print-outline"
+      unicode="&#xF166;"
+      horiz-adv-x="512" d=" M405.3333333333333 106.6666666666667C440.7466666666667 106.6666666666667 469.3333333333333 135.2533333333333 469.3333333333333 170.6666666666667S440.7466666666667 234.6666666666667 405.3333333333333 234.6666666666667H373.3333333333333V245.3333333333334C373.3333333333333 310.1866666666667 320.8533333333333 362.6666666666667 256 362.6666666666667C202.6666666666667 362.6666666666667 157.2266666666667 326.6133333333334 143.1466666666667 277.3333333333334H128C80.8533333333333 277.3333333333334 42.6666666666667 239.1466666666667 42.6666666666667 192S80.8533333333333 106.6666666666667 128 106.6666666666667V213.3333333333334H384V106.6666666666667H405.3333333333333M413.0133333333333 276.48C468.2666666666667 272.64 512 226.9866666666667 512 170.6666666666667C512 111.7866666666667 464.2133333333333 64 405.3333333333333 64H384V-21.3333333333333H128V64C57.3866666666667 64 0 121.3866666666667 0 192C0 257.92 49.92 312.32 114.1333333333333 319.1466666666667C140.8 370.3466666666667 194.3466666666666 405.3333333333333 256 405.3333333333333C333.6533333333333 405.3333333333333 398.2933333333334 349.8666666666667 413.0133333333333 276.48M170.6666666666667 170.6666666666667V21.3333333333334H341.3333333333333V170.6666666666667H170.6666666666667M192 64H320V42.6666666666667H192V64M320 85.3333333333334H192V106.6666666666667H320V85.3333333333334M192 149.3333333333334H320V128H192V149.3333333333334z" />
+    <glyph glyph-name="cloud-question"
+      unicode="&#xFA38;"
+      horiz-adv-x="512" d=" M412.8 234.0266666666667C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C194.3466666666666 362.6666666666667 140.8 327.68 114.1333333333333 276.6933333333334C49.92 269.6533333333334 0 215.4666666666667 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H405.3333333333333C464.2133333333333 21.3333333333334 512 69.1200000000001 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 234.0266666666667M277.3333333333333 85.3333333333334H234.6666666666667V128H277.3333333333333V85.3333333333334M315.7333333333334 195.84C309.3333333333333 187.52 301.44 181.3333333333334 291.6266666666667 176C286.0800000000001 172.5866666666667 282.4533333333334 169.1733333333334 280.5333333333334 165.12C278.6133333333334 161.0666666666667 277.3333333333334 155.9466666666667 277.3333333333334 149.3333333333334H234.6666666666667C234.6666666666667 161.0666666666667 237.0133333333334 168.96 241.0666666666667 174.5066666666667C245.3333333333334 180.0533333333334 252.8000000000001 186.6666666666667 263.8933333333334 193.92C269.4400000000001 197.3333333333334 273.9200000000001 201.3866666666667 277.3333333333334 206.5066666666667C280.5333333333334 211.4133333333334 282.2400000000001 217.3866666666667 282.2400000000001 224C282.2400000000001 230.8266666666667 280.3200000000001 235.9466666666667 276.4800000000001 239.7866666666667C272.6400000000001 244.0533333333334 266.6666666666668 245.9733333333334 260.2666666666668 245.9733333333334C254.5066666666668 245.9733333333334 249.8133333333334 244.2666666666667 245.3333333333335 241.0666666666667C242.1333333333335 237.8666666666667 240.0000000000001 232.96 240.0000000000001 226.3466666666667H197.9733333333333C196.9066666666667 242.3466666666667 202.6666666666667 256 214.6133333333333 264.7466666666667C226.1333333333334 273.0666666666667 241.28 277.3333333333334 260.2666666666667 277.3333333333334C280.32 277.3333333333334 296.32 272.4266666666667 307.84 262.8266666666667C319.36 253.2266666666667 325.12 240 325.12 224C325.12 213.3333333333334 321.92 204.5866666666667 315.7333333333334 195.84z" />
+    <glyph glyph-name="cloud-search"
+      unicode="&#xF955;"
+      horiz-adv-x="512" d=" M330.6666666666667 192C384 192 426.6666666666667 149.3333333333334 426.6666666666667 96C426.6666666666667 77.2266666666667 421.3333333333333 59.52 411.9466666666666 44.8000000000001L477.6533333333333 -21.3333333333333L448 -50.9866666666667L381.44 14.5066666666667C366.7199999999999 5.3333333333334 349.2266666666666 0 330.6666666666667 0C277.3333333333333 0 234.6666666666667 42.6666666666667 234.6666666666667 96S277.3333333333333 192 330.6666666666667 192M330.6666666666667 149.3333333333334C301.2266666666667 149.3333333333334 277.3333333333333 125.44 277.3333333333333 96S301.2266666666667 42.6666666666667 330.6666666666667 42.6666666666667S384 66.5600000000001 384 96S360.1066666666667 149.3333333333334 330.6666666666667 149.3333333333334M412.8 276.6933333333334C468.2666666666667 272.64 512 226.9866666666667 512 170.6666666666667C512 135.68 495.1466666666666 104.5333333333333 469.3333333333333 85.3333333333334V96C469.3333333333333 172.5866666666667 407.2533333333334 234.6666666666667 330.6666666666667 234.6666666666667S192 172.5866666666667 192 96C192 85.3333333333334 193.28 74.6666666666667 195.6266666666667 64H128C57.3866666666667 64 0 121.3866666666667 0 192C0 258.1333333333334 49.92 312.32 114.1333333333333 319.36C140.8 370.3466666666667 194.3466666666666 405.3333333333333 256 405.3333333333333C333.6533333333333 405.3333333333333 398.2933333333334 350.0800000000001 412.8 276.6933333333334z" />
+    <glyph glyph-name="cloud-search-outline"
+      unicode="&#xF956;"
+      horiz-adv-x="512" d=" M330.6666666666667 192C384 192 426.6666666666667 149.3333333333334 426.6666666666667 96C426.6666666666667 77.2266666666667 421.3333333333333 59.52 411.9466666666666 44.8000000000001L477.6533333333333 -21.3333333333333L448 -50.9866666666667L381.44 14.5066666666667C366.7199999999999 5.3333333333334 349.2266666666666 0 330.6666666666667 0C277.3333333333333 0 234.6666666666667 42.6666666666667 234.6666666666667 96S277.3333333333333 192 330.6666666666667 192M330.6666666666667 149.3333333333334C301.2266666666667 149.3333333333334 277.3333333333333 125.44 277.3333333333333 96S301.2266666666667 42.6666666666667 330.6666666666667 42.6666666666667S384 66.5600000000001 384 96S360.1066666666667 149.3333333333334 330.6666666666667 149.3333333333334M469.3333333333333 170.6666666666667C469.3333333333333 206.08 440.7466666666667 234.6666666666667 405.3333333333333 234.6666666666667H373.3333333333333V245.3333333333334C373.3333333333333 310.1866666666667 320.8533333333333 362.6666666666667 256 362.6666666666667C202.6666666666667 362.6666666666667 157.2266666666667 326.6133333333334 143.1466666666667 277.3333333333334H128C80.8533333333333 277.3333333333334 42.6666666666667 239.1466666666667 42.6666666666667 192S80.8533333333333 106.6666666666667 128 106.6666666666667H192V96C192 85.3333333333334 193.28 74.6666666666667 195.6266666666667 64H128C57.3866666666667 64 0 121.3866666666667 0 192C0 258.1333333333334 49.92 312.32 114.1333333333333 319.1466666666667C140.8 370.3466666666667 194.3466666666666 405.3333333333333 256 405.3333333333333C333.6533333333333 405.3333333333333 398.2933333333334 350.0800000000001 413.0133333333333 276.48C468.2666666666667 272.64 512 226.9866666666667 512 170.6666666666667C512 135.4666666666667 495.1466666666666 104.5333333333333 469.3333333333333 85.3333333333334V96C469.3333333333333 111.5733333333334 466.7733333333333 126.72 461.8666666666666 140.8C466.5599999999999 149.3333333333334 469.3333333333333 160 469.3333333333333 170.6666666666667z" />
+    <glyph glyph-name="cloud-sync"
+      unicode="&#xF63F;"
+      horiz-adv-x="512" d=" M256 362.6666666666667C333.6533333333333 362.6666666666667 398.2933333333334 307.4133333333334 412.8 233.8133333333334C468.2666666666667 229.9733333333334 512 184.3200000000001 512 128C512 69.1200000000001 464.2133333333333 21.3333333333334 405.3333333333333 21.3333333333334H128C57.3866666666667 21.3333333333334 0 78.72 0 149.3333333333334C0 215.2533333333333 49.92 269.6533333333334 114.1333333333333 276.48C140.8 327.68 194.3466666666666 362.6666666666667 256 362.6666666666667M160 241.2800000000001C129.28 202.6666666666667 132.2666666666667 148.0533333333334 166.8266666666667 113.4933333333334C184.7466666666667 96 209.28 85.3333333333334 234.6666666666667 85.3333333333334V45.6533333333334L295.04 105.8133333333334L234.6666666666667 166.1866666666667V128C220.5866666666667 128 206.9333333333333 133.5466666666667 196.9066666666667 143.5733333333334C178.9866666666667 161.4933333333334 176.2133333333333 189.6533333333334 190.2933333333333 210.7733333333334L160 241.2800000000001M195.6266666666667 256.6400000000001L226.56 225.7066666666667L256 196.48V234.6666666666667C270.08 234.6666666666667 283.7333333333334 229.12 293.76 219.0933333333333C311.68 201.1733333333334 314.4533333333333 173.0133333333333 300.3733333333334 151.8933333333333L330.6666666666667 121.3866666666667C361.3866666666667 160 358.4 214.6133333333333 323.84 249.1733333333334C305.92 266.6666666666667 281.3866666666667 277.3333333333334 256 277.3333333333334V317.0133333333333L195.6266666666667 256.64z" />
+    <glyph glyph-name="cloud-tags"
+      unicode="&#xF7B5;"
+      horiz-adv-x="512" d=" M128 21.3333333333334C57.3866666666667 21.3333333333334 0 78.72 0 149.3333333333334C0 215.2533333333333 49.92 269.6533333333334 114.1333333333333 276.48C140.8 327.68 194.3466666666666 362.6666666666667 256 362.6666666666667C333.44 362.6666666666667 398.08 307.6266666666667 412.8 234.6666666666667C468.2666666666667 230.6133333333334 512 184.3200000000001 512 128C512 69.1200000000001 464.2133333333333 21.3333333333334 405.3333333333333 21.3333333333334H128M193.92 268.8L96 170.6666666666667L193.92 72.5333333333333L224 102.8266666666667L156.16 170.6666666666667L224 238.5066666666667L193.92 268.8M318.08 268.8L288 238.5066666666667L355.84 170.6666666666667L288 102.8266666666667L318.08 72.5333333333333L416 170.6666666666667L318.08 268.8z" />
+    <glyph glyph-name="cloud-upload"
+      unicode="&#xF167;"
+      horiz-adv-x="512" d=" M298.6666666666667 170.6666666666667V85.3333333333334H213.3333333333333V170.6666666666667H149.3333333333333L256 277.3333333333334L362.6666666666667 170.6666666666667M412.8 234.0266666666667C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C194.3466666666666 362.6666666666667 140.8 327.68 114.1333333333333 276.6933333333334C49.92 269.6533333333334 0 215.4666666666667 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H405.3333333333333C464.2133333333333 21.3333333333334 512 69.1200000000001 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 234.0266666666667z" />
+    <glyph glyph-name="cloud-upload-outline"
+      unicode="&#xFB5A;"
+      horiz-adv-x="512" d=" M412.8 233.8133333333334C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C194.3466666666666 362.6666666666667 140.8 327.68 114.1333333333333 276.48C49.92 269.6533333333334 0 215.2533333333333 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H405.3333333333333C464.2133333333333 21.3333333333334 512 69.1200000000001 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 233.8133333333334M405.3333333333333 64H128C80.8533333333333 64 42.6666666666667 102.1866666666667 42.6666666666667 149.3333333333334C42.6666666666667 193.0666666666667 75.3066666666667 229.5466666666667 118.6133333333334 234.0266666666667L141.44 236.3733333333334L152.1066666666667 256.64C172.3733333333333 295.68 212.0533333333333 320 256 320C311.8933333333333 320 360.1066666666667 280.32 370.9866666666667 225.4933333333334L377.3866666666667 193.4933333333334L410.0266666666667 191.1466666666667C443.3066666666667 189.0133333333334 469.3333333333334 161.0666666666667 469.3333333333334 128C469.3333333333334 92.5866666666667 440.7466666666668 64 405.3333333333334 64M170.6666666666667 170.6666666666667H225.0666666666667V106.6666666666667H286.9333333333334V170.6666666666667H341.3333333333333L256 256L170.6666666666667 170.6666666666667z" />
+    <glyph glyph-name="clover"
+      unicode="&#xF815;"
+      horiz-adv-x="512" d=" M256 209.4933333333334C326.4 273.4933333333334 362.6666666666667 306.3466666666667 362.6666666666667 347.9466666666667C362.6666666666667 379.9466666666667 336 405.3333333333333 304 405.3333333333333C285.6533333333333 405.3333333333333 268.16 397.6533333333333 256 384C243.84 397.6533333333333 226.3466666666667 405.3333333333333 206.72 405.3333333333333C174.72 405.3333333333333 149.3333333333333 378.6666666666667 149.3333333333333 346.6666666666667C149.3333333333333 306.3466666666667 185.6 273.4933333333334 256 209.4933333333334M238.5066666666667 192C174.5066666666667 262.4000000000001 141.6533333333333 298.6666666666667 100.0533333333333 298.6666666666667C68.0533333333333 298.6666666666667 42.6666666666667 272 42.6666666666667 240C42.6666666666667 221.6533333333334 50.3466666666667 204.16 64 192C50.3466666666667 179.84 42.6666666666667 162.3466666666667 42.6666666666667 142.72C42.6666666666667 110.72 69.3333333333333 85.3333333333334 101.3333333333333 85.3333333333334C141.6533333333333 85.3333333333334 174.5066666666667 121.6 238.5066666666667 192M273.7066666666667 192C337.4933333333334 121.6 370.3466666666667 85.3333333333334 411.9466666666667 85.3333333333334C443.9466666666667 85.3333333333334 469.3333333333334 112 469.3333333333334 144C469.3333333333334 162.3466666666667 461.6533333333334 179.84 448.0000000000001 192C461.6533333333334 204.16 469.3333333333334 221.6533333333334 469.3333333333334 241.2800000000001C469.3333333333333 273.2800000000001 442.6666666666667 298.6666666666667 410.6666666666667 298.6666666666667C370.3466666666667 298.6666666666667 337.4933333333334 262.4000000000001 273.7066666666667 192M256 174.5066666666667C185.6 110.5066666666667 149.3333333333333 77.6533333333334 149.3333333333333 36.0533333333333C149.3333333333333 4.0533333333334 176 -21.3333333333333 208 -21.3333333333333C226.3466666666667 -21.3333333333333 243.84 -13.6533333333333 256 0C268.16 -13.6533333333333 285.6533333333333 -21.3333333333333 305.28 -21.3333333333333C337.28 -21.3333333333333 362.6666666666667 5.3333333333334 362.6666666666667 37.3333333333334C362.6666666666667 77.6533333333334 326.4 110.5066666666667 256 174.5066666666667z" />
+    <glyph glyph-name="code-array"
+      unicode="&#xF168;"
+      horiz-adv-x="512" d=" M64 341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334M128 320V64H213.3333333333333V106.6666666666667H170.6666666666667V277.3333333333334H213.3333333333333V320H128M341.3333333333333 106.6666666666667H298.6666666666667V64H384V320H298.6666666666667V277.3333333333334H341.3333333333333V106.6666666666667z" />
+    <glyph glyph-name="code-braces"
+      unicode="&#xF169;"
+      horiz-adv-x="512" d=" M170.6666666666667 384C147.2 384 128 364.8 128 341.3333333333334V256C128 232.5333333333334 108.8 213.3333333333334 85.3333333333333 213.3333333333334H64V170.6666666666667H85.3333333333333C108.8 170.6666666666667 128 151.4666666666667 128 128V42.6666666666667C128 19.2 147.2 0 170.6666666666667 0H213.3333333333333V42.6666666666667H170.6666666666667V149.3333333333334C170.6666666666667 172.8 151.4666666666667 192 128 192C151.4666666666667 192 170.6666666666667 211.2 170.6666666666667 234.6666666666667V341.3333333333334H213.3333333333333V384M341.3333333333333 384C364.8 384 384 364.8 384 341.3333333333334V256C384 232.5333333333334 403.2 213.3333333333334 426.6666666666667 213.3333333333334H448V170.6666666666667H426.6666666666667C403.2 170.6666666666667 384 151.4666666666667 384 128V42.6666666666667C384 19.2 364.8 0 341.3333333333333 0H298.6666666666667V42.6666666666667H341.3333333333333V149.3333333333334C341.3333333333333 172.8 360.5333333333333 192 384 192C360.5333333333333 192 341.3333333333333 211.2 341.3333333333333 234.6666666666667V341.3333333333334H298.6666666666667V384H341.3333333333333z" />
+    <glyph glyph-name="code-brackets"
+      unicode="&#xF16A;"
+      horiz-adv-x="512" d=" M320 362.6666666666667V320H384V64H320V21.3333333333334H426.6666666666667V362.6666666666667M85.3333333333333 362.6666666666667V21.3333333333334H192V64H128V320H192V362.6666666666667H85.3333333333333z" />
+    <glyph glyph-name="code-equal"
+      unicode="&#xF16B;"
+      horiz-adv-x="512" d=" M128 170.6666666666667H234.6666666666667V128H128M277.3333333333333 170.6666666666667H384V128H277.3333333333333M277.3333333333333 256H384V213.3333333333334H277.3333333333333M128 256H234.6666666666667V213.3333333333334H128M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667z" />
+    <glyph glyph-name="code-greater-than"
+      unicode="&#xF16C;"
+      horiz-adv-x="512" d=" M222.08 289.92L320 192L222.08 93.8666666666667L192 124.16L259.84 192L192 259.8400000000001M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667z" />
+    <glyph glyph-name="code-greater-than-or-equal"
+      unicode="&#xF16D;"
+      horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667H384V128H277.3333333333333M277.3333333333333 256H384V213.3333333333334H277.3333333333333M147.4133333333333 289.92L245.3333333333333 192L147.4133333333333 93.8666666666667L117.3333333333333 124.16L185.1733333333333 192L117.3333333333333 259.8400000000001M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667z" />
+    <glyph glyph-name="code-less-than"
+      unicode="&#xF16E;"
+      horiz-adv-x="512" d=" M289.92 289.92L192 192L289.92 93.8666666666667L320 124.16L252.16 192L320 259.8400000000001M405.3333333333333 384C429.0133333333333 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333z" />
+    <glyph glyph-name="code-less-than-or-equal"
+      unicode="&#xF16F;"
+      horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667H384V128H277.3333333333333M277.3333333333333 256H384V213.3333333333334H277.3333333333333M215.2533333333333 289.92L245.3333333333333 259.8400000000001L177.4933333333334 192L245.3333333333333 124.16L215.2533333333333 93.8666666666667L117.3333333333333 192M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667z" />
+    <glyph glyph-name="code-not-equal"
+      unicode="&#xF170;"
+      horiz-adv-x="512" d=" M128 128H170.6666666666667V85.3333333333334H128M234.6666666666667 170.6666666666667H384V128H234.6666666666667M234.6666666666667 256H384V213.3333333333334H234.6666666666667M128 298.6666666666667H170.6666666666667V170.6666666666667H128M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667z" />
+    <glyph glyph-name="code-not-equal-variant"
+      unicode="&#xF171;"
+      horiz-adv-x="512" d=" M234.6666666666667 309.3333333333334V248.96L177.7066666666667 192L234.6666666666667 135.04V74.6666666666667L117.3333333333333 192M277.3333333333333 310.8266666666667L396.16 192L277.3333333333333 73.1733333333334V133.5466666666667L335.7866666666667 192L277.3333333333333 250.4533333333334M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667z" />
+    <glyph glyph-name="code-parentheses"
+      unicode="&#xF172;"
+      horiz-adv-x="512" d=" M375.8933333333333 384C408.1066666666667 335.5733333333334 426.6666666666667 265.6 426.6666666666667 192C426.6666666666667 118.6133333333334 408.1066666666667 48.64 375.8933333333333 0L341.3333333333333 22.1866666666667C368.2133333333334 62.5066666666667 384 125.2266666666667 384 192S368.2133333333334 321.7066666666667 341.3333333333333 362.0266666666667L375.8933333333333 384M136.1066666666667 384L170.6666666666667 361.8133333333334C143.7866666666667 321.7066666666667 128 258.7733333333334 128 192S143.7866666666667 62.2933333333334 170.6666666666667 22.1866666666667L136.1066666666667 0C103.8933333333333 48.4266666666667 85.3333333333333 118.4 85.3333333333333 192S103.8933333333333 335.5733333333334 136.1066666666667 384z" />
+    <glyph glyph-name="code-string"
+      unicode="&#xF173;"
+      horiz-adv-x="512" d=" M64 341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334M266.6666666666667 213.3333333333334H245.3333333333333C227.6266666666667 213.3333333333334 213.3333333333333 227.6266666666667 213.3333333333333 245.3333333333334S227.6266666666667 277.3333333333334 245.3333333333333 277.3333333333334H266.6666666666667C284.3733333333334 277.3333333333334 298.6666666666667 263.04 298.6666666666667 245.3333333333334H341.3333333333333C341.3333333333333 286.5066666666667 307.84 320 266.6666666666667 320H245.3333333333333C204.16 320 170.6666666666667 286.5066666666667 170.6666666666667 245.3333333333334S204.16 170.6666666666667 245.3333333333333 170.6666666666667H266.6666666666667C284.3733333333334 170.6666666666667 298.6666666666667 156.3733333333333 298.6666666666667 138.6666666666667S284.3733333333334 106.6666666666667 266.6666666666667 106.6666666666667H245.3333333333333C227.6266666666667 106.6666666666667 213.3333333333333 120.96 213.3333333333333 138.6666666666667H170.6666666666667C170.6666666666667 97.4933333333333 204.16 64 245.3333333333333 64H266.6666666666667C307.84 64 341.3333333333333 97.4933333333333 341.3333333333333 138.6666666666667S307.84 213.3333333333334 266.6666666666667 213.3333333333334z" />
+    <glyph glyph-name="code-tags"
+      unicode="&#xF174;"
+      horiz-adv-x="512" d=" M311.4666666666667 93.8666666666667L409.6 192L311.4666666666667 290.1333333333334L341.3333333333333 320L469.3333333333333 192L341.3333333333333 64L311.4666666666667 93.8666666666667M200.5333333333333 93.8666666666667L102.4 192L200.5333333333333 290.1333333333334L170.6666666666667 320L42.6666666666667 192L170.6666666666667 64L200.5333333333333 93.8666666666667z" />
+    <glyph glyph-name="code-tags-check"
+      unicode="&#xF693;"
+      horiz-adv-x="512" d=" M140.5866666666667 375.2533333333334L42.6666666666667 277.3333333333334L140.5866666666667 179.2000000000001L170.6666666666667 209.4933333333334L102.8266666666667 277.3333333333334L170.6666666666667 345.1733333333334L140.5866666666667 375.2533333333334M264.7466666666667 375.2533333333334L234.6666666666667 345.1733333333334L302.5066666666667 277.3333333333334L234.6666666666667 209.4933333333334L264.7466666666667 179.2000000000001L362.6666666666667 277.3333333333334L264.7466666666667 375.2533333333334M460.5866666666666 200.7466666666667L288 28.16L209.7066666666667 106.6666666666667L179.6266666666667 76.5866666666667L288 -32L490.6666666666666 170.6666666666667L460.5866666666666 200.7466666666667z" />
+    <glyph glyph-name="codepen"
+      unicode="&#xF175;"
+      horiz-adv-x="512" d=" M321.92 192L256 147.6266666666667V147.4133333333334L190.08 192L256 236.3733333333334L321.92 192M256 405.3333333333333C252.5866666666667 405.3333333333333 249.1733333333333 404.0533333333334 245.9733333333333 402.1333333333334L53.3333333333333 274.9866666666667C48.4266666666667 272.6400000000001 44.5866666666667 268.1600000000001 42.6666666666667 263.04V129.7066666666667C42.6666666666667 120.96 42.6666666666667 120.96 45.8666666666667 116.6933333333334L245.9733333333334 -18.3466666666666C248.9600000000001 -20.48 252.5866666666667 -21.3333333333333 256 -21.3333333333333C259.4133333333334 -21.3333333333333 263.04 -20.2666666666666 266.0266666666667 -18.1333333333333L466.1333333333333 117.3333333333333C469.3333333333333 120.96 469.3333333333333 120.96 469.3333333333333 129.7066666666667V263.04C467.4133333333333 268.3733333333334 463.5733333333333 272.64 458.6666666666666 275.2000000000001L266.0266666666667 402.1333333333334C262.8266666666667 404.2666666666667 259.4133333333333 405.3333333333334 256 405.3333333333334M353.7066666666666 170.6666666666667L417.9199999999999 127.1466666666667L273.7066666666666 29.8666666666667V116.6933333333334L353.7066666666666 170.6666666666667M420.0533333333333 258.1333333333334L353.7066666666666 213.3333333333334L273.7066666666666 267.3066666666667V354.56L420.0533333333333 258.1333333333334M433.7066666666666 224.6400000000001V159.36L385.4933333333334 192L433.7066666666666 224.64M158.2933333333333 170.6666666666667L238.2933333333333 116.48V29.8666666666667L94.08 127.1466666666667L158.2933333333333 170.6666666666667M91.9466666666667 258.1333333333334L238.2933333333333 354.3466666666667V266.6666666666667L158.2933333333333 213.3333333333334L91.9466666666667 258.1333333333334M78.2933333333333 224L126.5066666666667 192L78.2933333333333 159.1466666666667V224z" />
+    <glyph glyph-name="coffee"
+      unicode="&#xF176;"
+      horiz-adv-x="512" d=" M42.6666666666667 0H426.6666666666667V42.6666666666667H42.6666666666667M426.6666666666667 277.3333333333334H384V341.3333333333334H426.6666666666667M426.6666666666667 384H85.3333333333333V170.6666666666667C85.3333333333333 123.52 123.52 85.3333333333334 170.6666666666667 85.3333333333334H298.6666666666667C345.8133333333334 85.3333333333334 384 123.52 384 170.6666666666667V234.6666666666667H426.6666666666667C450.1333333333334 234.6666666666667 469.3333333333333 253.8666666666667 469.3333333333333 277.3333333333334V341.3333333333334C469.3333333333333 365.0133333333333 450.1333333333334 384 426.6666666666667 384z" />
+    <glyph glyph-name="coffee-outline"
+      unicode="&#xF6C9;"
+      horiz-adv-x="512" d=" M42.6666666666667 0V42.6666666666667H426.6666666666667V0H42.6666666666667M426.6666666666667 277.3333333333334V341.3333333333334H384V277.3333333333334H426.6666666666667M426.6666666666667 384C450.1333333333334 384 469.3333333333333 364.8 469.3333333333333 341.3333333333334V277.3333333333334C469.3333333333333 253.8666666666667 450.1333333333334 234.6666666666667 426.6666666666667 234.6666666666667H384V170.6666666666667C384 123.52 345.8133333333334 85.3333333333334 298.6666666666667 85.3333333333334H170.6666666666667C123.52 85.3333333333334 85.3333333333333 123.52 85.3333333333333 170.6666666666667V384H426.6666666666667M341.3333333333333 341.3333333333334H128V170.6666666666667C128 147.2000000000001 147.2 128 170.6666666666667 128H298.6666666666667C322.1333333333334 128 341.3333333333333 147.2000000000001 341.3333333333333 170.6666666666667V341.3333333333334z" />
+    <glyph glyph-name="coffee-to-go"
+      unicode="&#xF177;"
+      horiz-adv-x="512" d=" M64 42.6666666666667V85.3333333333334H362.6666666666667L325.5466666666666 122.88L355.6266666666666 152.96L444.5866666666667 64L355.6266666666667 -24.96L325.5466666666667 5.12L362.6666666666667 42.6666666666667H64M362.6666666666667 277.3333333333334V341.3333333333334H320V277.3333333333334H362.6666666666667M362.6666666666667 384C386.3466666666667 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V277.3333333333334C405.3333333333333 253.6533333333334 386.3466666666667 234.6666666666667 362.6666666666667 234.6666666666667H320V213.3333333333334C320 166.1866666666667 281.8133333333334 128 234.6666666666667 128H149.3333333333333C102.1866666666667 128 64 166.1866666666667 64 213.3333333333334V384H362.6666666666667z" />
+    <glyph glyph-name="coffin"
+      unicode="&#xFB5B;"
+      horiz-adv-x="512" d=" M170.6666666666667 -21.3333333333333L106.6666666666667 277.3333333333334L170.6666666666667 405.3333333333333H341.3333333333333L405.3333333333333 277.3333333333334L341.3333333333333 -21.3333333333333H170.6666666666667M234.6666666666667 320V277.3333333333334H192V234.6666666666667H234.6666666666667V128H277.3333333333333V234.6666666666667H320V277.3333333333334H277.3333333333333V320H234.6666666666667z" />
+    <glyph glyph-name="cogs"
+      unicode="&#xF8D5;"
+      horiz-adv-x="512" d=" M339.2 54.4C368 54.4 391.4666666666667 77.8666666666667 391.4666666666667 106.6666666666667S368 158.9333333333333 339.2000000000001 158.9333333333333C310.1866666666667 158.9333333333333 286.9333333333334 135.4666666666667 286.9333333333334 106.6666666666667S310.1866666666667 54.4 339.2000000000001 54.4M450.1333333333334 92.16L481.7066666666667 67.4133333333334C484.48 65.0666666666667 485.3333333333334 61.2266666666667 483.4133333333333 57.8133333333334L453.5466666666667 6.1866666666667C451.6266666666667 2.9866666666667 448 1.7066666666666 444.3733333333334 2.9866666666667L407.2533333333334 17.92C399.5733333333334 11.9466666666667 391.04 7.04 382.0800000000001 3.2L376.3200000000001 -36.2666666666667C375.8933333333335 -39.8933333333334 372.6933333333334 -42.6666666666667 369.0666666666667 -42.6666666666667H309.3333333333334C305.4933333333334 -42.6666666666667 302.5066666666667 -39.8933333333334 301.8666666666668 -36.2666666666667L296.3200000000001 3.2C287.1466666666668 7.04 278.8266666666667 11.9466666666667 271.1466666666668 17.92L233.8133333333334 2.9866666666667C230.6133333333334 1.7066666666667 226.5600000000001 2.9866666666667 224.8533333333334 6.1866666666667L194.9866666666667 57.8133333333334C193.0666666666668 61.2266666666667 193.9200000000001 65.0666666666667 196.6933333333334 67.4133333333334L228.2666666666668 92.16L227.2000000000001 106.6666666666667L228.2666666666668 121.3866666666667L196.6933333333334 145.92C193.9200000000001 148.2666666666667 193.0666666666668 152.3200000000001 194.9866666666667 155.52L224.8533333333334 207.1466666666667C226.5600000000001 210.56 230.6133333333334 211.84 233.8133333333334 210.56L271.1466666666668 195.4133333333334C278.8266666666667 201.3866666666667 287.1466666666668 206.5066666666667 296.3200000000001 210.1333333333333L301.8666666666668 249.8133333333334C302.5066666666667 253.2266666666667 305.4933333333334 256 309.3333333333334 256H369.0666666666667C372.6933333333335 256 375.8933333333335 253.2266666666667 376.3200000000001 249.8133333333334L382.0800000000001 210.1333333333333C391.0400000000001 206.5066666666667 399.5733333333334 201.3866666666667 407.2533333333334 195.4133333333334L444.3733333333334 210.56C448.0000000000001 211.84 451.6266666666667 210.56 453.5466666666667 207.1466666666667L483.4133333333333 155.5200000000001C485.3333333333333 152.3200000000001 484.48 148.2666666666667 481.7066666666667 145.9200000000001L450.1333333333334 121.3866666666667L451.2 106.6666666666667L450.1333333333334 92.16M142.72 275.8400000000001C161.28 275.8400000000001 176.2133333333333 290.7733333333333 176.2133333333333 309.3333333333334C176.2133333333333 327.8933333333333 161.28 343.04 142.72 343.04C124.16 343.04 109.0133333333333 327.8933333333333 109.0133333333333 309.3333333333334C109.0133333333333 290.7733333333333 124.16 275.8400000000001 142.72 275.8400000000001M213.9733333333333 299.9466666666667L234.6666666666667 284.16C236.16 282.6666666666667 236.5866666666667 280.1066666666667 235.3066666666667 277.9733333333334L216.1066666666666 244.6933333333334C215.04 242.56 212.48 241.7066666666667 210.3466666666666 242.56L186.4533333333333 252.16L170.6666666666666 242.7733333333333L166.6133333333333 217.3866666666667C166.1866666666666 215.04 164.2666666666666 213.3333333333334 161.92 213.3333333333334H123.52C120.96 213.3333333333334 119.04 215.04 118.6133333333333 217.3866666666667L115.2 242.7733333333334L98.9866666666667 252.1600000000001L74.6666666666667 242.5600000000001C72.7466666666667 241.7066666666667 70.4 242.5600000000001 69.12 244.6933333333334L49.92 277.9733333333334C48.64 280.1066666666667 49.28 282.6666666666667 50.9866666666667 284.1600000000001L71.2533333333334 299.9466666666667L70.6133333333334 309.3333333333334L71.2533333333334 318.7200000000001L50.9866666666667 334.5066666666667C49.28 336.0000000000001 48.64 338.5600000000001 49.92 340.6933333333334L69.12 373.9733333333334C70.4 376.1066666666668 72.7466666666667 376.9600000000001 74.6666666666667 376.1066666666668L98.7733333333333 366.5066666666667L115.2 375.8933333333334L118.6133333333334 401.2800000000001C119.04 403.6266666666667 120.96 405.3333333333334 123.52 405.3333333333334H161.92C164.2666666666667 405.3333333333334 166.1866666666667 403.6266666666667 166.6133333333334 401.2800000000001L170.6666666666667 375.8933333333333L186.4533333333333 366.5066666666667L210.3466666666666 376.1066666666667C212.48 376.9600000000001 215.04 376.1066666666667 216.1066666666666 373.9733333333334L235.3066666666667 340.6933333333334C236.5866666666667 338.5600000000001 236.16 336 234.6666666666667 334.5066666666667L213.9733333333333 318.7200000000001L214.6133333333333 309.3333333333334L213.9733333333333 299.9466666666667z" />
+    <glyph glyph-name="coin"
+      unicode="&#xF178;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M234.6666666666667 85.3333333333334V106.6666666666667H192V149.3333333333334H277.3333333333333V170.6666666666667H213.3333333333333C201.6 170.6666666666667 192 180.2666666666667 192 192V256C192 267.7333333333334 201.6 277.3333333333334 213.3333333333333 277.3333333333334H234.6666666666667V298.6666666666667H277.3333333333333V277.3333333333334H320V234.6666666666667H234.6666666666667V213.3333333333334H298.6666666666667C310.4 213.3333333333334 320 203.7333333333334 320 192V128C320 116.2666666666667 310.4 106.6666666666667 298.6666666666667 106.6666666666667H277.3333333333333V85.3333333333334H234.6666666666667z" />
+    <glyph glyph-name="coins"
+      unicode="&#xF694;"
+      horiz-adv-x="512" d=" M320 362.6666666666667C414.2933333333334 362.6666666666667 490.6666666666666 286.2933333333334 490.6666666666666 192S414.2933333333334 21.3333333333334 320 21.3333333333334S149.3333333333333 97.7066666666667 149.3333333333333 192S225.7066666666667 362.6666666666667 320 362.6666666666667M320 64C390.6133333333333 64 448 121.3866666666667 448 192S390.6133333333333 320 320 320S192 262.6133333333334 192 192S249.3866666666667 64 320 64M64 192C64 136.3200000000001 99.6266666666667 88.96 149.3333333333333 71.4666666666667V26.8800000000001C75.7333333333333 45.8666666666667 21.3333333333333 112.4266666666667 21.3333333333333 192.0000000000001C21.3333333333333 271.5733333333334 75.7333333333333 338.1333333333334 149.3333333333333 357.1200000000001V312.5333333333334C99.6266666666667 295.04 64 247.68 64 192z" />
+    <glyph glyph-name="collage"
+      unicode="&#xF640;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 18.9866666666667 82.9866666666667 0 106.6666666666667 0H234.6666666666667V384M277.3333333333333 384V213.3333333333334H448V341.3333333333334C448 365.0133333333333 429.0133333333333 384 405.3333333333333 384M277.3333333333333 170.6666666666667V0H405.3333333333333C429.0133333333333 0 448 18.9866666666667 448 42.6666666666667V170.6666666666667" />
+    <glyph glyph-name="collapse-all"
+      unicode="&#xFAA5;"
+      horiz-adv-x="512" d=" M298.6666666666667 362.6666666666667H85.3333333333333V149.3333333333334H42.6666666666667V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H298.6666666666667V362.6666666666667M384 320H170.6666666666667C147.2 320 128 300.8 128 277.3333333333334V64H170.6666666666667V277.3333333333334H384V320M469.3333333333333 192V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H256C232.5333333333334 -21.3333333333333 213.3333333333333 -2.1333333333333 213.3333333333333 21.3333333333334V192C213.3333333333333 215.4666666666667 232.5333333333334 234.6666666666667 256 234.6666666666667H426.6666666666667C450.1333333333334 234.6666666666667 469.3333333333333 215.4666666666667 469.3333333333333 192M426.6666666666667 128H256V85.3333333333334H426.6666666666667V128z" />
+    <glyph glyph-name="collapse-all-outline"
+      unicode="&#xFAA6;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V149.3333333333334H85.3333333333333V362.6666666666667H298.6666666666667V405.3333333333333H85.3333333333333M170.6666666666667 320C147.2 320 128 300.8 128 277.3333333333334V64H170.6666666666667V277.3333333333334H384V320H170.6666666666667M426.6666666666667 192V21.3333333333334H256V192H426.6666666666667M426.6666666666667 234.6666666666667H256C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192V21.3333333333334C213.3333333333333 -2.1333333333333 232.5333333333334 -21.3333333333333 256 -21.3333333333333H426.6666666666667C450.1333333333334 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V192C469.3333333333333 215.4666666666667 450.1333333333334 234.6666666666667 426.6666666666667 234.6666666666667M405.3333333333333 85.3333333333334H277.3333333333333V128H405.3333333333333V85.3333333333334z" />
+    <glyph glyph-name="color-helper"
+      unicode="&#xF179;"
+      horiz-adv-x="512" d=" M0 -64H512V21.3333333333334H0V-64z" />
+    <glyph glyph-name="comment"
+      unicode="&#xF17A;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192z" />
+    <glyph glyph-name="comment-account"
+      unicode="&#xF17B;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M341.3333333333333 149.3333333333334V170.6666666666667C341.3333333333333 199.04 284.3733333333334 213.3333333333334 256 213.3333333333334S170.6666666666667 199.04 170.6666666666667 170.6666666666667V149.3333333333334H341.3333333333333M256 320C232.5333333333334 320 213.3333333333333 300.8 213.3333333333333 277.3333333333334S232.5333333333334 234.6666666666667 256 234.6666666666667S298.6666666666667 253.8666666666667 298.6666666666667 277.3333333333334S279.4666666666667 320 256 320z" />
+    <glyph glyph-name="comment-account-outline"
+      unicode="&#xF17C;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M341.3333333333333 149.3333333333334H170.6666666666667V170.6666666666667C170.6666666666667 199.04 227.6266666666667 213.3333333333334 256 213.3333333333334S341.3333333333333 199.04 341.3333333333333 170.6666666666667V149.3333333333334M256 320C279.4666666666667 320 298.6666666666667 300.8 298.6666666666667 277.3333333333334S279.4666666666667 234.6666666666667 256 234.6666666666667S213.3333333333333 253.8666666666667 213.3333333333333 277.3333333333334S232.5333333333334 320 256 320z" />
+    <glyph glyph-name="comment-alert"
+      unicode="&#xF17D;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M277.3333333333333 234.6666666666667V320H234.6666666666667V234.6666666666667H277.3333333333333M277.3333333333333 149.3333333333334V192H234.6666666666667V149.3333333333334H277.3333333333333z" />
+    <glyph glyph-name="comment-alert-outline"
+      unicode="&#xF17E;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M277.3333333333333 234.6666666666667H234.6666666666667V320H277.3333333333333V234.6666666666667M277.3333333333333 149.3333333333334H234.6666666666667V192H277.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="comment-arrow-left"
+      unicode="&#xF9E0;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.3466666666667 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 82.9866666666667 450.3466666666667 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M344.9600000000001 210.7733333333334V254.9333333333334H245.9733333333334L284.3733333333334 293.3333333333333L257.92 320L170.6666666666667 232.7466666666667L257.92 145.7066666666667L284.3733333333334 172.3733333333333L245.9733333333333 210.7733333333334H344.9599999999999z" />
+    <glyph glyph-name="comment-arrow-left-outline"
+      unicode="&#xF9E1;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V106.6666666666667C42.6666666666667 82.9866666666667 61.8666666666667 64 85.3333333333333 64H170.6666666666667V0C170.6666666666667 -11.7333333333333 180.2666666666667 -21.3333333333333 192 -21.3333333333333H202.6666666666667C208 -21.3333333333333 213.3333333333333 -19.1999999999999 217.6 -15.1466666666666L296.5333333333333 64H426.6666666666667C450.3466666666667 64 469.3333333333333 82.9866666666667 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333H85.3333333333333M85.3333333333333 362.6666666666667H426.6666666666667V106.6666666666667H279.04L213.3333333333333 40.96V106.6666666666667H85.3333333333333V362.6666666666667M344.9600000000001 210.7733333333333V254.9333333333334H245.9733333333334L284.3733333333334 293.3333333333333L257.92 320L170.6666666666667 232.7466666666667L257.92 145.7066666666667L284.3733333333334 172.3733333333333L245.9733333333333 210.7733333333334H344.9599999999999z" />
+    <glyph glyph-name="comment-arrow-right"
+      unicode="&#xF9E2;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.3466666666667 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 82.9866666666667 450.3466666666667 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M170.6666666666667 254.9333333333334V210.7733333333333H269.6533333333333L231.2533333333334 172.3733333333333L257.92 145.7066666666667L344.9600000000001 232.96L257.92 320L231.2533333333334 293.3333333333334L269.6533333333333 254.9333333333334H170.6666666666667z" />
+    <glyph glyph-name="comment-arrow-right-outline"
+      unicode="&#xF9E3;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V106.6666666666667C42.6666666666667 82.9866666666667 61.8666666666667 64 85.3333333333333 64H170.6666666666667V0C170.6666666666667 -11.7333333333333 180.2666666666667 -21.3333333333333 192 -21.3333333333333H202.6666666666667C208 -21.3333333333333 213.3333333333333 -19.1999999999999 217.6 -15.1466666666666L296.5333333333333 64H426.6666666666667C450.3466666666667 64 469.3333333333333 82.9866666666667 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333H85.3333333333333M85.3333333333333 362.6666666666667H426.6666666666667V106.6666666666667H279.04L213.3333333333333 40.96V106.6666666666667H85.3333333333333V362.6666666666667M170.6666666666667 254.9333333333334V210.7733333333333H269.6533333333333L231.2533333333334 172.3733333333333L257.92 145.7066666666667L344.9600000000001 232.96L257.92 320L231.2533333333334 293.3333333333334L269.6533333333333 254.9333333333334H170.6666666666667z" />
+    <glyph glyph-name="comment-check"
+      unicode="&#xF17F;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 128L384 298.6666666666667L353.92 328.9600000000001L213.3333333333333 188.3733333333333L158.08 243.4133333333334L128 213.3333333333334L213.3333333333333 128z" />
+    <glyph glyph-name="comment-check-outline"
+      unicode="&#xF180;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M352 277.3333333333334L234.6666666666667 160L160 234.6666666666667L190.08 264.7466666666667L234.6666666666667 220.3733333333333L321.92 307.4133333333334L352 277.3333333333334z" />
+    <glyph glyph-name="comment-eye"
+      unicode="&#xFA39;"
+      horiz-adv-x="512" d=" M426.6666666666667 192V106.6666666666667C426.6666666666667 82.9866666666667 407.68 64 384 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -18.9866666666667 208.2133333333333 -21.3333333333333 202.6666666666667 -21.3333333333333H192C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V320C42.6666666666667 343.68 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H202.6666666666667C190.9333333333333 348.3733333333334 181.3333333333333 332.3733333333334 173.6533333333333 314.6666666666667L167.4666666666667 298.6666666666667L173.6533333333333 282.6666666666667C201.1733333333333 214.6133333333334 266.6666666666667 170.6666666666667 341.3333333333333 170.6666666666667C372.0533333333334 170.6666666666667 401.0666666666667 178.56 426.6666666666667 192M341.3333333333333 320C353.28 320 362.6666666666667 310.6133333333334 362.6666666666667 298.6666666666667S353.28 277.3333333333334 341.3333333333333 277.3333333333334S320 286.7200000000001 320 298.6666666666667S329.3866666666667 320 341.3333333333333 320M341.3333333333333 384C399.5733333333333 384 449.28 348.5866666666667 469.3333333333333 298.6666666666667C449.28 248.7466666666667 399.5733333333333 213.3333333333334 341.3333333333333 213.3333333333334S233.3866666666667 248.7466666666667 213.3333333333333 298.6666666666667C233.3866666666667 348.5866666666667 283.0933333333333 384 341.3333333333333 384M341.3333333333333 352C311.8933333333333 352 288 328.1066666666667 288 298.6666666666667S311.8933333333333 245.3333333333334 341.3333333333333 245.3333333333334S394.6666666666667 269.2266666666667 394.6666666666667 298.6666666666667S370.7733333333333 352 341.3333333333333 352" />
+    <glyph glyph-name="comment-eye-outline"
+      unicode="&#xFA3A;"
+      horiz-adv-x="512" d=" M341.3333333333333 320C353.28 320 362.6666666666667 310.6133333333334 362.6666666666667 298.6666666666667S353.28 277.3333333333334 341.3333333333333 277.3333333333334S320 286.7200000000001 320 298.6666666666667S329.3866666666667 320 341.3333333333333 320M341.3333333333333 384C399.5733333333333 384 449.28 348.5866666666667 469.3333333333333 298.6666666666667C449.28 248.7466666666667 399.5733333333333 213.3333333333334 341.3333333333333 213.3333333333334S233.3866666666667 248.7466666666667 213.3333333333333 298.6666666666667C233.3866666666667 348.5866666666667 283.0933333333333 384 341.3333333333333 384M341.3333333333333 352C311.8933333333333 352 288 328.1066666666667 288 298.6666666666667S311.8933333333333 245.3333333333334 341.3333333333333 245.3333333333334S394.6666666666667 269.2266666666667 394.6666666666667 298.6666666666667S370.7733333333333 352 341.3333333333333 352M384 176V106.6666666666667H279.04L213.3333333333333 40.96V106.6666666666667H85.3333333333333V320H176.4266666666667C183.2533333333333 335.5733333333334 192 349.8666666666667 202.6666666666667 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V106.6666666666667C42.6666666666667 82.9866666666667 61.8666666666667 64 85.3333333333333 64H170.6666666666667V0C170.6666666666667 -11.7333333333333 180.2666666666667 -21.3333333333333 192 -21.3333333333333H202.6666666666667C208 -21.3333333333333 213.3333333333333 -19.1999999999999 217.6 -15.1466666666666L296.5333333333333 64H384C407.68 64 426.6666666666667 82.9866666666667 426.6666666666667 106.6666666666667V192C413.2266666666667 184.96 398.9333333333333 179.6266666666667 384 176z" />
+    <glyph glyph-name="comment-multiple"
+      unicode="&#xF85E;"
+      horiz-adv-x="512" d=" M256 -42.6666666666666C244.2666666666667 -42.6666666666666 234.6666666666667 -33.0666666666667 234.6666666666667 -21.3333333333333V42.6666666666667H149.3333333333333C125.8666666666667 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V298.6666666666667C106.6666666666667 322.1333333333334 125.8666666666667 341.3333333333334 149.3333333333333 341.3333333333334H448C471.4666666666667 341.3333333333334 490.6666666666666 322.1333333333334 490.6666666666666 298.6666666666667V85.3333333333334C490.6666666666666 61.8666666666667 471.4666666666667 42.6666666666667 448 42.6666666666667H360.5333333333333L281.6 -36.48C277.3333333333333 -40.32 272.2133333333333 -42.6666666666666 266.6666666666667 -42.6666666666666H256M64 128H21.3333333333333V384C21.3333333333333 407.4666666666667 40.5333333333333 426.6666666666667 64 426.6666666666667H405.3333333333333V384H64V128z" />
+    <glyph glyph-name="comment-multiple-outline"
+      unicode="&#xF181;"
+      horiz-adv-x="512" d=" M256 -42.6666666666666C244.2666666666667 -42.6666666666666 234.6666666666667 -33.0666666666667 234.6666666666667 -21.3333333333333V42.6666666666667H149.3333333333333C125.8666666666667 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V298.6666666666667C106.6666666666667 322.3466666666667 125.8666666666667 341.3333333333334 149.3333333333333 341.3333333333334H448C471.4666666666667 341.3333333333334 490.6666666666666 322.1333333333334 490.6666666666666 298.6666666666667V85.3333333333334C490.6666666666666 61.8666666666667 471.4666666666667 42.6666666666667 448 42.6666666666667H360.5333333333333L281.6 -36.48C277.3333333333333 -40.5333333333334 272 -42.6666666666666 266.6666666666667 -42.6666666666666H256M277.3333333333333 85.3333333333334V19.6266666666667L343.04 85.3333333333334H448V298.6666666666667H149.3333333333333V85.3333333333334H277.3333333333333M64 128H21.3333333333333V384C21.3333333333333 407.4666666666667 40.5333333333333 426.6666666666667 64 426.6666666666667H405.3333333333333V384H64V128z" />
+    <glyph glyph-name="comment-outline"
+      unicode="&#xF182;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333z" />
+    <glyph glyph-name="comment-plus"
+      unicode="&#xF9E4;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M234.6666666666667 320V256H170.6666666666667V213.3333333333334H234.6666666666667V149.3333333333334H277.3333333333333V213.3333333333334H341.3333333333333V256H277.3333333333333V320H234.6666666666667z" />
+    <glyph glyph-name="comment-plus-outline"
+      unicode="&#xF183;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M234.6666666666667 320H277.3333333333333V256H341.3333333333333V213.3333333333334H277.3333333333333V149.3333333333334H234.6666666666667V213.3333333333334H170.6666666666667V256H234.6666666666667V320z" />
+    <glyph glyph-name="comment-processing"
+      unicode="&#xF184;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M362.6666666666667 213.3333333333334V256H320V213.3333333333334H362.6666666666667M277.3333333333333 213.3333333333334V256H234.6666666666667V213.3333333333334H277.3333333333333M192 213.3333333333334V256H149.3333333333333V213.3333333333334H192z" />
+    <glyph glyph-name="comment-processing-outline"
+      unicode="&#xF185;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M362.6666666666667 213.3333333333334H320V256H362.6666666666667V213.3333333333334M277.3333333333333 213.3333333333334H234.6666666666667V256H277.3333333333333V213.3333333333334M192 213.3333333333334H149.3333333333333V256H192V213.3333333333334z" />
+    <glyph glyph-name="comment-question"
+      unicode="&#xF816;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M260.0533333333333 330.6666666666667C241.0666666666667 330.6666666666667 225.92 326.8266666666667 214.4 319.1466666666667C202.6666666666666 311.4666666666667 196.6933333333333 298.6666666666667 197.76 283.9466666666667H239.7866666666667C239.7866666666667 289.92 241.92 294.4000000000001 245.3333333333333 297.3866666666667C249.6 300.3733333333334 254.2933333333333 301.8666666666667 260.0533333333333 301.8666666666667C266.6666666666667 301.8666666666667 272.4266666666666 300.1600000000001 276.2666666666667 296.3200000000001C280.1066666666667 292.6933333333334 282.0266666666667 288 282.0266666666667 281.6C282.0266666666667 275.6266666666667 280.32 270.2933333333334 277.3333333333333 265.8133333333334C273.7066666666666 261.12 269.2266666666666 257.2800000000001 263.68 254.2933333333334C252.5866666666666 247.4666666666667 245.3333333333333 241.4933333333334 240.8533333333333 236.3733333333334C236.8 231.2533333333334 234.6666666666667 224.0000000000001 234.6666666666667 213.3333333333334H277.3333333333333C277.3333333333333 219.3066666666667 278.4 224.0000000000001 280.32 227.8400000000001C282.24 231.4666666666667 285.8666666666666 234.6666666666667 291.4133333333333 237.8666666666668C301.2266666666667 242.3466666666668 309.3333333333333 248.3200000000001 315.52 256.0000000000001C321.7066666666666 263.8933333333334 324.9066666666667 272.2133333333334 324.9066666666667 281.6C324.9066666666667 296.5333333333334 319.1466666666667 308.48 307.6266666666666 317.4400000000001C296.1066666666667 326.1866666666667 280.1066666666667 330.6666666666668 260.0533333333333 330.6666666666668M234.6666666666667 192V149.3333333333334H277.3333333333333V192H234.6666666666667z" />
+    <glyph glyph-name="comment-question-outline"
+      unicode="&#xF186;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V106.6666666666667C42.6666666666667 83.2 61.8666666666667 64 85.3333333333333 64H170.6666666666667V0C170.6666666666667 -11.7333333333333 180.2666666666667 -21.3333333333333 192 -21.3333333333333H202.6666666666667C208 -21.3333333333333 213.3333333333333 -19.1999999999999 217.6 -15.1466666666666L296.5333333333333 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333H85.3333333333333M85.3333333333333 362.6666666666667H426.6666666666667V106.6666666666667H279.04L213.3333333333333 40.96V106.6666666666667H85.3333333333333V362.6666666666667M260.0533333333333 330.6666666666667C241.0666666666667 330.6666666666667 225.92 326.8266666666667 214.4 319.1466666666667C202.6666666666666 311.4666666666667 196.6933333333333 298.6666666666667 197.76 283.9466666666667H239.7866666666667C239.7866666666667 289.92 241.92 294.4000000000001 245.3333333333333 297.3866666666667C249.6 300.3733333333334 254.2933333333333 301.8666666666667 260.0533333333333 301.8666666666667C266.6666666666667 301.8666666666667 272.4266666666666 300.1600000000001 276.2666666666667 296.3200000000001C280.1066666666667 292.6933333333334 282.0266666666667 288 282.0266666666667 281.6C282.0266666666667 275.6266666666667 280.32 270.2933333333334 277.3333333333333 265.8133333333334C273.7066666666666 261.12 269.2266666666666 257.2800000000001 263.68 254.2933333333334C252.5866666666666 247.4666666666667 245.3333333333333 241.4933333333334 240.8533333333333 236.3733333333334C236.8 231.2533333333334 234.6666666666667 224.0000000000001 234.6666666666667 213.3333333333334H277.3333333333333C277.3333333333333 219.3066666666667 278.4 224.0000000000001 280.32 227.8400000000001C282.24 231.4666666666667 285.8666666666666 234.6666666666667 291.4133333333333 237.8666666666668C301.2266666666667 242.3466666666668 309.3333333333333 248.3200000000001 315.52 256.0000000000001C321.7066666666666 263.8933333333334 324.9066666666667 272.2133333333334 324.9066666666667 281.6C324.9066666666667 296.5333333333334 319.1466666666667 308.48 307.6266666666666 317.4400000000001C296.1066666666667 326.1866666666667 280.1066666666667 330.6666666666668 260.0533333333333 330.6666666666668M234.6666666666667 192V149.3333333333334H277.3333333333333V192H234.6666666666667z" />
+    <glyph glyph-name="comment-remove"
+      unicode="&#xF5DE;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M200.7466666666667 320L170.6666666666667 289.92L225.92 234.6666666666667L170.6666666666667 179.4133333333334L200.7466666666667 149.3333333333334L256 204.5866666666667L311.2533333333334 149.3333333333334L341.3333333333333 179.4133333333334L286.08 234.6666666666667L341.3333333333333 289.92L311.2533333333334 320L256 264.7466666666667L200.7466666666667 320z" />
+    <glyph glyph-name="comment-remove-outline"
+      unicode="&#xF187;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M200.7466666666667 320L256 264.7466666666667L311.2533333333334 320L341.3333333333333 289.92L286.08 234.6666666666667L341.3333333333333 179.4133333333334L311.2533333333334 149.3333333333334L256 204.5866666666667L200.7466666666667 149.3333333333334L170.6666666666667 179.4133333333334L225.92 234.6666666666667L170.6666666666667 289.92L200.7466666666667 320z" />
+    <glyph glyph-name="comment-search"
+      unicode="&#xFA3B;"
+      horiz-adv-x="512" d=" M330.6666666666667 405.3333333333333C384 405.3333333333333 426.6666666666667 362.6666666666667 426.6666666666667 309.3333333333334C426.6666666666667 290.56 421.3333333333333 273.0666666666667 411.9466666666666 258.3466666666667L478.08 192L448 162.3466666666667L381.6533333333333 228.0533333333334C366.9333333333333 218.6666666666667 349.44 213.3333333333334 330.6666666666667 213.3333333333334C277.3333333333333 213.3333333333334 234.6666666666667 256 234.6666666666667 309.3333333333334S277.3333333333333 405.3333333333333 330.6666666666667 405.3333333333333M330.6666666666667 362.6666666666667C301.2266666666667 362.6666666666667 277.3333333333333 338.7733333333333 277.3333333333333 309.3333333333334S301.2266666666667 256 330.6666666666667 256S384 279.8933333333333 384 309.3333333333334S360.1066666666667 362.6666666666667 330.6666666666667 362.6666666666667M85.3333333333333 362.6666666666667H202.6666666666667C196.0533333333333 345.8133333333334 192 327.68 192 309.3333333333334C192 232.7466666666667 254.08 170.6666666666667 330.6666666666667 170.6666666666667C345.1733333333333 170.6666666666667 359.04 173.0133333333333 372.48 177.28L426.6666666666667 123.0933333333334V106.6666666666667C426.6666666666667 83.2 407.4666666666667 64 384 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -18.9866666666667 208.2133333333333 -21.3333333333333 202.6666666666667 -21.3333333333333H192C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667z" />
+    <glyph glyph-name="comment-search-outline"
+      unicode="&#xFA3C;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H202.6666666666667C197.3333333333333 349.0133333333333 193.92 334.7200000000001 192.8533333333333 320H85.3333333333333V106.6666666666667H213.3333333333333V40.96L279.04 106.6666666666667H384V165.76L426.6666666666667 123.0933333333334V106.6666666666667C426.6666666666667 83.2 407.4666666666667 64 384 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V320C42.6666666666667 343.68 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M330.6666666666667 405.3333333333333C384 405.3333333333333 426.6666666666667 362.6666666666667 426.6666666666667 309.3333333333334C426.6666666666667 290.56 421.3333333333333 273.0666666666667 411.9466666666666 258.3466666666667L478.08 192L448 162.3466666666667L381.6533333333333 228.0533333333334C366.9333333333333 218.6666666666667 349.44 213.3333333333334 330.6666666666667 213.3333333333334C277.3333333333333 213.3333333333334 234.6666666666667 256 234.6666666666667 309.3333333333334S277.3333333333333 405.3333333333333 330.6666666666667 405.3333333333333M330.6666666666667 362.6666666666667C301.2266666666667 362.6666666666667 277.3333333333333 338.7733333333333 277.3333333333333 309.3333333333334S301.2266666666667 256 330.6666666666667 256S384 279.8933333333333 384 309.3333333333334S360.1066666666667 362.6666666666667 330.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="comment-text"
+      unicode="&#xF188;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M106.6666666666667 341.3333333333334V298.6666666666667H405.3333333333333V341.3333333333334H106.6666666666667M106.6666666666667 256V213.3333333333334H277.3333333333333V256H106.6666666666667M106.6666666666667 170.6666666666667V128H320V170.6666666666667H106.6666666666667z" />
+    <glyph glyph-name="comment-text-multiple"
+      unicode="&#xF85F;"
+      horiz-adv-x="512" d=" M64 128H21.3333333333333V384C21.3333333333333 407.4666666666667 40.5333333333333 426.6666666666667 64 426.6666666666667H405.3333333333333V384H64V128M256 -42.6666666666666C244.2666666666667 -42.6666666666666 234.6666666666667 -33.0666666666667 234.6666666666667 -21.3333333333333V42.6666666666667H149.3333333333333C125.8666666666667 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V298.6666666666667C106.6666666666667 322.1333333333334 125.8666666666667 341.3333333333334 149.3333333333333 341.3333333333334H448C471.4666666666667 341.3333333333334 490.6666666666666 322.1333333333334 490.6666666666666 298.6666666666667V85.3333333333334C490.6666666666666 61.8666666666667 471.4666666666667 42.6666666666667 448 42.6666666666667H360.5333333333333L281.6 -36.48C277.3333333333333 -40.32 272.2133333333333 -42.6666666666666 266.6666666666667 -42.6666666666666H256M192 256V213.3333333333334H405.3333333333333V256H192M192 170.6666666666667V128H362.6666666666667V170.6666666666667H192z" />
+    <glyph glyph-name="comment-text-multiple-outline"
+      unicode="&#xF860;"
+      horiz-adv-x="512" d=" M256 -42.6666666666666C244.2666666666667 -42.6666666666666 234.6666666666667 -33.0666666666667 234.6666666666667 -21.3333333333333V42.6666666666667H149.3333333333333C125.8666666666667 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V298.6666666666667C106.6666666666667 322.1333333333334 125.8666666666667 341.3333333333334 149.3333333333333 341.3333333333334H448C471.4666666666667 341.3333333333334 490.6666666666666 322.1333333333334 490.6666666666666 298.6666666666667V85.3333333333334C490.6666666666666 61.8666666666667 471.4666666666667 42.6666666666667 448 42.6666666666667H360.5333333333333L281.6 -36.48C277.3333333333333 -40.32 272.2133333333333 -42.6666666666666 266.6666666666667 -42.6666666666666H256M277.3333333333333 85.3333333333334V19.6266666666667L343.04 85.3333333333334H448V298.6666666666667H149.3333333333333V85.3333333333334H277.3333333333333M64 128H21.3333333333333V384C21.3333333333333 407.4666666666667 40.5333333333333 426.6666666666667 64 426.6666666666667H405.3333333333333V384H64V128M192 256H405.3333333333333V213.3333333333334H192V256M192 170.6666666666667H362.6666666666667V128H192V170.6666666666667z" />
+    <glyph glyph-name="comment-text-outline"
+      unicode="&#xF189;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333C180.2666666666667 -21.3333333333333 170.6666666666667 -11.7333333333333 170.6666666666667 0V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H296.5333333333333L217.6 -15.1466666666666C213.3333333333333 -19.2 208 -21.3333333333333 202.6666666666667 -21.3333333333333H192M213.3333333333333 106.6666666666667V40.96L279.04 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V106.6666666666667H213.3333333333333M128 298.6666666666667H384V256H128V298.6666666666667M128 213.3333333333334H320V170.6666666666667H128V213.3333333333334z" />
+    <glyph glyph-name="compare"
+      unicode="&#xF18A;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H298.6666666666667V341.3333333333334H405.3333333333333V64L298.6666666666667 192V0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M213.3333333333333 64H106.6666666666667L213.3333333333333 192M213.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H213.3333333333333V-42.6666666666666H256V426.6666666666667H213.3333333333333V384z" />
+    <glyph glyph-name="compass"
+      unicode="&#xF18B;"
+      horiz-adv-x="512" d=" M302.72 145.28L128 64L209.28 238.72L384 320M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 215.4666666666667C242.9866666666667 215.4666666666667 232.5333333333334 205.0133333333333 232.5333333333334 192C232.5333333333334 178.9866666666667 242.9866666666667 168.5333333333334 256 168.5333333333334C269.0133333333333 168.5333333333334 279.4666666666667 178.9866666666667 279.4666666666667 192C279.4666666666667 205.0133333333333 269.0133333333333 215.4666666666667 256 215.4666666666667z" />
+    <glyph glyph-name="compass-off"
+      unicode="&#xFB5C;"
+      horiz-adv-x="512" d=" M21.3333333333333 373.3333333333334L48.64 400L464 -15.36L437.3333333333333 -42.6666666666666L377.6 16.64C343.04 -7.2533333333333 301.2266666666667 -21.3333333333333 256 -21.3333333333333C138.24 -21.3333333333333 42.6666666666667 74.24 42.6666666666667 192C42.6666666666667 237.2266666666667 56.7466666666667 279.04 80.64 313.6L21.3333333333333 373.3333333333334M128 64L266.0266666666667 128L192 202.0266666666667L128 64M384 320L246.6133333333333 256L135.04 367.7866666666667C169.3866666666667 391.4666666666667 211.2 405.3333333333333 256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192C469.3333333333333 147.2000000000001 455.4666666666667 105.3866666666667 431.7866666666667 71.04L320 182.6133333333334L384 320z" />
+    <glyph glyph-name="compass-off-outline"
+      unicode="&#xFB5D;"
+      horiz-adv-x="512" d=" M21.3333333333333 373.3333333333334L48.64 400L464 -15.36L437.3333333333333 -42.6666666666666L377.6 16.64C343.04 -7.2533333333333 301.2266666666667 -21.3333333333333 256 -21.3333333333333C138.24 -21.3333333333333 42.6666666666667 74.24 42.6666666666667 192C42.6666666666667 237.2266666666667 56.7466666666667 279.04 80.64 313.6L21.3333333333333 373.3333333333334M149.3333333333333 85.3333333333334L200.32 193.92L111.5733333333333 282.88C94.9333333333333 256 85.3333333333333 225.2800000000001 85.3333333333333 192C85.3333333333333 97.7066666666667 161.7066666666667 21.3333333333334 256 21.3333333333334C289.28 21.3333333333334 320 30.9333333333333 346.88 47.5733333333334L257.92 136.3200000000001L149.3333333333333 85.3333333333334M362.6666666666667 298.6666666666667L311.8933333333333 190.9333333333333L254.9333333333334 247.8933333333333L362.6666666666667 298.6666666666667M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192C469.3333333333333 147.2000000000001 455.4666666666667 105.3866666666667 431.7866666666667 71.04L401.0666666666666 101.9733333333333C417.28 128 426.6666666666667 158.9333333333333 426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667C222.9333333333333 362.6666666666667 192 353.28 165.9733333333333 337.0666666666667L135.04 367.7866666666667C169.3866666666667 391.4666666666667 211.2 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="compass-outline"
+      unicode="&#xF18C;"
+      horiz-adv-x="512" d=" M149.3333333333333 85.3333333333334L217.6 230.4000000000001L362.6666666666667 298.6666666666667L294.4 153.6L149.3333333333333 85.3333333333334M256 211.2C245.3333333333333 211.2 236.8 202.6666666666667 236.8 192S245.3333333333333 172.8 256 172.8S275.2 181.3333333333334 275.2 192S266.6666666666667 211.2 256 211.2M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="console"
+      unicode="&#xF18D;"
+      horiz-adv-x="512" d=" M426.6666666666667 42.6666666666667V298.6666666666667H85.3333333333333V42.6666666666667H426.6666666666667M426.6666666666667 384C450.1333333333334 384 469.3333333333333 364.8 469.3333333333333 341.3333333333334V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V341.3333333333334C42.6666666666667 365.0133333333333 61.8666666666667 384 85.3333333333333 384H426.6666666666667M277.3333333333333 85.3333333333334V128H384V85.3333333333334H277.3333333333333M204.3733333333333 170.6666666666667L118.8266666666667 256H179.2L249.6 185.6C257.92 177.28 257.92 163.6266666666667 249.6 155.3066666666667L179.6266666666667 85.3333333333334H119.2533333333333L204.3733333333333 170.6666666666667z" />
+    <glyph glyph-name="console-line"
+      unicode="&#xF7B6;"
+      horiz-adv-x="512" d=" M277.3333333333333 42.6666666666667V106.6666666666667H448V42.6666666666667H277.3333333333333M181.3333333333333 170.6666666666667L52.6933333333333 298.6666666666667H143.1466666666667L248.9600000000001 193.0666666666667C261.3333333333334 180.48 261.3333333333334 160 248.9600000000001 147.84L143.7866666666667 42.6666666666667H53.3333333333333L181.3333333333333 170.6666666666667z" />
+    <glyph glyph-name="console-network"
+      unicode="&#xF8A8;"
+      horiz-adv-x="512" d=" M362.6666666666667 405.3333333333333C386.1333333333334 405.3333333333333 405.3333333333333 386.1333333333334 405.3333333333333 362.6666666666667V149.3333333333334C405.3333333333333 125.8666666666667 386.1333333333334 106.6666666666667 362.6666666666667 106.6666666666667H277.3333333333333V64H298.6666666666667C310.4 64 320 54.4 320 42.6666666666667H469.3333333333333V0H320C320 -11.7333333333333 310.4 -21.3333333333333 298.6666666666667 -21.3333333333333H213.3333333333333C201.6 -21.3333333333333 192 -11.7333333333333 192 0H42.6666666666667V42.6666666666667H192C192 54.4 201.6 64 213.3333333333333 64H234.6666666666667V106.6666666666667H149.3333333333333C125.8666666666667 106.6666666666667 106.6666666666667 125.8666666666667 106.6666666666667 149.3333333333334V362.6666666666667C106.6666666666667 386.1333333333334 125.8666666666667 405.3333333333333 149.3333333333333 405.3333333333333H362.6666666666667M149.3333333333333 320L234.6666666666667 234.6666666666667L149.3333333333333 149.3333333333334H210.1333333333333L280.1066666666667 219.3066666666667C288 227.6266666666667 288 241.0666666666667 280.1066666666667 249.6L209.7066666666667 320H149.3333333333333M362.6666666666667 192H298.6666666666667V149.3333333333334H362.6666666666667V192z" />
+    <glyph glyph-name="contact-mail"
+      unicode="&#xF18E;"
+      horiz-adv-x="512" d=" M448 277.3333333333334V298.6666666666667L384 256L320 298.6666666666667V277.3333333333334L384 234.6666666666667M469.3333333333333 384H42.6666666666667C19.2 384 0 364.8 0 341.3333333333334V42.6666666666667C0 19.2 19.2 0 42.6666666666667 0H469.3333333333333C492.8 0 512 19.2 512 42.6666666666667V341.3333333333334C512 364.8 492.8 384 469.3333333333333 384M170.6666666666667 320C206.08 320 234.6666666666667 291.4133333333334 234.6666666666667 256S206.08 192 170.6666666666667 192S106.6666666666667 220.5866666666667 106.6666666666667 256S135.2533333333333 320 170.6666666666667 320M298.6666666666667 64H42.6666666666667V85.3333333333334C42.6666666666667 128 128 151.4666666666667 170.6666666666667 151.4666666666667S298.6666666666667 128 298.6666666666667 85.3333333333334M469.3333333333333 192H298.6666666666667V320H469.3333333333333" />
+    <glyph glyph-name="contacts"
+      unicode="&#xF6CA;"
+      horiz-adv-x="512" d=" M426.6666666666667 448H85.3333333333333V405.3333333333333H426.6666666666667V448M85.3333333333333 -64H426.6666666666667V-21.3333333333333H85.3333333333333V-64M426.6666666666667 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.4666666666667 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667M256 304C282.4533333333333 304 304 282.4533333333334 304 256S282.4533333333333 208 256 208S208 229.5466666666667 208 256S229.5466666666667 304 256 304M362.6666666666667 85.3333333333334H149.3333333333333V117.3333333333334C149.3333333333333 152.96 220.3733333333333 170.6666666666667 256 170.6666666666667S362.6666666666667 152.96 362.6666666666667 117.3333333333334V85.3333333333334z" />
+    <glyph glyph-name="contain"
+      unicode="&#xFA3D;"
+      horiz-adv-x="512" d=" M42.6666666666667 384H170.6666666666667V341.3333333333334H85.3333333333333V42.6666666666667H170.6666666666667V0H42.6666666666667V384M149.3333333333333 85.3333333333334V128H192V85.3333333333334H149.3333333333333M234.6666666666667 85.3333333333334V128H277.3333333333333V85.3333333333334H234.6666666666667M320 85.3333333333334V128H362.6666666666667V85.3333333333334H320M469.3333333333333 384V0H341.3333333333333V42.6666666666667H426.6666666666667V341.3333333333334H341.3333333333333V384H469.3333333333333z" />
+    <glyph glyph-name="contain-end"
+      unicode="&#xFA3E;"
+      horiz-adv-x="512" d=" M149.3333333333333 85.3333333333334V128H192V85.3333333333334H149.3333333333333M234.6666666666667 85.3333333333334V128H277.3333333333333V85.3333333333334H234.6666666666667M320 85.3333333333334V128H362.6666666666667V85.3333333333334H320M469.3333333333333 384V0H341.3333333333333V42.6666666666667H426.6666666666667V341.3333333333334H341.3333333333333V384H469.3333333333333z" />
+    <glyph glyph-name="contain-start"
+      unicode="&#xFA3F;"
+      horiz-adv-x="512" d=" M42.6666666666667 384H170.6666666666667V341.3333333333334H85.3333333333333V42.6666666666667H170.6666666666667V0H42.6666666666667V384M149.3333333333333 85.3333333333334V128H192V85.3333333333334H149.3333333333333M234.6666666666667 85.3333333333334V128H277.3333333333333V85.3333333333334H234.6666666666667M320 85.3333333333334V128H362.6666666666667V85.3333333333334H320z" />
+    <glyph glyph-name="content-copy"
+      unicode="&#xF18F;"
+      horiz-adv-x="512" d=" M405.3333333333333 0H170.6666666666667V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H170.6666666666667C147.2 341.3333333333334 128 322.1333333333334 128 298.6666666666667V0C128 -23.4666666666667 147.2 -42.6666666666666 170.6666666666667 -42.6666666666666H405.3333333333333C428.8 -42.6666666666666 448 -23.4666666666667 448 0V298.6666666666667C448 322.1333333333334 428.8 341.3333333333334 405.3333333333333 341.3333333333334M341.3333333333333 426.6666666666667H85.3333333333333C61.8666666666667 426.6666666666667 42.6666666666667 407.4666666666667 42.6666666666667 384V85.3333333333334H85.3333333333333V384H341.3333333333333V426.6666666666667z" />
+    <glyph glyph-name="content-cut"
+      unicode="&#xF190;"
+      horiz-adv-x="512" d=" M405.3333333333333 384L277.3333333333333 256L320 213.3333333333334L469.3333333333333 362.6666666666667V384M256 181.3333333333334C250.0266666666667 181.3333333333334 245.3333333333333 186.0266666666667 245.3333333333333 192S250.0266666666667 202.6666666666667 256 202.6666666666667S266.6666666666667 197.9733333333333 266.6666666666667 192S261.9733333333333 181.3333333333334 256 181.3333333333334M128 21.3333333333334C104.5333333333333 21.3333333333334 85.3333333333333 40.5333333333333 85.3333333333333 64C85.3333333333333 87.68 104.5333333333333 106.6666666666667 128 106.6666666666667S170.6666666666667 87.4666666666667 170.6666666666667 64C170.6666666666667 40.3200000000001 151.4666666666667 21.3333333333334 128 21.3333333333334M128 277.3333333333334C104.5333333333333 277.3333333333334 85.3333333333333 296.5333333333334 85.3333333333333 320C85.3333333333333 343.68 104.5333333333333 362.6666666666667 128 362.6666666666667S170.6666666666667 343.4666666666667 170.6666666666667 320C170.6666666666667 296.32 151.4666666666667 277.3333333333334 128 277.3333333333334M205.6533333333333 285.0133333333333C210.56 295.68 213.3333333333333 307.4133333333334 213.3333333333333 320C213.3333333333333 367.1466666666667 175.1466666666667 405.3333333333333 128 405.3333333333333S42.6666666666667 367.1466666666667 42.6666666666667 320S80.8533333333333 234.6666666666667 128 234.6666666666667C140.5866666666667 234.6666666666667 152.32 237.4400000000001 162.9866666666667 242.3466666666667L213.3333333333333 192L162.9866666666667 141.6533333333334C152.32 146.56 140.5866666666667 149.3333333333334 128 149.3333333333334C80.8533333333333 149.3333333333334 42.6666666666667 111.1466666666667 42.6666666666667 64S80.8533333333333 -21.3333333333333 128 -21.3333333333333S213.3333333333333 16.8533333333334 213.3333333333333 64C213.3333333333333 76.5866666666667 210.56 88.3200000000001 205.6533333333333 98.9866666666667L256 149.3333333333334L405.3333333333333 0H469.3333333333333V21.3333333333334L205.6533333333333 285.0133333333333z" />
+    <glyph glyph-name="content-duplicate"
+      unicode="&#xF191;"
+      horiz-adv-x="512" d=" M234.6666666666667 85.3333333333334H85.3333333333333C61.8666666666667 85.3333333333334 42.6666666666667 104.5333333333333 42.6666666666667 128V384C42.6666666666667 407.4666666666667 61.8666666666667 426.6666666666667 85.3333333333333 426.6666666666667H341.3333333333333V384H85.3333333333333V128H234.6666666666667V170.6666666666667L320 106.6666666666667L234.6666666666667 42.6666666666667V85.3333333333334M405.3333333333333 0V298.6666666666667H170.6666666666667V170.6666666666667H128V298.6666666666667C128 322.1333333333334 147.2 341.3333333333334 170.6666666666667 341.3333333333334H405.3333333333333C428.8 341.3333333333334 448 322.1333333333334 448 298.6666666666667V0C448 -23.4666666666667 428.8 -42.6666666666666 405.3333333333333 -42.6666666666666H170.6666666666667C147.2 -42.6666666666666 128 -23.4666666666667 128 0V42.6666666666667H170.6666666666667V0H405.3333333333333z" />
+    <glyph glyph-name="content-paste"
+      unicode="&#xF192;"
+      horiz-adv-x="512" d=" M405.3333333333333 21.3333333333334H106.6666666666667V362.6666666666667H149.3333333333333V298.6666666666667H362.6666666666667V362.6666666666667H405.3333333333333M256 405.3333333333333C267.7333333333334 405.3333333333333 277.3333333333333 395.7333333333334 277.3333333333333 384S267.7333333333334 362.6666666666667 256 362.6666666666667S234.6666666666667 372.2666666666667 234.6666666666667 384S244.2666666666667 405.3333333333333 256 405.3333333333333M405.3333333333333 405.3333333333333H316.16C307.2 430.08 283.7333333333334 448 256 448C228.2666666666667 448 204.8 430.08 195.84 405.3333333333333H106.6666666666667C83.2 405.3333333333333 64 386.1333333333334 64 362.6666666666667V21.3333333333334C64 -2.1333333333333 83.2 -21.3333333333333 106.6666666666667 -21.3333333333333H405.3333333333333C428.8 -21.3333333333333 448 -2.1333333333333 448 21.3333333333334V362.6666666666667C448 386.1333333333334 428.8 405.3333333333333 405.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="content-save"
+      unicode="&#xF193;"
+      horiz-adv-x="512" d=" M320 256H106.6666666666667V341.3333333333334H320M256 42.6666666666667C220.5866666666667 42.6666666666667 192 71.2533333333333 192 106.6666666666667S220.5866666666667 170.6666666666667 256 170.6666666666667S320 142.0800000000001 320 106.6666666666667S291.4133333333333 42.6666666666667 256 42.6666666666667M362.6666666666667 384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V298.6666666666667L362.6666666666667 384z" />
+    <glyph glyph-name="content-save-all"
+      unicode="&#xF194;"
+      horiz-adv-x="512" d=" M362.6666666666667 298.6666666666667V384H149.3333333333333V298.6666666666667H362.6666666666667M298.6666666666667 85.3333333333334C334.08 85.3333333333334 362.6666666666667 113.92 362.6666666666667 149.3333333333334S334.08 213.3333333333334 298.6666666666667 213.3333333333334S234.6666666666667 184.7466666666667 234.6666666666667 149.3333333333334S263.2533333333334 85.3333333333334 298.6666666666667 85.3333333333334M405.3333333333333 426.6666666666667L490.6666666666666 341.3333333333334V85.3333333333334C490.6666666666666 61.8666666666667 471.4666666666667 42.6666666666667 448 42.6666666666667H149.3333333333333C125.6533333333333 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V384C106.6666666666667 407.4666666666667 125.8666666666667 426.6666666666667 149.3333333333333 426.6666666666667H405.3333333333333M21.3333333333333 298.6666666666667H64V0H362.6666666666667V-42.6666666666666H64C40.5333333333333 -42.6666666666666 21.3333333333333 -23.4666666666667 21.3333333333333 0V298.6666666666667z" />
+    <glyph glyph-name="content-save-outline"
+      unicode="&#xF817;"
+      horiz-adv-x="512" d=" M320 341.3333333333334V256H106.6666666666667V42.6666666666667H199.4666666666667C181.3333333333333 58.24 170.6666666666667 81.28 170.6666666666667 106.6666666666667C170.6666666666667 153.8133333333334 208.8533333333333 192 256 192S341.3333333333333 153.8133333333334 341.3333333333333 106.6666666666667C341.3333333333333 81.28 330.6666666666667 58.24 312.5333333333333 42.6666666666667H405.3333333333333V280.9600000000001L344.9600000000001 341.3333333333334H320M106.6666666666667 298.6666666666667H277.3333333333333V341.3333333333334H106.6666666666667V298.6666666666667M362.6666666666667 384L448 298.6666666666667V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H362.6666666666667M256 149.3333333333334C232.5333333333334 149.3333333333334 213.3333333333333 130.1333333333333 213.3333333333333 106.6666666666667S232.5333333333334 64 256 64S298.6666666666667 83.2 298.6666666666667 106.6666666666667S279.4666666666667 149.3333333333334 256 149.3333333333334z" />
+    <glyph glyph-name="content-save-settings"
+      unicode="&#xF61B;"
+      horiz-adv-x="512" d=" M320 277.3333333333334V362.6666666666667H106.6666666666667V277.3333333333334H320M256 64C291.4133333333333 64 320 92.5866666666667 320 128S291.4133333333333 192 256 192S192 163.4133333333334 192 128S220.5866666666667 64 256 64M362.6666666666667 405.3333333333333L448 320V64C448 40.5333333333333 428.8 21.3333333333334 405.3333333333333 21.3333333333334H106.6666666666667C82.9866666666667 21.3333333333334 64 40.5333333333333 64 64V362.6666666666667C64 386.1333333333334 83.2 405.3333333333333 106.6666666666667 405.3333333333333H362.6666666666667M234.6666666666667 -21.3333333333333H277.3333333333333V-64H234.6666666666667V-21.3333333333333M149.3333333333333 -21.3333333333333H192V-64H149.3333333333333V-21.3333333333333M320 -21.3333333333333H362.6666666666667V-64H320V-21.3333333333333z" />
+    <glyph glyph-name="content-save-settings-outline"
+      unicode="&#xFB13;"
+      horiz-adv-x="512" d=" M320 362.6666666666667V277.3333333333334H106.6666666666667V64H199.4666666666667C181.3333333333333 79.5733333333334 170.6666666666667 102.6133333333334 170.6666666666667 128C170.6666666666667 175.1466666666667 208.8533333333333 213.3333333333334 256 213.3333333333334S341.3333333333333 175.1466666666667 341.3333333333333 128C341.3333333333333 102.6133333333334 330.6666666666667 79.5733333333334 312.5333333333333 64H405.3333333333333V302.2933333333334L344.9600000000001 362.6666666666667H320M106.6666666666667 320H277.3333333333333V362.6666666666667H106.6666666666667V320M362.6666666666667 405.3333333333333L448 320V64C448 40.5333333333333 428.8 21.3333333333334 405.3333333333333 21.3333333333334H106.6666666666667C82.9866666666667 21.3333333333334 64 40.5333333333333 64 64V362.6666666666667C64 386.1333333333334 83.2 405.3333333333333 106.6666666666667 405.3333333333333H362.6666666666667M256 170.6666666666667C232.5333333333334 170.6666666666667 213.3333333333333 151.4666666666667 213.3333333333333 128S232.5333333333334 85.3333333333334 256 85.3333333333334S298.6666666666667 104.5333333333333 298.6666666666667 128S279.4666666666667 170.6666666666667 256 170.6666666666667M149.3333333333333 -21.3333333333333H192V-64H149.3333333333333V-21.3333333333333M234.6666666666667 -21.3333333333333H277.3333333333333V-64H234.6666666666667V-21.3333333333333M320 -21.3333333333333H362.6666666666667V-64H320V-21.3333333333333z" />
+    <glyph glyph-name="contrast"
+      unicode="&#xF195;"
+      horiz-adv-x="512" d=" M93.44 2.1333333333334C80.64 6.1866666666667 70.4 16.4266666666667 66.1333333333333 29.2266666666667L418.7733333333333 381.8666666666667C431.5733333333333 377.6 441.8133333333334 367.36 445.8666666666666 354.56L93.44 2.1333333333334M426.6666666666667 106.6666666666667V64H277.3333333333333V106.6666666666667H426.6666666666667M64 320H128V384H170.6666666666667V320H234.6666666666667V277.3333333333334H170.6666666666667V213.3333333333334H128V277.3333333333334H64V320z" />
+    <glyph glyph-name="contrast-box"
+      unicode="&#xF196;"
+      horiz-adv-x="512" d=" M362.6666666666667 117.3333333333334H256V85.3333333333334H362.6666666666667M405.3333333333333 42.6666666666667H106.6666666666667L405.3333333333333 341.3333333333334M117.3333333333333 288H160V330.6666666666667H192V288H234.6666666666667V256H192V213.3333333333334H160V256H117.3333333333333M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="contrast-circle"
+      unicode="&#xF197;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C208.8533333333333 21.3333333333334 166.1866666666667 40.5333333333333 135.2533333333333 71.2533333333333L376.7466666666667 312.7466666666667C407.4666666666667 281.8133333333334 426.6666666666667 239.1466666666667 426.6666666666667 192C426.6666666666667 97.7066666666667 350.2933333333334 21.3333333333334 256 21.3333333333334M128 277.3333333333334H170.6666666666667V320H202.6666666666667V277.3333333333334H245.3333333333333V245.3333333333334H202.6666666666667V202.6666666666667H170.6666666666667V245.3333333333334H128M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 106.6666666666667H362.6666666666667V138.6666666666667H256V106.6666666666667z" />
+    <glyph glyph-name="controller-classic"
+      unicode="&#xFB5E;"
+      horiz-adv-x="512" d=" M128 298.6666666666667H384C442.88 298.6666666666667 490.6666666666666 250.88 490.6666666666666 192S442.88 85.3333333333334 384 85.3333333333334C349.0133333333333 85.3333333333334 318.08 102.1866666666667 298.6666666666667 128H213.3333333333333C193.92 102.1866666666667 162.9866666666667 85.3333333333334 128 85.3333333333334C69.12 85.3333333333334 21.3333333333333 133.12 21.3333333333333 192S69.12 298.6666666666667 128 298.6666666666667M421.3333333333333 245.3333333333334C406.6133333333333 245.3333333333334 394.6666666666667 233.3866666666667 394.6666666666667 218.6666666666667S406.6133333333333 192 421.3333333333333 192S448 203.9466666666667 448 218.6666666666667S436.0533333333334 245.3333333333334 421.3333333333333 245.3333333333334M368 192C353.28 192 341.3333333333333 180.0533333333334 341.3333333333333 165.3333333333334S353.28 138.6666666666667 368 138.6666666666667S394.6666666666667 150.6133333333334 394.6666666666667 165.3333333333334S382.7200000000001 192 368 192M106.6666666666667 256V213.3333333333334H64V170.6666666666667H106.6666666666667V128H149.3333333333333V170.6666666666667H192V213.3333333333334H149.3333333333333V256H106.6666666666667z" />
+    <glyph glyph-name="controller-classic-outline"
+      unicode="&#xFB5F;"
+      horiz-adv-x="512" d=" M373.3333333333333 298.6666666666667C438.1866666666666 298.6666666666667 490.6666666666666 246.1866666666667 490.6666666666666 181.3333333333334S438.1866666666666 64 373.3333333333333 64C336.8533333333333 64 304.4266666666666 80.64 282.88 106.6666666666667H229.12C207.5733333333333 80.64 175.1466666666667 64 138.6666666666667 64C73.8133333333333 64 21.3333333333333 116.48 21.3333333333333 181.3333333333334S73.8133333333333 298.6666666666667 138.6666666666667 298.6666666666667H373.3333333333333M138.6666666666667 256C97.4933333333333 256 64 222.5066666666667 64 181.3333333333334S97.4933333333333 106.6666666666667 138.6666666666667 106.6666666666667C168.5333333333333 106.6666666666667 194.1333333333333 124.16 206.08 149.3333333333334H305.92C317.8666666666667 124.16 343.4666666666667 106.6666666666667 373.3333333333333 106.6666666666667C414.5066666666667 106.6666666666667 448 140.16 448 181.3333333333334S414.5066666666667 256 373.3333333333333 256H138.6666666666667M122.6666666666667 229.3333333333334H154.6666666666667V197.3333333333334H186.6666666666667V165.3333333333334H154.6666666666667V133.3333333333334H122.6666666666667V165.3333333333334H90.6666666666667V197.3333333333334H122.6666666666667V229.3333333333334M357.3333333333333 181.3333333333334C369.0666666666667 181.3333333333334 378.6666666666667 171.7333333333334 378.6666666666667 160S369.0666666666667 138.6666666666667 357.3333333333333 138.6666666666667S336 148.2666666666667 336 160S345.6 181.3333333333334 357.3333333333333 181.3333333333334M400 224C411.7333333333334 224 421.3333333333333 214.4 421.3333333333333 202.6666666666667S411.7333333333334 181.3333333333334 400 181.3333333333334S378.6666666666667 190.9333333333333 378.6666666666667 202.6666666666667S388.2666666666667 224 400 224z" />
+    <glyph glyph-name="cookie"
+      unicode="&#xF198;"
+      horiz-adv-x="512" d=" M256 384C149.9733333333333 384 64 298.0266666666667 64 192S149.9733333333333 0 256 0S448 85.9733333333334 448 192C448 202.6666666666667 447.1466666666667 213.3333333333334 445.2266666666667 224C439.4666666666667 234.6666666666667 426.6666666666667 234.6666666666667 426.6666666666667 234.6666666666667H384V256C384 277.3333333333334 362.6666666666667 277.3333333333334 362.6666666666667 277.3333333333334H320V298.6666666666667C320 320 298.6666666666667 320 298.6666666666667 320H277.3333333333333V362.6666666666667C277.3333333333333 384 256 384 256 384M202.6666666666667 320C220.3733333333333 320 234.6666666666667 305.7066666666667 234.6666666666667 288S220.3733333333333 256 202.6666666666667 256S170.6666666666667 270.2933333333334 170.6666666666667 288S184.96 320 202.6666666666667 320M138.6666666666667 234.6666666666667C156.3733333333333 234.6666666666667 170.6666666666667 220.3733333333333 170.6666666666667 202.6666666666667S156.3733333333333 170.6666666666667 138.6666666666667 170.6666666666667S106.6666666666667 184.96 106.6666666666667 202.6666666666667S120.96 234.6666666666667 138.6666666666667 234.6666666666667M245.3333333333333 213.3333333333334C263.04 213.3333333333334 277.3333333333333 199.04 277.3333333333333 181.3333333333334S263.04 149.3333333333334 245.3333333333333 149.3333333333334S213.3333333333333 163.6266666666667 213.3333333333333 181.3333333333334S227.6266666666667 213.3333333333334 245.3333333333333 213.3333333333334M352 170.6666666666667C369.7066666666666 170.6666666666667 384 156.3733333333333 384 138.6666666666667S369.7066666666666 106.6666666666667 352 106.6666666666667S320 120.96 320 138.6666666666667S334.2933333333333 170.6666666666667 352 170.6666666666667M234.6666666666667 106.6666666666667C252.3733333333334 106.6666666666667 266.6666666666667 92.3733333333333 266.6666666666667 74.6666666666667S252.3733333333334 42.6666666666667 234.6666666666667 42.6666666666667S202.6666666666667 56.96 202.6666666666667 74.6666666666667S216.96 106.6666666666667 234.6666666666667 106.6666666666667z" />
+    <glyph glyph-name="copyright"
+      unicode="&#xF5E6;"
+      horiz-adv-x="512" d=" M215.04 216.32C216.1066666666667 223.36 218.4533333333333 229.5466666666667 221.44 234.6666666666667C224 240.2133333333334 228.6933333333334 244.6933333333334 234.0266666666667 248.1066666666667C239.1466666666667 251.3066666666667 245.3333333333333 252.8000000000001 253.44 253.0133333333334C258.3466666666667 252.8000000000001 262.8266666666667 251.9466666666667 266.6666666666667 250.24C271.1466666666667 248.32 274.9866666666667 245.3333333333334 277.9733333333333 242.5600000000001C280.96 239.36 283.3066666666666 235.5200000000001 285.2266666666667 231.2533333333334C287.1466666666667 226.9866666666668 288 222.2933333333334 288 217.6H326.4C325.9733333333334 227.6266666666667 324.0533333333334 236.8000000000001 320 245.3333333333334C316.8 253.4400000000001 311.8933333333333 260.6933333333334 305.4933333333334 266.6666666666668C298.6666666666667 272.6400000000001 291.4133333333333 277.3333333333334 282.4533333333333 280.7466666666668C273.4933333333334 284.1600000000001 263.68 285.6533333333334 252.8 285.6533333333334C238.9333333333333 285.6533333333334 226.7733333333333 283.3066666666668 216.5333333333333 278.4000000000001C206.2933333333333 273.4933333333334 197.76 266.6666666666668 190.9333333333333 258.7733333333335C184.1066666666667 250.4533333333334 178.9866666666667 240.8533333333334 175.7866666666667 229.7600000000001C172.5866666666667 218.6666666666668 170.6666666666667 207.1466666666667 170.6666666666667 194.7733333333334V189.0133333333334C170.6666666666667 176.6400000000001 172.3733333333334 165.1200000000001 175.5733333333334 154.0266666666668C178.7733333333334 142.9333333333334 183.8933333333334 133.3333333333334 190.72 125.2266666666668C197.5466666666667 117.3333333333334 206.0800000000001 110.5066666666668 216.32 105.8133333333335C226.56 101.1200000000001 238.7200000000001 98.5600000000001 252.5866666666667 98.5600000000001C262.6133333333334 98.5600000000001 272 100.2666666666668 280.7466666666667 103.4666666666668C289.4933333333334 106.6666666666668 297.1733333333333 111.1466666666668 303.7866666666667 117.3333333333335C310.4 122.6666666666668 315.7333333333334 129.2800000000002 320 136.9600000000002C323.4133333333333 144.6400000000001 325.76 152.7466666666668 325.9733333333333 161.4933333333335H288C288 157.0133333333334 286.5066666666667 152.9600000000002 284.5866666666667 149.3333333333335C282.6666666666667 145.2800000000002 280.1066666666667 142.0800000000002 277.3333333333333 139.3066666666668C273.7066666666667 136.5333333333334 270.08 134.4000000000001 265.8133333333334 132.9066666666668C261.76 131.4133333333334 257.4933333333334 130.9866666666668 253.0133333333334 130.7733333333334C245.3333333333334 130.9866666666668 238.9333333333334 132.4800000000001 234.0266666666667 135.6800000000001C228.6933333333334 138.6666666666668 224 143.5733333333334 221.44 149.3333333333335C218.4533333333333 154.2400000000001 216.1066666666667 160.6400000000001 215.04 167.6800000000001C213.9733333333333 174.7200000000002 213.3333333333333 181.9733333333335 213.3333333333333 189.0133333333334V194.7733333333334C213.3333333333333 202.6666666666668 213.9733333333333 209.2800000000001 215.04 216.3200000000001M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 21.3333333333334C161.92 21.3333333333334 85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667S426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334z" />
+    <glyph glyph-name="cordova"
+      unicode="&#xF957;"
+      horiz-adv-x="512" d=" M430.5066666666667 -11.7333333333333H361.3866666666666L366.2933333333333 46.5066666666667H332.3733333333333L327.4666666666666 -11.7333333333333H184.5333333333333L179.6266666666666 46.5066666666667H145.7066666666667L150.6133333333334 -11.7333333333333H81.4933333333333L42.6666666666667 240.4266666666667L139.7333333333333 395.7333333333334H372.2666666666667L469.3333333333333 240.4266666666667L430.5066666666667 -11.7333333333333M353.0666666666667 318.0800000000001H290.56L294.8266666666667 289.0666666666667H217.1733333333333L221.44 318.0800000000001H158.9333333333333L120.32 240.4266666666667L139.7333333333333 85.3333333333334H372.2666666666667L391.68 240.4266666666667L353.0666666666667 318.0800000000001M318.9333333333334 136.7466666666667C313.6 136.7466666666667 309.3333333333334 152.96 309.3333333333334 172.8C309.3333333333334 192.8533333333333 313.6 209.0666666666667 318.9333333333334 209.0666666666667C324.48 209.0666666666667 328.7466666666667 192.8533333333333 328.7466666666667 172.8C328.7466666666667 152.96 324.48 136.7466666666667 318.9333333333334 136.7466666666667M196.6933333333333 133.76C191.1466666666667 133.76 186.88 149.9733333333334 186.88 169.8133333333333C186.88 189.8666666666667 191.1466666666667 205.8666666666667 196.6933333333333 205.8666666666667C202.0266666666667 205.8666666666667 206.2933333333333 189.8666666666667 206.2933333333333 169.8133333333333C206.2933333333333 149.9733333333334 202.0266666666667 133.76 196.6933333333333 133.76z" />
+    <glyph glyph-name="corn"
+      unicode="&#xF7B7;"
+      horiz-adv-x="512" d=" M234.6666666666667 192H188.16C205.2266666666667 181.3333333333334 220.8 169.1733333333334 234.6666666666667 156.16V192M149.3333333333333 213.3333333333334C155.0933333333333 322.56 199.8933333333334 405.3333333333333 256 405.3333333333333C312.7466666666667 405.3333333333333 357.76 321.2800000000001 362.6666666666667 210.7733333333334C394.6666666666667 225.4933333333334 430.2933333333334 234.6666666666667 469.3333333333333 234.6666666666667C346.6666666666667 179.84 389.3333333333333 -21.3333333333333 256 -21.3333333333333C128 -21.3333333333333 169.1733333333333 179.84 42.6666666666667 234.6666666666667C81.4933333333333 234.6666666666667 117.3333333333333 226.1333333333334 149.3333333333333 213.3333333333334M234.6666666666667 213.3333333333334V256H175.7866666666667L171.3066666666667 213.3333333333334H234.6666666666667M234.6666666666667 277.3333333333334V320H193.0666666666667C187.7333333333334 307.2000000000001 183.4666666666667 292.9066666666667 179.84 277.3333333333334H234.6666666666667M234.6666666666667 341.3333333333334V377.6C222.9333333333333 370.56 212.2666666666667 357.9733333333334 202.6666666666667 341.3333333333334H234.6666666666667M256 384V341.3333333333334H277.3333333333333V320H256V277.3333333333334H298.6666666666667V256H256V213.3333333333334H320V192H256V149.3333333333334H298.6666666666667V128H260.9066666666667C286.2933333333333 97.0666666666667 301.8666666666667 64 305.4933333333334 37.76C326.6133333333334 73.3866666666667 340.48 131.4133333333334 341.3333333333333 197.12C340.0533333333333 298.6666666666667 301.44 384 256 384z" />
+    <glyph glyph-name="counter"
+      unicode="&#xF199;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M85.3333333333333 320V64H234.6666666666667V320H85.3333333333333M426.6666666666667 64V320H400.2133333333334C405.3333333333333 308.48 404.2666666666667 297.1733333333334 404.2666666666667 295.8933333333333C402.7733333333334 281.6 392.7466666666668 266.6666666666667 389.12 261.3333333333334L339.4133333333334 206.9333333333333L410.24 207.36L410.4533333333334 181.3333333333333L299.5200000000001 181.9733333333333L298.6666666666668 203.3066666666666S363.7333333333334 272.2133333333333 366.9333333333334 278.4C369.9200000000001 284.3733333333333 382.0800000000001 320 352.0000000000001 320C325.7600000000001 318.9333333333333 328.7466666666668 292.2666666666667 328.7466666666668 292.2666666666667L295.8933333333335 292.0533333333333S296.1066666666668 306.1333333333334 304.0000000000001 320H277.3333333333333V64H332.3733333333334L332.16 82.3466666666667L352.8533333333333 82.5600000000001S372.2666666666667 85.9733333333334 372.48 104.96C373.3333333333333 126.2933333333334 355.2000000000001 126.2933333333334 352 126.2933333333334C349.2266666666667 126.2933333333334 329.1733333333333 125.2266666666667 329.1733333333333 107.7333333333334H296.7466666666667S297.6 151.6800000000001 352 151.6800000000001C407.4666666666667 151.6800000000001 404.48 108.5866666666668 404.48 108.5866666666668S405.3333333333333 81.9200000000001 380.8 71.8933333333334L391.8933333333333 64.0000000000001H426.6666666666667M190.2933333333333 106.6666666666667H158.2933333333333V230.4000000000001L119.8933333333333 218.4533333333334V244.6933333333334L186.88 268.5866666666667H190.2933333333333V106.6666666666667z" />
+    <glyph glyph-name="cow"
+      unicode="&#xF19A;"
+      horiz-adv-x="512" d=" M224 64C229.9733333333333 64 234.6666666666667 59.3066666666667 234.6666666666667 53.3333333333334S229.9733333333333 42.6666666666667 224 42.6666666666667S213.3333333333333 47.36 213.3333333333333 53.3333333333334S218.0266666666667 64 224 64M288 64C293.9733333333333 64 298.6666666666667 59.3066666666667 298.6666666666667 53.3333333333334S293.9733333333333 42.6666666666667 288 42.6666666666667S277.3333333333333 47.36 277.3333333333333 53.3333333333334S282.0266666666667 64 288 64M213.3333333333333 213.3333333333334C225.0666666666667 213.3333333333334 234.6666666666667 203.7333333333334 234.6666666666667 192S225.0666666666667 170.6666666666667 213.3333333333333 170.6666666666667S192 180.2666666666667 192 192S201.6 213.3333333333334 213.3333333333333 213.3333333333334M298.6666666666667 213.3333333333334C310.4 213.3333333333334 320 203.7333333333334 320 192S310.4 170.6666666666667 298.6666666666667 170.6666666666667S277.3333333333333 180.2666666666667 277.3333333333333 192S286.9333333333333 213.3333333333334 298.6666666666667 213.3333333333334M384 64C384 16.8533333333334 326.6133333333334 -21.3333333333333 256 -21.3333333333333S128 16.8533333333334 128 64C128 83.2 137.6 100.9066666666667 153.6 115.2000000000001C137.6 136.5333333333334 128 163.2000000000001 128 192L130.56 218.0266666666667C119.04 214.8266666666667 105.1733333333333 214.8266666666667 93.8666666666667 218.0266666666667C72.1066666666667 224 39.2533333333333 248.5333333333334 44.16 265.6C49.0666666666667 282.6666666666667 89.8133333333334 285.8666666666667 111.5733333333333 279.4666666666667C124.16 275.8400000000001 137.6 266.6666666666668 145.4933333333334 256.8533333333334L157.6533333333333 274.1333333333334C144.8533333333333 297.6 149.3333333333333 362.6666666666667 213.3333333333333 384L211.4133333333333 381.0133333333333C205.44 371.6266666666667 190.08 341.9733333333334 206.2933333333333 309.9733333333334C221.6533333333333 316.3733333333334 238.2933333333333 320 256 320C273.7066666666667 320 290.3466666666667 316.3733333333334 305.7066666666667 309.9733333333334C321.92 341.9733333333334 306.56 371.6266666666667 300.5866666666667 381.0133333333333L298.6666666666667 384C362.6666666666667 362.6666666666667 367.1466666666667 297.6 354.3466666666667 274.1333333333334L366.5066666666667 256.8533333333334C374.4 266.6666666666667 387.84 275.8400000000001 400.4266666666666 279.4666666666667C422.1866666666666 285.8666666666667 462.9333333333333 282.6666666666667 467.84 265.6C472.7466666666667 248.5333333333333 439.8933333333333 224 418.1333333333334 218.0266666666667C406.8266666666667 214.8266666666667 392.9600000000001 214.8266666666667 381.4400000000001 218.0266666666667L384 192C384 163.2000000000001 374.4 136.5333333333334 358.4 115.2000000000001C374.4 100.9066666666667 384 83.2 384 64M256 106.6666666666667C208.8533333333333 106.6666666666667 170.6666666666667 87.4666666666667 170.6666666666667 64S208.8533333333333 21.3333333333334 256 21.3333333333334S341.3333333333333 40.5333333333333 341.3333333333333 64S303.1466666666667 106.6666666666667 256 106.6666666666667M256 149.3333333333334C279.8933333333333 149.3333333333334 302.2933333333333 144.8533333333334 321.4933333333334 137.3866666666667C333.8666666666667 152.1066666666667 341.3333333333333 170.6666666666667 341.3333333333333 192C341.3333333333333 239.1466666666667 303.1466666666667 277.3333333333334 256 277.3333333333334S170.6666666666667 239.1466666666667 170.6666666666667 192C170.6666666666667 170.6666666666667 178.1333333333333 152.1066666666667 190.5066666666667 137.3866666666667C209.7066666666667 144.8533333333334 232.1066666666667 149.3333333333334 256 149.3333333333334M300.5866666666667 381.0133333333333z" />
+    <glyph glyph-name="crane"
+      unicode="&#xF861;"
+      horiz-adv-x="512" d=" M426.6666666666667 320V341.3333333333334C426.6666666666667 353.0666666666667 417.0666666666667 362.6666666666667 405.3333333333333 362.6666666666667H192V384H128V362.6666666666667H106.6666666666667V320H128V128H106.6666666666667V170.6666666666667H64V128H42.6666666666667V85.3333333333334H64V0H106.6666666666667V85.3333333333334H213.3333333333333V0H256V85.3333333333334H277.3333333333333V128H256V170.6666666666667H213.3333333333333V128H192V320H362.6666666666667V221.44C352.64 217.8133333333333 345.3866666666667 208.4266666666667 345.3866666666667 197.12C345.3866666666667 187.7333333333334 350.5066666666667 179.2 358.4 174.5066666666667V149.3333333333334H371.6266666666667C378.88 149.3333333333334 384.64 143.36 384.64 136.1066666666667C384.64 128.8533333333334 378.88 122.8800000000001 371.6266666666667 122.8800000000001C366.9333333333334 122.8800000000001 362.6666666666667 125.4400000000001 360.32 129.4933333333334C356.48 135.6800000000001 348.5866666666667 137.8133333333334 342.4 134.1866666666667C336 130.7733333333334 333.8666666666667 122.6666666666668 337.4933333333334 116.2666666666668C344.5333333333333 104.3200000000001 357.5466666666667 96.64 371.6266666666667 96.64C393.1733333333334 96.64 410.88 114.3466666666667 410.88 136.1066666666667C410.88 152.7466666666667 400.2133333333334 167.6800000000001 384.64 173.2266666666667V174.5066666666667C392.7466666666667 179.2000000000001 397.8666666666667 187.7333333333334 397.8666666666667 197.1200000000001C397.8666666666667 206.9333333333334 392.1066666666667 215.2533333333334 384.0000000000001 219.7333333333334V320H426.6666666666668M170.6666666666667 156.5866666666667L149.3333333333333 135.2533333333333V165.5466666666667L170.6666666666667 186.88V156.5866666666667M170.6666666666667 219.52L149.3333333333333 198.1866666666667V228.48L170.6666666666667 249.8133333333334V219.52M149.3333333333333 262.1866666666667V292.48L170.6666666666667 313.8133333333334V283.52L149.3333333333333 262.1866666666667z" />
+    <glyph glyph-name="creation"
+      unicode="&#xF1C9;"
+      horiz-adv-x="512" d=" M405.3333333333333 426.6666666666667L378.4533333333333 368L320 341.3333333333334L378.4533333333334 314.4533333333334L405.3333333333333 256L432 314.4533333333334L490.6666666666666 341.3333333333334L432 368M192 362.6666666666667L138.6666666666667 245.3333333333334L21.3333333333333 192L138.6666666666667 138.6666666666667L192 21.3333333333334L245.3333333333333 138.6666666666667L362.6666666666667 192L245.3333333333333 245.3333333333334M405.3333333333333 128L378.4533333333333 69.5466666666666L320 42.6666666666667L378.4533333333334 16L405.3333333333333 -42.6666666666666L432 16L490.6666666666666 42.6666666666667L432 69.5466666666667" />
+    <glyph glyph-name="credit-card"
+      unicode="&#xF19B;"
+      horiz-adv-x="512" d=" M426.6666666666667 277.3333333333334H85.3333333333333V320H426.6666666666667M426.6666666666667 64H85.3333333333333V192H426.6666666666667M426.6666666666667 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="credit-card-multiple"
+      unicode="&#xF19C;"
+      horiz-adv-x="512" d=" M448 277.3333333333334V320H149.3333333333333V277.3333333333334H448M448 106.6666666666667V213.3333333333334H149.3333333333333V106.6666666666667H448M448 362.6666666666667C471.4666666666667 362.6666666666667 490.6666666666666 343.4666666666667 490.6666666666666 320V106.6666666666667C490.6666666666666 83.2 471.4666666666667 64 448 64H149.3333333333333C125.6533333333333 64 106.6666666666667 83.2 106.6666666666667 106.6666666666667V320C106.6666666666667 343.68 125.6533333333333 362.6666666666667 149.3333333333333 362.6666666666667H448M64 21.3333333333334H384V-21.3333333333333H64C40.5333333333333 -21.3333333333333 21.3333333333333 -2.1333333333333 21.3333333333333 21.3333333333334V256H64V21.3333333333334z" />
+    <glyph glyph-name="credit-card-off"
+      unicode="&#xF5E4;"
+      horiz-adv-x="512" d=" M19.84 358.4L47.1466666666667 385.4933333333334L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L356.9066666666667 21.3333333333334H85.3333333333333C61.6533333333333 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 324.6933333333334 43.52 329.1733333333334 45.0133333333333 333.2266666666667L19.84 358.4M426.6666666666667 277.3333333333334V320H166.8266666666667L124.16 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 51.2 463.7866666666666 39.8933333333334 454.8266666666667 32L422.8266666666667 64H426.6666666666667V192H294.8266666666667L209.4933333333334 277.3333333333334H426.6666666666667M85.3333333333333 277.3333333333334H100.9066666666667L85.3333333333333 292.9066666666667V277.3333333333334M85.3333333333333 192V64H314.24L186.24 192H85.3333333333333z" />
+    <glyph glyph-name="credit-card-plus"
+      unicode="&#xF675;"
+      horiz-adv-x="512" d=" M448 64H512V21.3333333333334H448V-42.6666666666666H405.3333333333333V21.3333333333334H341.3333333333333V64H405.3333333333333V128H448V64M405.3333333333333 277.3333333333334V320H64V277.3333333333334H405.3333333333333M405.3333333333333 192H64V64H298.6666666666667V21.3333333333334H64C40.32 21.3333333333334 21.3333333333333 40.5333333333333 21.3333333333333 64V320C21.3333333333333 343.68 40.32 362.6666666666667 64 362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320V170.6666666666667H405.3333333333333V192z" />
+    <glyph glyph-name="credit-card-refund"
+      unicode="&#xFAA7;"
+      horiz-adv-x="512" d=" M384 213.3333333333334H128C104.5333333333333 213.3333333333334 85.3333333333333 194.1333333333333 85.3333333333333 170.6666666666667V0C85.3333333333333 -23.4666666666667 104.5333333333333 -42.6666666666666 128 -42.6666666666666H384C407.4666666666667 -42.6666666666666 426.6666666666667 -23.4666666666667 426.6666666666667 0V170.6666666666667C426.6666666666667 194.1333333333333 407.4666666666667 213.3333333333334 384 213.3333333333334M384 0H128V85.3333333333334H384V0M384 128H128V170.6666666666667H384V128M362.6666666666667 341.3333333333334V234.6666666666667H330.6666666666667V309.3333333333334H210.7733333333334L262.4 257.4933333333334L239.7866666666667 234.6666666666667L149.3333333333333 325.3333333333334L239.7866666666667 416L262.4 393.1733333333334L210.7733333333334 341.3333333333334H362.6666666666667z" />
+    <glyph glyph-name="credit-card-scan"
+      unicode="&#xF19D;"
+      horiz-adv-x="512" d=" M42.6666666666667 362.6666666666667H128V405.3333333333333H42.6666666666667C19.2 405.3333333333333 0 386.1333333333334 0 362.6666666666667V277.3333333333334H42.6666666666667V362.6666666666667M469.3333333333333 405.3333333333333H384V362.6666666666667H469.3333333333333V277.3333333333334H512V362.6666666666667C512 386.1333333333334 492.8 405.3333333333333 469.3333333333333 405.3333333333333M42.6666666666667 106.6666666666667H0V21.3333333333334C0 -2.1333333333333 19.2 -21.3333333333333 42.6666666666667 -21.3333333333333H128V21.3333333333334H42.6666666666667V106.6666666666667M469.3333333333333 21.3333333333334H384V-21.3333333333333H469.3333333333333C492.8 -21.3333333333333 512 -2.1333333333333 512 21.3333333333334V106.6666666666667H469.3333333333333V21.3333333333334M85.3333333333333 277.3333333333334V106.6666666666667C85.3333333333333 83.2 104.5333333333333 64 128 64H384C407.4666666666667 64 426.6666666666667 83.2 426.6666666666667 106.6666666666667V277.3333333333334C426.6666666666667 300.8 407.4666666666667 320 384 320H128C104.5333333333333 320 85.3333333333333 300.8 85.3333333333333 277.3333333333334M128 106.6666666666667V192H384V106.6666666666667H128M384 277.3333333333334V234.6666666666667H128V277.3333333333334H384z" />
+    <glyph glyph-name="credit-card-settings"
+      unicode="&#xF8D6;"
+      horiz-adv-x="512" d=" M426.6666666666667 277.3333333333334H85.3333333333333V320H426.6666666666667M426.6666666666667 64H85.3333333333333V192H426.6666666666667M426.6666666666667 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667M149.3333333333333 -21.3333333333333H192V-64H149.3333333333333V-21.3333333333333M234.6666666666667 -21.3333333333333H277.3333333333333V-64H234.6666666666667V-21.3333333333333M320 -21.3333333333333H362.6666666666667V-64H320V-21.3333333333333z" />
+    <glyph glyph-name="crop"
+      unicode="&#xF19E;"
+      horiz-adv-x="512" d=" M149.3333333333333 85.3333333333334V426.6666666666667H106.6666666666667V341.3333333333334H21.3333333333333V298.6666666666667H106.6666666666667V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H362.6666666666667V-42.6666666666666H405.3333333333333V42.6666666666667H490.6666666666666V85.3333333333334M362.6666666666667 128H405.3333333333333V298.6666666666667C405.3333333333333 322.3466666666667 386.1333333333334 341.3333333333334 362.6666666666667 341.3333333333334H192V298.6666666666667H362.6666666666667V128z" />
+    <glyph glyph-name="crop-free"
+      unicode="&#xF19F;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H320V341.3333333333334H405.3333333333333V256H448V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M405.3333333333333 42.6666666666667H320V0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V128H405.3333333333333M106.6666666666667 128H64V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H192V42.6666666666667H106.6666666666667M64 341.3333333333334V256H106.6666666666667V341.3333333333334H192V384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334z" />
+    <glyph glyph-name="crop-landscape"
+      unicode="&#xF1A0;"
+      horiz-adv-x="512" d=" M405.3333333333333 85.3333333333334H106.6666666666667V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H106.6666666666667C83.2 341.3333333333334 64 322.1333333333334 64 298.6666666666667V85.3333333333334C64 61.8666666666667 83.2 42.6666666666667 106.6666666666667 42.6666666666667H405.3333333333333C428.8 42.6666666666667 448 61.8666666666667 448 85.3333333333334V298.6666666666667C448 322.3466666666667 428.8 341.3333333333334 405.3333333333333 341.3333333333334z" />
+    <glyph glyph-name="crop-portrait"
+      unicode="&#xF1A1;"
+      horiz-adv-x="512" d=" M362.6666666666667 42.6666666666667H149.3333333333333V341.3333333333334H362.6666666666667M362.6666666666667 384H149.3333333333333C125.8666666666667 384 106.6666666666667 364.8 106.6666666666667 341.3333333333334V42.6666666666667C106.6666666666667 19.2 125.8666666666667 0 149.3333333333333 0H362.6666666666667C386.1333333333334 0 405.3333333333333 19.2 405.3333333333333 42.6666666666667V341.3333333333334C405.3333333333333 365.0133333333333 386.1333333333334 384 362.6666666666667 384z" />
+    <glyph glyph-name="crop-rotate"
+      unicode="&#xF695;"
+      horiz-adv-x="512" d=" M159.36 -10.6666666666666C89.6 22.8266666666667 39.68 90.4533333333333 32 170.6666666666667H0C10.6666666666667 39.2533333333333 120.7466666666667 -64 254.9333333333333 -64C259.84 -64 264.32 -64 269.0133333333333 -63.36L187.7333333333334 18.1333333333334L159.36 -10.6666666666666M257.0666666666667 448C252.16 448 247.68 448 242.9866666666667 447.1466666666667L324.2666666666667 365.8666666666667L352.64 394.6666666666667C422.4 361.1733333333334 472.32 293.5466666666667 480 213.3333333333334H512C501.3333333333333 344.7466666666667 391.2533333333334 448 257.0666666666667 448M341.3333333333333 149.3333333333334H384V277.3333333333334C384 301.0133333333333 364.8 320 341.3333333333333 320H213.3333333333333V277.3333333333334H341.3333333333333V149.3333333333334M170.6666666666667 106.6666666666667V362.6666666666667H128V320H85.3333333333333V277.3333333333334H128V106.6666666666667C128 83.2 147.2 64 170.6666666666667 64H341.3333333333333V21.3333333333334H384V64H426.6666666666667V106.6666666666667H170.6666666666667z" />
+    <glyph glyph-name="crop-square"
+      unicode="&#xF1A2;"
+      horiz-adv-x="512" d=" M384 64H128V320H384M384 362.6666666666667H128C104.5333333333333 362.6666666666667 85.3333333333333 343.4666666666667 85.3333333333333 320V64C85.3333333333333 40.5333333333333 104.5333333333333 21.3333333333334 128 21.3333333333334H384C407.4666666666667 21.3333333333334 426.6666666666667 40.5333333333333 426.6666666666667 64V320C426.6666666666667 343.68 407.4666666666667 362.6666666666667 384 362.6666666666667z" />
+    <glyph glyph-name="crosshairs"
+      unicode="&#xF1A3;"
+      horiz-adv-x="512" d=" M65.0666666666667 170.6666666666667H21.3333333333333V213.3333333333334H65.0666666666667C74.6666666666667 302.2933333333334 145.7066666666667 373.3333333333334 234.6666666666667 382.9333333333334V426.6666666666667H277.3333333333333V382.9333333333334C366.2933333333334 373.3333333333334 437.3333333333333 302.2933333333334 446.9333333333333 213.3333333333334H490.6666666666666V170.6666666666667H446.9333333333333C437.3333333333333 81.7066666666667 366.2933333333333 10.6666666666667 277.3333333333333 1.0666666666667V-42.6666666666666H234.6666666666667V1.0666666666667C145.7066666666667 10.6666666666667 74.6666666666667 81.7066666666667 65.0666666666667 170.6666666666667M256 341.3333333333334C173.44 341.3333333333334 106.6666666666667 274.5600000000001 106.6666666666667 192S173.44 42.6666666666667 256 42.6666666666667S405.3333333333333 109.44 405.3333333333333 192S338.56 341.3333333333334 256 341.3333333333334z" />
+    <glyph glyph-name="crosshairs-gps"
+      unicode="&#xF1A4;"
+      horiz-adv-x="512" d=" M256 277.3333333333334C303.1466666666667 277.3333333333334 341.3333333333333 239.1466666666667 341.3333333333333 192S303.1466666666667 106.6666666666667 256 106.6666666666667S170.6666666666667 144.8533333333334 170.6666666666667 192S208.8533333333333 277.3333333333334 256 277.3333333333334M65.0666666666667 170.6666666666667H21.3333333333333V213.3333333333334H65.0666666666667C74.6666666666667 302.2933333333334 145.7066666666667 373.3333333333334 234.6666666666667 382.9333333333334V426.6666666666667H277.3333333333333V382.9333333333334C366.2933333333334 373.3333333333334 437.3333333333333 302.2933333333334 446.9333333333333 213.3333333333334H490.6666666666666V170.6666666666667H446.9333333333333C437.3333333333333 81.7066666666667 366.2933333333333 10.6666666666667 277.3333333333333 1.0666666666667V-42.6666666666666H234.6666666666667V1.0666666666667C145.7066666666667 10.6666666666667 74.6666666666667 81.7066666666667 65.0666666666667 170.6666666666667M256 341.3333333333334C173.44 341.3333333333334 106.6666666666667 274.5600000000001 106.6666666666667 192S173.44 42.6666666666667 256 42.6666666666667S405.3333333333333 109.44 405.3333333333333 192S338.56 341.3333333333334 256 341.3333333333334z" />
+    <glyph glyph-name="crown"
+      unicode="&#xF1A5;"
+      horiz-adv-x="512" d=" M106.6666666666667 106.6666666666667L64 341.3333333333334L181.3333333333333 192L256 341.3333333333334L330.6666666666667 192L448 341.3333333333334L405.3333333333333 106.6666666666667H106.6666666666667M405.3333333333333 42.6666666666667C405.3333333333333 30.9333333333333 395.7333333333334 21.3333333333334 384 21.3333333333334H128C116.2666666666667 21.3333333333334 106.6666666666667 30.9333333333333 106.6666666666667 42.6666666666667V64H405.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="cryengine"
+      unicode="&#xF958;"
+      horiz-adv-x="512" d=" M491.3066666666667 181.3333333333334C490.6666666666666 170.6666666666667 446.08 123.0933333333334 380.16 101.5466666666666C299.7333333333334 74.6666666666666 170.0266666666667 84.6933333333333 170.0266666666667 185.6C170.0266666666667 232.96 208.64 271.5733333333333 256 271.5733333333333C304 271.5733333333333 342.4 232.7466666666666 342.4 185.3866666666667C342.4 162.3466666666666 332.3733333333334 139.9466666666667 317.2266666666667 124.16C331.52 124.3733333333333 382.7200000000001 128 431.1466666666667 168.1066666666666C436.48 173.2266666666666 439.8933333333333 177.4933333333333 441.3866666666667 180.2666666666667C441.8133333333334 181.3333333333333 442.4533333333334 182.1866666666666 442.24 183.4666666666667C442.24 193.7066666666667 386.56 273.28 271.36 296.1066666666667C410.0266666666667 288.8533333333333 490.6666666666666 206.5066666666666 491.3066666666667 183.4666666666667V181.3333333333333M256 234.6666666666667C229.12 234.6666666666667 207.1466666666667 212.48 207.1466666666667 185.6C207.1466666666667 158.5066666666667 229.12 136.7466666666667 256 136.7466666666667C283.0933333333333 136.7466666666667 304.8533333333333 158.5066666666667 304.8533333333333 185.6C304.8533333333333 212.48 283.0933333333333 234.6666666666667 256 234.6666666666667M70.6133333333334 184.7466666666667V183.04C72.7466666666667 171.9466666666667 102.8266666666667 119.2533333333333 219.3066666666667 87.8933333333334C84.48 98.7733333333334 23.8933333333334 164.6933333333334 22.1866666666667 183.0400000000001H21.9733333333334V184.5333333333334C21.9733333333334 202.6666666666667 105.8133333333334 286.2933333333334 232.9600000000001 295.4666666666667C130.9866666666667 271.7866666666668 70.6133333333334 194.7733333333334 70.6133333333334 184.7466666666667z" />
+    <glyph glyph-name="crystal-ball"
+      unicode="&#xFB14;"
+      horiz-adv-x="512" d=" M200.1066666666667 269.2266666666667L245.3333333333333 248.7466666666667L290.56 269.2266666666667L270.08 224L290.56 178.7733333333333L245.3333333333333 199.2533333333333L200.1066666666666 178.7733333333333L220.5866666666667 224L200.1066666666666 269.2266666666667M352 394.6666666666667L375.2533333333334 332.5866666666667L437.3333333333333 309.3333333333334L375.2533333333334 286.0800000000001L352 224L328.7466666666667 286.0800000000001L266.6666666666667 309.3333333333334L328.7466666666667 332.5866666666667L352 394.6666666666667M128 42.6666666666667H149.3333333333333V64C149.3333333333333 75.7333333333334 158.9333333333333 85.3333333333334 170.6666666666667 85.3333333333334H176.2133333333333C128 113.0666666666667 96 164.6933333333334 96 224C96 312.32 167.68 384 256 384C278.4 384 299.7333333333334 379.3066666666667 319.1466666666667 370.9866666666667L311.2533333333334 350.0800000000001L280.9600000000001 338.7733333333333C272.8533333333333 340.48 264.5333333333333 341.3333333333334 256 341.3333333333334C191.1466666666667 341.3333333333334 138.6666666666667 288.8533333333334 138.6666666666667 224S191.1466666666667 106.6666666666667 256 106.6666666666667C318.08 106.6666666666667 369.0666666666667 155.0933333333334 373.3333333333333 216.1066666666667L392.7466666666667 268.5866666666667L407.8933333333333 274.3466666666667C413.2266666666667 258.56 416 241.4933333333334 416 224C416 164.6933333333334 384 113.0666666666667 335.7866666666667 85.3333333333334H341.3333333333333C353.0666666666667 85.3333333333334 362.6666666666667 75.7333333333334 362.6666666666667 64V42.6666666666667H384C407.4666666666667 42.6666666666667 426.6666666666667 23.4666666666667 426.6666666666667 0V-21.3333333333333H85.3333333333333V0C85.3333333333333 23.4666666666667 104.5333333333333 42.6666666666667 128 42.6666666666667z" />
+    <glyph glyph-name="cube"
+      unicode="&#xF1A6;"
+      horiz-adv-x="512" d=" M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L128.8533333333333 288L256 216.5333333333334L383.1466666666667 288L256 359.4666666666667z" />
+    <glyph glyph-name="cube-outline"
+      unicode="&#xF1A7;"
+      horiz-adv-x="512" d=" M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L128.8533333333333 288L256 216.5333333333334L383.1466666666667 288L256 359.4666666666667M106.6666666666667 108.5866666666667L234.6666666666667 36.48V179.6266666666667L106.6666666666667 251.52V108.5866666666667M405.3333333333333 108.5866666666667V251.52L277.3333333333333 179.6266666666667V36.48L405.3333333333333 108.5866666666666z" />
+    <glyph glyph-name="cube-scan"
+      unicode="&#xFB60;"
+      horiz-adv-x="512" d=" M362.6666666666667 -21.3333333333333V21.3333333333334H426.6666666666667V85.3333333333334H469.3333333333333V10.6666666666667C469.3333333333333 2.3466666666667 465.92 -5.1199999999999 459.52 -11.52C453.1199999999999 -17.92 445.6533333333333 -21.3333333333333 437.3333333333333 -21.3333333333333H362.6666666666667M149.3333333333333 -21.3333333333333H74.6666666666667C66.3466666666667 -21.3333333333333 58.88 -17.92 52.48 -11.52C46.08 -5.1199999999999 42.6666666666667 2.3466666666667 42.6666666666667 10.6666666666667V85.3333333333334H85.3333333333333V21.3333333333334H149.3333333333333V-21.3333333333333M362.6666666666667 405.3333333333333H437.3333333333333C445.6533333333333 405.3333333333333 453.1199999999999 401.92 459.52 395.52C465.92 389.12 469.3333333333333 381.6533333333333 469.3333333333333 373.3333333333334V298.6666666666667H426.6666666666667V362.6666666666667H362.6666666666667V405.3333333333333M149.3333333333333 405.3333333333333V362.6666666666667H85.3333333333333V298.6666666666667H42.6666666666667V373.3333333333334C42.6666666666667 381.6533333333333 46.08 389.12 52.48 395.52C58.88 401.92 66.3466666666667 405.3333333333333 74.6666666666667 405.3333333333333H149.3333333333333M277.3333333333333 80L362.6666666666667 129.0666666666667V226.9866666666667L277.3333333333333 177.92V80M256 215.04L341.3333333333333 263.8933333333334L256 314.0266666666667L170.6666666666667 263.8933333333334L256 215.0400000000001M149.3333333333333 129.0666666666667L234.6666666666667 80V177.92L149.3333333333333 226.9866666666667V129.0666666666667M388.9066666666667 286.0800000000001C399.5733333333333 279.2533333333334 405.3333333333333 270.0800000000001 405.3333333333333 257.9200000000001V123.0933333333334C405.3333333333333 110.9333333333334 399.5733333333333 101.7600000000001 388.9066666666667 94.9333333333334L272 27.0933333333334C261.3333333333333 20.2666666666668 250.6666666666667 20.2666666666668 240 27.0933333333334L123.0933333333333 94.9333333333334C112.4266666666667 101.7600000000001 106.6666666666667 110.9333333333334 106.6666666666667 123.0933333333334V257.92C106.6666666666667 270.0800000000001 112.4266666666667 279.2533333333334 123.0933333333333 286.0800000000001L240 353.92C245.3333333333333 356.6933333333334 250.6666666666667 357.9733333333334 256 357.9733333333334S266.6666666666667 356.6933333333334 272 353.92L388.9066666666667 286.0800000000001z" />
+    <glyph glyph-name="cube-send"
+      unicode="&#xF1A8;"
+      horiz-adv-x="512" d=" M341.3333333333333 362.6666666666667L192 276.48V107.52L341.3333333333333 21.3333333333334L490.6666666666666 107.52V276.48M341.3333333333333 313.3866666666667L422.4 266.6666666666668L341.3333333333333 219.9466666666667L260.48 266.6666666666668M0 298.6666666666667V256H149.3333333333333V298.6666666666667M234.6666666666667 232.32L320 183.04V82.9866666666667L234.6666666666667 132.0533333333334M448 232.32V132.0533333333334L362.6666666666667 82.9866666666667V183.0400000000001M42.6666666666667 213.3333333333334V170.6666666666667H149.3333333333333V213.3333333333334M85.3333333333333 128V85.3333333333334H149.3333333333333V128" />
+    <glyph glyph-name="cube-unfolded"
+      unicode="&#xF1A9;"
+      horiz-adv-x="512" d=" M128 256V362.6666666666667H277.3333333333333V256H490.6666666666666V106.6666666666667H384V0H234.6666666666667V106.6666666666667H21.3333333333333V256H128M341.3333333333333 106.6666666666667H277.3333333333333V42.6666666666667H341.3333333333333V106.6666666666667M170.6666666666667 256H234.6666666666667V320H170.6666666666667V256M128 149.3333333333334V213.3333333333334H64V149.3333333333334H128M384 213.3333333333334V149.3333333333334H448V213.3333333333334H384M277.3333333333333 213.3333333333334V149.3333333333334H341.3333333333333V213.3333333333334H277.3333333333333M170.6666666666667 213.3333333333334V149.3333333333334H234.6666666666667V213.3333333333334H170.6666666666667z" />
+    <glyph glyph-name="cup"
+      unicode="&#xF1AA;"
+      horiz-adv-x="512" d=" M390.8266666666667 277.3333333333334H120.96L111.5733333333333 362.6666666666667H400.4266666666666M64 405.3333333333333L106.6666666666667 16.4266666666667C109.44 -4.9066666666666 127.36 -21.3333333333333 149.3333333333333 -21.3333333333333H362.6666666666667C384 -21.3333333333333 402.56 -4.9066666666666 405.3333333333333 16.4266666666667L448 405.3333333333333H64z" />
+    <glyph glyph-name="cup-off"
+      unicode="&#xF5E5;"
+      horiz-adv-x="512" d=" M21.3333333333333 356.9066666666667L48.64 384L448 -15.36L420.9066666666667 -42.6666666666666L389.76 -11.52C382.5066666666667 -17.7066666666666 373.3333333333333 -21.3333333333333 362.6666666666667 -21.3333333333333H149.3333333333333C127.36 -21.3333333333333 109.44 -4.9066666666666 106.6666666666667 16.4266666666667L75.3066666666667 302.9333333333334L21.3333333333333 356.9066666666667M390.8266666666667 277.3333333333334L400.4266666666666 362.6666666666667H124.16L81.4933333333333 405.3333333333333H448L411.52 75.3066666666667L209.4933333333334 277.3333333333334H390.8266666666667z" />
+    <glyph glyph-name="cup-water"
+      unicode="&#xF1AB;"
+      horiz-adv-x="512" d=" M390.8266666666667 277.3333333333334H120.96L111.5733333333333 362.6666666666667H400.4266666666666M256 42.6666666666667C220.5866666666667 42.6666666666667 192 71.2533333333333 192 106.6666666666667C192 149.3333333333334 256 221.8666666666667 256 221.8666666666667S320 149.3333333333334 320 106.6666666666667C320 71.2533333333333 291.4133333333333 42.6666666666667 256 42.6666666666667M64 405.3333333333333L106.6666666666667 16.4266666666667C109.44 -4.9066666666666 127.36 -21.3333333333333 149.3333333333333 -21.3333333333333H362.6666666666667C384 -21.3333333333333 402.56 -4.9066666666666 405.3333333333333 16.4266666666667L448 405.3333333333333H64z" />
+    <glyph glyph-name="cupcake"
+      unicode="&#xF959;"
+      horiz-adv-x="512" d=" M256 416C285.44 416 309.3333333333333 392.1066666666667 309.3333333333333 362.6666666666667S285.44 309.3333333333334 256 309.3333333333334S202.6666666666667 333.2266666666667 202.6666666666667 362.6666666666667S226.56 416 256 416M338.56 341.3333333333334C384 341.3333333333334 426.6666666666667 298.6666666666667 426.6666666666667 256C484.2666666666667 256 484.2666666666667 170.6666666666667 426.6666666666667 170.6666666666667H85.3333333333333C27.7333333333333 170.6666666666667 27.7333333333333 256 85.3333333333333 256C85.3333333333333 298.6666666666667 128 341.3333333333334 173.44 341.3333333333334C182.8266666666666 304.4266666666667 216.32 277.3333333333334 256 277.3333333333334C295.68 277.3333333333334 329.1733333333333 304.4266666666667 338.56 341.3333333333334M106.6666666666667 128H170.6666666666667L192 -21.3333333333333H149.3333333333333L106.6666666666667 128M213.3333333333333 128H298.6666666666667L277.3333333333333 -21.3333333333333H234.6666666666667L213.3333333333333 128M341.3333333333333 128H405.3333333333333L362.6666666666667 -21.3333333333333H320L341.3333333333333 128z" />
+    <glyph glyph-name="curling"
+      unicode="&#xF862;"
+      horiz-adv-x="512" d=" M213.3333333333333 384V341.3333333333334C266.6666666666667 341.3333333333334 296.5333333333333 340.2666666666667 314.0266666666667 332.5866666666667C325.5466666666666 327.4666666666667 335.5733333333333 315.52 346.6666666666667 298.6666666666667H106.6666666666667V256H418.56L402.9866666666666 286.9333333333334C381.0133333333332 330.6666666666667 361.8133333333333 357.9733333333334 331.3066666666666 371.4133333333334C300.8 385.0666666666667 266.6666666666667 384 213.3333333333333 384M128 213.3333333333334C80.64 213.3333333333334 42.6666666666667 175.36 42.6666666666667 128V64C42.6666666666667 16.64 80.64 -21.3333333333333 128 -21.3333333333333H384C431.36 -21.3333333333333 469.3333333333333 16.64 469.3333333333333 64V128C469.3333333333333 175.36 431.36 213.3333333333334 384 213.3333333333334H128z" />
+    <glyph glyph-name="currency-bdt"
+      unicode="&#xF863;"
+      horiz-adv-x="512" d=" M385.92 224V256H204.5866666666667V352C204.5866666666667 369.7066666666667 190.2933333333333 384 172.5866666666667 384S140.5866666666667 369.7066666666667 140.5866666666667 352S154.88 320 172.5866666666667 320V256H108.5866666666667V224H172.5866666666667V91.7333333333334C172.5866666666667 41.3866666666667 213.3333333333333 0.64 263.2533333333334 0C313.1733333333333 0.8533333333334 352.8533333333333 41.8133333333334 352 91.7333333333334C352 125.6533333333334 336 157.6533333333334 309.3333333333333 178.7733333333334C304.64 182.6133333333334 299.7333333333334 186.0266666666667 294.4 188.8000000000001C289.7066666666667 190.9333333333334 284.5866666666667 192.0000000000001 279.4666666666667 192.0000000000001C264.32 192.0000000000001 250.4533333333334 183.6800000000001 242.9866666666667 170.6666666666668C238.9333333333334 164.2666666666667 236.8 156.8000000000001 236.8 149.3333333333334C237.0133333333334 125.8666666666667 256 106.6666666666667 279.68 106.6666666666667C292.9066666666667 106.6666666666667 305.28 113.2800000000001 313.3866666666667 123.7333333333334C317.8666666666667 113.7066666666667 320 102.8266666666668 320 91.7333333333335C320.8533333333334 59.7333333333335 295.68 33.0666666666668 263.2533333333334 32.0000000000001C230.6133333333334 32.0000000000001 204.3733333333334 59.0933333333334 204.5866666666667 91.7333333333335V224.0000000000001H385.9200000000001z" />
+    <glyph glyph-name="currency-brl"
+      unicode="&#xFB61;"
+      horiz-adv-x="512" d=" M256 128H298.6666666666667C298.6666666666667 104.96 327.8933333333333 85.3333333333334 362.6666666666667 85.3333333333334S426.6666666666667 104.96 426.6666666666667 128C426.6666666666667 151.4666666666667 404.48 160 357.5466666666666 171.3066666666667C312.32 182.6133333333334 256 196.6933333333334 256 256C256 294.1866666666667 287.36 326.6133333333334 330.6666666666667 337.4933333333334V384H394.6666666666667V337.4933333333334C437.9733333333334 326.6133333333334 469.3333333333333 294.1866666666667 469.3333333333333 256H426.6666666666667C426.6666666666667 279.04 397.44 298.6666666666667 362.6666666666667 298.6666666666667S298.6666666666667 279.04 298.6666666666667 256C298.6666666666667 232.5333333333334 320.8533333333333 224 367.7866666666667 212.6933333333334C413.0133333333333 201.3866666666667 469.3333333333333 187.3066666666667 469.3333333333333 128C469.3333333333333 89.8133333333334 437.9733333333334 57.3866666666667 394.6666666666667 46.5066666666667V0H330.6666666666667V46.5066666666667C287.36 57.3866666666667 256 89.8133333333334 256 128M42.6666666666667 384H117.3333333333333C182.1866666666667 384 234.6666666666667 331.52 234.6666666666667 266.6666666666667C234.6666666666667 219.9466666666667 207.1466666666667 179.4133333333334 167.68 160.6400000000001L248.32 0H200.5333333333333L125.44 149.3333333333334H85.3333333333333V0H42.6666666666667V384M117.3333333333333 192C158.5066666666667 192 192 225.4933333333334 192 266.6666666666667S158.5066666666667 341.3333333333334 117.3333333333333 341.3333333333334H85.3333333333333V192H117.3333333333333z" />
+    <glyph glyph-name="currency-btc"
+      unicode="&#xF1AC;"
+      horiz-adv-x="512" d=" M128 362.6666666666667H170.6666666666667V405.3333333333333H213.3333333333333V362.6666666666667H256V405.3333333333333H298.6666666666667V362.0266666666667C346.6666666666667 356.6933333333334 384 316.1600000000001 384 266.6666666666667C384 238.9333333333334 372.2666666666667 213.3333333333334 353.28 196.2666666666667C378.2399999999999 178.9866666666667 394.6666666666667 149.9733333333334 394.6666666666667 117.3333333333334C394.6666666666667 64 352 21.3333333333334 298.6666666666667 21.3333333333334V-21.3333333333333H256V21.3333333333334H213.3333333333333V-21.3333333333333H170.6666666666667V21.3333333333334H128L138.6666666666667 64H170.6666666666667V320H128V362.6666666666667M213.3333333333333 170.6666666666667V64H298.6666666666667C328.1066666666667 64 352 87.8933333333334 352 117.3333333333334S328.1066666666667 170.6666666666667 298.6666666666667 170.6666666666667H213.3333333333333M213.3333333333333 320V213.3333333333334H288C317.44 213.3333333333334 341.3333333333333 237.2266666666667 341.3333333333333 266.6666666666667S317.44 320 288 320H213.3333333333333z" />
+    <glyph glyph-name="currency-chf"
+      unicode="&#xF7B8;"
+      horiz-adv-x="512" d=" M149.3333333333333 384H384V341.3333333333334H192V213.3333333333334H362.6666666666667V170.6666666666667H192V106.6666666666667H234.6666666666667V64H192V0H149.3333333333333V64H106.6666666666667V106.6666666666667H149.3333333333333V384z" />
+    <glyph glyph-name="currency-cny"
+      unicode="&#xF7B9;"
+      horiz-adv-x="512" d=" M234.6666666666667 0V106.6666666666667H128V149.3333333333334H234.6666666666667V155.52L216.7466666666667 192H128V234.6666666666667H196.0533333333333L123.0933333333333 384H170.6666666666667L256 209.0666666666667L341.3333333333333 384H388.9066666666667L315.9466666666667 234.6666666666667H384V192H295.2533333333334L277.3333333333333 155.52V149.3333333333334H384V106.6666666666667H277.3333333333333V0H234.6666666666667z" />
+    <glyph glyph-name="currency-eth"
+      unicode="&#xF7BA;"
+      horiz-adv-x="512" d=" M128 341.3333333333334H384V298.6666666666667H128M149.3333333333333 213.3333333333334H362.6666666666667V170.6666666666667H149.3333333333333M117.3333333333333 85.3333333333334H394.6666666666667V42.6666666666667H117.3333333333333" />
+    <glyph glyph-name="currency-eur"
+      unicode="&#xF1AD;"
+      horiz-adv-x="512" d=" M150.8266666666667 213.3333333333334L149.3333333333333 192L150.8266666666667 170.6666666666667H370.1333333333334L352 128H163.6266666666667C187.7333333333334 77.6533333333334 239.1466666666667 42.6666666666667 298.6666666666667 42.6666666666667C346.24 42.6666666666667 388.6933333333333 64.8533333333334 416 99.6266666666667V40.1066666666667C384 14.9333333333333 342.8266666666667 0 298.6666666666667 0C215.04 0 144 53.3333333333334 117.3333333333333 128H42.6666666666667L64 170.6666666666667H107.7333333333333L106.6666666666667 192L107.7333333333333 213.3333333333334H42.6666666666667L64 256H117.3333333333333C144 330.6666666666667 215.04 384 298.6666666666667 384C352 384 401.0666666666667 361.8133333333334 435.84 326.1866666666667L417.4933333333334 282.6666666666667C390.1866666666666 318.2933333333334 347.0933333333333 341.3333333333334 298.6666666666667 341.3333333333334C239.1466666666667 341.3333333333334 187.7333333333334 306.3466666666667 163.6266666666667 256H406.1866666666666L388.0533333333333 213.3333333333334H150.8266666666667z" />
+    <glyph glyph-name="currency-gbp"
+      unicode="&#xF1AE;"
+      horiz-adv-x="512" d=" M128 0V42.6666666666667C213.3333333333333 85.3333333333334 202.6666666666667 170.6666666666667 202.6666666666667 170.6666666666667H149.3333333333333V213.3333333333334H202.6666666666667C181.3333333333333 309.3333333333334 213.3333333333333 384 298.6666666666667 384C341.3333333333333 384 362.6666666666667 373.3333333333334 362.6666666666667 373.3333333333334V330.6666666666667C234.6666666666667 373.3333333333334 234.6666666666667 277.3333333333334 245.3333333333333 213.3333333333334H341.3333333333333V170.6666666666667H245.3333333333333S256 85.3333333333334 202.6666666666667 42.6666666666667H384V0H128z" />
+    <glyph glyph-name="currency-inr"
+      unicode="&#xF1AF;"
+      horiz-adv-x="512" d=" M170.6666666666667 384H384L362.6666666666667 341.3333333333334H293.12C303.36 328.9600000000001 311.04 314.4533333333334 315.52 298.6666666666667H384L362.6666666666667 256H320C314.6666666666667 201.1733333333334 271.7866666666667 157.2266666666667 217.6 150.1866666666667V149.3333333333334H202.6666666666667L330.6666666666667 0H277.3333333333333L149.3333333333333 149.3333333333334V192H202.6666666666667C240.2133333333333 192 271.36 219.7333333333334 276.48 256H149.3333333333333L170.6666666666667 298.6666666666667H270.08C258.1333333333334 323.8400000000001 232.5333333333334 341.3333333333334 202.6666666666667 341.3333333333334H149.3333333333333L170.6666666666667 384z" />
+    <glyph glyph-name="currency-jpy"
+      unicode="&#xF7BB;"
+      horiz-adv-x="512" d=" M234.6666666666667 0V106.6666666666667H128V149.3333333333334H234.6666666666667V155.52L216.7466666666667 192H128V234.6666666666667H196.0533333333333L123.0933333333333 384H170.6666666666667L256 209.0666666666667L341.3333333333333 384H388.9066666666667L315.9466666666667 234.6666666666667H384V192H295.2533333333334L277.3333333333333 155.52V149.3333333333334H384V106.6666666666667H277.3333333333333V0H234.6666666666667z" />
+    <glyph glyph-name="currency-krw"
+      unicode="&#xF7BC;"
+      horiz-adv-x="512" d=" M42.6666666666667 384H85.3333333333333L113.7066666666667 256H199.04L227.6266666666667 384H284.3733333333334L312.96 256H398.2933333333334L426.6666666666667 384H469.3333333333333L440.9600000000001 256H469.3333333333333V213.3333333333334H431.36L421.9733333333333 170.6666666666667H469.3333333333333V128H412.3733333333333L384 0H327.04L298.6666666666667 128H213.3333333333333L184.96 0H128L99.6266666666667 128H42.6666666666667V170.6666666666667H90.0266666666667L80.64 213.3333333333334H42.6666666666667V256H71.04L42.6666666666667 384M279.68 213.3333333333334H232.32L222.72 170.6666666666667H289.28L279.68 213.3333333333334M156.3733333333333 64L170.6666666666667 128H142.2933333333333L156.3733333333333 64M189.6533333333333 213.3333333333334H123.3066666666667L132.6933333333333 170.6666666666667H180.0533333333334L189.6533333333333 213.3333333333334M355.6266666666667 64L369.7066666666667 128H341.3333333333333L355.6266666666667 64M388.6933333333334 213.3333333333334H322.3466666666667L331.9466666666667 170.6666666666667H379.3066666666667L388.6933333333334 213.3333333333334M256 320L241.7066666666667 256H270.2933333333333L256 320z" />
+    <glyph glyph-name="currency-kzt"
+      unicode="&#xF864;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333V341.3333333333334H106.6666666666667V384M106.6666666666667 320H405.3333333333333V277.3333333333334H277.3333333333333V0H234.6666666666667V277.3333333333334H106.6666666666667V320z" />
+    <glyph glyph-name="currency-ngn"
+      unicode="&#xF1B0;"
+      horiz-adv-x="512" d=" M85.3333333333333 256H128V384H170.6666666666667L243.6266666666667 256H341.3333333333333V384H384V256H426.6666666666667V213.3333333333334H384V170.6666666666667H426.6666666666667V128H384V0H341.3333333333333L268.16 128H170.6666666666667V0H128V128H85.3333333333333V170.6666666666667H128V213.3333333333334H85.3333333333333V256M170.6666666666667 256H194.7733333333333L170.6666666666667 298.0266666666667V256M170.6666666666667 213.3333333333334V170.6666666666667H243.6266666666667L219.3066666666667 213.3333333333334H170.6666666666667M341.3333333333333 85.3333333333334V128H316.8L341.3333333333333 85.3333333333334M267.9466666666667 213.3333333333334L292.48 170.6666666666667H341.3333333333333V213.3333333333334H267.9466666666667z" />
+    <glyph glyph-name="currency-php"
+      unicode="&#xF9E5;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V320H64V277.3333333333334H106.6666666666667V234.6666666666667H64V192H106.6666666666667V-21.3333333333333H149.3333333333333V106.6666666666667H277.3333333333333C334.9333333333333 106.6666666666667 387.4133333333333 139.9466666666667 412.16 192H469.3333333333333V234.6666666666667H424.9600000000001C427.3066666666667 248.7466666666667 427.3066666666667 263.2533333333334 424.9600000000001 277.3333333333334H469.3333333333333V320H412.16C387.4133333333333 372.0533333333334 334.9333333333333 405.3333333333333 277.3333333333333 405.3333333333333M149.3333333333333 362.6666666666667H277.3333333333333C310.8266666666667 362.6666666666667 342.6133333333333 346.88 362.6666666666667 320H149.3333333333333V362.6666666666667M277.3333333333333 149.3333333333334H149.3333333333333V192H362.6666666666667C342.6133333333333 165.12 310.8266666666667 149.3333333333334 277.3333333333333 149.3333333333334M384 256C384 248.7466666666667 383.1466666666667 241.7066666666667 381.8666666666666 234.6666666666667H149.3333333333333V277.3333333333334H381.8666666666666C383.1466666666666 270.2933333333334 384 263.2533333333334 384 256z" />
+    <glyph glyph-name="currency-rub"
+      unicode="&#xF1B1;"
+      horiz-adv-x="512" d=" M128 234.6666666666667H149.3333333333333V384H309.3333333333333C362.6666666666667 384 405.3333333333333 341.3333333333334 405.3333333333333 288S362.6666666666667 192 309.3333333333333 192H192V149.3333333333334H320V106.6666666666667H192V0H149.3333333333333V106.6666666666667H128V149.3333333333334H149.3333333333333V192H128V234.6666666666667M309.3333333333333 341.3333333333334H192V234.6666666666667H309.3333333333333C338.7733333333333 234.6666666666667 362.6666666666667 258.5600000000001 362.6666666666667 288S338.7733333333333 341.3333333333334 309.3333333333333 341.3333333333334z" />
+    <glyph glyph-name="currency-sign"
+      unicode="&#xF7BD;"
+      horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 237.6533333333334 454.1866666666666 282.0266666666667 426.6666666666667 318.5066666666667L469.3333333333333 361.1733333333334L425.3866666666667 406.6133333333334L382.7200000000001 363.9466666666667C307.2 418.9866666666667 204.5866666666667 418.56 129.4933333333334 362.6666666666667L86.8266666666667 405.3333333333333L41.3866666666667 361.3866666666667L84.0533333333333 318.7200000000001C29.0133333333333 243.2 29.44 140.5866666666667 85.3333333333333 65.4933333333333L42.6666666666667 22.8266666666667L87.8933333333333 -22.4L130.56 20.2666666666667C205.8666666666667 -35.2 308.2666666666667 -35.2 384 20.2666666666667L426.6666666666667 -22.4L471.4666666666667 22.8266666666667L428.8 65.4933333333333C455.4666666666667 102.1866666666667 469.3333333333333 146.5600000000001 469.3333333333333 192M256 42.6666666666667C173.44 42.6666666666667 106.6666666666667 109.44 106.6666666666667 192S173.44 341.3333333333334 256 341.3333333333334S405.3333333333333 274.5600000000001 405.3333333333333 192S338.56 42.6666666666667 256 42.6666666666667z" />
+    <glyph glyph-name="currency-try"
+      unicode="&#xF1B2;"
+      horiz-adv-x="512" d=" M405.3333333333333 192C405.3333333333333 85.9733333333334 319.36 0 213.3333333333333 0H170.6666666666667V175.5733333333334L106.6666666666667 152.1066666666667V197.5466666666667L170.6666666666667 221.0133333333334V258.7733333333334L106.6666666666667 235.52V280.7466666666667L170.6666666666667 304.2133333333334V384H213.3333333333333V320L320 358.4V313.1733333333334L213.3333333333333 274.3466666666667V236.3733333333334L320 275.2000000000001V229.76L213.3333333333333 190.9333333333333V42.6666666666667C295.8933333333333 42.6666666666667 362.6666666666667 109.44 362.6666666666667 192H405.3333333333333z" />
+    <glyph glyph-name="currency-twd"
+      unicode="&#xF7BE;"
+      horiz-adv-x="512" d=" M64 213.3333333333334H448V170.6666666666667H320V42.6666666666667H448V0H320C296.5333333333333 0 277.3333333333333 19.2 277.3333333333333 42.6666666666667V170.6666666666667H220.8L122.24 0L85.3333333333333 21.3333333333334L171.52 170.6666666666667H64V213.3333333333334M106.6666666666667 384H405.3333333333333V341.3333333333334H106.6666666666667V384z" />
+    <glyph glyph-name="currency-usd"
+      unicode="&#xF1B3;"
+      horiz-adv-x="512" d=" M149.3333333333333 128H192C192 104.96 221.2266666666667 85.3333333333334 256 85.3333333333334S320 104.96 320 128C320 151.4666666666667 297.8133333333334 160 250.88 171.3066666666667C205.6533333333333 182.6133333333334 149.3333333333333 196.6933333333334 149.3333333333333 256C149.3333333333333 294.1866666666667 180.6933333333333 326.6133333333334 224 337.4933333333334V384H288V337.4933333333334C331.3066666666666 326.6133333333334 362.6666666666667 294.1866666666667 362.6666666666667 256H320C320 279.04 290.7733333333333 298.6666666666667 256 298.6666666666667S192 279.04 192 256C192 232.5333333333334 214.1866666666667 224 261.12 212.6933333333334C306.3466666666667 201.3866666666667 362.6666666666667 187.3066666666667 362.6666666666667 128C362.6666666666667 89.8133333333334 331.3066666666666 57.3866666666667 288 46.5066666666667V0H224V46.5066666666667C180.6933333333333 57.3866666666667 149.3333333333333 89.8133333333334 149.3333333333333 128z" />
+    <glyph glyph-name="currency-usd-off"
+      unicode="&#xF679;"
+      horiz-adv-x="512" d=" M64 356.9066666666667L91.3066666666667 384L448 27.3066666666667L420.9066666666667 0L342.6133333333334 78.2933333333334C329.3866666666667 64 310.1866666666667 52.2666666666668 288 46.5066666666668V0H224V46.5066666666667C180.6933333333333 57.3866666666667 149.3333333333333 89.8133333333334 149.3333333333333 128H192C192 104.96 221.2266666666667 85.3333333333334 256 85.3333333333334C280.1066666666667 85.3333333333334 301.6533333333333 94.72 312.5333333333333 108.3733333333333L249.1733333333333 171.7333333333334C204.3733333333333 183.04 149.3333333333333 197.3333333333334 149.3333333333333 256C149.3333333333333 260.9066666666667 149.3333333333333 265.6 150.8266666666667 270.0800000000001L64 356.9066666666667M224 337.4933333333334V384H288V337.4933333333334C331.3066666666666 326.6133333333334 362.6666666666667 294.1866666666667 362.6666666666667 256H320C320 279.04 290.7733333333333 298.6666666666667 256 298.6666666666667C248.1066666666667 298.6666666666667 240.64 297.6 233.6 295.8933333333333L200.5333333333333 328.9600000000001L224 337.4933333333334z" />
+    <glyph glyph-name="current-ac"
+      unicode="&#xF95A;"
+      horiz-adv-x="512" d=" M352 0C288 0 262.6133333333333 90.4533333333334 235.7333333333334 186.0266666666667C216.32 255.1466666666667 192 341.3333333333334 160 341.3333333333334C87.68 341.3333333333334 85.3333333333333 193.4933333333334 85.3333333333333 192H42.6666666666667C42.6666666666667 199.8933333333333 43.9466666666667 384 160 384C224 384 249.8133333333334 293.3333333333334 276.6933333333333 197.5466666666667C295.04 132.2666666666667 320 42.6666666666667 352 42.6666666666667C425.3866666666667 42.6666666666667 427.3066666666667 190.5066666666667 427.3066666666667 192H469.9733333333334C469.9733333333334 184.1066666666667 468.6933333333334 0 352 0z" />
+    <glyph glyph-name="current-dc"
+      unicode="&#xF95B;"
+      horiz-adv-x="512" d=" M42.6666666666667 256V213.3333333333334H469.3333333333333V256H42.6666666666667M42.6666666666667 170.6666666666667V128H128V170.6666666666667H42.6666666666667M213.3333333333333 170.6666666666667V128H298.6666666666667V170.6666666666667H213.3333333333333M384 170.6666666666667V128H469.3333333333333V170.6666666666667H384z" />
+    <glyph glyph-name="cursor-default"
+      unicode="&#xF1B4;"
+      horiz-adv-x="512" d=" M290.9866666666667 -20.6933333333333C280.32 -25.8133333333333 267.52 -21.3333333333333 262.6133333333334 -10.6666666666666L216.1066666666667 90.4533333333334L162.56 47.3600000000001C158.9333333333333 44.3733333333334 154.4533333333334 42.6666666666667 149.3333333333334 42.6666666666667C137.6 42.6666666666667 128 52.2666666666668 128 64.0000000000001V384C128 395.7333333333334 137.6 405.3333333333333 149.3333333333334 405.3333333333333C154.4533333333334 405.3333333333333 159.36 403.4133333333334 162.9866666666667 400.4266666666667L163.2 400.64L408.32 194.9866666666667C417.4933333333334 187.3066666666667 418.56 173.8666666666667 411.0933333333333 164.9066666666667C407.8933333333333 161.0666666666667 403.4133333333333 158.5066666666667 398.9333333333333 157.6533333333333L331.52 144.4266666666667L378.4533333333333 43.52C384 32.8533333333334 378.88 20.2666666666667 368.2133333333333 15.36L290.9866666666666 -20.6933333333334z" />
+    <glyph glyph-name="cursor-default-outline"
+      unicode="&#xF1B5;"
+      horiz-adv-x="512" d=" M214.8266666666667 143.5733333333334C225.4933333333334 148.6933333333334 238.08 144 243.2 133.3333333333334L292.2666666666667 26.88L330.6666666666667 45.0133333333333L281.3866666666667 151.2533333333333C276.2666666666667 161.92 280.96 174.72 291.6266666666667 179.6266666666667L297.6 181.3333333333334L346.6666666666667 190.9333333333333L170.6666666666667 338.7733333333333V108.8L209.4933333333334 140.16L214.8266666666667 143.5733333333334M290.9866666666667 -20.6933333333333C280.32 -25.8133333333333 267.52 -21.3333333333333 262.6133333333334 -10.6666666666666L216.1066666666667 90.4533333333334L162.56 47.3600000000001C158.9333333333333 44.3733333333334 154.4533333333334 42.6666666666667 149.3333333333334 42.6666666666667C137.6 42.6666666666667 128 52.2666666666668 128 64.0000000000001V384C128 395.7333333333334 137.6 405.3333333333333 149.3333333333334 405.3333333333333C154.4533333333334 405.3333333333333 159.36 403.4133333333334 162.9866666666667 400.4266666666667L163.2 400.64L408.32 194.9866666666667C417.4933333333334 187.3066666666667 418.56 173.8666666666667 411.0933333333333 164.9066666666667C407.8933333333333 161.0666666666667 403.4133333333333 158.5066666666667 398.9333333333333 157.6533333333333L331.52 144.4266666666667L378.4533333333333 43.52C384 32.8533333333334 378.88 20.2666666666667 368.2133333333333 15.36L290.9866666666666 -20.6933333333334z" />
+    <glyph glyph-name="cursor-move"
+      unicode="&#xF1B6;"
+      horiz-adv-x="512" d=" M277.3333333333333 320V213.3333333333334H384V282.6666666666667L474.6666666666666 192L384 101.3333333333334V170.6666666666667H277.3333333333333V64H346.6666666666667L256 -26.6666666666666L165.3333333333333 64H234.6666666666667V170.6666666666667H128V101.3333333333334L37.3333333333333 192L128 282.6666666666667V213.3333333333334H234.6666666666667V320H165.3333333333333L256 410.6666666666667L346.6666666666667 320H277.3333333333333z" />
+    <glyph glyph-name="cursor-pointer"
+      unicode="&#xF1B7;"
+      horiz-adv-x="512" d=" M293.3333333333333 230.6133333333334L306.7733333333333 227.84L395.7333333333334 183.4666666666667C410.6666666666667 178.56 420.48 163.84 419.2000000000001 148.0533333333334V142.5066666666667L400.0000000000001 11.9466666666667C398.7200000000001 2.7733333333333 394.6666666666668 -5.76 387.2000000000001 -11.7333333333333C380.5866666666667 -18.1333333333333 371.8400000000001 -21.3333333333333 362.6666666666668 -21.3333333333333H215.8933333333334C205.4400000000001 -21.3333333333333 195.8400000000001 -17.4933333333333 188.8000000000001 -10.0266666666666L61.0133333333333 117.3333333333334L80.2133333333333 138.6666666666667C85.3333333333333 144 93.44 146.9866666666667 101.12 146.56H107.3066666666667L192 128V352C192 375.4666666666667 211.2 394.6666666666667 234.6666666666667 394.6666666666667S277.3333333333333 375.4666666666667 277.3333333333333 352V230.6133333333333H293.3333333333333z" />
+    <glyph glyph-name="cursor-text"
+      unicode="&#xF5E7;"
+      horiz-adv-x="512" d=" M277.3333333333333 42.6666666666667C277.3333333333333 30.9333333333333 286.9333333333333 21.3333333333334 298.6666666666667 21.3333333333334H341.3333333333333V-21.3333333333333H288C276.2666666666667 -21.3333333333333 256 -11.7333333333333 256 0C256 -11.7333333333333 235.7333333333334 -21.3333333333333 224 -21.3333333333333H170.6666666666667V21.3333333333334H213.3333333333333C225.0666666666667 21.3333333333334 234.6666666666667 30.9333333333333 234.6666666666667 42.6666666666667V341.3333333333334C234.6666666666667 353.0666666666667 225.0666666666667 362.6666666666667 213.3333333333333 362.6666666666667H170.6666666666667V405.3333333333333H224C235.7333333333334 405.3333333333333 256 395.7333333333334 256 384C256 395.7333333333334 276.2666666666667 405.3333333333333 288 405.3333333333333H341.3333333333333V362.6666666666667H298.6666666666667C286.9333333333333 362.6666666666667 277.3333333333333 353.0666666666667 277.3333333333333 341.3333333333334V42.6666666666667z" />
+    <glyph glyph-name="database"
+      unicode="&#xF1B8;"
+      horiz-adv-x="512" d=" M256 384C161.7066666666667 384 85.3333333333333 345.8133333333334 85.3333333333333 298.6666666666667S161.7066666666667 213.3333333333334 256 213.3333333333334S426.6666666666667 251.52 426.6666666666667 298.6666666666667S350.2933333333334 384 256 384M85.3333333333333 256V192C85.3333333333333 144.8533333333334 161.7066666666667 106.6666666666667 256 106.6666666666667S426.6666666666667 144.8533333333334 426.6666666666667 192V256C426.6666666666667 208.8533333333333 350.2933333333334 170.6666666666667 256 170.6666666666667S85.3333333333333 208.8533333333333 85.3333333333333 256M85.3333333333333 149.3333333333334V85.3333333333334C85.3333333333333 38.1866666666667 161.7066666666667 0 256 0S426.6666666666667 38.1866666666667 426.6666666666667 85.3333333333334V149.3333333333334C426.6666666666667 102.1866666666667 350.2933333333334 64 256 64S85.3333333333333 102.1866666666667 85.3333333333333 149.3333333333334z" />
+    <glyph glyph-name="database-check"
+      unicode="&#xFAA8;"
+      horiz-adv-x="512" d=" M277.3333333333333 70.4V6.1866666666667C257.0666666666667 2.1333333333333 235.3066666666667 0 213.3333333333333 0C119.04 0 42.6666666666667 38.1866666666667 42.6666666666667 85.3333333333334V149.3333333333334C42.6666666666667 102.1866666666667 119.04 64 213.3333333333333 64C235.3066666666667 64 257.0666666666667 66.1333333333334 277.3333333333333 70.4M42.6666666666667 256C42.6666666666667 208.8533333333333 119.04 170.6666666666667 213.3333333333333 170.6666666666667S384 208.8533333333333 384 256V192C384 144.8533333333334 307.6266666666667 106.6666666666667 213.3333333333333 106.6666666666667S42.6666666666667 144.8533333333334 42.6666666666667 192V256M213.3333333333333 384C307.6266666666667 384 384 345.8133333333334 384 298.6666666666667S307.6266666666667 213.3333333333334 213.3333333333333 213.3333333333334S42.6666666666667 251.52 42.6666666666667 298.6666666666667S119.04 384 213.3333333333333 384M501.3333333333333 85.3333333333334L394.6666666666667 -21.3333333333333L320 53.3333333333334L352 85.3333333333334L394.6666666666667 42.6666666666667L469.3333333333333 117.3333333333334L501.3333333333333 85.3333333333334z" />
+    <glyph glyph-name="database-edit"
+      unicode="&#xFB62;"
+      horiz-adv-x="512" d=" M85.3333333333333 149.3333333333334V85.3333333333334C85.3333333333333 42.6666666666667 150.4 5.9733333333334 234.6666666666667 0V61.6533333333334L237.44 64C151.8933333333333 69.12 85.3333333333333 105.3866666666667 85.3333333333333 149.3333333333334M256 170.6666666666667C161.7066666666667 170.6666666666667 85.3333333333333 208.8533333333333 85.3333333333333 256V192C85.3333333333333 144.8533333333334 161.7066666666667 106.6666666666667 256 106.6666666666667H280.7466666666667L362.6666666666667 189.4400000000001C328.5333333333333 176.6400000000001 292.48 170.6666666666667 256 170.6666666666667M256 384C161.7066666666667 384 85.3333333333333 345.8133333333334 85.3333333333333 298.6666666666667S161.7066666666667 213.3333333333334 256 213.3333333333334S426.6666666666667 251.52 426.6666666666667 298.6666666666667S350.2933333333334 384 256 384M448 210.56C444.8 210.56 441.8133333333334 209.28 439.68 206.9333333333333L418.3466666666667 185.6L462.08 142.9333333333333L483.4133333333333 164.2666666666667C487.8933333333333 168.5333333333333 488.1066666666666 175.7866666666666 483.4133333333333 180.6933333333333L456.96 206.9333333333333C454.8266666666667 209.28 451.84 210.56 448.8533333333334 210.56M406.1866666666667 173.2266666666667L277.3333333333333 43.9466666666667V0H321.28L450.56 129.4933333333334L406.1866666666666 173.2266666666667z" />
+    <glyph glyph-name="database-export"
+      unicode="&#xF95D;"
+      horiz-adv-x="512" d=" M303.36 42.6666666666667L363.7333333333334 103.04L318.5066666666667 149.3333333333334H469.3333333333333V-1.4933333333333L424.1066666666667 42.6666666666667L363.7333333333333 -17.7066666666666L303.36 42.6666666666667M242.9866666666667 42.6666666666667L264.32 64H256C161.7066666666667 64 85.3333333333333 102.1866666666667 85.3333333333333 149.3333333333334V85.3333333333334C85.3333333333333 38.1866666666667 161.7066666666667 0 256 0C266.0266666666667 0 275.84 0 285.44 1.28L242.9866666666667 42.6666666666667M368.8533333333333 192H426.6666666666667V256C426.6666666666667 230.4000000000001 405.3333333333333 207.5733333333334 368.8533333333333 192M85.3333333333333 256V192C85.3333333333333 144.8533333333334 161.7066666666667 106.6666666666667 256 106.6666666666667C270.2933333333333 106.6666666666667 284.5866666666667 107.52 298.6666666666667 109.4400000000001L236.16 170.6666666666667C151.2533333333333 176.2133333333334 85.3333333333333 212.2666666666667 85.3333333333333 256M256 384C161.7066666666667 384 85.3333333333333 345.8133333333334 85.3333333333333 298.6666666666667S161.7066666666667 213.3333333333334 256 213.3333333333334S426.6666666666667 251.52 426.6666666666667 298.6666666666667S350.2933333333334 384 256 384z" />
+    <glyph glyph-name="database-import"
+      unicode="&#xF95C;"
+      horiz-adv-x="512" d=" M363.7333333333334 144.64L424.1066666666667 84.2666666666667L469.3333333333333 129.4933333333334V-21.3333333333333H318.5066666666667L363.7333333333334 23.8933333333334L303.36 84.2666666666668L363.7333333333334 144.6400000000001M263.04 64H256C161.7066666666667 64 85.3333333333333 102.1866666666667 85.3333333333333 149.3333333333334V85.3333333333334C85.3333333333333 38.1866666666667 161.7066666666667 0 256 0H280.32L303.36 23.04L263.04 64M374.1866666666666 194.3466666666667L411.52 157.0133333333333C420.9066666666667 166.1866666666667 426.6666666666667 178.7733333333333 426.6666666666667 192V256C426.6666666666667 231.8933333333334 406.6133333333333 209.92 374.1866666666666 194.56V194.3466666666667M85.3333333333333 256V192C85.3333333333333 144.8533333333334 161.7066666666667 106.6666666666667 256 106.6666666666667H265.6L341.3333333333333 181.9733333333334C313.6 174.2933333333334 284.8 170.6666666666667 256 170.6666666666667C161.7066666666667 170.6666666666667 85.3333333333333 208.8533333333333 85.3333333333333 256M256 384C161.7066666666667 384 85.3333333333333 345.8133333333334 85.3333333333333 298.6666666666667S161.7066666666667 213.3333333333334 256 213.3333333333334S426.6666666666667 251.52 426.6666666666667 298.6666666666667S350.2933333333334 384 256 384z" />
+    <glyph glyph-name="database-lock"
+      unicode="&#xFAA9;"
+      horiz-adv-x="512" d=" M234.6666666666667 384C328.96 384 405.3333333333333 345.8133333333334 405.3333333333333 298.6666666666667S328.96 213.3333333333334 234.6666666666667 213.3333333333334S64 251.52 64 298.6666666666667S140.3733333333333 384 234.6666666666667 384M405.3333333333333 191.36C365.0133333333333 186.88 332.16 157.4400000000001 322.7733333333333 118.8266666666667C296.9599999999999 111.1466666666667 266.6666666666667 106.6666666666667 234.6666666666667 106.6666666666667C140.3733333333333 106.6666666666667 64 144.8533333333334 64 192V256C64 208.8533333333333 140.3733333333333 170.6666666666667 234.6666666666667 170.6666666666667S405.3333333333333 208.8533333333333 405.3333333333333 256V191.36M298.6666666666667 70.1866666666667V6.1866666666667C278.8266666666667 2.1333333333333 257.28 0 234.6666666666667 0C140.3733333333333 0 64 38.1866666666667 64 85.3333333333334V149.3333333333334C64 102.1866666666667 140.3733333333333 64 234.6666666666667 64C257.28 64 278.8266666666667 66.1333333333334 298.6666666666667 70.1866666666667M416 149.3333333333334C445.44 149.3333333333334 469.3333333333333 125.44 469.3333333333333 96V85.3333333333334C481.0666666666667 85.3333333333334 490.6666666666666 75.7333333333334 490.6666666666666 64V-21.3333333333333C490.6666666666666 -33.0666666666667 481.0666666666667 -42.6666666666666 469.3333333333333 -42.6666666666666H362.6666666666667C350.9333333333333 -42.6666666666666 341.3333333333333 -33.0666666666667 341.3333333333333 -21.3333333333333V64C341.3333333333333 75.7333333333334 350.9333333333333 85.3333333333334 362.6666666666667 85.3333333333334V96C362.6666666666667 125.44 386.56 149.3333333333334 416 149.3333333333334M416 128C398.2933333333334 128 384 113.7066666666667 384 96V85.3333333333334H448V96C448 113.7066666666667 433.7066666666666 128 416 128z" />
+    <glyph glyph-name="database-minus"
+      unicode="&#xF1B9;"
+      horiz-adv-x="512" d=" M192 384C97.7066666666667 384 21.3333333333333 345.8133333333334 21.3333333333333 298.6666666666667S97.7066666666667 213.3333333333334 192 213.3333333333334S362.6666666666667 251.52 362.6666666666667 298.6666666666667S286.2933333333333 384 192 384M21.3333333333333 256V192C21.3333333333333 144.8533333333334 97.7066666666667 106.6666666666667 192 106.6666666666667S362.6666666666667 144.8533333333334 362.6666666666667 192V256C362.6666666666667 208.8533333333333 286.2933333333333 170.6666666666667 192 170.6666666666667S21.3333333333333 208.8533333333333 21.3333333333333 256M21.3333333333333 149.3333333333334V85.3333333333334C21.3333333333333 38.1866666666667 97.7066666666667 0 192 0C222.08 0 251.52 4.0533333333334 277.3333333333333 11.52V75.52C251.52 68.0533333333333 222.08 64 192 64C97.7066666666667 64 21.3333333333333 102.1866666666667 21.3333333333333 149.3333333333334M320 85.3333333333334V42.6666666666667H490.6666666666666V85.3333333333334" />
+    <glyph glyph-name="database-plus"
+      unicode="&#xF1BA;"
+      horiz-adv-x="512" d=" M192 384C97.7066666666667 384 21.3333333333333 345.8133333333334 21.3333333333333 298.6666666666667S97.7066666666667 213.3333333333334 192 213.3333333333334S362.6666666666667 251.52 362.6666666666667 298.6666666666667S286.2933333333333 384 192 384M21.3333333333333 256V192C21.3333333333333 144.8533333333334 97.7066666666667 106.6666666666667 192 106.6666666666667S362.6666666666667 144.8533333333334 362.6666666666667 192V256C362.6666666666667 208.8533333333333 286.2933333333333 170.6666666666667 192 170.6666666666667S21.3333333333333 208.8533333333333 21.3333333333333 256M21.3333333333333 149.3333333333334V85.3333333333334C21.3333333333333 38.1866666666667 97.7066666666667 0 192 0C222.08 0 251.52 4.0533333333334 277.3333333333333 11.52V75.52C251.52 68.0533333333333 222.08 64 192 64C97.7066666666667 64 21.3333333333333 102.1866666666667 21.3333333333333 149.3333333333334M384 149.3333333333334V85.3333333333334H320V42.6666666666667H384V-21.3333333333333H426.6666666666667V42.6666666666667H490.6666666666666V85.3333333333334H426.6666666666667V149.3333333333334" />
+    <glyph glyph-name="database-search"
+      unicode="&#xF865;"
+      horiz-adv-x="512" d=" M398.5066666666667 185.1733333333334C360.9599999999999 222.72 300.16 222.5066666666667 262.8266666666667 184.96C225.28 147.4133333333334 225.28 86.6133333333334 262.8266666666667 49.28C294.6133333333334 17.7066666666667 343.68 12.16 381.6533333333333 35.84L448 -29.6533333333333L477.6533333333333 0L411.7333333333334 66.3466666666667C435.84 104.1066666666667 430.2933333333334 153.6 398.5066666666667 185.1733333333334M368.4266666666666 79.5733333333334C347.52 58.6666666666667 313.8133333333333 58.8800000000001 292.9066666666667 79.5733333333334C272.2133333333333 100.48 272.2133333333333 134.1866666666667 293.12 155.0933333333334C313.8133333333334 175.7866666666667 347.52 175.7866666666667 368.4266666666666 155.0933333333334C389.12 134.1866666666667 389.12 100.48 368.4266666666666 79.5733333333334M232.5333333333334 19.2C218.6666666666667 33.28 207.7866666666667 50.1333333333333 200.96 68.6933333333333C133.76 80 85.3333333333333 111.7866666666667 85.3333333333333 149.3333333333334V85.3333333333334C85.3333333333333 38.1866666666667 161.7066666666667 0 256 0C247.4666666666667 5.5466666666667 239.5733333333333 11.9466666666667 232.5333333333334 19.2M85.3333333333333 256V192C85.3333333333333 156.16 129.4933333333334 125.44 192 113.0666666666667V117.3333333333334C192 137.1733333333334 196.2666666666667 156.8 204.3733333333333 174.72C135.2533333333333 185.6 85.3333333333333 217.8133333333334 85.3333333333333 256M256 384C161.7066666666667 384 85.3333333333333 345.8133333333334 85.3333333333333 298.6666666666667C85.3333333333333 256 149.3333333333333 220.16 231.4666666666667 213.3333333333334H232.5333333333334C258.1333333333334 240.2133333333334 293.5466666666666 256 330.6666666666667 256C350.08 256 369.28 251.9466666666667 386.9866666666667 244.0533333333334C408.9600000000001 254.08 423.8933333333333 274.7733333333334 426.6666666666667 298.6666666666667C426.6666666666667 345.8133333333334 350.2933333333334 384 256 384z" />
+    <glyph glyph-name="death-star"
+      unicode="&#xF8D7;"
+      horiz-adv-x="512" d=" M43.7333333333333 170.6666666666667H468.2666666666667C457.6 62.9333333333333 366.7199999999999 -21.3333333333333 256 -21.3333333333333C145.4933333333334 -21.3333333333333 54.4 62.9333333333333 43.7333333333334 170.6666666666667M468.2666666666667 213.3333333333334H43.7333333333333C54.4 321.0666666666667 145.4933333333333 405.3333333333333 256 405.3333333333333S457.6 321.0666666666667 468.2666666666667 213.3333333333334M256 304C256 333.44 232.1066666666667 357.3333333333334 202.6666666666667 357.3333333333334S149.3333333333333 333.44 149.3333333333333 304S173.2266666666667 250.6666666666667 202.6666666666667 250.6666666666667S256 274.56 256 304z" />
+    <glyph glyph-name="death-star-variant"
+      unicode="&#xF8D8;"
+      horiz-adv-x="512" d=" M43.7333333333333 170.6666666666667H468.0533333333333C466.7733333333334 155.9466666666667 463.7866666666667 141.6533333333334 459.52 128H298.6666666666667V85.3333333333334H362.6666666666667V42.6666666666667H320V0H266.6666666666667V-21.3333333333333H256C145.4933333333334 -21.3333333333333 54.4 62.9333333333333 43.7333333333334 170.6666666666667M468.0533333333333 213.3333333333334H43.7333333333333C54.4 321.0666666666667 145.4933333333333 405.3333333333333 256 405.3333333333333C290.56 405.3333333333333 323.2 397.0133333333333 352 382.2933333333334V341.3333333333334H394.6666666666667V298.6666666666667H426.6666666666667V256H459.52C463.7866666666666 242.3466666666667 466.7733333333333 228.0533333333334 468.0533333333333 213.3333333333334M256 304C256 333.44 232.1066666666667 357.3333333333334 202.6666666666667 357.3333333333334S149.3333333333333 333.44 149.3333333333333 304S173.2266666666667 250.6666666666667 202.6666666666667 250.6666666666667S256 274.56 256 304z" />
+    <glyph glyph-name="deathly-hallows"
+      unicode="&#xFB63;"
+      horiz-adv-x="512" d=" M256 405.3333333333333L21.3333333333333 0H490.6666666666666L256 405.3333333333333M272 203.3066666666667C310.6133333333334 194.7733333333333 334.9333333333333 156.3733333333333 326.4 117.3333333333334C320 90.6666666666667 298.6666666666667 69.3333333333334 272 63.36V203.3066666666666M240 64C201.3866666666667 72.5333333333333 177.0666666666667 110.9333333333333 185.6 149.3333333333334C192 176.64 213.3333333333333 197.9733333333333 240 203.9466666666667V64M360.1066666666667 133.9733333333334C359.04 184.5333333333333 321.92 226.9866666666667 272 234.6666666666667V313.8133333333334L435.2 32H278.8266666666666C326.1866666666666 42.6666666666667 359.8933333333333 84.6933333333333 360.1066666666667 133.3333333333334V133.9733333333334M240 313.8133333333334V234.6666666666667C183.4666666666667 226.1333333333334 144.4266666666667 173.2266666666667 153.1733333333333 116.48C160 74.6666666666667 191.36 40.1066666666667 233.1733333333333 30.9333333333334H76.8L240 313.8133333333334z" />
+    <glyph glyph-name="debian"
+      unicode="&#xF8D9;"
+      horiz-adv-x="512" d=" M394.6666666666667 222.5066666666667L390.4 214.6133333333334C395.9466666666667 231.2533333333334 392.7466666666667 249.3866666666667 393.6 265.1733333333334L392.1066666666667 265.6C390.6133333333333 305.0666666666667 356.48 347.0933333333334 326.1866666666666 361.1733333333334C299.9466666666666 373.3333333333333 259.6266666666666 375.4666666666667 241.0666666666667 366.2933333333334C243.6266666666666 368.64 253.8666666666666 369.4933333333334 250.6666666666667 371.2C221.44 368.4266666666667 228.0533333333333 361.1733333333334 205.6533333333333 355.4133333333334C199.4666666666667 349.44 224 360.1066666666667 210.56 352C198.6133333333333 349.2266666666667 193.0666666666666 354.56 175.36 336.2133333333334C176.8533333333333 333.6533333333333 186.6666666666666 343.68 178.56 333.6533333333333C161.7066666666667 335.5733333333333 125.6533333333333 295.2533333333334 117.9733333333333 282.0266666666667L122.0266666666667 281.1733333333334C115.4133333333333 264.7466666666667 106.6666666666667 254.2933333333334 105.6 244.48C103.8933333333333 220.16 96 176 107.3066666666666 162.3466666666667L106.0266666666667 151.04L110.9333333333333 141.4400000000001L108.3733333333333 141.2266666666667C120.7466666666667 102.1866666666667 121.6 140.3733333333334 138.0266666666667 99.84C135.68 100.6933333333333 133.12 101.5466666666666 129.7066666666667 106.6666666666667C129.28 102.6133333333334 134.8266666666667 91.9466666666667 141.2266666666667 83.6266666666667L138.6666666666667 80.64C142.08 74.0266666666668 145.4933333333334 72.5333333333334 147.84 70.1866666666667C134.4 77.6533333333334 160 46.0800000000001 162.7733333333333 42.0266666666668L164.9066666666667 45.6533333333334C164.48 40.5333333333335 168.5333333333333 33.7066666666668 176.2133333333333 24.1066666666667L182.6133333333334 24.3200000000001C185.3866666666667 19.2000000000002 194.9866666666667 9.8133333333334 200.7466666666667 9.3866666666668L196.9066666666667 4.2666666666668C211.6266666666667 2e-13 203.9466666666667 -1.9199999999998 222.08 -8.3199999999998L218.4533333333333 -1.9199999999998C227.6266666666667 -9.8133333333332 230.4 -16.8533333333331 243.4133333333334 -22.8266666666665C261.5466666666666 -29.2266666666665 263.8933333333333 -26.6666666666665 282.24 -31.9999999999998C266.6666666666667 -31.9999999999998 248.32 -31.9999999999998 235.9466666666667 -27.3066666666665C151.4666666666667 -4.4799999999998 74.6666666666667 94.7200000000001 79.7866666666667 196.6933333333335C78.5066666666667 217.3866666666668 81.92 243.2000000000002 78.5066666666667 248.3200000000002C83.2 264.1066666666668 88.7466666666667 283.3066666666668 100.0533333333333 306.1333333333335C99.2 307.6266666666668 101.9733333333333 301.6533333333335 107.7333333333334 311.2533333333335C111.1466666666667 318.9333333333335 113.92 327.2533333333335 118.4 334.7200000000002L120.5333333333333 335.3600000000002C122.88 348.3733333333335 151.04 368.4266666666669 160 378.4533333333335V374.6133333333335C178.3466666666666 391.8933333333335 211.2 403.4133333333335 229.5466666666667 411.5200000000002C224.64 406.1866666666669 240.4266666666667 412.1600000000002 251.7333333333334 412.8000000000002L241.28 406.8266666666668C254.7200000000001 410.2400000000001 254.08 405.3333333333335 267.9466666666667 407.4666666666668C263.04 406.8266666666668 257.28 405.3333333333335 258.1333333333334 404.0533333333335C273.4933333333334 402.3466666666668 276.0533333333333 408.7466666666668 290.3466666666667 404.0533333333335L289.28 408.3200000000002C309.3333333333333 401.0666666666669 313.3866666666666 402.3466666666668 334.9333333333333 390.8266666666668C342.6133333333333 390.6133333333335 343.4666666666666 395.5200000000002 354.7733333333333 390.8266666666668C356.9066666666667 387.4133333333335 354.3466666666667 386.7733333333335 368.4266666666666 378.2400000000001C369.92 378.8800000000001 365.6533333333333 382.9333333333335 362.6666666666667 386.1333333333335C390.4 370.9866666666668 421.3333333333333 338.7733333333335 430.5066666666667 304.2133333333335C421.76 320.0000000000002 429.6533333333333 295.8933333333335 426.6666666666667 297.1733333333335C430.5066666666667 286.7200000000002 433.7066666666666 275.8400000000002 435.84 264.5333333333336C433.28 273.7066666666668 427.52 296.1066666666669 417.4933333333334 310.4000000000002C416.8533333333333 301.2266666666669 404.6933333333333 316.8000000000002 411.3066666666667 296.3200000000002C416 289.0666666666669 412.3733333333334 303.7866666666669 418.56 290.9866666666669C418.56 284.8000000000002 420.9066666666667 278.6133333333335 422.4 270.7200000000002C420.2666666666667 271.1466666666669 417.7066666666667 279.4666666666669 416 277.3333333333335C418.1333333333334 266.6666666666669 421.76 261.9733333333336 423.04 261.1200000000002C422.3999999999999 259.4133333333336 420.4799999999999 262.8266666666668 420.4799999999999 256.0000000000002C421.3333333333333 240.2133333333335 424.9599999999999 246.8266666666668 426.6666666666666 246.1866666666668C424.7466666666666 238.2933333333335 417.9199999999999 229.3333333333335 421.3333333333333 215.8933333333335L417.0666666666666 227.8400000000002C415.9999999999999 216.5333333333335 419.4133333333333 214.4000000000002 414.2933333333333 200.5333333333335C418.1333333333333 213.3333333333335 417.7066666666666 224.0000000000002 414.08 218.6666666666668C415.9999999999999 201.1733333333335 400.2133333333333 187.7333333333335 401.7066666666666 176.4266666666669L397.2266666666666 182.6133333333335C385.0666666666666 164.9066666666668 397.0133333333332 173.0133333333335 388.6933333333333 160.0000000000001C391.68 164.9066666666668 387.2 161.7066666666668 391.04 167.6800000000001C388.4799999999999 167.4666666666668 379.3066666666666 156.3733333333335 370.9866666666666 149.9733333333335C338.1333333333333 123.7333333333335 298.6666666666666 120.1066666666668 261.1199999999999 134.4000000000001H260.9066666666666C261.1199999999999 135.2533333333335 260.9066666666666 136.3200000000001 258.3466666666666 138.0266666666668C226.1333333333333 162.5600000000001 207.1466666666666 183.4666666666668 213.3333333333333 232.1066666666668C218.6666666666666 235.7333333333335 219.9466666666666 256.0000000000001 231.2533333333333 263.0400000000001C238.08 278.1866666666667 258.56 292.0533333333334 280.5333333333333 292.4800000000001C302.9333333333333 293.7600000000001 321.92 280.5333333333334 331.52 268.1600000000001C314.0266666666667 284.1600000000001 285.8666666666666 289.0666666666668 261.5466666666666 277.3333333333335C237.0133333333333 266.0266666666668 222.2933333333333 238.9333333333334 224 211.8400000000001C225.28 213.3333333333334 226.1333333333334 212.2666666666667 226.56 215.6800000000001C225.92 162.9866666666667 283.3066666666666 124.3733333333334 324.6933333333333 143.7866666666668L325.3333333333333 142.72C341.9733333333333 147.4133333333334 339.8399999999999 151.0400000000001 350.7199999999999 158.72C349.8666666666666 156.8000000000001 343.4666666666666 152.3200000000001 347.3066666666666 152.3200000000001C352.64 153.6 369.28 169.1733333333334 377.5999999999999 176.4266666666667C381.2266666666666 184.5333333333334 375.4666666666666 181.3333333333334 380.7999999999999 191.1466666666667L387.1999999999999 194.3466666666667C390.8266666666666 204.5866666666667 394.6666666666666 210.3466666666667 394.6666666666666 222.5066666666667" />
+    <glyph glyph-name="debug-step-into"
+      unicode="&#xF1BB;"
+      horiz-adv-x="512" d=" M256 -21.3333333333333C232.5333333333334 -21.3333333333333 213.3333333333333 -2.1333333333333 213.3333333333333 21.3333333333334S232.5333333333334 64 256 64S298.6666666666667 44.8000000000001 298.6666666666667 21.3333333333334S279.4666666666667 -21.3333333333333 256 -21.3333333333333M277.3333333333333 405.3333333333333V170.6666666666667L373.3333333333333 266.6666666666667L403.6266666666667 236.3733333333334L256 88.7466666666667L108.3733333333333 236.3733333333334L138.6666666666667 266.6666666666667L234.6666666666667 170.6666666666667V405.3333333333333H277.3333333333333z" />
+    <glyph glyph-name="debug-step-out"
+      unicode="&#xF1BC;"
+      horiz-adv-x="512" d=" M256 -21.3333333333333C232.5333333333334 -21.3333333333333 213.3333333333333 -2.1333333333333 213.3333333333333 21.3333333333334S232.5333333333334 64 256 64S298.6666666666667 44.8000000000001 298.6666666666667 21.3333333333334S279.4666666666667 -21.3333333333333 256 -21.3333333333333M277.3333333333333 106.6666666666667H234.6666666666667V320L138.6666666666667 224L108.3733333333333 254.2933333333334L256 401.92L403.6266666666667 254.2933333333334L373.3333333333333 224L277.3333333333333 320V106.6666666666667z" />
+    <glyph glyph-name="debug-step-over"
+      unicode="&#xF1BD;"
+      horiz-adv-x="512" d=" M256 149.3333333333334C279.4666666666667 149.3333333333334 298.6666666666667 130.1333333333333 298.6666666666667 106.6666666666667S279.4666666666667 64 256 64S213.3333333333333 83.2 213.3333333333333 106.6666666666667S232.5333333333334 149.3333333333334 256 149.3333333333334M500.48 258.9866666666667L466.56 112L320 145.92L401.0666666666667 196.6933333333333C370.9866666666667 245.3333333333334 317.2266666666667 277.3333333333334 256 277.3333333333334C171.7333333333334 277.3333333333334 101.76 216.32 87.8933333333333 135.8933333333334L45.8666666666667 143.36C63.1466666666667 243.6266666666667 150.6133333333333 320 256 320C332.3733333333334 320 399.5733333333333 279.68 437.3333333333333 219.3066666666667L500.48 258.9866666666667z" />
+    <glyph glyph-name="decagram"
+      unicode="&#xF76B;"
+      horiz-adv-x="512" d=" M490.6666666666666 192L438.6133333333333 251.3066666666667L445.8666666666666 329.8133333333334L368.8533333333333 347.3066666666667L328.5333333333333 415.1466666666667L256 384L183.4666666666667 415.1466666666667L143.1466666666667 347.3066666666667L66.1333333333333 330.0266666666667L73.3866666666667 251.5200000000001L21.3333333333333 192L73.3866666666667 132.6933333333334L66.1333333333333 53.9733333333334L143.1466666666667 36.48L183.4666666666667 -31.36L256 0L328.5333333333333 -31.1466666666666L368.8533333333333 36.6933333333333L445.8666666666666 54.1866666666667L438.6133333333333 132.6933333333333L490.6666666666666 192z" />
+    <glyph glyph-name="decagram-outline"
+      unicode="&#xF76C;"
+      horiz-adv-x="512" d=" M490.6666666666666 192L438.6133333333333 132.6933333333334L445.8666666666666 54.1866666666667L368.8533333333333 36.6933333333333L328.5333333333333 -31.1466666666666L256 0L183.4666666666667 -31.36L143.1466666666667 36.48L66.1333333333333 53.9733333333334L73.3866666666667 132.6933333333334L21.3333333333333 192L73.3866666666667 251.52L66.1333333333333 330.0266666666667L143.1466666666667 347.3066666666667L183.4666666666667 415.1466666666667L256 384L328.5333333333333 415.1466666666667L368.8533333333333 347.3066666666667L445.8666666666666 329.8133333333334L438.6133333333333 251.3066666666667L490.6666666666666 192M433.7066666666666 192L394.6666666666667 237.0133333333333L399.7866666666667 296.5333333333333L341.3333333333333 309.3333333333334L311.04 361.1733333333334L256 337.4933333333334L200.96 361.1733333333334L170.6666666666667 309.3333333333334L112.2133333333333 296.7466666666667L117.3333333333333 237.2266666666667L78.2933333333333 192L117.3333333333333 147.2000000000001L112.2133333333333 87.4666666666667L170.6666666666667 74.6666666666667L200.96 22.8266666666667L256 46.72L311.04 23.0400000000001L341.3333333333333 74.6666666666667L399.7866666666667 87.68L394.6666666666668 147.2L433.7066666666668 192z" />
+    <glyph glyph-name="decimal-decrease"
+      unicode="&#xF1BE;"
+      horiz-adv-x="512" d=" M256 85.3333333333334L320 21.3333333333334V64H448V106.6666666666667H320V149.3333333333334L256 85.3333333333334M192 341.3333333333334C227.4133333333334 341.3333333333334 256 312.7466666666667 256 277.3333333333334V213.3333333333334C256 177.92 227.4133333333334 149.3333333333334 192 149.3333333333334S128 177.92 128 213.3333333333334V277.3333333333334C128 312.7466666666667 156.5866666666667 341.3333333333334 192 341.3333333333334M192 298.6666666666667C180.2666666666667 298.6666666666667 170.6666666666667 289.0666666666667 170.6666666666667 277.3333333333334V213.3333333333334C170.6666666666667 201.6 180.2666666666667 192 192 192S213.3333333333333 201.6 213.3333333333333 213.3333333333334V277.3333333333334C213.3333333333333 289.0666666666667 203.7333333333334 298.6666666666667 192 298.6666666666667M85.3333333333333 192C97.0666666666667 192 106.6666666666667 182.4 106.6666666666667 170.6666666666667S97.0666666666667 149.3333333333334 85.3333333333333 149.3333333333334S64 158.9333333333333 64 170.6666666666667S73.6 192 85.3333333333333 192z" />
+    <glyph glyph-name="decimal-increase"
+      unicode="&#xF1BF;"
+      horiz-adv-x="512" d=" M469.3333333333333 85.3333333333334L405.3333333333333 21.3333333333334V64H277.3333333333333V106.6666666666667H405.3333333333333V149.3333333333334L469.3333333333333 85.3333333333334M192 341.3333333333334C227.4133333333334 341.3333333333334 256 312.7466666666667 256 277.3333333333334V213.3333333333334C256 177.92 227.4133333333334 149.3333333333334 192 149.3333333333334S128 177.92 128 213.3333333333334V277.3333333333334C128 312.7466666666667 156.5866666666667 341.3333333333334 192 341.3333333333334M192 298.6666666666667C180.2666666666667 298.6666666666667 170.6666666666667 289.0666666666667 170.6666666666667 277.3333333333334V213.3333333333334C170.6666666666667 201.6 180.2666666666667 192 192 192S213.3333333333333 201.6 213.3333333333333 213.3333333333334V277.3333333333334C213.3333333333333 289.0666666666667 203.7333333333334 298.6666666666667 192 298.6666666666667M341.3333333333333 341.3333333333334C376.7466666666667 341.3333333333334 405.3333333333333 312.7466666666667 405.3333333333333 277.3333333333334V213.3333333333334C405.3333333333333 177.92 376.7466666666667 149.3333333333334 341.3333333333333 149.3333333333334S277.3333333333333 177.92 277.3333333333333 213.3333333333334V277.3333333333334C277.3333333333333 312.7466666666667 305.92 341.3333333333334 341.3333333333333 341.3333333333334M341.3333333333333 298.6666666666667C329.6 298.6666666666667 320 289.0666666666667 320 277.3333333333334V213.3333333333334C320 201.6 329.6 192 341.3333333333333 192S362.6666666666667 201.6 362.6666666666667 213.3333333333334V277.3333333333334C362.6666666666667 289.0666666666667 353.0666666666667 298.6666666666667 341.3333333333333 298.6666666666667M85.3333333333333 192C97.0666666666667 192 106.6666666666667 182.4 106.6666666666667 170.6666666666667S97.0666666666667 149.3333333333334 85.3333333333333 149.3333333333334S64 158.9333333333333 64 170.6666666666667S73.6 192 85.3333333333333 192z" />
+    <glyph glyph-name="delete"
+      unicode="&#xF1C0;"
+      horiz-adv-x="512" d=" M405.3333333333333 362.6666666666667H330.6666666666667L309.3333333333333 384H202.6666666666667L181.3333333333333 362.6666666666667H106.6666666666667V320H405.3333333333333M128 42.6666666666667C128 19.2 147.2 0 170.6666666666667 0H341.3333333333333C364.8 0 384 19.2 384 42.6666666666667V298.6666666666667H128V42.6666666666667z" />
+    <glyph glyph-name="delete-circle"
+      unicode="&#xF682;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.9733333333334 405.3333333333333 469.3333333333333 309.9733333333334 469.3333333333333 192S373.9733333333334 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.0266666666666 42.6666666666667 192S138.0266666666667 405.3333333333333 256 405.3333333333333M362.6666666666667 298.6666666666667H309.3333333333333L288 320H224L202.6666666666667 298.6666666666667H149.3333333333333V256H362.6666666666667V298.6666666666667M192 64H320C331.7333333333334 64 341.3333333333333 73.6 341.3333333333333 85.3333333333334V234.6666666666667H170.6666666666667V85.3333333333334C170.6666666666667 73.6 180.2666666666667 64 192 64z" />
+    <glyph glyph-name="delete-circle-outline"
+      unicode="&#xFB64;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M341.3333333333333 234.6666666666667V85.3333333333334C341.3333333333333 73.6 331.7333333333334 64 320 64H192C180.2666666666667 64 170.6666666666667 73.6 170.6666666666667 85.3333333333334V234.6666666666667H341.3333333333333M288 320L309.3333333333333 298.6666666666667H362.6666666666667V256H149.3333333333333V298.6666666666667H202.6666666666667L224 320H288z" />
+    <glyph glyph-name="delete-empty"
+      unicode="&#xF6CB;"
+      horiz-adv-x="512" d=" M434.56 257.92L413.2266666666667 221.0133333333333L154.4533333333333 370.3466666666667L175.7866666666667 407.2533333333334L240.64 369.92L269.6533333333333 377.8133333333334L362.0266666666667 324.48L369.92 295.2533333333334L434.56 257.92M128 42.6666666666667V298.6666666666667H236.16L384 213.3333333333334V42.6666666666667C384 19.2 364.8 0 341.3333333333333 0H170.6666666666667C147.2 0 128 19.2 128 42.6666666666667z" />
+    <glyph glyph-name="delete-forever"
+      unicode="&#xF5E8;"
+      horiz-adv-x="512" d=" M128 42.6666666666667C128 19.2 147.2 0 170.6666666666667 0H341.3333333333333C364.8 0 384 19.2 384 42.6666666666667V298.6666666666667H128V42.6666666666667M180.48 194.56L210.56 224.6400000000001L256 179.4133333333334L301.2266666666667 224.6400000000001L331.3066666666667 194.56L286.08 149.3333333333334L331.3066666666667 104.1066666666667L301.2266666666667 74.0266666666666L256 119.2533333333333L210.7733333333333 74.0266666666666L180.6933333333333 104.1066666666667L225.92 149.3333333333334L180.48 194.56M330.6666666666667 362.6666666666667L309.3333333333333 384H202.6666666666667L181.3333333333333 362.6666666666667H106.6666666666667V320H405.3333333333333V362.6666666666667H330.6666666666667z" />
+    <glyph glyph-name="delete-forever-outline"
+      unicode="&#xFB65;"
+      horiz-adv-x="512" d=" M301.2266666666667 224.64L256 179.4133333333334L210.56 224.6400000000001L180.48 194.56L225.92 149.3333333333334L180.6933333333333 104.1066666666667L210.7733333333333 74.0266666666666L256 119.2533333333333L301.2266666666667 74.0266666666666L331.3066666666667 104.1066666666667L286.08 149.3333333333334L331.3066666666667 194.56L301.2266666666667 224.6400000000001M330.6666666666667 362.6666666666667L309.3333333333333 384H202.6666666666667L181.3333333333333 362.6666666666667H106.6666666666667V320H405.3333333333333V362.6666666666667H330.6666666666667M128 42.6666666666667C128 19.2 147.2 0 170.6666666666667 0H341.3333333333333C364.8 0 384 19.2 384 42.6666666666667V298.6666666666667H128V42.6666666666667M170.6666666666667 256H341.3333333333333V42.6666666666667H170.6666666666667V256z" />
+    <glyph glyph-name="delete-outline"
+      unicode="&#xF9E6;"
+      horiz-adv-x="512" d=" M128 42.6666666666667C128 19.2 147.2 0 170.6666666666667 0H341.3333333333333C364.8 0 384 19.2 384 42.6666666666667V298.6666666666667H128V42.6666666666667M170.6666666666667 256H341.3333333333333V42.6666666666667H170.6666666666667V256M330.6666666666667 362.6666666666667L309.3333333333333 384H202.6666666666667L181.3333333333333 362.6666666666667H106.6666666666667V320H405.3333333333333V362.6666666666667H330.6666666666667z" />
+    <glyph glyph-name="delete-restore"
+      unicode="&#xF818;"
+      horiz-adv-x="512" d=" M298.6666666666667 149.3333333333334H341.3333333333333L256 234.6666666666667L170.6666666666667 149.3333333333334H213.3333333333333V64H298.6666666666667V149.3333333333334M128 298.6666666666667H384V42.6666666666667C384 32 379.7333333333334 21.3333333333334 370.9866666666667 13.0133333333333C362.6666666666667 4.2666666666667 352 0 341.3333333333333 0H170.6666666666667C160 0 149.3333333333333 4.2666666666667 141.0133333333333 13.0133333333333C132.2666666666667 21.3333333333334 128 32 128 42.6666666666667V298.6666666666667M405.3333333333333 362.6666666666667V320H106.6666666666667V362.6666666666667H181.3333333333333L202.6666666666667 384H309.3333333333333L330.6666666666667 362.6666666666667H405.3333333333333z" />
+    <glyph glyph-name="delete-sweep"
+      unicode="&#xF5E9;"
+      horiz-adv-x="512" d=" M320 106.6666666666667H405.3333333333333V64H320V106.6666666666667M320 277.3333333333334H469.3333333333333V234.6666666666667H320V277.3333333333334M320 192H448V149.3333333333334H320V192M64 64C64 40.5333333333333 83.2 21.3333333333334 106.6666666666667 21.3333333333334H234.6666666666667C258.1333333333334 21.3333333333334 277.3333333333333 40.5333333333333 277.3333333333333 64V277.3333333333334H64V64M298.6666666666667 341.3333333333334H234.6666666666667L213.3333333333333 362.6666666666667H128L106.6666666666667 341.3333333333334H42.6666666666667V298.6666666666667H298.6666666666667V341.3333333333334z" />
+    <glyph glyph-name="delete-variant"
+      unicode="&#xF1C1;"
+      horiz-adv-x="512" d=" M448.64 384L384 14.72C380.3733333333333 -5.76 362.6666666666667 -21.3333333333333 341.3333333333333 -21.3333333333333H170.6666666666667C149.3333333333333 -21.3333333333333 131.6266666666667 -5.76 128 14.72L63.36 384H448.64M114.3466666666667 341.3333333333334L170.6666666666667 21.3333333333334H341.3333333333333L397.6533333333333 341.3333333333334H114.3466666666667M192 64V149.3333333333334H277.3333333333333V64H192M277.3333333333333 166.8266666666667L209.4933333333334 234.6666666666667L277.3333333333333 302.5066666666667L345.1733333333333 234.6666666666667L277.3333333333333 166.8266666666667z" />
+    <glyph glyph-name="delta"
+      unicode="&#xF1C2;"
+      horiz-adv-x="512" d=" M256 282.24L392.32 64H119.68L256 282.24M256 362.6666666666667L42.6666666666667 21.3333333333334H469.3333333333333" />
+    <glyph glyph-name="desk-lamp"
+      unicode="&#xF95E;"
+      horiz-adv-x="512" d=" M231.4666666666667 405.3333333333333L195.84 352L220.16 336L152.32 234.6666666666667H149.3333333333333C125.8666666666667 234.6666666666667 106.6666666666667 215.4666666666667 106.6666666666667 192C106.6666666666667 171.9466666666667 120.7466666666667 154.6666666666667 140.3733333333333 150.4L226.56 21.3333333333334H149.3333333333333V-21.3333333333333H362.6666666666667V21.3333333333334H277.3333333333333L181.9733333333334 164.6933333333333C188.3733333333334 172.3733333333333 192 181.9733333333334 192 192C192 198.4 190.5066666666667 204.8 187.7333333333334 210.56L256 312.1066666666667C251.3066666666667 276.2666666666667 272 237.0133333333333 308.2666666666667 213.3333333333334L402.9866666666667 354.7733333333333C366.9333333333333 378.88 322.56 383.1466666666667 291.2 365.44L231.4666666666667 405.3333333333333M391.04 298.6666666666667L355.6266666666666 245.3333333333334C370.1333333333333 235.7333333333334 390.1866666666666 239.5733333333334 400 254.2933333333334C409.8133333333334 269.0133333333333 405.3333333333333 288.8533333333334 391.04 298.6666666666667z" />
+    <glyph glyph-name="deskphone"
+      unicode="&#xF1C3;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M320 341.3333333333334V42.6666666666667H405.3333333333333V341.3333333333334H320M106.6666666666667 341.3333333333334V256H277.3333333333333V341.3333333333334H106.6666666666667M106.6666666666667 213.3333333333334V170.6666666666667H149.3333333333333V213.3333333333334H106.6666666666667M170.6666666666667 213.3333333333334V170.6666666666667H213.3333333333333V213.3333333333334H170.6666666666667M234.6666666666667 213.3333333333334V170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M106.6666666666667 149.3333333333334V106.6666666666667H149.3333333333333V149.3333333333334H106.6666666666667M170.6666666666667 149.3333333333334V106.6666666666667H213.3333333333333V149.3333333333334H170.6666666666667M234.6666666666667 149.3333333333334V106.6666666666667H277.3333333333333V149.3333333333334H234.6666666666667M234.6666666666667 85.3333333333334V42.6666666666667H277.3333333333333V85.3333333333334H234.6666666666667M170.6666666666667 85.3333333333334V42.6666666666667H213.3333333333333V85.3333333333334H170.6666666666667M106.6666666666667 85.3333333333334V42.6666666666667H149.3333333333333V85.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="desktop-classic"
+      unicode="&#xF7BF;"
+      horiz-adv-x="512" d=" M128 405.3333333333333C104.32 405.3333333333333 85.3333333333333 386.3466666666667 85.3333333333333 362.6666666666667V192C85.3333333333333 168.3200000000001 104.32 149.3333333333334 128 149.3333333333334H384C407.68 149.3333333333334 426.6666666666667 168.3200000000001 426.6666666666667 192V362.6666666666667C426.6666666666667 386.3466666666667 407.68 405.3333333333333 384 405.3333333333333H128M128 362.6666666666667H384V192H128V362.6666666666667M85.3333333333333 128C61.6533333333333 128 42.6666666666667 109.0133333333333 42.6666666666667 85.3333333333334V21.3333333333334C42.6666666666667 -2.3466666666666 61.6533333333333 -21.3333333333333 85.3333333333333 -21.3333333333333H426.6666666666667C450.3466666666667 -21.3333333333333 469.3333333333333 -2.3466666666666 469.3333333333333 21.3333333333334V85.3333333333334C469.3333333333333 109.0133333333333 450.3466666666667 128 426.6666666666667 128H85.3333333333333M170.6666666666667 85.3333333333334H426.6666666666667V21.3333333333334H170.6666666666667V85.3333333333334M192 69.3333333333334V37.3333333333334H277.3333333333333V69.3333333333334H192M320 69.3333333333334V37.3333333333334H405.3333333333333V69.3333333333334H320z" />
+    <glyph glyph-name="desktop-mac"
+      unicode="&#xF1C4;"
+      horiz-adv-x="512" d=" M448 149.3333333333334H64V362.6666666666667H448M448 405.3333333333333H64C40.32 405.3333333333333 21.3333333333333 386.3466666666667 21.3333333333333 362.6666666666667V106.6666666666667C21.3333333333333 83.2 40.5333333333333 64 64 64H213.3333333333333L170.6666666666667 0V-21.3333333333333H341.3333333333333V0L298.6666666666667 64H448C471.4666666666667 64 490.6666666666666 83.2 490.6666666666666 106.6666666666667V362.6666666666667C490.6666666666666 386.3466666666667 471.4666666666667 405.3333333333333 448 405.3333333333333z" />
+    <glyph glyph-name="desktop-mac-dashboard"
+      unicode="&#xF9E7;"
+      horiz-adv-x="512" d=" M448 149.3333333333334V362.6666666666667H64V149.3333333333334H448M448 405.3333333333333C471.4666666666667 405.3333333333333 490.6666666666666 386.1333333333334 490.6666666666666 362.6666666666667V106.6666666666667C490.6666666666666 83.2 471.4666666666667 64 448 64H298.6666666666667L341.3333333333333 0V-21.3333333333333H170.6666666666667V0L213.3333333333333 64H64C40.32 64 21.3333333333333 83.2 21.3333333333333 106.6666666666667V362.6666666666667C21.3333333333333 386.3466666666667 40.32 405.3333333333333 64 405.3333333333333H448M85.3333333333333 341.3333333333334H320V234.6666666666667H85.3333333333333V341.3333333333334M341.3333333333333 341.3333333333334H426.6666666666667V298.6666666666667H341.3333333333333V341.3333333333334M426.6666666666667 277.3333333333334V170.6666666666667H341.3333333333333V277.3333333333334H426.6666666666667M85.3333333333333 213.3333333333334H192V170.6666666666667H85.3333333333333V213.3333333333334M213.3333333333333 213.3333333333334H320V170.6666666666667H213.3333333333333V213.3333333333334z" />
+    <glyph glyph-name="desktop-tower"
+      unicode="&#xF1C5;"
+      horiz-adv-x="512" d=" M170.6666666666667 405.3333333333333H341.3333333333333C364.8 405.3333333333333 384 386.1333333333334 384 362.6666666666667V21.3333333333334C384 -2.1333333333333 364.8 -21.3333333333333 341.3333333333333 -21.3333333333333H170.6666666666667C147.2 -21.3333333333333 128 -2.1333333333333 128 21.3333333333334V362.6666666666667C128 386.1333333333334 147.2 405.3333333333333 170.6666666666667 405.3333333333333M170.6666666666667 362.6666666666667V320H341.3333333333333V362.6666666666667H170.6666666666667M341.3333333333333 277.3333333333334H170.6666666666667V234.6666666666667H341.3333333333333V277.3333333333334M341.3333333333333 64H298.6666666666667V21.3333333333334H341.3333333333333V64z" />
+    <glyph glyph-name="desktop-tower-monitor"
+      unicode="&#xFAAA;"
+      horiz-adv-x="512" d=" M469.3333333333333 64H362.6666666666667C350.9333333333333 64 341.3333333333333 73.6 341.3333333333333 85.3333333333334V298.6666666666667C341.3333333333333 310.4 350.9333333333333 320 362.6666666666667 320H469.3333333333333C481.0666666666667 320 490.6666666666666 310.4 490.6666666666666 298.6666666666667V85.3333333333334C490.6666666666666 73.6 481.0666666666667 64 469.3333333333333 64M469.3333333333333 277.3333333333334H362.6666666666667V256H469.3333333333333V277.3333333333334M469.3333333333333 234.6666666666667H362.6666666666667V213.3333333333334H469.3333333333333V234.6666666666667M192 128V85.3333333333334H213.3333333333333V64H106.6666666666667V85.3333333333334H128V128H42.6666666666667C30.9333333333333 128 21.3333333333333 137.6 21.3333333333333 149.3333333333334V298.6666666666667C21.3333333333333 310.4 30.9333333333333 320 42.6666666666667 320H277.3333333333333C289.0666666666667 320 298.6666666666667 310.4 298.6666666666667 298.6666666666667V149.3333333333334C298.6666666666667 137.6 289.0666666666667 128 277.3333333333333 128H192M256 277.3333333333334H64V170.6666666666667H256V277.3333333333334z" />
+    <glyph glyph-name="details"
+      unicode="&#xF1C6;"
+      horiz-adv-x="512" d=" M136.1066666666667 320H376.1066666666667L256 106.6666666666667L136.1066666666667 320M64 362.6666666666667L256 21.3333333333334L448 362.6666666666667H64z" />
+    <glyph glyph-name="developer-board"
+      unicode="&#xF696;"
+      horiz-adv-x="512" d=" M469.3333333333333 256V298.6666666666667H426.6666666666667V341.3333333333334C426.6666666666667 364.8 407.4666666666667 384 384 384H85.3333333333333C61.8666666666667 384 42.6666666666667 364.8 42.6666666666667 341.3333333333334V42.6666666666667C42.6666666666667 19.2 61.8666666666667 0 85.3333333333333 0H384C407.4666666666667 0 426.6666666666667 19.2 426.6666666666667 42.6666666666667V85.3333333333334H469.3333333333333V128H426.6666666666667V170.6666666666667H469.3333333333333V213.3333333333334H426.6666666666667V256H469.3333333333333M384 42.6666666666667H85.3333333333333V341.3333333333334H384V42.6666666666667M128 170.6666666666667H234.6666666666667V85.3333333333334H128V170.6666666666667M256 298.6666666666667H341.3333333333333V234.6666666666667H256V298.6666666666667M128 298.6666666666667H234.6666666666667V192H128V298.6666666666667M256 213.3333333333334H341.3333333333333V85.3333333333334H256V213.3333333333334z" />
+    <glyph glyph-name="deviantart"
+      unicode="&#xF1C7;"
+      horiz-adv-x="512" d=" M128 320H256L298.6666666666667 405.3333333333333H384V320L309.3333333333333 170.6666666666667H384V64H256L213.3333333333333 -21.3333333333333H128V64L202.6666666666667 213.3333333333334H128V320z" />
+    <glyph glyph-name="dialpad"
+      unicode="&#xF61C;"
+      horiz-adv-x="512" d=" M256 42.6666666666667C232.5333333333334 42.6666666666667 213.3333333333333 23.4666666666667 213.3333333333333 0S232.5333333333334 -42.6666666666666 256 -42.6666666666666S298.6666666666667 -23.4666666666667 298.6666666666667 0S279.4666666666667 42.6666666666667 256 42.6666666666667M128 426.6666666666667C104.5333333333333 426.6666666666667 85.3333333333333 407.4666666666667 85.3333333333333 384S104.5333333333333 341.3333333333334 128 341.3333333333334S170.6666666666667 360.5333333333334 170.6666666666667 384S151.4666666666667 426.6666666666667 128 426.6666666666667M128 298.6666666666667C104.5333333333333 298.6666666666667 85.3333333333333 279.4666666666667 85.3333333333333 256S104.5333333333333 213.3333333333334 128 213.3333333333334S170.6666666666667 232.5333333333334 170.6666666666667 256S151.4666666666667 298.6666666666667 128 298.6666666666667M128 170.6666666666667C104.5333333333333 170.6666666666667 85.3333333333333 151.4666666666667 85.3333333333333 128S104.5333333333333 85.3333333333334 128 85.3333333333334S170.6666666666667 104.5333333333333 170.6666666666667 128S151.4666666666667 170.6666666666667 128 170.6666666666667M384 341.3333333333334C407.4666666666667 341.3333333333334 426.6666666666667 360.5333333333334 426.6666666666667 384S407.4666666666667 426.6666666666667 384 426.6666666666667S341.3333333333333 407.4666666666667 341.3333333333333 384S360.5333333333333 341.3333333333334 384 341.3333333333334M256 170.6666666666667C232.5333333333334 170.6666666666667 213.3333333333333 151.4666666666667 213.3333333333333 128S232.5333333333334 85.3333333333334 256 85.3333333333334S298.6666666666667 104.5333333333333 298.6666666666667 128S279.4666666666667 170.6666666666667 256 170.6666666666667M384 170.6666666666667C360.5333333333333 170.6666666666667 341.3333333333333 151.4666666666667 341.3333333333333 128S360.5333333333333 85.3333333333334 384 85.3333333333334S426.6666666666667 104.5333333333333 426.6666666666667 128S407.4666666666667 170.6666666666667 384 170.6666666666667M384 298.6666666666667C360.5333333333333 298.6666666666667 341.3333333333333 279.4666666666667 341.3333333333333 256S360.5333333333333 213.3333333333334 384 213.3333333333334S426.6666666666667 232.5333333333334 426.6666666666667 256S407.4666666666667 298.6666666666667 384 298.6666666666667M256 298.6666666666667C232.5333333333334 298.6666666666667 213.3333333333333 279.4666666666667 213.3333333333333 256S232.5333333333334 213.3333333333334 256 213.3333333333334S298.6666666666667 232.5333333333334 298.6666666666667 256S279.4666666666667 298.6666666666667 256 298.6666666666667M256 426.6666666666667C232.5333333333334 426.6666666666667 213.3333333333333 407.4666666666667 213.3333333333333 384S232.5333333333334 341.3333333333334 256 341.3333333333334S298.6666666666667 360.5333333333334 298.6666666666667 384S279.4666666666667 426.6666666666667 256 426.6666666666667z" />
+    <glyph glyph-name="diamond"
+      unicode="&#xFB66;"
+      horiz-adv-x="512" d=" M128 405.3333333333333L42.6666666666667 277.3333333333334L256 -21.3333333333333L469.3333333333333 277.3333333333334L384 405.3333333333333H128z" />
+    <glyph glyph-name="diamond-outline"
+      unicode="&#xFB67;"
+      horiz-adv-x="512" d=" M384 405.3333333333333H128L42.6666666666667 277.3333333333334L256 -21.3333333333333L469.3333333333333 277.3333333333334L384 405.3333333333333M94.5066666666667 277.3333333333334L150.8266666666667 362.6666666666667H361.1733333333333L417.4933333333334 277.3333333333334L256 52.0533333333334L94.5066666666667 277.3333333333334z" />
+    <glyph glyph-name="diamond-stone"
+      unicode="&#xF1C8;"
+      horiz-adv-x="512" d=" M341.3333333333333 256H405.3333333333333L298.6666666666667 106.6666666666667M213.3333333333333 256H298.6666666666667L256 85.3333333333334M106.6666666666667 256H170.6666666666667L213.3333333333333 106.6666666666667M320 362.6666666666667H362.6666666666667L405.3333333333333 298.6666666666667H341.3333333333333M234.6666666666667 362.6666666666667H277.3333333333333L298.6666666666667 298.6666666666667H213.3333333333333M149.3333333333333 362.6666666666667H192L170.6666666666667 298.6666666666667H106.6666666666667M128 405.3333333333333L42.6666666666667 277.3333333333334L256 -21.3333333333333L469.3333333333333 277.3333333333334L384 405.3333333333333H128z" />
+    <glyph glyph-name="dice-1"
+      unicode="&#xF1CA;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="dice-2"
+      unicode="&#xF1CB;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M149.3333333333333 341.3333333333334C125.8666666666667 341.3333333333334 106.6666666666667 322.1333333333334 106.6666666666667 298.6666666666667S125.8666666666667 256 149.3333333333333 256S192 275.2000000000001 192 298.6666666666667S172.8 341.3333333333334 149.3333333333333 341.3333333333334M362.6666666666667 128C339.2 128 320 108.8 320 85.3333333333334S339.2 42.6666666666667 362.6666666666667 42.6666666666667S405.3333333333333 61.8666666666667 405.3333333333333 85.3333333333334S386.1333333333334 128 362.6666666666667 128z" />
+    <glyph glyph-name="dice-3"
+      unicode="&#xF1CC;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667M149.3333333333333 341.3333333333334C125.8666666666667 341.3333333333334 106.6666666666667 322.1333333333334 106.6666666666667 298.6666666666667S125.8666666666667 256 149.3333333333333 256S192 275.2000000000001 192 298.6666666666667S172.8 341.3333333333334 149.3333333333333 341.3333333333334M362.6666666666667 128C339.2 128 320 108.8 320 85.3333333333334S339.2 42.6666666666667 362.6666666666667 42.6666666666667S405.3333333333333 61.8666666666667 405.3333333333333 85.3333333333334S386.1333333333334 128 362.6666666666667 128z" />
+    <glyph glyph-name="dice-4"
+      unicode="&#xF1CD;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M149.3333333333333 341.3333333333334C125.8666666666667 341.3333333333334 106.6666666666667 322.1333333333334 106.6666666666667 298.6666666666667S125.8666666666667 256 149.3333333333333 256S192 275.2000000000001 192 298.6666666666667S172.8 341.3333333333334 149.3333333333333 341.3333333333334M362.6666666666667 128C339.2 128 320 108.8 320 85.3333333333334S339.2 42.6666666666667 362.6666666666667 42.6666666666667S405.3333333333333 61.8666666666667 405.3333333333333 85.3333333333334S386.1333333333334 128 362.6666666666667 128M362.6666666666667 341.3333333333334C339.2 341.3333333333334 320 322.1333333333334 320 298.6666666666667S339.2 256 362.6666666666667 256S405.3333333333333 275.2000000000001 405.3333333333333 298.6666666666667S386.1333333333334 341.3333333333334 362.6666666666667 341.3333333333334M149.3333333333333 128C125.8666666666667 128 106.6666666666667 108.8 106.6666666666667 85.3333333333334S125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667S192 61.8666666666667 192 85.3333333333334S172.8 128 149.3333333333333 128z" />
+    <glyph glyph-name="dice-5"
+      unicode="&#xF1CE;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M149.3333333333333 341.3333333333334C125.8666666666667 341.3333333333334 106.6666666666667 322.1333333333334 106.6666666666667 298.6666666666667S125.8666666666667 256 149.3333333333333 256S192 275.2000000000001 192 298.6666666666667S172.8 341.3333333333334 149.3333333333333 341.3333333333334M362.6666666666667 128C339.2 128 320 108.8 320 85.3333333333334S339.2 42.6666666666667 362.6666666666667 42.6666666666667S405.3333333333333 61.8666666666667 405.3333333333333 85.3333333333334S386.1333333333334 128 362.6666666666667 128M362.6666666666667 341.3333333333334C339.2 341.3333333333334 320 322.1333333333334 320 298.6666666666667S339.2 256 362.6666666666667 256S405.3333333333333 275.2000000000001 405.3333333333333 298.6666666666667S386.1333333333334 341.3333333333334 362.6666666666667 341.3333333333334M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667M149.3333333333333 128C125.8666666666667 128 106.6666666666667 108.8 106.6666666666667 85.3333333333334S125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667S192 61.8666666666667 192 85.3333333333334S172.8 128 149.3333333333333 128z" />
+    <glyph glyph-name="dice-6"
+      unicode="&#xF1CF;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M149.3333333333333 341.3333333333334C125.8666666666667 341.3333333333334 106.6666666666667 322.1333333333334 106.6666666666667 298.6666666666667S125.8666666666667 256 149.3333333333333 256S192 275.2000000000001 192 298.6666666666667S172.8 341.3333333333334 149.3333333333333 341.3333333333334M362.6666666666667 128C339.2 128 320 108.8 320 85.3333333333334S339.2 42.6666666666667 362.6666666666667 42.6666666666667S405.3333333333333 61.8666666666667 405.3333333333333 85.3333333333334S386.1333333333334 128 362.6666666666667 128M362.6666666666667 234.6666666666667C339.2 234.6666666666667 320 215.4666666666667 320 192S339.2 149.3333333333334 362.6666666666667 149.3333333333334S405.3333333333333 168.5333333333334 405.3333333333333 192S386.1333333333334 234.6666666666667 362.6666666666667 234.6666666666667M362.6666666666667 341.3333333333334C339.2 341.3333333333334 320 322.1333333333334 320 298.6666666666667S339.2 256 362.6666666666667 256S405.3333333333333 275.2000000000001 405.3333333333333 298.6666666666667S386.1333333333334 341.3333333333334 362.6666666666667 341.3333333333334M149.3333333333333 234.6666666666667C125.8666666666667 234.6666666666667 106.6666666666667 215.4666666666667 106.6666666666667 192S125.8666666666667 149.3333333333334 149.3333333333333 149.3333333333334S192 168.5333333333334 192 192S172.8 234.6666666666667 149.3333333333333 234.6666666666667M149.3333333333333 128C125.8666666666667 128 106.6666666666667 108.8 106.6666666666667 85.3333333333334S125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667S192 61.8666666666667 192 85.3333333333334S172.8 128 149.3333333333333 128z" />
+    <glyph glyph-name="dice-d10"
+      unicode="&#xF76E;"
+      horiz-adv-x="512" d=" M458.6666666666666 217.6C471.4666666666667 202.6666666666667 471.4666666666667 181.3333333333334 458.6666666666666 166.4L281.6 -10.6666666666666C266.6666666666667 -25.6 245.3333333333333 -25.6 230.4 -10.6666666666666L53.3333333333333 166.4C38.4 181.3333333333334 38.4 202.6666666666667 53.3333333333333 217.6L230.4 394.6666666666667C245.3333333333333 409.6 266.6666666666667 409.6 281.6 394.6666666666667L458.6666666666666 217.6M433.0666666666667 192L256 369.0666666666667L78.9333333333333 192L256 14.9333333333333L433.0666666666667 192M221.44 111.1466666666667H189.44V234.6666666666667L151.04 222.9333333333333V249.1733333333334L218.0266666666667 273.0666666666667H221.44V111.1466666666667M297.1733333333333 277.3333333333334C327.4666666666667 277.3333333333334 352 252.8 352 222.5066666666667V166.1866666666667C352 135.8933333333333 327.4666666666667 111.36 297.1733333333333 111.36C266.6666666666667 111.36 242.3466666666667 135.8933333333333 242.3466666666667 166.1866666666667V222.5066666666667C242.3466666666667 252.8 266.88 277.3333333333334 297.1733333333333 277.3333333333334M296.96 246.6133333333334C284.3733333333334 246.6133333333334 274.3466666666667 236.5866666666667 274.3466666666667 224V164.9066666666667C274.3466666666667 152.3200000000001 284.3733333333334 142.2933333333334 296.96 142.2933333333334C309.3333333333333 142.2933333333334 320 152.5333333333334 320 164.9066666666667V224C320 236.5866666666667 309.3333333333333 246.6133333333334 296.96 246.6133333333334z" />
+    <glyph glyph-name="dice-d12"
+      unicode="&#xF866;"
+      horiz-adv-x="512" d=" M256 405.3333333333333L32 242.3466666666667L117.3333333333333 -21.3333333333333H394.6666666666667L480 242.3466666666667L256 405.3333333333333M362.6666666666667 21.3333333333334H149.3333333333333L82.1333333333333 226.1333333333334L256 352.64L429.8666666666666 226.1333333333334L362.6666666666667 21.3333333333334M362.6666666666667 112V85.3333333333334H248.7466666666667V108.5866666666667S324.9066666666667 182.4 324.9066666666667 204.8C324.9066666666667 232.1066666666667 302.5066666666667 229.3333333333334 302.5066666666667 229.3333333333334C288 228.2666666666667 277.3333333333333 216.1066666666667 277.3333333333333 201.6H244.0533333333333C245.3333333333333 232.7466666666667 271.36 257.28 304.4266666666666 256C357.12 256 357.76 216.5333333333334 357.76 206.9333333333333C357.76 169.1733333333334 289.7066666666667 111.5733333333334 289.7066666666667 111.5733333333334L362.6666666666667 112M224 85.3333333333334H189.6533333333333V215.68L149.3333333333333 203.3066666666667V230.6133333333333L219.9466666666667 256H224V85.3333333333334z" />
+    <glyph glyph-name="dice-d20"
+      unicode="&#xF5EA;"
+      horiz-adv-x="512" d=" M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667M318.5066666666667 271.5733333333334C348.8 271.5733333333334 373.3333333333333 247.04 373.3333333333333 216.7466666666667V160C373.3333333333333 130.1333333333333 348.8 105.6 318.5066666666667 105.6C288 105.6 263.68 130.1333333333333 263.68 160V216.7466666666667C263.68 247.04 288.2133333333333 271.5733333333334 318.5066666666667 271.5733333333334M318.2933333333333 240.8533333333334C305.92 240.8533333333334 295.68 230.8266666666667 295.68 218.24V159.36C295.68 146.7733333333334 305.92 136.5333333333334 318.2933333333333 136.5333333333334C330.6666666666667 136.5333333333334 341.3333333333333 146.7733333333334 341.3333333333333 159.36V218.24C341.3333333333333 230.8266666666667 330.6666666666667 240.8533333333334 318.2933333333333 240.8533333333334M244.2666666666667 133.1200000000001V107.5200000000001L134.6133333333333 108.1600000000001V129.9200000000001S207.7866666666667 200.96 208 222.5066666666667C208 248.9600000000001 186.24 246.1866666666667 186.24 246.1866666666667S165.3333333333333 245.3333333333334 162.9866666666667 219.5200000000001L130.9866666666667 218.4533333333334S131.84 271.7866666666667 188.3733333333333 271.7866666666667C238.9333333333333 271.7866666666667 239.5733333333333 233.8133333333334 239.5733333333333 224C239.5733333333333 188.16 173.8666666666667 132.9066666666667 173.8666666666667 132.9066666666667L244.2666666666667 133.12z" />
+    <glyph glyph-name="dice-d4"
+      unicode="&#xF5EB;"
+      horiz-adv-x="512" d=" M286.5066666666667 124.8H304.8533333333333V98.9866666666667H286.5066666666667V64H254.2933333333333V98.9866666666667H188.16L186.6666666666667 119.2533333333333L254.08 225.7066666666667H286.5066666666667V124.8M218.6666666666667 124.8H254.2933333333333V181.9733333333334L218.6666666666667 124.8M469.3333333333333 0H42.6666666666667C34.9866666666667 0 27.9466666666667 4.0533333333334 24.1066666666667 10.6666666666667C20.2666666666667 17.4933333333333 20.48 25.8133333333334 24.5333333333333 32L237.8666666666667 384C245.3333333333333 397.2266666666667 266.6666666666667 397.2266666666667 274.3466666666667 384L487.6799999999999 32C491.52 25.8133333333334 491.7333333333333 17.4933333333333 487.8933333333333 10.6666666666667C484.0533333333333 4.0533333333334 477.0133333333333 0 469.3333333333333 0M80.64 42.6666666666667H431.5733333333333L256 332.1600000000001L80.64 42.6666666666667z" />
+    <glyph glyph-name="dice-d6"
+      unicode="&#xF5EC;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M106.6666666666667 341.3333333333334V42.6666666666667H405.3333333333333V341.3333333333334H106.6666666666667M285.6533333333333 244.6933333333334C232.32 245.3333333333333 231.68 202.0266666666667 231.68 202.0266666666667S243.4133333333334 216.1066666666667 267.3066666666667 216.1066666666667C281.3866666666667 216.1066666666667 309.3333333333334 203.7333333333333 310.4 161.92C311.68 117.9733333333334 272.4266666666667 106.6666666666667 272.4266666666667 106.6666666666667S197.76 88.3200000000001 198.4 177.92C199.04 278.6133333333334 285.6533333333333 270.2933333333334 285.6533333333333 270.2933333333334V244.6933333333334M254.9333333333334 189.8666666666667C239.1466666666667 192 231.04 175.36 231.04 175.36L231.4666666666667 160C231.4666666666667 143.5733333333334 242.9866666666667 131.6266666666667 256 131.6266666666667C269.0133333333333 131.6266666666667 278.4000000000001 143.5733333333334 278.4000000000001 160S267.9466666666667 189.8666666666667 254.9333333333334 189.8666666666667z" />
+    <glyph glyph-name="dice-d8"
+      unicode="&#xF5ED;"
+      horiz-adv-x="512" d=" M256 272C283.9466666666667 272 306.7733333333333 251.7333333333334 306.7733333333333 226.5600000000001C306.7733333333333 211.84 298.6666666666667 198.8266666666667 286.72 190.5066666666667C301.6533333333333 182.1866666666667 311.4666666666667 167.8933333333334 311.4666666666667 151.4666666666667C311.4666666666667 125.4400000000001 286.72 104.5333333333334 256 104.5333333333334C225.28 104.5333333333334 200.5333333333333 125.4400000000001 200.5333333333333 151.4666666666667C200.5333333333333 167.8933333333334 210.3466666666667 182.1866666666667 225.28 190.5066666666667C213.3333333333333 198.8266666666667 205.44 211.84 205.44 226.5600000000001C205.44 251.7333333333334 228.0533333333334 272 256 272M256 178.1333333333333C242.9866666666667 178.1333333333333 232.5333333333334 167.68 232.5333333333334 154.6666666666667C232.5333333333334 141.6533333333334 242.9866666666667 131.2000000000001 256 131.2000000000001C269.0133333333333 131.2000000000001 279.4666666666667 141.6533333333334 279.4666666666667 154.6666666666667C279.4666666666667 167.68 269.0133333333333 178.1333333333333 256 178.1333333333333M256 245.3333333333334C245.3333333333333 245.3333333333334 236.8 235.7333333333334 236.8 224S245.3333333333333 202.6666666666667 256 202.6666666666667S275.2 212.2666666666667 275.2 224S266.6666666666667 245.3333333333334 256 245.3333333333334M459.52 217.6C472.32 202.6666666666667 472.32 181.3333333333334 459.52 166.4L282.4533333333333 -10.6666666666666C267.52 -25.6 246.1866666666667 -25.6 231.2533333333333 -10.6666666666666L54.1866666666666 166.4C39.2533333333333 181.3333333333334 39.2533333333333 202.6666666666667 54.1866666666666 217.6L231.2533333333333 394.6666666666667C246.1866666666666 409.6 267.5199999999999 409.6 282.4533333333333 394.6666666666667L459.52 217.6M433.92 192.0000000000001L256.8533333333333 369.0666666666667L79.7866666666666 192.0000000000001L256.8533333333333 14.9333333333334L433.92 192.0000000000001z" />
+    <glyph glyph-name="dice-multiple"
+      unicode="&#xF76D;"
+      horiz-adv-x="512" d=" M421.9733333333334 384H239.36C225.0666666666667 384 213.3333333333333 372.2666666666667 213.3333333333333 357.9733333333334V277.3333333333334H341.3333333333333V149.3333333333334H421.9733333333334C436.2666666666667 149.3333333333334 448 161.0666666666667 448 175.36V357.9733333333334C448 372.2666666666667 436.2666666666667 384 421.9733333333334 384M265.3866666666667 305.7066666666667C250.88 305.7066666666667 239.1466666666667 317.44 239.1466666666667 331.9466666666667C239.1466666666667 346.4533333333334 250.88 358.1866666666667 265.3866666666667 358.1866666666667C279.8933333333333 358.1866666666667 291.6266666666667 346.4533333333334 291.6266666666667 331.9466666666667C291.6266666666667 317.4400000000001 279.8933333333333 305.7066666666667 265.3866666666667 305.7066666666667M395.9466666666667 175.36C381.4400000000001 175.1466666666667 369.7066666666667 186.88 369.4933333333334 201.3866666666667C369.2800000000001 215.8933333333333 381.0133333333334 227.6266666666667 395.5200000000001 227.84C410.0266666666667 228.0533333333334 421.7600000000001 216.32 421.9733333333334 201.3866666666667C421.76 187.0933333333334 410.24 175.5733333333334 395.9466666666667 175.36M395.9466666666667 305.7066666666667C381.4400000000001 305.4933333333334 369.7066666666667 317.2266666666667 369.4933333333334 331.7333333333334C369.2800000000001 346.24 381.0133333333334 357.9733333333334 395.5200000000001 358.1866666666667C410.0266666666667 358.4 421.7600000000001 346.6666666666667 421.9733333333334 331.9466666666667C421.9733333333334 317.44 410.4533333333334 305.92 395.9466666666667 305.7066666666667M90.0266666666667 234.6666666666667H272.64C286.9333333333334 234.6666666666667 298.6666666666667 222.9333333333333 298.6666666666667 208.64V26.0266666666666C298.6666666666667 11.7333333333333 286.9333333333334 0 272.64 0H90.0266666666667C75.7333333333333 0 64 11.7333333333333 64 26.0266666666666V208.64C64 222.9333333333333 75.7333333333333 234.6666666666667 90.0266666666667 234.6666666666667M181.3333333333333 143.36C167.04 143.36 155.3066666666667 131.6266666666667 155.3066666666667 117.3333333333333C155.3066666666667 103.04 167.04 91.3066666666666 181.3333333333333 91.3066666666666C195.6266666666667 91.3066666666666 207.36 103.04 207.36 117.3333333333333C207.36 131.6266666666667 195.6266666666667 143.36 181.3333333333333 143.36M116.0533333333333 208.64C101.76 208.64 90.0266666666667 196.9066666666667 90.0266666666667 182.6133333333334C90.0266666666667 168.32 101.76 156.5866666666667 116.0533333333333 156.5866666666667C130.3466666666666 156.5866666666667 142.08 168.32 142.08 182.6133333333334C142.08 196.9066666666667 130.3466666666666 208.64 116.0533333333333 208.64M246.4 78.2933333333333C232.1066666666667 78.2933333333333 220.3733333333333 66.56 220.3733333333333 52.2666666666667C220.3733333333333 37.9733333333333 232.1066666666667 26.24 246.4 26.24C260.6933333333334 26.24 272.4266666666667 37.9733333333334 272.4266666666667 52.2666666666667C272.4266666666667 66.5600000000001 260.9066666666667 78.08 246.6133333333334 78.2933333333333H246.4000000000001z" />
+    <glyph glyph-name="dictionary"
+      unicode="&#xF61D;"
+      horiz-adv-x="512" d=" M123.9466666666667 405.3333333333333C103.04 403.4133333333334 85.3333333333333 384 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -1.0666666666667 105.6 -21.3333333333333 128 -21.3333333333333H384C406.4 -21.3333333333333 426.6666666666667 -1.0666666666667 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.3466666666667 407.4666666666667 405.3333333333333 384 405.3333333333333H256V256L202.6666666666667 288L149.3333333333333 256V405.3333333333333H123.9466666666667M256 170.6666666666667H277.3333333333333C289.0666666666667 170.6666666666667 298.6666666666667 161.0666666666667 298.6666666666667 149.3333333333334V64H277.3333333333333V106.6666666666667H256V64H234.6666666666667V149.3333333333334C234.6666666666667 161.0666666666667 244.2666666666667 170.6666666666667 256 170.6666666666667M256 149.3333333333334V128H277.3333333333333V149.3333333333334H256M320 128H384V106.6666666666667L341.3333333333333 42.6666666666667H384V21.3333333333334H320V42.6666666666667L362.6666666666667 106.6666666666667H320V128z" />
+    <glyph glyph-name="dip-switch"
+      unicode="&#xF7C0;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H149.3333333333333C161.0666666666667 362.6666666666667 170.6666666666667 353.0666666666667 170.6666666666667 341.3333333333334V42.6666666666667C170.6666666666667 30.9333333333333 161.0666666666667 21.3333333333334 149.3333333333333 21.3333333333334H64C52.2666666666667 21.3333333333334 42.6666666666667 30.9333333333333 42.6666666666667 42.6666666666667V341.3333333333334C42.6666666666667 353.0666666666667 52.2666666666667 362.6666666666667 64 362.6666666666667M213.3333333333333 362.6666666666667H298.6666666666667C310.4 362.6666666666667 320 353.0666666666667 320 341.3333333333334V42.6666666666667C320 30.9333333333333 310.4 21.3333333333334 298.6666666666667 21.3333333333334H213.3333333333333C201.6 21.3333333333334 192 30.9333333333333 192 42.6666666666667V341.3333333333334C192 353.0666666666667 201.6 362.6666666666667 213.3333333333333 362.6666666666667M362.6666666666667 362.6666666666667H448C459.7333333333333 362.6666666666667 469.3333333333333 353.0666666666667 469.3333333333333 341.3333333333334V42.6666666666667C469.3333333333333 30.9333333333333 459.7333333333333 21.3333333333334 448 21.3333333333334H362.6666666666667C350.9333333333333 21.3333333333334 341.3333333333333 30.9333333333333 341.3333333333333 42.6666666666667V341.3333333333334C341.3333333333333 353.0666666666667 350.9333333333333 362.6666666666667 362.6666666666667 362.6666666666667M85.3333333333333 64H128V170.6666666666667H85.3333333333333V64M234.6666666666667 213.3333333333334H277.3333333333333V320H234.6666666666667V213.3333333333334M384 64H426.6666666666667V170.6666666666667H384V64z" />
+    <glyph glyph-name="directions"
+      unicode="&#xF1D0;"
+      horiz-adv-x="512" d=" M298.6666666666667 138.6666666666667V192H213.3333333333333V128H170.6666666666667V213.3333333333334C170.6666666666667 225.0666666666667 180.2666666666667 234.6666666666667 192 234.6666666666667H298.6666666666667V288L373.3333333333333 213.3333333333334M463.1466666666666 207.1466666666667L271.1466666666667 399.1466666666667H270.9333333333334C262.6133333333334 407.4666666666667 249.1733333333334 407.4666666666667 240.8533333333334 399.1466666666667L48.8533333333334 207.1466666666667C40.5333333333333 198.8266666666667 40.5333333333333 185.1733333333334 48.8533333333334 176.8533333333334L240.8533333333334 -15.1466666666666C249.1733333333334 -23.2533333333333 262.6133333333334 -23.4666666666667 271.1466666666667 -15.1466666666666L463.1466666666666 176.8533333333334C471.4666666666667 185.1733333333334 471.4666666666667 198.8266666666667 463.1466666666666 207.1466666666667z" />
+    <glyph glyph-name="directions-fork"
+      unicode="&#xF641;"
+      horiz-adv-x="512" d=" M64 362.6666666666667V181.3333333333334L128 245.3333333333334L192 170.6666666666667C213.3333333333333 149.3333333333334 213.3333333333333 128 213.3333333333333 128V0H298.6666666666667V149.3333333333334S298.6666666666667 170.6666666666667 287.36 192S256 234.6666666666667 256 234.6666666666667L192 307.6266666666667L245.3333333333333 362.6666666666667M384 362.6666666666667L288.8533333333333 267.3066666666668L298.6666666666667 256S318.5066666666667 234.6666666666667 330.0266666666667 213.3333333333334C334.5066666666667 204.8 337.0666666666667 196.48 338.56 189.2266666666667L448 298.6666666666667" />
+    <glyph glyph-name="disc"
+      unicode="&#xF5EE;"
+      horiz-adv-x="512" d=" M256 149.3333333333334C232.32 149.3333333333334 213.3333333333333 168.5333333333334 213.3333333333333 192C213.3333333333333 215.68 232.32 234.6666666666667 256 234.6666666666667C279.68 234.6666666666667 298.6666666666667 215.68 298.6666666666667 192C298.6666666666667 168.5333333333334 279.4666666666667 149.3333333333334 256 149.3333333333334M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="disc-alert"
+      unicode="&#xF1D1;"
+      horiz-adv-x="512" d=" M213.3333333333333 149.3333333333334C189.6533333333333 149.3333333333334 170.6666666666667 168.5333333333334 170.6666666666667 192C170.6666666666667 215.68 189.6533333333333 234.6666666666667 213.3333333333333 234.6666666666667C236.8 234.6666666666667 256 215.4666666666667 256 192S236.8 149.3333333333334 213.3333333333333 149.3333333333334M213.3333333333333 362.6666666666667C119.04 362.6666666666667 42.6666666666667 286.2933333333334 42.6666666666667 192S119.04 21.3333333333334 213.3333333333333 21.3333333333334S384 97.7066666666667 384 192S307.6266666666667 362.6666666666667 213.3333333333333 362.6666666666667M426.6666666666667 192H469.3333333333333V298.6666666666667H426.6666666666667M426.6666666666667 106.6666666666667H469.3333333333333V149.3333333333334H426.6666666666667V106.6666666666667z" />
+    <glyph glyph-name="disc-player"
+      unicode="&#xF95F;"
+      horiz-adv-x="512" d=" M309.3333333333333 226.7733333333334C331.52 226.7733333333334 349.44 244.6933333333334 349.44 266.6666666666667C349.44 288.8533333333334 331.52 306.56 309.3333333333333 306.56S269.44 288.8533333333334 269.44 266.6666666666667C269.44 244.6933333333334 287.36 226.7733333333333 309.3333333333333 226.7733333333333M309.3333333333333 426.6666666666667C397.6533333333333 426.6666666666667 469.3333333333333 354.9866666666667 469.3333333333333 266.6666666666667C469.3333333333333 220.3733333333333 449.7066666666666 178.5600000000001 418.1333333333334 149.3333333333334H200.5333333333333C169.1733333333333 178.56 149.3333333333333 220.3733333333333 149.3333333333333 266.6666666666667C149.3333333333333 355.2000000000001 221.0133333333333 426.6666666666667 309.3333333333333 426.6666666666667M128 0V-21.3333333333333H85.3333333333333V0H42.6666666666667V128H469.3333333333333V0H426.6666666666667V-21.3333333333333H384V0H128M85.3333333333333 64V42.6666666666667H277.3333333333333V64H85.3333333333333M320 85.3333333333334V42.6666666666667H362.6666666666667V85.3333333333334H320M405.3333333333333 85.3333333333334C393.6 85.3333333333334 384 75.7333333333334 384 64S393.6 42.6666666666667 405.3333333333333 42.6666666666667S426.6666666666667 52.2666666666667 426.6666666666667 64S417.0666666666667 85.3333333333334 405.3333333333333 85.3333333333334z" />
+    <glyph glyph-name="discord"
+      unicode="&#xF66F;"
+      horiz-adv-x="512" d=" M469.3333333333333 -64L357.3333333333333 42.6666666666667L370.7733333333333 0H96C66.56 0 42.6666666666667 23.8933333333334 42.6666666666667 53.3333333333334V373.3333333333334C42.6666666666667 402.7733333333333 66.56 426.6666666666667 96 426.6666666666667H416C445.44 426.6666666666667 469.3333333333333 402.7733333333333 469.3333333333333 373.3333333333334V-64M256 302.9333333333334C198.8266666666667 302.9333333333334 158.72 278.4000000000001 158.72 278.4000000000001C180.6933333333333 298.0266666666667 219.0933333333333 309.3333333333334 219.0933333333333 309.3333333333334L215.4666666666667 312.9600000000001C179.4133333333333 312.3200000000001 146.7733333333333 287.36 146.7733333333333 287.36C110.08 210.7733333333334 112.4266666666666 144.6400000000001 112.4266666666666 144.6400000000001C142.2933333333333 106.0266666666668 186.6666666666666 108.8000000000001 186.6666666666666 108.8000000000001L201.8133333333333 128.0000000000001C175.1466666666666 133.7600000000001 158.2933333333333 157.4400000000001 158.2933333333333 157.4400000000001S198.4 130.1333333333333 256 130.1333333333333S353.7066666666666 157.44 353.7066666666666 157.44S336.8533333333333 133.76 310.1866666666666 128L325.3333333333333 108.8S369.7066666666666 106.0266666666666 399.5733333333333 144.64C399.5733333333333 144.64 401.92 210.7733333333333 365.2266666666667 287.36C365.2266666666667 287.36 332.5866666666667 312.32 296.5333333333333 312.9600000000001L292.9066666666667 309.3333333333334S331.3066666666667 298.0266666666667 353.2800000000001 278.4C353.2800000000001 278.4 313.1733333333334 302.9333333333334 256.0000000000001 302.9333333333334M211.8400000000001 222.08C225.7066666666668 222.08 237.0133333333334 209.92 236.8000000000001 194.9866666666667C236.8000000000001 180.2666666666667 225.7066666666668 167.8933333333334 211.8400000000001 167.8933333333334C198.1866666666667 167.8933333333334 187.0933333333334 180.2666666666667 187.0933333333334 194.9866666666667C187.0933333333334 209.92 197.9733333333334 222.08 211.8400000000001 222.08M300.8000000000001 222.08C314.6666666666668 222.08 325.7600000000001 209.92 325.7600000000001 194.9866666666667C325.7600000000001 180.2666666666667 314.6666666666668 167.8933333333334 300.8000000000001 167.8933333333334C287.1466666666667 167.8933333333334 276.0533333333334 180.2666666666667 276.0533333333334 194.9866666666667C276.0533333333334 209.92 286.9333333333334 222.08 300.8000000000001 222.08z" />
+    <glyph glyph-name="dishwasher"
+      unicode="&#xFAAB;"
+      horiz-adv-x="512" d=" M298.6666666666667 106.6666666666667C298.6666666666667 94.9333333333333 294.8266666666667 85.3333333333334 286.5066666666667 76.5866666666667C278.1866666666666 68.2666666666667 267.9466666666667 64 256 64C244.0533333333333 64 233.8133333333334 68.2666666666667 225.4933333333334 76.5866666666667C217.1733333333333 85.3333333333334 213.3333333333333 94.9333333333333 213.3333333333333 106.6666666666667C213.3333333333333 113.7066666666667 216.5333333333333 124.16 224 138.6666666666667C230.4 152.7466666666667 237.6533333333334 165.3333333333334 245.3333333333333 176L256 192C284.5866666666667 150.6133333333334 298.6666666666667 122.24 298.6666666666667 106.6666666666667M362.6666666666667 320C374.4 320 384 310.4 384 298.6666666666667S374.4 277.3333333333334 362.6666666666667 277.3333333333334S341.3333333333333 286.9333333333334 341.3333333333333 298.6666666666667S350.9333333333333 320 362.6666666666667 320M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M106.6666666666667 341.3333333333334V256H405.3333333333333V341.3333333333334H106.6666666666667M106.6666666666667 213.3333333333334V42.6666666666667H405.3333333333333V213.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="disqus"
+      unicode="&#xF1D2;"
+      horiz-adv-x="512" d=" M257.7066666666667 -21.3333333333333C205.44 -21.3333333333333 157.6533333333333 -2.3466666666666 120.7466666666667 29.2266666666667L30.08 16.8533333333334L65.0666666666667 103.4666666666667C53.3333333333333 130.5600000000001 46.08 160.0000000000001 46.08 192.0000000000001C46.08 309.3333333333334 140.8 405.3333333333334 257.7066666666667 405.3333333333334C374.6133333333333 405.3333333333333 469.3333333333333 309.3333333333334 469.3333333333333 192S374.6133333333333 -21.3333333333333 257.7066666666667 -21.3333333333333M373.3333333333333 192.64V193.28C373.3333333333333 254.72 329.8133333333334 298.6666666666667 254.9333333333333 298.6666666666667H174.08V85.3333333333334H253.8666666666667C329.1733333333333 85.3333333333334 373.3333333333333 130.9866666666667 373.3333333333333 192.6400000000001M256 137.8133333333334H232.32V246.1866666666667H256C290.56 246.1866666666667 313.6 226.3466666666667 313.6 192C313.6 157.2266666666667 290.56 137.8133333333334 256 137.8133333333334z" />
+    <glyph glyph-name="disqus-outline"
+      unicode="&#xF1D3;"
+      horiz-adv-x="512" d=" M253.8666666666667 138.6666666666667H230.4V245.3333333333334H253.8666666666667C288 245.3333333333334 311.4666666666667 226.1333333333334 311.4666666666667 192S288 138.6666666666667 253.8666666666667 138.6666666666667M253.8666666666667 298.6666666666667H172.8V85.3333333333334H251.7333333333334C326.4 85.3333333333334 371.2 130.1333333333333 371.2 192S328.5333333333333 298.6666666666667 253.8666666666666 298.6666666666667M256 21.3333333333334C215.4666666666666 21.3333333333334 177.0666666666666 36.2666666666667 147.2 61.8666666666667L132.2666666666666 74.6666666666667L96 70.4L110.9333333333333 104.5333333333334L104.5333333333333 121.6000000000001C93.8666666666666 145.0666666666667 89.6 168.5333333333334 89.6 194.1333333333334C89.6 288.0000000000001 166.4 364.8000000000001 258.1333333333333 364.8000000000001C349.8666666666666 364.8000000000001 424.5333333333333 285.8666666666668 424.5333333333333 192.0000000000001C424.5333333333333 98.1333333333334 347.7333333333333 21.3333333333334 256 21.3333333333334M256 405.3333333333335C138.6666666666667 405.3333333333333 44.8 309.3333333333334 44.8 192C44.8 160 51.2 130.1333333333333 64 102.4L29.8666666666667 14.9333333333334L121.6 27.7333333333335C157.8666666666667 -4.2666666666665 206.9333333333333 -23.4666666666665 258.1333333333334 -23.4666666666665C375.4666666666667 -23.4666666666665 469.3333333333333 72.5333333333335 469.3333333333333 189.8666666666668S373.3333333333333 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="division"
+      unicode="&#xF1D4;"
+      horiz-adv-x="512" d=" M405.3333333333333 170.6666666666667H106.6666666666667V213.3333333333334H405.3333333333333V170.6666666666667M256 341.3333333333334C279.4666666666667 341.3333333333334 298.6666666666667 322.1333333333334 298.6666666666667 298.6666666666667S279.4666666666667 256 256 256S213.3333333333333 275.2000000000001 213.3333333333333 298.6666666666667S232.5333333333334 341.3333333333334 256 341.3333333333334M256 128C279.4666666666667 128 298.6666666666667 108.8 298.6666666666667 85.3333333333334S279.4666666666667 42.6666666666667 256 42.6666666666667S213.3333333333333 61.8666666666667 213.3333333333333 85.3333333333334S232.5333333333334 128 256 128z" />
+    <glyph glyph-name="division-box"
+      unicode="&#xF1D5;"
+      horiz-adv-x="512" d=" M362.6666666666667 170.6666666666667V213.3333333333334H149.3333333333333V170.6666666666667H362.6666666666667M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384H405.3333333333333M256 298.6666666666667C244.2666666666667 298.6666666666667 234.6666666666667 289.0666666666667 234.6666666666667 277.3333333333334S244.2666666666667 256 256 256S277.3333333333333 265.6 277.3333333333333 277.3333333333334S267.7333333333334 298.6666666666667 256 298.6666666666667M256 128C244.2666666666667 128 234.6666666666667 118.4 234.6666666666667 106.6666666666667S244.2666666666667 85.3333333333334 256 85.3333333333334S277.3333333333333 94.9333333333333 277.3333333333333 106.6666666666667S267.7333333333334 128 256 128z" />
+    <glyph glyph-name="dlna"
+      unicode="&#xFA40;"
+      horiz-adv-x="512" d=" M456.1066666666666 180.0533333333334H274.1333333333334C255.36 180.0533333333334 236.8 171.52 226.3466666666667 157.6533333333333V157.8666666666667C215.8933333333333 143.36 198.8266666666667 133.9733333333333 179.4133333333333 133.9733333333333C147.6266666666667 133.9733333333333 121.8133333333333 160 121.8133333333333 192C121.8133333333333 224 147.6266666666667 249.3866666666667 179.4133333333333 249.3866666666667C198.8266666666667 249.3866666666667 215.8933333333334 240 226.3466666666667 225.4933333333333V225.7066666666666C236.8 211.8399999999999 255.36 202.6666666666666 274.1333333333334 202.6666666666666H454.1866666666666C457.6 202.6666666666666 469.3333333333333 204.7999999999999 469.3333333333333 220.3733333333333C453.5466666666667 310.8266666666666 364.8 380.16 257.28 380.16C191.1466666666667 380.16 132.0533333333334 353.92 92.5866666666667 312.5333333333333C86.4 303.1466666666666 92.8 300.3733333333333 98.7733333333333 299.5199999999999H216.32C234.6666666666667 299.5199999999999 253.6533333333334 308.4799999999999 264.1066666666667 322.3466666666666V321.92C274.7733333333333 336.4266666666666 291.6266666666667 346.0266666666667 311.04 346.0266666666667C342.8266666666667 346.0266666666667 368.64 320 368.64 288C368.64 256 342.8266666666667 230.4 311.04 230.4C291.6266666666667 230.4 274.7733333333334 240 264.1066666666667 254.5066666666666V254.2933333333333C253.6533333333334 267.9466666666666 234.6666666666668 276.6933333333333 216.3200000000001 276.6933333333333H88.1066666666667H88.5333333333333S69.5466666666667 277.3333333333333 58.0266666666667 261.3333333333333C49.0666666666667 247.04 42.6666666666667 216.5333333333334 42.6666666666667 192C42.6666666666667 167.2533333333333 46.2933333333333 144.8533333333334 58.0266666666667 122.24C68.0533333333333 106.0266666666666 88.5333333333333 106.6666666666667 88.5333333333333 106.6666666666667H87.68H216.32C234.6666666666667 106.6666666666667 253.6533333333334 115.6266666666667 264.1066666666667 129.4933333333334V129.28C274.7733333333333 143.7866666666667 291.6266666666667 153.3866666666667 311.04 153.3866666666667C342.8266666666667 153.3866666666667 368.64 127.36 368.64 96C368.64 64 342.8266666666667 37.76 311.04 37.76C291.6266666666667 37.76 274.7733333333334 47.36 264.1066666666667 61.8666666666667V61.44C253.6533333333334 75.3066666666666 234.6666666666668 84.2666666666667 216.3200000000001 84.2666666666667H98.9866666666667C93.0133333333334 83.4133333333334 86.6133333333334 80.64 92.16 71.68C131.6266666666667 30.2933333333333 190.9333333333334 3.84 257.2800000000001 3.84C365.0133333333334 3.84 453.9733333333334 73.1733333333334 469.3333333333333 164.0533333333334C469.3333333333333 176.64 460.5866666666666 179.6266666666667 456.1066666666666 180.0533333333334" />
+    <glyph glyph-name="dna"
+      unicode="&#xF683;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H128V362.6666666666667C128 331.9466666666667 142.5066666666667 306.9866666666667 168.1066666666667 282.0266666666667C186.4533333333333 264.3200000000001 210.9866666666667 247.2533333333334 236.5866666666667 230.4000000000001L197.5466666666667 205.0133333333334C176.4266666666667 219.3066666666667 155.9466666666667 234.6666666666667 138.6666666666667 251.52C108.16 281.1733333333334 85.3333333333333 317.8666666666667 85.3333333333333 362.6666666666667V405.3333333333333M384 405.3333333333333H426.6666666666667V362.6666666666667C426.6666666666667 317.8666666666667 403.84 281.1733333333334 373.3333333333333 251.52C343.2533333333334 222.08 304.8533333333333 197.76 267.52 174.0800000000001C230.1866666666667 150.1866666666667 193.92 126.9333333333333 168.1066666666666 101.9733333333334C142.5066666666667 77.0133333333333 128 52.0533333333334 128 21.3333333333334V-21.3333333333333H85.3333333333333V21.3333333333334C85.3333333333333 66.1333333333334 108.16 102.8266666666667 138.6666666666667 132.48C168.7466666666667 161.92 207.1466666666667 186.24 244.48 209.92C281.8133333333334 233.8133333333334 318.08 257.0666666666667 343.8933333333333 282.0266666666667C369.4933333333334 306.9866666666667 384 331.9466666666667 384 362.6666666666667V405.3333333333333M314.4533333333333 178.9866666666667C335.5733333333333 164.6933333333334 356.0533333333334 149.3333333333334 373.3333333333333 132.48C403.84 102.8266666666667 426.6666666666667 66.1333333333334 426.6666666666667 21.3333333333334V-21.3333333333333H384V21.3333333333334C384 52.0533333333334 369.4933333333334 77.0133333333333 343.8933333333333 101.9733333333334C325.5466666666667 119.6800000000001 301.0133333333333 136.7466666666667 275.4133333333333 153.6L314.4533333333333 178.9866666666667M149.3333333333333 384H362.6666666666667V362.6666666666667L361.3866666666667 352H150.6133333333333L149.3333333333333 362.6666666666667V384M163.84 320H348.16C343.04 312.7466666666667 337.0666666666667 305.2800000000001 328.96 297.3866666666667L318.08 288H193.4933333333334L183.04 297.3866666666667C174.9333333333333 305.28 168.96 312.7466666666667 163.84 320M193.92 96H318.5066666666667L328.96 86.6133333333334C337.0666666666667 78.72 343.04 71.2533333333333 348.16 64H163.84C168.96 71.2533333333333 174.9333333333333 78.72 183.04 86.6133333333334L193.92 96M150.6133333333334 32H361.3866666666667L362.6666666666667 21.3333333333334V0H149.3333333333333V21.3333333333334L150.6133333333333 32z" />
+    <glyph glyph-name="dns"
+      unicode="&#xF1D6;"
+      horiz-adv-x="512" d=" M149.3333333333333 256C125.8666666666667 256 106.6666666666667 275.2000000000001 106.6666666666667 298.6666666666667S125.8666666666667 341.3333333333334 149.3333333333333 341.3333333333334S192 322.1333333333334 192 298.6666666666667S172.8 256 149.3333333333333 256M426.6666666666667 384H85.3333333333333C73.6 384 64 374.4 64 362.6666666666667V234.6666666666667C64 222.9333333333333 73.6 213.3333333333334 85.3333333333333 213.3333333333334H426.6666666666667C438.4 213.3333333333334 448 222.9333333333333 448 234.6666666666667V362.6666666666667C448 374.4 438.4 384 426.6666666666667 384M149.3333333333333 42.6666666666667C125.8666666666667 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334S125.8666666666667 128 149.3333333333333 128S192 108.8 192 85.3333333333334S172.8 42.6666666666667 149.3333333333333 42.6666666666667M426.6666666666667 170.6666666666667H85.3333333333333C73.6 170.6666666666667 64 161.0666666666667 64 149.3333333333334V21.3333333333334C64 9.6 73.6 0 85.3333333333333 0H426.6666666666667C438.4 0 448 9.6 448 21.3333333333334V149.3333333333334C448 161.0666666666667 438.4 170.6666666666667 426.6666666666667 170.6666666666667z" />
+    <glyph glyph-name="dns-outline"
+      unicode="&#xFB68;"
+      horiz-adv-x="512" d=" M405.3333333333333 128V42.6666666666667H106.6666666666667V128H405.3333333333333M426.6666666666667 170.6666666666667H85.3333333333333C73.6 170.6666666666667 64 161.0666666666667 64 149.3333333333334V21.3333333333334C64 9.6 73.6 0 85.3333333333333 0H426.6666666666667C438.4 0 448 9.6 448 21.3333333333334V149.3333333333334C448 161.0666666666667 438.4 170.6666666666667 426.6666666666667 170.6666666666667M149.3333333333333 53.3333333333334C131.6266666666667 53.3333333333334 117.3333333333333 67.6266666666667 117.3333333333333 85.3333333333334S131.6266666666667 117.3333333333334 149.3333333333333 117.3333333333334S181.3333333333333 103.04 181.3333333333333 85.3333333333334S167.04 53.3333333333334 149.3333333333333 53.3333333333334M405.3333333333333 341.3333333333334V256H106.6666666666667V341.3333333333334H405.3333333333333M426.6666666666667 384H85.3333333333333C73.6 384 64 374.4 64 362.6666666666667V234.6666666666667C64 222.9333333333333 73.6 213.3333333333334 85.3333333333333 213.3333333333334H426.6666666666667C438.4 213.3333333333334 448 222.9333333333333 448 234.6666666666667V362.6666666666667C448 374.4 438.4 384 426.6666666666667 384M149.3333333333333 266.6666666666667C131.6266666666667 266.6666666666667 117.3333333333333 280.9600000000001 117.3333333333333 298.6666666666667S131.6266666666667 330.6666666666667 149.3333333333333 330.6666666666667S181.3333333333333 316.3733333333334 181.3333333333333 298.6666666666667S167.04 266.6666666666667 149.3333333333333 266.6666666666667z" />
+    <glyph glyph-name="do-not-disturb"
+      unicode="&#xF697;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M362.6666666666667 170.6666666666667H149.3333333333333V213.3333333333334H362.6666666666667V170.6666666666667z" />
+    <glyph glyph-name="do-not-disturb-off"
+      unicode="&#xF698;"
+      horiz-adv-x="512" d=" M362.6666666666667 213.3333333333334V170.6666666666667H331.52L431.36 70.8266666666667C455.2533333333333 105.1733333333334 469.3333333333333 146.9866666666667 469.3333333333333 192C469.3333333333333 309.76 373.76 405.3333333333333 256 405.3333333333333C210.9866666666667 405.3333333333333 169.1733333333333 391.2533333333334 134.8266666666667 367.36L288.8533333333333 213.3333333333334H362.6666666666667M48.4266666666667 399.5733333333333L21.3333333333333 372.48L80.64 313.1733333333334C56.7466666666667 278.8266666666667 42.6666666666667 237.0133333333333 42.6666666666667 192C42.6666666666667 74.24 138.24 -21.3333333333333 256 -21.3333333333333C301.0133333333333 -21.3333333333333 342.8266666666667 -7.2533333333333 377.1733333333333 16.64L436.48 -42.6666666666666L463.5733333333333 -15.5733333333333L48.4266666666667 399.5733333333333M149.3333333333333 170.6666666666667V213.3333333333334H180.48L223.1466666666667 170.6666666666667H149.3333333333333z" />
+    <glyph glyph-name="docker"
+      unicode="&#xF867;"
+      horiz-adv-x="512" d=" M46.9333333333333 239.7866666666667H94.72V193.28H46.9333333333333V239.7866666666667M105.6 239.7866666666667H153.6V193.28H105.6V239.7866666666667M105.6 299.52H153.6V253.0133333333333H105.6V299.52M164.48 239.7866666666667H212.2666666666667V193.28H164.48V239.7866666666667M164.48 299.52H212.2666666666667V253.0133333333333H164.48V299.52M223.1466666666667 239.7866666666667H271.1466666666667V193.28H223.1466666666667V239.7866666666667M223.1466666666667 299.52H271.1466666666667V253.0133333333333H223.1466666666667V299.52M282.0266666666667 239.7866666666667H329.8133333333334V193.28H282.0266666666667V239.7866666666667M223.1466666666667 359.2533333333334H271.1466666666667V312.7466666666667H223.1466666666667V359.2533333333334M113.7066666666667 126.0800000000001C121.1733333333333 126.0800000000001 127.1466666666667 120.3200000000001 127.1466666666667 113.0666666666667C127.1466666666667 106.0266666666668 121.1733333333333 100.0533333333334 113.7066666666667 100.0533333333334C106.6666666666667 100.0533333333334 100.48 106.0266666666668 100.48 113.0666666666667C100.48 120.3200000000001 106.6666666666667 126.0800000000001 113.7066666666667 126.0800000000001M484.0533333333333 215.68L490.6666666666666 212.0533333333334L487.2533333333332 205.44C473.5999999999999 179.6266666666667 445.2266666666666 171.7333333333334 417.4933333333333 173.0133333333333C375.8933333333333 72.5333333333333 285.2266666666666 24.7466666666667 175.5733333333333 24.7466666666667C118.8266666666666 24.7466666666667 66.7733333333333 45.44 37.1199999999999 94.2933333333334L36.6933333333333 95.1466666666667L31.9999999999999 103.68C22.3999999999999 125.2266666666667 18.9866666666666 148.6933333333333 21.3333333333333 172.3733333333333L21.9733333333333 179.4133333333334H337.0666666666667C348.3733333333334 179.4133333333334 359.8933333333333 181.3333333333334 370.3466666666667 184.7466666666667L386.56 192C379.9466666666667 200.5333333333334 376.32 211.4133333333334 375.4666666666667 222.08C373.9733333333334 236.5866666666667 376.9600000000001 256 387.2000000000001 266.6666666666667L392.32 272.64L398.2933333333334 267.9466666666667C413.4400000000001 256 426.0266666666667 239.5733333333333 428.3733333333334 220.8C446.5066666666667 225.92 468.0533333333333 224.8533333333333 484.0533333333333 215.68M113.92 88.5333333333333C128 88.5333333333333 138.6666666666667 99.6266666666667 138.6666666666667 113.0666666666667C138.6666666666667 126.72 128 137.8133333333333 113.7066666666667 137.8133333333333C99.84 137.8133333333333 88.5333333333333 126.72 88.5333333333333 113.0666666666667C88.5333333333333 99.4133333333334 99.84 88.5333333333333 113.92 88.5333333333333z" />
+    <glyph glyph-name="doctor"
+      unicode="&#xFA41;"
+      horiz-adv-x="512" d=" M316.5866666666667 101.12C381.0133333333333 88.96 426.6666666666667 57.8133333333334 426.6666666666667 21.3333333333334V-21.3333333333333H85.3333333333333V21.3333333333334C85.3333333333333 57.8133333333334 130.9866666666667 88.96 195.4133333333333 101.1200000000001L256 0L316.5866666666667 101.1200000000001M170.6666666666667 277.3333333333334H341.3333333333333V234.6666666666667C341.3333333333333 187.52 303.1466666666667 149.3333333333334 256 149.3333333333334S170.6666666666667 187.52 170.6666666666667 234.6666666666667V277.3333333333334M170.6666666666667 298.6666666666667L179.4133333333333 386.1333333333334C180.48 397.0133333333333 189.6533333333333 405.3333333333333 200.7466666666667 405.3333333333333H311.4666666666667C322.3466666666667 405.3333333333333 331.52 397.0133333333333 332.5866666666667 386.1333333333334L341.3333333333333 298.6666666666667H170.6666666666667M256 384H234.6666666666667V362.6666666666667H213.3333333333333V341.3333333333334H234.6666666666667V320H256V341.3333333333334H277.3333333333333V362.6666666666667H256V384z" />
+    <glyph glyph-name="dog"
+      unicode="&#xFA42;"
+      horiz-adv-x="512" d=" M384 362.6666666666667C347.52 362.6666666666667 325.3333333333333 355.6266666666667 312.5333333333333 349.6533333333333C296.1066666666667 357.76 277.3333333333333 362.6666666666667 256 362.6666666666667S215.8933333333334 357.76 199.4666666666667 349.6533333333333C186.6666666666667 355.6266666666667 164.48 362.6666666666667 128 362.6666666666667C64 362.6666666666667 21.3333333333333 192 21.3333333333333 149.3333333333334C21.3333333333333 131.6266666666667 49.4933333333333 115.4133333333334 88.32 108.8C101.9733333333333 61.0133333333333 166.4 24.5333333333333 245.3333333333333 21.3333333333334V112.6400000000001C232.7466666666667 120.5333333333334 213.3333333333333 134.8266666666667 213.3333333333333 149.3333333333334C213.3333333333333 170.6666666666668 256 170.6666666666668 256 170.6666666666668S298.6666666666667 170.6666666666668 298.6666666666667 149.3333333333334C298.6666666666667 134.8266666666667 279.2533333333334 120.5333333333334 266.6666666666667 112.6400000000001V21.3333333333334C345.6 24.5333333333333 410.0266666666667 61.0133333333333 423.68 108.8C462.5066666666667 115.4133333333334 490.6666666666666 131.6266666666667 490.6666666666666 149.3333333333334C490.6666666666666 192 448 362.6666666666667 384 362.6666666666667M88.5333333333333 152.1066666666667C77.8666666666667 154.6666666666667 69.5466666666667 157.6533333333334 64 160C69.3333333333333 219.0933333333333 110.9333333333334 311.4666666666667 129.0666666666667 320C140.5866666666667 320 149.3333333333334 318.7200000000001 157.2266666666667 317.6533333333333C112.4266666666667 268.3733333333334 94.72 191.1466666666667 88.5333333333333 152.1066666666667M192 192C180.2666666666667 192 170.6666666666667 201.6 170.6666666666667 213.3333333333334C170.6666666666667 224.8533333333333 180.2666666666667 234.6666666666667 192 234.6666666666667S213.3333333333333 225.0666666666667 213.3333333333333 213.3333333333334C213.3333333333333 201.3866666666667 203.7333333333334 192 192 192M320 192C308.2666666666667 192 298.6666666666667 201.6 298.6666666666667 213.3333333333334C298.6666666666667 224.8533333333333 308.2666666666667 234.6666666666667 320 234.6666666666667S341.3333333333333 225.0666666666667 341.3333333333333 213.3333333333334C341.3333333333333 201.3866666666667 331.7333333333334 192 320 192M423.4666666666667 152.1066666666667C417.2800000000001 191.1466666666667 399.5733333333333 268.3733333333334 354.7733333333334 317.6533333333333C362.6666666666668 318.72 371.4133333333334 320 382.9333333333334 320C401.0666666666667 311.4666666666667 442.6666666666668 219.0933333333333 448.0000000000001 160C442.6666666666668 157.6533333333334 434.3466666666667 154.6666666666667 423.4666666666668 152.1066666666667z" />
+    <glyph glyph-name="dog-service"
+      unicode="&#xFAAC;"
+      horiz-adv-x="512" d=" M298.6666666666667 277.3333333333334L362.6666666666667 213.3333333333334V0H320V128H170.6666666666667L128 64V0H85.3333333333333V128L106.6666666666667 149.3333333333334V213.3333333333334L42.6666666666667 277.3333333333334L64 298.6666666666667L106.6666666666667 256H149.3333333333333V192C149.3333333333333 180.2666666666667 158.9333333333333 170.6666666666667 170.6666666666667 170.6666666666667H256C267.7333333333334 170.6666666666667 277.3333333333333 180.2666666666667 277.3333333333333 192V256L298.6666666666667 277.3333333333334M405.3333333333333 341.3333333333334V384L320 298.6666666666667L384 234.6666666666667L405.3333333333333 256L426.6666666666667 234.6666666666667L469.3333333333333 277.3333333333334L405.3333333333333 341.3333333333334M245.3333333333333 245.3333333333334L96 394.6666666666667C90.24 400.64 80.8533333333333 400.64 74.6666666666667 394.6666666666667C68.6933333333333 388.9066666666667 68.6933333333333 379.52 74.6666666666667 373.3333333333334L224 224C229.76 218.0266666666667 239.1466666666667 218.0266666666667 245.3333333333333 224C251.3066666666667 229.76 251.3066666666667 239.1466666666667 245.3333333333333 245.3333333333334z" />
+    <glyph glyph-name="dog-side"
+      unicode="&#xFA43;"
+      horiz-adv-x="512" d=" M405.3333333333333 384L320 298.6666666666667L384 234.6666666666667L405.3333333333333 256L426.6666666666667 234.6666666666667L469.3333333333333 277.3333333333334L405.3333333333333 341.3333333333334V384M64 298.6666666666667L42.6666666666667 277.3333333333334L106.6666666666667 213.3333333333334V149.3333333333334L85.3333333333333 128V0H128V64L170.6666666666667 128H320V0H362.6666666666667V213.3333333333334L298.6666666666667 277.3333333333334L277.3333333333333 256H106.6666666666667L64 298.6666666666667z" />
+    <glyph glyph-name="dolby"
+      unicode="&#xF6B2;"
+      horiz-adv-x="512" d=" M42.6666666666667 341.3333333333334V42.6666666666667H469.3333333333333V341.3333333333334H42.6666666666667M128 85.3333333333334H85.3333333333333V298.6666666666667H128C189.0133333333333 296.7466666666667 236.8 248.96 234.6666666666667 192C236.8 135.04 189.0133333333333 87.2533333333333 128 85.3333333333334M426.6666666666667 85.3333333333334H384C322.9866666666667 87.2533333333333 275.2 135.04 277.3333333333333 192C275.2 248.96 322.9866666666667 296.7466666666667 384 298.6666666666667H426.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="domain"
+      unicode="&#xF1D7;"
+      horiz-adv-x="512" d=" M384 128H341.3333333333333V85.3333333333334H384M384 213.3333333333334H341.3333333333333V170.6666666666667H384M426.6666666666667 42.6666666666667H256V85.3333333333334H298.6666666666667V128H256V170.6666666666667H298.6666666666667V213.3333333333334H256V256H426.6666666666667M213.3333333333333 298.6666666666667H170.6666666666667V341.3333333333334H213.3333333333333M213.3333333333333 213.3333333333334H170.6666666666667V256H213.3333333333333M213.3333333333333 128H170.6666666666667V170.6666666666667H213.3333333333333M213.3333333333333 42.6666666666667H170.6666666666667V85.3333333333334H213.3333333333333M128 298.6666666666667H85.3333333333333V341.3333333333334H128M128 213.3333333333334H85.3333333333333V256H128M128 128H85.3333333333333V170.6666666666667H128M128 42.6666666666667H85.3333333333333V85.3333333333334H128M256 298.6666666666667V384H42.6666666666667V0H469.3333333333333V298.6666666666667H256z" />
+    <glyph glyph-name="donkey"
+      unicode="&#xF7C1;"
+      horiz-adv-x="512" d=" M455.2533333333333 227.2L453.76 228.6933333333334L451.84 230.6133333333334L384 298.6666666666667V320C384 325.9733333333334 379.3066666666667 330.6666666666667 373.3333333333333 330.6666666666667C370.3466666666667 330.6666666666667 367.36 329.3866666666667 365.44 327.2533333333334L287.1466666666667 256H149.3333333333333C134.8266666666667 256 121.3866666666667 248.5333333333334 113.4933333333334 236.3733333333334L55.8933333333333 179.4133333333334C48.8533333333333 169.8133333333334 50.9866666666667 156.5866666666667 60.5866666666667 149.3333333333334C67.84 144.2133333333334 77.8666666666667 144 85.3333333333333 149.3333333333334L106.6666666666667 169.1733333333334V42.6666666666667H170.6666666666667V128H277.3333333333333V42.6666666666667H341.3333333333333V152.96C341.3333333333333 164.2666666666667 345.8133333333334 175.1466666666667 353.92 183.04L384 213.3333333333334L426.6666666666667 192C429.8666666666666 190.2933333333334 433.4933333333334 189.2266666666667 437.3333333333333 189.2266666666667C450.1333333333334 189.6533333333333 460.5866666666666 200.32 460.3733333333333 213.3333333333334C460.1599999999999 218.4533333333334 458.6666666666666 223.36 455.2533333333333 227.2z" />
+    <glyph glyph-name="door"
+      unicode="&#xF819;"
+      horiz-adv-x="512" d=" M170.6666666666667 384C146.9866666666667 384 128 365.0133333333333 128 341.3333333333334V0H384V341.3333333333334C384 365.0133333333333 365.0133333333333 384 341.3333333333333 384H170.6666666666667M170.6666666666667 341.3333333333334H341.3333333333333V42.6666666666667H170.6666666666667V341.3333333333334M277.3333333333333 213.3333333333334V170.6666666666667H320V213.3333333333334H277.3333333333333z" />
+    <glyph glyph-name="door-closed"
+      unicode="&#xF81A;"
+      horiz-adv-x="512" d=" M341.3333333333333 213.3333333333334H384V170.6666666666667H341.3333333333333V213.3333333333334M256 384H405.3333333333333C429.0133333333333 384 448 365.0133333333333 448 341.3333333333334V42.6666666666667H469.3333333333333V0H42.6666666666667V42.6666666666667H213.3333333333333V341.3333333333334C213.3333333333333 365.0133333333333 232.32 384 256 384M256 341.3333333333334V42.6666666666667H405.3333333333333V341.3333333333334H256z" />
+    <glyph glyph-name="door-open"
+      unicode="&#xF81B;"
+      horiz-adv-x="512" d=" M256 384C232.32 384 213.3333333333333 365.0133333333333 213.3333333333333 341.3333333333334H64V42.6666666666667H42.6666666666667V0H469.3333333333333V42.6666666666667H448V341.3333333333334C448 365.0133333333333 429.0133333333333 384 405.3333333333333 384H256M256 341.3333333333334H405.3333333333333V42.6666666666667H256V341.3333333333334M106.6666666666667 213.3333333333334H149.3333333333333V170.6666666666667H106.6666666666667V213.3333333333334z" />
+    <glyph glyph-name="doorbell-video"
+      unicode="&#xF868;"
+      horiz-adv-x="512" d=" M170.0266666666667 405.3333333333333C146.3466666666667 405.3333333333333 128 386.56 128 362.6666666666667V23.04C128 -0.64 146.3466666666667 -19.4133333333333 170.0266666666667 -19.4133333333333H340.0533333333333C363.52 -19.4133333333333 382.5066666666667 -0.64 382.5066666666667 23.04V362.6666666666667C382.5066666666667 386.56 363.52 405.3333333333333 340.0533333333333 405.3333333333333H170.0266666666667M254.9333333333333 330.6666666666667C272.64 330.6666666666667 286.9333333333333 316.8 286.9333333333333 299.3066666666667C286.9333333333333 281.6 272.64 267.3066666666668 254.9333333333333 267.3066666666668C237.44 267.3066666666668 223.1466666666667 281.6 223.1466666666667 299.3066666666668C223.1466666666667 316.8000000000001 237.44 330.6666666666667 254.9333333333333 330.6666666666667M170.0266666666667 235.52H340.0533333333333V23.04H170.0266666666667V235.52M256 170.6666666666667C232.5333333333334 170.6666666666667 213.3333333333333 152.1066666666667 213.3333333333333 128.64S232.5333333333334 85.9733333333334 256 85.9733333333334S298.6666666666667 105.1733333333334 298.6666666666667 128.6400000000001S279.4666666666667 170.6666666666667 256 170.6666666666667z" />
+    <glyph glyph-name="dot-net"
+      unicode="&#xFAAD;"
+      horiz-adv-x="512" d=" M42.6666666666667 128C54.4 128 64 118.4 64 106.6666666666667S54.4 85.3333333333334 42.6666666666667 85.3333333333334S21.3333333333333 94.9333333333333 21.3333333333333 106.6666666666667S30.9333333333333 128 42.6666666666667 128M448 85.3333333333334H405.3333333333333V256H362.6666666666667V298.6666666666667H490.6666666666666V256H448V85.3333333333334M341.3333333333333 298.6666666666667V256H298.6666666666667V213.3333333333334H341.3333333333333V170.6666666666667H298.6666666666667V128H341.3333333333333V85.3333333333334H256V298.6666666666667H341.3333333333333M234.6666666666667 298.6666666666667V85.3333333333334H192L128 213.3333333333334V85.3333333333334H85.3333333333333V298.6666666666667H128L192 170.6666666666667V298.6666666666667H234.6666666666667z" />
+    <glyph glyph-name="dots-horizontal"
+      unicode="&#xF1D8;"
+      horiz-adv-x="512" d=" M341.3333333333333 192C341.3333333333333 215.4666666666667 360.5333333333333 234.6666666666667 384 234.6666666666667S426.6666666666667 215.4666666666667 426.6666666666667 192S407.4666666666667 149.3333333333334 384 149.3333333333334S341.3333333333333 168.5333333333334 341.3333333333333 192M213.3333333333333 192C213.3333333333333 215.4666666666667 232.5333333333334 234.6666666666667 256 234.6666666666667S298.6666666666667 215.4666666666667 298.6666666666667 192S279.4666666666667 149.3333333333334 256 149.3333333333334S213.3333333333333 168.5333333333334 213.3333333333333 192M85.3333333333333 192C85.3333333333333 215.4666666666667 104.5333333333333 234.6666666666667 128 234.6666666666667S170.6666666666667 215.4666666666667 170.6666666666667 192S151.4666666666667 149.3333333333334 128 149.3333333333334S85.3333333333333 168.5333333333334 85.3333333333333 192z" />
+    <glyph glyph-name="dots-horizontal-circle"
+      unicode="&#xF7C2;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 224C238.2933333333333 224 224 209.7066666666667 224 192S238.2933333333333 160 256 160S288 174.2933333333334 288 192S273.7066666666667 224 256 224M138.6666666666667 224C120.96 224 106.6666666666667 209.7066666666667 106.6666666666667 192S120.96 160 138.6666666666667 160S170.6666666666667 174.2933333333334 170.6666666666667 192S156.3733333333333 224 138.6666666666667 224M373.3333333333333 224C355.6266666666667 224 341.3333333333333 209.7066666666667 341.3333333333333 192S355.6266666666667 160 373.3333333333333 160S405.3333333333333 174.2933333333334 405.3333333333333 192S391.04 224 373.3333333333333 224z" />
+    <glyph glyph-name="dots-horizontal-circle-outline"
+      unicode="&#xFB69;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M256 224C273.7066666666667 224 288 209.7066666666667 288 192S273.7066666666667 160 256 160S224 174.2933333333334 224 192S238.2933333333333 224 256 224M160 224C177.7066666666667 224 192 209.7066666666667 192 192S177.7066666666667 160 160 160S128 174.2933333333334 128 192S142.2933333333333 224 160 224M352 224C369.7066666666666 224 384 209.7066666666667 384 192S369.7066666666666 160 352 160S320 174.2933333333334 320 192S334.2933333333333 224 352 224z" />
+    <glyph glyph-name="dots-vertical"
+      unicode="&#xF1D9;"
+      horiz-adv-x="512" d=" M256 106.6666666666667C279.4666666666667 106.6666666666667 298.6666666666667 87.4666666666667 298.6666666666667 64S279.4666666666667 21.3333333333334 256 21.3333333333334S213.3333333333333 40.5333333333333 213.3333333333333 64S232.5333333333334 106.6666666666667 256 106.6666666666667M256 234.6666666666667C279.4666666666667 234.6666666666667 298.6666666666667 215.4666666666667 298.6666666666667 192S279.4666666666667 149.3333333333334 256 149.3333333333334S213.3333333333333 168.5333333333334 213.3333333333333 192S232.5333333333334 234.6666666666667 256 234.6666666666667M256 362.6666666666667C279.4666666666667 362.6666666666667 298.6666666666667 343.4666666666667 298.6666666666667 320S279.4666666666667 277.3333333333334 256 277.3333333333334S213.3333333333333 296.5333333333334 213.3333333333333 320S232.5333333333334 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="dots-vertical-circle"
+      unicode="&#xF7C3;"
+      horiz-adv-x="512" d=" M42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192M224 192C224 174.2933333333334 238.2933333333333 160 256 160S288 174.2933333333334 288 192S273.7066666666667 224 256 224S224 209.7066666666667 224 192M224 74.6666666666667C224 56.96 238.2933333333333 42.6666666666667 256 42.6666666666667S288 56.96 288 74.6666666666667S273.7066666666667 106.6666666666667 256 106.6666666666667S224 92.3733333333333 224 74.6666666666667M224 309.3333333333334C224 291.6266666666667 238.2933333333333 277.3333333333334 256 277.3333333333334S288 291.6266666666667 288 309.3333333333334S273.7066666666667 341.3333333333334 256 341.3333333333334S224 327.04 224 309.3333333333334z" />
+    <glyph glyph-name="dots-vertical-circle-outline"
+      unicode="&#xFB6A;"
+      horiz-adv-x="512" d=" M224 192C224 209.7066666666667 238.2933333333333 224 256 224S288 209.7066666666667 288 192S273.7066666666667 160 256 160S224 174.2933333333334 224 192M224 96C224 113.7066666666667 238.2933333333333 128 256 128S288 113.7066666666667 288 96S273.7066666666667 64 256 64S224 78.2933333333334 224 96M224 288C224 305.7066666666667 238.2933333333333 320 256 320S288 305.7066666666667 288 288S273.7066666666667 256 256 256S224 270.2933333333334 224 288M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="douban"
+      unicode="&#xF699;"
+      horiz-adv-x="512" d=" M426.6666666666667 320H85.3333333333333V362.6666666666667H426.6666666666667V320M426.6666666666667 64V21.3333333333334H85.3333333333333V64H156.3733333333333L133.5466666666667 149.3333333333334H106.6666666666667V277.3333333333334H405.3333333333333V149.3333333333334H378.4533333333333L355.6266666666666 64H426.6666666666667M149.3333333333333 192H362.6666666666667V234.6666666666667H149.3333333333333V192M200.5333333333333 64H311.4666666666667L334.2933333333334 149.3333333333334H177.7066666666667L200.5333333333333 64z" />
+    <glyph glyph-name="download"
+      unicode="&#xF1DA;"
+      horiz-adv-x="512" d=" M106.6666666666667 21.3333333333334H405.3333333333333V64H106.6666666666667M405.3333333333333 256H320V384H192V256H106.6666666666667L256 106.6666666666667L405.3333333333333 256z" />
+    <glyph glyph-name="download-multiple"
+      unicode="&#xF9E8;"
+      horiz-adv-x="512" d=" M192 426.6666666666667V298.6666666666667H106.6666666666667L256 149.3333333333334L405.3333333333333 298.6666666666667H320V426.6666666666667H192M106.6666666666667 106.6666666666667V64H405.3333333333333V106.6666666666667H106.6666666666667M106.6666666666667 21.3333333333334V-21.3333333333333H405.3333333333333V21.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="download-network"
+      unicode="&#xF6F3;"
+      horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V128C405.3333333333333 104.5333333333333 386.1333333333334 85.3333333333334 362.6666666666667 85.3333333333334H277.3333333333333V42.6666666666667H298.6666666666667C310.4 42.6666666666667 320 33.0666666666667 320 21.3333333333334H469.3333333333333V-21.3333333333333H320C320 -33.0666666666667 310.4 -42.6666666666666 298.6666666666667 -42.6666666666666H213.3333333333333C201.6 -42.6666666666666 192 -33.0666666666667 192 -21.3333333333333H42.6666666666667V21.3333333333334H192C192 33.0666666666667 201.6 42.6666666666667 213.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H149.3333333333333C125.6533333333333 85.3333333333334 106.6666666666667 104.5333333333333 106.6666666666667 128V341.3333333333334C106.6666666666667 364.8 125.8666666666667 384 149.3333333333333 384H362.6666666666667M256 138.6666666666667L352 234.6666666666667H277.3333333333333V320H234.6666666666667V234.6666666666667H160L256 138.6666666666667z" />
+    <glyph glyph-name="download-outline"
+      unicode="&#xFB6B;"
+      horiz-adv-x="512" d=" M277.3333333333333 341.3333333333334V213.3333333333334H302.2933333333333L256 167.04L209.7066666666667 213.3333333333334H234.6666666666667V341.3333333333334H277.3333333333333M320 384H192V256H106.6666666666667L256 106.6666666666667L405.3333333333333 256H320V384M405.3333333333333 64H106.6666666666667V21.3333333333334H405.3333333333333V64z" />
+    <glyph glyph-name="drag"
+      unicode="&#xF1DB;"
+      horiz-adv-x="512" d=" M149.3333333333333 42.6666666666667V85.3333333333334H192V42.6666666666667H149.3333333333333M234.6666666666667 42.6666666666667V85.3333333333334H277.3333333333333V42.6666666666667H234.6666666666667M320 42.6666666666667V85.3333333333334H362.6666666666667V42.6666666666667H320M149.3333333333333 128V170.6666666666667H192V128H149.3333333333333M234.6666666666667 128V170.6666666666667H277.3333333333333V128H234.6666666666667M320 128V170.6666666666667H362.6666666666667V128H320M149.3333333333333 213.3333333333334V256H192V213.3333333333334H149.3333333333333M234.6666666666667 213.3333333333334V256H277.3333333333333V213.3333333333334H234.6666666666667M320 213.3333333333334V256H362.6666666666667V213.3333333333334H320M149.3333333333333 298.6666666666667V341.3333333333334H192V298.6666666666667H149.3333333333333M234.6666666666667 298.6666666666667V341.3333333333334H277.3333333333333V298.6666666666667H234.6666666666667M320 298.6666666666667V341.3333333333334H362.6666666666667V298.6666666666667H320z" />
+    <glyph glyph-name="drag-horizontal"
+      unicode="&#xF1DC;"
+      horiz-adv-x="512" d=" M64 128V170.6666666666667H106.6666666666667V128H64M64 213.3333333333334V256H106.6666666666667V213.3333333333334H64M149.3333333333333 128V170.6666666666667H192V128H149.3333333333333M149.3333333333333 213.3333333333334V256H192V213.3333333333334H149.3333333333333M234.6666666666667 128V170.6666666666667H277.3333333333333V128H234.6666666666667M234.6666666666667 213.3333333333334V256H277.3333333333333V213.3333333333334H234.6666666666667M320 128V170.6666666666667H362.6666666666667V128H320M320 213.3333333333334V256H362.6666666666667V213.3333333333334H320M405.3333333333333 128V170.6666666666667H448V128H405.3333333333333M405.3333333333333 213.3333333333334V256H448V213.3333333333334H405.3333333333333z" />
+    <glyph glyph-name="drag-variant"
+      unicode="&#xFB6C;"
+      horiz-adv-x="512" d=" M483.6266666666667 192L387.84 96L334.2933333333333 149.3333333333334L376.5333333333333 192L334.2933333333333 233.8133333333334L387.84 287.36L483.6266666666667 192M256 419.6266666666667L351.36 323.8400000000001L297.8133333333333 270.2933333333334L256 312.5333333333334L213.3333333333333 270.2933333333334L160 323.8400000000001L256 419.6266666666667M256 -35.6266666666667L160.64 60.16L214.1866666666667 113.7066666666667L256 71.4666666666667L298.6666666666667 113.7066666666667L352 60.16L256 -35.6266666666667M28.3733333333333 192L124.16 288L177.7066666666667 234.6666666666667L135.4666666666667 192L177.7066666666667 150.1866666666667L124.16 96.64L28.3733333333333 192M256 234.6666666666667C279.4666666666667 234.6666666666667 298.6666666666667 215.4666666666667 298.6666666666667 192S279.4666666666667 149.3333333333334 256 149.3333333333334S213.3333333333333 168.5333333333334 213.3333333333333 192S232.5333333333334 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="drag-vertical"
+      unicode="&#xF1DD;"
+      horiz-adv-x="512" d=" M192 384H234.6666666666667V341.3333333333334H192V384M277.3333333333333 384H320V341.3333333333334H277.3333333333333V384M192 298.6666666666667H234.6666666666667V256H192V298.6666666666667M277.3333333333333 298.6666666666667H320V256H277.3333333333333V298.6666666666667M192 213.3333333333334H234.6666666666667V170.6666666666667H192V213.3333333333334M277.3333333333333 213.3333333333334H320V170.6666666666667H277.3333333333333V213.3333333333334M192 128H234.6666666666667V85.3333333333334H192V128M277.3333333333333 128H320V85.3333333333334H277.3333333333333V128M192 42.6666666666667H234.6666666666667V0H192V42.6666666666667M277.3333333333333 42.6666666666667H320V0H277.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="drawing"
+      unicode="&#xF1DE;"
+      horiz-adv-x="512" d=" M181.3333333333333 384C246.1866666666667 384 298.6666666666667 331.52 298.6666666666667 266.6666666666667C298.6666666666667 238.2933333333334 288.64 212.2666666666667 271.7866666666667 192H448V0H256V176.2133333333334C235.7333333333334 159.36 209.7066666666667 149.3333333333334 181.3333333333333 149.3333333333334C116.48 149.3333333333334 64 201.8133333333334 64 266.6666666666667S116.48 384 181.3333333333333 384z" />
+    <glyph glyph-name="drawing-box"
+      unicode="&#xF1DF;"
+      horiz-adv-x="512" d=" M384 64H256V187.52C241.92 174.5066666666667 223.36 166.4 202.6666666666667 166.4C159.1466666666667 166.4 123.7333333333333 201.8133333333333 123.7333333333333 245.3333333333334S159.1466666666667 324.2666666666667 202.6666666666667 324.2666666666667S281.6 288.8533333333334 281.6 245.3333333333334C281.6 224.64 273.4933333333333 206.08 260.48 192H384M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="dribbble"
+      unicode="&#xF1E0;"
+      horiz-adv-x="512" d=" M350.2933333333334 55.04C341.3333333333333 96 330.6666666666667 133.76 320 167.04C330.6666666666667 168.5333333333334 341.3333333333333 169.3866666666667 353.7066666666666 169.3866666666667H354.1333333333333C373.9733333333333 169.3866666666667 395.7333333333333 166.8266666666667 419.4133333333333 161.4933333333334C411.3066666666666 117.3333333333334 385.7066666666666 79.5733333333334 350.2933333333332 55.04M256 25.6C218.88 25.6 184.7466666666667 37.76 157.0133333333333 58.4533333333333C162.9866666666667 68.0533333333333 175.5733333333333 86.6133333333334 195.84 105.8133333333333C216.32 125.6533333333333 245.3333333333333 146.1333333333333 282.24 158.2933333333333C294.8266666666667 122.6666666666666 306.3466666666667 82.1333333333333 315.0933333333333 36.48C296.7466666666667 29.44 277.3333333333333 25.5999999999999 256 25.5999999999999M89.6 192V194.3466666666667C94.2933333333333 194.1333333333333 100.48 194.1333333333333 107.7333333333333 194.1333333333333H107.9466666666667C141.2266666666666 194.3466666666667 199.68 197.12 258.9866666666667 215.68C262.1866666666667 208.64 265.3866666666667 201.3866666666667 268.5866666666667 193.7066666666667C228.9066666666667 180.48 197.76 159.36 174.72 138.6666666666667C152.7466666666667 118.1866666666667 137.6 98.3466666666667 128.8533333333333 85.3333333333334C104.5333333333333 113.92 89.6 151.2533333333333 89.6 192M182.4 341.3333333333334C194.1333333333333 327.4666666666667 217.1733333333333 297.3866666666667 241.92 250.6666666666667C192 235.52 141.0133333333333 232.1066666666667 110.5066666666667 232.1066666666667H107.7333333333333C102.6133333333333 232.1066666666667 98.1333333333333 232.1066666666667 94.5066666666667 232.32C106.6666666666667 280.1066666666667 138.6666666666667 320 182.4 341.3333333333334M256 358.4C295.2533333333334 358.4 331.3066666666666 344.7466666666667 359.68 321.92C337.92 295.68 309.3333333333333 277.3333333333334 277.9733333333333 263.4666666666667C256 305.7066666666667 234.6666666666667 336 220.5866666666667 354.56C232.1066666666667 356.9066666666667 243.84 358.4 256 358.4M386.7733333333333 294.8266666666667C407.4666666666666 268.3733333333334 420.48 235.5200000000001 422.1866666666666 199.8933333333334C398.08 205.0133333333334 375.4666666666666 207.36 354.1333333333333 207.36H353.9199999999999C336.8533333333333 207.36 320.8533333333333 205.8666666666667 305.7066666666666 203.3066666666667C302.08 212.2666666666667 298.6666666666666 220.8000000000001 294.6133333333333 229.1200000000001C328.32 243.8400000000001 360.5333333333333 264.9600000000001 386.7733333333332 294.8266666666667M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="dribbble-box"
+      unicode="&#xF1E1;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M321.92 96C315.9466666666667 125.0133333333333 308.6933333333334 151.2533333333333 300.3733333333334 174.5066666666667L324.2666666666667 176.2133333333334H324.6933333333333C338.56 176.2133333333334 353.92 174.5066666666667 370.3466666666667 170.6666666666667C364.5866666666667 139.9466666666667 346.88 113.28 321.92 96M256 75.52C230.1866666666667 75.52 206.08 84.0533333333333 186.88 98.3466666666667C190.9333333333333 105.1733333333334 199.68 118.1866666666667 213.3333333333333 131.6266666666667C228.2666666666667 145.4933333333334 248.32 160 274.3466666666667 168.3200000000001C283.3066666666666 143.5733333333334 291.2 115.2000000000001 297.3866666666667 83.2C284.3733333333334 78.2933333333333 270.5066666666667 75.52 256 75.52M139.52 192V193.7066666666667L152.32 193.4933333333334C175.7866666666667 193.4933333333334 216.5333333333333 195.6266666666667 258.1333333333334 208.6400000000001L264.7466666666667 193.28C237.0133333333333 183.8933333333334 215.2533333333333 169.1733333333334 199.2533333333333 154.4533333333334C183.68 140.3733333333333 173.2266666666666 126.2933333333334 167.04 117.3333333333334C149.9733333333333 137.3866666666667 139.52 163.4133333333334 139.52 192M204.5866666666667 296.32C212.6933333333333 286.7200000000001 228.9066666666667 265.8133333333334 246.1866666666667 232.96C210.9866666666666 222.5066666666667 175.5733333333333 220.16 154.0266666666667 220.16H142.9333333333333C151.2533333333333 253.6533333333334 174.2933333333333 281.3866666666667 204.5866666666667 296.3200000000001M256 308.48C283.52 308.48 308.6933333333334 298.6666666666667 328.7466666666667 282.88C313.3866666666667 264.5333333333334 293.12 251.3066666666667 271.36 241.92C256 271.5733333333334 241.28 292.6933333333334 231.2533333333334 305.7066666666667C239.1466666666667 307.4133333333334 247.4666666666667 308.48 256 308.48M347.52 263.8933333333334C362.0266666666667 245.3333333333334 371.2 222.5066666666667 372.2666666666667 197.5466666666667C355.4133333333333 200.96 339.6266666666667 202.6666666666667 324.6933333333333 202.6666666666667C312.7466666666666 202.6666666666667 301.44 201.8133333333334 290.7733333333333 199.8933333333334L283.0933333333333 218.0266666666667C306.56 228.2666666666667 329.1733333333333 242.9866666666667 347.52 263.8933333333334M256 341.3333333333334C173.44 341.3333333333334 106.6666666666667 274.5600000000001 106.6666666666667 192S173.44 42.6666666666667 256 42.6666666666667S405.3333333333333 109.44 405.3333333333333 192S338.56 341.3333333333334 256 341.3333333333334z" />
+    <glyph glyph-name="drone"
+      unicode="&#xF1E2;"
+      horiz-adv-x="512" d=" M469.3333333333333 213.3333333333334H448L426.6666666666667 256H293.3333333333333L341.3333333333333 181.3333333333334H298.6666666666667L229.3333333333333 256H85.3333333333333C73.6 256 42.6666666666667 265.6 42.6666666666667 277.3333333333334S74.6666666666667 330.6666666666667 117.3333333333333 330.6666666666667S163.6266666666667 309.3333333333334 192 298.6666666666667H448C459.7333333333333 298.6666666666667 469.3333333333333 289.0666666666667 469.3333333333333 277.3333333333334V213.3333333333334M229.3333333333333 309.3333333333334L298.6666666666667 384H341.3333333333333L293.3333333333333 309.3333333333334H229.3333333333333M384 213.3333333333334V245.3333333333334H421.3333333333333L405.3333333333333 213.3333333333334H384M64 42.6666666666667C52.2666666666667 42.6666666666667 42.6666666666667 52.2666666666667 42.6666666666667 64S52.2666666666667 85.3333333333334 64 85.3333333333334C111.1466666666667 85.3333333333334 149.3333333333333 47.1466666666667 149.3333333333333 0C149.3333333333333 -11.7333333333333 139.7333333333333 -21.3333333333333 128 -21.3333333333333S106.6666666666667 -11.7333333333333 106.6666666666667 0C106.6666666666667 23.4666666666667 87.4666666666667 42.6666666666667 64 42.6666666666667M234.6666666666667 0C234.6666666666667 -11.7333333333333 225.0666666666667 -21.3333333333333 213.3333333333333 -21.3333333333333S192 -11.7333333333333 192 0C192 70.6133333333334 134.6133333333334 128 64 128C52.2666666666667 128 42.6666666666667 137.6 42.6666666666667 149.3333333333334S52.2666666666667 170.6666666666667 64 170.6666666666667C158.2933333333333 170.6666666666667 234.6666666666667 94.2933333333334 234.6666666666667 0z" />
+    <glyph glyph-name="dropbox"
+      unicode="&#xF1E3;"
+      horiz-adv-x="512" d=" M256 137.3866666666667L348.8 60.5866666666667L388.2666666666667 86.4V57.6L256 -21.3333333333333L124.16 57.6V86.4L163.84 60.5866666666667L256 137.3866666666667M163.84 394.6666666666667L256 318.0800000000001L348.16 394.6666666666667L480 309.3333333333334L388.9066666666667 235.9466666666667L480 162.9866666666667L348.16 77.0133333333333L256 154.0266666666667L163.84 77.0133333333333L32 162.9866666666667L123.0933333333333 235.9466666666667L32 309.3333333333334L163.84 394.6666666666667M256 156.16L386.7733333333333 235.9466666666667L256 315.9466666666667L125.2266666666667 235.9466666666667L256 156.16z" />
+    <glyph glyph-name="drupal"
+      unicode="&#xF1E4;"
+      horiz-adv-x="512" d=" M436.6933333333333 135.4666666666667C436.6933333333333 121.8133333333333 432 98.9866666666667 423.04 83.2C413.8666666666666 67.2 407.04 62.72 393.3866666666666 62.72C377.6 65.0666666666666 347.9466666666666 110.5066666666667 327.68 112.64C302.5066666666666 112.64 250.2399999999999 60.3733333333333 207.1466666666666 60.3733333333333C182.1866666666666 60.3733333333333 173.0133333333333 65.0666666666666 166.1866666666666 69.5466666666666C152.5333333333333 78.72 148.0533333333333 92.3733333333333 148.0533333333333 110.5066666666667C148.0533333333333 144.64 179.84 174.08 218.4533333333333 174.08C268.5866666666666 174.08 302.5066666666666 124.16 327.68 126.2933333333333C347.9466666666666 126.2933333333333 388.9066666666667 167.2533333333333 409.3866666666666 167.2533333333333C429.8666666666666 171.7333333333334 436.6933333333333 149.3333333333333 436.6933333333333 135.4666666666667M354.7733333333333 335.36C332.16 349.0133333333333 311.68 355.8399999999999 288.8533333333333 369.4933333333333C275.4133333333333 378.6666666666667 257.0666666666666 398.9333333333333 241.28 417.28C234.6666666666667 387.6266666666666 229.9733333333333 376.32 218.4533333333333 367.1466666666667C195.84 351.36 184.32 344.5333333333333 164.0533333333333 335.36C148.0533333333334 326.4 64 276.2666666666667 64 167.2533333333333C64 58.24 157.2266666666667 -21.3333333333333 257.0666666666667 -21.3333333333333C359.4666666666667 -21.3333333333333 448 53.3333333333334 448 164.9066666666667C452.48 276.2666666666667 368.4266666666666 326.4000000000001 354.7733333333333 335.36z" />
+    <glyph glyph-name="duck"
+      unicode="&#xF1E5;"
+      horiz-adv-x="512" d=" M181.3333333333333 341.3333333333334C163.6266666666667 341.3333333333334 149.3333333333333 327.04 149.3333333333333 309.3333333333334S163.6266666666667 277.3333333333334 181.3333333333333 277.3333333333334S213.3333333333333 291.6266666666667 213.3333333333333 309.3333333333334S199.04 341.3333333333334 181.3333333333333 341.3333333333334M213.3333333333333 405.3333333333333C272.2133333333333 405.3333333333333 320 357.5466666666667 320 298.6666666666667C320 262.4000000000001 301.8666666666667 230.4000000000001 274.3466666666667 211.2C308.0533333333333 208 346.0266666666667 200.32 384 181.3333333333334C448 149.3333333333334 469.3333333333333 192 469.3333333333333 192S448 0 320 0H192S85.3333333333333 0 85.3333333333333 106.6666666666667C85.3333333333333 170.6666666666667 149.3333333333333 192 128 234.6666666666667C42.6666666666667 234.6666666666667 42.6666666666667 309.3333333333334 42.6666666666667 309.3333333333334C64 298.6666666666667 90.4533333333333 298.6666666666667 106.6666666666667 306.1333333333334C110.72 361.6 157.0133333333333 405.3333333333333 213.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="dumbbell"
+      unicode="&#xF1E6;"
+      horiz-adv-x="512" d=" M90.0266666666667 146.7733333333334L74.6666666666667 161.92C58.24 178.56 58.24 205.44 74.6666666666667 222.08C91.7333333333333 238.9333333333334 118.6133333333334 238.9333333333334 135.2533333333333 222.08L190.2933333333333 167.2533333333333L280.7466666666667 257.7066666666667L225.92 312.7466666666667C209.0666666666667 329.3866666666667 209.0666666666667 356.2666666666667 225.92 373.3333333333334C242.56 389.76 269.44 389.76 286.08 373.3333333333334L301.2266666666667 357.9733333333334L421.9733333333334 237.2266666666667L437.3333333333333 222.08C453.76 205.44 453.76 178.5600000000001 437.3333333333333 161.92C420.2666666666667 145.0666666666667 393.3866666666667 145.0666666666667 376.7466666666667 161.92L321.7066666666667 216.7466666666667L231.2533333333334 126.2933333333334L286.08 71.2533333333333C302.9333333333333 54.6133333333333 302.9333333333333 27.7333333333334 286.08 10.6666666666667C269.44 -5.76 242.56 -5.76 225.92 10.6666666666667L210.7733333333333 26.0266666666666L90.0266666666666 146.7733333333333M67.4133333333333 33.7066666666667L90.0266666666666 56.3199999999999L59.9466666666666 86.4C51.6266666666666 94.72 51.6266666666666 108.16 59.9466666666666 116.48C68.2666666666666 124.8 81.7066666666666 124.8 90.0266666666666 116.48L180.48 26.0266666666666C188.8 17.7066666666667 188.8 4.2666666666667 180.48 -4.0533333333333C172.16 -12.3733333333333 158.72 -12.3733333333333 150.4 -4.0533333333333L120.32 26.0266666666666L97.7066666666666 3.4133333333334L67.4133333333333 33.7066666666667M414.2933333333334 380.5866666666667L444.5866666666667 350.2933333333334L421.9733333333334 327.68L452.0533333333334 297.6C460.3733333333334 289.28 460.3733333333334 275.8400000000001 452.0533333333334 267.52C443.7333333333334 258.9866666666667 430.2933333333334 258.9866666666667 421.9733333333334 267.52L331.5200000000001 357.9733333333334C323.2000000000001 366.2933333333333 323.2000000000001 379.7333333333334 331.5200000000001 388.0533333333334C339.8400000000001 396.3733333333334 353.2800000000001 396.3733333333334 361.6 388.0533333333334L391.6800000000001 357.9733333333334L414.2933333333334 380.5866666666667z" />
+    <glyph glyph-name="ear-hearing"
+      unicode="&#xF7C4;"
+      horiz-adv-x="512" d=" M362.6666666666667 21.3333333333334C356.48 21.3333333333334 350.7200000000001 22.6133333333333 346.4533333333333 24.5333333333333C331.3066666666666 32 320.64 43.3066666666666 309.9733333333333 75.3066666666666C298.6666666666667 108.5866666666667 278.6133333333333 124.16 258.9866666666666 139.3066666666666C242.1333333333333 152.3199999999999 224.6399999999999 165.76 209.4933333333333 193.28C198.1866666666667 213.3333333333334 192 236.1600000000001 192 256C192 315.7333333333334 238.9333333333333 362.6666666666667 298.6666666666667 362.6666666666667S405.3333333333333 315.7333333333334 405.3333333333333 256H448C448 339.8400000000001 382.5066666666667 405.3333333333333 298.6666666666667 405.3333333333333S149.3333333333333 339.8400000000001 149.3333333333333 256C149.3333333333333 229.12 157.44 199.4666666666667 172.16 172.8C192 137.6 214.4 119.8933333333333 232.96 105.6C250.24 92.3733333333333 262.6133333333334 82.7733333333333 269.44 61.8666666666667C282.24 23.04 298.6666666666667 1.28 327.68 -13.8666666666667C338.56 -18.7733333333334 350.5066666666667 -21.3333333333334 362.6666666666667 -21.3333333333334C409.8133333333334 -21.3333333333334 448 16.8533333333332 448 63.9999999999999H405.3333333333333C405.3333333333333 40.5333333333332 386.1333333333334 21.3333333333333 362.6666666666667 21.3333333333333M162.9866666666667 391.68L132.6933333333333 421.9733333333334C90.24 379.52 64 320.8533333333334 64 256S90.24 132.48 132.6933333333333 90.0266666666666L162.7733333333334 120.1066666666667C128 154.88 106.6666666666667 202.6666666666667 106.6666666666667 256S128 357.12 162.9866666666667 391.68M245.3333333333333 256C245.3333333333333 226.5600000000001 269.2266666666667 202.6666666666667 298.6666666666667 202.6666666666667S352 226.5600000000001 352 256S328.1066666666667 309.3333333333334 298.6666666666667 309.3333333333334S245.3333333333333 285.44 245.3333333333333 256z" />
+    <glyph glyph-name="ear-hearing-off"
+      unicode="&#xFA44;"
+      horiz-adv-x="512" d=" M21.3333333333333 356.9066666666667L48.64 384L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L275.4133333333333 102.8266666666667C260.0533333333333 90.8800000000001 248.96 81.28 242.56 61.8666666666667C229.76 23.04 213.3333333333333 1.28 184.32 -13.8666666666667C173.44 -18.7733333333334 161.4933333333334 -21.3333333333334 149.3333333333334 -21.3333333333334C102.1866666666667 -21.3333333333334 64 16.8533333333332 64 63.9999999999999H106.6666666666667C106.6666666666667 40.5333333333332 125.8666666666667 21.3333333333333 149.3333333333334 21.3333333333333C155.52 21.3333333333333 161.28 22.6133333333332 165.5466666666667 24.5333333333332C180.6933333333333 31.9999999999999 191.36 43.3066666666666 202.0266666666667 75.3066666666666C211.4133333333333 104.1066666666666 228.0533333333334 119.6799999999999 245.3333333333333 133.1199999999999L107.52 270.7200000000001C106.6666666666667 265.8133333333334 106.6666666666667 260.9066666666667 106.6666666666667 256H64C64 273.7066666666667 66.9866666666667 290.3466666666667 72.32 305.92L21.3333333333333 356.9066666666667M302.5066666666667 193.28C313.8133333333334 213.3333333333334 320 236.1600000000001 320 256C320 315.7333333333334 273.0666666666667 362.6666666666667 213.3333333333333 362.6666666666667C187.9466666666667 362.6666666666667 165.12 354.3466666666667 146.9866666666667 340.0533333333334L116.48 370.56C142.2933333333333 392.32 176 405.3333333333333 213.3333333333333 405.3333333333333C297.1733333333333 405.3333333333333 362.6666666666667 339.8400000000001 362.6666666666667 256C362.6666666666667 229.12 354.56 199.4666666666667 339.84 172.8L330.0266666666667 156.8L299.3066666666666 187.7333333333334L302.5066666666667 193.28M349.0133333333333 391.68L379.3066666666667 421.9733333333333C421.76 379.52 448 320.8533333333334 448 256C448 195.6266666666667 425.1733333333333 140.5866666666667 387.84 98.9866666666667L357.76 129.28C387.2 162.9866666666667 405.3333333333333 207.36 405.3333333333333 256C405.3333333333333 309.3333333333334 384 357.12 349.0133333333333 391.68M266.6666666666667 256C266.6666666666667 245.3333333333334 263.68 236.1600000000001 258.7733333333333 228.0533333333334L185.3866666666667 301.44C193.4933333333334 306.3466666666667 202.6666666666667 309.3333333333334 213.3333333333333 309.3333333333334C242.7733333333333 309.3333333333334 266.6666666666667 285.44 266.6666666666667 256z" />
+    <glyph glyph-name="earth"
+      unicode="&#xF1E7;"
+      horiz-adv-x="512" d=" M381.8666666666666 77.0133333333333C376.32 94.08 360.32 106.6666666666667 341.3333333333333 106.6666666666667H320V170.6666666666667C320 182.4 310.4 192 298.6666666666667 192H170.6666666666667V234.6666666666667H213.3333333333333C225.0666666666667 234.6666666666667 234.6666666666667 244.2666666666667 234.6666666666667 256V298.6666666666667H277.3333333333333C300.8 298.6666666666667 320 317.8666666666667 320 341.3333333333334V350.0800000000001C382.5066666666667 324.9066666666667 426.6666666666667 263.68 426.6666666666667 192C426.6666666666667 147.6266666666667 409.6 107.3066666666667 381.8666666666666 77.0133333333333M234.6666666666667 22.8266666666667C150.4 33.28 85.3333333333333 104.96 85.3333333333333 192C85.3333333333333 205.2266666666667 87.04 218.0266666666667 89.8133333333333 230.1866666666667L192 128V106.6666666666667C192 83.2 211.2 64 234.6666666666667 64M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="earth-box"
+      unicode="&#xF6CC;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384H106.6666666666667M336.64 341.3333333333334H405.3333333333333V81.4933333333333C399.7866666666667 98.5600000000001 377.3866666666667 111.1466666666667 358.4 111.1466666666667H337.0666666666667V175.1466666666667C337.0666666666667 186.8800000000001 327.4666666666667 196.48 315.7333333333334 196.48H187.7333333333334V239.1466666666667H230.4C242.1333333333334 239.1466666666667 251.7333333333334 248.7466666666667 251.7333333333334 260.48V303.1466666666667H294.4C316.3733333333334 303.1466666666667 334.2933333333334 320 336.64 341.3333333333334M106.6666666666667 228.48L209.0666666666667 132.48V111.1466666666667C209.0666666666667 87.4666666666667 228.2666666666667 68.48 251.7333333333334 68.48V42.6666666666667H106.6666666666667V228.48z" />
+    <glyph glyph-name="earth-box-off"
+      unicode="&#xF6CD;"
+      horiz-adv-x="512" d=" M490.6666666666666 356.9066666666667L448 314.24V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H133.76L91.0933333333333 -42.6666666666666L64 -15.36L463.36 384L490.6666666666666 356.9066666666667M106.6666666666667 384H409.1733333333333L366.5066666666667 341.3333333333334H336.64C334.2933333333333 320 316.3733333333334 303.1466666666667 294.4 303.1466666666667H251.7333333333333V260.48C251.7333333333333 248.5333333333334 242.1333333333334 239.1466666666667 230.4 239.1466666666667H187.7333333333333V196.48H221.44L182.4 157.4400000000001L106.6666666666667 228.48V81.4933333333333L64 38.8266666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384M251.7333333333334 42.6666666666667V68.48C238.2933333333333 68.48 226.1333333333334 74.6666666666667 218.24 84.48L176.4266666666667 42.6666666666667H251.7333333333333M337.0666666666666 175.1466666666667V111.1466666666667H358.3999999999999C377.3866666666666 111.1466666666667 399.7866666666667 98.5600000000001 405.3333333333333 81.4933333333333V271.5733333333334L327.0399999999999 193.28C333.0133333333332 189.4400000000001 337.0666666666666 182.8266666666667 337.0666666666666 175.1466666666667z" />
+    <glyph glyph-name="earth-off"
+      unicode="&#xF1E8;"
+      horiz-adv-x="512" d=" M469.3333333333333 335.5733333333334L437.3333333333333 304C457.8133333333333 271.36 469.3333333333333 233.1733333333334 469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333C215.04 -21.3333333333333 176.64 -9.8133333333333 144 10.6666666666667L112.4266666666667 -21.3333333333333L85.3333333333333 5.9733333333334L442.0266666666667 362.6666666666667L469.3333333333333 335.5733333333334M381.8666666666666 77.0133333333333C409.6 107.3066666666667 426.6666666666667 147.6266666666667 426.6666666666667 192C426.6666666666667 221.2266666666667 419.4133333333333 248.7466666666667 406.4 272.64L316.3733333333334 182.6133333333334C318.7200000000001 179.2 320 175.1466666666667 320 170.6666666666666V106.6666666666667H341.3333333333333C360.32 106.6666666666667 376.32 94.08 381.8666666666666 77.0133333333333M234.6666666666667 22.8266666666667V64C224 64 214.8266666666667 67.6266666666667 207.5733333333333 73.8133333333334L175.36 41.6C193.4933333333334 32 213.3333333333333 25.6 234.6666666666667 22.8266666666667M320 350.0800000000001V341.3333333333334C320 317.8666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667V256C234.6666666666667 244.2666666666667 225.0666666666667 234.6666666666667 213.3333333333333 234.6666666666667H170.6666666666667V192H217.1733333333333L172.5866666666667 147.4133333333334L89.8133333333333 230.1866666666667C87.04 218.0266666666667 85.3333333333333 205.2266666666667 85.3333333333333 192C85.3333333333333 154.88 97.28 120.3200000000001 117.3333333333333 92.3733333333333L87.04 61.8666666666667C59.0933333333333 97.92 42.6666666666667 142.9333333333333 42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333C305.0666666666667 405.3333333333333 350.08 388.9066666666667 386.1333333333334 360.9600000000001L355.6266666666667 330.6666666666667C344.7466666666667 338.3466666666667 332.8 344.9600000000001 320 350.0800000000001z" />
+    <glyph glyph-name="edge"
+      unicode="&#xF1E9;"
+      horiz-adv-x="512" d=" M58.4533333333333 217.3866666666667C81.7066666666667 477.0133333333333 480 477.0133333333333 452.2666666666667 158.72H183.68C183.68 67.2 307.6266666666666 38.1866666666667 416.8533333333333 100.0533333333333V10.0266666666666C282.6666666666667 -61.4399999999999 106.6666666666667 -9.1733333333333 106.6666666666667 147.4133333333334C106.6666666666667 264.9600000000001 212.6933333333333 302.7200000000001 212.6933333333333 302.7200000000001S183.04 264.9600000000001 182.1866666666667 233.6H334.9333333333333C334.9333333333333 385.4933333333334 125.8666666666666 329.1733333333334 58.4533333333333 217.3866666666667z" />
+    <glyph glyph-name="egg"
+      unicode="&#xFAAE;"
+      horiz-adv-x="512" d=" M416 138.6666666666667C416 50.3466666666667 344.32 -21.3333333333333 256 -21.3333333333333C167.68 -21.3333333333333 96 50.3466666666667 96 138.6666666666667C96 226.9866666666667 167.68 405.3333333333333 256 405.3333333333333C344.32 405.3333333333333 416 226.9866666666667 416 138.6666666666667z" />
+    <glyph glyph-name="egg-easter"
+      unicode="&#xFAAF;"
+      horiz-adv-x="512" d=" M146.9866666666667 312.32C175.5733333333333 364.5866666666667 213.3333333333333 405.3333333333333 256 405.3333333333333C298.6666666666667 405.3333333333333 336.4266666666666 364.5866666666667 365.0133333333333 312.32C346.88 307.8400000000001 330.6666666666667 297.1733333333334 320 282.24C294.1866666666666 317.6533333333333 244.48 325.3333333333334 209.0666666666667 299.3066666666667C202.6666666666667 294.6133333333334 196.6933333333333 288.8533333333334 192 282.24C181.3333333333333 297.1733333333334 165.12 307.8400000000001 146.9866666666667 312.32M320 62.72L256 126.72L192 62.72L128 126.72L100.9066666666667 99.6266666666667C122.6666666666667 13.8666666666667 209.7066666666667 -37.76 295.2533333333334 -16.2133333333333C352 -1.7066666666666 396.5866666666667 42.6666666666667 411.0933333333333 99.6266666666667L384 126.72L320 62.72M192 107.9466666666667L256 171.9466666666667L320 107.9466666666667L384 171.9466666666667L416 139.9466666666667C413.2266666666667 189.2266666666667 401.0666666666667 237.6533333333333 379.9466666666666 282.4533333333333C355.2 280.32 336 259.6266666666667 336 234.6666666666667H304C304 261.12 282.4533333333333 282.6666666666667 256 282.6666666666667S208 261.12 208 234.6666666666667H176C176 259.6266666666667 156.8 280.3200000000001 132.0533333333333 282.4533333333334C110.9333333333333 237.6533333333334 98.7733333333333 189.2266666666667 96 139.9466666666667L128 171.9466666666667L192 107.9466666666667z" />
+    <glyph glyph-name="eight-track"
+      unicode="&#xF9E9;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333L106.6666666666667 341.3333333333334V106.6666666666667L128 21.3333333333334C133.76 -1.4933333333333 147.2 -21.3333333333333 170.6666666666667 -21.3333333333333H341.3333333333333C364.8 -21.3333333333333 384 -2.1333333333333 384 21.3333333333334L405.3333333333333 106.6666666666667V341.3333333333334L362.6666666666667 405.3333333333333H320V384H277.3333333333333V405.3333333333333H149.3333333333333M149.3333333333333 320H362.6666666666667V106.6666666666667H149.3333333333333V320z" />
+    <glyph glyph-name="eject"
+      unicode="&#xF1EA;"
+      horiz-adv-x="512" d=" M256 341.3333333333334L113.7066666666667 128H398.2933333333334M106.6666666666667 85.3333333333334H405.3333333333333V42.6666666666667H106.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="eject-outline"
+      unicode="&#xFB6D;"
+      horiz-adv-x="512" d=" M106.6666666666667 85.3333333333334H405.3333333333333V42.6666666666667H106.6666666666667V85.3333333333334M256 341.3333333333334L113.7066666666667 128H398.2933333333334L256 341.3333333333334M256 264.5333333333334L318.5066666666667 170.6666666666667H193.4933333333334L256 264.5333333333334z" />
+    <glyph glyph-name="elephant"
+      unicode="&#xF7C5;"
+      horiz-adv-x="512" d=" M416 117.3333333333334C416 111.36 411.3066666666667 106.6666666666667 405.3333333333333 106.6666666666667S394.6666666666667 111.36 394.6666666666667 117.3333333333334V266.6666666666667C394.6666666666667 307.8400000000001 350.5066666666667 341.3333333333334 309.3333333333333 341.3333333333334H128C80.8533333333333 341.3333333333334 42.6666666666667 303.1466666666667 42.6666666666667 256V42.6666666666667H128V128H234.6666666666667V42.6666666666667H320V138.6666666666667C320 144.64 324.6933333333334 149.3333333333334 330.6666666666667 149.3333333333334S341.3333333333333 144.64 341.3333333333333 138.6666666666667V106.6666666666667C341.3333333333333 71.2533333333333 369.92 42.6666666666667 405.3333333333333 42.6666666666667S469.3333333333333 71.2533333333333 469.3333333333333 106.6666666666667V149.3333333333334H416V117.3333333333334z" />
+    <glyph glyph-name="elevation-decline"
+      unicode="&#xF1EB;"
+      horiz-adv-x="512" d=" M448 0H64V208L201.6 128L282.0266666666667 174.9333333333333L448 79.1466666666667V0M64 257.2800000000001V304L201.6 224L282.0266666666667 270.9333333333334L448 175.1466666666667V128L282.0266666666667 224L201.6 177.7066666666667L64 257.2800000000001z" />
+    <glyph glyph-name="elevation-rise"
+      unicode="&#xF1EC;"
+      horiz-adv-x="512" d=" M64 0V79.1466666666667L229.9733333333334 174.9333333333334L310.4 128L448 208V0H64M448 257.2800000000001L310.4 177.7066666666667L229.9733333333334 224L64 128V175.1466666666667L229.9733333333334 270.9333333333334L310.4 224L448 304V257.2800000000001z" />
+    <glyph glyph-name="elevator"
+      unicode="&#xF1ED;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333L234.6666666666667 320H170.6666666666667V234.6666666666667H128V320H64L149.3333333333333 405.3333333333333M362.6666666666667 234.6666666666667L277.3333333333333 320H341.3333333333333V405.3333333333333H384V320H448L362.6666666666667 234.6666666666667M149.3333333333333 192H362.6666666666667C386.1333333333334 192 405.3333333333333 172.8 405.3333333333333 149.3333333333334V21.3333333333334C405.3333333333333 -2.1333333333333 386.1333333333334 -21.3333333333333 362.6666666666667 -21.3333333333333H149.3333333333333C125.8666666666667 -21.3333333333333 106.6666666666667 -2.1333333333333 106.6666666666667 21.3333333333334V149.3333333333334C106.6666666666667 172.8 125.8666666666667 192 149.3333333333333 192M149.3333333333333 149.3333333333334V21.3333333333334H362.6666666666667V149.3333333333334H149.3333333333333z" />
+    <glyph glyph-name="email"
+      unicode="&#xF1EE;"
+      horiz-adv-x="512" d=" M426.6666666666667 277.3333333333334L256 170.6666666666667L85.3333333333333 277.3333333333334V320L256 213.3333333333334L426.6666666666667 320M426.6666666666667 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="email-alert"
+      unicode="&#xF6CE;"
+      horiz-adv-x="512" d=" M341.3333333333333 256V298.6666666666667L213.3333333333333 213.3333333333334L85.3333333333333 298.6666666666667V256L213.3333333333333 170.6666666666667L341.3333333333333 256M341.3333333333333 341.3333333333334C364.8 341.3333333333334 384 322.1333333333334 384 298.6666666666667V106.6666666666667C384 83.2 364.8 64 341.3333333333333 64H85.3333333333333C61.6533333333333 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V298.6666666666667C42.6666666666667 322.1333333333334 61.8666666666667 341.3333333333334 85.3333333333333 341.3333333333334H341.3333333333333M426.6666666666667 192V298.6666666666667H469.3333333333333V192H426.6666666666667M426.6666666666667 106.6666666666667V149.3333333333334H469.3333333333333V106.6666666666667H426.6666666666667z" />
+    <glyph glyph-name="email-check"
+      unicode="&#xFAB0;"
+      horiz-adv-x="512" d=" M448 163.4133333333334C434.56 168.1066666666667 420.2666666666667 170.6666666666667 405.3333333333333 170.6666666666667C334.72 170.6666666666667 277.3333333333333 113.28 277.3333333333333 42.6666666666667C277.3333333333333 35.4133333333334 277.9733333333333 28.3733333333333 279.04 21.3333333333334H64C40.5333333333333 21.3333333333334 21.3333333333333 40.5333333333333 21.3333333333333 64V320C21.3333333333333 343.68 40.32 362.6666666666667 64 362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320V163.4133333333334M501.3333333333333 85.3333333333334L394.6666666666667 -21.3333333333333L320 53.3333333333334L352 85.3333333333334L394.6666666666667 42.6666666666667L469.3333333333333 117.3333333333334L501.3333333333333 85.3333333333334M64 320V277.3333333333334L234.6666666666667 170.6666666666667L405.3333333333333 277.3333333333334V320L234.6666666666667 213.3333333333334L64 320z" />
+    <glyph glyph-name="email-check-outline"
+      unicode="&#xFAB1;"
+      horiz-adv-x="512" d=" M501.3333333333333 85.3333333333334L394.6666666666667 -21.3333333333333L320 53.3333333333334L352 85.3333333333334L394.6666666666667 42.6666666666667L469.3333333333333 117.3333333333334L501.3333333333333 85.3333333333334M21.3333333333333 320V64C21.3333333333333 40.5333333333333 40.5333333333333 21.3333333333334 64 21.3333333333334H277.3333333333333V64H64V269.4400000000001L234.6666666666667 162.9866666666667L405.3333333333333 269.4400000000001V170.6666666666667H448V320C448 343.4666666666667 428.8 362.6666666666667 405.3333333333333 362.6666666666667H64C40.32 362.6666666666667 21.3333333333333 343.68 21.3333333333333 320M64 320H405.3333333333333L234.6666666666667 213.3333333333334L64 320z" />
+    <glyph glyph-name="email-lock"
+      unicode="&#xF1F1;"
+      horiz-adv-x="512" d=" M437.3333333333333 448C466.7733333333333 448 490.6666666666666 424.1066666666667 490.6666666666666 394.6666666666667V384C502.4 384 512 374.4 512 362.6666666666667V277.3333333333334C512 265.6 502.4 256 490.6666666666666 256H384C372.2666666666667 256 362.6666666666667 265.6 362.6666666666667 277.3333333333334V362.6666666666667C362.6666666666667 374.4 372.2666666666667 384 384 384V394.6666666666667C384 424.1066666666667 407.8933333333333 448 437.3333333333333 448M256 213.3333333333334L85.3333333333333 320V277.3333333333334L256 170.6666666666667L345.1733333333333 226.3466666666667C356.0533333333334 218.24 369.4933333333334 213.3333333333334 384 213.3333333333334H469.3333333333333V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H320V277.3333333333334C320 269.6533333333334 321.28 262.4000000000001 323.84 256L256 213.3333333333334M437.3333333333333 426.6666666666667C419.6266666666667 426.6666666666667 405.3333333333333 412.3733333333334 405.3333333333333 394.6666666666667V384H469.3333333333333V394.6666666666667C469.3333333333333 412.3733333333334 455.04 426.6666666666667 437.3333333333333 426.6666666666667z" />
+    <glyph glyph-name="email-mark-as-unread"
+      unicode="&#xFB6E;"
+      horiz-adv-x="512" d=" M401.92 298.6666666666667H346.0266666666667L224 362.6666666666667L85.3333333333333 289.92V85.3333333333334C61.8666666666667 85.3333333333334 42.6666666666667 104.5333333333333 42.6666666666667 128V295.04C42.6666666666667 309.3333333333334 48.64 318.7200000000001 59.9466666666667 324.0533333333334L224 405.3333333333333L385.0666666666667 324.0533333333334C394.6666666666667 318.08 400.64 309.3333333333334 401.92 298.6666666666667M149.3333333333333 277.3333333333334H426.6666666666667C450.1333333333334 277.3333333333334 469.3333333333333 258.1333333333334 469.3333333333333 234.6666666666667V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H149.3333333333333C125.8666666666667 0 106.6666666666667 19.2 106.6666666666667 42.6666666666667V234.6666666666667C106.6666666666667 258.1333333333334 125.8666666666667 277.3333333333334 149.3333333333333 277.3333333333334M426.6666666666667 199.04V234.6666666666667L288 164.0533333333334L149.3333333333333 234.6666666666667V199.04L288 128L426.6666666666667 199.04z" />
+    <glyph glyph-name="email-open"
+      unicode="&#xF1EF;"
+      horiz-adv-x="512" d=" M85.3333333333333 277.3333333333334L256 170.6666666666667L426.6666666666667 277.3333333333334L256 384L85.3333333333333 277.3333333333334M469.3333333333333 277.3333333333334V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V277.3333333333334C42.6666666666667 292.9066666666667 50.9866666666667 306.3466666666667 63.36 313.8133333333334L256 434.3466666666667L448.64 313.8133333333334C461.0133333333333 306.3466666666667 469.3333333333333 292.9066666666667 469.3333333333333 277.3333333333334z" />
+    <glyph glyph-name="email-open-outline"
+      unicode="&#xF5EF;"
+      horiz-adv-x="512" d=" M256 120.3200000000001L85.3333333333333 226.9866666666667V64H426.6666666666667V226.9866666666667L256 120.3200000000001M85.3333333333333 277.3333333333334L256 170.6666666666667L426.6666666666667 277.3333333333334L256 384L85.3333333333333 277.3333333333334M469.3333333333333 277.3333333333334V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V277.3333333333334C42.6666666666667 292.9066666666667 50.9866666666667 306.3466666666667 63.36 313.8133333333334L256 434.3466666666667L448.64 313.8133333333334C461.0133333333333 306.3466666666667 469.3333333333333 292.9066666666667 469.3333333333333 277.3333333333334z" />
+    <glyph glyph-name="email-outline"
+      unicode="&#xF1F0;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.6533333333333 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.68 61.6533333333333 362.6666666666667 85.3333333333333 362.6666666666667M256 213.3333333333334L426.6666666666667 320H85.3333333333333L256 213.3333333333334M85.3333333333333 64H426.6666666666667V269.4400000000001L256 162.9866666666667L85.3333333333333 269.4400000000001V64z" />
+    <glyph glyph-name="email-plus"
+      unicode="&#xF9EA;"
+      horiz-adv-x="512" d=" M64 362.6666666666667C40.32 362.6666666666667 21.3333333333333 343.68 21.3333333333333 320V64C21.3333333333333 40.5333333333333 40.5333333333333 21.3333333333334 64 21.3333333333334H300.5866666666667C299.3066666666666 28.3733333333333 298.6666666666667 35.4133333333334 298.6666666666667 42.6666666666667C298.6666666666667 113.28 356.0533333333334 170.6666666666667 426.6666666666667 170.6666666666667C433.92 170.6666666666667 440.9600000000001 170.0266666666667 448 168.7466666666667V320C448 343.68 428.8 362.6666666666667 405.3333333333333 362.6666666666667H64M64 320L234.6666666666667 213.3333333333334L405.3333333333333 320V277.3333333333334L234.6666666666667 170.6666666666667L64 277.3333333333334V320M405.3333333333333 128V64H341.3333333333333V21.3333333333334H405.3333333333333V-42.6666666666666H448V21.3333333333334H512V64H448V128H405.3333333333333z" />
+    <glyph glyph-name="email-plus-outline"
+      unicode="&#xF9EB;"
+      horiz-adv-x="512" d=" M64 362.6666666666667C40.32 362.6666666666667 21.3333333333333 343.68 21.3333333333333 320V64C21.3333333333333 40.5333333333333 40.5333333333333 21.3333333333334 64 21.3333333333334H298.6666666666667V64H64V269.4400000000001L234.6666666666667 162.9866666666667L405.3333333333333 269.4400000000001V170.6666666666667H448V320C448 343.4666666666667 428.8 362.6666666666667 405.3333333333333 362.6666666666667H64M64 320H405.3333333333333L234.6666666666667 213.3333333333334L64 320M405.3333333333333 128V64H341.3333333333333V21.3333333333334H405.3333333333333V-42.6666666666666H448V21.3333333333334H512V64H448V128H405.3333333333333z" />
+    <glyph glyph-name="email-search"
+      unicode="&#xF960;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320V217.1733333333334C426.6666666666667 237.8666666666667 398.9333333333333 251.0933333333334 369.28 254.72L405.3333333333333 277.3333333333334V320L234.6666666666667 213.3333333333334L64 320V277.3333333333334L226.56 175.7866666666667C217.8133333333333 157.4400000000001 213.3333333333334 137.6 213.3333333333334 117.3333333333334C213.3333333333334 81.4933333333333 227.2000000000001 47.1466666666667 251.9466666666667 21.3333333333334H64C40.5333333333333 21.3333333333334 21.3333333333333 40.5333333333333 21.3333333333333 64V320C21.3333333333333 343.68 40.32 362.6666666666667 64 362.6666666666667M352 213.3333333333334C405.3333333333333 213.3333333333334 448 170.6666666666667 448 117.3333333333334C448 98.5600000000001 442.6666666666667 80.8533333333334 433.28 66.1333333333334L498.9866666666667 0L469.3333333333333 -29.6533333333333L402.7733333333333 35.84C388.0533333333333 26.6666666666667 370.56 21.3333333333334 352 21.3333333333334C298.6666666666667 21.3333333333334 256 64 256 117.3333333333334S298.6666666666667 213.3333333333334 352 213.3333333333334M352 170.6666666666667C322.56 170.6666666666667 298.6666666666667 146.7733333333333 298.6666666666667 117.3333333333334S322.56 64 352 64S405.3333333333333 87.8933333333334 405.3333333333333 117.3333333333334S381.44 170.6666666666667 352 170.6666666666667z" />
+    <glyph glyph-name="email-search-outline"
+      unicode="&#xF961;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320V217.1733333333334C435.6266666666667 229.12 421.12 238.72 405.3333333333333 245.3333333333334V269.4400000000001L379.3066666666667 253.2266666666667C370.3466666666667 255.1466666666667 361.1733333333333 256.0000000000001 352 256.0000000000001C295.68 256.0000000000001 245.3333333333333 221.8666666666667 224 169.8133333333334L64 269.4400000000001V64H224C230.6133333333334 48.2133333333334 240.2133333333333 33.7066666666667 251.9466666666667 21.3333333333334H64C40.32 21.3333333333334 21.3333333333333 40.5333333333333 21.3333333333333 64V320C21.3333333333333 343.68 40.32 362.6666666666667 64 362.6666666666667M64 320L234.6666666666667 213.3333333333334L405.3333333333333 320H64M352 213.3333333333334C405.3333333333333 213.3333333333334 448 170.6666666666667 448 117.3333333333334C448 98.5600000000001 442.6666666666667 80.8533333333334 433.28 66.1333333333334L498.9866666666667 0L469.3333333333333 -29.6533333333333L402.7733333333333 35.84C388.0533333333333 26.6666666666667 370.56 21.3333333333334 352 21.3333333333334C298.6666666666667 21.3333333333334 256 64 256 117.3333333333334S298.6666666666667 213.3333333333334 352 213.3333333333334M352 170.6666666666667C322.56 170.6666666666667 298.6666666666667 146.7733333333333 298.6666666666667 117.3333333333334S322.56 64 352 64S405.3333333333333 87.8933333333334 405.3333333333333 117.3333333333334S381.44 170.6666666666667 352 170.6666666666667z" />
+    <glyph glyph-name="email-variant"
+      unicode="&#xF5F0;"
+      horiz-adv-x="512" d=" M256 170.6666666666667L42.6666666666667 303.7866666666667V320C42.6666666666667 343.68 61.6533333333333 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V304L256 170.6666666666667M469.3333333333333 64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.6533333333333 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V253.6533333333334L85.3333333333333 226.9866666666667V64H426.6666666666667V226.9866666666667L469.3333333333333 253.6533333333334V64z" />
+    <glyph glyph-name="ember"
+      unicode="&#xFB15;"
+      horiz-adv-x="512" d=" M469.3333333333333 144.64S375.68 77.8666666666667 314.0266666666667 77.0133333333333C252.5866666666667 75.9466666666667 258.7733333333333 116.0533333333334 258.7733333333333 116.0533333333334S484.48 193.28 423.04 345.8133333333334C395.3066666666666 385.0666666666667 362.6666666666667 397.44 317.6533333333333 396.3733333333334C272.2133333333333 395.52 216.96 367.7866666666667 180.4799999999999 285.8666666666667C162.9866666666666 246.6133333333333 158.0799999999999 209.4933333333334 154.4533333333333 181.3333333333334C154.4533333333333 181.3333333333334 113.4933333333333 173.2266666666667 92.1599999999999 191.1466666666667C70.8266666666666 209.0666666666667 59.0933333333333 191.1466666666667 59.0933333333333 191.1466666666667S21.9733333333333 145.0666666666667 58.6666666666666 130.7733333333334C95.1466666666666 116.48 151.8933333333333 110.5066666666667 151.8933333333333 110.5066666666667C157.0133333333333 85.3333333333334 172.3733333333333 42.6666666666667 216.96 8.5333333333334C283.7333333333333 -42.6666666666666 412.16 12.8000000000001 412.16 12.8000000000001M248.1066666666667 184.96C250.88 290.9866666666667 320 337.4933333333334 344.5333333333333 314.24C368.4266666666666 290.9866666666667 359.68 241.0666666666667 314.0266666666667 209.9200000000001C268.5866666666667 178.5600000000001 248.1066666666667 184.96 248.1066666666667 184.96z" />
+    <glyph glyph-name="emby"
+      unicode="&#xF6B3;"
+      horiz-adv-x="512" d=" M234.6666666666667 405.3333333333333L128 298.6666666666667L149.3333333333333 277.3333333333334L42.6666666666667 170.6666666666667L149.3333333333333 64L170.6666666666667 85.3333333333334L277.3333333333333 -21.3333333333333L384 85.3333333333334L362.6666666666667 106.6666666666667L469.3333333333333 213.3333333333334L362.6666666666667 320L341.3333333333333 298.6666666666667L234.6666666666667 405.3333333333333M213.3333333333333 266.6666666666667L341.3333333333333 192L213.3333333333333 117.3333333333334V266.6666666666667z" />
+    <glyph glyph-name="emoticon"
+      unicode="&#xF1F2;"
+      horiz-adv-x="512" d=" M256 74.6666666666667C305.7066666666667 74.6666666666667 347.7333333333334 105.8133333333334 365.0133333333333 149.3333333333334H146.9866666666667C164.0533333333333 105.8133333333334 206.2933333333333 74.6666666666667 256 74.6666666666667M181.3333333333333 213.3333333333334C199.04 213.3333333333334 213.3333333333333 227.6266666666667 213.3333333333333 245.3333333333334S199.04 277.3333333333334 181.3333333333333 277.3333333333334S149.3333333333333 263.04 149.3333333333333 245.3333333333334S163.6266666666667 213.3333333333334 181.3333333333333 213.3333333333334M330.6666666666667 213.3333333333334C348.3733333333333 213.3333333333334 362.6666666666667 227.6266666666667 362.6666666666667 245.3333333333334S348.3733333333333 277.3333333333334 330.6666666666667 277.3333333333334S298.6666666666667 263.04 298.6666666666667 245.3333333333334S312.96 213.3333333333334 330.6666666666667 213.3333333333334M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.0266666666667 405.3333333333333 42.6666666666667 309.3333333333334 42.6666666666667 192C42.6666666666667 74.24 138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="emoticon-cool"
+      unicode="&#xF1F3;"
+      horiz-adv-x="512" d=" M405.3333333333333 234.6666666666667C405.3333333333333 205.2266666666667 360.1066666666667 181.3333333333334 330.6666666666667 181.3333333333334S272 205.2266666666667 272 234.6666666666667H240C240 205.2266666666667 210.7733333333333 181.3333333333334 181.3333333333333 181.3333333333334S106.6666666666667 205.2266666666667 106.6666666666667 234.6666666666667H90.6666666666667C87.2533333333333 221.0133333333333 85.3333333333333 206.72 85.3333333333333 192C85.3333333333333 97.7066666666667 161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192C426.6666666666667 206.72 424.7466666666667 221.0133333333333 421.3333333333333 234.6666666666667H405.3333333333333M256 362.6666666666667C192.8533333333333 362.6666666666667 137.6 328.32 108.16 277.3333333333334H403.84C374.4 328.32 319.1466666666667 362.6666666666667 256 362.6666666666667M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M256 80.4266666666667C218.6666666666667 80.4266666666667 185.8133333333333 96 166.6133333333333 119.04L196.9066666666667 149.3333333333334C206.5066666666667 133.9733333333334 229.3333333333333 123.0933333333334 256 123.0933333333334S305.4933333333334 133.9733333333334 315.0933333333333 149.3333333333334L345.3866666666666 119.04C326.1866666666666 96 293.3333333333333 80.4266666666667 255.9999999999999 80.4266666666667z" />
+    <glyph glyph-name="emoticon-dead"
+      unicode="&#xF69A;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.0266666666667 405.3333333333333 42.6666666666667 309.9733333333334 42.6666666666667 192S138.0266666666667 -21.3333333333333 256 -21.3333333333333C373.76 -21.3333333333333 469.3333333333333 74.24 469.3333333333333 192C469.3333333333333 309.9733333333334 373.3333333333333 405.3333333333333 256 405.3333333333333M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M345.1733333333333 282.4533333333334L322.56 259.8400000000001L299.9466666666666 282.4533333333334L277.3333333333333 259.8400000000001L299.9466666666667 237.2266666666667L277.3333333333333 214.6133333333334L299.9466666666667 192L322.56 214.6133333333334L345.1733333333333 192L367.7866666666667 214.6133333333334L345.1733333333333 237.2266666666667L367.7866666666667 259.8400000000001L345.1733333333333 282.4533333333334M166.8266666666667 192L189.44 214.6133333333334L212.0533333333333 192L234.6666666666667 214.6133333333334L212.0533333333333 237.2266666666667L234.6666666666667 259.8400000000001L212.0533333333333 282.4533333333334L189.44 259.8400000000001L166.8266666666667 282.4533333333334L144.2133333333333 259.8400000000001L166.8266666666667 237.2266666666667L144.2133333333333 214.6133333333333L166.8266666666667 192M256 149.3333333333334C206.2933333333333 149.3333333333334 164.0533333333334 118.1866666666667 146.9866666666667 74.6666666666667H365.0133333333333C347.9466666666666 118.1866666666667 305.7066666666667 149.3333333333334 256 149.3333333333334z" />
+    <glyph glyph-name="emoticon-devil"
+      unicode="&#xF1F4;"
+      horiz-adv-x="512" d=" M32 403.4133333333334C51.2 384 82.56 368.4266666666667 121.3866666666667 357.3333333333334C158.08 387.4133333333334 205.0133333333333 405.3333333333333 256 405.3333333333333C306.9866666666667 405.3333333333333 353.92 387.4133333333334 390.6133333333333 357.3333333333334C429.44 368.4266666666667 460.8 384 480 403.4133333333334C479.36 368.64 461.8666666666666 336.8533333333334 432.64 311.4666666666667C455.8933333333333 277.3333333333334 469.3333333333333 236.3733333333334 469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192C42.6666666666667 236.3733333333334 56.1066666666667 277.3333333333334 79.36 311.4666666666667C50.1333333333333 336.8533333333334 32.64 368.64 32 403.4133333333334M426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192M224 234.6666666666667C224 217.6 209.0666666666667 202.6666666666667 192 202.6666666666667S160 217.6 160 234.6666666666667V266.6666666666667L224 234.6666666666667M352 234.6666666666667C352 217.6 337.0666666666667 202.6666666666667 320 202.6666666666667S288 217.6 288 234.6666666666667L352 266.6666666666667V234.6666666666667M256 80.4266666666667C218.6666666666667 80.4266666666667 185.8133333333333 96 166.6133333333333 119.04L196.9066666666667 149.3333333333334C206.5066666666667 133.9733333333334 229.3333333333333 123.0933333333334 256 123.0933333333334S305.4933333333334 133.9733333333334 315.0933333333333 149.3333333333334L345.3866666666666 119.04C326.1866666666666 96 293.3333333333333 80.4266666666667 255.9999999999999 80.4266666666667z" />
+    <glyph glyph-name="emoticon-excited"
+      unicode="&#xF69B;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.0266666666667 405.3333333333333 42.6666666666667 309.9733333333334 42.6666666666667 192S138.0266666666667 -21.3333333333333 256 -21.3333333333333C373.76 -21.3333333333333 469.3333333333333 74.24 469.3333333333333 192C469.3333333333333 309.9733333333334 373.3333333333333 405.3333333333333 256 405.3333333333333M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M277.3333333333333 235.9466666666667L299.9466666666667 213.3333333333334L322.56 235.9466666666667L345.1733333333333 213.3333333333334L367.7866666666667 235.9466666666667L322.56 281.1733333333334L277.3333333333333 235.9466666666667M189.44 235.9466666666667L212.0533333333333 213.3333333333334L234.6666666666667 235.9466666666667L189.44 281.1733333333334L144.2133333333333 235.9466666666667L166.8266666666667 213.3333333333334L189.44 235.9466666666667M256 74.6666666666667C305.7066666666667 74.6666666666667 347.9466666666666 105.8133333333334 365.0133333333333 149.3333333333334H146.9866666666667C164.0533333333333 105.8133333333334 206.2933333333333 74.6666666666667 256 74.6666666666667z" />
+    <glyph glyph-name="emoticon-happy"
+      unicode="&#xF1F5;"
+      horiz-adv-x="512" d=" M426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M213.3333333333333 245.3333333333334C213.3333333333333 228.2666666666667 198.4 213.3333333333334 181.3333333333333 213.3333333333334S149.3333333333333 228.2666666666667 149.3333333333333 245.3333333333334S164.2666666666667 277.3333333333334 181.3333333333333 277.3333333333334S213.3333333333333 262.4000000000001 213.3333333333333 245.3333333333334M362.6666666666667 245.3333333333334C362.6666666666667 228.2666666666667 347.7333333333334 213.3333333333334 330.6666666666667 213.3333333333334S298.6666666666667 228.2666666666667 298.6666666666667 245.3333333333334S313.6 277.3333333333334 330.6666666666667 277.3333333333334S362.6666666666667 262.4000000000001 362.6666666666667 245.3333333333334M256 80.4266666666667C218.6666666666667 80.4266666666667 185.8133333333333 96 166.6133333333333 119.04L196.9066666666667 149.3333333333334C206.5066666666667 133.9733333333334 229.3333333333333 123.0933333333334 256 123.0933333333334S305.4933333333334 133.9733333333334 315.0933333333333 149.3333333333334L345.3866666666666 119.04C326.1866666666666 96 293.3333333333333 80.4266666666667 255.9999999999999 80.4266666666667z" />
+    <glyph glyph-name="emoticon-neutral"
+      unicode="&#xF1F6;"
+      horiz-adv-x="512" d=" M181.3333333333333 213.3333333333334C163.6266666666667 213.3333333333334 149.3333333333333 227.6266666666667 149.3333333333333 245.3333333333334S163.6266666666667 277.3333333333334 181.3333333333333 277.3333333333334S213.3333333333333 263.04 213.3333333333333 245.3333333333334S199.04 213.3333333333334 181.3333333333333 213.3333333333334M330.6666666666667 213.3333333333334C312.96 213.3333333333334 298.6666666666667 227.6266666666667 298.6666666666667 245.3333333333334S312.96 277.3333333333334 330.6666666666667 277.3333333333334S362.6666666666667 263.04 362.6666666666667 245.3333333333334S348.3733333333333 213.3333333333334 330.6666666666667 213.3333333333334M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333C138.0266666666667 -21.3333333333333 42.6666666666667 74.6666666666667 42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333M192 149.3333333333334H320C331.7333333333334 149.3333333333334 341.3333333333333 139.7333333333334 341.3333333333333 128S331.7333333333334 106.6666666666667 320 106.6666666666667H192C180.2666666666667 106.6666666666667 170.6666666666667 116.2666666666667 170.6666666666667 128S180.2666666666667 149.3333333333334 192 149.3333333333334z" />
+    <glyph glyph-name="emoticon-poop"
+      unicode="&#xF1F7;"
+      horiz-adv-x="512" d=" M242.3466666666667 405.3333333333333C237.8666666666666 405.3333333333333 231.8933333333333 402.7733333333333 225.4933333333334 398.5066666666667C213.3333333333333 390.4 188.8 364.8 179.2 339.2000000000001C171.9466666666667 320 171.7333333333334 302.5066666666667 174.72 289.4933333333334C162.7733333333333 287.36 154.0266666666667 283.52 150.6133333333333 282.0266666666667C139.7333333333333 277.3333333333334 116.6933333333333 256.8533333333334 114.56 225.0666666666667C113.92 213.9733333333334 115.4133333333333 202.6666666666667 118.8266666666667 192C104.7466666666666 187.9466666666667 96.64 182.8266666666667 96 182.6133333333334C89.1733333333333 180.0533333333334 77.8666666666667 172.16 74.6666666666666 167.8933333333334C67.2 159.36 62.2933333333333 149.3333333333334 59.52 138.6666666666667C53.3333333333333 115.4133333333334 55.4666666666667 88.96 66.7733333333333 67.6266666666667C72.96 55.6800000000001 81.4933333333333 42.6666666666667 90.88 33.4933333333333C121.6 1.92 174.5066666666667 -10.0266666666666 216.32 -16.8533333333333C267.3066666666666 -25.3866666666666 320.64 -22.4 368.2133333333333 -2.7733333333333C439.68 26.8800000000001 458.6666666666666 74.6666666666667 461.6533333333333 87.68C467.8399999999999 117.3333333333334 460.1599999999999 145.28 456.9599999999999 152.1066666666667C452.2666666666667 161.92 444.5866666666667 171.9466666666667 432 178.3466666666667C423.4666666666667 183.68 416 186.4533333333334 410.4533333333333 187.7333333333334C416 208 408.1066666666667 224 397.2266666666666 235.9466666666667C380.8 253.44 363.9466666666666 256 363.9466666666666 256C369.4933333333334 266.6666666666667 371.6266666666666 279.4666666666667 368.64 291.84C365.2266666666666 306.9866666666666 356.9066666666666 316.5866666666667 346.0266666666667 322.9866666666666C334.9333333333333 329.6 321.28 332.8 307.2 335.36C300.3733333333333 336.64 272 340.6933333333333 260.2666666666667 356.9066666666667C250.6666666666667 370.1333333333334 250.4533333333333 394.0266666666667 247.8933333333333 401.0666666666666C246.8266666666667 403.8399999999999 245.3333333333333 405.3333333333333 242.3466666666667 405.3333333333333M341.3333333333333 242.9866666666667C342.8266666666667 242.9866666666667 344.1066666666667 242.7733333333334 345.3866666666667 242.7733333333334C375.8933333333333 239.36 397.6533333333333 209.92 394.0266666666667 177.28C390.4 144.6400000000001 362.6666666666668 120.7466666666667 332.1600000000001 124.16C301.6533333333334 128 279.8933333333333 156.8 283.5200000000001 189.6533333333334C286.9333333333334 220.5866666666667 312.3200000000001 244.0533333333334 341.3333333333334 242.9866666666667M183.8933333333334 242.9866666666667C212.2666666666668 242.1333333333334 235.9466666666668 218.0266666666667 238.0800000000001 187.5200000000001C240.6400000000001 154.6666666666667 217.8133333333334 126.2933333333334 187.3066666666668 123.9466666666667H187.0933333333334C156.5866666666668 121.6 129.7066666666668 146.3466666666667 127.1466666666668 179.2000000000001C124.8000000000001 212.0533333333334 147.6266666666668 240.4266666666667 178.1333333333335 242.7733333333334C180.0533333333334 242.9866666666667 181.9733333333334 242.9866666666667 183.8933333333334 242.9866666666667M184.3200000000001 206.72C183.4666666666668 206.72 182.8266666666668 206.72 181.9733333333334 206.5066666666667C170.0266666666668 205.0133333333334 161.4933333333334 194.1333333333334 162.9866666666668 182.4C164.2666666666668 170.6666666666667 175.1466666666668 162.3466666666667 187.0933333333334 163.84C199.0400000000001 165.3333333333334 207.5733333333334 176.2133333333334 206.2933333333334 187.9466666666667C205.0133333333334 199.0400000000001 195.2000000000001 206.9333333333334 184.3200000000001 206.7200000000001M340.0533333333334 206.2933333333334C328.9600000000001 205.8666666666668 320.0000000000001 197.3333333333334 319.1466666666668 186.0266666666668C318.2933333333334 174.2933333333334 327.4666666666668 164.0533333333335 339.4133333333334 163.4133333333334C352.0000000000001 162.5600000000001 361.8133333333334 171.7333333333335 362.6666666666668 183.4666666666668C363.5200000000001 195.4133333333334 354.3466666666667 205.6533333333334 342.4000000000001 206.2933333333334H340.0533333333334M185.8133333333334 103.4666666666667C192.0000000000001 103.6800000000001 197.5466666666668 101.7600000000001 202.6666666666668 100.6933333333334C227.8400000000001 96.0000000000001 249.6000000000001 95.3600000000001 260.0533333333334 95.3600000000001C270.5066666666667 95.3600000000001 292.0533333333334 96.0000000000001 317.0133333333334 100.6933333333334C325.7600000000001 102.4 335.7866666666668 106.0266666666668 343.6800000000001 100.6933333333334C353.9200000000001 93.8666666666667 346.4533333333334 69.3333333333334 330.6666666666668 52.6933333333334C320.8533333333334 42.6666666666667 298.0266666666668 23.2533333333334 260.0533333333334 23.2533333333334S199.04 42.6666666666667 189.44 52.6933333333333C173.6533333333333 69.3333333333334 166.1866666666667 93.8666666666667 176.2133333333334 100.6933333333333C179.2000000000001 102.6133333333334 182.4 103.4666666666666 185.8133333333333 103.4666666666666z" />
+    <glyph glyph-name="emoticon-sad"
+      unicode="&#xF1F8;"
+      horiz-adv-x="512" d=" M426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M330.6666666666667 277.3333333333334C347.7333333333334 277.3333333333334 362.6666666666667 262.4000000000001 362.6666666666667 245.3333333333334S347.7333333333334 213.3333333333334 330.6666666666667 213.3333333333334S298.6666666666667 228.2666666666667 298.6666666666667 245.3333333333334S313.6 277.3333333333334 330.6666666666667 277.3333333333334M213.3333333333333 245.3333333333334C213.3333333333333 228.2666666666667 198.4 213.3333333333334 181.3333333333333 213.3333333333334S149.3333333333333 228.2666666666667 149.3333333333333 245.3333333333334S164.2666666666667 277.3333333333334 181.3333333333333 277.3333333333334S213.3333333333333 262.4000000000001 213.3333333333333 245.3333333333334M256 149.3333333333334C293.3333333333333 149.3333333333334 326.1866666666666 133.9733333333334 345.3866666666667 110.72L315.0933333333334 80.4266666666667C305.4933333333334 96 282.6666666666667 106.6666666666667 256 106.6666666666667S206.5066666666667 96 196.9066666666667 80.4266666666667L166.6133333333334 110.72C185.8133333333333 133.9733333333334 218.6666666666667 149.3333333333334 256 149.3333333333334z" />
+    <glyph glyph-name="emoticon-tongue"
+      unicode="&#xF1F9;"
+      horiz-adv-x="512" d=" M192 277.3333333333334C215.4666666666667 277.3333333333334 234.6666666666667 258.1333333333334 234.6666666666667 234.6666666666667C234.6666666666667 226.9866666666667 232.5333333333334 219.52 228.9066666666667 213.3333333333334C221.6533333333333 226.1333333333334 207.7866666666667 234.6666666666667 192 234.6666666666667S162.3466666666667 226.1333333333334 155.0933333333333 213.3333333333334C151.4666666666667 219.52 149.3333333333333 226.9866666666667 149.3333333333333 234.6666666666667C149.3333333333333 258.1333333333334 168.5333333333333 277.3333333333334 192 277.3333333333334M320 277.3333333333334C343.4666666666667 277.3333333333334 362.6666666666667 258.1333333333334 362.6666666666667 234.6666666666667C362.6666666666667 226.9866666666667 360.5333333333333 219.52 356.9066666666667 213.3333333333334C349.6533333333333 226.1333333333334 335.7866666666667 234.6666666666667 320 234.6666666666667S290.3466666666667 226.1333333333334 283.0933333333333 213.3333333333334C279.4666666666667 219.52 277.3333333333333 226.9866666666667 277.3333333333333 234.6666666666667C277.3333333333333 258.1333333333334 296.5333333333333 277.3333333333334 320 277.3333333333334M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333C138.0266666666667 -21.3333333333333 42.6666666666667 74.6666666666667 42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333M192 170.6666666666667H320C331.7333333333334 170.6666666666667 341.3333333333333 161.0666666666667 341.3333333333333 149.3333333333334S331.7333333333334 128 320 128C320 85.3333333333334 300.8 64 277.3333333333333 64S234.6666666666667 85.3333333333334 234.6666666666667 128H192C180.2666666666667 128 170.6666666666667 137.6 170.6666666666667 149.3333333333334S180.2666666666667 170.6666666666667 192 170.6666666666667z" />
+    <glyph glyph-name="engine"
+      unicode="&#xF1FA;"
+      horiz-adv-x="512" d=" M149.3333333333333 362.6666666666667V320H213.3333333333333V277.3333333333334H149.3333333333333L106.6666666666667 234.6666666666667V170.6666666666667H64V234.6666666666667H21.3333333333333V64H64V128H106.6666666666667V64H170.6666666666667L213.3333333333333 21.3333333333334H384V106.6666666666667H426.6666666666667V42.6666666666667H490.6666666666666V256H426.6666666666667V192H384V277.3333333333334H256V320H320V362.6666666666667H149.3333333333333z" />
+    <glyph glyph-name="engine-off"
+      unicode="&#xFA45;"
+      horiz-adv-x="512" d=" M80.64 394.6666666666667L458.6666666666666 16.64L431.5733333333333 -10.6666666666666L384 36.9066666666667V21.3333333333334H213.3333333333333L170.6666666666667 64H106.6666666666667V128H64V64H21.3333333333333V234.6666666666667H64V170.6666666666667H106.6666666666667V234.6666666666667L146.56 274.3466666666667L53.3333333333333 367.5733333333333L80.64 394.6666666666667M426.6666666666667 256V192H384V277.3333333333334H256V320H320V362.6666666666667H166.8266666666667L486.8266666666667 42.6666666666667H490.6666666666666V256H426.6666666666667z" />
+    <glyph glyph-name="engine-off-outline"
+      unicode="&#xFA46;"
+      horiz-adv-x="512" d=" M53.3333333333333 367.5733333333333L146.56 274.3466666666667L106.6666666666667 234.6666666666667V170.6666666666667H64V234.6666666666667H21.3333333333333V64H64V128H106.6666666666667V64H170.6666666666667L213.3333333333333 21.3333333333334H384V36.9066666666667L452.9066666666666 -32L480 -4.6933333333333L80.64 394.6666666666667L53.3333333333333 367.5733333333333M341.3333333333333 64H234.6666666666667L192 106.6666666666667H149.3333333333333V213.3333333333334L170.6666666666667 234.6666666666667H186.24L341.3333333333333 79.5733333333334V64M490.6666666666666 256V42.6666666666667H486.8266666666667L341.3333333333333 188.16V234.6666666666667H294.8266666666667L166.8266666666667 362.6666666666667H320V320H256V277.3333333333334H384V192H426.6666666666667V256H490.6666666666666z" />
+    <glyph glyph-name="engine-outline"
+      unicode="&#xF1FB;"
+      horiz-adv-x="512" d=" M170.6666666666667 234.6666666666667H341.3333333333333V64H234.6666666666667L192 106.6666666666667H149.3333333333333V213.3333333333334M149.3333333333333 362.6666666666667V320H213.3333333333333V277.3333333333334H149.3333333333333L106.6666666666667 234.6666666666667V170.6666666666667H64V234.6666666666667H21.3333333333333V64H64V128H106.6666666666667V64H170.6666666666667L213.3333333333333 21.3333333333334H384V106.6666666666667H426.6666666666667V42.6666666666667H490.6666666666666V256H426.6666666666667V192H384V277.3333333333334H256V320H320V362.6666666666667H149.3333333333333z" />
+    <glyph glyph-name="equal"
+      unicode="&#xF1FC;"
+      horiz-adv-x="512" d=" M405.3333333333333 234.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333V234.6666666666667M405.3333333333333 106.6666666666667H106.6666666666667V149.3333333333334H405.3333333333333V106.6666666666667z" />
+    <glyph glyph-name="equal-box"
+      unicode="&#xF1FD;"
+      horiz-adv-x="512" d=" M362.6666666666667 106.6666666666667V149.3333333333334H149.3333333333333V106.6666666666667H362.6666666666667M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384H405.3333333333333M362.6666666666667 234.6666666666667V277.3333333333334H149.3333333333333V234.6666666666667H362.6666666666667z" />
+    <glyph glyph-name="eraser"
+      unicode="&#xF1FE;"
+      horiz-adv-x="512" d=" M346.4533333333333 372.0533333333334L452.0533333333333 266.6666666666667C468.6933333333333 249.8133333333334 468.6933333333333 222.9333333333333 452.0533333333333 206.08L256 10.0266666666666C222.72 -23.2533333333333 168.7466666666667 -23.2533333333333 135.2533333333333 10.0266666666666L59.9466666666667 85.3333333333334C43.3066666666667 102.1866666666667 43.3066666666667 129.0666666666667 59.9466666666667 145.92L286.08 372.0533333333334C302.9333333333333 388.6933333333334 329.8133333333334 388.6933333333334 346.4533333333334 372.0533333333334M90.0266666666667 115.6266666666667L165.5466666666667 40.3200000000001C182.1866666666667 23.4666666666667 209.0666666666667 23.4666666666667 225.92 40.3200000000001L301.2266666666667 115.6266666666667L195.6266666666666 221.2266666666667L90.0266666666666 115.6266666666667z" />
+    <glyph glyph-name="eraser-variant"
+      unicode="&#xF642;"
+      horiz-adv-x="512" d=" M322.9866666666667 384C312.1066666666667 384 301.2266666666667 379.7333333333334 292.9066666666667 371.4133333333334L55.2533333333333 133.76C38.6133333333333 117.3333333333334 38.6133333333333 90.24 55.2533333333333 73.3866666666667L107.3066666666667 21.3333333333334H270.7200000000001L456.7466666666667 207.5733333333334C473.6 224 473.6 251.0933333333334 456.7466666666667 267.9466666666667L353.2800000000001 371.4133333333334C344.9600000000001 379.7333333333334 333.8666666666667 384 322.9866666666667 384M362.6666666666667 64L320 21.3333333333334H469.3333333333333V64" />
+    <glyph glyph-name="escalator"
+      unicode="&#xF1FF;"
+      horiz-adv-x="512" d=" M426.6666666666667 277.3333333333334H404.2666666666667L148.2666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64S61.8666666666667 106.6666666666667 85.3333333333333 106.6666666666667H112.8533333333333L149.3333333333333 143.1466666666667V234.6666666666667C149.3333333333333 246.4000000000001 158.9333333333333 256 170.6666666666667 256H192C203.7333333333334 256 213.3333333333333 246.4000000000001 213.3333333333333 234.6666666666667V207.1466666666667L368.8533333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320S450.1333333333334 277.3333333333334 426.6666666666667 277.3333333333334M181.3333333333333 341.3333333333334C199.04 341.3333333333334 213.3333333333333 327.04 213.3333333333333 309.3333333333334S199.04 277.3333333333334 181.3333333333333 277.3333333333334S149.3333333333333 291.6266666666667 149.3333333333333 309.3333333333334S163.6266666666667 341.3333333333334 181.3333333333333 341.3333333333334z" />
+    <glyph glyph-name="et"
+      unicode="&#xFAB2;"
+      horiz-adv-x="512" d=" M490.6666666666666 260.6933333333334L463.1466666666666 293.9733333333334C457.6 289.7066666666667 437.9733333333334 277.3333333333334 421.76 277.3333333333334C410.88 277.3333333333334 390.4 282.6666666666667 372.2666666666667 287.36C349.6533333333333 293.12 328.32 298.6666666666667 311.4666666666667 298.6666666666667C298.6666666666667 298.6666666666667 286.5066666666667 295.4666666666667 275.84 291.2000000000001C269.2266666666667 331.7333333333334 234.6666666666667 362.6666666666667 192 362.6666666666667C97.7066666666667 362.6666666666667 42.6666666666667 286.2933333333334 42.6666666666667 192S119.04 42.6666666666667 213.3333333333333 42.6666666666667C257.28 42.6666666666667 297.1733333333333 54.8266666666667 327.2533333333334 77.0133333333333L320 -6.1866666666666L362.6666666666667 -10.0266666666666L384 240.2133333333334C398.08 237.0133333333334 411.0933333333333 234.6666666666667 421.76 234.6666666666667C456.1066666666666 234.6666666666667 487.2533333333333 257.9200000000001 490.6666666666666 260.6933333333334M192 320C215.4666666666667 320 234.6666666666667 300.8 234.6666666666667 277.3333333333334S215.4666666666667 234.6666666666667 192 234.6666666666667H90.24C102.4 284.3733333333334 136.32 320 192 320M213.3333333333333 85.3333333333334C142.72 85.3333333333334 85.3333333333333 121.3866666666667 85.3333333333333 192H192C226.1333333333334 192 252.3733333333334 209.7066666666667 266.6666666666667 236.5866666666667C272.2133333333333 240.8533333333333 295.4666666666667 256 311.4666666666667 256C318.72 256 330.6666666666667 253.6533333333334 342.4 250.6666666666667L333.8666666666667 151.68C316.16 107.7333333333334 268.8 85.3333333333334 213.3333333333333 85.3333333333334z" />
+    <glyph glyph-name="ethereum"
+      unicode="&#xF869;"
+      horiz-adv-x="512" d=" M256 410.6666666666667L122.6666666666667 186.6666666666667L256 106.6666666666667L389.3333333333333 186.6666666666667L256 410.6666666666667M122.6666666666667 160L256 -26.6666666666666L389.3333333333333 160L256 80L122.6666666666667 160z" />
+    <glyph glyph-name="ethernet"
+      unicode="&#xF200;"
+      horiz-adv-x="512" d=" M149.3333333333333 128H192V64H234.6666666666667V128H277.3333333333333V64H320V128H362.6666666666667V64H405.3333333333333V256H320V320H192V256H106.6666666666667V64H149.3333333333333V128M93.44 384H418.7733333333333C446.7200000000001 384 469.3333333333333 361.3866666666667 469.3333333333333 333.2266666666667V29.2266666666667C469.3333333333333 1.2800000000001 446.7200000000001 -21.3333333333333 418.7733333333333 -21.3333333333333H93.44C65.28 -21.3333333333333 42.6666666666667 1.28 42.6666666666667 29.2266666666667V333.2266666666667C42.6666666666667 361.3866666666667 65.28 384 93.44 384z" />
+    <glyph glyph-name="ethernet-cable"
+      unicode="&#xF201;"
+      horiz-adv-x="512" d=" M234.6666666666667 384V298.6666666666667H277.3333333333333V384H234.6666666666667M170.6666666666667 362.6666666666667V213.3333333333334H341.3333333333333V362.6666666666667H298.6666666666667V277.3333333333334H213.3333333333333V362.6666666666667H170.6666666666667M213.3333333333333 192V-21.3333333333333H298.6666666666667V192H213.3333333333333z" />
+    <glyph glyph-name="ethernet-cable-off"
+      unicode="&#xF202;"
+      horiz-adv-x="512" d=" M234.6666666666667 384H277.3333333333333V298.6666666666667H234.6666666666667V384M170.6666666666667 362.6666666666667H213.3333333333333V277.3333333333334H298.6666666666667V362.6666666666667H341.3333333333333V213.3333333333334H273.4933333333334L170.6666666666667 316.1600000000001V362.6666666666667M426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L298.6666666666667 79.5733333333334V-21.3333333333333H213.3333333333333V164.9066666666667L42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334z" />
+    <glyph glyph-name="etsy"
+      unicode="&#xF203;"
+      horiz-adv-x="512" d=" M143.36 4.6933333333333C175.5733333333333 6.1866666666667 214.8266666666667 4.6933333333333 253.2266666666667 4.6933333333333C292.6933333333334 4.6933333333333 333.2266666666667 7.2533333333333 365.2266666666667 4.6933333333333C378.0266666666667 3.6266666666667 389.9733333333334 -4.0533333333333 400.4266666666666 2.7733333333333C408.7466666666667 13.2266666666666 402.56 27.52 404.48 41.6C407.8933333333333 68.6933333333333 432.64 100.9066666666667 396.5866666666667 107.7333333333334C381.2266666666667 93.6533333333334 391.4666666666667 80.4266666666667 382.9333333333333 62.9333333333333C372.2666666666667 42.0266666666666 334.5066666666667 34.7733333333333 298.6666666666667 32C267.52 29.44 213.3333333333333 26.4533333333333 202.6666666666667 47.5733333333334C192.8533333333333 65.28 198.1866666666667 92.8000000000001 198.1866666666667 115.6266666666667C198.1866666666667 141.2266666666667 195.4133333333333 165.9733333333334 202.6666666666667 185.6C241.4933333333334 182.8266666666667 292.2666666666667 198.6133333333333 320 181.3333333333334C338.56 170.6666666666667 327.8933333333333 148.0533333333334 349.44 140.8C364.16 144.8533333333334 356.2666666666667 163.84 355.4133333333333 181.3333333333334C354.7733333333333 193.28 354.7733333333333 209.28 355.4133333333333 222.5066666666667C356.0533333333334 240.4266666666667 362.6666666666667 261.12 343.4666666666667 261.5466666666667C328.32 249.6 339.8400000000001 229.76 323.8400000000001 218.6666666666667C318.9333333333334 215.04 307.8400000000001 213.3333333333334 300.3733333333334 213.3333333333334C270.9333333333334 209.7066666666667 224.8533333333334 212.2666666666667 200.1066666666667 216.7466666666667C196.9066666666667 252.5866666666667 197.12 301.4400000000001 200.1066666666667 337.2800000000001C213.3333333333334 350.5066666666667 244.2666666666667 351.1466666666667 264.9600000000001 350.9333333333334C301.4400000000001 350.9333333333334 358.1866666666667 347.7333333333334 369.0666666666667 329.6C375.04 320 370.3466666666667 298.6666666666667 380.8 296.5333333333334C402.1333333333334 291.6266666666667 391.6800000000001 329.6 392.7466666666667 347.0933333333334C393.3866666666667 360.3200000000001 399.1466666666667 368.64 396.5866666666667 378.24C389.76 387.6266666666667 379.52 382.9333333333334 373.3333333333333 382.0800000000001C306.1333333333334 373.3333333333334 204.8 378.24 133.5466666666667 378.24C125.0133333333333 378.24 110.08 382.5066666666667 104.1066666666667 372.48C99.84 349.8666666666667 130.56 359.2533333333334 141.2266666666667 347.0933333333334C144.8533333333333 343.2533333333334 149.9733333333333 325.76 151.04 314.0266666666667C154.24 282.88 151.04 235.3066666666667 151.04 189.4400000000001C151.04 141.2266666666667 154.88 92.3733333333334 151.04 62.9333333333334C149.3333333333333 52.6933333333334 143.5733333333333 36.2666666666668 141.2266666666667 33.9200000000001C128 20.4800000000001 92.5866666666667 35.2 96 6.6133333333334C108.5866666666667 -1.7066666666666 126.5066666666667 3.8400000000001 143.36 4.6933333333334z" />
+    <glyph glyph-name="ev-station"
+      unicode="&#xF5F1;"
+      horiz-adv-x="512" d=" M421.76 293.76L421.9733333333334 293.9733333333334L342.6133333333334 373.3333333333333L320 350.7200000000001L365.0133333333333 305.7066666666667C344.9599999999999 298.0266666666667 330.6666666666667 278.8266666666667 330.6666666666667 256C330.6666666666667 226.5600000000001 354.56 202.6666666666667 384 202.6666666666667C391.68 202.6666666666667 398.7200000000001 204.3733333333333 405.3333333333333 207.1466666666667V53.3333333333334C405.3333333333333 41.6 395.7333333333334 32 384 32S362.6666666666667 41.6 362.6666666666667 53.3333333333334V149.3333333333334C362.6666666666667 172.8 343.4666666666667 192 320 192H298.6666666666667V341.3333333333334C298.6666666666667 364.8 279.4666666666667 384 256 384H128C104.5333333333333 384 85.3333333333333 364.8 85.3333333333333 341.3333333333334V0H298.6666666666667V160H330.6666666666667V53.3333333333334C330.6666666666667 23.8933333333334 354.56 0 384 0S437.3333333333333 23.8933333333334 437.3333333333333 53.3333333333334V256C437.3333333333333 270.7200000000001 431.36 284.1600000000001 421.76 293.76M384 234.6666666666667C372.2666666666667 234.6666666666667 362.6666666666667 244.2666666666667 362.6666666666667 256S372.2666666666667 277.3333333333334 384 277.3333333333334S405.3333333333333 267.7333333333334 405.3333333333333 256S395.7333333333334 234.6666666666667 384 234.6666666666667M170.6666666666667 64V160H128L213.3333333333333 320V213.3333333333334H256L170.6666666666667 64z" />
+    <glyph glyph-name="eventbrite"
+      unicode="&#xF7C6;"
+      horiz-adv-x="512" d=" M256 74.6666666666667C216.5333333333333 74.6666666666667 179.6266666666667 94.72 158.08 128L371.4133333333333 176L471.04 197.3333333333334C470.3999999999999 227.84 463.1466666666666 257.7066666666667 449.7066666666666 285.0133333333333C398.08 392.32 269.2266666666667 437.3333333333333 161.7066666666667 385.7066666666667C54.4 334.0800000000001 9.3866666666667 205.2266666666667 61.0133333333333 97.92C112.8533333333333 -9.3866666666667 241.7066666666667 -54.6133333333333 349.0133333333333 -2.9866666666667C394.6666666666667 19.4133333333334 432 57.3866666666667 452.6933333333333 104.3200000000001L354.3466666666667 128C332.8 94.5066666666667 295.68 74.6666666666667 256 74.6666666666667M256 309.3333333333334C293.5466666666666 309.3333333333334 328.7466666666667 291.4133333333334 350.7200000000001 260.9066666666667L140.16 209.28C148.48 266.6666666666667 197.9733333333333 309.3333333333334 256 309.3333333333334z" />
+    <glyph glyph-name="evernote"
+      unicode="&#xF204;"
+      horiz-adv-x="512" d=" M321.92 199.8933333333333S325.9733333333333 227.2 341.3333333333333 227.2C357.5466666666667 227.2 379.3066666666667 190.72 379.3066666666667 190.72S329.8133333333334 199.8933333333333 321.92 199.8933333333333M405.3333333333333 347.9466666666667C397.6533333333333 360.7466666666667 359.04 375.2533333333334 338.9866666666667 375.2533333333334H288S270.9333333333333 405.3333333333333 232.1066666666667 405.3333333333333C193.0666666666667 405.3333333333333 195.6266666666667 388.0533333333334 195.6266666666667 373.3333333333334V313.1733333333334L177.92 294.6133333333334H96S73.3866666666667 279.2533333333334 73.3866666666667 246.6133333333333C73.3866666666667 213.3333333333333 83.6266666666667 99.2 152.1066666666667 88.5333333333333C233.1733333333333 76.16 247.04 113.7066666666667 247.04 118.1866666666667C247.04 137.3866666666667 247.4666666666667 166.1866666666667 247.4666666666667 166.1866666666667S271.1466666666667 120.96 306.9866666666667 120.96S363.52 100.2666666666667 363.52 79.1466666666667V39.8933333333333S362.6666666666667 15.36 341.3333333333333 15.36H296.32S281.6 26.88 281.6 42.6666666666667C281.6 58.6666666666667 288.64 62.9333333333333 297.1733333333334 62.9333333333333C305.4933333333334 62.9333333333333 312.5333333333334 62.08 312.5333333333334 62.08V95.36S244.6933333333334 96 244.6933333333334 43.9466666666667C244.6933333333334 -7.8933333333333 280.1066666666667 -21.3333333333333 308.48 -21.3333333333333H354.7733333333334S438.6133333333334 -10.6666666666666 438.6133333333334 154.6666666666667S412.3733333333333 335.36 405.3333333333333 347.9466666666667M160 313.3866666666667H90.88L177.4933333333334 400.64V330.6666666666667L160 313.3866666666667z" />
+    <glyph glyph-name="exclamation"
+      unicode="&#xF205;"
+      horiz-adv-x="512" d=" M234.6666666666667 352H277.3333333333333V117.3333333333334H234.6666666666667V352M277.3333333333333 74.6666666666667V32H234.6666666666667V74.6666666666667H277.3333333333333z" />
+    <glyph glyph-name="exit-run"
+      unicode="&#xFA47;"
+      horiz-adv-x="512" d=" M284.5866666666667 273.7066666666667C264.7466666666667 273.7066666666667 248.5333333333334 290.1333333333334 248.5333333333334 309.9733333333334C248.5333333333334 329.8133333333334 264.7466666666667 346.0266666666667 284.5866666666667 346.0266666666667C304.64 346.0266666666667 320.8533333333333 329.8133333333334 320.8533333333333 309.9733333333334C320.8533333333333 290.1333333333334 304.64 273.7066666666667 284.5866666666667 273.7066666666667M219.7333333333334 22.8266666666667L93.2266666666667 48L100.48 84.2666666666667L189.0133333333334 66.1333333333333L217.8133333333333 212.48L185.3866666666667 199.68V138.6666666666666H149.3333333333333V223.1466666666666L243.2 263.04L257.4933333333334 264.7466666666667C270.2933333333333 264.7466666666667 280.96 257.4933333333334 288 246.6133333333333L306.3466666666667 217.8133333333333C320.8533333333333 192 349.6533333333333 174.5066666666667 384 174.5066666666667V138.6666666666667C344.32 138.6666666666667 308.0533333333333 156.3733333333333 284.5866666666667 183.4666666666667L273.92 129.28L311.68 93.2266666666666V-42.6666666666666H275.6266666666667V66.1333333333334L237.6533333333334 102.1866666666667L219.7333333333334 22.8266666666668M448 -42.6666666666666H405.3333333333333V384H128V104.3200000000001L85.3333333333333 113.28V426.6666666666667H448V-42.6666666666666M128 -42.6666666666666H85.3333333333333V26.0266666666666L128 17.0666666666666V-42.6666666666666z" />
+    <glyph glyph-name="exit-to-app"
+      unicode="&#xF206;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V256H106.6666666666667V341.3333333333334H405.3333333333333V42.6666666666667H106.6666666666667V128H64V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M215.04 115.6266666666667L245.3333333333333 85.3333333333334L352 192L245.3333333333333 298.6666666666667L215.04 268.5866666666667L270.2933333333333 213.3333333333334H64V170.6666666666667H270.2933333333333L215.04 115.6266666666667z" />
+    <glyph glyph-name="expand-all"
+      unicode="&#xFAB3;"
+      horiz-adv-x="512" d=" M384 277.3333333333334H170.6666666666667V64H128V277.3333333333334C128 300.8 147.2 320 170.6666666666667 320H384V277.3333333333334M298.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V149.3333333333334H85.3333333333333V362.6666666666667H298.6666666666667V405.3333333333333M469.3333333333333 192V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H256C232.5333333333334 -21.3333333333333 213.3333333333333 -2.1333333333333 213.3333333333333 21.3333333333334V192C213.3333333333333 215.4666666666667 232.5333333333334 234.6666666666667 256 234.6666666666667H426.6666666666667C450.1333333333334 234.6666666666667 469.3333333333333 215.4666666666667 469.3333333333333 192M426.6666666666667 128H362.6666666666667V192H320V128H256V85.3333333333334H320V21.3333333333334H362.6666666666667V85.3333333333334H426.6666666666667V128z" />
+    <glyph glyph-name="expand-all-outline"
+      unicode="&#xFAB4;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V149.3333333333334H85.3333333333333V362.6666666666667H298.6666666666667V405.3333333333333H85.3333333333333M170.6666666666667 320C147.2 320 128 300.8 128 277.3333333333334V64H170.6666666666667V277.3333333333334H384V320H170.6666666666667M426.6666666666667 192V21.3333333333334H256V192H426.6666666666667M426.6666666666667 234.6666666666667H256C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192V21.3333333333334C213.3333333333333 -2.1333333333333 232.5333333333334 -21.3333333333333 256 -21.3333333333333H426.6666666666667C450.1333333333334 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V192C469.3333333333333 215.4666666666667 450.1333333333334 234.6666666666667 426.6666666666667 234.6666666666667M405.3333333333333 85.3333333333334H362.6666666666667V42.6666666666667H320V85.3333333333334H277.3333333333333V128H320V170.6666666666667H362.6666666666667V128H405.3333333333333V85.3333333333334z" />
+    <glyph glyph-name="exponent"
+      unicode="&#xF962;"
+      horiz-adv-x="512" d=" M328.1066666666667 384L379.0933333333333 261.3333333333334C374.4 241.4933333333334 368.4266666666666 227.84 362.6666666666667 219.7333333333334C355.6266666666667 209.4933333333334 350.7200000000001 208 345.3866666666667 208V176C361.3866666666667 176 378.4533333333334 184.5333333333334 389.12 201.3866666666667C423.8933333333333 257.2800000000001 469.3333333333333 384 469.3333333333333 384H434.7733333333333L398.7199999999999 297.6L362.6666666666667 384H328.1066666666667M72.96 264.7466666666667L42.6666666666667 234.6666666666667L144.8533333333333 132.48L42.6666666666667 30.08L72.7466666666667 0L175.1466666666667 102.1866666666667L277.3333333333333 0L307.4133333333333 30.08L205.2266666666667 132.48L307.4133333333333 234.6666666666667L277.3333333333333 264.7466666666667L175.1466666666667 162.5600000000001L72.7466666666667 264.7466666666667H72.96z" />
+    <glyph glyph-name="exponent-box"
+      unicode="&#xF963;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667M293.5466666666666 320H328.32L352 264.5333333333334L375.2533333333334 320H410.4533333333333S373.3333333333333 222.5066666666667 351.1466666666666 185.1733333333334C343.04 173.0133333333333 327.4666666666666 164.9066666666667 309.3333333333333 165.3333333333334V197.3333333333334C319.1466666666666 197.12 325.3333333333333 202.6666666666667 330.6666666666666 210.56C333.0133333333332 213.3333333333334 334.5066666666666 217.6 335.7866666666666 221.0133333333333L293.5466666666666 320M136.7466666666667 243.4133333333334L196.48 183.8933333333334L256 243.4133333333334L286.08 213.3333333333334L226.56 153.8133333333334L286.08 94.08L256 64L196.48 123.52L136.7466666666667 64L106.6666666666667 94.08L166.1866666666667 153.8133333333334L106.6666666666667 213.3333333333334L136.7466666666667 243.4133333333334z" />
+    <glyph glyph-name="export"
+      unicode="&#xF207;"
+      horiz-adv-x="512" d=" M490.6666666666666 192L405.3333333333333 277.3333333333334V213.3333333333334H213.3333333333333V170.6666666666667H405.3333333333333V106.6666666666667M21.3333333333333 64V320C21.3333333333333 343.68 40.5333333333333 362.6666666666667 64 362.6666666666667H320C343.4666666666667 362.6666666666667 362.6666666666667 343.4666666666667 362.6666666666667 320V256H320V320H64V64H320V128H362.6666666666667V64C362.6666666666667 40.5333333333333 343.4666666666667 21.3333333333334 320 21.3333333333334H64C40.5333333333333 21.3333333333334 21.3333333333333 40.5333333333333 21.3333333333333 64z" />
+    <glyph glyph-name="export-variant"
+      unicode="&#xFB6F;"
+      horiz-adv-x="512" d=" M256 426.6666666666667L170.6666666666667 341.3333333333334H234.6666666666667V149.3333333333334H277.3333333333333V341.3333333333334H341.3333333333333M384 -42.6666666666666H128C104.32 -42.6666666666666 85.3333333333333 -23.4666666666667 85.3333333333333 0V256C85.3333333333333 279.4666666666667 104.5333333333333 298.6666666666667 128 298.6666666666667H192V256H128V0H384V256H320V298.6666666666667H384C407.4666666666667 298.6666666666667 426.6666666666667 279.4666666666667 426.6666666666667 256V0C426.6666666666667 -23.4666666666667 407.4666666666667 -42.6666666666666 384 -42.6666666666666z" />
+    <glyph glyph-name="eye"
+      unicode="&#xF208;"
+      horiz-adv-x="512" d=" M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256M256 85.3333333333334C197.12 85.3333333333334 149.3333333333333 133.12 149.3333333333333 192S197.12 298.6666666666667 256 298.6666666666667S362.6666666666667 250.88 362.6666666666667 192S314.88 85.3333333333334 256 85.3333333333334M256 352C149.3333333333333 352 58.24 285.6533333333333 21.3333333333333 192C58.24 98.3466666666667 149.3333333333333 32 256 32S453.76 98.3466666666667 490.6666666666666 192C453.76 285.6533333333333 362.6666666666667 352 256 352z" />
+    <glyph glyph-name="eye-circle"
+      unicode="&#xFB70;"
+      horiz-adv-x="512" d=" M256 245.3333333333334C226.56 245.3333333333334 202.6666666666667 221.44 202.6666666666667 192S226.56 138.6666666666667 256 138.6666666666667S309.3333333333333 162.5600000000001 309.3333333333333 192S285.44 245.3333333333334 256 245.3333333333334M256 170.6666666666667C244.2666666666667 170.6666666666667 234.6666666666667 180.2666666666667 234.6666666666667 192S244.2666666666667 213.3333333333334 256 213.3333333333334S277.3333333333333 203.7333333333334 277.3333333333333 192S267.7333333333334 170.6666666666667 256 170.6666666666667M256 245.3333333333334C226.56 245.3333333333334 202.6666666666667 221.44 202.6666666666667 192S226.56 138.6666666666667 256 138.6666666666667S309.3333333333333 162.5600000000001 309.3333333333333 192S285.44 245.3333333333334 256 245.3333333333334M256 170.6666666666667C244.2666666666667 170.6666666666667 234.6666666666667 180.2666666666667 234.6666666666667 192S244.2666666666667 213.3333333333334 256 213.3333333333334S277.3333333333333 203.7333333333334 277.3333333333333 192S267.7333333333334 170.6666666666667 256 170.6666666666667M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 106.6666666666667C199.8933333333334 106.6666666666667 149.3333333333333 140.16 128 192C157.44 262.6133333333334 238.7200000000001 296.1066666666667 309.3333333333333 266.6666666666667C343.04 252.5866666666667 369.92 225.7066666666667 384 192C362.6666666666667 140.16 312.1066666666667 106.6666666666667 256 106.6666666666667M256 245.3333333333334C226.56 245.3333333333334 202.6666666666667 221.44 202.6666666666667 192S226.56 138.6666666666667 256 138.6666666666667S309.3333333333333 162.5600000000001 309.3333333333333 192S285.44 245.3333333333334 256 245.3333333333334M256 170.6666666666667C244.2666666666667 170.6666666666667 234.6666666666667 180.2666666666667 234.6666666666667 192S244.2666666666667 213.3333333333334 256 213.3333333333334S277.3333333333333 203.7333333333334 277.3333333333333 192S267.7333333333334 170.6666666666667 256 170.6666666666667z" />
+    <glyph glyph-name="eye-circle-outline"
+      unicode="&#xFB71;"
+      horiz-adv-x="512" d=" M256 -21.3333333333333C138.24 -21.3333333333333 42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334M256 213.3333333333334C267.7333333333334 213.3333333333334 277.3333333333333 203.7333333333334 277.3333333333333 192S267.7333333333334 170.6666666666667 256 170.6666666666667S234.6666666666667 180.2666666666667 234.6666666666667 192S244.2666666666667 213.3333333333334 256 213.3333333333334M256 277.3333333333334C312.1066666666667 277.3333333333334 362.6666666666667 243.84 384 192C354.56 121.3866666666667 273.28 87.8933333333334 202.6666666666667 117.3333333333334C168.96 131.4133333333334 142.08 158.2933333333334 128 192C149.3333333333333 243.84 199.8933333333334 277.3333333333334 256 277.3333333333334M256 245.3333333333334C226.56 245.3333333333334 202.6666666666667 221.44 202.6666666666667 192S226.56 138.6666666666667 256 138.6666666666667S309.3333333333333 162.5600000000001 309.3333333333333 192S285.44 245.3333333333334 256 245.3333333333334" />
+    <glyph glyph-name="eye-off"
+      unicode="&#xF209;"
+      horiz-adv-x="512" d=" M252.3733333333334 256L320 188.5866666666667V192C320 227.4133333333334 291.4133333333333 256 256 256H252.3733333333334M160.64 238.9333333333334L193.7066666666667 205.8666666666667C192.64 201.3866666666666 192 196.9066666666667 192 192C192 156.5866666666667 220.5866666666667 128 256 128C260.6933333333334 128 265.3866666666667 128.64 269.8666666666667 129.7066666666667L302.9333333333334 96.64C288.64 89.6 272.8533333333334 85.3333333333333 256 85.3333333333333C197.12 85.3333333333333 149.3333333333333 133.12 149.3333333333333 192C149.3333333333333 208.8533333333333 153.6 224.6399999999999 160.64 238.9333333333333M42.6666666666667 356.9066666666667L91.3066666666666 308.2666666666667L100.9066666666667 298.6666666666667C65.7066666666667 270.9333333333334 37.9733333333333 234.6666666666667 21.3333333333333 192C58.24 98.3466666666667 149.3333333333333 32 256 32C289.0666666666667 32 320.64 38.4 349.44 49.92L358.6133333333333 40.96L420.9066666666667 -21.3333333333333L448 5.76L69.76 384M256 298.6666666666667C314.88 298.6666666666667 362.6666666666667 250.88 362.6666666666667 192C362.6666666666667 178.3466666666667 359.8933333333333 165.12 354.9866666666667 153.1733333333334L417.4933333333334 90.6666666666667C449.4933333333334 117.3333333333334 475.0933333333333 152.3200000000001 490.6666666666666 192C453.76 285.6533333333333 362.6666666666667 352 256 352C226.1333333333334 352 197.5466666666667 346.6666666666667 170.6666666666667 337.0666666666667L216.96 291.2000000000001C229.12 295.8933333333333 242.1333333333334 298.6666666666667 256 298.6666666666667z" />
+    <glyph glyph-name="eye-off-outline"
+      unicode="&#xF6D0;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L333.8666666666667 44.3733333333333C309.3333333333333 36.2666666666667 283.3066666666667 32 256 32C149.3333333333333 32 58.24 98.3466666666667 21.3333333333333 192C36.0533333333333 229.5466666666667 59.52 262.6133333333334 89.3866666666667 288.8533333333334L42.6666666666667 335.5733333333334M256 256C291.4133333333333 256 320 227.4133333333334 320 192C320 184.5333333333334 318.72 177.28 316.3733333333334 170.6666666666667L234.6666666666667 252.3733333333334C241.28 254.72 248.5333333333334 256 256 256M256 352C362.6666666666667 352 453.76 285.6533333333334 490.6666666666666 192C473.1733333333333 147.6266666666667 443.52 109.2266666666667 405.3333333333333 81.28L375.04 111.7866666666666C404.0533333333333 131.84 427.9466666666666 159.1466666666667 444.16 192C408.9600000000001 263.68 336.2133333333334 309.3333333333333 256 309.3333333333333C232.7466666666667 309.3333333333333 209.92 305.4933333333334 188.5866666666667 298.6666666666667L155.7333333333333 331.3066666666667C186.4533333333333 344.5333333333334 220.3733333333333 352 256 352M67.84 192C103.04 120.3200000000001 175.7866666666667 74.6666666666667 256 74.6666666666667C270.72 74.6666666666667 285.2266666666667 76.16 298.6666666666667 79.1466666666667L250.0266666666667 128C219.52 131.2000000000001 195.2 155.52 192 186.0266666666667L119.4666666666667 258.7733333333334C98.3466666666667 240.6400000000001 80.64 218.0266666666667 67.84 192z" />
+    <glyph glyph-name="eye-outline"
+      unicode="&#xF6CF;"
+      horiz-adv-x="512" d=" M256 256C291.4133333333333 256 320 227.4133333333334 320 192S291.4133333333333 128 256 128S192 156.5866666666667 192 192S220.5866666666667 256 256 256M256 352C362.6666666666667 352 453.76 285.6533333333334 490.6666666666666 192C453.76 98.3466666666667 362.6666666666667 32 256 32S58.24 98.3466666666667 21.3333333333333 192C58.24 285.6533333333333 149.3333333333333 352 256 352M67.84 192C103.04 120.3200000000001 175.7866666666667 74.6666666666667 256 74.6666666666667C336.2133333333333 74.6666666666667 408.9600000000001 120.3200000000001 444.16 192C408.9600000000001 263.68 336.2133333333334 309.3333333333334 256 309.3333333333334C175.7866666666667 309.3333333333334 103.04 263.68 67.84 192z" />
+    <glyph glyph-name="eye-plus"
+      unicode="&#xF86A;"
+      horiz-adv-x="512" d=" M256 352C149.3333333333333 352 58.24 285.6533333333333 21.3333333333333 192C58.24 98.3466666666667 149.3333333333333 32 256 32C263.68 32 271.36 32 279.04 33.0666666666667C277.9733333333333 39.8933333333334 277.3333333333333 46.5066666666667 277.3333333333333 53.3333333333334C277.3333333333333 65.28 279.04 77.2266666666667 282.4533333333333 88.7466666666667C273.7066666666667 86.6133333333334 264.96 85.3333333333334 256 85.3333333333334C197.12 85.3333333333334 149.3333333333333 133.12 149.3333333333333 192S197.12 298.6666666666667 256 298.6666666666667S362.6666666666667 250.88 362.6666666666667 192C362.6666666666667 185.8133333333334 362.0266666666667 179.4133333333334 360.9600000000001 173.2266666666667C375.04 178.56 390.1866666666667 181.3333333333334 405.3333333333333 181.3333333333334C430.2933333333334 181.3333333333334 454.6133333333333 174.0800000000001 475.52 160C481.28 170.6666666666667 486.4 181.3333333333334 490.6666666666666 192C453.76 285.6533333333333 362.6666666666667 352 256 352M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256M384 138.6666666666667V74.6666666666667H320V32H384V-32H426.6666666666667V32H490.6666666666666V74.6666666666667H426.6666666666667V138.6666666666667H384z" />
+    <glyph glyph-name="eye-plus-outline"
+      unicode="&#xF86B;"
+      horiz-adv-x="512" d=" M256 352C149.3333333333333 352 58.24 285.6533333333333 21.3333333333333 192C58.24 98.3466666666667 149.3333333333333 32 256 32C263.68 32 271.36 32 279.04 33.0666666666667C277.9733333333333 39.8933333333334 277.3333333333333 46.5066666666667 277.3333333333333 53.3333333333334C277.3333333333333 61.0133333333333 278.1866666666666 68.6933333333333 279.4666666666667 76.3733333333333C271.7866666666667 75.52 263.8933333333333 74.6666666666667 256 74.6666666666667C175.7866666666667 74.6666666666667 103.04 120.3200000000001 67.84 192C103.04 263.68 175.7866666666667 309.3333333333334 256 309.3333333333334C336.2133333333333 309.3333333333334 408.9600000000001 263.68 444.16 192C441.6 186.88 438.6133333333333 182.4 435.84 177.4933333333334C449.92 174.0800000000001 463.36 168.3200000000001 475.52 160C481.28 170.6666666666667 486.4 181.3333333333334 490.6666666666666 192C453.76 285.6533333333333 362.6666666666667 352 256 352M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256M384 138.6666666666667V74.6666666666667H320V32H384V-32H426.6666666666667V32H490.6666666666666V74.6666666666667H426.6666666666667V138.6666666666667H384z" />
+    <glyph glyph-name="eye-settings"
+      unicode="&#xF86C;"
+      horiz-adv-x="512" d=" M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256M256 85.3333333333334C197.12 85.3333333333334 149.3333333333333 133.12 149.3333333333333 192S197.12 298.6666666666667 256 298.6666666666667S362.6666666666667 250.88 362.6666666666667 192S314.88 85.3333333333334 256 85.3333333333334M256 352C152.32 352 59.3066666666667 288 21.3333333333333 192C72.32 62.2933333333334 218.6666666666667 -1.28 348.3733333333333 49.7066666666667C413.44 75.3066666666666 465.0666666666666 126.72 490.6666666666666 192C452.6933333333333 288 359.68 352 256 352M149.3333333333333 -21.3333333333333H192V-64H149.3333333333333V-21.3333333333333M234.6666666666667 -21.3333333333333H277.3333333333333V-64H234.6666666666667V-21.3333333333333M320 -21.3333333333333H362.6666666666667V-64H320V-21.3333333333333z" />
+    <glyph glyph-name="eye-settings-outline"
+      unicode="&#xF86D;"
+      horiz-adv-x="512" d=" M256 256C291.4133333333333 256 320 227.4133333333334 320 192S291.4133333333333 128 256 128S192 156.5866666666667 192 192S220.5866666666667 256 256 256M256 352C359.68 352 452.6933333333333 288 490.6666666666666 192C439.68 62.2933333333334 293.3333333333333 -1.28 163.6266666666667 49.7066666666667C98.56 75.3066666666667 46.9333333333333 126.72 21.3333333333333 192C59.3066666666667 288 152.32 352 256 352M67.84 192C118.6133333333334 88.1066666666667 244.2666666666667 45.0133333333333 348.16 96C389.9733333333334 116.48 423.68 150.1866666666667 444.16 192C393.3866666666667 295.8933333333333 267.7333333333334 338.9866666666667 163.84 288C122.0266666666667 267.52 88.32 233.8133333333334 67.84 192M192 -21.3333333333333H149.3333333333333V-64H192V-21.3333333333333M277.3333333333333 -21.3333333333333H234.6666666666667V-64H277.3333333333333V-21.3333333333333M362.6666666666667 -21.3333333333333H320V-64H362.6666666666667V-21.3333333333333z" />
+    <glyph glyph-name="eyedropper"
+      unicode="&#xF20A;"
+      horiz-adv-x="512" d=" M412.8 197.9733333333333L367.36 152.5333333333333L337.2800000000001 182.8266666666667L172.8 18.3466666666667L74.6666666666667 -21.3333333333333L42.6666666666667 10.6666666666667L82.3466666666667 108.8L246.8266666666667 273.28L216.5333333333333 303.36L261.9733333333334 348.8L412.8 197.9733333333333M357.5466666666667 384C382.5066666666667 408.96 423.04 408.96 448 384C472.96 359.04 472.96 318.5066666666667 448 293.5466666666667L407.04 252.5866666666667L316.5866666666666 343.04L357.5466666666667 384M118.6133333333333 84.6933333333333L96 32L148.6933333333333 54.6133333333333L307.2 213.3333333333334L277.3333333333333 243.2L118.6133333333333 84.6933333333333z" />
+    <glyph glyph-name="eyedropper-variant"
+      unicode="&#xF20B;"
+      horiz-adv-x="512" d=" M147.6266666666667 42.6666666666667L106.6666666666667 83.6266666666667L278.6133333333334 256L320 214.6133333333334M441.8133333333334 327.8933333333333L391.8933333333333 377.8133333333334C384 386.1333333333334 370.1333333333334 386.1333333333334 361.8133333333334 377.8133333333334L295.2533333333334 311.2533333333334L254.08 352L224 321.92L254.2933333333333 291.6266666666667L64 101.3333333333334V0H165.3333333333333L355.6266666666667 190.2933333333334L385.9200000000001 160L416.0000000000001 190.0800000000001L375.0400000000001 231.04L441.6000000000002 297.6C450.1333333333335 306.1333333333334 450.1333333333335 320 441.8133333333335 327.8933333333333z" />
+    <glyph glyph-name="face"
+      unicode="&#xF643;"
+      horiz-adv-x="512" d=" M192 197.3333333333334C177.28 197.3333333333334 165.3333333333333 185.3866666666667 165.3333333333333 170.6666666666667S177.28 144 192 144S218.6666666666667 155.9466666666667 218.6666666666667 170.6666666666667S206.72 197.3333333333334 192 197.3333333333334M320 197.3333333333334C305.28 197.3333333333334 293.3333333333333 185.3866666666667 293.3333333333333 170.6666666666667S305.28 144 320 144S346.6666666666667 155.9466666666667 346.6666666666667 170.6666666666667S334.72 197.3333333333334 320 197.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 21.3333333333334C161.92 21.3333333333334 85.3333333333333 97.92 85.3333333333333 192C85.3333333333333 198.1866666666667 85.3333333333333 204.3733333333333 86.4 210.3466666666667C136.7466666666667 232.7466666666667 176.64 273.92 197.5466666666667 324.9066666666667C236.16 270.2933333333334 299.7333333333334 234.6666666666667 371.6266666666667 234.6666666666667C388.2666666666667 234.6666666666667 404.2666666666667 236.5866666666667 419.6266666666667 240.2133333333334C424.1066666666667 225.0666666666667 426.6666666666667 208.8533333333333 426.6666666666667 192C426.6666666666667 97.92 350.08 21.3333333333334 256 21.3333333333334z" />
+    <glyph glyph-name="face-outline"
+      unicode="&#xFB72;"
+      horiz-adv-x="512" d=" M218.6666666666667 170.6666666666667C218.6666666666667 155.9466666666667 206.72 144 192 144S165.3333333333333 155.9466666666667 165.3333333333333 170.6666666666667S177.28 197.3333333333334 192 197.3333333333334S218.6666666666667 185.3866666666667 218.6666666666667 170.6666666666667M320 197.3333333333334C305.28 197.3333333333334 293.3333333333333 185.3866666666667 293.3333333333333 170.6666666666667S305.28 144 320 144S346.6666666666667 155.9466666666667 346.6666666666667 170.6666666666667S334.72 197.3333333333334 320 197.3333333333334M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M227.4133333333334 360.1066666666667C257.28 310.6133333333334 311.4666666666667 277.3333333333334 373.3333333333333 277.3333333333334C383.1466666666667 277.3333333333334 392.7466666666667 278.4 401.92 279.8933333333333C372.0533333333334 329.3866666666667 317.8666666666667 362.6666666666667 256 362.6666666666667C246.1866666666667 362.6666666666667 236.5866666666667 361.6 227.4133333333334 360.1066666666667M94.2933333333333 245.9733333333334C130.7733333333333 266.6666666666667 158.9333333333333 300.3733333333334 172.3733333333333 340.6933333333334C135.8933333333333 320 107.7333333333333 286.2933333333334 94.2933333333333 245.9733333333334M426.6666666666667 192C426.6666666666667 208.64 424.1066666666667 224.64 419.6266666666667 239.7866666666667C404.6933333333334 236.5866666666667 389.3333333333333 234.6666666666667 373.3333333333333 234.6666666666667C306.56 234.6666666666667 247.04 265.3866666666667 207.7866666666667 313.3866666666667C185.3866666666667 258.7733333333334 140.8 215.8933333333333 85.3333333333333 194.9866666666667V192C85.3333333333333 97.92 161.92 21.3333333333334 256 21.3333333333334S426.6666666666667 97.92 426.6666666666667 192z" />
+    <glyph glyph-name="face-profile"
+      unicode="&#xF644;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 269.0133333333333C289.4933333333334 247.4666666666667 328.96 234.6666666666667 371.6266666666667 234.6666666666667C388.2666666666667 234.6666666666667 404.2666666666667 236.5866666666667 419.6266666666667 240.2133333333334C424.1066666666667 225.0666666666667 426.6666666666667 208.8533333333333 426.6666666666667 192C426.6666666666667 97.92 350.08 21.3333333333334 256 21.3333333333334C192 21.3333333333334 136.32 56.7466666666667 106.6666666666667 109.0133333333333L144 149.3333333333334V170.6666666666667C144 185.3866666666667 155.9466666666667 197.3333333333334 170.6666666666667 197.3333333333334S197.3333333333333 185.3866666666667 197.3333333333333 170.6666666666667V149.3333333333334H256M341.3333333333333 197.3333333333334C326.6133333333334 197.3333333333334 314.6666666666667 185.3866666666667 314.6666666666667 170.6666666666667S326.6133333333334 144 341.3333333333333 144S368 155.9466666666667 368 170.6666666666667S356.0533333333334 197.3333333333334 341.3333333333333 197.3333333333334z" />
+    <glyph glyph-name="facebook"
+      unicode="&#xF20C;"
+      horiz-adv-x="512" d=" M362.6666666666667 405.3333333333333V320H320C305.28 320 298.6666666666667 302.7200000000001 298.6666666666667 288V234.6666666666667H362.6666666666667V149.3333333333334H298.6666666666667V-21.3333333333333H213.3333333333333V149.3333333333334H149.3333333333333V234.6666666666667H213.3333333333333V320C213.3333333333333 367.1466666666667 251.52 405.3333333333333 298.6666666666667 405.3333333333333H362.6666666666667z" />
+    <glyph glyph-name="facebook-box"
+      unicode="&#xF20D;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M384 341.3333333333334H330.6666666666667C289.4933333333334 341.3333333333334 256 307.8400000000001 256 266.6666666666667V213.3333333333334H213.3333333333333V149.3333333333334H256V0H320V149.3333333333334H384V213.3333333333334H320V256C320 267.7333333333334 329.6 277.3333333333334 341.3333333333333 277.3333333333334H384V341.3333333333334z" />
+    <glyph glyph-name="facebook-messenger"
+      unicode="&#xF20E;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.6666666666667 405.3333333333333 42.6666666666667 317.0133333333333 42.6666666666667 208C42.6666666666667 146.5600000000001 72.96 91.7333333333334 120.5333333333333 55.4666666666667L121.8133333333333 -21.3333333333333L195.4133333333333 18.7733333333333L194.7733333333334 18.9866666666667C214.1866666666667 13.6533333333334 234.6666666666667 10.6666666666667 256 10.6666666666667C373.3333333333333 10.6666666666667 469.3333333333333 98.9866666666667 469.3333333333333 208S373.3333333333333 405.3333333333333 256 405.3333333333333M277.9733333333333 140.5866666666667L224.8533333333333 196.6933333333333L117.3333333333333 140.5866666666667L232.1066666666667 260.6933333333334L287.1466666666667 208L390.6133333333333 260.6933333333334L277.9733333333333 140.5866666666667z" />
+    <glyph glyph-name="facebook-workplace"
+      unicode="&#xFB16;"
+      horiz-adv-x="512" d=" M420.0533333333334 104.1066666666667C414.2933333333334 97.4933333333333 404.2666666666667 87.04 388.0533333333334 87.04C365.4400000000001 87.04 357.9733333333334 103.4666666666666 351.1466666666667 120.7466666666667L317.0133333333333 204.5866666666667L282.88 120.7466666666667C277.3333333333334 106.6666666666667 270.9333333333334 87.04 245.9733333333334 87.04S214.8266666666667 106.6666666666667 208.8533333333334 120.7466666666667L151.68 261.9733333333334H199.8933333333334L245.9733333333334 145.7066666666667L280.32 230.4C285.6533333333333 243.84 292.0533333333334 264.1066666666667 317.0133333333333 264.1066666666667C341.3333333333333 264.1066666666667 348.16 243.84 353.7066666666667 230.4L391.04 138.6666666666667C410.0266666666667 167.68 418.1333333333334 202.6666666666667 413.4400000000001 237.0133333333333C408.7466666666668 271.36 391.8933333333333 302.9333333333334 365.6533333333333 325.76C339.6266666666667 348.5866666666667 305.92 361.3866666666667 271.36 361.3866666666667C235.3066666666667 361.6 200.32 350.2933333333334 170.6666666666667 329.3866666666667C142.08 308.2666666666667 120.32 278.6133333333334 109.2266666666667 244.48S98.1333333333333 173.44 109.2266666666667 139.3066666666667C120.32 105.1733333333334 142.08 75.52 171.3066666666667 54.6133333333333C200.5333333333334 33.4933333333333 235.52 22.4 271.36 22.6133333333333C286.9333333333334 22.6133333333333 302.2933333333334 24.7466666666667 317.2266666666667 29.0133333333333V-16C302.0800000000001 -19.4133333333333 286.7200000000001 -21.3333333333333 271.36 -21.3333333333333C226.3466666666667 -21.3333333333333 182.1866666666667 -7.2533333333333 145.4933333333334 19.2C108.8 45.6533333333333 81.4933333333334 82.9866666666667 67.6266666666667 125.8666666666667C53.3333333333334 168.7466666666667 53.3333333333334 215.04 67.4133333333334 258.1333333333334C81.4933333333334 301.0133333333333 108.8 338.3466666666667 145.4933333333334 364.8C181.9733333333333 391.2533333333334 226.1333333333334 405.3333333333333 271.36 405.3333333333333C374.6133333333334 405.3333333333333 458.6666666666666 321.2800000000001 458.6666666666666 217.8133333333334C458.6666666666666 176.8533333333334 445.0133333333333 136.7466666666667 420.0533333333334 104.1066666666667z" />
+    <glyph glyph-name="factory"
+      unicode="&#xF20F;"
+      horiz-adv-x="512" d=" M85.3333333333333 64V21.3333333333334H170.6666666666667V64H85.3333333333333M85.3333333333333 149.3333333333334V106.6666666666667H298.6666666666667V149.3333333333334H85.3333333333333M213.3333333333333 64V21.3333333333334H298.6666666666667V64H213.3333333333333M341.3333333333333 149.3333333333334V106.6666666666667H426.6666666666667V149.3333333333334H341.3333333333333M341.3333333333333 64V21.3333333333334H426.6666666666667V64H341.3333333333333M42.6666666666667 -21.3333333333333V277.3333333333334L149.3333333333333 192V277.3333333333334L256 192V277.3333333333334L362.6666666666667 192L384 405.3333333333333H448L469.3333333333333 192V-21.3333333333333H42.6666666666667z" />
+    <glyph glyph-name="fan"
+      unicode="&#xF210;"
+      horiz-adv-x="512" d=" M256 213.3333333333334C244.2666666666667 213.3333333333334 234.6666666666667 203.7333333333334 234.6666666666667 192S244.2666666666667 170.6666666666667 256 170.6666666666667S277.3333333333333 180.2666666666667 277.3333333333333 192S267.7333333333334 213.3333333333334 256 213.3333333333334M266.6666666666667 405.3333333333333C362.6666666666667 405.3333333333333 365.0133333333333 329.1733333333334 314.6666666666667 304C293.5466666666666 293.5466666666667 284.16 271.1466666666667 280.1066666666667 251.3066666666667C290.3466666666667 247.04 299.3066666666666 240.4266666666667 306.1333333333334 231.8933333333333C385.0666666666667 274.56 469.9733333333334 257.7066666666667 469.9733333333334 181.3333333333334C469.9733333333334 85.3333333333334 393.8133333333334 83.2 368.64 133.76C357.9733333333334 154.88 335.36 164.2666666666667 315.52 168.3200000000001C311.2533333333334 158.0800000000001 304.64 149.3333333333334 296.1066666666667 142.0800000000001C338.56 63.36 321.7066666666667 -21.3333333333333 245.3333333333333 -21.3333333333333C149.3333333333333 -21.3333333333333 147.4133333333333 55.04 197.76 80.2133333333333C218.6666666666667 90.6666666666666 228.0533333333333 112.8533333333333 232.32 132.48C221.8666666666667 136.7466666666666 212.6933333333333 143.5733333333333 205.8666666666667 152.1066666666666C127.1466666666667 109.8666666666667 42.6666666666667 126.5066666666667 42.6666666666667 202.6666666666667C42.6666666666667 298.6666666666667 118.6133333333333 301.0133333333333 143.7866666666667 250.4533333333334C154.4533333333333 229.3333333333334 176.8533333333334 220.16 196.6933333333333 216.1066666666667C200.7466666666667 226.3466666666667 207.5733333333333 235.3066666666667 216.32 242.1333333333334C173.8666666666667 320.8533333333334 190.72 405.3333333333333 266.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="fan-off"
+      unicode="&#xF81C;"
+      horiz-adv-x="512" d=" M266.6666666666667 405.3333333333333C205.6533333333333 405.3333333333333 182.8266666666667 350.9333333333334 198.1866666666667 288.64L320 167.2533333333333C338.56 162.7733333333333 358.6133333333333 153.3866666666667 368.64 133.76C393.8133333333334 83.2 469.9733333333334 85.3333333333334 469.9733333333334 181.3333333333334C469.9733333333334 257.7066666666667 385.0666666666667 274.5600000000001 306.1333333333334 231.8933333333334C299.3066666666667 240.4266666666667 290.3466666666667 247.0400000000001 280.1066666666667 251.3066666666667C284.16 271.1466666666667 293.5466666666667 293.5466666666668 314.6666666666667 304.0000000000001C365.0133333333333 329.1733333333334 362.6666666666667 405.3333333333333 266.6666666666667 405.3333333333333M69.9733333333333 362.6666666666667L42.6666666666667 335.5733333333334L95.36 283.0933333333334C68.6933333333333 282.88 42.6666666666667 258.7733333333334 42.6666666666667 202.6666666666667C42.6666666666667 126.5066666666667 127.1466666666667 109.8666666666667 205.8666666666667 152.1066666666667C212.6933333333333 143.5733333333333 221.8666666666667 136.7466666666667 232.32 132.48C228.0533333333334 112.8533333333334 218.6666666666667 90.6666666666667 197.76 80.2133333333333C147.4133333333333 55.04 149.3333333333333 -21.3333333333333 245.3333333333333 -21.3333333333333C294.4 -21.3333333333333 318.72 13.6533333333334 318.72 59.52L399.5733333333333 -21.3333333333333L426.6666666666667 5.9733333333334L69.9733333333333 362.6666666666667z" />
+    <glyph glyph-name="fast-forward"
+      unicode="&#xF211;"
+      horiz-adv-x="512" d=" M277.3333333333333 320V64L458.6666666666666 192M85.3333333333333 64L266.6666666666667 192L85.3333333333333 320V64z" />
+    <glyph glyph-name="fast-forward-outline"
+      unicode="&#xF6D1;"
+      horiz-adv-x="512" d=" M320 236.8L384 192L320 147.2000000000001V236.8M128 236.8L192 192L128 147.2000000000001V236.8M277.3333333333333 320V64L458.6666666666666 192L277.3333333333333 320M85.3333333333333 320V64L266.6666666666667 192L85.3333333333333 320z" />
+    <glyph glyph-name="fax"
+      unicode="&#xF212;"
+      horiz-adv-x="512" d=" M234.6666666666667 320H341.3333333333333V277.3333333333334H234.6666666666667V320M170.6666666666667 256V384H405.3333333333333V256C440.7466666666667 256 469.3333333333333 227.4133333333334 469.3333333333333 192V64H405.3333333333333V0H170.6666666666667V64H149.3333333333333V256H170.6666666666667M213.3333333333333 341.3333333333334V256H362.6666666666667V341.3333333333334H213.3333333333333M213.3333333333333 128V42.6666666666667H362.6666666666667V128H213.3333333333333M405.3333333333333 213.3333333333334C393.6 213.3333333333334 384 203.7333333333334 384 192S393.6 170.6666666666667 405.3333333333333 170.6666666666667S426.6666666666667 180.2666666666667 426.6666666666667 192S417.0666666666667 213.3333333333334 405.3333333333333 213.3333333333334M85.3333333333333 256H106.6666666666667C118.4 256 128 246.4000000000001 128 234.6666666666667V85.3333333333334C128 73.6 118.4 64 106.6666666666667 64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V213.3333333333334C42.6666666666667 236.8 61.8666666666667 256 85.3333333333333 256z" />
+    <glyph glyph-name="feather"
+      unicode="&#xF6D2;"
+      horiz-adv-x="512" d=" M469.3333333333333 405.3333333333333S306.3466666666667 413.2266666666667 177.92 237.2266666666667C79.36 102.1866666666667 42.6666666666667 -21.3333333333333 42.6666666666667 -21.3333333333333L84.0533333333333 0C114.7733333333333 53.3333333333334 130.7733333333333 75.3066666666667 160.8533333333333 106.6666666666667C214.8266666666667 90.8800000000001 271.1466666666667 92.8000000000001 320 149.3333333333334C277.3333333333333 161.28 243.2 158.5066666666667 192.8533333333333 153.3866666666667C249.3866666666667 192 288 200.5333333333334 341.3333333333333 192L362.6666666666667 234.6666666666667C324.2666666666667 241.92 298.6666666666667 242.56 260.6933333333333 233.8133333333334C302.72 263.4666666666667 331.9466666666667 280.1066666666667 384 277.3333333333334L409.8133333333334 318.5066666666667C376.5333333333334 320.8533333333334 356.48 317.2266666666667 318.2933333333334 307.8400000000001C352.64 338.9866666666667 384 353.0666666666667 429.6533333333333 355.8400000000001C429.6533333333333 355.8400000000001 452.0533333333333 396.16 469.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="feature-search"
+      unicode="&#xFA48;"
+      horiz-adv-x="512" d=" M426.6666666666667 21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H202.6666666666667C196.2666666666667 345.6 192 328.5333333333334 192 309.3333333333334C192 232.5333333333334 253.8666666666667 170.6666666666667 330.6666666666667 170.6666666666667C347.7333333333334 170.6666666666667 362.6666666666667 172.8 375.4666666666667 179.2000000000001L426.6666666666667 128V21.3333333333334M411.7333333333334 258.1333333333334C420.2666666666667 273.0666666666667 426.6666666666667 290.1333333333334 426.6666666666667 309.3333333333334C426.6666666666667 362.6666666666667 384 405.3333333333333 330.6666666666667 405.3333333333333S234.6666666666667 362.6666666666667 234.6666666666667 309.3333333333334S277.3333333333333 213.3333333333334 330.6666666666667 213.3333333333334C349.8666666666666 213.3333333333334 366.9333333333333 219.7333333333334 381.8666666666666 228.2666666666667L448 162.1333333333333L477.8666666666666 192L411.7333333333333 258.1333333333334M330.6666666666666 256C300.8 256 277.3333333333333 279.4666666666667 277.3333333333333 309.3333333333334S300.8 362.6666666666667 330.6666666666667 362.6666666666667S384 339.2000000000001 384 309.3333333333334S360.5333333333333 256 330.6666666666667 256z" />
+    <glyph glyph-name="feature-search-outline"
+      unicode="&#xFA49;"
+      horiz-adv-x="512" d=" M330.6666666666667 405.3333333333333C277.3333333333333 405.3333333333333 234.6666666666667 362.6666666666667 234.6666666666667 309.3333333333334S277.3333333333333 213.3333333333334 330.6666666666667 213.3333333333334C349.8666666666666 213.3333333333334 366.9333333333333 219.7333333333334 381.8666666666666 228.2666666666667L448 162.1333333333333L477.8666666666666 192L411.7333333333333 258.1333333333334C420.2666666666666 273.0666666666667 426.6666666666666 290.1333333333334 426.6666666666666 309.3333333333334C426.6666666666667 362.6666666666667 384 405.3333333333333 330.6666666666667 405.3333333333333M85.3333333333333 362.6666666666667C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V128L384 170.6666666666667V21.3333333333334H85.3333333333333V320H192.64C193.92 334.9333333333334 197.5466666666667 348.8 202.6666666666667 362.6666666666667H85.3333333333333M330.6666666666667 362.6666666666667C360.5333333333333 362.6666666666667 384 339.2000000000001 384 309.3333333333334S360.5333333333333 256 330.6666666666667 256S277.3333333333333 279.4666666666667 277.3333333333333 309.3333333333334S300.8 362.6666666666667 330.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="fedora"
+      unicode="&#xF8DA;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192V27.0933333333334C42.6666666666667 0 64 -21.3333333333333 91.0933333333333 -21.3333333333333H256C373.9733333333334 -21.3333333333333 469.3333333333333 74.6666666666667 469.3333333333333 192C469.3333333333333 309.76 373.76 405.3333333333333 256 405.3333333333333M318.72 354.7733333333333C327.04 354.7733333333333 333.0133333333333 353.7066666666667 340.6933333333333 352C352 348.8 361.3866666666666 339.6266666666667 361.3866666666666 328.7466666666667C361.3866666666666 315.7333333333334 351.9999999999999 306.1333333333334 337.7066666666666 306.1333333333334C330.6666666666667 306.1333333333334 328.5333333333333 307.4133333333333 318.7199999999999 307.4133333333333C289.4933333333333 307.4133333333333 265.8133333333333 283.9466666666667 265.8133333333333 254.72V208.8533333333333C265.8133333333333 204.5866666666667 269.2266666666666 201.3866666666667 273.2799999999999 201.3866666666667H308.0533333333333C320.8533333333333 201.3866666666667 331.3066666666666 190.9333333333333 331.3066666666666 178.1333333333333C331.3066666666666 164.9066666666667 320.8533333333333 154.6666666666667 307.6266666666666 154.6666666666667H265.8133333333333V101.76C265.8133333333333 46.2933333333333 221.0133333333333 1.4933333333333 165.7599999999999 1.4933333333333C157.2266666666666 1.4933333333333 151.2533333333333 2.5600000000001 143.5733333333333 4.48C132.2666666666666 7.4666666666667 122.88 16.8533333333334 122.88 27.52C122.88 40.5333333333333 132.4799999999999 50.1333333333333 146.56 50.1333333333333C153.3866666666666 50.1333333333333 155.7333333333333 48.8533333333334 165.7599999999999 48.8533333333334C194.7733333333333 48.8533333333334 218.4533333333333 72.3200000000001 218.4533333333333 101.5466666666666V147.4133333333333C218.4533333333333 151.68 215.2533333333333 154.88 210.9866666666666 154.88H176.4266666666667C163.4133333333333 154.88 152.96 165.3333333333333 152.96 178.1333333333333C152.96 191.36 163.4133333333333 201.6 176.64 201.6H218.4533333333333V254.72C218.4533333333333 309.9733333333334 263.2533333333333 354.7733333333333 318.7199999999999 354.7733333333333z" />
+    <glyph glyph-name="ferry"
+      unicode="&#xF213;"
+      horiz-adv-x="512" d=" M128 320H384V235.52L256 277.3333333333334L128 235.52M84.0533333333333 42.6666666666667H85.3333333333333C119.4666666666667 42.6666666666667 149.3333333333333 61.44 170.6666666666667 85.3333333333334C192 61.44 221.8666666666667 42.6666666666667 256 42.6666666666667S320 61.44 341.3333333333333 85.3333333333334C362.6666666666667 61.44 392.5333333333333 42.6666666666667 426.6666666666667 42.6666666666667H427.7333333333334L468.2666666666667 185.3866666666667C469.9733333333332 190.72 469.3333333333333 196.6933333333334 466.9866666666667 201.8133333333334C464.2133333333334 206.9333333333334 459.7333333333333 210.7733333333334 454.1866666666666 212.48L426.6666666666667 221.44V320C426.6666666666667 343.68 407.4666666666667 362.6666666666667 384 362.6666666666667H320V426.6666666666667H192V362.6666666666667H128C104.5333333333333 362.6666666666667 85.3333333333333 343.4666666666667 85.3333333333333 320V221.44L57.8133333333333 212.48C52.2666666666667 210.7733333333333 47.7866666666667 206.9333333333333 45.0133333333333 201.8133333333333C42.6666666666667 196.6933333333333 42.0266666666667 190.72 43.7333333333333 185.3866666666667M426.6666666666667 0C397.0133333333333 0 367.36 10.0266666666666 341.3333333333333 28.3733333333333C289.28 -8.1066666666667 222.72 -8.1066666666667 170.6666666666667 28.3733333333333C144.64 10.0266666666666 114.9866666666667 0 85.3333333333333 0H42.6666666666667V-42.6666666666666H85.3333333333333C114.56 -42.6666666666666 143.7866666666667 -35.1999999999999 170.6666666666667 -21.3333333333333C224 -49.0666666666667 288 -49.0666666666667 341.3333333333333 -21.3333333333333C368.2133333333334 -35.1999999999999 397.2266666666667 -42.6666666666666 426.6666666666667 -42.6666666666666H469.3333333333333V0H426.6666666666667z" />
+    <glyph glyph-name="file"
+      unicode="&#xF214;"
+      horiz-adv-x="512" d=" M277.3333333333333 256V373.3333333333334L394.6666666666667 256M128 405.3333333333333C104.32 405.3333333333333 85.3333333333333 386.3466666666667 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333H128z" />
+    <glyph glyph-name="file-account"
+      unicode="&#xF73A;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333M298.6666666666667 21.3333333333334V42.6666666666667C298.6666666666667 71.04 241.7066666666667 85.3333333333334 213.3333333333333 85.3333333333334S128 71.04 128 42.6666666666667V21.3333333333334H298.6666666666667M213.3333333333333 192C189.8666666666667 192 170.6666666666667 172.8 170.6666666666667 149.3333333333334S189.8666666666667 106.6666666666667 213.3333333333333 106.6666666666667S256 125.8666666666667 256 149.3333333333334S236.8 192 213.3333333333333 192z" />
+    <glyph glyph-name="file-alert"
+      unicode="&#xFA4A;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333M213.3333333333333 64H170.6666666666667V106.6666666666667H213.3333333333333V64M213.3333333333333 149.3333333333334H170.6666666666667V256H213.3333333333333V149.3333333333334M277.3333333333333 256V373.3333333333334L394.6666666666667 256H277.3333333333333z" />
+    <glyph glyph-name="file-alert-outline"
+      unicode="&#xFA4B;"
+      horiz-adv-x="512" d=" M213.3333333333333 64H170.6666666666667V106.6666666666667H213.3333333333333V64M213.3333333333333 149.3333333333334H170.6666666666667V256H213.3333333333333V149.3333333333334M298.6666666666667 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333M384 21.3333333333334H128V362.6666666666667H277.3333333333333V256H384V21.3333333333334z" />
+    <glyph glyph-name="file-cabinet"
+      unicode="&#xFAB5;"
+      horiz-adv-x="512" d=" M298.6666666666667 277.3333333333334H213.3333333333333V320H298.6666666666667V277.3333333333334M426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.3466666666666 407.68 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.3466666666666 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333H384C407.68 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667M384 170.6666666666667H128V21.3333333333334H384V170.6666666666667M384 362.6666666666667H128V213.3333333333334H384V362.6666666666667M298.6666666666667 128H213.3333333333333V85.3333333333334H298.6666666666667V128z" />
+    <glyph glyph-name="file-chart"
+      unicode="&#xF215;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333M149.3333333333333 21.3333333333334H192V149.3333333333334H149.3333333333333V21.3333333333334M234.6666666666667 21.3333333333334H277.3333333333333V192H234.6666666666667V21.3333333333334M320 21.3333333333334H362.6666666666667V106.6666666666667H320V21.3333333333334z" />
+    <glyph glyph-name="file-check"
+      unicode="&#xF216;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333M222.9333333333333 54.1866666666667L324.2666666666667 155.52L299.3066666666666 185.6L222.9333333333333 109.2266666666667L189.0133333333333 142.9333333333333L164.2666666666667 118.1866666666667L222.9333333333333 54.1866666666667z" />
+    <glyph glyph-name="file-cloud"
+      unicode="&#xF217;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333M334.5066666666667 128C327.2533333333334 164.2666666666667 294.8266666666667 192 256 192C225.0666666666667 192 198.4 174.5066666666667 185.1733333333333 149.3333333333334C152.96 145.4933333333334 128 118.4 128 85.3333333333334C128 49.92 156.5866666666667 21.3333333333334 192 21.3333333333334H330.6666666666667C360.1066666666667 21.3333333333334 384 45.2266666666667 384 74.6666666666667C384 102.8266666666667 362.0266666666667 125.6533333333334 334.5066666666667 128z" />
+    <glyph glyph-name="file-compare"
+      unicode="&#xF8A9;"
+      horiz-adv-x="512" d=" M213.3333333333333 64H128V106.6666666666667H213.3333333333333V64M213.3333333333333 149.3333333333334H128V192H213.3333333333333V149.3333333333334M213.3333333333333 426.6666666666667V405.3333333333333H128C104.32 405.3333333333333 85.3333333333333 386.3466666666667 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H213.3333333333333V-42.6666666666666H256V426.6666666666667H213.3333333333333M426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.3466666666666 407.68 -21.3333333333333 384 -21.3333333333333H298.6666666666667V21.3333333333334H384V213.3333333333334H298.6666666666667V256H394.6666666666667L298.6666666666667 352V405.3333333333333L426.6666666666667 277.3333333333334M341.3333333333333 149.3333333333334H298.6666666666667V192H341.3333333333333V149.3333333333334M341.3333333333333 64H298.6666666666667V106.6666666666667H341.3333333333333V64z" />
+    <glyph glyph-name="file-delimited"
+      unicode="&#xF218;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333M298.6666666666667 128V213.3333333333334H213.3333333333333V128H262.4C268.8 85.3333333333334 256 64 206.9333333333333 34.5600000000001L231.4666666666667 17.0666666666667C277.3333333333333 42.6666666666667 298.6666666666667 106.6666666666667 298.6666666666667 128z" />
+    <glyph glyph-name="file-document"
+      unicode="&#xF219;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333M320 64V106.6666666666667H128V64H320M384 149.3333333333334V192H128V149.3333333333334H384z" />
+    <glyph glyph-name="file-document-box"
+      unicode="&#xF21A;"
+      horiz-adv-x="512" d=" M298.6666666666667 85.3333333333334H149.3333333333333V128H298.6666666666667M362.6666666666667 170.6666666666667H149.3333333333333V213.3333333333334H362.6666666666667M362.6666666666667 256H149.3333333333333V298.6666666666667H362.6666666666667M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="file-document-box-multiple"
+      unicode="&#xFAB6;"
+      horiz-adv-x="512" d=" M341.3333333333333 128H192V170.6666666666667H341.3333333333333M405.3333333333333 213.3333333333334H192V256H405.3333333333333M405.3333333333333 298.6666666666667H192V341.3333333333334H405.3333333333333M448 426.6666666666667H149.3333333333333C125.6533333333333 426.6666666666667 106.6666666666667 407.68 106.6666666666667 384V85.3333333333334C106.6666666666667 61.6533333333334 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H448C471.6799999999999 42.6666666666667 490.6666666666666 61.6533333333334 490.6666666666666 85.3333333333334V384C490.6666666666666 407.68 471.4666666666667 426.6666666666667 448 426.6666666666667M64 341.3333333333334V0H405.3333333333333V-42.6666666666666H64C40.5333333333333 -42.6666666666666 21.3333333333333 -23.4666666666667 21.3333333333333 0V341.3333333333334H64z" />
+    <glyph glyph-name="file-document-box-multiple-outline"
+      unicode="&#xFAB7;"
+      horiz-adv-x="512" d=" M341.3333333333333 128H192V170.6666666666667H341.3333333333333V128M405.3333333333333 213.3333333333334H192V256H405.3333333333333V213.3333333333334M405.3333333333333 298.6666666666667H192V341.3333333333334H405.3333333333333V298.6666666666667M64 341.3333333333334V0H405.3333333333333V-42.6666666666666H64C40.5333333333333 -42.6666666666666 21.3333333333333 -23.4666666666667 21.3333333333333 0V341.3333333333334H64M448 426.6666666666667C471.4666666666667 426.6666666666667 490.6666666666666 407.4666666666667 490.6666666666666 384V85.3333333333334C490.6666666666666 61.6533333333334 471.6799999999999 42.6666666666667 448 42.6666666666667H149.3333333333333C125.8666666666667 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V384C106.6666666666667 407.68 125.6533333333333 426.6666666666667 149.3333333333333 426.6666666666667H448M149.3333333333333 384V85.3333333333334H448V384H149.3333333333333z" />
+    <glyph glyph-name="file-document-box-outline"
+      unicode="&#xF9EC;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 18.9866666666667 82.9866666666667 0 106.6666666666667 0H405.3333333333333C429.0133333333333 0 448 18.9866666666667 448 42.6666666666667V341.3333333333334C448 365.0133333333333 429.0133333333333 384 405.3333333333333 384H106.6666666666667M106.6666666666667 341.3333333333334H405.3333333333333V42.6666666666667H106.6666666666667V341.3333333333334M149.3333333333333 298.6666666666667V256H362.6666666666667V298.6666666666667H149.3333333333333M149.3333333333333 213.3333333333334V170.6666666666667H362.6666666666667V213.3333333333334H149.3333333333333M149.3333333333333 128V85.3333333333334H298.6666666666667V128H149.3333333333333z" />
+    <glyph glyph-name="file-document-outline"
+      unicode="&#xF9ED;"
+      horiz-adv-x="512" d=" M128 405.3333333333333C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333H128M128 362.6666666666667H277.3333333333333V256H384V21.3333333333334H128V362.6666666666667M170.6666666666667 192V149.3333333333334H341.3333333333333V192H170.6666666666667M170.6666666666667 106.6666666666667V64H277.3333333333333V106.6666666666667H170.6666666666667z" />
+    <glyph glyph-name="file-download"
+      unicode="&#xF964;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333H128C104.32 405.3333333333333 85.3333333333333 386.3466666666667 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.3466666666666 104.32 -21.3333333333333 128 -21.3333333333333H384C407.68 -21.3333333333333 426.6666666666667 -2.3466666666666 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333M256 42.6666666666667L170.6666666666667 128H224V192H288V128H341.3333333333333L256 42.6666666666667M277.3333333333333 256V373.3333333333334L394.6666666666667 256H277.3333333333333z" />
+    <glyph glyph-name="file-download-outline"
+      unicode="&#xF965;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333H298.6666666666667M384 21.3333333333334V256H277.3333333333333V362.6666666666667H128V21.3333333333334H384M256 42.6666666666667L170.6666666666667 128H224V192H288V128H341.3333333333333L256 42.6666666666667z" />
+    <glyph glyph-name="file-excel"
+      unicode="&#xF21B;"
+      horiz-adv-x="512" d=" M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333M277.3333333333333 373.3333333333334V256H394.6666666666667L277.3333333333333 373.3333333333334M362.6666666666667 213.3333333333334H277.3333333333333V170.6666666666667H298.6666666666667L256 135.04L213.3333333333333 170.6666666666667H234.6666666666667V213.3333333333334H149.3333333333333V170.6666666666667H170.6666666666667L234.6666666666667 117.3333333333334L170.6666666666667 64H149.3333333333333V21.3333333333334H234.6666666666667V64H213.3333333333333L256 99.6266666666667L298.6666666666667 64H277.3333333333333V21.3333333333334H362.6666666666667V64H341.3333333333333L277.3333333333333 117.3333333333334L341.3333333333333 170.6666666666667H362.6666666666667V213.3333333333334z" />
+    <glyph glyph-name="file-excel-box"
+      unicode="&#xF21C;"
+      horiz-adv-x="512" d=" M345.6 85.3333333333334H302.9333333333333L256 166.4L209.0666666666667 85.3333333333334H166.4L234.6666666666667 192L166.4 298.6666666666667H209.0666666666667L256 217.6L302.9333333333333 298.6666666666667H345.6L277.3333333333333 192M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="file-export"
+      unicode="&#xF21D;"
+      horiz-adv-x="512" d=" M128 405.3333333333333C104.32 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333M277.3333333333333 373.3333333333334L394.6666666666667 256H277.3333333333333M190.5066666666667 187.3066666666667H341.3333333333333V36.48L296.1066666666667 81.7066666666667L235.7333333333334 21.3333333333334L175.36 81.7066666666667L235.7333333333334 141.8666666666667" />
+    <glyph glyph-name="file-find"
+      unicode="&#xF21E;"
+      horiz-adv-x="512" d=" M192 170.6666666666667C192 135.2533333333333 220.5866666666667 106.6666666666667 256 106.6666666666667S320 135.2533333333333 320 170.6666666666667S291.4133333333333 234.6666666666667 256 234.6666666666667S192 206.08 192 170.6666666666667M426.6666666666667 30.08V277.3333333333334L298.6666666666667 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C393.6 -21.3333333333333 402.1333333333334 -18.1333333333333 409.3866666666667 -12.8L314.88 81.7066666666667C297.8133333333334 70.6133333333334 277.3333333333334 64 256 64C197.12 64 149.3333333333334 111.7866666666667 149.3333333333334 170.6666666666667S197.12 277.3333333333334 256 277.3333333333334S362.6666666666667 229.5466666666667 362.6666666666667 170.6666666666667C362.6666666666667 149.3333333333334 356.0533333333334 128.8533333333334 344.9600000000001 112L426.6666666666667 30.08z" />
+    <glyph glyph-name="file-find-outline"
+      unicode="&#xFB73;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333M128 362.6666666666667H277.3333333333333L384 256V72.96L344.7466666666667 112.2133333333334C372.0533333333334 153.6 367.5733333333333 209.7066666666667 330.6666666666667 246.1866666666667C310.4 266.6666666666667 283.3066666666666 277.3333333333334 256 277.3333333333334C228.6933333333334 277.3333333333334 201.6 266.6666666666667 180.6933333333333 246.1866666666667C138.6666666666667 204.5866666666667 138.6666666666667 137.1733333333334 180.6933333333333 96C201.3866666666667 74.6666666666667 228.6933333333334 64.64 256 64.64C276.48 64.64 296.96 70.6133333333334 314.6666666666667 82.3466666666667L375.4666666666667 21.3333333333334H128V362.6666666666667M301.0133333333333 125.8666666666667C289.0666666666666 113.92 273.0666666666666 106.6666666666667 256 106.6666666666667C238.9333333333333 106.6666666666667 222.9333333333333 113.7066666666667 210.9866666666667 125.8666666666667C199.04 137.8133333333334 192 153.8133333333334 192 170.6666666666667C192 187.9466666666667 198.8266666666667 203.9466666666667 210.9866666666667 215.8933333333334C222.9333333333333 228.0533333333334 238.9333333333334 234.6666666666667 256 234.6666666666667C273.0666666666667 234.6666666666667 289.0666666666667 228.0533333333334 301.0133333333333 215.8933333333334C312.96 203.9466666666667 320 187.9466666666667 320 170.6666666666667C320 153.8133333333334 313.1733333333333 137.8133333333334 301.0133333333333 125.8666666666667z" />
+    <glyph glyph-name="file-hidden"
+      unicode="&#xF613;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H298.6666666666667V213.3333333333334H234.6666666666667V298.6666666666667H277.3333333333333V256M394.6666666666667 256L349.44 301.2266666666667L376.1066666666667 327.8933333333333L426.6666666666667 277.3333333333334V234.6666666666667H384V213.3333333333334H320V256H394.6666666666667M277.3333333333333 373.3333333333334V405.3333333333333H256V362.6666666666667H277.3333333333333V320H234.6666666666667V362.6666666666667H192V405.3333333333333H170.6666666666667V362.6666666666667H128V341.3333333333334H85.3333333333333V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333H298.6666666666667L349.0133333333333 354.9866666666667L322.3466666666667 328.3200000000001L277.3333333333333 373.3333333333334M426.6666666666667 21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H341.3333333333333V21.3333333333334H384V42.6666666666667H426.6666666666667V21.3333333333334M384 128H426.6666666666667V64H384V128M256 -21.3333333333333V21.3333333333334H320V-21.3333333333333H256M170.6666666666667 -21.3333333333333V21.3333333333334H234.6666666666667V-21.3333333333333H170.6666666666667M128 -21.3333333333333C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V64H128V21.3333333333334H149.3333333333333V-21.3333333333333H128M85.3333333333333 149.3333333333334H128V85.3333333333334H85.3333333333333V149.3333333333334M85.3333333333333 234.6666666666667H128V170.6666666666667H85.3333333333333V234.6666666666667M384 213.3333333333334H426.6666666666667V149.3333333333334H384V213.3333333333334M85.3333333333333 320H128V256H85.3333333333333V320z" />
+    <glyph glyph-name="file-image"
+      unicode="&#xF21F;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333M128 21.3333333333334H384V192L298.6666666666667 106.6666666666667L256 149.3333333333334L128 21.3333333333334M170.6666666666667 256C147.2 256 128 236.8 128 213.3333333333334S147.2 170.6666666666667 170.6666666666667 170.6666666666667S213.3333333333333 189.8666666666667 213.3333333333333 213.3333333333334S194.1333333333333 256 170.6666666666667 256z" />
+    <glyph glyph-name="file-import"
+      unicode="&#xF220;"
+      horiz-adv-x="512" d=" M128 405.3333333333333C104.32 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333M277.3333333333333 373.3333333333334L394.6666666666667 256H277.3333333333333M214.4 208.64L274.7733333333333 148.2666666666667L320 193.4933333333334V42.6666666666667H169.1733333333333L214.4 87.8933333333334L154.0266666666667 148.2666666666667" />
+    <glyph glyph-name="file-lock"
+      unicode="&#xF221;"
+      horiz-adv-x="512" d=" M128 405.3333333333333C104.32 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333H128M277.3333333333333 373.3333333333334L394.6666666666667 256H277.3333333333333V373.3333333333334M256 213.3333333333334C291.4133333333333 213.3333333333334 320 184.7466666666667 320 149.3333333333334V128H341.3333333333333V42.6666666666667H170.6666666666667V128H192V149.3333333333334C192 184.3200000000001 220.5866666666667 213.3333333333334 256 213.3333333333334M256 170.6666666666667C244.2666666666667 170.6666666666667 234.6666666666667 161.0666666666667 234.6666666666667 149.3333333333334V128H277.3333333333333V149.3333333333334C277.3333333333333 160.64 267.7333333333334 170.6666666666667 256 170.6666666666667z" />
+    <glyph glyph-name="file-move"
+      unicode="&#xFAB8;"
+      horiz-adv-x="512" d=" M298.6666666666667 85.3333333333334H384V149.3333333333334L490.6666666666666 53.3333333333334L384 -42.6666666666666V21.3333333333334H298.6666666666667V85.3333333333334M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V184.7466666666667C413.2266666666667 189.4400000000001 398.9333333333333 192 384 192C313.3866666666667 192 256 134.6133333333334 256 64C256 31.1466666666667 268.3733333333334 1.28 288.64 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333z" />
+    <glyph glyph-name="file-multiple"
+      unicode="&#xF222;"
+      horiz-adv-x="512" d=" M320 298.6666666666667H437.3333333333333L320 416V298.6666666666667M170.6666666666667 448H341.3333333333333L469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H170.6666666666667C146.9866666666667 21.3333333333334 128 40.5333333333333 128 64V405.3333333333333C128 428.8 147.2 448 170.6666666666667 448M85.3333333333333 362.6666666666667V-21.3333333333333H426.6666666666667V-64H85.3333333333333C61.8666666666667 -64 42.6666666666667 -44.8 42.6666666666667 -21.3333333333333V362.6666666666667H85.3333333333333z" />
+    <glyph glyph-name="file-music"
+      unicode="&#xF223;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333M192 106.6666666666667C168.5333333333333 106.6666666666667 149.3333333333333 87.4666666666667 149.3333333333333 64S168.5333333333333 21.3333333333334 192 21.3333333333334S234.6666666666667 40.5333333333333 234.6666666666667 64V170.6666666666667H298.6666666666667V213.3333333333334H213.3333333333333V100.9066666666667C207.1466666666667 104.5333333333334 199.68 106.6666666666667 192 106.6666666666667z" />
+    <glyph glyph-name="file-outline"
+      unicode="&#xF224;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333M384 21.3333333333334H128V362.6666666666667H277.3333333333333V256H384V21.3333333333334z" />
+    <glyph glyph-name="file-pdf"
+      unicode="&#xF225;"
+      horiz-adv-x="512" d=" M298.6666666666667 256H416L298.6666666666667 373.3333333333334V256M149.3333333333333 405.3333333333333H320L448 277.3333333333334V21.3333333333334C448 -2.1333333333333 428.8 -21.3333333333333 405.3333333333333 -21.3333333333333H149.3333333333333C125.6533333333333 -21.3333333333333 106.6666666666667 -2.1333333333333 106.6666666666667 21.3333333333334V362.6666666666667C106.6666666666667 386.1333333333334 125.8666666666667 405.3333333333333 149.3333333333333 405.3333333333333M254.5066666666667 182.6133333333334C263.2533333333334 163.4133333333334 274.3466666666667 147.6266666666667 287.1466666666667 136.7466666666667L295.8933333333333 129.92C277.3333333333333 126.5066666666667 251.7333333333333 120.5333333333334 224.64 110.08L222.2933333333333 109.2266666666667L232.96 131.4133333333334C242.56 149.9733333333334 249.6 166.8266666666667 254.5066666666667 182.6133333333334M392.7466666666667 101.3333333333334C396.5866666666667 105.1733333333334 398.5066666666667 110.08 398.7200000000001 115.4133333333334C399.36 119.68 398.2933333333334 123.7333333333334 396.16 127.1466666666667C389.9733333333334 137.1733333333334 373.9733333333334 141.8666666666667 347.52 141.8666666666667L320 140.3733333333333L301.44 152.7466666666667C288 163.84 275.8400000000001 183.2533333333333 267.3066666666667 207.36L268.16 210.3466666666667C275.2 238.7200000000001 281.8133333333334 273.0666666666667 267.7333333333334 287.1466666666667C264.32 290.5600000000001 259.6266666666667 292.2666666666667 254.7200000000001 292.2666666666667H249.6C241.7066666666667 292.2666666666667 234.6666666666667 283.9466666666667 232.7466666666667 275.8400000000001C224.8533333333334 247.4666666666667 229.5466666666667 231.8933333333334 237.44 206.0800000000001V205.8666666666667C232.1066666666667 187.0933333333334 225.28 165.3333333333334 214.4 143.3600000000001L193.92 104.96L174.9333333333333 94.5066666666668C149.3333333333333 78.5066666666668 137.1733333333333 60.5866666666668 134.8266666666667 49.2800000000001C133.9733333333333 45.2266666666667 134.4 41.6000000000001 135.8933333333333 37.7600000000001L136.5333333333333 36.6933333333334L146.7733333333333 30.0800000000001L156.16 27.7333333333335C173.44 27.7333333333335 193.0666666666666 48.0000000000001 219.52 93.2266666666668L223.36 94.7200000000001C245.3333333333333 101.7600000000001 272.64 106.6666666666668 309.3333333333333 110.7200000000001C331.3066666666666 99.8400000000001 357.12 94.9333333333335 373.3333333333333 94.9333333333335C382.7200000000001 94.9333333333335 389.12 97.2800000000001 392.7466666666667 101.3333333333335M384 116.4800000000002L385.92 114.1333333333336C385.7066666666666 112.0000000000002 385.0666666666667 111.7866666666669 384 111.3600000000002H383.1466666666667L379.0933333333333 110.9333333333335C369.28 110.9333333333335 354.1333333333334 114.9866666666669 338.56 121.8133333333335C340.48 123.9466666666668 341.3333333333333 123.9466666666668 343.4666666666666 123.9466666666668C373.3333333333333 123.9466666666668 381.8666666666666 118.6133333333335 383.9999999999999 116.4800000000002M188.3733333333333 85.3333333333334C174.5066666666667 59.9466666666667 161.92 45.8666666666667 152.32 42.6666666666667C153.3866666666667 50.7733333333333 162.9866666666667 64.8533333333334 178.1333333333334 78.72L188.3733333333334 85.3333333333334M252.8 232.7466666666667C247.8933333333334 251.9466666666667 247.68 267.52 251.3066666666667 276.48L252.8 279.04L256 277.9733333333334C259.6266666666667 272.8533333333334 260.0533333333334 266.0266666666667 257.92 254.5066666666667L257.2800000000001 251.0933333333334L253.8666666666667 233.6L252.8 232.7466666666668z" />
+    <glyph glyph-name="file-pdf-box"
+      unicode="&#xF226;"
+      horiz-adv-x="512" d=" M243.84 214.6133333333334C238.9333333333333 198.8266666666667 231.8933333333333 181.9733333333334 222.2933333333333 163.4133333333334C218.0266666666667 155.3066666666667 213.3333333333333 147.6266666666667 211.6266666666667 141.2266666666667L213.9733333333333 142.0800000000001C241.0666666666667 152.5333333333334 266.6666666666667 158.5066666666667 285.2266666666667 161.92C282.0266666666667 164.0533333333334 279.04 166.4 276.48 168.7466666666667C263.68 179.6266666666667 252.5866666666667 195.4133333333334 243.84 214.6133333333334M382.08 133.3333333333334C378.4533333333333 129.28 372.0533333333334 126.9333333333333 362.6666666666667 126.9333333333333C346.4533333333333 126.9333333333333 320 131.84 298.6666666666667 142.72C261.9733333333333 138.6666666666667 234.6666666666667 133.76 212.6933333333333 126.72C211.6266666666666 126.2933333333334 210.3466666666666 125.8666666666667 208.8533333333333 125.2266666666667C182.4 80 162.7733333333333 59.7333333333334 145.4933333333333 59.7333333333334C142.08 59.7333333333334 138.6666666666666 60.5866666666667 136.1066666666666 62.08L125.8666666666666 68.6933333333333L125.2266666666666 69.76C123.7333333333333 73.6 123.3066666666666 77.2266666666667 124.16 81.28C126.5066666666666 92.5866666666667 138.6666666666666 110.5066666666667 164.2666666666666 126.5066666666667C168.32 129.4933333333334 174.72 132.9066666666667 183.2533333333333 136.96C189.6533333333333 148.0533333333334 196.4799999999999 161.0666666666667 203.7333333333333 175.36C214.6133333333333 197.3333333333334 221.44 219.0933333333333 226.7733333333333 237.8666666666667V238.08C218.88 263.8933333333334 214.1866666666666 279.4666666666667 222.0799999999999 307.8400000000001C223.9999999999999 315.9466666666667 231.0399999999999 324.2666666666667 238.9333333333332 324.2666666666667H244.0533333333333C248.9599999999999 324.2666666666667 253.6533333333332 322.56 257.0666666666666 319.1466666666667C271.1466666666666 305.0666666666667 264.5333333333332 270.7200000000001 257.4933333333333 242.3466666666667C257.0666666666666 241.0666666666667 256.8533333333333 240 256.6399999999999 239.36C265.1733333333333 215.2533333333333 277.3333333333333 195.84 290.7733333333332 184.7466666666667C296.3199999999999 180.48 302.5066666666666 176.2133333333333 309.3333333333332 172.3733333333333C318.9333333333332 173.44 328.1066666666666 173.8666666666667 336.8533333333333 173.8666666666667C363.3066666666665 173.8666666666667 379.3066666666665 169.1733333333333 385.4933333333333 159.1466666666667C387.6266666666666 155.7333333333334 388.6933333333332 151.68 388.0533333333333 147.4133333333333C387.8399999999999 142.08 385.9199999999999 137.1733333333333 382.08 133.3333333333333M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M373.3333333333333 148.48C371.2 150.6133333333334 362.6666666666667 155.9466666666667 332.8 155.9466666666667C331.3066666666666 155.9466666666667 329.8133333333333 155.9466666666667 327.8933333333333 153.8133333333334C343.4666666666666 146.9866666666667 358.6133333333333 142.9333333333334 368.4266666666666 142.9333333333334C369.92 142.9333333333334 371.2 143.1466666666667 372.48 143.36H373.3333333333333C374.4 143.7866666666667 375.04 144 375.2533333333334 146.1333333333334C374.8266666666667 146.7733333333334 374.4 147.6266666666667 373.3333333333333 148.48M177.7066666666667 117.3333333333334C173.2266666666666 114.7733333333334 169.6 112.4266666666667 167.4666666666667 110.72C152.32 96.8533333333334 142.72 82.7733333333333 141.6533333333333 74.6666666666667C151.2533333333333 77.8666666666667 163.84 91.9466666666667 177.7066666666667 117.3333333333334M242.1333333333334 264.7466666666667L243.2 265.6C244.6933333333334 272.4266666666667 245.3333333333333 278.4 246.6133333333334 283.0933333333334L247.2533333333334 286.5066666666667C249.3866666666667 298.6666666666667 248.96 304.8533333333334 245.3333333333333 309.9733333333334L242.1333333333334 311.04C241.7066666666667 310.4 241.0666666666667 309.3333333333333 240.64 308.48C237.0133333333333 299.52 237.2266666666667 283.9466666666667 242.1333333333334 264.7466666666667z" />
+    <glyph glyph-name="file-percent"
+      unicode="&#xF81D;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333H298.6666666666667M157.2266666666667 21.3333333333334L320 184.5333333333334L291.2 213.3333333333334L128 50.1333333333334L157.2266666666667 21.3333333333334M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M160 213.3333333333334C142.2933333333333 213.3333333333334 128 199.04 128 181.3333333333334S142.2933333333333 149.3333333333334 160 149.3333333333334S192 163.6266666666667 192 181.3333333333334S177.7066666666667 213.3333333333334 160 213.3333333333334M288 85.3333333333334C270.2933333333333 85.3333333333334 256 71.04 256 53.3333333333334S270.2933333333333 21.3333333333334 288 21.3333333333334S320 35.6266666666667 320 53.3333333333334S305.7066666666667 85.3333333333334 288 85.3333333333334z" />
+    <glyph glyph-name="file-plus"
+      unicode="&#xF751;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333M234.6666666666667 128V192H192V128H128V85.3333333333334H192V21.3333333333334H234.6666666666667V85.3333333333334H298.6666666666667V128H234.6666666666667z" />
+    <glyph glyph-name="file-powerpoint"
+      unicode="&#xF227;"
+      horiz-adv-x="512" d=" M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333M277.3333333333333 373.3333333333334V256H394.6666666666667L277.3333333333333 373.3333333333334M170.6666666666667 213.3333333333334V170.6666666666667H192V42.6666666666667H170.6666666666667V21.3333333333334H256V42.6666666666667H234.6666666666667V85.3333333333334H277.3333333333333C312.7466666666667 85.3333333333334 341.3333333333333 113.92 341.3333333333333 149.3333333333334S312.7466666666667 213.3333333333334 277.3333333333333 213.3333333333334H170.6666666666667M277.3333333333333 170.6666666666667C289.0666666666667 170.6666666666667 298.6666666666667 161.0666666666667 298.6666666666667 149.3333333333334S289.0666666666667 128 277.3333333333333 128H234.6666666666667V170.6666666666667H277.3333333333333z" />
+    <glyph glyph-name="file-powerpoint-box"
+      unicode="&#xF228;"
+      horiz-adv-x="512" d=" M209.0666666666667 162.1333333333333H262.4C294.4 162.1333333333333 308.48 168.1066666666667 322.1333333333334 179.6266666666667C335.7866666666667 191.36 341.3333333333333 208 341.3333333333333 229.76C341.3333333333333 250.4533333333334 336 266.6666666666667 322.1333333333334 279.8933333333333C308.2666666666667 292.48 295.04 298.6666666666667 262.4 298.6666666666667H170.6666666666667V85.3333333333334H209.0666666666667V162.1333333333333M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 83.2 384 106.6666666666667 384H405.3333333333333M209.0666666666667 192V268.8H258.1333333333334C272.2133333333334 268.8 283.0933333333334 263.4666666666667 290.1333333333334 256C297.1733333333334 248.5333333333334 300.8 240.64 300.8 229.5466666666667C300.8 217.6 296.9600000000001 209.28 290.1333333333334 202.6666666666667C283.3066666666667 196.0533333333334 275.2000000000001 192 260.6933333333334 192H209.0666666666667z" />
+    <glyph glyph-name="file-presentation-box"
+      unicode="&#xF229;"
+      horiz-adv-x="512" d=" M405.3333333333333 106.6666666666667H106.6666666666667V277.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="file-question"
+      unicode="&#xF86E;"
+      horiz-adv-x="512" d=" M128 405.3333333333333C104.32 405.3333333333333 85.3333333333333 386.3466666666667 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333H128M277.3333333333333 373.3333333333334L394.6666666666667 256H277.3333333333333V373.3333333333334M256 213.3333333333334C291.4133333333333 213.3333333333334 320 184.7466666666667 320 149.3333333333334C320 109.2266666666667 272 105.3866666666667 272 69.3333333333334H240C240 121.3866666666667 288 117.3333333333334 288 149.3333333333334C288 167.04 273.7066666666667 181.3333333333334 256 181.3333333333334S224 167.04 224 149.3333333333334H192C192 184.7466666666667 220.5866666666667 213.3333333333334 256 213.3333333333334M240 53.3333333333334H272V21.3333333333334H240V53.3333333333334z" />
+    <glyph glyph-name="file-remove"
+      unicode="&#xFB74;"
+      horiz-adv-x="512" d=" M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M213.3333333333333 136.7466666666667L168.1066666666667 182.1866666666667L137.8133333333333 151.8933333333333L183.2533333333333 106.6666666666667L137.8133333333333 61.44L168.1066666666667 31.1466666666667L213.3333333333333 76.5866666666667L258.56 31.1466666666667L288.8533333333334 61.4400000000001L243.4133333333334 106.6666666666667L288.8533333333333 151.8933333333334L258.56 182.1866666666667L213.3333333333333 136.7466666666667z" />
+    <glyph glyph-name="file-replace"
+      unicode="&#xFB17;"
+      horiz-adv-x="512" d=" M298.6666666666667 192H416L298.6666666666667 309.3333333333334V192M170.6666666666667 341.3333333333334H320L448 213.3333333333334V0C448 -23.4666666666667 428.8 -42.6666666666666 405.3333333333333 -42.6666666666666H170.6666666666667C146.9866666666667 -42.6666666666666 128 -23.4666666666667 128 0V64H234.6666666666667V21.3333333333334L320 85.3333333333334L234.6666666666667 149.3333333333334V106.6666666666667H128V298.6666666666667C128 322.1333333333334 147.2 341.3333333333334 170.6666666666667 341.3333333333334M288 384H85.3333333333333V106.6666666666667H128V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V384C42.6666666666667 407.4666666666667 61.8666666666667 426.6666666666667 85.3333333333333 426.6666666666667H245.3333333333333L288 384z" />
+    <glyph glyph-name="file-replace-outline"
+      unicode="&#xFB18;"
+      horiz-adv-x="512" d=" M298.6666666666667 384L256 426.6666666666667H85.3333333333333C61.8666666666667 426.6666666666667 42.6666666666667 407.4666666666667 42.6666666666667 384V128C42.6666666666667 104.5333333333333 61.8666666666667 85.3333333333334 85.3333333333333 85.3333333333334H234.6666666666667V42.6666666666667L320 106.6666666666667L234.6666666666667 170.6666666666667V128H85.3333333333333V384H298.6666666666667M448 234.6666666666667V0C448 -23.4666666666667 428.8 -42.6666666666666 405.3333333333333 -42.6666666666666H170.6666666666667C147.2 -42.6666666666666 128 -23.4666666666667 128 0V42.6666666666667H170.6666666666667V0H405.3333333333333V192H298.6666666666667V298.6666666666667H170.6666666666667V170.6666666666667H128V298.6666666666667C128 322.1333333333334 147.2 341.3333333333334 170.6666666666667 341.3333333333334H341.3333333333333L448 234.6666666666667z" />
+    <glyph glyph-name="file-restore"
+      unicode="&#xF670;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333M256 64C212.2666666666667 64 174.72 90.4533333333333 158.2933333333333 128H194.7733333333333C208.2133333333333 108.8 230.6133333333333 96 256 96C297.1733333333333 96 330.6666666666667 129.4933333333334 330.6666666666667 170.6666666666667S297.1733333333333 245.3333333333334 256 245.3333333333334C227.2 245.3333333333334 202.6666666666667 228.6933333333334 189.8666666666667 204.8L224 170.6666666666667H138.6666666666667V256L166.4 228.2666666666667C185.3866666666667 257.7066666666667 218.24 277.3333333333334 256 277.3333333333334C314.88 277.3333333333334 362.6666666666667 229.5466666666667 362.6666666666667 170.6666666666667S314.88 64 256 64z" />
+    <glyph glyph-name="file-send"
+      unicode="&#xF22A;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333H128C104.32 405.3333333333333 85.3333333333333 386.3466666666667 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333M267.52 34.7733333333333V77.44H182.1866666666667V119.8933333333333H267.52V162.56L331.52 98.56L267.52 34.7733333333333M277.3333333333333 256V373.3333333333334L394.6666666666667 256H277.3333333333333z" />
+    <glyph glyph-name="file-tree"
+      unicode="&#xF645;"
+      horiz-adv-x="512" d=" M64 384H192V298.6666666666667H64V384M320 234.6666666666667H448V149.3333333333334H320V234.6666666666667M320 85.3333333333334H448V0H320V85.3333333333334M277.3333333333333 170.6666666666667H149.3333333333333V64H277.3333333333333V21.3333333333334H106.6666666666667V256H149.3333333333333V213.3333333333334H277.3333333333333V170.6666666666667z" />
+    <glyph glyph-name="file-undo"
+      unicode="&#xF8DB;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333M259.4133333333333 142.72C226.1333333333334 142.72 196.0533333333333 130.3466666666667 173.0133333333333 110.2933333333334L128 155.3066666666667V42.6666666666667H240.64L195.2000000000001 87.8933333333334C212.6933333333334 102.4 234.6666666666667 111.36 259.4133333333334 111.36C303.5733333333334 111.36 341.3333333333333 82.5600000000001 354.3466666666667 42.6666666666667L384.0000000000001 52.48C366.7200000000001 104.7466666666667 317.4400000000001 142.72 259.4133333333334 142.72z" />
+    <glyph glyph-name="file-upload"
+      unicode="&#xFA4C;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V277.3333333333334L298.6666666666667 405.3333333333333M288 106.6666666666667V42.6666666666667H224V106.6666666666667H170.6666666666667L256 192L341.3333333333333 106.6666666666667H288M277.3333333333333 256V373.3333333333334L394.6666666666667 256H277.3333333333333z" />
+    <glyph glyph-name="file-upload-outline"
+      unicode="&#xFA4D;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333H298.6666666666667M384 21.3333333333334V256H277.3333333333333V362.6666666666667H128V21.3333333333334H384M256 192L341.3333333333333 106.6666666666667H288V42.6666666666667H224V106.6666666666667H170.6666666666667L256 192z" />
+    <glyph glyph-name="file-video"
+      unicode="&#xF22B;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333M362.6666666666667 42.6666666666667V170.6666666666667L298.6666666666667 123.7333333333334V170.6666666666667H149.3333333333333V42.6666666666667H298.6666666666667V89.6L362.6666666666667 42.6666666666667z" />
+    <glyph glyph-name="file-word"
+      unicode="&#xF22C;"
+      horiz-adv-x="512" d=" M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333M277.3333333333333 373.3333333333334V256H394.6666666666667L277.3333333333333 373.3333333333334M149.3333333333333 170.6666666666667L181.3333333333333 21.3333333333334H224L256 85.3333333333334L288 21.3333333333334H330.6666666666667L362.6666666666667 170.6666666666667H384V213.3333333333334H298.6666666666667V170.6666666666667H320L300.8 81.0666666666667L277.3333333333333 128H234.6666666666667L211.2 81.0666666666667L192 170.6666666666667H213.3333333333333V213.3333333333334H128V170.6666666666667H149.3333333333333z" />
+    <glyph glyph-name="file-word-box"
+      unicode="&#xF22D;"
+      horiz-adv-x="512" d=" M330.6666666666667 85.3333333333334H298.6666666666667L256 245.3333333333334L213.3333333333333 85.3333333333334H181.3333333333333L130.1333333333333 298.6666666666667H166.4L199.2533333333333 138.6666666666667L241.0666666666667 298.6666666666667H270.9333333333334L312.9600000000001 138.6666666666667L345.6 298.6666666666667H381.8666666666666M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="file-xml"
+      unicode="&#xF22E;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H394.6666666666667L277.3333333333333 373.3333333333334V256M128 405.3333333333333H298.6666666666667L426.6666666666667 277.3333333333334V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.3466666666667 104.32 405.3333333333333 128 405.3333333333333M130.56 117.3333333333334L210.3466666666666 37.5466666666666L240.64 67.6266666666667L190.9333333333333 117.3333333333333L240.64 167.04L210.3466666666666 197.12L130.56 117.3333333333333M368.64 117.3333333333333L288.8533333333334 197.12L258.56 167.04L308.2666666666667 117.3333333333333L258.56 67.6266666666667L288.8533333333334 37.5466666666666L368.64 117.3333333333333z" />
+    <glyph glyph-name="film"
+      unicode="&#xF22F;"
+      horiz-adv-x="512" d=" M74.6666666666667 384H106.6666666666667V409.6C106.6666666666667 418.9866666666667 114.3466666666667 426.6666666666667 123.7333333333333 426.6666666666667H217.6C226.9866666666666 426.6666666666667 234.6666666666667 418.9866666666667 234.6666666666667 409.6V384H266.6666666666667C284.3733333333334 384 298.6666666666667 369.7066666666667 298.6666666666667 352V341.3333333333334H469.3333333333333V21.3333333333334H298.6666666666667V10.6666666666667C298.6666666666667 -7.04 284.3733333333334 -21.3333333333333 266.6666666666667 -21.3333333333333H74.6666666666667C56.96 -21.3333333333333 42.6666666666667 -7.04 42.6666666666667 10.6666666666667V352C42.6666666666667 369.7066666666667 56.96 384 74.6666666666667 384M384 298.6666666666667V256H426.6666666666667V298.6666666666667H384M298.6666666666667 298.6666666666667V256H341.3333333333333V298.6666666666667H298.6666666666667M213.3333333333333 298.6666666666667V256H256V298.6666666666667H213.3333333333333M298.6666666666667 106.6666666666667V64H341.3333333333333V106.6666666666667H298.6666666666667M384 106.6666666666667V64H426.6666666666667V106.6666666666667H384M213.3333333333333 106.6666666666667V64H256V106.6666666666667H213.3333333333333z" />
+    <glyph glyph-name="filmstrip"
+      unicode="&#xF230;"
+      horiz-adv-x="512" d=" M384 256H341.3333333333333V298.6666666666667H384M384 170.6666666666667H341.3333333333333V213.3333333333334H384M384 85.3333333333334H341.3333333333333V128H384M170.6666666666667 256H128V298.6666666666667H170.6666666666667M170.6666666666667 170.6666666666667H128V213.3333333333334H170.6666666666667M170.6666666666667 85.3333333333334H128V128H170.6666666666667M384 384V341.3333333333334H341.3333333333333V384H170.6666666666667V341.3333333333334H128V384H85.3333333333333V0H128V42.6666666666667H170.6666666666667V0H341.3333333333333V42.6666666666667H384V0H426.6666666666667V384H384z" />
+    <glyph glyph-name="filmstrip-off"
+      unicode="&#xF231;"
+      horiz-adv-x="512" d=" M21.3333333333333 356.9066666666667L48.64 384L448 -15.36L420.9066666666667 -42.6666666666666L341.3333333333333 36.9066666666667V0H170.6666666666667V42.6666666666667H128V0H85.3333333333333V292.9066666666667L21.3333333333333 356.9066666666667M384 256V298.6666666666667H341.3333333333333V256H384M384 170.6666666666667V213.3333333333334H341.3333333333333V170.6666666666667H384M384 128H358.8266666666667L145.4933333333334 341.3333333333334H170.6666666666667V384H341.3333333333333V341.3333333333334H384V384H426.6666666666667V60.16L384 102.8266666666667V128M170.6666666666667 170.6666666666667V207.5733333333334L164.9066666666667 213.3333333333334H128V170.6666666666667H170.6666666666667M170.6666666666667 85.3333333333334V128H128V85.3333333333334H170.6666666666667M128 384V358.8266666666667L102.8266666666667 384H128z" />
+    <glyph glyph-name="filter"
+      unicode="&#xF232;"
+      horiz-adv-x="512" d=" M298.6666666666667 192V23.8933333333334C299.52 17.4933333333333 297.3866666666667 10.6666666666667 292.48 6.1866666666667C284.16 -2.1333333333333 270.7200000000001 -2.1333333333333 262.4 6.1866666666667L219.52 49.0666666666668C214.6133333333334 53.9733333333335 212.48 60.5866666666668 213.3333333333334 66.7733333333334V192H212.6933333333334L89.8133333333333 349.44C82.56 358.6133333333334 84.2666666666667 372.0533333333334 93.44 379.3066666666667C97.4933333333333 382.2933333333334 101.9733333333333 384 106.6666666666667 384H405.3333333333333C410.0266666666667 384 414.5066666666667 382.2933333333334 418.56 379.3066666666667C427.7333333333334 372.0533333333334 429.4400000000001 358.6133333333334 422.1866666666667 349.44L299.3066666666666 192H298.6666666666667z" />
+    <glyph glyph-name="filter-outline"
+      unicode="&#xF233;"
+      horiz-adv-x="512" d=" M320 23.8933333333334C320.8533333333333 17.4933333333333 318.72 10.6666666666667 313.8133333333334 6.1866666666667C305.4933333333334 -2.1333333333333 292.0533333333334 -2.1333333333333 283.7333333333334 6.1866666666667L198.1866666666667 91.7333333333334C193.28 96.64 191.1466666666667 103.2533333333333 192 109.4400000000001V218.6666666666667L89.8133333333333 349.44C82.56 358.6133333333334 84.2666666666667 372.0533333333334 93.44 379.3066666666667C97.4933333333333 382.2933333333334 101.9733333333333 384 106.6666666666667 384H405.3333333333333C410.0266666666667 384 414.5066666666667 382.2933333333334 418.56 379.3066666666667C427.7333333333334 372.0533333333334 429.4400000000001 358.6133333333334 422.1866666666667 349.44L320 218.6666666666667V23.8933333333333M150.1866666666667 341.3333333333334L234.6666666666667 233.3866666666667V115.6266666666667L277.3333333333333 72.96V233.6000000000001L361.8133333333334 341.3333333333334H150.1866666666667z" />
+    <glyph glyph-name="filter-remove"
+      unicode="&#xF234;"
+      horiz-adv-x="512" d=" M314.88 3.6266666666667L375.4666666666667 64L314.88 124.3733333333333L344.9600000000001 154.4533333333334L405.3333333333333 94.5066666666667L465.7066666666666 154.4533333333334L495.7866666666666 124.3733333333333L435.84 64L495.7866666666666 3.6266666666667L465.7066666666666 -26.4533333333333L405.3333333333333 34.1333333333334L344.9600000000001 -26.4533333333333L314.88 3.6266666666667M256 192V23.8933333333334C256.8533333333333 17.4933333333333 254.72 10.6666666666667 249.8133333333334 6.1866666666667C241.4933333333334 -2.1333333333333 228.0533333333334 -2.1333333333333 219.7333333333334 6.1866666666667L176.8533333333333 49.0666666666667C171.9466666666666 53.9733333333334 169.8133333333333 60.5866666666667 170.6666666666666 66.7733333333333V192H170.0266666666667L47.1466666666667 349.44C39.8933333333333 358.6133333333334 41.6 372.0533333333334 50.7733333333333 379.3066666666667C54.8266666666667 382.2933333333334 59.3066666666667 384 64 384H362.6666666666667C367.36 384 371.84 382.2933333333334 375.8933333333333 379.3066666666667C385.0666666666667 372.0533333333334 386.7733333333334 358.6133333333334 379.5200000000001 349.44L256.64 192H256z" />
+    <glyph glyph-name="filter-remove-outline"
+      unicode="&#xF235;"
+      horiz-adv-x="512" d=" M314.24 3.6266666666667L375.04 64L314.24 124.3733333333333L344.5333333333333 154.4533333333334L405.3333333333333 94.5066666666667L465.0666666666667 154.4533333333334L495.36 124.3733333333333L435.4133333333333 64L495.36 3.6266666666667L465.0666666666666 -26.4533333333333L405.3333333333333 34.1333333333334L344.5333333333333 -26.4533333333333L314.24 3.6266666666667M277.3333333333333 23.8933333333334C278.1866666666666 17.4933333333333 276.0533333333333 10.6666666666667 271.1466666666667 6.1866666666667C262.8266666666667 -2.1333333333333 249.3866666666667 -2.1333333333333 241.0666666666667 6.1866666666667L155.52 91.7333333333334C150.6133333333333 96.64 148.48 103.2533333333333 149.3333333333333 109.4400000000001V218.6666666666667L47.1466666666667 349.44C39.8933333333333 358.6133333333334 41.6 372.0533333333334 50.7733333333333 379.3066666666667C54.8266666666667 382.2933333333334 59.3066666666667 384 64 384H362.6666666666667C367.36 384 371.84 382.2933333333334 375.8933333333333 379.3066666666667C385.0666666666667 372.0533333333334 386.7733333333334 358.6133333333334 379.5200000000001 349.44L277.3333333333333 218.6666666666667V23.8933333333333M107.52 341.3333333333334L192 233.3866666666667V115.6266666666667L234.6666666666667 72.96V233.6000000000001L319.1466666666667 341.3333333333334H107.52z" />
+    <glyph glyph-name="filter-variant"
+      unicode="&#xF236;"
+      horiz-adv-x="512" d=" M128 170.6666666666667H384V213.3333333333334H128M64 320V277.3333333333334H448V320M213.3333333333333 64H298.6666666666667V106.6666666666667H213.3333333333333V64z" />
+    <glyph glyph-name="finance"
+      unicode="&#xF81E;"
+      horiz-adv-x="512" d=" M64 170.6666666666667H149.3333333333333V-42.6666666666666H64V170.6666666666667M213.3333333333333 149.3333333333334H298.6666666666667V-42.6666666666666H213.3333333333333V149.3333333333334M362.6666666666667 256H448V-42.6666666666666H362.6666666666667V256M362.6666666666667 426.6666666666667H448V341.3333333333334H426.6666666666667V382.7200000000001L255.36 211.4133333333334L170.6666666666667 296.1066666666667L72.5333333333333 197.9733333333334L49.92 220.5866666666667L170.6666666666667 341.3333333333334L255.36 256.64L404.0533333333334 405.3333333333333H362.6666666666667V426.6666666666667z" />
+    <glyph glyph-name="find-replace"
+      unicode="&#xF6D3;"
+      horiz-adv-x="512" d=" M234.6666666666667 320C264.1066666666667 320 290.7733333333333 308.0533333333334 310.1866666666666 288.8533333333334L256 234.6666666666667H384V362.6666666666667L340.2666666666667 318.9333333333334C313.1733333333333 346.0266666666667 275.84 362.6666666666667 234.6666666666667 362.6666666666667C159.36 362.6666666666667 97.4933333333333 306.9866666666667 87.04 234.6666666666667H130.1333333333333C139.9466666666667 283.3066666666667 183.04 320 234.6666666666667 320M354.9866666666667 125.0133333333333C369.0666666666667 144.2133333333334 378.88 167.04 382.2933333333334 192H339.2C329.3866666666667 143.36 286.2933333333333 106.6666666666667 234.6666666666667 106.6666666666667C205.2266666666667 106.6666666666667 178.56 118.6133333333334 159.1466666666667 137.8133333333334L213.3333333333333 192H85.3333333333333V64L129.0666666666667 107.7333333333334C156.16 80.64 193.4933333333334 64 234.6666666666667 64C267.7333333333334 64 298.6666666666667 74.6666666666667 322.9866666666667 93.0133333333333L426.6666666666667 -10.6666666666666L458.6666666666666 21.3333333333334L354.9866666666667 125.0133333333333z" />
+    <glyph glyph-name="fingerprint"
+      unicode="&#xF237;"
+      horiz-adv-x="512" d=" M379.9466666666666 352.64C378.24 352.64 376.5333333333333 353.0666666666667 375.04 353.92C334.08 375.04 298.6666666666667 384 256 384C213.9733333333333 384 173.8666666666667 373.9733333333334 137.3866666666667 353.92C132.2666666666667 351.1466666666667 125.8666666666667 353.0666666666667 122.88 358.1866666666667C120.1066666666667 363.3066666666667 122.0266666666667 369.92 127.1466666666667 372.6933333333334C166.8266666666667 394.6666666666667 210.3466666666666 405.3333333333333 256 405.3333333333333S341.3333333333333 395.3066666666667 384.8533333333333 373.3333333333334C390.1866666666666 370.1333333333334 392.1066666666667 363.7333333333334 389.3333333333333 358.6133333333334C387.4133333333333 354.7733333333334 384 352.64 379.9466666666666 352.64M74.6666666666667 240.64C72.5333333333333 240.64 70.4 241.28 68.48 242.56C64 245.9733333333334 62.5066666666667 252.5866666666667 65.92 257.4933333333334C87.04 287.36 113.92 310.8266666666667 145.92 327.2533333333334C213.3333333333333 361.8133333333334 298.6666666666667 362.0266666666667 365.8666666666666 327.4666666666667C397.8666666666666 311.04 424.7466666666666 288 445.8666666666666 258.1333333333334C449.28 253.44 448 246.6133333333333 443.3066666666666 243.2C438.3999999999999 239.7866666666667 431.7866666666667 240.8533333333334 428.3733333333333 245.3333333333334C409.1733333333333 272.64 384.8533333333333 293.76 356.0533333333333 308.48C294.8266666666666 339.8400000000001 216.5333333333333 339.8400000000001 155.5199999999999 308.2666666666667C126.5066666666666 293.3333333333334 102.1866666666666 272 82.9866666666666 245.3333333333334C81.28 242.1333333333334 78.0799999999999 240.64 74.6666666666666 240.64M207.9999999999999 -16.8533333333333C205.2266666666666 -16.8533333333333 202.6666666666666 -15.7866666666666 200.5333333333333 -13.6533333333333C181.9733333333333 4.9066666666667 171.9466666666666 16.8533333333334 157.6533333333333 42.6666666666667C142.9333333333333 68.9066666666667 135.2533333333333 100.9066666666667 135.2533333333333 135.2533333333333C135.2533333333333 198.6133333333334 189.44 250.24 255.9999999999999 250.24S376.7466666666666 198.6133333333334 376.7466666666666 135.2533333333333C376.7466666666666 129.28 372.0533333333333 124.5866666666667 366.08 124.5866666666667S355.4133333333333 129.28 355.4133333333333 135.2533333333333C355.4133333333333 186.88 310.8266666666666 228.9066666666667 255.9999999999999 228.9066666666667C201.1733333333332 228.9066666666667 156.5866666666666 186.88 156.5866666666666 135.2533333333333C156.5866666666666 104.5333333333333 163.4133333333333 76.16 176.4266666666666 53.3333333333334C190.0799999999999 28.5866666666667 199.4666666666666 18.1333333333334 215.8933333333332 1.4933333333333C219.9466666666666 -2.7733333333333 219.9466666666666 -9.3866666666667 215.8933333333332 -13.6533333333333C213.3333333333333 -15.7866666666667 210.7733333333332 -16.8533333333333 207.9999999999999 -16.8533333333333M360.9599999999999 22.6133333333334C335.5733333333332 22.6133333333334 313.1733333333332 29.0133333333334 294.8266666666666 41.6000000000001C263.0399999999999 63.1466666666668 244.0533333333332 98.1333333333334 244.0533333333332 135.2533333333335C244.0533333333332 141.2266666666668 248.7466666666666 145.9200000000001 254.7199999999999 145.9200000000001S265.3866666666666 141.2266666666668 265.3866666666666 135.2533333333335C265.3866666666666 105.1733333333334 280.7466666666666 76.8000000000001 306.7733333333332 59.3066666666668C321.9199999999999 49.0666666666668 339.6266666666666 44.1600000000001 360.9599999999999 44.1600000000001C366.0799999999998 44.1600000000001 374.6133333333333 44.8000000000001 383.1466666666666 46.2933333333335C388.9066666666665 47.3600000000001 394.6666666666665 43.5200000000002 395.5199999999998 37.5466666666668C396.5866666666665 32.0000000000001 392.7466666666665 26.2400000000001 386.7733333333332 25.1733333333335C374.6133333333331 22.8266666666668 363.9466666666665 22.6133333333335 360.9599999999998 22.6133333333335M318.08 -21.3333333333333H315.3066666666666C281.3866666666667 -11.52 259.2 1.0666666666667 235.9466666666667 23.8933333333334C206.08 53.3333333333334 189.6533333333333 93.0133333333333 189.6533333333333 135.2533333333333C189.6533333333333 169.8133333333334 219.0933333333333 197.9733333333333 255.36 197.9733333333333C291.6266666666666 197.9733333333333 321.0666666666666 169.8133333333333 321.0666666666666 135.2533333333333C321.0666666666666 112.4266666666667 341.3333333333333 93.8666666666667 365.44 93.8666666666667C389.9733333333333 93.8666666666667 409.8133333333334 112.4266666666666 409.8133333333334 135.2533333333333C409.8133333333334 215.68 340.48 280.96 255.1466666666667 280.96C194.56 280.96 138.6666666666667 247.2533333333333 114.1333333333334 194.9866666666666C105.8133333333334 177.7066666666666 101.5466666666667 157.44 101.5466666666667 135.2533333333333C101.5466666666667 118.6133333333333 103.04 92.3733333333333 115.84 58.24C117.9733333333333 52.6933333333333 115.2 46.5066666666666 109.6533333333333 44.5866666666666C104.1066666666667 42.6666666666666 97.92 45.4399999999999 96 50.7733333333333C85.3333333333333 78.7199999999999 80.4266666666667 106.6666666666666 80.4266666666667 135.2533333333333C80.4266666666667 160.8533333333333 85.3333333333333 184.1066666666666 94.9333333333334 204.3733333333333C123.3066666666667 263.8933333333333 186.24 302.5066666666666 255.1466666666667 302.5066666666666C352 302.5066666666666 431.1466666666667 227.6266666666666 431.1466666666667 135.4666666666666C431.1466666666667 100.9066666666666 401.7066666666667 72.7466666666666 365.4400000000001 72.7466666666666C329.1733333333334 72.7466666666666 299.7333333333334 100.9066666666666 299.7333333333334 135.4666666666666C299.7333333333334 158.2933333333333 279.8933333333334 176.8533333333333 255.3600000000001 176.8533333333333S210.9866666666667 158.2933333333333 210.9866666666667 135.4666666666666C210.9866666666667 98.9866666666666 225.0666666666667 64.8533333333332 250.88 39.2533333333333C271.1466666666667 19.1999999999999 290.56 8.1066666666666 320.64 -1e-13C326.4 -1.7066666666667 329.6 -7.6800000000001 328.1066666666667 -13.2266666666667C327.04 -18.1333333333334 322.56 -21.3333333333334 318.08 -21.3333333333334z" />
+    <glyph glyph-name="fire"
+      unicode="&#xF238;"
+      horiz-adv-x="512" d=" M249.8133333333334 42.6666666666667C211.84 42.6666666666667 181.3333333333333 72.7466666666667 181.3333333333333 109.6533333333334C181.3333333333333 144.2133333333334 203.3066666666667 168.5333333333334 241.0666666666667 176.2133333333334C278.8266666666667 183.8933333333334 317.8666666666667 202.0266666666667 339.6266666666667 231.2533333333334C347.9466666666667 203.7333333333334 352 174.72 352 145.0666666666667C352 88.7466666666667 306.3466666666667 42.6666666666667 249.8133333333334 42.6666666666667M288 433.7066666666667S303.7866666666667 377.1733333333334 303.7866666666667 331.3066666666667C303.7866666666667 287.36 274.9866666666667 251.7333333333334 231.04 251.7333333333334C186.88 251.7333333333334 153.6 287.36 153.6 331.3066666666668L154.24 339.2000000000001C111.1466666666667 288 85.3333333333333 221.6533333333334 85.3333333333333 149.3333333333334C85.3333333333333 55.04 161.7066666666667 -21.3333333333333 256 -21.3333333333333S426.6666666666667 55.04 426.6666666666667 149.3333333333334C426.6666666666667 264.5333333333334 371.4133333333333 366.9333333333334 288 433.7066666666667z" />
+    <glyph glyph-name="fire-truck"
+      unicode="&#xF8AA;"
+      horiz-adv-x="512" d=" M363.52 405.3333333333333C359.4666666666666 405.3333333333333 355.4133333333333 404.48 352 402.3466666666667L119.2533333333333 266.6666666666667H203.7333333333334L373.3333333333333 365.6533333333333C384 371.6266666666667 386.7733333333333 384.64 380.8 394.6666666666667C377.1733333333333 401.0666666666667 370.7733333333334 405.3333333333333 363.5200000000001 405.3333333333333M341.3333333333333 277.3333333333334V234.6666666666667H64C40.5333333333333 234.6666666666667 21.3333333333333 215.4666666666667 21.3333333333333 192H42.6666666666667V128H21.3333333333333V42.6666666666667H64C64 7.2533333333333 92.5866666666667 -21.3333333333333 128 -21.3333333333333S192 7.2533333333333 192 42.6666666666667H320C320 7.2533333333333 348.5866666666667 -21.3333333333333 384 -21.3333333333333S448 7.2533333333333 448 42.6666666666667H490.6666666666666V181.3333333333334L416 277.3333333333334H341.3333333333333M384 245.3333333333334H405.3333333333333L458.6666666666666 181.3333333333334V160H384V245.3333333333334M85.3333333333333 192H149.3333333333333V128H85.3333333333333V192M192 192H256V128H192V192M298.6666666666667 192H341.3333333333333V128H298.6666666666667V192M128 74.6666666666667C145.7066666666667 74.6666666666667 160 60.3733333333333 160 42.6666666666667S145.7066666666667 10.6666666666667 128 10.6666666666667S96 24.96 96 42.6666666666667S110.2933333333333 74.6666666666667 128 74.6666666666667M384 74.6666666666667C401.7066666666666 74.6666666666667 416 60.3733333333333 416 42.6666666666667S401.7066666666666 10.6666666666667 384 10.6666666666667S352 24.96 352 42.6666666666667S366.2933333333334 74.6666666666667 384 74.6666666666667z" />
+    <glyph glyph-name="firebase"
+      unicode="&#xF966;"
+      horiz-adv-x="512" d=" M426.6666666666667 49.28L270.9333333333333 -37.12C260.2666666666667 -42.6666666666667 249.6 -42.6666666666667 238.9333333333333 -37.12L85.3333333333333 49.28L363.7333333333334 329.8133333333334L371.2000000000001 331.9466666666667C377.6 331.9466666666667 381.2266666666667 329.1733333333334 381.8666666666667 323.4133333333333L426.6666666666667 49.28M199.4666666666667 325.5466666666667L102.4 164.48L142.9333333333333 419.4133333333334C143.5733333333333 425.1733333333334 147.2 427.9466666666667 153.6 427.9466666666667C157.8666666666667 427.9466666666667 160.64 426.6666666666667 162.1333333333333 422.6133333333334L208 338.3466666666667L199.4666666666667 325.5466666666667M295.4666666666667 298.6666666666667L91.7333333333333 94.08L246.4 356.48C248.5333333333334 360.7466666666667 251.7333333333334 362.6666666666667 256 362.6666666666667S263.04 360.7466666666667 264.5333333333333 356.48L295.4666666666667 298.6666666666667z" />
+    <glyph glyph-name="firefox"
+      unicode="&#xF239;"
+      horiz-adv-x="512" d=" M448 198.4C448 206.9333333333334 445.8666666666666 219.7333333333334 443.7333333333334 228.2666666666667C437.3333333333333 264.5333333333334 418.1333333333334 296.5333333333334 394.6666666666667 322.1333333333334C390.4 328.5333333333334 381.8666666666666 334.9333333333334 373.3333333333333 341.3333333333334C349.8666666666666 360.5333333333334 322.1333333333334 373.3333333333334 290.1333333333334 379.7333333333334C226.1333333333334 390.4000000000001 162.1333333333333 369.0666666666667 119.4666666666667 324.2666666666667V326.4000000000001C117.3333333333333 330.6666666666667 117.3333333333333 330.6666666666667 115.2 330.6666666666667C113.0666666666667 334.9333333333334 113.0666666666667 337.0666666666667 110.9333333333333 339.2000000000001C110.9333333333333 343.4666666666667 108.8 347.7333333333334 108.8 352C102.4 349.8666666666667 102.4 343.4666666666667 100.2666666666667 339.2000000000001C96 334.9333333333334 91.7333333333333 328.5333333333334 91.7333333333333 322.1333333333334C89.6 317.8666666666667 85.3333333333333 298.6666666666668 89.6 296.5333333333334H91.7333333333333V290.1333333333334C87.4666666666666 285.8666666666667 85.3333333333333 283.7333333333334 85.3333333333333 281.6C78.9333333333333 268.8000000000001 72.5333333333333 258.1333333333334 70.4 245.3333333333334V238.9333333333334C66.1333333333333 234.6666666666667 66.1333333333333 228.2666666666667 64 224C66.1333333333333 224 66.1333333333333 226.1333333333334 68.2666666666667 226.1333333333334C57.6 170.6666666666667 72.5333333333333 113.0666666666667 106.6666666666666 70.4C157.8666666666666 8.5333333333334 245.3333333333333 -17.0666666666666 322.1333333333333 10.6666666666667C396.8 38.4 448 110.9333333333333 448 192V198.4M288 360.5333333333334C320 354.1333333333334 349.8666666666666 339.2000000000001 373.3333333333333 317.8666666666667C375.4666666666667 315.7333333333334 377.6 311.4666666666667 377.6 311.4666666666667C371.2 317.8666666666667 356.2666666666667 328.5333333333334 347.7333333333334 324.2666666666667C349.8666666666667 317.8666666666667 375.4666666666667 285.8666666666667 377.6 283.7333333333334C377.6 283.7333333333334 384 256 386.1333333333333 253.8666666666667C386.1333333333333 249.6 371.2 194.1333333333334 371.2 185.6C371.2 183.4666666666667 352 145.0666666666667 354.1333333333333 145.0666666666667C347.7333333333333 130.1333333333333 341.3333333333333 130.1333333333333 339.2 128C337.0666666666666 128 324.2666666666667 123.7333333333334 309.3333333333333 119.4666666666667C296.5333333333333 117.3333333333333 281.5999999999999 113.0666666666666 270.9333333333333 115.2C264.5333333333333 115.2 256 115.2 249.6 119.4666666666667C247.4666666666666 121.6 230.3999999999999 130.1333333333333 226.1333333333333 132.2666666666667C219.7333333333333 134.4 215.4666666666666 138.6666666666666 211.2 142.9333333333333H234.6666666666667C247.4666666666667 145.0666666666666 302.9333333333333 164.2666666666667 300.8 172.8C300.8 179.2 290.1333333333334 183.4666666666667 285.8666666666667 187.7333333333333C279.4666666666667 189.8666666666666 253.8666666666667 185.6 243.2 181.3333333333333C243.2 181.3333333333333 202.6666666666667 192 192 200.5333333333333C192 202.6666666666666 189.8666666666667 215.4666666666666 189.8666666666667 217.6C187.7333333333334 219.7333333333333 196.2666666666667 226.1333333333333 196.2666666666667 226.1333333333333S217.6 247.4666666666667 217.6 249.6C221.8666666666667 249.6 226.1333333333334 253.8666666666666 228.2666666666667 256C226.1333333333334 256 230.4 258.1333333333334 236.8 262.4C243.2000000000001 266.6666666666667 247.4666666666667 266.6666666666667 247.4666666666667 273.0666666666667C247.4666666666667 273.0666666666667 258.1333333333334 292.2666666666667 245.3333333333334 290.1333333333334C245.3333333333334 290.1333333333334 226.1333333333334 292.2666666666667 219.7333333333334 292.2666666666667C213.3333333333334 288 211.2000000000001 290.1333333333334 204.8000000000001 292.2666666666667C204.8000000000001 292.2666666666667 200.5333333333334 296.5333333333333 200.5333333333334 298.6666666666667C202.6666666666668 302.9333333333333 217.6000000000001 334.9333333333333 224.0000000000001 337.0666666666666C219.7333333333334 345.6 198.4000000000001 339.2 194.1333333333334 332.8C194.1333333333334 332.8 177.0666666666667 320 168.5333333333334 317.8666666666666C168.5333333333334 320 157.8666666666667 322.1333333333334 147.2000000000001 322.1333333333334C185.6000000000001 354.1333333333334 236.8000000000001 369.0666666666666 288.0000000000001 360.5333333333333z" />
+    <glyph glyph-name="fish"
+      unicode="&#xF23A;"
+      horiz-adv-x="512" d=" M256 21.3333333333334L272.2133333333333 85.3333333333334C202.6666666666667 89.8133333333334 140.5866666666667 119.4666666666667 122.6666666666667 158.2933333333334C120.7466666666667 148.0533333333334 117.9733333333333 138.6666666666667 113.7066666666667 131.6266666666667C99.6266666666667 106.6666666666667 71.04 106.6666666666667 42.6666666666667 106.6666666666667C66.1333333333333 106.6666666666667 74.6666666666667 140.16 74.6666666666667 181.3333333333334S66.1333333333333 256 42.6666666666667 256C71.04 256 99.6266666666667 256 113.7066666666667 231.04C117.9733333333333 224 120.7466666666667 214.6133333333334 122.6666666666667 204.3733333333333C136.5333333333333 234.6666666666667 177.4933333333334 259.2000000000001 227.4133333333334 270.5066666666667L192 341.3333333333334C234.6666666666667 341.3333333333334 277.3333333333333 341.3333333333334 305.7066666666667 327.04C329.8133333333334 315.0933333333334 343.68 292.9066666666667 356.0533333333334 269.2266666666667C418.3466666666667 254.2933333333334 469.3333333333333 220.5866666666667 469.3333333333333 181.3333333333334C469.3333333333333 141.2266666666667 416 106.6666666666667 352 92.5866666666667C334.2933333333333 69.12 317.0133333333333 47.36 302.2933333333333 35.6266666666667C284.3733333333334 21.3333333333334 270.2933333333333 21.3333333333334 256 21.3333333333334M362.6666666666667 213.3333333333334C350.9333333333333 213.3333333333334 341.3333333333333 203.7333333333334 341.3333333333333 192S350.9333333333333 170.6666666666667 362.6666666666667 170.6666666666667S384 180.2666666666667 384 192S374.4 213.3333333333334 362.6666666666667 213.3333333333334z" />
+    <glyph glyph-name="flag"
+      unicode="&#xF23B;"
+      horiz-adv-x="512" d=" M307.2 320L298.6666666666667 362.6666666666667H106.6666666666667V0H149.3333333333333V149.3333333333334H268.8L277.3333333333333 106.6666666666667H426.6666666666667V320H307.2z" />
+    <glyph glyph-name="flag-checkered"
+      unicode="&#xF23C;"
+      horiz-adv-x="512" d=" M307.2 320H426.6666666666667V106.6666666666667H277.3333333333333L268.8 149.3333333333334H149.3333333333333V0H106.6666666666667V362.6666666666667H298.6666666666667L307.2 320M298.6666666666667 149.3333333333334H341.3333333333333V192H384V234.6666666666667H341.3333333333333V277.3333333333334H298.6666666666667V234.6666666666667L277.3333333333333 277.3333333333334V320H234.6666666666667V277.3333333333334H192V320H149.3333333333333V277.3333333333334H192V234.6666666666667H149.3333333333333V192H192V234.6666666666667H234.6666666666667V192H277.3333333333333V234.6666666666667L298.6666666666667 192V149.3333333333334M234.6666666666667 234.6666666666667V277.3333333333334H277.3333333333333V234.6666666666667H234.6666666666667M298.6666666666667 234.6666666666667H341.3333333333333V192H298.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="flag-minus"
+      unicode="&#xFB75;"
+      horiz-adv-x="512" d=" M264.5333333333333 341.3333333333334H384V128H234.6666666666667L226.1333333333334 170.6666666666667H106.6666666666667V21.3333333333334H64V384H256L264.5333333333333 341.3333333333334M298.6666666666667 85.3333333333334H469.3333333333333V42.6666666666667H298.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="flag-outline"
+      unicode="&#xF23D;"
+      horiz-adv-x="512" d=" M309.3333333333333 320H426.6666666666667V106.6666666666667H277.3333333333333L266.6666666666667 149.3333333333334H149.3333333333333V0H106.6666666666667V362.6666666666667H298.6666666666667L309.3333333333333 320M149.3333333333333 320V192H277.3333333333333L288 149.3333333333334H384V277.3333333333334H298.6666666666667L288 320H149.3333333333333z" />
+    <glyph glyph-name="flag-plus"
+      unicode="&#xFB76;"
+      horiz-adv-x="512" d=" M362.6666666666667 149.3333333333334H405.3333333333333V85.3333333333334H469.3333333333333V42.6666666666667H405.3333333333333V-21.3333333333333H362.6666666666667V42.6666666666667H298.6666666666667V85.3333333333334H362.6666666666667V149.3333333333334M264.5333333333333 341.3333333333334H384V192C336.64 192 295.2533333333334 166.1866666666667 273.0666666666667 128H234.6666666666667L226.1333333333334 170.6666666666667H106.6666666666667V21.3333333333334H64V384H256L264.5333333333333 341.3333333333334z" />
+    <glyph glyph-name="flag-remove"
+      unicode="&#xFB77;"
+      horiz-adv-x="512" d=" M308.48 109.2266666666667L338.7733333333333 139.52L384 94.08L429.2266666666667 139.52L459.52 109.2266666666667L414.08 64L459.52 18.7733333333333L429.2266666666666 -11.52L384 33.92L338.7733333333333 -11.52L308.48 18.7733333333334L353.92 64L308.48 109.2266666666667M264.5333333333333 341.3333333333334H384V192C336.64 192 295.2533333333334 166.1866666666667 273.0666666666667 128H234.6666666666667L226.1333333333334 170.6666666666667H106.6666666666667V21.3333333333334H64V384H256L264.5333333333333 341.3333333333334z" />
+    <glyph glyph-name="flag-triangle"
+      unicode="&#xF23F;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333H192V-21.3333333333333H149.3333333333333V405.3333333333333M405.3333333333333 256L234.6666666666667 136.5333333333334V375.4666666666667L405.3333333333333 256z" />
+    <glyph glyph-name="flag-variant"
+      unicode="&#xF240;"
+      horiz-adv-x="512" d=" M128 384C139.7333333333333 384 149.3333333333333 374.4 149.3333333333333 362.6666666666667V343.8933333333333C171.9466666666667 353.28 202.6666666666667 362.6666666666667 234.6666666666667 362.6666666666667C298.6666666666667 362.6666666666667 298.6666666666667 320 341.3333333333333 320C405.3333333333333 320 426.6666666666667 362.6666666666667 426.6666666666667 362.6666666666667V192S405.3333333333333 149.3333333333334 341.3333333333333 149.3333333333334S277.3333333333333 192 234.6666666666667 192C170.6666666666667 192 149.3333333333333 149.3333333333334 149.3333333333333 149.3333333333334V0H106.6666666666667V362.6666666666667C106.6666666666667 374.4 116.2666666666667 384 128 384z" />
+    <glyph glyph-name="flag-variant-outline"
+      unicode="&#xF23E;"
+      horiz-adv-x="512" d=" M128 384C139.7333333333333 384 149.3333333333333 374.4 149.3333333333333 362.6666666666667V343.8933333333333C171.9466666666667 353.28 202.6666666666667 362.6666666666667 234.6666666666667 362.6666666666667C298.6666666666667 362.6666666666667 298.6666666666667 320 341.3333333333333 320C405.3333333333333 320 426.6666666666667 362.6666666666667 426.6666666666667 362.6666666666667V192S405.3333333333333 149.3333333333334 341.3333333333333 149.3333333333334S277.3333333333333 192 234.6666666666667 192C170.6666666666667 192 149.3333333333333 149.3333333333334 149.3333333333333 149.3333333333334V0H106.6666666666667V362.6666666666667C106.6666666666667 374.4 116.2666666666667 384 128 384M149.3333333333333 293.3333333333334V202.6666666666667S192 234.6666666666667 234.6666666666667 234.6666666666667S298.6666666666667 192 341.3333333333333 192S384 213.3333333333334 384 213.3333333333334V288S362.6666666666667 277.3333333333334 341.3333333333333 277.3333333333334C298.6666666666667 277.3333333333334 277.3333333333333 320 234.6666666666667 320S149.3333333333333 293.3333333333334 149.3333333333333 293.3333333333334z" />
+    <glyph glyph-name="flash"
+      unicode="&#xF241;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333V170.6666666666667H213.3333333333333V-21.3333333333333L362.6666666666667 234.6666666666667H277.3333333333333L362.6666666666667 405.3333333333333H149.3333333333333z" />
+    <glyph glyph-name="flash-auto"
+      unicode="&#xF242;"
+      horiz-adv-x="512" d=" M359.4666666666667 284.8L384 362.6666666666667L408.5333333333333 284.8M405.3333333333333 405.3333333333333H362.6666666666667L294.4 213.3333333333334H334.9333333333334L349.8666666666667 256H418.1333333333334L433.0666666666667 213.3333333333334H473.6M64 405.3333333333333V149.3333333333334H128V-42.6666666666666L277.3333333333333 213.3333333333334H192L277.3333333333333 405.3333333333333H64z" />
+    <glyph glyph-name="flash-circle"
+      unicode="&#xF81F;"
+      horiz-adv-x="512" d=" M245.3333333333333 21.3333333333334L349.0133333333333 228.9066666666667H277.3333333333333V362.6666666666667L170.6666666666667 155.0933333333334H245.3333333333333V21.3333333333334M256 405.3333333333333C314.6666666666667 405.3333333333333 364.8 384 406.4 342.4C448 300.8 469.3333333333333 250.6666666666667 469.3333333333333 192S448 83.2 406.4 41.6C364.8 0 314.6666666666667 -21.3333333333333 256 -21.3333333333333S147.2 0 105.6 41.6C64 83.2 42.6666666666667 133.3333333333334 42.6666666666667 192S64 300.8 105.6 342.4C147.2 384 197.3333333333333 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="flash-off"
+      unicode="&#xF243;"
+      horiz-adv-x="512" d=" M362.6666666666667 234.6666666666667H277.3333333333333L362.6666666666667 405.3333333333333H149.3333333333333V358.8266666666667L329.8133333333334 178.3466666666667M69.76 384L42.6666666666667 356.9066666666667L149.3333333333333 250.24V170.6666666666667H213.3333333333333V-21.3333333333333L289.7066666666667 109.6533333333334L378.24 21.3333333333334L405.3333333333333 48.4266666666667L69.76 384z" />
+    <glyph glyph-name="flash-outline"
+      unicode="&#xF6D4;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333H362.6666666666667L288 256H362.6666666666667L213.3333333333333 -21.3333333333333V149.3333333333334H149.3333333333333V405.3333333333333M192 362.6666666666667V192H256V135.2533333333333L298.6666666666667 213.3333333333334H218.4533333333333L293.5466666666666 362.6666666666667H192z" />
+    <glyph glyph-name="flash-red-eye"
+      unicode="&#xF67A;"
+      horiz-adv-x="512" d=" M341.3333333333333 341.3333333333334C329.3866666666667 341.3333333333334 320 331.9466666666667 320 320S329.3866666666667 298.6666666666667 341.3333333333333 298.6666666666667S362.6666666666667 308.0533333333334 362.6666666666667 320S353.28 341.3333333333334 341.3333333333333 341.3333333333334M341.3333333333333 405.3333333333333C283.0933333333333 405.3333333333333 233.3866666666667 369.92 213.3333333333333 320C233.3866666666667 270.0800000000001 283.0933333333333 234.6666666666667 341.3333333333333 234.6666666666667S449.28 270.0800000000001 469.3333333333333 320C449.28 369.92 399.5733333333333 405.3333333333333 341.3333333333333 405.3333333333333M341.3333333333333 373.3333333333334C370.7733333333333 373.3333333333334 394.6666666666667 349.44 394.6666666666667 320S370.7733333333333 266.6666666666667 341.3333333333333 266.6666666666667S288 290.56 288 320S311.8933333333333 373.3333333333334 341.3333333333333 373.3333333333334M64 405.3333333333333V149.3333333333334H128V-42.6666666666666L277.3333333333333 213.3333333333334H192L215.8933333333334 266.6666666666667C201.3866666666667 282.4533333333334 189.44 300.1600000000001 181.3333333333333 320C196.0533333333333 356.48 224 386.56 258.3466666666667 405.3333333333333H64z" />
+    <glyph glyph-name="flashlight"
+      unicode="&#xF244;"
+      horiz-adv-x="512" d=" M192 234.6666666666667L128 341.3333333333334H384L320 234.6666666666667H192M384 362.6666666666667H128V405.3333333333333H384V362.6666666666667M192 -21.3333333333333V213.3333333333334H320V-21.3333333333333H192M256 170.6666666666667C244.2666666666667 170.6666666666667 234.6666666666667 161.0666666666667 234.6666666666667 149.3333333333334S244.2666666666667 128 256 128S277.3333333333333 137.6 277.3333333333333 149.3333333333334S267.7333333333334 170.6666666666667 256 170.6666666666667z" />
+    <glyph glyph-name="flashlight-off"
+      unicode="&#xF245;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L320 58.24V-21.3333333333333H192V186.24L42.6666666666667 335.5733333333334M384 341.3333333333334L320 234.6666666666667H252.16L145.4933333333334 341.3333333333334H384M384 362.6666666666667H128V405.3333333333333H384V362.6666666666667M320 213.3333333333334V166.8266666666667L273.4933333333334 213.3333333333334H320z" />
+    <glyph glyph-name="flask"
+      unicode="&#xF093;"
+      horiz-adv-x="512" d=" M128 -21.3333333333333C92.5866666666667 -21.3333333333333 64 7.2533333333333 64 42.6666666666667C64 55.4666666666667 67.84 67.4133333333334 74.6666666666667 77.44L192 281.3866666666667V320C180.2666666666667 320 170.6666666666667 329.6 170.6666666666667 341.3333333333334V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V341.3333333333334C341.3333333333333 329.6 331.7333333333334 320 320 320V281.3866666666667L437.3333333333333 77.44C444.16 67.4133333333334 448 55.4666666666666 448 42.6666666666667C448 7.2533333333333 419.4133333333333 -21.3333333333333 384 -21.3333333333333H128M106.6666666666667 42.6666666666667C106.6666666666667 30.9333333333333 116.2666666666667 21.3333333333334 128 21.3333333333334H384C395.7333333333334 21.3333333333334 405.3333333333333 30.9333333333333 405.3333333333333 42.6666666666667C405.3333333333333 47.1466666666667 403.84 51.4133333333334 401.4933333333334 54.8266666666667L352.64 139.3066666666667L298.6666666666667 85.3333333333334L190.5066666666667 193.4933333333334L110.5066666666667 54.8266666666667C108.16 51.4133333333334 106.6666666666667 47.1466666666667 106.6666666666667 42.6666666666667M277.3333333333333 234.6666666666667C265.6 234.6666666666667 256 225.0666666666667 256 213.3333333333334S265.6 192 277.3333333333333 192S298.6666666666667 201.6 298.6666666666667 213.3333333333334S289.0666666666667 234.6666666666667 277.3333333333333 234.6666666666667z" />
+    <glyph glyph-name="flask-empty"
+      unicode="&#xF094;"
+      horiz-adv-x="512" d=" M128 -21.3333333333333C92.5866666666667 -21.3333333333333 64 7.2533333333333 64 42.6666666666667C64 55.4666666666667 67.84 67.4133333333334 74.6666666666667 77.44L192 281.3866666666667V320C180.2666666666667 320 170.6666666666667 329.6 170.6666666666667 341.3333333333334V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V341.3333333333334C341.3333333333333 329.6 331.7333333333334 320 320 320V281.3866666666667L437.3333333333333 77.44C444.16 67.4133333333334 448 55.4666666666666 448 42.6666666666667C448 7.2533333333333 419.4133333333333 -21.3333333333333 384 -21.3333333333333H128z" />
+    <glyph glyph-name="flask-empty-outline"
+      unicode="&#xF095;"
+      horiz-adv-x="512" d=" M106.6666666666667 42.6666666666667C106.6666666666667 30.9333333333333 116.2666666666667 21.3333333333334 128 21.3333333333334H384C395.7333333333334 21.3333333333334 405.3333333333333 30.9333333333333 405.3333333333333 42.6666666666667C405.3333333333333 47.1466666666667 403.84 51.4133333333334 401.4933333333334 54.8266666666667L277.3333333333333 269.8666666666667V362.6666666666667H234.6666666666667V269.8666666666667L110.5066666666667 54.8266666666667C108.16 51.4133333333334 106.6666666666667 47.1466666666667 106.6666666666667 42.6666666666667M128 -21.3333333333333C92.5866666666667 -21.3333333333333 64 7.2533333333333 64 42.6666666666667C64 55.4666666666667 67.84 67.4133333333334 74.6666666666667 77.44L192 281.3866666666667V320C180.2666666666667 320 170.6666666666667 329.6 170.6666666666667 341.3333333333334V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V341.3333333333334C341.3333333333333 329.6 331.7333333333334 320 320 320V281.3866666666667L437.3333333333333 77.44C444.16 67.4133333333334 448 55.4666666666666 448 42.6666666666667C448 7.2533333333333 419.4133333333333 -21.3333333333333 384 -21.3333333333333H128z" />
+    <glyph glyph-name="flask-outline"
+      unicode="&#xF096;"
+      horiz-adv-x="512" d=" M106.6666666666667 42.6666666666667C106.6666666666667 30.9333333333333 116.2666666666667 21.3333333333334 128 21.3333333333334H384C395.7333333333334 21.3333333333334 405.3333333333333 30.9333333333333 405.3333333333333 42.6666666666667C405.3333333333333 47.1466666666667 403.84 51.4133333333334 401.4933333333334 54.8266666666667L277.3333333333333 269.8666666666667V362.6666666666667H234.6666666666667V269.8666666666667L110.5066666666667 54.8266666666667C108.16 51.4133333333334 106.6666666666667 47.1466666666667 106.6666666666667 42.6666666666667M128 -21.3333333333333C92.5866666666667 -21.3333333333333 64 7.2533333333333 64 42.6666666666667C64 55.4666666666667 67.84 67.4133333333334 74.6666666666667 77.44L192 281.3866666666667V320C180.2666666666667 320 170.6666666666667 329.6 170.6666666666667 341.3333333333334V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C322.1333333333334 405.3333333333333 341.3333333333333 386.1333333333334 341.3333333333333 362.6666666666667V341.3333333333334C341.3333333333333 329.6 331.7333333333334 320 320 320V281.3866666666667L437.3333333333333 77.44C444.16 67.4133333333334 448 55.4666666666666 448 42.6666666666667C448 7.2533333333333 419.4133333333333 -21.3333333333333 384 -21.3333333333333H128M277.3333333333333 106.6666666666667L305.92 135.2533333333333L347.0933333333333 64H164.9066666666667L221.6533333333333 162.3466666666667L277.3333333333333 106.6666666666667M266.6666666666667 192C272.64 192 277.3333333333333 187.3066666666667 277.3333333333333 181.3333333333334S272.64 170.6666666666667 266.6666666666667 170.6666666666667S256 175.36 256 181.3333333333334S260.6933333333334 192 266.6666666666667 192z" />
+    <glyph glyph-name="flattr"
+      unicode="&#xF246;"
+      horiz-adv-x="512" d=" M448 192C448 85.9733333333334 362.0266666666667 0 256 0H96L207.7866666666667 111.7866666666667L238.08 81.7066666666667L199.04 42.6666666666667H256C338.56 42.6666666666667 405.3333333333333 109.44 405.3333333333333 192V298.6666666666667L448 341.3333333333334V192M64 192C64 298.0266666666667 149.9733333333333 384 256 384H416L304.2133333333333 272.2133333333334L273.92 302.2933333333334L312.96 341.3333333333334H256C173.44 341.3333333333334 106.6666666666667 274.5600000000001 106.6666666666667 192V85.3333333333334L64 42.6666666666667V192z" />
+    <glyph glyph-name="flip-to-back"
+      unicode="&#xF247;"
+      horiz-adv-x="512" d=" M320 85.3333333333334H362.6666666666667V128H320M320 341.3333333333334H362.6666666666667V384H320M106.6666666666667 298.6666666666667H64V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H362.6666666666667V42.6666666666667H106.6666666666667M405.3333333333333 85.3333333333334C428.8 85.3333333333334 448 104.5333333333333 448 128H405.3333333333333M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M192 85.3333333333334V128H149.3333333333333C149.3333333333333 104.5333333333333 168.5333333333333 85.3333333333334 192 85.3333333333334M277.3333333333333 384H234.6666666666667V341.3333333333334H277.3333333333333M405.3333333333333 384V341.3333333333334H448C448 365.0133333333333 428.8 384 405.3333333333333 384M277.3333333333333 128H234.6666666666667V85.3333333333334H277.3333333333333M192 384C168.32 384 149.3333333333333 365.0133333333333 149.3333333333333 341.3333333333334H192M192 213.3333333333334H149.3333333333333V170.6666666666667H192M192 298.6666666666667H149.3333333333333V256H192V298.6666666666667z" />
+    <glyph glyph-name="flip-to-front"
+      unicode="&#xF248;"
+      horiz-adv-x="512" d=" M149.3333333333333 0H192V42.6666666666667H149.3333333333333M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M405.3333333333333 128H192V341.3333333333334H405.3333333333333M405.3333333333333 384H192C168.32 384 149.3333333333333 365.0133333333333 149.3333333333333 341.3333333333334V128C149.3333333333333 104.5333333333333 168.5333333333333 85.3333333333334 192 85.3333333333334H405.3333333333333C428.8 85.3333333333334 448 104.5333333333333 448 128V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M320 0H362.6666666666667V42.6666666666667H320M64 256H106.6666666666667V298.6666666666667H64M106.6666666666667 0V42.6666666666667H64C64 19.2 83.2 0 106.6666666666667 0M64 85.3333333333334H106.6666666666667V128H64M64 170.6666666666667H106.6666666666667V213.3333333333334H64V170.6666666666667z" />
+    <glyph glyph-name="floor-lamp"
+      unicode="&#xF8DC;"
+      horiz-adv-x="512" d=" M320 405.3333333333333L362.6666666666667 256H149.3333333333333L192 405.3333333333333M234.6666666666667 234.6666666666667H277.3333333333333V21.3333333333334H341.3333333333333V-21.3333333333333H170.6666666666667V21.3333333333334H234.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="floor-plan"
+      unicode="&#xF820;"
+      horiz-adv-x="512" d=" M213.3333333333333 341.3333333333334V234.6666666666667H192V341.3333333333334H106.6666666666667V170.6666666666667H192V192H213.3333333333333V85.3333333333334H192V149.3333333333334H106.6666666666667V42.6666666666667H256V85.3333333333334H277.3333333333333V42.6666666666667H405.3333333333333V85.3333333333334H448V0H64V384H448V128H405.3333333333333V234.6666666666667H277.3333333333333V128H256V256H405.3333333333333V341.3333333333334H213.3333333333333z" />
+    <glyph glyph-name="floppy"
+      unicode="&#xF249;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V330.6666666666667L394.6666666666667 384H362.6666666666667V256C362.6666666666667 244.2666666666667 353.0666666666667 234.6666666666667 341.3333333333333 234.6666666666667H170.6666666666667C158.9333333333333 234.6666666666667 149.3333333333333 244.2666666666667 149.3333333333333 256V384H106.6666666666667M256 362.6666666666667V256H320V362.6666666666667H256M149.3333333333333 192H362.6666666666667C374.4 192 384 182.4 384 170.6666666666667V42.6666666666667H128V170.6666666666667C128 182.4 137.6 192 149.3333333333333 192z" />
+    <glyph glyph-name="floppy-variant"
+      unicode="&#xF9EE;"
+      horiz-adv-x="512" d=" M64 384V0H448V384H64M256 234.6666666666667C279.4666666666667 234.6666666666667 298.6666666666667 215.4666666666667 298.6666666666667 192S279.4666666666667 149.3333333333334 256 149.3333333333334S213.3333333333333 168.5333333333334 213.3333333333333 192S232.5333333333334 234.6666666666667 256 234.6666666666667M256 128C267.7333333333334 128 277.3333333333333 118.4 277.3333333333333 106.6666666666667V42.6666666666667C277.3333333333333 30.9333333333333 267.7333333333334 21.3333333333334 256 21.3333333333334S234.6666666666667 30.9333333333333 234.6666666666667 42.6666666666667V106.6666666666667C234.6666666666667 118.4 244.2666666666667 128 256 128z" />
+    <glyph glyph-name="flower"
+      unicode="&#xF24A;"
+      horiz-adv-x="512" d=" M64 170.6666666666667C64 64.64 149.9733333333333 -21.3333333333333 256 -21.3333333333333C256 85.3333333333334 170.0266666666667 170.6666666666667 64 170.6666666666667M256 330.6666666666667C285.44 330.6666666666667 309.3333333333333 306.7733333333333 309.3333333333333 277.3333333333334S285.44 224 256 224S202.6666666666667 247.8933333333333 202.6666666666667 277.3333333333334S226.56 330.6666666666667 256 330.6666666666667M119.4666666666667 229.3333333333334C119.4666666666667 199.8933333333334 143.36 176 172.8 176C184.1066666666666 176 194.56 179.6266666666667 202.6666666666667 185.3866666666667V181.3333333333334C202.6666666666667 151.8933333333334 226.56 128 256 128S309.3333333333333 151.8933333333334 309.3333333333333 181.3333333333334V185.3866666666667C317.44 179.6266666666667 327.8933333333333 176 339.2 176C368.64 176 392.5333333333333 199.8933333333334 392.5333333333333 229.3333333333334C392.5333333333333 250.6666666666667 379.9466666666666 268.8 362.0266666666667 277.3333333333334C379.9466666666666 285.8666666666667 392.5333333333333 304.2133333333334 392.5333333333333 325.3333333333334C392.5333333333333 354.7733333333333 368.64 378.6666666666667 339.2 378.6666666666667C327.8933333333333 378.6666666666667 317.44 375.2533333333334 309.3333333333333 369.28V373.3333333333334C309.3333333333333 402.7733333333333 285.44 426.6666666666667 256 426.6666666666667S202.6666666666667 402.7733333333333 202.6666666666667 373.3333333333334V369.28C194.56 375.2533333333334 184.1066666666667 378.6666666666667 172.8 378.6666666666667C143.36 378.6666666666667 119.4666666666667 354.7733333333333 119.4666666666667 325.3333333333334C119.4666666666667 304.2133333333334 132.0533333333333 285.8666666666667 149.9733333333333 277.3333333333334C132.0533333333333 268.8 119.4666666666667 250.6666666666667 119.4666666666667 229.3333333333334M256 -21.3333333333333C362.0266666666667 -21.3333333333333 448 64.64 448 170.6666666666667C341.3333333333333 170.6666666666667 256 85.3333333333334 256 -21.3333333333333z" />
+    <glyph glyph-name="flower-outline"
+      unicode="&#xF9EF;"
+      horiz-adv-x="512" d=" M184.7466666666667 169.1733333333334C147.6266666666667 169.1733333333334 117.3333333333333 199.2533333333333 117.3333333333333 236.1600000000001C117.3333333333333 251.3066666666667 122.88 265.8133333333334 132.0533333333333 277.3333333333334C123.0933333333333 288.8533333333334 117.3333333333333 303.36 117.3333333333333 318.5066666666667C117.3333333333333 355.4133333333334 147.84 385.4933333333334 184.7466666666667 385.4933333333334L193.92 384.8533333333334C203.9466666666667 409.3866666666667 228.0533333333333 426.6666666666667 256 426.6666666666667S308.0533333333333 409.3866666666667 318.08 384.8533333333334L327.2533333333334 385.4933333333334C364.16 385.4933333333334 394.6666666666667 355.4133333333334 394.6666666666667 318.5066666666667C394.6666666666667 303.36 389.12 288.8533333333334 379.9466666666666 277.3333333333334C388.9066666666667 265.8133333333334 394.6666666666667 251.3066666666667 394.6666666666667 236.1600000000001C394.6666666666667 199.2533333333333 364.16 169.1733333333334 327.2533333333334 169.1733333333334L318.08 169.8133333333333C308.0533333333333 145.28 283.9466666666667 128 256 128S203.9466666666667 145.28 193.92 169.8133333333334L184.7466666666667 169.1733333333334M256 170.6666666666667C269.2266666666667 170.6666666666667 279.8933333333333 181.3333333333334 280.32 194.1333333333333L277.9733333333334 217.3866666666667C271.1466666666667 214.8266666666667 263.68 213.3333333333334 256 213.3333333333334S241.0666666666667 214.8266666666667 234.6666666666667 217.3866666666667L231.68 194.1333333333333C232.1066666666667 181.3333333333334 242.7733333333334 170.6666666666667 256 170.6666666666667M327.2533333333334 211.84C340.6933333333334 211.84 352 222.72 352 236.3733333333334C352 245.3333333333334 346.24 254.2933333333334 337.7066666666667 258.3466666666667L318.9333333333333 267.3066666666667C316.3733333333334 251.52 308.0533333333333 237.8666666666667 296.32 228.2666666666667L313.6 216.1066666666667C317.44 213.3333333333333 322.1333333333334 211.84 327.2533333333334 211.84M313.3866666666667 338.56L295.8933333333333 326.6133333333334C307.84 317.0133333333333 316.16 303.36 318.72 288L337.4933333333334 296.5333333333334C346.24 300.8 352 309.3333333333334 352 318.5066666666667C352 331.9466666666667 340.6933333333334 342.8266666666667 327.2533333333334 342.8266666666667C322.3466666666667 342.8266666666667 317.6533333333333 341.3333333333334 313.3866666666667 338.56M256 384C242.7733333333334 384 232.1066666666667 373.3333333333334 231.68 360.5333333333334L234.6666666666667 337.28C241.0666666666667 339.8400000000001 248.32 341.3333333333334 256 341.3333333333334S271.1466666666667 339.8400000000001 277.9733333333333 337.28L280.32 360.5333333333333C279.8933333333333 373.3333333333334 269.2266666666667 384 256 384M184.7466666666667 342.8266666666667C171.3066666666667 342.8266666666667 160 331.9466666666667 160 318.5066666666667C160 309.3333333333334 165.76 300.8 174.2933333333333 296.5333333333334L193.0666666666667 288C195.6266666666667 303.36 203.9466666666667 317.0133333333333 215.68 326.6133333333334L198.4 338.5600000000001C194.56 341.3333333333334 189.8666666666667 342.8266666666667 184.7466666666667 342.8266666666667M174.2933333333333 258.1333333333334C165.76 253.8666666666667 160 245.3333333333334 160 236.3733333333334C160 222.9333333333333 171.3066666666667 212.0533333333334 184.7466666666667 212.0533333333334C189.6533333333333 212.0533333333334 194.3466666666666 213.3333333333334 198.6133333333334 216.32L215.8933333333334 228.0533333333334C203.9466666666667 237.6533333333333 195.6266666666667 251.3066666666667 193.0666666666667 266.6666666666667L174.2933333333333 258.1333333333334M256 -21.3333333333333C149.9733333333333 -21.3333333333333 64 64.64 64 170.6666666666667C170.0266666666667 170.6666666666667 256 84.6933333333333 256 -21.3333333333333C256 84.6933333333333 341.9733333333334 170.6666666666667 448 170.6666666666667C448 64.64 362.0266666666667 -21.3333333333333 256 -21.3333333333333M308.0533333333333 30.72C348.5866666666667 45.8666666666667 380.8 78.08 395.9466666666666 118.6133333333334C355.4133333333333 103.6800000000001 323.2 71.2533333333335 308.0533333333333 30.72M116.0533333333333 118.6133333333334C131.1999999999999 78.0800000000001 163.4133333333333 45.8666666666667 203.9466666666666 30.72C189.0133333333333 71.2533333333333 156.5866666666666 103.4666666666667 116.0533333333333 118.6133333333334z" />
+    <glyph glyph-name="flower-tulip"
+      unicode="&#xF9F0;"
+      horiz-adv-x="512" d=" M64 170.6666666666667C64 64.64 149.9733333333333 -21.3333333333333 256 -21.3333333333333C256 84.6933333333333 170.0266666666667 170.6666666666667 64 170.6666666666667M256 -21.3333333333333C362.0266666666667 -21.3333333333333 448 64.64 448 170.6666666666667C341.9733333333334 170.6666666666667 256 84.6933333333333 256 -21.3333333333333M384 384V277.3333333333334C384 206.72 326.6133333333334 149.3333333333334 256 149.3333333333334S128 206.72 128 277.3333333333334V384C143.7866666666667 384 159.36 381.44 174.08 375.68C185.8133333333333 370.7733333333333 196.2666666666667 363.52 205.0133333333333 354.3466666666667L256 405.3333333333333L306.9866666666667 354.3466666666667C315.7333333333334 363.52 326.1866666666667 370.7733333333333 337.92 375.68C352.64 381.44 368.2133333333334 384 384 384z" />
+    <glyph glyph-name="flower-tulip-outline"
+      unicode="&#xF9F1;"
+      horiz-adv-x="512" d=" M64 170.6666666666667C64 64.64 149.9733333333333 -21.3333333333333 256 -21.3333333333333C256 84.6933333333333 170.0266666666667 170.6666666666667 64 170.6666666666667M116.0533333333333 118.6133333333334C156.8 103.4666666666667 188.8 71.4666666666667 203.9466666666666 30.72C163.2 45.8666666666667 131.2 77.8666666666667 116.0533333333333 118.6133333333334M256 -21.3333333333333C362.0266666666667 -21.3333333333333 448 64.64 448 170.6666666666667C341.9733333333334 170.6666666666667 256 84.6933333333333 256 -21.3333333333333M307.6266666666667 30.5066666666667C322.3466666666667 71.68 354.9866666666667 104.3200000000001 396.16 119.04C381.0133333333333 78.08 348.5866666666667 45.6533333333334 307.6266666666667 30.5066666666667M256 149.3333333333334C326.6133333333334 149.3333333333334 384 206.72 384 277.3333333333334V384C368.2133333333334 384 352.64 381.44 337.92 375.68C326.1866666666666 370.7733333333333 315.7333333333334 363.52 306.9866666666667 354.3466666666667L256 405.3333333333333L205.0133333333333 354.3466666666667C196.2666666666667 363.52 185.8133333333333 370.7733333333333 174.08 375.68C159.36 381.44 143.7866666666667 384 128 384V277.3333333333334C128 206.72 185.3866666666667 149.3333333333334 256 149.3333333333334M170.6666666666667 328.32L204.16 293.12L256 344.9600000000001L307.84 293.12L341.3333333333333 328.32V277.3333333333334C341.3333333333333 230.1866666666667 303.1466666666667 192 256 192S170.6666666666667 230.1866666666667 170.6666666666667 277.3333333333334V328.32z" />
+    <glyph glyph-name="folder"
+      unicode="&#xF24B;"
+      horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V277.3333333333334C469.3333333333333 301.0133333333333 450.1333333333334 320 426.6666666666667 320H256L213.3333333333333 362.6666666666667z" />
+    <glyph glyph-name="folder-account"
+      unicode="&#xF24C;"
+      horiz-adv-x="512" d=" M405.3333333333333 85.3333333333334H234.6666666666667V106.6666666666667C234.6666666666667 135.04 291.6266666666667 149.3333333333334 320 149.3333333333334S405.3333333333333 135.04 405.3333333333333 106.6666666666667M320 256C343.4666666666667 256 362.6666666666667 236.8 362.6666666666667 213.3333333333334S343.4666666666667 170.6666666666667 320 170.6666666666667S277.3333333333333 189.8666666666667 277.3333333333333 213.3333333333334C277.3333333333333 237.0133333333333 296.5333333333333 256 320 256M426.6666666666667 320H256L213.3333333333333 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V277.3333333333334C469.3333333333333 301.0133333333333 450.1333333333334 320 426.6666666666667 320z" />
+    <glyph glyph-name="folder-account-outline"
+      unicode="&#xFB78;"
+      horiz-adv-x="512" d=" M405.3333333333333 85.3333333333334H234.6666666666667V106.6666666666667C234.6666666666667 135.04 291.6266666666667 149.3333333333334 320 149.3333333333334S405.3333333333333 135.04 405.3333333333333 106.6666666666667V85.3333333333334M320 256C343.4666666666667 256 362.6666666666667 236.8 362.6666666666667 213.3333333333334S343.4666666666667 170.6666666666667 320 170.6666666666667S277.3333333333333 189.8666666666667 277.3333333333333 213.3333333333334C277.3333333333333 237.0133333333333 296.5333333333333 256 320 256M426.6666666666667 320C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H213.3333333333333L256 320H426.6666666666667M426.6666666666667 64V277.3333333333334H238.2933333333333L195.6266666666667 320H85.3333333333333V64H426.6666666666667z" />
+    <glyph glyph-name="folder-clock"
+      unicode="&#xFAB9;"
+      horiz-adv-x="512" d=" M64 362.6666666666667C40.32 362.6666666666667 21.3333333333333 343.68 21.3333333333333 320V64C21.3333333333333 40.5333333333333 40.5333333333333 21.3333333333334 64 21.3333333333334H218.88C246.8266666666667 -18.7733333333333 292.48 -42.6666666666666 341.3333333333333 -42.6666666666666C423.8933333333333 -42.6666666666666 490.6666666666666 24.1066666666667 490.6666666666666 106.6666666666667C490.6666666666666 145.7066666666667 475.3066666666667 183.04 448 210.9866666666667V277.3333333333334C448 301.0133333333333 428.8 320 405.3333333333333 320H234.6666666666667L192 362.6666666666667H64M341.3333333333333 213.3333333333334C400.2133333333333 213.3333333333334 448 165.5466666666667 448 106.6666666666667S400.2133333333333 0 341.3333333333333 0S234.6666666666667 47.7866666666668 234.6666666666667 106.6666666666667S282.4533333333333 213.3333333333334 341.3333333333333 213.3333333333334M320 192V85.3333333333334L397.0133333333333 39.2533333333333L413.0133333333333 65.28L352 101.3333333333334V192H320z" />
+    <glyph glyph-name="folder-clock-outline"
+      unicode="&#xFABA;"
+      horiz-adv-x="512" d=" M320 192H352V101.3333333333334L413.0133333333333 65.28L397.0133333333333 39.2533333333333L320 85.3333333333334V192M405.3333333333333 277.3333333333334H64V64H198.1866666666667C194.1333333333333 77.44 192 91.7333333333334 192 106.6666666666667C192 189.2266666666667 258.7733333333333 256 341.3333333333333 256C364.16 256 385.92 250.88 405.3333333333333 241.7066666666667V277.3333333333334M64 21.3333333333334C40.32 21.3333333333334 21.3333333333333 40.5333333333333 21.3333333333333 64V320C21.3333333333333 343.4666666666667 40.5333333333333 362.6666666666667 64 362.6666666666667H192L234.6666666666667 320H405.3333333333333C428.8 320 448 300.8 448 277.3333333333334V211.2C474.4533333333333 184.3200000000001 490.6666666666666 147.4133333333334 490.6666666666666 106.6666666666667C490.6666666666666 24.1066666666667 423.8933333333333 -42.6666666666666 341.3333333333333 -42.6666666666666C290.56 -42.6666666666666 245.3333333333333 -17.28 218.6666666666667 21.3333333333334H64M341.3333333333333 213.3333333333334C282.4533333333333 213.3333333333334 234.6666666666667 165.5466666666667 234.6666666666667 106.6666666666667S282.4533333333333 0 341.3333333333333 0S448 47.7866666666668 448 106.6666666666667S400.2133333333333 213.3333333333334 341.3333333333333 213.3333333333334z" />
+    <glyph glyph-name="folder-download"
+      unicode="&#xF24D;"
+      horiz-adv-x="512" d=" M426.6666666666667 320C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.6533333333333 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.68 61.6533333333333 362.6666666666667 85.3333333333333 362.6666666666667H213.3333333333333L256 320H426.6666666666667M410.6666666666667 170.6666666666667H341.3333333333333V256H298.6666666666667V170.6666666666667H229.3333333333333L320 80" />
+    <glyph glyph-name="folder-edit"
+      unicode="&#xF8DD;"
+      horiz-adv-x="512" d=" M64 362.6666666666667C40.32 362.6666666666667 21.3333333333333 343.68 21.3333333333333 320V64C21.3333333333333 40.5333333333333 40.5333333333333 21.3333333333334 64 21.3333333333334H234.6666666666667V61.6533333333334L448 274.9866666666667V277.3333333333334C448 301.0133333333333 428.8 320 405.3333333333333 320H234.6666666666667L192 362.6666666666667H64M448.8533333333333 210.56C445.8666666666666 210.56 442.88 209.28 440.5333333333333 206.9333333333334L419.2 185.6L462.9333333333333 141.8666666666667L484.2666666666667 163.2000000000001C488.9599999999999 167.6800000000001 488.9599999999999 175.1466666666668 484.2666666666667 179.6266666666667L456.9599999999999 206.9333333333334C454.6133333333333 209.28 451.84 210.56 448.8533333333333 210.56M406.8266666666667 173.2266666666667L277.3333333333333 43.9466666666667V0H321.28L450.56 129.4933333333334L406.8266666666667 173.2266666666667z" />
+    <glyph glyph-name="folder-google-drive"
+      unicode="&#xF24E;"
+      horiz-adv-x="512" d=" M293.3333333333333 256H344.32L405.3333333333333 149.3333333333334H342.4L288 246.1866666666667M390.4 85.3333333333334H272L301.8666666666667 138.6666666666667H411.0933333333333L416.64 128.8533333333334M245.3333333333333 85.3333333333334L221.8666666666667 130.9866666666667L282.4533333333333 236.8000000000001L314.4533333333333 180.0533333333334L261.3333333333333 85.3333333333334M426.6666666666667 320H256L213.3333333333333 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V277.3333333333334C469.3333333333333 301.0133333333333 450.1333333333334 320 426.6666666666667 320z" />
+    <glyph glyph-name="folder-image"
+      unicode="&#xF24F;"
+      horiz-adv-x="512" d=" M106.6666666666667 85.3333333333334L202.6666666666667 213.3333333333334L277.3333333333333 117.3333333333334L330.6666666666667 181.3333333333334L405.3333333333333 85.3333333333334M426.6666666666667 320H256L213.3333333333333 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V277.3333333333334C469.3333333333333 300.8 450.1333333333334 320 426.6666666666667 320z" />
+    <glyph glyph-name="folder-key"
+      unicode="&#xF8AB;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V277.3333333333334C469.3333333333333 300.8 450.1333333333334 320 426.6666666666667 320H256L213.3333333333333 362.6666666666667M234.6666666666667 234.6666666666667C262.6133333333334 234.6666666666667 286.2933333333333 216.7466666666667 295.04 192H405.3333333333333V149.3333333333334H384V106.6666666666667H341.3333333333333V149.3333333333334H295.04C286.2933333333333 124.3733333333333 262.6133333333334 106.6666666666667 234.6666666666667 106.6666666666667C199.2533333333333 106.6666666666667 170.6666666666667 135.2533333333333 170.6666666666667 170.6666666666667S199.2533333333333 234.6666666666667 234.6666666666667 234.6666666666667M234.6666666666667 192C222.9333333333333 192 213.3333333333333 182.4 213.3333333333333 170.6666666666667C213.3333333333333 158.72 222.9333333333333 149.3333333333334 234.6666666666667 149.3333333333334S256 158.9333333333333 256 170.6666666666667S246.4 192 234.6666666666667 192z" />
+    <glyph glyph-name="folder-key-network"
+      unicode="&#xF8AC;"
+      horiz-adv-x="512" d=" M128 362.6666666666667C104.32 362.6666666666667 85.3333333333333 343.68 85.3333333333333 320V149.3333333333334C85.3333333333333 125.8666666666667 104.5333333333333 106.6666666666667 128 106.6666666666667H234.6666666666667V64H213.3333333333333C201.6 64 192 54.4 192 42.6666666666667H42.6666666666667V0H192C192 -11.7333333333333 201.6 -21.3333333333333 213.3333333333333 -21.3333333333333H298.6666666666667C310.4 -21.3333333333333 320 -11.7333333333333 320 0H469.3333333333333V42.6666666666667H320C320 54.4 310.4 64 298.6666666666667 64H277.3333333333333V106.6666666666667H384C407.4666666666667 106.6666666666667 426.6666666666667 125.8666666666667 426.6666666666667 149.3333333333334V277.3333333333334C426.6666666666667 300.8 407.4666666666667 320 384 320H256L213.3333333333333 362.6666666666667H128M192 277.3333333333334C219.9466666666667 277.3333333333334 243.6266666666667 259.6266666666667 252.3733333333334 234.6666666666667H362.6666666666667V192H341.3333333333333V149.3333333333334H298.6666666666667V192H252.3733333333334C243.6266666666667 167.04 219.9466666666667 149.3333333333334 192 149.3333333333334C156.5866666666667 149.3333333333334 128 177.92 128 213.3333333333334S156.5866666666667 277.3333333333334 192 277.3333333333334M192 234.6666666666667C180.2666666666667 234.6666666666667 170.6666666666667 225.0666666666667 170.6666666666667 213.3333333333334C170.6666666666667 201.3866666666667 180.2666666666667 192 192 192S213.3333333333333 201.6 213.3333333333333 213.3333333333334S203.7333333333334 234.6666666666667 192 234.6666666666667z" />
+    <glyph glyph-name="folder-lock"
+      unicode="&#xF250;"
+      horiz-adv-x="512" d=" M426.6666666666667 320C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.6533333333333 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.68 61.6533333333333 362.6666666666667 85.3333333333333 362.6666666666667H213.3333333333333L256 320H426.6666666666667M405.3333333333333 85.3333333333334V170.6666666666667H384V192C384 227.4133333333334 355.4133333333333 256 320 256S256 227.4133333333334 256 192V170.6666666666667H234.6666666666667V85.3333333333334H405.3333333333333M320 213.3333333333334C331.7333333333334 213.3333333333334 341.3333333333333 203.7333333333334 341.3333333333333 192V170.6666666666667H298.6666666666667V192C298.6666666666667 203.7333333333334 308.2666666666667 213.3333333333334 320 213.3333333333334z" />
+    <glyph glyph-name="folder-lock-open"
+      unicode="&#xF251;"
+      horiz-adv-x="512" d=" M426.6666666666667 320C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.6533333333333 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.68 61.6533333333333 362.6666666666667 85.3333333333333 362.6666666666667H213.3333333333333L256 320H426.6666666666667M405.3333333333333 85.3333333333334V170.6666666666667H298.6666666666667V213.3333333333334C298.6666666666667 225.0666666666667 308.2666666666667 234.6666666666667 320 234.6666666666667S341.3333333333333 225.0666666666667 341.3333333333333 213.3333333333334H384C384 248.7466666666667 355.4133333333333 277.3333333333334 320 277.3333333333334S256 248.7466666666667 256 213.3333333333334V170.6666666666667H234.6666666666667V85.3333333333334H405.3333333333333z" />
+    <glyph glyph-name="folder-move"
+      unicode="&#xF252;"
+      horiz-adv-x="512" d=" M298.6666666666667 64V128H213.3333333333333V213.3333333333334H298.6666666666667V277.3333333333334L405.3333333333333 170.6666666666667M426.6666666666667 320H256L213.3333333333333 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V277.3333333333334C469.3333333333333 301.0133333333333 450.1333333333334 320 426.6666666666667 320z" />
+    <glyph glyph-name="folder-multiple"
+      unicode="&#xF253;"
+      horiz-adv-x="512" d=" M469.3333333333333 362.6666666666667H298.6666666666667L256 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V106.6666666666667C85.3333333333333 83.2 104.5333333333333 64 128 64H469.3333333333333C492.8 64 512 83.2 512 106.6666666666667V320C512 343.4666666666667 492.8 362.6666666666667 469.3333333333333 362.6666666666667M42.6666666666667 320H0V21.3333333333334C0 -2.1333333333333 19.2 -21.3333333333333 42.6666666666667 -21.3333333333333H426.6666666666667V21.3333333333334H42.6666666666667V320z" />
+    <glyph glyph-name="folder-multiple-image"
+      unicode="&#xF254;"
+      horiz-adv-x="512" d=" M149.3333333333333 128L245.3333333333333 256L320 160L373.3333333333333 224L448 128M469.3333333333333 362.6666666666667H298.6666666666667L256 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V106.6666666666667C85.3333333333333 83.2 104.5333333333333 64 128 64H469.3333333333333C492.8 64 512 83.2 512 106.6666666666667V320C512 343.4666666666667 492.8 362.6666666666667 469.3333333333333 362.6666666666667M42.6666666666667 320H0V21.3333333333334C0 -2.1333333333333 19.2 -21.3333333333333 42.6666666666667 -21.3333333333333H426.6666666666667V21.3333333333334H42.6666666666667V320z" />
+    <glyph glyph-name="folder-multiple-outline"
+      unicode="&#xF255;"
+      horiz-adv-x="512" d=" M469.3333333333333 362.6666666666667C492.8 362.6666666666667 512 343.4666666666667 512 320V106.6666666666667C512 83.2 492.8 64 469.3333333333333 64H128C104.5333333333333 64 85.3333333333333 83.2 85.3333333333333 106.6666666666667V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333H256L298.6666666666667 362.6666666666667H469.3333333333333M42.6666666666667 320V21.3333333333334H426.6666666666667V-21.3333333333333H42.6666666666667C19.2 -21.3333333333333 0 -2.1333333333333 0 21.3333333333334V320H42.6666666666667M128 320V106.6666666666667H469.3333333333333V320H128z" />
+    <glyph glyph-name="folder-network"
+      unicode="&#xF86F;"
+      horiz-adv-x="512" d=" M64 149.3333333333334V362.6666666666667C64 386.1333333333334 83.2 405.3333333333333 106.6666666666667 405.3333333333333H234.6666666666667L277.3333333333333 362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320V149.3333333333334C448 125.8666666666667 428.8 106.6666666666667 405.3333333333333 106.6666666666667H277.3333333333333V64H298.6666666666667C310.4 64 320 54.4 320 42.6666666666667H469.3333333333333V0H320C320 -11.7333333333333 310.4 -21.3333333333333 298.6666666666667 -21.3333333333333H213.3333333333333C201.6 -21.3333333333333 192 -11.7333333333333 192 0H42.6666666666667V42.6666666666667H192C192 54.4 201.6 64 213.3333333333333 64H234.6666666666667V106.6666666666667H106.6666666666667C83.2 106.6666666666667 64 125.8666666666667 64 149.3333333333334z" />
+    <glyph glyph-name="folder-open"
+      unicode="&#xF76F;"
+      horiz-adv-x="512" d=" M405.3333333333333 21.3333333333334H85.3333333333333C61.6533333333333 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.68 61.6533333333333 362.6666666666667 85.3333333333333 362.6666666666667H213.3333333333333L256 320H405.3333333333333C428.8 320 448 300.8 448 277.3333333333334H85.3333333333333V64L130.9866666666667 234.6666666666667H495.1466666666666L446.5066666666667 53.3333333333334C441.6 34.7733333333333 424.9599999999999 21.3333333333334 405.3333333333333 21.3333333333334z" />
+    <glyph glyph-name="folder-outline"
+      unicode="&#xF256;"
+      horiz-adv-x="512" d=" M426.6666666666667 64H85.3333333333333V277.3333333333334H426.6666666666667M426.6666666666667 320H256L213.3333333333333 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V277.3333333333334C469.3333333333333 301.0133333333333 450.1333333333334 320 426.6666666666667 320z" />
+    <glyph glyph-name="folder-plus"
+      unicode="&#xF257;"
+      horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667L256 320H426.6666666666667C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.6533333333333 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.68 61.6533333333333 362.6666666666667 85.3333333333333 362.6666666666667H213.3333333333333M320 256V192H256V149.3333333333334H320V85.3333333333334H362.6666666666667V149.3333333333334H426.6666666666667V192H362.6666666666667V256H320z" />
+    <glyph glyph-name="folder-plus-outline"
+      unicode="&#xFB79;"
+      horiz-adv-x="512" d=" M426.6666666666667 320H256L213.3333333333333 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.3200000000001 61.6533333333333 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.3466666666667 21.3333333333334 469.3333333333333 40.3200000000001 469.3333333333333 64V277.3333333333334C469.3333333333333 301.0133333333333 450.3466666666667 320 426.6666666666667 320M426.6666666666667 64H85.3333333333333V320H195.6266666666667L238.2933333333333 277.3333333333334H426.6666666666667V64M256 149.3333333333334H298.6666666666667V106.6666666666667H341.3333333333333V149.3333333333334H384V192H341.3333333333333V234.6666666666667H298.6666666666667V192H256V149.3333333333334z" />
+    <glyph glyph-name="folder-remove"
+      unicode="&#xF258;"
+      horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667L256 320H426.6666666666667C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.6533333333333 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.68 61.6533333333333 362.6666666666667 85.3333333333333 362.6666666666667H213.3333333333333M265.8133333333334 215.8933333333334L311.2533333333334 170.6666666666667L265.8133333333334 125.44L296.1066666666667 95.1466666666667L341.3333333333333 140.5866666666667L386.56 95.1466666666667L416.8533333333333 125.4400000000001L371.4133333333333 170.6666666666667L416.8533333333333 215.8933333333334L386.56 246.1866666666667L341.3333333333333 200.7466666666667L296.1066666666667 246.1866666666667L265.8133333333333 215.8933333333333z" />
+    <glyph glyph-name="folder-remove-outline"
+      unicode="&#xFB7A;"
+      horiz-adv-x="512" d=" M244.48 215.8933333333333L274.7733333333333 246.1866666666667L320 200.7466666666667L365.2266666666667 246.1866666666667L395.52 215.8933333333333L350.08 170.6666666666667L395.52 125.44L365.2266666666666 95.1466666666667L320 140.5866666666667L274.7733333333333 95.1466666666667L244.48 125.4400000000001L289.92 170.6666666666667L244.48 215.8933333333334M426.6666666666667 320C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H213.3333333333333L256 320H426.6666666666667M426.6666666666667 64V277.3333333333334H238.2933333333333L195.6266666666667 320H85.3333333333333V64H426.6666666666667z" />
+    <glyph glyph-name="folder-search"
+      unicode="&#xF967;"
+      horiz-adv-x="512" d=" M352 192C405.3333333333333 192 448 149.3333333333334 448 96C448 77.2266666666667 442.6666666666667 59.52 433.28 44.8000000000001L498.9866666666667 -21.3333333333333L469.3333333333333 -50.9866666666667L402.7733333333333 14.5066666666667C388.0533333333333 5.3333333333334 370.56 0 352 0C298.6666666666667 0 256 42.6666666666667 256 96S298.6666666666667 192 352 192M352 149.3333333333334C322.56 149.3333333333334 298.6666666666667 125.44 298.6666666666667 96S322.56 42.6666666666667 352 42.6666666666667S405.3333333333333 66.5600000000001 405.3333333333333 96S381.44 149.3333333333334 352 149.3333333333334M192 362.6666666666667L234.6666666666667 320H405.3333333333333C428.8 320 448 300.8 448 277.3333333333334V196.0533333333334C423.04 219.9466666666667 389.3333333333333 234.6666666666667 352 234.6666666666667C275.4133333333333 234.6666666666667 213.3333333333333 172.5866666666667 213.3333333333333 96C213.3333333333333 68.48 221.2266666666666 42.6666666666667 234.6666666666667 21.3333333333334H64C40.32 21.3333333333334 21.3333333333333 40.5333333333333 21.3333333333333 64V320C21.3333333333333 343.68 40.32 362.6666666666667 64 362.6666666666667H192z" />
+    <glyph glyph-name="folder-search-outline"
+      unicode="&#xF968;"
+      horiz-adv-x="512" d=" M352 192C405.3333333333333 192 448 149.3333333333334 448 96C448 77.2266666666667 442.6666666666667 59.52 433.28 44.8000000000001L498.9866666666667 -21.3333333333333L469.3333333333333 -50.9866666666667L402.7733333333333 14.5066666666667C388.0533333333333 5.3333333333334 370.56 0 352 0C298.6666666666667 0 256 42.6666666666667 256 96S298.6666666666667 192 352 192M352 149.3333333333334C322.56 149.3333333333334 298.6666666666667 125.44 298.6666666666667 96S322.56 42.6666666666667 352 42.6666666666667S405.3333333333333 66.5600000000001 405.3333333333333 96S381.44 149.3333333333334 352 149.3333333333334M405.3333333333333 277.3333333333334H64V64H216.96C220.5866666666667 48.64 226.7733333333334 34.3466666666667 234.6666666666667 21.3333333333334H64C40.32 21.3333333333334 21.3333333333333 40.5333333333333 21.3333333333333 64V320C21.3333333333333 343.68 40.32 362.6666666666667 64 362.6666666666667H192L234.6666666666667 320H405.3333333333333C428.8 320 448 300.8 448 277.3333333333334V196.0533333333334C435.6266666666667 207.7866666666667 421.3333333333333 217.3866666666667 405.3333333333333 224V277.3333333333334z" />
+    <glyph glyph-name="folder-star"
+      unicode="&#xF69C;"
+      horiz-adv-x="512" d=" M426.6666666666667 320H256L213.3333333333333 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V277.3333333333334C469.3333333333333 300.8 450.1333333333334 320 426.6666666666667 320M382.7200000000001 85.3333333333334L320 122.0266666666667L257.28 85.3333333333334L273.92 156.3733333333333L218.6666666666667 204.16L291.4133333333333 210.3466666666667L320 277.3333333333334L348.5866666666667 210.3466666666667L421.3333333333333 204.16L366.08 156.3733333333333L382.7200000000001 85.3333333333334z" />
+    <glyph glyph-name="folder-star-outline"
+      unicode="&#xFB7B;"
+      horiz-adv-x="512" d=" M426.6666666666667 320H256L213.3333333333333 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V277.3333333333334C469.3333333333333 300.8 450.1333333333334 320 426.6666666666667 320M426.6666666666667 64H85.3333333333333V320H195.6266666666667L238.2933333333333 277.3333333333334H426.6666666666667V64M279.04 148.48L264.32 85.3333333333334L320 117.9733333333334L375.68 85.3333333333334L360.9599999999999 148.48L410.0266666666667 190.9333333333334L345.3866666666666 196.48L320 256L294.6133333333334 196.48L229.9733333333334 190.9333333333334L279.04 148.48z" />
+    <glyph glyph-name="folder-upload"
+      unicode="&#xF259;"
+      horiz-adv-x="512" d=" M426.6666666666667 320C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H213.3333333333333L256 320H426.6666666666667M229.3333333333333 170.6666666666667H298.6666666666667V85.3333333333334H341.3333333333333V170.6666666666667H410.6666666666667L320 261.3333333333334" />
+    <glyph glyph-name="font-awesome"
+      unicode="&#xF03A;"
+      horiz-adv-x="512" d=" M128 384C157.44 384 181.3333333333333 360.1066666666667 181.3333333333333 330.6666666666667C181.3333333333333 308.6933333333334 168.1066666666667 289.92 149.3333333333333 281.8133333333334V263.2533333333334C173.0133333333333 269.6533333333334 207.36 277.3333333333334 234.6666666666667 277.3333333333334C259.2 277.3333333333334 274.9866666666667 272.64 288.8533333333333 268.3733333333334C301.44 264.5333333333334 312.5333333333333 261.3333333333334 330.6666666666667 261.3333333333334C365.44 261.3333333333334 392.5333333333333 273.4933333333334 395.52 274.9866666666667C398.5066666666667 276.48 401.92 277.3333333333334 405.3333333333333 277.3333333333334C417.0666666666667 277.3333333333334 426.6666666666667 267.7333333333334 426.6666666666667 256V85.3333333333334C426.6666666666667 77.2266666666667 422.1866666666666 69.9733333333334 414.9333333333333 66.3466666666667C413.44 65.4933333333333 377.8133333333334 48 330.6666666666667 48C306.9866666666667 48 286.9333333333333 52.2666666666667 267.52 56.5333333333333C249.3866666666667 60.3733333333333 232.32 64 213.3333333333333 64C188.8 64 163.6266666666667 55.68 149.3333333333333 49.92V-21.3333333333333H106.6666666666667V281.8133333333334C87.8933333333333 289.92 74.6666666666667 308.6933333333334 74.6666666666667 330.6666666666667C74.6666666666667 360.1066666666667 98.56 384 128 384z" />
+    <glyph glyph-name="food"
+      unicode="&#xF25A;"
+      horiz-adv-x="512" d=" M330.6666666666667 0L298.6666666666667 277.3333333333334H346.24L322.1333333333334 374.1866666666667L359.2533333333334 384L385.92 277.3333333333334H469.3333333333333L437.3333333333333 0H330.6666666666667M106.6666666666667 213.3333333333334H213.3333333333333C248.7466666666667 213.3333333333334 277.3333333333333 184.7466666666667 277.3333333333333 149.3333333333334H42.6666666666667C42.6666666666667 184.7466666666667 71.2533333333333 213.3333333333334 106.6666666666667 213.3333333333334M277.3333333333333 64C277.3333333333333 28.5866666666667 248.7466666666667 0 213.3333333333333 0H106.6666666666667C71.2533333333333 0 42.6666666666667 28.5866666666667 42.6666666666667 64H277.3333333333333M64 128H170.6666666666667L202.6666666666667 96L234.6666666666667 128H256C267.7333333333334 128 277.3333333333333 118.4 277.3333333333333 106.6666666666667S267.7333333333334 85.3333333333334 256 85.3333333333334H64C52.2666666666667 85.3333333333334 42.6666666666667 94.9333333333333 42.6666666666667 106.6666666666667S52.2666666666667 128 64 128z" />
+    <glyph glyph-name="food-apple"
+      unicode="&#xF25B;"
+      horiz-adv-x="512" d=" M426.6666666666667 234.6666666666667C469.3333333333333 170.6666666666667 362.6666666666667 -21.3333333333333 320 -21.3333333333333S277.3333333333333 0 256 0S234.6666666666667 -21.3333333333333 192 -21.3333333333333S42.6666666666667 170.6666666666667 85.3333333333333 234.6666666666667S192 298.6666666666667 234.6666666666667 277.3333333333334V341.3333333333334C114.7733333333333 275.8400000000001 87.68 367.36 87.68 367.36S144.4266666666667 443.9466666666667 234.6666666666667 341.3333333333334V384H277.3333333333333V277.3333333333334C320 298.6666666666667 384 298.6666666666667 426.6666666666667 234.6666666666667z" />
+    <glyph glyph-name="food-croissant"
+      unicode="&#xF7C7;"
+      horiz-adv-x="512" d=" M469.3333333333333 42.6666666666667L405.3333333333333 85.3333333333334L469.3333333333333 128V42.6666666666667M320 128L405.3333333333333 256L469.3333333333333 170.6666666666667L384 106.6666666666667L320 128M106.6666666666667 85.3333333333334L42.6666666666667 42.6666666666667V128L106.6666666666667 85.3333333333334M192 128L128 106.6666666666667L42.6666666666667 170.6666666666667L106.6666666666667 256L192 128M298.6666666666667 320L384 277.3333333333334L277.3333333333333 128H234.6666666666667L128 277.3333333333334L213.3333333333333 320H298.6666666666667z" />
+    <glyph glyph-name="food-fork-drink"
+      unicode="&#xF5F2;"
+      horiz-adv-x="512" d=" M64 384C52.2666666666667 384 42.6666666666667 374.4 42.6666666666667 362.6666666666667V245.3333333333334C42.6666666666667 209.28 64.64 178.5600000000001 96 165.9733333333334V32C96 14.2933333333334 110.2933333333333 0 128 0S160 14.2933333333334 160 32V165.9733333333334C191.36 178.5600000000001 213.3333333333333 209.28 213.3333333333333 245.3333333333334V362.6666666666667C213.3333333333333 374.4 203.7333333333334 384 192 384S170.6666666666667 374.4 170.6666666666667 362.6666666666667V277.3333333333334C170.6666666666667 271.36 165.9733333333333 266.6666666666667 160 266.6666666666667S149.3333333333333 271.36 149.3333333333333 277.3333333333334V362.6666666666667C149.3333333333333 374.4 139.7333333333333 384 128 384S106.6666666666667 374.4 106.6666666666667 362.6666666666667V277.3333333333334C106.6666666666667 271.36 101.9733333333333 266.6666666666667 96 266.6666666666667S85.3333333333333 271.36 85.3333333333333 277.3333333333334V362.6666666666667C85.3333333333333 374.4 75.7333333333333 384 64 384M424.1066666666667 384C421.3333333333333 384 418.56 382.0800000000001 416 380.5866666666667L341.3333333333333 336V256H256V213.3333333333334H277.3333333333333L298.6666666666667 0H426.6666666666667L448 213.3333333333334H469.3333333333333V256H384V312.7466666666667L437.3333333333333 344.7466666666667C448 350.7200000000001 450.7733333333333 362.6666666666667 444.5866666666667 373.3333333333334C440.1066666666667 381.0133333333333 432.2133333333334 385.0666666666667 424.1066666666667 384z" />
+    <glyph glyph-name="food-off"
+      unicode="&#xF5F3;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L448 -15.36L420.9066666666667 -42.6666666666666L378.24 0H330.6666666666667L324.48 53.3333333333334L276.6933333333334 101.5466666666666C274.3466666666667 92.16 266.0266666666667 85.3333333333333 256 85.3333333333333H64C52.2666666666667 85.3333333333333 42.6666666666667 94.9333333333333 42.6666666666667 106.6666666666666S52.2666666666667 128 64 128H170.6666666666667L202.6666666666667 95.9999999999999L234.6666666666667 128H250.24L228.9066666666667 149.3333333333334H42.6666666666667C42.6666666666667 184.7466666666667 71.2533333333333 213.3333333333334 106.6666666666667 213.3333333333334H164.9066666666667L42.6666666666667 335.5733333333334M298.6666666666667 277.3333333333334H346.24L322.1333333333334 374.1866666666667L359.2533333333334 384L385.92 277.3333333333334H469.3333333333333L442.4533333333333 44.3733333333333L310.1866666666666 176.64L298.6666666666667 277.3333333333334M277.3333333333333 64C277.3333333333333 28.5866666666667 248.7466666666667 0 213.3333333333333 0H106.6666666666667C71.2533333333333 0 42.6666666666667 28.5866666666667 42.6666666666667 64H277.3333333333333z" />
+    <glyph glyph-name="food-variant"
+      unicode="&#xF25C;"
+      horiz-adv-x="512" d=" M469.3333333333333 64C469.3333333333333 16.8533333333334 431.1466666666667 -21.3333333333333 384 -21.3333333333333H320C272.8533333333333 -21.3333333333333 234.6666666666667 16.8533333333334 234.6666666666667 64V106.6666666666667H379.52L438.3999999999999 208.4266666666667L471.6799999999999 189.2266666666667L423.8933333333333 106.6666666666667H469.3333333333333V64M192 -21.3333333333333H42.6666666666667C42.6666666666667 42.6666666666667 42.6666666666667 106.6666666666667 49.7066666666667 174.2933333333334C55.4666666666667 228.2666666666667 65.7066666666667 284.5866666666667 76.8 341.3333333333334H64V384H170.6666666666667V341.3333333333334H157.8666666666667C168.96 284.5866666666667 179.2 228.2666666666667 184.96 174.2933333333334C192 106.6666666666667 192 42.6666666666667 192 -21.3333333333333z" />
+    <glyph glyph-name="football"
+      unicode="&#xF25D;"
+      horiz-adv-x="512" d=" M160 288C195.6266666666667 322.7733333333333 240.8533333333333 347.9466666666667 285.2266666666667 358.8266666666667C329.8133333333334 369.7066666666667 373.3333333333333 366.2933333333334 396.8 362.6666666666667C420.48 359.4666666666667 423.8933333333333 356.0533333333334 427.3066666666667 332.5866666666667C430.5066666666667 309.3333333333334 433.7066666666667 265.6 422.8266666666667 221.2266666666667C411.9466666666666 176.8533333333334 386.7733333333333 131.6266666666667 352 96C316.3733333333334 61.2266666666667 271.1466666666667 36.0533333333334 226.7733333333333 25.1733333333333C182.4 14.2933333333333 138.6666666666666 17.4933333333333 115.4133333333333 20.6933333333333C91.9466666666666 24.1066666666667 88.5333333333333 27.52 85.3333333333333 51.2C81.7066666666667 74.6666666666667 78.2933333333333 118.1866666666667 89.1733333333333 162.7733333333333C100.0533333333333 207.1466666666667 125.2266666666667 252.3733333333333 160 288M155.7333333333333 111.1466666666667L175.1466666666666 91.7333333333334L200.96 117.3333333333334L226.7733333333333 91.7333333333334L246.1866666666667 111.1466666666667L220.5866666666667 136.96L256 172.5866666666667L281.8133333333334 146.7733333333333L301.2266666666667 166.1866666666667L275.4133333333333 192L311.04 227.4133333333334L336.8533333333333 201.8133333333334L356.2666666666667 221.2266666666667L330.6666666666667 247.0400000000001L356.2666666666667 272.8533333333334L336.8533333333333 292.2666666666668L311.04 266.6666666666668L285.2266666666666 292.2666666666668L265.8133333333333 272.8533333333335L291.4133333333333 247.0400000000002L256 211.4133333333334L230.1866666666667 237.2266666666667L210.7733333333333 217.8133333333334L236.5866666666667 192L200.96 156.5866666666667L175.1466666666667 182.1866666666667L155.7333333333334 162.7733333333333L181.3333333333333 136.96L155.7333333333333 111.1466666666667z" />
+    <glyph glyph-name="football-australian"
+      unicode="&#xF25E;"
+      horiz-adv-x="512" d=" M160 288C195.6266666666667 322.7733333333333 240.8533333333333 347.9466666666667 285.2266666666667 358.8266666666667C384 384 448 320 422.8266666666667 221.2266666666667C411.9466666666666 176.8533333333334 386.7733333333333 131.6266666666667 352 96C316.3733333333334 61.2266666666667 271.1466666666667 36.0533333333334 226.7733333333333 25.1733333333333C128 0 64 64 89.1733333333333 162.7733333333334C100.0533333333333 207.1466666666667 125.2266666666667 252.3733333333334 160 288M226.56 207.7866666666667L218.88 200.1066666666668L264.1066666666667 154.8800000000001L271.7866666666667 162.5600000000001L226.56 207.7866666666667M247.8933333333334 229.1200000000001L240.2133333333334 221.4400000000001L285.4400000000001 176.2133333333334L293.12 183.8933333333334L247.8933333333334 229.1200000000001M205.2266666666667 186.4533333333334L197.5466666666667 178.7733333333334L242.7733333333334 133.5466666666668L250.4533333333334 141.2266666666667L205.2266666666667 186.4533333333334M269.44 250.0266666666668L261.9733333333334 242.5600000000001L307.2000000000001 197.3333333333334L314.6666666666667 204.8000000000001L269.4400000000001 250.0266666666668M184.1066666666667 164.6933333333334L176.6400000000001 157.2266666666668L221.8666666666667 112.0000000000001L229.3333333333334 119.4666666666668L184.1066666666667 164.6933333333334M290.7733333333334 271.3600000000001L283.3066666666668 263.8933333333335L328.5333333333334 218.6666666666668L336 226.1333333333334L290.7733333333334 271.3600000000001z" />
+    <glyph glyph-name="football-helmet"
+      unicode="&#xF25F;"
+      horiz-adv-x="512" d=" M288 192C270.2933333333333 192 256 177.7066666666667 256 160S270.2933333333333 128 288 128S320 142.2933333333334 320 160S305.7066666666667 192 288 192M288 384C388.0533333333334 384 469.3333333333333 307.6266666666667 469.3333333333333 213.3333333333334C469.3333333333333 178.7733333333333 469.3333333333333 149.3333333333334 449.92 106.6666666666667C362.6666666666667 106.6666666666667 341.3333333333333 21.3333333333334 266.6666666666667 21.3333333333334C220.16 21.3333333333334 197.76 58.0266666666666 193.0666666666667 106.6666666666667H175.7866666666667L148.48 14.9333333333333C145.28 4.48 135.04 -1.7066666666667 124.5866666666667 0H64C52.2666666666667 0 42.6666666666667 9.6 42.6666666666667 21.3333333333334S52.2666666666667 42.6666666666667 64 42.6666666666667V106.6666666666667C52.2666666666667 106.6666666666667 42.6666666666667 116.2666666666667 42.6666666666667 128S52.2666666666667 149.3333333333334 64 149.3333333333334H144L154.24 183.68C143.36 189.0133333333333 130.7733333333334 192 117.3333333333333 192H108.16L106.6666666666667 213.3333333333334C106.6666666666667 307.6266666666667 187.9466666666667 384 288 384M106.6666666666667 106.6666666666667V42.6666666666667H112.2133333333333L131.2 106.6666666666667H106.6666666666667z" />
+    <glyph glyph-name="forklift"
+      unicode="&#xF7C8;"
+      horiz-adv-x="512" d=" M128 362.6666666666667V213.3333333333334H85.3333333333333C61.6533333333333 213.3333333333334 42.6666666666667 194.3466666666667 42.6666666666667 170.6666666666667V85.3333333333334C42.6666666666667 49.92 71.2533333333333 21.3333333333334 106.6666666666667 21.3333333333334S170.6666666666667 49.92 170.6666666666667 85.3333333333334H213.3333333333333C213.3333333333333 49.92 241.92 21.3333333333334 277.3333333333333 21.3333333333334S341.3333333333333 49.92 341.3333333333333 85.3333333333334V170.6666666666667L256 362.6666666666667H128M362.6666666666667 341.3333333333334V42.6666666666667H469.3333333333333V74.6666666666667H394.6666666666667V341.3333333333334H362.6666666666667M160 330.6666666666667H238.9333333333333L309.3333333333333 170.6666666666667H160V330.6666666666667M106.6666666666667 117.3333333333334C124.3733333333333 117.3333333333334 138.6666666666667 103.04 138.6666666666667 85.3333333333334S124.3733333333333 53.3333333333334 106.6666666666667 53.3333333333334S74.6666666666667 67.6266666666667 74.6666666666667 85.3333333333334S88.96 117.3333333333334 106.6666666666667 117.3333333333334M277.3333333333333 117.3333333333334C295.04 117.3333333333334 309.3333333333333 103.04 309.3333333333333 85.3333333333334S295.04 53.3333333333334 277.3333333333333 53.3333333333334S245.3333333333333 67.6266666666667 245.3333333333333 85.3333333333334S259.6266666666667 117.3333333333334 277.3333333333333 117.3333333333334z" />
+    <glyph glyph-name="format-align-bottom"
+      unicode="&#xF752;"
+      horiz-adv-x="512" d=" M277.3333333333333 256L330.6666666666667 309.3333333333334L360.9600000000001 279.04L256 174.0800000000001L151.04 279.04L181.3333333333333 309.3333333333334L234.6666666666667 256V384H277.3333333333333V256M64 128H448V85.3333333333334H64V128M64 42.6666666666667H277.3333333333333V0H64V42.6666666666667z" />
+    <glyph glyph-name="format-align-center"
+      unicode="&#xF260;"
+      horiz-adv-x="512" d=" M64 384H448V341.3333333333334H64V384M149.3333333333333 298.6666666666667H362.6666666666667V256H149.3333333333333V298.6666666666667M64 213.3333333333334H448V170.6666666666667H64V213.3333333333334M149.3333333333333 128H362.6666666666667V85.3333333333334H149.3333333333333V128M64 42.6666666666667H448V0H64V42.6666666666667z" />
+    <glyph glyph-name="format-align-justify"
+      unicode="&#xF261;"
+      horiz-adv-x="512" d=" M64 384H448V341.3333333333334H64V384M64 298.6666666666667H448V256H64V298.6666666666667M64 213.3333333333334H448V170.6666666666667H64V213.3333333333334M64 128H448V85.3333333333334H64V128M64 42.6666666666667H448V0H64V42.6666666666667z" />
+    <glyph glyph-name="format-align-left"
+      unicode="&#xF262;"
+      horiz-adv-x="512" d=" M64 384H448V341.3333333333334H64V384M64 298.6666666666667H320V256H64V298.6666666666667M64 213.3333333333334H448V170.6666666666667H64V213.3333333333334M64 128H320V85.3333333333334H64V128M64 42.6666666666667H448V0H64V42.6666666666667z" />
+    <glyph glyph-name="format-align-middle"
+      unicode="&#xF753;"
+      horiz-adv-x="512" d=" M277.3333333333333 320L320 362.6666666666667L350.2933333333334 332.3733333333334L256 238.08L161.7066666666667 332.3733333333334L192 362.6666666666667L234.6666666666667 320V405.3333333333333H277.3333333333333V320M64 213.3333333333334H448V170.6666666666667H64V213.3333333333334M277.3333333333333 64V-21.3333333333333H234.6666666666667V64L192 21.3333333333334L161.7066666666667 51.6266666666667L256 145.92L350.2933333333334 51.6266666666667L320 21.3333333333334L277.3333333333333 64z" />
+    <glyph glyph-name="format-align-right"
+      unicode="&#xF263;"
+      horiz-adv-x="512" d=" M64 384H448V341.3333333333334H64V384M192 298.6666666666667H448V256H192V298.6666666666667M64 213.3333333333334H448V170.6666666666667H64V213.3333333333334M192 128H448V85.3333333333334H192V128M64 42.6666666666667H448V0H64V42.6666666666667z" />
+    <glyph glyph-name="format-align-top"
+      unicode="&#xF754;"
+      horiz-adv-x="512" d=" M277.3333333333333 128L330.6666666666667 74.6666666666667L360.9600000000001 104.96L256 209.92L151.04 104.96L181.3333333333333 74.6666666666667L234.6666666666667 128V0H277.3333333333333V128M64 384H448V341.3333333333334H64V384M64 298.6666666666667H277.3333333333333V256H64V298.6666666666667z" />
+    <glyph glyph-name="format-annotation-minus"
+      unicode="&#xFABB;"
+      horiz-adv-x="512" d=" M224 298.6666666666667H181.3333333333333L64 0H110.9333333333333L134.4 64H266.6666666666667L290.1333333333334 0H341.3333333333333L224 298.6666666666667M151.4666666666667 106.6666666666667L202.6666666666667 241.0666666666667L253.8666666666667 106.6666666666667H151.4666666666667M469.3333333333333 298.6666666666667H298.6666666666667V341.3333333333334H469.3333333333333V298.6666666666667z" />
+    <glyph glyph-name="format-annotation-plus"
+      unicode="&#xF646;"
+      horiz-adv-x="512" d=" M181.3333333333333 298.6666666666667H224L341.3333333333333 0H290.1333333333334L266.6666666666667 64H134.4L110.9333333333333 0H64L181.3333333333333 298.6666666666667M151.4666666666667 106.6666666666667H253.8666666666666L202.6666666666667 241.0666666666667L151.4666666666667 106.6666666666667M469.3333333333333 341.3333333333334V298.6666666666667H405.3333333333333V234.6666666666667H362.6666666666667V298.6666666666667H298.6666666666667V341.3333333333334H362.6666666666667V405.3333333333333H405.3333333333333V341.3333333333334H469.3333333333333z" />
+    <glyph glyph-name="format-bold"
+      unicode="&#xF264;"
+      horiz-adv-x="512" d=" M288 117.3333333333334H213.3333333333333V181.3333333333334H288C305.7066666666667 181.3333333333334 320 167.04 320 149.3333333333334S305.7066666666667 117.3333333333334 288 117.3333333333334M213.3333333333333 309.3333333333334H277.3333333333333C295.04 309.3333333333334 309.3333333333333 295.04 309.3333333333333 277.3333333333334S295.04 245.3333333333334 277.3333333333333 245.3333333333334H213.3333333333333M332.8 217.8133333333334C353.4933333333334 232.32 368 256 368 277.3333333333334C368 325.5466666666667 330.6666666666667 362.6666666666667 282.6666666666667 362.6666666666667H149.3333333333333V64H299.52C344.32 64 378.6666666666667 100.2666666666667 378.6666666666667 144.8533333333334C378.6666666666667 177.28 360.32 205.0133333333333 332.8 217.8133333333333z" />
+    <glyph glyph-name="format-clear"
+      unicode="&#xF265;"
+      horiz-adv-x="512" d=" M128 341.3333333333334V337.4933333333334L188.16 277.3333333333334H239.36L224 241.4933333333334L268.8 196.6933333333334L303.1466666666667 277.3333333333334H426.6666666666667V341.3333333333334H128M69.76 341.3333333333334L42.6666666666667 314.24L191.36 165.5466666666668L138.6666666666667 42.6666666666667H202.6666666666667L236.16 120.7466666666667L356.9066666666667 0L384 27.0933333333334L75.7333333333333 335.5733333333334L69.76 341.3333333333334z" />
+    <glyph glyph-name="format-color-fill"
+      unicode="&#xF266;"
+      horiz-adv-x="512" d=" M405.3333333333333 202.6666666666667S362.6666666666667 156.3733333333333 362.6666666666667 128C362.6666666666667 104.5333333333333 381.8666666666666 85.3333333333334 405.3333333333333 85.3333333333334S448 104.5333333333333 448 128C448 156.3733333333333 405.3333333333333 202.6666666666667 405.3333333333333 202.6666666666667M111.1466666666667 234.6666666666667L213.3333333333333 336.8533333333334L315.52 234.6666666666667M353.28 257.2800000000001L162.56 448L132.48 417.92L183.2533333333333 367.1466666666667L73.3866666666667 257.28C60.8 245.3333333333333 60.8 224.64 73.3866666666667 212.0533333333333L190.72 94.72C196.9066666666667 88.5333333333333 205.2266666666666 85.3333333333333 213.3333333333333 85.3333333333333S229.76 88.5333333333333 235.9466666666667 94.72L353.2800000000001 212.0533333333333C365.8666666666667 224.64 365.8666666666667 245.3333333333333 353.2800000000001 257.28z" />
+    <glyph glyph-name="format-color-text"
+      unicode="&#xF69D;"
+      horiz-adv-x="512" d=" M205.2266666666666 192L256 327.04L306.56 192M234.6666666666667 384L117.3333333333333 85.3333333333334H165.3333333333333L189.2266666666667 149.3333333333334H322.56L346.6666666666667 85.3333333333334H394.6666666666667L277.3333333333333 384H234.6666666666667z" />
+    <glyph glyph-name="format-columns"
+      unicode="&#xF8DE;"
+      horiz-adv-x="512" d=" M64 384H234.6666666666667V341.3333333333334H64V384M277.3333333333333 384H448V341.3333333333334H277.3333333333333V384M64 298.6666666666667H234.6666666666667V256H64V298.6666666666667M277.3333333333333 298.6666666666667H448V256H277.3333333333333V298.6666666666667M64 213.3333333333334H234.6666666666667V170.6666666666667H64V213.3333333333334M277.3333333333333 213.3333333333334H448V170.6666666666667H277.3333333333333V213.3333333333334M64 128H234.6666666666667V85.3333333333334H64V128M277.3333333333333 128H448V85.3333333333334H277.3333333333333V128M64 42.6666666666667H234.6666666666667V0H64V42.6666666666667M277.3333333333333 42.6666666666667H448V0H277.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="format-float-center"
+      unicode="&#xF267;"
+      horiz-adv-x="512" d=" M192 298.6666666666667H320V170.6666666666667H192V298.6666666666667M64 384H448V341.3333333333334H64V384M64 128H448V85.3333333333334H64V128M64 42.6666666666667H362.6666666666667V0H64V42.6666666666667z" />
+    <glyph glyph-name="format-float-left"
+      unicode="&#xF268;"
+      horiz-adv-x="512" d=" M64 298.6666666666667H192V170.6666666666667H64V298.6666666666667M64 384H448V341.3333333333334H64V384M448 298.6666666666667V256H234.6666666666667V298.6666666666667H448M448 213.3333333333334V170.6666666666667H234.6666666666667V213.3333333333334H448M64 128H362.6666666666667V85.3333333333334H64V128M64 42.6666666666667H448V0H64V42.6666666666667z" />
+    <glyph glyph-name="format-float-none"
+      unicode="&#xF269;"
+      horiz-adv-x="512" d=" M64 298.6666666666667H192V170.6666666666667H64V298.6666666666667M64 384H448V341.3333333333334H64V384M448 213.3333333333334V170.6666666666667H234.6666666666667V213.3333333333334H448M64 128H362.6666666666667V85.3333333333334H64V128M64 42.6666666666667H448V0H64V42.6666666666667z" />
+    <glyph glyph-name="format-float-right"
+      unicode="&#xF26A;"
+      horiz-adv-x="512" d=" M320 298.6666666666667H448V170.6666666666667H320V298.6666666666667M64 384H448V341.3333333333334H64V384M277.3333333333333 298.6666666666667V256H64V298.6666666666667H277.3333333333333M192 213.3333333333334V170.6666666666667H64V213.3333333333334H192M64 128H362.6666666666667V85.3333333333334H64V128M64 42.6666666666667H448V0H64V42.6666666666667z" />
+    <glyph glyph-name="format-font"
+      unicode="&#xF6D5;"
+      horiz-adv-x="512" d=" M362.6666666666667 277.3333333333334H426.6666666666667V21.3333333333334H448V0H362.6666666666667V21.3333333333334H384V85.3333333333334H298.6666666666667L266.6666666666667 21.3333333333334H298.6666666666667V0H213.3333333333333V21.3333333333334H234.6666666666667L362.6666666666667 277.3333333333334M384 256L309.3333333333333 106.6666666666667H384V256M106.6666666666667 384H213.3333333333333C237.0133333333333 384 256 365.0133333333333 256 341.3333333333334V106.6666666666667H192V213.3333333333334H128V106.6666666666667H64V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384M128 341.3333333333334V256H192V341.3333333333334H128z" />
+    <glyph glyph-name="format-font-size-decrease"
+      unicode="&#xF9F2;"
+      horiz-adv-x="512" d=" M109.2266666666667 149.3333333333334L160 284.3733333333334L210.56 149.3333333333334M138.6666666666667 341.3333333333334L21.3333333333333 42.6666666666667H69.3333333333333L93.2266666666667 106.6666666666667H226.56L250.6666666666667 42.6666666666667H298.6666666666667L181.3333333333333 341.3333333333334H138.6666666666667M384 85.3333333333334L490.6666666666666 193.4933333333334L460.5866666666666 224L405.3333333333333 168.5333333333334V298.6666666666667H362.6666666666667V168.5333333333334L307.4133333333333 224L277.3333333333333 193.4933333333334L384 85.3333333333334z" />
+    <glyph glyph-name="format-font-size-increase"
+      unicode="&#xF9F3;"
+      horiz-adv-x="512" d=" M109.2266666666667 149.3333333333334L160 284.3733333333334L210.56 149.3333333333334M138.6666666666667 341.3333333333334L21.3333333333333 42.6666666666667H69.3333333333333L93.2266666666667 106.6666666666667H226.56L250.6666666666667 42.6666666666667H298.6666666666667L181.3333333333333 341.3333333333334H138.6666666666667M384 298.6666666666667L277.3333333333333 190.5066666666667L307.4133333333333 160L362.6666666666667 215.4666666666667V85.3333333333334H405.3333333333333V215.4666666666667L460.5866666666666 160L490.6666666666666 190.5066666666667L384 298.6666666666667z" />
+    <glyph glyph-name="format-header-1"
+      unicode="&#xF26B;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H106.6666666666667V234.6666666666667H192V362.6666666666667H234.6666666666667V64H192V192H106.6666666666667V64H64V362.6666666666667M298.6666666666667 64V106.6666666666667H341.3333333333333V313.3866666666667L288 282.6666666666667V331.9466666666667L341.3333333333333 362.6666666666667H384V106.6666666666667H426.6666666666667V64H298.6666666666667z" />
+    <glyph glyph-name="format-header-2"
+      unicode="&#xF26C;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H106.6666666666667V234.6666666666667H192V362.6666666666667H234.6666666666667V64H192V192H106.6666666666667V64H64V362.6666666666667M448 64H320C296.5333333333333 64 277.3333333333333 83.2 277.3333333333333 106.6666666666667C277.3333333333333 117.9733333333334 281.6 128 288.8533333333333 135.68L392.7466666666667 247.2533333333334C400.64 254.9333333333334 405.3333333333333 265.6 405.3333333333333 277.3333333333334C405.3333333333333 300.8 386.1333333333334 320 362.6666666666667 320S320 300.8 320 277.3333333333334H277.3333333333333C277.3333333333333 324.48 315.52 362.6666666666667 362.6666666666667 362.6666666666667S448 324.48 448 277.3333333333334C448 253.8666666666667 438.4 232.5333333333334 423.04 216.96L320 106.6666666666667H448V64z" />
+    <glyph glyph-name="format-header-3"
+      unicode="&#xF26D;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H106.6666666666667V234.6666666666667H192V362.6666666666667H234.6666666666667V64H192V192H106.6666666666667V64H64V362.6666666666667M320 362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320V106.6666666666667C448 83.2 428.8 64 405.3333333333333 64H320C296.5333333333333 64 277.3333333333333 83.2 277.3333333333333 106.6666666666667V128H320V106.6666666666667H405.3333333333333V192H320V234.6666666666667H405.3333333333333V320H320V298.6666666666667H277.3333333333333V320C277.3333333333333 343.4666666666667 296.5333333333333 362.6666666666667 320 362.6666666666667z" />
+    <glyph glyph-name="format-header-4"
+      unicode="&#xF26E;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H106.6666666666667V234.6666666666667H192V362.6666666666667H234.6666666666667V64H192V192H106.6666666666667V64H64V362.6666666666667M384 64V170.6666666666667H277.3333333333333V213.3333333333334L384 362.6666666666667H426.6666666666667V213.3333333333334H448V170.6666666666667H426.6666666666667V64H384M384 213.3333333333334V289.7066666666667L329.6 213.3333333333334H384z" />
+    <glyph glyph-name="format-header-5"
+      unicode="&#xF26F;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H106.6666666666667V234.6666666666667H192V362.6666666666667H234.6666666666667V64H192V192H106.6666666666667V64H64V362.6666666666667M320 362.6666666666667H426.6666666666667V320H320V234.6666666666667H362.6666666666667C409.8133333333334 234.6666666666667 448 196.48 448 149.3333333333334S409.8133333333334 64 362.6666666666667 64H320C296.5333333333333 64 277.3333333333333 83.2 277.3333333333333 106.6666666666667V128H320V106.6666666666667H362.6666666666667C386.1333333333334 106.6666666666667 405.3333333333333 125.8666666666667 405.3333333333333 149.3333333333334S386.1333333333334 192 362.6666666666667 192H320C296.5333333333333 192 277.3333333333333 211.2 277.3333333333333 234.6666666666667V320C277.3333333333333 343.4666666666667 296.5333333333333 362.6666666666667 320 362.6666666666667z" />
+    <glyph glyph-name="format-header-6"
+      unicode="&#xF270;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H106.6666666666667V234.6666666666667H192V362.6666666666667H234.6666666666667V64H192V192H106.6666666666667V64H64V362.6666666666667M320 362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320V298.6666666666667H405.3333333333333V320H320V234.6666666666667H405.3333333333333C428.8 234.6666666666667 448 215.4666666666667 448 192V106.6666666666667C448 83.2 428.8 64 405.3333333333333 64H320C296.5333333333333 64 277.3333333333333 83.2 277.3333333333333 106.6666666666667V320C277.3333333333333 343.4666666666667 296.5333333333333 362.6666666666667 320 362.6666666666667M320 192V106.6666666666667H405.3333333333333V192H320z" />
+    <glyph glyph-name="format-header-decrease"
+      unicode="&#xF271;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H128V234.6666666666667H213.3333333333333V362.6666666666667H256V64H213.3333333333333V192H128V64H85.3333333333333V362.6666666666667M435.6266666666667 289.92L359.04 213.3333333333334L435.6266666666666 136.7466666666667L405.3333333333333 106.6666666666667L298.6666666666667 213.3333333333334L405.3333333333333 320L435.6266666666667 289.92z" />
+    <glyph glyph-name="format-header-equal"
+      unicode="&#xF272;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H128V234.6666666666667H213.3333333333333V362.6666666666667H256V64H213.3333333333333V192H128V64H85.3333333333333V362.6666666666667M298.6666666666667 234.6666666666667V277.3333333333334H448V234.6666666666667H298.6666666666667M298.6666666666667 192H448V149.3333333333334H298.6666666666667V192z" />
+    <glyph glyph-name="format-header-increase"
+      unicode="&#xF273;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H128V234.6666666666667H213.3333333333333V362.6666666666667H256V64H213.3333333333333V192H128V64H85.3333333333333V362.6666666666667M311.2533333333334 289.92L387.6266666666667 213.3333333333334L311.2533333333334 136.7466666666667L341.3333333333333 106.6666666666667L448 213.3333333333334L341.3333333333333 320L311.2533333333334 289.92z" />
+    <glyph glyph-name="format-header-pound"
+      unicode="&#xF274;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H106.6666666666667V234.6666666666667H192V362.6666666666667H234.6666666666667V64H192V192H106.6666666666667V64H64V362.6666666666667M277.3333333333333 277.3333333333334H326.6133333333334L333.44 341.3333333333334H376.1066666666667L369.2800000000001 277.3333333333334H411.9466666666667L418.7733333333334 341.3333333333334H461.4400000000001L454.6133333333333 277.3333333333334H490.6666666666666V234.6666666666667H450.1333333333334L445.8666666666667 192H490.6666666666666V149.3333333333334H441.3866666666667L434.56 85.3333333333334H391.8933333333333L398.7200000000001 149.3333333333334H356.0533333333334L349.2266666666667 85.3333333333334H306.56L313.3866666666667 149.3333333333334H277.3333333333333V192H317.8666666666667L322.1333333333334 234.6666666666667H277.3333333333333V277.3333333333334M364.8 234.6666666666667L360.5333333333334 192H403.2000000000001L407.4666666666667 234.6666666666667H364.8z" />
+    <glyph glyph-name="format-horizontal-align-center"
+      unicode="&#xF61E;"
+      horiz-adv-x="512" d=" M405.3333333333333 106.6666666666667V170.6666666666667H490.6666666666666V213.3333333333334H405.3333333333333V277.3333333333334L320 192L405.3333333333333 106.6666666666667M106.6666666666667 277.3333333333334V213.3333333333334H21.3333333333333V170.6666666666667H106.6666666666667V106.6666666666667L192 192L106.6666666666667 277.3333333333334M234.6666666666667 21.3333333333334H277.3333333333333V362.6666666666667H234.6666666666667V21.3333333333334z" />
+    <glyph glyph-name="format-horizontal-align-left"
+      unicode="&#xF61F;"
+      horiz-adv-x="512" d=" M234.6666666666667 106.6666666666667V170.6666666666667H448V213.3333333333334H234.6666666666667V277.3333333333334L149.3333333333333 192L234.6666666666667 106.6666666666667M64 21.3333333333334H106.6666666666667V362.6666666666667H64V21.3333333333334z" />
+    <glyph glyph-name="format-horizontal-align-right"
+      unicode="&#xF620;"
+      horiz-adv-x="512" d=" M277.3333333333333 277.3333333333334V213.3333333333334H64V170.6666666666667H277.3333333333333V106.6666666666667L362.6666666666667 192L277.3333333333333 277.3333333333334M405.3333333333333 21.3333333333334H448V362.6666666666667H405.3333333333333V21.3333333333334z" />
+    <glyph glyph-name="format-indent-decrease"
+      unicode="&#xF275;"
+      horiz-adv-x="512" d=" M234.6666666666667 170.6666666666667H448V213.3333333333334H234.6666666666667M234.6666666666667 256H448V298.6666666666667H234.6666666666667M64 384V341.3333333333334H448V384M64 0H448V42.6666666666667H64M64 192L149.3333333333333 106.6666666666667V277.3333333333334M234.6666666666667 85.3333333333334H448V128H234.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="format-indent-increase"
+      unicode="&#xF276;"
+      horiz-adv-x="512" d=" M234.6666666666667 170.6666666666667H448V213.3333333333334H234.6666666666667M234.6666666666667 256H448V298.6666666666667H234.6666666666667M64 384V341.3333333333334H448V384M234.6666666666667 85.3333333333334H448V128H234.6666666666667M64 277.3333333333334V106.6666666666667L149.3333333333333 192M64 0H448V42.6666666666667H64V0z" />
+    <glyph glyph-name="format-italic"
+      unicode="&#xF277;"
+      horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667V298.6666666666667H260.48L187.52 128H128V64H298.6666666666667V128H251.52L324.48 298.6666666666667H384V362.6666666666667H213.3333333333333z" />
+    <glyph glyph-name="format-letter-case"
+      unicode="&#xFB19;"
+      horiz-adv-x="512" d=" M427.9466666666666 64C426.6666666666667 67.6266666666667 424.7466666666667 73.8133333333334 423.68 82.9866666666667C409.3866666666666 68.0533333333334 392.1066666666667 60.5866666666667 372.2666666666667 60.5866666666667C354.56 60.5866666666667 339.84 65.7066666666667 328.5333333333333 75.7333333333334C317.2266666666667 85.3333333333334 311.4666666666666 98.3466666666667 311.4666666666666 113.92C311.4666666666666 132.6933333333334 318.5066666666666 147.2000000000001 332.8 157.6533333333334C347.0933333333333 168.1066666666667 367.1466666666666 173.2266666666667 393.1733333333333 173.2266666666667H423.04V186.8800000000001C423.04 197.3333333333334 419.84 205.6533333333334 413.44 211.84C407.04 218.0266666666667 397.44 221.0133333333334 385.0666666666666 221.0133333333334C373.9733333333333 221.0133333333334 364.8 218.4533333333334 357.3333333333333 213.3333333333334C349.8666666666666 208.0000000000001 346.2399999999999 201.8133333333334 346.2399999999999 194.3466666666667H315.0933333333333C315.0933333333333 203.5200000000001 318.2933333333333 212.2666666666667 324.6933333333332 220.8000000000001C330.6666666666665 229.3333333333334 339.8399999999999 235.9466666666667 350.7199999999999 240.8533333333334C361.5999999999999 245.3333333333334 373.3333333333332 248.32 386.7733333333332 248.32C407.6799999999999 248.32 423.8933333333332 243.2 435.6266666666666 232.7466666666667S453.5466666666665 208 453.9733333333332 189.6533333333334V106.6666666666667C453.9733333333332 89.6 456.1066666666666 76.3733333333333 460.3733333333332 66.5600000000001V64H427.9466666666666M376.7466666666666 87.8933333333334C386.3466666666666 87.8933333333334 395.5199999999999 90.24 404.2666666666666 94.72C412.7999999999999 99.2000000000001 419.1999999999999 105.1733333333334 423.0399999999999 112.4266666666667V145.9200000000001H398.9333333333333C361.1733333333333 145.9200000000001 342.1866666666666 135.8933333333334 342.1866666666666 115.84C342.1866666666666 106.6666666666667 345.3866666666666 100.2666666666668 352 95.3600000000001C358.4 90.4533333333334 366.5066666666667 87.8933333333334 376.7466666666667 87.8933333333334M116.48 155.5200000000001H203.3066666666667L160 271.1466666666667L116.48 155.5200000000001M141.6533333333333 320H178.3466666666666L278.8266666666667 64H237.6533333333334L216.96 118.8266666666667H102.8266666666667L82.3466666666667 64H41.1733333333333L141.6533333333333 320z" />
+    <glyph glyph-name="format-letter-case-lower"
+      unicode="&#xFB1A;"
+      horiz-adv-x="512" d=" M427.9466666666666 64C426.6666666666667 67.6266666666667 424.7466666666667 73.8133333333334 423.68 82.9866666666667C409.3866666666666 68.0533333333334 392.1066666666667 60.5866666666667 372.2666666666667 60.5866666666667C354.56 60.5866666666667 339.84 65.7066666666667 328.5333333333333 75.7333333333334C317.2266666666667 85.3333333333334 311.4666666666666 98.3466666666667 311.4666666666666 113.92C311.4666666666666 132.6933333333334 318.5066666666666 147.2000000000001 332.8 157.6533333333334C347.0933333333333 168.1066666666667 367.1466666666666 173.2266666666667 393.1733333333333 173.2266666666667H423.04V186.8800000000001C423.04 197.3333333333334 419.84 205.6533333333334 413.44 211.84C407.04 218.0266666666667 397.44 221.0133333333334 385.0666666666666 221.0133333333334C373.9733333333333 221.0133333333334 364.8 218.4533333333334 357.3333333333333 213.3333333333334C349.8666666666666 208.0000000000001 346.2399999999999 201.8133333333334 346.2399999999999 194.3466666666667H315.0933333333333C315.0933333333333 203.5200000000001 318.2933333333333 212.2666666666667 324.6933333333332 220.8000000000001C330.6666666666665 229.3333333333334 339.8399999999999 235.9466666666667 350.7199999999999 240.8533333333334C361.5999999999999 245.3333333333334 373.3333333333332 248.32 386.7733333333332 248.32C407.6799999999999 248.32 423.8933333333332 243.2 435.6266666666666 232.7466666666667S453.5466666666665 208 453.9733333333332 189.6533333333334V106.6666666666667C453.9733333333332 89.6 456.1066666666666 76.3733333333333 460.3733333333332 66.5600000000001V64H427.9466666666666M376.7466666666666 87.8933333333334C386.3466666666666 87.8933333333334 395.5199999999999 90.24 404.2666666666666 94.72C412.7999999999999 99.2000000000001 419.1999999999999 105.1733333333334 423.0399999999999 112.4266666666667V145.9200000000001H398.9333333333333C361.1733333333333 145.9200000000001 342.1866666666666 135.8933333333334 342.1866666666666 115.84C342.1866666666666 106.6666666666667 345.3866666666666 100.2666666666668 352 95.3600000000001C358.4 90.4533333333334 366.5066666666667 87.8933333333334 376.7466666666667 87.8933333333334M116.48 155.5200000000001H203.3066666666667L160 271.1466666666667L116.48 155.5200000000001M141.6533333333333 320H178.3466666666666L278.8266666666667 64H237.6533333333334L216.96 118.8266666666667H102.8266666666667L82.3466666666667 64H41.1733333333333L141.6533333333333 320M469.3333333333333 21.3333333333334V-21.3333333333333H309.3333333333333V21.3333333333334H469.3333333333333z" />
+    <glyph glyph-name="format-letter-case-upper"
+      unicode="&#xFB1B;"
+      horiz-adv-x="512" d=" M427.9466666666666 64C426.6666666666667 67.6266666666667 424.7466666666667 73.8133333333334 423.68 82.9866666666667C409.3866666666666 68.0533333333334 392.1066666666667 60.5866666666667 372.2666666666667 60.5866666666667C354.56 60.5866666666667 339.84 65.7066666666667 328.5333333333333 75.7333333333334C317.2266666666667 85.3333333333334 311.4666666666666 98.3466666666667 311.4666666666666 113.92C311.4666666666666 132.6933333333334 318.5066666666666 147.2000000000001 332.8 157.6533333333334C347.0933333333333 168.1066666666667 367.1466666666666 173.2266666666667 393.1733333333333 173.2266666666667H423.04V186.8800000000001C423.04 197.3333333333334 419.84 205.6533333333334 413.44 211.84C407.04 218.0266666666667 397.44 221.0133333333334 385.0666666666666 221.0133333333334C373.9733333333333 221.0133333333334 364.8 218.4533333333334 357.3333333333333 213.3333333333334C349.8666666666666 208.0000000000001 346.2399999999999 201.8133333333334 346.2399999999999 194.3466666666667H315.0933333333333C315.0933333333333 203.5200000000001 318.2933333333333 212.2666666666667 324.6933333333332 220.8000000000001C330.6666666666665 229.3333333333334 339.8399999999999 235.9466666666667 350.7199999999999 240.8533333333334C361.5999999999999 245.3333333333334 373.3333333333332 248.32 386.7733333333332 248.32C407.6799999999999 248.32 423.8933333333332 243.2 435.6266666666666 232.7466666666667S453.5466666666665 208 453.9733333333332 189.6533333333334V106.6666666666667C453.9733333333332 89.6 456.1066666666666 76.3733333333333 460.3733333333332 66.5600000000001V64H427.9466666666666M376.7466666666666 87.8933333333334C386.3466666666666 87.8933333333334 395.5199999999999 90.24 404.2666666666666 94.72C412.7999999999999 99.2000000000001 419.1999999999999 105.1733333333334 423.0399999999999 112.4266666666667V145.9200000000001H398.9333333333333C361.1733333333333 145.9200000000001 342.1866666666666 135.8933333333334 342.1866666666666 115.84C342.1866666666666 106.6666666666667 345.3866666666666 100.2666666666668 352 95.3600000000001C358.4 90.4533333333334 366.5066666666667 87.8933333333334 376.7466666666667 87.8933333333334M116.48 155.5200000000001H203.3066666666667L160 271.1466666666667L116.48 155.5200000000001M141.6533333333333 320H178.3466666666666L278.8266666666667 64H237.6533333333334L216.96 118.8266666666667H102.8266666666667L82.3466666666667 64H41.1733333333333L141.6533333333333 320M42.6666666666667 21.3333333333334H277.3333333333333V-21.3333333333333H42.6666666666667V21.3333333333334z" />
+    <glyph glyph-name="format-line-spacing"
+      unicode="&#xF278;"
+      horiz-adv-x="512" d=" M213.3333333333333 170.6666666666667H469.3333333333333V213.3333333333334H213.3333333333333M213.3333333333333 42.6666666666667H469.3333333333333V85.3333333333334H213.3333333333333M213.3333333333333 298.6666666666667H469.3333333333333V341.3333333333334H213.3333333333333M128 298.6666666666667H181.3333333333333L106.6666666666667 373.3333333333334L32 298.6666666666667H85.3333333333333V85.3333333333334H32L106.6666666666667 10.6666666666667L181.3333333333333 85.3333333333334H128V298.6666666666667z" />
+    <glyph glyph-name="format-line-style"
+      unicode="&#xF5C8;"
+      horiz-adv-x="512" d=" M64 106.6666666666667H170.6666666666667V149.3333333333334H64V106.6666666666667M202.6666666666667 106.6666666666667H309.3333333333333V149.3333333333334H202.6666666666667V106.6666666666667M341.3333333333333 106.6666666666667H448V149.3333333333334H341.3333333333333V106.6666666666667M64 21.3333333333334H106.6666666666667V64H64V21.3333333333334M149.3333333333333 21.3333333333334H192V64H149.3333333333333V21.3333333333334M234.6666666666667 21.3333333333334H277.3333333333333V64H234.6666666666667V21.3333333333334M320 21.3333333333334H362.6666666666667V64H320V21.3333333333334M405.3333333333333 21.3333333333334H448V64H405.3333333333333V21.3333333333334M64 192H234.6666666666667V234.6666666666667H64V192M277.3333333333333 192H448V234.6666666666667H277.3333333333333V192M64 362.6666666666667V277.3333333333334H448V362.6666666666667H64z" />
+    <glyph glyph-name="format-line-weight"
+      unicode="&#xF5C9;"
+      horiz-adv-x="512" d=" M64 85.3333333333334H448V128H64V85.3333333333334M64 21.3333333333334H448V42.6666666666667H64V21.3333333333334M64 170.6666666666667H448V234.6666666666667H64V170.6666666666667M64 362.6666666666667V277.3333333333334H448V362.6666666666667H64z" />
+    <glyph glyph-name="format-list-bulleted"
+      unicode="&#xF279;"
+      horiz-adv-x="512" d=" M149.3333333333333 341.3333333333334H448V298.6666666666667H149.3333333333333V341.3333333333334M149.3333333333333 170.6666666666667V213.3333333333334H448V170.6666666666667H149.3333333333333M85.3333333333333 352C103.04 352 117.3333333333333 337.7066666666667 117.3333333333333 320S103.04 288 85.3333333333333 288S53.3333333333333 302.2933333333334 53.3333333333333 320S67.6266666666667 352 85.3333333333333 352M85.3333333333333 224C103.04 224 117.3333333333333 209.7066666666667 117.3333333333333 192S103.04 160 85.3333333333333 160S53.3333333333333 174.2933333333334 53.3333333333333 192S67.6266666666667 224 85.3333333333333 224M149.3333333333333 42.6666666666667V85.3333333333334H448V42.6666666666667H149.3333333333333M85.3333333333333 96C103.04 96 117.3333333333333 81.7066666666667 117.3333333333333 64S103.04 32 85.3333333333333 32S53.3333333333333 46.2933333333334 53.3333333333333 64S67.6266666666667 96 85.3333333333333 96z" />
+    <glyph glyph-name="format-list-bulleted-type"
+      unicode="&#xF27A;"
+      horiz-adv-x="512" d=" M106.6666666666667 245.3333333333334L160 149.3333333333334H53.3333333333333L106.6666666666667 245.3333333333334M64 362.6666666666667H149.3333333333333V277.3333333333334H64V362.6666666666667M106.6666666666667 21.3333333333334C130.1333333333333 21.3333333333334 149.3333333333333 40.5333333333333 149.3333333333333 64S130.1333333333333 106.6666666666667 106.6666666666667 106.6666666666667S64 87.4666666666667 64 64S83.2 21.3333333333334 106.6666666666667 21.3333333333334M192 341.3333333333334V298.6666666666667H448V341.3333333333334H192M192 42.6666666666667H448V85.3333333333334H192V42.6666666666667M192 170.6666666666667H448V213.3333333333334H192V170.6666666666667z" />
+    <glyph glyph-name="format-list-checkbox"
+      unicode="&#xF969;"
+      horiz-adv-x="512" d=" M448 42.6666666666667V85.3333333333334H170.6666666666667V42.6666666666667H448M448 170.6666666666667V213.3333333333334H170.6666666666667V170.6666666666667H448M170.6666666666667 298.6666666666667H448V341.3333333333334H170.6666666666667V298.6666666666667M85.3333333333333 341.3333333333334V298.6666666666667H128V341.3333333333334H85.3333333333333M64 341.3333333333334C64 353.0666666666667 73.6 362.6666666666667 85.3333333333333 362.6666666666667H128C139.7333333333333 362.6666666666667 149.3333333333333 353.0666666666667 149.3333333333333 341.3333333333334V298.6666666666667C149.3333333333333 286.9333333333334 139.7333333333333 277.3333333333334 128 277.3333333333334H85.3333333333333C73.6 277.3333333333334 64 286.9333333333334 64 298.6666666666667V341.3333333333334M85.3333333333333 213.3333333333334V170.6666666666667H128V213.3333333333334H85.3333333333333M64 213.3333333333334C64 225.0666666666667 73.6 234.6666666666667 85.3333333333333 234.6666666666667H128C139.7333333333333 234.6666666666667 149.3333333333333 225.0666666666667 149.3333333333333 213.3333333333334V170.6666666666667C149.3333333333333 158.9333333333333 139.7333333333333 149.3333333333334 128 149.3333333333334H85.3333333333333C73.6 149.3333333333334 64 158.9333333333333 64 170.6666666666667V213.3333333333334M85.3333333333333 85.3333333333334V42.6666666666667H128V85.3333333333334H85.3333333333333M64 85.3333333333334C64 97.0666666666667 73.6 106.6666666666667 85.3333333333333 106.6666666666667H128C139.7333333333333 106.6666666666667 149.3333333333333 97.0666666666667 149.3333333333333 85.3333333333334V42.6666666666667C149.3333333333333 30.9333333333333 139.7333333333333 21.3333333333334 128 21.3333333333334H85.3333333333333C73.6 21.3333333333334 64 30.9333333333333 64 42.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="format-list-checks"
+      unicode="&#xF755;"
+      horiz-adv-x="512" d=" M64 341.3333333333334H192V213.3333333333334H64V341.3333333333334M106.6666666666667 298.6666666666667V256H149.3333333333333V298.6666666666667H106.6666666666667M234.6666666666667 298.6666666666667H448V256H234.6666666666667V298.6666666666667M234.6666666666667 128H448V85.3333333333334H234.6666666666667V128M106.6666666666667 21.3333333333334L32 96L62.08 126.0800000000001L106.6666666666667 81.7066666666667L204.5866666666667 179.4133333333333L234.6666666666667 149.3333333333334L106.6666666666667 21.3333333333334z" />
+    <glyph glyph-name="format-list-numbers"
+      unicode="&#xF27B;"
+      horiz-adv-x="512" d=" M149.3333333333333 170.6666666666667H448V213.3333333333334H149.3333333333333M149.3333333333333 42.6666666666667H448V85.3333333333334H149.3333333333333M149.3333333333333 298.6666666666667H448V341.3333333333334H149.3333333333333M42.6666666666667 213.3333333333334H81.0666666666667L42.6666666666667 168.5333333333334V149.3333333333334H106.6666666666667V170.6666666666667H68.2666666666667L106.6666666666667 215.4666666666667V234.6666666666667H42.6666666666667M64 277.3333333333334H85.3333333333333V362.6666666666667H42.6666666666667V341.3333333333334H64M42.6666666666667 85.3333333333334H85.3333333333333V74.6666666666667H64V53.3333333333334H85.3333333333333V42.6666666666667H42.6666666666667V21.3333333333334H106.6666666666667V106.6666666666667H42.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="format-page-break"
+      unicode="&#xF6D6;"
+      horiz-adv-x="512" d=" M384 21.3333333333334H128V64H85.3333333333333V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V64H384V21.3333333333334M298.6666666666667 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V192H128V362.6666666666667H298.6666666666667V277.3333333333334H384V192H426.6666666666667V277.3333333333334L298.6666666666667 405.3333333333333M234.6666666666667 106.6666666666667H170.6666666666667V149.3333333333334H234.6666666666667V106.6666666666667M341.3333333333333 106.6666666666667H277.3333333333333V149.3333333333334H341.3333333333333V106.6666666666667M64 149.3333333333334H128V106.6666666666667H64V149.3333333333334M448 106.6666666666667H384V149.3333333333334H448V106.6666666666667z" />
+    <glyph glyph-name="format-paint"
+      unicode="&#xF27C;"
+      horiz-adv-x="512" d=" M384 362.6666666666667V384C384 395.7333333333334 374.4 405.3333333333333 362.6666666666667 405.3333333333333H106.6666666666667C94.9333333333333 405.3333333333333 85.3333333333333 395.7333333333334 85.3333333333333 384V298.6666666666667C85.3333333333333 286.9333333333334 94.9333333333333 277.3333333333334 106.6666666666667 277.3333333333334H362.6666666666667C374.4 277.3333333333334 384 286.9333333333334 384 298.6666666666667V320H405.3333333333333V234.6666666666667H192V0C192 -11.7333333333333 201.6 -21.3333333333333 213.3333333333333 -21.3333333333333H256C267.7333333333334 -21.3333333333333 277.3333333333333 -11.7333333333333 277.3333333333333 0V192H448V362.6666666666667H384z" />
+    <glyph glyph-name="format-paragraph"
+      unicode="&#xF27D;"
+      horiz-adv-x="512" d=" M277.3333333333333 362.6666666666667C324.48 362.6666666666667 362.6666666666667 324.48 362.6666666666667 277.3333333333334S324.48 192 277.3333333333333 192H234.6666666666667V64H192V362.6666666666667H277.3333333333333M277.3333333333333 234.6666666666667C300.8 234.6666666666667 320 253.8666666666667 320 277.3333333333334S300.8 320 277.3333333333333 320H234.6666666666667V234.6666666666667H277.3333333333333z" />
+    <glyph glyph-name="format-pilcrow"
+      unicode="&#xF6D7;"
+      horiz-adv-x="512" d=" M213.3333333333333 213.3333333333334C166.1866666666667 213.3333333333334 128 251.52 128 298.6666666666667S166.1866666666667 384 213.3333333333333 384H384V341.3333333333334H341.3333333333333V0H298.6666666666667V341.3333333333334H256V0H213.3333333333333V213.3333333333334z" />
+    <glyph glyph-name="format-quote-close"
+      unicode="&#xF27E;"
+      horiz-adv-x="512" d=" M298.6666666666667 85.3333333333334H362.6666666666667L405.3333333333333 170.6666666666667V298.6666666666667H277.3333333333333V170.6666666666667H341.3333333333333M128 85.3333333333334H192L234.6666666666667 170.6666666666667V298.6666666666667H106.6666666666667V170.6666666666667H170.6666666666667L128 85.3333333333334z" />
+    <glyph glyph-name="format-quote-open"
+      unicode="&#xF756;"
+      horiz-adv-x="512" d=" M213.3333333333333 298.6666666666667L170.6666666666667 213.3333333333334H234.6666666666667V85.3333333333334H106.6666666666667V213.3333333333334L149.3333333333333 298.6666666666667H213.3333333333333M384 298.6666666666667L341.3333333333333 213.3333333333334H405.3333333333333V85.3333333333334H277.3333333333333V213.3333333333334L320 298.6666666666667H384z" />
+    <glyph glyph-name="format-rotate-90"
+      unicode="&#xF6A9;"
+      horiz-adv-x="512" d=" M156.5866666666667 311.2533333333334L18.3466666666667 172.8L156.8 34.5599999999999L295.2533333333334 172.8L156.5866666666667 311.2533333333334M78.72 172.8L156.8 250.88L234.6666666666667 172.8L156.5866666666667 94.72L78.72 172.8M413.0133333333333 306.3466666666667C375.68 343.8933333333333 326.4 362.6666666666667 277.3333333333333 362.6666666666667V431.7866666666667L186.88 341.3333333333334L277.3333333333333 250.88V320C315.52 320 353.7066666666666 305.4933333333334 382.9333333333333 276.2666666666667C441.1733333333333 218.0266666666667 441.1733333333333 123.3066666666667 382.9333333333333 65.0666666666666C353.7066666666666 35.84 315.52 21.3333333333334 277.3333333333333 21.3333333333334C256.64 21.3333333333334 235.9466666666667 25.8133333333334 216.7466666666667 34.3466666666667L184.96 2.5600000000001C213.3333333333333 -13.2266666666667 245.3333333333333 -21.3333333333333 277.3333333333333 -21.3333333333333C326.4 -21.3333333333333 375.68 -2.56 413.0133333333333 34.9866666666667C488.1066666666666 109.8666666666667 488.1066666666666 231.4666666666667 413.0133333333333 306.3466666666667z" />
+    <glyph glyph-name="format-section"
+      unicode="&#xF69E;"
+      horiz-adv-x="512" d=" M334.2933333333333 353.7066666666667C313.6 366.0800000000001 289.7066666666667 372.48 265.6 372.0533333333334C231.8933333333333 372.0533333333334 206.08 355.4133333333334 206.08 329.3866666666667C206.08 299.52 234.6666666666667 288.64 277.3333333333333 274.3466666666667C330.6666666666667 257.0666666666667 371.2 235.3066666666667 371.2 183.8933333333333C370.3466666666667 155.9466666666667 356.0533333333333 130.3466666666667 332.8 114.9866666666667C346.6666666666666 101.9733333333333 354.3466666666667 83.6266666666667 354.1333333333333 64.64C354.1333333333333 4.48 298.6666666666667 -20.6933333333334 245.3333333333333 -20.6933333333334C214.1866666666667 -21.9733333333334 183.2533333333333 -13.6533333333334 156.8 2.7733333333333L170.6666666666667 35.4133333333334C192.8533333333333 20.2666666666667 219.0933333333333 12.16 245.9733333333333 11.9466666666667C282.6666666666667 11.9466666666667 309.9733333333333 28.5866666666667 309.9733333333333 58.88C309.9733333333333 85.3333333333333 293.3333333333333 100.0533333333333 240 118.4C181.3333333333333 138.6666666666667 140.8 160 140.8 208.8533333333333C142.2933333333333 237.0133333333333 158.5066666666667 262.6133333333334 183.4666666666667 275.8400000000001C170.0266666666667 288 162.3466666666666 305.7066666666667 162.1333333333333 324.0533333333334C162.1333333333333 374.4 208.4266666666667 405.3333333333333 267.3066666666666 405.3333333333333C294.8266666666667 405.3333333333333 321.92 399.1466666666667 346.24 386.3466666666667L334.2933333333333 353.7066666666667M242.1333333333334 161.7066666666667C264.7466666666667 154.6666666666667 286.72 145.4933333333334 307.4133333333333 134.1866666666667C321.28 144.64 329.1733333333333 161.0666666666667 328.7466666666667 178.3466666666667C328.7466666666667 199.68 315.0933333333333 218.4533333333333 277.3333333333333 231.68C253.6533333333334 239.5733333333333 229.9733333333333 249.3866666666667 207.36 260.9066666666667C191.36 251.3066666666667 181.3333333333333 234.0266666666667 181.3333333333333 215.2533333333333C181.3333333333333 194.56 196.9066666666667 177.4933333333334 242.1333333333334 161.7066666666667z" />
+    <glyph glyph-name="format-size"
+      unicode="&#xF27F;"
+      horiz-adv-x="512" d=" M64 192H128V42.6666666666667H192V192H256V256H64M192 362.6666666666667V298.6666666666667H298.6666666666667V42.6666666666667H362.6666666666667V298.6666666666667H469.3333333333333V362.6666666666667H192z" />
+    <glyph glyph-name="format-strikethrough"
+      unicode="&#xF280;"
+      horiz-adv-x="512" d=" M64 149.3333333333334H448V192H64M106.6666666666667 362.6666666666667V298.6666666666667H213.3333333333333V234.6666666666667H298.6666666666667V298.6666666666667H405.3333333333333V362.6666666666667M213.3333333333333 42.6666666666667H298.6666666666667V106.6666666666667H213.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="format-strikethrough-variant"
+      unicode="&#xF281;"
+      horiz-adv-x="512" d=" M490.6666666666666 192V149.3333333333334H397.0133333333333C418.3466666666667 103.68 417.28 -21.3333333333333 264.1066666666667 -21.3333333333333C86.4 -22.4 93.2266666666667 117.3333333333334 93.2266666666667 117.3333333333334L177.92 116.2666666666667C178.56 44.3733333333333 245.3333333333333 44.3733333333333 258.56 45.2266666666666C272.2133333333333 46.2933333333333 323.2 46.0799999999999 327.2533333333334 95.9999999999999C328.96 119.2533333333333 305.4933333333334 136.9599999999999 279.8933333333333 149.3333333333333H21.3333333333333V192H490.6666666666666M414.08 279.68L329.1733333333333 280.32S332.8 339.4133333333333 259.2 339.6266666666666C185.6 340.0533333333334 192 292.6933333333334 192 286.7200000000001C192.8533333333333 280.7466666666667 199.2533333333333 251.3066666666667 256 237.2266666666667H121.8133333333333S47.36 380.8 229.12 405.3333333333333C414.9333333333334 430.9333333333334 414.5066666666667 279.2533333333334 414.08 279.68z" />
+    <glyph glyph-name="format-subscript"
+      unicode="&#xF282;"
+      horiz-adv-x="512" d=" M341.3333333333333 289.92L243.4133333333334 192L341.3333333333333 94.08L311.2533333333334 64L213.3333333333333 161.92L115.4133333333333 64L85.3333333333333 94.08L183.2533333333333 192L85.3333333333333 289.92L115.4133333333333 320L213.3333333333333 222.08L311.2533333333334 320L341.3333333333333 289.92M466.1333333333333 -0.64H362.0266666666667V20.6933333333333L381.0133333333334 37.76C397.2266666666668 51.6266666666667 409.1733333333334 63.1466666666667 417.2800000000001 72.5333333333333C425.1733333333334 81.92 429.2266666666667 90.6666666666667 429.4400000000001 98.9866666666666C429.6533333333334 104.96 427.7333333333334 109.8666666666666 423.6800000000001 113.92C419.8400000000001 117.3333333333333 413.6533333333334 119.8933333333333 405.3333333333334 119.8933333333333C398.7200000000001 119.8933333333333 392.9600000000001 118.6133333333332 387.4133333333334 116.0533333333333L373.3333333333334 107.9466666666666L363.7333333333334 132.9066666666666C369.4933333333334 137.3866666666666 376.3200000000001 141.2266666666666 384.6400000000001 144.2133333333333S402.1333333333335 149.3333333333333 412.1600000000001 149.3333333333333C428.8000000000001 148.4799999999999 441.6 143.9999999999999 450.1333333333335 135.2533333333332C458.6666666666667 126.5066666666666 463.3600000000001 115.4133333333333 463.3600000000001 101.7599999999999C463.1466666666668 89.8133333333333 459.3066666666667 78.72 451.8400000000001 68.6933333333333C444.5866666666668 58.6666666666666 435.6266666666668 49.0666666666666 424.7466666666668 39.68L411.0933333333335 28.5866666666666V28.16H466.1333333333335V-0.6400000000001z" />
+    <glyph glyph-name="format-superscript"
+      unicode="&#xF283;"
+      horiz-adv-x="512" d=" M341.3333333333333 289.92L243.4133333333334 192L341.3333333333333 94.08L311.2533333333334 64L213.3333333333333 161.92L115.4133333333333 64L85.3333333333333 94.08L183.2533333333333 192L85.3333333333333 289.92L115.4133333333333 320L213.3333333333333 222.08L311.2533333333334 320L341.3333333333333 289.92M466.1333333333333 256H362.0266666666667V277.3333333333334L381.0133333333334 294.8266666666667C397.2266666666668 308.48 409.1733333333334 320 417.2800000000001 329.6C425.1733333333334 338.9866666666667 429.2266666666667 347.7333333333334 429.4400000000001 355.8400000000001C429.6533333333334 361.8133333333334 427.7333333333334 366.9333333333334 423.6800000000001 370.7733333333333C419.8400000000001 374.8266666666667 413.6533333333334 376.7466666666667 405.3333333333334 376.9600000000001C398.7200000000001 376.7466666666667 392.9600000000001 375.4666666666667 387.4133333333334 373.3333333333334L373.3333333333334 365.0133333333333L363.7333333333334 389.9733333333334C369.4933333333334 394.6666666666667 376.3200000000001 398.2933333333334 384.6400000000001 401.28S402.1333333333334 405.3333333333333 412.16 405.3333333333333C428.8 405.3333333333333 441.6 401.0666666666667 450.1333333333334 392.32C458.6666666666666 384 463.36 372.48 463.36 358.8266666666667C463.1466666666666 346.88 459.3066666666667 335.7866666666667 451.84 325.76C444.5866666666667 315.5200000000001 435.6266666666667 305.92 424.7466666666668 296.7466666666667L411.0933333333334 285.6533333333334V285.2266666666667H466.1333333333333V256z" />
+    <glyph glyph-name="format-text"
+      unicode="&#xF284;"
+      horiz-adv-x="512" d=" M394.6666666666667 362.6666666666667L419.4133333333333 269.8666666666667L398.9333333333333 264.3200000000001C389.3333333333333 282.88 379.52 301.4400000000001 368.2133333333333 310.8266666666667C356.9066666666667 320 343.68 320 330.6666666666667 320H277.3333333333333V96C277.3333333333333 85.3333333333334 277.3333333333333 74.6666666666667 284.3733333333334 69.3333333333334C291.6266666666667 64 305.7066666666667 64 320 64V42.6666666666667H192V64C206.2933333333333 64 220.3733333333333 64 227.6266666666667 69.3333333333334C234.6666666666667 74.6666666666667 234.6666666666667 85.3333333333334 234.6666666666667 96V320H181.3333333333333C168.32 320 155.0933333333333 320 143.7866666666667 310.8266666666667C132.48 301.44 122.6666666666667 282.88 113.0666666666667 264.3200000000001L92.5866666666667 269.8666666666667L117.3333333333333 362.6666666666667H394.6666666666667z" />
+    <glyph glyph-name="format-textdirection-l-to-r"
+      unicode="&#xF285;"
+      horiz-adv-x="512" d=" M448 64L362.6666666666667 149.3333333333334V85.3333333333334H106.6666666666667V42.6666666666667H362.6666666666667V-21.3333333333333M192 234.6666666666667V128H234.6666666666667V362.6666666666667H277.3333333333333V128H320V362.6666666666667H362.6666666666667V405.3333333333333H192C144.8533333333333 405.3333333333333 106.6666666666667 367.1466666666667 106.6666666666667 320S144.8533333333333 234.6666666666667 192 234.6666666666667z" />
+    <glyph glyph-name="format-textdirection-r-to-l"
+      unicode="&#xF286;"
+      horiz-adv-x="512" d=" M170.6666666666667 85.3333333333334V149.3333333333334L85.3333333333333 64L170.6666666666667 -21.3333333333333V42.6666666666667H426.6666666666667V85.3333333333334M213.3333333333333 234.6666666666667V128H256V362.6666666666667H298.6666666666667V128H341.3333333333333V362.6666666666667H384V405.3333333333333H213.3333333333333C166.1866666666667 405.3333333333333 128 367.1466666666667 128 320S166.1866666666667 234.6666666666667 213.3333333333333 234.6666666666667z" />
+    <glyph glyph-name="format-title"
+      unicode="&#xF5F4;"
+      horiz-adv-x="512" d=" M106.6666666666667 362.6666666666667V298.6666666666667H224V42.6666666666667H288V298.6666666666667H405.3333333333333V362.6666666666667H106.6666666666667z" />
+    <glyph glyph-name="format-underline"
+      unicode="&#xF287;"
+      horiz-adv-x="512" d=" M106.6666666666667 0H405.3333333333333V42.6666666666667H106.6666666666667V0M256 85.3333333333334C326.6133333333334 85.3333333333334 384 142.72 384 213.3333333333334V384H330.6666666666667V213.3333333333334C330.6666666666667 172.16 297.1733333333333 138.6666666666667 256 138.6666666666667S181.3333333333333 172.16 181.3333333333333 213.3333333333334V384H128V213.3333333333334C128 142.72 185.3866666666667 85.3333333333334 256 85.3333333333334z" />
+    <glyph glyph-name="format-vertical-align-bottom"
+      unicode="&#xF621;"
+      horiz-adv-x="512" d=" M341.3333333333333 170.6666666666667H277.3333333333333V384H234.6666666666667V170.6666666666667H170.6666666666667L256 85.3333333333334L341.3333333333333 170.6666666666667M85.3333333333333 42.6666666666667V0H426.6666666666667V42.6666666666667H85.3333333333333z" />
+    <glyph glyph-name="format-vertical-align-center"
+      unicode="&#xF622;"
+      horiz-adv-x="512" d=" M170.6666666666667 42.6666666666667H234.6666666666667V-42.6666666666666H277.3333333333333V42.6666666666667H341.3333333333333L256 128L170.6666666666667 42.6666666666667M341.3333333333333 341.3333333333334H277.3333333333333V426.6666666666667H234.6666666666667V341.3333333333334H170.6666666666667L256 256L341.3333333333333 341.3333333333334M85.3333333333333 213.3333333333334V170.6666666666667H426.6666666666667V213.3333333333334H85.3333333333333z" />
+    <glyph glyph-name="format-vertical-align-top"
+      unicode="&#xF623;"
+      horiz-adv-x="512" d=" M170.6666666666667 213.3333333333334H234.6666666666667V0H277.3333333333333V213.3333333333334H341.3333333333333L256 298.6666666666667L170.6666666666667 213.3333333333334M85.3333333333333 384V341.3333333333334H426.6666666666667V384H85.3333333333333z" />
+    <glyph glyph-name="format-wrap-inline"
+      unicode="&#xF288;"
+      horiz-adv-x="512" d=" M170.6666666666667 298.6666666666667L277.3333333333333 85.3333333333334H64L170.6666666666667 298.6666666666667M64 384H448V341.3333333333334H64V384M448 128V85.3333333333334H298.6666666666667V128H448M64 42.6666666666667H448V0H64V42.6666666666667z" />
+    <glyph glyph-name="format-wrap-square"
+      unicode="&#xF289;"
+      horiz-adv-x="512" d=" M256 298.6666666666667L362.6666666666667 85.3333333333334H149.3333333333333L256 298.6666666666667M64 384H448V341.3333333333334H64V384M64 298.6666666666667H128V256H64V298.6666666666667M448 298.6666666666667V256H384V298.6666666666667H448M64 213.3333333333334H128V170.6666666666667H64V213.3333333333334M448 213.3333333333334V170.6666666666667H384V213.3333333333334H448M64 128H128V85.3333333333334H64V128M448 128V85.3333333333334H384V128H448M64 42.6666666666667H448V0H64V42.6666666666667z" />
+    <glyph glyph-name="format-wrap-tight"
+      unicode="&#xF28A;"
+      horiz-adv-x="512" d=" M256 298.6666666666667L362.6666666666667 85.3333333333334H149.3333333333333L256 298.6666666666667M64 384H448V341.3333333333334H64V384M64 298.6666666666667H192V256H64V298.6666666666667M448 298.6666666666667V256H320V298.6666666666667H448M64 213.3333333333334H149.3333333333333V170.6666666666667H64V213.3333333333334M448 213.3333333333334V170.6666666666667H362.6666666666667V213.3333333333334H448M64 128H128V85.3333333333334H64V128M448 128V85.3333333333334H384V128H448M64 42.6666666666667H448V0H64V42.6666666666667z" />
+    <glyph glyph-name="format-wrap-top-bottom"
+      unicode="&#xF28B;"
+      horiz-adv-x="512" d=" M256 298.6666666666667L362.6666666666667 85.3333333333334H149.3333333333333L256 298.6666666666667M64 384H448V341.3333333333334H64V384M64 42.6666666666667H448V0H64V42.6666666666667z" />
+    <glyph glyph-name="forum"
+      unicode="&#xF28C;"
+      horiz-adv-x="512" d=" M362.6666666666667 192V384C362.6666666666667 395.7333333333334 353.0666666666667 405.3333333333333 341.3333333333333 405.3333333333333H64C52.2666666666667 405.3333333333333 42.6666666666667 395.7333333333334 42.6666666666667 384V85.3333333333334L128 170.6666666666667H341.3333333333333C353.0666666666667 170.6666666666667 362.6666666666667 180.2666666666667 362.6666666666667 192M448 320H405.3333333333333V128H128V85.3333333333334C128 73.6 137.6 64 149.3333333333333 64H384L469.3333333333333 -21.3333333333333V298.6666666666667C469.3333333333333 310.4 459.7333333333333 320 448 320z" />
+    <glyph glyph-name="forum-outline"
+      unicode="&#xF821;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V85.3333333333334L128 170.6666666666667H320C343.4666666666667 170.6666666666667 362.6666666666667 189.8666666666667 362.6666666666667 213.3333333333334V362.6666666666667C362.6666666666667 386.1333333333334 343.4666666666667 405.3333333333333 320 405.3333333333333H85.3333333333333M85.3333333333333 362.6666666666667H320V213.3333333333334H128L85.3333333333333 170.6666666666667V362.6666666666667M405.3333333333333 320V277.3333333333334H426.6666666666667V64L384 106.6666666666667H170.6666666666667V128H128V106.6666666666667C128 83.2 147.2 64 170.6666666666667 64H384L469.3333333333333 -21.3333333333333V277.3333333333334C469.3333333333333 300.8 450.1333333333334 320 426.6666666666667 320H405.3333333333333z" />
+    <glyph glyph-name="forward"
+      unicode="&#xF28D;"
+      horiz-adv-x="512" d=" M256 277.3333333333334V362.6666666666667L426.6666666666667 192L256 21.3333333333334V106.6666666666667H85.3333333333333V277.3333333333334H256z" />
+    <glyph glyph-name="fountain"
+      unicode="&#xF96A;"
+      horiz-adv-x="512" d=" M160 405.3333333333333C95.36 405.3333333333333 42.6666666666667 352.8533333333334 42.6666666666667 288V277.3333333333334H85.3333333333333V288C85.3333333333333 329.1733333333334 118.8266666666667 362.6666666666667 160 362.6666666666667C192 362.6666666666667 218.88 342.8266666666667 229.5466666666667 314.88C221.2266666666666 318.2933333333334 212.2666666666667 320 202.6666666666667 320C173.0133333333333 320 147.2 302.5066666666667 135.2533333333333 277.3333333333334L172.3733333333333 256C176.8533333333334 268.3733333333334 188.8 277.3333333333334 202.6666666666667 277.3333333333334C220.3733333333333 277.3333333333334 234.6666666666667 263.04 234.6666666666667 245.3333333333334V213.3333333333334H277.3333333333333V245.3333333333334C277.3333333333333 263.04 291.6266666666667 277.3333333333334 309.3333333333333 277.3333333333334C323.4133333333333 277.3333333333334 335.1466666666667 268.3733333333334 339.6266666666667 256L376.7466666666667 277.3333333333334C364.8 302.5066666666667 339.2 320 309.3333333333333 320C299.7333333333334 320 290.7733333333333 318.2933333333334 282.4533333333333 314.88C293.12 342.8266666666667 320 362.6666666666667 352 362.6666666666667C393.1733333333333 362.6666666666667 426.6666666666667 329.1733333333334 426.6666666666667 288V277.3333333333334H469.3333333333333V288C469.3333333333333 352.8533333333334 416.8533333333333 405.3333333333333 352 405.3333333333333C312.32 405.3333333333333 277.3333333333333 385.4933333333334 256 355.4133333333334C234.6666666666667 385.4933333333334 199.68 405.3333333333333 160 405.3333333333333M128 192V149.3333333333334H158.2933333333333C168.96 124.8 188.8 105.1733333333334 213.3333333333333 94.5066666666667V42.6666666666667H42.6666666666667S60.16 16.4266666666667 72.7466666666667 -2.3466666666666C80.64 -14.2933333333333 93.8666666666667 -21.3333333333333 108.16 -21.3333333333333H403.84C418.1333333333334 -21.3333333333333 431.36 -14.2933333333333 439.2533333333334 -2.3466666666666L469.3333333333333 42.6666666666667H298.6666666666667V94.5066666666667C323.2 105.1733333333334 343.04 124.8 353.7066666666666 149.3333333333334H384V192H128z" />
+    <glyph glyph-name="foursquare"
+      unicode="&#xF28E;"
+      horiz-adv-x="512" d=" M362.6666666666667 341.3333333333334L353.4933333333334 288C352 283.0933333333334 345.6 277.3333333333334 339.4133333333333 277.3333333333334H256C245.9733333333333 277.3333333333334 233.6 270.5066666666667 233.6 260.48V251.7333333333334C233.6 241.7066666666667 245.9733333333333 234.6666666666667 256 234.6666666666667H325.9733333333333C333.0133333333333 234.6666666666667 339.84 226.9866666666667 338.3466666666667 219.52C336.8533333333333 211.84 318.72 164.6933333333333 317.8666666666666 160C317.0133333333333 156.3733333333333 312.32 149.3333333333334 304 149.3333333333334H242.56C231.4666666666666 149.3333333333334 228.0533333333333 147.84 220.5866666666666 138.6666666666667C213.3333333333333 129.28 155.0933333333333 61.8666666666667 155.0933333333333 61.8666666666667C154.4533333333333 61.2266666666666 149.3333333333333 63.1466666666667 149.3333333333333 64V341.3333333333334C149.3333333333333 347.7333333333334 162.3466666666666 362.6666666666667 170.6666666666666 362.6666666666667H352C358.8266666666667 362.6666666666667 364.3733333333333 349.6533333333333 362.6666666666667 341.3333333333334M362.6666666666667 139.7333333333334C365.0133333333333 149.9733333333334 400.64 304.6400000000001 410.0266666666667 350.9333333333334M375.04 405.3333333333333H147.4133333333333C115.84 405.3333333333333 106.6666666666667 381.6533333333333 106.6666666666667 366.9333333333334V5.12C106.6666666666667 -11.52 115.6266666666667 -17.9200000000001 120.7466666666667 -19.84C125.8666666666667 -21.9733333333334 139.7333333333333 -23.6799999999999 148.0533333333334 -14.08C148.0533333333334 -14.08 248.5333333333334 101.9733333333334 250.4533333333333 103.8933333333334C253.2266666666667 106.6666666666667 253.2266666666667 106.6666666666667 256 106.6666666666667H325.5466666666666C354.7733333333333 106.6666666666667 359.4666666666667 128.0000000000001 362.6666666666667 139.7333333333334C365.0133333333333 149.9733333333334 400.64 304.6400000000001 410.0266666666667 350.9333333333334C417.28 386.3466666666668 408.32 405.3333333333334 375.04 405.3333333333334z" />
+    <glyph glyph-name="freebsd"
+      unicode="&#xF8DF;"
+      horiz-adv-x="512" d=" M57.3866666666667 405.3333333333333C75.52 406.4 129.7066666666667 380.5866666666667 130.7733333333333 379.9466666666667C103.2533333333333 362.6666666666667 79.7866666666667 339.4133333333334 62.08 311.8933333333333C44.5866666666667 345.3866666666667 28.5866666666667 385.92 42.6666666666667 400C46.2933333333333 403.6266666666667 51.2 405.3333333333333 57.3866666666667 405.3333333333333M444.5866666666667 402.56C453.3333333333333 403.6266666666667 460.3733333333333 402.3466666666667 464.64 398.08C487.4666666666667 375.04 424.1066666666667 274.1333333333334 413.4400000000001 263.2533333333334C402.56 252.5866666666667 374.8266666666667 262.4000000000001 352.0000000000001 285.2266666666667C329.1733333333334 308.2666666666667 319.3600000000001 335.7866666666667 330.0266666666668 346.6666666666667C338.7733333333335 355.4133333333334 407.2533333333334 398.9333333333334 444.5866666666667 402.56M256 393.3866666666667C283.52 393.3866666666667 309.9733333333333 387.84 334.08 378.0266666666667C323.6266666666667 371.2 315.9466666666667 365.8666666666667 313.3866666666667 363.3066666666667C292.2666666666667 342.1866666666667 301.6533333333333 302.2933333333334 335.36 268.5866666666667C356.2666666666667 247.8933333333333 380.5866666666667 235.3066666666667 400.64 235.3066666666667C415.1466666666666 235.3066666666667 424.9599999999999 241.4933333333333 430.08 246.6133333333333C433.7066666666666 250.24 439.4666666666666 258.56 446.08 268.5866666666667C456.9599999999999 243.4133333333333 462.7199999999999 215.8933333333333 462.7199999999999 186.6666666666666C462.7199999999999 72.3199999999999 370.3466666666667 -20.6933333333334 256 -20.6933333333334C141.6533333333333 -20.6933333333334 49.28 72.3199999999999 49.28 186.6666666666666S141.6533333333333 393.3866666666667 256 393.3866666666667z" />
+    <glyph glyph-name="fridge"
+      unicode="&#xF290;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333H362.6666666666667C386.1333333333334 405.3333333333333 405.3333333333333 386.1333333333334 405.3333333333333 362.6666666666667V256H106.6666666666667V362.6666666666667C106.6666666666667 386.1333333333334 125.8666666666667 405.3333333333333 149.3333333333333 405.3333333333333M405.3333333333333 42.6666666666667C405.3333333333333 19.2 386.1333333333334 0 362.6666666666667 0V-21.3333333333333H320V0H192V-21.3333333333333H149.3333333333333V0C125.8666666666667 0 106.6666666666667 19.2 106.6666666666667 42.6666666666667V234.6666666666667H405.3333333333333V42.6666666666667M170.6666666666667 341.3333333333334V298.6666666666667H213.3333333333333V341.3333333333334H170.6666666666667M170.6666666666667 192V128H213.3333333333333V192H170.6666666666667z" />
+    <glyph glyph-name="fridge-bottom"
+      unicode="&#xF292;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333C125.8666666666667 405.3333333333333 106.6666666666667 386.1333333333334 106.6666666666667 362.6666666666667V42.6666666666667C106.6666666666667 19.2 125.8666666666667 0 149.3333333333333 0V-21.3333333333333H192V0H320V-21.3333333333333H362.6666666666667V0C386.1333333333334 0 405.3333333333333 19.2 405.3333333333333 42.6666666666667V362.6666666666667C405.3333333333333 386.1333333333334 386.1333333333334 405.3333333333333 362.6666666666667 405.3333333333333H149.3333333333333M170.6666666666667 320H213.3333333333333V277.3333333333334H170.6666666666667V320M149.3333333333333 213.3333333333334H362.6666666666667V42.6666666666667H149.3333333333333V213.3333333333334M170.6666666666667 192V128H213.3333333333333V192H170.6666666666667z" />
+    <glyph glyph-name="fridge-outline"
+      unicode="&#xF28F;"
+      horiz-adv-x="512" d=" M192 0V-21.3333333333333H149.3333333333333V0C125.8666666666667 0 106.6666666666667 19.2 106.6666666666667 42.6666666666667V362.6666666666667C106.6666666666667 386.1333333333334 125.8666666666667 405.3333333333333 149.3333333333333 405.3333333333333H362.6666666666667C386.1333333333334 405.3333333333333 405.3333333333333 386.1333333333334 405.3333333333333 362.6666666666667V42.6666666666667C405.3333333333333 19.2 386.1333333333334 0 362.6666666666667 0V-21.3333333333333H320V0H192M149.3333333333333 362.6666666666667V256H362.6666666666667V362.6666666666667H149.3333333333333M149.3333333333333 42.6666666666667H362.6666666666667V213.3333333333334H149.3333333333333V42.6666666666667M170.6666666666667 192H213.3333333333333V128H170.6666666666667V192M170.6666666666667 320H213.3333333333333V277.3333333333334H170.6666666666667V320z" />
+    <glyph glyph-name="fridge-top"
+      unicode="&#xF291;"
+      horiz-adv-x="512" d=" M170.6666666666667 277.3333333333334V320H213.3333333333333V277.3333333333334H170.6666666666667M149.3333333333333 405.3333333333333H362.6666666666667C386.1333333333334 405.3333333333333 405.3333333333333 386.1333333333334 405.3333333333333 362.6666666666667V42.6666666666667C405.3333333333333 19.2 386.1333333333334 0 362.6666666666667 0V-21.3333333333333H320V0H192V-21.3333333333333H149.3333333333333V0C125.8666666666667 0 106.6666666666667 19.2 106.6666666666667 42.6666666666667V362.6666666666667C106.6666666666667 386.1333333333334 125.8666666666667 405.3333333333333 149.3333333333333 405.3333333333333M149.3333333333333 362.6666666666667V256H362.6666666666667V362.6666666666667H149.3333333333333M170.6666666666667 192V128H213.3333333333333V192H170.6666666666667z" />
+    <glyph glyph-name="fuel"
+      unicode="&#xF7C9;"
+      horiz-adv-x="512" d=" M64 405.3333333333333H128C133.9733333333333 405.3333333333333 139.3066666666667 402.9866666666667 143.1466666666667 399.1466666666667L187.52 354.56L204.5866666666667 371.4133333333334C213.3333333333333 379.7333333333334 224 384 234.6666666666667 384H362.6666666666667C373.3333333333333 384 384 379.7333333333334 392.7466666666667 371.4133333333334L414.08 350.0800000000001C422.4 341.3333333333334 426.6666666666667 330.6666666666667 426.6666666666667 320V42.6666666666667C426.6666666666667 19.2 407.4666666666667 0 384 0H170.6666666666667C147.2 0 128 19.2 128 42.6666666666667V277.3333333333334C128 288 132.2666666666667 298.6666666666667 140.5866666666667 307.4133333333334L157.44 324.48L119.2533333333333 362.6666666666667H64V405.3333333333333M234.6666666666667 341.3333333333334V298.6666666666667H362.6666666666667V341.3333333333334H234.6666666666667M243.4133333333334 213.3333333333334L200.7466666666667 256H170.6666666666667V225.92L213.3333333333333 183.2533333333333V115.4133333333334L170.6666666666667 72.7466666666667V42.6666666666667H200.7466666666667L243.4133333333334 85.3333333333334H311.2533333333334L353.92 42.6666666666667H384V72.7466666666667L341.3333333333333 115.4133333333334V183.2533333333333L384 225.92V256H353.92L311.2533333333334 213.3333333333334H243.4133333333334M256 170.6666666666667H298.6666666666667V128H256V170.6666666666667z" />
+    <glyph glyph-name="fullscreen"
+      unicode="&#xF293;"
+      horiz-adv-x="512" d=" M106.6666666666667 341.3333333333334H213.3333333333333V298.6666666666667H149.3333333333333V234.6666666666667H106.6666666666667V341.3333333333334M298.6666666666667 341.3333333333334H405.3333333333333V234.6666666666667H362.6666666666667V298.6666666666667H298.6666666666667V341.3333333333334M362.6666666666667 149.3333333333334H405.3333333333333V42.6666666666667H298.6666666666667V85.3333333333334H362.6666666666667V149.3333333333334M213.3333333333333 85.3333333333334V42.6666666666667H106.6666666666667V149.3333333333334H149.3333333333333V85.3333333333334H213.3333333333333z" />
+    <glyph glyph-name="fullscreen-exit"
+      unicode="&#xF294;"
+      horiz-adv-x="512" d=" M298.6666666666667 149.3333333333334H405.3333333333333V106.6666666666667H341.3333333333333V42.6666666666667H298.6666666666667V149.3333333333334M106.6666666666667 149.3333333333334H213.3333333333333V42.6666666666667H170.6666666666667V106.6666666666667H106.6666666666667V149.3333333333334M170.6666666666667 341.3333333333334H213.3333333333333V234.6666666666667H106.6666666666667V277.3333333333334H170.6666666666667V341.3333333333334M405.3333333333333 277.3333333333334V234.6666666666667H298.6666666666667V341.3333333333334H341.3333333333333V277.3333333333334H405.3333333333333z" />
+    <glyph glyph-name="function"
+      unicode="&#xF295;"
+      horiz-adv-x="512" d=" M332.8 335.1466666666667C309.3333333333333 337.28 288.64 320 286.5066666666667 296.32L281.1733333333333 234.6666666666667H341.3333333333333V192H277.3333333333333L267.9466666666667 83.84C263.8933333333333 36.9066666666667 222.5066666666667 2.1333333333334 175.5733333333333 6.4C147.6266666666667 8.7466666666667 124.16 24.3200000000001 110.2933333333333 46.2933333333334L142.2933333333333 78.2933333333334C147.4133333333333 62.5066666666668 161.4933333333334 50.3466666666668 179.2 48.8533333333334C202.6666666666667 46.72 223.36 64.0000000000001 225.4933333333334 87.6800000000001L234.6666666666667 192H170.6666666666667V234.6666666666667H238.2933333333333L244.0533333333333 300.1600000000001C248.1066666666667 347.0933333333334 289.4933333333334 381.8666666666667 336.4266666666666 377.6C364.3733333333333 375.2533333333334 387.84 359.68 401.7066666666666 337.7066666666667L369.7066666666666 305.7066666666667C364.5866666666667 321.4933333333334 350.5066666666667 333.6533333333334 332.8 335.1466666666667z" />
+    <glyph glyph-name="function-variant"
+      unicode="&#xF870;"
+      horiz-adv-x="512" d=" M264.96 335.1466666666667C241.4933333333334 337.28 220.8 320 218.6666666666667 296.32L213.3333333333333 234.6666666666667H273.4933333333334V192H209.4933333333334L200.1066666666667 83.84C195.84 36.9066666666667 154.4533333333333 2.1333333333334 107.52 6.4C80.8533333333334 8.7466666666667 56.7466666666667 23.4666666666667 42.6666666666667 46.2933333333334L74.6666666666667 78.2933333333334C81.7066666666667 55.8933333333334 105.8133333333334 43.3066666666667 128 50.5600000000001C144.64 55.68 156.3733333333333 70.4 157.8666666666667 87.68L166.8266666666667 192H102.8266666666667V234.6666666666667H170.6666666666667L176.4266666666667 300.1600000000001C180.48 347.0933333333334 221.6533333333333 381.8666666666667 268.8 378.0266666666667C295.68 375.68 320 360.7466666666667 334.08 337.7066666666667L302.08 305.7066666666667C296.7466666666667 322.1333333333334 282.24 333.6533333333334 264.96 335.1466666666667M469.3333333333333 156.8L439.2533333333334 186.88L378.88 126.5066666666667L318.5066666666666 186.88L288 156.8L348.8 96L288 36.0533333333334L318.5066666666666 5.9733333333334L378.88 66.3466666666667L439.2533333333332 5.9733333333334L469.3333333333333 36.0533333333334L408.9600000000001 96L469.3333333333333 156.8z" />
+    <glyph glyph-name="gamepad"
+      unicode="&#xF296;"
+      horiz-adv-x="512" d=" M352 256L288 192L352 128H469.3333333333333V256M192 96V-21.3333333333333H320V96L256 160M160 256H42.6666666666667V128H160L224 192M320 288V405.3333333333333H192V288L256 224L320 288z" />
+    <glyph glyph-name="gamepad-variant"
+      unicode="&#xF297;"
+      horiz-adv-x="512" d=" M149.3333333333333 320H362.6666666666667C433.28 320 490.6666666666666 262.6133333333334 490.6666666666666 192S433.28 64 362.6666666666667 64C324.6933333333334 64 290.7733333333333 80.4266666666667 267.3066666666667 106.6666666666667H244.6933333333334C221.2266666666667 80.4266666666667 187.3066666666667 64 149.3333333333334 64C78.72 64 21.3333333333334 121.3866666666667 21.3333333333334 192S78.72 320 149.3333333333334 320M128 256V213.3333333333334H85.3333333333333V170.6666666666667H128V128H170.6666666666667V170.6666666666667H213.3333333333333V213.3333333333334H170.6666666666667V256H128M330.6666666666667 192C312.96 192 298.6666666666667 177.7066666666667 298.6666666666667 160S312.96 128 330.6666666666667 128S362.6666666666667 142.2933333333334 362.6666666666667 160S348.3733333333333 192 330.6666666666667 192M394.6666666666667 256C376.9600000000001 256 362.6666666666667 241.7066666666667 362.6666666666667 224S376.9600000000001 192 394.6666666666667 192S426.6666666666667 206.2933333333334 426.6666666666667 224S412.3733333333333 256 394.6666666666667 256z" />
+    <glyph glyph-name="garage"
+      unicode="&#xF6D8;"
+      horiz-adv-x="512" d=" M405.3333333333333 21.3333333333334H362.6666666666667V213.3333333333334H149.3333333333333V21.3333333333334H106.6666666666667V256L256 341.3333333333334L405.3333333333333 256V21.3333333333334M170.6666666666667 192H341.3333333333333V149.3333333333334H170.6666666666667V192M170.6666666666667 128H341.3333333333333V85.3333333333334H170.6666666666667V128M341.3333333333333 64V21.3333333333334H170.6666666666667V64H341.3333333333333z" />
+    <glyph glyph-name="garage-alert"
+      unicode="&#xF871;"
+      horiz-adv-x="512" d=" M362.6666666666667 21.3333333333334H320V213.3333333333334H106.6666666666667V21.3333333333334H64V256L213.3333333333333 341.3333333333334L362.6666666666667 256V21.3333333333334M128 192H298.6666666666667V149.3333333333334H128V192M128 128H298.6666666666667V85.3333333333334H128V128M405.3333333333333 128V234.6666666666667H448V128H405.3333333333333M405.3333333333333 42.6666666666667V85.3333333333334H448V42.6666666666667H405.3333333333333z" />
+    <glyph glyph-name="garage-open"
+      unicode="&#xF6D9;"
+      horiz-adv-x="512" d=" M405.3333333333333 21.3333333333334H362.6666666666667V213.3333333333334H149.3333333333333V21.3333333333334H106.6666666666667V256L256 341.3333333333334L405.3333333333333 256V21.3333333333334M170.6666666666667 192H341.3333333333333V149.3333333333334H170.6666666666667V192z" />
+    <glyph glyph-name="gas-cylinder"
+      unicode="&#xF647;"
+      horiz-adv-x="512" d=" M341.3333333333333 256V21.3333333333334C341.3333333333333 -2.1333333333333 322.1333333333334 -21.3333333333333 298.6666666666667 -21.3333333333333H213.3333333333333C189.8666666666667 -21.3333333333333 170.6666666666667 -2.1333333333333 170.6666666666667 21.3333333333334V256C170.6666666666667 295.68 197.76 329.1733333333334 234.6666666666667 338.56V362.6666666666667H192V405.3333333333333H320V362.6666666666667H277.3333333333333V338.56C314.24 329.1733333333334 341.3333333333333 295.68 341.3333333333333 256z" />
+    <glyph glyph-name="gas-station"
+      unicode="&#xF298;"
+      horiz-adv-x="512" d=" M384 234.6666666666667C372.2666666666667 234.6666666666667 362.6666666666667 244.2666666666667 362.6666666666667 256S372.2666666666667 277.3333333333334 384 277.3333333333334S405.3333333333333 267.7333333333334 405.3333333333333 256S395.7333333333334 234.6666666666667 384 234.6666666666667M256 234.6666666666667H128V341.3333333333334H256M421.76 293.76L421.9733333333334 293.9733333333334L342.6133333333334 373.3333333333333L320 350.7200000000001L365.0133333333333 305.7066666666667C344.9600000000001 298.6666666666667 330.6666666666667 278.8266666666667 330.6666666666667 256C330.6666666666667 226.5600000000001 354.56 202.6666666666667 384 202.6666666666667C391.68 202.6666666666667 398.7200000000001 204.3733333333333 405.3333333333333 207.1466666666667V53.3333333333334C405.3333333333333 41.6 395.7333333333334 32 384 32S362.6666666666667 41.6 362.6666666666667 53.3333333333334V149.3333333333334C362.6666666666667 173.0133333333333 343.4666666666667 192 320 192H298.6666666666667V341.3333333333334C298.6666666666667 365.0133333333333 279.4666666666667 384 256 384H128C104.32 384 85.3333333333333 365.0133333333333 85.3333333333333 341.3333333333334V0H298.6666666666667V160H330.6666666666667V53.3333333333334C330.6666666666667 23.8933333333334 354.56 0 384 0S437.3333333333333 23.8933333333334 437.3333333333333 53.3333333333334V256C437.3333333333333 270.7200000000001 431.36 284.1600000000001 421.76 293.76z" />
+    <glyph glyph-name="gate"
+      unicode="&#xF299;"
+      horiz-adv-x="512" d=" M192 341.3333333333334V234.6666666666667H149.3333333333333V320H106.6666666666667V234.6666666666667H64V277.3333333333334H21.3333333333333V21.3333333333334H64V64H106.6666666666667V21.3333333333334H149.3333333333333V64H192V21.3333333333334H234.6666666666667V64H277.3333333333333V21.3333333333334H320V64H362.6666666666667V21.3333333333334H405.3333333333333V64H448V21.3333333333334H490.6666666666666V277.3333333333334H448V234.6666666666667H405.3333333333333V320H362.6666666666667V234.6666666666667H320V341.3333333333334H277.3333333333333V234.6666666666667H234.6666666666667V341.3333333333334H192M64 192H106.6666666666667V106.6666666666667H64V192M149.3333333333333 192H192V106.6666666666667H149.3333333333333V192M234.6666666666667 192H277.3333333333333V106.6666666666667H234.6666666666667V192M320 192H362.6666666666667V106.6666666666667H320V192M405.3333333333333 192H448V106.6666666666667H405.3333333333333V192z" />
+    <glyph glyph-name="gate-and"
+      unicode="&#xF8E0;"
+      horiz-adv-x="512" d=" M42.6666666666667 362.6666666666667V21.3333333333334H298.6666666666667C392.9600000000001 21.3333333333334 469.3333333333333 97.7066666666667 469.3333333333333 192S392.9600000000001 362.6666666666667 298.6666666666667 362.6666666666667H42.6666666666667M85.3333333333333 320H298.6666666666667C369.28 320 426.6666666666667 262.6133333333334 426.6666666666667 192S369.28 64 298.6666666666667 64H85.3333333333333V320z" />
+    <glyph glyph-name="gate-nand"
+      unicode="&#xF8E1;"
+      horiz-adv-x="512" d=" M42.6666666666667 362.6666666666667V21.3333333333334H213.3333333333333C286.5066666666667 21.3333333333334 352 67.4133333333334 375.4666666666667 136.5333333333334C384 132.2666666666667 394.6666666666667 128 405.3333333333333 128C440.7466666666667 128 469.3333333333333 156.5866666666667 469.3333333333333 192S440.7466666666667 256 405.3333333333333 256C394.6666666666667 256 384.64 252.8 375.4666666666667 247.4666666666667C352 316.5866666666667 286.5066666666667 362.6666666666667 213.3333333333333 362.6666666666667H42.6666666666667M85.3333333333333 320H213.3333333333333C283.9466666666667 320 341.3333333333333 262.6133333333334 341.3333333333333 192S283.9466666666667 64 213.3333333333333 64H85.3333333333333V320M405.3333333333333 213.3333333333334C416 213.3333333333334 426.6666666666667 202.6666666666667 426.6666666666667 192S416 170.6666666666667 405.3333333333333 170.6666666666667C393.6 170.6666666666667 384 180.2666666666667 384 192C384 202.6666666666667 394.6666666666667 213.3333333333334 405.3333333333333 213.3333333333334z" />
+    <glyph glyph-name="gate-nor"
+      unicode="&#xF8E2;"
+      horiz-adv-x="512" d=" M42.6666666666667 362.6666666666667C106.6666666666667 234.6666666666667 106.6666666666667 149.3333333333334 42.6666666666667 21.3333333333334H106.6666666666667C200.5333333333333 21.3333333333334 277.3333333333333 70.4 354.1333333333334 155.7333333333334C365.8666666666667 138.6666666666667 384.8533333333334 128 405.3333333333333 128C440.7466666666667 128 469.3333333333333 156.5866666666667 469.3333333333333 192S440.7466666666667 256 405.3333333333333 256C384.8533333333333 256 365.8666666666666 245.3333333333334 354.1333333333334 228.2666666666667C277.3333333333333 313.6 200.5333333333333 362.6666666666667 106.6666666666667 362.6666666666667H42.6666666666667M106.6666666666667 320C187.7333333333334 320 256 275.2000000000001 326.4 192C256 108.8 187.7333333333334 64 106.6666666666667 64C138.6666666666667 149.3333333333334 138.6666666666667 234.6666666666667 106.6666666666667 320M405.3333333333333 213.3333333333334C416 213.3333333333334 426.6666666666667 202.6666666666667 426.6666666666667 192S416 170.6666666666667 405.3333333333333 170.6666666666667C393.6 170.6666666666667 384 180.2666666666667 384 192C384 202.6666666666667 394.6666666666667 213.3333333333334 405.3333333333333 213.3333333333334z" />
+    <glyph glyph-name="gate-not"
+      unicode="&#xF8E3;"
+      horiz-adv-x="512" d=" M42.6666666666667 362.6666666666667V21.3333333333334L345.6 170.6666666666667C354.56 145.28 378.4533333333333 128 405.3333333333333 128C440.7466666666667 128 469.3333333333333 156.5866666666667 469.3333333333333 192S440.7466666666667 256 405.3333333333333 256C378.4533333333333 256 354.56 238.72 345.6 213.3333333333334L42.6666666666667 362.6666666666667M85.3333333333333 292.2666666666667L292.2666666666667 192L85.3333333333333 91.7333333333334V292.2666666666667M405.3333333333333 213.3333333333334C416 213.3333333333334 426.6666666666667 202.6666666666667 426.6666666666667 192S416 170.6666666666667 405.3333333333333 170.6666666666667C393.6 170.6666666666667 384 180.2666666666667 384 192C384 202.6666666666667 394.6666666666667 213.3333333333334 405.3333333333333 213.3333333333334z" />
+    <glyph glyph-name="gate-or"
+      unicode="&#xF8E4;"
+      horiz-adv-x="512" d=" M42.6666666666667 362.6666666666667C106.6666666666667 234.6666666666667 106.6666666666667 149.3333333333334 42.6666666666667 21.3333333333334H170.6666666666667C277.3333333333333 21.3333333333334 405.3333333333333 106.6666666666667 469.3333333333333 192C405.3333333333333 277.3333333333334 277.3333333333333 362.6666666666667 170.6666666666667 362.6666666666667H42.6666666666667M106.6666666666667 320H170.6666666666667C245.3333333333333 320 347.7333333333334 256 411.7333333333334 192C347.7333333333334 128 245.3333333333333 64 170.6666666666667 64H106.6666666666667C136.5333333333333 151.4666666666667 136.5333333333333 232.5333333333334 106.6666666666667 320z" />
+    <glyph glyph-name="gate-xnor"
+      unicode="&#xF8E5;"
+      horiz-adv-x="512" d=" M42.6666666666667 362.6666666666667C106.6666666666667 234.6666666666667 106.6666666666667 149.3333333333334 42.6666666666667 21.3333333333334H85.3333333333333C149.3333333333333 149.3333333333334 149.3333333333333 234.6666666666667 87.4666666666667 362.6666666666667H42.6666666666667M128 362.6666666666667C192 234.6666666666667 192 149.3333333333334 128 21.3333333333334H192C260.2666666666667 21.3333333333334 315.7333333333334 89.6 356.2666666666667 149.3333333333334C368.64 135.4666666666667 386.56 128 405.3333333333333 128C440.7466666666667 128 469.3333333333333 156.5866666666667 469.3333333333333 192S440.7466666666667 256 405.3333333333333 256C386.56 256 368.64 248.5333333333334 356.2666666666667 234.6666666666667C313.6 294.4 260.2666666666667 362.6666666666667 192 362.6666666666667H128M192 320C256 320 298.6666666666667 234.6666666666667 330.6666666666667 192C298.6666666666667 149.3333333333334 256 64 192 64C226.1333333333334 149.3333333333334 226.1333333333334 234.6666666666667 192 320M405.3333333333333 213.3333333333334C416 213.3333333333334 426.6666666666667 202.6666666666667 426.6666666666667 192S416 170.6666666666667 405.3333333333333 170.6666666666667C393.6 170.6666666666667 384 180.2666666666667 384 192C384 202.6666666666667 394.6666666666667 213.3333333333334 405.3333333333333 213.3333333333334z" />
+    <glyph glyph-name="gate-xor"
+      unicode="&#xF8E6;"
+      horiz-adv-x="512" d=" M42.6666666666667 362.6666666666667C106.6666666666667 234.6666666666667 106.6666666666667 149.3333333333334 42.6666666666667 21.3333333333334H85.3333333333333C149.3333333333333 149.3333333333334 149.3333333333333 234.6666666666667 87.4666666666667 362.6666666666667H42.6666666666667M128 362.6666666666667C192 234.6666666666667 192 149.3333333333334 128 21.3333333333334H192C298.6666666666667 21.3333333333334 384 85.3333333333334 469.3333333333333 192C384 298.6666666666667 298.6666666666667 362.6666666666667 192 362.6666666666667H128M192 320C273.0666666666667 320 341.3333333333333 275.2000000000001 411.7333333333334 192C339.2 108.8 273.0666666666667 64 192 64C224 149.3333333333334 224 234.6666666666667 192 320z" />
+    <glyph glyph-name="gauge"
+      unicode="&#xF29A;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 362.6666666666667C350.2933333333334 362.6666666666667 426.6666666666667 286.2933333333334 426.6666666666667 192C426.6666666666667 140.8 405.3333333333333 96 369.0666666666667 64C339.2 91.7333333333334 298.6666666666667 106.6666666666667 256 106.6666666666667S174.9333333333333 91.7333333333334 142.9333333333333 64C106.6666666666667 96 85.3333333333333 140.8 85.3333333333333 192C85.3333333333333 286.2933333333334 161.7066666666667 362.6666666666667 256 362.6666666666667M298.6666666666667 322.3466666666667C290.56 322.1333333333334 282.88 316.8 279.4666666666667 308.48L251.9466666666667 239.5733333333334L249.8133333333333 234.6666666666667C234.6666666666667 231.8933333333333 222.08 221.8666666666667 216.32 207.7866666666667C207.5733333333333 185.8133333333334 218.24 161.0666666666667 240.2133333333333 152.3200000000001C262.1866666666666 143.5733333333334 286.9333333333333 154.24 295.68 176.2133333333334C301.2266666666666 190.2933333333334 298.6666666666667 206.5066666666667 289.4933333333333 218.4533333333334L291.6266666666666 224.0000000000001L319.1466666666666 292.48L319.3599999999999 293.1200000000001C323.6266666666666 304.0000000000001 318.2933333333333 316.3733333333334 307.4133333333333 320.8533333333334C304.6399999999999 321.9200000000001 301.8666666666666 322.3466666666667 298.6666666666666 322.3466666666667M213.3333333333333 320C201.6 320 192 310.4 192 298.6666666666667S201.6 277.3333333333334 213.3333333333333 277.3333333333334S234.6666666666667 286.9333333333334 234.6666666666667 298.6666666666667S225.0666666666667 320 213.3333333333333 320M149.3333333333333 256C137.6 256 128 246.4000000000001 128 234.6666666666667S137.6 213.3333333333334 149.3333333333333 213.3333333333334S170.6666666666667 222.9333333333333 170.6666666666667 234.6666666666667S161.0666666666667 256 149.3333333333333 256M362.6666666666667 256C350.9333333333333 256 341.3333333333333 246.4000000000001 341.3333333333333 234.6666666666667S350.9333333333333 213.3333333333334 362.6666666666667 213.3333333333334S384 222.9333333333333 384 234.6666666666667S374.4 256 362.6666666666667 256z" />
+    <glyph glyph-name="gauge-empty"
+      unicode="&#xF872;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192C85.3333333333333 140.8 106.6666666666667 96 142.9333333333333 64C172.8 91.7333333333334 213.3333333333333 106.6666666666667 256 106.6666666666667S337.0666666666667 91.7333333333334 369.0666666666667 64C405.3333333333333 96 426.6666666666667 140.8 426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667M298.6666666666667 320C310.4 320 320 310.4 320 298.6666666666667S310.4 277.3333333333334 298.6666666666667 277.3333333333334S277.3333333333333 286.9333333333334 277.3333333333333 298.6666666666667S286.9333333333333 320 298.6666666666667 320M213.3333333333333 320C225.0666666666667 320 234.6666666666667 310.4 234.6666666666667 298.6666666666667S225.0666666666667 277.3333333333334 213.3333333333333 277.3333333333334S192 286.9333333333334 192 298.6666666666667S201.6 320 213.3333333333333 320M147.4133333333333 257.2800000000001C150.1866666666667 257.2800000000001 152.7466666666667 256.6400000000001 155.7333333333333 256L224 227.84L229.76 225.4933333333334C241.7066666666667 234.6666666666667 257.92 237.2266666666667 272 231.4666666666667C293.76 222.72 304.4266666666666 197.76 295.4666666666667 176C286.72 154.24 261.76 143.5733333333334 240 152.5333333333334C225.92 158.0800000000001 215.8933333333334 170.6666666666667 213.3333333333333 186.0266666666667L208.4266666666667 188.16L139.7333333333333 215.8933333333334L139.3066666666667 216.1066666666667C128 220.5866666666667 123.0933333333333 232.9600000000001 127.36 244.0533333333334C130.7733333333333 252.1600000000001 138.6666666666666 257.4933333333334 147.4133333333333 257.2800000000001M362.6666666666667 256C374.4 256 384 246.4000000000001 384 234.6666666666667S374.4 213.3333333333334 362.6666666666667 213.3333333333334S341.3333333333333 222.9333333333333 341.3333333333333 234.6666666666667S350.9333333333333 256 362.6666666666667 256z" />
+    <glyph glyph-name="gauge-full"
+      unicode="&#xF873;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 362.6666666666667C350.2933333333334 362.6666666666667 426.6666666666667 286.2933333333334 426.6666666666667 192C426.6666666666667 140.8 405.3333333333333 96 369.0666666666667 64C339.2 91.7333333333334 298.6666666666667 106.6666666666667 256 106.6666666666667S174.9333333333333 91.7333333333334 142.9333333333333 64C106.6666666666667 96 85.3333333333333 140.8 85.3333333333333 192C85.3333333333333 286.2933333333334 161.7066666666667 362.6666666666667 256 362.6666666666667M213.3333333333333 320C201.6 320 192 310.4 192 298.6666666666667S201.6 277.3333333333334 213.3333333333333 277.3333333333334S234.6666666666667 286.9333333333334 234.6666666666667 298.6666666666667S225.0666666666667 320 213.3333333333333 320M298.6666666666667 320C286.9333333333333 320 277.3333333333333 310.4 277.3333333333333 298.6666666666667S286.9333333333333 277.3333333333334 298.6666666666667 277.3333333333334S320 286.9333333333334 320 298.6666666666667S310.4 320 298.6666666666667 320M364.5866666666667 257.2800000000001C361.8133333333334 257.2800000000001 359.2533333333334 256.6400000000001 356.2666666666667 256L288 227.84L282.24 225.4933333333334C270.2933333333333 234.6666666666667 254.08 237.2266666666667 240 231.4666666666667C218.24 222.72 207.5733333333333 197.76 216.5333333333333 176C225.28 154.24 250.24 143.5733333333334 272 152.5333333333334C286.08 158.0800000000001 296.1066666666667 170.6666666666667 298.6666666666667 186.0266666666667L303.5733333333333 188.16L372.2666666666667 215.8933333333334L372.6933333333333 216.1066666666667C384 220.5866666666667 388.9066666666667 232.9600000000001 384.64 244.0533333333334C381.2266666666666 252.1600000000001 373.3333333333333 257.4933333333334 364.5866666666666 257.2800000000001M149.3333333333333 256C137.6 256 128 246.4000000000001 128 234.6666666666667S137.6 213.3333333333334 149.3333333333333 213.3333333333334S170.6666666666667 222.9333333333333 170.6666666666667 234.6666666666667S161.0666666666667 256 149.3333333333333 256z" />
+    <glyph glyph-name="gauge-low"
+      unicode="&#xF874;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192C85.3333333333333 140.8 106.6666666666667 96 142.9333333333333 64C172.8 91.7333333333334 213.3333333333333 106.6666666666667 256 106.6666666666667S337.0666666666667 91.7333333333334 369.0666666666667 64C405.3333333333333 96 426.6666666666667 140.8 426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667M213.3333333333333 322.3466666666667C221.44 322.1333333333334 229.12 316.8 232.5333333333334 308.48L260.0533333333334 239.5733333333334L262.1866666666667 234.6666666666667C277.3333333333333 231.8933333333333 289.92 221.8666666666667 295.68 207.7866666666667C304.4266666666667 185.8133333333334 293.76 161.0666666666667 271.7866666666667 152.3200000000001C249.8133333333334 143.5733333333334 225.0666666666667 154.24 216.3200000000001 176.2133333333334C210.7733333333334 190.2933333333334 213.3333333333334 206.5066666666667 222.5066666666667 218.4533333333334L220.3733333333334 224.0000000000001L192.8533333333334 292.48L192.6400000000001 293.1200000000001C188.3733333333334 304.0000000000001 193.7066666666667 316.3733333333334 204.5866666666667 320.8533333333334C207.3600000000001 321.9200000000001 210.1333333333334 322.3466666666667 213.3333333333334 322.3466666666667M298.6666666666667 320C310.4 320 320 310.4 320 298.6666666666667S310.4 277.3333333333334 298.6666666666667 277.3333333333334S277.3333333333333 286.9333333333334 277.3333333333333 298.6666666666667S286.9333333333333 320 298.6666666666667 320M362.6666666666667 256C374.4 256 384 246.4000000000001 384 234.6666666666667S374.4 213.3333333333334 362.6666666666667 213.3333333333334S341.3333333333333 222.9333333333333 341.3333333333333 234.6666666666667S350.9333333333333 256 362.6666666666667 256M149.3333333333333 256C161.0666666666667 256 170.6666666666667 246.4000000000001 170.6666666666667 234.6666666666667S161.0666666666667 213.3333333333334 149.3333333333333 213.3333333333334S128 222.9333333333333 128 234.6666666666667S137.6 256 149.3333333333333 256z" />
+    <glyph glyph-name="gavel"
+      unicode="&#xF29B;"
+      horiz-adv-x="512" d=" M49.0666666666667 15.36L253.8666666666666 220.16L224 250.4533333333333L208.6399999999999 235.3066666666666C200.3199999999999 226.9866666666666 186.88 226.9866666666666 178.56 235.3066666666666L163.4133333333333 250.4533333333333C155.0933333333333 258.7733333333333 155.0933333333333 272.2133333333333 163.4133333333333 280.5333333333333L284.1599999999999 401.28C292.4799999999999 409.6 305.9199999999999 409.6 314.2399999999999 401.28L329.3866666666666 386.1333333333334C337.7066666666666 377.8133333333333 337.7066666666666 364.3733333333334 329.3866666666666 356.0533333333333L314.2399999999999 341.3333333333333L344.5333333333333 310.8266666666667C352.8533333333333 319.1466666666667 366.2933333333333 319.1466666666667 374.6133333333333 310.8266666666667C382.9333333333333 302.5066666666667 382.9333333333333 288.8533333333333 374.6133333333333 280.5333333333333L404.6933333333333 250.4533333333333L419.84 265.6C428.16 273.92 441.8133333333334 273.92 450.1333333333334 265.6L465.0666666666667 250.4533333333333C473.3866666666667 242.1333333333333 473.3866666666667 228.48 465.0666666666667 220.16L344.5333333333333 99.6266666666667C336.2133333333333 91.3066666666666 322.56 91.3066666666666 314.24 99.6266666666667L299.3066666666666 114.56C290.7733333333333 122.88 290.7733333333333 136.5333333333333 299.3066666666666 144.8533333333333L314.24 160L284.16 190.0799999999999L79.1466666666667 -14.9333333333334C70.8266666666666 -23.2533333333334 57.3866666666666 -23.2533333333334 49.0666666666666 -14.9333333333334C40.7466666666666 -6.6133333333333 40.7466666666666 7.04 49.0666666666666 15.36M426.6666666666667 42.6666666666667C450.1333333333334 42.6666666666667 469.3333333333333 23.4666666666667 469.3333333333333 0V-21.3333333333333H256V0C256 23.4666666666667 275.2 42.6666666666667 298.6666666666667 42.6666666666667H426.6666666666667z" />
+    <glyph glyph-name="gender-female"
+      unicode="&#xF29C;"
+      horiz-adv-x="512" d=" M256 362.6666666666667C326.6133333333334 362.6666666666667 384 305.2800000000001 384 234.6666666666667C384 171.3066666666667 337.92 118.6133333333334 277.3333333333333 108.3733333333333V64H320V21.3333333333334H277.3333333333333V-21.3333333333333H234.6666666666667V21.3333333333334H192V64H234.6666666666667V108.3733333333333C174.08 118.6133333333334 128 171.3066666666667 128 234.6666666666667C128 305.2800000000001 185.3866666666667 362.6666666666667 256 362.6666666666667M256 320C208.8533333333333 320 170.6666666666667 281.8133333333334 170.6666666666667 234.6666666666667S208.8533333333333 149.3333333333334 256 149.3333333333334S341.3333333333333 187.52 341.3333333333333 234.6666666666667S303.1466666666667 320 256 320z" />
+    <glyph glyph-name="gender-male"
+      unicode="&#xF29D;"
+      horiz-adv-x="512" d=" M192 256C219.52 256 245.3333333333333 247.2533333333334 266.0266666666667 232.32L375.04 341.3333333333334H277.3333333333333V384H448V213.3333333333334H405.3333333333333V311.2533333333334L296.32 202.6666666666667C311.2533333333334 181.3333333333334 320 155.7333333333334 320 128C320 57.3866666666667 262.6133333333334 0 192 0S64 57.3866666666667 64 128S121.3866666666667 256 192 256M192 213.3333333333334C144.8533333333333 213.3333333333334 106.6666666666667 175.1466666666667 106.6666666666667 128S144.8533333333333 42.6666666666667 192 42.6666666666667S277.3333333333333 80.8533333333334 277.3333333333333 128S239.1466666666667 213.3333333333334 192 213.3333333333334z" />
+    <glyph glyph-name="gender-male-female"
+      unicode="&#xF29E;"
+      horiz-adv-x="512" d=" M375.04 362.6666666666667H298.6666666666667V405.3333333333333H448V256H405.3333333333333V332.5866666666667L323.6266666666667 250.88C334.72 234.0266666666667 341.3333333333333 213.3333333333334 341.3333333333333 192C341.3333333333333 140.3733333333333 304.64 97.28 256 87.4666666666667V42.6666666666667H298.6666666666667V0H256V-42.6666666666666H213.3333333333333V0H170.6666666666667V42.6666666666667H213.3333333333333V87.4666666666667C164.6933333333333 97.2800000000001 128 140.3733333333334 128 192.0000000000001C128 250.8800000000001 175.7866666666667 298.6666666666668 234.6666666666667 298.6666666666668C256 298.6666666666668 276.48 292.2666666666667 293.3333333333333 280.9600000000001L375.04 362.6666666666667M234.6666666666667 256C199.2533333333333 256 170.6666666666667 227.4133333333334 170.6666666666667 192S199.2533333333333 128 234.6666666666667 128S298.6666666666667 156.5866666666667 298.6666666666667 192S270.08 256 234.6666666666667 256z" />
+    <glyph glyph-name="gender-transgender"
+      unicode="&#xF29F;"
+      horiz-adv-x="512" d=" M417.7066666666666 384H320V426.6666666666667H490.6666666666666V256H448V353.92L344.9600000000001 250.88C356.0533333333334 234.0266666666667 362.6666666666667 213.3333333333334 362.6666666666667 192C362.6666666666667 140.3733333333333 325.9733333333333 97.28 277.3333333333333 87.4666666666667V42.6666666666667H320V0H277.3333333333333V-42.6666666666666H234.6666666666667V0H192V42.6666666666667H234.6666666666667V87.4666666666667C186.0266666666667 97.2800000000001 149.3333333333333 140.3733333333334 149.3333333333333 192.0000000000001C149.3333333333333 213.3333333333334 155.7333333333333 233.8133333333334 166.8266666666667 250.4533333333334L141.6533333333333 275.8400000000001L111.7866666666667 246.1866666666667L81.7066666666667 276.48L111.5733333333333 306.1333333333334L64 353.7066666666667V277.3333333333334H21.3333333333333V426.6666666666667H170.6666666666667V384H94.08L141.6533333333333 336.2133333333334L172.3733333333333 366.7200000000001L202.6666666666667 336.4266666666667L171.9466666666667 305.92L196.9066666666667 280.7466666666667C213.3333333333333 292.0533333333334 234.6666666666667 298.6666666666667 256 298.6666666666667S297.8133333333334 292.2666666666667 314.6666666666667 280.9600000000001L417.7066666666666 384M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256z" />
+    <glyph glyph-name="gentoo"
+      unicode="&#xF8E7;"
+      horiz-adv-x="512" d=" M219.3066666666667 405.3333333333333C211.84 405.3333333333333 204.16 404.6933333333334 196.9066666666667 403.2C119.68 389.12 65.28 322.3466666666667 60.8 278.1866666666667C58.4533333333333 256.64 70.1866666666666 240.4266666666667 76.5866666666667 233.3866666666667C93.8666666666666 213.9733333333333 128.64 199.2533333333333 150.8266666666666 187.0933333333334C118.6133333333333 160 103.8933333333333 146.3466666666667 89.3866666666666 130.9866666666667C67.6266666666666 108.16 52.2666666666666 83.2 52.2666666666666 65.0666666666667C52.2666666666666 59.3066666666667 51.2 40.7466666666667 58.88 26.24C61.6533333333333 20.6933333333333 69.76 2.3466666666667 94.08 -11.3066666666667C109.6533333333333 -20.0533333333333 131.6266666666666 -23.2533333333333 153.3866666666666 -20.2666666666667C220.3733333333333 -10.6666666666667 310.1866666666666 46.2933333333333 374.3999999999999 99.2C415.1466666666666 132.9066666666667 445.0133333333332 165.76 453.5466666666666 181.3333333333333C460.5866666666666 194.7733333333333 461.4399999999999 218.0266666666667 457.3866666666666 232.7466666666667C445.8666666666666 274.3466666666667 352.64 359.4666666666667 276.4799999999999 393.6C258.9866666666666 401.4933333333333 238.9333333333333 405.3333333333333 219.3066666666666 405.3333333333333M241.92 343.2533333333334C247.2533333333333 343.2533333333334 251.9466666666667 342.6133333333333 256 341.3333333333333C280.5333333333333 334.9333333333333 321.7066666666666 305.4933333333334 318.08 278.6133333333334C313.1733333333333 243.2 282.24 228.9066666666667 246.6133333333333 234.0266666666667C225.7066666666666 236.8 184.1066666666666 260.2666666666667 187.3066666666667 301.0133333333333C189.6533333333333 332.8 219.7333333333333 343.4666666666667 241.92 343.2533333333334M241.4933333333334 306.1333333333334C235.7333333333334 306.1333333333334 231.2533333333334 304.8533333333334 229.12 301.44C219.0933333333333 286.0800000000001 224 275.4133333333334 232.96 268.3733333333334C236.16 276.48 271.1466666666667 267.7333333333334 272 260.48C302.2933333333333 283.3066666666668 263.68 305.92 241.4933333333334 306.1333333333334z" />
+    <glyph glyph-name="gesture"
+      unicode="&#xF7CA;"
+      horiz-adv-x="512" d=" M97.92 301.0133333333333C112.8533333333333 316.1600000000001 128 329.8133333333334 134.4 327.04C145.0666666666667 322.7733333333333 134.4 305.0666666666667 128 294.6133333333334C122.6666666666667 285.6533333333334 66.9866666666667 211.6266666666667 66.9866666666667 160C66.9866666666667 132.6933333333334 77.2266666666667 110.08 96 96C111.5733333333333 84.48 132.6933333333333 80.8533333333334 151.8933333333333 86.6133333333334C174.72 93.2266666666666 193.4933333333334 116.48 217.1733333333333 145.7066666666667C242.9866666666667 177.4933333333334 277.3333333333333 219.0933333333333 304.2133333333333 219.0933333333333C338.9866666666667 219.0933333333333 339.4133333333333 197.5466666666666 341.3333333333333 181.3333333333333C261.12 167.2533333333333 226.9866666666667 102.6133333333334 226.9866666666667 66.3466666666667C226.9866666666667 30.08 257.7066666666667 0 295.4666666666667 0C330.6666666666667 0 386.9866666666667 28.8000000000001 395.5200000000001 130.5600000000001H448V183.8933333333334H395.3066666666667C392.1066666666667 219.0933333333334 372.0533333333334 273.4933333333334 309.3333333333333 273.4933333333334C261.3333333333333 273.4933333333334 220.16 232.7466666666667 203.9466666666666 213.3333333333334C192 197.3333333333334 160 160 155.0933333333333 154.88C149.3333333333333 148.48 140.5866666666667 136.96 131.4133333333333 136.96C121.8133333333333 136.96 116.0533333333333 154.6666666666667 123.7333333333333 177.92C131.1999999999999 201.1733333333334 153.5999999999999 238.9333333333334 163.2 253.0133333333333C179.84 277.3333333333334 190.9333333333333 293.9733333333334 190.9333333333333 322.9866666666667C190.9333333333333 369.28 155.9466666666667 384 137.3866666666667 384C109.2266666666667 384 84.6933333333333 362.6666666666667 79.36 357.3333333333334C71.68 349.6533333333333 65.28 343.2533333333334 60.5866666666667 337.4933333333334L97.92 301.0133333333333M296.1066666666667 52.2666666666667C289.4933333333333 52.2666666666667 280.32 57.8133333333334 280.32 67.6266666666667C280.32 80.4266666666667 295.8933333333333 114.56 341.3333333333333 126.5066666666667C335.1466666666667 69.12 311.04 52.2666666666667 296.1066666666667 52.2666666666667z" />
+    <glyph glyph-name="gesture-double-tap"
+      unicode="&#xF73B;"
+      horiz-adv-x="512" d=" M213.3333333333333 256C213.3333333333333 267.7333333333334 222.9333333333333 277.3333333333334 234.6666666666667 277.3333333333334S256 267.7333333333334 256 256V160.6400000000001L281.8133333333334 157.8666666666667L387.2000000000001 111.1466666666667C398.5066666666667 106.0266666666668 405.3333333333334 94.72 405.3333333333334 82.3466666666667V-10.6666666666666C404.6933333333334 -28.16 390.8266666666667 -42.0266666666666 373.3333333333334 -42.6666666666666H234.6666666666667C226.56 -42.6666666666666 218.88 -39.4666666666667 213.3333333333333 -33.4933333333333L108.8 56.1066666666667L124.5866666666667 72.5333333333333C128.64 77.0133333333333 134.4 79.36 140.3733333333333 79.36H145.0666666666667L213.3333333333333 42.6666666666667V256M234.6666666666667 341.3333333333334C281.8133333333334 341.3333333333334 320 303.1466666666667 320 256C320 224 302.9333333333333 196.9066666666667 277.3333333333333 182.1866666666667V208.2133333333334C290.3466666666667 219.9466666666667 298.6666666666667 237.0133333333333 298.6666666666667 256C298.6666666666667 291.4133333333334 270.08 320 234.6666666666667 320S170.6666666666667 291.4133333333334 170.6666666666667 256C170.6666666666667 237.0133333333333 178.9866666666667 219.9466666666667 192 208.2133333333334V182.1866666666667C166.4 196.9066666666667 149.3333333333333 224 149.3333333333333 256C149.3333333333333 303.1466666666667 187.52 341.3333333333334 234.6666666666667 341.3333333333334M234.6666666666667 384C305.28 384 362.6666666666667 326.6133333333334 362.6666666666667 256C362.6666666666667 219.7333333333334 347.52 187.0933333333334 323.4133333333333 163.6266666666667L302.08 173.2266666666667C325.9733333333333 192.8533333333333 341.3333333333333 222.72 341.3333333333333 256C341.3333333333333 314.88 293.5466666666666 362.6666666666667 234.6666666666667 362.6666666666667S128 314.88 128 256C128 212.2666666666667 154.24 174.72 192 158.2933333333334V135.2533333333333C142.2933333333333 152.96 106.6666666666667 200.32 106.6666666666667 256C106.6666666666667 326.6133333333334 164.0533333333333 384 234.6666666666667 384z" />
+    <glyph glyph-name="gesture-pinch"
+      unicode="&#xFABC;"
+      horiz-adv-x="512" d=" M277.3333333333333 256C277.3333333333333 267.7333333333334 286.9333333333333 277.3333333333334 298.6666666666667 277.3333333333334S320 267.7333333333334 320 256V160.6400000000001L345.8133333333334 157.8666666666667L451.2 110.9333333333333C462.2933333333334 105.8133333333334 469.3333333333334 94.72 469.3333333333334 82.3466666666667V-10.6666666666666C468.6933333333334 -28.16 454.8266666666667 -42.0266666666666 437.3333333333334 -42.6666666666666H298.6666666666667C290.56 -42.6666666666666 282.88 -39.4666666666667 277.3333333333333 -33.4933333333333L172.8 56.1066666666667L188.5866666666667 72.5333333333333C192.64 77.0133333333333 198.4 79.36 204.3733333333333 79.36H209.0666666666667L277.3333333333333 42.6666666666667V256M298.6666666666667 341.3333333333334C328.96 341.3333333333334 357.12 325.12 372.2666666666667 298.6666666666667C395.9466666666666 258.1333333333334 382.08 205.8666666666667 341.3333333333333 182.1866666666667V208.4266666666667C354.9866666666667 220.3733333333333 362.6666666666667 237.8666666666667 362.6666666666667 256C362.6666666666667 291.4133333333334 334.08 320 298.6666666666667 320S234.6666666666667 291.4133333333334 234.6666666666667 256C234.6666666666667 237.8666666666667 242.3466666666667 220.3733333333333 256 208.4266666666667V182.1866666666667C229.76 197.3333333333334 213.3333333333333 225.4933333333333 213.3333333333333 256C213.3333333333333 303.1466666666667 251.52 341.3333333333334 298.6666666666667 341.3333333333334M85.3333333333333 256L149.3333333333333 192H106.6666666666667V128H64V192H21.3333333333333L85.3333333333333 256M85.3333333333333 298.6666666666667L21.3333333333333 362.6666666666667H64V426.6666666666667H106.6666666666667V362.6666666666667H149.3333333333333L85.3333333333333 298.6666666666667M192 149.3333333333334C207.5733333333333 149.3333333333334 222.08 145.28 234.6666666666667 137.8133333333334V111.7866666666667C223.36 121.8133333333334 208.4266666666667 128 192 128C156.5866666666667 128 128 99.4133333333334 128 64C128 42.6666666666667 138.6666666666667 24.1066666666667 154.0266666666667 12.3733333333333L198.6133333333334 -21.3333333333333H192C144.8533333333333 -21.3333333333333 106.6666666666667 16.8533333333334 106.6666666666667 64S144.8533333333333 149.3333333333334 192 149.3333333333334z" />
+    <glyph glyph-name="gesture-spread"
+      unicode="&#xFABD;"
+      horiz-adv-x="512" d=" M85.3333333333333 426.6666666666667L149.3333333333333 362.6666666666667H106.6666666666667V298.6666666666667H64V362.6666666666667H21.3333333333333L85.3333333333333 426.6666666666667M85.3333333333333 128L21.3333333333333 192H64V256H106.6666666666667V192H149.3333333333333L85.3333333333333 128M277.3333333333333 256C277.3333333333333 267.7333333333334 286.9333333333333 277.3333333333334 298.6666666666667 277.3333333333334S320 267.7333333333334 320 256V160.6400000000001L345.8133333333334 157.8666666666667L451.2 110.9333333333333C462.2933333333334 105.8133333333334 469.3333333333334 94.72 469.3333333333334 82.3466666666667V-10.6666666666666C468.6933333333334 -28.16 454.8266666666667 -42.0266666666666 437.3333333333334 -42.6666666666666H298.6666666666667C290.56 -42.6666666666666 282.88 -39.4666666666667 277.3333333333333 -33.4933333333333L172.8 56.1066666666667L188.5866666666667 72.5333333333333C192.64 77.0133333333333 198.4 79.36 204.3733333333333 79.36H209.0666666666667L277.3333333333333 42.6666666666667V256M298.6666666666667 341.3333333333334C328.96 341.3333333333334 357.12 325.12 372.2666666666667 298.6666666666667C395.9466666666666 258.1333333333334 382.08 205.8666666666667 341.3333333333333 182.1866666666667V208.4266666666667C354.9866666666667 220.3733333333333 362.6666666666667 237.8666666666667 362.6666666666667 256C362.6666666666667 291.4133333333334 334.08 320 298.6666666666667 320S234.6666666666667 291.4133333333334 234.6666666666667 256C234.6666666666667 237.8666666666667 242.3466666666667 220.3733333333333 256 208.4266666666667V182.1866666666667C229.76 197.3333333333334 213.3333333333333 225.4933333333333 213.3333333333333 256C213.3333333333333 303.1466666666667 251.52 341.3333333333334 298.6666666666667 341.3333333333334M192 149.3333333333334C207.5733333333333 149.3333333333334 222.08 145.28 234.6666666666667 137.8133333333334V111.7866666666667C223.36 121.8133333333334 208.4266666666667 128 192 128C156.5866666666667 128 128 99.4133333333334 128 64C128 42.6666666666667 138.6666666666667 24.1066666666667 154.0266666666667 12.3733333333333L198.6133333333334 -21.3333333333333H192C144.8533333333333 -21.3333333333333 106.6666666666667 16.8533333333334 106.6666666666667 64S144.8533333333333 149.3333333333334 192 149.3333333333334z" />
+    <glyph glyph-name="gesture-swipe-down"
+      unicode="&#xF73C;"
+      horiz-adv-x="512" d=" M213.3333333333333 256C213.3333333333333 267.7333333333334 222.9333333333333 277.3333333333334 234.6666666666667 277.3333333333334S256 267.7333333333334 256 256V160.6400000000001L281.8133333333334 157.8666666666667L387.2000000000001 111.1466666666667C398.5066666666667 106.0266666666668 405.3333333333334 94.72 405.3333333333334 82.3466666666667V-10.6666666666666C404.6933333333334 -28.16 390.8266666666667 -42.0266666666666 373.3333333333334 -42.6666666666666H234.6666666666667C226.56 -42.6666666666666 218.88 -39.4666666666667 213.3333333333333 -33.4933333333333L108.8 56.1066666666667L124.5866666666667 72.5333333333333C128.64 77.0133333333333 134.4 79.36 140.3733333333333 79.36H145.0666666666667L213.3333333333333 42.6666666666667V256M21.3333333333333 256L85.3333333333333 192L149.3333333333333 256H106.6666666666667V384H64V256H21.3333333333333z" />
+    <glyph glyph-name="gesture-swipe-horizontal"
+      unicode="&#xFABE;"
+      horiz-adv-x="512" d=" M128 426.6666666666667L64 362.6666666666667L128 298.6666666666667V341.3333333333334H192V298.6666666666667L256 362.6666666666667L192 426.6666666666667V384H128V426.6666666666667M234.6666666666667 277.3333333333334C222.9333333333333 277.3333333333334 213.3333333333333 267.7333333333334 213.3333333333333 256V42.6666666666667L145.0666666666667 79.36H140.3733333333333C134.4 79.36 128.64 77.0133333333333 124.5866666666667 72.5333333333333L108.8 56.1066666666667L213.3333333333333 -33.4933333333333C218.88 -39.4666666666667 226.56 -42.6666666666666 234.6666666666667 -42.6666666666666H373.3333333333333C391.04 -42.6666666666666 405.3333333333333 -28.3733333333333 405.3333333333333 -10.6666666666666V82.3466666666667C405.3333333333333 94.72 398.5066666666667 106.0266666666666 387.2 111.1466666666667L281.8133333333333 157.8666666666667L255.9999999999999 160.64V256C255.9999999999999 267.7333333333334 246.3999999999999 277.3333333333334 234.6666666666666 277.3333333333334z" />
+    <glyph glyph-name="gesture-swipe-left"
+      unicode="&#xF73D;"
+      horiz-adv-x="512" d=" M213.3333333333333 256C213.3333333333333 267.7333333333334 222.9333333333333 277.3333333333334 234.6666666666667 277.3333333333334S256 267.7333333333334 256 256V160.6400000000001L281.8133333333334 157.8666666666667L387.2000000000001 111.1466666666667C398.5066666666667 106.0266666666668 405.3333333333334 94.72 405.3333333333334 82.3466666666667V-10.6666666666666C404.6933333333334 -28.16 390.8266666666667 -42.0266666666666 373.3333333333334 -42.6666666666666H234.6666666666667C226.56 -42.6666666666666 218.88 -39.4666666666667 213.3333333333333 -33.4933333333333L108.8 56.1066666666667L124.5866666666667 72.5333333333333C128.64 77.0133333333333 134.4 79.36 140.3733333333333 79.36H145.0666666666667L213.3333333333333 42.6666666666667V256M64 362.6666666666667L128 298.6666666666667V341.3333333333334H256V384H128V426.6666666666667L64 362.6666666666667z" />
+    <glyph glyph-name="gesture-swipe-right"
+      unicode="&#xF73E;"
+      horiz-adv-x="512" d=" M213.3333333333333 256C213.3333333333333 267.7333333333334 222.9333333333333 277.3333333333334 234.6666666666667 277.3333333333334S256 267.7333333333334 256 256V160.6400000000001L281.8133333333334 157.8666666666667L387.2000000000001 111.1466666666667C398.5066666666667 106.0266666666668 405.3333333333334 94.72 405.3333333333334 82.3466666666667V-10.6666666666666C404.6933333333334 -28.16 390.8266666666667 -42.0266666666666 373.3333333333334 -42.6666666666666H234.6666666666667C226.56 -42.6666666666666 218.88 -39.4666666666667 213.3333333333333 -33.4933333333333L108.8 56.1066666666667L124.5866666666667 72.5333333333333C128.64 77.0133333333333 134.4 79.36 140.3733333333333 79.36H145.0666666666667L213.3333333333333 42.6666666666667V256M256 362.6666666666667L192 426.6666666666667V384H64V341.3333333333334H192V298.6666666666667L256 362.6666666666667z" />
+    <glyph glyph-name="gesture-swipe-up"
+      unicode="&#xF73F;"
+      horiz-adv-x="512" d=" M213.3333333333333 256C213.3333333333333 267.7333333333334 222.9333333333333 277.3333333333334 234.6666666666667 277.3333333333334S256 267.7333333333334 256 256V160.6400000000001L281.8133333333334 157.8666666666667L387.2000000000001 111.1466666666667C398.5066666666667 106.0266666666668 405.3333333333334 94.72 405.3333333333334 82.3466666666667V-10.6666666666666C404.6933333333334 -28.16 390.8266666666667 -42.0266666666666 373.3333333333334 -42.6666666666666H234.6666666666667C226.56 -42.6666666666666 218.88 -39.4666666666667 213.3333333333333 -33.4933333333333L108.8 56.1066666666667L124.5866666666667 72.5333333333333C128.64 77.0133333333333 134.4 79.36 140.3733333333333 79.36H145.0666666666667L213.3333333333333 42.6666666666667V256M149.3333333333333 320L85.3333333333333 384L21.3333333333333 320H64V192H106.6666666666667V320H149.3333333333333z" />
+    <glyph glyph-name="gesture-swipe-vertical"
+      unicode="&#xFABF;"
+      horiz-adv-x="512" d=" M85.3333333333333 384L21.3333333333333 320H64V256H21.3333333333333L85.3333333333333 192L149.3333333333333 256H106.6666666666667V320H149.3333333333333L85.3333333333333 384M234.6666666666667 277.3333333333334C222.9333333333333 277.3333333333334 213.3333333333333 267.7333333333334 213.3333333333333 256V42.6666666666667L145.0666666666667 79.36H140.3733333333333C134.4 79.36 128.64 77.0133333333333 124.5866666666667 72.5333333333333L108.8 56.1066666666667L213.3333333333333 -33.4933333333333C218.88 -39.4666666666667 226.56 -42.6666666666666 234.6666666666667 -42.6666666666666H373.3333333333333C391.04 -42.6666666666666 405.3333333333333 -28.3733333333333 405.3333333333333 -10.6666666666666V82.3466666666667C405.3333333333333 94.72 398.5066666666667 106.0266666666666 387.2 111.1466666666667L281.8133333333333 157.8666666666667L255.9999999999999 160.64V256C255.9999999999999 267.7333333333334 246.3999999999999 277.3333333333334 234.6666666666666 277.3333333333334z" />
+    <glyph glyph-name="gesture-tap"
+      unicode="&#xF740;"
+      horiz-adv-x="512" d=" M213.3333333333333 256C213.3333333333333 267.7333333333334 222.9333333333333 277.3333333333334 234.6666666666667 277.3333333333334S256 267.7333333333334 256 256V160.6400000000001L281.8133333333334 157.8666666666667L387.2000000000001 111.1466666666667C398.5066666666667 106.0266666666668 405.3333333333334 94.72 405.3333333333334 82.3466666666667V-10.6666666666666C404.6933333333334 -28.16 390.8266666666667 -42.0266666666666 373.3333333333334 -42.6666666666666H234.6666666666667C226.56 -42.6666666666666 218.88 -39.4666666666667 213.3333333333333 -33.4933333333333L108.8 56.1066666666667L124.5866666666667 72.5333333333333C128.64 77.0133333333333 134.4 79.36 140.3733333333333 79.36H145.0666666666667L213.3333333333333 42.6666666666667V256M234.6666666666667 341.3333333333334C281.8133333333334 341.3333333333334 320 303.1466666666667 320 256C320 224 302.9333333333333 196.9066666666667 277.3333333333333 182.1866666666667V208.2133333333334C290.3466666666667 219.9466666666667 298.6666666666667 237.0133333333333 298.6666666666667 256C298.6666666666667 291.4133333333334 270.08 320 234.6666666666667 320S170.6666666666667 291.4133333333334 170.6666666666667 256C170.6666666666667 237.0133333333333 178.9866666666667 219.9466666666667 192 208.2133333333334V182.1866666666667C166.4 196.9066666666667 149.3333333333333 224 149.3333333333333 256C149.3333333333333 303.1466666666667 187.52 341.3333333333334 234.6666666666667 341.3333333333334z" />
+    <glyph glyph-name="gesture-two-double-tap"
+      unicode="&#xF741;"
+      horiz-adv-x="512" d=" M405.3333333333333 125.0133333333333V-10.6666666666666C404.6933333333333 -28.16 390.8266666666667 -42.0266666666666 373.3333333333333 -42.6666666666666H234.6666666666667C226.56 -42.6666666666666 218.88 -39.4666666666667 213.3333333333333 -33.4933333333333L108.8 56.1066666666667L124.5866666666667 72.5333333333333C128.64 77.0133333333333 134.4 79.36 140.3733333333333 79.36H145.0666666666667L213.3333333333333 42.6666666666667V256C213.3333333333333 267.7333333333334 222.9333333333333 277.3333333333334 234.6666666666667 277.3333333333334S256 267.7333333333334 256 256V298.6666666666667C256 310.4 265.6 320 277.3333333333333 320S298.6666666666667 310.4 298.6666666666667 298.6666666666667V192L387.2 152.7466666666667C398.08 147.84 405.3333333333333 136.96 405.3333333333333 125.0133333333333M277.3333333333333 384C324.48 384 362.6666666666667 345.8133333333334 362.6666666666667 298.6666666666667C362.6666666666667 266.6666666666667 345.6 239.5733333333334 320 224.8533333333333V250.88C333.0133333333333 262.6133333333334 341.3333333333333 279.68 341.3333333333333 298.6666666666667C341.3333333333333 334.0800000000001 312.7466666666667 362.6666666666667 277.3333333333333 362.6666666666667C248.5333333333334 362.6666666666667 224 343.4666666666667 216.1066666666666 317.2266666666667C189.8666666666667 309.3333333333334 170.6666666666667 284.8 170.6666666666667 256C170.6666666666667 237.0133333333333 178.9866666666667 219.9466666666667 192 208.2133333333334V182.1866666666667C166.4 196.9066666666667 149.3333333333333 224 149.3333333333333 256C149.3333333333333 290.56 170.0266666666667 320 199.4666666666667 333.8666666666667C213.3333333333333 363.3066666666667 242.7733333333334 384 277.3333333333333 384M277.3333333333333 426.6666666666667C347.9466666666666 426.6666666666667 405.3333333333333 369.28 405.3333333333333 298.6666666666667C405.3333333333333 254.72 383.1466666666667 215.8933333333334 349.44 192.8533333333333L325.5466666666666 203.52C360.32 221.0133333333333 384 257.0666666666667 384 298.6666666666667C384 357.5466666666667 336.2133333333333 405.3333333333333 277.3333333333333 405.3333333333333C237.0133333333333 405.3333333333333 201.8133333333333 382.9333333333334 183.68 349.6533333333334C150.4 331.52 128 296.32 128 256C128 212.2666666666667 154.24 174.72 192 158.2933333333334V135.2533333333333C142.2933333333333 152.96 106.6666666666667 200.32 106.6666666666667 256C106.6666666666667 302.2933333333334 131.2 342.8266666666667 168.1066666666667 365.2266666666667C190.5066666666667 402.1333333333334 231.04 426.6666666666667 277.3333333333333 426.6666666666667z" />
+    <glyph glyph-name="gesture-two-tap"
+      unicode="&#xF742;"
+      horiz-adv-x="512" d=" M405.3333333333333 125.0133333333333V-10.6666666666666C404.6933333333333 -28.16 390.8266666666667 -42.0266666666666 373.3333333333333 -42.6666666666666H234.6666666666667C226.56 -42.6666666666666 218.88 -39.4666666666667 213.3333333333333 -33.4933333333333L108.8 56.1066666666667L124.5866666666667 72.5333333333333C128.64 77.0133333333333 134.4 79.36 140.3733333333333 79.36H145.0666666666667L213.3333333333333 42.6666666666667V256C213.3333333333333 267.7333333333334 222.9333333333333 277.3333333333334 234.6666666666667 277.3333333333334S256 267.7333333333334 256 256V298.6666666666667C256 310.4 265.6 320 277.3333333333333 320S298.6666666666667 310.4 298.6666666666667 298.6666666666667V192L387.2 152.7466666666667C398.08 147.84 405.3333333333333 136.96 405.3333333333333 125.0133333333333M320 225.0666666666667V251.0933333333334C324.9066666666667 255.36 328.96 260.48 332.16 265.8133333333334C337.92 275.4133333333333 341.3333333333333 286.7200000000001 341.3333333333333 298.6666666666667C341.3333333333333 334.08 312.7466666666667 362.6666666666667 277.3333333333333 362.6666666666667C260.48 362.6666666666667 245.3333333333333 356.0533333333334 233.6 345.3866666666667L230.6133333333333 342.4C227.84 339.4133333333334 225.28 336.2133333333334 223.1466666666667 332.8C221.0133333333333 329.3866666666667 219.0933333333333 325.5466666666667 217.6 321.7066666666667C216.96 320 216.5333333333333 318.7200000000001 216.1066666666666 317.2266666666667C189.8666666666667 309.3333333333334 170.6666666666667 284.8 170.6666666666667 256C170.6666666666667 241.0666666666667 175.7866666666667 227.4133333333334 184.32 216.5333333333334C186.4533333333333 213.3333333333334 189.2266666666667 210.9866666666667 192 208.4266666666667V182.1866666666667C166.4 196.9066666666667 149.3333333333333 224 149.3333333333333 256C149.3333333333333 290.56 170.0266666666667 320 199.4666666666667 333.8666666666667C213.3333333333333 363.3066666666667 242.7733333333334 384 277.3333333333333 384C324.48 384 362.6666666666667 345.8133333333334 362.6666666666667 298.6666666666667C362.6666666666667 266.6666666666667 345.6 239.5733333333334 320 224.8533333333333V225.0666666666667z" />
+    <glyph glyph-name="ghost"
+      unicode="&#xF2A0;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C149.9733333333333 405.3333333333333 64 319.36 64 213.3333333333334V-21.3333333333333L128 42.6666666666667L192 -21.3333333333333L256 42.6666666666667L320 -21.3333333333333L384 42.6666666666667L448 -21.3333333333333V213.3333333333334C448 319.36 362.0266666666667 405.3333333333333 256 405.3333333333333M192 277.3333333333334C215.4666666666667 277.3333333333334 234.6666666666667 258.1333333333334 234.6666666666667 234.6666666666667S215.4666666666667 192 192 192S149.3333333333333 211.2 149.3333333333333 234.6666666666667S168.5333333333333 277.3333333333334 192 277.3333333333334M320 277.3333333333334C343.4666666666667 277.3333333333334 362.6666666666667 258.1333333333334 362.6666666666667 234.6666666666667S343.4666666666667 192 320 192S277.3333333333333 211.2 277.3333333333333 234.6666666666667S296.5333333333333 277.3333333333334 320 277.3333333333334z" />
+    <glyph glyph-name="ghost-off"
+      unicode="&#xF9F4;"
+      horiz-adv-x="512" d=" M42.6666666666667 378.24L69.9733333333333 405.3333333333333L469.3333333333333 5.9733333333334L442.24 -21.3333333333333L381.2266666666667 39.8933333333334L320 -21.3333333333333L256 42.6666666666667L192 -21.3333333333333L128 42.6666666666667L64 -21.3333333333333V213.3333333333334C64 254.08 76.5866666666667 291.6266666666667 98.1333333333333 322.7733333333333L42.6666666666667 378.24M256 405.3333333333333C362.0266666666667 405.3333333333333 448 319.36 448 213.3333333333334V81.4933333333333L334.9333333333333 194.56C351.1466666666667 200.7466666666667 362.6666666666667 216.32 362.6666666666667 234.6666666666667C362.6666666666667 258.1333333333334 343.4666666666667 277.3333333333334 320 277.3333333333334C301.6533333333333 277.3333333333334 286.08 265.8133333333334 280.1066666666667 249.6L153.6 375.8933333333333C183.2533333333333 394.6666666666667 218.4533333333333 405.3333333333333 256 405.3333333333333M149.3333333333333 234.6666666666667C149.3333333333333 211.2 168.5333333333333 192 192 192C202.6666666666667 192 211.84 195.6266666666667 219.0933333333333 201.8133333333334L159.1466666666667 261.76C152.96 254.5066666666667 149.3333333333333 245.3333333333334 149.3333333333333 234.6666666666667z" />
+    <glyph glyph-name="gift"
+      unicode="&#xF2A1;"
+      horiz-adv-x="512" d=" M469.3333333333333 192V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V192C30.9333333333333 192 21.3333333333333 201.6 21.3333333333333 213.3333333333334V277.3333333333334C21.3333333333333 300.8 40.5333333333333 320 64 320H131.6266666666667C129.28 326.6133333333334 128 333.8666666666667 128 341.3333333333334C128 376.7466666666667 156.5866666666667 405.3333333333333 192 405.3333333333333C213.3333333333333 405.3333333333333 232.1066666666667 394.6666666666667 243.84 378.88V379.0933333333334L256 362.6666666666667L268.16 379.0933333333334V378.88C279.8933333333333 394.6666666666667 298.6666666666667 405.3333333333333 320 405.3333333333333C355.4133333333333 405.3333333333333 384 376.7466666666667 384 341.3333333333334C384 333.8666666666667 382.7200000000001 326.6133333333334 380.3733333333333 320H448C471.4666666666667 320 490.6666666666666 300.8 490.6666666666666 277.3333333333334V213.3333333333334C490.6666666666666 201.6 481.0666666666667 192 469.3333333333333 192M85.3333333333333 21.3333333333334H234.6666666666667V192H85.3333333333333V21.3333333333334M426.6666666666667 21.3333333333334V192H277.3333333333333V21.3333333333334H426.6666666666667M192 362.6666666666667C180.2666666666667 362.6666666666667 170.6666666666667 353.0666666666667 170.6666666666667 341.3333333333334S180.2666666666667 320 192 320S213.3333333333333 329.6 213.3333333333333 341.3333333333334S203.7333333333334 362.6666666666667 192 362.6666666666667M320 362.6666666666667C308.2666666666667 362.6666666666667 298.6666666666667 353.0666666666667 298.6666666666667 341.3333333333334S308.2666666666667 320 320 320S341.3333333333333 329.6 341.3333333333333 341.3333333333334S331.7333333333334 362.6666666666667 320 362.6666666666667M64 277.3333333333334V234.6666666666667H234.6666666666667V277.3333333333334H64M277.3333333333333 277.3333333333334V234.6666666666667H448V277.3333333333334H277.3333333333333z" />
+    <glyph glyph-name="git"
+      unicode="&#xF2A2;"
+      horiz-adv-x="512" d=" M55.4666666666667 222.08L178.7733333333334 345.6L214.8266666666667 309.3333333333334C209.7066666666667 291.2000000000001 218.0266666666667 271.36 234.6666666666667 261.76V143.5733333333334C221.8666666666667 136.3200000000001 213.3333333333333 122.4533333333334 213.3333333333333 106.6666666666667C213.3333333333333 83.2 232.5333333333334 64 256 64S298.6666666666667 83.2 298.6666666666667 106.6666666666667C298.6666666666667 122.4533333333334 290.1333333333334 136.3200000000001 277.3333333333333 143.5733333333334V247.2533333333334L321.4933333333334 202.6666666666667C320 199.4666666666667 320 195.84 320 192C320 168.5333333333334 339.2 149.3333333333334 362.6666666666667 149.3333333333334S405.3333333333333 168.5333333333334 405.3333333333333 192S386.1333333333334 234.6666666666667 362.6666666666667 234.6666666666667C358.8266666666667 234.6666666666667 355.2 234.6666666666667 352 233.1733333333334L297.1733333333333 288C302.72 307.8400000000001 292.48 329.6 272.64 337.92C263.4666666666667 341.3333333333334 253.8666666666666 342.1866666666667 245.3333333333333 339.8400000000001L209.0666666666667 375.8933333333333L225.92 392.5333333333334C242.56 409.3866666666667 269.44 409.3866666666667 286.08 392.5333333333334L456.5333333333333 222.08C473.3866666666666 205.44 473.3866666666666 178.5600000000001 456.5333333333333 161.92L286.08 -8.5333333333333C269.44 -25.3866666666666 242.56 -25.3866666666666 225.92 -8.5333333333333L55.4666666666667 161.92C38.6133333333333 178.56 38.6133333333333 205.44 55.4666666666667 222.08z" />
+    <glyph glyph-name="github-box"
+      unicode="&#xF2A3;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H310.6133333333333C303.7866666666667 1.4933333333333 303.5733333333333 14.5066666666667 303.5733333333333 18.9866666666667L303.7866666666667 71.68C303.7866666666667 89.6 297.6 101.3333333333334 290.7733333333333 107.3066666666667C333.6533333333333 112 378.4533333333333 128 378.4533333333333 202.0266666666667C378.4533333333333 222.9333333333333 370.9866666666666 240.2133333333333 358.8266666666666 253.6533333333333C360.7466666666666 258.3466666666667 367.3599999999999 277.9733333333333 356.9066666666666 304.4266666666666C356.9066666666666 304.4266666666666 340.6933333333333 309.3333333333333 303.9999999999999 284.5866666666667C288.6399999999999 288.8533333333334 272.4266666666666 290.9866666666667 255.9999999999999 291.2C239.7866666666666 290.9866666666667 223.1466666666666 288.8533333333333 207.9999999999999 284.5866666666667C171.3066666666666 309.3333333333333 155.0933333333333 304.4266666666666 155.0933333333333 304.4266666666666C144.6399999999999 277.9733333333333 151.2533333333333 258.3466666666667 153.1733333333332 253.6533333333333C141.0133333333332 240.2133333333333 133.5466666666666 222.9333333333333 133.5466666666666 202.0266666666667C133.5466666666666 128 178.3466666666666 112 221.0133333333332 106.6666666666667C215.4666666666666 102.4 210.5599999999999 93.8666666666667 208.8533333333333 81.4933333333333C197.7599999999999 76.5866666666667 170.0266666666666 68.0533333333334 152.9599999999999 97.4933333333333C152.9599999999999 97.4933333333333 142.7199999999999 115.84 123.5199999999999 117.3333333333334C123.5199999999999 117.3333333333334 104.7466666666666 117.3333333333334 122.2399999999999 105.6C122.2399999999999 105.6 134.8266666666666 99.6266666666667 143.5733333333333 77.44C143.5733333333333 77.44 154.6666666666666 40.1066666666667 208.2133333333333 51.6266666666667L208.4266666666666 18.9866666666666C208.4266666666666 14.5066666666666 207.9999999999999 1.4933333333333 201.1733333333332 -1e-13H106.6666666666667C83.2 -1e-13 64 19.1999999999999 64 42.6666666666666V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="github-circle"
+      unicode="&#xF2A4;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192C42.6666666666667 97.7066666666667 103.8933333333333 17.7066666666667 188.5866666666667 -10.6666666666666C199.2533333333333 -12.3733333333333 202.6666666666667 -5.76 202.6666666666667 0V36.0533333333334C143.5733333333333 23.2533333333333 130.9866666666667 64.64 130.9866666666667 64.64C121.1733333333334 89.3866666666667 107.3066666666667 96 107.3066666666667 96C87.8933333333333 109.2266666666667 108.8 108.8 108.8 108.8C130.1333333333333 107.3066666666667 141.44 86.8266666666667 141.44 86.8266666666667C160 54.4 191.36 64 203.52 69.1200000000001C205.44 82.9866666666667 210.9866666666667 92.3733333333334 216.96 97.7066666666667C169.6 103.0400000000001 119.8933333333334 121.3866666666667 119.8933333333334 202.6666666666667C119.8933333333334 226.3466666666667 128 245.3333333333334 141.8666666666667 260.48C139.7333333333334 265.8133333333334 132.2666666666667 288 144 316.8000000000001C144 316.8000000000001 161.92 322.5600000000001 202.6666666666667 295.0400000000001C219.5200000000001 299.7333333333334 237.8666666666667 302.0800000000001 256 302.0800000000001C274.1333333333334 302.0800000000001 292.48 299.7333333333334 309.3333333333334 295.0400000000001C350.08 322.5600000000001 368 316.8000000000001 368 316.8000000000001C379.7333333333334 288.0000000000001 372.2666666666667 265.8133333333334 370.1333333333334 260.48C384 245.3333333333334 392.1066666666667 226.3466666666667 392.1066666666667 202.6666666666667C392.1066666666667 121.1733333333334 342.1866666666667 103.2533333333333 294.6133333333334 97.92C302.2933333333334 91.3066666666667 309.3333333333334 78.2933333333333 309.3333333333334 58.4533333333333V0C309.3333333333334 -5.76 312.7466666666667 -12.5866666666666 323.6266666666667 -10.6666666666666C408.32 17.92 469.3333333333333 97.7066666666667 469.3333333333333 192C469.3333333333333 309.76 373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="github-face"
+      unicode="&#xF6DA;"
+      horiz-adv-x="512" d=" M434.7733333333333 266.0266666666667C438.1866666666666 274.5600000000001 449.28 308.48 431.1466666666666 354.3466666666667C431.1466666666666 354.3466666666667 403.2 362.6666666666667 339.4133333333333 320C312.7466666666666 327.04 284.3733333333332 328.1066666666667 255.9999999999999 328.1066666666667C227.8399999999999 328.1066666666667 199.2533333333333 327.04 172.5866666666666 320C108.7999999999999 363.3066666666667 80.8533333333333 354.3466666666667 80.8533333333333 354.3466666666667C62.7199999999999 308.48 73.8133333333333 274.5600000000001 77.4399999999999 266.0266666666667C55.68 242.7733333333334 42.6666666666667 213.3333333333334 42.6666666666667 176.64C42.6666666666667 39.2533333333333 131.4133333333333 8.3200000000001 256 8.3200000000001C379.52 8.3200000000001 469.3333333333333 39.2533333333333 469.3333333333333 176.6400000000001C469.3333333333333 213.3333333333334 456.32 242.7733333333334 434.7733333333333 266.0266666666668M256 34.5600000000001C168.1066666666667 34.5600000000001 96.64 38.6133333333334 96.64 123.9466666666667C96.64 144.2133333333334 106.6666666666667 163.4133333333334 123.7333333333334 178.9866666666667C152.32 205.2266666666668 201.1733333333333 191.3600000000001 256 191.3600000000001C311.2533333333334 191.3600000000001 359.4666666666667 205.2266666666668 388.2666666666667 178.9866666666667C405.3333333333333 163.4133333333334 416 144.4266666666667 416 123.9466666666667C416 38.8266666666667 344.1066666666667 34.5600000000001 256 34.5600000000001M189.0133333333333 168.1066666666667C171.52 168.1066666666667 157.0133333333333 146.7733333333334 157.0133333333333 120.7466666666667C157.0133333333333 94.5066666666667 171.52 72.96 189.0133333333333 72.96C206.72 72.96 221.0133333333333 94.2933333333334 221.0133333333333 120.7466666666667C221.0133333333333 146.9866666666667 206.72 168.1066666666668 189.0133333333333 168.1066666666668M322.9866666666667 168.1066666666668C305.28 168.1066666666668 290.9866666666667 146.9866666666667 290.9866666666667 120.7466666666667C290.9866666666667 94.2933333333334 305.28 72.96 322.9866666666667 72.96C340.48 72.96 354.9866666666667 94.2933333333334 354.9866666666667 120.7466666666667C354.9866666666667 146.9866666666667 341.3333333333333 168.1066666666668 322.9866666666667 168.1066666666668z" />
+    <glyph glyph-name="gitlab"
+      unicode="&#xFB7C;"
+      horiz-adv-x="512" d=" M67.4133333333333 234.6666666666667L256 -10.6666666666666L49.4933333333333 142.9333333333333C43.7333333333333 147.4133333333334 41.3866666666667 154.6666666666667 43.52 161.28L67.4133333333333 234.6666666666667M130.3466666666667 380.3733333333334C128 387.6266666666667 117.3333333333333 387.6266666666667 114.56 380.3733333333334L67.4133333333333 234.6666666666667H177.4933333333334L130.3466666666667 380.3733333333334M177.4933333333334 234.6666666666667L256 -10.6666666666666L334.5066666666667 234.6666666666667H177.4933333333334M468.48 161.28L444.5866666666667 234.6666666666667L256 -10.6666666666666L462.5066666666667 142.9333333333333C468.2666666666667 147.4133333333334 470.6133333333333 154.6666666666667 468.48 161.28M397.44 380.3733333333334C394.6666666666667 387.6266666666667 384 387.6266666666667 381.6533333333333 380.3733333333334L334.5066666666667 234.6666666666667H444.5866666666667L397.44 380.3733333333334z" />
+    <glyph glyph-name="glass-cocktail"
+      unicode="&#xF356;"
+      horiz-adv-x="512" d=" M160 298.6666666666667L117.3333333333333 341.3333333333334H394.6666666666667L352 298.6666666666667M234.6666666666667 170.6666666666667V42.6666666666667H128V0H384V42.6666666666667H277.3333333333333V170.6666666666667L448 341.3333333333334V384H64V341.3333333333334L234.6666666666667 170.6666666666667z" />
+    <glyph glyph-name="glass-flute"
+      unicode="&#xF2A5;"
+      horiz-adv-x="512" d=" M170.6666666666667 405.3333333333333H341.3333333333333C334.2933333333333 341.3333333333334 327.04 277.3333333333334 314.6666666666667 238.2933333333334C302.2933333333333 199.04 284.3733333333334 184.96 275.6266666666667 147.6266666666667C266.6666666666667 110.2933333333334 266.6666666666667 49.7066666666667 279.04 21.3333333333334C291.6266666666667 -7.04 316.3733333333334 -3.6266666666667 328.96 -5.3333333333333C341.3333333333333 -7.04 341.3333333333333 -14.2933333333333 341.3333333333333 -21.3333333333333H170.6666666666667C170.6666666666667 -14.2933333333333 170.6666666666667 -7.04 183.04 -5.3333333333333C195.6266666666667 -3.6266666666667 220.3733333333333 -7.04 232.96 21.3333333333334C245.3333333333333 49.7066666666667 245.3333333333333 110.2933333333334 236.3733333333334 147.6266666666667C227.6266666666667 184.96 209.7066666666667 199.04 197.3333333333333 238.2933333333334C184.96 277.3333333333334 177.7066666666667 341.3333333333334 170.6666666666667 405.3333333333333M213.3333333333333 362.6666666666667C214.8266666666667 340.6933333333334 216.5333333333333 318.5066666666667 218.4533333333333 298.6666666666667H293.5466666666666C295.4666666666667 318.5066666666667 297.1733333333333 340.6933333333334 298.6666666666667 362.6666666666667H213.3333333333333z" />
+    <glyph glyph-name="glass-mug"
+      unicode="&#xF2A6;"
+      horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667V298.6666666666667H384V362.6666666666667H213.3333333333333M170.6666666666667 405.3333333333333H448V384L426.6666666666667 362.6666666666667V21.3333333333334L448 0V-21.3333333333333H149.3333333333333V0L170.6666666666667 21.3333333333334V51.2L89.6 88.96C74.6666666666667 96 64 110.5066666666667 64 128V277.3333333333334C64 300.8 83.2 320 106.6666666666667 320H170.6666666666667V362.6666666666667L149.3333333333333 384V405.3333333333333H170.6666666666667M106.6666666666667 128L170.6666666666667 98.3466666666667V277.3333333333334H106.6666666666667V128z" />
+    <glyph glyph-name="glass-stange"
+      unicode="&#xF2A7;"
+      horiz-adv-x="512" d=" M170.6666666666667 405.3333333333333H341.3333333333333V-21.3333333333333H170.6666666666667V405.3333333333333M213.3333333333333 362.6666666666667V298.6666666666667H298.6666666666667V362.6666666666667H213.3333333333333z" />
+    <glyph glyph-name="glass-tulip"
+      unicode="&#xF2A8;"
+      horiz-adv-x="512" d=" M170.6666666666667 405.3333333333333H341.3333333333333C334.2933333333333 391.04 327.04 376.9600000000001 332.3733333333334 341.3333333333334C337.7066666666667 305.7066666666667 355.6266666666667 248.96 346.6666666666667 218.88C337.7066666666667 189.0133333333333 302.2933333333333 186.0266666666667 284.3733333333334 152.3200000000001C266.6666666666667 118.6133333333334 266.6666666666667 53.9733333333334 279.04 23.4666666666667C291.6266666666667 -7.04 316.3733333333334 -3.6266666666666 328.96 -5.3333333333333C341.3333333333333 -7.04 341.3333333333333 -14.2933333333333 341.3333333333333 -21.3333333333333H170.6666666666667C170.6666666666667 -14.2933333333333 170.6666666666667 -7.04 183.04 -5.3333333333333C195.6266666666667 -3.6266666666667 220.3733333333333 -7.04 232.96 23.4666666666667C245.3333333333333 53.9733333333334 245.3333333333333 118.6133333333334 227.6266666666667 152.3200000000001C209.7066666666667 186.0266666666667 174.2933333333333 189.0133333333334 165.3333333333333 218.8800000000001C156.3733333333333 248.9600000000001 174.2933333333333 305.7066666666667 179.6266666666667 341.3333333333334C184.96 376.9600000000001 177.7066666666667 391.04 170.6666666666667 405.3333333333334M213.3333333333333 362.6666666666668C213.3333333333333 337.2800000000001 209.7066666666667 316.3733333333334 205.6533333333333 298.6666666666668H304.4266666666666C301.44 316.3733333333334 298.6666666666667 337.2800000000001 298.6666666666667 362.6666666666668H213.3333333333333z" />
+    <glyph glyph-name="glass-wine"
+      unicode="&#xF875;"
+      horiz-adv-x="512" d=" M330.6666666666667 -5.76L312.7466666666667 -3.84C296.5333333333333 -2.3466666666666 282.6666666666667 8.5333333333333 277.3333333333333 24.1066666666667C266.0266666666667 65.92 266.0266666666667 110.2933333333333 277.3333333333333 152.1066666666667C326.8266666666667 162.1333333333333 362.6666666666667 205.44 362.6666666666667 256C362.6666666666667 298.6666666666667 320 405.3333333333333 320 405.3333333333333H192S149.3333333333333 298.6666666666667 149.3333333333333 256C149.3333333333333 205.2266666666667 184.96 161.7066666666667 234.6666666666667 151.4666666666667C245.9733333333333 109.6533333333334 245.9733333333333 65.28 234.6666666666667 23.4666666666667C229.5466666666667 8.1066666666667 215.8933333333333 -2.7733333333333 199.8933333333334 -4.4799999999999L181.3333333333334 -6.3999999999999S170.6666666666667 -5.9733333333332 170.6666666666667 -21.3333333333333H341.3333333333333C341.3333333333333 -5.9733333333332 330.6666666666667 -5.7599999999999 330.6666666666667 -5.7599999999999M201.3866666666667 298.6666666666667L222.72 362.6666666666667H289.28L310.6133333333333 298.6666666666667H201.3866666666667z" />
+    <glyph glyph-name="glassdoor"
+      unicode="&#xF2A9;"
+      horiz-adv-x="512" d=" M170.6666666666667 405.3333333333333C135.2533333333333 405.3333333333333 106.6666666666667 376.7466666666667 106.6666666666667 341.3333333333334V96H170.6666666666667V341.3333333333334H405.3333333333333C405.3333333333333 376.7466666666667 376.7466666666667 405.3333333333333 341.3333333333333 405.3333333333333H170.6666666666667M341.3333333333333 288V42.6666666666667H106.6666666666667C106.6666666666667 7.2533333333333 135.2533333333333 -21.3333333333333 170.6666666666667 -21.3333333333333H341.3333333333333C376.7466666666667 -21.3333333333333 405.3333333333333 7.2533333333333 405.3333333333333 42.6666666666667V288H341.3333333333333z" />
+    <glyph glyph-name="glasses"
+      unicode="&#xF2AA;"
+      horiz-adv-x="512" d=" M64 234.6666666666667C58.88 234.6666666666667 54.4 232.7466666666667 51.4133333333333 229.3333333333334C48.4266666666667 226.1333333333334 47.1466666666667 221.44 47.7866666666667 216.32L58.4533333333333 152.5333333333334C60.16 138.6666666666667 72.5333333333333 128 85.3333333333333 128H149.3333333333333C162.9866666666667 128 178.3466666666666 139.9466666666667 181.3333333333333 153.1733333333334L203.9466666666667 221.2266666666667C204.8 224 204.16 228.0533333333334 202.6666666666667 230.6133333333333C200.32 233.1733333333333 196.6933333333333 234.6666666666667 192 234.6666666666667H64M149.3333333333333 85.3333333333334H85.3333333333333C50.7733333333333 85.3333333333334 20.48 112.2133333333334 16.2133333333333 146.3466666666667L5.5466666666667 210.1333333333333C3.2 228.2666666666667 8.32 245.3333333333334 19.4133333333333 257.7066666666667C30.5066666666667 270.0800000000001 46.72 277.3333333333334 64 277.3333333333334H192C209.7066666666667 277.3333333333334 225.7066666666667 269.8666666666667 235.9466666666667 256.8533333333334C238.2933333333333 253.6533333333333 240.4266666666667 250.24 242.1333333333334 246.4C251.3066666666667 248.32 260.6933333333333 248.32 269.6533333333333 246.4C271.36 250.24 273.4933333333334 253.6533333333333 276.0533333333334 256.8533333333334C286.08 269.8666666666667 302.08 277.3333333333334 320 277.3333333333334H448C465.28 277.3333333333334 481.4933333333333 270.0800000000001 492.5866666666666 257.7066666666667C503.4666666666667 245.3333333333334 508.5866666666666 228.2666666666667 506.4533333333333 210.9866666666667L495.5733333333333 145.4933333333334C491.52 112.2133333333334 461.0133333333333 85.3333333333334 426.6666666666667 85.3333333333334H362.6666666666667C329.3866666666667 85.3333333333334 296.96 110.72 288.8533333333333 142.9333333333333L269.6533333333333 200.7466666666667C261.5466666666666 206.72 250.24 206.72 242.1333333333333 200.7466666666667L222.5066666666666 141.4400000000001C214.8266666666667 110.5066666666667 182.6133333333334 85.3333333333334 149.3333333333333 85.3333333333334M320 234.6666666666667C315.3066666666666 234.6666666666667 311.68 233.1733333333334 309.3333333333333 230.6133333333334C307.6266666666667 228.0533333333334 307.2 224 308.2666666666667 219.7333333333334L329.8133333333333 154.6666666666667C333.6533333333333 139.9466666666667 349.0133333333333 128 362.6666666666667 128H426.6666666666667C439.2533333333334 128 451.84 138.6666666666667 453.3333333333333 151.68L464.2133333333334 217.1733333333334C464.8533333333334 221.44 463.5733333333333 226.1333333333334 460.5866666666666 229.3333333333334C457.6 232.7466666666667 453.1199999999999 234.6666666666667 448 234.6666666666667H320z" />
+    <glyph glyph-name="globe-model"
+      unicode="&#xF8E8;"
+      horiz-adv-x="512" d=" M370.3466666666667 391.68L340.2666666666667 361.3866666666667C368.2133333333334 333.44 384 295.68 384 256C384 173.44 317.2266666666667 106.6666666666667 234.6666666666667 106.6666666666667C195.2 106.6666666666667 157.2266666666667 122.4533333333334 129.28 150.4L98.9866666666667 120.3200000000001C129.7066666666667 89.6 170.0266666666667 70.1866666666667 213.3333333333333 65.4933333333333V21.3333333333334H128V-21.3333333333333H341.3333333333333V21.3333333333334H256V65.28C353.0666666666667 76.16 426.6666666666667 158.2933333333333 426.6666666666667 256C426.6666666666667 306.7733333333333 406.4 355.6266666666667 370.3466666666667 391.68M234.6666666666667 373.3333333333334C169.8133333333333 373.3333333333334 117.3333333333333 320.8533333333334 117.3333333333333 256S169.8133333333333 138.6666666666667 234.6666666666667 138.6666666666667S352 191.1466666666667 352 256S299.52 373.3333333333334 234.6666666666667 373.3333333333334M234.6666666666667 330.6666666666667C276.0533333333333 330.6666666666667 309.3333333333333 297.1733333333334 309.3333333333333 256S275.84 181.3333333333334 234.6666666666667 181.3333333333334S160 214.8266666666667 160 256S193.4933333333334 330.6666666666667 234.6666666666667 330.6666666666667z" />
+    <glyph glyph-name="gmail"
+      unicode="&#xF2AB;"
+      horiz-adv-x="512" d=" M426.6666666666667 64H384V250.6666666666667L256 170.6666666666667L128 250.6666666666667V64H85.3333333333333V320H110.9333333333333L256 229.3333333333334L401.0666666666667 320H426.6666666666667M426.6666666666667 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="gnome"
+      unicode="&#xF2AC;"
+      horiz-adv-x="512" d=" M392.9600000000001 405.3333333333333C304.2133333333334 405.3333333333333 288 278.8266666666667 337.4933333333334 278.8266666666667C387.4133333333334 278.8266666666667 481.7066666666667 405.3333333333333 392.9600000000001 405.3333333333333M256 389.76C254.2933333333333 389.76 252.8 389.76 251.3066666666667 389.5466666666667C201.3866666666667 383.1466666666667 218.88 296.1066666666667 245.3333333333333 294.6133333333334C271.36 292.9066666666667 299.52 389.76 256 389.76M169.1733333333333 355.4133333333334C166.6133333333333 355.4133333333334 163.6266666666667 354.7733333333333 160.64 353.4933333333334C120.5333333333333 336.8533333333334 154.4533333333333 268.5866666666667 177.0666666666666 273.0666666666667C197.76 277.3333333333334 200.32 356.2666666666667 169.1733333333333 355.4133333333334M105.1733333333333 301.8666666666667C101.76 302.0800000000001 97.92 300.8 94.08 298.0266666666667C61.8666666666666 275.8400000000001 104.7466666666666 222.2933333333334 123.7333333333333 230.6133333333334C140.16 237.8666666666667 129.7066666666666 301.0133333333333 105.1733333333333 301.8666666666667M283.5199999999999 260.9066666666667C215.4666666666666 260.2666666666667 128.6399999999999 225.7066666666667 113.4933333333333 158.0800000000001C96.64 82.9866666666667 182.6133333333334 -21.3333333333333 272.2133333333333 -21.3333333333333C316.3733333333334 -21.3333333333333 367.1466666666667 18.5600000000001 376.7466666666667 68.9066666666667C384 107.3066666666667 291.2 91.9466666666667 294.6133333333334 66.5600000000001C298.6666666666667 36.0533333333334 272.2133333333333 21.3333333333334 246.4 40.5333333333334C164.0533333333334 103.2533333333335 382.5066666666667 134.4000000000001 368 219.9466666666667C363.3066666666667 247.6800000000001 327.2533333333334 261.1200000000001 283.52 260.9066666666668z" />
+    <glyph glyph-name="gog"
+      unicode="&#xFB7D;"
+      horiz-adv-x="512" d=" M85.3333333333333 384H426.6666666666667C450.1333333333334 384 469.3333333333333 364.8 469.3333333333333 341.3333333333334V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V341.3333333333334C42.6666666666667 364.8 61.8666666666667 384 85.3333333333333 384M223.1466666666667 329.8133333333334C212.2666666666667 329.8133333333334 203.52 321.0666666666667 203.52 310.1866666666667V244.48C203.52 233.6 212.2666666666667 224.8533333333334 223.1466666666667 224.8533333333334H288.8533333333334C299.7333333333334 224.8533333333334 308.48 233.6 308.48 244.48V310.1866666666667C308.48 321.0666666666667 299.7333333333334 329.8133333333334 288.8533333333334 329.8133333333334H223.1466666666667M236.3733333333334 303.5733333333334H275.6266666666667C279.2533333333334 303.5733333333334 282.24 300.5866666666667 282.24 296.9600000000001V257.7066666666667C282.24 254.08 279.2533333333334 251.0933333333334 275.6266666666667 251.0933333333334H236.3733333333334C232.7466666666667 251.0933333333334 229.76 254.08 229.76 257.7066666666667V296.9600000000001C229.76 300.5866666666667 232.7466666666667 303.5733333333333 236.3733333333334 303.5733333333333M104.96 329.8133333333334C94.08 329.8133333333334 85.3333333333333 321.0666666666667 85.3333333333333 310.1866666666667V244.48C85.3333333333333 233.6 94.08 224.8533333333334 104.96 224.8533333333334H151.04V251.0933333333334H118.1866666666667C114.56 251.0933333333334 111.5733333333333 254.08 111.5733333333333 257.7066666666667V296.9600000000001C111.5733333333333 300.5866666666667 114.56 303.5733333333333 118.1866666666667 303.5733333333333H157.44C161.0666666666667 303.5733333333333 164.0533333333333 300.5866666666667 164.0533333333333 296.9600000000001V218.24C164.0533333333333 214.6133333333334 161.0666666666667 211.6266666666667 157.44 211.6266666666667H85.3333333333333V185.3866666666667H170.6666666666667C181.3333333333333 185.3866666666667 190.2933333333333 194.3466666666667 190.2933333333333 205.2266666666667V310.1866666666667C190.2933333333333 321.0666666666667 181.5466666666667 329.8133333333334 170.6666666666667 329.8133333333334H104.96M341.3333333333333 329.8133333333334C330.6666666666667 329.8133333333334 321.7066666666667 321.0666666666667 321.7066666666667 310.1866666666667V244.48C321.7066666666667 233.6 330.6666666666667 224.8533333333334 341.3333333333333 224.8533333333334H387.2V251.0933333333334H354.56C350.9333333333332 251.0933333333334 347.9466666666666 254.08 347.9466666666666 257.7066666666667V296.9600000000001C347.9466666666666 300.5866666666667 350.9333333333333 303.5733333333333 354.56 303.5733333333333H393.8133333333333C397.44 303.5733333333333 400.4266666666666 300.5866666666667 400.4266666666666 296.9600000000001V218.24C400.4266666666666 214.6133333333334 397.4399999999999 211.6266666666667 393.8133333333333 211.6266666666667H321.7066666666666V185.3866666666667H407.04C417.92 185.3866666666667 426.6666666666667 194.3466666666667 426.6666666666667 205.2266666666667V310.1866666666667C426.6666666666667 321.0666666666667 417.92 329.8133333333334 407.04 329.8133333333334H341.3333333333333M210.1333333333333 159.1466666666667C199.2533333333333 159.1466666666667 190.2933333333333 150.4 190.2933333333333 139.5200000000001V73.8133333333334C190.2933333333333 62.9333333333333 199.2533333333333 54.1866666666667 210.1333333333333 54.1866666666667H275.6266666666667C286.5066666666667 54.1866666666667 295.4666666666667 62.9333333333333 295.4666666666667 73.8133333333334V139.5200000000001C295.4666666666667 150.4 286.5066666666667 159.1466666666667 275.6266666666667 159.1466666666667H210.1333333333333M223.1466666666667 132.9066666666667H262.6133333333333C266.6666666666667 132.9066666666667 269.2266666666667 129.92 269.2266666666667 126.2933333333334V87.04C269.2266666666667 83.4133333333333 266.24 80.4266666666667 262.6133333333333 80.4266666666667H223.1466666666667C219.52 80.4266666666667 216.5333333333333 83.4133333333334 216.5333333333333 87.04V126.2933333333333C216.5333333333333 129.92 219.52 132.9066666666667 223.1466666666667 132.9066666666667M104.96 159.1466666666667C94.08 159.1466666666667 85.3333333333333 150.4 85.3333333333333 139.52V73.8133333333334C85.3333333333333 62.9333333333333 94.08 54.1866666666667 104.96 54.1866666666667H177.28V80.4266666666667H118.1866666666667C114.56 80.4266666666667 111.5733333333333 83.4133333333334 111.5733333333333 87.04V126.2933333333333C111.5733333333333 129.92 114.56 132.9066666666667 118.1866666666667 132.9066666666667H177.28V159.1466666666667H104.96M328.1066666666667 159.1466666666667C317.2266666666667 159.1466666666667 308.48 150.4 308.48 139.52V54.1866666666667H334.7200000000001V126.2933333333333C334.7200000000001 129.92 337.7066666666667 132.9066666666667 341.3333333333333 132.9066666666667H354.56V54.1866666666667H380.8V132.9066666666667H400.4266666666668V54.1866666666667H426.6666666666667V159.1466666666667H328.1066666666667z" />
+    <glyph glyph-name="golf"
+      unicode="&#xF822;"
+      horiz-adv-x="512" d=" M416 64C433.7066666666666 64 448 49.7066666666667 448 32S433.7066666666666 0 416 0S384 14.2933333333334 384 32S398.2933333333334 64 416 64M362.6666666666667 321.7066666666667L234.6666666666667 256V63.36C295.2533333333334 59.9466666666667 341.3333333333333 42.6666666666667 341.3333333333333 21.3333333333334C341.3333333333333 -2.1333333333333 283.9466666666667 -21.3333333333333 213.3333333333333 -21.3333333333333S85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334C85.3333333333333 37.12 111.1466666666667 50.7733333333333 149.3333333333333 58.24V21.3333333333334H192V405.3333333333333L362.6666666666667 321.7066666666667z" />
+    <glyph glyph-name="gondola"
+      unicode="&#xF685;"
+      horiz-adv-x="512" d=" M384 234.6666666666667H277.3333333333333V286.0800000000001L471.8933333333333 318.5066666666667L466.7733333333333 350.0800000000001L350.08 330.6666666666667C351.1466666666667 333.8666666666667 352 337.4933333333334 352 341.3333333333334C352 359.04 337.7066666666667 373.3333333333334 320 373.3333333333334S288 359.04 288 341.3333333333334C288 333.8666666666667 290.7733333333333 326.8266666666667 295.2533333333334 321.4933333333334L277.3333333333333 318.5066666666667V341.3333333333334H234.6666666666667V311.2533333333334L222.08 309.3333333333334C223.1466666666667 312.5333333333334 224 316.1600000000001 224 320C224 337.7066666666667 209.7066666666667 352 192 352S160 337.7066666666667 160 320C160 312.32 162.7733333333333 305.4933333333334 167.04 300.1600000000001L40.1066666666667 278.8266666666667L45.2266666666667 247.2533333333334L234.6666666666667 278.8266666666667V234.6666666666667H128C104.32 234.6666666666667 85.3333333333333 215.4666666666667 85.3333333333333 192V64C85.3333333333333 40.5333333333333 104.5333333333333 21.3333333333334 128 21.3333333333334H384C407.4666666666667 21.3333333333334 426.6666666666667 40.5333333333333 426.6666666666667 64V192C426.6666666666667 215.4666666666667 407.4666666666667 234.6666666666667 384 234.6666666666667M128 192H176V106.6666666666667H128V192M208 106.6666666666667V192H304V106.6666666666667H208M384 106.6666666666667H336V192H384V106.6666666666667z" />
+    <glyph glyph-name="google"
+      unicode="&#xF2AD;"
+      horiz-adv-x="512" d=" M455.4666666666667 211.2H259.8400000000001V152.96H398.7200000000001C391.6800000000001 71.68 324.0533333333334 36.9066666666667 260.0533333333334 36.9066666666667C178.3466666666666 36.9066666666667 106.6666666666667 101.3333333333334 106.6666666666667 192C106.6666666666667 279.4666666666667 174.9333333333333 347.0933333333334 260.2666666666667 347.0933333333334C326.1866666666666 347.0933333333334 364.8 305.0666666666667 364.8 305.0666666666667L405.3333333333333 347.3066666666667S353.28 405.3333333333333 258.1333333333334 405.3333333333333C136.96 405.3333333333333 43.3066666666667 302.9333333333334 43.3066666666667 192C43.3066666666667 84.2666666666667 131.4133333333333 -21.3333333333333 261.3333333333333 -21.3333333333333C375.4666666666667 -21.3333333333333 458.6666666666666 56.96 458.6666666666666 172.5866666666667C458.6666666666666 197.12 455.4666666666667 211.2 455.4666666666667 211.2z" />
+    <glyph glyph-name="google-allo"
+      unicode="&#xF801;"
+      horiz-adv-x="512" d=" M469.3333333333333 192V0C469.3333333333333 -10.6666666666666 464.2133333333334 -17.4933333333333 454.4 -20.48C444.8 -23.4666666666667 437.3333333333333 -20.6933333333334 430.9333333333333 -11.9466666666667L398.08 33.0666666666666C357.9733333333334 -2.9866666666667 310.6133333333334 -21.3333333333333 256 -21.3333333333333C197.3333333333333 -21.3333333333333 147.2 0 105.6 41.6C64 83.2 42.6666666666667 133.3333333333334 42.6666666666667 192S64 300.8 105.6 342.4C147.2 384 197.3333333333333 405.3333333333333 256 405.3333333333333S364.8 384 406.4 342.4C448 300.8 469.3333333333333 250.6666666666667 469.3333333333333 192z" />
+    <glyph glyph-name="google-analytics"
+      unicode="&#xF7CB;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H320V341.3333333333334C320 364.8 339.2 384 362.6666666666667 384H405.3333333333333M106.6666666666667 0C83.2 0 64 19.2 64 42.6666666666667V85.3333333333334C64 108.8 83.2 128 106.6666666666667 128H192V213.3333333333334C192 236.8 211.2 256 234.6666666666667 256H309.3333333333333V0H106.6666666666667z" />
+    <glyph glyph-name="google-assistant"
+      unicode="&#xF7CC;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333C78.72 405.3333333333333 21.3333333333333 347.9466666666667 21.3333333333333 277.3333333333334S78.72 149.3333333333334 149.3333333333333 149.3333333333334S277.3333333333333 206.72 277.3333333333333 277.3333333333334S219.9466666666667 405.3333333333333 149.3333333333333 405.3333333333333M458.6666666666666 320C440.9600000000001 320 426.6666666666667 305.7066666666667 426.6666666666667 288S440.9600000000001 256 458.6666666666666 256S490.6666666666666 270.2933333333334 490.6666666666666 288S476.3733333333333 320 458.6666666666666 320M362.6666666666667 277.3333333333334C327.2533333333334 277.3333333333334 298.6666666666667 248.7466666666667 298.6666666666667 213.3333333333334S327.2533333333334 149.3333333333334 362.6666666666667 149.3333333333334S426.6666666666667 177.92 426.6666666666667 213.3333333333334S398.08 277.3333333333334 362.6666666666667 277.3333333333334M362.6666666666667 128C321.4933333333334 128 288 94.5066666666667 288 53.3333333333334S321.4933333333334 -21.3333333333333 362.6666666666667 -21.3333333333333S437.3333333333333 12.16 437.3333333333333 53.3333333333334S403.84 128 362.6666666666667 128z" />
+    <glyph glyph-name="google-cardboard"
+      unicode="&#xF2AE;"
+      horiz-adv-x="512" d=" M442.4533333333333 320H68.2666666666667C54.4 320 42.6666666666667 307.8400000000001 42.6666666666667 292.9066666666667V69.76C42.6666666666667 54.8266666666667 54.4 42.6666666666667 68.9066666666667 42.6666666666667H170.6666666666667C182.1866666666667 42.6666666666667 192 49.4933333333333 195.4133333333333 59.52L225.0666666666667 133.5466666666667C230.1866666666667 145.92 242.1333333333334 154.6666666666667 256 154.6666666666667C269.8666666666667 154.6666666666667 281.8133333333334 145.92 286.9333333333333 133.5466666666667L316.5866666666667 59.52C320.64 49.4933333333333 329.8133333333333 42.6666666666667 340.2666666666667 42.6666666666667H442.4533333333333C457.6 42.6666666666667 469.3333333333333 54.8266666666667 469.3333333333333 69.76V292.9066666666667C469.3333333333333 307.8400000000001 457.6 320 442.4533333333333 320M154.0266666666667 136.96C128 136.96 106.6666666666667 158.9333333333333 106.6666666666667 185.8133333333334C106.6666666666667 213.3333333333334 128 234.6666666666667 154.0266666666667 234.6666666666667C180.0533333333333 234.6666666666667 201.1733333333333 213.3333333333334 201.1733333333333 185.8133333333334C201.1733333333333 158.9333333333334 180.0533333333333 136.96 154.0266666666667 136.96M357.9733333333334 136.96C331.9466666666667 136.96 310.8266666666667 158.9333333333334 310.8266666666667 185.8133333333334S331.9466666666667 234.6666666666667 357.9733333333334 234.6666666666667S405.3333333333333 212.6933333333334 405.3333333333333 185.8133333333334S384 136.96 357.9733333333334 136.96z" />
+    <glyph glyph-name="google-chrome"
+      unicode="&#xF2AF;"
+      horiz-adv-x="512" d=" M256 21.3333333333334L329.8133333333334 149.3333333333334H329.6C336.8533333333334 162.1333333333333 341.3333333333333 176.4266666666667 341.3333333333333 192C341.3333333333333 217.6 329.8133333333334 240.4266666666667 311.8933333333333 256H414.08C422.1866666666666 236.1600000000001 426.6666666666667 214.6133333333334 426.6666666666667 192C426.6666666666667 97.7066666666667 350.2933333333334 21.3333333333334 256 21.3333333333334M85.3333333333333 192C85.3333333333333 223.1466666666667 93.6533333333333 252.1600000000001 108.16 277.3333333333334L182.1866666666667 149.3333333333334H182.4C197.12 123.9466666666667 224 106.6666666666667 256 106.6666666666667C265.6 106.6666666666667 274.7733333333333 108.5866666666667 283.52 111.5733333333334L232.32 23.2533333333333C149.3333333333333 34.7733333333333 85.3333333333333 105.8133333333334 85.3333333333333 192M320 192C320 156.5866666666667 291.4133333333333 128 256 128S192 156.5866666666667 192 192S220.5866666666667 256 256 256S320 227.4133333333334 320 192M256 362.6666666666667C319.1466666666667 362.6666666666667 374.1866666666666 328.32 403.6266666666667 277.3333333333334H256C214.6133333333334 277.3333333333334 180.2666666666667 247.8933333333334 172.3733333333333 208.8533333333333L121.6 296.9600000000001C152.7466666666667 336.8533333333334 201.3866666666667 362.6666666666667 256 362.6666666666667M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="google-circles"
+      unicode="&#xF2B0;"
+      horiz-adv-x="512" d=" M355.4133333333333 128H362.6666666666667C384 128 405.3333333333333 132.2666666666667 423.8933333333333 139.52C408.9600000000001 48.4266666666667 330.0266666666667 -21.3333333333333 234.6666666666667 -21.3333333333333C128 -21.3333333333333 42.6666666666667 64.64 42.6666666666667 170.6666666666667C42.6666666666667 266.0266666666667 112.4266666666667 344.9600000000001 203.5200000000001 359.8933333333333C196.2666666666667 341.3333333333334 192 320 192 298.6666666666667V291.4133333333334C142.5066666666667 273.92 106.6666666666667 226.5600000000001 106.6666666666667 170.6666666666667C106.6666666666667 100.0533333333334 164.0533333333333 42.6666666666667 234.6666666666667 42.6666666666667C290.56 42.6666666666667 337.92 78.5066666666667 355.4133333333333 128M362.6666666666667 234.6666666666667C398.08 234.6666666666667 426.6666666666667 263.2533333333334 426.6666666666667 298.6666666666667S398.08 362.6666666666667 362.6666666666667 362.6666666666667S298.6666666666667 334.0800000000001 298.6666666666667 298.6666666666667S327.2533333333334 234.6666666666667 362.6666666666667 234.6666666666667M362.6666666666667 426.6666666666667C433.28 426.6666666666667 490.6666666666666 369.28 490.6666666666666 298.6666666666667S433.28 170.6666666666667 362.6666666666667 170.6666666666667S234.6666666666667 228.0533333333334 234.6666666666667 298.6666666666667C234.6666666666667 369.4933333333334 292.0533333333333 426.6666666666667 362.6666666666667 426.6666666666667z" />
+    <glyph glyph-name="google-circles-communities"
+      unicode="&#xF2B1;"
+      horiz-adv-x="512" d=" M320 192C296.32 192 277.3333333333333 173.0133333333333 277.3333333333333 149.3333333333334C277.3333333333333 125.8666666666667 296.5333333333333 106.6666666666667 320 106.6666666666667S362.6666666666667 125.8666666666667 362.6666666666667 149.3333333333334C362.6666666666667 173.0133333333333 343.4666666666667 192 320 192M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M298.6666666666667 256C298.6666666666667 279.68 279.4666666666667 298.6666666666667 256 298.6666666666667C232.32 298.6666666666667 213.3333333333333 279.68 213.3333333333333 256C213.3333333333333 232.5333333333334 232.5333333333334 213.3333333333334 256 213.3333333333334S298.6666666666667 232.5333333333334 298.6666666666667 256M192 192C168.5333333333333 192 149.3333333333333 172.8 149.3333333333333 149.3333333333334S168.5333333333333 106.6666666666667 192 106.6666666666667S234.6666666666667 125.8666666666667 234.6666666666667 149.3333333333334C234.6666666666667 173.0133333333333 215.4666666666667 192 192 192z" />
+    <glyph glyph-name="google-circles-extended"
+      unicode="&#xF2B2;"
+      horiz-adv-x="512" d=" M384 42.6666666666667C360.32 42.6666666666667 341.3333333333333 61.8666666666667 341.3333333333333 85.3333333333334C341.3333333333333 109.0133333333333 360.32 128 384 128C407.4666666666667 128 426.6666666666667 108.8 426.6666666666667 85.3333333333334S407.4666666666667 42.6666666666667 384 42.6666666666667M384 170.6666666666667C336.8533333333333 170.6666666666667 298.6666666666667 132.48 298.6666666666667 85.3333333333334S336.8533333333333 0 384 0S469.3333333333333 38.1866666666667 469.3333333333333 85.3333333333334S431.1466666666667 170.6666666666667 384 170.6666666666667M256 211.2C233.6 211.2 215.4666666666667 193.0666666666667 215.4666666666667 170.6666666666667C215.4666666666667 148.2666666666667 233.6 130.1333333333333 256 130.1333333333333C278.4 130.1333333333333 296.5333333333333 148.2666666666667 296.5333333333333 170.6666666666667C296.5333333333333 193.0666666666667 278.4 211.2 256 211.2M128 42.6666666666667C104.32 42.6666666666667 85.3333333333333 61.8666666666667 85.3333333333333 85.3333333333334C85.3333333333333 109.0133333333333 104.32 128 128 128C151.4666666666667 128 170.6666666666667 108.8 170.6666666666667 85.3333333333334S151.4666666666667 42.6666666666667 128 42.6666666666667M128 170.6666666666667C80.8533333333333 170.6666666666667 42.6666666666667 132.48 42.6666666666667 85.3333333333334S80.8533333333333 0 128 0S213.3333333333333 38.1866666666667 213.3333333333333 85.3333333333334S175.1466666666667 170.6666666666667 128 170.6666666666667M256 362.6666666666667C279.4666666666667 362.6666666666667 298.6666666666667 343.4666666666667 298.6666666666667 320S279.4666666666667 277.3333333333334 256 277.3333333333334C232.32 277.3333333333334 213.3333333333333 296.5333333333334 213.3333333333333 320C213.3333333333333 343.68 232.32 362.6666666666667 256 362.6666666666667M256 234.6666666666667C303.1466666666667 234.6666666666667 341.3333333333333 272.8533333333334 341.3333333333333 320S303.1466666666667 405.3333333333333 256 405.3333333333333S170.6666666666667 367.1466666666667 170.6666666666667 320S208.8533333333333 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="google-circles-group"
+      unicode="&#xF2B3;"
+      horiz-adv-x="512" d=" M106.6666666666667 234.6666666666667C83.2 234.6666666666667 64 215.4666666666667 64 192C64 168.3200000000001 83.2 149.3333333333334 106.6666666666667 149.3333333333334C130.3466666666667 149.3333333333334 149.3333333333333 168.3200000000001 149.3333333333333 192C149.3333333333333 215.4666666666667 130.1333333333333 234.6666666666667 106.6666666666667 234.6666666666667M106.6666666666667 106.6666666666667C59.52 106.6666666666667 21.3333333333333 144.8533333333334 21.3333333333333 192S59.52 277.3333333333334 106.6666666666667 277.3333333333334S192 239.1466666666667 192 192S153.8133333333333 106.6666666666667 106.6666666666667 106.6666666666667M224 213.3333333333334H298.6666666666667V277.3333333333334L384 192L298.6666666666667 106.6666666666667V170.6666666666667H224V213.3333333333334M106.6666666666667 320C97.0666666666667 320 87.68 318.9333333333334 78.72 317.0133333333333C120.1066666666667 382.9333333333334 193.7066666666667 426.6666666666667 277.3333333333333 426.6666666666667C407.04 426.6666666666667 512 321.7066666666667 512 192S407.04 -42.6666666666666 277.3333333333333 -42.6666666666666C193.7066666666667 -42.6666666666666 120.1066666666667 1.0666666666667 78.72 66.9866666666667C87.68 65.0666666666667 97.0666666666667 64 106.6666666666667 64C123.7333333333333 64 139.9466666666667 67.4133333333334 154.6666666666667 73.3866666666667C185.8133333333333 41.1733333333333 229.12 21.3333333333334 277.3333333333333 21.3333333333334C371.6266666666667 21.3333333333334 448 97.7066666666667 448 192S371.6266666666667 362.6666666666667 277.3333333333333 362.6666666666667C229.12 362.6666666666667 185.8133333333333 342.8266666666667 154.6666666666667 310.6133333333334C139.9466666666667 316.5866666666667 123.7333333333333 320 106.6666666666667 320z" />
+    <glyph glyph-name="google-controller"
+      unicode="&#xF2B4;"
+      horiz-adv-x="512" d=" M170.0266666666667 106.6666666666667L106.6666666666667 42.6666666666667C99.6266666666667 36.2666666666667 90.24 32 80 32C59.3066666666667 32 42.6666666666667 48.64 42.6666666666667 69.3333333333334V74.6666666666667L64 232.1066666666667C68.48 281.3866666666667 109.6533333333333 320 160 320H352C402.3466666666667 320 443.52 281.3866666666667 448 232.1066666666667L469.3333333333333 74.6666666666667V69.3333333333334C469.3333333333333 48.64 452.6933333333333 32 432 32C421.76 32 412.3733333333333 36.2666666666667 405.3333333333333 42.6666666666667L341.9733333333334 106.6666666666667H170.0266666666667M149.3333333333333 277.3333333333334V234.6666666666667H106.6666666666667V213.3333333333334H149.3333333333333V170.6666666666667H170.6666666666667V213.3333333333334H213.3333333333333V234.6666666666667H170.6666666666667V277.3333333333334H149.3333333333333M352 277.3333333333334C343.2533333333334 277.3333333333334 336 270.0800000000001 336 261.3333333333334S343.2533333333334 245.3333333333334 352 245.3333333333334S368 252.5866666666667 368 261.3333333333334S360.7466666666667 277.3333333333334 352 277.3333333333334M314.6666666666667 240C305.92 240 298.6666666666667 232.7466666666667 298.6666666666667 224S305.92 208 314.6666666666667 208S330.6666666666667 215.2533333333333 330.6666666666667 224S323.4133333333333 240 314.6666666666667 240M389.3333333333333 240C380.5866666666667 240 373.3333333333333 232.7466666666667 373.3333333333333 224S380.5866666666667 208 389.3333333333333 208S405.3333333333333 215.2533333333333 405.3333333333333 224S398.08 240 389.3333333333333 240M352 202.6666666666667C343.2533333333334 202.6666666666667 336 195.4133333333334 336 186.6666666666667S343.2533333333334 170.6666666666667 352 170.6666666666667S368 177.92 368 186.6666666666667S360.7466666666667 202.6666666666667 352 202.6666666666667z" />
+    <glyph glyph-name="google-controller-off"
+      unicode="&#xF2B5;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L271.5733333333333 106.6666666666667H170.0266666666667L106.6666666666667 42.6666666666667C99.6266666666667 36.2666666666667 90.24 32 80 32C59.3066666666667 32 42.6666666666667 48.64 42.6666666666667 69.3333333333334V74.6666666666667L64 232.1066666666667C66.1333333333333 254.08 75.3066666666667 273.7066666666667 89.3866666666667 288.8533333333334L42.6666666666667 335.5733333333334M106.6666666666667 234.6666666666667V213.3333333333334H149.3333333333333V170.6666666666667H170.6666666666667V207.5733333333334L143.5733333333333 234.6666666666667H106.6666666666667M352 320C402.3466666666667 320 443.52 281.3866666666667 448 232.1066666666667L469.3333333333333 74.6666666666667V69.3333333333334C469.3333333333333 55.2533333333333 461.6533333333333 42.6666666666667 450.1333333333334 36.6933333333333L166.8266666666667 320H352M352 277.3333333333334C343.2533333333334 277.3333333333334 336 270.0800000000001 336 261.3333333333334S343.2533333333334 245.3333333333334 352 245.3333333333334S368 252.5866666666667 368 261.3333333333334S360.7466666666667 277.3333333333334 352 277.3333333333334M314.6666666666667 240C305.92 240 298.6666666666667 232.7466666666667 298.6666666666667 224S305.92 208 314.6666666666667 208S330.6666666666667 215.2533333333333 330.6666666666667 224S323.4133333333333 240 314.6666666666667 240M389.3333333333333 240C380.5866666666667 240 373.3333333333333 232.7466666666667 373.3333333333333 224S380.5866666666667 208 389.3333333333333 208S405.3333333333333 215.2533333333333 405.3333333333333 224S398.08 240 389.3333333333333 240M352 202.6666666666667C343.2533333333334 202.6666666666667 336 195.4133333333334 336 186.6666666666667S343.2533333333334 170.6666666666667 352 170.6666666666667S368 177.92 368 186.6666666666667S360.7466666666667 202.6666666666667 352 202.6666666666667z" />
+    <glyph glyph-name="google-drive"
+      unicode="&#xF2B6;"
+      horiz-adv-x="512" d=" M164.48 373.3333333333334L24.5333333333333 128L97.7066666666667 0L237.44 245.3333333333334M207.5733333333333 128L134.4 0H414.2933333333333L487.4666666666666 128M475.3066666666666 149.3333333333334L328.96 405.3333333333333H182.8266666666667L329.1733333333333 149.3333333333334H475.3066666666667z" />
+    <glyph glyph-name="google-earth"
+      unicode="&#xF2B7;"
+      horiz-adv-x="512" d=" M256 189.0133333333333C236.5866666666667 218.24 216.32 239.36 194.9866666666667 251.9466666666667C173.6533333333333 264.7466666666667 155.0933333333333 269.2266666666667 138.6666666666667 265.6C123.0933333333333 261.76 109.6533333333333 253.0133333333333 98.9866666666667 238.9333333333334C89.6 226.3466666666667 85.3333333333333 212.0533333333334 85.3333333333333 196.0533333333334V192C85.3333333333333 175.36 87.68 158.2933333333334 93.0133333333333 141.0133333333333C94.9333333333333 135.68 96 135.68 97.0666666666667 141.0133333333333C99.6266666666667 154.24 105.8133333333333 164.0533333333334 115.4133333333333 170.0266666666667C125.2266666666667 176 138.0266666666667 175.7866666666666 154.0266666666667 169.6C170.0266666666667 163.2 185.6 149.3333333333334 200.96 129.0666666666667C228.2666666666667 92.3733333333333 260.2666666666667 69.9733333333333 296.9600000000001 62.08C344.32 55.2533333333333 379.9466666666667 70.4 404.0533333333334 106.6666666666667C410.6666666666667 119.68 416 130.9866666666667 418.9866666666667 141.0133333333333C420.9066666666667 147.6266666666667 420.0533333333334 148.2666666666667 416 142.9333333333333C405.9733333333334 129.7066666666667 392.5333333333333 120.96 375.4666666666667 117.3333333333334C358.4 113.0666666666667 338.9866666666667 117.3333333333334 317.0133333333333 128C295.04 140.16 274.7733333333333 160 256 189.0133333333333M362.0266666666667 273.92C328.7466666666667 324.0533333333334 292.6933333333334 352 254.0800000000001 359.04C223.3600000000001 363.7333333333334 190.0800000000001 353.0666666666667 154.0266666666667 327.04C149.3333333333334 323.6266666666667 147.2000000000001 321.92 147.4133333333334 321.4933333333334C147.8400000000001 321.0666666666667 150.6133333333334 322.3466666666667 155.9466666666668 324.9066666666667C209.2800000000001 350.9333333333334 260.6933333333334 323.6266666666667 309.9733333333334 242.9866666666667C320.6400000000001 225.0666666666667 331.7333333333334 210.9866666666667 343.4666666666668 200.96S366.0800000000001 184.96 376.5333333333334 183.04C386.7733333333335 181.3333333333334 396.1600000000002 181.3333333333334 404.4800000000001 183.8933333333333C412.8000000000001 186.6666666666667 420.2666666666667 190.9333333333333 426.6666666666668 196.9066666666667C426.6666666666668 209.7066666666667 424.7466666666668 224 420.0533333333334 238.9333333333334C409.3866666666668 236.3733333333334 399.7866666666668 237.2266666666667 391.4666666666668 241.4933333333333C383.1466666666668 245.3333333333333 373.3333333333334 256.64 362.0266666666668 273.92M256 405.3333333333333C314.6666666666667 405.3333333333333 364.8 384 406.4 342.4C448 300.8 469.3333333333333 250.6666666666667 469.3333333333333 192S448 83.2 406.4 41.6C364.8 0 314.6666666666667 -21.3333333333333 256 -21.3333333333333S147.2 0 105.6 41.6C64 83.2 42.6666666666667 133.3333333333334 42.6666666666667 192S64 300.8 105.6 342.4C147.2 384 197.3333333333333 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="google-fit"
+      unicode="&#xF96B;"
+      horiz-adv-x="512" d=" M362.6666666666667 362.6666666666667C421.5466666666666 362.6666666666667 469.3333333333333 314.88 469.3333333333333 256C469.3333333333333 226.5600000000001 457.3866666666667 199.8933333333334 438.1866666666666 180.48L256 -1.4933333333333L73.8133333333334 180.48C54.6133333333333 199.8933333333333 42.6666666666667 226.56 42.6666666666667 256C42.6666666666667 314.88 90.4533333333333 362.6666666666667 149.3333333333333 362.6666666666667C178.7733333333333 362.6666666666667 205.44 350.7200000000001 224.8533333333333 331.52L256 300.1600000000001L287.1466666666667 331.52C306.56 350.7200000000001 333.2266666666667 362.6666666666667 362.6666666666667 362.6666666666667M332.5866666666667 286.0800000000001L195.6266666666667 149.3333333333334L256 88.96L392.7466666666667 225.9200000000001C400.64 233.6 405.3333333333333 244.2666666666667 405.3333333333333 256.0000000000001C405.3333333333333 279.4666666666667 386.1333333333334 298.6666666666668 362.6666666666667 298.6666666666668C350.9333333333333 298.6666666666668 340.2666666666667 293.9733333333334 332.5866666666667 286.0800000000001M179.4133333333333 286.0800000000001C171.7333333333334 293.9733333333334 161.0666666666667 298.6666666666667 149.3333333333333 298.6666666666667C125.8666666666667 298.6666666666667 106.6666666666667 279.4666666666667 106.6666666666667 256C106.6666666666667 244.2666666666667 111.36 233.6 119.2533333333333 225.92L150.4 194.56L210.7733333333333 254.9333333333334L179.4133333333333 286.08z" />
+    <glyph glyph-name="google-glass"
+      unicode="&#xF2B8;"
+      horiz-adv-x="512" d=" M277.3333333333333 213.3333333333334V160H402.56C389.5466666666667 85.3333333333334 330.6666666666667 32 256 32C167.68 32 96 103.68 96 192C96 280.32 167.68 352 256 352C300.5866666666667 352 339.2 333.0133333333333 366.08 302.0800000000001L403.84 340.0533333333334C367.7866666666667 380.16 316.3733333333334 405.3333333333333 256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333C373.3333333333333 -21.3333333333333 458.6666666666666 74.6666666666667 458.6666666666666 192V213.3333333333334H277.3333333333333z" />
+    <glyph glyph-name="google-hangouts"
+      unicode="&#xF2C9;"
+      horiz-adv-x="512" d=" M320 213.3333333333334L298.6666666666667 170.6666666666667H266.6666666666667L288 213.3333333333334H256V277.3333333333334H320M234.6666666666667 213.3333333333334L213.3333333333333 170.6666666666667H181.3333333333333L202.6666666666667 213.3333333333334H170.6666666666667V277.3333333333334H234.6666666666667M245.3333333333333 405.3333333333333C145.28 405.3333333333333 64 324.0533333333334 64 224C64 123.9466666666667 145.28 42.6666666666667 245.3333333333333 42.6666666666667H256V-32C359.68 18.1333333333334 426.6666666666667 128 426.6666666666667 224C426.6666666666667 324.2666666666667 345.3866666666667 405.3333333333333 245.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="google-home"
+      unicode="&#xF823;"
+      horiz-adv-x="512" d=" M171.9466666666667 282.0266666666667C160 282.0266666666667 152.96 283.0933333333334 151.04 285.0133333333333L142.08 155.0933333333334C153.3866666666667 148.2666666666667 168.1066666666667 142.9333333333333 186.0266666666667 138.6666666666667C203.9466666666667 134.1866666666667 229.9733333333334 132.9066666666667 264.1066666666667 135.04C298.0266666666667 136.96 333.44 144.4266666666667 369.92 157.0133333333333L353.0666666666667 357.9733333333334C334.2933333333333 339.4133333333333 306.7733333333333 321.92 270.08 305.92C237.44 292.0533333333334 209.28 283.9466666666667 186.0266666666667 282.0266666666667H171.9466666666667M170.0266666666667 334.0800000000001C155.3066666666667 321.2800000000001 149.3333333333334 312.7466666666667 152.1066666666667 308.0533333333334C154.0266666666667 303.36 164.2666666666667 302.0800000000001 183.04 304C206.2933333333333 305.92 232.7466666666667 313.3866666666667 261.9733333333334 325.9733333333334C282.0266666666667 334.7200000000001 299.3066666666667 343.8933333333333 314.0266666666667 353.92C328.7466666666667 363.9466666666667 338.7733333333333 372.2666666666667 344.1066666666667 379.0933333333334C349.44 385.7066666666667 351.36 390.4 350.08 392.96C348.5866666666667 396.3733333333334 341.9733333333334 398.08 330.0266666666667 398.08C305.92 398.08 276.0533333333334 390.4 240 375.04C209.28 361.6 186.0266666666667 347.9466666666667 170.0266666666667 334.08M369.92 401.0666666666667C371.4133333333333 398.2933333333333 372.0533333333334 395.3066666666667 372.0533333333334 391.8933333333333L397.0133333333333 85.3333333333334C397.0133333333333 48.4266666666667 384 19.4133333333334 359.04 -1.4933333333333C333.6533333333333 -22.4 299.3066666666666 -33.0666666666667 256 -33.0666666666667C213.3333333333333 -33.0666666666667 179.2 -22.1866666666666 153.6 0C128 21.3333333333334 114.9866666666666 50.3466666666667 114.9866666666666 87.04L129.92 309.9733333333333C129.92 315.3066666666666 132.2666666666667 321.28 136.96 327.8933333333333C141.6533333333333 334.72 145.92 340.0533333333333 149.9733333333333 343.8933333333333L157.0133333333333 350.08C177.7066666666667 367.36 202.6666666666667 382.2933333333333 232.1066666666667 394.6666666666667C251.9466666666667 403.6266666666666 271.5733333333333 410.24 290.56 414.5066666666666C309.3333333333333 418.7733333333333 326.4 420.2666666666666 341.3333333333333 418.56C356.48 416.8533333333333 366.08 411.0933333333333 369.92 401.0666666666666z" />
+    <glyph glyph-name="google-keep"
+      unicode="&#xF6DB;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V78.2933333333334L369.7066666666666 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M362.6666666666667 85.3333333333334V16L432 85.3333333333334H362.6666666666667M213.3333333333333 42.6666666666667H298.6666666666667V64H320V170.6666666666667C345.8133333333334 190.0800000000001 362.6666666666667 221.0133333333333 362.6666666666667 256C362.6666666666667 314.88 314.88 362.6666666666667 256 362.6666666666667S149.3333333333333 314.88 149.3333333333333 256C149.3333333333333 221.0133333333333 166.1866666666667 190.0800000000001 192 170.6666666666667V64H213.3333333333333V42.6666666666667M298.6666666666667 85.3333333333334H213.3333333333333V106.6666666666667H298.6666666666667V85.3333333333334M298.6666666666667 128H213.3333333333333V149.3333333333334H298.6666666666667V128M256 341.3333333333334C303.1466666666667 341.3333333333334 341.3333333333333 303.1466666666667 341.3333333333333 256C341.3333333333333 224 324.2666666666667 196.9066666666667 298.6666666666667 182.1866666666667V170.6666666666667H213.3333333333333V182.1866666666667C187.7333333333334 196.9066666666667 170.6666666666667 224 170.6666666666667 256C170.6666666666667 303.1466666666667 208.8533333333333 341.3333333333334 256 341.3333333333334z" />
+    <glyph glyph-name="google-lens"
+      unicode="&#xF9F5;"
+      horiz-adv-x="512" d=" M128 405.3333333333333H384C431.1466666666667 405.3333333333333 469.3333333333333 367.1466666666667 469.3333333333333 320V192H426.6666666666667V320C426.6666666666667 343.4666666666667 407.4666666666667 362.6666666666667 384 362.6666666666667H128C104.5333333333333 362.6666666666667 85.3333333333333 343.4666666666667 85.3333333333333 320V64C85.3333333333333 40.5333333333333 104.5333333333333 21.3333333333334 128 21.3333333333334H256V-21.3333333333333H128C80.8533333333333 -21.3333333333333 42.6666666666667 16.8533333333334 42.6666666666667 64V320C42.6666666666667 367.1466666666667 80.8533333333333 405.3333333333333 128 405.3333333333333M256 277.3333333333334C303.1466666666667 277.3333333333334 341.3333333333333 239.1466666666667 341.3333333333333 192S303.1466666666667 106.6666666666667 256 106.6666666666667S170.6666666666667 144.8533333333334 170.6666666666667 192S208.8533333333333 277.3333333333334 256 277.3333333333334M384 106.6666666666667C407.4666666666667 106.6666666666667 426.6666666666667 87.4666666666667 426.6666666666667 64S407.4666666666667 21.3333333333334 384 21.3333333333334S341.3333333333333 40.5333333333333 341.3333333333333 64S360.5333333333333 106.6666666666667 384 106.6666666666667z" />
+    <glyph glyph-name="google-maps"
+      unicode="&#xF5F5;"
+      horiz-adv-x="512" d=" M330.6666666666667 352C330.6666666666667 340.0533333333334 334.9333333333333 329.8133333333334 343.04 321.4933333333334C350.9333333333333 313.1733333333334 360.9599999999999 309.3333333333334 373.3333333333333 309.3333333333334C385.0666666666667 309.3333333333334 394.6666666666667 313.1733333333334 403.4133333333333 321.4933333333334C411.7333333333334 329.8133333333334 416 340.0533333333334 416 352C416 363.3066666666667 411.7333333333334 373.3333333333334 402.9866666666667 382.0800000000001C394.6666666666667 390.6133333333334 384 394.6666666666667 373.3333333333333 394.6666666666667C361.6 394.6666666666667 352 390.6133333333334 343.4666666666667 382.0800000000001C335.1466666666667 373.3333333333334 330.6666666666667 363.3066666666667 330.6666666666667 352M469.3333333333333 352C469.3333333333333 330.6666666666667 461.0133333333333 305.2800000000001 445.0133333333333 276.0533333333334C429.0133333333333 246.6133333333333 413.0133333333333 222.72 397.0133333333333 203.9466666666667L373.3333333333333 176C365.6533333333333 183.8933333333333 356.6933333333333 194.3466666666666 346.0266666666667 206.9333333333333C335.36 219.7333333333333 321.0666666666666 241.7066666666667 303.5733333333333 273.0666666666666C285.8666666666667 304.4266666666667 277.3333333333333 330.6666666666667 277.3333333333333 352C277.3333333333333 378.6666666666667 286.2933333333333 401.28 305.0666666666667 420.0533333333334C323.6266666666667 438.6133333333334 346.24 448 373.3333333333333 448C399.5733333333333 448 422.4 438.6133333333334 440.9600000000001 420.0533333333334C459.7333333333333 401.28 469.3333333333333 378.6666666666667 469.3333333333333 352M448 200.96V42.6666666666667C448 32 443.7333333333334 21.3333333333334 434.9866666666667 13.0133333333333C426.6666666666667 4.2666666666667 416 0 405.3333333333333 0H106.6666666666667C96 0 85.3333333333333 4.2666666666667 77.0133333333333 13.0133333333333C68.2666666666667 21.3333333333334 64 32 64 42.6666666666667V341.3333333333334C64 352 68.2666666666667 362.6666666666667 77.0133333333333 370.9866666666667C85.3333333333333 379.7333333333334 96 384 106.6666666666667 384H238.9333333333333C236.3733333333334 370.56 234.6666666666667 359.8933333333333 234.6666666666667 352C234.6666666666667 326.6133333333334 244.0533333333333 296.7466666666667 261.9733333333333 262.4000000000001C280.1066666666667 228.2666666666667 295.2533333333334 202.6666666666667 307.4133333333333 187.5200000000001C320 171.7333333333334 331.3066666666667 158.2933333333334 341.9733333333334 146.9866666666667L373.3333333333333 113.0666666666667L405.3333333333333 146.9866666666667C432.4266666666666 181.3333333333334 446.7200000000001 199.68 448 200.96M192 138.6666666666667V109.0133333333333H240C234.6666666666667 85.3333333333334 218.6666666666667 74.0266666666666 192 74.0266666666666C177.28 74.0266666666666 164.9066666666667 79.36 155.0933333333333 90.0266666666666C145.0666666666667 100.6933333333333 139.9466666666667 113.28 139.9466666666667 128S145.0666666666667 155.3066666666666 155.0933333333333 165.9733333333333C164.9066666666667 176.64 177.28 181.9733333333333 192 181.9733333333333C206.08 181.9733333333333 217.3866666666667 177.7066666666667 225.92 168.96L248.96 190.9333333333333C232.96 205.6533333333333 214.4 213.3333333333333 193.0666666666667 213.3333333333333H192C168.7466666666667 213.3333333333333 148.6933333333333 204.5866666666667 132.0533333333333 187.9466666666667C115.4133333333333 171.3066666666667 106.6666666666667 151.2533333333333 106.6666666666667 128S115.4133333333333 84.6933333333333 132.0533333333333 68.0533333333334C148.6933333333333 51.4133333333334 168.7466666666667 42.6666666666667 192 42.6666666666667C216.7466666666667 42.6666666666667 236.5866666666667 50.5600000000001 251.52 65.92C266.6666666666667 81.28 273.92 101.3333333333334 273.92 126.0800000000001C273.92 132.0533333333334 273.7066666666667 136.3200000000001 273.0666666666667 138.6666666666667H192z" />
+    <glyph glyph-name="google-nearby"
+      unicode="&#xF2B9;"
+      horiz-adv-x="512" d=" M455.6799999999999 224.8533333333333L288.8533333333333 391.68C270.72 409.8133333333334 241.28 409.8133333333334 223.1466666666667 391.68L56.32 224.8533333333333C38.1866666666666 206.72 38.1866666666666 177.28 56.32 159.1466666666667L223.1466666666667 -7.6799999999999C241.28 -25.8133333333333 270.72 -25.8133333333333 288.8533333333333 -7.6799999999999L455.6799999999999 159.1466666666667C473.8133333333333 177.28 473.8133333333333 206.72 455.6799999999999 224.8533333333334M256 42.6666666666667L106.6666666666667 192L256 341.3333333333334L405.3333333333333 192L256 42.6666666666667M352 192L256 96L160 192L256 288L352 192z" />
+    <glyph glyph-name="google-pages"
+      unicode="&#xF2BA;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H277.3333333333333V277.3333333333334L362.6666666666667 298.6666666666667L341.3333333333333 213.3333333333334H448V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M362.6666666666667 85.3333333333334L277.3333333333333 106.6666666666667V0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V170.6666666666667H341.3333333333333M170.6666666666667 170.6666666666667H64V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H234.6666666666667V106.6666666666667L149.3333333333333 85.3333333333334M64 341.3333333333334V213.3333333333334H170.6666666666667L149.3333333333333 298.6666666666667L234.6666666666667 277.3333333333334V384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334z" />
+    <glyph glyph-name="google-photos"
+      unicode="&#xF6DC;"
+      horiz-adv-x="512" d=" M213.3333333333333 170.6666666666667C225.0666666666667 170.6666666666667 234.6666666666667 166.8266666666667 243.4133333333334 158.5066666666667C251.7333333333334 150.1866666666667 256 139.9466666666667 256 128V-21.3333333333333C256 -24.96 254.08 -27.0933333333333 250.0266666666667 -27.0933333333333C248.7466666666667 -27.0933333333333 247.04 -26.0266666666666 245.3333333333333 -24.1066666666666L149.3333333333333 71.04V170.6666666666667H213.3333333333333M266.6666666666667 407.8933333333333L362.6666666666667 312.9600000000001V213.3333333333334H298.6666666666667C286.9333333333333 213.3333333333334 277.3333333333333 217.1733333333334 268.5866666666667 225.4933333333334C260.2666666666667 233.8133333333334 256 244.0533333333334 256 256V405.3333333333333C256 408.96 257.92 411.0933333333334 261.9733333333333 411.0933333333334C263.2533333333334 411.0933333333334 264.96 410.0266666666667 266.6666666666667 407.8933333333333M469.3333333333333 192C472.96 192 475.0933333333333 190.0800000000001 475.0933333333333 186.0266666666667C475.0933333333333 184.7466666666667 474.0266666666666 183.04 472.1066666666666 181.3333333333334L376.9600000000001 85.3333333333334H277.3333333333333V149.3333333333334C277.3333333333333 161.0666666666667 281.1733333333333 170.6666666666667 289.4933333333334 179.4133333333334C297.8133333333334 187.7333333333334 308.0533333333333 192 320 192H469.3333333333333M135.04 298.6666666666667H234.6666666666667V234.6666666666667C234.6666666666667 222.9333333333333 230.8266666666667 213.3333333333334 222.5066666666667 204.5866666666667C214.1866666666667 196.2666666666667 203.9466666666667 192 192 192H42.6666666666667C39.04 192 36.9066666666667 193.92 36.9066666666667 197.9733333333333C36.9066666666667 199.2533333333333 37.9733333333333 200.96 40.1066666666667 202.6666666666667L135.04 298.6666666666667z" />
+    <glyph glyph-name="google-physical-web"
+      unicode="&#xF2BB;"
+      horiz-adv-x="512" d=" M256 416C362.0266666666667 416 448 330.0266666666667 448 224C448 168.3200000000001 424.32 117.9733333333334 386.3466666666667 82.9866666666667L363.7333333333334 105.6C395.7333333333334 134.8266666666667 416 177.0666666666667 416 224C416 312.32 344.32 384 256 384C167.68 384 96 312.3200000000001 96 224C96 177.0666666666667 116.2666666666667 134.8266666666667 148.2666666666667 105.6L125.6533333333333 82.9866666666667C87.68 117.9733333333334 64 168.3200000000001 64 224C64 330.0266666666667 149.9733333333333 416 256 416M256 352C326.6133333333334 352 384 294.6133333333334 384 224C384 186.0266666666667 367.36 151.68 341.3333333333333 128L318.2933333333333 151.04C338.9866666666667 168.5333333333334 352 194.7733333333333 352 224C352 277.3333333333334 309.3333333333333 320 256 320S160 277.3333333333334 160 224C160 194.7733333333333 173.0133333333333 168.5333333333334 193.7066666666667 151.04L170.6666666666667 128C144.64 151.68 128 186.0266666666667 128 224C128 294.6133333333334 185.3866666666667 352 256 352M173.0133333333333 71.4666666666667L240.8533333333333 139.5200000000001C249.1733333333333 147.84 262.8266666666666 147.84 271.1466666666667 139.5200000000001L338.9866666666666 71.4666666666667C347.3066666666666 63.1466666666667 347.3066666666666 49.7066666666667 338.9866666666666 41.3866666666667L271.1466666666667 -26.4533333333333C262.8266666666666 -34.7733333333333 249.1733333333333 -34.7733333333333 240.8533333333333 -26.4533333333333L173.0133333333333 41.3866666666667C164.6933333333333 49.7066666666667 164.6933333333333 63.1466666666667 173.0133333333333 71.4666666666667z" />
+    <glyph glyph-name="google-play"
+      unicode="&#xF2BC;"
+      horiz-adv-x="512" d=" M64 10.6666666666667V373.3333333333334C64 385.92 71.2533333333333 397.0133333333333 81.92 402.1333333333334L292.0533333333333 192L81.92 -18.1333333333333C71.2533333333333 -12.8 64 -1.92 64 10.6666666666667M358.6133333333334 125.44L129.0666666666667 -7.2533333333333L310.1866666666666 173.8666666666667L358.6133333333333 125.4400000000001M430.08 217.3866666666667C437.3333333333333 211.6266666666667 442.6666666666667 202.6666666666667 442.6666666666667 192.0000000000001S437.9733333333334 172.8000000000001 430.5066666666667 166.8266666666667L381.6533333333333 138.6666666666668L328.32 192.0000000000001L381.6533333333333 245.3333333333334L430.08 217.3866666666667M129.0666666666667 391.2533333333334L358.6133333333333 258.5600000000001L310.1866666666666 210.1333333333334L129.0666666666666 391.2533333333334z" />
+    <glyph glyph-name="google-plus"
+      unicode="&#xF2BD;"
+      horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H448V256H405.3333333333333V213.3333333333334H362.6666666666667V170.6666666666667H405.3333333333333V128H448V170.6666666666667H490.6666666666666M170.6666666666667 213.3333333333334V162.1333333333333H256C251.7333333333334 140.8 230.4 98.1333333333334 170.6666666666667 98.1333333333334C119.4666666666667 98.1333333333334 78.9333333333333 140.8000000000001 78.9333333333333 192.0000000000001C78.9333333333333 243.2000000000001 119.4666666666667 285.8666666666668 170.6666666666667 285.8666666666668C200.5333333333333 285.8666666666668 219.7333333333334 273.0666666666667 230.4 262.4000000000001L270.9333333333334 300.8000000000001C245.3333333333333 326.4 211.2 341.3333333333334 170.6666666666667 341.3333333333334C87.4666666666667 341.3333333333334 21.3333333333333 275.2000000000001 21.3333333333333 192S87.4666666666667 42.6666666666667 170.6666666666667 42.6666666666667C256 42.6666666666667 313.6 102.4 313.6 187.7333333333334C313.6 198.4 313.6 204.8000000000001 311.4666666666667 213.3333333333334H170.6666666666667z" />
+    <glyph glyph-name="google-plus-box"
+      unicode="&#xF2BE;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M416 192H384V224H362.6666666666667V192H330.6666666666667V170.6666666666667H362.6666666666667V138.6666666666667H384V170.6666666666667H416V192M205.8666666666667 205.6533333333334V172.8000000000001H260.6933333333334C257.92 159.1466666666667 244.2666666666667 131.6266666666667 205.8666666666667 131.6266666666667C173.0133333333333 131.6266666666667 146.9866666666667 159.1466666666667 146.9866666666667 192.0000000000001S173.0133333333334 252.3733333333334 205.8666666666667 252.3733333333334C225.0666666666667 252.3733333333334 237.44 244.0533333333334 244.2666666666667 237.2266666666667L270.2933333333334 261.9733333333334C253.8666666666667 278.4000000000001 231.8933333333334 288 205.8666666666667 288C152.3200000000001 288 109.8666666666667 245.3333333333334 109.8666666666667 192S152.3200000000001 96 205.8666666666667 96C260.6933333333334 96 297.8133333333334 134.4 297.8133333333334 189.2266666666667C297.8133333333334 196.0533333333334 297.8133333333334 200.32 296.32 205.6533333333334H205.8666666666667z" />
+    <glyph glyph-name="google-spreadsheet"
+      unicode="&#xF9F6;"
+      horiz-adv-x="512" d=" M405.3333333333333 213.3333333333334V256H234.6666666666667V341.3333333333334H192V256H106.6666666666667V213.3333333333334H192V42.6666666666667H234.6666666666667V213.3333333333334H405.3333333333333M405.3333333333333 384C416 384 426.6666666666667 379.7333333333334 434.9866666666667 370.9866666666667C443.7333333333334 362.6666666666667 448 352 448 341.3333333333334V42.6666666666667C448 32 443.7333333333334 21.3333333333334 434.9866666666667 13.0133333333333C426.6666666666667 4.2666666666667 416 0 405.3333333333333 0H106.6666666666667C96 0 85.3333333333333 4.2666666666667 77.0133333333333 13.0133333333333C68.2666666666667 21.3333333333334 64 32 64 42.6666666666667V341.3333333333334C64 352 68.2666666666667 362.6666666666667 77.0133333333333 370.9866666666667C85.3333333333333 379.7333333333334 96 384 106.6666666666667 384H405.3333333333333z" />
+    <glyph glyph-name="google-translate"
+      unicode="&#xF2BF;"
+      horiz-adv-x="512" d=" M426.6666666666667 341.3333333333334H232.1066666666667L213.3333333333333 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V85.3333333333334C42.6666666666667 61.8666666666667 61.8666666666667 42.6666666666667 85.3333333333333 42.6666666666667H234.6666666666667L256 -21.3333333333333H426.6666666666667C450.1333333333334 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V298.6666666666667C469.3333333333333 322.1333333333334 450.1333333333334 341.3333333333334 426.6666666666667 341.3333333333334M152.96 136.7466666666667C104.7466666666667 136.7466666666667 65.7066666666667 175.7866666666667 65.7066666666667 224S104.7466666666667 311.2533333333334 152.96 311.2533333333334C175.1466666666667 311.2533333333334 195.4133333333333 303.36 211.4133333333333 288L213.3333333333333 287.1466666666667L186.6666666666667 261.9733333333334L185.3866666666667 263.04C179.2 268.8 168.7466666666667 275.6266666666667 152.96 275.6266666666667C125.0133333333333 275.6266666666667 102.1866666666667 252.3733333333334 102.1866666666667 224C102.1866666666667 195.6266666666667 125.0133333333333 172.3733333333333 152.96 172.3733333333333C182.1866666666667 172.3733333333333 194.7733333333333 190.9333333333333 198.1866666666667 203.52H151.04V236.5866666666667H235.3066666666667L235.52 234.6666666666667C236.3733333333334 230.6133333333334 236.5866666666667 226.56 236.5866666666667 222.08C236.5866666666667 171.9466666666667 202.6666666666667 136.7466666666667 152.96 136.7466666666667M281.6 173.2266666666667C288.6400000000001 160.0000000000001 297.3866666666667 148.0533333333334 306.9866666666667 136.96L295.4666666666667 125.6533333333334L281.6 173.2266666666668M298.0266666666667 189.4400000000001H277.3333333333333L270.2933333333333 211.6266666666667H355.4133333333333S348.16 183.6800000000001 322.1333333333334 153.1733333333334C311.04 166.4 303.1466666666667 179.4133333333334 298.0266666666667 189.4400000000001M448 21.3333333333334C448 9.6 438.4 0 426.6666666666667 0H277.3333333333333L320 42.6666666666667L302.72 101.76L322.3466666666667 121.3866666666667L379.52 64L394.6666666666667 79.5733333333334L337.28 136.7466666666667C356.48 158.72 371.4133333333333 184.7466666666667 378.24 211.6266666666667H405.3333333333333V233.8133333333334H327.68V256H305.4933333333334V233.8133333333334H263.68L238.5066666666667 320H426.6666666666667C438.4 320 448 310.4 448 298.6666666666667V21.3333333333334z" />
+    <glyph glyph-name="google-wallet"
+      unicode="&#xF2C0;"
+      horiz-adv-x="512" d=" M329.3866666666667 393.3866666666667H431.7866666666667S493.2266666666666 205.6533333333333 431.7866666666667 -10.6666666666666H330.6666666666667S322.56 89.6 283.3066666666666 174.9333333333333C283.3066666666666 174.9333333333333 266.6666666666667 104.96 247.4666666666667 64H143.36S122.88 161.28 53.3333333333333 245.3333333333334H155.3066666666667S174.08 226.1333333333334 189.44 200.5333333333334C189.44 200.5333333333334 202.6666666666667 253.4400000000001 202.6666666666667 320H305.4933333333334S339.6266666666667 270.5066666666667 354.9866666666667 239.7866666666667C354.9866666666667 239.7866666666667 349.8666666666667 314.88 329.3866666666667 393.3866666666667z" />
+    <glyph glyph-name="gpu"
+      unicode="&#xF8AD;"
+      horiz-adv-x="512" d=" M42.6666666666667 298.6666666666667V266.6666666666667H64V85.3333333333334H96V298.6666666666667H42.6666666666667M128 298.6666666666667V106.6666666666667H149.3333333333333V85.3333333333334H298.6666666666667V106.6666666666667H469.3333333333333V298.6666666666667H128M373.3333333333333 256C402.7733333333333 256 426.6666666666667 232.1066666666667 426.6666666666667 202.6666666666667S402.7733333333333 149.3333333333334 373.3333333333333 149.3333333333334S320 173.2266666666667 320 202.6666666666667S343.8933333333333 256 373.3333333333333 256z" />
+    <glyph glyph-name="gradient"
+      unicode="&#xF69F;"
+      horiz-adv-x="512" d=" M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667V256M192 213.3333333333334H234.6666666666667V170.6666666666667H192V213.3333333333334M277.3333333333333 213.3333333333334H320V170.6666666666667H277.3333333333333V213.3333333333334M320 256H362.6666666666667V213.3333333333334H320V256M149.3333333333333 256H192V213.3333333333334H149.3333333333333V256M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M192 64H149.3333333333333V106.6666666666667H192V64M277.3333333333333 64H234.6666666666667V106.6666666666667H277.3333333333333V64M362.6666666666667 64H320V106.6666666666667H362.6666666666667V64M405.3333333333333 213.3333333333334H362.6666666666667V170.6666666666667H405.3333333333333V128H362.6666666666667V170.6666666666667H320V128H277.3333333333333V170.6666666666667H234.6666666666667V128H192V170.6666666666667H149.3333333333333V128H106.6666666666667V170.6666666666667H149.3333333333333V213.3333333333334H106.6666666666667V341.3333333333334H405.3333333333333V213.3333333333334z" />
+    <glyph glyph-name="graphql"
+      unicode="&#xF876;"
+      horiz-adv-x="512" d=" M256 333.44L246.6133333333334 334.7200000000001L128 130.1333333333333C133.12 125.6533333333333 136.5333333333333 119.8933333333333 138.0266666666667 113.4933333333334H373.9733333333334C375.4666666666667 119.8933333333334 378.88 125.6533333333334 384 130.1333333333333L265.3866666666667 334.7200000000001L256 333.44M140.8 95.36L232.1066666666667 41.3866666666667C238.2933333333333 47.1466666666667 246.8266666666667 50.5599999999999 256 50.5599999999999C265.1733333333333 50.5599999999999 273.7066666666667 47.1466666666667 279.8933333333333 41.3866666666667L371.2000000000001 95.36H140.8M256 -21.3333333333333C236.16 -21.3333333333333 220.16 -5.3333333333333 220.16 14.5066666666667L222.08 26.4533333333333L130.3466666666667 80.8533333333334C123.7333333333334 73.1733333333334 114.1333333333334 68.48 103.2533333333333 68.48C83.4133333333333 68.48 67.4133333333333 84.48 67.4133333333333 104.3200000000001C67.4133333333333 121.1733333333334 78.72 135.2533333333333 94.2933333333333 139.3066666666667V248.32C76.5866666666667 250.6666666666667 62.9333333333333 265.8133333333334 62.9333333333333 284.1600000000001C62.9333333333333 304 78.9333333333333 320 98.7733333333333 320C110.5066666666667 320 120.7466666666667 314.4533333333334 127.36 305.92L221.44 359.8933333333333L220.16 369.4933333333334C220.16 389.3333333333333 236.16 405.3333333333333 256 405.3333333333333C275.8399999999999 405.3333333333333 291.8399999999999 389.3333333333333 291.8399999999999 369.4933333333334L290.56 359.8933333333333L384.64 305.92C391.2533333333332 314.4533333333334 401.4933333333333 320 413.2266666666666 320C433.0666666666666 320 449.0666666666666 304 449.0666666666666 284.1600000000001C449.0666666666666 265.8133333333334 435.4133333333333 250.6666666666667 417.7066666666666 248.32V139.3066666666667C433.28 135.2533333333334 444.5866666666667 121.1733333333334 444.5866666666667 104.3200000000001C444.5866666666667 84.48 428.5866666666667 68.48 408.7466666666667 68.48C397.8666666666666 68.48 388.2666666666667 73.1733333333334 381.6533333333333 80.8533333333334L289.92 26.4533333333333L291.84 14.5066666666667C291.84 -5.3333333333333 275.84 -21.3333333333333 256 -21.3333333333333M230.4 344.32L134.4 289.28L134.8266666666667 284.16C134.8266666666667 269.0133333333333 125.44 256 112.2133333333333 250.6666666666667L112.8533333333333 138.6666666666667L230.4 344.3200000000001M281.6 344.3200000000001L399.1466666666667 138.6666666666667L399.7866666666667 250.6666666666667C386.56 256 377.1733333333334 269.0133333333333 377.1733333333334 284.1600000000001L377.6 289.2800000000001L281.6 344.3200000000001z" />
+    <glyph glyph-name="grave-stone"
+      unicode="&#xFB7E;"
+      horiz-adv-x="512" d=" M213.3333333333333 405.3333333333333H298.6666666666667C369.28 405.3333333333333 405.3333333333333 347.9466666666667 405.3333333333333 277.3333333333334V49.92C360.1066666666667 71.8933333333334 321.4933333333334 85.3333333333334 256 85.3333333333334S151.8933333333333 71.8933333333334 106.6666666666667 49.92V277.3333333333334C106.6666666666667 347.9466666666667 142.72 405.3333333333333 213.3333333333333 405.3333333333333M170.6666666666667 277.3333333333334V245.3333333333334H341.3333333333333V277.3333333333334H170.6666666666667M192 192V160H320V192H192M64 -21.3333333333333V-6.6133333333333C120.7466666666667 29.4400000000001 282.24 110.08 448 -5.3333333333333V-21.3333333333333H64z" />
+    <glyph glyph-name="grease-pencil"
+      unicode="&#xF648;"
+      horiz-adv-x="512" d=" M397.2266666666667 416C386.3466666666667 416 375.4666666666667 411.9466666666667 367.1466666666667 403.4133333333334L229.3333333333333 265.6L318.9333333333333 176.2133333333333L456.7466666666667 313.8133333333333C473.6 330.6666666666667 473.6 357.5466666666666 456.7466666666667 374.1866666666666L427.52 403.4133333333333C419.2 411.9466666666666 408.32 416 397.2266666666666 416M209.0666666666666 245.3333333333333L68.9066666666666 105.1733333333334L83.8399999999999 90.24C72.5333333333333 80.2133333333334 61.6533333333333 68.6933333333333 50.7733333333333 57.8133333333334C34.1333333333333 40.96 34.1333333333333 14.08 50.7733333333333 -2.5599999999999C67.4133333333333 -19.1999999999999 94.2933333333333 -19.1999999999999 111.1466666666666 -2.5599999999999C122.0266666666666 7.8933333333334 133.3333333333333 19.6266666666667 143.5733333333333 30.2933333333334L158.5066666666666 15.5733333333334L298.6666666666667 155.7333333333334" />
+    <glyph glyph-name="greater-than"
+      unicode="&#xF96C;"
+      horiz-adv-x="512" d=" M117.3333333333333 359.68L96 322.9866666666667L320 192L96 61.0133333333333L117.3333333333333 24.3200000000001L405.3333333333333 192L117.3333333333333 359.68z" />
+    <glyph glyph-name="greater-than-or-equal"
+      unicode="&#xF96D;"
+      horiz-adv-x="512" d=" M138.6666666666667 399.5733333333333L426.6666666666667 231.68L138.6666666666667 64L117.3333333333333 100.9066666666667L341.9733333333334 231.68L117.3333333333333 362.6666666666667L138.6666666666667 399.5733333333333M426.6666666666667 21.3333333333334V-21.3333333333333H106.6666666666667V21.3333333333334H426.6666666666667z" />
+    <glyph glyph-name="grid"
+      unicode="&#xF2C1;"
+      horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667V277.3333333333334H298.6666666666667V362.6666666666667H213.3333333333333M341.3333333333333 362.6666666666667V277.3333333333334H426.6666666666667V362.6666666666667H341.3333333333333M341.3333333333333 234.6666666666667V149.3333333333334H426.6666666666667V234.6666666666667H341.3333333333333M341.3333333333333 106.6666666666667V21.3333333333334H426.6666666666667V106.6666666666667H341.3333333333333M298.6666666666667 21.3333333333334V106.6666666666667H213.3333333333333V21.3333333333334H298.6666666666667M170.6666666666667 21.3333333333334V106.6666666666667H85.3333333333333V21.3333333333334H170.6666666666667M170.6666666666667 149.3333333333334V234.6666666666667H85.3333333333333V149.3333333333334H170.6666666666667M170.6666666666667 277.3333333333334V362.6666666666667H85.3333333333333V277.3333333333334H170.6666666666667M213.3333333333333 149.3333333333334H298.6666666666667V234.6666666666667H213.3333333333333V149.3333333333334M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H85.3333333333333C62.2933333333333 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="grid-large"
+      unicode="&#xF757;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H85.3333333333333C62.2933333333333 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M85.3333333333333 362.6666666666667V213.3333333333334H234.6666666666667V362.6666666666667H85.3333333333333M85.3333333333333 21.3333333333334H234.6666666666667V170.6666666666667H85.3333333333333V21.3333333333334M426.6666666666667 21.3333333333334V170.6666666666667H277.3333333333333V21.3333333333334H426.6666666666667M426.6666666666667 362.6666666666667H277.3333333333333V213.3333333333334H426.6666666666667V362.6666666666667z" />
+    <glyph glyph-name="grid-off"
+      unicode="&#xF2C2;"
+      horiz-adv-x="512" d=" M0 388.9066666666667L27.3066666666667 416L480 -36.6933333333333L452.9066666666666 -64L410.24 -21.3333333333333H85.3333333333333C62.2933333333333 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V346.24L0 388.9066666666667M213.3333333333333 362.6666666666667V284.1600000000001L170.6666666666667 326.8266666666667V362.6666666666667H134.8266666666667L92.16 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V27.7333333333334L426.6666666666667 70.4V106.6666666666667H390.8266666666667L348.16 149.3333333333334H426.6666666666667V234.6666666666667H341.3333333333333V156.16L298.6666666666667 198.8266666666667V234.6666666666667H262.8266666666667L220.16 277.3333333333334H298.6666666666667V362.6666666666667H213.3333333333333M341.3333333333333 362.6666666666667V277.3333333333334H426.6666666666667V362.6666666666667H341.3333333333333M341.3333333333333 21.3333333333334H367.5733333333333L341.3333333333333 47.5733333333334V21.3333333333334M85.3333333333333 277.3333333333334H111.5733333333333L85.3333333333333 303.5733333333334V277.3333333333334M213.3333333333333 149.3333333333334H239.5733333333333L213.3333333333333 175.5733333333334V149.3333333333334M298.6666666666667 21.3333333333334V90.24L282.24 106.6666666666667H213.3333333333333V21.3333333333334H298.6666666666667M170.6666666666667 21.3333333333334V106.6666666666667H85.3333333333333V21.3333333333334H170.6666666666667M170.6666666666667 149.3333333333334V218.24L154.24 234.6666666666667H85.3333333333333V149.3333333333334H170.6666666666667z" />
+    <glyph glyph-name="group"
+      unicode="&#xF2C3;"
+      horiz-adv-x="512" d=" M21.3333333333333 426.6666666666667V341.3333333333334H42.6666666666667V42.6666666666667H21.3333333333333V-42.6666666666666H106.6666666666667V-21.3333333333333H405.3333333333333V-42.6666666666666H490.6666666666666V42.6666666666667H469.3333333333333V341.3333333333334H490.6666666666666V426.6666666666667H405.3333333333333V405.3333333333333H106.6666666666667V426.6666666666667M106.6666666666667 362.6666666666667H405.3333333333333V341.3333333333334H426.6666666666667V42.6666666666667H405.3333333333333V21.3333333333334H106.6666666666667V42.6666666666667H85.3333333333333V341.3333333333334H106.6666666666667M128 320V149.3333333333334H192V64H384V256H298.6666666666667V320M170.6666666666667 277.3333333333334H256V192H170.6666666666667M298.6666666666667 213.3333333333334H341.3333333333333V106.6666666666667H234.6666666666667V149.3333333333334H298.6666666666667" />
+    <glyph glyph-name="guitar-acoustic"
+      unicode="&#xF770;"
+      horiz-adv-x="512" d=" M417.92 384H469.3333333333333V341.3333333333334H435.4133333333333L344.9600000000001 250.88C337.0666666666667 262.8266666666667 326.8266666666667 273.0666666666667 314.88 280.9600000000001L417.92 384M256 277.3333333333334C303.1466666666667 277.3333333333334 341.3333333333333 239.1466666666667 341.3333333333333 192C341.3333333333333 153.1733333333334 315.0933333333333 119.04 277.3333333333333 109.44V106.6666666666667C277.3333333333333 47.7866666666668 229.5466666666667 0 170.6666666666667 0S64 47.7866666666668 64 106.6666666666667S111.7866666666667 213.3333333333334 170.6666666666667 213.3333333333334H173.44C183.04 250.88 216.96 277.3333333333334 256 277.3333333333334M256 224C238.2933333333333 224 224 209.7066666666667 224 192S238.2933333333333 160 256 160S288 174.2933333333334 288 192S273.7066666666667 224 256 224M148.0533333333334 144.2133333333334L132.9066666666667 129.28L193.28 68.9066666666667L208.4266666666667 84.0533333333334L148.0533333333333 144.2133333333334z" />
+    <glyph glyph-name="guitar-electric"
+      unicode="&#xF2C4;"
+      horiz-adv-x="512" d=" M417.92 384H469.3333333333333V341.3333333333334H435.4133333333333L322.56 228.48L292.48 258.1333333333334L417.92 384M256 256C261.5466666666666 256 266.6666666666667 253.8666666666667 271.1466666666667 249.6L313.8133333333334 206.9333333333333C317.6533333333333 202.6666666666667 320 197.76 320 192L317.8666666666667 183.4666666666667L232.5333333333334 12.8000000000001C228.48 5.3333333333334 221.0133333333333 1.4933333333333 213.3333333333333 1.4933333333333C205.8666666666667 1.4933333333333 198.1866666666667 5.3333333333334 194.3466666666666 12.8000000000001L154.6666666666666 91.7333333333334L75.7333333333333 130.1333333333334C67.84 134.4 64 141.8666666666667 64 149.3333333333334S67.84 164.2666666666667 75.7333333333333 168.5333333333334L246.4 253.8666666666668C249.3866666666667 256.0000000000001 252.5866666666666 256.0000000000001 256 256.0000000000001M199.4666666666666 195.84L184.5333333333333 181.3333333333334L245.3333333333333 120.5333333333334L259.8399999999999 135.4666666666667L199.4666666666666 195.84M169.3866666666666 165.7600000000001L154.24 150.6133333333334L214.6133333333333 90.2400000000001L229.76 105.3866666666668L169.3866666666667 165.7600000000001z" />
+    <glyph glyph-name="guitar-pick"
+      unicode="&#xF2C5;"
+      horiz-adv-x="512" d=" M405.3333333333333 360.5333333333334C386.1333333333334 377.6 362.6666666666667 388.2666666666667 337.0666666666667 394.6666666666667C330.6666666666667 396.8 290.1333333333334 405.3333333333334 260.2666666666667 405.3333333333334H256H251.7333333333334C221.8666666666667 405.3333333333334 179.2 396.8 172.8 394.6666666666667C149.3333333333334 388.2666666666667 125.8666666666667 377.6 106.6666666666667 360.5333333333334C64 322.1333333333334 64 262.4000000000001 85.3333333333333 213.3333333333334C106.6666666666667 160 130.1333333333333 113.0666666666667 162.1333333333333 66.1333333333334C187.7333333333334 29.8666666666667 215.4666666666667 -21.3333333333333 256 -21.3333333333333C296.5333333333333 -21.3333333333333 324.2666666666667 29.8666666666667 352 66.1333333333334C384 110.9333333333334 407.4666666666667 160.0000000000001 428.8 213.3333333333334C448 262.4000000000001 448 322.1333333333334 405.3333333333333 360.5333333333334z" />
+    <glyph glyph-name="guitar-pick-outline"
+      unicode="&#xF2C6;"
+      horiz-adv-x="512" d=" M405.3333333333333 360.5333333333334C386.1333333333334 377.6 362.6666666666667 388.2666666666667 337.0666666666667 394.6666666666667C330.6666666666667 396.8 290.1333333333334 405.3333333333334 260.2666666666667 405.3333333333334H256H251.7333333333334C221.8666666666667 405.3333333333334 179.2 396.8 172.8 394.6666666666667C149.3333333333334 388.2666666666667 125.8666666666667 377.6 106.6666666666667 360.5333333333334C64 322.1333333333334 64 262.4000000000001 85.3333333333333 213.3333333333334C106.6666666666667 160 130.1333333333333 113.0666666666667 162.1333333333333 66.1333333333334C187.7333333333334 29.8666666666667 215.4666666666667 -21.3333333333333 256 -21.3333333333333C296.5333333333333 -21.3333333333333 324.2666666666667 29.8666666666667 352 66.1333333333334C384 110.9333333333334 407.4666666666667 160.0000000000001 428.8 213.3333333333334C448 262.4000000000001 448 322.1333333333334 405.3333333333333 360.5333333333334M388.2666666666667 230.4000000000001C364.8 172.8000000000001 343.4666666666666 130.1333333333334 315.7333333333333 91.7333333333335C311.4666666666667 87.4666666666668 309.3333333333333 81.0666666666668 305.0666666666666 76.8000000000001C294.4 59.7333333333335 268.8 21.3333333333334 256 21.3333333333334C241.0666666666667 21.3333333333334 217.6 57.6000000000001 204.8 76.8000000000001C200.5333333333333 81.0666666666668 198.4 87.4666666666668 194.1333333333333 91.7333333333335C168.5333333333333 130.1333333333335 145.0666666666667 172.8000000000001 121.6 230.4000000000001C117.3333333333333 245.3333333333335 100.2666666666667 298.6666666666668 134.4 330.6666666666668C145.0666666666666 341.3333333333335 162.1333333333333 347.7333333333335 183.4666666666666 354.1333333333335C192 354.1333333333335 228.2666666666666 362.6666666666668 251.7333333333333 362.6666666666668H258.1333333333333C281.5999999999999 362.6666666666668 317.8666666666666 356.2666666666668 326.3999999999999 354.1333333333335C347.7333333333333 347.7333333333335 364.8 341.3333333333335 375.4666666666666 330.6666666666668C411.7333333333333 298.6666666666668 394.6666666666666 245.3333333333335 388.2666666666667 230.4000000000001z" />
+    <glyph glyph-name="guy-fawkes-mask"
+      unicode="&#xF824;"
+      horiz-adv-x="512" d=" M448 170.6666666666667C448 64.64 362.0266666666667 -21.3333333333333 256 -21.3333333333333S64 64.64 64 170.6666666666667L64.64 353.4933333333334C121.1733333333333 386.56 186.88 405.3333333333333 257.0666666666667 405.3333333333333C326.4 405.3333333333333 391.68 386.7733333333333 448 354.56V170.6666666666667M277.3333333333333 22.8266666666667C349.6533333333333 33.28 405.3333333333333 96 405.3333333333333 170.6666666666667V328.7466666666667C360.5333333333333 350.5066666666667 310.1866666666666 362.6666666666667 257.0666666666667 362.6666666666667C202.6666666666667 362.6666666666667 151.04 349.8666666666667 105.3866666666667 327.2533333333334L106.6666666666667 170.6666666666667C106.6666666666667 96 162.7733333333333 33.28 234.6666666666667 22.8266666666667V64H277.3333333333333V22.8266666666667M234.6666666666667 106.6666666666667H170.6666666666667L128 170.6666666666667L192 149.3333333333334H213.3333333333333L234.6666666666667 170.6666666666667H277.3333333333333L298.6666666666667 149.3333333333334H320L384 170.6666666666667L341.3333333333333 106.6666666666667H277.3333333333333L256 128L234.6666666666667 106.6666666666667M128 255.36C141.6533333333333 268.8000000000001 160 276.2666666666667 181.3333333333333 276.2666666666667C201.6 276.2666666666667 220.5866666666667 268.8000000000001 234.6666666666667 255.36C220.5866666666667 242.1333333333334 201.6 234.6666666666667 181.3333333333333 234.6666666666667C160 234.6666666666667 141.6533333333333 242.1333333333334 128 255.36M277.3333333333333 255.36C290.9866666666667 268.8000000000001 309.3333333333333 276.2666666666667 330.6666666666667 276.2666666666667C350.9333333333333 276.2666666666667 369.92 268.8000000000001 384 255.36C369.92 242.1333333333334 350.9333333333333 234.6666666666667 330.6666666666667 234.6666666666667C309.3333333333333 234.6666666666667 290.9866666666667 242.1333333333334 277.3333333333333 255.36z" />
+    <glyph glyph-name="hackernews"
+      unicode="&#xF624;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H469.3333333333333V-21.3333333333333H42.6666666666667V405.3333333333333M240 74.6666666666667H272V169.3866666666667L341.3333333333333 298.6666666666667H309.3333333333333L256 199.2533333333333L202.6666666666667 298.6666666666667H170.6666666666667L240 169.3866666666667V74.6666666666667z" />
+    <glyph glyph-name="hail"
+      unicode="&#xFAC0;"
+      horiz-adv-x="512" d=" M85.3333333333333 106.6666666666667H149.3333333333333V-21.3333333333333H85.3333333333333V106.6666666666667M405.3333333333333 397.0133333333333C403.6266666666667 365.6533333333333 395.7333333333334 338.56 381.0133333333333 315.52C366.2933333333334 292.48 346.0266666666667 277.3333333333334 320 269.0133333333333V-21.3333333333333H277.3333333333333V106.6666666666667H234.6666666666667V-21.3333333333333H192V232.96C186.0266666666667 231.04 181.3333333333333 228.6933333333334 178.9866666666667 225.92C158.9333333333333 209.92 149.3333333333333 187.9466666666667 149.3333333333333 160V149.3333333333334H106.6666666666667V160C106.6666666666667 202.0266666666667 122.0266666666667 235.9466666666667 152.1066666666667 261.9733333333334C181.9733333333333 286.7200000000001 216.7466666666667 298.6666666666667 256 298.6666666666667C286.08 298.6666666666667 310.6133333333334 306.3466666666667 330.0266666666667 321.0666666666667C352 338.9866666666667 362.6666666666667 363.7333333333334 362.6666666666667 394.6666666666667V405.3333333333333H405.3333333333333V397.0133333333333M256 405.3333333333333C279.4666666666667 405.3333333333333 298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667S279.4666666666667 320 256 320S213.3333333333333 339.2000000000001 213.3333333333333 362.6666666666667S232.5333333333334 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="halloween"
+      unicode="&#xFB7F;"
+      horiz-adv-x="512" d=" M138.6666666666667 320C159.36 320 178.56 309.3333333333334 194.3466666666666 290.56C206.08 303.1466666666667 219.9466666666666 312.3200000000001 234.6666666666667 316.8V362.6666666666667C234.6666666666667 386.1333333333334 253.8666666666667 405.3333333333333 277.3333333333333 405.3333333333333H320V362.6666666666667H277.3333333333333V316.8C292.0533333333333 312.32 305.92 303.1466666666667 317.6533333333333 290.56C333.44 309.3333333333334 352.64 320 373.3333333333333 320C426.6666666666667 320 469.3333333333333 248.32 469.3333333333333 160C469.3333333333333 71.68 426.6666666666667 0 373.3333333333333 0C352.64 0 333.44 10.6666666666667 317.6533333333333 29.44C300.3733333333334 10.6666666666667 279.04 0 256 0S211.6266666666667 10.6666666666667 194.3466666666666 29.44C178.56 10.6666666666667 159.36 0 138.6666666666667 0C85.3333333333333 0 42.6666666666667 71.68 42.6666666666667 160C42.6666666666667 248.32 85.3333333333333 320 138.6666666666667 320M192 234.6666666666667L165.3333333333333 186.6666666666667H218.6666666666667L192 234.6666666666667M320 234.6666666666667L293.3333333333333 186.6666666666667H346.6666666666667L320 234.6666666666667M170.6666666666667 85.3333333333334H213.3333333333333L234.6666666666667 106.6666666666667L256 85.3333333333334H298.6666666666667L320 106.6666666666667L341.3333333333333 85.3333333333334L373.3333333333333 149.3333333333334L296.96 136.1066666666667L277.3333333333333 106.6666666666667L256 128H213.3333333333333L192 106.6666666666667L170.6666666666667 128L128 149.3333333333334L170.6666666666667 85.3333333333334z" />
+    <glyph glyph-name="hamburger"
+      unicode="&#xF684;"
+      horiz-adv-x="512" d=" M42.6666666666667 106.6666666666667H469.3333333333333V64C469.3333333333333 40.3200000000001 450.3466666666667 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.6533333333333 21.3333333333334 42.6666666666667 40.3200000000001 42.6666666666667 64V106.6666666666667M128 362.6666666666667H384C431.36 362.6666666666667 469.3333333333333 324.6933333333334 469.3333333333333 277.3333333333334V234.6666666666667H42.6666666666667V277.3333333333334C42.6666666666667 324.6933333333334 80.64 362.6666666666667 128 362.6666666666667M85.3333333333333 213.3333333333334H320L362.6666666666667 170.6666666666667L405.3333333333333 213.3333333333334H426.6666666666667C450.3466666666667 213.3333333333334 469.3333333333333 194.3466666666667 469.3333333333333 170.6666666666667C469.3333333333333 146.9866666666667 450.3466666666667 128 426.6666666666667 128H85.3333333333333C61.6533333333333 128 42.6666666666667 146.9866666666667 42.6666666666667 170.6666666666667C42.6666666666667 194.3466666666667 61.6533333333333 213.3333333333334 85.3333333333333 213.3333333333334z" />
+    <glyph glyph-name="hammer"
+      unicode="&#xF8E9;"
+      horiz-adv-x="512" d=" M341.3333333333333 341.3333333333334L405.3333333333333 277.3333333333334L394.6666666666667 266.6666666666667C416 245.3333333333334 426.6666666666667 234.6666666666667 437.3333333333333 245.3333333333334L469.3333333333333 213.3333333333334C469.3333333333333 192 437.3333333333333 160 416 160L384 192C394.6666666666667 202.6666666666667 384 213.3333333333334 362.6666666666667 234.6666666666667L341.3333333333333 213.3333333333334L277.3333333333333 277.3333333333334C309.3333333333333 320 277.3333333333333 362.6666666666667 192 341.3333333333334C213.3333333333333 362.6666666666667 234.6666666666667 384 256 384C266.6666666666667 384 298.6666666666667 384 341.3333333333333 341.3333333333334M42.6666666666667 21.3333333333334L85.3333333333333 -21.3333333333333L298.6666666666667 192L256 234.6666666666667L42.6666666666667 21.3333333333334z" />
+    <glyph glyph-name="hand"
+      unicode="&#xFA4E;"
+      horiz-adv-x="512" d=" M140.3733333333333 42.6666666666667H311.04V-21.3333333333333H140.3733333333333V42.6666666666667M421.12 200.5333333333334C417.0666666666667 204.8 411.5200000000001 207.36 405.3333333333334 207.36L400.6400000000001 206.72L332.3733333333335 170.6666666666668V195.6266666666667L343.2533333333335 386.1333333333334C343.8933333333335 397.8666666666667 334.9333333333335 408.1066666666667 323.2000000000002 408.7466666666667C311.4666666666668 409.3866666666667 301.2266666666668 400.4266666666667 300.5866666666668 388.6933333333334L294.8266666666668 288.6400000000001H289.7066666666668L267.5200000000001 286.2933333333334V405.3333333333333C267.5200000000001 417.0666666666667 257.9200000000002 426.6666666666667 246.1866666666668 426.6666666666667C234.6666666666668 426.6666666666667 224.8533333333335 417.0666666666667 224.8533333333335 405.3333333333333V268.5866666666667L207.3600000000001 260.6933333333334L192.6400000000001 377.1733333333334C191.1466666666668 388.9066666666667 180.4800000000001 397.2266666666667 168.7466666666668 395.7333333333334C157.0133333333335 394.6666666666667 148.6933333333335 384 150.1866666666668 371.8400000000001L166.6133333333335 242.5600000000001L158.5066666666668 238.9333333333334C155.7333333333335 237.8666666666667 153.1733333333335 236.1600000000001 150.8266666666668 234.6666666666667L127.3600000000001 317.6533333333334C123.9466666666668 329.8133333333334 112.0000000000001 337.0666666666667 100.4800000000001 334.0800000000001C89.1733333333335 330.6666666666668 82.7733333333335 318.2933333333334 86.1866666666668 306.1333333333334L141.0133333333335 111.5733333333334C141.0133333333335 110.9333333333334 141.4400000000001 110.08 141.6533333333335 109.4400000000001L142.2933333333335 106.6666666666667H142.5066666666668C147.2000000000001 94.5066666666668 159.3600000000001 85.3333333333334 172.3733333333335 85.3333333333334H311.0400000000002C319.3600000000002 85.3333333333334 326.8266666666668 88.7466666666667 332.3733333333335 94.5066666666667L437.3333333333335 184.1066666666667L421.1200000000001 200.5333333333333z" />
+    <glyph glyph-name="hand-okay"
+      unicode="&#xFA4F;"
+      horiz-adv-x="512" d=" M283.7333333333334 37.12L404.48 157.6533333333333L449.7066666666667 112.4266666666667L328.9600000000001 -8.1066666666667L283.7333333333334 37.12M352 210.56L285.8666666666667 276.2666666666667C283.0933333333333 279.04 280.1066666666667 280.96 277.3333333333333 282.4533333333333L253.44 373.9733333333334C250.4533333333333 385.4933333333334 238.9333333333333 392.32 227.4133333333333 389.3333333333333C216.1066666666666 386.56 209.28 374.8266666666667 212.0533333333333 363.52L234.6666666666667 276.6933333333334L184.96 379.9466666666667C180.0533333333333 390.6133333333334 167.2533333333333 394.6666666666667 156.5866666666667 390.1866666666667C145.92 385.0666666666667 141.44 372.2666666666667 146.56 361.6L182.6133333333334 286.0800000000001L110.72 357.3333333333334C102.4 365.6533333333333 88.7466666666667 365.6533333333333 80.4266666666667 357.3333333333334C72.1066666666667 348.8 72.32 335.36 80.64 327.04L160 248.1066666666667L145.0666666666667 242.3466666666667L122.0266666666667 233.1733333333334L81.28 205.0133333333333S64 182.6133333333334 62.5066666666667 173.0133333333333C60.8 163.4133333333334 79.36 115.2 79.36 115.2H79.5733333333333C82.9866666666667 107.9466666666667 90.24 102.8266666666667 98.7733333333333 102.8266666666667C110.5066666666667 102.8266666666667 120.1066666666667 112.4266666666667 120.1066666666667 124.16C120.1066666666667 126.2933333333334 119.4666666666667 128 118.8266666666667 129.92L119.2533333333333 130.1333333333333L106.6666666666667 167.04L132.9066666666667 187.9466666666667C142.9333333333333 187.5200000000001 164.48 185.8133333333334 174.9333333333333 185.1733333333334C233.1733333333334 132.9066666666667 178.1333333333334 112.4266666666667 178.1333333333334 112.4266666666667L104.32 89.8133333333334L100.6933333333334 86.8266666666667C96 82.5600000000001 94.08 76.8000000000001 94.2933333333334 70.8266666666667L94.72 48L231.8933333333334 58.6666666666667C240.0000000000001 58.4533333333333 247.68 61.44 253.6533333333334 67.2L352 165.3333333333333C363.3066666666667 176.8533333333334 363.7333333333334 198.4 352 210.56z" />
+    <glyph glyph-name="hand-peace"
+      unicode="&#xFA50;"
+      horiz-adv-x="512" d=" M149.3333333333333 42.6666666666667H320V-21.3333333333333H149.3333333333333V42.6666666666667M344.5333333333333 192L276.6933333333333 227.4133333333334C273.4933333333333 227.4133333333334 270.72 226.1333333333334 268.8 224L262.4 217.3866666666667L274.9866666666666 165.76L254.08 160.64L228.6933333333333 266.6666666666667L197.3333333333333 252.1600000000001L219.52 160.6400000000001L198.8266666666666 155.7333333333334L177.4933333333333 243.4133333333334L167.4666666666667 238.9333333333334C156.8 234.6666666666667 149.3333333333333 223.36 149.3333333333333 210.3466666666667V117.3333333333334C149.3333333333333 100.2666666666667 164.9066666666667 85.3333333333334 181.3333333333333 85.3333333333334H320C328.32 85.3333333333334 335.7866666666667 88.7466666666667 341.3333333333333 94.5066666666667L352 103.2533333333333S362.6666666666667 111.36 362.6666666666667 120.3200000000001V155.7333333333334S362.6666666666667 180.0533333333334 344.5333333333333 192M361.3866666666666 426.6666666666667C349.8666666666666 428.5866666666667 338.56 421.3333333333333 336.2133333333333 409.6L313.3866666666666 277.9733333333334C308.6933333333333 278.6133333333334 306.7733333333333 280.3200000000001 300.3733333333333 280.9600000000001L291.2 279.8933333333333L264.7466666666666 409.6C262.4 421.12 251.3066666666666 428.5866666666667 239.7866666666667 426.6666666666667C228.0533333333333 423.8933333333333 220.5866666666666 412.5866666666667 222.9333333333333 401.0666666666667L248.5333333333333 274.9866666666667L256 241.7066666666667C261.9733333333333 245.9733333333334 269.0133333333333 248.7466666666667 276.6933333333333 248.7466666666667H283.9466666666666L347.9466666666666 214.4L378.0266666666667 401.0666666666667C380.3733333333333 412.5866666666667 373.3333333333333 423.8933333333334 361.3866666666666 426.6666666666667z" />
+    <glyph glyph-name="hand-peace-variant"
+      unicode="&#xFA51;"
+      horiz-adv-x="512" d=" M149.3333333333333 42.6666666666667H320V-21.3333333333333H149.3333333333333V42.6666666666667M361.3866666666666 426.6666666666667C349.8666666666666 428.5866666666667 338.56 421.3333333333333 336.2133333333333 409.6L314.6666666666667 286.5066666666667C309.9733333333333 287.1466666666667 304.8533333333333 288 298.6666666666667 288.64L289.4933333333333 288L264.7466666666666 409.6C262.6133333333333 421.12 251.3066666666666 428.5866666666667 239.7866666666667 426.6666666666667C228.2666666666667 423.8933333333333 220.8 412.5866666666667 222.9333333333333 401.0666666666667L248.5333333333333 274.9866666666667L167.4666666666667 238.9333333333334C156.8 234.6666666666667 149.3333333333333 223.36 149.3333333333333 210.3466666666667V117.3333333333334C149.3333333333333 100.2666666666667 164.9066666666667 85.3333333333334 181.3333333333333 85.3333333333334H320C328.32 85.3333333333334 335.7866666666667 88.7466666666667 341.3333333333333 94.5066666666667L352 103.2533333333333S362.6666666666667 111.36 362.6666666666667 120.3200000000001V170.6666666666667S362.6666666666667 194.9866666666667 344.1066666666667 206.9333333333333L377.8133333333334 401.0666666666667C380.3733333333334 412.5866666666667 373.3333333333333 423.8933333333333 361.3866666666667 426.6666666666667z" />
+    <glyph glyph-name="hand-pointing-down"
+      unicode="&#xFA52;"
+      horiz-adv-x="512" d=" M211.2 0V213.3333333333334L142.9333333333333 177.28L138.6666666666667 176.6400000000001C132.0533333333334 176.6400000000001 126.5066666666667 179.2000000000001 122.4533333333333 183.4666666666667L106.6666666666667 199.8933333333333L211.2 289.4933333333334C216.7466666666667 295.2533333333334 224 298.6666666666667 232.5333333333334 298.6666666666667H371.2C387.6266666666666 298.6666666666667 403.2 283.7333333333334 403.2 266.6666666666667V173.6533333333334C403.2 160.6400000000001 395.7333333333333 149.3333333333334 385.0666666666666 145.0666666666667L279.6799999999999 98.1333333333334L253.8666666666666 95.3600000000001V0C253.8666666666666 -11.7333333333333 244.2666666666666 -21.3333333333333 232.5333333333332 -21.3333333333333S211.1999999999999 -11.7333333333333 211.1999999999999 0M403.1999999999999 341.3333333333334H232.5333333333332V405.3333333333333H403.1999999999999V341.3333333333334z" />
+    <glyph glyph-name="hand-pointing-left"
+      unicode="&#xFA53;"
+      horiz-adv-x="512" d=" M64 256H277.3333333333333L241.28 324.2666666666667L240.64 328.9600000000001C240.64 335.1466666666667 243.2 340.6933333333334 247.4666666666667 344.7466666666667L263.8933333333333 360.5333333333334L353.4933333333334 256C359.2533333333334 250.4533333333334 362.6666666666667 242.9866666666667 362.6666666666667 234.6666666666667V96C362.6666666666667 79.5733333333334 347.7333333333334 64 330.6666666666667 64H237.6533333333334C224.64 64 213.3333333333333 71.4666666666667 209.0666666666667 82.1333333333334L162.1333333333333 187.5200000000001L159.36 213.3333333333334H64C52.2666666666667 213.3333333333334 42.6666666666667 222.9333333333333 42.6666666666667 234.6666666666667S52.2666666666667 256 64 256M405.3333333333333 64V234.6666666666667H469.3333333333333V64H405.3333333333333z" />
+    <glyph glyph-name="hand-pointing-right"
+      unicode="&#xF2C7;"
+      horiz-adv-x="512" d=" M448 256C459.7333333333333 256 469.3333333333333 246.4000000000001 469.3333333333333 234.6666666666667S459.7333333333333 213.3333333333334 448 213.3333333333334H352.64L349.8666666666667 187.52L302.9333333333334 82.1333333333333C298.6666666666668 71.4666666666666 287.36 63.9999999999999 274.3466666666667 63.9999999999999H181.3333333333333C164.2666666666667 63.9999999999999 149.3333333333333 79.5733333333333 149.3333333333333 95.9999999999999V234.6666666666667C149.3333333333333 242.9866666666667 152.7466666666667 250.4533333333334 158.5066666666667 256L248.1066666666667 360.5333333333334L264.5333333333333 344.7466666666667C268.8 340.6933333333334 271.36 335.1466666666667 271.36 328.9600000000001L270.72 324.2666666666667L234.6666666666667 256H448M42.6666666666667 64V234.6666666666667H106.6666666666667V64H42.6666666666667z" />
+    <glyph glyph-name="hand-pointing-up"
+      unicode="&#xFA54;"
+      horiz-adv-x="512" d=" M298.6666666666667 384V170.6666666666667L366.9333333333333 206.72L371.6266666666666 207.36C377.8133333333333 207.36 383.36 204.8 387.4133333333333 200.5333333333333L403.1999999999999 184.1066666666667L298.6666666666665 94.5066666666667C293.1199999999999 88.7466666666667 285.6533333333332 85.3333333333334 277.3333333333332 85.3333333333334H138.6666666666667C122.24 85.3333333333334 106.6666666666667 100.2666666666667 106.6666666666667 117.3333333333334V210.3466666666667C106.6666666666667 223.36 114.1333333333333 234.6666666666667 124.8 238.9333333333334L230.1866666666667 285.8666666666667L256 288.64V384C256 395.7333333333334 265.6 405.3333333333333 277.3333333333333 405.3333333333333S298.6666666666667 395.7333333333334 298.6666666666667 384M106.6666666666667 42.6666666666667H277.3333333333333V-21.3333333333333H106.6666666666667V42.6666666666667z" />
+    <glyph glyph-name="hanger"
+      unicode="&#xF2C8;"
+      horiz-adv-x="512" d=" M442.88 99.4133333333334H442.6666666666667C458.6666666666666 90.24 469.3333333333333 72.96 469.3333333333333 53.3333333333334C469.3333333333333 23.8933333333334 445.44 0 416 0H96C66.56 0 42.6666666666667 23.8933333333334 42.6666666666667 53.3333333333334C42.6666666666667 72.96 53.3333333333333 90.24 69.3333333333333 99.4133333333334H69.12L234.6666666666667 194.9866666666667S234.6666666666667 213.3333333333334 256 234.6666666666667C277.3333333333333 234.6666666666667 298.6666666666667 253.8666666666667 298.6666666666667 277.3333333333334S279.4666666666667 320 256 320S213.3333333333333 300.8 213.3333333333333 277.3333333333334H170.6666666666667C170.6666666666667 324.48 208.8533333333333 362.6666666666667 256 362.6666666666667S341.3333333333333 324.48 341.3333333333333 277.3333333333334C341.3333333333333 237.6533333333334 314.24 204.3733333333333 277.3333333333333 194.7733333333333L442.88 99.4133333333334M96 42.6666666666667H416C419.6266666666667 42.6666666666667 423.2533333333334 44.5866666666667 425.1733333333333 48C428.16 53.3333333333334 426.6666666666667 59.52 421.3333333333333 62.5066666666667L256 158.0800000000001L90.6666666666667 62.5066666666667C85.3333333333333 59.52 83.84 53.3333333333334 86.8266666666667 48C88.7466666666667 44.5866666666667 92.3733333333333 42.6666666666667 96 42.6666666666667z" />
+    <glyph glyph-name="hard-hat"
+      unicode="&#xF96E;"
+      horiz-adv-x="512" d=" M210.56 188.8L192 310.1866666666667C233.6 323.4133333333334 278.4 323.4133333333334 320 310.1866666666667L301.44 188.8C299.9466666666667 178.3466666666667 290.7733333333333 170.6666666666667 280.1066666666667 170.6666666666667H231.68C221.2266666666667 170.6666666666667 212.0533333333334 178.3466666666667 210.56 188.8M469.3333333333333 106.6666666666667C469.3333333333333 123.52 459.3066666666667 138.6666666666667 443.7333333333334 145.7066666666667C433.4933333333334 194.9866666666667 404.48 238.2933333333334 362.6666666666667 266.6666666666667L325.12 163.4133333333334C322.1333333333334 154.88 314.0266666666667 149.3333333333334 305.0666666666667 149.3333333333334H206.9333333333333C197.9733333333333 149.3333333333334 189.8666666666666 154.88 186.88 163.4133333333334L149.3333333333333 266.6666666666667C107.52 238.2933333333334 78.5066666666667 194.9866666666667 68.2666666666667 145.92C52.6933333333333 138.6666666666667 42.6666666666667 123.7333333333334 42.6666666666667 106.6666666666667L180.2666666666667 67.4133333333334C187.9466666666666 65.28 195.84 64 203.7333333333333 64H307.84C315.7333333333333 64 323.6266666666667 65.28 331.3066666666666 67.4133333333334L469.3333333333333 106.6666666666667z" />
+    <glyph glyph-name="harddisk"
+      unicode="&#xF2CA;"
+      horiz-adv-x="512" d=" M128 405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333M256 362.6666666666667C185.3866666666667 362.6666666666667 128 305.2800000000001 128 234.6666666666667S185.3866666666667 106.6666666666667 258.1333333333334 106.6666666666667L239.36 154.24C233.6 164.48 237.0133333333333 177.4933333333334 247.2533333333333 183.4666666666667L265.5999999999999 194.1333333333334C275.8399999999999 199.8933333333334 288.8533333333333 196.48 294.8266666666666 186.2400000000001L335.7866666666666 134.6133333333334C365.2266666666667 158.0800000000001 384 194.1333333333333 384 234.6666666666667C384 305.2800000000001 326.6133333333334 362.6666666666667 256 362.6666666666667M256 256C267.7333333333334 256 277.3333333333333 246.4000000000001 277.3333333333333 234.6666666666667S267.7333333333334 213.3333333333334 256 213.3333333333334S234.6666666666667 222.9333333333333 234.6666666666667 234.6666666666667S244.2666666666667 256 256 256M149.3333333333333 64C137.6 64 128 54.4 128 42.6666666666667S137.6 21.3333333333334 149.3333333333333 21.3333333333334S170.6666666666667 30.9333333333333 170.6666666666667 42.6666666666667S161.0666666666667 64 149.3333333333333 64M257.92 164.9066666666667L311.04 30.2933333333334L366.2933333333334 62.2933333333334L276.2666666666667 175.5733333333334L257.9200000000001 164.9066666666667z" />
+    <glyph glyph-name="hat-fedora"
+      unicode="&#xFB80;"
+      horiz-adv-x="512" d=" M407.68 193.7066666666667C408.1066666666667 198.1866666666667 408.32 202.6666666666667 408.32 207.1466666666667C408.32 280.3200000000001 377.8133333333334 359.6800000000001 347.3066666666667 359.6800000000001S286.2933333333333 329.1733333333334 256 329.1733333333334C225.4933333333334 329.1733333333334 194.9866666666667 359.68 164.48 359.68C133.9733333333333 359.68 103.68 281.8133333333334 103.68 207.1466666666667C103.68 202.6666666666666 103.68 198.1866666666667 104.1066666666666 193.7066666666667C154.0266666666667 182.4 204.8 176.64 256 176.8533333333334C308.2666666666667 176.8533333333334 359.04 182.6133333333334 407.68 193.7066666666667M73.6 60.16C192 24.5333333333333 319.1466666666667 24.3200000000001 438.1866666666666 60.16C447.1466666666667 63.1466666666667 455.04 68.9066666666667 460.5866666666666 76.5866666666667C466.1333333333333 84.2666666666667 469.3333333333333 93.6533333333334 469.3333333333333 103.04C469.3333333333333 112.64 466.3466666666666 121.8133333333333 461.0133333333333 129.7066666666667C455.4666666666666 137.3866666666667 448 143.1466666666667 438.6133333333333 146.3466666666666C381.0133333333333 128 320 118.4 256 118.4C192 118.4 130.7733333333333 128 73.1733333333333 146.3466666666666C64 143.1466666666667 56.5333333333333 137.1733333333333 50.9866666666666 129.4933333333333C45.6533333333333 121.8133333333333 42.6666666666666 112.64 42.6666666666666 103.04C42.6666666666666 82.9866666666666 55.68 66.1333333333333 73.5999999999999 60.16z" />
+    <glyph glyph-name="headphones"
+      unicode="&#xF2CB;"
+      horiz-adv-x="512" d=" M256 426.6666666666667C149.3333333333333 426.6666666666667 64 341.3333333333334 64 234.6666666666667V85.3333333333334C64 49.92 92.5866666666667 21.3333333333334 128 21.3333333333334H192V192H106.6666666666667V234.6666666666667C106.6666666666667 317.2266666666667 173.44 384 256 384S405.3333333333333 317.2266666666667 405.3333333333333 234.6666666666667V192H320V21.3333333333334H384C419.4133333333333 21.3333333333334 448 49.92 448 85.3333333333334V234.6666666666667C448 341.3333333333334 362.0266666666667 426.6666666666667 256 426.6666666666667z" />
+    <glyph glyph-name="headphones-bluetooth"
+      unicode="&#xF96F;"
+      horiz-adv-x="512" d=" M170.6666666666667 320C100.0533333333333 320 42.6666666666667 262.6133333333334 42.6666666666667 192V89.6C42.6666666666667 75.52 54.1866666666667 64 68.2666666666667 64H128V149.3333333333334H85.3333333333333V192C85.3333333333333 239.1466666666667 123.52 277.3333333333334 170.6666666666667 277.3333333333334S256 239.1466666666667 256 192V149.3333333333334H213.3333333333333V64H273.0666666666667C287.1466666666667 64 298.6666666666667 75.52 298.6666666666667 89.6V192C298.6666666666667 262.6133333333334 241.28 320 170.6666666666667 320M405.3333333333333 298.6666666666667V217.8133333333334L356.48 266.6666666666667L341.3333333333333 251.52L400.8533333333333 192L341.3333333333333 132.48L356.48 117.3333333333334L405.3333333333333 166.1866666666667V85.3333333333334H416L476.8 146.3466666666667L431.1466666666667 192L476.8 237.8666666666667L416 298.6666666666667H405.3333333333333M426.6666666666667 257.92L446.7200000000001 237.8666666666667L426.6666666666667 217.8133333333334V257.92M426.6666666666667 166.1866666666667L446.7200000000001 146.3466666666667L426.6666666666667 126.2933333333334V166.1866666666667z" />
+    <glyph glyph-name="headphones-box"
+      unicode="&#xF2CC;"
+      horiz-adv-x="512" d=" M153.6 64C139.52 64 128 75.52 128 89.6V192C128 262.6133333333334 185.3866666666667 320 256 320S384 262.6133333333334 384 192V89.6C384 75.52 372.48 64 358.4 64H298.6666666666667V149.3333333333334H341.3333333333333V192C341.3333333333333 239.1466666666667 303.1466666666667 277.3333333333334 256 277.3333333333334S170.6666666666667 239.1466666666667 170.6666666666667 192V149.3333333333334H213.3333333333333V64M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="headphones-off"
+      unicode="&#xF7CD;"
+      horiz-adv-x="512" d=" M256 426.6666666666667C362.0266666666667 426.6666666666667 448 340.6933333333334 448 234.6666666666667V85.3333333333334C448 72.1066666666667 443.9466666666666 59.9466666666667 437.3333333333333 49.7066666666667L320 166.8266666666667V192H405.3333333333333V234.6666666666667C405.3333333333333 317.2266666666667 338.56 384 256 384C213.3333333333333 384 175.5733333333333 366.5066666666667 148.48 338.3466666666667L118.4 368.64C153.1733333333333 404.48 202.0266666666667 426.6666666666667 256 426.6666666666667M59.3066666666667 373.3333333333334L437.3333333333333 -4.6933333333333L410.24 -32L356.9066666666667 21.3333333333334H320V58.24L192 186.24V21.3333333333334H128C92.5866666666667 21.3333333333334 64 49.92 64 85.3333333333334V234.6666666666667C64 258.3466666666667 68.2666666666667 281.1733333333334 76.16 302.0800000000001L32 346.24L59.3066666666667 373.3333333333334M110.2933333333333 267.9466666666667C107.9466666666667 257.2800000000001 106.6666666666667 246.1866666666667 106.6666666666667 234.6666666666667V192H186.24L110.2933333333333 267.9466666666667z" />
+    <glyph glyph-name="headphones-settings"
+      unicode="&#xF2CD;"
+      horiz-adv-x="512" d=" M256 426.6666666666667C362.0266666666667 426.6666666666667 448 340.6933333333334 448 234.6666666666667V85.3333333333334C448 49.92 419.4133333333333 21.3333333333334 384 21.3333333333334H320V192H405.3333333333333V234.6666666666667C405.3333333333333 317.2266666666667 338.56 384 256 384S106.6666666666667 317.2266666666667 106.6666666666667 234.6666666666667V192H192V21.3333333333334H128C92.5866666666667 21.3333333333334 64 49.92 64 85.3333333333334V234.6666666666667C64 340.6933333333334 149.9733333333333 426.6666666666667 256 426.6666666666667M320 -64V-21.3333333333333H362.6666666666667V-64H320M234.6666666666667 -64V-21.3333333333333H277.3333333333333V-64H234.6666666666667M149.3333333333333 -64V-21.3333333333333H192V-64H149.3333333333333z" />
+    <glyph glyph-name="headset"
+      unicode="&#xF2CE;"
+      horiz-adv-x="512" d=" M256 426.6666666666667C149.3333333333333 426.6666666666667 64 341.3333333333334 64 234.6666666666667V85.3333333333334C64 49.92 92.5866666666667 21.3333333333334 128 21.3333333333334H192V192H106.6666666666667V234.6666666666667C106.6666666666667 317.2266666666667 173.44 384 256 384S405.3333333333333 317.2266666666667 405.3333333333333 234.6666666666667V192H320V21.3333333333334H405.3333333333333V0H256V-42.6666666666666H384C419.4133333333333 -42.6666666666666 448 -14.08 448 21.3333333333334V234.6666666666667C448 341.3333333333334 362.0266666666667 426.6666666666667 256 426.6666666666667z" />
+    <glyph glyph-name="headset-dock"
+      unicode="&#xF2CF;"
+      horiz-adv-x="512" d=" M42.6666666666667 64H192V317.2266666666667C155.0933333333333 307.8400000000001 128 274.3466666666667 128 234.6666666666667V213.3333333333334H170.6666666666667V85.3333333333334H128C104.5333333333333 85.3333333333334 85.3333333333333 104.5333333333333 85.3333333333333 128V234.6666666666667C85.3333333333333 305.2800000000001 142.72 362.6666666666667 213.3333333333333 362.6666666666667H234.6666666666667C305.28 362.6666666666667 362.6666666666667 305.2800000000001 362.6666666666667 234.6666666666667V192H384V256H426.6666666666667V192C426.6666666666667 168.5333333333334 407.4666666666667 149.3333333333334 384 149.3333333333334H362.6666666666667V128C362.6666666666667 104.5333333333333 343.4666666666667 85.3333333333334 320 85.3333333333334H277.3333333333333V213.3333333333334H320V234.6666666666667C320 274.3466666666667 292.9066666666667 307.8400000000001 256 317.2266666666667V64H469.3333333333333V21.3333333333334H42.6666666666667V64z" />
+    <glyph glyph-name="headset-off"
+      unicode="&#xF2D0;"
+      horiz-adv-x="512" d=" M32 346.24L76.16 302.0800000000001C68.2666666666667 281.1733333333334 64 258.3466666666667 64 234.6666666666667V21.3333333333334C64 -14.08 92.5866666666667 -42.6666666666666 128 -42.6666666666666H256V0H106.6666666666667V21.3333333333334H192V186.24L320 58.24V21.3333333333334H356.9066666666667L410.24 -32L437.3333333333333 -4.6933333333333L59.3066666666667 373.3333333333334L32 346.24M256 426.6666666666667C202.0266666666667 426.6666666666667 153.1733333333333 404.48 118.4 368.64L148.48 338.3466666666667C175.5733333333333 366.5066666666667 213.3333333333333 384 256 384C338.56 384 405.3333333333333 317.2266666666667 405.3333333333333 234.6666666666667V192H320V166.8266666666667L437.3333333333333 49.7066666666667C443.9466666666666 59.9466666666667 448 72.1066666666667 448 85.3333333333334V234.6666666666667C448 340.6933333333334 362.0266666666667 426.6666666666667 256 426.6666666666667M106.6666666666667 192V234.6666666666667C106.6666666666667 246.1866666666667 107.9466666666667 257.2800000000001 110.2933333333333 267.9466666666667L186.24 192H106.6666666666667z" />
+    <glyph glyph-name="heart"
+      unicode="&#xF2D1;"
+      horiz-adv-x="512" d=" M256 -7.4666666666667L225.0666666666667 20.6933333333333C115.2 120.3200000000001 42.6666666666667 186.24 42.6666666666667 266.6666666666667C42.6666666666667 332.5866666666667 94.2933333333333 384 160 384C197.12 384 232.7466666666667 366.7200000000001 256 339.6266666666667C279.2533333333334 366.7200000000001 314.88 384 352 384C417.7066666666666 384 469.3333333333333 332.5866666666667 469.3333333333333 266.6666666666667C469.3333333333333 186.24 396.8 120.3200000000001 286.9333333333333 20.6933333333333L256 -7.4666666666667z" />
+    <glyph glyph-name="heart-box"
+      unicode="&#xF2D2;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M256 85.3333333333334L271.36 99.4133333333334C326.4 149.3333333333334 362.6666666666667 182.1866666666667 362.6666666666667 222.5066666666667C362.6666666666667 255.36 336.8533333333333 281.1733333333334 304 281.1733333333334C285.44 281.1733333333334 267.7333333333334 272.4266666666667 256 258.7733333333333C244.2666666666667 272.4266666666667 226.56 281.1733333333333 208 281.1733333333333C175.1466666666667 281.1733333333334 149.3333333333333 255.36 149.3333333333333 222.5066666666667C149.3333333333333 182.1866666666667 185.6 149.3333333333334 240.64 99.4133333333334L256 85.3333333333334z" />
+    <glyph glyph-name="heart-box-outline"
+      unicode="&#xF2D3;"
+      horiz-adv-x="512" d=" M256 85.3333333333334L240.64 99.4133333333334C185.6 149.3333333333334 149.3333333333333 182.1866666666667 149.3333333333333 222.5066666666667C149.3333333333333 255.36 175.1466666666667 281.1733333333334 208 281.1733333333334C226.56 281.1733333333334 244.2666666666667 272.4266666666667 256 258.7733333333333C267.7333333333334 272.4266666666667 285.44 281.1733333333333 304 281.1733333333333C336.8533333333333 281.1733333333333 362.6666666666667 255.36 362.6666666666667 222.5066666666667C362.6666666666667 182.1866666666667 326.4 149.3333333333334 271.36 99.4133333333334L256 85.3333333333334M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M106.6666666666667 341.3333333333334V42.6666666666667H405.3333333333333V341.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="heart-broken"
+      unicode="&#xF2D4;"
+      horiz-adv-x="512" d=" M256 -7.4666666666667L225.0666666666667 20.6933333333333C115.2 120.3200000000001 42.6666666666667 186.24 42.6666666666667 266.6666666666667C42.6666666666667 332.5866666666667 94.2933333333333 384 160 384C174.2933333333333 384 188.16 381.44 201.3866666666667 376.9600000000001L277.3333333333333 248.5333333333334L192 141.8666666666667L256 -7.4666666666667M352 384C417.7066666666666 384 469.3333333333333 332.5866666666667 469.3333333333333 266.6666666666667C469.3333333333333 186.24 396.8 120.3200000000001 286.9333333333333 20.6933333333333L256 -7.4666666666667L234.6666666666667 141.8666666666667L330.6666666666667 248.5333333333333L274.1333333333334 356.9066666666667C295.8933333333333 373.9733333333334 323.6266666666667 384 352 384z" />
+    <glyph glyph-name="heart-circle"
+      unicode="&#xF970;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.0266666666667 405.3333333333333 42.6666666666667 309.3333333333334 42.6666666666667 192C42.6666666666667 74.24 138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M208 281.1733333333334C226.56 281.1733333333334 244.2666666666667 272.4266666666667 256 258.7733333333333C267.7333333333334 272.4266666666667 285.44 281.1733333333333 304 281.1733333333333C336.8533333333333 281.1733333333333 362.6666666666667 255.36 362.6666666666667 222.5066666666667C362.6666666666667 182.1866666666667 326.4 149.3333333333334 271.36 99.4133333333334L256 85.3333333333334L240.64 99.4133333333334C185.6 149.3333333333334 149.3333333333333 182.1866666666667 149.3333333333333 222.5066666666667C149.3333333333333 255.36 175.1466666666667 281.1733333333334 208 281.1733333333334z" />
+    <glyph glyph-name="heart-circle-outline"
+      unicode="&#xF971;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 362.6666666666667C350.2933333333334 362.6666666666667 426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334S85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667M208 281.1733333333334C175.1466666666667 281.1733333333334 149.3333333333333 255.36 149.3333333333333 222.5066666666667C149.3333333333333 182.1866666666667 185.6 149.3333333333334 240.64 99.4133333333334L256 85.3333333333334L271.36 99.4133333333334C326.4 149.3333333333334 362.6666666666667 182.1866666666667 362.6666666666667 222.5066666666667C362.6666666666667 255.36 336.8533333333333 281.1733333333334 304 281.1733333333334C285.44 281.1733333333334 267.7333333333334 272.4266666666667 256 258.7733333333333C244.2666666666667 272.4266666666667 226.56 281.1733333333333 208 281.1733333333333z" />
+    <glyph glyph-name="heart-half"
+      unicode="&#xF6DE;"
+      horiz-adv-x="512" d=" M277.3333333333333 294.4V11.9466666666667L256 -7.4666666666667L225.0666666666667 20.6933333333333C115.2 120.3200000000001 42.6666666666667 186.24 42.6666666666667 266.6666666666667C42.6666666666667 332.5866666666667 94.2933333333333 384 160 384C213.3333333333333 384 277.3333333333333 341.3333333333334 277.3333333333333 294.4z" />
+    <glyph glyph-name="heart-half-full"
+      unicode="&#xF6DD;"
+      horiz-adv-x="512" d=" M352 341.3333333333334C320 341.3333333333334 289.7066666666667 321.92 277.3333333333333 294.4V69.5466666666667C368 152.1066666666668 426.6666666666667 209.0666666666667 426.6666666666667 266.6666666666668C426.6666666666667 309.3333333333334 394.6666666666667 341.3333333333334 352 341.3333333333334M352 384.0000000000001C417.7066666666666 384 469.3333333333333 332.5866666666667 469.3333333333333 266.6666666666667C469.3333333333333 186.24 396.8 120.3200000000001 286.9333333333333 20.6933333333333L256 -7.4666666666667L225.0666666666667 20.6933333333333C115.2 120.3200000000001 42.6666666666667 186.24 42.6666666666667 266.6666666666667C42.6666666666667 332.5866666666667 94.2933333333333 384 160 384C197.12 384 232.7466666666667 366.7200000000001 256 339.6266666666667C279.2533333333334 366.7200000000001 314.88 384 352 384z" />
+    <glyph glyph-name="heart-half-outline"
+      unicode="&#xF6DF;"
+      horiz-adv-x="512" d=" M85.3333333333333 266.6666666666667C85.3333333333333 209.0666666666667 144 152.1066666666667 234.6666666666667 69.5466666666666V294.4C222.2933333333333 321.92 192 341.3333333333334 160 341.3333333333334C117.3333333333333 341.3333333333334 85.3333333333333 309.3333333333334 85.3333333333333 266.6666666666667M277.3333333333333 294.4V11.9466666666667L256 -7.4666666666667L225.0666666666667 20.6933333333333C115.2 120.3200000000001 42.6666666666667 186.24 42.6666666666667 266.6666666666667C42.6666666666667 332.5866666666667 94.2933333333333 384 160 384C213.3333333333333 384 277.3333333333333 341.3333333333334 277.3333333333333 294.4z" />
+    <glyph glyph-name="heart-multiple"
+      unicode="&#xFA55;"
+      horiz-adv-x="512" d=" M288 21.3333333333334C147.2 151.4666666666667 74.6666666666667 217.6 74.6666666666667 296.5333333333334C74.6666666666667 362.6666666666667 125.8666666666667 413.8666666666667 192 413.8666666666667C228.2666666666667 413.8666666666667 264.5333333333333 396.8 288 369.0666666666667C311.4666666666667 396.8 347.7333333333334 413.8666666666667 384 413.8666666666667C450.1333333333334 413.8666666666667 501.3333333333333 362.6666666666667 501.3333333333333 296.5333333333334C501.3333333333333 215.4666666666667 428.8 149.3333333333334 288 21.3333333333334M256 -2.1333333333333C115.2 123.7333333333334 32 198.4 32 298.6666666666667V311.4666666666667C19.2 292.2666666666667 10.6666666666667 268.8 10.6666666666667 243.2C10.6666666666667 162.1333333333333 83.2 96 224 -29.8666666666667L256 -2.1333333333333z" />
+    <glyph glyph-name="heart-multiple-outline"
+      unicode="&#xFA56;"
+      horiz-adv-x="512" d=" M256 -2.1333333333333L224 -29.8666666666667C83.2 96 10.6666666666667 162.1333333333333 10.6666666666667 243.2C10.6666666666667 268.8 19.2 292.2666666666667 32 311.4666666666667V298.6666666666667C32 198.4 115.2 123.7333333333334 256 -2.1333333333333M290.1333333333334 85.3333333333334C390.4 177.0666666666667 458.6666666666666 236.8 460.8 298.6666666666667C460.8 341.3333333333334 428.8 373.3333333333334 386.1333333333334 373.3333333333334C352 373.3333333333334 320 352 309.3333333333334 322.1333333333334H268.8C256 352 224 373.3333333333334 192 373.3333333333334C149.3333333333333 373.3333333333334 117.3333333333333 341.3333333333334 117.3333333333333 298.6666666666667C117.3333333333333 236.8 183.4666666666667 177.0666666666667 285.8666666666667 85.3333333333334L288 83.2M384 416C450.1333333333334 416 501.3333333333333 364.8 501.3333333333333 298.6666666666667C501.3333333333333 219.7333333333334 428.8 153.6 288 25.6C147.2 151.4666666666667 74.6666666666667 217.6 74.6666666666667 298.6666666666667C74.6666666666667 364.8 125.8666666666667 416 192 416C228.2666666666667 416 264.5333333333333 398.9333333333334 288 371.2C311.4666666666667 398.9333333333334 347.7333333333334 416 384 416z" />
+    <glyph glyph-name="heart-off"
+      unicode="&#xF758;"
+      horiz-adv-x="512" d=" M21.3333333333333 356.9066666666667L48.64 384L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L323.84 54.6133333333333L286.9333333333333 20.6933333333333L256 -7.4666666666667L225.0666666666667 20.6933333333333C115.2 120.3200000000001 42.6666666666667 186.24 42.6666666666667 266.6666666666667C42.6666666666667 286.9333333333334 47.5733333333333 305.7066666666667 56.1066666666667 322.1333333333334L21.3333333333333 356.9066666666667M160 384C197.12 384 232.7466666666667 366.7200000000001 256 339.6266666666667C279.2533333333334 366.7200000000001 314.88 384 352 384C417.7066666666666 384 469.3333333333333 332.5866666666667 469.3333333333333 266.6666666666667C469.3333333333333 211.84 435.6266666666667 163.84 379.52 107.3066666666667L112.4266666666667 374.4C126.9333333333333 380.5866666666667 142.9333333333333 384 160 384z" />
+    <glyph glyph-name="heart-outline"
+      unicode="&#xF2D5;"
+      horiz-adv-x="512" d=" M258.1333333333334 52.2666666666667L256 50.1333333333333L253.6533333333334 52.2666666666667C152.32 144.2133333333334 85.3333333333333 205.0133333333333 85.3333333333333 266.6666666666667C85.3333333333333 309.3333333333334 117.3333333333333 341.3333333333334 160 341.3333333333334C192.8533333333333 341.3333333333334 224.8533333333333 320 236.16 290.9866666666667H275.84C287.1466666666667 320 319.1466666666667 341.3333333333334 352 341.3333333333334C394.6666666666667 341.3333333333334 426.6666666666667 309.3333333333334 426.6666666666667 266.6666666666667C426.6666666666667 205.0133333333333 359.68 144.2133333333334 258.1333333333334 52.2666666666667M352 384C314.88 384 279.2533333333334 366.7200000000001 256 339.6266666666667C232.7466666666667 366.7200000000001 197.12 384 160 384C94.2933333333333 384 42.6666666666667 332.5866666666667 42.6666666666667 266.6666666666667C42.6666666666667 186.24 115.2 120.3200000000001 225.0666666666667 20.6933333333333L256 -7.4666666666667L286.9333333333333 20.6933333333333C396.8 120.3200000000001 469.3333333333333 186.24 469.3333333333333 266.6666666666667C469.3333333333333 332.5866666666667 417.7066666666666 384 352 384z" />
+    <glyph glyph-name="heart-pulse"
+      unicode="&#xF5F6;"
+      horiz-adv-x="512" d=" M160 362.6666666666667C95.1466666666667 362.6666666666667 42.6666666666667 310.1866666666667 42.6666666666667 245.3333333333334C42.6666666666667 234.6666666666667 44.5866666666667 224 47.36 213.3333333333334H134.4L161.4933333333334 285.2266666666667C167.8933333333333 302.2933333333334 193.0666666666667 304 201.1733333333333 285.2266666666667L245.3333333333333 170.6666666666667L257.92 200.96C260.6933333333334 208 268.16 213.3333333333334 277.3333333333333 213.3333333333334H464.64C467.4133333333333 224 469.3333333333333 234.6666666666667 469.3333333333333 245.3333333333334C469.3333333333333 310.1866666666667 416.8533333333333 362.6666666666667 352 362.6666666666667C312.32 362.6666666666667 277.3333333333333 342.8266666666667 256 312.7466666666667C234.6666666666667 342.8266666666667 199.68 362.6666666666667 160 362.6666666666667M64 181.3333333333334C52.2666666666667 181.3333333333334 42.6666666666667 171.7333333333334 42.6666666666667 160S52.2666666666667 138.6666666666667 64 138.6666666666667H116.0533333333333L234.6666666666667 21.3333333333334C256 2.1333333333334 256 2.1333333333334 277.3333333333333 21.3333333333334L395.9466666666666 138.6666666666667H448C459.7333333333333 138.6666666666667 469.3333333333333 148.2666666666667 469.3333333333333 160S459.7333333333333 181.3333333333334 448 181.3333333333334H285.8666666666667L266.0266666666667 132.2666666666667C257.4933333333334 110.72 232.96 113.7066666666667 225.0666666666667 131.6266666666667L181.3333333333333 245.3333333333334L160.8533333333333 195.6266666666667C157.6533333333333 187.52 150.4 181.3333333333334 140.8 181.3333333333334H64z" />
+    <glyph glyph-name="helicopter"
+      unicode="&#xFAC1;"
+      horiz-adv-x="512" d=" M64 384H362.6666666666667V341.3333333333334H64V384M490.6666666666666 320V224L314.6666666666667 187.7333333333334C318.08 179.2000000000001 320 169.8133333333334 320 160C320 130.1333333333333 302.5066666666667 104.5333333333333 277.3333333333333 92.5866666666667V42.6666666666667H341.3333333333333V0H85.3333333333333C49.92 0 21.3333333333333 28.5866666666667 21.3333333333333 64V85.3333333333334H64V64C64 52.2666666666667 73.6 42.6666666666667 85.3333333333333 42.6666666666667H106.6666666666667V90.88C69.3333333333333 103.8933333333333 42.6666666666667 139.52 42.6666666666667 181.3333333333333C42.6666666666667 234.6666666666667 85.3333333333333 277.3333333333334 138.6666666666667 277.3333333333334H192V320H234.6666666666667V277.3333333333334H448V320H490.6666666666666M234.6666666666667 42.6666666666667V85.3333333333334H149.3333333333333V42.6666666666667H234.6666666666667M160 234.6666666666667C130.56 234.6666666666667 106.6666666666667 215.4666666666667 106.6666666666667 192S130.56 149.3333333333334 160 149.3333333333334S213.3333333333333 168.5333333333334 213.3333333333333 192S189.44 234.6666666666667 160 234.6666666666667z" />
+    <glyph glyph-name="help"
+      unicode="&#xF2D6;"
+      horiz-adv-x="512" d=" M213.3333333333333 42.6666666666667H277.3333333333333V-21.3333333333333H213.3333333333333V42.6666666666667M256 405.3333333333333C370.1333333333334 400.64 419.84 285.44 352 199.04C334.2933333333333 177.7066666666667 305.7066666666667 163.6266666666667 291.6266666666667 145.7066666666667C277.3333333333333 128 277.3333333333333 106.6666666666667 277.3333333333333 85.3333333333334H213.3333333333333C213.3333333333333 120.96 213.3333333333333 151.04 227.6266666666667 172.3733333333333C241.7066666666667 193.7066666666667 270.2933333333333 206.2933333333334 288 220.3733333333333C339.6266666666667 268.1600000000001 326.8266666666667 335.7866666666667 256 341.3333333333334C220.5866666666667 341.3333333333334 192 312.7466666666667 192 277.3333333333334H128C128 347.9466666666667 185.3866666666667 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="help-box"
+      unicode="&#xF78A;"
+      horiz-adv-x="512" d=" M234.6666666666667 64H277.3333333333333V106.6666666666667H234.6666666666667V64M256 320C208.8533333333333 320 170.6666666666667 281.8133333333334 170.6666666666667 234.6666666666667H213.3333333333333C213.3333333333333 258.1333333333334 232.5333333333334 277.3333333333334 256 277.3333333333334S298.6666666666667 258.1333333333334 298.6666666666667 234.6666666666667C298.6666666666667 192 234.6666666666667 197.3333333333334 234.6666666666667 128H277.3333333333333C277.3333333333333 176 341.3333333333333 181.3333333333334 341.3333333333333 234.6666666666667C341.3333333333333 281.8133333333334 303.1466666666667 320 256 320M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="help-circle"
+      unicode="&#xF2D7;"
+      horiz-adv-x="512" d=" M321.4933333333334 208L302.2933333333333 188.3733333333333C286.9333333333333 173.0133333333333 277.3333333333333 160 277.3333333333333 128H234.6666666666667V138.6666666666667C234.6666666666667 162.3466666666667 244.2666666666667 183.68 259.6266666666667 199.04L286.08 225.92C293.9733333333333 233.6 298.6666666666667 244.2666666666667 298.6666666666667 256C298.6666666666667 279.68 279.4666666666667 298.6666666666667 256 298.6666666666667S213.3333333333333 279.4666666666667 213.3333333333333 256H170.6666666666667C170.6666666666667 303.1466666666667 208.8533333333333 341.3333333333334 256 341.3333333333334S341.3333333333333 303.1466666666667 341.3333333333333 256C341.3333333333333 237.2266666666667 333.6533333333333 220.3733333333333 321.4933333333334 208M277.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H277.3333333333333M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192C469.3333333333333 309.9733333333334 373.3333333333333 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="help-circle-outline"
+      unicode="&#xF625;"
+      horiz-adv-x="512" d=" M234.6666666666667 64H277.3333333333333V106.6666666666667H234.6666666666667V64M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 21.3333333333334C161.92 21.3333333333334 85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667S426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334M256 320C208.8533333333333 320 170.6666666666667 281.8133333333334 170.6666666666667 234.6666666666667H213.3333333333333C213.3333333333333 258.1333333333334 232.5333333333334 277.3333333333334 256 277.3333333333334S298.6666666666667 258.1333333333334 298.6666666666667 234.6666666666667C298.6666666666667 192 234.6666666666667 197.3333333333334 234.6666666666667 128H277.3333333333333C277.3333333333333 176 341.3333333333333 181.3333333333334 341.3333333333333 234.6666666666667C341.3333333333333 281.8133333333334 303.1466666666667 320 256 320z" />
+    <glyph glyph-name="help-network"
+      unicode="&#xF6F4;"
+      horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V128C405.3333333333333 104.5333333333333 386.1333333333334 85.3333333333334 362.6666666666667 85.3333333333334H277.3333333333333V42.6666666666667H298.6666666666667C310.4 42.6666666666667 320 33.0666666666667 320 21.3333333333334H469.3333333333333V-21.3333333333333H320C320 -33.0666666666667 310.4 -42.6666666666666 298.6666666666667 -42.6666666666666H213.3333333333333C201.6 -42.6666666666666 192 -33.0666666666667 192 -21.3333333333333H42.6666666666667V21.3333333333334H192C192 33.0666666666667 201.6 42.6666666666667 213.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H149.3333333333333C125.6533333333333 85.3333333333334 106.6666666666667 104.5333333333333 106.6666666666667 128V341.3333333333334C106.6666666666667 364.8 125.8666666666667 384 149.3333333333333 384H362.6666666666667M260.0533333333334 341.3333333333334C241.4933333333334 341.3333333333334 226.56 337.0666666666667 215.04 328.7466666666667C203.9466666666667 320 198.4 307.8400000000001 198.6133333333334 290.9866666666667L198.8266666666667 290.3466666666667H240.0000000000001C240.2133333333334 296.7466666666667 242.1333333333334 301.6533333333334 245.9733333333334 305.0666666666667C249.8133333333334 308.2666666666667 254.5066666666667 309.9733333333334 260.0533333333334 309.9733333333334C266.6666666666667 309.9733333333334 272.2133333333334 307.8400000000001 276.0533333333334 304C279.8933333333333 299.9466666666667 281.6 294.4000000000001 281.6 288C281.6 281.1733333333334 280.1066666666667 275.4133333333334 276.6933333333334 270.5066666666667C273.7066666666667 265.6 269.2266666666667 261.3333333333334 263.68 257.9200000000001C252.8 250.6666666666667 245.3333333333334 244.2666666666667 241.28 238.5066666666667C237.0133333333334 232.9600000000001 234.6666666666667 224.0000000000001 234.6666666666667 213.3333333333334H277.3333333333333C277.3333333333333 219.9466666666667 278.1866666666666 225.2800000000001 280.1066666666667 229.1200000000001C282.0266666666667 233.1733333333334 285.6533333333333 236.8000000000001 290.9866666666667 240.2133333333334C300.5866666666667 245.3333333333334 308.48 251.5200000000001 314.6666666666667 260.0533333333334C320.8533333333333 268.5866666666667 324.0533333333333 277.3333333333334 324.0533333333333 288.0000000000001C324.0533333333333 304.2133333333334 318.2933333333333 317.2266666666667 306.7733333333333 326.8266666666667C295.4666666666667 336.4266666666668 279.8933333333333 341.3333333333334 260.0533333333333 341.3333333333334M234.6666666666667 192V149.3333333333334H277.3333333333333V192H234.6666666666667z" />
+    <glyph glyph-name="help-rhombus"
+      unicode="&#xFB81;"
+      horiz-adv-x="512" d=" M458.6666666666666 217.6L281.6 394.6666666666667C266.6666666666667 409.6 245.3333333333333 409.6 230.4 394.6666666666667L53.3333333333333 217.6C38.4 202.6666666666667 38.4 181.3333333333334 53.3333333333333 166.4L230.4 -10.6666666666666C245.3333333333333 -25.6 266.6666666666667 -25.6 281.6 -10.6666666666666L458.6666666666666 166.4C471.4666666666667 181.3333333333334 471.4666666666667 202.6666666666667 458.6666666666666 217.6M266.6666666666667 85.3333333333334H234.6666666666667V117.3333333333334H266.6666666666667V85.3333333333334M305.0666666666667 196.2666666666667C296.5333333333333 185.6 281.6 179.2 275.2 168.5333333333333C268.8 160 268.8 149.3333333333333 268.8 138.6666666666666H234.6666666666667C234.6666666666667 155.7333333333334 234.6666666666667 170.6666666666666 241.0666666666667 181.3333333333333S262.4 198.4 270.9333333333334 204.8C296.5333333333333 228.2666666666666 290.1333333333334 262.4 253.8666666666667 264.5333333333333C236.8 264.5333333333333 221.8666666666667 249.6 221.8666666666667 232.5333333333333H192C192 268.8 219.7333333333334 296.5333333333333 256 296.5333333333333C313.6 296.5333333333333 339.2 238.9333333333334 305.0666666666667 196.2666666666667z" />
+    <glyph glyph-name="help-rhombus-outline"
+      unicode="&#xFB82;"
+      horiz-adv-x="512" d=" M458.6666666666666 217.6L281.6 394.6666666666667C266.6666666666667 409.6 245.3333333333333 409.6 230.4 394.6666666666667L53.3333333333333 217.6C38.4 202.6666666666667 38.4 181.3333333333334 53.3333333333333 166.4L230.4 -10.6666666666666C245.3333333333333 -25.6 266.6666666666667 -25.6 281.6 -10.6666666666666L458.6666666666666 166.4C471.4666666666667 181.3333333333334 471.4666666666667 202.6666666666667 458.6666666666666 217.6M433.0666666666667 192L256 14.9333333333333L78.9333333333333 192L256 369.0666666666667L433.0666666666667 192M234.6666666666667 117.3333333333334H266.6666666666667V85.3333333333334H234.6666666666667V117.3333333333334M256 299.7333333333334C313.6 297.3866666666667 338.56 239.36 304.64 196.0533333333334C295.68 185.3866666666667 281.3866666666667 178.3466666666667 274.1333333333334 169.1733333333334C266.6666666666667 160.0000000000001 266.6666666666667 149.3333333333334 266.6666666666667 138.6666666666668H234.6666666666667C234.6666666666667 156.8000000000001 234.6666666666667 171.9466666666667 242.1333333333334 182.6133333333334C249.1733333333333 193.2800000000001 263.4666666666667 199.6800000000001 272.4266666666666 206.72C298.6666666666667 230.8266666666667 291.84 264.7466666666668 256 267.5200000000001C238.5066666666667 267.5200000000001 224 253.2266666666667 224 235.3066666666667H192C192 270.9333333333334 220.8 299.7333333333334 256 299.7333333333334z" />
+    <glyph glyph-name="hexagon"
+      unicode="&#xF2D8;"
+      horiz-adv-x="512" d=" M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96z" />
+    <glyph glyph-name="hexagon-multiple"
+      unicode="&#xF6E0;"
+      horiz-adv-x="512" d=" M218.6666666666667 405.3333333333333C222.72 405.3333333333333 226.3466666666667 402.9866666666667 228.0533333333333 399.7866666666667L275.4133333333333 315.3066666666667L277.3333333333333 309.3333333333334L275.4133333333333 303.36L228.0533333333333 218.88C226.3466666666667 215.68 222.72 213.3333333333334 218.6666666666667 213.3333333333334H122.6666666666667C118.6133333333333 213.3333333333334 114.9866666666667 215.68 113.28 218.88L65.92 303.36L64 309.3333333333334L65.92 315.3066666666667L113.28 399.7866666666667C114.9866666666667 402.9866666666667 118.6133333333334 405.3333333333334 122.6666666666667 405.3333333333334H218.6666666666667M218.6666666666667 170.6666666666667C222.72 170.6666666666667 226.3466666666667 168.3200000000001 228.0533333333333 165.12L275.4133333333333 80.64L277.3333333333333 74.6666666666667L275.4133333333333 68.6933333333333L228.0533333333333 -15.7866666666667C226.3466666666667 -18.9866666666667 222.72 -21.3333333333334 218.6666666666667 -21.3333333333334H122.6666666666667C118.6133333333333 -21.3333333333334 114.9866666666667 -18.9866666666667 113.28 -15.7866666666667L65.92 68.6933333333333L64 74.6666666666667L65.92 80.64L113.28 165.1200000000001C114.9866666666667 168.3200000000001 118.6133333333334 170.6666666666668 122.6666666666667 170.6666666666668H218.6666666666667M416 288.0000000000001C420.0533333333334 288.0000000000001 423.68 285.6533333333334 425.3866666666667 282.4533333333334L472.7466666666667 197.9733333333334L474.6666666666666 192.0000000000001L472.7466666666667 186.0266666666668L425.3866666666667 101.5466666666667C423.6800000000001 98.3466666666668 420.0533333333334 96 416 96H320C315.9466666666667 96 312.32 98.3466666666667 310.6133333333334 101.5466666666667L263.2533333333334 186.0266666666668L261.3333333333333 192.0000000000001L263.2533333333334 197.9733333333334L310.6133333333334 282.4533333333334C312.32 285.6533333333334 315.9466666666667 288 320 288H416z" />
+    <glyph glyph-name="hexagon-outline"
+      unicode="&#xF2D9;"
+      horiz-adv-x="512" d=" M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
+    <glyph glyph-name="hexagon-slice-1"
+      unicode="&#xFAC2;"
+      horiz-adv-x="512" d=" M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667M256 192V334.5066666666667L382.7200000000001 263.2533333333334L256 192z" />
+    <glyph glyph-name="hexagon-slice-2"
+      unicode="&#xFAC3;"
+      horiz-adv-x="512" d=" M384 119.8933333333333L256 192V334.5066666666667L384 262.6133333333334V119.8933333333333M448 95.9999999999999C448 87.8933333333333 443.52 80.8533333333332 436.6933333333333 77.2266666666666L268.16 -17.4933333333334C264.7466666666666 -20.0533333333334 260.48 -21.3333333333334 256 -21.3333333333334C251.5199999999999 -21.3333333333334 247.2533333333333 -20.0533333333334 243.84 -17.4933333333334L75.3066666666666 77.2266666666666C68.48 80.8533333333334 63.9999999999999 87.8933333333333 63.9999999999999 95.9999999999999V288C63.9999999999999 296.1066666666666 68.4799999999999 303.1466666666666 75.3066666666666 306.7733333333333L243.84 401.4933333333333C247.2533333333333 404.0533333333333 251.5199999999999 405.3333333333333 256 405.3333333333333C260.48 405.3333333333333 264.7466666666666 404.0533333333333 268.16 401.4933333333333L436.6933333333333 306.7733333333333C443.52 303.1466666666666 448 296.1066666666666 448 288V95.9999999999999M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
+    <glyph glyph-name="hexagon-slice-3"
+      unicode="&#xFAC4;"
+      horiz-adv-x="512" d=" M256 334.5066666666667L384 262.6133333333334V121.3866666666667L256 49.4933333333333V334.5066666666667M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
+    <glyph glyph-name="hexagon-slice-4"
+      unicode="&#xFAC5;"
+      horiz-adv-x="512" d=" M256 334.5066666666667L384 262.6133333333334V121.3866666666667L256 49.4933333333333L129.28 120.7466666666666L256 192V334.5066666666667M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
+    <glyph glyph-name="hexagon-slice-5"
+      unicode="&#xFAC6;"
+      horiz-adv-x="512" d=" M256 334.5066666666667L384 262.6133333333334V121.3866666666667L256 49.4933333333333L128 121.3866666666667V262.6133333333334L256 192V334.5066666666667M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
+    <glyph glyph-name="hexagon-slice-6"
+      unicode="&#xFAC7;"
+      horiz-adv-x="512" d=" M256 334.5066666666667L384 262.6133333333334V121.3866666666667L256 49.4933333333333L128 121.3866666666667V262.6133333333334L256 334.5066666666667M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667z" />
+    <glyph glyph-name="hexagram"
+      unicode="&#xFAC8;"
+      horiz-adv-x="512" d=" M309.3333333333333 284.5866666666667L440.32 299.3066666666667L362.6666666666667 192L441.1733333333333 85.9733333333334L309.3333333333333 99.84L256.64 -21.3333333333333L202.6666666666667 99.4133333333334L71.68 84.6933333333333L149.3333333333333 192L70.8266666666667 298.0266666666667L202.6666666666667 284.16L255.36 405.3333333333333L309.3333333333333 284.5866666666667z" />
+    <glyph glyph-name="hexagram-outline"
+      unicode="&#xFAC9;"
+      horiz-adv-x="512" d=" M256 298.6666666666667L283.7333333333334 238.9333333333334L352 247.4666666666667L309.3333333333333 192L349.8666666666666 138.6666666666667L281.6 147.2000000000001L256 85.3333333333334L228.2666666666667 145.0666666666667L160 136.5333333333334L202.6666666666667 192L162.1333333333333 245.3333333333334L230.4 236.8L256 298.6666666666667M256 405.3333333333333L202.6666666666667 283.7333333333334L70.4 298.6666666666667L149.3333333333333 192L72.5333333333333 85.3333333333334L204.8 100.2666666666667L256 -21.3333333333333L309.3333333333333 100.2666666666667L441.6 87.4666666666666L362.6666666666667 192L439.4666666666667 298.6666666666667L307.2000000000001 283.7333333333334L256 405.3333333333333z" />
+    <glyph glyph-name="high-definition"
+      unicode="&#xF7CE;"
+      horiz-adv-x="512" d=" M106.6666666666667 298.6666666666667H149.3333333333333V213.3333333333334H192V298.6666666666667H234.6666666666667V85.3333333333334H192V170.6666666666667H149.3333333333333V85.3333333333334H106.6666666666667V298.6666666666667M277.3333333333333 298.6666666666667H341.3333333333333C376.7466666666667 298.6666666666667 405.3333333333333 270.0800000000001 405.3333333333333 234.6666666666667V149.3333333333334C405.3333333333333 113.92 376.7466666666667 85.3333333333334 341.3333333333333 85.3333333333334H277.3333333333333V298.6666666666667M341.3333333333333 128C353.0666666666667 128 362.6666666666667 137.6 362.6666666666667 149.3333333333334V234.6666666666667C362.6666666666667 246.4000000000001 353.0666666666667 256 341.3333333333333 256H320V128H341.3333333333333z" />
+    <glyph glyph-name="high-definition-box"
+      unicode="&#xF877;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M234.6666666666667 128H202.6666666666667V170.6666666666667H160V128H128V256H160V202.6666666666667H202.6666666666667V256H234.6666666666667V128M277.3333333333333 256H362.6666666666667C374.4 256 384 246.4000000000001 384 234.6666666666667V149.3333333333334C384 137.6 374.4 128 362.6666666666667 128H277.3333333333333V256M309.3333333333333 160H352V224H309.3333333333333V160z" />
+    <glyph glyph-name="highway"
+      unicode="&#xF5F7;"
+      horiz-adv-x="512" d=" M213.3333333333333 405.3333333333333L170.6666666666667 277.3333333333334H234.6666666666667V405.3333333333333H213.3333333333333M277.3333333333333 405.3333333333333V277.3333333333334H341.3333333333333L298.6666666666667 405.3333333333333H277.3333333333333M42.6666666666667 256V234.6666666666667H85.3333333333333V213.3333333333334H128V234.6666666666667H384L385.28 213.3333333333334H426.6666666666667V234.6666666666667H469.3333333333333V256H42.6666666666667M149.3333333333333 213.3333333333334L71.2533333333333 -21.3333333333333H234.6666666666667V213.3333333333334H149.3333333333333M277.3333333333333 213.3333333333334V-21.3333333333333H440.7466666666667L362.6666666666667 213.3333333333334H277.3333333333333z" />
+    <glyph glyph-name="hinduism"
+      unicode="&#xF972;"
+      horiz-adv-x="512" d=" M320 405.3333333333333L288 373.3333333333334L320 341.3333333333334L352 373.3333333333334L320 405.3333333333333M234.6666666666667 384C213.3333333333333 256 362.6666666666667 234.6666666666667 426.6666666666667 320L384 352C362.6666666666667 320 277.3333333333333 277.3333333333334 234.6666666666667 384M192 298.6666666666667C149.3333333333333 298.6666666666667 96 266.6666666666667 96 266.6666666666667L128 213.3333333333334C149.3333333333333 234.6666666666667 192 245.3333333333334 213.3333333333333 234.6666666666667C256 213.3333333333334 192 170.6666666666667 149.3333333333333 192V117.3333333333334C213.3333333333333 149.3333333333334 256 106.6666666666667 234.6666666666667 74.6666666666667C170.6666666666667 -21.3333333333333 64 106.6666666666667 64 170.6666666666667C21.3333333333333 42.6666666666667 128 -21.3333333333333 192 -21.3333333333333S298.6666666666667 21.3333333333334 266.6666666666667 128H298.6666666666667C266.6666666666667 32 384 -64 448 64C469.3333333333333 106.6666666666667 469.3333333333333 245.3333333333334 362.6666666666667 245.3333333333334C277.3333333333333 245.3333333333334 298.6666666666667 128 224 160C298.6666666666667 234.6666666666667 256 298.6666666666667 192 298.6666666666667M405.3333333333333 192C469.3333333333333 128 320 0 320 128C320 170.6666666666667 362.6666666666667 224 405.3333333333333 192z" />
+    <glyph glyph-name="history"
+      unicode="&#xF2DA;"
+      horiz-adv-x="512" d=" M288 277.3333333333334H256V170.6666666666667L347.3066666666667 116.48L362.6666666666667 142.2933333333334L288 186.6666666666668V277.3333333333334M277.3333333333333 384C171.3066666666667 384 85.3333333333333 298.0266666666667 85.3333333333333 192H21.3333333333333L105.8133333333333 106.0266666666666L192 192H128C128 274.5600000000001 194.7733333333333 341.3333333333334 277.3333333333333 341.3333333333334S426.6666666666667 274.5600000000001 426.6666666666667 192S359.8933333333333 42.6666666666667 277.3333333333333 42.6666666666667C236.16 42.6666666666667 198.8266666666667 59.52 171.9466666666666 86.6133333333334L141.6533333333333 56.3200000000001C176.4266666666667 21.3333333333334 224 0 277.3333333333333 0C383.36 0 469.3333333333333 85.9733333333334 469.3333333333333 192S383.36 384 277.3333333333333 384" />
+    <glyph glyph-name="hockey-puck"
+      unicode="&#xF878;"
+      horiz-adv-x="512" d=" M256 341.3333333333334C138.6666666666667 341.3333333333334 42.6666666666667 307.8400000000001 42.6666666666667 266.6666666666667S138.6666666666667 192 256 192S469.3333333333333 225.4933333333334 469.3333333333333 266.6666666666667S373.3333333333333 341.3333333333334 256 341.3333333333334M42.6666666666667 197.12V96C42.6666666666667 54.8266666666667 138.6666666666667 21.3333333333334 256 21.3333333333334S469.3333333333333 54.8266666666667 469.3333333333333 96V197.12C455.04 187.3066666666667 439.04 179.84 420.9066666666667 173.6533333333334C375.8933333333333 157.8666666666667 318.9333333333333 149.3333333333334 256 149.3333333333334S136.1066666666667 157.8666666666667 91.0933333333333 173.6533333333334C72.96 179.84 56.96 187.3066666666667 42.6666666666667 197.12z" />
+    <glyph glyph-name="hockey-sticks"
+      unicode="&#xF879;"
+      horiz-adv-x="512" d=" M161.7066666666667 384L107.7333333333333 349.6533333333333L192.8533333333333 216.1066666666667L230.8266666666667 275.6266666666667L161.7066666666667 384M350.5066666666667 384L160 85.3333333333334H42.6666666666667V0H181.3333333333333L404.48 349.6533333333333L350.5066666666667 384M319.36 136.7466666666667L281.3866666666667 77.2266666666667L330.6666666666667 0H469.3333333333333V85.3333333333334H352L319.36 136.7466666666667z" />
+    <glyph glyph-name="hololens"
+      unicode="&#xF2DB;"
+      horiz-adv-x="512" d=" M256 277.3333333333334S469.3333333333333 277.3333333333334 469.3333333333333 213.3333333333334C469.3333333333333 213.3333333333334 471.2533333333333 141.6533333333334 464 144C448 213.3333333333334 256 213.3333333333334 256 213.3333333333334S64 213.3333333333334 48 144C40.7466666666667 141.6533333333334 42.6666666666667 213.3333333333334 42.6666666666667 213.3333333333334C42.6666666666667 277.3333333333334 256 277.3333333333334 256 277.3333333333334M256 192C426.6666666666667 192 442.6666666666667 144 442.6666666666667 144C421.3333333333333 80 405.3333333333333 64 320 64C256 64 277.3333333333333 96 256 96S256 64 192 64C106.6666666666667 64 90.6666666666667 80 69.3333333333333 144C69.3333333333333 144 85.3333333333333 192 256 192z" />
+    <glyph glyph-name="home"
+      unicode="&#xF2DC;"
+      horiz-adv-x="512" d=" M213.3333333333333 21.3333333333334V149.3333333333334H298.6666666666667V21.3333333333334H405.3333333333333V192H469.3333333333333L256 384L42.6666666666667 192H106.6666666666667V21.3333333333334H213.3333333333333z" />
+    <glyph glyph-name="home-account"
+      unicode="&#xF825;"
+      horiz-adv-x="512" d=" M256 384L42.6666666666667 192H106.6666666666667V21.3333333333334H405.3333333333333V192H469.3333333333333L256 384M256 261.3333333333334C282.4533333333333 261.3333333333334 304 239.7866666666667 304 213.3333333333334S282.4533333333333 165.3333333333334 256 165.3333333333334S208 186.88 208 213.3333333333334S229.5466666666667 261.3333333333334 256 261.3333333333334M256 128C288 128 352 112 352 80V64H160V80C160 112 224 128 256 128z" />
+    <glyph glyph-name="home-alert"
+      unicode="&#xF87A;"
+      horiz-adv-x="512" d=" M256 384L42.6666666666667 192H106.6666666666667V21.3333333333334H405.3333333333333V192H469.3333333333333L256 384M277.3333333333333 64H234.6666666666667V106.6666666666667H277.3333333333333V64M277.3333333333333 149.3333333333334H234.6666666666667V256H277.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="home-assistant"
+      unicode="&#xF7CF;"
+      horiz-adv-x="512" d=" M465.0666666666667 170.6666666666667H426.6666666666667V0H277.3333333333333V71.04L336.8533333333333 130.56L352 128C376.7466666666667 128 396.8 148.0533333333333 396.8 172.8C396.8 197.5466666666666 376.7466666666667 217.6 352 217.6C327.2533333333334 217.6 307.2 197.5466666666666 307.2 172.8L309.3333333333333 157.6533333333333L277.3333333333333 125.2266666666666V242.1333333333334C291.4133333333333 249.8133333333334 300.8 264.5333333333334 300.8 281.6C300.8 306.3466666666667 280.7466666666667 326.4 256 326.4C231.2533333333334 326.4 211.2 306.3466666666667 211.2 281.6C211.2 264.5333333333333 220.5866666666667 249.8133333333334 234.6666666666667 242.1333333333334V125.2266666666667L202.6666666666667 157.6533333333333L204.8 172.8C204.8 197.5466666666666 184.7466666666667 217.6 160 217.6C135.2533333333333 217.6 115.2 197.5466666666666 115.2 172.8C115.2 148.0533333333333 135.2533333333333 128 160 128L175.1466666666667 130.56L234.6666666666667 71.04V0H85.3333333333333V170.6666666666667H48C39.04 170.6666666666667 30.2933333333333 170.6666666666667 30.2933333333333 175.1466666666667C30.5066666666667 179.84 39.4666666666667 188.8000000000001 48.64 197.9733333333334L234.6666666666667 384C241.7066666666667 391.04 248.96 398.2933333333334 256 398.2933333333334C263.04 398.2933333333334 270.2933333333333 391.04 277.3333333333333 384L362.6666666666667 298.6666666666667V320H405.3333333333333V256L464.64 196.6933333333334C473.1733333333333 188.16 481.92 179.4133333333334 482.1333333333333 174.9333333333334C482.1333333333333 170.6666666666668 473.6 170.6666666666668 465.0666666666667 170.6666666666668M160 192C170.6666666666667 192 179.2 183.4666666666667 179.2 172.8S170.6666666666667 153.6 160 153.6S140.8 162.1333333333333 140.8 172.8S149.3333333333333 192 160 192M352 192C362.6666666666667 192 371.2 183.4666666666667 371.2 172.8S362.6666666666667 153.6 352 153.6S332.8 162.1333333333333 332.8 172.8S341.3333333333333 192 352 192M256 300.8C266.6666666666667 300.8 275.2 292.2666666666667 275.2 281.6S266.6666666666667 262.4 256 262.4S236.8 270.9333333333334 236.8 281.6S245.3333333333333 300.8 256 300.8z" />
+    <glyph glyph-name="home-automation"
+      unicode="&#xF7D0;"
+      horiz-adv-x="512" d=" M256 384L42.6666666666667 192H106.6666666666667V21.3333333333334H405.3333333333333V192H469.3333333333333L256 384M256 266.6666666666667C305.92 266.6666666666667 351.1466666666667 246.8266666666667 384 214.6133333333334L358.4 189.4400000000001C332.3733333333334 215.2533333333333 296.1066666666667 231.04 256 231.04S179.6266666666667 215.2533333333333 153.6 189.4400000000001L128 214.6133333333334C160.8533333333333 246.8266666666667 206.08 266.6666666666667 256 266.6666666666667M256 195.6266666666667C285.8666666666667 195.6266666666667 312.96 183.68 332.8 164.2666666666667L307.2 139.3066666666667C294.1866666666667 152.1066666666667 276.0533333333334 160 256 160S217.8133333333333 152.1066666666667 204.8 139.3066666666667L179.2 164.2666666666667C199.04 183.68 226.1333333333334 195.6266666666667 256 195.6266666666667M256 124.3733333333333C276.0533333333333 124.3733333333333 292.2666666666667 108.5866666666667 292.2666666666667 88.96C292.2666666666667 69.3333333333334 276.0533333333333 53.3333333333334 256 53.3333333333334S219.7333333333334 69.3333333333334 219.7333333333334 88.96C219.7333333333334 108.5866666666667 235.9466666666667 124.3733333333334 256 124.3733333333334z" />
+    <glyph glyph-name="home-circle"
+      unicode="&#xF7D1;"
+      horiz-adv-x="512" d=" M406.8266666666667 342.8266666666667C367.36 384 312.7466666666667 406.1866666666667 256 405.3333333333333C199.2533333333333 406.1866666666667 144.8533333333333 384 105.3866666666667 342.8266666666667C64 303.36 41.8133333333333 248.7466666666667 42.6666666666667 192C41.8133333333333 135.2533333333333 64 80.8533333333334 105.1733333333333 41.3866666666667C144.64 0 199.2533333333333 -22.1866666666666 256 -21.3333333333333C312.7466666666667 -22.1866666666666 367.1466666666667 0 406.6133333333333 41.1733333333333C448 80.64 470.1866666666666 135.2533333333333 469.3333333333333 192C470.1866666666666 248.7466666666667 448 303.36 406.8266666666667 342.8266666666667M362.6666666666667 192V64H288V170.6666666666667H224V64H149.3333333333333V192H106.6666666666667L256 341.3333333333334L416 192H362.6666666666667z" />
+    <glyph glyph-name="home-currency-usd"
+      unicode="&#xF8AE;"
+      horiz-adv-x="512" d=" M256 384L469.3333333333333 192H405.3333333333333V21.3333333333334H106.6666666666667V192H42.6666666666667L256 384M196.6933333333333 257.4933333333334C186.6666666666667 247.4666666666667 181.3333333333333 234.0266666666667 181.3333333333333 218.6666666666667C181.3333333333333 182.8266666666667 224.8533333333333 169.1733333333334 250.88 160.8533333333334C282.88 150.8266666666667 287.36 144.8533333333334 288 144C288 128 259.2 128 256 128C242.56 128 235.3066666666667 130.56 231.68 132.6933333333334C227.6266666666667 135.04 224 138.6666666666667 224 149.3333333333334H181.3333333333333C181.3333333333333 118.8266666666667 197.12 103.2533333333333 210.1333333333333 96C217.1733333333333 91.7333333333334 225.4933333333334 88.7466666666667 234.6666666666667 87.04V64H277.3333333333333V87.2533333333333C309.9733333333333 93.6533333333334 330.6666666666667 114.7733333333333 330.6666666666667 144C330.6666666666667 177.7066666666667 296.1066666666667 191.36 263.68 201.6C230.4 212.0533333333334 224.64 218.24 224 218.6666666666667C224 224 225.4933333333334 225.92 226.9866666666667 227.4133333333334C231.4666666666667 231.8933333333334 242.3466666666667 234.6666666666667 256 234.6666666666667C270.5066666666667 234.6666666666667 288 231.8933333333333 288 218.6666666666667H330.6666666666667C330.6666666666667 248.7466666666667 310.6133333333334 269.44 277.3333333333333 275.4133333333334V298.6666666666667H234.6666666666667V275.6266666666667C218.88 272.8533333333334 205.8666666666667 266.6666666666667 196.6933333333333 257.4933333333334z" />
+    <glyph glyph-name="home-heart"
+      unicode="&#xF826;"
+      horiz-adv-x="512" d=" M42.6666666666667 192L256 384L469.3333333333333 192H405.3333333333333V21.3333333333334H106.6666666666667V192H42.6666666666667M256 64L271.36 78.08C326.4 128 362.6666666666667 160.8533333333334 362.6666666666667 201.1733333333334C362.6666666666667 234.0266666666667 336.8533333333333 259.8400000000001 304 259.8400000000001C285.44 259.8400000000001 267.7333333333334 251.0933333333334 256 237.44C244.2666666666667 251.0933333333334 226.56 259.8400000000001 208 259.8400000000001C175.1466666666667 259.8400000000001 149.3333333333333 234.0266666666667 149.3333333333333 201.1733333333334C149.3333333333333 160.8533333333334 185.6 128 240.64 78.08L256 64z" />
+    <glyph glyph-name="home-lock"
+      unicode="&#xF8EA;"
+      horiz-adv-x="512" d=" M256 384L42.6666666666667 192H106.6666666666667V21.3333333333334H405.3333333333333V192H469.3333333333333L256 384M256 256C291.4133333333333 256 320 227.4133333333334 320 192V170.6666666666667H341.3333333333333V85.3333333333334H170.6666666666667V170.6666666666667H192V192C192 227.4133333333334 220.5866666666667 256 256 256M256 213.3333333333334C244.2666666666667 213.3333333333334 234.6666666666667 203.7333333333334 234.6666666666667 192V170.6666666666667H277.3333333333333V192C277.3333333333333 202.6666666666667 268.8 213.3333333333334 256 213.3333333333334z" />
+    <glyph glyph-name="home-lock-open"
+      unicode="&#xF8EB;"
+      horiz-adv-x="512" d=" M256 384L42.6666666666667 192H106.6666666666667V21.3333333333334H405.3333333333333V192H469.3333333333333L256 384M256 277.3333333333334C291.4133333333333 277.3333333333334 320 248.7466666666667 320 213.3333333333334H277.3333333333333C277.3333333333333 225.0666666666667 267.7333333333334 234.6666666666667 256 234.6666666666667S234.6666666666667 225.0666666666667 234.6666666666667 213.3333333333334V170.6666666666667H341.3333333333333V85.3333333333334H170.6666666666667V170.6666666666667H192V213.3333333333334C192 248.7466666666667 220.5866666666667 277.3333333333334 256 277.3333333333334z" />
+    <glyph glyph-name="home-map-marker"
+      unicode="&#xF5F8;"
+      horiz-adv-x="512" d=" M256 384L42.6666666666667 192H106.6666666666667V21.3333333333334H405.3333333333333V192H469.3333333333333L256 384M256 283.7333333333334C300.8 283.7333333333334 337.0666666666667 247.4666666666667 337.0666666666667 202.6666666666667C337.0666666666667 138.6666666666667 256 64 256 64S174.9333333333333 138.6666666666667 174.9333333333333 202.6666666666667C174.9333333333333 247.4666666666667 211.2 283.7333333333334 256 283.7333333333334M256 234.6666666666667C238.2933333333333 234.6666666666667 224 220.3733333333333 224 202.6666666666667S238.2933333333333 170.6666666666667 256 170.6666666666667S288 184.96 288 202.6666666666667S273.7066666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="home-minus"
+      unicode="&#xF973;"
+      horiz-adv-x="512" d=" M256 384L42.6666666666667 192H106.6666666666667V21.3333333333334H405.3333333333333V192H469.3333333333333L256 384M341.3333333333333 170.6666666666667V128H170.6666666666667V170.6666666666667H341.3333333333333z" />
+    <glyph glyph-name="home-modern"
+      unicode="&#xF2DD;"
+      horiz-adv-x="512" d=" M128 0V277.3333333333334C128 300.8 147.2 320 170.6666666666667 320L341.3333333333333 384V320C364.8 320 384 300.8 384 277.3333333333334V0H256V106.6666666666667H170.6666666666667V0H128M298.6666666666667 42.6666666666667H341.3333333333333V106.6666666666667H298.6666666666667V42.6666666666667M170.6666666666667 170.6666666666667H213.3333333333333V256H170.6666666666667V170.6666666666667M256 170.6666666666667H341.3333333333333V256H256V170.6666666666667z" />
+    <glyph glyph-name="home-outline"
+      unicode="&#xF6A0;"
+      horiz-adv-x="512" d=" M192 42.6666666666667V170.6666666666667H320V42.6666666666667H384V215.2533333333333L256 343.2533333333334L128 215.2533333333333V42.6666666666667H192M256 403.4133333333334L467.4133333333333 192H426.6666666666667V0H277.3333333333333V128H234.6666666666667V0H85.3333333333333V192H44.5866666666667L256 403.4133333333334z" />
+    <glyph glyph-name="home-plus"
+      unicode="&#xF974;"
+      horiz-adv-x="512" d=" M256 384L42.6666666666667 192H106.6666666666667V21.3333333333334H405.3333333333333V192H469.3333333333333L256 384M234.6666666666667 234.6666666666667H277.3333333333333V170.6666666666667H341.3333333333333V128H277.3333333333333V64H234.6666666666667V128H170.6666666666667V170.6666666666667H234.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="home-variant"
+      unicode="&#xF2DE;"
+      horiz-adv-x="512" d=" M256 384L426.6666666666667 256V0H320V149.3333333333334H192V0H85.3333333333333V256L256 384z" />
+    <glyph glyph-name="home-variant-outline"
+      unicode="&#xFB83;"
+      horiz-adv-x="512" d=" M192 170.6666666666667H320V42.6666666666667H384V234.6666666666667L256 330.6666666666667L128 234.6666666666667V42.6666666666667H192V170.6666666666667M85.3333333333333 0V256L256 384L426.6666666666667 256V0H85.3333333333333z" />
+    <glyph glyph-name="hook"
+      unicode="&#xF6E1;"
+      horiz-adv-x="512" d=" M384 320C384 281.1733333333334 357.5466666666667 247.2533333333334 320 237.6533333333334V85.3333333333334C320 26.4533333333334 272.2133333333333 -21.3333333333333 213.3333333333333 -21.3333333333333S106.6666666666667 26.4533333333334 106.6666666666667 85.3333333333334V192L213.3333333333333 85.3333333333334H149.3333333333333C149.3333333333333 49.92 177.92 21.3333333333334 213.3333333333333 21.3333333333334S277.3333333333333 49.92 277.3333333333333 85.3333333333334V237.6533333333334C239.5733333333333 247.4666666666667 213.3333333333333 281.6 213.3333333333333 320.6400000000001C213.3333333333333 367.7866666666667 251.7333333333334 405.3333333333333 298.6666666666667 405.3333333333333C346.0266666666667 405.3333333333333 384 367.1466666666667 384 320M298.6666666666667 277.3333333333334C322.1333333333334 277.3333333333334 341.3333333333333 296.5333333333334 341.3333333333333 320S322.1333333333334 362.6666666666667 298.6666666666667 362.6666666666667S256 343.4666666666667 256 320S275.2 277.3333333333334 298.6666666666667 277.3333333333334z" />
+    <glyph glyph-name="hook-off"
+      unicode="&#xF6E2;"
+      horiz-adv-x="512" d=" M277.3333333333333 237.6533333333334V209.4933333333334L320 166.8266666666667V237.6533333333334C365.6533333333333 249.3866666666667 393.1733333333333 295.8933333333334 381.2266666666667 341.3333333333334C369.4933333333334 387.2000000000001 322.9866666666667 414.7200000000001 277.3333333333333 402.9866666666667C231.68 391.04 204.16 344.5333333333334 216.1066666666666 298.6666666666668C224 268.8000000000001 247.2533333333334 245.3333333333334 277.3333333333333 237.6533333333334M298.6666666666667 362.6666666666667C322.1333333333334 362.6666666666667 341.3333333333333 343.4666666666667 341.3333333333333 320S322.1333333333334 277.3333333333334 298.6666666666667 277.3333333333334S256 296.5333333333334 256 320S275.2 362.6666666666667 298.6666666666667 362.6666666666667M399.5733333333333 -21.3333333333333L317.0133333333333 61.2266666666667C303.1466666666667 4.0533333333334 245.3333333333333 -31.1466666666666 188.3733333333333 -17.4933333333333C140.8 -5.9733333333334 106.6666666666667 36.48 106.6666666666667 85.3333333333334V192L213.3333333333333 85.3333333333334H149.3333333333333C149.3333333333333 49.92 177.92 21.3333333333334 213.3333333333333 21.3333333333334S277.3333333333333 49.92 277.3333333333333 85.3333333333334V100.9066666666667L42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L277.3333333333333 155.3066666666667L320 112.64L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333z" />
+    <glyph glyph-name="hops"
+      unicode="&#xF2DF;"
+      horiz-adv-x="512" d=" M448 192S266.6666666666667 234.6666666666667 266.6666666666667 405.3333333333333C266.6666666666667 405.3333333333333 448 405.3333333333333 448 192M64 192C64 405.3333333333333 245.3333333333333 405.3333333333333 245.3333333333333 405.3333333333333C245.3333333333333 234.6666666666667 64 192 64 192M256 309.3333333333334S277.3333333333333 263.2533333333334 320 224C314.88 145.92 256 106.6666666666667 256 106.6666666666667S197.12 145.92 192 224C234.6666666666667 263.2533333333334 256 309.3333333333334 256 309.3333333333334M442.6666666666667 165.3333333333334S426.6666666666667 85.3333333333334 384 42.6666666666667C384 42.6666666666667 331.3066666666666 77.6533333333334 305.7066666666667 132.0533333333334C321.0666666666667 158.2933333333334 330.6666666666667 189.4400000000001 336 210.56C365.44 188.16 400 170.6666666666667 442.6666666666667 165.3333333333334M330.6666666666667 58.6666666666667C309.3333333333333 16 256 -16 256 -16S202.6666666666667 16 181.3333333333333 58.6666666666667C181.3333333333333 58.6666666666667 204.5866666666667 78.08 220.8 110.9333333333333C230.8266666666667 99.2 242.3466666666667 89.8133333333334 256 85.3333333333334C269.6533333333333 89.8133333333334 281.1733333333333 99.2 291.2 110.9333333333333C307.4133333333333 78.08 330.6666666666667 58.6666666666667 330.6666666666667 58.6666666666667M69.3333333333333 165.3333333333334C112 170.6666666666667 146.56 188.16 176 210.56C181.3333333333333 189.4400000000001 190.9333333333333 158.2933333333334 206.2933333333333 132.0533333333334C180.6933333333333 77.6533333333334 128 42.6666666666667 128 42.6666666666667C85.3333333333333 85.3333333333334 69.3333333333333 165.3333333333334 69.3333333333333 165.3333333333334z" />
+    <glyph glyph-name="horseshoe"
+      unicode="&#xFA57;"
+      horiz-adv-x="512" d=" M405.3333333333333 362.6666666666667H426.6666666666667V426.6666666666667H341.3333333333333V362.6666666666667S384 277.3333333333334 384 192S341.3333333333333 42.6666666666667 256 42.6666666666667S128 106.6666666666667 128 192S170.6666666666667 362.6666666666667 170.6666666666667 362.6666666666667V426.6666666666667H85.3333333333333V362.6666666666667H106.6666666666667S42.6666666666667 277.3333333333334 42.6666666666667 149.3333333333334C42.6666666666667 42.6666666666667 149.3333333333333 -42.6666666666666 256 -42.6666666666666S469.3333333333333 42.6666666666667 469.3333333333333 149.3333333333334C469.3333333333333 277.3333333333334 405.3333333333333 362.6666666666667 405.3333333333333 362.6666666666667M85.3333333333333 170.6666666666667C72.5333333333333 170.6666666666667 64 179.2000000000001 64 192S72.5333333333333 213.3333333333334 85.3333333333333 213.3333333333334S106.6666666666667 204.8 106.6666666666667 192S98.1333333333333 170.6666666666667 85.3333333333333 170.6666666666667M128 42.6666666666667C115.2 42.6666666666667 106.6666666666667 51.2 106.6666666666667 64S115.2 85.3333333333334 128 85.3333333333334S149.3333333333333 76.8000000000001 149.3333333333333 64S140.8 42.6666666666667 128 42.6666666666667M256 -21.3333333333333C243.2 -21.3333333333333 234.6666666666667 -12.8 234.6666666666667 0S243.2 21.3333333333334 256 21.3333333333334S277.3333333333333 12.8000000000001 277.3333333333333 0S268.8 -21.3333333333333 256 -21.3333333333333M384 42.6666666666667C371.2 42.6666666666667 362.6666666666667 51.2 362.6666666666667 64S371.2 85.3333333333334 384 85.3333333333334S405.3333333333333 76.8000000000001 405.3333333333333 64S396.8 42.6666666666667 384 42.6666666666667M426.6666666666667 170.6666666666667C413.8666666666666 170.6666666666667 405.3333333333333 179.2000000000001 405.3333333333333 192S413.8666666666666 213.3333333333334 426.6666666666667 213.3333333333334S448 204.8 448 192S439.4666666666667 170.6666666666667 426.6666666666667 170.6666666666667z" />
+    <glyph glyph-name="hospital"
+      unicode="&#xF2E0;"
+      horiz-adv-x="512" d=" M384 149.3333333333334H298.6666666666667V64H213.3333333333333V149.3333333333334H128V234.6666666666667H213.3333333333333V320H298.6666666666667V234.6666666666667H384M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="hospital-building"
+      unicode="&#xF2E1;"
+      horiz-adv-x="512" d=" M42.6666666666667 -21.3333333333333V298.6666666666667C42.6666666666667 310.4 52.2666666666667 320 64 320H149.3333333333333V405.3333333333333H362.6666666666667V320H448C459.7333333333333 320 469.3333333333333 310.4 469.3333333333333 298.6666666666667V-21.3333333333333H298.6666666666667V85.3333333333334H213.3333333333333V-21.3333333333333H42.6666666666667M192 362.6666666666667V234.6666666666667H234.6666666666667V277.3333333333334H277.3333333333333V234.6666666666667H320V362.6666666666667H277.3333333333333V320H234.6666666666667V362.6666666666667H192M85.3333333333333 21.3333333333334H170.6666666666667V85.3333333333334H85.3333333333333V21.3333333333334M85.3333333333333 128H170.6666666666667V192H85.3333333333333V128M341.3333333333333 21.3333333333334H426.6666666666667V85.3333333333334H341.3333333333333V21.3333333333334M341.3333333333333 128H426.6666666666667V192H341.3333333333333V128M213.3333333333333 128H298.6666666666667V192H213.3333333333333V128z" />
+    <glyph glyph-name="hospital-marker"
+      unicode="&#xF2E2;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C338.3466666666667 405.3333333333333 405.3333333333333 338.56 405.3333333333333 256C405.3333333333333 144 256 -21.3333333333333 256 -21.3333333333333S106.6666666666667 144 106.6666666666667 256C106.6666666666667 338.56 173.44 405.3333333333333 256 405.3333333333333M192 320V192H234.6666666666667V234.6666666666667H277.3333333333333V192H320V320H277.3333333333333V277.3333333333334H234.6666666666667V320H192z" />
+    <glyph glyph-name="hot-tub"
+      unicode="&#xF827;"
+      horiz-adv-x="512" d=" M149.3333333333333 362.6666666666667C172.8 362.6666666666667 192 343.4666666666667 192 320S172.8 277.3333333333334 149.3333333333333 277.3333333333334S106.6666666666667 296.5333333333334 106.6666666666667 320S125.8666666666667 362.6666666666667 149.3333333333333 362.6666666666667M237.8666666666667 192H469.3333333333333V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V192H106.6666666666667V208C106.6666666666667 234.6666666666667 128 256 154.6666666666667 256H155.3066666666667C162.56 256 169.6 254.08 175.7866666666667 251.0933333333334C181.3333333333333 248.5333333333334 186.4533333333333 245.3333333333334 190.5066666666667 240.4266666666667L220.3733333333333 207.36C225.28 201.8133333333333 231.2533333333334 196.6933333333333 237.8666666666667 192M149.3333333333333 21.3333333333334V149.3333333333334H106.6666666666667V21.3333333333334H149.3333333333333M234.6666666666667 21.3333333333334V149.3333333333334H192V21.3333333333334H234.6666666666667M320 21.3333333333334V149.3333333333334H277.3333333333333V21.3333333333334H320M405.3333333333333 21.3333333333334V149.3333333333334H362.6666666666667V21.3333333333334H405.3333333333333M397.8666666666666 322.9866666666667C419.84 301.6533333333334 430.08 272.8533333333334 425.6 243.84L424.32 234.6666666666667H384L385.92 247.2533333333334C389.12 264.1066666666667 384 280.9600000000001 371.6266666666666 294.1866666666667L370.1333333333333 295.4666666666667C348.1599999999999 317.0133333333333 338.1333333333333 345.8133333333334 342.3999999999999 374.8266666666667L343.6799999999999 384H384L382.08 371.4133333333334C378.88 354.56 384 337.7066666666667 396.3733333333334 324.48L397.8666666666667 322.9866666666667M312.5333333333334 322.9866666666667C334.5066666666667 301.6533333333333 344.7466666666668 272.8533333333334 340.2666666666667 243.84L338.9866666666667 234.6666666666667H298.6666666666667L300.5866666666667 247.2533333333334C303.7866666666667 264.1066666666667 298.6666666666667 280.9600000000001 286.2933333333333 294.1866666666667L284.8 295.4666666666667C262.8266666666667 317.0133333333333 252.8 345.8133333333334 257.0666666666666 374.8266666666667L258.3466666666667 384H298.6666666666667L296.7466666666667 371.4133333333334C293.5466666666666 354.56 298.6666666666667 337.7066666666667 311.04 324.48L312.5333333333333 322.9866666666667z" />
+    <glyph glyph-name="hotel"
+      unicode="&#xF2E3;"
+      horiz-adv-x="512" d=" M405.3333333333333 298.6666666666667H234.6666666666667V149.3333333333334H64V341.3333333333334H21.3333333333333V21.3333333333334H64V85.3333333333334H448V21.3333333333334H490.6666666666666V213.3333333333334C490.6666666666666 260.48 452.48 298.6666666666667 405.3333333333333 298.6666666666667M149.3333333333333 170.6666666666667C184.7466666666667 170.6666666666667 213.3333333333333 199.2533333333333 213.3333333333333 234.6666666666667S184.7466666666667 298.6666666666667 149.3333333333333 298.6666666666667S85.3333333333333 270.0800000000001 85.3333333333333 234.6666666666667S113.92 170.6666666666667 149.3333333333333 170.6666666666667z" />
+    <glyph glyph-name="houzz"
+      unicode="&#xF2E4;"
+      horiz-adv-x="512" d=" M298.6666666666667 1.0666666666667H426.6666666666667V218.0266666666667L170.6666666666667 291.4133333333334V382.9333333333334H85.3333333333333V1.0666666666667H213.3333333333333V121.3866666666667H298.6666666666667V1.0666666666667z" />
+    <glyph glyph-name="houzz-box"
+      unicode="&#xF2E5;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M288 48.8533333333334H384V211.4133333333334L192 266.6666666666667V335.1466666666667H128V48.8533333333334H224V138.6666666666667H288V48.8533333333334z" />
+    <glyph glyph-name="hulu"
+      unicode="&#xF828;"
+      horiz-adv-x="512" d=" M416 174.9333333333333V-21.3333333333333H313.6V151.4666666666667C313.6 166.4 300.8 179.2000000000001 285.8666666666666 179.2000000000001H224C209.0666666666666 179.2000000000001 196.2666666666666 166.4 196.2666666666666 151.4666666666667V-21.3333333333333H96V405.3333333333333H198.4V268.8C204.8 270.9333333333334 211.2 273.0666666666667 217.6 273.0666666666667H320C373.3333333333333 273.0666666666667 416 228.2666666666667 416 174.9333333333333z" />
+    <glyph glyph-name="human"
+      unicode="&#xF2E6;"
+      horiz-adv-x="512" d=" M448 256H320V-21.3333333333333H277.3333333333333V106.6666666666667H234.6666666666667V-21.3333333333333H192V256H64V298.6666666666667H448M256 405.3333333333333C279.4666666666667 405.3333333333333 298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667S279.4666666666667 320 256 320C232.32 320 213.3333333333333 339.2000000000001 213.3333333333333 362.6666666666667C213.3333333333333 386.3466666666667 232.32 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="human-child"
+      unicode="&#xF2E7;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C291.4133333333333 405.3333333333333 320 376.7466666666667 320 341.3333333333334S291.4133333333333 277.3333333333334 256 277.3333333333334S192 305.92 192 341.3333333333334S220.5866666666667 405.3333333333333 256 405.3333333333333M234.6666666666667 -21.3333333333333H170.6666666666667V106.6666666666667H128V256H384V106.6666666666667H341.3333333333333V-21.3333333333333H277.3333333333333V64H234.6666666666667V-21.3333333333333z" />
+    <glyph glyph-name="human-female"
+      unicode="&#xF649;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C279.4666666666667 405.3333333333333 298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667S279.4666666666667 320 256 320S213.3333333333333 339.2000000000001 213.3333333333333 362.6666666666667S232.5333333333334 405.3333333333333 256 405.3333333333333M224 -21.3333333333333V106.6666666666667H160L215.2533333333333 268.5866666666667C220.5866666666667 286.0800000000001 236.8 298.6666666666667 256 298.6666666666667C275.2 298.6666666666667 291.4133333333333 286.0800000000001 296.7466666666667 268.5866666666667L352 106.6666666666667H288V-21.3333333333333H224z" />
+    <glyph glyph-name="human-female-boy"
+      unicode="&#xFA58;"
+      horiz-adv-x="512" d=" M160 405.3333333333333C183.4666666666667 405.3333333333333 202.6666666666667 386.1333333333334 202.6666666666667 362.6666666666667S183.4666666666667 320 160 320S117.3333333333333 339.2000000000001 117.3333333333333 362.6666666666667S136.5333333333333 405.3333333333333 160 405.3333333333333M128 -21.3333333333333V106.6666666666667H64L119.4666666666667 268.8C125.8666666666667 285.8666666666667 140.8 298.6666666666667 160 298.6666666666667C179.2 298.6666666666667 196.2666666666667 285.8666666666667 200.5333333333333 268.8L256 106.6666666666667H192V-21.3333333333333H128M309.3333333333333 192C309.3333333333333 215.4666666666667 328.5333333333333 234.6666666666667 352 234.6666666666667S394.6666666666667 215.4666666666667 394.6666666666667 192S375.4666666666667 149.3333333333334 352 149.3333333333334S309.3333333333333 168.5333333333334 309.3333333333333 192M288 128H416V42.6666666666667H384V-21.3333333333333H320V42.6666666666667H288V128z" />
+    <glyph glyph-name="human-female-female"
+      unicode="&#xFA59;"
+      horiz-adv-x="512" d=" M160 405.3333333333333C183.4666666666667 405.3333333333333 202.6666666666667 386.1333333333334 202.6666666666667 362.6666666666667S183.4666666666667 320 160 320S117.3333333333333 339.2000000000001 117.3333333333333 362.6666666666667S136.5333333333333 405.3333333333333 160 405.3333333333333M128 -21.3333333333333V106.6666666666667H64L119.4666666666667 268.8C125.8666666666667 285.8666666666667 140.8 298.6666666666667 160 298.6666666666667C179.2 298.6666666666667 196.2666666666667 285.8666666666667 200.5333333333333 268.8L256 106.6666666666667L311.4666666666667 268.8C317.8666666666667 285.8666666666667 332.8 298.6666666666667 352 298.6666666666667C371.2 298.6666666666667 388.2666666666667 285.8666666666667 392.5333333333333 268.8L448 106.6666666666667H384V-21.3333333333333H320V106.6666666666667H192V-21.3333333333333H128M352 405.3333333333333C375.4666666666667 405.3333333333333 394.6666666666667 386.1333333333334 394.6666666666667 362.6666666666667S375.4666666666667 320 352 320S309.3333333333333 339.2000000000001 309.3333333333333 362.6666666666667S328.5333333333333 405.3333333333333 352 405.3333333333333z" />
+    <glyph glyph-name="human-female-girl"
+      unicode="&#xFA5A;"
+      horiz-adv-x="512" d=" M160 405.3333333333333C183.4666666666667 405.3333333333333 202.6666666666667 386.1333333333334 202.6666666666667 362.6666666666667S183.4666666666667 320 160 320S117.3333333333333 339.2000000000001 117.3333333333333 362.6666666666667S136.5333333333333 405.3333333333333 160 405.3333333333333M128 -21.3333333333333V106.6666666666667H64L119.4666666666667 268.8C125.8666666666667 285.8666666666667 140.8 298.6666666666667 160 298.6666666666667C179.2 298.6666666666667 196.2666666666667 285.8666666666667 200.5333333333333 268.8L256 106.6666666666667H192V-21.3333333333333H128M309.3333333333333 192C309.3333333333333 215.4666666666667 328.5333333333333 234.6666666666667 352 234.6666666666667S394.6666666666667 215.4666666666667 394.6666666666667 192S375.4666666666667 149.3333333333334 352 149.3333333333334S309.3333333333333 168.5333333333334 309.3333333333333 192M320 128H384L416 42.6666666666667H384V-21.3333333333333H320V42.6666666666667H288L320 128z" />
+    <glyph glyph-name="human-greeting"
+      unicode="&#xF64A;"
+      horiz-adv-x="512" d=" M32 362.6666666666667V330.6666666666667C32 242.1333333333334 79.1466666666667 164.6933333333333 149.3333333333333 121.6V21.3333333333334H469.3333333333333V64C469.3333333333333 120.7466666666667 355.6266666666667 149.3333333333334 298.6666666666667 149.3333333333334H293.3333333333333C192 149.3333333333334 106.6666666666667 234.6666666666667 106.6666666666667 330.6666666666667V362.6666666666667M298.6666666666667 362.6666666666667C251.52 362.6666666666667 213.3333333333333 324.48 213.3333333333333 277.3333333333334S251.52 192 298.6666666666667 192S384 230.1866666666667 384 277.3333333333334S345.8133333333334 362.6666666666667 298.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="human-handsdown"
+      unicode="&#xF64B;"
+      horiz-adv-x="512" d=" M256 426.6666666666667C232.32 426.6666666666667 213.3333333333333 407.4666666666667 213.3333333333333 384C213.3333333333333 360.32 232.32 341.3333333333334 256 341.3333333333334C279.68 341.3333333333334 298.6666666666667 360.32 298.6666666666667 384C298.6666666666667 407.4666666666667 279.4666666666667 426.6666666666667 256 426.6666666666667M213.3333333333333 320C207.5733333333333 320 202.6666666666667 317.6533333333333 198.6133333333334 314.0266666666667H198.4L85.3333333333333 200.7466666666667L115.6266666666667 170.6666666666667L192 247.2533333333334V-21.3333333333333H234.6666666666667V128H277.3333333333333V-21.3333333333333H320V247.2533333333334L396.3733333333333 170.6666666666667L426.6666666666667 200.7466666666667L313.6 314.0266666666667C309.3333333333333 317.6533333333333 304.4266666666666 320 298.6666666666667 320" />
+    <glyph glyph-name="human-handsup"
+      unicode="&#xF64C;"
+      horiz-adv-x="512" d=" M106.6666666666667 426.6666666666667C106.6666666666667 369.0666666666667 139.9466666666667 316.5866666666667 192 291.8400000000001V-21.3333333333333H234.6666666666667V128H277.3333333333333V-21.3333333333333H320V292.0533333333334C372.0533333333334 316.5866666666667 405.3333333333333 369.0666666666667 405.3333333333333 426.6666666666667H362.6666666666667C362.6666666666667 367.7866666666667 314.88 320 256 320S149.3333333333333 367.7866666666667 149.3333333333333 426.6666666666667M256 426.6666666666667C232.32 426.6666666666667 213.3333333333333 407.68 213.3333333333333 384C213.3333333333333 360.32 232.32 341.3333333333334 256 341.3333333333334C279.68 341.3333333333334 298.6666666666667 360.32 298.6666666666667 384C298.6666666666667 407.68 279.68 426.6666666666667 256 426.6666666666667z" />
+    <glyph glyph-name="human-male"
+      unicode="&#xF64D;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C279.4666666666667 405.3333333333333 298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667S279.4666666666667 320 256 320S213.3333333333333 339.2000000000001 213.3333333333333 362.6666666666667S232.5333333333334 405.3333333333333 256 405.3333333333333M224 298.6666666666667H288C311.4666666666667 298.6666666666667 330.6666666666667 279.4666666666667 330.6666666666667 256V138.6666666666667H298.6666666666667V-21.3333333333333H213.3333333333333V138.6666666666667H181.3333333333333V256C181.3333333333333 279.4666666666667 200.5333333333333 298.6666666666667 224 298.6666666666667z" />
+    <glyph glyph-name="human-male-boy"
+      unicode="&#xFA5B;"
+      horiz-adv-x="512" d=" M160 405.3333333333333C183.4666666666667 405.3333333333333 202.6666666666667 386.1333333333334 202.6666666666667 362.6666666666667S183.4666666666667 320 160 320S117.3333333333333 339.2000000000001 117.3333333333333 362.6666666666667S136.5333333333333 405.3333333333333 160 405.3333333333333M128 298.6666666666667H192C215.4666666666667 298.6666666666667 234.6666666666667 279.4666666666667 234.6666666666667 256V138.6666666666667H202.6666666666667V-21.3333333333333H117.3333333333333V138.6666666666667H85.3333333333333V256C85.3333333333333 279.4666666666667 104.5333333333333 298.6666666666667 128 298.6666666666667M309.3333333333333 192C309.3333333333333 215.4666666666667 328.5333333333333 234.6666666666667 352 234.6666666666667S394.6666666666667 215.4666666666667 394.6666666666667 192S375.4666666666667 149.3333333333334 352 149.3333333333334S309.3333333333333 168.5333333333334 309.3333333333333 192M288 128H416V42.6666666666667H384V-21.3333333333333H320V42.6666666666667H288V128z" />
+    <glyph glyph-name="human-male-female"
+      unicode="&#xF2E8;"
+      horiz-adv-x="512" d=" M160 405.3333333333333C183.4666666666667 405.3333333333333 202.6666666666667 386.1333333333334 202.6666666666667 362.6666666666667S183.4666666666667 320 160 320S117.3333333333333 339.2000000000001 117.3333333333333 362.6666666666667S136.5333333333333 405.3333333333333 160 405.3333333333333M128 298.6666666666667H192C215.4666666666667 298.6666666666667 234.6666666666667 279.4666666666667 234.6666666666667 256V138.6666666666667H202.6666666666667V-21.3333333333333H117.3333333333333V138.6666666666667H85.3333333333333V256C85.3333333333333 279.4666666666667 104.5333333333333 298.6666666666667 128 298.6666666666667M352 405.3333333333333C375.4666666666667 405.3333333333333 394.6666666666667 386.1333333333334 394.6666666666667 362.6666666666667S375.4666666666667 320 352 320S309.3333333333333 339.2000000000001 309.3333333333333 362.6666666666667S328.5333333333333 405.3333333333333 352 405.3333333333333M320 -21.3333333333333V106.6666666666667H256L311.2533333333334 268.5866666666667C316.5866666666667 286.0800000000001 332.8 298.6666666666667 352 298.6666666666667C371.2 298.6666666666667 387.4133333333333 286.0800000000001 392.7466666666667 268.5866666666667L448 106.6666666666667H384V-21.3333333333333H320z" />
+    <glyph glyph-name="human-male-girl"
+      unicode="&#xFA5C;"
+      horiz-adv-x="512" d=" M160 405.3333333333333C183.4666666666667 405.3333333333333 202.6666666666667 386.1333333333334 202.6666666666667 362.6666666666667S183.4666666666667 320 160 320S117.3333333333333 339.2000000000001 117.3333333333333 362.6666666666667S136.5333333333333 405.3333333333333 160 405.3333333333333M128 298.6666666666667H192C215.4666666666667 298.6666666666667 234.6666666666667 279.4666666666667 234.6666666666667 256V138.6666666666667H202.6666666666667V-21.3333333333333H117.3333333333333V138.6666666666667H85.3333333333333V256C85.3333333333333 279.4666666666667 104.5333333333333 298.6666666666667 128 298.6666666666667M309.3333333333333 192C309.3333333333333 215.4666666666667 328.5333333333333 234.6666666666667 352 234.6666666666667S394.6666666666667 215.4666666666667 394.6666666666667 192S375.4666666666667 149.3333333333334 352 149.3333333333334S309.3333333333333 168.5333333333334 309.3333333333333 192M320 128H384L416 42.6666666666667H384V-21.3333333333333H320V42.6666666666667H288L320 128z" />
+    <glyph glyph-name="human-male-male"
+      unicode="&#xFA5D;"
+      horiz-adv-x="512" d=" M160 405.3333333333333C183.4666666666667 405.3333333333333 202.6666666666667 386.1333333333334 202.6666666666667 362.6666666666667S183.4666666666667 320 160 320S117.3333333333333 339.2000000000001 117.3333333333333 362.6666666666667S136.5333333333333 405.3333333333333 160 405.3333333333333M128 298.6666666666667H192C215.4666666666667 298.6666666666667 234.6666666666667 279.4666666666667 234.6666666666667 256V138.6666666666667H202.6666666666667V-21.3333333333333H117.3333333333333V138.6666666666667H85.3333333333333V256C85.3333333333333 279.4666666666667 104.5333333333333 298.6666666666667 128 298.6666666666667M352 405.3333333333333C375.4666666666667 405.3333333333333 394.6666666666667 386.1333333333334 394.6666666666667 362.6666666666667S375.4666666666667 320 352 320S309.3333333333333 339.2000000000001 309.3333333333333 362.6666666666667S328.5333333333333 405.3333333333333 352 405.3333333333333M320 298.6666666666667H384C407.4666666666667 298.6666666666667 426.6666666666667 279.4666666666667 426.6666666666667 256V138.6666666666667H394.6666666666667V-21.3333333333333H309.3333333333333V138.6666666666667H277.3333333333333V256C277.3333333333333 279.4666666666667 296.5333333333333 298.6666666666667 320 298.6666666666667z" />
+    <glyph glyph-name="human-pregnant"
+      unicode="&#xF5CF;"
+      horiz-adv-x="512" d=" M192 362.6666666666667C192 386.3466666666667 210.9866666666667 405.3333333333333 234.6666666666667 405.3333333333333C258.3466666666667 405.3333333333333 277.3333333333333 386.3466666666667 277.3333333333333 362.6666666666667C277.3333333333333 338.9866666666667 258.3466666666667 320 234.6666666666667 320C210.9866666666667 320 192 338.9866666666667 192 362.6666666666667M341.3333333333333 170.6666666666667C341.3333333333333 199.2533333333333 323.6266666666667 224 298.6666666666667 234.6666666666667C298.6666666666667 270.0800000000001 270.08 298.6666666666667 234.6666666666667 298.6666666666667S170.6666666666667 270.0800000000001 170.6666666666667 234.6666666666667V85.3333333333334H213.3333333333333V-21.3333333333333H277.3333333333333V85.3333333333334H341.3333333333333V170.6666666666667z" />
+    <glyph glyph-name="humble-bundle"
+      unicode="&#xF743;"
+      horiz-adv-x="512" d=" M360.7466666666667 61.44C300.5866666666667 61.44 393.1733333333333 402.56 393.1733333333333 402.56H331.3066666666666S305.92 322.3466666666667 289.0666666666666 233.1733333333334H235.7333333333333C237.0133333333333 251.52 237.8666666666666 270.0800000000001 237.44 288C234.6666666666667 435.4133333333334 149.3333333333333 408.1066666666667 110.5066666666667 374.4C74.0266666666667 342.4 43.3066666666667 281.6 42.6666666666667 234.6666666666667H71.4666666666667S90.6666666666667 322.56 150.8266666666667 322.56C210.9866666666667 322.56 118.1866666666667 -18.56 118.1866666666667 -18.56H180.2666666666667S212.2666666666667 72.7466666666667 228.2666666666667 174.72L279.2533333333334 174.9333333333333C276.2666666666667 148.48 275.4133333333333 119.4666666666667 275.84 92.3733333333333C278.1866666666666 -54.6133333333333 363.9466666666666 -23.04 402.3466666666667 10.6666666666667C440.9600000000001 44.3733333333333 469.3333333333333 115.6266666666667 469.3333333333333 149.3333333333334H439.68C439.8933333333333 146.7733333333334 420.9066666666667 61.44 360.7466666666667 61.44z" />
+    <glyph glyph-name="ice-cream"
+      unicode="&#xF829;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C303.1466666666667 405.3333333333333 341.3333333333333 367.1466666666667 341.3333333333333 318.9333333333334C365.6533333333333 314.0266666666667 384 292.48 384 266.6666666666667C384 237.2266666666667 360.1066666666667 213.3333333333334 330.6666666666667 213.3333333333334H181.3333333333333C151.8933333333333 213.3333333333334 128 237.2266666666667 128 266.6666666666667C128 292.48 146.3466666666667 314.0266666666667 170.6666666666667 320C170.6666666666667 367.1466666666667 208.8533333333333 405.3333333333333 256 405.3333333333333M192 192H320L277.3333333333333 -21.3333333333333H234.6666666666667L192 192z" />
+    <glyph glyph-name="image"
+      unicode="&#xF2E9;"
+      horiz-adv-x="512" d=" M181.3333333333333 160L234.6666666666667 96L309.3333333333333 192L405.3333333333333 64H106.6666666666667M448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667z" />
+    <glyph glyph-name="image-album"
+      unicode="&#xF2EA;"
+      horiz-adv-x="512" d=" M128 42.6666666666667L192 125.0133333333333L237.6533333333334 69.9733333333334L301.6533333333333 152.3200000000001L384 42.6666666666667H128M128 362.6666666666667H234.6666666666667V192L181.3333333333333 224L128 192M384 405.3333333333333H128C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.1333333333334 407.4666666666667 405.3333333333333 384 405.3333333333333z" />
+    <glyph glyph-name="image-area"
+      unicode="&#xF2EB;"
+      horiz-adv-x="512" d=" M426.6666666666667 341.3333333333334C450.1333333333334 341.3333333333334 469.3333333333333 322.1333333333334 469.3333333333333 298.6666666666667V85.3333333333334C469.3333333333333 61.8666666666667 450.1333333333334 42.6666666666667 426.6666666666667 42.6666666666667H85.3333333333333C61.6533333333333 42.6666666666667 42.6666666666667 61.8666666666667 42.6666666666667 85.3333333333334V298.6666666666667C42.6666666666667 322.3466666666667 61.6533333333333 341.3333333333334 85.3333333333333 341.3333333333334H426.6666666666667M106.6666666666667 106.6666666666667H405.3333333333333L309.3333333333333 234.6666666666667L234.6666666666667 138.6666666666667L181.3333333333333 202.6666666666667L106.6666666666667 106.6666666666667z" />
+    <glyph glyph-name="image-area-close"
+      unicode="&#xF2EC;"
+      horiz-adv-x="512" d=" M256 -42.6666666666666L170.6666666666667 42.6666666666667H341.3333333333333L256 -42.6666666666666M426.6666666666667 384C450.1333333333334 384 469.3333333333333 364.8 469.3333333333333 341.3333333333334V128C469.3333333333333 104.5333333333333 450.1333333333334 85.3333333333334 426.6666666666667 85.3333333333334H85.3333333333333C61.8666666666667 85.3333333333334 42.6666666666667 104.5333333333333 42.6666666666667 128V341.3333333333334C42.6666666666667 364.8 61.8666666666667 384 85.3333333333333 384H426.6666666666667M106.6666666666667 149.3333333333334H405.3333333333333L309.3333333333333 277.3333333333334L234.6666666666667 181.3333333333334L181.3333333333333 245.3333333333334L106.6666666666667 149.3333333333334z" />
+    <glyph glyph-name="image-broken"
+      unicode="&#xF2ED;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V213.3333333333334H405.3333333333333V170.6666666666667H362.6666666666667V128H320V85.3333333333334H277.3333333333333V42.6666666666667H234.6666666666667V0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M448 128V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H320V42.6666666666667H362.6666666666667V85.3333333333334H405.3333333333333V128H448M405.3333333333333 266.6666666666667C405.3333333333333 272.64 400.64 277.3333333333334 394.6666666666667 277.3333333333334H117.3333333333333C111.36 277.3333333333334 106.6666666666667 272.64 106.6666666666667 266.6666666666667V117.3333333333334C106.6666666666667 111.36 111.36 106.6666666666667 117.3333333333333 106.6666666666667H234.6666666666667V128H277.3333333333333V170.6666666666667H320V213.3333333333334H362.6666666666667V256H405.3333333333333V266.6666666666667z" />
+    <glyph glyph-name="image-broken-variant"
+      unicode="&#xF2EE;"
+      horiz-adv-x="512" d=" M448 341.3333333333334V200.7466666666667L384 264.9600000000001L298.6666666666667 179.4133333333334L213.3333333333333 264.7466666666667L128 179.4133333333334L64 243.6266666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334M384 204.3733333333333L448 140.16V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V183.04L128 119.2533333333333L213.3333333333333 204.5866666666667L298.6666666666667 119.2533333333333" />
+    <glyph glyph-name="image-filter"
+      unicode="&#xF2EF;"
+      horiz-adv-x="512" d=" M448 85.3333333333334H149.3333333333333V384H448M448 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V384C490.6666666666666 407.4666666666667 471.4666666666667 426.6666666666667 448 426.6666666666667M64 341.3333333333334H21.3333333333333V0C21.3333333333333 -23.4666666666667 40.5333333333333 -42.6666666666666 64 -42.6666666666666H405.3333333333333V0H64M340.48 228.48L281.8133333333334 152.96L240 203.3066666666667L181.3333333333333 128H416L340.48 228.48z" />
+    <glyph glyph-name="image-filter-black-white"
+      unicode="&#xF2F0;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667L256 213.3333333333334V42.6666666666667H106.6666666666667L256 213.3333333333334V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="image-filter-center-focus"
+      unicode="&#xF2F1;"
+      horiz-adv-x="512" d=" M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256M405.3333333333333 42.6666666666667H320V0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V128H405.3333333333333M405.3333333333333 384H320V341.3333333333334H405.3333333333333V256H448V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M106.6666666666667 341.3333333333334H192V384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V256H106.6666666666667M106.6666666666667 128H64V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H192V42.6666666666667H106.6666666666667V128z" />
+    <glyph glyph-name="image-filter-center-focus-weak"
+      unicode="&#xF2F2;"
+      horiz-adv-x="512" d=" M106.6666666666667 128H64V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H192V42.6666666666667H106.6666666666667M106.6666666666667 341.3333333333334H192V384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V256H106.6666666666667M405.3333333333333 384H320V341.3333333333334H405.3333333333333V256H448V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M405.3333333333333 42.6666666666667H320V0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V128H405.3333333333333M256 277.3333333333334C208.8533333333333 277.3333333333334 170.6666666666667 239.1466666666667 170.6666666666667 192S208.8533333333333 106.6666666666667 256 106.6666666666667S341.3333333333333 144.8533333333334 341.3333333333333 192S303.1466666666667 277.3333333333334 256 277.3333333333334M256 149.3333333333334C232.5333333333334 149.3333333333334 213.3333333333333 168.5333333333334 213.3333333333333 192S232.5333333333334 234.6666666666667 256 234.6666666666667S298.6666666666667 215.4666666666667 298.6666666666667 192S279.4666666666667 149.3333333333334 256 149.3333333333334z" />
+    <glyph glyph-name="image-filter-drama"
+      unicode="&#xF2F3;"
+      horiz-adv-x="512" d=" M405.3333333333333 64H128C80.8533333333333 64 42.6666666666667 102.1866666666667 42.6666666666667 149.3333333333334S80.8533333333333 234.6666666666667 128 234.6666666666667S213.3333333333333 196.48 213.3333333333333 149.3333333333334H256C256 208.2133333333334 216.32 257.7066666666667 162.1333333333333 272.6400000000001C183.68 301.2266666666667 217.6 320 256 320C320.64 320 373.3333333333333 267.3066666666667 373.3333333333333 202.6666666666667V192H405.3333333333333C440.7466666666667 192 469.3333333333333 163.4133333333334 469.3333333333333 128S440.7466666666667 64 405.3333333333333 64M412.8 233.8133333333334C398.2933333333334 307.4133333333334 333.6533333333333 362.6666666666667 256 362.6666666666667C194.3466666666666 362.6666666666667 141.0133333333333 327.68 114.3466666666667 276.48C50.1333333333333 269.6533333333334 0 215.4666666666667 0 149.3333333333334C0 78.72 57.3866666666667 21.3333333333334 128 21.3333333333334H405.3333333333333C464.2133333333333 21.3333333333334 512 69.1200000000001 512 128C512 184.3200000000001 468.2666666666667 229.9733333333334 412.8 233.8133333333334z" />
+    <glyph glyph-name="image-filter-frames"
+      unicode="&#xF2F4;"
+      horiz-adv-x="512" d=" M384 277.3333333333334H128V64H384M426.6666666666667 21.3333333333334H85.3333333333333V320H181.3333333333333L256.8533333333333 394.6666666666667L330.6666666666667 320H426.6666666666667M426.6666666666667 362.6666666666667H341.3333333333333L256 448L170.6666666666667 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H426.6666666666667C450.1333333333334 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V320C469.3333333333333 343.4666666666667 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="image-filter-hdr"
+      unicode="&#xF2F5;"
+      horiz-adv-x="512" d=" M298.6666666666667 320L218.6666666666667 213.3333333333334L279.4666666666667 132.2666666666667L245.3333333333333 106.6666666666667C209.28 154.6666666666667 149.3333333333333 234.6666666666667 149.3333333333333 234.6666666666667L21.3333333333333 64H490.6666666666666L298.6666666666667 320z" />
+    <glyph glyph-name="image-filter-none"
+      unicode="&#xF2F6;"
+      horiz-adv-x="512" d=" M448 85.3333333333334H149.3333333333333V384H448M448 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V384C490.6666666666666 407.4666666666667 471.4666666666667 426.6666666666667 448 426.6666666666667M64 341.3333333333334H21.3333333333333V0C21.3333333333333 -23.4666666666667 40.5333333333333 -42.6666666666666 64 -42.6666666666666H405.3333333333333V0H64V341.3333333333334z" />
+    <glyph glyph-name="image-filter-tilt-shift"
+      unicode="&#xF2F7;"
+      horiz-adv-x="512" d=" M121.1733333333333 26.8800000000001C152.7466666666667 1.0666666666667 192 -16 234.6666666666667 -20.2666666666666V22.8266666666667C203.52 26.6666666666667 175.1466666666667 39.0400000000001 151.4666666666667 57.3866666666667M277.3333333333333 22.8266666666667V-20.2666666666666C320 -16 359.2533333333334 1.0666666666667 390.8266666666667 26.8800000000001L360.32 57.3866666666667C336.8533333333334 39.0400000000001 308.48 26.6666666666667 277.3333333333333 22.8266666666667M390.6133333333333 87.4666666666667L421.12 56.96C446.9333333333333 88.5333333333334 464 128.0000000000001 468.2666666666667 170.6666666666668H425.1733333333333C421.3333333333333 139.5200000000001 408.9599999999999 111.1466666666667 390.6133333333333 87.4666666666667M320 192C320 227.4133333333334 291.4133333333333 256 256 256S192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192M86.8266666666667 170.6666666666667H43.7333333333333C48 128 65.0666666666667 88.7466666666667 90.88 57.1733333333334L121.3866666666667 87.68C103.04 111.1466666666667 90.6666666666667 139.52 86.8266666666667 170.6666666666667M121.3866666666667 296.5333333333334L90.88 326.8266666666667C65.0666666666667 295.2533333333334 48 256 43.7333333333333 213.3333333333334H86.8266666666667C90.6666666666667 244.48 103.04 272.8533333333334 121.3866666666667 296.5333333333334M425.1733333333333 213.3333333333334H468.2666666666667C464 256 446.9333333333333 295.2533333333334 421.12 326.8266666666667L390.6133333333333 296.5333333333334C408.9599999999999 272.8533333333334 421.3333333333333 244.48 425.1733333333333 213.3333333333334M390.8266666666667 357.12C359.2533333333334 382.9333333333334 320 400 277.3333333333333 404.2666666666667V361.1733333333334C308.48 357.3333333333334 336.8533333333333 344.9600000000001 360.5333333333333 326.6133333333334M234.6666666666667 361.1733333333334V404.2666666666667C192 400 152.7466666666667 382.9333333333334 121.1733333333333 357.12L151.4666666666667 326.6133333333334C175.1466666666667 344.9600000000001 203.52 357.3333333333334 234.6666666666667 361.1733333333334z" />
+    <glyph glyph-name="image-filter-vintage"
+      unicode="&#xF2F8;"
+      horiz-adv-x="512" d=" M256 106.6666666666667C208.8533333333333 106.6666666666667 170.6666666666667 144.8533333333334 170.6666666666667 192S208.8533333333333 277.3333333333334 256 277.3333333333334S341.3333333333333 239.1466666666667 341.3333333333333 192S303.1466666666667 106.6666666666667 256 106.6666666666667M398.9333333333333 183.4666666666667C392.9599999999999 186.88 386.7733333333333 189.6533333333333 380.5866666666667 192C386.7733333333333 194.3466666666667 392.9599999999999 197.12 398.9333333333333 200.5333333333334C439.8933333333333 224 462.7199999999999 266.6666666666667 462.9333333333333 311.2533333333334C424.7466666666667 333.2266666666667 376.1066666666667 334.9333333333334 334.9333333333333 311.2533333333334C328.96 307.8400000000001 323.4133333333333 303.7866666666667 318.2933333333333 299.7333333333334C319.36 306.3466666666667 320 313.1733333333334 320 320C320 367.36 294.1866666666666 408.5333333333334 256 430.7200000000001C217.8133333333333 408.5333333333333 192 367.36 192 320C192 313.1733333333334 192.64 306.3466666666667 193.7066666666667 299.7333333333334C188.5866666666667 304 183.04 308.0533333333334 177.0666666666667 311.4666666666667C136.1066666666667 335.1466666666667 87.4666666666667 333.44 49.0666666666667 311.4666666666667C49.0666666666667 267.3066666666667 71.8933333333334 224 113.0666666666667 200.7466666666667C119.04 197.3333333333334 125.2266666666667 194.56 131.4133333333334 192C125.2266666666667 189.8666666666667 119.04 187.0933333333334 113.0666666666667 183.68C72.1066666666667 160 49.28 117.3333333333334 49.0666666666667 72.96C87.2533333333334 50.9866666666666 135.8933333333334 49.28 177.0666666666667 72.96C183.04 76.3733333333333 188.5866666666667 80.4266666666667 193.7066666666667 84.48C192.64 77.6533333333333 192 70.8266666666666 192 63.9999999999999C192 16.64 217.8133333333333 -24.5333333333334 256 -46.7200000000001C294.1866666666666 -24.5333333333334 320 16.6399999999999 320 63.9999999999999C320 70.8266666666666 319.36 77.6533333333333 318.2933333333333 84.2666666666666C323.4133333333333 79.9999999999999 328.96 76.16 334.9333333333333 72.7466666666666C375.8933333333333 49.0666666666666 424.5333333333333 50.7733333333333 462.9333333333333 72.7466666666666C462.7199999999999 117.3333333333333 439.8933333333333 160 398.9333333333333 183.4666666666667z" />
+    <glyph glyph-name="image-move"
+      unicode="&#xF9F7;"
+      horiz-adv-x="512" d=" M320 384H405.3333333333333V448L512 341.3333333333334L405.3333333333333 234.6666666666667V298.6666666666667H320V384M448 193.28V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H257.28C256 376.9600000000001 256 369.7066666666667 256 362.6666666666667C256 268.3733333333334 332.3733333333333 192 426.6666666666667 192C433.7066666666666 192 440.9600000000001 192 448 193.28M405.3333333333333 64L309.3333333333333 192L234.6666666666667 96L181.3333333333333 160L106.6666666666667 64H405.3333333333333z" />
+    <glyph glyph-name="image-multiple"
+      unicode="&#xF2F9;"
+      horiz-adv-x="512" d=" M469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.1333333333334 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333H170.6666666666667C147.2 405.3333333333333 128 386.1333333333334 128 362.6666666666667V106.6666666666667C128 83.2 147.2 64 170.6666666666667 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667M234.6666666666667 192L277.9733333333333 134.1866666666667L341.3333333333333 213.3333333333334L426.6666666666667 106.6666666666667H170.6666666666667M42.6666666666667 320V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H384V21.3333333333334H85.3333333333333V320" />
+    <glyph glyph-name="image-off"
+      unicode="&#xF82A;"
+      horiz-adv-x="512" d=" M48.64 384L21.3333333333333 356.9066666666667L64 314.24V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H378.24L420.9066666666667 -42.6666666666666L448 -15.36L48.64 384M103.04 384L448 39.04V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384H103.04M181.3333333333333 160L234.6666666666667 96L256 122.6666666666667L314.24 64H106.6666666666667L181.3333333333333 160z" />
+    <glyph glyph-name="image-outline"
+      unicode="&#xF975;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M297.8133333333334 185.8133333333334L239.1466666666667 110.2933333333334L197.3333333333333 160.6400000000001L138.6666666666667 85.3333333333334H373.3333333333333L297.8133333333334 185.8133333333334z" />
+    <glyph glyph-name="image-plus"
+      unicode="&#xF87B;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H300.5866666666667C299.3066666666666 7.04 298.6666666666667 14.08 298.6666666666667 21.3333333333334C298.6666666666667 35.84 301.2266666666667 50.3466666666667 306.1333333333334 64H106.6666666666667L181.3333333333333 160L234.6666666666667 96L309.3333333333333 192L356.9066666666667 128.64C377.6 142.0800000000001 401.92 149.3333333333334 426.6666666666667 149.3333333333334C433.92 149.3333333333334 440.9600000000001 148.6933333333334 448 147.4133333333334V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384H106.6666666666667M405.3333333333333 106.6666666666667V42.6666666666667H341.3333333333333V0H405.3333333333333V-64H448V0H512V42.6666666666667H448V106.6666666666667H405.3333333333333z" />
+    <glyph glyph-name="image-search"
+      unicode="&#xF976;"
+      horiz-adv-x="512" d=" M330.6666666666667 405.3333333333333C384 405.3333333333333 426.6666666666667 362.6666666666667 426.6666666666667 309.3333333333334C426.6666666666667 290.56 421.3333333333333 272.8533333333334 411.9466666666666 258.1333333333334L477.6533333333333 192L448 162.3466666666667L381.44 227.84C366.7199999999999 218.6666666666667 349.2266666666666 213.3333333333334 330.6666666666667 213.3333333333334C277.3333333333333 213.3333333333334 234.6666666666667 256 234.6666666666667 309.3333333333334S277.3333333333333 405.3333333333333 330.6666666666667 405.3333333333333M330.6666666666667 362.6666666666667C301.2266666666667 362.6666666666667 277.3333333333333 338.7733333333333 277.3333333333333 309.3333333333334S301.2266666666667 256 330.6666666666667 256S384 279.8933333333333 384 309.3333333333334S360.1066666666667 362.6666666666667 330.6666666666667 362.6666666666667M160 138.6666666666667L85.3333333333333 42.6666666666667H384L288 170.6666666666667L213.3333333333333 74.6666666666667L160 138.6666666666667M426.6666666666667 21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H202.6666666666667C195.84 346.24 192 328.32 192 309.3333333333334C192 232.7466666666667 254.08 170.6666666666667 330.6666666666667 170.6666666666667C345.1733333333333 170.6666666666667 359.2533333333334 173.0133333333333 372.48 177.0666666666667L426.6666666666667 122.88V21.3333333333334z" />
+    <glyph glyph-name="image-search-outline"
+      unicode="&#xF977;"
+      horiz-adv-x="512" d=" M330.6666666666667 256C345.6 256 358.1866666666666 261.12 368.4266666666666 271.5733333333334C378.88 281.8133333333334 384 294.4000000000001 384 309.3333333333334C384 323.6266666666667 378.88 336.4266666666667 368.4266666666666 347.0933333333334C358.1866666666666 357.76 345.6 362.6666666666667 330.6666666666667 362.6666666666667C316.3733333333334 362.6666666666667 303.5733333333333 357.76 292.9066666666667 347.0933333333334S277.3333333333333 323.6266666666667 277.3333333333333 309.3333333333334C277.3333333333333 294.4 282.24 281.8133333333334 292.9066666666667 271.5733333333334C303.5733333333333 261.12 316.3733333333334 256 330.6666666666667 256M411.9466666666666 257.92L478.08 192L448 161.92L381.0133333333333 228.0533333333334C364.3733333333333 218.0266666666667 347.3066666666667 213.3333333333334 330.0266666666667 213.3333333333334C303.36 213.3333333333334 280.7466666666666 222.2933333333334 262.4 241.0666666666667C244.2666666666667 259.6266666666667 234.6666666666667 282.24 234.6666666666667 309.3333333333334C234.6666666666667 335.5733333333334 244.2666666666666 358.4000000000001 263.04 376.9600000000001C281.6 395.7333333333334 304.4266666666666 405.3333333333333 330.6666666666667 405.3333333333333C357.76 405.3333333333333 380.3733333333333 395.7333333333334 398.9333333333333 376.9600000000001C417.7066666666666 358.4 426.6666666666667 335.5733333333334 426.6666666666667 309.3333333333334C426.6666666666667 291.6266666666667 421.9733333333334 274.5600000000001 411.9466666666666 257.92M352 64H117.3333333333333L176 138.6666666666667L218.0266666666667 88.96L276.0533333333334 164.0533333333334L352 64M384 170.6666666666667L426.6666666666667 128V21.3333333333334C426.6666666666667 9.6 422.6133333333333 0 414.08 -8.5333333333333C405.3333333333333 -16.8533333333333 395.3066666666667 -21.3333333333333 384 -21.3333333333333H85.3333333333333C73.6 -21.3333333333333 64 -16.8533333333333 55.4666666666667 -8.5333333333333C47.1466666666667 0 42.6666666666667 9.6000000000001 42.6666666666667 21.3333333333334V320C42.6666666666667 331.3066666666667 47.1466666666667 341.3333333333334 55.4666666666667 350.0800000000001C64 358.6133333333334 73.6 362.6666666666667 85.3333333333333 362.6666666666667H202.6666666666667C196.2666666666667 349.0133333333333 192.64 334.7200000000001 192 320H85.3333333333333V21.3333333333334H384V170.6666666666667z" />
+    <glyph glyph-name="import"
+      unicode="&#xF2FA;"
+      horiz-adv-x="512" d=" M298.6666666666667 192L213.3333333333333 277.3333333333334V213.3333333333334H42.6666666666667V170.6666666666667H213.3333333333333V106.6666666666667M426.6666666666667 64V320C426.6666666666667 343.68 407.4666666666667 362.6666666666667 384 362.6666666666667H128C104.5333333333333 362.6666666666667 85.3333333333333 343.4666666666667 85.3333333333333 320V256H128V320H384V64H128V128H85.3333333333333V64C85.3333333333333 40.5333333333333 104.5333333333333 21.3333333333334 128 21.3333333333334H384C407.4666666666667 21.3333333333334 426.6666666666667 40.5333333333333 426.6666666666667 64z" />
+    <glyph glyph-name="inbox"
+      unicode="&#xF686;"
+      horiz-adv-x="512" d=" M405.3333333333333 128H320C320 92.5866666666667 291.4133333333333 64 256 64S192 92.5866666666667 192 128H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="inbox-arrow-down"
+      unicode="&#xF2FB;"
+      horiz-adv-x="512" d=" M341.3333333333333 234.6666666666667H298.6666666666667V298.6666666666667H213.3333333333333V234.6666666666667H170.6666666666667L256 149.3333333333334M405.3333333333333 128H320C320 92.5866666666667 291.4133333333333 64 256 64S192 92.5866666666667 192 128H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="inbox-arrow-up"
+      unicode="&#xF3D1;"
+      horiz-adv-x="512" d=" M298.6666666666667 149.3333333333334H213.3333333333333V213.3333333333334H170.6666666666667L256 298.6666666666667L341.3333333333333 213.3333333333334H298.6666666666667V149.3333333333334M106.6666666666667 128V341.3333333333334H405.3333333333333V128H320C320 92.5866666666667 291.4133333333333 64 256 64S192 92.5866666666667 192 128H106.6666666666667M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384" />
+    <glyph glyph-name="inbox-multiple"
+      unicode="&#xF8AF;"
+      horiz-adv-x="512" d=" M405.3333333333333 277.3333333333334V341.3333333333334H106.6666666666667V277.3333333333334H192C192 241.92 220.5866666666667 213.3333333333334 256 213.3333333333334S320 241.92 320 277.3333333333334H405.3333333333333M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V192C448 168.5333333333334 428.8 149.3333333333334 405.3333333333333 149.3333333333334H106.6666666666667C83.2 149.3333333333334 64 168.5333333333334 64 192V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M64 128H192C192 92.5866666666667 220.5866666666667 64 256 64S320 92.5866666666667 320 128H448V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V128z" />
+    <glyph glyph-name="inbox-multiple-outline"
+      unicode="&#xFB84;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V192C448 168.5333333333334 428.8 149.3333333333334 405.3333333333333 149.3333333333334H106.6666666666667C83.2 149.3333333333334 64 168.5333333333334 64 192V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M106.6666666666667 234.6666666666667V192H200.5333333333333C187.7333333333334 203.3066666666667 177.92 218.0266666666667 173.44 234.6666666666667H106.6666666666667M405.3333333333333 192V234.6666666666667H338.56C334.08 218.0266666666667 324.2666666666667 203.3066666666667 311.4666666666667 192H405.3333333333333M405.3333333333333 277.3333333333334V341.3333333333334H106.6666666666667V277.3333333333334H213.3333333333333V256C213.3333333333333 233.1733333333334 233.1733333333333 213.3333333333334 256 213.3333333333334C278.8266666666667 213.3333333333334 298.6666666666667 233.1733333333334 298.6666666666667 256V277.3333333333334H405.3333333333333M448 42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V128H213.3333333333333V106.6666666666667C213.3333333333333 83.84 233.1733333333333 64 256 64C278.8266666666667 64 298.6666666666667 83.84 298.6666666666667 106.6666666666667V128H448V42.6666666666667M106.6666666666667 85.3333333333334V42.6666666666667H200.5333333333333C187.7333333333334 53.9733333333334 177.92 68.6933333333333 173.44 85.3333333333334H106.6666666666667M405.3333333333333 42.6666666666667V85.3333333333334H338.56C334.08 68.6933333333333 324.2666666666667 53.9733333333334 311.4666666666667 42.6666666666667H405.3333333333333z" />
+    <glyph glyph-name="incognito"
+      unicode="&#xF5F9;"
+      horiz-adv-x="512" d=" M256 384C198.6133333333334 384 158.08 357.9733333333334 158.08 357.9733333333334L128 256H384L353.92 357.9733333333334S313.3866666666667 384 256 384M256 213.3333333333334C197.76 213.3333333333334 114.9866666666667 201.8133333333334 109.44 200.7466666666667C87.2533333333333 194.7733333333334 69.3333333333333 188.8 55.2533333333333 183.2533333333333C33.7066666666667 176 21.3333333333333 170.6666666666667 21.3333333333333 170.6666666666667H490.6666666666666S478.2933333333334 176 456.7466666666667 183.2533333333333C442.6666666666667 188.8 424.32 194.7733333333333 401.92 200.7466666666667C401.92 200.7466666666667 316.16 213.3333333333334 256 213.3333333333334M160 149.3333333333334C118.8266666666667 149.3333333333334 85.3333333333333 115.84 85.3333333333333 74.6666666666667S118.8266666666667 0 160 0S234.6666666666667 33.4933333333333 234.6666666666667 74.6666666666667C234.6666666666667 78.08 234.6666666666667 81.4933333333333 234.0266666666667 84.6933333333333C240.8533333333334 86.1866666666667 248.1066666666667 87.4666666666666 256 87.2533333333333C263.8933333333333 87.2533333333333 271.1466666666667 86.1866666666667 277.9733333333333 84.6933333333333C277.3333333333333 81.4933333333333 277.3333333333333 78.08 277.3333333333333 74.6666666666667C277.3333333333333 33.4933333333333 310.8266666666667 0 352 0S426.6666666666667 33.4933333333333 426.6666666666667 74.6666666666667S393.1733333333333 149.3333333333334 352 149.3333333333334C320.64 149.3333333333334 293.76 130.1333333333333 282.6666666666667 102.6133333333334C275.84 104.7466666666667 267.7333333333334 106.6666666666667 256 106.6666666666667S236.16 104.7466666666667 229.3333333333333 102.6133333333334C218.24 130.1333333333333 191.36 149.3333333333334 160 149.3333333333334M160 128C189.44 128 213.3333333333333 104.1066666666667 213.3333333333333 74.6666666666667S189.44 21.3333333333334 160 21.3333333333334S106.6666666666667 45.2266666666667 106.6666666666667 74.6666666666667S130.56 128 160 128M352 128C381.44 128 405.3333333333333 104.1066666666667 405.3333333333333 74.6666666666667S381.44 21.3333333333334 352 21.3333333333334S298.6666666666667 45.2266666666667 298.6666666666667 74.6666666666667S322.56 128 352 128z" />
+    <glyph glyph-name="infinity"
+      unicode="&#xF6E3;"
+      horiz-adv-x="512" d=" M396.8 306.7733333333333C460.3733333333333 306.7733333333333 512 256 512 192C512 128.8533333333334 460.3733333333333 77.44 396.8 77.44C365.8666666666667 77.44 337.0666666666667 89.3866666666667 315.3066666666667 110.9333333333333L256 163.4133333333334L195.6266666666667 109.8666666666667C174.9333333333333 89.1733333333334 145.92 77.2266666666667 115.2 77.2266666666667C51.6266666666667 77.2266666666667 0 128.8533333333334 0 192S51.6266666666667 306.7733333333333 115.2 306.7733333333333C145.92 306.7733333333333 174.9333333333333 294.8266666666667 196.6933333333333 273.0666666666667L256 220.5866666666667L316.3733333333334 274.1333333333334C337.0666666666667 294.8266666666667 366.08 306.7733333333333 396.8 306.7733333333333M166.4 141.0133333333333L224 192L167.2533333333333 242.1333333333334C152.7466666666667 256.64 134.6133333333333 264.1066666666667 115.2 264.1066666666667C75.3066666666667 264.1066666666667 42.6666666666667 231.8933333333333 42.6666666666667 192C42.6666666666667 152.1066666666667 75.3066666666667 119.8933333333334 115.2 119.8933333333334C134.6133333333334 119.8933333333334 152.7466666666667 127.36 166.4 141.0133333333334M345.6 242.9866666666667L288 192L344.7466666666667 141.8666666666667C359.2533333333334 127.36 377.6 119.8933333333334 396.8 119.8933333333334C436.6933333333334 119.8933333333334 469.3333333333333 152.1066666666667 469.3333333333333 192C469.3333333333333 231.8933333333334 436.6933333333333 264.1066666666667 396.8 264.1066666666667C377.3866666666667 264.1066666666667 359.2533333333334 256.64 345.6 242.9866666666667z" />
+    <glyph glyph-name="information"
+      unicode="&#xF2FC;"
+      horiz-adv-x="512" d=" M277.3333333333333 256H234.6666666666667V298.6666666666667H277.3333333333333M277.3333333333333 85.3333333333334H234.6666666666667V213.3333333333334H277.3333333333333M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="information-outline"
+      unicode="&#xF2FD;"
+      horiz-adv-x="512" d=" M234.6666666666667 256H277.3333333333333V298.6666666666667H234.6666666666667M256 21.3333333333334C161.92 21.3333333333334 85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667S426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M234.6666666666667 85.3333333333334H277.3333333333333V213.3333333333334H234.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="information-variant"
+      unicode="&#xF64E;"
+      horiz-adv-x="512" d=" M288 362.6666666666667C270.2933333333333 362.6666666666667 256 348.3733333333334 256 330.6666666666667S270.2933333333333 298.6666666666667 288 298.6666666666667S320 312.9600000000001 320 330.6666666666667S305.7066666666667 362.6666666666667 288 362.6666666666667M280.32 260.9066666666667C254.9333333333334 258.7733333333334 185.6 203.5200000000001 185.6 203.5200000000001C181.3333333333333 200.32 182.6133333333333 200.5333333333334 186.0266666666667 194.56C189.44 188.8000000000001 189.0133333333333 188.3733333333334 193.0666666666666 191.1466666666667C197.3333333333333 193.9200000000001 204.3733333333333 198.4 216.1066666666666 205.6533333333334C261.3333333333333 234.6666666666667 223.36 167.6800000000001 203.9466666666666 54.8266666666667C196.2666666666667 -1.0666666666667 246.6133333333333 27.7333333333334 259.6266666666666 36.2666666666667C272.4266666666666 44.5866666666667 306.7733333333333 68.2666666666667 310.1866666666666 70.6133333333334C314.88 73.8133333333333 311.4666666666667 76.3733333333333 307.84 81.7066666666667C305.28 85.3333333333334 302.72 82.7733333333333 302.72 82.7733333333333C288.8533333333333 73.6 263.4666666666667 54.4 260.0533333333333 66.56C256 78.72 282.0266666666667 162.1333333333333 296.32 219.52C298.6666666666667 233.1733333333333 305.0666666666666 263.04 280.32 260.9066666666667z" />
+    <glyph glyph-name="instagram"
+      unicode="&#xF2FE;"
+      horiz-adv-x="512" d=" M166.4 405.3333333333333H345.6C413.8666666666666 405.3333333333333 469.3333333333333 349.8666666666667 469.3333333333333 281.6V102.4C469.3333333333333 34.1333333333334 413.8666666666666 -21.3333333333333 345.6 -21.3333333333333H166.4C98.1333333333333 -21.3333333333333 42.6666666666667 34.1333333333334 42.6666666666667 102.4V281.6C42.6666666666667 349.8666666666667 98.1333333333333 405.3333333333333 166.4 405.3333333333333M162.1333333333333 362.6666666666667C119.68 362.6666666666667 85.3333333333333 328.32 85.3333333333333 285.8666666666667V98.1333333333334C85.3333333333333 55.68 119.68 21.3333333333334 162.1333333333333 21.3333333333334H349.8666666666666C392.32 21.3333333333334 426.6666666666667 55.68 426.6666666666667 98.1333333333334V285.8666666666667C426.6666666666667 328.32 392.32 362.6666666666667 349.8666666666666 362.6666666666667H162.1333333333333M368 330.6666666666667C382.7200000000001 330.6666666666667 394.6666666666667 318.7200000000001 394.6666666666667 304S382.7200000000001 277.3333333333334 368 277.3333333333334S341.3333333333333 289.28 341.3333333333333 304S353.28 330.6666666666667 368 330.6666666666667M256 298.6666666666667C314.88 298.6666666666667 362.6666666666667 250.88 362.6666666666667 192S314.88 85.3333333333334 256 85.3333333333334S149.3333333333333 133.12 149.3333333333333 192S197.12 298.6666666666667 256 298.6666666666667M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256z" />
+    <glyph glyph-name="instapaper"
+      unicode="&#xF2FF;"
+      horiz-adv-x="512" d=" M213.3333333333333 341.3333333333334C213.3333333333333 353.0666666666667 203.7333333333334 362.6666666666667 192 362.6666666666667H170.6666666666667V405.3333333333333H341.3333333333333V362.6666666666667H320C308.2666666666667 362.6666666666667 298.6666666666667 353.0666666666667 298.6666666666667 341.3333333333334V42.6666666666667C298.6666666666667 30.9333333333333 308.2666666666667 21.3333333333334 320 21.3333333333334H341.3333333333333V-21.3333333333333H170.6666666666667V21.3333333333334H192C203.7333333333334 21.3333333333334 213.3333333333333 30.9333333333333 213.3333333333333 42.6666666666667V341.3333333333334z" />
+    <glyph glyph-name="internet-explorer"
+      unicode="&#xF300;"
+      horiz-adv-x="512" d=" M277.3333333333333 384L298.6666666666667 382.7200000000001C358.4 409.8133333333334 410.24 413.0133333333333 437.3333333333333 385.7066666666667C458.6666666666666 364.1600000000001 460.3733333333333 327.04 446.2933333333334 283.3066666666667C461.0133333333333 256 469.3333333333333 225.0666666666667 469.3333333333333 192L468.2666666666667 170.6666666666667H193.7066666666667C201.6 122.0266666666667 235.9466666666667 85.3333333333334 277.3333333333333 85.3333333333334C305.28 85.3333333333334 330.0266666666667 102.1866666666667 345.6 128H458.6666666666666C432 53.3333333333334 360.9600000000001 0 277.3333333333333 0C250.0266666666667 0 224 5.76 200.7466666666667 16C138.6666666666667 -14.5066666666667 82.9866666666667 -19.1999999999999 54.8266666666667 9.3866666666667C21.3333333333333 43.52 35.84 115.84 85.3333333333333 192C105.1733333333333 223.1466666666667 130.9866666666667 254.72 161.4933333333334 284.8L178.7733333333334 301.2266666666667C153.8133333333333 286.5066666666667 121.8133333333334 264.1066666666667 89.3866666666667 231.04C107.3066666666667 318.2933333333334 184.7466666666667 384 277.3333333333333 384M277.3333333333333 298.6666666666667C239.1466666666667 298.6666666666667 206.72 267.3066666666667 195.84 224H358.8266666666667C347.9466666666666 267.3066666666667 315.52 298.6666666666667 277.3333333333333 298.6666666666667M427.9466666666666 361.3866666666667C413.8666666666666 375.68 388.6933333333333 376.5333333333333 357.12 366.7200000000001C388.6933333333333 352 416 329.3866666666667 435.4133333333333 301.0133333333333C442.2399999999999 327.4666666666667 440.32 348.8 427.9466666666666 361.3866666666667M82.9866666666667 21.3333333333334C100.6933333333333 3.4133333333334 136.5333333333333 6.6133333333333 180.0533333333333 26.4533333333333C140.5866666666667 49.7066666666667 110.2933333333333 86.6133333333334 95.36 130.56C69.76 82.1333333333334 64 41.1733333333333 82.9866666666667 21.3333333333334z" />
+    <glyph glyph-name="invert-colors"
+      unicode="&#xF301;"
+      horiz-adv-x="512" d=" M256 30.2933333333334C221.8666666666667 30.2933333333334 189.6533333333333 43.5200000000001 165.5466666666667 67.6266666666667C141.2266666666667 91.9466666666667 128 123.9466666666667 128 158.2933333333334C128 192 141.2266666666667 224.64 165.5466666666667 248.7466666666667L256 339.2000000000001M376.7466666666667 278.8266666666667L256 399.5733333333333L135.2533333333333 278.8266666666667C68.6933333333333 212.2666666666667 68.6933333333333 104.1066666666667 135.2533333333333 37.5466666666666C168.5333333333333 4.2666666666667 212.2666666666667 -12.3733333333333 256 -12.3733333333333C299.7333333333334 -12.3733333333333 343.4666666666667 4.2666666666668 376.7466666666667 37.5466666666667C443.3066666666667 104.1066666666667 443.3066666666667 212.2666666666667 376.7466666666667 278.8266666666667z" />
+    <glyph glyph-name="ip"
+      unicode="&#xFA5E;"
+      horiz-adv-x="512" d=" M341.3333333333333 213.3333333333334H298.6666666666667V256H341.3333333333333V213.3333333333334M64 341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334M213.3333333333333 298.6666666666667H170.6666666666667V85.3333333333334H213.3333333333333V298.6666666666667M256 85.3333333333334H298.6666666666667V170.6666666666667H341.3333333333333C364.8 170.6666666666667 384 189.8666666666667 384 213.3333333333334V256C384 279.4666666666667 364.8 298.6666666666667 341.3333333333333 298.6666666666667H256V85.3333333333334z" />
+    <glyph glyph-name="ip-network"
+      unicode="&#xFA5F;"
+      horiz-adv-x="512" d=" M320 277.3333333333334H277.3333333333333V320H320V277.3333333333334M469.3333333333333 42.6666666666667V0H320C320 -11.7333333333333 310.4 -21.3333333333333 298.6666666666667 -21.3333333333333H213.3333333333333C201.6 -21.3333333333333 192 -11.7333333333333 192 0H42.6666666666667V42.6666666666667H192C192 54.4 201.6 64 213.3333333333333 64H234.6666666666667V106.6666666666667H149.3333333333333C125.8666666666667 106.6666666666667 106.6666666666667 125.8666666666667 106.6666666666667 149.3333333333334V362.6666666666667C106.6666666666667 386.1333333333334 125.8666666666667 405.3333333333333 149.3333333333333 405.3333333333333H362.6666666666667C386.1333333333334 405.3333333333333 405.3333333333333 386.1333333333334 405.3333333333333 362.6666666666667V149.3333333333334C405.3333333333333 125.8666666666667 386.1333333333334 106.6666666666667 362.6666666666667 106.6666666666667H277.3333333333333V64H298.6666666666667C310.4 64 320 54.4 320 42.6666666666667H469.3333333333333M192 362.6666666666667H149.3333333333333V149.3333333333334H192V362.6666666666667M234.6666666666667 149.3333333333334H277.3333333333333V234.6666666666667H320C343.4666666666667 234.6666666666667 362.6666666666667 253.8666666666667 362.6666666666667 277.3333333333334V320C362.6666666666667 343.4666666666667 343.4666666666667 362.6666666666667 320 362.6666666666667H234.6666666666667V149.3333333333334z" />
+    <glyph glyph-name="islam"
+      unicode="&#xF978;"
+      horiz-adv-x="512" d=" M262.4 405.3333333333333H256C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333C320 -21.3333333333333 356.2666666666667 0 394.6666666666667 32C277.3333333333333 0 170.6666666666667 85.3333333333334 170.6666666666667 192S277.3333333333333 384 394.6666666666667 352C359.68 386.9866666666667 311.8933333333333 406.1866666666667 262.4 405.3333333333333M358.4 315.7333333333334L326.4 241.0666666666667L247.4666666666667 234.6666666666667L309.3333333333334 181.3333333333334L290.1333333333334 106.6666666666667L358.4 149.3333333333334L426.6666666666667 106.6666666666667L405.3333333333333 181.3333333333334L469.3333333333333 234.6666666666667L390.4 241.0666666666667L358.4 315.7333333333334z" />
+    <glyph glyph-name="itunes"
+      unicode="&#xF676;"
+      horiz-adv-x="512" d=" M167.4666666666667 83.84C149.9733333333333 81.7066666666667 74.6666666666667 71.04 86.6133333333333 15.7866666666666C100.0533333333333 -49.0666666666667 210.56 -33.9200000000001 209.7066666666666 42.6666666666667C209.28 94.5066666666667 209.7066666666666 251.7333333333334 209.7066666666666 251.7333333333334S208.2133333333333 266.0266666666667 222.5066666666666 269.0133333333334L388.0533333333333 303.1466666666667S401.7066666666666 306.1333333333334 401.7066666666666 292.48V145.0666666666667S403.2 131.6266666666667 386.56 128C369.9199999999999 125.4400000000001 296.7466666666666 119.4666666666667 302.7199999999999 64C309.3333333333333 -1.4933333333333 426.6666666666666 7.4666666666667 426.6666666666666 83.84V392.32S427.5199999999999 413.44 403.1999999999999 408.1066666666667L202.6666666666667 367.36S184.7466666666667 363.52 184.7466666666667 346.24V104.3200000000001S184.7466666666667 86.1866666666667 167.4666666666667 83.84z" />
+    <glyph glyph-name="jeepney"
+      unicode="&#xF302;"
+      horiz-adv-x="512" d=" M405.3333333333333 170.6666666666667V298.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333V298.6666666666667H106.6666666666667V170.6666666666667H42.6666666666667C42.6666666666667 150.8266666666667 53.3333333333333 134.1866666666667 74.6666666666667 129.4933333333334V21.3333333333334C74.6666666666667 9.6 84.2666666666667 0 96 0H117.3333333333333C129.0666666666667 0 138.6666666666667 9.6 138.6666666666667 21.3333333333334V42.6666666666667H373.3333333333333V21.3333333333334C373.3333333333333 9.6 382.9333333333333 0 394.6666666666667 0H416C427.7333333333334 0 437.3333333333333 9.6 437.3333333333333 21.3333333333334V129.4933333333334C458.6666666666666 134.4 469.3333333333333 150.8266666666667 469.3333333333333 170.6666666666667H405.3333333333333M170.6666666666667 128C152.96 128 138.6666666666667 142.2933333333334 138.6666666666667 160S152.96 192 170.6666666666667 192S202.6666666666667 177.7066666666667 202.6666666666667 160S188.3733333333333 128 170.6666666666667 128M341.3333333333333 128C323.6266666666667 128 309.3333333333333 142.2933333333334 309.3333333333333 160S323.6266666666667 192 341.3333333333333 192S373.3333333333333 177.7066666666667 373.3333333333333 160S359.04 128 341.3333333333333 128M373.3333333333333 224C339.6266666666667 230.8266666666667 299.3066666666666 234.6666666666667 256 234.6666666666667S170.6666666666667 230.8266666666667 138.6666666666667 224V298.6666666666667H373.3333333333333V224z" />
+    <glyph glyph-name="jira"
+      unicode="&#xF303;"
+      horiz-adv-x="512" d=" M245.9733333333333 405.3333333333333C245.9733333333333 354.1333333333334 288 312.5333333333334 338.7733333333333 312.5333333333334H376.7466666666667V276.2666666666667C376.7466666666667 225.0666666666667 418.1333333333334 183.6800000000001 469.3333333333333 183.4666666666667V387.4133333333334C469.3333333333333 397.2266666666667 461.2266666666667 405.3333333333333 451.4133333333333 405.3333333333333H245.9733333333333M144.4266666666667 302.9333333333334C144.64 251.9466666666667 186.0266666666667 210.56 237.0133333333333 210.3466666666667H275.4133333333333V173.6533333333333C275.6266666666667 122.6666666666666 317.0133333333333 81.28 368 81.0666666666666V285.2266666666667C367.7866666666667 295.04 360.1066666666667 302.7200000000001 350.2933333333334 302.9333333333334H144.4266666666667M42.6666666666667 200.5333333333334C42.6666666666667 149.3333333333334 84.2666666666667 107.9466666666667 135.4666666666667 107.9466666666667H173.44V71.2533333333333C173.6533333333333 20.2666666666667 215.04 -21.3333333333333 266.0266666666667 -21.3333333333333V182.8266666666667C266.0266666666667 192.6400000000001 257.92 200.7466666666667 248.1066666666667 200.7466666666667L42.6666666666667 200.5333333333334z" />
+    <glyph glyph-name="jquery"
+      unicode="&#xF87C;"
+      horiz-adv-x="512" d=" M488.1066666666666 225.92C443.0933333333333 188.16 375.68 194.1333333333333 337.92 239.1466666666667C299.9466666666667 284.3733333333334 305.92 352 350.9333333333333 389.3333333333333L361.8133333333334 397.44C325.76 358.6133333333334 323.4133333333333 298.0266666666667 358.4 256C393.1733333333333 214.6133333333334 453.3333333333333 206.5066666666667 497.92 235.3066666666667L488.1066666666666 225.92M450.1333333333334 138.6666666666667C382.5066666666667 81.7066666666667 281.6 90.4533333333334 224.8533333333334 158.2933333333334C167.8933333333334 225.92 176.8533333333334 326.8266666666667 244.48 384L264.1066666666667 397.6533333333333C212.48 339.4133333333334 209.92 250.4533333333334 261.5466666666667 189.0133333333334C313.1733333333334 128.0000000000001 401.0666666666667 114.5600000000001 467.4133333333334 155.3066666666667L450.1333333333335 138.6666666666668M426.0266666666668 34.5600000000001C331.3066666666668 -45.0133333333333 189.8666666666668 -32.6399999999999 110.2933333333334 62.2933333333334C30.9333333333333 157.0133333333333 43.3066666666667 298.6666666666667 138.0266666666667 377.8133333333334L161.7066666666667 394.6666666666667C86.8266666666667 313.6 82.1333333333333 187.0933333333334 155.3066666666667 99.84C228.48 12.8000000000001 353.92 -4.6933333333333 447.1466666666667 54.8266666666667L426.0266666666667 34.5600000000001z" />
+    <glyph glyph-name="jsfiddle"
+      unicode="&#xF304;"
+      horiz-adv-x="512" d=" M350.9333333333333 74.6666666666667C372.2666666666667 74.6666666666667 390.4 82.1333333333334 405.3333333333333 96C419.6266666666667 110.9333333333333 426.6666666666667 128 426.6666666666667 149.3333333333334C426.6666666666667 169.6 419.4133333333333 187.3066666666667 404.48 202.0266666666667C389.5466666666667 216.7466666666667 371.4133333333333 224 350.08 224C330.0266666666667 224 312.32 216.96 296.96 202.6666666666667L194.9866666666667 116.0533333333334C185.6 106.6666666666667 174.2933333333333 101.9733333333334 161.0666666666667 101.9733333333334C147.6266666666667 101.9733333333334 136.32 106.6666666666667 126.9333333333334 116.0533333333334C117.3333333333334 125.2266666666667 113.0666666666667 136.3200000000001 113.0666666666667 149.3333333333334C113.0666666666667 161.7066666666667 117.3333333333334 172.5866666666667 126.9333333333334 181.9733333333334C136.32 191.36 147.6266666666667 196.0533333333334 161.0666666666667 196.0533333333334C173.6533333333333 196.0533333333334 185.3866666666667 191.36 196.0533333333334 181.9733333333334L212.0533333333334 167.8933333333334L232.9600000000001 187.0933333333334L215.04 202.0266666666667C200.3200000000001 216.7466666666667 182.4 224 161.0666666666667 224C140.3733333333334 224 122.4533333333334 216.7466666666667 107.5200000000001 202.0266666666667C92.5866666666667 187.3066666666667 85.3333333333333 169.6 85.3333333333333 149.3333333333334C85.3333333333333 128 92.5866666666667 110.9333333333333 107.52 96C122.4533333333333 82.1333333333334 140.5866666666667 74.6666666666667 161.92 74.6666666666667C181.9733333333333 74.6666666666667 199.68 81.92 215.04 96L317.0133333333333 183.04C325.76 192 337.0666666666666 196.0533333333334 350.9333333333333 196.0533333333334C364.3733333333333 196.0533333333334 375.68 191.36 385.0666666666667 181.9733333333334C394.6666666666667 172.5866666666667 398.9333333333333 161.7066666666667 398.9333333333333 149.3333333333334C398.9333333333333 136.3200000000001 394.6666666666667 125.2266666666667 385.0666666666667 116.0533333333334C375.68 106.6666666666667 364.3733333333334 101.9733333333334 350.9333333333333 101.9733333333334C338.9866666666666 101.9733333333334 327.2533333333334 106.6666666666667 315.9466666666666 117.3333333333334L299.9466666666666 130.9866666666667L279.04 112.0000000000001L296.9599999999999 97.0666666666667C311.68 82.3466666666667 329.5999999999999 74.6666666666667 350.9333333333333 74.6666666666667M413.0133333333333 234.0266666666667C440.32 231.8933333333333 463.5733333333333 220.8 482.9866666666667 200.5333333333333C502.4 180.2666666666667 512 155.9466666666667 512 128C512 98.56 501.3333333333333 73.6 480 52.48C459.52 31.9999999999999 434.3466666666667 21.3333333333333 405.3333333333333 21.3333333333333H128C92.5866666666667 21.3333333333333 62.5066666666667 33.4933333333333 37.5466666666667 58.4533333333333C12.5866666666667 83.4133333333334 0 113.7066666666667 0 149.3333333333334C0 180.2666666666667 10.6666666666667 208.4266666666667 33.4933333333333 233.6C55.8933333333333 258.56 82.7733333333333 272.64 113.92 276.0533333333334C128 302.08 147.6266666666667 322.9866666666667 173.0133333333333 338.9866666666667S225.92 362.6666666666667 256 362.6666666666667C292.0533333333333 362.6666666666667 325.5466666666666 350.2933333333334 356.48 324.9066666666667C387.4133333333333 299.7333333333334 406.4 269.2266666666667 413.0133333333333 234.0266666666667z" />
+    <glyph glyph-name="json"
+      unicode="&#xF626;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H149.3333333333333V341.3333333333334H106.6666666666667V234.6666666666667C106.6666666666667 211.2 87.4666666666667 192 64 192C87.4666666666667 192 106.6666666666667 172.8 106.6666666666667 149.3333333333334V42.6666666666667H149.3333333333333V0H106.6666666666667C83.84 5.76 64 19.2 64 42.6666666666667V128C64 151.4666666666667 44.8 170.6666666666667 21.3333333333333 170.6666666666667H0V213.3333333333334H21.3333333333333C44.8 213.3333333333334 64 232.5333333333334 64 256V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V256C448 232.5333333333334 467.1999999999999 213.3333333333334 490.6666666666666 213.3333333333334H512V170.6666666666667H490.6666666666666C467.1999999999999 170.6666666666667 448 151.4666666666667 448 128V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H362.6666666666667V42.6666666666667H405.3333333333333V149.3333333333334C405.3333333333333 172.8 424.5333333333333 192 448 192C424.5333333333333 192 405.3333333333333 211.2 405.3333333333333 234.6666666666667V341.3333333333334H362.6666666666667V384H405.3333333333333M256 128C267.7333333333334 128 277.3333333333333 118.4 277.3333333333333 106.6666666666667S267.7333333333334 85.3333333333334 256 85.3333333333334S234.6666666666667 94.9333333333333 234.6666666666667 106.6666666666667S244.2666666666667 128 256 128M170.6666666666667 128C182.4 128 192 118.4 192 106.6666666666667S182.4 85.3333333333334 170.6666666666667 85.3333333333334S149.3333333333333 94.9333333333333 149.3333333333333 106.6666666666667S158.9333333333333 128 170.6666666666667 128M341.3333333333333 128C353.0666666666667 128 362.6666666666667 118.4 362.6666666666667 106.6666666666667S353.0666666666667 85.3333333333334 341.3333333333333 85.3333333333334S320 94.9333333333333 320 106.6666666666667S329.6 128 341.3333333333333 128z" />
+    <glyph glyph-name="judaism"
+      unicode="&#xF979;"
+      horiz-adv-x="512" d=" M256 405.3333333333333L194.1333333333333 298.6666666666667H70.4L134.4 192L70.4 85.3333333333334H194.1333333333333L256 -21.3333333333333L317.8666666666667 85.3333333333334H441.6L377.6 192L441.6 298.6666666666667H317.8666666666666L256 405.3333333333333M256 341.3333333333334L281.6 298.6666666666667H230.4L256 341.3333333333334M174.9333333333333 266.6666666666667L151.4666666666667 224L125.8666666666667 266.6666666666667H174.9333333333333M213.3333333333333 266.6666666666667H298.6666666666667L341.3333333333333 192L298.6666666666667 117.3333333333334H213.3333333333333L170.6666666666667 192L213.3333333333333 266.6666666666667M384 266.6666666666667L358.4 224L334.9333333333334 266.6666666666667H384M151.4666666666667 160L174.9333333333333 117.3333333333334H128L151.4666666666667 160M360.5333333333333 160L386.1333333333333 117.3333333333334H337.0666666666666L360.5333333333333 160M283.7333333333334 85.3333333333334L256 42.6666666666667L230.4 85.3333333333334H283.7333333333334z" />
+    <glyph glyph-name="karate"
+      unicode="&#xF82B;"
+      horiz-adv-x="512" d=" M405.3333333333333 420.9066666666667C384.8533333333333 432.64 358.8266666666667 425.8133333333334 347.0933333333333 405.3333333333333C335.1466666666667 385.0666666666667 342.1866666666666 358.8266666666667 362.6666666666667 347.0933333333334C382.9333333333333 335.36 408.9600000000001 342.1866666666667 420.9066666666667 362.6666666666667C432.64 383.1466666666667 425.6 409.1733333333334 405.3333333333333 420.9066666666667M453.76 248.7466666666667L398.9333333333333 153.8133333333334L361.8133333333334 175.1466666666667L398.7200000000001 239.1466666666667L365.6533333333333 266.6666666666667L298.6666666666667 151.04V-21.3333333333333H256V162.3466666666667L52.6933333333333 279.68L74.0266666666667 316.5866666666667L240.4266666666667 220.5866666666667L291.6266666666667 309.3333333333334L155.3066666666667 359.04L170.6666666666667 399.1466666666667L314.24 346.88L320 344.7466666666667C328.32 341.3333333333334 336.2133333333333 338.1333333333334 343.8933333333333 333.8666666666667L361.8133333333334 323.4133333333334C369.2800000000001 319.1466666666667 376.5333333333334 314.0266666666667 383.1466666666667 308.48L388.0533333333334 304.2133333333334L453.76 248.7466666666667z" />
+    <glyph glyph-name="keg"
+      unicode="&#xF305;"
+      horiz-adv-x="512" d=" M106.6666666666667 -21.3333333333333V21.3333333333334H128V106.6666666666667H106.6666666666667V149.3333333333334H128V213.3333333333334H106.6666666666667V298.6666666666667H234.6666666666667V384H213.3333333333333V405.3333333333333H298.6666666666667V384H277.3333333333333V298.6666666666667H405.3333333333333V213.3333333333334H384V149.3333333333334H405.3333333333333V106.6666666666667H384V21.3333333333334H405.3333333333333V-21.3333333333333H106.6666666666667M362.6666666666667 256C362.6666666666667 267.7333333333334 353.0666666666667 277.3333333333334 341.3333333333333 277.3333333333334H298.6666666666667C286.9333333333333 277.3333333333334 277.3333333333333 267.7333333333334 277.3333333333333 256S286.9333333333333 234.6666666666667 298.6666666666667 234.6666666666667H341.3333333333333C353.0666666666667 234.6666666666667 362.6666666666667 244.2666666666667 362.6666666666667 256z" />
+    <glyph glyph-name="kettle"
+      unicode="&#xF5FA;"
+      horiz-adv-x="512" d=" M266.6666666666667 384C166.6133333333333 384 85.3333333333333 326.6133333333334 85.3333333333333 256C85.3333333333333 230.6133333333334 96 206.08 116.0533333333333 184.96C96.64 160 85.3333333333333 128.8533333333334 85.3333333333333 96V21.3333333333334C85.3333333333333 -2.3466666666666 104.32 -21.3333333333333 128 -21.3333333333333H405.3333333333333C429.0133333333333 -21.3333333333333 448 -2.3466666666666 448 21.3333333333334V96C448 122.0266666666667 440.7466666666667 147.84 426.6666666666667 170.6666666666667L469.3333333333333 213.3333333333334L405.3333333333333 277.3333333333334L360.5333333333333 232.5333333333334C332.3733333333334 247.8933333333333 299.7333333333334 256 266.6666666666667 256C227.2 256 190.9333333333333 244.6933333333334 161.0666666666667 225.92C153.3866666666667 235.3066666666667 149.3333333333333 245.3333333333334 149.3333333333333 256C149.3333333333333 294.1866666666667 201.8133333333333 325.3333333333334 266.6666666666667 325.3333333333334C297.1733333333333 325.3333333333334 326.4 318.2933333333334 348.3733333333333 305.7066666666667L391.4666666666666 348.8C357.76 371.4133333333334 313.1733333333333 384 266.6666666666667 384M266.6666666666667 213.3333333333334C273.92 213.3333333333334 280.96 212.48 288 211.4133333333334C221.6533333333333 201.1733333333334 170.6666666666667 144 170.6666666666667 74.6666666666667V21.3333333333334H128V74.6666666666667C128 151.2533333333333 190.08 213.3333333333334 266.6666666666667 213.3333333333334z" />
+    <glyph glyph-name="key"
+      unicode="&#xF306;"
+      horiz-adv-x="512" d=" M149.3333333333333 149.3333333333334C125.8666666666667 149.3333333333334 106.6666666666667 168.5333333333334 106.6666666666667 192S125.8666666666667 234.6666666666667 149.3333333333333 234.6666666666667S192 215.4666666666667 192 192S172.8 149.3333333333334 149.3333333333333 149.3333333333334M269.8666666666667 234.6666666666667C252.3733333333334 284.3733333333334 205.0133333333333 320 149.3333333333333 320C78.72 320 21.3333333333333 262.6133333333334 21.3333333333333 192S78.72 64 149.3333333333333 64C205.0133333333333 64 252.3733333333334 99.6266666666667 269.8666666666667 149.3333333333334H362.6666666666667V64H448V149.3333333333334H490.6666666666666V234.6666666666667H269.8666666666667z" />
+    <glyph glyph-name="key-change"
+      unicode="&#xF307;"
+      horiz-adv-x="512" d=" M138.6666666666667 405.3333333333333C180.48 405.3333333333333 216.1066666666666 378.6666666666667 229.12 341.3333333333334H469.3333333333333V277.3333333333334H384V213.3333333333334H320V277.3333333333334H229.12C216.1066666666667 240 180.48 213.3333333333334 138.6666666666667 213.3333333333334C85.3333333333333 213.3333333333334 42.6666666666667 256 42.6666666666667 309.3333333333334S85.3333333333333 405.3333333333333 138.6666666666667 405.3333333333333M138.6666666666667 341.3333333333334C120.96 341.3333333333334 106.6666666666667 327.04 106.6666666666667 309.3333333333334S120.96 277.3333333333334 138.6666666666667 277.3333333333334S170.6666666666667 291.6266666666667 170.6666666666667 309.3333333333334S156.3733333333333 341.3333333333334 138.6666666666667 341.3333333333334M138.6666666666667 170.6666666666667C180.48 170.6666666666667 216.1066666666666 144 229.12 106.6666666666667H469.3333333333333V42.6666666666667H426.6666666666667V-21.3333333333333H384V42.6666666666667H341.3333333333333V-21.3333333333333H277.3333333333333V42.6666666666667H229.12C216.1066666666667 5.3333333333334 180.48 -21.3333333333333 138.6666666666667 -21.3333333333333C85.3333333333333 -21.3333333333333 42.6666666666667 21.3333333333334 42.6666666666667 74.6666666666667S85.3333333333333 170.6666666666667 138.6666666666667 170.6666666666667M138.6666666666667 106.6666666666667C120.96 106.6666666666667 106.6666666666667 92.3733333333333 106.6666666666667 74.6666666666667S120.96 42.6666666666667 138.6666666666667 42.6666666666667S170.6666666666667 56.96 170.6666666666667 74.6666666666667S156.3733333333333 106.6666666666667 138.6666666666667 106.6666666666667z" />
+    <glyph glyph-name="key-minus"
+      unicode="&#xF308;"
+      horiz-adv-x="512" d=" M138.6666666666667 384C180.48 384 216.1066666666666 357.3333333333334 229.12 320H469.3333333333333V256H384V192H320V256H229.12C216.1066666666667 218.6666666666667 180.48 192 138.6666666666667 192C85.3333333333333 192 42.6666666666667 234.6666666666667 42.6666666666667 288S85.3333333333333 384 138.6666666666667 384M138.6666666666667 320C120.96 320 106.6666666666667 305.7066666666667 106.6666666666667 288S120.96 256 138.6666666666667 256S170.6666666666667 270.2933333333334 170.6666666666667 288S156.3733333333333 320 138.6666666666667 320M170.6666666666667 85.3333333333334H341.3333333333333V42.6666666666667H170.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="key-plus"
+      unicode="&#xF309;"
+      horiz-adv-x="512" d=" M138.6666666666667 384C180.48 384 216.1066666666666 357.3333333333334 229.12 320H469.3333333333333V256H384V192H320V256H229.12C216.1066666666667 218.6666666666667 180.48 192 138.6666666666667 192C85.3333333333333 192 42.6666666666667 234.6666666666667 42.6666666666667 288S85.3333333333333 384 138.6666666666667 384M138.6666666666667 320C120.96 320 106.6666666666667 305.7066666666667 106.6666666666667 288S120.96 256 138.6666666666667 256S170.6666666666667 270.2933333333334 170.6666666666667 288S156.3733333333333 320 138.6666666666667 320M170.6666666666667 85.3333333333334H234.6666666666667V149.3333333333334H277.3333333333333V85.3333333333334H341.3333333333333V42.6666666666667H277.3333333333333V-21.3333333333333H234.6666666666667V42.6666666666667H170.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="key-remove"
+      unicode="&#xF30A;"
+      horiz-adv-x="512" d=" M138.6666666666667 384C180.48 384 216.1066666666666 357.3333333333334 229.12 320H469.3333333333333V256H384V192H320V256H229.12C216.1066666666667 218.6666666666667 180.48 192 138.6666666666667 192C85.3333333333333 192 42.6666666666667 234.6666666666667 42.6666666666667 288S85.3333333333333 384 138.6666666666667 384M138.6666666666667 320C120.96 320 106.6666666666667 305.7066666666667 106.6666666666667 288S120.96 256 138.6666666666667 256S170.6666666666667 270.2933333333334 170.6666666666667 288S156.3733333333333 320 138.6666666666667 320M311.2533333333334 149.3333333333334L341.3333333333333 119.2533333333333L286.08 64L341.3333333333333 8.7466666666667L311.2533333333334 -21.3333333333333L256 33.92L200.7466666666667 -21.3333333333333L170.6666666666667 8.7466666666667L225.92 64L170.6666666666667 119.2533333333333L200.7466666666667 149.3333333333334L256 94.08L311.2533333333334 149.3333333333334z" />
+    <glyph glyph-name="key-variant"
+      unicode="&#xF30B;"
+      horiz-adv-x="512" d=" M469.3333333333333 64V-21.3333333333333H384V42.6666666666667H320V106.6666666666667H256L207.7866666666667 154.88C196.0533333333333 151.2533333333333 183.68 149.3333333333334 170.6666666666667 149.3333333333334C100.0533333333333 149.3333333333334 42.6666666666667 206.72 42.6666666666667 277.3333333333334S100.0533333333333 405.3333333333333 170.6666666666667 405.3333333333333S298.6666666666667 347.9466666666667 298.6666666666667 277.3333333333334C298.6666666666667 264.3200000000001 296.7466666666667 251.9466666666667 293.12 240.2133333333334L469.3333333333333 64M149.3333333333333 341.3333333333334C125.8666666666667 341.3333333333334 106.6666666666667 322.1333333333334 106.6666666666667 298.6666666666667S125.8666666666667 256 149.3333333333333 256S192 275.2000000000001 192 298.6666666666667S172.8 341.3333333333334 149.3333333333333 341.3333333333334z" />
+    <glyph glyph-name="keyboard"
+      unicode="&#xF30C;"
+      horiz-adv-x="512" d=" M405.3333333333333 234.6666666666667H362.6666666666667V277.3333333333334H405.3333333333333M405.3333333333333 170.6666666666667H362.6666666666667V213.3333333333334H405.3333333333333M341.3333333333333 234.6666666666667H298.6666666666667V277.3333333333334H341.3333333333333M341.3333333333333 170.6666666666667H298.6666666666667V213.3333333333334H341.3333333333333M341.3333333333333 85.3333333333334H170.6666666666667V128H341.3333333333333M149.3333333333333 234.6666666666667H106.6666666666667V277.3333333333334H149.3333333333333M149.3333333333333 170.6666666666667H106.6666666666667V213.3333333333334H149.3333333333333M170.6666666666667 213.3333333333334H213.3333333333333V170.6666666666667H170.6666666666667M170.6666666666667 277.3333333333334H213.3333333333333V234.6666666666667H170.6666666666667M234.6666666666667 213.3333333333334H277.3333333333333V170.6666666666667H234.6666666666667M234.6666666666667 277.3333333333334H277.3333333333333V234.6666666666667H234.6666666666667M426.6666666666667 341.3333333333334H85.3333333333333C61.6533333333333 341.3333333333334 42.6666666666667 322.3466666666667 42.6666666666667 298.6666666666667V85.3333333333334C42.6666666666667 61.8666666666667 61.8666666666667 42.6666666666667 85.3333333333333 42.6666666666667H426.6666666666667C450.1333333333334 42.6666666666667 469.3333333333333 61.8666666666667 469.3333333333333 85.3333333333334V298.6666666666667C469.3333333333333 322.3466666666667 450.1333333333334 341.3333333333334 426.6666666666667 341.3333333333334z" />
+    <glyph glyph-name="keyboard-backspace"
+      unicode="&#xF30D;"
+      horiz-adv-x="512" d=" M448 213.3333333333334H145.7066666666667L222.08 289.92L192 320L64 192L192 64L222.08 94.2933333333334L145.7066666666667 170.6666666666667H448V213.3333333333334z" />
+    <glyph glyph-name="keyboard-caps"
+      unicode="&#xF30E;"
+      horiz-adv-x="512" d=" M128 64H384V106.6666666666667H128M256 268.5866666666667L353.92 170.6666666666667L384 200.96L256 328.9600000000001L128 200.96L158.08 170.6666666666667L256 268.5866666666667z" />
+    <glyph glyph-name="keyboard-close"
+      unicode="&#xF30F;"
+      horiz-adv-x="512" d=" M256 -42.6666666666666L341.3333333333333 42.6666666666667H170.6666666666667M405.3333333333333 277.3333333333334H362.6666666666667V320H405.3333333333333M405.3333333333333 213.3333333333334H362.6666666666667V256H405.3333333333333M341.3333333333333 277.3333333333334H298.6666666666667V320H341.3333333333333M341.3333333333333 213.3333333333334H298.6666666666667V256H341.3333333333333M341.3333333333333 128H170.6666666666667V170.6666666666667H341.3333333333333M149.3333333333333 277.3333333333334H106.6666666666667V320H149.3333333333333M149.3333333333333 213.3333333333334H106.6666666666667V256H149.3333333333333M170.6666666666667 256H213.3333333333333V213.3333333333334H170.6666666666667M170.6666666666667 320H213.3333333333333V277.3333333333334H170.6666666666667M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667M234.6666666666667 320H277.3333333333333V277.3333333333334H234.6666666666667M426.6666666666667 384H85.3333333333333C61.6533333333333 384 42.6666666666667 365.0133333333333 42.6666666666667 341.3333333333334V128C42.6666666666667 104.5333333333333 61.8666666666667 85.3333333333334 85.3333333333333 85.3333333333334H426.6666666666667C450.1333333333334 85.3333333333334 469.3333333333333 104.5333333333333 469.3333333333333 128V341.3333333333334C469.3333333333333 365.0133333333333 450.1333333333334 384 426.6666666666667 384z" />
+    <glyph glyph-name="keyboard-off"
+      unicode="&#xF310;"
+      horiz-adv-x="512" d=" M21.3333333333333 356.9066666666667L48.64 384L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L335.5733333333333 42.6666666666667H85.3333333333333C61.6533333333333 42.6666666666667 42.6666666666667 61.8666666666667 42.6666666666667 85.3333333333334V298.6666666666667C42.6666666666667 309.3333333333334 46.5066666666667 318.5066666666667 52.48 325.76L21.3333333333333 356.9066666666667M405.3333333333333 234.6666666666667V277.3333333333334H362.6666666666667V234.6666666666667H405.3333333333333M405.3333333333333 170.6666666666667V213.3333333333334H362.6666666666667V170.6666666666667H405.3333333333333M341.3333333333333 234.6666666666667V277.3333333333334H298.6666666666667V234.6666666666667H341.3333333333333M341.3333333333333 170.6666666666667V213.3333333333334H298.6666666666667V188.16L252.16 234.6666666666667H277.3333333333333V277.3333333333334H234.6666666666667V252.1600000000001L209.4933333333334 277.3333333333334L145.4933333333334 341.3333333333334H426.6666666666667C450.1333333333334 341.3333333333334 469.3333333333333 322.1333333333334 469.3333333333333 298.6666666666667V85.3333333333334C469.3333333333333 66.9866666666667 457.8133333333333 51.4133333333334 441.6 45.44L316.16 170.6666666666667H341.3333333333333M170.6666666666667 128V85.3333333333334H292.9066666666667L250.24 128H170.6666666666667M106.6666666666667 234.6666666666667H143.5733333333333L106.6666666666667 271.5733333333334V234.6666666666667M149.3333333333333 170.6666666666667V213.3333333333334H106.6666666666667V170.6666666666667H149.3333333333333M170.6666666666667 170.6666666666667H207.5733333333333L170.6666666666667 207.5733333333334V170.6666666666667z" />
+    <glyph glyph-name="keyboard-outline"
+      unicode="&#xF97A;"
+      horiz-adv-x="512" d=" M85.3333333333333 341.3333333333334C61.8666666666667 341.3333333333334 42.6666666666667 322.1333333333334 42.6666666666667 298.6666666666667V85.3333333333334C42.6666666666667 61.8666666666667 61.8666666666667 42.6666666666667 85.3333333333333 42.6666666666667H426.6666666666667C450.1333333333334 42.6666666666667 469.3333333333333 61.8666666666667 469.3333333333333 85.3333333333334V298.6666666666667C469.3333333333333 322.1333333333334 450.1333333333334 341.3333333333334 426.6666666666667 341.3333333333334H85.3333333333333M85.3333333333333 298.6666666666667H426.6666666666667V85.3333333333334H85.3333333333333V298.6666666666667M106.6666666666667 277.3333333333334V234.6666666666667H149.3333333333333V277.3333333333334H106.6666666666667M170.6666666666667 277.3333333333334V234.6666666666667H213.3333333333333V277.3333333333334H170.6666666666667M234.6666666666667 277.3333333333334V234.6666666666667H277.3333333333333V277.3333333333334H234.6666666666667M298.6666666666667 277.3333333333334V234.6666666666667H341.3333333333333V277.3333333333334H298.6666666666667M362.6666666666667 277.3333333333334V234.6666666666667H405.3333333333333V277.3333333333334H362.6666666666667M106.6666666666667 213.3333333333334V170.6666666666667H149.3333333333333V213.3333333333334H106.6666666666667M170.6666666666667 213.3333333333334V170.6666666666667H213.3333333333333V213.3333333333334H170.6666666666667M234.6666666666667 213.3333333333334V170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M298.6666666666667 213.3333333333334V170.6666666666667H341.3333333333333V213.3333333333334H298.6666666666667M362.6666666666667 213.3333333333334V170.6666666666667H405.3333333333333V213.3333333333334H362.6666666666667M170.6666666666667 149.3333333333334V106.6666666666667H341.3333333333333V149.3333333333334H170.6666666666667z" />
+    <glyph glyph-name="keyboard-return"
+      unicode="&#xF311;"
+      horiz-adv-x="512" d=" M405.3333333333333 298.6666666666667V213.3333333333334H124.3733333333333L200.7466666666667 289.92L170.6666666666667 320L42.6666666666667 192L170.6666666666667 64L200.7466666666667 94.2933333333334L124.3733333333333 170.6666666666667H448V298.6666666666667H405.3333333333333z" />
+    <glyph glyph-name="keyboard-settings"
+      unicode="&#xF9F8;"
+      horiz-adv-x="512" d=" M405.3333333333333 234.6666666666667H362.6666666666667V277.3333333333334H405.3333333333333M405.3333333333333 170.6666666666667H362.6666666666667V213.3333333333334H405.3333333333333M341.3333333333333 234.6666666666667H298.6666666666667V277.3333333333334H341.3333333333333M341.3333333333333 170.6666666666667H298.6666666666667V213.3333333333334H341.3333333333333M341.3333333333333 85.3333333333334H170.6666666666667V128H341.3333333333333M149.3333333333333 234.6666666666667H106.6666666666667V277.3333333333334H149.3333333333333M149.3333333333333 170.6666666666667H106.6666666666667V213.3333333333334H149.3333333333333M170.6666666666667 213.3333333333334H213.3333333333333V170.6666666666667H170.6666666666667M170.6666666666667 277.3333333333334H213.3333333333333V234.6666666666667H170.6666666666667M234.6666666666667 213.3333333333334H277.3333333333333V170.6666666666667H234.6666666666667M234.6666666666667 277.3333333333334H277.3333333333333V234.6666666666667H234.6666666666667M426.6666666666667 341.3333333333334H85.3333333333333C61.8666666666667 341.3333333333334 42.6666666666667 322.1333333333334 42.6666666666667 298.6666666666667V85.3333333333334C42.6666666666667 61.8666666666667 61.8666666666667 42.6666666666667 85.3333333333333 42.6666666666667H426.6666666666667C450.1333333333334 42.6666666666667 469.3333333333333 61.8666666666667 469.3333333333333 85.3333333333334V298.6666666666667C469.3333333333333 322.1333333333334 450.1333333333334 341.3333333333334 426.6666666666667 341.3333333333334M149.3333333333333 -21.3333333333333H192V-64H149.3333333333333V-21.3333333333333M234.6666666666667 -21.3333333333333H277.3333333333333V-64H234.6666666666667V-21.3333333333333M320 -21.3333333333333H362.6666666666667V-64H320V-21.3333333333333z" />
+    <glyph glyph-name="keyboard-settings-outline"
+      unicode="&#xF9F9;"
+      horiz-adv-x="512" d=" M149.3333333333333 -21.3333333333333H192V-64H149.3333333333333V-21.3333333333333M234.6666666666667 -21.3333333333333H277.3333333333333V-64H234.6666666666667V-21.3333333333333M320 -21.3333333333333H362.6666666666667V-64H320V-21.3333333333333M85.3333333333333 341.3333333333334C61.8666666666667 341.3333333333334 42.6666666666667 322.1333333333334 42.6666666666667 298.6666666666667V85.3333333333334C42.6666666666667 61.8666666666667 61.8666666666667 42.6666666666667 85.3333333333333 42.6666666666667H426.6666666666667C450.1333333333334 42.6666666666667 469.3333333333333 61.8666666666667 469.3333333333333 85.3333333333334V298.6666666666667C469.3333333333333 322.1333333333334 450.1333333333334 341.3333333333334 426.6666666666667 341.3333333333334H85.3333333333333M85.3333333333333 298.6666666666667H426.6666666666667V85.3333333333334H85.3333333333333V298.6666666666667M106.6666666666667 277.3333333333334V234.6666666666667H149.3333333333333V277.3333333333334H106.6666666666667M170.6666666666667 277.3333333333334V234.6666666666667H213.3333333333333V277.3333333333334H170.6666666666667M234.6666666666667 277.3333333333334V234.6666666666667H277.3333333333333V277.3333333333334H234.6666666666667M298.6666666666667 277.3333333333334V234.6666666666667H341.3333333333333V277.3333333333334H298.6666666666667M362.6666666666667 277.3333333333334V234.6666666666667H405.3333333333333V277.3333333333334H362.6666666666667M106.6666666666667 213.3333333333334V170.6666666666667H149.3333333333333V213.3333333333334H106.6666666666667M170.6666666666667 213.3333333333334V170.6666666666667H213.3333333333333V213.3333333333334H170.6666666666667M234.6666666666667 213.3333333333334V170.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667M298.6666666666667 213.3333333333334V170.6666666666667H341.3333333333333V213.3333333333334H298.6666666666667M362.6666666666667 213.3333333333334V170.6666666666667H405.3333333333333V213.3333333333334H362.6666666666667M170.6666666666667 149.3333333333334V106.6666666666667H341.3333333333333V149.3333333333334H170.6666666666667z" />
+    <glyph glyph-name="keyboard-tab"
+      unicode="&#xF312;"
+      horiz-adv-x="512" d=" M426.6666666666667 64H469.3333333333333V320H426.6666666666667M247.2533333333334 289.92L323.6266666666667 213.3333333333334H21.3333333333333V170.6666666666667H323.6266666666667L247.2533333333334 94.2933333333334L277.3333333333333 64L405.3333333333333 192L277.3333333333333 320L247.2533333333334 289.92z" />
+    <glyph glyph-name="keyboard-variant"
+      unicode="&#xF313;"
+      horiz-adv-x="512" d=" M128 106.6666666666667H384V64H128V106.6666666666667M128 170.6666666666667V128H42.6666666666667V170.6666666666667H128M149.3333333333333 128V170.6666666666667H213.3333333333333V128H149.3333333333333M234.6666666666667 128V170.6666666666667H277.3333333333333V128H234.6666666666667M298.6666666666667 128V170.6666666666667H362.6666666666667V128H298.6666666666667M384 128V170.6666666666667H469.3333333333333V128H384M42.6666666666667 234.6666666666667H106.6666666666667V192H42.6666666666667V234.6666666666667M405.3333333333333 192V234.6666666666667H469.3333333333333V192H405.3333333333333M384 192H341.3333333333333V234.6666666666667H384V192M170.6666666666667 192H128V234.6666666666667H170.6666666666667V192M256 192H192V234.6666666666667H256V192M320 192H277.3333333333333V234.6666666666667H320V192M42.6666666666667 256V298.6666666666667H85.3333333333333V256H42.6666666666667M106.6666666666667 256V298.6666666666667H149.3333333333333V256H106.6666666666667M170.6666666666667 256V298.6666666666667H213.3333333333333V256H170.6666666666667M234.6666666666667 256V298.6666666666667H277.3333333333333V256H234.6666666666667M298.6666666666667 256V298.6666666666667H341.3333333333333V256H298.6666666666667M362.6666666666667 256V298.6666666666667H469.3333333333333V256H362.6666666666667z" />
+    <glyph glyph-name="kickstarter"
+      unicode="&#xF744;"
+      horiz-adv-x="512" d=" M217.8133333333333 253.2266666666667L288 355.2C301.44 374.4 318.72 384 339.84 384C356.9066666666667 384 371.84 377.8133333333334 384 365.6533333333333C397.0133333333333 353.4933333333334 403.2 338.9866666666667 403.2 321.92C403.2 309.3333333333334 400 298.6666666666667 393.1733333333333 288.64L329.8133333333333 196.2666666666667L407.4666666666666 97.92C415.1466666666666 88.1066666666667 418.9866666666666 76.5866666666667 418.9866666666666 64C418.9866666666666 46.08 413.0133333333332 31.1466666666667 400.64 18.7733333333333C388.4799999999999 6.1866666666667 373.3333333333333 0 356.2666666666666 0C337.2799999999999 0 322.7733333333332 6.1866666666667 312.7466666666666 18.5600000000001L217.8133333333333 137.1733333333334V71.8933333333334C217.8133333333333 53.3333333333334 214.3999999999999 38.6133333333334 207.9999999999999 28.3733333333334C196.2666666666667 9.3866666666667 178.9866666666667 0 156.3733333333333 0C135.8933333333333 0 120.1066666666667 6.8266666666667 108.8 20.6933333333333C98.1333333333333 33.4933333333333 93.0133333333333 50.5599999999999 93.0133333333333 71.4666666666666V314.24C93.0133333333333 334.0800000000001 98.3466666666667 350.5066666666667 109.0133333333333 363.52C120.32 377.1733333333334 135.8933333333333 384 155.7333333333333 384C174.5066666666667 384 190.2933333333333 377.1733333333334 202.6666666666667 363.52C209.7066666666667 355.8400000000001 214.1866666666667 348.1600000000001 216.1066666666667 340.48C217.1733333333334 335.5733333333333 217.8133333333333 326.6133333333334 217.8133333333333 313.6V253.2266666666667z" />
+    <glyph glyph-name="knife"
+      unicode="&#xF9FA;"
+      horiz-adv-x="512" d=" M439.8933333333333 405.3333333333333C511.36 285.6533333333333 266.0266666666667 18.1333333333334 266.0266666666667 18.1333333333334L204.8 79.36L104.7466666666667 -21.3333333333333L59.0933333333333 24.3200000000001L439.8933333333333 405.3333333333333z" />
+    <glyph glyph-name="knife-military"
+      unicode="&#xF9FB;"
+      horiz-adv-x="512" d=" M469.3333333333333 405.3333333333333L370.9866666666667 368L223.1466666666667 220.16L298.6666666666667 144.64L446.2933333333334 292.48C478.5066666666667 324.6933333333334 469.3333333333333 405.3333333333333 469.3333333333333 405.3333333333333M177.7066666666667 234.6666666666667L147.6266666666667 205.0133333333333L177.7066666666667 174.9333333333333L57.1733333333333 54.1866666666667L132.48 -21.3333333333333L253.2266666666667 99.4133333333334L283.3066666666667 69.1200000000001L313.6 99.4133333333334L177.7066666666667 234.6666666666667z" />
+    <glyph glyph-name="kodi"
+      unicode="&#xF314;"
+      horiz-adv-x="512" d=" M256.64 426.6666666666667C252.16 426.6666666666667 247.4666666666667 424.32 243.4133333333334 420.0533333333334L189.44 366.0800000000001C184.7466666666667 361.3866666666667 183.4666666666667 358.8266666666667 178.7733333333334 354.56C172.5866666666667 349.44 169.8133333333333 343.2533333333334 170.0266666666667 335.36C170.6666666666667 307.8400000000001 170.6666666666667 280.7466666666667 170.6666666666667 253.2266666666667V167.2533333333333C170.6666666666667 165.12 170.6666666666667 163.4133333333334 171.3066666666667 161.28C173.0133333333333 154.6666666666667 177.28 153.1733333333334 181.9733333333333 158.0800000000001C207.5733333333333 183.68 230.4 206.9333333333333 256 232.7466666666667C285.0133333333333 261.76 314.24 290.7733333333334 343.2533333333334 320C352 328.5333333333334 352 338.1333333333334 343.2533333333334 346.6666666666667C318.72 371.2 293.76 395.3066666666667 269.44 420.0533333333334C265.1733333333333 424.32 261.12 426.6666666666667 256.64 426.6666666666667M398.08 284.5866666666667C393.6 284.5866666666667 389.3333333333333 282.6666666666667 385.28 278.6133333333334C360.7466666666667 253.8666666666667 336 229.5466666666667 311.2533333333333 204.5866666666667C302.9333333333333 196.2666666666667 302.9333333333333 187.0933333333334 311.2533333333333 178.56C335.7866666666667 154.0266666666667 360.1066666666667 129.28 384.64 104.7466666666667C393.1733333333333 96 402.1333333333333 96 410.6666666666666 104.7466666666667C434.3466666666666 128 458.6666666666666 152.1066666666667 481.9199999999999 176C485.5466666666666 179.6266666666667 489.1733333333332 183.04 490.6666666666666 187.9466666666667V194.56C489.1733333333332 199.68 485.5466666666666 202.6666666666667 481.9199999999999 206.72C458.0266666666665 230.6133333333334 434.56 254.7200000000001 410.6666666666666 278.6133333333334C406.6133333333333 282.6666666666668 402.3466666666666 284.5866666666667 398.08 284.5866666666667M101.9733333333333 275.4133333333334C99.1999999999999 276.4800000000001 97.7066666666666 274.3466666666667 95.9999999999999 272.6400000000001C71.4666666666666 247.6800000000001 49.9199999999999 225.4933333333334 25.3866666666666 200.7466666666667C19.8399999999999 194.9866666666667 19.8399999999999 186.88 25.3866666666666 181.3333333333334C38.6133333333332 167.8933333333333 52.0533333333332 154.6666666666667 65.2799999999999 141.2266666666667C76.7999999999999 129.7066666666667 85.3333333333332 120.96 97.2799999999999 109.2266666666667C100.6933333333332 106.0266666666668 103.6799999999999 106.6666666666667 105.3866666666666 110.72C106.6666666666665 112.8533333333334 106.6666666666665 115.6266666666667 106.6666666666665 117.9733333333334V187.9466666666667V263.8933333333334C106.6666666666665 265.6 106.6666666666665 267.7333333333334 106.0266666666665 269.2266666666667C105.5999999999999 272.0000000000001 104.5333333333332 274.3466666666667 101.9733333333332 275.4133333333334M257.9199999999999 144C253.6533333333332 144 248.7466666666665 142.0800000000001 244.6933333333332 138.0266666666667C220.1599999999999 113.28 195.8399999999998 88.1066666666667 171.3066666666665 63.36C162.7733333333332 54.8266666666667 162.7733333333332 45.8666666666667 171.3066666666665 37.3333333333334C194.9866666666665 13.44 218.8799999999999 -10.0266666666666 242.7733333333332 -33.92C246.1866666666666 -37.5466666666667 249.8133333333332 -41.1733333333333 254.7199999999999 -42.6666666666666H260.6933333333332C265.3866666666666 -41.3866666666667 269.2266666666665 -38.1866666666666 272.6399999999999 -34.7733333333333C296.5333333333332 -10.6666666666666 320.6399999999999 13.2266666666667 344.7466666666665 37.3333333333334C353.0666666666665 45.8666666666667 351.9999999999999 55.4666666666667 344.1066666666665 64C319.3599999999998 88.7466666666667 295.2533333333332 113.28 270.7199999999998 138.0266666666667C266.6666666666665 142.0800000000001 262.3999999999998 144 257.9199999999999 144z" />
+    <glyph glyph-name="label"
+      unicode="&#xF315;"
+      horiz-adv-x="512" d=" M376.1066666666667 323.4133333333334C368.4266666666666 334.2933333333334 355.6266666666667 341.3333333333334 341.3333333333333 341.3333333333334H106.6666666666667C83.2 341.3333333333334 64 322.1333333333334 64 298.6666666666667V85.3333333333334C64 61.8666666666667 83.2 42.6666666666667 106.6666666666667 42.6666666666667H341.3333333333333C355.6266666666667 42.6666666666667 368.4266666666666 49.92 376.1066666666667 60.8000000000001L469.3333333333333 192L376.1066666666667 323.4133333333334z" />
+    <glyph glyph-name="label-off"
+      unicode="&#xFACA;"
+      horiz-adv-x="512" d=" M42.6666666666667 356.9066666666667L69.9733333333333 384L426.6666666666667 27.3066666666667L399.5733333333333 0L354.7733333333333 44.8000000000001C350.5066666666667 43.5200000000001 346.0266666666667 42.6666666666667 341.3333333333333 42.6666666666667H106.6666666666667C83.2 42.6666666666667 64 61.8666666666667 64 85.3333333333334V298.6666666666667C64 309.3333333333334 67.6266666666667 318.5066666666667 73.8133333333333 325.76L42.6666666666667 356.9066666666667M376.1066666666667 323.4133333333334L469.3333333333333 192L405.3333333333333 102.4L167.04 341.3333333333334H341.3333333333333C355.6266666666667 341.3333333333334 368.4266666666666 334.2933333333334 376.1066666666667 323.4133333333334z" />
+    <glyph glyph-name="label-off-outline"
+      unicode="&#xFACB;"
+      horiz-adv-x="512" d=" M42.6666666666667 356.9066666666667L69.9733333333333 384L426.6666666666667 27.3066666666667L399.5733333333333 0L354.7733333333333 44.8000000000001C350.5066666666667 43.5200000000001 346.0266666666667 42.6666666666667 341.3333333333333 42.6666666666667H106.6666666666667C83.2 42.6666666666667 64 61.8666666666667 64 85.3333333333334V298.6666666666667C64 309.3333333333334 67.6266666666667 318.5066666666667 73.8133333333333 325.76L42.6666666666667 356.9066666666667M106.6666666666667 85.3333333333334H314.24L106.6666666666667 292.9066666666667V85.3333333333334M417.0666666666667 192L341.3333333333333 298.6666666666667H209.4933333333334L167.04 341.3333333333334H341.3333333333333C355.6266666666667 341.3333333333334 368.4266666666666 334.2933333333334 376.1066666666667 323.4133333333334L469.3333333333333 192L405.3333333333333 102.4L375.2533333333334 133.12L417.0666666666667 192z" />
+    <glyph glyph-name="label-outline"
+      unicode="&#xF316;"
+      horiz-adv-x="512" d=" M341.3333333333333 85.3333333333334H106.6666666666667V298.6666666666667H341.3333333333333L417.0666666666667 192M376.1066666666667 323.4133333333334C368.4266666666666 334.2933333333334 355.6266666666667 341.3333333333334 341.3333333333333 341.3333333333334H106.6666666666667C83.2 341.3333333333334 64 322.1333333333334 64 298.6666666666667V85.3333333333334C64 61.8666666666667 83.2 42.6666666666667 106.6666666666667 42.6666666666667H341.3333333333333C355.6266666666667 42.6666666666667 368.4266666666666 49.92 376.1066666666667 60.8000000000001L469.3333333333333 192L376.1066666666667 323.4133333333334z" />
+    <glyph glyph-name="label-variant"
+      unicode="&#xFACC;"
+      horiz-adv-x="512" d=" M74.6666666666667 42.6666666666667L177.92 192L74.6666666666667 341.3333333333334H309.3333333333333C323.6266666666667 341.3333333333334 335.36 334.9333333333334 344.1066666666667 322.9866666666667L437.3333333333333 192L344.1066666666667 61.0133333333333C335.36 49.0666666666667 323.6266666666666 42.6666666666667 309.3333333333333 42.6666666666667H74.6666666666667z" />
+    <glyph glyph-name="label-variant-outline"
+      unicode="&#xFACD;"
+      horiz-adv-x="512" d=" M138.6666666666667 85.3333333333334H320L394.6666666666667 192L320 298.6666666666667H138.6666666666667L213.3333333333333 192L138.6666666666667 85.3333333333334M320 42.6666666666667H64L160 192L64 341.3333333333334H320C334.72 341.3333333333334 346.24 334.9333333333334 354.9866666666667 322.9866666666667L448 192L354.9866666666667 61.0133333333333C346.24 49.0666666666667 334.7200000000001 42.6666666666667 320 42.6666666666667z" />
+    <glyph glyph-name="ladybug"
+      unicode="&#xF82C;"
+      horiz-adv-x="512" d=" M256 341.3333333333334C271.7866666666667 341.3333333333334 287.36 339.2000000000001 301.8666666666667 335.1466666666667L336.64 395.52C342.6133333333334 405.3333333333333 355.6266666666667 409.1733333333334 365.8666666666667 403.2C376.1066666666667 397.44 379.5200000000001 384 373.3333333333334 374.1866666666667L341.3333333333333 318.5066666666667C367.36 303.36 388.9066666666667 281.8133333333334 403.84 256H108.16C123.0933333333333 281.8133333333334 144.64 303.36 170.6666666666667 318.5066666666667L138.6666666666667 374.1866666666667C132.48 384 135.8933333333333 397.44 146.1333333333333 403.2C156.3733333333333 409.1733333333334 169.3866666666667 405.3333333333334 175.36 395.52L210.1333333333333 335.1466666666667C224.64 339.2000000000001 240.2133333333333 341.3333333333334 256 341.3333333333334M426.6666666666667 170.6666666666667C426.6666666666667 81.7066666666667 358.8266666666667 8.7466666666667 272 0.64V224H418.1333333333334C423.6800000000001 207.1466666666667 426.6666666666667 189.2266666666667 426.6666666666667 170.6666666666667M85.3333333333333 170.6666666666667C85.3333333333333 189.2266666666667 88.32 207.1466666666667 93.8666666666667 224H240V0.64C153.1733333333333 8.7466666666667 85.3333333333333 81.7066666666667 85.3333333333333 170.6666666666667z" />
+    <glyph glyph-name="lambda"
+      unicode="&#xF627;"
+      horiz-adv-x="512" d=" M128 21.3333333333334L216.7466666666667 279.2533333333334L199.2533333333333 320H170.6666666666667V362.6666666666667H213.3333333333333C222.2933333333333 362.6666666666667 229.9733333333333 357.12 233.1733333333333 349.2266666666667L355.4133333333333 64H384V21.3333333333334H341.3333333333333C332.16 21.3333333333334 324.48 27.0933333333334 321.4933333333334 34.9866666666667L241.7066666666667 220.8000000000001L173.2266666666666 21.3333333333334H128z" />
+    <glyph glyph-name="lamp"
+      unicode="&#xF6B4;"
+      horiz-adv-x="512" d=" M170.6666666666667 405.3333333333333H341.3333333333333L426.6666666666667 149.3333333333334H85.3333333333333L170.6666666666667 405.3333333333333M234.6666666666667 128H277.3333333333333V21.3333333333334H384V-21.3333333333333H128V21.3333333333334H234.6666666666667V128z" />
+    <glyph glyph-name="lan"
+      unicode="&#xF317;"
+      horiz-adv-x="512" d=" M213.3333333333333 405.3333333333333C189.6533333333333 405.3333333333333 170.6666666666667 386.3466666666667 170.6666666666667 362.6666666666667V298.6666666666667C170.6666666666667 274.9866666666667 189.6533333333333 256 213.3333333333333 256H234.6666666666667V213.3333333333334H42.6666666666667V170.6666666666667H128V128H106.6666666666667C82.9866666666667 128 64 109.0133333333333 64 85.3333333333334V21.3333333333334C64 -2.3466666666666 82.9866666666667 -21.3333333333333 106.6666666666667 -21.3333333333333H192C215.68 -21.3333333333333 234.6666666666667 -2.3466666666666 234.6666666666667 21.3333333333334V85.3333333333334C234.6666666666667 109.0133333333333 215.68 128 192 128H170.6666666666667V170.6666666666667H341.3333333333333V128H320C296.32 128 277.3333333333333 109.0133333333333 277.3333333333333 85.3333333333334V21.3333333333334C277.3333333333333 -2.3466666666666 296.32 -21.3333333333333 320 -21.3333333333333H405.3333333333333C429.0133333333333 -21.3333333333333 448 -2.3466666666666 448 21.3333333333334V85.3333333333334C448 109.0133333333333 429.0133333333333 128 405.3333333333333 128H384V170.6666666666667H469.3333333333333V213.3333333333334H277.3333333333333V256H298.6666666666667C322.3466666666667 256 341.3333333333333 274.9866666666667 341.3333333333333 298.6666666666667V362.6666666666667C341.3333333333333 386.3466666666667 322.3466666666667 405.3333333333333 298.6666666666667 405.3333333333333H213.3333333333333M213.3333333333333 362.6666666666667H298.6666666666667V298.6666666666667H213.3333333333333V362.6666666666667M106.6666666666667 85.3333333333334H192V21.3333333333334H106.6666666666667V85.3333333333334M320 85.3333333333334H405.3333333333333V21.3333333333334H320V85.3333333333334z" />
+    <glyph glyph-name="lan-connect"
+      unicode="&#xF318;"
+      horiz-adv-x="512" d=" M85.3333333333333 426.6666666666667C61.6533333333333 426.6666666666667 42.6666666666667 407.68 42.6666666666667 384V298.6666666666667C42.6666666666667 274.9866666666667 61.6533333333333 256 85.3333333333333 256H21.3333333333333V213.3333333333334H277.3333333333333V256H213.3333333333333C237.0133333333333 256 256 274.9866666666667 256 298.6666666666667V384C256 407.68 237.0133333333333 426.6666666666667 213.3333333333333 426.6666666666667H85.3333333333333M85.3333333333333 384H213.3333333333333V298.6666666666667H85.3333333333333V384M64 170.6666666666667V21.3333333333334H213.3333333333333V64H106.6666666666667V170.6666666666667H64M298.6666666666667 170.6666666666667C274.9866666666667 170.6666666666667 256 151.68 256 128V42.6666666666667C256 18.9866666666667 274.9866666666667 0 298.6666666666667 0H234.6666666666667V-42.6666666666666H490.6666666666666V0H426.6666666666667C450.3466666666667 0 469.3333333333333 18.9866666666667 469.3333333333333 42.6666666666667V128C469.3333333333333 151.68 450.3466666666667 170.6666666666667 426.6666666666667 170.6666666666667H298.6666666666667M298.6666666666667 128H426.6666666666667V42.6666666666667H298.6666666666667V128z" />
+    <glyph glyph-name="lan-disconnect"
+      unicode="&#xF319;"
+      horiz-adv-x="512" d=" M85.3333333333333 426.6666666666667C61.6533333333333 426.6666666666667 42.6666666666667 407.68 42.6666666666667 384V298.6666666666667C42.6666666666667 274.9866666666667 61.6533333333333 256 85.3333333333333 256H21.3333333333333V213.3333333333334H277.3333333333333V256H213.3333333333333C237.0133333333333 256 256 274.9866666666667 256 298.6666666666667V384C256 407.68 237.0133333333333 426.6666666666667 213.3333333333333 426.6666666666667H85.3333333333333M85.3333333333333 384H213.3333333333333V298.6666666666667H85.3333333333333V384M298.6666666666667 170.6666666666667C274.9866666666667 170.6666666666667 256 151.68 256 128V42.6666666666667C256 18.9866666666667 274.9866666666667 0 298.6666666666667 0H234.6666666666667V-42.6666666666666H490.6666666666666V0H426.6666666666667C450.3466666666667 0 469.3333333333333 18.9866666666667 469.3333333333333 42.6666666666667V128C469.3333333333333 151.68 450.3466666666667 170.6666666666667 426.6666666666667 170.6666666666667H298.6666666666667M82.7733333333333 160.8533333333334L52.48 130.56L97.92 85.3333333333334L52.48 40.1066666666667L82.7733333333333 9.8133333333334L128 55.2533333333333L173.2266666666667 9.8133333333334L203.52 40.1066666666667L158.08 85.3333333333334L203.52 130.5600000000001L173.2266666666666 160.8533333333334L128 115.4133333333334L82.7733333333333 160.8533333333334M298.6666666666667 128H426.6666666666667V42.6666666666667H298.6666666666667V128z" />
+    <glyph glyph-name="lan-pending"
+      unicode="&#xF31A;"
+      horiz-adv-x="512" d=" M85.3333333333333 426.6666666666667C61.6533333333333 426.6666666666667 42.6666666666667 407.68 42.6666666666667 384V298.6666666666667C42.6666666666667 274.9866666666667 61.6533333333333 256 85.3333333333333 256H21.3333333333333V213.3333333333334H277.3333333333333V256H213.3333333333333C237.0133333333333 256 256 274.9866666666667 256 298.6666666666667V384C256 407.68 237.0133333333333 426.6666666666667 213.3333333333333 426.6666666666667H85.3333333333333M85.3333333333333 384H213.3333333333333V298.6666666666667H85.3333333333333V384M64 192V149.3333333333334H106.6666666666667V192H64M298.6666666666667 170.6666666666667C274.9866666666667 170.6666666666667 256 151.68 256 128V42.6666666666667C256 18.9866666666667 274.9866666666667 0 298.6666666666667 0H234.6666666666667V-42.6666666666666H490.6666666666666V0H426.6666666666667C450.3466666666667 0 469.3333333333333 18.9866666666667 469.3333333333333 42.6666666666667V128C469.3333333333333 151.68 450.3466666666667 170.6666666666667 426.6666666666667 170.6666666666667H298.6666666666667M64 128V85.3333333333334H106.6666666666667V128H64M298.6666666666667 128H426.6666666666667V42.6666666666667H298.6666666666667V128M64 64V21.3333333333334H106.6666666666667V64H64M128 64V21.3333333333334H170.6666666666667V64H128M192 64V21.3333333333334H234.6666666666667V64H192z" />
+    <glyph glyph-name="language-c"
+      unicode="&#xF671;"
+      horiz-adv-x="512" d=" M329.6 107.3066666666667L338.56 55.2533333333333C333.0133333333333 52.2666666666667 324.0533333333333 49.4933333333333 312.1066666666667 46.9333333333333C299.9466666666666 44.16 285.6533333333333 42.6666666666667 269.2266666666667 42.6666666666667C222.08 43.52 186.6666666666667 57.6 162.9866666666666 84.48C138.6666666666666 111.5733333333334 127.1466666666667 145.92 127.1466666666667 187.5200000000001C128 236.8 142.5066666666667 274.56 170.6666666666667 301.0133333333333C197.9733333333333 327.68 232.96 341.3333333333334 275.2 341.3333333333334C291.2 341.3333333333334 305.0666666666667 339.8400000000001 316.5866666666667 337.28S336.64 331.9466666666667 342.1866666666666 328.7466666666667L329.3866666666667 275.6266666666667L307.2 282.88C298.6666666666667 285.0133333333333 288.64 286.08 277.3333333333333 286.08C252.8 286.2933333333333 232.32 278.4 216.32 262.6133333333334C200.1066666666666 247.04 192 223.1466666666667 191.1466666666667 191.36C191.36 162.3466666666667 199.04 139.7333333333334 214.1866666666667 123.0933333333334C229.3333333333333 106.6666666666667 250.4533333333333 98.1333333333334 277.9733333333333 97.92L306.3466666666667 100.48C315.52 102.1866666666667 323.2 104.5333333333334 329.6 107.3066666666667z" />
+    <glyph glyph-name="language-cpp"
+      unicode="&#xF672;"
+      horiz-adv-x="512" d=" M224 107.3066666666667L232.7466666666667 55.2533333333333C227.2 52.2666666666667 218.24 49.4933333333333 206.2933333333333 46.9333333333333C194.1333333333333 44.16 179.84 42.6666666666667 163.4133333333333 42.6666666666667C116.2666666666667 43.52 80.8533333333333 57.6 57.1733333333333 84.48C33.28 111.5733333333334 21.3333333333333 145.92 21.3333333333333 187.52C22.4 236.8 36.6933333333333 274.56 64 301.0133333333333C92.16 327.68 127.1466666666667 341.3333333333334 169.3866666666667 341.3333333333334C185.3866666666667 341.3333333333334 199.2533333333333 339.8400000000001 210.7733333333334 337.28S230.8266666666667 331.9466666666667 236.3733333333334 328.7466666666667L224 275.6266666666667L201.3866666666667 282.88C192.8533333333333 285.0133333333333 183.04 286.08 171.7333333333333 286.08C146.9866666666666 286.2933333333333 126.5066666666666 278.4 110.5066666666666 262.6133333333334C94.2933333333333 247.04 85.9733333333333 223.1466666666667 85.3333333333333 191.36C85.3333333333333 162.3466666666667 93.2266666666667 139.7333333333334 108.3733333333333 123.0933333333334C123.52 106.6666666666667 144.8533333333333 98.1333333333334 172.16 97.92L200.5333333333333 100.48C209.7066666666667 102.1866666666667 217.3866666666667 104.5333333333334 224 107.3066666666667M234.6666666666667 213.3333333333334H277.3333333333333V256H320V213.3333333333334H362.6666666666667V170.6666666666667H320V128H277.3333333333333V170.6666666666667H234.6666666666667V213.3333333333334M384 213.3333333333334H426.6666666666667V256H469.3333333333333V213.3333333333334H512V170.6666666666667H469.3333333333333V128H426.6666666666667V170.6666666666667H384V213.3333333333334z" />
+    <glyph glyph-name="language-csharp"
+      unicode="&#xF31B;"
+      horiz-adv-x="512" d=" M245.3333333333333 107.3066666666667L254.08 55.2533333333333C248.5333333333334 52.2666666666667 239.5733333333333 49.4933333333333 227.6266666666667 46.9333333333333C215.4666666666667 44.16 201.1733333333333 42.6666666666667 184.7466666666667 42.6666666666667C137.6 43.52 102.1866666666667 57.6 78.5066666666667 84.48C54.6133333333333 111.5733333333334 42.6666666666667 145.92 42.6666666666667 187.52C43.7333333333333 236.8 58.0266666666667 274.56 85.3333333333333 301.0133333333333C113.4933333333334 327.68 148.48 341.3333333333334 190.72 341.3333333333334C206.72 341.3333333333334 220.5866666666667 339.8400000000001 232.1066666666667 337.28S252.16 331.9466666666667 257.7066666666666 328.7466666666667L245.3333333333333 275.6266666666667L222.72 282.88C214.1866666666666 285.0133333333333 204.3733333333333 286.08 193.0666666666666 286.08C168.3199999999999 286.2933333333333 147.8399999999999 278.4 131.8399999999999 262.6133333333334C115.6266666666666 247.04 107.3066666666666 223.1466666666667 106.6666666666666 191.36C106.6666666666666 162.3466666666667 114.56 139.7333333333334 129.7066666666666 123.0933333333334C144.8533333333333 106.6666666666667 166.1866666666666 98.1333333333334 193.4933333333333 97.92L221.8666666666666 100.48C231.0399999999999 102.1866666666667 238.72 104.5333333333334 245.3333333333333 107.3066666666667M296.32 42.6666666666667L309.3333333333333 128H277.3333333333333L284.5866666666667 170.6666666666667H316.5866666666667L323.4133333333333 213.3333333333334H291.4133333333333L298.6666666666667 256H330.6666666666667L343.68 341.3333333333334H386.3466666666667L373.3333333333333 256H394.6666666666667L407.68 341.3333333333334H450.3466666666667L437.3333333333333 256H469.3333333333333L462.08 213.3333333333334H430.08L423.2533333333334 170.6666666666667H455.2533333333333L448 128H416L402.9866666666667 42.6666666666667H360.32L373.3333333333333 128H352L338.9866666666667 42.6666666666667H296.32M359.2533333333334 170.6666666666667H380.5866666666667L387.4133333333333 213.3333333333334H366.08L359.2533333333334 170.6666666666667z" />
+    <glyph glyph-name="language-css3"
+      unicode="&#xF31C;"
+      horiz-adv-x="512" d=" M106.6666666666667 384L92.8 312.7466666666667H382.7199999999999L373.3333333333333 266.6666666666667H83.6266666666667L69.5466666666667 195.6266666666667H359.4666666666667L343.2533333333334 114.3466666666667L226.3466666666667 75.7333333333334L125.0133333333333 114.3466666666667L132.0533333333333 149.3333333333334H60.8L43.9466666666667 64L211.4133333333333 0L404.48 64L430.08 192.6400000000001L435.2 218.4533333333334L468.0533333333333 384H106.6666666666667z" />
+    <glyph glyph-name="language-go"
+      unicode="&#xF7D2;"
+      horiz-adv-x="512" d=" M56.32 227.6266666666667L55.8933333333333 228.9066666666667L60.5866666666667 234.6666666666667L63.1466666666667 236.3733333333334H145.0666666666667L145.7066666666667 234.6666666666667L141.8666666666667 229.12L139.52 227.84L56.32 227.6266666666667M21.9733333333333 206.72L21.3333333333333 207.7866666666667L26.0266666666667 213.9733333333333L28.5866666666667 215.2533333333333H133.12L134.1866666666667 213.3333333333334L132.48 208.2133333333334L130.3466666666667 206.72H21.9733333333333M77.44 185.6L76.5866666666667 186.88L80 192.8533333333333L82.1333333333333 194.1333333333333H128L129.4933333333334 192.64L129.0666666666667 187.3066666666667L127.36 185.6H77.44M315.3066666666667 231.68L277.3333333333334 221.6533333333333C273.2800000000001 220.8 273.0666666666667 220.5866666666667 270.0800000000001 224C266.6666666666667 227.84 264.3200000000001 230.1866666666666 259.4133333333334 232.5333333333333C245.3333333333334 239.7866666666667 231.04 237.6533333333333 218.0266666666667 229.3333333333333C202.6666666666667 219.0933333333333 194.3466666666667 204.3733333333333 194.5600000000001 185.6C194.7733333333334 167.2533333333333 207.3600000000001 152.1066666666667 225.4933333333334 149.3333333333334C241.0666666666667 147.4133333333334 254.0800000000001 152.96 264.5333333333334 164.6933333333334L270.7200000000001 173.0133333333334H226.56C221.8666666666667 173.0133333333334 220.8 176.0000000000001 222.2933333333334 179.84L234.0266666666667 205.0133333333334C234.6666666666667 206.2933333333334 236.3733333333334 208.6400000000001 239.7866666666667 208.6400000000001H313.1733333333334C316.3733333333334 219.3066666666667 321.92 229.1200000000001 329.1733333333334 238.7200000000001C345.8133333333334 260.6933333333334 366.08 272.2133333333334 393.1733333333333 277.3333333333334C416 281.1733333333334 438.6133333333333 278.8266666666667 458.6666666666666 265.1733333333334C476.5866666666666 252.8000000000001 487.8933333333333 236.1600000000001 490.6666666666666 214.1866666666667C494.72 183.2533333333334 485.5466666666667 158.0800000000001 464.2133333333334 136.3200000000001C449.0666666666667 120.96 430.5066666666667 111.36 409.3866666666667 106.6666666666667L391.04 104.96C370.1333333333334 105.3866666666667 351.1466666666667 111.3600000000001 335.1466666666667 125.2266666666667C324.0533333333334 134.8266666666667 316.3733333333334 146.3466666666667 312.5333333333333 160C309.3333333333333 154.88 306.7733333333333 149.9733333333334 303.1466666666667 145.0666666666667C286.7200000000001 123.3066666666667 265.1733333333334 109.8666666666667 237.8666666666667 106.6666666666667C215.4666666666667 103.2533333333333 194.56 107.7333333333334 176.2133333333333 121.3866666666667C159.36 134.1866666666667 149.3333333333333 151.2533333333333 147.2 172.3733333333333C144.2133333333333 197.3333333333334 151.4666666666667 219.7333333333334 166.6133333333333 239.36C182.8266666666667 260.6933333333334 204.3733333333333 274.1333333333334 230.8266666666667 279.04C252.16 282.88 272.8533333333334 280.3200000000001 291.4133333333333 267.9466666666667C303.5733333333333 259.8400000000001 312.1066666666667 248.7466666666667 317.8666666666667 235.5200000000001C318.72 233.6 317.8666666666667 232.32 315.3066666666667 231.6800000000001M445.6533333333333 197.5466666666667L445.0133333333333 205.2266666666667C440.9599999999999 227.8400000000001 420.0533333333333 240.6400000000001 398.2933333333333 235.7333333333334C376.7466666666666 231.04 362.6666666666667 217.6 358.1866666666666 196.0533333333334C354.1333333333333 178.1333333333334 362.6666666666667 160.0000000000001 379.0933333333333 152.7466666666667C391.68 147.2000000000001 404.48 148.0533333333334 416.64 154.0266666666668C434.56 163.2000000000001 444.5866666666667 177.9200000000001 445.6533333333333 197.5466666666667z" />
+    <glyph glyph-name="language-html5"
+      unicode="&#xF31D;"
+      horiz-adv-x="512" d=" M256 73.3866666666667L342.8266666666667 97.4933333333333L354.56 227.6266666666667H200.1066666666667L196.2666666666667 270.9333333333334H358.3999999999999L362.6666666666666 313.3866666666667H149.3333333333333L161.28 185.1733333333334H308.2666666666667L303.36 130.1333333333333L256 117.3333333333334L208.6399999999999 130.1333333333333L205.6533333333333 165.5466666666667H162.9866666666666L169.1733333333333 97.4933333333333L256 73.3866666666667M86.8266666666667 384H425.1733333333333L394.6666666666667 38.4L256 0L117.3333333333333 38.4L86.8266666666667 384z" />
+    <glyph glyph-name="language-java"
+      unicode="&#xFB1C;"
+      horiz-adv-x="512" d=" M352 318.2933333333334S206.08 281.8133333333334 276.0533333333333 201.3866666666667C296.7466666666667 177.7066666666667 270.72 156.3733333333333 270.72 156.3733333333333S322.9866666666667 183.04 298.6666666666667 217.1733333333334C276.0533333333333 248.5333333333334 258.9866666666667 264.1066666666667 352 318.2933333333334M256.64 292.6933333333334C343.04 360.9600000000001 298.6666666666667 405.3333333333333 298.6666666666667 405.3333333333333C316.5866666666667 334.9333333333334 235.52 313.6 206.2933333333333 269.6533333333334C186.24 239.7866666666667 216.1066666666667 207.5733333333334 256 170.6666666666667C240.8533333333333 206.9333333333333 187.3066666666667 238.08 256.64 292.6933333333334M199.8933333333333 75.3066666666667C134.1866666666667 56.96 240 19.2 323.4133333333333 54.8266666666667C315.3066666666666 58.0266666666666 307.4133333333333 61.8666666666667 299.9466666666667 66.3466666666667C270.9333333333334 59.7333333333334 241.0666666666667 58.4533333333333 211.6266666666667 62.5066666666667C183.68 65.92 199.8933333333334 75.3066666666667 199.8933333333334 75.3066666666667M313.3866666666667 111.1466666666667C276.0533333333334 103.0400000000001 237.44 101.1200000000001 199.4666666666667 105.6C171.52 108.3733333333333 189.8666666666667 122.0266666666667 189.8666666666667 122.0266666666667C117.3333333333334 97.92 229.9733333333334 70.8266666666667 330.6666666666667 100.2666666666667C324.48 102.6133333333334 318.5066666666667 106.6666666666667 313.3866666666667 111.1466666666667M386.3466666666667 40.7466666666667S398.5066666666667 30.72 373.3333333333333 23.0400000000001C324.6933333333334 8.5333333333334 172.16 4.0533333333334 129.92 22.4C114.7733333333333 29.0133333333333 143.36 38.1866666666667 152.32 40.1066666666667C157.2266666666667 41.3866666666667 162.1333333333333 41.8133333333333 167.04 41.8133333333333C150.1866666666667 53.3333333333333 57.6 18.3466666666666 120.32 8.5333333333333C290.3466666666667 -19.2 430.5066666666667 21.3333333333334 386.3466666666667 40.7466666666667M327.8933333333333 144.4266666666667C334.08 148.48 340.6933333333333 151.8933333333333 347.52 154.88C347.52 154.88 315.3066666666666 149.3333333333334 283.0933333333333 146.3466666666667C248.96 142.9333333333333 214.6133333333333 142.5066666666667 180.48 145.0666666666667C130.3466666666667 151.68 208 170.6666666666666 208 170.6666666666666C184.5333333333333 170.6666666666666 161.4933333333334 165.12 140.5866666666667 154.6666666666666C96.8533333333333 133.3333333333333 249.3866666666667 123.7333333333334 327.8933333333333 144.4266666666666M347.0933333333333 92.8C346.6666666666667 91.9466666666667 346.24 91.3066666666666 345.3866666666667 90.6666666666666C452.2666666666667 118.6133333333333 413.0133333333333 189.6533333333333 361.8133333333334 171.9466666666666C359.04 170.6666666666666 356.6933333333334 168.9599999999999 355.2000000000001 166.6133333333333C358.1866666666667 167.68 361.1733333333334 168.5333333333333 364.3733333333334 169.1733333333333C389.9733333333334 174.2933333333333 426.6666666666667 134.4 347.0933333333334 92.7999999999999M349.8666666666667 -5.5466666666667C285.6533333333334 -16.6400000000001 219.9466666666667 -17.4933333333334 155.3066666666667 -8.5333333333334C155.3066666666667 -8.5333333333334 165.1200000000001 -16.6400000000001 215.2533333333334 -19.8400000000001C292.0533333333334 -24.7466666666668 410.0266666666668 -17.0666666666668 412.8 19.1999999999998C413.4400000000001 18.9866666666665 407.8933333333333 5.3333333333332 349.8666666666667 -5.5466666666669z" />
+    <glyph glyph-name="language-javascript"
+      unicode="&#xF31E;"
+      horiz-adv-x="512" d=" M64 384H448V0H64V384M164.9066666666667 63.1466666666667C173.44 45.0133333333333 190.2933333333333 30.08 219.0933333333333 30.08C251.0933333333333 30.08 273.0666666666666 47.1466666666667 273.0666666666666 84.48V207.7866666666667H236.8V85.3333333333334C236.8 66.9866666666667 229.3333333333333 62.2933333333334 217.6 62.2933333333334C205.2266666666666 62.2933333333334 200.1066666666666 70.8266666666667 194.3466666666666 80.8533333333334L164.9066666666667 63.1466666666668M292.48 66.9866666666668C303.1466666666667 46.0800000000001 324.6933333333334 30.0800000000001 358.4 30.0800000000001C392.5333333333334 30.0800000000001 418.1333333333334 47.7866666666668 418.1333333333334 80.4266666666667C418.1333333333334 110.5066666666668 400.8533333333334 123.9466666666667 370.1333333333334 137.1733333333334L361.1733333333333 141.0133333333334C345.6 147.6266666666668 338.9866666666667 152.1066666666668 338.9866666666667 162.7733333333334C338.9866666666667 171.5200000000001 345.6 178.3466666666668 356.2666666666667 178.3466666666668C366.5066666666667 178.3466666666668 373.3333333333333 173.8666666666667 379.52 162.7733333333334L407.4666666666666 181.3333333333334C395.7333333333333 201.8133333333334 379.0933333333333 209.7066666666667 356.2666666666667 209.7066666666667C324.0533333333333 209.7066666666667 303.36 189.2266666666667 303.36 162.1333333333334C303.36 132.6933333333334 320.64 118.8266666666667 346.6666666666667 107.7333333333334L355.6266666666667 103.8933333333334C372.2666666666667 96.64 382.08 92.16 382.08 79.7866666666668C382.08 69.5466666666667 372.48 62.0800000000001 357.5466666666667 62.0800000000001C339.8400000000001 62.0800000000001 329.6 71.2533333333335 321.92 84.0533333333335L292.48 66.9866666666668z" />
+    <glyph glyph-name="language-lua"
+      unicode="&#xF8B0;"
+      horiz-adv-x="512" d=" M224 341.3333333333334C123.9466666666667 341.3333333333334 42.6666666666667 260.0533333333334 42.6666666666667 160C42.6666666666667 59.9466666666667 123.9466666666667 -21.3333333333333 224 -21.3333333333333C324.0533333333334 -21.3333333333333 405.3333333333333 59.9466666666667 405.3333333333333 160C405.3333333333333 260.0533333333334 324.0533333333333 341.3333333333334 224 341.3333333333334M288 170.6666666666667C258.56 170.6666666666667 234.6666666666667 194.56 234.6666666666667 224S258.56 277.3333333333334 288 277.3333333333334S341.3333333333333 253.4400000000001 341.3333333333333 224S317.44 170.6666666666667 288 170.6666666666667M416 405.3333333333333C386.56 405.3333333333333 362.6666666666667 381.44 362.6666666666667 352S386.56 298.6666666666667 416 298.6666666666667S469.3333333333333 322.56 469.3333333333333 352S445.44 405.3333333333333 416 405.3333333333333" />
+    <glyph glyph-name="language-php"
+      unicode="&#xF31F;"
+      horiz-adv-x="512" d=" M256 62.2933333333334C114.56 62.2933333333334 0 120.3200000000001 0 192.0000000000001S114.56 321.7066666666667 256 321.7066666666667S512 263.68 512 192S397.44 62.2933333333334 256 62.2933333333334M145.28 231.8933333333334C156.8 231.8933333333334 164.6933333333333 229.7600000000001 168.5333333333333 225.2800000000001C172.3733333333333 221.0133333333334 173.2266666666666 213.3333333333334 171.3066666666667 203.3066666666667C169.1733333333333 192.0000000000001 165.12 184.7466666666667 158.9333333333333 180.0533333333334C152.96 175.36 143.7866666666666 173.0133333333334 131.4133333333333 173.0133333333334H112.8533333333333L124.16 231.8933333333334H145.28M70.6133333333333 113.4933333333334H101.3333333333333L108.5866666666667 150.8266666666667H134.8266666666667C146.3466666666667 150.8266666666667 155.7333333333334 152.1066666666667 163.2 154.4533333333334C170.6666666666667 157.0133333333333 177.4933333333334 161.0666666666667 183.68 166.8266666666667C188.8 171.5200000000001 192.8533333333333 176.6400000000001 196.0533333333333 182.4C199.2533333333333 187.9466666666667 201.6 194.3466666666667 202.6666666666667 201.1733333333334C206.08 217.8133333333334 203.7333333333334 230.8266666666667 195.6266666666667 240.0000000000001C187.3066666666667 249.3866666666667 174.5066666666667 253.8666666666668 156.8 253.8666666666668H97.92L70.6133333333333 113.4933333333334M225.28 291.2000000000001L197.9733333333333 150.8266666666667H228.2666666666667L244.0533333333333 231.2533333333334H268.3733333333334C276.0533333333333 231.2533333333334 281.1733333333333 229.9733333333334 283.52 227.4133333333334C285.8666666666666 224.8533333333334 286.2933333333333 220.1600000000001 285.0133333333333 213.3333333333334L272.8533333333333 150.8266666666667H303.7866666666667L316.3733333333333 216.3200000000001C319.1466666666667 229.5466666666667 317.0133333333333 239.1466666666668 310.6133333333333 245.3333333333334C304.2133333333333 251.0933333333334 292.48 253.8666666666668 275.4133333333333 253.8666666666668H248.32L256 291.2000000000001H225.28M384 231.8933333333333C395.7333333333334 231.8933333333333 403.4133333333333 229.76 407.2533333333334 225.28C411.0933333333333 221.0133333333333 411.9466666666666 213.3333333333333 410.0266666666667 203.3066666666667C407.8933333333333 192 403.84 184.7466666666667 397.8666666666666 180.0533333333334C391.68 175.36 382.5066666666667 173.0133333333333 370.1333333333333 173.0133333333333H351.9999999999999L362.6666666666666 231.8933333333333H383.9999999999999M309.3333333333333 113.4933333333334H340.0533333333333L347.3066666666666 150.8266666666667H373.3333333333333C385.0666666666666 150.8266666666667 394.6666666666666 152.1066666666667 402.1333333333333 154.4533333333334C409.6 157.0133333333333 415.9999999999999 161.0666666666667 422.3999999999999 166.8266666666667C427.5199999999999 171.5200000000001 431.7866666666667 176.6400000000001 434.7733333333332 182.4C437.9733333333332 187.9466666666667 440.32 194.3466666666667 441.5999999999999 201.1733333333334C444.7999999999999 217.8133333333334 442.4533333333332 230.8266666666667 434.3466666666666 240.0000000000001C426.6666666666666 249.3866666666667 413.2266666666666 253.8666666666668 395.5199999999999 253.8666666666668H336.8533333333333L309.3333333333333 113.4933333333334z" />
+    <glyph glyph-name="language-python"
+      unicode="&#xF320;"
+      horiz-adv-x="512" d=" M408.32 288C442.0266666666667 288 469.3333333333333 260.6933333333334 469.3333333333333 226.9866666666667V146.3466666666667C469.3333333333333 112.6400000000001 442.0266666666667 85.3333333333334 408.32 85.3333333333334H256C256 77.0133333333333 262.8266666666667 64.8533333333334 271.1466666666667 64.8533333333334H362.6666666666667V29.0133333333333C362.6666666666667 -4.6933333333333 335.36 -32 301.6533333333333 -32H210.3466666666666C176.64 -32 149.3333333333333 -4.6933333333333 149.3333333333333 29.0133333333333V109.0133333333333C149.3333333333333 142.72 176.64 169.8133333333333 210.3466666666666 169.8133333333333H322.3466666666667C356.0533333333333 169.8133333333333 383.1466666666667 197.12 383.1466666666667 230.8266666666667V288H408.32M317.0133333333333 36.48C308.48 36.48 301.6533333333333 30.08 301.6533333333333 17.4933333333333C301.6533333333333 4.9066666666667 308.48 2.3466666666667 317.0133333333333 2.3466666666667C325.3333333333333 2.3466666666667 332.16 9.1733333333333 332.16 17.4933333333333C332.16 30.08 325.3333333333333 36.48 317.0133333333333 36.48M103.68 74.6666666666667C69.9733333333333 74.6666666666667 42.6666666666667 101.9733333333334 42.6666666666667 135.68V216.32C42.6666666666667 250.0266666666667 69.9733333333333 277.3333333333334 103.68 277.3333333333334H256C256 285.6533333333333 249.1733333333333 297.8133333333334 240.8533333333333 297.8133333333334H149.3333333333333V333.6533333333333C149.3333333333333 367.36 176.64 394.6666666666667 210.3466666666666 394.6666666666667H301.6533333333333C335.36 394.6666666666667 362.6666666666667 367.36 362.6666666666667 333.6533333333333V253.6533333333334C362.6666666666667 219.9466666666667 335.36 192.8533333333334 301.6533333333333 192.8533333333334H189.6533333333333C155.9466666666667 192.8533333333334 128.8533333333334 165.5466666666668 128.8533333333334 131.84V74.6666666666667H103.68M194.9866666666667 326.1866666666667C203.52 326.1866666666667 210.3466666666667 332.5866666666667 210.3466666666667 345.1733333333334C210.3466666666667 357.76 203.52 360.32 194.9866666666667 360.32C186.6666666666667 360.32 179.84 357.76 179.84 345.1733333333334S186.6666666666667 326.1866666666667 194.9866666666667 326.1866666666667z" />
+    <glyph glyph-name="language-python-text"
+      unicode="&#xF321;"
+      horiz-adv-x="512" d=" M42.6666666666667 326.6133333333334C190.2933333333333 425.1733333333334 236.8 298.6666666666667 240.64 228.9066666666667C244.48 159.36 176.8533333333333 71.68 91.9466666666667 129.7066666666667V14.9333333333333L42.6666666666667 47.5733333333334V326.6133333333334M90.0266666666667 290.1333333333334V175.36C167.2533333333333 129.0666666666667 193.7066666666667 167.04 193.7066666666667 232.7466666666667C193.7066666666667 325.5466666666666 140.16 328.7466666666667 90.0266666666667 290.1333333333334M321.7066666666666 359.4666666666667S317.8666666666666 285.0133333333333 321.7066666666666 211.84C329.3866666666666 138.6666666666666 420.0533333333333 195.4133333333333 420.0533333333333 195.4133333333333V343.04L469.3333333333333 337.0666666666667V139.9466666666667C469.3333333333333 8.5333333333333 338.1333333333334 14.9333333333333 338.1333333333334 14.9333333333333L321.7066666666667 64C436.48 64 421.9733333333334 140.16 421.9733333333334 140.16C283.0933333333334 85.9733333333334 272.4266666666667 178.9866666666667 272.4266666666667 178.9866666666667V326.6133333333334L321.7066666666667 359.4666666666667z" />
+    <glyph glyph-name="language-r"
+      unicode="&#xF7D3;"
+      horiz-adv-x="512" d=" M256 356.48C138.6666666666667 356.48 42.6666666666667 292.48 42.6666666666667 213.3333333333334C42.6666666666667 143.36 118.6133333333334 85.3333333333334 218.4533333333333 72.96V27.5200000000001H291.2V72.7466666666668C309.3333333333333 74.6666666666667 326.1866666666667 78.0800000000001 342.1866666666666 82.9866666666668L371.6266666666666 27.5200000000001H453.9733333333332L404.4799999999999 110.9333333333334C444.3733333333333 136.96 469.3333333333333 173.4400000000001 469.3333333333333 213.3333333333334C469.3333333333333 292.48 373.3333333333333 356.48 256 356.48M288.64 300.5866666666667C378.24 300.5866666666667 444.3733333333333 270.7200000000001 444.3733333333333 202.6666666666667C444.3733333333333 166.1866666666667 424.7466666666666 140.5866666666667 392.7466666666666 124.8C390.8266666666666 125.8666666666667 389.1199999999999 126.9333333333333 388.0533333333333 128C380.3733333333333 131.4133333333334 367.5733333333333 135.2533333333333 367.5733333333333 135.2533333333333S431.1466666666666 139.9466666666667 431.1466666666666 203.3066666666667C431.1466666666666 266.6666666666667 364.5866666666666 267.7333333333334 364.5866666666666 267.7333333333334H218.4533333333333V114.9866666666667C164.0533333333333 130.7733333333333 126.5066666666666 164.2666666666667 126.5066666666666 202.6666666666667C126.5066666666666 256.8533333333334 199.0399999999999 300.5866666666667 288.64 300.5866666666667M291.8399999999999 215.68H336S356.2666666666667 216.7466666666667 356.2666666666667 195.6266666666667C356.2666666666667 174.9333333333333 336 174.9333333333333 336 174.9333333333333H291.84V215.68M291.2 121.6H310.8266666666667C314.6666666666667 121.6 316.5866666666667 120.5333333333333 320 117.3333333333334C322.7733333333333 115.2000000000001 325.76 111.1466666666667 328.32 107.52C316.5866666666667 106.0266666666666 304.2133333333334 105.3866666666667 291.2 105.3866666666667V121.6z" />
+    <glyph glyph-name="language-ruby-on-rails"
+      unicode="&#xFACE;"
+      horiz-adv-x="512" d=" M422.4 91.7333333333334S460.8 96 460.8 142.9333333333334C460.8 189.8666666666667 416 196.2666666666667 416 196.2666666666667H334.9333333333333V42.6666666666667H375.4666666666666V78.9333333333333L411.7333333333333 42.6666666666667H469.3333333333333L422.4 91.7333333333334M405.3333333333333 121.6H373.3333333333333V155.7333333333334H405.3333333333333S413.8666666666666 151.4666666666667 413.8666666666666 138.6666666666667C416 125.8666666666667 405.3333333333333 121.6 405.3333333333333 121.6M454.4 273.0666666666667V268.8C281.6 317.8666666666667 213.3333333333333 166.4 226.1333333333334 49.0666666666667H91.7333333333333C106.6666666666667 164.2666666666667 251.7333333333334 392.5333333333334 454.4 273.0666666666667M437.3333333333333 300.8C422.4 307.2000000000001 407.4666666666667 313.6 392.5333333333333 317.8666666666667L394.6666666666667 345.6L439.4666666666667 328.5333333333334L437.3333333333333 300.8M394.6666666666667 262.4000000000001C409.6 262.4000000000001 424.5333333333333 260.2666666666667 439.4666666666667 256L437.3333333333333 230.4000000000001L398.9333333333333 234.6666666666667L394.6666666666667 262.4000000000001M296.5333333333333 324.2666666666667L288 349.8666666666667L332.8 354.1333333333334L341.3333333333333 326.4000000000001C337.0666666666667 326.4000000000001 300.8 324.2666666666667 296.5333333333333 324.2666666666667M324.2666666666667 245.3333333333334C332.8 249.6 347.7333333333334 256.0000000000001 366.9333333333334 260.2666666666667L375.4666666666667 234.6666666666667L337.0666666666667 219.7333333333334L324.2666666666667 245.3333333333334M251.7333333333334 309.3333333333334C238.9333333333334 302.9333333333334 226.1333333333334 296.5333333333334 213.3333333333333 288.0000000000001L196.2666666666667 315.7333333333334L234.6666666666667 337.0666666666667L251.7333333333334 309.3333333333334M305.0666666666667 232.5333333333334L322.1333333333334 206.9333333333334L298.6666666666667 179.2000000000001L275.2000000000001 200.5333333333334C281.6 213.3333333333334 292.2666666666667 224.0000000000001 305.0666666666667 232.5333333333334M247.4666666666667 128C249.6 145.0666666666667 253.8666666666667 160 260.2666666666667 177.0666666666667L285.8666666666666 155.7333333333334L279.4666666666666 115.2000000000001L247.4666666666666 128M168.5333333333333 249.6C157.8666666666667 238.9333333333334 147.2 226.1333333333334 138.6666666666667 215.4666666666667L110.9333333333333 238.9333333333334L142.9333333333333 273.0666666666667L168.5333333333333 249.6M102.4 155.7333333333334C93.8666666666667 138.6666666666666 87.4666666666667 121.6 81.0666666666667 106.6666666666667L42.6666666666667 121.6L61.8666666666667 170.6666666666667L102.4 155.7333333333334M245.3333333333333 100.2666666666667L283.7333333333334 87.4666666666666L290.1333333333334 44.8L247.4666666666667 55.4666666666666C247.4666666666667 59.7333333333333 245.3333333333334 74.6666666666666 245.3333333333334 100.2666666666667z" />
+    <glyph glyph-name="language-swift"
+      unicode="&#xF6E4;"
+      horiz-adv-x="512" d=" M364.5866666666667 27.3066666666667C314.24 -1.7066666666666 245.3333333333333 -4.6933333333333 175.5733333333333 25.1733333333333C119.2533333333333 49.0666666666667 72.5333333333333 90.8800000000001 42.6666666666667 138.6666666666667C56.96 126.9333333333333 73.8133333333333 117.3333333333334 91.7333333333333 108.8C163.6266666666667 75.3066666666667 235.3066666666667 77.6533333333334 285.8666666666666 108.8C213.9733333333333 164.0533333333334 152.7466666666666 235.9466666666667 107.3066666666666 294.6133333333334C97.7066666666667 304.2133333333334 90.6666666666666 316.1600000000001 83.4133333333333 326.8266666666667C260.0533333333333 197.76 252.3733333333333 164.9066666666667 134.8266666666667 348.3733333333334C239.1466666666667 242.9866666666667 336 183.2533333333333 336 183.2533333333333C339.4133333333333 181.3333333333334 341.3333333333333 179.84 343.68 178.56C345.8133333333334 183.8933333333333 347.7333333333334 189.44 349.2266666666667 195.2C366.08 256 346.88 325.76 304.8533333333334 383.1466666666667C401.92 324.48 459.52 214.4 435.4133333333333 122.0266666666667C434.7733333333333 119.68 434.1333333333334 117.3333333333333 434.3466666666667 113.7066666666667C482.1333333333333 53.3333333333334 469.3333333333333 -9.6 463.1466666666666 2.3466666666667C437.3333333333333 53.3333333333334 388.9066666666667 37.5466666666666 364.5866666666667 27.3066666666667z" />
+    <glyph glyph-name="language-typescript"
+      unicode="&#xF6E5;"
+      horiz-adv-x="512" d=" M64 384H448V0H64V384M292.48 66.9866666666667C303.1466666666667 46.08 324.6933333333334 30.08 358.4 30.08C392.5333333333334 30.08 418.1333333333334 47.7866666666666 418.1333333333334 80.4266666666667C418.1333333333334 110.5066666666667 400.8533333333334 123.9466666666667 370.1333333333334 137.1733333333334L361.1733333333333 141.0133333333333C345.6 147.6266666666667 338.9866666666667 152.1066666666667 338.9866666666667 162.7733333333333C338.9866666666667 171.52 345.6 178.3466666666667 356.2666666666667 178.3466666666667C366.5066666666667 178.3466666666667 373.3333333333333 173.8666666666667 379.52 162.7733333333333L407.4666666666666 181.3333333333333C395.7333333333333 201.8133333333333 379.0933333333333 209.7066666666667 356.2666666666667 209.7066666666667C324.0533333333333 209.7066666666667 303.36 189.2266666666666 303.36 162.1333333333333C303.36 132.6933333333333 320.64 118.8266666666667 346.6666666666667 107.7333333333333L355.6266666666667 103.8933333333333C372.2666666666667 96.64 382.08 92.16 382.08 79.7866666666666C382.08 69.5466666666666 372.48 62.08 357.5466666666667 62.08C339.8400000000001 62.08 329.6 71.2533333333333 321.92 84.0533333333334L292.48 66.9866666666667M277.3333333333333 208H170.6666666666667V176H202.6666666666667V21.3333333333334H240V176H277.3333333333333V208z" />
+    <glyph glyph-name="laptop"
+      unicode="&#xF322;"
+      horiz-adv-x="512" d=" M85.3333333333333 320H426.6666666666667V106.6666666666667H85.3333333333333M426.6666666666667 64C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V106.6666666666667C42.6666666666667 83.2 61.8666666666667 64 85.3333333333333 64H0V21.3333333333334H512V64H426.6666666666667z" />
+    <glyph glyph-name="laptop-chromebook"
+      unicode="&#xF323;"
+      horiz-adv-x="512" d=" M426.6666666666667 128H85.3333333333333V341.3333333333334H426.6666666666667M298.6666666666667 64H213.3333333333333V85.3333333333334H298.6666666666667M469.3333333333333 64V384H42.6666666666667V64H0V21.3333333333334H512V64H469.3333333333333z" />
+    <glyph glyph-name="laptop-mac"
+      unicode="&#xF324;"
+      horiz-adv-x="512" d=" M256 42.6666666666667C244.2666666666667 42.6666666666667 234.6666666666667 52.2666666666667 234.6666666666667 64S244.2666666666667 85.3333333333334 256 85.3333333333334S277.3333333333333 75.7333333333334 277.3333333333333 64S267.7333333333334 42.6666666666667 256 42.6666666666667M85.3333333333333 341.3333333333334H426.6666666666667V106.6666666666667H85.3333333333333M426.6666666666667 64C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V341.3333333333334C469.3333333333333 365.0133333333333 450.1333333333334 384 426.6666666666667 384H85.3333333333333C61.6533333333333 384 42.6666666666667 365.0133333333333 42.6666666666667 341.3333333333334V106.6666666666667C42.6666666666667 83.2 61.8666666666667 64 85.3333333333333 64H0C0 40.5333333333333 19.2 21.3333333333334 42.6666666666667 21.3333333333334H469.3333333333333C492.8 21.3333333333334 512 40.5333333333333 512 64H426.6666666666667z" />
+    <glyph glyph-name="laptop-off"
+      unicode="&#xF6E6;"
+      horiz-adv-x="512" d=" M21.3333333333333 356.9066666666667L48.64 384L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L356.9066666666667 21.3333333333334H0V64H85.3333333333333C61.6533333333333 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V320C42.6666666666667 324.6933333333334 43.52 329.1733333333334 44.8 333.44L21.3333333333333 356.9066666666667M85.3333333333333 106.6666666666667H271.5733333333333L85.3333333333333 292.9066666666667V106.6666666666667M426.6666666666667 106.6666666666667V320H166.8266666666667L124.16 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H512V21.3333333333334H465.4933333333333L380.16 106.6666666666667H426.6666666666667z" />
+    <glyph glyph-name="laptop-windows"
+      unicode="&#xF325;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H448C459.7333333333333 362.6666666666667 469.3333333333333 353.0666666666667 469.3333333333333 341.3333333333334V106.6666666666667C469.3333333333333 94.9333333333333 459.7333333333333 85.3333333333334 448 85.3333333333334H469.3333333333333L512 21.3333333333334V0H0V21.3333333333334L42.6666666666667 85.3333333333334H64C52.2666666666667 85.3333333333334 42.6666666666667 94.9333333333333 42.6666666666667 106.6666666666667V341.3333333333334C42.6666666666667 353.0666666666667 52.2666666666667 362.6666666666667 64 362.6666666666667M85.3333333333333 320V128H426.6666666666667V320H85.3333333333333z" />
+    <glyph glyph-name="laravel"
+      unicode="&#xFACF;"
+      horiz-adv-x="512" d=" M469.3333333333333 194.7733333333334C469.9733333333334 199.2533333333334 468.48 204.16 465.28 207.5733333333334C464 209.0666666666667 454.1866666666666 221.2266666666667 443.9466666666666 234.0266666666667C433.4933333333334 247.04 422.3999999999999 260.9066666666667 418.9866666666667 264.7466666666667C415.1466666666667 269.4400000000001 409.6 274.7733333333334 401.2800000000001 274.7733333333334C399.7866666666667 274.7733333333334 398.5066666666667 274.5600000000001 396.3733333333334 274.3466666666667C393.8133333333334 274.1333333333334 373.9733333333334 270.7200000000001 358.4 268.1600000000001C349.0133333333333 266.6666666666668 341.3333333333333 265.3866666666667 339.2 264.9600000000001C331.7333333333334 263.8933333333334 326.8266666666667 260.6933333333334 324.6933333333334 256.0000000000001C323.6266666666667 253.0133333333334 322.3466666666667 247.4666666666667 327.04 241.2800000000001L359.04 195.8400000000001L257.7066666666666 171.7333333333335L162.7733333333333 330.6666666666667C160 335.1466666666667 155.52 341.3333333333334 144.2133333333333 341.3333333333334H141.0133333333333L119.2533333333333 339.2000000000001C99.84 337.7066666666667 64 334.7200000000001 60.16 334.7200000000001C53.3333333333333 334.7200000000001 48.4266666666667 332.1600000000001 45.44 327.4666666666667C41.8133333333333 322.1333333333334 41.8133333333333 315.0933333333334 45.44 306.5600000000001C50.56 294.6133333333334 128.8533333333333 125.4400000000001 129.28 124.5866666666667C133.3333333333334 114.3466666666667 143.1466666666667 107.7333333333334 154.0266666666667 107.7333333333334C157.0133333333333 107.7333333333334 160 108.16 161.92 109.0133333333334C174.08 112.0000000000001 213.3333333333333 122.24 239.7866666666667 129.0666666666667C253.2266666666667 104.7466666666667 277.3333333333333 61.4400000000001 282.4533333333333 54.4C285.8666666666667 49.4933333333333 291.6266666666667 42.6666666666667 301.6533333333333 42.6666666666667C306.1333333333334 42.6666666666667 310.4 44.16 315.52 45.8666666666667C322.9866666666667 48.2133333333333 442.4533333333334 90.88 448.64 93.44C452.9066666666666 95.36 458.6666666666666 97.7066666666667 460.8 104.3200000000001C462.08 108.5866666666667 461.2266666666667 113.0666666666667 458.0266666666667 117.3333333333334C455.6800000000001 121.1733333333334 433.2800000000001 151.04 416.64 173.2266666666667L458.0266666666667 184.3200000000001C465.4933333333334 186.6666666666667 468.0533333333333 191.36 469.3333333333334 194.7733333333334M277.3333333333334 138.6666666666667L381.6533333333334 165.5466666666667C399.5733333333334 141.0133333333333 409.1733333333334 128 414.2933333333334 120.96C338.7733333333335 95.36 315.5200000000001 87.4666666666667 308.6933333333335 85.3333333333334C303.7866666666668 92.8000000000001 289.2800000000001 117.9733333333334 277.3333333333335 138.6666666666667M369.0666666666667 237.44C378.8800000000001 239.1466666666667 391.4666666666668 241.4933333333333 398.2933333333334 242.7733333333333C402.7733333333335 237.0133333333333 414.7200000000001 221.8666666666667 423.0400000000001 211.2C413.8666666666668 208.8533333333333 401.0666666666667 205.6533333333333 393.3866666666668 203.7333333333333L369.0666666666667 237.4400000000001M136.1066666666667 309.3333333333334L220.8 162.5600000000001L162.1333333333333 148.48C149.3333333333333 175.1466666666667 101.9733333333333 272.64 86.6133333333333 304.64C92.16 305.0666666666667 130.7733333333333 308.48 136.1066666666666 309.3333333333334z" />
+    <glyph glyph-name="lastfm"
+      unicode="&#xF326;"
+      horiz-adv-x="512" d=" M384 65.4933333333333C339.6266666666667 65.7066666666667 315.9466666666667 87.4666666666667 299.52 126.0800000000001L294.8266666666666 136.5333333333334L254.2933333333333 229.76C240.8533333333333 262.6133333333334 207.36 285.0133333333333 169.8133333333333 285.0133333333333C118.8266666666666 285.0133333333333 77.44 243.4133333333334 77.44 192S118.8266666666666 98.9866666666667 169.8133333333333 98.9866666666667C205.2266666666666 98.9866666666667 236.3733333333333 119.2533333333333 251.7333333333333 149.3333333333334L268.1599999999999 110.72C245.3333333333333 82.1333333333334 209.4933333333334 64 169.8133333333333 64C99.6266666666667 64 42.6666666666667 121.1733333333334 42.6666666666667 192C42.6666666666667 262.6133333333334 99.6266666666667 320 169.8133333333333 320C222.72 320 265.6 291.4133333333334 287.36 241.0666666666667C288.8533333333333 237.0133333333334 310.1866666666666 186.8800000000001 328.9599999999999 144.2133333333334C340.4799999999999 117.3333333333334 350.2933333333333 100.0533333333334 382.08 98.9866666666667C413.4399999999999 97.92 434.9866666666666 117.3333333333334 434.9866666666666 141.4400000000001C434.9866666666666 165.12 418.56 170.6666666666667 390.8266666666666 180.0533333333334C341.3333333333333 196.48 315.5199999999999 213.3333333333334 315.5199999999999 252.8000000000001C315.5199999999999 291.6266666666667 341.3333333333333 317.4400000000001 383.9999999999999 317.4400000000001C411.9466666666666 317.4400000000001 431.7866666666665 305.0666666666667 445.6533333333333 280.3200000000001L418.56 266.6666666666667C408.32 280.7466666666667 397.0133333333332 286.5066666666667 382.7199999999999 286.5066666666667C362.6666666666666 286.5066666666667 348.3733333333333 272.4266666666667 348.3733333333333 253.8666666666667C348.3733333333333 227.4133333333334 371.84 223.36 404.6933333333333 212.6933333333334C448.8533333333333 198.1866666666667 469.3333333333333 181.3333333333334 469.3333333333333 140.3733333333333C469.3333333333333 97.0666666666667 432.4266666666666 65.4933333333333 384 65.4933333333333z" />
+    <glyph glyph-name="lastpass"
+      unicode="&#xF446;"
+      horiz-adv-x="512" d=" M298.6666666666667 192C298.6666666666667 215.4666666666667 317.8666666666667 234.6666666666667 341.3333333333333 234.6666666666667S384 215.4666666666667 384 192S364.8 149.3333333333334 341.3333333333333 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192M170.6666666666667 192C170.6666666666667 215.4666666666667 189.8666666666667 234.6666666666667 213.3333333333333 234.6666666666667S256 215.4666666666667 256 192S236.8 149.3333333333334 213.3333333333333 149.3333333333334S170.6666666666667 168.5333333333334 170.6666666666667 192M42.6666666666667 192C42.6666666666667 215.4666666666667 61.8666666666667 234.6666666666667 85.3333333333333 234.6666666666667S128 215.4666666666667 128 192S108.8 149.3333333333334 85.3333333333333 149.3333333333334S42.6666666666667 168.5333333333334 42.6666666666667 192M469.3333333333333 341.3333333333334H426.6666666666667V42.6666666666667H469.3333333333333V341.3333333333334z" />
+    <glyph glyph-name="launch"
+      unicode="&#xF327;"
+      horiz-adv-x="512" d=" M298.6666666666667 384V341.3333333333334H375.2533333333334L165.5466666666667 131.6266666666667L195.6266666666667 101.5466666666667L405.3333333333333 311.2533333333334V234.6666666666667H448V384M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H256V384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V192H405.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="lava-lamp"
+      unicode="&#xF7D4;"
+      horiz-adv-x="512" d=" M213.3333333333333 384L170.6666666666667 106.6666666666667H341.3333333333333L298.6666666666667 384H213.3333333333333M245.3333333333333 325.3333333333334C254.08 325.3333333333334 261.3333333333333 318.0800000000001 261.3333333333333 309.3333333333334S254.08 293.3333333333334 245.3333333333333 293.3333333333334S229.3333333333333 300.5866666666667 229.3333333333333 309.3333333333334S236.5866666666667 325.3333333333334 245.3333333333333 325.3333333333334M266.6666666666667 266.6666666666667C278.4 266.6666666666667 288 257.0666666666667 288 245.3333333333334S278.4 224 266.6666666666667 224S245.3333333333333 233.6 245.3333333333333 245.3333333333334S254.9333333333333 266.6666666666667 266.6666666666667 266.6666666666667M245.3333333333333 192C263.04 192 277.3333333333333 177.7066666666667 277.3333333333333 160S263.04 128 245.3333333333333 128S213.3333333333333 142.2933333333334 213.3333333333333 160S227.6266666666667 192 245.3333333333333 192M170.6666666666667 85.3333333333334L213.3333333333333 42.6666666666667L170.6666666666667 0H341.3333333333333L298.6666666666667 42.6666666666667L341.3333333333333 85.3333333333334H170.6666666666667z" />
+    <glyph glyph-name="layers"
+      unicode="&#xF328;"
+      horiz-adv-x="512" d=" M256 106.6666666666667L413.0133333333333 228.9066666666667L448 256L256 405.3333333333333L64 256L98.7733333333333 228.9066666666667M256 52.48L98.56 174.72L64 147.84L256 -1.4933333333333L448 147.84L413.2266666666667 174.9333333333333L256 52.48z" />
+    <glyph glyph-name="layers-off"
+      unicode="&#xF329;"
+      horiz-adv-x="512" d=" M69.76 426.6666666666667L42.6666666666667 399.5733333333333L132.6933333333333 309.3333333333334L64 256L98.7733333333333 228.9066666666667L256 106.6666666666667L300.8 141.44L331.3066666666666 110.9333333333333L256 52.48L98.7733333333333 174.72L64 147.84L256 -1.4933333333333L361.6 80.64L442.24 0L469.3333333333333 27.0933333333334L69.76 426.6666666666667M413.0133333333333 228.9066666666667L448 256L256 405.3333333333333L193.92 356.9066666666667L361.8133333333334 188.8000000000001L413.0133333333333 228.9066666666667M422.6133333333333 128L448 147.84L417.4933333333334 178.3466666666667L392.1066666666667 158.72L422.6133333333333 128z" />
+    <glyph glyph-name="layers-off-outline"
+      unicode="&#xF9FC;"
+      horiz-adv-x="512" d=" M256 351.36L231.04 331.9466666666667L200.7466666666667 362.6666666666667L256 405.3333333333333L448 256L368.64 194.3466666666667L338.1333333333334 224.64L378.4533333333333 256L256 351.36M448 147.84L429.44 133.3333333333334L398.9333333333333 163.84L413.2266666666667 174.9333333333333L448 147.84M72.7466666666667 429.6533333333333L472.32 30.08L442.24 0L361.6 80.64L256 -1.4933333333333L64 147.84L98.56 174.72L256 52.48L330.6666666666667 111.1466666666667L300.8 141.4400000000001L256 106.6666666666667L64 256L132.6933333333333 309.3333333333334L42.6666666666667 399.5733333333333L72.7466666666667 429.6533333333333M256 160.64L270.2933333333333 171.9466666666667L163.2 279.04L133.5466666666667 256L256 160.64z" />
+    <glyph glyph-name="layers-outline"
+      unicode="&#xF9FD;"
+      horiz-adv-x="512" d=" M256 52.48L413.2266666666667 174.9333333333334L448 147.84L256 -1.4933333333333L64 147.84L98.56 174.72L256 52.48M256 106.6666666666667L64 256L256 405.3333333333333L448 256L256 106.6666666666667M256 351.36L133.5466666666667 256L256 160.64L378.4533333333333 256L256 351.36z" />
+    <glyph glyph-name="lead-pencil"
+      unicode="&#xF64F;"
+      horiz-adv-x="512" d=" M359.2533333333334 389.76C350.9333333333333 389.76 342.8266666666667 386.56 336.4266666666666 380.3733333333334L291.2 335.1466666666667L404.2666666666667 221.8666666666667L449.4933333333334 266.6666666666667C462.2933333333334 279.68 462.2933333333334 299.9466666666667 449.4933333333334 312.3200000000001L381.8666666666666 380.3733333333334C375.4666666666666 386.56 367.36 389.76 359.2533333333334 389.76M276.0533333333333 320L103.2533333333333 146.9866666666667L157.8666666666667 141.0133333333334L161.7066666666667 92.16L210.3466666666666 88.5333333333333L216.5333333333333 33.92L389.3333333333333 206.9333333333333M90.6666666666667 127.1466666666667L53.3333333333333 -15.5733333333333L196.2666666666667 22.6133333333333L191.1466666666667 68.6933333333333L141.8666666666666 72.3200000000001L138.0266666666667 121.8133333333334" />
+    <glyph glyph-name="leaf"
+      unicode="&#xF32A;"
+      horiz-adv-x="512" d=" M362.6666666666667 277.3333333333334C170.6666666666667 234.6666666666667 125.8666666666667 103.04 81.4933333333333 -7.2533333333333L121.8133333333333 -21.3333333333333L142.08 27.7333333333334C152.32 24.1066666666667 162.9866666666667 21.3333333333334 170.6666666666667 21.3333333333334C405.3333333333333 21.3333333333334 469.3333333333333 384 469.3333333333333 384C448 341.3333333333334 298.6666666666667 336 192 314.6666666666667S42.6666666666667 202.6666666666667 42.6666666666667 160S80 80 80 80C149.3333333333333 277.3333333333334 362.6666666666667 277.3333333333334 362.6666666666667 277.3333333333334z" />
+    <glyph glyph-name="led-off"
+      unicode="&#xF32B;"
+      horiz-adv-x="512" d=" M256 320C208.8533333333333 320 170.6666666666667 281.8133333333334 170.6666666666667 234.6666666666667V106.6666666666667H128V64H192V-42.6666666666666H234.6666666666667V64H277.3333333333333V-42.6666666666666H320V64H384V106.6666666666667H341.3333333333333V234.6666666666667C341.3333333333333 281.8133333333334 303.1466666666667 320 256 320z" />
+    <glyph glyph-name="led-on"
+      unicode="&#xF32C;"
+      horiz-adv-x="512" d=" M234.6666666666667 448V362.6666666666667H277.3333333333333V448H234.6666666666667M390.4 399.1466666666667L325.12 335.1466666666667L354.9866666666667 304.8533333333334L420.2666666666667 368.8533333333334L390.4 399.1466666666667M121.8133333333334 399.1466666666667L91.52 368.8533333333334L155.52 304.8533333333334L185.8133333333333 335.1466666666667L121.8133333333334 399.1466666666667M256 320C208.8533333333333 320 170.6666666666667 281.8133333333334 170.6666666666667 234.6666666666667V106.6666666666667H128V64H192V-42.6666666666666H234.6666666666667V64H277.3333333333333V-42.6666666666666H320V64H384V106.6666666666667H341.3333333333333V234.6666666666667C341.3333333333333 281.8133333333334 303.1466666666667 320 256 320M42.6666666666667 256V213.3333333333334H128V256H42.6666666666667M384 256V213.3333333333334H469.3333333333333V256H384z" />
+    <glyph glyph-name="led-outline"
+      unicode="&#xF32D;"
+      horiz-adv-x="512" d=" M256 320C208.8533333333333 320 170.6666666666667 281.8133333333334 170.6666666666667 234.6666666666667V106.6666666666667H128V64H192V-42.6666666666666H234.6666666666667V64H277.3333333333333V-42.6666666666666H320V64H384V106.6666666666667H341.3333333333333V234.6666666666667C341.3333333333333 281.8133333333334 303.1466666666667 320 256 320M256 277.3333333333334C279.4666666666667 277.3333333333334 298.6666666666667 258.1333333333334 298.6666666666667 234.6666666666667V128H213.3333333333333V234.6666666666667C213.3333333333333 258.1333333333334 232.5333333333334 277.3333333333334 256 277.3333333333334z" />
+    <glyph glyph-name="led-strip"
+      unicode="&#xF7D5;"
+      horiz-adv-x="512" d=" M59.9466666666667 267.52L316.3733333333334 10.6666666666667L331.52 26.0266666666666L361.6 -4.0533333333333L391.68 26.0266666666666L361.6 56.3200000000001L391.68 86.4L421.9733333333334 56.3200000000001L452.0533333333333 86.4L421.9733333333334 116.48L437.3333333333333 131.6266666666667L180.48 388.0533333333334L59.9466666666667 267.52M120.32 267.52L180.48 327.68L376.7466666666667 131.6266666666667L316.3733333333334 71.2533333333333L120.32 267.52M150.4 267.52L180.48 237.2266666666667L210.7733333333334 267.52L180.48 297.6L150.4 267.52M195.6266666666667 222.08L225.92 192L256 222.08L225.92 252.3733333333334L195.6266666666667 222.08M240.8533333333333 176.8533333333334L271.1466666666667 146.7733333333333L301.2266666666667 176.8533333333334L271.1466666666667 207.1466666666667L240.8533333333333 176.8533333333334M286.08 131.6266666666667L316.3733333333334 101.5466666666666L346.4533333333333 131.6266666666667L316.3733333333333 161.92L286.08 131.6266666666667z" />
+    <glyph glyph-name="led-variant-off"
+      unicode="&#xF32E;"
+      horiz-adv-x="512" d=" M256 384C214.4 384 179.84 354.1333333333334 172.3733333333333 314.6666666666667L358.8266666666667 128H384V170.6666666666667H341.3333333333333V298.6666666666667C341.3333333333333 345.8133333333334 303.1466666666667 384 256 384M69.9733333333333 362.6666666666667L42.6666666666667 335.5733333333334L170.6666666666667 207.5733333333334V170.6666666666667H128V128H192V0H234.6666666666667V128H250.24L277.3333333333333 100.9066666666667V0H320V58.24L399.5733333333333 -21.3333333333333L426.6666666666667 5.9733333333334L320 112.6400000000001L170.6666666666667 261.9733333333334L69.9733333333333 362.6666666666667z" />
+    <glyph glyph-name="led-variant-on"
+      unicode="&#xF32F;"
+      horiz-adv-x="512" d=" M256 384C208.8533333333333 384 170.6666666666667 345.8133333333334 170.6666666666667 298.6666666666667V170.6666666666667H128V128H192V0H234.6666666666667V128H277.3333333333333V0H320V128H384V170.6666666666667H341.3333333333333V298.6666666666667C341.3333333333333 345.8133333333334 303.1466666666667 384 256 384z" />
+    <glyph glyph-name="led-variant-outline"
+      unicode="&#xF330;"
+      horiz-adv-x="512" d=" M256 384C208.8533333333333 384 170.6666666666667 345.8133333333334 170.6666666666667 298.6666666666667V170.6666666666667H128V128H192V0H234.6666666666667V128H277.3333333333333V0H320V128H384V170.6666666666667H341.3333333333333V298.6666666666667C341.3333333333333 345.8133333333334 303.1466666666667 384 256 384M256 341.3333333333334C279.4666666666667 341.3333333333334 298.6666666666667 322.1333333333334 298.6666666666667 298.6666666666667V192H213.3333333333333V298.6666666666667C213.3333333333333 322.1333333333334 232.5333333333334 341.3333333333334 256 341.3333333333334z" />
+    <glyph glyph-name="less-than"
+      unicode="&#xF97B;"
+      horiz-adv-x="512" d=" M394.6666666666667 359.68L416 322.9866666666667L191.36 192L416 61.0133333333333L394.6666666666667 24.3200000000001L106.6666666666667 192L394.6666666666667 359.68z" />
+    <glyph glyph-name="less-than-or-equal"
+      unicode="&#xF97C;"
+      horiz-adv-x="512" d=" M394.6666666666667 399.5733333333333L106.6666666666667 231.68L394.6666666666667 64L416 100.9066666666667L191.36 231.68L416 362.6666666666667L394.6666666666667 399.5733333333333M106.6666666666667 21.3333333333334V-21.3333333333333H426.6666666666667V21.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="library"
+      unicode="&#xF331;"
+      horiz-adv-x="512" d=" M256 277.3333333333334C291.4133333333333 277.3333333333334 320 305.92 320 341.3333333333334S291.4133333333333 405.3333333333333 256 405.3333333333333S192 376.7466666666667 192 341.3333333333334S220.5866666666667 277.3333333333334 256 277.3333333333334M256 201.8133333333334C205.6533333333333 248.5333333333334 138.6666666666667 277.3333333333334 64 277.3333333333334V42.6666666666667C138.6666666666667 42.6666666666667 205.6533333333333 13.8666666666667 256 -32.8533333333333C306.3466666666667 13.8666666666667 373.3333333333333 42.6666666666667 448 42.6666666666667V277.3333333333334C373.3333333333333 277.3333333333334 306.3466666666667 248.5333333333334 256 201.8133333333334z" />
+    <glyph glyph-name="library-books"
+      unicode="&#xF332;"
+      horiz-adv-x="512" d=" M405.3333333333333 298.6666666666667H192V341.3333333333334H405.3333333333333M320 128H192V170.6666666666667H320M405.3333333333333 213.3333333333334H192V256H405.3333333333333M426.6666666666667 405.3333333333333H170.6666666666667C147.2 405.3333333333333 128 386.1333333333334 128 362.6666666666667V106.6666666666667C128 83.2 147.2 64 170.6666666666667 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.1333333333334 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333M85.3333333333333 320H42.6666666666667V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H384V21.3333333333334H85.3333333333333V320z" />
+    <glyph glyph-name="library-music"
+      unicode="&#xF333;"
+      horiz-adv-x="512" d=" M85.3333333333333 320H42.6666666666667V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H384V21.3333333333334H85.3333333333333M384 298.6666666666667H320V181.3333333333334C320 151.8933333333334 296.1066666666667 128 266.6666666666667 128S213.3333333333333 151.8933333333333 213.3333333333333 181.3333333333334S237.2266666666667 234.6666666666667 266.6666666666667 234.6666666666667C278.8266666666667 234.6666666666667 289.7066666666667 230.6133333333334 298.6666666666667 224V341.3333333333334H384M426.6666666666667 405.3333333333333H170.6666666666667C147.2 405.3333333333333 128 386.1333333333334 128 362.6666666666667V106.6666666666667C128 83.2 147.2 64 170.6666666666667 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.1333333333334 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="library-plus"
+      unicode="&#xF334;"
+      horiz-adv-x="512" d=" M405.3333333333333 213.3333333333334H320V128H277.3333333333333V213.3333333333334H192V256H277.3333333333333V341.3333333333334H320V256H405.3333333333333M426.6666666666667 405.3333333333333H170.6666666666667C147.2 405.3333333333333 128 386.1333333333334 128 362.6666666666667V106.6666666666667C128 83.2 147.2 64 170.6666666666667 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.1333333333334 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333M85.3333333333333 320H42.6666666666667V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H384V21.3333333333334H85.3333333333333V320z" />
+    <glyph glyph-name="library-shelves"
+      unicode="&#xFB85;"
+      horiz-adv-x="512" d=" M416 256V416H352V256H288V416H224V256H160V416H99.2V256H64V224H448V256H416M416 160H352V0H288V160H224V0H160V160H99.2V0H64V-32H448V0H416V160z" />
+    <glyph glyph-name="lifebuoy"
+      unicode="&#xF87D;"
+      horiz-adv-x="512" d=" M422.1866666666666 119.2533333333333C442.4533333333333 165.5466666666667 442.4533333333333 218.6666666666667 422.1866666666666 264.7466666666667L363.7333333333333 238.2933333333334C376.5333333333333 208.8533333333333 376.5333333333333 175.36 363.9466666666666 145.7066666666667L422.1866666666666 119.2533333333333M328.9599999999999 358.1866666666667C282.6666666666667 378.4533333333333 229.5466666666666 378.4533333333333 183.2533333333333 358.1866666666667L209.7066666666666 299.9466666666667C239.36 312.5333333333333 272.8533333333333 312.5333333333333 302.5066666666666 299.7333333333334L328.9599999999999 358.1866666666667M89.8133333333333 264.9600000000001C69.5466666666667 218.4533333333334 69.5466666666667 165.5466666666667 89.8133333333333 119.04L148.2666666666667 145.7066666666667C135.4666666666667 175.1466666666667 135.4666666666667 208.8533333333333 148.2666666666667 238.5066666666667L89.8133333333333 264.9600000000001M183.2533333333333 25.8133333333334C229.5466666666667 5.5466666666667 282.6666666666667 5.5466666666667 328.96 26.0266666666668L302.5066666666667 84.2666666666668C273.0666666666667 71.4666666666667 239.36 71.4666666666667 209.92 84.0533333333334L183.2533333333333 25.8133333333334M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 277.3333333333334C208.8533333333333 277.3333333333334 170.6666666666667 239.1466666666667 170.6666666666667 192S208.8533333333333 106.6666666666667 256 106.6666666666667S341.3333333333333 144.8533333333334 341.3333333333333 192S303.1466666666667 277.3333333333334 256 277.3333333333334z" />
+    <glyph glyph-name="light-switch"
+      unicode="&#xF97D;"
+      horiz-adv-x="512" d=" M149.3333333333333 426.6666666666667C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V0C106.6666666666667 -23.4666666666667 125.8666666666667 -42.6666666666666 149.3333333333333 -42.6666666666666H362.6666666666667C386.1333333333334 -42.6666666666666 405.3333333333333 -23.4666666666667 405.3333333333333 0V384C405.3333333333333 407.4666666666667 386.1333333333334 426.6666666666667 362.6666666666667 426.6666666666667H149.3333333333333M149.3333333333333 384H362.6666666666667V0H149.3333333333333V384M192 320V64H320V320H192M213.3333333333333 298.6666666666667H298.6666666666667V213.3333333333334H213.3333333333333V298.6666666666667M213.3333333333333 170.6666666666667H298.6666666666667V85.3333333333334H213.3333333333333V170.6666666666667z" />
+    <glyph glyph-name="lightbulb"
+      unicode="&#xF335;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C173.44 405.3333333333333 106.6666666666667 338.56 106.6666666666667 256C106.6666666666667 205.2266666666667 132.0533333333333 160.6400000000001 170.6666666666667 133.5466666666667V85.3333333333334C170.6666666666667 73.6 180.2666666666667 64 192 64H320C331.7333333333334 64 341.3333333333333 73.6 341.3333333333333 85.3333333333334V133.5466666666667C379.9466666666666 160.64 405.3333333333333 205.2266666666667 405.3333333333333 256C405.3333333333333 338.56 338.56 405.3333333333333 256 405.3333333333333M192 0C192 -11.7333333333333 201.6 -21.3333333333333 213.3333333333333 -21.3333333333333H298.6666666666667C310.4 -21.3333333333333 320 -11.7333333333333 320 0V21.3333333333334H192V0z" />
+    <glyph glyph-name="lightbulb-on"
+      unicode="&#xF6E7;"
+      horiz-adv-x="512" d=" M256 320C326.6133333333334 320 384 262.6133333333334 384 192C384 144.64 358.1866666666666 103.2533333333333 320 81.0666666666667V42.6666666666667C320 30.9333333333333 310.4 21.3333333333334 298.6666666666667 21.3333333333334H213.3333333333333C201.6 21.3333333333334 192 30.9333333333333 192 42.6666666666667V81.0666666666667C153.8133333333333 103.2533333333333 128 144.6400000000001 128 192C128 262.6133333333334 185.3866666666667 320 256 320M298.6666666666667 0V-21.3333333333333C298.6666666666667 -33.0666666666667 289.0666666666667 -42.6666666666666 277.3333333333333 -42.6666666666666H234.6666666666667C222.9333333333333 -42.6666666666666 213.3333333333333 -33.0666666666667 213.3333333333333 -21.3333333333333V0H298.6666666666667M426.6666666666667 213.3333333333334H490.6666666666666V170.6666666666667H426.6666666666667V213.3333333333334M21.3333333333333 213.3333333333334H85.3333333333333V170.6666666666667H21.3333333333333V213.3333333333334M277.3333333333333 426.6666666666667V362.6666666666667H234.6666666666667V426.6666666666667H277.3333333333333M104.96 373.3333333333334L150.4 327.68L120.1066666666667 297.6L74.6666666666667 342.8266666666667L104.96 373.3333333333334M361.6 327.8933333333333L406.8266666666667 373.3333333333334L437.3333333333333 342.8266666666667L391.8933333333333 297.6L361.6 327.8933333333333z" />
+    <glyph glyph-name="lightbulb-on-outline"
+      unicode="&#xF6E8;"
+      horiz-adv-x="512" d=" M426.6666666666667 213.3333333333334H490.6666666666666V170.6666666666667H426.6666666666667V213.3333333333334M21.3333333333333 213.3333333333334H85.3333333333333V170.6666666666667H21.3333333333333V213.3333333333334M277.3333333333333 426.6666666666667V362.6666666666667H234.6666666666667V426.6666666666667H277.3333333333333M104.96 373.3333333333334L150.4 327.68L120.1066666666667 297.6L74.6666666666667 342.8266666666667L104.96 373.3333333333334M361.6 327.8933333333333L406.8266666666667 373.3333333333334L437.3333333333333 342.8266666666667L391.8933333333333 297.6L361.6 327.8933333333333M256 320C326.6133333333334 320 384 262.6133333333334 384 192C384 144.64 358.1866666666666 103.2533333333333 320 81.0666666666667V42.6666666666667C320 30.9333333333333 310.4 21.3333333333334 298.6666666666667 21.3333333333334H213.3333333333333C201.6 21.3333333333334 192 30.9333333333333 192 42.6666666666667V81.0666666666667C153.8133333333333 103.2533333333333 128 144.6400000000001 128 192C128 262.6133333333334 185.3866666666667 320 256 320M298.6666666666667 0V-21.3333333333333C298.6666666666667 -33.0666666666667 289.0666666666667 -42.6666666666666 277.3333333333333 -42.6666666666666H234.6666666666667C222.9333333333333 -42.6666666666666 213.3333333333333 -33.0666666666667 213.3333333333333 -21.3333333333333V0H298.6666666666667M234.6666666666667 64H277.3333333333333V109.44C314.24 118.8266666666667 341.3333333333333 152.32 341.3333333333333 192C341.3333333333333 239.1466666666667 303.1466666666667 277.3333333333334 256 277.3333333333334S170.6666666666667 239.1466666666667 170.6666666666667 192C170.6666666666667 152.3200000000001 197.76 118.8266666666667 234.6666666666667 109.44V64z" />
+    <glyph glyph-name="lightbulb-outline"
+      unicode="&#xF336;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C338.56 405.3333333333333 405.3333333333333 338.56 405.3333333333333 256C405.3333333333333 205.2266666666667 379.9466666666666 160.6400000000001 341.3333333333333 133.5466666666667V85.3333333333334C341.3333333333333 73.6 331.7333333333334 64 320 64H192C180.2666666666667 64 170.6666666666667 73.6 170.6666666666667 85.3333333333334V133.5466666666667C132.0533333333334 160.64 106.6666666666667 205.2266666666667 106.6666666666667 256C106.6666666666667 338.56 173.44 405.3333333333333 256 405.3333333333333M192 0V21.3333333333334H320V0C320 -11.7333333333333 310.4 -21.3333333333333 298.6666666666667 -21.3333333333333H213.3333333333333C201.6 -21.3333333333333 192 -11.7333333333333 192 0M256 362.6666666666667C197.12 362.6666666666667 149.3333333333333 314.88 149.3333333333333 256C149.3333333333333 212.2666666666667 175.5733333333333 174.72 213.3333333333333 158.2933333333334V106.6666666666667H298.6666666666667V158.2933333333334C336.4266666666666 174.72 362.6666666666667 212.2666666666667 362.6666666666667 256C362.6666666666667 314.88 314.88 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="lighthouse"
+      unicode="&#xF9FE;"
+      horiz-adv-x="512" d=" M170.6666666666667 234.6666666666667V277.3333333333334H192V362.6666666666667H170.6666666666667V384L256 426.6666666666667L341.3333333333333 384V362.6666666666667H320V277.3333333333334H341.3333333333333V234.6666666666667H314.4533333333333L180.0533333333334 157.0133333333333L192 234.6666666666667H170.6666666666667M277.3333333333333 277.3333333333334V362.6666666666667H234.6666666666667V277.3333333333334H277.3333333333333M149.3333333333333 -42.6666666666666L150.1866666666667 -37.5466666666667L344.5333333333333 74.6666666666667L355.6266666666666 2.5600000000001L277.3333333333333 -42.6666666666666H149.3333333333333M171.7333333333334 103.04L326.6133333333334 192L337.7066666666667 120.1066666666667L158.5066666666667 16.64L171.7333333333333 103.0400000000001z" />
+    <glyph glyph-name="lighthouse-on"
+      unicode="&#xF9FF;"
+      horiz-adv-x="512" d=" M21.3333333333333 234.6666666666667V405.3333333333333L213.3333333333333 341.3333333333334V298.6666666666667L21.3333333333333 234.6666666666667M170.6666666666667 234.6666666666667V277.3333333333334H277.3333333333333V362.6666666666667H170.6666666666667V384L256 426.6666666666667L341.3333333333333 384V362.6666666666667H320V277.3333333333334H341.3333333333333V234.6666666666667H314.4533333333333L180.0533333333334 157.0133333333333L192 234.6666666666667H170.6666666666667M149.3333333333333 -42.6666666666666L150.1866666666667 -37.5466666666667L344.5333333333333 74.6666666666667L355.6266666666666 2.5600000000001L277.3333333333333 -42.6666666666666H149.3333333333333M171.7333333333334 103.04L326.6133333333334 192L337.7066666666667 120.1066666666667L158.5066666666667 16.64L171.7333333333333 103.0400000000001z" />
+    <glyph glyph-name="link"
+      unicode="&#xF337;"
+      horiz-adv-x="512" d=" M341.3333333333333 320H277.3333333333333V279.4666666666667H341.3333333333333C389.5466666666666 279.4666666666667 428.8 240.4266666666667 428.8 192C428.8 143.7866666666667 389.5466666666667 104.5333333333333 341.3333333333333 104.5333333333333H277.3333333333333V64H341.3333333333333C411.9466666666666 64 469.3333333333333 121.3866666666667 469.3333333333333 192C469.3333333333333 262.8266666666667 411.9466666666666 320 341.3333333333333 320M83.2 192C83.2 240.4266666666667 122.4533333333333 279.4666666666667 170.6666666666667 279.4666666666667H234.6666666666667V320H170.6666666666667C100.0533333333333 320 42.6666666666667 262.6133333333334 42.6666666666667 192S100.0533333333333 64 170.6666666666667 64H234.6666666666667V104.5333333333333H170.6666666666667C122.4533333333333 104.5333333333333 83.2 143.7866666666666 83.2 192M170.6666666666667 170.6666666666667H341.3333333333333V213.3333333333334H170.6666666666667V170.6666666666667z" />
+    <glyph glyph-name="link-off"
+      unicode="&#xF338;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L314.24 64H277.3333333333333V100.9066666666667L207.5733333333333 170.6666666666667H170.6666666666667V207.5733333333334L117.3333333333333 261.12C96 245.3333333333334 83.2 220.16 83.2 192C83.2 143.7866666666667 122.4533333333333 104.5333333333333 170.6666666666667 104.5333333333333H234.6666666666667V64H170.6666666666667C100.0533333333333 64 42.6666666666667 121.3866666666667 42.6666666666667 192C42.6666666666667 231.2533333333334 60.3733333333333 266.6666666666667 88.32 289.92L42.6666666666667 335.5733333333334M341.3333333333333 320C411.9466666666666 320 469.3333333333333 262.6133333333334 469.3333333333333 192C469.3333333333333 144.8533333333334 443.7333333333334 103.4666666666667 405.3333333333333 81.28L375.4666666666667 111.5733333333333C406.8266666666667 124.8 428.8 155.7333333333334 428.8 192C428.8 240.4266666666666 389.5466666666667 279.4666666666667 341.3333333333333 279.4666666666667H277.3333333333333V320H341.3333333333333M170.6666666666667 320H234.6666666666667V279.4666666666667H207.36L166.8266666666667 320H170.6666666666667M341.3333333333333 213.3333333333334V170.6666666666667H316.16L273.4933333333334 213.3333333333334H341.3333333333333z" />
+    <glyph glyph-name="link-variant"
+      unicode="&#xF339;"
+      horiz-adv-x="512" d=" M225.92 161.92C234.6666666666667 153.6 234.6666666666667 139.9466666666667 225.92 131.6266666666667C217.6 123.3066666666667 203.9466666666667 123.3066666666667 195.6266666666667 131.6266666666667C154.0266666666667 173.2266666666667 154.0266666666667 240.8533333333333 195.6266666666667 282.4533333333334L271.1466666666667 357.9733333333334C312.7466666666667 399.5733333333333 380.3733333333334 399.5733333333333 421.9733333333334 357.9733333333334C463.5733333333333 316.3733333333334 463.5733333333333 248.7466666666667 421.9733333333334 207.1466666666667L390.1866666666667 175.36C390.4000000000001 192.8533333333334 387.6266666666667 210.3466666666667 381.6533333333334 226.9866666666667L391.6800000000001 237.2266666666667C416.8533333333334 262.1866666666667 416.8533333333334 302.7200000000001 391.6800000000001 327.6800000000001C366.7200000000001 352.8533333333334 326.1866666666667 352.8533333333334 301.2266666666667 327.6800000000001L225.9200000000001 252.3733333333334C200.7466666666667 227.4133333333334 200.7466666666667 186.8800000000001 225.9200000000001 161.9200000000001M286.0800000000001 252.3733333333334C294.4000000000001 260.6933333333334 308.0533333333334 260.6933333333334 316.3733333333334 252.3733333333334C357.9733333333334 210.7733333333334 357.9733333333334 143.1466666666667 316.3733333333334 101.5466666666667L240.8533333333334 26.0266666666668C199.2533333333334 -15.5733333333333 131.6266666666667 -15.5733333333333 90.0266666666667 26.0266666666668C48.4266666666667 67.6266666666667 48.4266666666667 135.2533333333335 90.0266666666667 176.8533333333334L121.8133333333334 208.6400000000001C121.6000000000001 191.1466666666668 124.3733333333334 173.6533333333334 130.3466666666667 156.8000000000001L120.3200000000001 146.7733333333334C95.1466666666667 121.8133333333334 95.1466666666667 81.2800000000001 120.3200000000001 56.3200000000001C145.2800000000001 31.1466666666667 185.8133333333334 31.1466666666667 210.7733333333334 56.3200000000001L286.0800000000001 131.6266666666667C311.2533333333334 156.5866666666667 311.2533333333334 197.12 286.0800000000001 222.08C277.3333333333334 230.4000000000001 277.3333333333334 244.0533333333334 286.0800000000001 252.3733333333334z" />
+    <glyph glyph-name="link-variant-off"
+      unicode="&#xF33A;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L296.5333333333333 81.7066666666667L240.8533333333334 26.0266666666666C199.2533333333334 -15.5733333333333 131.6266666666667 -15.5733333333333 90.0266666666667 26.0266666666666C48.4266666666667 67.6266666666667 48.4266666666667 135.2533333333333 90.0266666666667 176.8533333333334L121.8133333333334 208.64C121.6 191.1466666666667 124.3733333333334 173.6533333333333 130.3466666666667 156.8L120.32 146.7733333333333C95.1466666666667 121.8133333333333 95.1466666666667 81.28 120.32 56.3200000000001C145.28 31.1466666666667 185.8133333333333 31.1466666666667 210.7733333333334 56.3200000000001L266.6666666666668 111.7866666666667L232.1066666666667 146.1333333333333C231.8933333333334 141.0133333333333 229.7600000000001 135.68 225.9200000000001 131.6266666666667C217.6000000000001 123.3066666666667 203.9466666666668 123.3066666666667 195.6266666666667 131.6266666666667C173.2266666666667 154.24 162.7733333333334 184.1066666666667 164.6933333333334 213.3333333333334L42.6666666666667 335.5733333333334M271.1466666666667 357.9733333333334C312.7466666666667 399.5733333333333 380.3733333333334 399.5733333333333 421.9733333333334 357.9733333333334C463.5733333333333 316.3733333333334 463.5733333333333 248.7466666666667 421.9733333333334 207.1466666666667L390.1866666666667 175.36C390.4000000000001 192.8533333333334 387.6266666666667 210.3466666666667 381.6533333333334 226.9866666666667L391.6800000000001 237.2266666666667C416.8533333333334 262.1866666666667 416.8533333333334 302.7200000000001 391.6800000000001 327.6800000000001C366.7200000000001 352.8533333333334 326.1866666666667 352.8533333333334 301.2266666666667 327.6800000000001L230.1866666666667 256.6400000000001L200.1066666666667 286.9333333333334L271.1466666666667 357.9733333333334M286.0800000000001 252.3733333333334C294.4000000000001 260.6933333333334 308.0533333333334 260.6933333333334 316.3733333333334 252.3733333333334C345.6 223.1466666666667 354.3466666666667 181.3333333333334 342.6133333333334 144.4266666666667L304.6400000000001 182.1866666666667C303.5733333333334 196.6933333333334 297.3866666666667 210.9866666666667 286.0800000000001 222.0800000000001C277.3333333333334 230.4000000000001 277.3333333333334 244.0533333333334 286.0800000000001 252.3733333333334z" />
+    <glyph glyph-name="linkedin"
+      unicode="&#xF33B;"
+      horiz-adv-x="512" d=" M448 0H362.6666666666667V144C362.6666666666667 166.6133333333334 337.28 185.3866666666667 314.6666666666667 185.3866666666667S277.3333333333333 166.6133333333334 277.3333333333333 144V0H192V256H277.3333333333333V213.3333333333334C291.4133333333333 236.1600000000001 327.68 250.88 352 250.88C405.3333333333333 250.88 448 207.36 448 154.6666666666667V0M149.3333333333333 0H64V256H149.3333333333333V0M106.6666666666667 384C130.1333333333333 384 149.3333333333333 364.8 149.3333333333333 341.3333333333334S130.1333333333333 298.6666666666667 106.6666666666667 298.6666666666667S64 317.8666666666667 64 341.3333333333334S83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="linkedin-box"
+      unicode="&#xF33C;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M394.6666666666667 53.3333333333334V166.4C394.6666666666667 204.8000000000001 363.52 235.9466666666667 325.12 235.9466666666667C306.9866666666667 235.9466666666667 285.8666666666667 224.8533333333334 275.6266666666667 208.2133333333334V231.8933333333333H216.1066666666666V53.3333333333334H275.6266666666666V158.5066666666667C275.6266666666666 174.9333333333333 288.8533333333333 188.3733333333333 305.28 188.3733333333333C321.7066666666666 188.3733333333333 335.1466666666667 174.9333333333333 335.1466666666667 158.5066666666667V53.3333333333334H394.6666666666667M146.7733333333333 265.3866666666667C166.6133333333333 265.3866666666667 182.6133333333334 281.3866666666667 182.6133333333334 301.2266666666667C182.6133333333334 321.0666666666667 166.6133333333334 337.28 146.7733333333334 337.28C126.9333333333334 337.28 110.72 321.0666666666667 110.72 301.2266666666667C110.72 281.3866666666667 126.9333333333334 265.3866666666667 146.7733333333334 265.3866666666667M176.4266666666667 53.3333333333334V231.8933333333333H117.3333333333333V53.3333333333334H176.4266666666667z" />
+    <glyph glyph-name="linux"
+      unicode="&#xF33D;"
+      horiz-adv-x="512" d=" M311.8933333333333 269.8666666666667C302.9333333333333 263.8933333333334 274.56 247.68 270.2933333333333 244.48C261.9733333333333 237.8666666666667 254.2933333333333 238.2933333333334 245.9733333333333 244.6933333333334C241.7066666666667 248.1066666666667 213.3333333333333 264.3200000000001 204.3733333333333 270.0800000000001C194.1333333333333 276.6933333333334 194.7733333333334 285.0133333333333 206.08 289.7066666666667C241.0666666666667 304.4266666666667 276.0533333333333 303.36 310.8266666666667 289.0666666666667C321.28 284.5866666666667 321.7066666666667 276.2666666666667 311.8933333333333 269.8666666666667M465.92 114.5600000000001C446.08 159.1466666666667 418.9866666666667 199.68 384 235.3066666666667C372.6933333333333 247.0400000000001 365.6533333333333 260.2666666666667 361.3866666666667 275.4133333333334C359.2533333333334 282.4533333333334 357.76 289.7066666666667 356.2666666666667 296.9600000000001C352.0000000000001 315.7333333333334 350.0800000000001 334.9333333333334 341.3333333333334 352.64C325.7600000000001 386.3466666666667 298.6666666666668 403.84 259.4133333333334 405.3333333333333C220.8000000000001 404.2666666666667 192.0000000000001 388.0533333333334 175.1466666666668 354.1333333333334C170.6666666666668 344.9600000000001 167.4666666666668 335.36 165.3333333333334 325.5466666666667C161.7066666666668 309.3333333333334 158.5066666666668 292.48 154.6666666666668 276.0533333333334C151.4666666666668 262.1866666666667 145.0666666666668 250.24 134.1866666666668 239.5733333333334C99.8400000000001 206.08 72.3200000000001 167.68 51.4133333333334 125.4400000000001C48.4266666666668 119.2533333333334 45.4400000000001 113.0666666666667 43.5200000000001 106.6666666666667C39.4666666666668 92.5866666666667 49.7066666666668 82.7733333333333 64.6400000000001 86.1866666666667C74.0266666666668 88.1066666666667 83.4133333333334 90.0266666666666 92.3733333333334 92.8C101.1200000000001 95.9999999999999 104.5333333333334 93.8666666666667 106.6666666666668 85.3333333333333C120.5333333333334 39.4666666666666 150.8266666666668 7.2533333333333 197.1200000000001 -10.6666666666667C285.0133333333335 -43.9466666666667 387.6266666666668 3.4133333333333 409.8133333333335 87.04C411.3066666666669 92.8 413.4400000000002 94.9333333333333 419.8400000000002 92.8C429.6533333333335 89.8133333333333 439.6800000000001 87.68 449.7066666666668 85.3333333333333C460.1600000000001 83.4133333333333 467.8400000000001 88.7466666666666 469.3333333333335 98.9866666666666C469.9733333333335 104.5333333333333 468.0533333333335 109.4399999999999 465.9200000000001 114.56" />
+    <glyph glyph-name="linux-mint"
+      unicode="&#xF8EC;"
+      horiz-adv-x="512" d=" M42.6666666666667 379.0933333333334V302.9333333333334H74.6666666666667C97.92 302.9333333333334 101.9733333333333 287.36 101.9733333333333 265.6V130.9866666666667C101.9733333333333 61.4400000000001 163.2 4.9066666666667 238.5066666666667 4.9066666666667H424.5333333333333C448 4.9066666666667 469.3333333333333 19.84 469.3333333333333 42.6666666666667V251.7333333333334C469.3333333333333 321.4933333333334 408.1066666666667 378.0266666666667 332.8 378.0266666666667H254.5066666666667V378.24L42.6666666666667 379.0933333333334M141.2266666666667 331.52H178.56V139.7333333333334C178.56 114.1333333333334 196.0533333333334 94.08 216.7466666666667 94.08L344.1066666666667 93.6533333333334C370.7733333333333 93.6533333333334 391.4666666666666 112 391.4666666666666 133.76L391.2533333333332 235.52C391.2533333333332 242.1333333333334 389.1199999999999 247.2533333333334 383.9999999999999 251.9466666666667C379.5199999999999 256.8533333333334 374.6133333333333 258.9866666666667 367.9999999999999 258.9866666666667S356.4799999999999 256.8533333333334 351.9999999999999 251.9466666666667C347.0933333333333 247.2533333333333 344.7466666666666 242.1333333333333 344.7466666666666 235.52V148.2666666666667H305.2799999999999V235.52C305.2799999999999 242.1333333333334 303.1466666666666 247.2533333333334 298.6666666666666 251.9466666666667C293.7599999999999 256.8533333333334 288.8533333333333 258.9866666666667 282.0266666666666 258.9866666666667C275.6266666666666 258.9866666666667 270.5066666666666 256.8533333333334 265.8133333333333 251.9466666666667C261.1199999999999 247.2533333333333 258.9866666666666 242.1333333333333 258.9866666666666 235.52V148.2666666666667H219.5199999999999V235.52C219.5199999999999 252.8 225.7066666666666 267.9466666666667 237.8666666666666 280.32C250.0266666666666 292.48 265.1733333333333 298.6666666666667 282.0266666666666 298.6666666666667C298.6666666666666 298.6666666666667 313.1733333333333 292.6933333333334 325.1199999999999 281.1733333333333C336.8533333333333 292.6933333333334 351.3599999999999 298.6666666666667 367.9999999999999 298.6666666666667C385.0666666666666 298.6666666666667 400.2133333333333 292.48 412.1599999999999 280.32C424.32 267.9466666666667 430.7199999999999 252.8 430.7199999999999 235.52L430.9333333333333 126.72C429.0133333333333 108.5866666666667 421.3333333333333 92.3733333333333 408.1066666666667 78.72C392.5333333333333 63.1466666666667 373.3333333333333 55.04 352 55.04H209.7066666666667C192 56.7466666666666 176.8533333333333 65.0666666666666 164.0533333333333 77.6533333333333C149.3333333333333 92.8 141.2266666666666 111.1466666666667 141.2266666666666 132.48V331.52z" />
+    <glyph glyph-name="litecoin"
+      unicode="&#xFA60;"
+      horiz-adv-x="512" d=" M267.7333333333334 108.3733333333333L280.7466666666667 154.0266666666667L315.9466666666667 166.6133333333334L346.6666666666667 285.2266666666667L310.6133333333334 270.7200000000001L346.6666666666667 405.3333333333333H170.6666666666667L114.7733333333333 196.9066666666667L79.36 184.7466666666667L47.36 65.92L85.3333333333333 79.5733333333334L56.7466666666667 -21.3333333333333H430.08L464.64 108.3733333333333H267.7333333333334M413.6533333333333 0H85.3333333333333L116.48 114.1333333333333L79.36 100.2666666666667L97.7066666666667 168.32L133.12 180.48L186.4533333333333 384H320L280.1066666666667 234.6666666666667L316.3733333333333 249.6L298.6666666666667 183.04L263.04 170.6666666666666L239.36 87.2533333333333H437.3333333333333L413.6533333333333 0z" />
+    <glyph glyph-name="loading"
+      unicode="&#xF771;"
+      horiz-adv-x="512" d=" M256 362.6666666666667V405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192H85.3333333333333C85.3333333333333 286.2933333333334 161.7066666666667 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="lock"
+      unicode="&#xF33E;"
+      horiz-adv-x="512" d=" M256 85.3333333333334C279.4666666666667 85.3333333333334 298.6666666666667 104.5333333333333 298.6666666666667 128C298.6666666666667 151.68 279.4666666666667 170.6666666666667 256 170.6666666666667S213.3333333333333 151.4666666666667 213.3333333333333 128S232.5333333333334 85.3333333333334 256 85.3333333333334M384 277.3333333333334C407.4666666666667 277.3333333333334 426.6666666666667 258.1333333333334 426.6666666666667 234.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V234.6666666666667C85.3333333333333 258.3466666666667 104.5333333333333 277.3333333333334 128 277.3333333333334H149.3333333333333V320C149.3333333333333 378.88 197.12 426.6666666666667 256 426.6666666666667S362.6666666666667 378.88 362.6666666666667 320V277.3333333333334H384M256 384C220.5866666666667 384 192 355.4133333333334 192 320V277.3333333333334H320V320C320 355.4133333333334 291.4133333333333 384 256 384z" />
+    <glyph glyph-name="lock-alert"
+      unicode="&#xF8ED;"
+      horiz-adv-x="512" d=" M256 426.6666666666667C197.12 426.6666666666667 149.3333333333333 378.88 149.3333333333333 320V277.3333333333334H128C104.5333333333333 277.3333333333334 85.3333333333333 258.1333333333334 85.3333333333333 234.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V234.6666666666667C426.6666666666667 258.1333333333334 407.4666666666667 277.3333333333334 384 277.3333333333334H362.6666666666667V320C362.6666666666667 378.88 314.88 426.6666666666667 256 426.6666666666667M256 386.1333333333334C292.48 386.1333333333334 322.1333333333334 356.48 322.1333333333334 320V277.3333333333334H189.8666666666667V320C189.8666666666667 356.48 219.52 386.1333333333334 256 386.1333333333334M234.6666666666667 213.3333333333334H277.3333333333333V128H234.6666666666667V213.3333333333334M234.6666666666667 85.3333333333334H277.3333333333333V42.6666666666667H234.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="lock-clock"
+      unicode="&#xF97E;"
+      horiz-adv-x="512" d=" M181.3333333333333 405.3333333333333C128 405.3333333333333 85.3333333333333 362.6666666666667 85.3333333333333 309.3333333333334V298.6666666666667C61.6533333333333 298.6666666666667 42.6666666666667 279.68 42.6666666666667 256V64C42.6666666666667 40.3200000000001 61.6533333333333 21.3333333333334 85.3333333333333 21.3333333333334H186.0266666666667C217.1733333333333 -6.1866666666666 257.28 -21.3333333333333 298.6666666666667 -21.3333333333333C392.9600000000001 -21.3333333333333 469.3333333333333 55.04 469.3333333333333 149.3333333333334S392.9600000000001 320 298.6666666666667 320C291.4133333333333 320 284.16 319.36 277.3333333333333 318.2933333333334C272.2133333333333 367.5733333333333 230.8266666666667 405.3333333333333 181.3333333333333 405.3333333333333M181.3333333333333 362.6666666666667C210.7733333333334 362.6666666666667 234.6666666666667 338.7733333333333 234.6666666666667 309.3333333333334V298.6666666666667H128V309.3333333333334C128 338.7733333333333 151.8933333333333 362.6666666666667 181.3333333333333 362.6666666666667M298.6666666666667 277.3333333333334C369.28 277.3333333333334 426.6666666666667 219.9466666666667 426.6666666666667 149.3333333333334S369.28 21.3333333333334 298.6666666666667 21.3333333333334S170.6666666666667 78.72 170.6666666666667 149.3333333333334S228.0533333333333 277.3333333333334 298.6666666666667 277.3333333333334M277.3333333333333 234.6666666666667V128L354.9866666666667 81.28L371.6266666666667 108.8L309.3333333333334 146.1333333333333V234.6666666666667H277.3333333333333z" />
+    <glyph glyph-name="lock-open"
+      unicode="&#xF33F;"
+      horiz-adv-x="512" d=" M384 277.3333333333334C407.4666666666667 277.3333333333334 426.6666666666667 258.1333333333334 426.6666666666667 234.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V234.6666666666667C85.3333333333333 258.1333333333334 104.5333333333333 277.3333333333334 128 277.3333333333334H320V320C320 355.4133333333334 291.4133333333333 384 256 384S192 355.4133333333334 192 320H149.3333333333333C149.3333333333333 378.88 197.12 426.6666666666667 256 426.6666666666667S362.6666666666667 378.88 362.6666666666667 320V277.3333333333334H384M256 85.3333333333334C279.4666666666667 85.3333333333334 298.6666666666667 104.5333333333333 298.6666666666667 128S279.4666666666667 170.6666666666667 256 170.6666666666667S213.3333333333333 151.4666666666667 213.3333333333333 128S232.5333333333334 85.3333333333334 256 85.3333333333334z" />
+    <glyph glyph-name="lock-open-outline"
+      unicode="&#xF340;"
+      horiz-adv-x="512" d=" M384 21.3333333333334V234.6666666666667H128V21.3333333333334H384M384 277.3333333333334C407.4666666666667 277.3333333333334 426.6666666666667 258.1333333333334 426.6666666666667 234.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V234.6666666666667C85.3333333333333 258.1333333333334 104.5333333333333 277.3333333333334 128 277.3333333333334H320V320C320 355.4133333333334 291.4133333333333 384 256 384S192 355.4133333333334 192 320H149.3333333333333C149.3333333333333 378.88 197.12 426.6666666666667 256 426.6666666666667S362.6666666666667 378.88 362.6666666666667 320V277.3333333333334H384M256 85.3333333333334C232.5333333333334 85.3333333333334 213.3333333333333 104.5333333333333 213.3333333333333 128S232.5333333333334 170.6666666666667 256 170.6666666666667S298.6666666666667 151.4666666666667 298.6666666666667 128S279.4666666666667 85.3333333333334 256 85.3333333333334z" />
+    <glyph glyph-name="lock-outline"
+      unicode="&#xF341;"
+      horiz-adv-x="512" d=" M256 85.3333333333334C232.32 85.3333333333334 213.3333333333333 104.5333333333333 213.3333333333333 128C213.3333333333333 151.68 232.32 170.6666666666667 256 170.6666666666667C279.4666666666667 170.6666666666667 298.6666666666667 151.4666666666667 298.6666666666667 128S279.4666666666667 85.3333333333334 256 85.3333333333334M384 21.3333333333334V234.6666666666667H128V21.3333333333334H384M384 277.3333333333334C407.4666666666667 277.3333333333334 426.6666666666667 258.1333333333334 426.6666666666667 234.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.32 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V234.6666666666667C85.3333333333333 258.3466666666667 104.32 277.3333333333334 128 277.3333333333334H149.3333333333333V320C149.3333333333333 378.88 197.12 426.6666666666667 256 426.6666666666667S362.6666666666667 378.88 362.6666666666667 320V277.3333333333334H384M256 384C220.5866666666667 384 192 355.4133333333334 192 320V277.3333333333334H320V320C320 355.4133333333334 291.4133333333333 384 256 384z" />
+    <glyph glyph-name="lock-pattern"
+      unicode="&#xF6E9;"
+      horiz-adv-x="512" d=" M149.3333333333333 384C196.48 384 234.6666666666667 345.8133333333334 234.6666666666667 298.6666666666667C234.6666666666667 258.9866666666667 207.5733333333333 225.4933333333334 170.6666666666667 216.1066666666667V167.8933333333333C178.56 165.9733333333334 186.0266666666667 162.7733333333333 192.8533333333333 158.72L289.28 255.1466666666667C281.6 267.9466666666667 277.3333333333333 282.6666666666667 277.3333333333333 298.6666666666667C277.3333333333333 345.8133333333334 315.52 384 362.6666666666667 384S448 345.8133333333334 448 298.6666666666667S409.8133333333334 213.3333333333334 362.6666666666667 213.3333333333334C346.88 213.3333333333334 332.16 217.6 320 225.0666666666667L222.9333333333333 128C230.4 115.84 234.6666666666667 101.12 234.6666666666667 85.3333333333334C234.6666666666667 38.1866666666667 196.48 0 149.3333333333333 0S64 38.1866666666667 64 85.3333333333334C64 125.0133333333333 91.0933333333333 158.5066666666667 128 167.8933333333334V216.1066666666667C91.0933333333333 225.4933333333334 64 258.9866666666667 64 298.6666666666667C64 345.8133333333334 102.1866666666667 384 149.3333333333333 384M362.6666666666667 170.6666666666667C409.8133333333334 170.6666666666667 448 132.48 448 85.3333333333334S409.8133333333334 0 362.6666666666667 0S277.3333333333333 38.1866666666667 277.3333333333333 85.3333333333334S315.52 170.6666666666667 362.6666666666667 170.6666666666667M362.6666666666667 128C339.2 128 320 108.8 320 85.3333333333334S339.2 42.6666666666667 362.6666666666667 42.6666666666667S405.3333333333333 61.8666666666667 405.3333333333333 85.3333333333334S386.1333333333334 128 362.6666666666667 128z" />
+    <glyph glyph-name="lock-plus"
+      unicode="&#xF5FB;"
+      horiz-adv-x="512" d=" M384 277.3333333333334H362.6666666666667V320C362.6666666666667 378.88 314.88 426.6666666666667 256 426.6666666666667S149.3333333333333 378.88 149.3333333333333 320V277.3333333333334H128C104.5333333333333 277.3333333333334 85.3333333333333 258.1333333333334 85.3333333333333 234.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V234.6666666666667C426.6666666666667 258.1333333333334 407.4666666666667 277.3333333333334 384 277.3333333333334M189.8666666666667 320C189.8666666666667 356.48 219.52 386.1333333333334 256 386.1333333333334C292.48 386.1333333333334 322.1333333333334 356.48 322.1333333333334 320V277.3333333333334H189.8666666666667V320M341.3333333333333 106.6666666666667H277.3333333333333V42.6666666666667H234.6666666666667V106.6666666666667H170.6666666666667V149.3333333333334H234.6666666666667V213.3333333333334H277.3333333333333V149.3333333333334H341.3333333333333V106.6666666666667z" />
+    <glyph glyph-name="lock-question"
+      unicode="&#xF8EE;"
+      horiz-adv-x="512" d=" M256 426.6666666666667C197.12 426.6666666666667 149.3333333333333 378.88 149.3333333333333 320V277.3333333333334H128C104.5333333333333 277.3333333333334 85.3333333333333 258.1333333333334 85.3333333333333 234.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V234.6666666666667C426.6666666666667 258.1333333333334 407.4666666666667 277.3333333333334 384 277.3333333333334H362.6666666666667V320C362.6666666666667 378.88 314.88 426.6666666666667 256 426.6666666666667M256 386.1333333333334C292.48 386.1333333333334 322.1333333333334 356.48 322.1333333333334 320V277.3333333333334H189.8666666666667V320C189.8666666666667 356.48 219.52 386.1333333333334 256 386.1333333333334M260.0533333333333 224C280.1066666666667 224 296.1066666666667 219.52 307.6266666666667 210.7733333333334C319.1466666666667 201.8133333333334 324.9066666666667 189.8666666666667 324.9066666666667 174.9333333333334C324.9066666666667 165.5466666666668 321.7066666666667 157.2266666666667 315.52 149.3333333333334C309.3333333333334 141.6533333333334 301.2266666666667 135.6800000000001 291.4133333333333 131.2000000000001C285.8666666666667 128.0000000000001 282.24 124.8000000000001 280.32 121.1733333333334C278.4 117.3333333333334 277.3333333333333 112.6400000000001 277.3333333333333 106.6666666666667H234.6666666666667C234.6666666666667 117.3333333333334 236.8 124.5866666666667 240.8533333333333 129.7066666666667C245.3333333333333 134.8266666666667 252.5866666666667 140.8000000000001 263.68 147.6266666666667C269.2266666666667 150.6133333333334 273.7066666666667 154.4533333333334 277.3333333333333 159.1466666666667C280.32 163.6266666666667 282.0266666666667 168.96 282.0266666666667 174.9333333333334C282.0266666666667 181.3333333333334 280.1066666666667 186.0266666666667 276.2666666666667 189.6533333333334C272.4266666666667 193.4933333333334 266.6666666666667 195.2 260.0533333333334 195.2C254.2933333333334 195.2 249.6 193.7066666666667 245.3333333333334 190.72C241.92 187.7333333333334 239.7866666666667 183.2533333333333 239.7866666666667 177.28H197.76C196.6933333333333 192 202.6666666666667 204.8 214.4 212.48C225.92 220.16 241.0666666666667 224 260.0533333333333 224M234.6666666666667 85.3333333333334H277.3333333333333V42.6666666666667H234.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="lock-reset"
+      unicode="&#xF772;"
+      horiz-adv-x="512" d=" M269.44 405.3333333333333C387.4133333333333 405.3333333333333 482.9866666666667 309.3333333333334 482.9866666666667 192S387.4133333333333 -21.3333333333333 269.44 -21.3333333333333C194.56 -21.3333333333333 129.0666666666667 17.4933333333333 90.88 76.16L124.5866666666667 102.8266666666667C154.6666666666667 53.9733333333334 208.2133333333333 21.3333333333334 269.6533333333333 21.3333333333334C363.9466666666667 21.3333333333334 440.32 97.7066666666667 440.32 192S363.9466666666667 362.6666666666667 269.6533333333333 362.6666666666667C182.6133333333334 362.6666666666667 110.9333333333333 297.3866666666667 100.48 213.3333333333334H159.36L79.5733333333333 133.76L0 213.3333333333334H57.3866666666667C68.0533333333333 321.0666666666667 158.9333333333333 405.3333333333333 269.44 405.3333333333333M332.5866666666667 229.5466666666667C343.2533333333334 229.3333333333334 352 220.8 352 209.92V111.5733333333334C352 100.9066666666667 343.2533333333334 91.9466666666667 332.3733333333334 91.9466666666667H214.4C203.52 91.9466666666667 194.7733333333334 100.9066666666667 194.7733333333334 111.5733333333333V209.92C194.7733333333334 220.8 203.52 229.3333333333334 214.1866666666667 229.5466666666667V251.0933333333334C214.1866666666667 283.7333333333334 240.8533333333334 310.1866666666667 273.28 310.1866666666667C305.92 310.1866666666667 332.5866666666667 283.7333333333334 332.5866666666667 251.0933333333334V229.5466666666667M273.28 280.32C257.28 280.32 244.0533333333334 267.3066666666667 244.0533333333334 251.0933333333334V229.5466666666667H302.7200000000001V251.0933333333334C302.7200000000001 267.3066666666667 289.4933333333334 280.32 273.2800000000001 280.32z" />
+    <glyph glyph-name="lock-smart"
+      unicode="&#xF8B1;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C185.3866666666667 405.3333333333333 128 347.9466666666667 128 277.3333333333334V106.6666666666667C128 36.0533333333334 185.3866666666667 -21.3333333333333 256 -21.3333333333333S384 36.0533333333334 384 106.6666666666667V277.3333333333334C384 347.9466666666667 326.6133333333334 405.3333333333333 256 405.3333333333333M170.6666666666667 320H213.3333333333333V277.3333333333334H170.6666666666667V320M234.6666666666667 320H277.3333333333333V277.3333333333334H234.6666666666667V320M298.6666666666667 320H341.3333333333333V277.3333333333334H298.6666666666667V320M170.6666666666667 256H213.3333333333333V213.3333333333334H170.6666666666667V256M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667V256M298.6666666666667 256H341.3333333333333V213.3333333333334H298.6666666666667V256M170.6666666666667 192H213.3333333333333V149.3333333333334H170.6666666666667V192M234.6666666666667 192H277.3333333333333V149.3333333333334H234.6666666666667V192M298.6666666666667 192H341.3333333333333V149.3333333333334H298.6666666666667V192M256 106.6666666666667C279.4666666666667 106.6666666666667 298.6666666666667 87.4666666666667 298.6666666666667 64S279.4666666666667 21.3333333333334 256 21.3333333333334S213.3333333333333 40.5333333333333 213.3333333333333 64S232.5333333333334 106.6666666666667 256 106.6666666666667z" />
+    <glyph glyph-name="locker"
+      unicode="&#xF7D6;"
+      horiz-adv-x="512" d=" M170.6666666666667 405.3333333333333H341.3333333333333C364.8 405.3333333333333 384 386.1333333333334 384 362.6666666666667V21.3333333333334C384 -2.1333333333333 364.8 -21.3333333333333 341.3333333333333 -21.3333333333333H170.6666666666667C147.2 -21.3333333333333 128 -2.1333333333333 128 21.3333333333334V362.6666666666667C128 386.1333333333334 147.2 405.3333333333333 170.6666666666667 405.3333333333333M170.6666666666667 362.6666666666667V21.3333333333334H341.3333333333333V362.6666666666667H170.6666666666667M213.3333333333333 170.6666666666667H256V85.3333333333334H213.3333333333333V170.6666666666667M213.3333333333333 320H298.6666666666667V288H213.3333333333333V320M213.3333333333333 256H298.6666666666667V224H213.3333333333333V256z" />
+    <glyph glyph-name="locker-multiple"
+      unicode="&#xF7D7;"
+      horiz-adv-x="512" d=" M64 405.3333333333333H448C471.4666666666667 405.3333333333333 490.6666666666666 386.1333333333334 490.6666666666666 362.6666666666667V21.3333333333334C490.6666666666666 -2.1333333333333 471.4666666666667 -21.3333333333333 448 -21.3333333333333H64C40.5333333333333 -21.3333333333333 21.3333333333333 -2.1333333333333 21.3333333333333 21.3333333333334V362.6666666666667C21.3333333333333 386.1333333333334 40.5333333333333 405.3333333333333 64 405.3333333333333M277.3333333333333 362.6666666666667V21.3333333333334H448V362.6666666666667H277.3333333333333M64 362.6666666666667V21.3333333333334H234.6666666666667V362.6666666666667H64M106.6666666666667 170.6666666666667H149.3333333333333V85.3333333333334H106.6666666666667V170.6666666666667M106.6666666666667 320H192V288H106.6666666666667V320M106.6666666666667 256H192V224H106.6666666666667V256M320 170.6666666666667H362.6666666666667V85.3333333333334H320V170.6666666666667M320 320H405.3333333333333V288H320V320M320 256H405.3333333333333V224H320V256z" />
+    <glyph glyph-name="login"
+      unicode="&#xF342;"
+      horiz-adv-x="512" d=" M213.3333333333333 80V149.3333333333334H64V234.6666666666667H213.3333333333333V304L325.3333333333333 192L213.3333333333333 80M170.6666666666667 405.3333333333333H362.6666666666667C386.1333333333334 405.3333333333333 405.3333333333333 386.1333333333334 405.3333333333333 362.6666666666667V21.3333333333334C405.3333333333333 -2.1333333333333 386.1333333333334 -21.3333333333333 362.6666666666667 -21.3333333333333H170.6666666666667C147.2 -21.3333333333333 128 -2.1333333333333 128 21.3333333333334V106.6666666666667H170.6666666666667V21.3333333333334H362.6666666666667V362.6666666666667H170.6666666666667V277.3333333333334H128V362.6666666666667C128 386.1333333333334 147.2 405.3333333333333 170.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="login-variant"
+      unicode="&#xF5FC;"
+      horiz-adv-x="512" d=" M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V256H106.6666666666667V341.3333333333334H405.3333333333333V42.6666666666667H106.6666666666667V128H64V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M215.04 115.6266666666667L245.3333333333333 85.3333333333334L352 192L245.3333333333333 298.6666666666667L215.04 268.5866666666667L270.2933333333333 213.3333333333334H64V170.6666666666667H270.2933333333333L215.04 115.6266666666667z" />
+    <glyph glyph-name="logout"
+      unicode="&#xF343;"
+      horiz-adv-x="512" d=" M362.6666666666667 80V149.3333333333334H213.3333333333333V234.6666666666667H362.6666666666667V304L474.6666666666666 192L362.6666666666667 80M277.3333333333333 405.3333333333333C300.8 405.3333333333333 320 386.1333333333334 320 362.6666666666667V277.3333333333334H277.3333333333333V362.6666666666667H85.3333333333333V21.3333333333334H277.3333333333333V106.6666666666667H320V21.3333333333334C320 -2.1333333333333 300.8 -21.3333333333333 277.3333333333333 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H277.3333333333333z" />
+    <glyph glyph-name="logout-variant"
+      unicode="&#xF5FD;"
+      horiz-adv-x="512" d=" M300.3733333333334 115.4133333333334L355.6266666666667 170.6666666666667H149.3333333333333V213.3333333333334H355.6266666666667L300.3733333333334 268.5866666666667L330.6666666666667 298.6666666666667L437.3333333333333 192L330.6666666666667 85.3333333333334L300.3733333333334 115.4133333333334M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V241.7066666666667L405.3333333333333 284.3733333333334V341.3333333333334H106.6666666666667V42.6666666666667H405.3333333333333V99.6266666666667L448 142.2933333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384H405.3333333333333z" />
+    <glyph glyph-name="looks"
+      unicode="&#xF344;"
+      horiz-adv-x="512" d=" M256 320C126.2933333333333 320 21.3333333333333 215.04 21.3333333333333 85.3333333333334H64C64 191.1466666666667 150.1866666666667 277.3333333333334 256 277.3333333333334S448 191.1466666666667 448 85.3333333333334H490.6666666666666C490.6666666666666 215.04 385.7066666666666 320 256 320M256 234.6666666666667C173.6533333333333 234.6666666666667 106.6666666666667 167.68 106.6666666666667 85.3333333333334H149.3333333333333C149.3333333333333 144.2133333333334 197.12 192 256 192S362.6666666666667 144.2133333333334 362.6666666666667 85.3333333333334H405.3333333333333C405.3333333333333 167.68 338.3466666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="loop"
+      unicode="&#xF6EA;"
+      horiz-adv-x="512" d=" M192 149.3333333333334V0H42.6666666666667V42.6666666666667H118.8266666666667C85.3333333333333 78.9333333333333 64 128 64 181.3333333333334C64 293.3333333333334 154.6666666666667 384 266.6666666666667 384S469.3333333333333 293.3333333333334 469.3333333333333 181.3333333333334S378.6666666666667 -21.3333333333333 266.6666666666667 -21.3333333333333H256V21.3333333333334H266.6666666666667C354.9866666666667 21.3333333333334 426.6666666666667 93.0133333333333 426.6666666666667 181.3333333333334C426.6666666666667 269.6533333333334 354.9866666666667 341.3333333333334 266.6666666666667 341.3333333333334C178.3466666666666 341.3333333333334 106.6666666666667 269.6533333333334 106.6666666666667 181.3333333333334C106.6666666666667 139.3066666666667 122.88 101.1200000000001 149.3333333333333 72.5333333333333V149.3333333333334H192z" />
+    <glyph glyph-name="loupe"
+      unicode="&#xF345;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C161.92 21.3333333333334 85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667S426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333H426.6666666666667C450.1333333333334 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V192C469.3333333333333 309.76 373.76 405.3333333333333 256 405.3333333333333M277.3333333333333 298.6666666666667H234.6666666666667V213.3333333333334H149.3333333333333V170.6666666666667H234.6666666666667V85.3333333333334H277.3333333333333V170.6666666666667H362.6666666666667V213.3333333333334H277.3333333333333V298.6666666666667z" />
+    <glyph glyph-name="lumx"
+      unicode="&#xF346;"
+      horiz-adv-x="512" d=" M263.4666666666667 410.6666666666667L429.44 244.6933333333334L293.76 109.0133333333333L263.4666666666667 139.3066666666667L369.0666666666667 244.6933333333334L233.3866666666667 380.5866666666667L263.4666666666667 410.6666666666667M338.9866666666667 244.6933333333334L308.6933333333334 214.6133333333333L218.24 305.0666666666667L112.64 199.4666666666667L82.56 229.76L218.24 365.44L338.9866666666667 244.6933333333334M218.24 274.9866666666667L248.5333333333334 244.6933333333334L142.9333333333333 139.3066666666666L278.6133333333334 3.4133333333333L248.5333333333334 -26.6666666666667L82.56 139.3066666666666L218.24 274.9866666666666M173.0133333333333 139.3066666666666L203.3066666666667 169.3866666666667L293.76 78.9333333333333L399.36 184.5333333333333L429.44 154.2399999999999L293.76 18.5599999999999L173.0133333333333 139.3066666666666z" />
+    <glyph glyph-name="lyft"
+      unicode="&#xFB1D;"
+      horiz-adv-x="512" d=" M203.9466666666667 181.3333333333334C203.9466666666667 179.2000000000001 202.6666666666667 176.64 200.5333333333333 175.1466666666667C196.2666666666667 171.3066666666667 189.6533333333333 171.9466666666667 185.8133333333333 176.2133333333334C184.1066666666667 178.1333333333334 183.2533333333334 180.6933333333334 183.2533333333334 183.2533333333334V266.6666666666667H120.7466666666667V162.3466666666667C120.7466666666667 133.5466666666667 144 110.2933333333334 172.8 110.2933333333334C185.1733333333333 110.2933333333334 197.12 114.7733333333334 206.5066666666667 122.88C205.6533333333333 115.2000000000001 201.1733333333333 108.16 194.3466666666666 104.3200000000001C186.6666666666667 100.0533333333334 178.1333333333333 97.7066666666667 169.3866666666667 97.92C159.1466666666667 97.92 149.3333333333333 100.2666666666667 139.9466666666667 104.7466666666667L136.32 106.6666666666667V51.2C150.1866666666667 45.6533333333333 165.12 42.6666666666667 180.0533333333333 42.6666666666667C202.0266666666667 42.6666666666667 223.1466666666667 49.92 240 64C257.7066666666667 80 267.52 102.8266666666667 266.6666666666667 126.72V266.6666666666667H203.9466666666667V181.3333333333334M105.1733333333334 162.3466666666667V328.7466666666667H42.6666666666667V172.8C39.2533333333333 141.8666666666667 61.44 114.1333333333333 92.3733333333333 110.72C94.08 110.5066666666667 96 110.2933333333334 97.28 110.2933333333334C105.1733333333334 110.2933333333334 112.8533333333334 112.2133333333334 120.1066666666667 115.4133333333334L122.6666666666667 117.3333333333334L120.5333333333334 119.2533333333333C110.2933333333334 131.2000000000001 104.7466666666667 146.56 105.1733333333334 162.3466666666667M469.3333333333333 205.0133333333333V266.6666666666667H448C439.2533333333334 311.8933333333333 395.3066666666667 341.3333333333334 350.08 332.5866666666667C344.9600000000001 331.7333333333334 340.0533333333333 330.6666666666667 335.1466666666667 328.32C304.64 314.88 284.3733333333334 285.44 282.88 252.1600000000001V110.2933333333334H285.6533333333334C318.9333333333334 111.7866666666667 345.3866666666667 139.3066666666667 345.3866666666667 172.8H371.4133333333333V234.6666666666667H344.5333333333333V252.3733333333334C344.5333333333333 258.9866666666667 348.16 265.1733333333334 353.92 268.5866666666667C363.9466666666666 274.56 377.1733333333333 271.36 383.1466666666667 261.12C385.0666666666667 257.92 385.92 254.5066666666667 386.1333333333334 250.88V193.4933333333334C385.4933333333334 148.2666666666667 421.3333333333333 111.1466666666667 466.56 110.2933333333334H469.3333333333333V172.8C457.6 172.8 448 182.4 448 194.1333333333333V204.5866666666667L469.3333333333333 205.0133333333333z" />
+    <glyph glyph-name="magnet"
+      unicode="&#xF347;"
+      horiz-adv-x="512" d=" M64 298.6666666666667V170.6666666666667C64 64.64 149.9733333333333 -21.3333333333333 256 -21.3333333333333S448 64.64 448 170.6666666666667V298.6666666666667H362.6666666666667V170.6666666666667C362.6666666666667 111.7866666666667 314.88 64 256 64S149.3333333333333 111.7866666666667 149.3333333333333 170.6666666666667V298.6666666666667M362.6666666666667 341.3333333333334H448V405.3333333333333H362.6666666666667M64 341.3333333333334H149.3333333333333V405.3333333333333H64" />
+    <glyph glyph-name="magnet-on"
+      unicode="&#xF348;"
+      horiz-adv-x="512" d=" M64 298.6666666666667V170.6666666666667C64 64.64 149.9733333333333 -21.3333333333333 256 -21.3333333333333S448 64.64 448 170.6666666666667V298.6666666666667H362.6666666666667V170.6666666666667C362.6666666666667 111.7866666666667 314.88 64 256 64S149.3333333333333 111.7866666666667 149.3333333333333 170.6666666666667V298.6666666666667M362.6666666666667 341.3333333333334H448V405.3333333333333H362.6666666666667M64 341.3333333333334H149.3333333333333V405.3333333333333H64M277.3333333333333 416L192 256H234.6666666666667V138.6666666666667L320 298.6666666666667H277.3333333333333V416z" />
+    <glyph glyph-name="magnify"
+      unicode="&#xF349;"
+      horiz-adv-x="512" d=" M202.6666666666667 384C279.2533333333334 384 341.3333333333333 321.92 341.3333333333333 245.3333333333334C341.3333333333333 210.9866666666667 328.7466666666667 179.4133333333334 308.0533333333333 155.0933333333334L313.8133333333333 149.3333333333334H330.6666666666667L437.3333333333333 42.6666666666667L405.3333333333333 10.6666666666667L298.6666666666667 117.3333333333334V134.1866666666667L292.9066666666667 139.9466666666667C268.5866666666667 119.2533333333333 237.0133333333333 106.6666666666667 202.6666666666667 106.6666666666667C126.08 106.6666666666667 64 168.7466666666667 64 245.3333333333334S126.08 384 202.6666666666667 384M202.6666666666667 341.3333333333334C149.3333333333333 341.3333333333334 106.6666666666667 298.6666666666667 106.6666666666667 245.3333333333334S149.3333333333333 149.3333333333334 202.6666666666667 149.3333333333334S298.6666666666667 192 298.6666666666667 245.3333333333334S256 341.3333333333334 202.6666666666667 341.3333333333334z" />
+    <glyph glyph-name="magnify-close"
+      unicode="&#xF97F;"
+      horiz-adv-x="512" d=" M192 405.3333333333333C274.56 405.3333333333333 341.3333333333333 338.56 341.3333333333333 256C341.3333333333333 224 330.6666666666667 192 311.68 166.6133333333334L328.7466666666667 149.3333333333333H341.3333333333333L469.3333333333333 21.3333333333334L426.6666666666667 -21.3333333333333L298.6666666666667 106.6666666666667V119.2533333333333L281.3866666666667 136.3200000000001C256 117.3333333333334 224 106.6666666666667 192 106.6666666666667C109.44 106.6666666666667 42.6666666666667 173.44 42.6666666666667 256S109.44 405.3333333333333 192 405.3333333333333M237.2266666666667 331.52L192 286.0800000000001L146.7733333333333 331.52L116.48 301.2266666666667L161.92 256L116.48 210.7733333333333L146.7733333333333 180.48L192 225.92L237.2266666666667 180.48L267.52 210.7733333333334L222.08 256L267.52 301.2266666666667L237.2266666666667 331.52z" />
+    <glyph glyph-name="magnify-minus"
+      unicode="&#xF34A;"
+      horiz-adv-x="512" d=" M192 405.3333333333333C274.56 405.3333333333333 341.3333333333333 338.56 341.3333333333333 256C341.3333333333333 222.5066666666667 330.6666666666667 192 311.68 166.6133333333334L328.7466666666667 149.3333333333333H341.3333333333333L469.3333333333333 21.3333333333334L426.6666666666667 -21.3333333333333L298.6666666666667 106.6666666666667V119.2533333333333L281.3866666666667 136.3200000000001C256 117.3333333333334 225.4933333333334 106.6666666666667 192 106.6666666666667C109.44 106.6666666666667 42.6666666666667 173.44 42.6666666666667 256S109.44 405.3333333333333 192 405.3333333333333M106.6666666666667 277.3333333333334V234.6666666666667H277.3333333333333V277.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="magnify-minus-cursor"
+      unicode="&#xFA61;"
+      horiz-adv-x="512" d=" M234.6666666666667 362.6666666666667C317.2266666666667 362.6666666666667 384 295.8933333333333 384 213.3333333333334C384 181.3333333333334 373.3333333333333 149.3333333333334 354.3466666666667 123.9466666666667L371.6266666666666 106.6666666666667H384L490.6666666666666 0L448 -42.6666666666666L341.3333333333333 64V76.5866666666667L324.0533333333333 93.8666666666667C258.1333333333334 44.3733333333333 164.48 57.8133333333333 114.9866666666666 123.7333333333334C65.4933333333333 189.6533333333333 78.9333333333333 283.3066666666667 144.8533333333333 332.8C170.6666666666667 352 202.6666666666667 362.6666666666667 234.6666666666667 362.6666666666667M149.3333333333333 234.6666666666667V192H320V234.6666666666667H149.3333333333333M21.3333333333333 426.6666666666667V277.3333333333334L170.6666666666667 426.6666666666667H21.3333333333333z" />
+    <glyph glyph-name="magnify-minus-outline"
+      unicode="&#xF6EB;"
+      horiz-adv-x="512" d=" M330.6666666666667 149.3333333333334H313.8133333333334L307.8400000000001 155.0933333333334C328.7466666666667 179.4133333333334 341.3333333333333 210.9866666666667 341.3333333333333 245.3333333333334C341.3333333333333 321.92 279.2533333333334 384 202.6666666666667 384S64 321.92 64 245.3333333333334S126.08 106.6666666666667 202.6666666666667 106.6666666666667C237.0133333333333 106.6666666666667 268.5866666666667 119.2533333333333 292.9066666666667 140.16L298.6666666666667 134.1866666666667V117.3333333333334L405.3333333333333 10.6666666666667L437.3333333333333 42.6666666666667L330.6666666666667 149.3333333333334M202.6666666666667 149.3333333333334C149.3333333333333 149.3333333333334 106.6666666666667 192 106.6666666666667 245.3333333333334S149.3333333333333 341.3333333333334 202.6666666666667 341.3333333333334S298.6666666666667 298.6666666666667 298.6666666666667 245.3333333333334S256 149.3333333333334 202.6666666666667 149.3333333333334M149.3333333333333 256H256V234.6666666666667H149.3333333333333V256z" />
+    <glyph glyph-name="magnify-plus"
+      unicode="&#xF34B;"
+      horiz-adv-x="512" d=" M192 405.3333333333333C274.56 405.3333333333333 341.3333333333333 338.56 341.3333333333333 256C341.3333333333333 222.5066666666667 330.6666666666667 192 311.68 166.6133333333334L328.7466666666667 149.3333333333333H341.3333333333333L469.3333333333333 21.3333333333334L426.6666666666667 -21.3333333333333L298.6666666666667 106.6666666666667V119.2533333333333L281.3866666666667 136.3200000000001C256 117.3333333333334 225.4933333333334 106.6666666666667 192 106.6666666666667C109.44 106.6666666666667 42.6666666666667 173.44 42.6666666666667 256S109.44 405.3333333333333 192 405.3333333333333M170.6666666666667 341.3333333333334V277.3333333333334H106.6666666666667V234.6666666666667H170.6666666666667V170.6666666666667H213.3333333333333V234.6666666666667H277.3333333333333V277.3333333333334H213.3333333333333V341.3333333333334H170.6666666666667z" />
+    <glyph glyph-name="magnify-plus-cursor"
+      unicode="&#xFA62;"
+      horiz-adv-x="512" d=" M234.6666666666667 362.6666666666667C317.2266666666667 362.6666666666667 384 295.8933333333333 384 213.3333333333334C384 181.3333333333334 373.3333333333333 149.3333333333334 354.3466666666667 123.9466666666667L371.6266666666666 106.6666666666667H384L490.6666666666666 0L448 -42.6666666666666L341.3333333333333 64V76.5866666666667L324.0533333333333 93.8666666666667C258.1333333333334 44.3733333333333 164.48 57.8133333333333 114.9866666666666 123.7333333333334C65.4933333333333 189.6533333333333 78.9333333333333 283.3066666666667 144.8533333333333 332.8C170.6666666666667 352 202.6666666666667 362.6666666666667 234.6666666666667 362.6666666666667M213.3333333333333 298.6666666666667V234.6666666666667H149.3333333333333V192H213.3333333333333V128H256V192H320V234.6666666666667H256V298.6666666666667H213.3333333333333M21.3333333333333 426.6666666666667V277.3333333333334L170.6666666666667 426.6666666666667H21.3333333333333z" />
+    <glyph glyph-name="magnify-plus-outline"
+      unicode="&#xF6EC;"
+      horiz-adv-x="512" d=" M330.6666666666667 149.3333333333334L437.3333333333333 42.6666666666667L405.3333333333333 10.6666666666667L298.6666666666667 117.3333333333334V134.1866666666667L292.9066666666667 140.16C268.5866666666667 119.2533333333333 237.0133333333333 106.6666666666667 202.6666666666667 106.6666666666667C126.08 106.6666666666667 64 168.7466666666667 64 245.3333333333334S126.08 384 202.6666666666667 384S341.3333333333333 321.92 341.3333333333333 245.3333333333334C341.3333333333333 210.9866666666667 328.7466666666667 179.4133333333334 307.84 155.0933333333334L313.8133333333333 149.3333333333334H330.6666666666667M202.6666666666667 149.3333333333334C256 149.3333333333334 298.6666666666667 192 298.6666666666667 245.3333333333334S256 341.3333333333334 202.6666666666667 341.3333333333334S106.6666666666667 298.6666666666667 106.6666666666667 245.3333333333334S149.3333333333333 149.3333333333334 202.6666666666667 149.3333333333334M256 234.6666666666667H213.3333333333333V192H192V234.6666666666667H149.3333333333333V256H192V298.6666666666667H213.3333333333333V256H256V234.6666666666667z" />
+    <glyph glyph-name="mail-ru"
+      unicode="&#xF34C;"
+      horiz-adv-x="512" d=" M329.6 193.92C327.2533333333334 241.0666666666667 292.2666666666667 269.44 250.0266666666667 269.44H248.32C199.4666666666666 269.44 172.5866666666667 231.04 172.5866666666667 187.52C172.5866666666667 138.6666666666667 205.2266666666666 107.7333333333334 248.1066666666667 107.7333333333334C296.1066666666667 107.7333333333334 327.4666666666667 142.9333333333333 329.8133333333333 184.32M248.5333333333333 311.68C281.1733333333333 311.68 311.8933333333333 297.1733333333333 334.2933333333333 274.56C334.2933333333333 285.44 341.3333333333333 293.5466666666666 351.9999999999999 293.5466666666666H354.3466666666666C370.1333333333332 293.5466666666666 373.3333333333333 278.6133333333334 373.3333333333333 273.92V105.3866666666667C372.4799999999999 94.2933333333333 384.8533333333333 88.7466666666666 391.8933333333333 95.9999999999999C418.9866666666666 123.5199999999999 451.1999999999999 238.72 375.04 305.28C304 367.5733333333333 208.6399999999999 357.3333333333333 157.8666666666666 322.3466666666666C104.1066666666666 285.2266666666666 69.5466666666666 202.6666666666666 103.04 125.6533333333333C139.52 41.3866666666667 244.0533333333333 16.2133333333333 306.1333333333333 41.3866666666667C337.7066666666666 53.9733333333333 351.9999999999999 11.52 320 -2.3466666666667C270.08 -23.4666666666667 132.9066666666667 -21.3333333333334 68.6933333333333 89.8133333333333C25.3866666666666 164.9066666666667 27.52 296.96 142.5066666666666 365.44C230.6133333333334 417.7066666666667 346.4533333333333 403.2 416 330.6666666666667C489.6 253.8666666666667 485.3333333333333 110.9333333333333 413.8666666666666 55.2533333333333C381.6533333333333 30.08 333.6533333333333 54.6133333333333 334.08 91.52L333.6533333333333 103.4666666666666C311.2533333333333 81.0666666666666 281.1733333333333 68.0533333333333 248.5333333333333 68.0533333333333C184.1066666666666 68.0533333333333 128 124.8 128 189.2266666666666C128 254.2933333333333 184.1066666666666 311.68 248.5333333333333 311.68z" />
+    <glyph glyph-name="mailbox"
+      unicode="&#xF6ED;"
+      horiz-adv-x="512" d=" M426.6666666666667 320H213.3333333333333V192H170.6666666666667V362.6666666666667H298.6666666666667V448H128V320H85.3333333333333C61.8666666666667 320 42.6666666666667 300.8 42.6666666666667 277.3333333333334V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H426.6666666666667C450.1333333333334 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V277.3333333333334C469.3333333333333 300.8 450.1333333333334 320 426.6666666666667 320z" />
+    <glyph glyph-name="map"
+      unicode="&#xF34D;"
+      horiz-adv-x="512" d=" M320 42.6666666666667L192 87.68V341.3333333333334L320 296.3200000000001M437.3333333333333 384H433.92L320 339.2000000000001L192 384L71.68 343.4666666666667C67.2 341.9733333333334 64 338.1333333333334 64 333.2266666666667V10.6666666666667C64 4.6933333333333 68.6933333333333 0 74.6666666666667 0C75.7333333333333 0 77.0133333333333 0 78.08 0.64L192 44.8000000000001L320 0L440.32 40.5333333333333C444.8 42.6666666666667 448 45.8666666666667 448 50.7733333333333V373.3333333333334C448 379.3066666666667 443.3066666666667 384 437.3333333333333 384z" />
+    <glyph glyph-name="map-legend"
+      unicode="&#xFA00;"
+      horiz-adv-x="512" d=" M192 384L71.68 343.4666666666667C67.2 341.9733333333334 64 338.1333333333334 64 333.2266666666667V10.6666666666667C64 4.6933333333333 68.6933333333333 0 74.6666666666667 0L78.08 0.64L192 44.8000000000001L320 0L440.32 40.5333333333333C444.8 42.0266666666666 448 45.8666666666667 448 50.7733333333333V373.3333333333334C448 379.3066666666667 443.3066666666667 384 437.3333333333333 384L433.92 383.36L320 339.2000000000001L192 384M170.6666666666667 331.7333333333334V82.1333333333334L106.6666666666667 57.3866666666667V310.1866666666667L170.6666666666667 331.7333333333334M213.3333333333333 331.3066666666667L298.6666666666667 301.4400000000001V52.6933333333333L213.3333333333333 82.56V331.3066666666667M405.3333333333333 326.4V73.8133333333334L341.3333333333333 52.2666666666667V301.6533333333333L405.3333333333333 326.4M159.1466666666667 313.6L118.8266666666667 299.3066666666667V253.4400000000001L159.1466666666667 267.7333333333334V313.6M159.1466666666667 254.9333333333334L118.8266666666667 240.64V194.7733333333333L159.1466666666667 209.0666666666667V254.9333333333334M159.1466666666667 196.2666666666667L118.8266666666667 181.9733333333334V136.1066666666667L159.1466666666667 150.4V196.2666666666667M159.1466666666667 137.6L118.8266666666667 123.3066666666667V77.44L159.1466666666667 91.7333333333334V137.6z" />
+    <glyph glyph-name="map-marker"
+      unicode="&#xF34E;"
+      horiz-adv-x="512" d=" M256 202.6666666666667C226.56 202.6666666666667 202.6666666666667 226.5600000000001 202.6666666666667 256S226.56 309.3333333333334 256 309.3333333333334S309.3333333333333 285.44 309.3333333333333 256S285.44 202.6666666666667 256 202.6666666666667M256 405.3333333333333C173.44 405.3333333333333 106.6666666666667 338.56 106.6666666666667 256C106.6666666666667 144 256 -21.3333333333333 256 -21.3333333333333S405.3333333333333 144 405.3333333333333 256C405.3333333333333 338.56 338.56 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="map-marker-circle"
+      unicode="&#xF34F;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 181.3333333333334C238.2933333333333 181.3333333333334 224 195.6266666666667 224 213.3333333333334S238.2933333333333 245.3333333333334 256 245.3333333333334S288 231.04 288 213.3333333333334S273.7066666666667 181.3333333333334 256 181.3333333333334M256 294.4C211.2 294.4 174.9333333333333 258.1333333333334 174.9333333333333 213.3333333333334C174.9333333333333 149.3333333333334 256 74.6666666666667 256 74.6666666666667S337.0666666666667 149.3333333333334 337.0666666666667 213.3333333333334C337.0666666666667 258.1333333333334 300.8 294.4 256 294.4z" />
+    <glyph glyph-name="map-marker-distance"
+      unicode="&#xF8EF;"
+      horiz-adv-x="512" d=" M138.6666666666667 274.9866666666667C119.68 274.9866666666667 104.32 290.3466666666667 104.32 309.3333333333334C104.32 328.3200000000001 119.68 343.6800000000001 138.6666666666667 343.6800000000001C157.6533333333333 343.6800000000001 173.0133333333333 328.3200000000001 173.0133333333333 309.3333333333334C173.0133333333333 290.3466666666667 157.6533333333333 274.9866666666667 138.6666666666666 274.9866666666667M138.6666666666667 405.3333333333333C85.3333333333333 405.3333333333333 42.6666666666667 362.6666666666667 42.6666666666667 309.3333333333334C42.6666666666667 237.44 138.6666666666667 130.9866666666667 138.6666666666667 130.9866666666667S234.6666666666667 237.4400000000001 234.6666666666667 309.3333333333334C234.6666666666667 362.6666666666667 192 405.3333333333333 138.6666666666667 405.3333333333333M373.3333333333333 274.9866666666667C354.3466666666667 274.9866666666667 338.9866666666667 290.3466666666667 338.9866666666667 309.3333333333334C338.9866666666667 328.3200000000001 354.3466666666667 343.6800000000001 373.3333333333333 343.6800000000001C392.32 343.6800000000001 407.68 328.3200000000001 407.68 309.3333333333334C407.68 290.3466666666667 392.32 274.9866666666667 373.3333333333333 274.9866666666667M373.3333333333333 405.3333333333334C320 405.3333333333333 277.3333333333333 362.6666666666667 277.3333333333333 309.3333333333334C277.3333333333333 237.44 373.3333333333333 130.9866666666667 373.3333333333333 130.9866666666667S469.3333333333333 237.4400000000001 469.3333333333333 309.3333333333334C469.3333333333333 362.6666666666667 426.6666666666667 405.3333333333333 373.3333333333333 405.3333333333333M373.3333333333333 106.6666666666667C346.24 106.6666666666667 322.1333333333334 89.6 313.1733333333333 64H198.8266666666667C187.0933333333333 97.28 150.4 114.7733333333333 117.3333333333333 103.04C83.84 91.3066666666666 66.3466666666667 54.6133333333333 78.08 21.3333333333334C90.0266666666667 -11.9466666666666 126.5066666666667 -29.4399999999999 160 -17.7066666666666C178.1333333333333 -11.3066666666666 192 3.2 198.8266666666667 21.3333333333334H313.3866666666667C325.12 -11.9466666666666 361.8133333333334 -29.4399999999999 394.6666666666667 -17.7066666666666C428.3733333333333 -5.9733333333332 445.8666666666666 30.72 434.1333333333334 64C424.9600000000001 89.6 400.64 106.6666666666667 373.3333333333333 106.6666666666667M373.3333333333333 10.6666666666667C355.6266666666667 10.6666666666667 341.3333333333333 24.96 341.3333333333333 42.6666666666667S355.6266666666667 74.6666666666667 373.3333333333333 74.6666666666667S405.3333333333333 60.3733333333333 405.3333333333333 42.6666666666667S391.04 10.6666666666667 373.3333333333333 10.6666666666667z" />
+    <glyph glyph-name="map-marker-minus"
+      unicode="&#xF650;"
+      horiz-adv-x="512" d=" M192 202.6666666666667C221.44 202.6666666666667 245.3333333333333 226.5600000000001 245.3333333333333 256S221.44 309.3333333333334 192 309.3333333333334S138.6666666666667 285.44 138.6666666666667 256S162.56 202.6666666666667 192 202.6666666666667M192 405.3333333333333C274.3466666666667 405.3333333333333 341.3333333333333 338.56 341.3333333333333 256C341.3333333333333 144 192 -21.3333333333333 192 -21.3333333333333S42.6666666666667 144 42.6666666666667 256C42.6666666666667 338.56 109.44 405.3333333333333 192 405.3333333333333M320 85.3333333333334H490.6666666666666V42.6666666666667H320V85.3333333333334z" />
+    <glyph glyph-name="map-marker-multiple"
+      unicode="&#xF350;"
+      horiz-adv-x="512" d=" M298.6666666666667 202.6666666666667C328.1066666666667 202.6666666666667 352 226.5600000000001 352 256S328.1066666666667 309.3333333333334 298.6666666666667 309.3333333333334S245.3333333333333 285.44 245.3333333333333 256S269.2266666666667 202.6666666666667 298.6666666666667 202.6666666666667M298.6666666666667 405.3333333333333C381.0133333333333 405.3333333333333 448 338.56 448 256C448 144 298.6666666666667 -21.3333333333333 298.6666666666667 -21.3333333333333S149.3333333333333 144 149.3333333333333 256C149.3333333333333 338.56 216.1066666666666 405.3333333333333 298.6666666666667 405.3333333333333M106.6666666666667 256C106.6666666666667 160 215.04 28.5866666666667 234.6666666666667 4.0533333333333L213.3333333333333 -21.3333333333333S64 144 64 256C64 323.6266666666667 109.0133333333333 380.8 170.6666666666667 399.1466666666667C131.4133333333333 363.9466666666667 106.6666666666667 312.9600000000001 106.6666666666667 256z" />
+    <glyph glyph-name="map-marker-off"
+      unicode="&#xF351;"
+      horiz-adv-x="512" d=" M349.2266666666667 104.5333333333333L250.6666666666667 203.3066666666666L248.32 205.6533333333333L69.76 384L42.6666666666667 356.9066666666667L110.5066666666667 289.0666666666667C107.9466666666667 278.4 106.6666666666667 267.52 106.6666666666667 256C106.6666666666667 144 256 -21.3333333333333 256 -21.3333333333333S291.6266666666667 18.1333333333334 327.8933333333333 71.4666666666667L399.5733333333333 0L426.6666666666667 27.3066666666667M256 309.3333333333334C285.44 309.3333333333334 309.3333333333333 285.44 309.3333333333333 256C309.3333333333333 240.4266666666667 302.2933333333333 226.3466666666667 291.6266666666667 216.5333333333334L369.0666666666667 138.6666666666667C389.9733333333334 178.7733333333333 405.3333333333333 220.16 405.3333333333333 256C405.3333333333333 338.56 338.56 405.3333333333333 256 405.3333333333333C213.3333333333333 405.3333333333333 175.7866666666667 387.8400000000001 148.48 359.68L216.5333333333333 291.6266666666667C226.3466666666667 302.5066666666667 240.2133333333333 309.3333333333334 256 309.3333333333334z" />
+    <glyph glyph-name="map-marker-outline"
+      unicode="&#xF7D8;"
+      horiz-adv-x="512" d=" M256 309.3333333333334C285.44 309.3333333333334 309.3333333333333 285.44 309.3333333333333 256S285.44 202.6666666666667 256 202.6666666666667S202.6666666666667 226.56 202.6666666666667 256S226.56 309.3333333333334 256 309.3333333333334M256 405.3333333333333C338.56 405.3333333333333 405.3333333333333 338.56 405.3333333333333 256C405.3333333333333 144 256 -21.3333333333333 256 -21.3333333333333S106.6666666666667 144 106.6666666666667 256C106.6666666666667 338.56 173.44 405.3333333333333 256 405.3333333333333M256 362.6666666666667C197.12 362.6666666666667 149.3333333333333 314.88 149.3333333333333 256C149.3333333333333 234.6666666666667 149.3333333333333 192 256 48.8533333333334C362.6666666666667 192 362.6666666666667 234.6666666666667 362.6666666666667 256C362.6666666666667 314.88 314.88 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="map-marker-plus"
+      unicode="&#xF651;"
+      horiz-adv-x="512" d=" M192 202.6666666666667C221.44 202.6666666666667 245.3333333333333 226.5600000000001 245.3333333333333 256S221.44 309.3333333333334 192 309.3333333333334S138.6666666666667 285.44 138.6666666666667 256S162.56 202.6666666666667 192 202.6666666666667M192 405.3333333333333C274.3466666666667 405.3333333333333 341.3333333333333 338.56 341.3333333333333 256C341.3333333333333 144 192 -21.3333333333333 192 -21.3333333333333S42.6666666666667 144 42.6666666666667 256C42.6666666666667 338.56 109.44 405.3333333333333 192 405.3333333333333M320 85.3333333333334H384V149.3333333333334H426.6666666666667V85.3333333333334H490.6666666666666V42.6666666666667H426.6666666666667V-21.3333333333333H384V42.6666666666667H320V85.3333333333334z" />
+    <glyph glyph-name="map-marker-radius"
+      unicode="&#xF352;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C326.6133333333334 405.3333333333333 384 348.5866666666667 384 278.4C384 183.2533333333333 256 42.6666666666667 256 42.6666666666667S128 183.2533333333333 128 278.4C128 348.5866666666667 185.3866666666667 405.3333333333333 256 405.3333333333333M256 320C232.5333333333334 320 213.3333333333333 300.8 213.3333333333333 277.3333333333334S232.5333333333334 234.6666666666667 256 234.6666666666667S298.6666666666667 253.8666666666667 298.6666666666667 277.3333333333334S279.4666666666667 320 256 320M426.6666666666667 42.6666666666667C426.6666666666667 -4.48 350.2933333333334 -42.6666666666666 256 -42.6666666666666S85.3333333333333 -4.48 85.3333333333333 42.6666666666667C85.3333333333333 70.1866666666667 111.36 94.72 151.68 110.2933333333334L165.3333333333333 90.8800000000001C142.2933333333333 81.28 128 68.0533333333334 128 53.3333333333334C128 23.8933333333334 185.3866666666667 0 256 0S384 23.8933333333334 384 53.3333333333334C384 68.0533333333334 369.7066666666666 81.28 346.6666666666667 90.8800000000001L360.32 110.2933333333334C400.64 94.72 426.6666666666667 70.1866666666667 426.6666666666667 42.6666666666667z" />
+    <glyph glyph-name="map-minus"
+      unicode="&#xF980;"
+      horiz-adv-x="512" d=" M192 384L71.68 343.4666666666667C67.4133333333333 341.9733333333334 64 338.1333333333334 64 333.2266666666667V10.6666666666667C64 4.6933333333333 68.6933333333333 0 74.6666666666667 0C75.7333333333333 0 76.8 0 78.08 0.64L192 44.8000000000001L277.3333333333333 14.9333333333334V57.6000000000001L192 87.4666666666667V341.3333333333334L320 296.5333333333334V106.6666666666667H448V373.3333333333334C448 379.3066666666667 443.3066666666667 384 437.3333333333333 384H433.92L320 339.2000000000001L192 384M320 64V21.3333333333334H490.6666666666666V64H320z" />
+    <glyph glyph-name="map-outline"
+      unicode="&#xF981;"
+      horiz-adv-x="512" d=" M437.3333333333333 384L433.92 383.36L320 339.2000000000001L192 384L71.68 343.4666666666667C67.2 341.9733333333334 64 338.1333333333334 64 333.2266666666667V10.6666666666667C64 4.6933333333333 68.6933333333333 0 74.6666666666667 0L78.08 0.64L192 44.8000000000001L320 0L440.32 40.5333333333333C444.8 42.0266666666666 448 45.8666666666667 448 50.7733333333333V373.3333333333334C448 379.3066666666667 443.3066666666667 384 437.3333333333333 384M213.3333333333333 331.3066666666667L298.6666666666667 301.4400000000001V52.6933333333333L213.3333333333333 82.56V331.3066666666667M106.6666666666667 310.1866666666667L170.6666666666667 331.7333333333334V82.1333333333334L106.6666666666667 57.3866666666667V310.1866666666667M405.3333333333333 73.8133333333334L341.3333333333333 52.2666666666667V301.6533333333333L405.3333333333333 326.4V73.8133333333334z" />
+    <glyph glyph-name="map-plus"
+      unicode="&#xF982;"
+      horiz-adv-x="512" d=" M192 384L71.68 343.4666666666667C67.4133333333333 341.9733333333334 64 338.1333333333334 64 333.2266666666667V10.6666666666667C64 4.6933333333333 68.6933333333333 0 74.6666666666667 0C75.7333333333333 0 76.8 0 78.08 0.64L192 44.8000000000001L280.7466666666667 13.6533333333334C278.6133333333334 23.0400000000001 277.3333333333333 32.8533333333334 277.3333333333333 42.6666666666667C277.3333333333333 47.5733333333334 277.3333333333333 52.48 278.1866666666666 57.6L192 87.4666666666667V341.3333333333334L320 296.5333333333334V137.3866666666667C342.8266666666667 157.8666666666667 372.6933333333333 170.6666666666668 405.3333333333333 170.6666666666668C420.2666666666667 170.6666666666668 434.56 167.8933333333334 448 162.9866666666667V373.3333333333334C448 379.3066666666667 443.3066666666667 384 437.3333333333333 384H433.92L320 339.2000000000001L192 384M384 128V64H320V21.3333333333334H384V-42.6666666666666H426.6666666666667V21.3333333333334H490.6666666666666V64H426.6666666666667V128H384z" />
+    <glyph glyph-name="map-search"
+      unicode="&#xF983;"
+      horiz-adv-x="512" d=" M330.6666666666667 192C384 192 426.6666666666667 149.3333333333334 426.6666666666667 96C426.6666666666667 77.2266666666667 421.3333333333333 59.52 411.9466666666666 44.8000000000001L477.6533333333333 -21.3333333333333L448 -50.9866666666667L381.44 14.5066666666667C366.7199999999999 5.3333333333334 349.2266666666666 0 330.6666666666667 0C277.3333333333333 0 234.6666666666667 42.6666666666667 234.6666666666667 96S277.3333333333333 192 330.6666666666667 192M330.6666666666667 149.3333333333334C301.2266666666667 149.3333333333334 277.3333333333333 125.44 277.3333333333333 96S301.2266666666667 42.6666666666667 330.6666666666667 42.6666666666667S384 66.5600000000001 384 96S360.1066666666667 149.3333333333334 330.6666666666667 149.3333333333334M298.6666666666667 317.6533333333333L170.6666666666667 362.6666666666667V109.0133333333333L192 101.5466666666666V95.9999999999999C192 82.3466666666666 193.92 69.1199999999999 197.5466666666667 56.7466666666666L170.6666666666667 66.1333333333334L56.7466666666667 21.9733333333334L53.3333333333333 21.3333333333334C47.36 21.3333333333334 42.6666666666667 26.0266666666666 42.6666666666667 32V354.56C42.6666666666667 359.4666666666667 45.8666666666667 363.3066666666667 50.3466666666667 364.8L170.6666666666667 405.3333333333333L298.6666666666667 360.5333333333334L412.5866666666667 405.3333333333333H416C421.9733333333334 405.3333333333333 426.6666666666667 400.64 426.6666666666667 394.6666666666667V196.0533333333334C401.7066666666666 219.9466666666667 368 234.6666666666667 330.6666666666667 234.6666666666667C320 234.6666666666667 309.3333333333333 233.3866666666667 298.6666666666667 231.04V317.6533333333333z" />
+    <glyph glyph-name="map-search-outline"
+      unicode="&#xF984;"
+      horiz-adv-x="512" d=" M330.6666666666667 192C384 192 426.6666666666667 149.3333333333334 426.6666666666667 96C426.6666666666667 77.2266666666667 421.3333333333333 59.7333333333334 411.9466666666666 44.8000000000001L477.6533333333333 -21.3333333333333L448 -50.9866666666667L381.44 14.5066666666667C366.7199999999999 5.3333333333334 349.2266666666666 0 330.6666666666667 0C277.3333333333333 0 234.6666666666667 42.6666666666667 234.6666666666667 96S277.3333333333333 192 330.6666666666667 192M330.6666666666667 149.3333333333334C301.2266666666667 149.3333333333334 277.3333333333333 125.44 277.3333333333333 96S301.2266666666667 42.6666666666667 330.6666666666667 42.6666666666667S384 66.5600000000001 384 96S360.1066666666667 149.3333333333334 330.6666666666667 149.3333333333334M416 405.3333333333333C421.9733333333334 405.3333333333333 426.6666666666667 400.64 426.6666666666667 394.6666666666667V196.0533333333334C414.2933333333334 207.7866666666667 400 217.3866666666667 384 224V347.7333333333334L320 322.9866666666667V234.6666666666667C305.0666666666667 233.1733333333334 290.56 229.5466666666667 277.3333333333333 224V322.7733333333333L192 352.64V96C192 82.3466666666667 193.92 69.12 197.5466666666667 56.7466666666667L170.6666666666667 66.1333333333334L56.7466666666667 21.9733333333334L53.3333333333333 21.3333333333334C47.36 21.3333333333334 42.6666666666667 26.0266666666666 42.6666666666667 32V354.56C42.6666666666667 359.4666666666667 45.8666666666667 363.3066666666667 50.3466666666667 364.8L170.6666666666667 405.3333333333333L298.6666666666667 360.5333333333334L412.5866666666667 404.6933333333334L416 405.3333333333334M85.3333333333333 331.52V78.72L149.3333333333333 103.4666666666667V353.0666666666667L85.3333333333333 331.52z" />
+    <glyph glyph-name="mapbox"
+      unicode="&#xFB86;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M357.3333333333333 139.7333333333334C397.8666666666666 180.2666666666667 396.3733333333333 247.68 353.92 289.92C311.4666666666667 332.1600000000001 244.2666666666667 333.8666666666667 203.7333333333334 293.3333333333334C130.56 220.16 154.0266666666667 90.0266666666668 154.0266666666667 90.0266666666668S284.3733333333334 66.7733333333334 357.3333333333333 139.7333333333334M280.5333333333333 280.3200000000001L301.44 237.4400000000001L344.32 216.5333333333334L301.44 195.6266666666667L280.5333333333333 152.7466666666667L259.6266666666667 195.6266666666667L216.7466666666667 216.5333333333334L259.6266666666667 237.4400000000001L280.5333333333333 280.3200000000001z" />
+    <glyph glyph-name="margin"
+      unicode="&#xF353;"
+      horiz-adv-x="512" d=" M426.6666666666667 362.6666666666667V256L394.6666666666667 288L117.3333333333333 10.6666666666667L74.6666666666667 53.3333333333334L352 330.6666666666667L320 362.6666666666667H426.6666666666667M362.6666666666667 21.3333333333334C327.2533333333334 21.3333333333334 298.6666666666667 49.92 298.6666666666667 85.3333333333334V128C298.6666666666667 163.4133333333334 327.2533333333334 192 362.6666666666667 192S426.6666666666667 163.4133333333334 426.6666666666667 128V85.3333333333334C426.6666666666667 49.92 398.08 21.3333333333334 362.6666666666667 21.3333333333334M362.6666666666667 149.3333333333334C350.9333333333333 149.3333333333334 341.3333333333333 139.7333333333334 341.3333333333333 128V85.3333333333334C341.3333333333333 73.6 350.9333333333333 64 362.6666666666667 64S384 73.6 384 85.3333333333334V128C384 139.7333333333334 374.4 149.3333333333334 362.6666666666667 149.3333333333334M149.3333333333333 192C113.92 192 85.3333333333333 220.5866666666667 85.3333333333333 256V298.6666666666667C85.3333333333333 334.0800000000001 113.92 362.6666666666667 149.3333333333333 362.6666666666667S213.3333333333333 334.0800000000001 213.3333333333333 298.6666666666667V256C213.3333333333333 220.5866666666667 184.7466666666667 192 149.3333333333333 192M149.3333333333333 320C137.6 320 128 310.4 128 298.6666666666667V256C128 244.2666666666667 137.6 234.6666666666667 149.3333333333333 234.6666666666667S170.6666666666667 244.2666666666667 170.6666666666667 256V298.6666666666667C170.6666666666667 310.4 161.0666666666667 320 149.3333333333333 320z" />
+    <glyph glyph-name="markdown"
+      unicode="&#xF354;"
+      horiz-adv-x="512" d=" M42.6666666666667 106.6666666666667V277.3333333333334H85.3333333333333L149.3333333333333 213.3333333333334L213.3333333333333 277.3333333333334H256V106.6666666666667H213.3333333333333V216.96L149.3333333333333 152.96L85.3333333333333 216.96V106.6666666666667H42.6666666666667M341.3333333333333 277.3333333333334H405.3333333333333V192H458.6666666666666L373.3333333333333 96L288 192H341.3333333333333V277.3333333333334z" />
+    <glyph glyph-name="marker"
+      unicode="&#xF652;"
+      horiz-adv-x="512" d=" M394.6666666666667 423.4666666666667C383.36 423.4666666666667 372.48 419.4133333333334 364.16 411.0933333333334L240.2133333333334 286.9333333333334L360.7466666666668 166.4L484.9066666666668 290.3466666666667C501.3333333333334 306.9866666666667 501.3333333333334 333.8666666666667 484.9066666666668 350.72L424.3200000000001 411.0933333333333C416.0000000000001 419.4133333333333 405.3333333333334 423.4666666666667 394.6666666666668 423.4666666666667M219.7333333333334 266.6666666666667L92.5866666666667 139.52C75.9466666666667 122.88 75.9466666666667 96 93.0133333333333 78.72C66.9866666666667 52.48 40.5333333333333 26.24 14.2933333333333 0H135.04L153.3866666666667 18.3466666666667C170.0266666666667 2.1333333333333 196.6933333333333 2.3466666666667 213.3333333333333 18.7733333333333L340.2666666666667 145.92" />
+    <glyph glyph-name="marker-check"
+      unicode="&#xF355;"
+      horiz-adv-x="512" d=" M213.3333333333333 106.6666666666667L106.6666666666667 213.3333333333334L136.7466666666667 243.6266666666667L213.3333333333333 167.04L375.2533333333334 328.9600000000001L405.3333333333333 298.6666666666667M405.3333333333333 426.6666666666667H106.6666666666667C82.9866666666667 426.6666666666667 64 407.68 64 384V108.16C64 93.44 71.4666666666667 80.4266666666667 82.7733333333333 72.7466666666667L256 -42.6666666666666L429.0133333333333 72.7466666666667C440.32 80.4266666666667 448 93.44 448 108.16V384C448 407.68 428.8 426.6666666666667 405.3333333333333 426.6666666666667z" />
+    <glyph glyph-name="mastodon"
+      unicode="&#xFAD0;"
+      horiz-adv-x="512" d=" M446.7200000000001 149.3333333333334C440.7466666666667 119.2533333333333 394.6666666666667 86.1866666666667 340.6933333333334 79.7866666666668C312.7466666666667 76.5866666666668 285.2266666666667 73.3866666666667 256 74.6666666666667C208 77.0133333333334 170.6666666666667 86.1866666666667 170.6666666666667 86.1866666666667V72.96C177.4933333333334 25.6000000000001 218.0266666666667 22.8266666666667 256.64 21.3333333333334C295.4666666666667 20.2666666666667 330.0266666666667 31.1466666666667 330.0266666666667 31.1466666666667L331.7333333333334 -4.0533333333333S304.4266666666667 -18.5599999999999 256 -21.3333333333333C229.3333333333333 -22.8266666666666 196.0533333333333 -20.6933333333332 157.44 -10.6666666666666C73.8133333333333 11.7333333333335 59.3066666666667 101.1200000000001 57.1733333333333 192.0000000000001L56.96 265.1733333333334C56.96 357.7600000000001 117.3333333333333 384.8533333333334 117.3333333333333 384.8533333333334C148.2666666666667 398.9333333333334 200.7466666666667 405.3333333333333 255.36 405.3333333333333H256.64C311.2533333333334 405.3333333333333 363.7333333333334 398.9333333333334 394.6666666666667 384.8533333333334C394.6666666666667 384.8533333333334 455.04 357.76 455.04 265.1733333333334C455.04 265.1733333333334 455.8933333333333 196.6933333333333 446.7199999999999 149.3333333333334M384 257.92C384 280.9600000000001 377.6 298.6666666666667 365.8666666666666 312.5333333333334C353.92 325.9733333333334 338.1333333333333 333.0133333333333 318.2933333333333 333.0133333333333C295.68 333.0133333333333 278.3999999999999 324.2666666666667 266.6666666666667 306.7733333333334L256 288L245.3333333333333 306.7733333333334C233.3866666666666 324.2666666666667 216.32 333.0133333333334 193.4933333333333 333.0133333333334C173.8666666666666 333.0133333333334 158.08 325.9733333333334 145.92 312.5333333333334C134.1866666666667 298.6666666666667 128 280.9600000000001 128 257.92V145.7066666666667H172.8V254.72C172.8 277.3333333333334 182.4 289.28 201.8133333333333 289.28C223.1466666666667 289.28 233.8133333333333 275.4133333333334 233.8133333333333 248.1066666666667V188.5866666666667H277.9733333333333V248.1066666666667C277.9733333333333 275.4133333333334 288.64 289.2800000000001 310.1866666666666 289.2800000000001C329.3866666666667 289.2800000000001 338.9866666666666 277.3333333333334 338.9866666666666 254.7200000000001V145.7066666666667H384V257.92z" />
+    <glyph glyph-name="mastodon-variant"
+      unicode="&#xFAD1;"
+      horiz-adv-x="512" d=" M446.5066666666667 149.3333333333334C440.7466666666667 119.4666666666667 394.6666666666667 86.4 340.6933333333333 80C312.7466666666666 76.8000000000001 285.44 73.6 256 74.6666666666667C208.2133333333333 77.2266666666667 170.6666666666666 86.4 170.6666666666666 86.4L171.3066666666666 73.1733333333334C177.4933333333333 26.0266666666666 218.0266666666666 23.04 256.64 21.3333333333334C295.4666666666666 20.48 330.0266666666666 31.36 330.0266666666666 31.36L331.7333333333333 -3.6266666666667S304.4266666666666 -18.3466666666667 255.9999999999999 -21.3333333333333C229.3333333333333 -22.4 196.2666666666666 -20.2666666666666 157.6533333333333 -10.0266666666666C74.0266666666666 12.16 59.5199999999999 101.3333333333334 57.3866666666666 192.0000000000001L57.1733333333333 265.1733333333334C57.1733333333333 357.7600000000001 117.3333333333333 384.8533333333334 117.3333333333333 384.8533333333334C148.2666666666667 398.9333333333334 200.7466666666667 405.3333333333333 255.36 405.3333333333333H256.64C311.2533333333334 405.3333333333333 363.7333333333334 398.9333333333334 394.6666666666667 384.8533333333334C394.6666666666667 384.8533333333334 455.04 357.76 455.04 265.1733333333334C455.04 265.1733333333334 455.6799999999999 196.9066666666667 446.5066666666667 149.3333333333334M177.7066666666667 227.84C177.7066666666667 244.48 164.2666666666667 257.92 147.84 257.92C131.2 257.92 117.3333333333333 244.48 117.3333333333333 227.84C117.3333333333333 211.4133333333334 131.2 197.9733333333333 147.84 197.9733333333333C164.2666666666667 197.9733333333333 177.7066666666667 211.4133333333334 177.7066666666667 227.84M286.08 227.84C286.08 244.48 272.64 257.92 256 257.92C239.36 257.92 225.92 244.48 225.92 227.84C225.92 211.4133333333334 239.36 197.9733333333333 256 197.9733333333333C272.64 197.9733333333333 286.08 211.4133333333334 286.08 227.84M394.6666666666667 227.84C394.6666666666667 244.48 380.8 257.92 364.16 257.92C347.7333333333334 257.92 334.2933333333333 244.48 334.2933333333333 227.84C334.2933333333333 211.4133333333334 347.7333333333334 197.9733333333333 364.16 197.9733333333333C380.8 197.9733333333333 394.6666666666667 211.4133333333334 394.6666666666667 227.84z" />
+    <glyph glyph-name="material-design"
+      unicode="&#xF985;"
+      horiz-adv-x="512" d=" M448 192C448 235.3066666666667 433.7066666666666 275.4133333333334 405.3333333333333 311.8933333333333V71.8933333333334C433.7066666666666 107.3066666666667 448 147.4133333333334 448 192M376.1066666666667 42.6666666666667H136.1066666666667C150.6133333333333 30.9333333333333 169.6 21.3333333333334 193.0666666666667 12.5866666666667C216.32 4.2666666666667 237.44 0 256 0C274.7733333333333 0 295.68 4.2666666666667 318.9333333333333 12.5866666666667C342.4 21.3333333333334 361.3866666666666 30.9333333333333 376.1066666666667 42.6666666666667M234.6666666666667 85.3333333333334L149.3333333333333 256V85.3333333333334H234.6666666666667M362.6666666666667 256L277.3333333333333 85.3333333333334H362.6666666666667V256M256 138.0266666666667L336 298.6666666666667H176L256 138.0266666666667M376.1066666666667 341.3333333333334C340.6933333333334 369.7066666666667 300.5866666666667 384 256 384S171.3066666666667 369.7066666666667 136.1066666666667 341.3333333333334H376.1066666666667M106.6666666666667 71.8933333333334V311.8933333333333C78.2933333333333 275.4133333333334 64 235.3066666666667 64 192C64 147.4133333333334 78.2933333333333 107.3066666666667 106.6666666666667 71.8933333333334M490.6666666666666 192C490.6666666666666 127.36 468.0533333333333 71.8933333333334 421.9733333333334 26.0266666666666C376.1066666666667 -20.0533333333333 320.64 -42.6666666666666 256 -42.6666666666666C191.36 -42.6666666666666 136.1066666666667 -20.0533333333333 90.0266666666667 26.0266666666666C43.9466666666667 71.8933333333334 21.3333333333333 127.36 21.3333333333333 192C21.3333333333333 256.64 43.9466666666667 311.8933333333333 90.0266666666667 357.9733333333334S191.36 426.6666666666667 256 426.6666666666667C320.64 426.6666666666667 376.1066666666667 404.0533333333334 421.9733333333334 357.9733333333334C468.0533333333333 311.8933333333333 490.6666666666666 256.64 490.6666666666666 192z" />
+    <glyph glyph-name="material-ui"
+      unicode="&#xF357;"
+      horiz-adv-x="512" d=" M170.6666666666667 93.6533333333334V120.1066666666667L298.6666666666667 193.92V293.76L192 232.1066666666667L85.3333333333333 293.76V170.6666666666667L64 158.2933333333334L42.6666666666667 170.6666666666667V341.3333333333334L65.4933333333333 354.56L192 281.3866666666667L275.84 329.8133333333334L318.5066666666667 354.5600000000001L341.3333333333333 341.3333333333334V169.3866666666667L232.96 106.6666666666667L319.36 56.96L426.6666666666667 118.8266666666667V213.3333333333334L448 225.7066666666667L469.3333333333333 213.3333333333334V94.2933333333334L319.36 7.6800000000001L170.6666666666667 93.6533333333334M469.3333333333333 240L448 227.6266666666667L426.6666666666667 240V264.9600000000001L448 277.3333333333334L469.3333333333333 264.9600000000001V240z" />
+    <glyph glyph-name="math-compass"
+      unicode="&#xF358;"
+      horiz-adv-x="512" d=" M277.3333333333333 358.4V384C277.3333333333333 396.8 268.8 405.3333333333333 256 405.3333333333333V358.4C209.0666666666667 349.8666666666667 192 326.4 192 298.6666666666667C192 281.6 198.4 266.6666666666667 209.0666666666667 256L85.3333333333333 23.4666666666667V-21.3333333333333L132.2666666666667 21.3333333333334L247.4666666666667 234.6666666666667H256C292.2666666666667 234.6666666666667 320 262.4000000000001 320 298.6666666666667C320 326.4 302.9333333333334 349.8666666666667 277.3333333333334 358.4M275.2000000000001 288C270.9333333333334 281.6 264.5333333333334 277.3333333333334 256 277.3333333333334C243.2000000000001 277.3333333333334 234.6666666666667 285.8666666666667 234.6666666666667 298.6666666666667C234.6666666666667 302.9333333333334 236.8 305.0666666666667 236.8 309.3333333333334C241.0666666666667 315.7333333333334 247.4666666666667 320 256 320C268.8 320 277.3333333333334 311.4666666666667 277.3333333333334 298.6666666666667C277.3333333333334 294.4 275.2000000000001 292.2666666666667 275.2000000000001 288M426.6666666666667 23.4666666666667V-21.3333333333333L379.7333333333334 21.3333333333334L285.8666666666667 196.2666666666667C300.8 200.5333333333333 313.6 206.9333333333333 324.2666666666667 215.4666666666667L426.6666666666667 23.4666666666667z" />
+    <glyph glyph-name="matrix"
+      unicode="&#xF628;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H128V362.6666666666667H85.3333333333333V21.3333333333334H128V-21.3333333333333H42.6666666666667V405.3333333333333M426.6666666666667 362.6666666666667H384V405.3333333333333H469.3333333333333V-21.3333333333333H384V21.3333333333334H426.6666666666667V362.6666666666667M192 341.3333333333334H213.3333333333333V234.6666666666667H234.6666666666667V213.3333333333334H170.6666666666667V234.6666666666667H192V320L170.6666666666667 309.3333333333334V330.6666666666667L192 341.3333333333334M320 170.6666666666667H341.3333333333333V64H362.6666666666667V42.6666666666667H298.6666666666667V64H320V149.3333333333334L298.6666666666667 138.6666666666667V160L320 170.6666666666667M192 170.6666666666667C215.4666666666667 170.6666666666667 234.6666666666667 142.0800000000001 234.6666666666667 106.6666666666667S215.4666666666667 42.6666666666667 192 42.6666666666667S149.3333333333333 71.2533333333333 149.3333333333333 106.6666666666667S168.5333333333333 170.6666666666667 192 170.6666666666667M192 149.3333333333334C180.2666666666667 149.3333333333334 170.6666666666667 130.1333333333333 170.6666666666667 106.6666666666667S180.2666666666667 64 192 64S213.3333333333333 83.2 213.3333333333333 106.6666666666667S203.7333333333334 149.3333333333334 192 149.3333333333334M320 341.3333333333334C343.4666666666667 341.3333333333334 362.6666666666667 312.7466666666667 362.6666666666667 277.3333333333334S343.4666666666667 213.3333333333334 320 213.3333333333334S277.3333333333333 241.92 277.3333333333333 277.3333333333334S296.5333333333333 341.3333333333334 320 341.3333333333334M320 320C308.2666666666667 320 298.6666666666667 300.8 298.6666666666667 277.3333333333334S308.2666666666667 234.6666666666667 320 234.6666666666667S341.3333333333333 253.8666666666667 341.3333333333333 277.3333333333334S331.7333333333334 320 320 320z" />
+    <glyph glyph-name="maxcdn"
+      unicode="&#xF359;"
+      horiz-adv-x="512" d=" M439.4666666666667 305.28C420.9066666666667 328.32 392.1066666666667 341.3333333333334 360.5333333333333 341.3333333333334H62.9333333333333L98.56 265.1733333333334L50.9866666666667 42.6666666666667H129.0666666666667L176.64 265.1733333333334H243.2L195.6266666666667 42.6666666666667H273.7066666666667L321.28 265.1733333333334H360.5333333333334C369.0666666666667 265.1733333333334 376.1066666666667 262.4 380.1600000000001 257.2800000000001C384.0000000000001 252.3733333333334 385.4933333333334 245.3333333333334 384.0000000000001 236.8000000000001L342.1866666666666 42.6666666666667H420.0533333333333L458.6666666666666 220.8C464.6399999999999 251.52 457.8133333333333 282.4533333333334 439.4666666666666 305.28z" />
+    <glyph glyph-name="medal"
+      unicode="&#xF986;"
+      horiz-adv-x="512" d=" M426.6666666666667 405.3333333333333H85.3333333333333V362.6666666666667L209.28 269.6533333333334C130.9866666666666 243.84 88.32 159.36 114.1333333333333 81.0666666666667S224 -39.8933333333333 302.7199999999999 -14.08C381.0133333333333 11.7333333333333 423.68 96 397.8666666666666 174.5066666666667C382.9333333333333 219.52 347.7333333333333 254.9333333333334 302.7199999999999 269.6533333333334L426.6666666666667 362.6666666666667V405.3333333333333M318.7200000000001 32L256 68.6933333333333L193.28 32L209.92 103.04L154.6666666666667 150.8266666666667L227.4133333333334 157.0133333333333L256 224L284.5866666666667 157.0133333333333L357.3333333333333 150.8266666666667L302.08 103.04L318.72 32z" />
+    <glyph glyph-name="medical-bag"
+      unicode="&#xF6EE;"
+      horiz-adv-x="512" d=" M213.3333333333333 384L170.6666666666667 341.3333333333334V298.6666666666667H106.6666666666667C82.1333333333333 298.6666666666667 66.56 277.3333333333334 64 256L42.6666666666667 42.6666666666667C40.1066666666667 21.3333333333334 54.1866666666667 0 85.3333333333333 0H426.6666666666667C457.8133333333333 0 471.8933333333333 21.3333333333334 469.3333333333333 42.6666666666667L448 256C445.44 277.3333333333334 427.9466666666666 298.6666666666667 405.3333333333333 298.6666666666667H341.3333333333333V341.3333333333334L298.6666666666667 384H213.3333333333333M213.3333333333333 341.3333333333334H298.6666666666667V298.6666666666667H213.3333333333333V341.3333333333334M234.6666666666667 234.6666666666667H277.3333333333333V170.6666666666667H341.3333333333333V128H277.3333333333333V64H234.6666666666667V128H170.6666666666667V170.6666666666667H234.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="medium"
+      unicode="&#xF35A;"
+      horiz-adv-x="512" d=" M93.2266666666667 292.2666666666667C93.8666666666667 297.6 91.7333333333333 302.7200000000001 87.8933333333333 306.1333333333334L48 354.1333333333334V361.3866666666667H171.7333333333334L267.3066666666667 151.68L351.36 361.3866666666667H469.3333333333333V354.1333333333334L435.2 321.4933333333334C432.4266666666666 319.36 430.9333333333333 315.52 431.5733333333333 311.8933333333333V72.1066666666667C430.9333333333332 68.48 432.4266666666666 64.64 435.2 62.5066666666667L468.4799999999999 29.8666666666667V22.6133333333333H301.2266666666666V29.8666666666667L335.5733333333333 63.36C338.9866666666666 66.56 338.9866666666666 67.6266666666667 338.9866666666666 72.7466666666667V266.6666666666667L243.2 23.4666666666667H230.4L118.8266666666667 266.6666666666667V103.68C117.3333333333333 96.8533333333334 120.1066666666667 90.0266666666666 125.0133333333333 85.3333333333334L169.8133333333333 30.5066666666667V23.4666666666667H42.6666666666667V30.5066666666667L87.4666666666667 85.3333333333334C92.3733333333333 90.0266666666666 94.5066666666667 96.8533333333334 93.2266666666667 103.68V292.2666666666667z" />
+    <glyph glyph-name="meetup"
+      unicode="&#xFAD2;"
+      horiz-adv-x="512" d=" M418.3466666666667 130.9866666666667C418.3466666666667 92.16 390.4 58.6666666666667 352 52.2666666666667C347.52 51.4133333333334 342.8266666666667 50.7733333333333 337.92 50.9866666666667C336.2133333333333 50.9866666666667 335.5733333333333 50.3466666666667 335.1466666666667 48.8533333333334C327.4666666666667 26.88 312.32 13.8666666666667 289.4933333333333 10.6666666666667C274.3466666666667 8.5333333333333 260.6933333333333 12.5866666666667 248.5333333333333 21.9733333333334C246.8266666666667 23.4666666666667 245.3333333333333 23.4666666666667 244.0533333333333 22.1866666666667C229.9733333333333 12.1600000000001 214.1866666666666 7.6800000000001 196.9066666666666 8.7466666666668C163.4133333333333 10.6666666666667 135.0399999999999 36.4800000000001 129.7066666666666 69.5466666666668C129.2799999999999 71.8933333333334 128.8533333333333 74.6666666666667 128.8533333333333 76.5866666666668C128.8533333333333 78.5066666666668 127.9999999999999 79.1466666666668 126.2933333333333 79.5733333333334C116.0533333333333 81.4933333333335 106.6666666666666 85.3333333333334 98.7733333333333 92.1600000000001C83.6266666666666 103.8933333333334 74.6666666666666 119.2533333333335 72.5333333333333 138.6666666666668C70.1866666666666 160.0000000000001 77.0133333333333 178.7733333333334 92.1599999999999 194.3466666666668C93.4399999999999 195.6266666666668 93.4399999999999 196.4800000000001 92.5866666666666 197.9733333333334C86.8266666666666 208.2133333333334 84.0533333333333 219.3066666666667 84.4799999999999 231.0400000000001C85.3333333333333 260.4800000000002 106.0266666666666 284.8000000000001 134.6133333333333 290.7733333333335C137.8133333333333 291.6266666666668 139.5199999999999 292.9066666666668 141.0133333333333 295.8933333333335C155.0933333333333 326.1866666666667 178.56 344.5333333333334 211.4133333333333 350.7200000000001C234.6666666666666 354.9866666666668 255.9999999999999 350.2933333333334 276.0533333333333 338.5600000000001C277.3333333333333 337.4933333333334 279.0399999999999 337.4933333333334 280.9599999999999 337.9200000000001C312.9599999999999 347.3066666666668 341.3333333333333 340.4800000000001 365.2266666666666 317.6533333333334C379.3066666666666 304.2133333333334 387.2 287.1466666666668 389.5466666666666 267.5200000000001C389.9733333333333 263.2533333333335 390.1866666666666 258.9866666666668 389.9733333333333 254.7200000000001C389.7599999999999 253.0133333333334 390.1866666666666 252.3733333333334 391.8933333333333 251.9466666666667C406.1866666666666 246.6133333333334 415.9999999999999 236.5866666666667 420.4799999999999 221.8666666666667C425.8133333333333 203.7333333333334 421.3333333333333 187.5200000000001 407.6799999999999 174.2933333333334C406.3999999999999 173.0133333333334 406.8266666666666 172.3733333333334 407.4666666666666 171.3066666666667C414.7199999999999 158.72 418.3466666666666 145.4933333333334 418.3466666666666 130.9866666666667M275.8399999999999 137.1733333333334C275.8399999999999 120.7466666666667 286.5066666666666 106.6666666666667 301.6533333333333 101.12C309.3333333333333 98.7733333333333 316.8 97.4933333333333 324.6933333333333 97.0666666666666C330.6666666666666 96.8533333333332 335.9999999999999 97.28 341.3333333333333 99.8399999999999C345.3866666666666 101.9733333333333 347.3066666666666 105.3866666666667 347.0933333333333 109.8666666666666C346.8799999999999 114.3466666666666 344.7466666666666 117.3333333333333 340.4799999999999 119.4666666666666C338.9866666666666 120.1066666666666 337.4933333333333 120.7466666666666 335.7866666666665 120.9599999999999C330.6666666666665 121.8133333333333 326.3999999999999 122.4533333333333 321.4933333333333 123.5199999999999C313.8133333333332 125.0133333333333 310.3999999999999 129.0666666666666 310.3999999999999 137.1733333333333C310.1866666666666 144.2133333333333 312.1066666666666 150.8266666666666 314.2399999999999 157.2266666666666C318.2933333333332 169.1733333333333 323.6266666666666 180.6933333333333 328.7466666666666 192C333.6533333333332 203.3066666666666 338.7733333333332 214.4 342.1866666666666 226.1333333333333C344.1066666666666 232.5333333333333 345.1733333333333 238.9333333333333 343.2533333333332 245.3333333333333C340.6933333333333 256 334.7199999999999 262.4 324.2666666666666 264.32C314.6666666666666 266.6666666666667 305.0666666666666 266.6666666666667 296.5333333333332 260.6933333333333C293.5466666666665 258.7733333333333 290.7733333333332 259.2 287.9999999999999 261.5466666666666L282.8799999999999 266.6666666666667C273.9199999999999 274.7733333333333 262.3999999999999 275.2 252.7999999999999 267.7333333333333C248.9599999999999 264.7466666666666 245.3333333333332 261.12 241.7066666666666 258.3466666666667C238.0799999999999 256 234.6666666666666 255.36 230.1866666666666 257.7066666666667C226.1333333333333 259.6266666666667 222.2933333333332 261.5466666666666 218.2399999999999 263.4666666666667C213.9733333333333 265.1733333333333 210.1333333333332 267.52 205.4399999999999 267.9466666666667C190.9333333333332 269.2266666666667 175.7866666666666 260.48 169.3866666666666 247.2533333333333C166.3999999999999 241.4933333333333 164.0533333333332 235.52 161.9199999999999 229.3333333333333C151.6799999999999 201.1733333333333 143.3599999999999 172.5866666666667 134.8266666666666 143.7866666666666C130.9866666666666 130.9866666666667 135.4666666666666 118.4 146.3466666666666 111.5733333333333C154.88 106.6666666666667 164.0533333333333 104.7466666666667 173.6533333333333 107.7333333333334C181.3333333333333 110.08 185.8133333333333 116.2666666666667 188.8 123.3066666666667C198.6133333333333 146.56 207.5733333333333 170.6666666666667 216.96 193.92C219.5199999999999 200.32 222.08 206.9333333333333 224.8533333333333 213.3333333333334C227.6266666666666 219.7333333333334 235.5199999999999 221.8666666666667 240.2133333333333 217.6C243.2 215.04 244.0533333333333 211.4133333333334 243.6266666666666 207.7866666666666C243.4133333333333 203.7333333333333 241.92 200.1066666666667 240.4266666666666 196.48C234.6666666666667 181.3333333333334 228.0533333333333 165.5466666666667 221.8666666666666 149.9733333333334C220.5866666666666 146.9866666666667 219.3066666666667 143.7866666666667 218.6666666666666 140.3733333333333C217.8133333333333 134.6133333333334 219.9466666666666 129.4933333333334 224.8533333333333 128C229.5466666666666 125.4400000000001 234.6666666666667 125.0133333333333 239.5733333333333 126.9333333333333C245.3333333333333 129.0666666666667 248.9599999999999 133.5466666666667 251.5199999999999 138.6666666666667L279.04 193.0666666666667C283.3066666666666 201.3866666666667 288 209.7066666666667 291.8399999999999 218.0266666666667C293.5466666666666 221.0133333333334 295.4666666666666 224 298.6666666666667 225.92C301.2266666666666 227.6266666666667 304 227.6266666666667 306.7733333333333 226.1333333333334C309.3333333333333 224.64 309.3333333333333 221.8666666666667 309.3333333333333 219.0933333333333C309.3333333333333 217.6 309.3333333333333 216.1066666666667 308.6933333333333 214.8266666666667C307.4133333333333 211.84 306.3466666666667 209.0666666666667 305.0666666666666 206.2933333333334C297.3866666666667 190.0800000000001 289.4933333333333 174.0800000000001 282.0266666666667 158.0800000000001C278.8266666666666 151.2533333333333 275.4133333333333 144.4266666666667 275.84 137.1733333333334M383.1466666666667 18.7733333333333C383.1466666666667 29.44 374.1866666666666 38.4 363.52 38.4C352 38.4 343.4666666666666 29.6533333333334 343.4666666666666 18.7733333333333S352.4266666666666 -1.0666666666667 363.3066666666666 -1.0666666666667S383.1466666666666 7.8933333333334 383.1466666666666 18.7733333333333M50.7733333333333 182.1866666666667C61.0133333333333 182.1866666666667 69.76 190.9333333333333 69.76 201.1733333333334C69.76 211.4133333333334 61.2266666666667 219.9466666666667 50.9866666666667 219.9466666666667C40.32 219.9466666666667 32 211.6266666666667 32 201.1733333333334S40.32 182.1866666666667 50.7733333333333 182.1866666666667M282.88 393.6C272.4266666666667 393.6 263.8933333333333 385.28 263.8933333333333 375.04C263.8933333333333 364.5866666666667 272.4266666666667 356.2666666666667 282.6666666666667 356.2666666666667C293.12 356.2666666666667 301.4400000000001 364.3733333333334 301.4400000000001 374.8266666666667C301.4400000000001 385.0666666666667 293.12 393.6 282.8800000000001 393.6M436.2666666666667 276.6933333333334C436.2666666666667 285.2266666666667 429.0133333333334 292.48 420.4800000000001 292.48C411.7333333333334 292.6933333333334 404.2666666666667 285.2266666666667 404.2666666666667 276.48S411.3066666666667 260.6933333333334 420.2666666666667 260.6933333333334S436.4800000000001 267.7333333333334 436.2666666666667 276.6933333333334M107.52 322.3466666666667C107.52 314.24 113.92 308.0533333333334 121.8133333333333 308.0533333333334C129.92 308.0533333333334 136.32 314.4533333333334 136.1066666666667 322.56C136.1066666666667 330.6666666666667 129.92 336.64 122.0266666666667 336.64C113.7066666666667 336.64 107.52 330.6666666666667 107.52 322.3466666666667M257.28 -9.3866666666667C257.28 -2.56 251.9466666666667 2.9866666666666 245.3333333333333 2.9866666666666C238.08 2.9866666666666 232.7466666666666 -2.3466666666667 232.7466666666666 -9.3866666666667C232.7466666666666 -16 238.08 -21.3333333333333 245.3333333333333 -21.3333333333333C251.7333333333333 -21.3333333333333 257.28 -16 257.28 -9.3866666666667M448 181.3333333333334C441.8133333333334 181.3333333333334 436.2666666666667 175.36 436.2666666666667 168.96C436.2666666666667 162.56 441.6 157.2266666666667 448 157.2266666666667C455.04 157.2266666666667 460.16 162.1333333333333 460.16 168.96C460.16 175.5733333333334 455.04 181.3333333333334 448 181.3333333333334M162.56 405.3333333333333C156.8 405.3333333333333 152.32 401.0666666666667 152.32 395.3066666666667C152.32 389.76 156.8 385.2800000000001 162.56 385.2800000000001C168.1066666666667 385.2800000000001 172.5866666666667 389.76 172.5866666666667 395.3066666666667C172.5866666666667 401.0666666666667 168.32 405.3333333333334 162.56 405.3333333333334M471.04 234.6666666666667C466.3466666666667 234.6666666666667 462.2933333333334 231.04 462.08 226.1333333333334C462.08 221.2266666666667 466.1333333333333 217.1733333333334 471.04 217.1733333333334C476.16 217.1733333333334 480.0000000000001 221.0133333333333 480.0000000000001 225.92C480.0000000000001 231.04 476.1600000000001 234.6666666666667 471.04 234.6666666666667M117.3333333333333 58.4533333333333C117.3333333333333 63.1466666666667 112.8533333333333 67.2 107.9466666666667 67.4133333333334C103.2533333333333 67.4133333333334 99.2 63.36 99.2 58.24C99.2 53.3333333333334 103.2533333333333 49.4933333333333 108.16 49.4933333333333C113.0666666666667 49.4933333333333 117.3333333333333 53.3333333333334 117.3333333333333 58.4533333333334z" />
+    <glyph glyph-name="memory"
+      unicode="&#xF35B;"
+      horiz-adv-x="512" d=" M362.6666666666667 85.3333333333334H149.3333333333333V298.6666666666667H362.6666666666667M448 213.3333333333334V256H405.3333333333333V298.6666666666667C405.3333333333333 322.3466666666667 386.1333333333334 341.3333333333334 362.6666666666667 341.3333333333334H320V384H277.3333333333333V341.3333333333334H234.6666666666667V384H192V341.3333333333334H149.3333333333333C125.6533333333333 341.3333333333334 106.6666666666667 322.3466666666667 106.6666666666667 298.6666666666667V256H64V213.3333333333334H106.6666666666667V170.6666666666667H64V128H106.6666666666667V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H192V0H234.6666666666667V42.6666666666667H277.3333333333333V0H320V42.6666666666667H362.6666666666667C386.1333333333334 42.6666666666667 405.3333333333333 61.8666666666667 405.3333333333333 85.3333333333334V128H448V170.6666666666667H405.3333333333333V213.3333333333334M277.3333333333333 170.6666666666667H234.6666666666667V213.3333333333334H277.3333333333333M320 256H192V128H320V256z" />
+    <glyph glyph-name="menu"
+      unicode="&#xF35C;"
+      horiz-adv-x="512" d=" M64 320H448V277.3333333333334H64V320M64 213.3333333333334H448V170.6666666666667H64V213.3333333333334M64 106.6666666666667H448V64H64V106.6666666666667z" />
+    <glyph glyph-name="menu-down"
+      unicode="&#xF35D;"
+      horiz-adv-x="512" d=" M149.3333333333333 234.6666666666667L256 128L362.6666666666667 234.6666666666667H149.3333333333333z" />
+    <glyph glyph-name="menu-down-outline"
+      unicode="&#xF6B5;"
+      horiz-adv-x="512" d=" M384 256V224L256 96L128 224V256H384M256 156.3733333333333L312.96 213.3333333333334H199.04L256 156.3733333333333z" />
+    <glyph glyph-name="menu-left"
+      unicode="&#xF35E;"
+      horiz-adv-x="512" d=" M298.6666666666667 298.6666666666667L192 192L298.6666666666667 85.3333333333334V298.6666666666667z" />
+    <glyph glyph-name="menu-left-outline"
+      unicode="&#xFA01;"
+      horiz-adv-x="512" d=" M320 64H288L160 192L288 320H320V64M220.3733333333333 192L277.3333333333333 135.04V248.96L220.3733333333333 192z" />
+    <glyph glyph-name="menu-open"
+      unicode="&#xFB87;"
+      horiz-adv-x="512" d=" M448 114.9866666666667L417.92 85.3333333333334L311.04 192L417.92 298.6666666666667L448 269.0133333333333L372.0533333333334 192L448 114.9866666666667M64 320H341.3333333333333V277.3333333333334H64V320M64 170.6666666666667V213.3333333333334H277.3333333333333V170.6666666666667H64M64 64V106.6666666666667H341.3333333333333V64H64z" />
+    <glyph glyph-name="menu-right"
+      unicode="&#xF35F;"
+      horiz-adv-x="512" d=" M213.3333333333333 85.3333333333334L320 192L213.3333333333333 298.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="menu-right-outline"
+      unicode="&#xFA02;"
+      horiz-adv-x="512" d=" M192 320H224L352 192L224 64H192V320M291.6266666666667 192L234.6666666666667 248.96V135.04L291.6266666666667 192z" />
+    <glyph glyph-name="menu-swap"
+      unicode="&#xFA63;"
+      horiz-adv-x="512" d=" M256 320L149.3333333333333 213.3333333333334H362.6666666666667L256 320M149.3333333333333 170.6666666666667L256 64L362.6666666666667 170.6666666666667H149.3333333333333z" />
+    <glyph glyph-name="menu-swap-outline"
+      unicode="&#xFA64;"
+      horiz-adv-x="512" d=" M256 373.3333333333334L128 245.3333333333334V213.3333333333334H384V245.3333333333334L256 373.3333333333334M256 312.9600000000001L312.96 256H199.04L256 312.9600000000001M128 170.6666666666667V138.6666666666667L256 10.6666666666667L384 138.6666666666667V170.6666666666667H128M199.04 128H312.96L256 71.04L199.04 128z" />
+    <glyph glyph-name="menu-up"
+      unicode="&#xF360;"
+      horiz-adv-x="512" d=" M149.3333333333333 128L256 234.6666666666667L362.6666666666667 128H149.3333333333333z" />
+    <glyph glyph-name="menu-up-outline"
+      unicode="&#xF6B6;"
+      horiz-adv-x="512" d=" M384 106.6666666666667V138.6666666666667L256 266.6666666666667L128 138.6666666666667V106.6666666666667H384M256 206.2933333333334L312.96 149.3333333333334H199.04L256 206.2933333333334z" />
+    <glyph glyph-name="message"
+      unicode="&#xF361;"
+      horiz-adv-x="512" d=" M426.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V-21.3333333333333L128 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="message-alert"
+      unicode="&#xF362;"
+      horiz-adv-x="512" d=" M277.3333333333333 234.6666666666667H234.6666666666667V320H277.3333333333333M277.3333333333333 149.3333333333334H234.6666666666667V192H277.3333333333333M426.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V-21.3333333333333L128 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="message-alert-outline"
+      unicode="&#xFA03;"
+      horiz-adv-x="512" d=" M277.3333333333333 234.6666666666667H234.6666666666667V320H277.3333333333333V234.6666666666667M277.3333333333333 192H234.6666666666667V149.3333333333334H277.3333333333333V192M469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H128L42.6666666666667 -21.3333333333333V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667M426.6666666666667 362.6666666666667H85.3333333333333V81.0666666666667L110.9333333333333 106.6666666666667H426.6666666666667V362.6666666666667z" />
+    <glyph glyph-name="message-bulleted"
+      unicode="&#xF6A1;"
+      horiz-adv-x="512" d=" M426.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V-21.3333333333333L128 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.1333333333334 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333M170.6666666666667 149.3333333333334H128V192H170.6666666666667V149.3333333333334M170.6666666666667 213.3333333333334H128V256H170.6666666666667V213.3333333333334M170.6666666666667 277.3333333333334H128V320H170.6666666666667V277.3333333333334M320 149.3333333333334H213.3333333333333V192H320V149.3333333333334M384 213.3333333333334H213.3333333333333V256H384V213.3333333333334M384 277.3333333333334H213.3333333333333V320H384V277.3333333333334z" />
+    <glyph glyph-name="message-bulleted-off"
+      unicode="&#xF6A2;"
+      horiz-adv-x="512" d=" M27.0933333333333 411.0933333333334L0 384L42.6666666666667 341.3333333333334V-21.3333333333333L128 64H320L442.24 -58.24L469.3333333333333 -31.1466666666666L27.0933333333333 411.0933333333334M170.6666666666667 149.3333333333334H128V192H170.6666666666667V149.3333333333334M128 213.3333333333334V256L170.6666666666667 213.3333333333334H128M426.6666666666667 405.3333333333333H87.04L213.3333333333333 279.04V320H384V277.3333333333334H215.04L236.3733333333334 256H384V213.3333333333334H279.04L428.16 64C450.9866666666667 65.0666666666667 469.3333333333333 83.6266666666667 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.1333333333334 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="message-draw"
+      unicode="&#xF363;"
+      horiz-adv-x="512" d=" M384 149.3333333333334H224L266.6666666666667 192H384M128 149.3333333333334V202.6666666666667L274.7733333333333 349.0133333333333C278.8266666666666 353.0666666666667 285.6533333333333 353.0666666666667 289.92 349.0133333333333L327.4666666666667 311.2533333333334C331.7333333333333 306.9866666666667 331.7333333333333 300.3733333333334 327.4666666666667 296.1066666666667L180.6933333333333 149.3333333333334M426.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V-21.3333333333333L128 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="message-image"
+      unicode="&#xF364;"
+      horiz-adv-x="512" d=" M106.6666666666667 149.3333333333334L181.3333333333333 245.3333333333334L234.6666666666667 181.3333333333334L309.3333333333333 277.3333333333334L405.3333333333333 149.3333333333334M426.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V-21.3333333333333L128 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="message-outline"
+      unicode="&#xF365;"
+      horiz-adv-x="512" d=" M426.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V-21.3333333333333L128 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.1333333333334 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333M426.6666666666667 106.6666666666667H128L85.3333333333333 64V362.6666666666667H426.6666666666667" />
+    <glyph glyph-name="message-plus"
+      unicode="&#xF653;"
+      horiz-adv-x="512" d=" M426.6666666666667 405.3333333333333C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H128L42.6666666666667 -21.3333333333333V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667M234.6666666666667 320V256H170.6666666666667V213.3333333333334H234.6666666666667V149.3333333333334H277.3333333333333V213.3333333333334H341.3333333333333V256H277.3333333333333V320H234.6666666666667z" />
+    <glyph glyph-name="message-processing"
+      unicode="&#xF366;"
+      horiz-adv-x="512" d=" M362.6666666666667 213.3333333333334H320V256H362.6666666666667M277.3333333333333 213.3333333333334H234.6666666666667V256H277.3333333333333M192 213.3333333333334H149.3333333333333V256H192M426.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V-21.3333333333333L128 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="message-reply"
+      unicode="&#xF367;"
+      horiz-adv-x="512" d=" M469.3333333333333 362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V106.6666666666667C42.6666666666667 83.2 61.8666666666667 64 85.3333333333333 64H384L469.3333333333333 -21.3333333333333V362.6666666666667z" />
+    <glyph glyph-name="message-reply-text"
+      unicode="&#xF368;"
+      horiz-adv-x="512" d=" M384 277.3333333333334H128V320H384V277.3333333333334M384 213.3333333333334H128V256H384V213.3333333333334M384 149.3333333333334H128V192H384V149.3333333333334M469.3333333333333 362.6666666666667C469.3333333333333 386.1333333333334 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V106.6666666666667C42.6666666666667 83.2 61.8666666666667 64 85.3333333333333 64H384L469.3333333333333 -21.3333333333333V362.6666666666667z" />
+    <glyph glyph-name="message-settings"
+      unicode="&#xF6EF;"
+      horiz-adv-x="512" d=" M426.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V-21.3333333333333L128 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.1333333333334 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333M234.6666666666667 -64H277.3333333333333V-21.3333333333333H234.6666666666667V-64M149.3333333333333 -64H192V-21.3333333333333H149.3333333333333V-64M320 -64H362.6666666666667V-21.3333333333333H320V-64z" />
+    <glyph glyph-name="message-settings-variant"
+      unicode="&#xF6F0;"
+      horiz-adv-x="512" d=" M288 234.6666666666667C288 216.96 273.7066666666667 202.6666666666667 256 202.6666666666667C238.08 202.6666666666667 224 216.96 224 234.6666666666667S238.2933333333333 266.6666666666667 256 266.6666666666667S288 252.3733333333334 288 234.6666666666667M469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H128L42.6666666666667 -21.3333333333333V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667M357.76 206.5066666666667L334.9333333333333 224C335.1466666666667 227.6266666666667 335.1466666666667 231.2533333333334 334.9333333333333 234.6666666666667C335.36 238.08 335.36 241.7066666666667 334.9333333333333 245.3333333333334L357.5466666666666 262.8266666666667C359.4666666666666 264.5333333333334 360.1066666666667 267.3066666666668 358.8266666666666 269.6533333333334L337.4933333333333 306.5600000000001C336.2133333333333 309.3333333333334 333.44 309.9733333333334 330.6666666666666 309.3333333333334L304.4266666666666 298.6666666666667C298.6666666666666 302.9333333333334 292.9066666666666 306.5600000000001 286.2933333333333 309.3333333333334L282.2399999999999 337.2800000000001C281.8133333333334 339.6266666666667 279.68 341.3333333333334 277.3333333333333 341.3333333333334H234.6666666666667C232.1066666666667 341.3333333333334 229.76 339.4133333333334 229.3333333333333 336.8533333333334L225.28 308.6933333333334C218.88 306.1333333333334 212.6933333333333 302.7200000000001 206.9333333333333 298.6666666666667L180.48 309.3333333333334C177.92 310.1866666666667 175.1466666666667 309.3333333333334 173.8666666666667 306.9866666666667L152.5333333333333 270.0800000000001C151.2533333333333 267.7333333333334 151.68 264.9600000000001 153.8133333333333 263.2533333333334L176.4266666666667 245.3333333333334C175.5733333333333 238.5066666666667 175.5733333333333 231.2533333333334 176.4266666666667 224L153.8133333333333 206.5066666666667C151.8933333333333 204.8 151.2533333333333 202.0266666666667 152.5333333333333 199.68L173.8666666666666 162.7733333333333C175.1466666666667 160 177.92 159.36 180.48 160L206.9333333333333 170.6666666666667C212.48 166.4 218.4533333333333 162.7733333333334 225.0666666666666 160L229.12 132.0533333333334C229.76 129.4933333333334 232.1066666666667 128 234.6666666666667 128H277.3333333333333C279.8933333333333 128 282.24 129.92 282.6666666666667 132.48L286.7199999999999 160.6400000000001C293.12 163.4133333333334 298.6666666666667 166.8266666666667 304.64 170.6666666666668L331.3066666666666 160.0000000000001C333.8666666666666 160.0000000000001 336.64 160.0000000000001 337.92 162.7733333333334L359.2533333333332 199.6800000000001C360.5333333333332 202.0266666666667 359.8933333333333 204.8000000000001 357.7599999999999 206.5066666666668z" />
+    <glyph glyph-name="message-text"
+      unicode="&#xF369;"
+      horiz-adv-x="512" d=" M426.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V-21.3333333333333L128 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.1333333333334 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333M128 256H384V213.3333333333334H128M298.6666666666667 149.3333333333334H128V192H298.6666666666667M384 277.3333333333334H128V320H384" />
+    <glyph glyph-name="message-text-outline"
+      unicode="&#xF36A;"
+      horiz-adv-x="512" d=" M426.6666666666667 405.3333333333333C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H128L42.6666666666667 -21.3333333333333V362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H426.6666666666667M85.3333333333333 362.6666666666667V81.7066666666667L110.2933333333333 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333M128 298.6666666666667H384V256H128V298.6666666666667M128 213.3333333333334H320V170.6666666666667H128V213.3333333333334z" />
+    <glyph glyph-name="message-video"
+      unicode="&#xF36B;"
+      horiz-adv-x="512" d=" M384 149.3333333333334L298.6666666666667 217.6V149.3333333333334H128V320H298.6666666666667V251.7333333333334L384 320M426.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V-21.3333333333333L128 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="meteor"
+      unicode="&#xF629;"
+      horiz-adv-x="512" d=" M59.7333333333333 384L419.6266666666667 46.5066666666667S426.6666666666667 36.9066666666667 417.7066666666667 27.52C408.9600000000001 18.1333333333333 397.4400000000001 26.24 397.4400000000001 26.24L59.7333333333333 384M166.6133333333333 350.0800000000001L446.08 93.0133333333333S452.9066666666666 83.6266666666667 444.16 74.6666666666667C435.2 64.64 423.68 72.7466666666667 423.68 72.7466666666667L166.6133333333333 350.0800000000001M91.52 277.3333333333334L370.9866666666667 20.6933333333333S377.8133333333334 11.3066666666666 369.0666666666667 1.92C360.1066666666667 -7.6799999999999 348.5866666666667 0 348.5866666666667 0L91.52 277.3333333333334M257.0666666666667 320.8533333333334L452.2666666666667 141.44S456.96 134.8266666666667 450.7733333333334 128C444.8 121.6 436.6933333333334 127.36 436.6933333333334 127.36L257.0666666666667 320.8533333333334M116.2666666666667 193.92L311.4666666666667 14.2933333333334S316.1600000000001 7.6800000000001 310.1866666666667 1.0666666666667C304.0000000000001 -5.5466666666666 295.8933333333334 0 295.8933333333334 0L116.2666666666667 193.92M349.4400000000001 279.04L438.4000000000001 197.5466666666667S440.7466666666668 194.56 437.3333333333334 191.36C434.7733333333334 188.3733333333333 430.7200000000001 190.9333333333334 430.7200000000001 190.9333333333334L349.4400000000001 279.04M161.28 104.5333333333333L250.4533333333333 23.2533333333333S252.8 20.0533333333334 249.6 17.0666666666667C246.6133333333333 13.8666666666667 242.56 16.64 242.56 16.64L161.28 104.5333333333333z" />
+    <glyph glyph-name="metronome"
+      unicode="&#xF7D9;"
+      horiz-adv-x="512" d=" M256 410.6666666666667L182.8266666666667 391.04L86.6133333333334 31.36C85.9733333333333 28.16 85.3333333333333 24.7466666666667 85.3333333333333 21.3333333333334C85.3333333333333 -2.3466666666666 104.32 -21.3333333333333 128 -21.3333333333333H384C407.68 -21.3333333333333 426.6666666666667 -2.3466666666666 426.6666666666667 21.3333333333334C426.6666666666667 24.7466666666667 426.0266666666667 28.16 425.3866666666667 31.36L396.3733333333334 140.3733333333333L362.6666666666667 106.6666666666667L366.9333333333333 85.3333333333334H286.08L346.6666666666667 145.92L316.5866666666667 176L225.92 85.3333333333334H145.0666666666667L219.52 362.6666666666667H292.48L323.6266666666666 246.8266666666667L358.3999999999999 281.8133333333334L329.1733333333333 391.04L256 410.6666666666667M240 341.3333333333334V133.3333333333334L272 165.3333333333334V341.3333333333334H240M422.1866666666666 281.6L361.8133333333334 221.2266666666667L346.6666666666667 236.3733333333334L316.5866666666667 206.0800000000001L376.7466666666667 145.9200000000001L407.04 176.0000000000001L391.8933333333333 191.1466666666667L452.2666666666665 251.5200000000001L422.1866666666666 281.6z" />
+    <glyph glyph-name="metronome-tick"
+      unicode="&#xF7DA;"
+      horiz-adv-x="512" d=" M256 410.6666666666667L182.8266666666667 391.04L86.8266666666667 32C86.6133333333334 32 85.3333333333333 24.7466666666667 85.3333333333333 21.3333333333334C85.3333333333333 -2.3466666666666 104.32 -21.3333333333333 128 -21.3333333333333H384C407.68 -21.3333333333333 426.6666666666667 -2.3466666666666 426.6666666666667 21.3333333333334C426.6666666666667 24.7466666666667 425.3866666666667 32 425.1733333333333 32L329.1733333333333 391.04L256 410.6666666666667M219.52 362.6666666666667H292.48L366.9333333333333 85.3333333333334H277.3333333333333V192H234.6666666666667V85.3333333333334H145.0666666666667L219.52 362.6666666666667M234.6666666666667 341.3333333333334V256H213.3333333333333V213.3333333333334H298.6666666666667V256H277.3333333333333V341.3333333333334H234.6666666666667z" />
+    <glyph glyph-name="micro-sd"
+      unicode="&#xF7DB;"
+      horiz-adv-x="512" d=" M170.6666666666667 405.3333333333333C147.2 405.3333333333333 128 386.1333333333334 128 362.6666666666667V213.3333333333334L85.3333333333333 170.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.1333333333334 407.4666666666667 405.3333333333333 384 405.3333333333333H170.6666666666667M192 362.6666666666667H234.6666666666667V277.3333333333334H192V362.6666666666667M256 362.6666666666667H298.6666666666667V277.3333333333334H256V362.6666666666667M320 362.6666666666667H362.6666666666667V277.3333333333334H320V362.6666666666667z" />
+    <glyph glyph-name="microphone"
+      unicode="&#xF36C;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C291.4133333333333 405.3333333333333 320 376.7466666666667 320 341.3333333333334V213.3333333333334C320 177.92 291.4133333333333 149.3333333333334 256 149.3333333333334S192 177.92 192 213.3333333333334V341.3333333333334C192 376.7466666666667 220.5866666666667 405.3333333333333 256 405.3333333333333M405.3333333333333 213.3333333333334C405.3333333333333 138.0266666666667 349.6533333333333 75.9466666666667 277.3333333333333 65.4933333333333V0H234.6666666666667V65.4933333333333C162.3466666666666 75.9466666666667 106.6666666666667 138.0266666666667 106.6666666666667 213.3333333333334H149.3333333333333C149.3333333333333 154.4533333333334 197.12 106.6666666666667 256 106.6666666666667S362.6666666666667 154.4533333333334 362.6666666666667 213.3333333333334H405.3333333333333z" />
+    <glyph glyph-name="microphone-minus"
+      unicode="&#xF8B2;"
+      horiz-adv-x="512" d=" M192 405.3333333333333C227.4133333333334 405.3333333333333 256 376.7466666666667 256 341.3333333333334V213.3333333333334C256 177.92 227.4133333333334 149.3333333333334 192 149.3333333333334S128 177.92 128 213.3333333333334V341.3333333333334C128 376.7466666666667 156.5866666666667 405.3333333333333 192 405.3333333333333M341.3333333333333 213.3333333333334C341.3333333333333 138.6666666666667 286.72 76.16 213.3333333333333 65.4933333333333V0H170.6666666666667V65.4933333333333C97.28 76.16 42.6666666666667 138.6666666666667 42.6666666666667 213.3333333333334H85.3333333333333C85.3333333333333 154.4533333333334 133.12 106.6666666666667 192 106.6666666666667S298.6666666666667 154.4533333333334 298.6666666666667 213.3333333333334H341.3333333333333M320 341.3333333333334H490.6666666666666V298.6666666666667H320V341.3333333333334z" />
+    <glyph glyph-name="microphone-off"
+      unicode="&#xF36D;"
+      horiz-adv-x="512" d=" M405.3333333333333 213.3333333333334C405.3333333333333 187.9466666666667 398.08 164.2666666666667 386.1333333333334 143.36L359.8933333333333 169.6C365.6533333333333 182.8266666666667 369.0666666666667 197.5466666666667 369.0666666666667 213.3333333333334H405.3333333333333M320 209.92L192 337.4933333333334V341.3333333333334C192 376.7466666666667 220.5866666666667 405.3333333333333 256 405.3333333333333S320 376.7466666666667 320 341.3333333333334V209.92M91.0933333333333 384L448 27.0933333333334L420.9066666666667 0L331.52 89.3866666666667C315.0933333333333 79.5733333333334 296.7466666666667 72.96 277.3333333333333 69.9733333333334V0H234.6666666666667V69.9733333333334C164.6933333333333 80.4266666666667 106.6666666666667 140.5866666666667 106.6666666666667 213.3333333333334H142.9333333333333C142.9333333333333 149.3333333333334 197.12 104.5333333333333 256 104.5333333333333C273.28 104.5333333333333 290.1333333333334 108.5866666666667 305.28 115.6266666666667L269.8666666666667 151.04L256 149.3333333333334C220.5866666666667 149.3333333333334 192 177.92 192 213.3333333333334V228.6933333333334L64 356.9066666666667L91.0933333333333 384z" />
+    <glyph glyph-name="microphone-outline"
+      unicode="&#xF36E;"
+      horiz-adv-x="512" d=" M369.0666666666667 213.3333333333334C369.0666666666667 149.3333333333334 314.88 104.5333333333333 256 104.5333333333333S142.9333333333333 149.3333333333334 142.9333333333333 213.3333333333334H106.6666666666667C106.6666666666667 140.5866666666667 164.6933333333333 80.4266666666667 234.6666666666667 69.9733333333334V0H277.3333333333333V69.9733333333334C347.3066666666667 80.4266666666667 405.3333333333333 140.5866666666667 405.3333333333333 213.3333333333334M230.4 343.4666666666667C230.4 357.5466666666667 241.92 369.0666666666667 256 369.0666666666667C270.08 369.0666666666667 281.6 357.5466666666667 281.6 343.4666666666667L281.3866666666667 211.2C281.3866666666667 197.12 270.08 185.6 256 185.6C241.92 185.6 230.4 197.12 230.4 211.2M256 149.3333333333334C291.4133333333333 149.3333333333334 320 177.92 320 213.3333333333334V341.3333333333334C320 376.7466666666667 291.4133333333333 405.3333333333333 256 405.3333333333333S192 376.7466666666667 192 341.3333333333334V213.3333333333334C192 177.92 220.5866666666667 149.3333333333334 256 149.3333333333334z" />
+    <glyph glyph-name="microphone-plus"
+      unicode="&#xF8B3;"
+      horiz-adv-x="512" d=" M192 405.3333333333333C227.4133333333334 405.3333333333333 256 376.7466666666667 256 341.3333333333334V213.3333333333334C256 177.92 227.4133333333334 149.3333333333334 192 149.3333333333334S128 177.92 128 213.3333333333334V341.3333333333334C128 376.7466666666667 156.5866666666667 405.3333333333333 192 405.3333333333333M341.3333333333333 213.3333333333334C341.3333333333333 138.6666666666667 286.72 76.16 213.3333333333333 65.4933333333333V0H170.6666666666667V65.4933333333333C97.28 76.16 42.6666666666667 138.6666666666667 42.6666666666667 213.3333333333334H85.3333333333333C85.3333333333333 154.4533333333334 133.12 106.6666666666667 192 106.6666666666667S298.6666666666667 154.4533333333334 298.6666666666667 213.3333333333334H341.3333333333333M320 341.3333333333334H384V405.3333333333333H426.6666666666667V341.3333333333334H490.6666666666666V298.6666666666667H426.6666666666667V234.6666666666667H384V298.6666666666667H320V341.3333333333334z" />
+    <glyph glyph-name="microphone-settings"
+      unicode="&#xF36F;"
+      horiz-adv-x="512" d=" M405.3333333333333 234.6666666666667H369.0666666666667C369.0666666666667 170.6666666666667 314.88 125.8666666666667 256 125.8666666666667S142.9333333333333 170.6666666666667 142.9333333333333 234.6666666666667H106.6666666666667C106.6666666666667 161.92 164.6933333333333 101.76 234.6666666666667 91.3066666666667V21.3333333333334H277.3333333333333V91.3066666666667C347.3066666666667 101.76 405.3333333333333 161.9200000000001 405.3333333333333 234.6666666666667M320 -64H362.6666666666667V-21.3333333333333H320M234.6666666666667 -64H277.3333333333333V-21.3333333333333H234.6666666666667M256 170.6666666666667C291.4133333333333 170.6666666666667 320 199.2533333333333 320 234.6666666666667V362.6666666666667C320 398.08 291.4133333333333 426.6666666666667 256 426.6666666666667S192 398.08 192 362.6666666666667V234.6666666666667C192 199.2533333333333 220.5866666666667 170.6666666666667 256 170.6666666666667M149.3333333333333 -64H192V-21.3333333333333H149.3333333333333V-64z" />
+    <glyph glyph-name="microphone-variant"
+      unicode="&#xF370;"
+      horiz-adv-x="512" d=" M192 384C239.1466666666667 384 277.3333333333333 345.8133333333334 277.3333333333333 298.6666666666667H106.6666666666667C106.6666666666667 345.8133333333334 144.8533333333333 384 192 384M252.5866666666667 238.5066666666667L234.6666666666667 64H213.3333333333333V42.6666666666667C213.3333333333333 19.2 232.5333333333334 0 256 0S298.6666666666667 19.2 298.6666666666667 42.6666666666667V149.3333333333334C298.6666666666667 196.48 336.8533333333333 234.6666666666667 384 234.6666666666667H426.6666666666667L405.3333333333333 213.3333333333334L426.6666666666667 192H384C360.5333333333333 192 341.3333333333333 172.8 341.3333333333333 149.3333333333334V42.6666666666667C341.3333333333333 -4.48 303.1466666666667 -42.6666666666666 256 -42.6666666666666S170.6666666666667 -4.48 170.6666666666667 42.6666666666667V64H149.3333333333333L131.4133333333333 238.5066666666667C120.96 249.1733333333334 113.28 262.4000000000001 109.44 277.3333333333334H274.56C270.7200000000001 262.4000000000001 263.04 249.1733333333334 252.5866666666667 238.5066666666667M192 213.3333333333334C180.2666666666667 213.3333333333334 170.6666666666667 203.7333333333334 170.6666666666667 192S180.2666666666667 170.6666666666667 192 170.6666666666667S213.3333333333333 180.2666666666667 213.3333333333333 192S203.7333333333334 213.3333333333334 192 213.3333333333334z" />
+    <glyph glyph-name="microphone-variant-off"
+      unicode="&#xF371;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L341.3333333333333 37.12C338.3466666666667 -7.4666666666667 301.2266666666667 -42.6666666666666 256 -42.6666666666666C208.8533333333333 -42.6666666666666 170.6666666666667 -4.48 170.6666666666667 42.6666666666667V64H149.3333333333333L131.4133333333333 238.5066666666667C124.16 245.9733333333334 117.9733333333333 254.72 113.7066666666667 264.5333333333334L42.6666666666667 335.5733333333334M192 384C239.1466666666667 384 277.3333333333333 345.8133333333334 277.3333333333333 298.6666666666667H188.16L129.7066666666667 357.12C145.28 373.3333333333334 167.4666666666667 384 192 384M252.5866666666667 238.5066666666667L252.16 234.6666666666667L209.4933333333334 277.3333333333334H274.56C270.7200000000001 262.4000000000001 263.04 249.1733333333334 252.5866666666667 238.5066666666667M234.6666666666667 64H213.3333333333333V42.6666666666667C213.3333333333333 19.2 232.5333333333334 0 256 0S298.6666666666667 19.2 298.6666666666667 42.6666666666667V79.5733333333334L242.1333333333334 136.1066666666667L234.6666666666667 64M384 234.6666666666667H426.6666666666667L405.3333333333333 213.3333333333334L426.6666666666667 192H384C360.5333333333333 192 341.3333333333333 172.8 341.3333333333333 149.3333333333334V145.4933333333334L305.0666666666667 181.3333333333334C317.8666666666667 213.3333333333334 348.3733333333333 234.6666666666667 384 234.6666666666667M170.6666666666667 192C170.6666666666667 180.2666666666667 180.2666666666667 170.6666666666667 192 170.6666666666667C196.48 170.6666666666667 200.5333333333333 171.9466666666667 203.9466666666667 174.2933333333334L174.2933333333333 203.9466666666667C171.9466666666667 200.5333333333334 170.6666666666667 196.48 170.6666666666667 192z" />
+    <glyph glyph-name="microscope"
+      unicode="&#xF654;"
+      horiz-adv-x="512" d=" M201.8133333333333 314.0266666666667L235.7333333333334 256C180.6933333333333 250.4533333333334 138.6666666666667 204.5866666666667 138.6666666666667 149.3333333333334C138.6666666666667 90.4533333333334 186.4533333333334 42.6666666666667 245.3333333333333 42.6666666666667C289.0666666666667 42.6666666666667 326.6133333333334 68.9066666666667 343.04 106.6666666666667H288V149.3333333333334H458.6666666666666V106.6666666666667H410.6666666666667C401.92 73.1733333333334 383.36 43.52 358.1866666666666 21.3333333333334H416V-21.3333333333333H74.6666666666667V21.3333333333334H132.48C97.0666666666667 52.6933333333333 74.6666666666667 98.3466666666667 74.6666666666667 149.3333333333334C74.6666666666667 226.7733333333333 127.1466666666667 294.4 201.8133333333333 314.0266666666667M271.7866666666667 403.84L288 376.1066666666667L306.3466666666667 386.7733333333333L381.0133333333333 257.4933333333334L306.9866666666666 214.8266666666667L232.32 344.1066666666667L250.88 354.7733333333333L234.6666666666667 382.5066666666667L271.7866666666667 403.84z" />
+    <glyph glyph-name="microsoft"
+      unicode="&#xF372;"
+      horiz-adv-x="512" d=" M42.6666666666667 384H234.6666666666667V192H42.6666666666667V384M234.6666666666667 -21.3333333333333H42.6666666666667V170.6666666666667H234.6666666666667V-21.3333333333333M448 384V192H256V384H448M448 -21.3333333333333H256V170.6666666666667H448V-21.3333333333333z" />
+    <glyph glyph-name="microsoft-dynamics"
+      unicode="&#xF987;"
+      horiz-adv-x="512" d=" M128 405.3333333333333L368 266.6666666666667L288 202.6666666666667L128 277.3333333333334V405.3333333333333M128 256L202.6666666666667 208L128 -21.3333333333333L384 256V128L128 -21.3333333333333V256z" />
+    <glyph glyph-name="midi"
+      unicode="&#xF8F0;"
+      horiz-adv-x="512" d=" M213.3333333333333 298.6666666666667H256V128H213.3333333333333V298.6666666666667M277.3333333333333 298.6666666666667H405.3333333333333C417.0666666666667 298.6666666666667 426.6666666666667 289.0666666666667 426.6666666666667 277.3333333333334V149.3333333333334C426.6666666666667 137.6 417.0666666666667 128 405.3333333333333 128H277.3333333333333V234.6666666666667H320V170.6666666666667H384V256H277.3333333333333V298.6666666666667M448 298.6666666666667H490.6666666666666V128H448V298.6666666666667M21.3333333333333 298.6666666666667H170.6666666666667C182.4 298.6666666666667 192 289.0666666666667 192 277.3333333333334V128H149.3333333333333V256H128V128H85.3333333333333V256H64V128H21.3333333333333V298.6666666666667M21.3333333333333 106.6666666666667H490.6666666666666V42.6666666666667H21.3333333333333V106.6666666666667z" />
+    <glyph glyph-name="midi-port"
+      unicode="&#xF8F1;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M430.5066666666667 192C430.5066666666667 273.4933333333334 374.4 342.1866666666667 298.6666666666667 361.1733333333334V320H213.3333333333333V361.1733333333334C137.6 342.1866666666667 81.4933333333333 273.4933333333334 81.4933333333333 192C81.4933333333333 95.5733333333334 159.5733333333333 17.4933333333333 256 17.4933333333333S430.5066666666667 95.5733333333334 430.5066666666667 192M149.3333333333333 221.0133333333333C165.3333333333333 221.0133333333333 178.3466666666666 208 178.3466666666666 192C178.3466666666666 176 165.3333333333333 162.9866666666667 149.3333333333333 162.9866666666667C133.3333333333333 162.9866666666667 120.32 176 120.32 192C120.32 208 133.3333333333333 221.0133333333333 149.3333333333333 221.0133333333333M362.6666666666667 221.0133333333333C378.6666666666667 221.0133333333333 391.68 208 391.68 192C391.68 176 378.6666666666667 162.9866666666667 362.6666666666667 162.9866666666667C346.6666666666667 162.9866666666667 333.6533333333333 176 333.6533333333333 192C333.6533333333333 208 346.6666666666667 221.0133333333333 362.6666666666667 221.0133333333333M178.3466666666666 143.5733333333334C194.56 143.5733333333334 207.5733333333333 130.5600000000001 207.5733333333333 114.3466666666667C207.5733333333333 98.3466666666667 194.56 85.3333333333334 178.3466666666666 85.3333333333334C162.3466666666667 85.3333333333334 149.3333333333333 98.3466666666667 149.3333333333333 114.3466666666667C149.3333333333333 130.56 162.3466666666667 143.5733333333334 178.3466666666666 143.5733333333334M333.6533333333333 143.5733333333334C349.6533333333333 143.5733333333334 362.6666666666667 130.5600000000001 362.6666666666667 114.3466666666667C362.6666666666667 98.3466666666667 349.6533333333333 85.3333333333334 333.6533333333333 85.3333333333334C317.44 85.3333333333334 304.4266666666666 98.3466666666667 304.4266666666666 114.3466666666667C304.4266666666666 130.56 317.44 143.5733333333334 333.6533333333333 143.5733333333334M256 114.3466666666667C272 114.3466666666667 285.0133333333333 101.3333333333334 285.0133333333333 85.3333333333334C285.0133333333333 69.3333333333334 272 56.3200000000001 256 56.3200000000001C240 56.3200000000001 226.9866666666667 69.3333333333334 226.9866666666667 85.3333333333334C226.9866666666667 101.3333333333334 240 114.3466666666667 256 114.3466666666667z" />
+    <glyph glyph-name="minecraft"
+      unicode="&#xF373;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M128 320V234.6666666666667H213.3333333333333V192H170.6666666666667V64H213.3333333333333V106.6666666666667H298.6666666666667V64H341.3333333333333V192H298.6666666666667V234.6666666666667H384V320H298.6666666666667V234.6666666666667H213.3333333333333V320H128z" />
+    <glyph glyph-name="mini-sd"
+      unicode="&#xFA04;"
+      horiz-adv-x="512" d=" M128 362.6666666666667C104.5333333333333 362.6666666666667 85.3333333333333 343.4666666666667 85.3333333333333 320V64C85.3333333333333 40.5333333333333 104.5333333333333 21.3333333333334 128 21.3333333333334H384C407.4666666666667 21.3333333333334 426.6666666666667 40.5333333333333 426.6666666666667 64V192L384 234.6666666666667V320C384 343.4666666666667 364.8 362.6666666666667 341.3333333333333 362.6666666666667H128M149.3333333333333 320H192V234.6666666666667H149.3333333333333V320M213.3333333333333 320H256V234.6666666666667H213.3333333333333V320M277.3333333333333 320H320V234.6666666666667H277.3333333333333V320z" />
+    <glyph glyph-name="minidisc"
+      unicode="&#xFA05;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384H106.6666666666667M256 341.3333333333334C321.92 341.3333333333334 380.16 297.8133333333334 398.9333333333333 234.6666666666667H341.3333333333333C329.6 234.6666666666667 320 225.0666666666667 320 213.3333333333334V170.6666666666667C320 158.9333333333333 329.6 149.3333333333334 341.3333333333333 149.3333333333334H399.1466666666667C380.16 85.9733333333334 321.92 42.6666666666667 256 42.6666666666667C173.44 42.6666666666667 106.6666666666667 109.44 106.6666666666667 192S173.44 341.3333333333334 256 341.3333333333334M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="minus"
+      unicode="&#xF374;"
+      horiz-adv-x="512" d=" M405.3333333333333 170.6666666666667H106.6666666666667V213.3333333333334H405.3333333333333V170.6666666666667z" />
+    <glyph glyph-name="minus-box"
+      unicode="&#xF375;"
+      horiz-adv-x="512" d=" M362.6666666666667 170.6666666666667H149.3333333333333V213.3333333333334H362.6666666666667M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="minus-box-outline"
+      unicode="&#xF6F1;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667V341.3333333333334H106.6666666666667V42.6666666666667H405.3333333333333M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 83.2 384 106.6666666666667 384H405.3333333333333M362.6666666666667 213.3333333333334V170.6666666666667H149.3333333333333V213.3333333333334H362.6666666666667z" />
+    <glyph glyph-name="minus-circle"
+      unicode="&#xF376;"
+      horiz-adv-x="512" d=" M362.6666666666667 170.6666666666667H149.3333333333333V213.3333333333334H362.6666666666667M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="minus-circle-outline"
+      unicode="&#xF377;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C161.92 21.3333333333334 85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667S426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M149.3333333333333 170.6666666666667H362.6666666666667V213.3333333333334H149.3333333333333" />
+    <glyph glyph-name="minus-network"
+      unicode="&#xF378;"
+      horiz-adv-x="512" d=" M341.3333333333333 213.3333333333334V256H170.6666666666667V213.3333333333334H341.3333333333333M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V128C405.3333333333333 104.5333333333333 386.1333333333334 85.3333333333334 362.6666666666667 85.3333333333334H277.3333333333333V42.6666666666667H298.6666666666667C310.4 42.6666666666667 320 33.0666666666667 320 21.3333333333334H469.3333333333333V-21.3333333333333H320C320 -33.0666666666667 310.4 -42.6666666666666 298.6666666666667 -42.6666666666666H213.3333333333333C201.6 -42.6666666666666 192 -33.0666666666667 192 -21.3333333333333H42.6666666666667V21.3333333333334H192C192 33.0666666666667 201.6 42.6666666666667 213.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H149.3333333333333C125.6533333333333 85.3333333333334 106.6666666666667 104.5333333333333 106.6666666666667 128V341.3333333333334C106.6666666666667 364.8 125.8666666666667 384 149.3333333333333 384H362.6666666666667z" />
+    <glyph glyph-name="mixcloud"
+      unicode="&#xF62A;"
+      horiz-adv-x="512" d=" M450.3466666666667 53.3333333333334C447.36 53.3333333333334 444.3733333333333 54.6133333333333 441.8133333333334 56.3200000000001C434.56 61.2266666666667 432.64 70.8266666666667 437.3333333333333 78.08C451.84 99.4133333333334 459.52 124.5866666666667 459.52 150.8266666666667C459.52 176.8533333333334 451.84 202.0266666666667 437.3333333333333 224C432.64 230.8266666666667 434.56 240.4266666666667 441.8133333333334 245.3333333333334C448.8533333333333 250.0266666666667 458.6666666666666 248.1066666666667 463.36 241.0666666666667C481.28 214.4 490.6666666666667 183.2533333333333 490.6666666666667 150.8266666666667C490.6666666666667 118.4 481.28 87.2533333333333 463.36 60.5866666666667C460.3733333333333 56.1066666666667 455.4666666666667 53.3333333333334 450.3466666666667 53.3333333333334M405.3333333333333 79.1466666666667C402.7733333333333 79.1466666666667 399.7866666666667 80 397.0133333333333 81.7066666666667C389.9733333333334 86.6133333333334 388.0533333333333 96.0000000000001 392.9599999999999 103.4666666666667C402.3466666666667 117.3333333333334 407.4666666666666 133.7600000000001 407.4666666666666 150.8266666666667C407.4666666666666 167.6800000000001 402.3466666666667 184.1066666666668 392.9599999999999 198.1866666666667C388.0533333333333 205.4400000000001 389.9733333333333 215.0400000000001 397.0133333333333 219.9466666666667C404.2666666666667 224.6400000000001 413.8666666666666 222.9333333333334 418.7733333333333 215.6800000000001C431.7866666666667 196.4800000000001 438.6133333333333 174.0800000000001 438.6133333333333 150.8266666666668C438.6133333333333 128.0000000000001 431.7866666666667 105.1733333333334 418.7733333333333 85.9733333333335C416 81.4933333333335 410.6666666666667 79.1466666666668 405.3333333333333 79.1466666666668M317.8666666666667 112.4266666666668C338.9866666666667 112.4266666666668 356.2666666666667 129.7066666666668 356.2666666666667 150.8266666666668C356.2666666666667 167.0400000000001 346.0266666666667 181.3333333333335 331.7333333333333 186.6666666666668C330.6666666666667 180.2666666666668 329.1733333333333 173.8666666666668 327.2533333333333 167.6800000000001C324.9066666666667 161.2800000000001 318.9333333333333 157.0133333333334 312.32 157.0133333333334C310.8266666666666 157.0133333333334 309.3333333333333 157.4400000000001 307.4133333333333 157.8666666666668C299.3066666666666 160.6400000000001 294.8266666666666 169.3866666666668 297.5999999999999 177.7066666666668C300.5866666666666 186.8800000000001 302.2933333333333 196.6933333333335 302.2933333333333 206.5066666666668C302.2933333333333 257.4933333333334 260.6933333333334 298.6666666666667 209.4933333333334 298.6666666666667C172.8 298.6666666666667 139.9466666666667 277.3333333333334 125.2266666666667 245.3333333333334C139.52 241.0666666666667 152.7466666666667 233.8133333333334 163.4133333333333 223.1466666666667C169.6 216.96 169.6 207.1466666666667 163.4133333333333 200.96C157.44 194.9866666666667 147.4133333333333 194.9866666666667 141.44 200.96C131.6266666666667 210.7733333333334 118.6133333333333 216.3200000000001 104.5333333333333 216.3200000000001C75.9466666666667 216.3200000000001 52.48 192.8533333333334 52.48 164.2666666666668C52.48 135.6800000000001 75.9466666666667 112.4266666666667 104.5333333333333 112.4266666666667H317.8666666666667M332.8 218.6666666666668C363.9466666666666 211.8400000000001 387.6266666666666 184.1066666666668 387.6266666666666 150.8266666666668C387.6266666666666 112.4266666666667 356.2666666666667 81.2800000000001 317.8666666666666 81.2800000000001H104.5333333333333C58.6666666666666 81.2800000000001 21.3333333333333 118.4000000000001 21.3333333333333 164.2666666666668C21.3333333333333 206.0800000000001 52.2666666666666 240.4266666666668 92.3733333333333 246.4000000000001C109.2266666666666 296.1066666666668 156.3733333333333 330.6666666666668 209.4933333333333 330.6666666666668C273.7066666666666 330.6666666666668 326.6133333333333 281.1733333333334 332.8 218.6666666666668z" />
+    <glyph glyph-name="mixed-reality"
+      unicode="&#xF87E;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M176 128H208L229.3333333333333 201.1733333333334V128H261.3333333333333V256H213.3333333333333L192 182.8266666666667L170.6666666666667 256H122.6666666666667V128H154.6666666666667V201.1733333333334L176 128M288 256V128H320V170.6666666666667H344.5333333333333L362.6666666666667 128H394.6666666666667L375.4666666666667 172.8C386.1333333333334 178.1333333333333 394.6666666666667 189.8666666666667 394.6666666666667 202.6666666666667V224C394.6666666666667 242.1333333333334 380.8 256 362.6666666666667 256H288M320 224H362.6666666666667V202.6666666666667H320V224z" />
+    <glyph glyph-name="mixer"
+      unicode="&#xF7DC;"
+      horiz-adv-x="512" d=" M121.1733333333333 363.52L243.4133333333334 199.4666666666667C246.4 195.4133333333334 246.4 189.8666666666667 243.4133333333334 185.8133333333333L120.5333333333333 21.3333333333334L117.3333333333333 17.4933333333333C101.5466666666667 0 74.0266666666667 -1.4933333333333 56.32 14.72C39.4666666666667 30.08 38.1866666666667 56.1066666666667 51.84 74.6666666666667L139.9466666666667 192.6400000000001L52.48 309.9733333333334C39.04 328.1066666666667 40.1066666666667 354.3466666666667 56.96 369.7066666666667L60.16 372.48C79.5733333333334 386.7733333333334 106.6666666666667 382.9333333333334 121.1733333333334 363.5200000000001M390.8266666666667 363.5200000000001C405.3333333333333 382.9333333333334 432.4266666666666 386.7733333333334 451.84 372.48L455.04 369.7066666666667C471.8933333333333 354.3466666666667 472.9599999999999 328.3200000000001 459.52 309.9733333333334L372.0533333333333 192.6400000000001L460.1599999999999 74.6666666666667C473.8133333333333 56.3200000000001 472.5333333333332 30.08 455.6799999999999 14.72C437.9733333333333 -1.4933333333333 410.4533333333332 0 394.6666666666666 17.4933333333333L391.4666666666666 21.3333333333334L268.5866666666666 185.8133333333334C265.5999999999999 189.8666666666667 265.5999999999999 195.4133333333334 268.5866666666666 199.4666666666667L390.8266666666667 363.5200000000001z" />
+    <glyph glyph-name="molecule"
+      unicode="&#xFB88;"
+      horiz-adv-x="512" d=" M155.0933333333333 234.6666666666667L192 298.6666666666667H307.6266666666667L332.3733333333334 341.3333333333334L330.6666666666667 352C330.6666666666667 369.7066666666667 344.9600000000001 384 362.6666666666667 384S394.6666666666667 369.7066666666667 394.6666666666667 352C394.6666666666667 336.8533333333334 384 324.0533333333334 369.7066666666666 320.8533333333334L349.2266666666666 285.2266666666667L378.24 234.6666666666667L396.5866666666667 266.6666666666667L394.6666666666667 277.3333333333334C394.6666666666667 295.04 408.9600000000001 309.3333333333334 426.6666666666667 309.3333333333334S458.6666666666666 295.04 458.6666666666666 277.3333333333334C458.6666666666666 262.1866666666667 448 249.6 434.1333333333334 246.1866666666667L402.9866666666667 192L439.8933333333333 128C456.32 126.5066666666667 469.3333333333333 112.8533333333334 469.3333333333333 96C469.3333333333333 78.2933333333334 455.04 64 437.3333333333333 64S405.3333333333333 78.2933333333334 405.3333333333333 96V101.5466666666667L378.24 149.3333333333334L349.2266666666667 98.7733333333333L369.7066666666667 63.1466666666667C384.0000000000001 59.9466666666667 394.6666666666667 47.1466666666667 394.6666666666667 32C394.6666666666667 14.2933333333334 380.3733333333333 0 362.6666666666667 0S330.6666666666667 14.2933333333334 330.6666666666667 32L332.3733333333334 42.6666666666667L307.6266666666667 85.3333333333334H225.7066666666667L200.96 42.6666666666667L202.6666666666667 32C202.6666666666667 14.2933333333334 188.3733333333333 0 170.6666666666667 0S138.6666666666667 14.2933333333334 138.6666666666667 32C138.6666666666667 47.1466666666667 149.3333333333333 59.9466666666667 163.6266666666667 63.1466666666667L184.1066666666666 98.7733333333334L93.44 256C77.0133333333333 257.4933333333334 64 271.1466666666667 64 288C64 305.7066666666667 78.2933333333333 320 96 320S128 305.7066666666667 128 288V282.4533333333334L155.0933333333333 234.6666666666667M216.5333333333333 256L179.6266666666666 192L216.5333333333333 128H316.8L353.7066666666666 192L316.8 256H216.5333333333333z" />
+    <glyph glyph-name="monitor"
+      unicode="&#xF379;"
+      horiz-adv-x="512" d=" M448 106.6666666666667H64V362.6666666666667H448M448 405.3333333333333H64C40.32 405.3333333333333 21.3333333333333 386.3466666666667 21.3333333333333 362.6666666666667V106.6666666666667C21.3333333333333 83.2 40.5333333333333 64 64 64H213.3333333333333V21.3333333333334H170.6666666666667V-21.3333333333333H341.3333333333333V21.3333333333334H298.6666666666667V64H448C471.4666666666667 64 490.6666666666666 83.2 490.6666666666666 106.6666666666667V362.6666666666667C490.6666666666666 386.3466666666667 471.4666666666667 405.3333333333333 448 405.3333333333333z" />
+    <glyph glyph-name="monitor-cellphone"
+      unicode="&#xF988;"
+      horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H384C372.2666666666667 213.3333333333334 362.6666666666667 203.7333333333334 362.6666666666667 192V0C362.6666666666667 -11.7333333333333 372.2666666666667 -21.3333333333333 384 -21.3333333333333H490.6666666666666C502.4 -21.3333333333333 512 -11.7333333333333 512 0V192C512 203.7333333333334 502.4 213.3333333333334 490.6666666666666 213.3333333333334M490.6666666666666 21.3333333333334H384V170.6666666666667H490.6666666666666V21.3333333333334M426.6666666666667 405.3333333333333H42.6666666666667C18.9866666666667 405.3333333333333 0 386.3466666666667 0 362.6666666666667V106.6666666666667C0 83.2 19.2 64 42.6666666666667 64H192V21.3333333333334H149.3333333333333V-21.3333333333333H320V21.3333333333334H277.3333333333333V64H320V106.6666666666667H42.6666666666667V362.6666666666667H426.6666666666667V256H469.3333333333333V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="monitor-cellphone-star"
+      unicode="&#xF989;"
+      horiz-adv-x="512" d=" M490.6666666666666 213.3333333333334H384C372.2666666666667 213.3333333333334 362.6666666666667 203.7333333333334 362.6666666666667 192V0C362.6666666666667 -11.7333333333333 372.2666666666667 -21.3333333333333 384 -21.3333333333333H490.6666666666666C502.4 -21.3333333333333 512 -11.7333333333333 512 0V192C512 203.7333333333334 502.4 213.3333333333334 490.6666666666666 213.3333333333334M490.6666666666666 21.3333333333334H384V170.6666666666667H490.6666666666666V21.3333333333334M426.6666666666667 405.3333333333333H42.6666666666667C18.9866666666667 405.3333333333333 0 386.3466666666667 0 362.6666666666667V106.6666666666667C0 83.2 19.2 64 42.6666666666667 64H192V21.3333333333334H149.3333333333333V-21.3333333333333H320V21.3333333333334H277.3333333333333V64H320V106.6666666666667H42.6666666666667V362.6666666666667H426.6666666666667V256H469.3333333333333V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333M255.36 256L234.6666666666667 320L213.9733333333333 256H149.3333333333333L202.0266666666667 218.4533333333334L181.9733333333334 156.3733333333333L234.6666666666667 194.7733333333334L287.36 156.3733333333333L267.3066666666668 218.4533333333334L320 256H255.36z" />
+    <glyph glyph-name="monitor-dashboard"
+      unicode="&#xFA06;"
+      horiz-adv-x="512" d=" M448 106.6666666666667V362.6666666666667H64V106.6666666666667H448M448 405.3333333333333C471.4666666666667 405.3333333333333 490.6666666666666 386.1333333333334 490.6666666666666 362.6666666666667V106.6666666666667C490.6666666666666 83.2 471.4666666666667 64 448 64H298.6666666666667V21.3333333333334H341.3333333333333V-21.3333333333333H170.6666666666667V21.3333333333334H213.3333333333333V64H64C40.32 64 21.3333333333333 83.2 21.3333333333333 106.6666666666667V362.6666666666667C21.3333333333333 386.3466666666667 40.32 405.3333333333333 64 405.3333333333333H448M106.6666666666667 320H298.6666666666667V213.3333333333334H106.6666666666667V320M320 320H405.3333333333333V277.3333333333334H320V320M405.3333333333333 256V149.3333333333334H320V256H405.3333333333333M106.6666666666667 192H192V149.3333333333334H106.6666666666667V192M213.3333333333333 192H298.6666666666667V149.3333333333334H213.3333333333333V192z" />
+    <glyph glyph-name="monitor-multiple"
+      unicode="&#xF37A;"
+      horiz-adv-x="512" d=" M469.3333333333333 85.3333333333334V298.6666666666667H128V85.3333333333334H469.3333333333333M469.3333333333333 341.3333333333334C492.8 341.3333333333334 512 322.1333333333334 512 298.6666666666667V85.3333333333334C512 61.6533333333334 492.8 42.6666666666667 469.3333333333333 42.6666666666667H341.3333333333333V0H384V-42.6666666666666H213.3333333333333V0H256V42.6666666666667H128C104.32 42.6666666666667 85.3333333333333 61.6533333333334 85.3333333333333 85.3333333333334V298.6666666666667C85.3333333333333 322.1333333333334 104.5333333333333 341.3333333333334 128 341.3333333333334H469.3333333333333M42.6666666666667 384V128H0V384C0 407.4666666666667 19.2 426.6666666666667 42.6666666666667 426.6666666666667H426.6666666666667V384H42.6666666666667z" />
+    <glyph glyph-name="more"
+      unicode="&#xF37B;"
+      horiz-adv-x="512" d=" M405.3333333333333 160C387.6266666666667 160 373.3333333333333 174.2933333333334 373.3333333333333 192S387.6266666666667 224 405.3333333333333 224S437.3333333333333 209.7066666666667 437.3333333333333 192S423.04 160 405.3333333333333 160M298.6666666666667 160C280.96 160 266.6666666666667 174.2933333333334 266.6666666666667 192S280.96 224 298.6666666666667 224S330.6666666666667 209.7066666666667 330.6666666666667 192S316.3733333333334 160 298.6666666666667 160M192 160C174.2933333333333 160 160 174.2933333333334 160 192S174.2933333333333 224 192 224S224 209.7066666666667 224 192S209.7066666666667 160 192 160M469.3333333333333 384H149.3333333333333C134.6133333333334 384 123.0933333333333 376.5333333333333 115.4133333333333 365.2266666666667L0 192L115.4133333333333 18.9866666666667C123.0933333333333 7.68 135.8933333333333 0 150.6133333333334 0H469.3333333333333C492.8 0 512 19.2 512 42.6666666666667V341.3333333333334C512 365.0133333333333 492.8 384 469.3333333333333 384z" />
+    <glyph glyph-name="motorbike"
+      unicode="&#xF37C;"
+      horiz-adv-x="512" d=" M371.6266666666667 234.6666666666667L286.0800000000001 320H192V277.3333333333334H268.5866666666667L311.2533333333334 234.6666666666667H138.6666666666667C85.3333333333333 234.6666666666667 42.6666666666667 192 42.6666666666667 138.6666666666667S85.3333333333333 42.6666666666667 138.6666666666667 42.6666666666667C186.0266666666667 42.6666666666667 225.28 77.2266666666667 232.96 122.24L278.1866666666666 149.3333333333334C277.3333333333333 145.7066666666667 277.3333333333333 142.2933333333334 277.3333333333333 138.6666666666667C277.3333333333333 85.3333333333334 320 42.6666666666667 373.3333333333333 42.6666666666667S469.3333333333333 85.3333333333334 469.3333333333333 138.6666666666667S426.6666666666667 234.6666666666667 373.3333333333333 234.6666666666667M188.5866666666667 122.4533333333334C181.3333333333333 100.9066666666667 161.7066666666667 85.3333333333334 138.0266666666667 85.3333333333334C108.5866666666667 85.3333333333334 84.6933333333333 109.2266666666667 84.6933333333333 138.6666666666667S108.5866666666667 192 138.0266666666667 192C161.92 192 181.3333333333333 176.2133333333334 188.5866666666667 154.6666666666667H128V122.6666666666667L188.5866666666667 122.4533333333334M372.6933333333333 85.3333333333334C343.2533333333334 85.3333333333334 319.36 109.2266666666667 319.36 138.6666666666667S343.2533333333334 192 372.6933333333333 192S426.0266666666667 168.1066666666667 426.0266666666667 138.6666666666667S402.1333333333333 85.3333333333334 372.6933333333333 85.3333333333334z" />
+    <glyph glyph-name="mouse"
+      unicode="&#xF37D;"
+      horiz-adv-x="512" d=" M234.6666666666667 425.1733333333334C150.4 414.7200000000001 85.3333333333333 343.04 85.3333333333333 256H234.6666666666667M85.3333333333333 128C85.3333333333333 33.7066666666667 161.7066666666667 -42.6666666666666 256 -42.6666666666666S426.6666666666667 33.7066666666667 426.6666666666667 128V213.3333333333334H85.3333333333333M277.3333333333333 425.1733333333334V256H426.6666666666667C426.6666666666667 343.04 361.3866666666667 414.7200000000001 277.3333333333333 425.1733333333334z" />
+    <glyph glyph-name="mouse-bluetooth"
+      unicode="&#xF98A;"
+      horiz-adv-x="512" d=" M426.6666666666667 298.6666666666667H437.3333333333333L498.1333333333333 237.8666666666667L452.48 192L498.1333333333333 146.3466666666667L437.3333333333333 85.3333333333334H426.6666666666667V166.1866666666667L377.8133333333334 117.3333333333334L362.6666666666667 132.48L422.1866666666666 192L362.6666666666667 251.52L377.8133333333334 266.6666666666667L426.6666666666667 217.8133333333334V298.6666666666667M448 257.92V217.8133333333334L468.0533333333333 237.8666666666667L448 257.92M448 166.1866666666667V126.2933333333333L468.0533333333333 146.3466666666666L448 166.1866666666666M320 256V234.6666666666667H192V403.8400000000001C264.32 393.3866666666667 320 331.3066666666667 320 256M21.3333333333333 234.6666666666667V256C21.3333333333333 331.3066666666667 77.0133333333333 393.3866666666667 149.3333333333333 403.84V234.6666666666667H21.3333333333333M320 128C320 45.44 253.2266666666667 -21.3333333333333 170.6666666666667 -21.3333333333333S21.3333333333333 45.44 21.3333333333333 128V192H320V128z" />
+    <glyph glyph-name="mouse-off"
+      unicode="&#xF37E;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L373.3333333333333 4.48C343.04 -24.7466666666667 301.6533333333333 -42.6666666666666 256 -42.6666666666666C161.7066666666667 -42.6666666666666 85.3333333333333 33.7066666666667 85.3333333333333 128V213.3333333333334H164.9066666666667L122.24 256H85.3333333333333C85.3333333333333 267.52 86.4 278.8266666666667 88.5333333333333 289.7066666666667L42.6666666666667 335.5733333333334M234.6666666666667 425.1733333333334V256H230.8266666666667L123.52 363.52C150.4 396.8 189.8666666666667 419.6266666666667 234.6666666666667 425.1733333333334M426.6666666666667 213.3333333333334V128C426.6666666666667 107.7333333333334 423.04 88.3200000000001 416.64 70.1866666666667L273.4933333333334 213.3333333333334H426.6666666666667M277.3333333333333 425.1733333333334C361.3866666666667 414.7200000000001 426.6666666666667 343.04 426.6666666666667 256H277.3333333333333V425.1733333333334z" />
+    <glyph glyph-name="mouse-variant"
+      unicode="&#xF37F;"
+      horiz-adv-x="512" d=" M298.6666666666667 298.6666666666667H213.3333333333333V403.2C261.9733333333333 393.3866666666667 298.6666666666667 350.2933333333334 298.6666666666667 298.6666666666667M85.3333333333333 298.6666666666667C85.3333333333333 350.2933333333334 122.0266666666667 393.3866666666667 170.6666666666667 403.2V298.6666666666667H85.3333333333333M298.6666666666667 192C298.6666666666667 140.3733333333333 261.9733333333333 97.28 213.3333333333333 87.4666666666667V64C213.3333333333333 28.5866666666667 241.92 0 277.3333333333333 0S341.3333333333333 28.5866666666667 341.3333333333333 64V170.6666666666667C341.3333333333333 217.8133333333334 379.52 256 426.6666666666667 256H469.3333333333333L448 234.6666666666667L469.3333333333333 213.3333333333334H426.6666666666667C403.2 213.3333333333334 384 194.1333333333333 384 170.6666666666667V64C384 5.1200000000001 336.2133333333333 -42.6666666666666 277.3333333333333 -42.6666666666666S170.6666666666667 5.1200000000001 170.6666666666667 64V87.4666666666667C122.0266666666667 97.2800000000001 85.3333333333333 140.3733333333334 85.3333333333333 192.0000000000001V256H298.6666666666667V192z" />
+    <glyph glyph-name="mouse-variant-off"
+      unicode="&#xF380;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L368.8533333333333 9.3866666666667C350.2933333333334 -21.3333333333333 316.16 -42.6666666666666 277.3333333333333 -42.6666666666666C218.4533333333333 -42.6666666666666 170.6666666666667 5.1200000000001 170.6666666666667 64V87.4666666666667C122.0266666666667 97.2800000000001 85.3333333333333 140.3733333333334 85.3333333333333 192.0000000000001V256H122.24L42.6666666666667 335.5733333333334M298.6666666666667 298.6666666666667H213.3333333333333V403.2C261.9733333333333 393.3866666666667 298.6666666666667 350.2933333333334 298.6666666666667 298.6666666666667M170.6666666666667 403.2V316.1600000000001L114.7733333333333 372.2666666666667C129.4933333333334 387.6266666666667 149.3333333333333 398.7200000000001 170.6666666666667 403.2M298.6666666666667 192V188.3733333333333L230.8266666666667 256H298.6666666666667V192M213.3333333333333 87.4666666666667V64C213.3333333333333 28.5866666666667 241.92 0 277.3333333333333 0C304.64 0 327.8933333333333 17.0666666666667 337.0666666666667 41.1733333333333L264.5333333333333 113.7066666666667C250.4533333333333 100.6933333333333 232.96 91.52 213.3333333333333 87.4666666666667M341.3333333333333 170.6666666666668C341.3333333333333 217.8133333333334 379.52 256.0000000000001 426.6666666666667 256.0000000000001H469.3333333333333L448 234.6666666666667L469.3333333333333 213.3333333333334H426.6666666666667C403.2 213.3333333333334 384 194.1333333333334 384 170.6666666666668V102.8266666666667L341.3333333333333 145.4933333333334V170.6666666666667z" />
+    <glyph glyph-name="move-resize"
+      unicode="&#xF655;"
+      horiz-adv-x="512" d=" M192 426.6666666666667V405.3333333333333H213.3333333333333V341.3333333333334H192V320H256V341.3333333333334H234.6666666666667V405.3333333333333H256V426.6666666666667M192 298.6666666666667C168.32 298.6666666666667 149.3333333333333 279.68 149.3333333333333 256V0C149.3333333333333 -23.6799999999999 168.32 -42.6666666666666 192 -42.6666666666666H448C471.6799999999999 -42.6666666666666 490.6666666666666 -23.6799999999999 490.6666666666666 0V256C490.6666666666666 279.68 471.6799999999999 298.6666666666667 448 298.6666666666667M21.3333333333333 256V192H42.6666666666667V213.3333333333334H106.6666666666667V192H128V256H106.6666666666667V234.6666666666667H42.6666666666667V256M192 256H448V0H192M298.6666666666667 234.6666666666667V213.3333333333334H320V106.6666666666667H234.6666666666667V128H213.3333333333333V64H234.6666666666667V85.3333333333334H320V42.6666666666667H298.6666666666667V21.3333333333334H362.6666666666667V42.6666666666667H341.3333333333333V85.3333333333334H405.3333333333333V64H426.6666666666667V128H405.3333333333333V106.6666666666667H341.3333333333333V213.3333333333334H362.6666666666667V234.6666666666667" />
+    <glyph glyph-name="move-resize-variant"
+      unicode="&#xF656;"
+      horiz-adv-x="512" d=" M40.1066666666667 438.1866666666667L9.8133333333333 407.8933333333333L119.2533333333333 298.6666666666667H42.6666666666667V256H192V405.3333333333333H149.3333333333333V328.7466666666667M234.6666666666667 298.6666666666667V256H448V128H490.6666666666666V256C490.6666666666666 279.4666666666667 471.4666666666667 298.6666666666667 448 298.6666666666667M149.3333333333333 213.3333333333334V0C149.3333333333333 -23.4666666666667 168.5333333333333 -42.6666666666666 192 -42.6666666666666H320V0H192V213.3333333333334M338.7733333333333 139.52L308.48 109.2266666666667L418.1333333333334 0H362.6666666666667V-42.6666666666666H490.6666666666666V85.3333333333334H448V30.08" />
+    <glyph glyph-name="movie"
+      unicode="&#xF381;"
+      horiz-adv-x="512" d=" M384 362.6666666666667L426.6666666666667 277.3333333333334H362.6666666666667L320 362.6666666666667H277.3333333333333L320 277.3333333333334H256L213.3333333333333 362.6666666666667H170.6666666666667L213.3333333333333 277.3333333333334H149.3333333333333L106.6666666666667 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V362.6666666666667H384z" />
+    <glyph glyph-name="movie-roll"
+      unicode="&#xF7DD;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C226.56 362.6666666666667 202.6666666666667 338.7733333333333 202.6666666666667 309.3333333333334S226.56 256 256 256S309.3333333333333 279.8933333333333 309.3333333333333 309.3333333333334S285.44 362.6666666666667 256 362.6666666666667M93.8666666666667 244.6933333333334C84.6933333333333 216.7466666666667 100.0533333333333 186.6666666666667 128 177.4933333333334C156.16 168.5333333333334 186.24 183.68 195.2 211.84C204.3733333333333 239.7866666666667 189.0133333333334 269.8666666666667 161.0666666666667 279.04C133.12 288 102.8266666666667 272.8533333333334 93.8666666666667 244.6933333333334M418.3466666666667 245.3333333333334C409.1733333333333 272.8533333333334 379.0933333333333 288 351.1466666666667 279.04C322.9866666666667 270.0800000000001 307.6266666666667 240 316.8 211.84C325.9733333333334 183.8933333333333 356.0533333333334 168.5333333333334 384 177.7066666666667C411.9466666666666 186.6666666666667 427.3066666666667 216.96 418.3466666666667 245.3333333333334M155.9466666666666 54.1866666666667C179.6266666666666 36.6933333333333 213.3333333333333 42.0266666666666 230.4 65.92C247.68 89.8133333333334 242.3466666666667 123.0933333333334 218.4533333333333 140.3733333333333C194.7733333333333 157.6533333333334 161.28 152.3200000000001 144 128.64C126.72 104.7466666666667 132.0533333333333 71.4666666666666 155.9466666666666 54.1866666666667M356.2666666666667 54.1866666666667C380.16 71.4666666666666 385.4933333333334 104.7466666666667 368.2133333333333 128.64S317.44 157.8666666666667 293.76 140.3733333333333C269.8666666666666 123.0933333333334 264.5333333333333 89.8133333333334 281.8133333333333 65.92C298.6666666666666 42.0266666666666 332.5866666666666 36.9066666666667 356.2666666666666 54.1866666666667M256 224C238.2933333333333 224 224 209.7066666666667 224 192S238.2933333333333 160 256 160S288 174.2933333333334 288 192S273.7066666666667 224 256 224z" />
+    <glyph glyph-name="muffin"
+      unicode="&#xF98B;"
+      horiz-adv-x="512" d=" M341.3333333333333 341.3333333333334S320 405.3333333333333 256 405.3333333333333S170.6666666666667 341.3333333333334 170.6666666666667 341.3333333333334C128 341.3333333333334 85.3333333333333 298.6666666666667 85.3333333333333 256C27.7333333333333 256 27.7333333333333 170.6666666666667 85.3333333333333 170.6666666666667H426.6666666666667C484.2666666666667 170.6666666666667 484.2666666666667 256 426.6666666666667 256C426.6666666666667 298.6666666666667 384 341.3333333333334 341.3333333333333 341.3333333333334M106.6666666666667 128L149.3333333333333 -21.3333333333333H192L170.6666666666667 128H106.6666666666667M213.3333333333333 128L234.6666666666667 -21.3333333333333H277.3333333333333L298.6666666666667 128H213.3333333333333M341.3333333333333 128L320 -21.3333333333333H362.6666666666667L405.3333333333333 128H341.3333333333333z" />
+    <glyph glyph-name="multiplication"
+      unicode="&#xF382;"
+      horiz-adv-x="512" d=" M234.6666666666667 384H277.3333333333333V228.9066666666667L411.52 306.3466666666667L432.8533333333333 269.4400000000001L298.6666666666667 192L433.0666666666667 114.3466666666667L411.7333333333334 77.44L277.3333333333333 155.3066666666667V0H234.6666666666667V155.0933333333334L100.0533333333333 77.6533333333334L78.72 114.5600000000001L213.3333333333333 192L79.36 269.6533333333334L100.6933333333333 306.5600000000001L234.6666666666667 229.12V384z" />
+    <glyph glyph-name="multiplication-box"
+      unicode="&#xF383;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384H405.3333333333333M234.6666666666667 85.3333333333334H277.3333333333333V155.0933333333334L337.7066666666667 120.3200000000001L359.04 157.2266666666667L298.6666666666667 192L359.04 226.9866666666667L337.7066666666666 263.8933333333334L277.3333333333333 228.9066666666667V298.6666666666667H234.6666666666667V228.9066666666667L174.2933333333333 263.8933333333333L152.96 226.9866666666667L213.3333333333333 192L152.96 157.2266666666667L174.2933333333333 120.3200000000001L234.6666666666667 155.0933333333334V85.3333333333334z" />
+    <glyph glyph-name="mushroom"
+      unicode="&#xF7DE;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192C469.3333333333333 168.5333333333334 450.1333333333334 149.3333333333334 426.6666666666667 149.3333333333334H85.3333333333333C61.8666666666667 149.3333333333334 42.6666666666667 168.5333333333334 42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333M256 277.3333333333334C279.4666666666667 277.3333333333334 298.6666666666667 296.5333333333334 298.6666666666667 320S279.4666666666667 362.6666666666667 256 362.6666666666667S213.3333333333333 343.4666666666667 213.3333333333333 320S232.5333333333334 277.3333333333334 256 277.3333333333334M362.6666666666667 192C386.1333333333334 192 405.3333333333333 211.2 405.3333333333333 234.6666666666667S386.1333333333334 277.3333333333334 362.6666666666667 277.3333333333334S320 258.1333333333334 320 234.6666666666667S339.2 192 362.6666666666667 192M149.3333333333333 192C172.8 192 192 211.2 192 234.6666666666667S172.8 277.3333333333334 149.3333333333333 277.3333333333334S106.6666666666667 258.1333333333334 106.6666666666667 234.6666666666667S125.8666666666667 192 149.3333333333333 192M320 128L347.0933333333333 33.0666666666667L348.8 21.3333333333334C348.8 -2.1333333333333 329.5999999999999 -21.3333333333333 306.1333333333333 -21.3333333333333H205.8666666666666C182.4 -21.3333333333333 163.2 -2.1333333333333 163.2 21.3333333333334L164.9066666666667 33.0666666666667L192 128H320z" />
+    <glyph glyph-name="mushroom-outline"
+      unicode="&#xF7DF;"
+      horiz-adv-x="512" d=" M85.3333333333333 192H426.6666666666667C426.6666666666667 271.5733333333334 372.0533333333334 338.56 298.6666666666667 357.3333333333334C295.68 336.2133333333334 277.3333333333333 320 256 320S216.32 336.2133333333334 213.3333333333333 357.3333333333334C139.9466666666667 338.56 85.3333333333333 271.5733333333334 85.3333333333333 192M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192C469.3333333333333 168.5333333333334 450.1333333333334 149.3333333333334 426.6666666666667 149.3333333333334H85.3333333333333C61.8666666666667 149.3333333333334 42.6666666666667 168.5333333333334 42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333M288 85.3333333333334H224L211.6266666666667 42.6666666666667L205.8666666666667 21.3333333333334H306.1333333333334L300.3733333333334 42.6666666666667L288 85.3333333333334M320 128L341.3333333333333 53.3333333333334L347.0933333333333 33.0666666666667L348.8 21.3333333333334C348.8 -2.1333333333333 329.5999999999999 -21.3333333333333 306.1333333333333 -21.3333333333333H205.8666666666666L195.6266666666666 -20.0533333333333C172.8 -14.08 158.9333333333333 9.1733333333333 164.9066666666667 32L170.6666666666666 53.3333333333334L192 128H320M341.3333333333333 298.6666666666667C364.8 298.6666666666667 384 279.4666666666667 384 256S364.8 213.3333333333334 341.3333333333333 213.3333333333334S298.6666666666667 232.5333333333334 298.6666666666667 256S317.8666666666667 298.6666666666667 341.3333333333333 298.6666666666667M170.6666666666667 298.6666666666667C194.1333333333333 298.6666666666667 213.3333333333333 279.4666666666667 213.3333333333333 256S194.1333333333333 213.3333333333334 170.6666666666667 213.3333333333334S128 232.5333333333334 128 256S147.2 298.6666666666667 170.6666666666667 298.6666666666667z" />
+    <glyph glyph-name="music"
+      unicode="&#xF759;"
+      horiz-adv-x="512" d=" M448 384V117.3333333333334C448 76.16 414.5066666666667 42.6666666666667 373.3333333333333 42.6666666666667S298.6666666666667 76.16 298.6666666666667 117.3333333333334S332.16 192 373.3333333333333 192C384.8533333333333 192 395.7333333333334 189.4400000000001 405.3333333333333 184.7466666666667V309.9733333333334L192 264.5333333333334V74.6666666666667C192 33.4933333333333 158.5066666666667 0 117.3333333333333 0S42.6666666666667 33.4933333333333 42.6666666666667 74.6666666666667S76.16 149.3333333333334 117.3333333333333 149.3333333333334C128.8533333333333 149.3333333333334 139.7333333333333 146.7733333333334 149.3333333333333 142.0800000000001V320L448 384z" />
+    <glyph glyph-name="music-box"
+      unicode="&#xF384;"
+      horiz-adv-x="512" d=" M341.3333333333333 256H277.3333333333333V138.6666666666667C277.3333333333333 109.2266666666667 253.44 85.3333333333334 224 85.3333333333334S170.6666666666667 109.2266666666667 170.6666666666667 138.6666666666667S194.56 192 224 192C236.16 192 247.04 187.9466666666667 256 181.3333333333334V298.6666666666667H341.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="music-box-outline"
+      unicode="&#xF385;"
+      horiz-adv-x="512" d=" M341.3333333333333 256H277.3333333333333V138.6666666666667C277.3333333333333 109.2266666666667 253.44 85.3333333333334 224 85.3333333333334S170.6666666666667 109.2266666666667 170.6666666666667 138.6666666666667S194.56 192 224 192C236.16 192 247.04 187.9466666666667 256 181.3333333333334V298.6666666666667H341.3333333333333V256M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M106.6666666666667 341.3333333333334V42.6666666666667H405.3333333333333V341.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="music-circle"
+      unicode="&#xF386;"
+      horiz-adv-x="512" d=" M341.3333333333333 256V298.6666666666667H256V181.3333333333334C247.04 187.9466666666667 236.16 192 224 192C194.56 192 170.6666666666667 168.1066666666667 170.6666666666667 138.6666666666667S194.56 85.3333333333334 224 85.3333333333334S277.3333333333333 109.2266666666667 277.3333333333333 138.6666666666667V256H341.3333333333333M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="music-circle-outline"
+      unicode="&#xFAD3;"
+      horiz-adv-x="512" d=" M341.3333333333333 256H277.3333333333333V138.6666666666667C277.3333333333333 109.2266666666667 253.44 85.3333333333334 224 85.3333333333334S170.6666666666667 109.2266666666667 170.6666666666667 138.6666666666667S194.56 192 224 192C236.16 192 247.04 187.9466666666667 256 181.3333333333334V298.6666666666667H341.3333333333333V256M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="music-note"
+      unicode="&#xF387;"
+      horiz-adv-x="512" d=" M256 384V186.4533333333334C245.3333333333333 190.0800000000001 234.6666666666667 192 224 192C170.6666666666667 192 128 149.3333333333334 128 96S170.6666666666667 0 224 0S320 42.6666666666667 320 96V320H405.3333333333333V384H256z" />
+    <glyph glyph-name="music-note-bluetooth"
+      unicode="&#xF5FE;"
+      horiz-adv-x="512" d=" M213.3333333333333 384V186.4533333333334C202.6666666666667 190.0800000000001 192 192 181.3333333333333 192C128 192 85.3333333333333 149.3333333333334 85.3333333333333 96S128 0 181.3333333333333 0S277.3333333333333 42.6666666666667 277.3333333333333 96V320H362.6666666666667V384H213.3333333333333M426.6666666666667 298.6666666666667V217.8133333333334L377.8133333333334 266.6666666666667L362.6666666666667 251.52L422.1866666666666 192L362.6666666666667 132.48L377.8133333333334 117.3333333333334L426.6666666666667 166.1866666666667V85.3333333333334H437.3333333333333L498.1333333333333 146.1333333333333L452.48 192L498.3466666666666 237.8666666666667L437.3333333333333 298.6666666666667H426.6666666666667M448 257.92L468.0533333333333 237.8666666666667L448 217.8133333333334V257.92M448 166.1866666666667L468.0533333333333 146.1333333333333L448 126.0800000000001V166.1866666666667z" />
+    <glyph glyph-name="music-note-bluetooth-off"
+      unicode="&#xF5FF;"
+      horiz-adv-x="512" d=" M213.3333333333333 384V262.8266666666667L277.3333333333333 198.8266666666667V320H362.6666666666667V384H213.3333333333333M69.9733333333333 352L42.6666666666667 324.9066666666667L176.2133333333333 191.36C125.6533333333333 188.8 85.3333333333333 147.2000000000001 85.3333333333333 96C85.3333333333333 42.6666666666667 128 0 181.3333333333333 0C232.5333333333334 0 274.1333333333334 40.3200000000001 276.6933333333333 90.88L377.1733333333333 -9.6L404.48 17.4933333333333L277.3333333333333 144.64L213.3333333333333 208.64L69.9733333333333 352M426.6666666666667 298.6666666666667V217.8133333333334L377.8133333333334 266.6666666666667L362.6666666666667 251.52L422.1866666666666 192L362.6666666666667 132.48L377.8133333333334 117.3333333333334L426.6666666666667 166.1866666666667V85.3333333333334H437.3333333333333L498.1333333333333 146.1333333333333L452.48 192L498.3466666666666 237.8666666666667L437.3333333333333 298.6666666666667H426.6666666666667M448 257.92L468.0533333333333 237.8666666666667L448 217.8133333333334V257.92M448 166.1866666666667L468.0533333333333 146.1333333333333L448 126.0800000000001V166.1866666666667z" />
+    <glyph glyph-name="music-note-eighth"
+      unicode="&#xF388;"
+      horiz-adv-x="512" d=" M256 384V186.4533333333334C245.3333333333333 190.0800000000001 234.6666666666667 192 224 192C182.1866666666667 192 147.2 165.12 133.9733333333333 128H64V64H133.9733333333333C147.2 26.8800000000001 182.1866666666667 0 224 0S300.8 26.8800000000001 314.0266666666667 64H405.3333333333333V128H320V320H405.3333333333333V384H256z" />
+    <glyph glyph-name="music-note-half"
+      unicode="&#xF389;"
+      horiz-adv-x="512" d=" M256 384V186.4533333333334C245.3333333333333 190.0800000000001 234.6666666666667 192 224 192C182.1866666666667 192 147.2 165.12 133.9733333333333 128H64V64H133.9733333333333C147.2 26.8800000000001 182.1866666666667 0 224 0S300.8 26.8800000000001 314.0266666666667 64H405.3333333333333V128H320V384H256M224 138.6666666666667C247.4666666666667 138.6666666666667 266.6666666666667 119.4666666666667 266.6666666666667 96S247.4666666666667 53.3333333333334 224 53.3333333333334S181.3333333333333 72.5333333333333 181.3333333333333 96S200.5333333333333 138.6666666666667 224 138.6666666666667z" />
+    <glyph glyph-name="music-note-off"
+      unicode="&#xF38A;"
+      horiz-adv-x="512" d=" M256 384V262.8266666666667L320 198.8266666666667V320H405.3333333333333V384H256M112.64 352L85.3333333333333 324.9066666666667L218.88 191.36C168.32 188.8 128 147.2000000000001 128 96C128 42.6666666666667 170.6666666666667 0 224 0C275.2 0 316.8 40.3200000000001 319.36 90.88L419.84 -9.6L447.1466666666667 17.4933333333333L320 144.64L256 208.64L112.64 352z" />
+    <glyph glyph-name="music-note-quarter"
+      unicode="&#xF38B;"
+      horiz-adv-x="512" d=" M256 384H320V128H405.3333333333333V64H314.0266666666667C300.8 26.8800000000001 265.8133333333333 0 224 0S147.2 26.8800000000001 133.9733333333333 64H64V128H133.9733333333333C147.2 165.12 182.1866666666667 192 224 192C234.6666666666667 192 245.3333333333333 190.0800000000001 256 186.4533333333334V384z" />
+    <glyph glyph-name="music-note-sixteenth"
+      unicode="&#xF38C;"
+      horiz-adv-x="512" d=" M256 384V186.4533333333334C245.3333333333333 190.0800000000001 234.6666666666667 192 224 192C182.1866666666667 192 147.2 165.12 133.9733333333333 128H64V64H133.9733333333333C147.2 26.8800000000001 182.1866666666667 0 224 0S300.8 26.8800000000001 314.0266666666667 64H405.3333333333333V128H320V234.6666666666667H405.3333333333333V298.6666666666667H320V320H405.3333333333333V384H256z" />
+    <glyph glyph-name="music-note-whole"
+      unicode="&#xF38D;"
+      horiz-adv-x="512" d=" M224 192C183.4666666666667 192 147.2 166.4 133.5466666666667 128H64V64H133.5466666666667C147.2 25.6 183.4666666666667 0 224 0C264.5333333333333 0 300.8 25.6 314.4533333333333 64H405.3333333333333V128H314.4533333333333C300.8 166.4 264.5333333333333 192 224 192M224 138.6666666666667C247.4666666666667 138.6666666666667 266.6666666666667 119.4666666666667 266.6666666666667 96S247.4666666666667 53.3333333333334 224 53.3333333333334S181.3333333333333 72.5333333333333 181.3333333333333 96S200.5333333333333 138.6666666666667 224 138.6666666666667z" />
+    <glyph glyph-name="music-off"
+      unicode="&#xF75A;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L192 186.24V74.6666666666667C192 33.4933333333333 158.5066666666667 0 117.3333333333333 0S42.6666666666667 33.4933333333333 42.6666666666667 74.6666666666667S76.16 149.3333333333334 117.3333333333333 149.3333333333334C128.8533333333333 149.3333333333334 139.7333333333333 146.7733333333334 149.3333333333333 142.0800000000001V228.9066666666667L42.6666666666667 335.5733333333334M448 384V117.3333333333334C448 96 438.8266666666667 76.3733333333333 424.1066666666667 62.72L318.7199999999999 168.1066666666668C332.3733333333333 182.8266666666667 351.9999999999999 192.0000000000001 373.3333333333333 192.0000000000001C384.8533333333333 192.0000000000001 395.7333333333333 189.4400000000001 405.3333333333333 184.7466666666668V309.9733333333334L216.9599999999999 269.8666666666667L163.4133333333333 323.4133333333334L448 384z" />
+    <glyph glyph-name="nas"
+      unicode="&#xF8F2;"
+      horiz-adv-x="512" d=" M85.3333333333333 341.3333333333334C61.6533333333333 341.3333333333334 42.6666666666667 322.3466666666667 42.6666666666667 298.6666666666667V85.3333333333334C42.6666666666667 61.6533333333334 61.6533333333333 42.6666666666667 85.3333333333333 42.6666666666667H426.6666666666667C450.3466666666667 42.6666666666667 469.3333333333333 61.6533333333334 469.3333333333333 85.3333333333334V298.6666666666667C469.3333333333333 322.3466666666667 450.3466666666667 341.3333333333334 426.6666666666667 341.3333333333334H85.3333333333333M96 298.6666666666667C107.7333333333333 298.6666666666667 117.3333333333333 289.0666666666667 117.3333333333333 277.3333333333334S107.7333333333333 256 96 256S74.6666666666667 265.6 74.6666666666667 277.3333333333334S84.2666666666667 298.6666666666667 96 298.6666666666667M149.3333333333333 298.6666666666667H426.6666666666667V85.3333333333334H149.3333333333333V298.6666666666667M170.6666666666667 277.3333333333334V106.6666666666667H234.6666666666667V277.3333333333334H170.6666666666667M256 277.3333333333334V106.6666666666667H320V277.3333333333334H256M341.3333333333333 277.3333333333334V106.6666666666667H405.3333333333333V277.3333333333334H341.3333333333333M192 256H213.3333333333333V234.6666666666667H192V256M277.3333333333333 256H298.6666666666667V234.6666666666667H277.3333333333333V256M362.6666666666667 256H384V234.6666666666667H362.6666666666667V256z" />
+    <glyph glyph-name="nativescript"
+      unicode="&#xF87F;"
+      horiz-adv-x="512" d=" M160 384H352C405.3333333333333 384 448 341.3333333333334 448 288V96C448 42.6666666666667 405.3333333333333 0 352 0H160C106.6666666666667 0 64 42.6666666666667 64 96V288C64 341.3333333333334 106.6666666666667 384 160 384M128 160V96C128 78.2933333333334 142.2933333333333 64 160 64H192V224L320 64H352C369.7066666666666 64 384 78.2933333333334 384 96V160C384 177.7066666666667 398.2933333333334 192 416 192C398.2933333333334 192 384 206.2933333333334 384 224V288C384 305.7066666666667 369.7066666666666 320 352 320H320V160L192 320H160C142.2933333333333 320 128 305.7066666666667 128 288V224C128 206.2933333333334 113.7066666666667 192 96 192C113.7066666666667 192 128 177.7066666666667 128 160z" />
+    <glyph glyph-name="nature"
+      unicode="&#xF38E;"
+      horiz-adv-x="512" d=" M277.3333333333333 104.1066666666667C351.36 112.8533333333334 408.9600000000001 175.7866666666666 408.9600000000001 252.3733333333333C408.9600000000001 334.9333333333333 342.1866666666667 401.7066666666667 259.6266666666667 401.7066666666667S110.2933333333334 334.9333333333333 110.2933333333334 252.3733333333333C110.2933333333334 178.3466666666666 164.0533333333334 117.3333333333333 234.6666666666667 105.3866666666667V21.3333333333334H106.6666666666667V-21.3333333333333H405.3333333333333V21.3333333333334H277.3333333333333V104.1066666666667z" />
+    <glyph glyph-name="nature-people"
+      unicode="&#xF38F;"
+      horiz-adv-x="512" d=" M96 213.3333333333334C113.7066666666667 213.3333333333334 128 227.6266666666667 128 245.3333333333334S113.7066666666667 277.3333333333334 96 277.3333333333334S64 263.04 64 245.3333333333334S78.2933333333333 213.3333333333334 96 213.3333333333334M472.96 252.3733333333334C472.96 334.9333333333334 406.1866666666667 401.7066666666667 323.6266666666667 401.7066666666667S174.2933333333334 334.9333333333334 174.2933333333334 252.3733333333334C174.2933333333334 178.3466666666667 228.0533333333334 117.3333333333334 298.6666666666667 105.3866666666667V21.3333333333334H128V85.3333333333334H149.3333333333333V170.6666666666667C149.3333333333333 182.4 139.7333333333333 192 128 192H64C52.2666666666667 192 42.6666666666667 182.4 42.6666666666667 170.6666666666667V85.3333333333334H64V-21.3333333333333H405.3333333333333V21.3333333333334H341.3333333333333V104.1066666666667C415.36 112.8533333333334 472.96 175.7866666666666 472.96 252.3733333333333z" />
+    <glyph glyph-name="navigation"
+      unicode="&#xF390;"
+      horiz-adv-x="512" d=" M256 405.3333333333333L96 15.1466666666667L111.1466666666667 0L256 64L400.8533333333333 0L416 15.1466666666667L256 405.3333333333333z" />
+    <glyph glyph-name="near-me"
+      unicode="&#xF5CD;"
+      horiz-adv-x="512" d=" M448 384L64 223.36V202.6666666666667L209.92 145.92L266.6666666666667 0H287.1466666666667L448 384z" />
+    <glyph glyph-name="needle"
+      unicode="&#xF391;"
+      horiz-adv-x="512" d=" M237.8666666666667 124.16L207.5733333333333 154.24L237.8666666666667 184.5333333333334L267.9466666666667 154.24L298.0266666666667 184.5333333333334L267.9466666666667 214.6133333333334L298.0266666666667 244.6933333333334L328.32 214.6133333333334L358.4 244.6933333333334L298.0266666666667 305.0666666666667L147.2 154.24L207.5733333333333 93.8666666666667L237.8666666666667 124.16M65.7066666666667 42.6666666666667L132.2666666666667 109.0133333333333L87.04 154.24L298.0266666666667 365.4400000000001L343.4666666666667 320L373.3333333333333 350.2933333333334L343.4666666666667 380.5866666666667L373.3333333333333 410.6666666666667L464 320L433.92 290.1333333333334L403.6266666666667 320L373.3333333333333 290.1333333333334L418.7733333333333 244.6933333333334L207.5733333333333 33.7066666666667L162.3466666666666 78.9333333333333L65.7066666666666 -17.92V42.6666666666667z" />
+    <glyph glyph-name="netflix"
+      unicode="&#xF745;"
+      horiz-adv-x="512" d=" M138.6666666666667 405.3333333333333H224L286.72 216.96L288 405.3333333333333H373.3333333333333V-21.3333333333333C346.6666666666667 -16.64 317.2266666666667 -13.6533333333333 286.08 -12.3733333333333L224 170.6666666666667L222.5066666666667 -12.5866666666666C192.64 -13.8666666666666 164.2666666666667 -16.8533333333333 138.6666666666667 -21.3333333333333V405.3333333333333z" />
+    <glyph glyph-name="network"
+      unicode="&#xF6F2;"
+      horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V128C405.3333333333333 104.5333333333333 386.1333333333334 85.3333333333334 362.6666666666667 85.3333333333334H277.3333333333333V42.6666666666667H298.6666666666667C310.4 42.6666666666667 320 33.0666666666667 320 21.3333333333334H469.3333333333333V-21.3333333333333H320C320 -33.0666666666667 310.4 -42.6666666666666 298.6666666666667 -42.6666666666666H213.3333333333333C201.6 -42.6666666666666 192 -33.0666666666667 192 -21.3333333333333H42.6666666666667V21.3333333333334H192C192 33.0666666666667 201.6 42.6666666666667 213.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H149.3333333333333C125.6533333333333 85.3333333333334 106.6666666666667 104.5333333333333 106.6666666666667 128V341.3333333333334C106.6666666666667 364.8 125.8666666666667 384 149.3333333333333 384H362.6666666666667z" />
+    <glyph glyph-name="network-strength-1"
+      unicode="&#xF8F3;"
+      horiz-adv-x="512" d=" M21.3333333333333 0H448V426.6666666666667M405.3333333333333 323.6266666666667V42.6666666666667H234.6666666666667V152.96" />
+    <glyph glyph-name="network-strength-1-alert"
+      unicode="&#xF8F4;"
+      horiz-adv-x="512" d=" M448 426.6666666666667L21.3333333333333 0H362.6666666666667V42.6666666666667H234.6666666666667V152.96L405.3333333333333 323.6266666666667V298.6666666666667H448M405.3333333333333 256V85.3333333333334H448V256M405.3333333333333 42.6666666666667V0H448V42.6666666666667" />
+    <glyph glyph-name="network-strength-2"
+      unicode="&#xF8F5;"
+      horiz-adv-x="512" d=" M21.3333333333333 0H448V426.6666666666667M405.3333333333333 323.6266666666667V42.6666666666667H277.3333333333333V195.6266666666667" />
+    <glyph glyph-name="network-strength-2-alert"
+      unicode="&#xF8F6;"
+      horiz-adv-x="512" d=" M448 426.6666666666667L21.3333333333333 0H362.6666666666667V42.6666666666667H277.3333333333333V195.6266666666667L405.3333333333333 323.6266666666667V298.6666666666667H448M405.3333333333333 256V85.3333333333334H448V256M405.3333333333333 42.6666666666667V0H448V42.6666666666667" />
+    <glyph glyph-name="network-strength-3"
+      unicode="&#xF8F7;"
+      horiz-adv-x="512" d=" M21.3333333333333 0H448V426.6666666666667M405.3333333333333 323.6266666666667V42.6666666666667H341.3333333333333V259.6266666666667" />
+    <glyph glyph-name="network-strength-3-alert"
+      unicode="&#xF8F8;"
+      horiz-adv-x="512" d=" M448 426.6666666666667L21.3333333333333 0H362.6666666666667V42.6666666666667H341.3333333333333V259.6266666666667L405.3333333333333 323.6266666666667V298.6666666666667H448M405.3333333333333 256V85.3333333333334H448V256M405.3333333333333 42.6666666666667V0H448V42.6666666666667" />
+    <glyph glyph-name="network-strength-4"
+      unicode="&#xF8F9;"
+      horiz-adv-x="512" d=" M21.3333333333333 0H448V426.6666666666667" />
+    <glyph glyph-name="network-strength-4-alert"
+      unicode="&#xF8FA;"
+      horiz-adv-x="512" d=" M405.3333333333333 85.3333333333334H448V256H405.3333333333333M405.3333333333333 0H448V42.6666666666667H405.3333333333333M21.3333333333333 0H362.6666666666667V298.6666666666667H448V426.6666666666667" />
+    <glyph glyph-name="network-strength-off"
+      unicode="&#xF8FB;"
+      horiz-adv-x="512" d=" M448 426.6666666666667L264.5333333333333 243.2L448 59.9466666666667M101.76 352L74.6666666666667 324.9066666666667L210.3466666666666 189.2266666666667L21.3333333333333 0H399.5733333333333L442.24 -42.6666666666666L469.3333333333333 -15.5733333333333" />
+    <glyph glyph-name="network-strength-off-outline"
+      unicode="&#xF8FC;"
+      horiz-adv-x="512" d=" M448 426.6666666666667L264.5333333333333 243.2L295.4666666666667 212.2666666666667L405.3333333333333 323.6266666666667V102.6133333333334L448 59.9466666666667M101.76 352L74.6666666666667 324.9066666666667L210.3466666666666 189.2266666666667L21.3333333333333 0H399.5733333333333L442.24 -42.6666666666666L469.3333333333333 -15.5733333333333M241.7066666666667 157.8666666666667L356.9066666666667 42.6666666666667H128" />
+    <glyph glyph-name="network-strength-outline"
+      unicode="&#xF8FD;"
+      horiz-adv-x="512" d=" M21.3333333333333 0H448V426.6666666666667M405.3333333333333 323.6266666666667V42.6666666666667H128" />
+    <glyph glyph-name="new-box"
+      unicode="&#xF394;"
+      horiz-adv-x="512" d=" M426.6666666666667 362.6666666666667C450.3466666666667 362.6666666666667 469.3333333333333 343.68 469.3333333333333 320V64C469.3333333333333 40.3200000000001 450.3466666666667 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.6533333333333 21.3333333333334 42.6666666666667 40.3200000000001 42.6666666666667 64V320C42.6666666666667 343.68 61.6533333333333 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667M181.3333333333333 128V256H154.6666666666667V181.3333333333334L101.3333333333333 256H74.6666666666667V128H101.3333333333333V202.6666666666667L155.7333333333333 128H181.3333333333333M288 229.12V256H202.6666666666667V128H288V154.6666666666667H234.6666666666667V178.3466666666667H288V205.2266666666667H234.6666666666667V229.12H288M437.3333333333333 149.3333333333333V256H410.6666666666667V160H386.7733333333333V234.6666666666667H360.1066666666667V160H336V256H309.3333333333333V149.3333333333334C309.3333333333333 137.6 318.9333333333333 128 330.6666666666667 128H416C427.7333333333334 128 437.3333333333333 137.6 437.3333333333333 149.3333333333334z" />
+    <glyph glyph-name="newspaper"
+      unicode="&#xF395;"
+      horiz-adv-x="512" d=" M426.6666666666667 213.3333333333334H85.3333333333333V277.3333333333334H426.6666666666667M426.6666666666667 128H277.3333333333333V170.6666666666667H426.6666666666667M426.6666666666667 42.6666666666667H277.3333333333333V85.3333333333334H426.6666666666667M234.6666666666667 42.6666666666667H85.3333333333333V170.6666666666667H234.6666666666667M433.7066666666666 348.3733333333334L398.2933333333334 384L362.6666666666667 348.3733333333334L327.04 384L291.6266666666667 348.3733333333334L256 384L220.3733333333333 348.3733333333334L184.96 384L149.3333333333333 348.3733333333334L113.7066666666667 384L78.2933333333333 348.3733333333334L42.6666666666667 384V42.6666666666667C42.6666666666667 19.2 61.8666666666667 0 85.3333333333333 0H426.6666666666667C450.1333333333334 0 469.3333333333333 19.2 469.3333333333333 42.6666666666667V384L433.7066666666666 348.3733333333334z" />
+    <glyph glyph-name="nfc"
+      unicode="&#xF396;"
+      horiz-adv-x="512" d=" M225.92 284.5866666666667S238.72 290.3466666666667 246.8266666666667 281.1733333333334C254.9333333333334 271.7866666666667 275.6266666666667 235.9466666666667 275.6266666666667 200.1066666666667C275.6266666666667 164.2666666666667 266.6666666666667 126.08 257.0666666666667 113.4933333333334C247.8933333333334 100.6933333333333 238.7200000000001 100.6933333333333 231.68 105.3866666666667C224.8533333333334 109.8666666666667 117.3333333333334 192 111.5733333333334 194.3466666666667C105.6 196.6933333333334 103.4666666666667 190.9333333333334 109.2266666666667 160.0000000000001C114.9866666666667 128.0000000000001 105.6 119.2533333333334 97.4933333333334 117.9733333333334C89.6 117.3333333333334 65.28 123.7333333333334 64 188.5866666666667C62.9333333333334 253.2266666666667 80.2133333333333 263.6800000000001 88.32 263.6800000000001C103.4666666666667 263.6800000000001 219.0933333333333 160 226.9866666666667 160.8533333333334C234.0266666666667 161.9200000000001 237.44 205.8666666666667 224 240.6400000000001C208.64 278.1866666666667 225.92 284.5866666666667 225.92 284.5866666666667M411.7333333333334 349.2266666666667C450.56 272.2133333333334 448 199.2533333333333 448 192C448 184.7466666666667 450.56 111.7866666666667 411.7333333333334 34.7733333333333C411.7333333333334 34.7733333333333 401.7066666666667 23.04 386.56 30.08C371.6266666666667 37.12 376.7466666666667 55.4666666666667 376.7466666666667 55.4666666666667S408.32 116.2666666666667 407.4666666666667 190.9333333333334V192C408.32 266.6666666666667 376.7466666666667 328.5333333333334 376.7466666666667 328.5333333333334S371.6266666666667 346.88 386.56 353.92C401.7066666666667 360.9600000000001 411.7333333333334 349.2266666666667 411.7333333333334 349.2266666666667M336.4266666666667 314.6666666666667C368.2133333333334 256.8533333333334 366.08 199.2533333333333 365.6533333333333 192C366.08 184.7466666666667 368.2133333333334 129.7066666666667 336.4266666666666 67.2C336.4266666666666 67.2 326.4 55.4666666666666 311.2533333333334 62.5066666666667C296.32 69.5466666666666 301.44 87.8933333333334 301.44 87.8933333333334S321.92 117.3333333333334 325.12 190.9333333333334V192C322.9866666666666 266.0266666666667 301.44 293.76 301.44 293.76S296.32 312.32 311.2533333333334 319.1466666666667C326.4 326.1866666666667 336.4266666666666 314.6666666666667 336.4266666666666 314.6666666666667z" />
+    <glyph glyph-name="nfc-tap"
+      unicode="&#xF397;"
+      horiz-adv-x="512" d=" M256 234.6666666666667C279.4666666666667 234.6666666666667 298.6666666666667 215.4666666666667 298.6666666666667 192S279.4666666666667 149.3333333333334 256 149.3333333333334S213.3333333333333 168.5333333333334 213.3333333333333 192S232.5333333333334 234.6666666666667 256 234.6666666666667M85.3333333333333 362.6666666666667H234.6666666666667C258.1333333333334 362.6666666666667 277.3333333333333 343.4666666666667 277.3333333333333 320V256H234.6666666666667V320H85.3333333333333V213.3333333333334H128V256L192 192L128 128V170.6666666666667H85.3333333333333C61.8666666666667 170.6666666666667 42.6666666666667 189.8666666666667 42.6666666666667 213.3333333333334V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M426.6666666666667 21.3333333333334H277.3333333333333C253.8666666666667 21.3333333333334 234.6666666666667 40.5333333333333 234.6666666666667 64V128H277.3333333333333V64H426.6666666666667V170.6666666666667H384V128L320 192L384 256V213.3333333333334H426.6666666666667C450.1333333333334 213.3333333333334 469.3333333333333 194.1333333333333 469.3333333333333 170.6666666666667V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334z" />
+    <glyph glyph-name="nfc-variant"
+      unicode="&#xF398;"
+      horiz-adv-x="512" d=" M384 320H277.3333333333333C253.8666666666667 320 234.6666666666667 300.8 234.6666666666667 277.3333333333334V228.6933333333334C222.08 221.44 213.3333333333333 207.7866666666667 213.3333333333333 192C213.3333333333333 168.5333333333334 232.5333333333334 149.3333333333334 256 149.3333333333334C279.68 149.3333333333334 298.6666666666667 168.5333333333334 298.6666666666667 192C298.6666666666667 207.7866666666667 290.1333333333334 221.44 277.3333333333333 228.6933333333334V277.3333333333334H341.3333333333333V106.6666666666667H170.6666666666667V277.3333333333334H213.3333333333333V320H128V64H384M426.6666666666667 21.3333333333334H85.3333333333333V362.6666666666667H426.6666666666667M426.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H426.6666666666667C450.3466666666667 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V362.6666666666667C469.3333333333333 386.3466666666667 450.3466666666667 405.3333333333333 426.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="ninja"
+      unicode="&#xF773;"
+      horiz-adv-x="512" d=" M165.3333333333333 170.6666666666667C165.12 178.1333333333333 168.5333333333333 185.3866666666667 174.2933333333333 190.2933333333334C190.2933333333333 186.88 205.2266666666666 180.2666666666667 218.6666666666667 170.6666666666667C218.6666666666667 156.16 206.72 144.2133333333334 192 144.2133333333334S165.5466666666667 155.9466666666667 165.3333333333333 170.6666666666667M293.3333333333333 170.6666666666667C306.7733333333333 180.0533333333334 321.7066666666667 186.6666666666667 337.7066666666667 190.0800000000001C343.4666666666667 185.1733333333334 346.88 177.92 346.6666666666667 170.6666666666667C346.6666666666667 155.7333333333334 334.72 143.7866666666667 320 143.7866666666667S293.3333333333333 155.7333333333334 293.3333333333333 170.6666666666667M256 256C196.9066666666667 256.8533333333334 138.6666666666667 242.1333333333334 86.8266666666667 213.3333333333334L85.3333333333333 192C85.3333333333333 165.76 91.52 139.9466666666667 103.2533333333333 116.48C153.8133333333333 124.16 204.8 128 256 128C307.2 128 358.1866666666666 124.16 408.7466666666667 116.48C420.48 139.9466666666667 426.6666666666667 165.7600000000001 426.6666666666667 192L425.1733333333333 213.3333333333334C373.3333333333333 242.1333333333334 315.0933333333333 256.8533333333334 256 256M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="nintendo-switch"
+      unicode="&#xF7E0;"
+      horiz-adv-x="512" d=" M214.1866666666667 12.8000000000001H151.8933333333333C132.0533333333334 12.8000000000001 113.0666666666667 21.3333333333334 98.9866666666667 34.9866666666667C85.3333333333333 49.0666666666667 76.8 68.0533333333334 76.8 87.8933333333334V296.1066666666667C76.8 315.9466666666667 85.3333333333333 334.9333333333334 98.9866666666667 349.0133333333333C113.0666666666667 362.6666666666667 132.0533333333334 370.7733333333333 151.8933333333333 370.7733333333333H214.1866666666667V12.8000000000001M151.8933333333333 405.3333333333333C91.52 405.3333333333333 42.6666666666667 356.48 42.6666666666667 296.1066666666667V87.8933333333334C42.6666666666667 27.52 91.52 -21.3333333333333 151.8933333333333 -21.3333333333333H248.5333333333334V405.3333333333333H151.8933333333333M109.0133333333333 277.3333333333334C109.0133333333333 255.1466666666667 126.9333333333333 237.2266666666667 149.3333333333333 237.2266666666667C171.3066666666667 237.2266666666667 189.2266666666667 255.1466666666667 189.2266666666667 277.3333333333334S171.3066666666667 317.44 149.3333333333333 317.44C126.9333333333333 317.44 109.0133333333333 299.52 109.0133333333333 277.3333333333334M375.68 213.3333333333334C399.36 213.3333333333334 418.56 194.3466666666667 418.56 170.6666666666667C418.56 146.7733333333333 399.36 128 375.68 128C352 128 332.3733333333334 146.7733333333334 332.3733333333334 170.6666666666667C332.3733333333334 194.3466666666667 352 213.3333333333334 375.68 213.3333333333334M360.1066666666667 -21.3333333333333C420.48 -21.3333333333333 469.3333333333333 27.52 469.3333333333333 87.8933333333334V296.1066666666667C469.3333333333333 356.48 420.48 405.3333333333333 360.1066666666667 405.3333333333333H291.2V-21.3333333333333H360.1066666666667z" />
+    <glyph glyph-name="nodejs"
+      unicode="&#xF399;"
+      horiz-adv-x="512" d=" M256 408.5333333333333C250.24 408.5333333333333 244.2666666666667 407.04 239.36 404.2666666666667L80.64 312.5333333333334C70.4 306.56 64 295.4666666666667 64 283.52V100.48C64 88.5333333333334 70.4 77.4400000000001 80.64 71.4666666666667L122.24 47.5733333333334C142.5066666666667 37.76 149.3333333333333 37.5466666666667 158.72 37.5466666666667C188.5866666666667 37.5466666666667 205.8666666666667 55.6800000000001 205.8666666666667 87.2533333333335V267.9466666666667C205.8666666666667 270.5066666666667 203.7333333333334 272.6400000000001 201.1733333333333 272.6400000000001H181.3333333333333C178.56 272.6400000000001 176.4266666666667 270.5066666666667 176.4266666666667 267.9466666666667V87.2533333333333C176.4266666666667 73.1733333333334 161.92 59.3066666666667 138.6666666666667 71.04L94.9333333333333 96C93.44 97.0666666666667 92.5866666666667 98.7733333333333 92.5866666666667 100.48V283.52C92.5866666666667 285.44 93.44 287.1466666666667 94.9333333333333 288L253.6533333333334 379.52C254.9333333333334 380.3733333333334 257.0666666666667 380.3733333333334 258.3466666666667 379.52L417.0666666666667 288C418.56 287.1466666666667 419.4133333333333 285.44 419.4133333333333 283.52V100.48C419.4133333333333 98.7733333333334 418.56 97.0666666666667 417.0666666666667 96L258.3466666666667 4.48C257.0666666666666 3.6266666666667 254.9333333333333 3.6266666666667 253.44 4.48L213.3333333333333 28.8000000000001C211.6266666666667 29.4400000000001 209.92 29.6533333333334 208.8533333333333 29.0133333333334C197.5466666666667 22.6133333333334 195.4133333333333 21.3333333333334 184.96 18.1333333333334C182.4 17.2800000000001 178.3466666666666 15.7866666666667 186.4533333333333 11.3066666666667L239.36 -20.0533333333333C244.48 -23.04 250.0266666666667 -24.5333333333333 256 -24.5333333333333S267.52 -23.04 272.64 -20.0533333333333L431.36 71.4666666666667C441.6 77.4400000000001 448 88.5333333333334 448 100.48V283.52C448 295.4666666666667 441.6 306.56 431.36 312.5333333333334L272.64 404.2666666666667C267.7333333333333 407.04 261.9733333333333 408.5333333333334 256 408.5333333333334M298.6666666666667 277.3333333333334C253.44 277.3333333333334 226.3466666666667 258.3466666666667 226.3466666666667 226.3466666666667C226.3466666666667 192 253.2266666666667 181.9733333333334 296.7466666666667 177.7066666666667C348.5866666666667 172.5866666666667 352.64 164.9066666666667 352.64 154.6666666666667C352.64 136.96 338.3466666666667 129.4933333333334 305.0666666666667 129.4933333333334C262.8266666666667 129.4933333333334 253.8666666666667 139.9466666666667 250.6666666666667 160.8533333333334C250.24 162.9866666666667 248.32 164.6933333333334 245.9733333333333 164.6933333333334H225.4933333333334C222.9333333333333 164.6933333333334 221.0133333333333 162.7733333333334 221.0133333333333 160C221.0133333333333 133.5466666666667 235.52 101.5466666666666 305.0666666666666 101.5466666666666C355.2 101.5466666666666 384 121.3866666666667 384 155.9466666666667C384 190.2933333333333 360.9600000000001 199.2533333333333 312.1066666666667 205.8666666666667C262.8266666666666 212.2666666666667 257.92 215.68 257.92 227.2C257.92 236.8 262.1866666666666 249.6 298.6666666666667 249.6C330.6666666666667 249.6 343.2533333333334 242.56 348.16 220.5866666666667C348.5866666666667 218.4533333333334 350.5066666666667 216.96 352.64 216.96H373.3333333333333C374.4 216.96 375.68 217.3866666666667 376.5333333333333 218.4533333333334C377.3866666666666 219.3066666666667 378.0266666666667 220.5866666666667 377.6 221.8666666666667C374.6133333333333 259.8400000000001 349.44 277.3333333333334 298.6666666666667 277.3333333333334z" />
+    <glyph glyph-name="not-equal"
+      unicode="&#xF98C;"
+      horiz-adv-x="512" d=" M448 234.6666666666667H192V277.3333333333334H448V234.6666666666667M448 106.6666666666667H192V149.3333333333334H448V106.6666666666667M85.3333333333333 341.3333333333334H128V106.6666666666667H85.3333333333333V341.3333333333334M128 64V21.3333333333334H85.3333333333333V64H128z" />
+    <glyph glyph-name="not-equal-variant"
+      unicode="&#xF98D;"
+      horiz-adv-x="512" d=" M300.3733333333334 349.6533333333333L339.6266666666667 332.8L315.7333333333334 277.3333333333334H405.3333333333333V234.6666666666667H297.6L260.9066666666667 149.3333333333334H405.3333333333333V106.6666666666667H242.7733333333333L211.6266666666666 34.1333333333334L172.3733333333333 50.9866666666667L196.2666666666667 106.6666666666667H106.6666666666667V149.3333333333334H214.6133333333333L251.0933333333333 234.6666666666667H106.6666666666667V277.3333333333334H269.44L300.3733333333333 349.6533333333334z" />
+    <glyph glyph-name="note"
+      unicode="&#xF39A;"
+      horiz-adv-x="512" d=" M298.6666666666667 234.6666666666667V352L416 234.6666666666667M106.6666666666667 384C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V256L320 384H106.6666666666667z" />
+    <glyph glyph-name="note-multiple"
+      unicode="&#xF6B7;"
+      horiz-adv-x="512" d=" M341.3333333333333 256H458.6666666666666L341.3333333333333 373.3333333333334V256M149.3333333333333 405.3333333333333H362.6666666666667L490.6666666666666 277.3333333333334V64C490.6666666666666 40.5333333333333 471.4666666666667 21.3333333333334 448 21.3333333333334H149.3333333333333C125.6533333333333 21.3333333333334 106.6666666666667 40.5333333333333 106.6666666666667 64V362.6666666666667C106.6666666666667 386.1333333333334 125.8666666666667 405.3333333333333 149.3333333333333 405.3333333333333M64 320V-21.3333333333333H448V-64H64C40.5333333333333 -64 21.3333333333333 -44.8 21.3333333333333 -21.3333333333333V320H64z" />
+    <glyph glyph-name="note-multiple-outline"
+      unicode="&#xF6B8;"
+      horiz-adv-x="512" d=" M64 320V-21.3333333333333H448V-64H64C40.5333333333333 -64 21.3333333333333 -44.8 21.3333333333333 -21.3333333333333V320H64M341.3333333333333 256H458.6666666666666L341.3333333333333 373.3333333333334V256M149.3333333333333 405.3333333333333H362.6666666666667L490.6666666666666 277.3333333333334V64C490.6666666666666 40.5333333333333 471.4666666666667 21.3333333333334 448 21.3333333333334H149.3333333333333C125.6533333333333 21.3333333333334 106.6666666666667 40.5333333333333 106.6666666666667 64V362.6666666666667C106.6666666666667 386.1333333333334 125.8666666666667 405.3333333333333 149.3333333333333 405.3333333333333M149.3333333333333 362.6666666666667V64H448V213.3333333333334H298.6666666666667V362.6666666666667H149.3333333333333z" />
+    <glyph glyph-name="note-outline"
+      unicode="&#xF39B;"
+      horiz-adv-x="512" d=" M298.6666666666667 234.6666666666667H416L298.6666666666667 352V234.6666666666667M106.6666666666667 384H320L448 256V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384M106.6666666666667 341.3333333333334V42.6666666666667H405.3333333333333V192H256V341.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="note-plus"
+      unicode="&#xF39C;"
+      horiz-adv-x="512" d=" M298.6666666666667 234.6666666666667H416L298.6666666666667 352V234.6666666666667M106.6666666666667 384H320L448 256V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384M192 64H234.6666666666667V128H298.6666666666667V170.6666666666667H234.6666666666667V234.6666666666667H192V170.6666666666667H128V128H192V64z" />
+    <glyph glyph-name="note-plus-outline"
+      unicode="&#xF39D;"
+      horiz-adv-x="512" d=" M320 234.6666666666667H437.3333333333333L320 352V234.6666666666667M85.3333333333333 384H341.3333333333333L469.3333333333333 256V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.6533333333333 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V341.3333333333334C42.6666666666667 365.0133333333333 61.6533333333333 384 85.3333333333333 384M85.3333333333333 341.3333333333334V42.6666666666667H426.6666666666667V192H277.3333333333333V341.3333333333334H85.3333333333333M170.6666666666667 85.3333333333334V128H128V170.6666666666667H170.6666666666667V213.3333333333334H213.3333333333333V170.6666666666667H256V128H213.3333333333333V85.3333333333334H170.6666666666667z" />
+    <glyph glyph-name="note-text"
+      unicode="&#xF39E;"
+      horiz-adv-x="512" d=" M298.6666666666667 234.6666666666667H416L298.6666666666667 352V234.6666666666667M106.6666666666667 384H320L448 256V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384M106.6666666666667 192V149.3333333333334H405.3333333333333V192H106.6666666666667M106.6666666666667 106.6666666666667V64H298.6666666666667V106.6666666666667H106.6666666666667z" />
+    <glyph glyph-name="notebook"
+      unicode="&#xF82D;"
+      horiz-adv-x="512" d=" M64 298.6666666666667V341.3333333333334H106.6666666666667V362.6666666666667C106.6666666666667 386.3466666666667 125.8666666666667 405.3333333333333 149.3333333333333 405.3333333333333H277.3333333333333V256L330.6666666666667 288L384 256V405.3333333333333H405.3333333333333C427.7333333333334 405.3333333333333 448 385.0666666666667 448 362.6666666666667V21.3333333333334C448 -1.0666666666667 427.7333333333334 -21.3333333333333 405.3333333333333 -21.3333333333333H149.3333333333333C126.9333333333333 -21.3333333333333 106.6666666666667 -1.0666666666667 106.6666666666667 21.3333333333334V42.6666666666667H64V85.3333333333334H106.6666666666667V170.6666666666667H64V213.3333333333334H106.6666666666667V298.6666666666667H64M149.3333333333333 213.3333333333334H106.6666666666667V170.6666666666667H149.3333333333333V213.3333333333334M149.3333333333333 298.6666666666667V341.3333333333334H106.6666666666667V298.6666666666667H149.3333333333333M149.3333333333333 42.6666666666667V85.3333333333334H106.6666666666667V42.6666666666667H149.3333333333333z" />
+    <glyph glyph-name="notification-clear-all"
+      unicode="&#xF39F;"
+      horiz-adv-x="512" d=" M106.6666666666667 170.6666666666667H405.3333333333333V213.3333333333334H106.6666666666667M64 85.3333333333334H362.6666666666667V128H64M149.3333333333333 298.6666666666667V256H448V298.6666666666667" />
+    <glyph glyph-name="npm"
+      unicode="&#xF6F6;"
+      horiz-adv-x="512" d=" M85.3333333333333 234.6666666666667V149.3333333333334H128V213.3333333333334H149.3333333333333V149.3333333333334H170.6666666666667V234.6666666666667H85.3333333333333M192 234.6666666666667V128H234.6666666666667V149.3333333333334H277.3333333333333V234.6666666666667H192M256 213.3333333333334V170.6666666666667H234.6666666666667V213.3333333333334H256M298.6666666666667 234.6666666666667V149.3333333333334H341.3333333333333V213.3333333333334H362.6666666666667V149.3333333333334H384V213.3333333333334H405.3333333333333V149.3333333333334H426.6666666666667V234.6666666666667H298.6666666666667M64 256H448V128H256V106.6666666666667H170.6666666666667V128H64V256z" />
+    <glyph glyph-name="npm-variant"
+      unicode="&#xF98E;"
+      horiz-adv-x="512" d=" M426.6666666666667 362.6666666666667H85.3333333333333V21.3333333333334H256V277.3333333333334H341.3333333333333V21.3333333333334H426.6666666666667V362.6666666666667" />
+    <glyph glyph-name="npm-variant-outline"
+      unicode="&#xF98F;"
+      horiz-adv-x="512" d=" M64 384V0H448V384H64M128 320H384V64H320V256H256V64H128V320z" />
+    <glyph glyph-name="nuke"
+      unicode="&#xF6A3;"
+      horiz-adv-x="512" d=" M299.52 192H213.3333333333333V213.3333333333334H117.3333333333333C76.16 213.3333333333334 42.6666666666667 246.8266666666667 42.6666666666667 288S76.16 362.6666666666667 117.3333333333333 362.6666666666667C139.3066666666667 362.6666666666667 158.9333333333333 353.28 172.5866666666667 338.1333333333334C181.3333333333333 376.5333333333333 215.04 405.3333333333333 256 405.3333333333333C296.96 405.3333333333333 330.6666666666667 376.5333333333333 339.4133333333333 338.1333333333334C353.0666666666667 353.28 372.6933333333333 362.6666666666667 394.6666666666667 362.6666666666667C435.84 362.6666666666667 469.3333333333333 329.1733333333334 469.3333333333333 288S435.84 213.3333333333334 394.6666666666667 213.3333333333334H299.52V192M213.3333333333333 87.4666666666667V111.7866666666668H106.6666666666667V154.4533333333334H405.3333333333333V111.7866666666668H299.52V87.0400000000001L426.6666666666667 40.96C439.04 36.48 448 24.7466666666667 448 10.6666666666667C448 -7.04 433.7066666666666 -21.3333333333333 416 -21.3333333333333H96C78.2933333333333 -21.3333333333333 64 -7.04 64 10.6666666666667C64 24.7466666666667 72.96 36.48 85.3333333333333 40.96L213.3333333333333 87.4666666666667z" />
+    <glyph glyph-name="null"
+      unicode="&#xF7E1;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C295.4666666666667 405.3333333333333 331.7333333333334 388.6933333333334 360.5333333333333 360.5333333333334L396.8 406.8266666666667L430.5066666666667 380.5866666666667L388.2666666666667 326.8266666666667C412.3733333333333 289.92 426.6666666666667 243.2 426.6666666666667 192C426.6666666666667 74.6666666666667 350.2933333333334 -21.3333333333333 256 -21.3333333333333C216.5333333333333 -21.3333333333333 180.2666666666667 -4.6933333333333 151.4666666666667 23.4666666666667L115.2 -22.8266666666667L81.4933333333333 3.4133333333334L123.7333333333333 57.1733333333334C99.6266666666667 94.08 85.3333333333333 140.8 85.3333333333333 192C85.3333333333333 309.3333333333334 161.7066666666667 405.3333333333333 256 405.3333333333333M256 362.6666666666667C185.3866666666667 362.6666666666667 128 286.2933333333334 128 192C128 155.0933333333334 136.7466666666667 120.96 151.68 93.0133333333333L334.2933333333334 327.04C312.7466666666667 349.44 285.44 362.6666666666667 256 362.6666666666667M256 21.3333333333334C326.6133333333334 21.3333333333334 384 97.7066666666667 384 192C384 228.9066666666667 375.2533333333334 263.04 360.32 290.9866666666667L177.7066666666667 56.96C199.2533333333333 34.5600000000001 226.56 21.3333333333334 256 21.3333333333334z" />
+    <glyph glyph-name="numeric"
+      unicode="&#xF3A0;"
+      horiz-adv-x="512" d=" M85.3333333333333 85.3333333333334V256H42.6666666666667V298.6666666666667H128V85.3333333333334H85.3333333333333M469.3333333333333 128C469.3333333333333 104.3200000000001 450.1333333333334 85.3333333333334 426.6666666666667 85.3333333333334H341.3333333333333V128H426.6666666666667V170.6666666666667H384V213.3333333333334H426.6666666666667V256H341.3333333333333V298.6666666666667H426.6666666666667C450.1333333333334 298.6666666666667 469.3333333333333 279.4666666666667 469.3333333333333 256V224C469.3333333333333 206.2933333333334 455.04 192 437.3333333333333 192C455.04 192 469.3333333333333 177.7066666666667 469.3333333333333 160V128M298.6666666666667 128V85.3333333333334H170.6666666666667V170.6666666666667C170.6666666666667 194.3466666666667 189.8666666666667 213.3333333333334 213.3333333333333 213.3333333333334H256V256H170.6666666666667V298.6666666666667H256C279.4666666666667 298.6666666666667 298.6666666666667 279.4666666666667 298.6666666666667 256V213.3333333333334C298.6666666666667 189.6533333333334 279.4666666666667 170.6666666666667 256 170.6666666666667H213.3333333333333V128H298.6666666666667z" />
+    <glyph glyph-name="numeric-0"
+      unicode="&#x30;"
+      horiz-adv-x="512" d=" M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667M234.6666666666667 256H277.3333333333333V128H234.6666666666667V256z" />
+    <glyph glyph-name="numeric-0-box"
+      unicode="&#xF3A1;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667M234.6666666666667 256H277.3333333333333V128H234.6666666666667V256z" />
+    <glyph glyph-name="numeric-0-box-multiple-outline"
+      unicode="&#xF3A2;"
+      horiz-adv-x="512" d=" M448 85.3333333333334V384H149.3333333333333V85.3333333333334H448M448 426.6666666666667C471.4666666666667 426.6666666666667 490.6666666666666 407.4666666666667 490.6666666666666 384V85.3333333333334C490.6666666666666 61.8666666666667 471.4666666666667 42.6666666666667 448 42.6666666666667H149.3333333333333C125.8666666666667 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V384C106.6666666666667 407.4666666666667 125.8666666666667 426.6666666666667 149.3333333333333 426.6666666666667H448M64 341.3333333333334V0H405.3333333333333V-42.6666666666666H64C40.5333333333333 -42.6666666666666 21.3333333333333 -23.4666666666667 21.3333333333333 0V341.3333333333334H64M277.3333333333333 341.3333333333334H320C343.4666666666667 341.3333333333334 362.6666666666667 322.1333333333334 362.6666666666667 298.6666666666667V170.6666666666667C362.6666666666667 147.2000000000001 343.4666666666667 128 320 128H277.3333333333333C253.8666666666667 128 234.6666666666667 147.2000000000001 234.6666666666667 170.6666666666667V298.6666666666667C234.6666666666667 322.1333333333334 253.8666666666667 341.3333333333334 277.3333333333333 341.3333333333334M277.3333333333333 298.6666666666667V170.6666666666667H320V298.6666666666667H277.3333333333333z" />
+    <glyph glyph-name="numeric-0-box-outline"
+      unicode="&#xF3A3;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667V341.3333333333334H106.6666666666667V42.6666666666667H405.3333333333333M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M234.6666666666667 298.6666666666667H277.3333333333333C300.8 298.6666666666667 320 279.4666666666667 320 256V128C320 104.5333333333333 300.8 85.3333333333334 277.3333333333333 85.3333333333334H234.6666666666667C211.2 85.3333333333334 192 104.5333333333333 192 128V256C192 279.4666666666667 211.2 298.6666666666667 234.6666666666667 298.6666666666667M234.6666666666667 256V128H277.3333333333333V256H234.6666666666667z" />
+    <glyph glyph-name="numeric-1"
+      unicode="&#x31;"
+      horiz-adv-x="512" d=" M213.3333333333333 298.6666666666667V256H256V85.3333333333334H298.6666666666667V298.6666666666667H213.3333333333333z" />
+    <glyph glyph-name="numeric-1-box"
+      unicode="&#xF3A4;"
+      horiz-adv-x="512" d=" M298.6666666666667 85.3333333333334H256V256H213.3333333333333V298.6666666666667H298.6666666666667M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="numeric-1-box-multiple-outline"
+      unicode="&#xF3A5;"
+      horiz-adv-x="512" d=" M448 85.3333333333334H149.3333333333333V384H448M448 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V384C490.6666666666666 407.4666666666667 471.4666666666667 426.6666666666667 448 426.6666666666667M298.6666666666667 128H341.3333333333333V341.3333333333334H256V298.6666666666667H298.6666666666667M64 341.3333333333334H21.3333333333333V0C21.3333333333333 -23.4666666666667 40.5333333333333 -42.6666666666666 64 -42.6666666666666H405.3333333333333V0H64V341.3333333333334z" />
+    <glyph glyph-name="numeric-1-box-outline"
+      unicode="&#xF3A6;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M256 85.3333333333334H298.6666666666667V298.6666666666667H213.3333333333333V256H256" />
+    <glyph glyph-name="numeric-2"
+      unicode="&#x32;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V256H277.3333333333333V213.3333333333334H234.6666666666667C211.2 213.3333333333334 192 194.1333333333333 192 170.6666666666667V85.3333333333334H320V128H234.6666666666667V170.6666666666667H277.3333333333333C300.8 170.6666666666667 320 189.8666666666667 320 213.3333333333334V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H192z" />
+    <glyph glyph-name="numeric-2-box"
+      unicode="&#xF3A7;"
+      horiz-adv-x="512" d=" M320 213.3333333333334C320 189.6533333333334 300.8 170.6666666666667 277.3333333333333 170.6666666666667H234.6666666666667V128H320V85.3333333333334H192V170.6666666666667C192 194.3466666666667 211.2 213.3333333333334 234.6666666666667 213.3333333333334H277.3333333333333V256H192V298.6666666666667H277.3333333333333C300.8 298.6666666666667 320 279.4666666666667 320 256M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="numeric-2-box-multiple-outline"
+      unicode="&#xF3A8;"
+      horiz-adv-x="512" d=" M362.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H320C343.4666666666667 213.3333333333334 362.6666666666667 232.5333333333334 362.6666666666667 256V298.6666666666667C362.6666666666667 322.3466666666667 343.4666666666667 341.3333333333334 320 341.3333333333334H234.6666666666667V298.6666666666667H320V256H277.3333333333333C253.8666666666667 256 234.6666666666667 236.8 234.6666666666667 213.3333333333334V128H362.6666666666667M448 85.3333333333334H149.3333333333333V384H448M448 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V384C490.6666666666666 407.4666666666667 471.4666666666667 426.6666666666667 448 426.6666666666667M64 341.3333333333334H21.3333333333333V0C21.3333333333333 -23.4666666666667 40.5333333333333 -42.6666666666666 64 -42.6666666666666H405.3333333333333V0H64V341.3333333333334z" />
+    <glyph glyph-name="numeric-2-box-outline"
+      unicode="&#xF3A9;"
+      horiz-adv-x="512" d=" M320 128H234.6666666666667V170.6666666666667H277.3333333333333C300.8 170.6666666666667 320 189.8666666666667 320 213.3333333333334V256C320 279.68 300.8 298.6666666666667 277.3333333333333 298.6666666666667H192V256H277.3333333333333V213.3333333333334H234.6666666666667C211.2 213.3333333333334 192 194.1333333333333 192 170.6666666666667V85.3333333333334H320M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="numeric-3"
+      unicode="&#x33;"
+      horiz-adv-x="512" d=" M320 128V160C320 177.7066666666667 305.7066666666667 192 288 192C305.7066666666667 192 320 206.2933333333334 320 224V256C320 279.68 300.8 298.6666666666667 277.3333333333333 298.6666666666667H192V256H277.3333333333333V213.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333V128H192V85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128" />
+    <glyph glyph-name="numeric-3-box"
+      unicode="&#xF3AA;"
+      horiz-adv-x="512" d=" M320 224C320 206.2933333333334 305.7066666666667 192 288 192C305.92 192 320 177.7066666666667 320 160V128C320 104.3200000000001 301.0133333333333 85.3333333333334 277.3333333333333 85.3333333333334H192V128H277.3333333333333V170.6666666666667H234.6666666666667V213.3333333333334H277.3333333333333V256H192V298.6666666666667H277.3333333333333C301.0133333333333 298.6666666666667 320 279.68 320 256M405.3333333333333 384H106.6666666666667C83.4133333333333 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C429.0133333333333 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="numeric-3-box-multiple-outline"
+      unicode="&#xF3AB;"
+      horiz-adv-x="512" d=" M362.6666666666667 170.6666666666667V202.6666666666667C362.6666666666667 220.3733333333333 348.3733333333333 234.6666666666667 330.6666666666667 234.6666666666667C348.3733333333333 234.6666666666667 362.6666666666667 248.96 362.6666666666667 266.6666666666667V298.6666666666667C362.6666666666667 322.3466666666667 343.4666666666667 341.3333333333334 320 341.3333333333334H234.6666666666667V298.6666666666667H320V256H277.3333333333333V213.3333333333334H320V170.6666666666667H234.6666666666667V128H320C343.4666666666667 128 362.6666666666667 147.2000000000001 362.6666666666667 170.6666666666667M64 341.3333333333334H21.3333333333333V0C21.3333333333333 -23.4666666666667 40.5333333333333 -42.6666666666666 64 -42.6666666666666H405.3333333333333V0H64M448 85.3333333333334H149.3333333333333V384H448M448 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V384C490.6666666666666 407.4666666666667 471.4666666666667 426.6666666666667 448 426.6666666666667z" />
+    <glyph glyph-name="numeric-3-box-outline"
+      unicode="&#xF3AC;"
+      horiz-adv-x="512" d=" M320 128V160C320 177.7066666666667 305.7066666666667 192 288 192C305.7066666666667 192 320 206.2933333333334 320 224V256C320 279.68 300.8 298.6666666666667 277.3333333333333 298.6666666666667H192V256H277.3333333333333V213.3333333333334H234.6666666666667V170.6666666666667H277.3333333333333V128H192V85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="numeric-4"
+      unicode="&#x34;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V170.6666666666667H277.3333333333333V85.3333333333334H320V298.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667V298.6666666666667H192z" />
+    <glyph glyph-name="numeric-4-box"
+      unicode="&#xF3AD;"
+      horiz-adv-x="512" d=" M320 85.3333333333334H277.3333333333333V170.6666666666667H192V298.6666666666667H234.6666666666667V213.3333333333334H277.3333333333333V298.6666666666667H320M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="numeric-4-box-multiple-outline"
+      unicode="&#xF3AE;"
+      horiz-adv-x="512" d=" M448 85.3333333333334H149.3333333333333V384H448M448 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V384C490.6666666666666 407.4666666666667 471.4666666666667 426.6666666666667 448 426.6666666666667M320 128H362.6666666666667V341.3333333333334H320V256H277.3333333333333V341.3333333333334H234.6666666666667V213.3333333333334H320M64 341.3333333333334H21.3333333333333V0C21.3333333333333 -23.4666666666667 40.5333333333333 -42.6666666666666 64 -42.6666666666666H405.3333333333333V0H64V341.3333333333334z" />
+    <glyph glyph-name="numeric-4-box-outline"
+      unicode="&#xF3AF;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M277.3333333333333 85.3333333333334H320V298.6666666666667H277.3333333333333V213.3333333333334H234.6666666666667V298.6666666666667H192V170.6666666666667H277.3333333333333" />
+    <glyph glyph-name="numeric-5"
+      unicode="&#x35;"
+      horiz-adv-x="512" d=" M192 298.6666666666667V170.6666666666667H277.3333333333333V128H192V85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V170.6666666666667C320 194.1333333333333 300.8 213.3333333333334 277.3333333333333 213.3333333333334H234.6666666666667V256H320V298.6666666666667H192z" />
+    <glyph glyph-name="numeric-5-box"
+      unicode="&#xF3B0;"
+      horiz-adv-x="512" d=" M320 256H234.6666666666667V213.3333333333334H277.3333333333333C300.8 213.3333333333334 320 194.1333333333333 320 170.6666666666667V128C320 104.3200000000001 300.8 85.3333333333334 277.3333333333333 85.3333333333334H192V128H277.3333333333333V170.6666666666667H192V298.6666666666667H320M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="numeric-5-box-multiple-outline"
+      unicode="&#xF3B1;"
+      horiz-adv-x="512" d=" M362.6666666666667 170.6666666666667V213.3333333333334C362.6666666666667 237.0133333333333 343.4666666666667 256 320 256H277.3333333333333V298.6666666666667H362.6666666666667V341.3333333333334H234.6666666666667V213.3333333333334H320V170.6666666666667H234.6666666666667V128H320C343.4666666666667 128 362.6666666666667 147.2000000000001 362.6666666666667 170.6666666666667M64 341.3333333333334H21.3333333333333V0C21.3333333333333 -23.4666666666667 40.5333333333333 -42.6666666666666 64 -42.6666666666666H405.3333333333333V0H64M448 85.3333333333334H149.3333333333333V384H448M448 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V384C490.6666666666666 407.4666666666667 471.4666666666667 426.6666666666667 448 426.6666666666667z" />
+    <glyph glyph-name="numeric-5-box-outline"
+      unicode="&#xF3B2;"
+      horiz-adv-x="512" d=" M320 128V170.6666666666667C320 194.3466666666667 300.8 213.3333333333334 277.3333333333333 213.3333333333334H234.6666666666667V256H320V298.6666666666667H192V170.6666666666667H277.3333333333333V128H192V85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="numeric-6"
+      unicode="&#x36;"
+      horiz-adv-x="512" d=" M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V170.6666666666667C320 194.1333333333333 300.8 213.3333333333334 277.3333333333333 213.3333333333334H234.6666666666667V256H320V298.6666666666667H234.6666666666667M234.6666666666667 170.6666666666667H277.3333333333333V128H234.6666666666667V170.6666666666667z" />
+    <glyph glyph-name="numeric-6-box"
+      unicode="&#xF3B3;"
+      horiz-adv-x="512" d=" M320 256H234.6666666666667V213.3333333333334H277.3333333333333C300.8 213.3333333333334 320 194.1333333333333 320 170.6666666666667V128C320 104.3200000000001 300.8 85.3333333333334 277.3333333333333 85.3333333333334H234.6666666666667C211.2 85.3333333333334 192 104.5333333333333 192 128V256C192 279.68 211.2 298.6666666666667 234.6666666666667 298.6666666666667H320M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M234.6666666666667 128H277.3333333333333V170.6666666666667H234.6666666666667V128z" />
+    <glyph glyph-name="numeric-6-box-multiple-outline"
+      unicode="&#xF3B4;"
+      horiz-adv-x="512" d=" M277.3333333333333 213.3333333333334H320V170.6666666666667H277.3333333333333M277.3333333333333 128H320C343.4666666666667 128 362.6666666666667 147.2000000000001 362.6666666666667 170.6666666666667V213.3333333333334C362.6666666666667 237.0133333333333 343.4666666666667 256 320 256H277.3333333333333V298.6666666666667H362.6666666666667V341.3333333333334H277.3333333333333C253.8666666666667 341.3333333333334 234.6666666666667 322.1333333333334 234.6666666666667 298.6666666666667V170.6666666666667C234.6666666666667 146.9866666666667 253.8666666666667 128 277.3333333333333 128M448 85.3333333333334H149.3333333333333V384H448M448 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V384C490.6666666666666 407.4666666666667 471.4666666666667 426.6666666666667 448 426.6666666666667M64 341.3333333333334H21.3333333333333V0C21.3333333333333 -23.4666666666667 40.5333333333333 -42.6666666666666 64 -42.6666666666666H405.3333333333333V0H64V341.3333333333334z" />
+    <glyph glyph-name="numeric-6-box-outline"
+      unicode="&#xF3B5;"
+      horiz-adv-x="512" d=" M234.6666666666667 170.6666666666667H277.3333333333333V128H234.6666666666667M234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V170.6666666666667C320 194.3466666666667 300.8 213.3333333333334 277.3333333333333 213.3333333333334H234.6666666666667V256H320V298.6666666666667H234.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V128C192 104.3200000000001 211.2 85.3333333333334 234.6666666666667 85.3333333333334M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="numeric-7"
+      unicode="&#x37;"
+      horiz-adv-x="512" d=" M234.6666666666667 85.3333333333334L320 256V298.6666666666667H192V256H277.3333333333333L192 85.3333333333334" />
+    <glyph glyph-name="numeric-7-box"
+      unicode="&#xF3B6;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M234.6666666666667 85.3333333333334L320 256V298.6666666666667H192V256H277.3333333333333L192 85.3333333333334H234.6666666666667z" />
+    <glyph glyph-name="numeric-7-box-multiple-outline"
+      unicode="&#xF3B7;"
+      horiz-adv-x="512" d=" M277.3333333333333 128L362.6666666666667 298.6666666666667V341.3333333333334H234.6666666666667V298.6666666666667H320L234.6666666666667 128M448 85.3333333333334H149.3333333333333V384H448M448 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V384C490.6666666666666 407.4666666666667 471.4666666666667 426.6666666666667 448 426.6666666666667M64 341.3333333333334H21.3333333333333V0C21.3333333333333 -23.4666666666667 40.5333333333333 -42.6666666666666 64 -42.6666666666666H405.3333333333333V0H64V341.3333333333334z" />
+    <glyph glyph-name="numeric-7-box-outline"
+      unicode="&#xF3B8;"
+      horiz-adv-x="512" d=" M234.6666666666667 85.3333333333334L320 256V298.6666666666667H192V256H277.3333333333333L192 85.3333333333334M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="numeric-8"
+      unicode="&#x38;"
+      horiz-adv-x="512" d=" M234.6666666666667 170.6666666666667H277.3333333333333V128H234.6666666666667M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667M234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V160C320 177.7066666666667 305.7066666666667 192 288 192C305.7066666666667 192 320 206.2933333333334 320 224V256C320 279.68 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V224C192 206.2933333333334 206.2933333333333 192 224 192C206.2933333333333 192 192 177.7066666666667 192 160V128C192 104.3200000000001 211.2 85.3333333333334 234.6666666666667 85.3333333333334" />
+    <glyph glyph-name="numeric-8-box"
+      unicode="&#xF3B9;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V160C320 177.7066666666667 305.7066666666667 192 288 192C305.7066666666667 192 320 206.2933333333334 320 224V256C320 279.68 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V224C192 206.2933333333334 206.2933333333333 192 224 192C206.2933333333333 192 192 177.7066666666667 192 160V128C192 104.3200000000001 211.2 85.3333333333334 234.6666666666667 85.3333333333334M234.6666666666667 170.6666666666667H277.3333333333333V128H234.6666666666667V170.6666666666667M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667V256z" />
+    <glyph glyph-name="numeric-8-box-multiple-outline"
+      unicode="&#xF3BA;"
+      horiz-adv-x="512" d=" M277.3333333333333 213.3333333333334H320V170.6666666666667H277.3333333333333M277.3333333333333 298.6666666666667H320V256H277.3333333333333M277.3333333333333 128H320C343.4666666666667 128 362.6666666666667 147.2000000000001 362.6666666666667 170.6666666666667V202.6666666666667C362.6666666666667 220.3733333333333 348.3733333333333 234.6666666666667 330.6666666666667 234.6666666666667C348.3733333333333 234.6666666666667 362.6666666666667 248.96 362.6666666666667 266.6666666666667V298.6666666666667C362.6666666666667 322.3466666666667 343.4666666666667 341.3333333333334 320 341.3333333333334H277.3333333333333C253.8666666666667 341.3333333333334 234.6666666666667 322.1333333333334 234.6666666666667 298.6666666666667V266.6666666666667C234.6666666666667 248.96 248.96 234.6666666666667 266.6666666666667 234.6666666666667C248.96 234.6666666666667 234.6666666666667 220.3733333333333 234.6666666666667 202.6666666666667V170.6666666666667C234.6666666666667 146.9866666666667 253.8666666666667 128 277.3333333333333 128M448 85.3333333333334H149.3333333333333V384H448M448 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V384C490.6666666666666 407.4666666666667 471.4666666666667 426.6666666666667 448 426.6666666666667M64 341.3333333333334H21.3333333333333V0C21.3333333333333 -23.4666666666667 40.5333333333333 -42.6666666666666 64 -42.6666666666666H405.3333333333333V0H64V341.3333333333334z" />
+    <glyph glyph-name="numeric-8-box-outline"
+      unicode="&#xF3BB;"
+      horiz-adv-x="512" d=" M234.6666666666667 170.6666666666667H277.3333333333333V128H234.6666666666667M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667M234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V160C320 177.7066666666667 305.7066666666667 192 288 192C305.7066666666667 192 320 206.2933333333334 320 224V256C320 279.68 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V224C192 206.2933333333334 206.2933333333333 192 224 192C206.2933333333333 192 192 177.7066666666667 192 160V128C192 104.3200000000001 211.2 85.3333333333334 234.6666666666667 85.3333333333334M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="numeric-9"
+      unicode="&#x39;"
+      horiz-adv-x="512" d=" M277.3333333333333 85.3333333333334C300.8 85.3333333333334 320 104.5333333333333 320 128V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V213.3333333333334C192 189.8666666666667 211.2 170.6666666666667 234.6666666666667 170.6666666666667H277.3333333333333V128H192V85.3333333333334H277.3333333333333M277.3333333333333 213.3333333333334H234.6666666666667V256H277.3333333333333V213.3333333333334z" />
+    <glyph glyph-name="numeric-9-box"
+      unicode="&#xF3BC;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M277.3333333333333 213.3333333333334H234.6666666666667V256H277.3333333333333V213.3333333333334M277.3333333333333 298.6666666666667H234.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V213.3333333333334C192 189.6533333333334 211.2 170.6666666666667 234.6666666666667 170.6666666666667H277.3333333333333V128H192V85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V256C320 279.68 300.8 298.6666666666667 277.3333333333333 298.6666666666667z" />
+    <glyph glyph-name="numeric-9-box-multiple-outline"
+      unicode="&#xF3BD;"
+      horiz-adv-x="512" d=" M320 256H277.3333333333333V298.6666666666667H320M320 341.3333333333334H277.3333333333333C253.8666666666667 341.3333333333334 234.6666666666667 322.1333333333334 234.6666666666667 298.6666666666667V256C234.6666666666667 232.32 253.8666666666667 213.3333333333334 277.3333333333333 213.3333333333334H320V170.6666666666667H234.6666666666667V128H320C343.4666666666667 128 362.6666666666667 147.2000000000001 362.6666666666667 170.6666666666667V298.6666666666667C362.6666666666667 322.3466666666667 343.4666666666667 341.3333333333334 320 341.3333333333334M448 85.3333333333334H149.3333333333333V384H448M448 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V384C490.6666666666666 407.4666666666667 471.4666666666667 426.6666666666667 448 426.6666666666667M64 341.3333333333334H21.3333333333333V0C21.3333333333333 -23.4666666666667 40.5333333333333 -42.6666666666666 64 -42.6666666666666H405.3333333333333V0H64V341.3333333333334z" />
+    <glyph glyph-name="numeric-9-box-outline"
+      unicode="&#xF3BE;"
+      horiz-adv-x="512" d=" M277.3333333333333 213.3333333333334H234.6666666666667V256H277.3333333333333M277.3333333333333 298.6666666666667H234.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V213.3333333333334C192 189.6533333333334 211.2 170.6666666666667 234.6666666666667 170.6666666666667H277.3333333333333V128H192V85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V256C320 279.68 300.8 298.6666666666667 277.3333333333333 298.6666666666667M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="numeric-9-plus-box"
+      unicode="&#xF3BF;"
+      horiz-adv-x="512" d=" M448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334M405.3333333333333 213.3333333333334H362.6666666666667V256H320V213.3333333333334H277.3333333333333V170.6666666666667H320V128H362.6666666666667V170.6666666666667H405.3333333333333V213.3333333333334M213.3333333333333 298.6666666666667H170.6666666666667C147.2 298.6666666666667 128 279.4666666666667 128 256V213.3333333333334C128 189.6533333333334 147.2 170.6666666666667 170.6666666666667 170.6666666666667H213.3333333333333V128H128V85.3333333333334H213.3333333333333C236.8 85.3333333333334 256 104.5333333333333 256 128V256C256 279.68 236.8 298.6666666666667 213.3333333333333 298.6666666666667M170.6666666666667 256H213.3333333333333V213.3333333333334H170.6666666666667V256z" />
+    <glyph glyph-name="numeric-9-plus-box-multiple-outline"
+      unicode="&#xF3C0;"
+      horiz-adv-x="512" d=" M448 256H405.3333333333333V298.6666666666667H362.6666666666667V256H320V213.3333333333334H362.6666666666667V170.6666666666667H405.3333333333333V213.3333333333334H448V85.3333333333334H149.3333333333333V384H448M448 426.6666666666667H149.3333333333333C125.8666666666667 426.6666666666667 106.6666666666667 407.4666666666667 106.6666666666667 384V85.3333333333334C106.6666666666667 61.8666666666667 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V384C490.6666666666666 407.4666666666667 471.4666666666667 426.6666666666667 448 426.6666666666667M234.6666666666667 256V277.3333333333334H256V256M298.6666666666667 192V277.3333333333334C298.6666666666667 301.0133333333333 279.4666666666667 320 256 320H234.6666666666667C211.2 320 192 300.8 192 277.3333333333334V256C192 232.32 211.2 213.3333333333334 234.6666666666667 213.3333333333334H256V192H192V149.3333333333334H256C279.4666666666667 149.3333333333334 298.6666666666667 168.5333333333334 298.6666666666667 192M64 341.3333333333334H21.3333333333333V0C21.3333333333333 -23.4666666666667 40.5333333333333 -42.6666666666666 64 -42.6666666666666H405.3333333333333V0H64V341.3333333333334z" />
+    <glyph glyph-name="numeric-9-plus-box-outline"
+      unicode="&#xF3C1;"
+      horiz-adv-x="512" d=" M405.3333333333333 213.3333333333334H362.6666666666667V256H320V213.3333333333334H277.3333333333333V170.6666666666667H320V128H362.6666666666667V170.6666666666667H405.3333333333333V42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M192 213.3333333333334V234.6666666666667H213.3333333333333V213.3333333333334M256 149.3333333333334V234.6666666666667C256 258.3466666666667 236.8 277.3333333333334 213.3333333333333 277.3333333333334H192C168.5333333333333 277.3333333333334 149.3333333333333 258.1333333333334 149.3333333333333 234.6666666666667V213.3333333333334C149.3333333333333 189.6533333333334 168.5333333333333 170.6666666666667 192 170.6666666666667H213.3333333333333V149.3333333333334H149.3333333333333V106.6666666666667H213.3333333333333C236.8 106.6666666666667 256 125.8666666666667 256 149.3333333333334z" />
+    <glyph glyph-name="nut"
+      unicode="&#xF6F7;"
+      horiz-adv-x="512" d=" M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 298.6666666666667C197.12 298.6666666666667 149.3333333333333 250.88 149.3333333333333 192S197.12 85.3333333333334 256 85.3333333333334S362.6666666666667 133.12 362.6666666666667 192S314.88 298.6666666666667 256 298.6666666666667z" />
+    <glyph glyph-name="nutrition"
+      unicode="&#xF3C2;"
+      horiz-adv-x="512" d=" M469.3333333333333 64C469.3333333333333 16.8533333333334 431.1466666666667 -21.3333333333333 384 -21.3333333333333H298.6666666666667C251.52 -21.3333333333333 213.3333333333333 16.8533333333334 213.3333333333333 64V106.6666666666667H469.3333333333333V64M85.3333333333333 384H298.6666666666667C322.1333333333334 384 341.3333333333333 364.8 341.3333333333333 341.3333333333334V149.3333333333334H170.6666666666667V42.6666666666667H85.3333333333333C61.8666666666667 42.6666666666667 42.6666666666667 61.8666666666667 42.6666666666667 85.3333333333334V341.3333333333334C42.6666666666667 364.8 61.8666666666667 384 85.3333333333333 384M85.3333333333333 320V277.3333333333334H128V320H85.3333333333333M298.6666666666667 277.3333333333334V320H170.6666666666667V277.3333333333334H298.6666666666667M85.3333333333333 234.6666666666667V192H128V234.6666666666667H85.3333333333333M170.6666666666667 234.6666666666667V192H298.6666666666667V234.6666666666667H170.6666666666667M85.3333333333333 149.3333333333334V106.6666666666667H128V149.3333333333334H85.3333333333333z" />
+    <glyph glyph-name="oar"
+      unicode="&#xF67B;"
+      horiz-adv-x="512" d=" M431.5733333333333 123.52C400.4266666666666 154.6666666666667 319.36 230.4 272.4266666666666 207.5733333333333L96 384L64 352L240.64 175.1466666666667C219.7333333333333 128 296.1066666666667 50.7733333333334 327.4666666666667 19.6266666666667C365.0133333333333 -17.92 389.5466666666666 1.7066666666667 418.3466666666667 30.5066666666668C450.1333333333333 62.2933333333334 461.0133333333333 93.6533333333334 431.5733333333333 123.5200000000001z" />
+    <glyph glyph-name="octagon"
+      unicode="&#xF3C3;"
+      horiz-adv-x="512" d=" M335.5733333333333 384H176.4266666666667L64 271.5733333333334V112.4266666666667L176.4266666666667 0H335.5733333333333L448 112.4266666666667V271.5733333333334" />
+    <glyph glyph-name="octagon-outline"
+      unicode="&#xF3C4;"
+      horiz-adv-x="512" d=" M176.4266666666667 384L64 271.5733333333334V112.4266666666667L176.4266666666667 0H335.5733333333333C373.3333333333333 37.5466666666667 448 112.4266666666667 448 112.4266666666667V271.5733333333334L335.5733333333333 384M194.1333333333333 341.3333333333334H317.8666666666666L405.3333333333333 253.8666666666667V130.1333333333334L317.8666666666667 42.6666666666667H194.1333333333333L106.6666666666667 130.1333333333333V253.8666666666667" />
+    <glyph glyph-name="octagram"
+      unicode="&#xF6F8;"
+      horiz-adv-x="512" d=" M46.9333333333333 105.3866666666667L82.7733333333333 192L46.9333333333333 278.6133333333334L133.5466666666667 314.4533333333333L169.3866666666667 401.0666666666667L256 365.2266666666667L342.6133333333333 401.0666666666667L378.4533333333333 314.4533333333334L465.0666666666666 278.6133333333334L429.2266666666667 192L465.0666666666667 105.3866666666667L378.4533333333334 69.5466666666667L342.6133333333334 -17.0666666666666L256 18.7733333333333L169.3866666666667 -17.0666666666667L133.5466666666667 69.5466666666666L46.9333333333334 105.3866666666667z" />
+    <glyph glyph-name="octagram-outline"
+      unicode="&#xF774;"
+      horiz-adv-x="512" d=" M46.9333333333333 105.3866666666667L82.7733333333333 192L46.9333333333333 278.6133333333334L133.5466666666667 314.4533333333333L169.3866666666667 401.0666666666667L256 365.2266666666667L342.6133333333333 401.0666666666667L378.4533333333333 314.4533333333334L465.0666666666666 278.6133333333334L429.2266666666667 192L465.0666666666667 105.3866666666667L378.4533333333334 69.5466666666667L342.6133333333334 -17.0666666666666L256 18.7733333333333L169.3866666666667 -17.0666666666667L133.5466666666667 69.5466666666666L46.9333333333334 105.3866666666667M102.6133333333333 256L129.0666666666667 192L102.6133333333333 128L166.1866666666667 102.1866666666667L192 38.6133333333333L256 65.0666666666666L320 38.6133333333333L345.8133333333334 102.1866666666667L409.3866666666667 128L382.9333333333334 192L409.3866666666667 256L345.8133333333334 281.8133333333334L320 345.3866666666667L256 318.9333333333334L192 345.3866666666667L166.1866666666667 281.8133333333334L102.6133333333333 256z" />
+    <glyph glyph-name="odnoklassniki"
+      unicode="&#xF3C5;"
+      horiz-adv-x="512" d=" M380.3733333333333 176.2133333333334C374.3999999999999 188.3733333333333 357.5466666666666 198.6133333333334 335.1466666666666 181.3333333333334C304.64 157.0133333333333 255.9999999999999 157.0133333333333 255.9999999999999 157.0133333333333S207.3599999999999 157.0133333333333 176.8533333333333 181.3333333333334C154.4533333333332 198.6133333333334 137.5999999999999 188.3733333333333 131.6266666666666 176.2133333333334C120.9599999999999 154.88 132.9066666666666 144.4266666666667 159.9999999999999 127.1466666666667C183.2533333333333 112.2133333333334 215.0399999999999 106.6666666666667 235.5199999999999 104.5333333333334L218.4533333333332 87.4666666666667C194.1333333333333 63.36 170.6666666666667 40.1066666666667 154.6666666666667 23.8933333333334C145.0666666666667 14.08 145.0666666666667 -1.4933333333333 154.6666666666667 -10.6666666666666L157.6533333333333 -14.08C167.2533333333333 -23.6799999999999 183.04 -23.6799999999999 192.64 -14.08L256 49.4933333333333C280.5333333333333 25.3866666666667 303.7866666666667 2.1333333333334 320 -14.08C329.6 -23.6799999999999 345.1733333333333 -23.6799999999999 354.9866666666667 -14.08L357.76 -10.6666666666666C367.5733333333333 -1.4933333333333 367.5733333333333 14.08 357.76 23.8933333333334L294.1866666666666 87.4666666666667L277.3333333333333 104.7466666666667C297.6 106.6666666666667 328.96 112.4266666666667 352 127.1466666666667C379.0933333333333 144.4266666666667 391.04 154.8800000000001 380.3733333333333 176.2133333333334M256 350.5066666666667C285.44 350.5066666666667 309.3333333333333 326.6133333333334 309.3333333333333 297.3866666666667C309.3333333333333 267.9466666666667 285.44 244.2666666666667 256 244.2666666666667S202.6666666666667 267.9466666666667 202.6666666666667 297.3866666666667C202.6666666666667 326.6133333333334 226.56 350.5066666666667 256 350.5066666666667M256 189.4400000000001C315.7333333333334 189.4400000000001 363.9466666666666 237.6533333333334 363.9466666666666 297.3866666666667C363.9466666666666 356.9066666666667 315.7333333333334 405.3333333333333 256 405.3333333333333S148.0533333333334 356.9066666666667 148.0533333333334 297.3866666666667C148.0533333333334 237.6533333333334 196.2666666666667 189.4400000000001 256 189.4400000000001z" />
+    <glyph glyph-name="office"
+      unicode="&#xF3C6;"
+      horiz-adv-x="512" d=" M64 64L149.3333333333333 90.6666666666667V298.6666666666667L298.6666666666667 341.3333333333334V32L74.6666666666667 58.6666666666667L298.6666666666667 -21.3333333333333L426.6666666666667 5.3333333333334V373.3333333333334L297.6 405.3333333333333L64 325.3333333333334V64z" />
+    <glyph glyph-name="office-building"
+      unicode="&#xF990;"
+      horiz-adv-x="512" d=" M106.6666666666667 384V0H234.6666666666667V74.6666666666667H277.3333333333333V0H405.3333333333333V384H106.6666666666667M149.3333333333333 341.3333333333334H192V298.6666666666667H149.3333333333333V341.3333333333334M234.6666666666667 341.3333333333334H277.3333333333333V298.6666666666667H234.6666666666667V341.3333333333334M320 341.3333333333334H362.6666666666667V298.6666666666667H320V341.3333333333334M149.3333333333333 256H192V213.3333333333334H149.3333333333333V256M234.6666666666667 256H277.3333333333333V213.3333333333334H234.6666666666667V256M320 256H362.6666666666667V213.3333333333334H320V256M149.3333333333333 170.6666666666667H192V128H149.3333333333333V170.6666666666667M234.6666666666667 170.6666666666667H277.3333333333333V128H234.6666666666667V170.6666666666667M320 170.6666666666667H362.6666666666667V128H320V170.6666666666667M149.3333333333333 85.3333333333334H192V42.6666666666667H149.3333333333333V85.3333333333334M320 85.3333333333334H362.6666666666667V42.6666666666667H320V85.3333333333334z" />
+    <glyph glyph-name="oil"
+      unicode="&#xF3C7;"
+      horiz-adv-x="512" d=" M469.3333333333333 181.3333333333334S512 135.04 512 106.6666666666667C512 83.2 492.8 64 469.3333333333333 64S426.6666666666667 83.2 426.6666666666667 106.6666666666667C426.6666666666667 135.04 469.3333333333333 181.3333333333334 469.3333333333333 181.3333333333334M128 320H213.3333333333333C225.0666666666667 320 234.6666666666667 310.4 234.6666666666667 298.6666666666667S225.0666666666667 277.3333333333334 213.3333333333333 277.3333333333334H192V234.6666666666667H234.6666666666667C250.4533333333333 234.6666666666667 264.32 226.1333333333334 271.5733333333333 213.3333333333334L410.4533333333334 293.5466666666667L480 253.2266666666667C490.6666666666666 247.4666666666667 493.6533333333333 234.6666666666667 487.8933333333333 224C481.92 213.9733333333333 469.3333333333333 210.3466666666667 458.6666666666666 216.32L413.8666666666666 242.1333333333334L336 107.3066666666667C328.7466666666666 94.2933333333334 314.6666666666667 85.3333333333334 298.6666666666667 85.3333333333334H106.6666666666667C83.2 85.3333333333334 64 104.5333333333333 64 128V192C64 215.4666666666667 83.2 234.6666666666667 106.6666666666667 234.6666666666667H149.3333333333333V277.3333333333334H128C116.2666666666667 277.3333333333334 106.6666666666667 286.9333333333334 106.6666666666667 298.6666666666667S116.2666666666667 320 128 320M106.6666666666667 192V128H298.6666666666667L342.6133333333333 204.16L268.8 161.4933333333334L249.3866666666666 192H106.6666666666667M8.1066666666667 251.52L44.5866666666667 288C53.3333333333333 296.32 66.3466666666667 296.32 74.6666666666667 288C82.9866666666667 279.68 82.9866666666667 266.6666666666667 74.6666666666667 257.92L38.1866666666667 221.44C29.8666666666667 213.3333333333333 16.4266666666667 213.3333333333333 8.1066666666667 221.44C0 229.76 0 243.2 8.1066666666667 251.52z" />
+    <glyph glyph-name="oil-temperature"
+      unicode="&#xF3C8;"
+      horiz-adv-x="512" d=" M245.3333333333333 426.6666666666667C227.6266666666667 426.6666666666667 213.3333333333333 412.3733333333334 213.3333333333333 394.6666666666667V138.6666666666667C199.8933333333333 128.64 192 112.8533333333334 192 96C192 66.5600000000001 215.8933333333334 42.6666666666667 245.3333333333333 42.6666666666667S298.6666666666667 66.5600000000001 298.6666666666667 96C298.6666666666667 112.8533333333334 290.7733333333333 128 277.3333333333333 138.6666666666667V170.6666666666667H362.6666666666667V213.3333333333334H277.3333333333333V256H362.6666666666667V298.6666666666667H277.3333333333333V341.3333333333334H362.6666666666667V384H277.3333333333333V394.6666666666667C277.3333333333333 412.3733333333334 263.04 426.6666666666667 245.3333333333333 426.6666666666667M0 128V85.3333333333334C14.2933333333333 85.3333333333334 16.8533333333333 80.8533333333334 27.52 70.1866666666667S56.96 42.6666666666667 85.3333333333333 42.6666666666667S132.48 59.52 143.1466666666667 70.1866666666667C145.4933333333334 72.7466666666667 147.4133333333333 74.6666666666667 149.3333333333333 76.5866666666667V124.5866666666667C132.48 119.04 120.5333333333333 108.16 112.8533333333333 100.48C102.1866666666667 89.8133333333334 99.6266666666667 85.3333333333334 85.3333333333333 85.3333333333334S68.48 89.8133333333334 57.8133333333333 100.48S28.3733333333333 128 0 128M341.3333333333333 128V85.3333333333334C355.6266666666667 85.3333333333334 358.1866666666666 80.8533333333334 368.8533333333333 70.1866666666667S398.2933333333334 42.6666666666667 426.6666666666667 42.6666666666667S473.8133333333333 59.52 484.48 70.1866666666667S497.7066666666666 85.3333333333334 512 85.3333333333334V128C483.6266666666667 128 464.8533333333333 111.1466666666667 454.1866666666666 100.48S440.9600000000001 85.3333333333334 426.6666666666667 85.3333333333334S409.8133333333334 89.8133333333334 399.1466666666667 100.48S369.7066666666666 128 341.3333333333333 128M170.6666666666667 21.3333333333334C142.2933333333333 21.3333333333334 123.52 4.48 112.8533333333333 -6.1866666666666S99.6266666666667 -21.3333333333333 85.3333333333333 -21.3333333333333S68.48 -16.8533333333333 57.8133333333333 -6.1866666666666C50.1333333333333 1.4933333333333 38.1866666666667 12.3733333333334 21.3333333333333 17.92V-30.08C23.2533333333333 -32 25.1733333333333 -33.92 27.52 -36.48C38.1866666666667 -47.1466666666666 56.96 -64 85.3333333333333 -64S132.48 -47.1466666666666 143.1466666666667 -36.48S156.3733333333333 -21.3333333333333 170.6666666666667 -21.3333333333333S187.52 -25.8133333333333 198.1866666666667 -36.48C207.5733333333333 -45.6533333333333 222.72 -59.7333333333333 245.3333333333333 -63.1466666666666C248.7466666666667 -64 252.3733333333334 -64 256 -64C284.3733333333334 -64 303.1466666666667 -47.1466666666666 313.8133333333334 -36.48S327.04 -21.3333333333333 341.3333333333333 -21.3333333333333S358.1866666666666 -25.8133333333333 368.8533333333333 -36.48S398.2933333333334 -64 426.6666666666667 -64S473.8133333333333 -47.1466666666666 484.48 -36.48C486.8266666666667 -33.92 488.7466666666667 -32 490.6666666666666 -30.08V17.92C473.8133333333333 12.3733333333333 461.8666666666666 1.4933333333333 454.1866666666666 -6.1866666666666C443.52 -16.8533333333333 440.9599999999999 -21.3333333333333 426.6666666666667 -21.3333333333333S409.8133333333334 -16.8533333333333 399.1466666666667 -6.1866666666666S369.7066666666666 21.3333333333334 341.3333333333333 21.3333333333334S294.1866666666666 4.48 283.52 -6.1866666666666S270.2933333333333 -21.3333333333333 256 -21.3333333333333C251.3066666666667 -21.3333333333333 248.1066666666667 -20.6933333333333 245.3333333333333 -19.6266666666667C239.36 -17.4933333333333 235.7333333333334 -13.4400000000001 228.48 -6.1866666666667C217.8133333333333 4.48 199.04 21.3333333333334 170.6666666666667 21.3333333333334z" />
+    <glyph glyph-name="omega"
+      unicode="&#xF3C9;"
+      horiz-adv-x="512" d=" M408.5333333333333 42.6666666666667H285.6533333333333V88.1066666666667C330.6666666666667 122.6666666666667 353.92 165.5466666666666 353.92 216.7466666666667C353.92 248.7466666666667 344.7466666666667 273.92 326.8266666666667 292.48C308.6933333333334 311.04 285.2266666666667 320 256.64 320C227.84 320 204.16 311.04 185.8133333333333 292.2666666666667C167.2533333333333 273.7066666666667 158.08 248.1066666666667 158.08 215.8933333333334C158.08 165.1200000000001 181.3333333333333 122.4533333333334 226.3466666666667 88.1066666666667V42.6666666666667H103.4666666666667V88.1066666666667H179.4133333333333C128.8533333333333 121.1733333333334 103.4666666666667 165.76 103.4666666666667 221.8666666666667C103.4666666666667 266.6666666666667 117.3333333333333 301.6533333333333 145.28 327.2533333333334C173.2266666666666 353.0666666666667 209.92 365.8666666666667 255.36 365.8666666666667C301.8666666666666 365.8666666666667 338.9866666666666 353.0666666666667 366.7199999999999 327.68C394.6666666666666 302.2933333333334 408.5333333333333 266.6666666666667 408.5333333333333 222.2933333333333C408.5333333333333 166.1866666666667 382.9333333333333 121.3866666666667 331.7333333333333 88.1066666666667H408.5333333333333V42.6666666666667z" />
+    <glyph glyph-name="one-up"
+      unicode="&#xFB89;"
+      horiz-adv-x="512" d=" M213.3333333333333 42.6666666666667C200.5333333333333 42.6666666666667 192 51.2 192 64V85.3333333333334C192 96 200.5333333333333 106.6666666666667 213.3333333333333 106.6666666666667C224 106.6666666666667 234.6666666666667 98.1333333333334 234.6666666666667 85.3333333333334V64C234.6666666666667 51.2 226.1333333333334 42.6666666666667 213.3333333333333 42.6666666666667M320 64V85.3333333333334C320 96 311.4666666666667 106.6666666666667 298.6666666666667 106.6666666666667C288 106.6666666666667 277.3333333333333 98.1333333333334 277.3333333333333 85.3333333333334V64C277.3333333333333 53.3333333333334 285.8666666666667 42.6666666666667 298.6666666666667 42.6666666666667S320 51.2 320 64M469.3333333333333 192C469.3333333333333 136.5333333333334 435.2 87.4666666666667 384 55.4666666666667V21.3333333333334C384 -2.1333333333333 364.8 -21.3333333333333 341.3333333333333 -21.3333333333333H170.6666666666667C147.2 -21.3333333333333 128 -2.1333333333333 128 21.3333333333334V55.4666666666667C76.8 87.4666666666667 42.6666666666667 136.5333333333334 42.6666666666667 192.0000000000001C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M149.3333333333333 234.6666666666667C149.3333333333333 258.1333333333334 136.5333333333333 279.4666666666667 117.3333333333333 290.1333333333334C96 262.4000000000001 85.3333333333333 228.2666666666667 85.3333333333333 192C85.3333333333333 185.6 85.3333333333333 177.0666666666667 87.4666666666667 170.6666666666667C121.6 172.8 149.3333333333333 200.5333333333334 149.3333333333333 234.6666666666667M192 256C192 219.7333333333334 219.7333333333334 192 256 192S320 219.7333333333334 320 256S292.2666666666667 320 256 320S192 292.2666666666667 192 256M341.3333333333333 21.3333333333334V117.3333333333334C315.7333333333334 123.7333333333334 285.8666666666667 128 256 128S196.2666666666667 123.7333333333334 170.6666666666667 117.3333333333334V21.3333333333334H341.3333333333333M424.5333333333333 170.6666666666667C426.6666666666667 177.0666666666667 426.6666666666667 185.6 426.6666666666667 192C426.6666666666667 228.2666666666667 416 262.4000000000001 394.6666666666667 290.1333333333334C375.4666666666667 279.4666666666667 362.6666666666667 258.1333333333334 362.6666666666667 234.6666666666667C362.6666666666667 200.5333333333334 390.4 172.8 424.5333333333333 170.6666666666667z" />
+    <glyph glyph-name="onedrive"
+      unicode="&#xF3CA;"
+      horiz-adv-x="512" d=" M428.3733333333333 157.0133333333333C451.6266666666666 153.3866666666667 469.3333333333333 133.3333333333334 469.3333333333333 109.0133333333333C469.3333333333333 90.0266666666666 458.6666666666666 73.6 442.6666666666667 65.7066666666667L439.04 64H195.4133333333333C164.48 64 139.52 89.3866666666667 139.52 120.3200000000001C139.52 151.4666666666667 164.6933333333333 176.6400000000001 195.84 176.6400000000001L200.5333333333333 176.4266666666667L200.32 180.6933333333334C200.32 219.5200000000001 231.8933333333334 251.0933333333334 270.7200000000001 251.0933333333334C298.0266666666667 251.0933333333334 321.7066666666667 235.52 333.44 213.3333333333334C343.04 219.0933333333333 354.56 222.9333333333333 367.1466666666667 222.9333333333333C401.0666666666667 222.9333333333333 428.5866666666667 195.4133333333334 428.5866666666667 161.4933333333334L428.3733333333333 157.0133333333333M188.16 188.5866666666667C153.8133333333333 184.7466666666667 127.1466666666667 155.7333333333334 127.1466666666667 120.3200000000001C127.1466666666667 105.8133333333334 131.6266666666667 92.5866666666667 138.6666666666667 81.4933333333333H100.9066666666667C68.6933333333333 81.4933333333333 42.6666666666667 107.52 42.6666666666667 139.7333333333334C42.6666666666667 170.6666666666667 66.56 195.6266666666667 96.64 197.7600000000001L95.1466666666667 212.0533333333334C95.1466666666667 248.32 124.5866666666667 277.3333333333334 160.8533333333333 277.3333333333334C174.2933333333333 277.3333333333334 187.0933333333333 273.4933333333334 197.5466666666667 266.6666666666667C212.2666666666667 296.32 243.2 316.8 278.8266666666667 316.8C325.76 316.8 364.3733333333333 280.9600000000001 369.0666666666667 235.3066666666667H367.1466666666667C356.9066666666667 235.3066666666667 347.0933333333333 233.1733333333334 337.92 229.3333333333334C322.56 250.6666666666667 297.8133333333334 263.68 270.72 263.68C227.6266666666667 263.68 192 230.6133333333333 188.16 188.5866666666667z" />
+    <glyph glyph-name="onenote"
+      unicode="&#xF746;"
+      horiz-adv-x="512" d=" M41.8133333333333 345.6L298.6666666666667 382.2933333333334V341.3333333333334H448C459.7333333333333 341.3333333333334 469.3333333333333 331.7333333333334 469.3333333333333 320V234.6666666666667C469.3333333333333 222.9333333333333 459.7333333333333 213.3333333333334 448 213.3333333333334H426.6666666666667V42.6666666666667H298.6666666666667V0L41.8133333333333 38.1866666666667V345.6M234.6666666666667 90.6666666666667V272L192 266.6666666666667V176L149.3333333333333 261.3333333333334L106.6666666666667 256V106.6666666666667L138.6666666666667 101.3333333333334V218.6666666666667L192 96L234.6666666666667 90.6666666666667M298.6666666666667 149.3333333333334H384V170.6666666666667H298.6666666666667V149.3333333333334M298.6666666666667 213.3333333333334H384V234.6666666666667H298.6666666666667V213.3333333333334M298.6666666666667 277.3333333333334H384V298.6666666666667H298.6666666666667V277.3333333333334M298.6666666666667 106.6666666666667V85.3333333333334H384V106.6666666666667H298.6666666666667z" />
+    <glyph glyph-name="onepassword"
+      unicode="&#xF880;"
+      horiz-adv-x="512" d=" M256 426.6666666666667C126.2933333333333 426.6666666666667 21.3333333333333 321.7066666666667 21.3333333333333 192S126.2933333333333 -42.6666666666666 256 -42.6666666666666S490.6666666666666 62.2933333333334 490.6666666666666 192S385.7066666666666 426.6666666666667 256 426.6666666666667M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M277.3333333333333 160C277.3333333333333 146.56 285.8666666666667 134.4 298.6666666666667 129.92V64H213.3333333333333V193.92C229.9733333333333 199.68 238.72 217.6 233.1733333333333 234.6666666666667C229.9733333333333 243.6266666666667 222.72 250.88 213.3333333333333 254.08V320H298.6666666666667V190.0800000000001C285.8666666666667 185.6 277.3333333333333 173.4400000000001 277.3333333333333 160z" />
+    <glyph glyph-name="opacity"
+      unicode="&#xF5CC;"
+      horiz-adv-x="512" d=" M376.7466666666667 277.3333333333334L256 397.8666666666667L135.2533333333333 277.3333333333334C101.9733333333333 244.0533333333334 85.3333333333333 199.68 85.3333333333333 157.0133333333333C85.3333333333333 114.3466666666667 101.9733333333333 69.3333333333334 135.2533333333333 36.0533333333333C168.5333333333333 2.7733333333333 212.2666666666667 -14.08 256 -14.08C299.7333333333334 -14.08 343.4666666666667 2.7733333333333 376.7466666666667 36.0533333333333C410.0266666666667 69.3333333333333 426.6666666666667 114.3466666666666 426.6666666666667 157.0133333333333S410.0266666666667 244.0533333333334 376.7466666666667 277.3333333333334M128 149.3333333333334C128 192 141.2266666666667 219.0933333333333 165.5466666666667 243.2L256 335.5733333333334L346.4533333333334 242.1333333333334C370.7733333333333 218.24 384 192 384 149.3333333333334H128z" />
+    <glyph glyph-name="open-in-app"
+      unicode="&#xF3CB;"
+      horiz-adv-x="512" d=" M256 234.6666666666667L170.6666666666667 149.3333333333334H234.6666666666667V21.3333333333334H277.3333333333333V149.3333333333334H341.3333333333333M405.3333333333333 362.6666666666667H106.6666666666667C82.9866666666667 362.6666666666667 64 343.4666666666667 64 320V64C64 40.5333333333333 83.2 21.3333333333334 106.6666666666667 21.3333333333334H192V64H106.6666666666667V277.3333333333334H405.3333333333333V64H320V21.3333333333334H405.3333333333333C428.8 21.3333333333334 448 40.5333333333333 448 64V320C448 343.4666666666667 428.8 362.6666666666667 405.3333333333333 362.6666666666667z" />
+    <glyph glyph-name="open-in-new"
+      unicode="&#xF3CC;"
+      horiz-adv-x="512" d=" M298.6666666666667 384V341.3333333333334H375.2533333333334L165.5466666666667 131.6266666666667L195.6266666666667 101.5466666666667L405.3333333333333 311.2533333333334V234.6666666666667H448V384M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H256V384H106.6666666666667C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V192H405.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="open-source-initiative"
+      unicode="&#xFB8A;"
+      horiz-adv-x="512" d=" M328.7466666666667 -21.3333333333333H324.6933333333334C322.1333333333334 -20.2666666666666 320 -18.1333333333333 319.1466666666667 -15.5733333333333L271.7866666666667 108.16C269.8666666666667 113.28 272.4266666666666 119.04 277.3333333333333 121.1733333333334C292.48 126.72 304.64 138.6666666666667 311.04 152.96C324.6933333333334 183.4666666666667 311.04 219.0933333333333 280.5333333333333 232.7466666666667C250.0266666666667 246.4000000000001 214.4 232.7466666666667 200.7466666666667 202.6666666666667C194.3466666666666 187.52 193.92 170.6666666666667 199.68 155.9466666666667C206.08 140.16 218.6666666666667 128 234.6666666666667 122.0266666666667C239.7866666666667 120.1066666666667 242.56 114.3466666666667 240.64 109.0133333333334L192 -14.72C191.1466666666667 -17.28 189.2266666666666 -19.4133333333333 186.6666666666667 -20.48C184.1066666666667 -21.3333333333333 181.3333333333333 -21.3333333333333 178.9866666666667 -20.48C69.12 21.9733333333334 14.2933333333333 145.4933333333334 56.7466666666667 255.36C99.2 365.2266666666667 222.72 420.0533333333334 332.5866666666667 377.6C385.28 357.12 427.7333333333334 316.8000000000001 450.7733333333333 265.1733333333334C474.0266666666666 213.3333333333334 475.52 154.6666666666668 455.04 101.9733333333334C433.4933333333333 45.2266666666667 388.9066666666666 0 332.3733333333333 -21.3333333333333H328.7466666666666M256 371.4133333333334C149.9733333333333 374.1866666666667 61.8666666666667 290.3466666666667 59.0933333333333 184.3200000000001C57.1733333333333 104.96 104.1066666666666 32.64 177.4933333333334 2.1333333333334L217.8133333333333 106.6666666666667C178.7733333333334 128.0000000000001 164.0533333333334 176.6400000000001 185.1733333333334 215.6800000000001C206.2933333333334 254.7200000000001 255.1466666666667 269.2266666666668 294.1866666666667 248.3200000000001C333.2266666666667 227.2000000000001 347.9466666666667 178.3466666666668 326.8266666666667 139.3066666666667C319.36 125.4400000000001 308.0533333333334 114.1333333333334 294.1866666666667 106.6666666666667L334.5066666666667 1.4933333333333C381.0133333333334 22.4 417.4933333333334 60.5866666666667 436.0533333333334 108.16C475.3066666666667 206.72 427.5200000000001 318.2933333333334 328.9600000000001 357.76C305.7066666666668 366.9333333333334 280.9600000000001 371.6266666666667 256.0000000000001 371.4133333333333z" />
+    <glyph glyph-name="openid"
+      unicode="&#xF3CD;"
+      horiz-adv-x="512" d=" M298.6666666666667 405.3333333333333L234.6666666666667 373.3333333333334V22.6133333333333C149.3333333333333 32 85.3333333333333 75.52 85.3333333333333 128C85.3333333333333 176 138.6666666666667 216.5333333333334 213.3333333333333 229.9733333333334V273.2800000000001C103.68 258.5600000000001 21.3333333333333 199.2533333333333 21.3333333333333 128C21.3333333333333 52.0533333333334 114.3466666666667 -10.6666666666666 234.6666666666667 -20.0533333333333H236.5866666666667L298.6666666666667 10.6666666666667V405.3333333333333M320 273.28V229.9733333333334C344.5333333333333 225.4933333333333 366.5066666666667 218.24 385.28 208.64L352 192L490.6666666666666 160L480 256L437.3333333333333 234.6666666666667C405.3333333333333 253.4400000000001 365.2266666666667 267.3066666666667 320 273.2800000000001z" />
+    <glyph glyph-name="opera"
+      unicode="&#xF3CE;"
+      horiz-adv-x="512" d=" M192.8533333333333 83.84C171.52 108.8 157.8666666666667 145.92 156.8 187.52V196.48C157.8666666666667 238.08 171.52 275.2 192.8533333333333 300.16C210.3466666666666 321.0666666666667 233.1733333333333 333.44 258.1333333333334 333.44C314.0266666666667 333.44 359.2533333333334 270.08 359.2533333333334 192C359.2533333333334 113.92 314.0266666666667 50.5600000000001 258.1333333333334 50.5600000000001C233.1733333333333 50.5600000000001 220.3733333333333 53.3333333333334 192.8533333333333 83.84M256.64 384H256C149.9733333333333 384 64 298.0266666666667 64 192C64 88.96 145.0666666666667 4.9066666666667 246.8266666666667 0H256C305.0666666666667 0 349.8666666666666 18.5600000000001 384 48.8533333333334C423.2533333333334 84.0533333333333 448 135.04 448 192S423.2533333333334 299.9466666666667 384 335.1466666666667C350.08 365.44 305.4933333333334 384 256.64 384z" />
+    <glyph glyph-name="orbit"
+      unicode="&#xF018;"
+      horiz-adv-x="512" d=" M173.0133333333333 410.6666666666667C198.4 421.3333333333333 226.56 426.6666666666667 256 426.6666666666667C385.7066666666666 426.6666666666667 490.6666666666666 321.7066666666667 490.6666666666666 192S385.7066666666666 -42.6666666666666 256 -42.6666666666666S21.3333333333333 62.2933333333334 21.3333333333333 192C21.3333333333333 221.44 26.6666666666667 249.6 36.6933333333333 275.6266666666667C47.7866666666667 264.3200000000001 60.3733333333333 256.8533333333334 73.6 252.1600000000001C67.4133333333333 233.1733333333334 64 213.3333333333334 64 192C64 85.9733333333334 149.9733333333333 0 256 0S448 85.9733333333334 448 192S362.0266666666667 384 256 384C234.6666666666667 384 214.8266666666667 380.5866666666667 195.84 374.4C191.1466666666667 387.6266666666667 183.68 400.2133333333333 173.0133333333333 410.6666666666667M105.1733333333333 385.4933333333334C128.64 385.4933333333334 147.84 366.5066666666667 147.84 342.8266666666667C147.84 319.36 128.64 300.1600000000001 105.1733333333333 300.1600000000001C81.4933333333333 300.1600000000001 62.5066666666667 319.36 62.5066666666667 342.8266666666667C62.5066666666667 366.5066666666667 81.4933333333333 385.4933333333334 105.1733333333333 385.4933333333334M256 298.6666666666667C314.88 298.6666666666667 362.6666666666667 250.88 362.6666666666667 192S314.88 85.3333333333334 256 85.3333333333334S149.3333333333333 133.12 149.3333333333333 192S197.12 298.6666666666667 256 298.6666666666667z" />
+    <glyph glyph-name="origin"
+      unicode="&#xFB2B;"
+      horiz-adv-x="512" d=" M256 402.56C256 400.4266666666667 254.9333333333333 398.2933333333334 253.6533333333334 396.5866666666667C245.3333333333333 384 238.08 370.3466666666667 235.52 355.6266666666667L234.6666666666667 350.7200000000001L256 352C344.32 352 416 280.32 416 192C416 157.44 405.3333333333333 125.6533333333334 386.56 99.4133333333334C356.9066666666667 49.4933333333333 314.0266666666667 7.4666666666667 263.2533333333334 -20.6933333333333C261.3333333333333 -21.3333333333333 258.56 -21.3333333333333 257.28 -19.84C256 -17.7066666666666 256 -14.9333333333333 257.92 -13.0133333333333C266.0266666666667 -1.92 271.5733333333333 10.6666666666667 274.56 24.5333333333334L275.84 33.2800000000001L256 32.0000000000001C167.68 32.0000000000001 96 103.6800000000001 96 192.0000000000001C96 226.3466666666668 106.6666666666667 258.3466666666668 125.44 284.3733333333335C154.88 334.5066666666667 197.9733333333333 376.7466666666667 248.96 405.3333333333333C251.3066666666667 406.4 254.72 405.3333333333333 256 402.56M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256z" />
+    <glyph glyph-name="ornament"
+      unicode="&#xF3CF;"
+      horiz-adv-x="512" d=" M256 426.6666666666667C291.4133333333333 426.6666666666667 320 398.08 320 362.6666666666667V341.3333333333334C331.7333333333334 341.3333333333334 341.3333333333333 331.7333333333334 341.3333333333333 320V297.1733333333334C392.32 267.7333333333334 426.6666666666667 212.48 426.6666666666667 149.3333333333334C426.6666666666667 55.04 350.2933333333334 -21.3333333333333 256 -21.3333333333333S85.3333333333333 55.04 85.3333333333333 149.3333333333334C85.3333333333333 212.48 119.68 267.7333333333334 170.6666666666667 297.1733333333334V320C170.6666666666667 331.7333333333334 180.2666666666667 341.3333333333334 192 341.3333333333334V362.6666666666667C192 398.08 220.5866666666667 426.6666666666667 256 426.6666666666667M256 384C244.2666666666667 384 234.6666666666667 374.4 234.6666666666667 362.6666666666667V341.3333333333334H277.3333333333333V362.6666666666667C277.3333333333333 374.4 267.7333333333334 384 256 384M256 277.3333333333334C218.0266666666667 277.3333333333334 184.1066666666666 260.9066666666667 160.64 234.6666666666667H351.36C327.8933333333333 260.9066666666667 293.9733333333333 277.3333333333334 256 277.3333333333334M135.2533333333333 106.6666666666667H161.92L128 140.16C129.0666666666667 128 131.6266666666667 117.3333333333334 135.2533333333333 106.6666666666667M268.5866666666667 106.6666666666667L183.2533333333333 192H136.7466666666667L222.08 106.6666666666667H268.5866666666667M376.7466666666667 192H350.08L384 158.5066666666667C382.9333333333333 170.6666666666667 380.3733333333333 181.3333333333334 376.7466666666667 192M243.4133333333334 192L328.7466666666667 106.6666666666667H375.2533333333334L289.92 192H243.4133333333334M256 21.3333333333334C293.9733333333333 21.3333333333334 327.8933333333333 37.76 351.36 64H160.64C184.1066666666667 37.76 218.0266666666667 21.3333333333334 256 21.3333333333334z" />
+    <glyph glyph-name="ornament-variant"
+      unicode="&#xF3D0;"
+      horiz-adv-x="512" d=" M256 426.6666666666667C291.4133333333333 426.6666666666667 320 398.08 320 362.6666666666667V341.3333333333334C331.7333333333334 341.3333333333334 341.3333333333333 331.7333333333334 341.3333333333333 320V297.1733333333334C392.32 267.7333333333334 426.6666666666667 212.48 426.6666666666667 149.3333333333334C426.6666666666667 55.04 350.2933333333334 -21.3333333333333 256 -21.3333333333333S85.3333333333333 55.04 85.3333333333333 149.3333333333334C85.3333333333333 212.48 119.68 267.7333333333334 170.6666666666667 297.1733333333334V320C170.6666666666667 331.7333333333334 180.2666666666667 341.3333333333334 192 341.3333333333334V362.6666666666667C192 398.08 220.5866666666667 426.6666666666667 256 426.6666666666667M256 384C244.2666666666667 384 234.6666666666667 374.4 234.6666666666667 362.6666666666667V341.3333333333334H277.3333333333333V362.6666666666667C277.3333333333333 374.4 267.7333333333334 384 256 384M256 277.3333333333334C218.0266666666667 277.3333333333334 184.1066666666666 260.9066666666667 160.64 234.6666666666667H351.36C327.8933333333333 260.9066666666667 293.9733333333333 277.3333333333334 256 277.3333333333334M256 21.3333333333334C293.9733333333333 21.3333333333334 327.8933333333333 37.76 351.36 64H160.64C184.1066666666667 37.76 218.0266666666667 21.3333333333334 256 21.3333333333334M256 192C232.5333333333334 192 213.3333333333333 172.8 213.3333333333333 149.3333333333334S232.5333333333334 106.6666666666667 256 106.6666666666667S298.6666666666667 125.8666666666667 298.6666666666667 149.3333333333334S279.4666666666667 192 256 192M384 149.3333333333334C384 164.0533333333334 381.44 178.1333333333333 376.9600000000001 192C356.6933333333334 187.9466666666667 341.3333333333333 170.6666666666667 341.3333333333333 149.3333333333334S356.6933333333333 110.72 376.9600000000001 107.3066666666667C381.4400000000001 120.5333333333333 384 134.6133333333334 384 149.3333333333334M128 149.3333333333334C128 134.6133333333334 130.56 120.5333333333334 135.04 107.3066666666667C155.3066666666667 110.72 170.6666666666667 128 170.6666666666667 149.3333333333334S155.3066666666667 187.9466666666667 135.04 192C130.56 178.1333333333333 128 164.0533333333334 128 149.3333333333334z" />
+    <glyph glyph-name="owl"
+      unicode="&#xF3D2;"
+      horiz-adv-x="512" d=" M256 106.6666666666667C267.9466666666667 88.7466666666667 283.9466666666667 74.0266666666666 302.9333333333333 64L256 17.0666666666667L209.0666666666667 64C228.0533333333334 74.0266666666666 244.2666666666667 88.7466666666667 256 106.6666666666667M362.6666666666667 209.0666666666667C339.2 209.0666666666667 320 189.8666666666667 320 166.4S339.2 123.7333333333334 362.6666666666667 123.7333333333334S405.3333333333333 142.9333333333334 405.3333333333333 166.4C405.3333333333333 190.0800000000001 386.1333333333334 209.0666666666667 362.6666666666667 209.0666666666667M149.3333333333333 209.0666666666667C125.8666666666667 209.0666666666667 106.6666666666667 189.8666666666667 106.6666666666667 166.4S125.8666666666667 123.7333333333334 149.3333333333333 123.7333333333334S192 142.9333333333334 192 166.4C192 190.0800000000001 172.8 209.0666666666667 149.3333333333333 209.0666666666667M362.6666666666667 262.4000000000001C409.8133333333334 262.4000000000001 448 224.2133333333334 448 177.0666666666667S409.8133333333334 91.7333333333334 362.6666666666667 91.7333333333334S277.3333333333333 129.92 277.3333333333333 177.0666666666667S315.52 262.4000000000001 362.6666666666667 262.4000000000001M149.3333333333333 262.4000000000001C196.48 262.4000000000001 234.6666666666667 224.2133333333334 234.6666666666667 177.0666666666667S196.48 91.7333333333334 149.3333333333333 91.7333333333334S64 129.92 64 177.0666666666667S102.1866666666667 262.4000000000001 149.3333333333333 262.4000000000001M47.7866666666667 426.6666666666667C85.3333333333333 347.7333333333334 58.24 288.8533333333334 33.0666666666667 230.4000000000001C25.3866666666667 213.3333333333334 21.3333333333333 195.6266666666667 21.3333333333333 177.0666666666667C21.3333333333333 106.4533333333334 78.72 49.0666666666667 149.3333333333333 49.0666666666667C153.8133333333333 49.2800000000001 158.2933333333333 49.4933333333333 162.7733333333333 50.1333333333334L225.92 -13.0133333333333L256 -42.6666666666666L286.08 -13.0133333333333L349.2266666666667 50.1333333333334C353.7066666666667 49.4933333333333 358.1866666666667 49.2800000000001 362.6666666666667 49.0666666666667C433.28 49.0666666666667 490.6666666666666 106.4533333333334 490.6666666666666 177.0666666666667C490.6666666666666 195.6266666666667 486.6133333333333 213.3333333333334 478.9333333333333 230.4000000000001C453.76 288.8533333333334 426.6666666666667 347.7333333333334 464.2133333333334 426.6666666666667C407.8933333333333 382.7200000000001 327.68 347.9466666666667 256 347.7333333333334C184.32 347.9466666666667 104.1066666666667 382.7200000000001 47.7866666666667 426.6666666666667z" />
+    <glyph glyph-name="pac-man"
+      unicode="&#xFB8B;"
+      horiz-adv-x="512" d=" M256 192L406.8266666666667 41.1733333333333C323.6266666666667 -42.6666666666666 188.3733333333333 -42.6666666666666 105.1733333333333 41.1733333333333C21.3333333333333 124.3733333333333 21.3333333333333 259.4133333333334 105.1733333333333 342.8266666666667C188.3733333333333 426.6666666666667 323.4133333333333 426.6666666666667 406.8266666666667 342.8266666666667L256 192M405.3333333333333 234.6666666666667C381.8666666666666 234.6666666666667 362.6666666666667 215.4666666666667 362.6666666666667 192S381.8666666666666 149.3333333333334 405.3333333333333 149.3333333333334S448 168.5333333333334 448 192S428.8 234.6666666666667 405.3333333333333 234.6666666666667z" />
+    <glyph glyph-name="package"
+      unicode="&#xF3D3;"
+      horiz-adv-x="512" d=" M109.2266666666667 341.3333333333334H402.56L382.5066666666667 362.6666666666667H126.5066666666667L109.2266666666667 341.3333333333334M438.1866666666666 336.4266666666667C444.3733333333333 329.1733333333334 448 320 448 309.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V309.3333333333334C64 320 67.6266666666667 329.1733333333334 73.8133333333333 336.4266666666667L103.2533333333333 372.2666666666667C109.2266666666667 379.52 117.9733333333333 384 128 384H384C394.0266666666667 384 402.7733333333333 379.52 408.5333333333333 372.2666666666667L438.1866666666666 336.4266666666667M128 64H256V128H128V64z" />
+    <glyph glyph-name="package-down"
+      unicode="&#xF3D4;"
+      horiz-adv-x="512" d=" M109.2266666666667 341.3333333333334L126.5066666666667 362.6666666666667H382.5066666666667L402.56 341.3333333333334M256 74.6666666666667L138.6666666666667 192H213.3333333333333V234.6666666666667H298.6666666666667V192H373.3333333333333L256 74.6666666666667M438.1866666666666 336.4266666666667L408.5333333333333 372.2666666666667C402.7733333333333 379.52 394.0266666666667 384 384 384H128C117.9733333333333 384 109.2266666666667 379.52 103.2533333333333 372.2666666666667L73.8133333333333 336.4266666666667C67.6266666666667 329.1733333333334 64 320 64 309.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V309.3333333333334C448 320 444.3733333333333 329.1733333333334 438.1866666666666 336.4266666666667z" />
+    <glyph glyph-name="package-up"
+      unicode="&#xF3D5;"
+      horiz-adv-x="512" d=" M438.1866666666666 336.4266666666667C444.3733333333333 329.1733333333334 448 320 448 309.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V309.3333333333334C64 320 67.6266666666667 329.1733333333334 73.8133333333333 336.4266666666667L103.2533333333333 372.2666666666667C109.2266666666667 379.52 117.9733333333333 384 128 384H384C394.0266666666667 384 402.7733333333333 379.52 408.5333333333333 372.2666666666667L438.1866666666666 336.4266666666667M109.2266666666667 341.3333333333334H402.56L382.5066666666667 362.6666666666667H126.5066666666667L109.2266666666667 341.3333333333334M256 245.3333333333334L138.6666666666667 128H213.3333333333333V85.3333333333334H298.6666666666667V128H373.3333333333333L256 245.3333333333334z" />
+    <glyph glyph-name="package-variant"
+      unicode="&#xF3D6;"
+      horiz-adv-x="512" d=" M42.6666666666667 214.1866666666667C32 220.16 28.8 233.1733333333334 34.7733333333333 243.4133333333334L66.7733333333333 298.6666666666667C69.12 302.9333333333334 72.7466666666667 305.92 76.8 307.6266666666667L243.84 401.4933333333334C247.2533333333334 404.0533333333334 251.52 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666667 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C440.7466666666667 304.64 444.16 301.2266666666667 446.08 296.9600000000001L477.0133333333333 243.2C482.9866666666667 232.96 479.36 219.9466666666667 469.3333333333333 214.1866666666667L448 201.8133333333334V96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V214.1866666666667C57.6 210.56 49.4933333333333 210.3466666666667 42.6666666666666 214.1866666666667M255.9999999999999 359.4666666666667V216.5333333333333L383.1466666666666 288L256 359.4666666666667M106.6666666666667 108.5866666666667L234.6666666666667 36.48V179.6266666666667L106.6666666666667 251.52V108.5866666666667M405.3333333333333 108.5866666666667V177.28L298.6666666666667 115.4133333333334C291.6266666666667 111.5733333333334 283.7333333333334 111.7866666666667 277.3333333333333 115.2000000000001V36.48L405.3333333333333 108.5866666666667M295.4666666666667 162.9866666666667L429.44 240.4266666666667L417.0666666666667 261.9733333333334L283.0933333333333 184.5333333333333L295.4666666666667 162.9866666666667z" />
+    <glyph glyph-name="package-variant-closed"
+      unicode="&#xF3D7;"
+      horiz-adv-x="512" d=" M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L215.68 336.64L341.3333333333333 264.3200000000001L383.1466666666667 288L256 359.4666666666667M128.8533333333333 288L256 216.5333333333334L297.8133333333334 240L172.3733333333334 312.5333333333334L128.8533333333333 288M106.6666666666667 108.5866666666667L234.6666666666667 36.48V179.6266666666667L106.6666666666667 251.52V108.5866666666667M405.3333333333333 108.5866666666667V251.52L277.3333333333333 179.6266666666667V36.48L405.3333333333333 108.5866666666666z" />
+    <glyph glyph-name="page-first"
+      unicode="&#xF600;"
+      horiz-adv-x="512" d=" M392.7466666666667 94.08L294.8266666666667 192L392.7466666666667 289.92L362.6666666666667 320L234.6666666666667 192L362.6666666666667 64L392.7466666666667 94.08M128 320H170.6666666666667V64H128V320z" />
+    <glyph glyph-name="page-last"
+      unicode="&#xF601;"
+      horiz-adv-x="512" d=" M119.2533333333333 289.92L217.1733333333333 192L119.2533333333333 94.08L149.3333333333333 64L277.3333333333333 192L149.3333333333333 320L119.2533333333333 289.92M341.3333333333333 320H384V64H341.3333333333333V320z" />
+    <glyph glyph-name="page-layout-body"
+      unicode="&#xF6F9;"
+      horiz-adv-x="512" d=" M128 405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333M128 277.3333333333334V106.6666666666667H384V277.3333333333334H128z" />
+    <glyph glyph-name="page-layout-footer"
+      unicode="&#xF6FA;"
+      horiz-adv-x="512" d=" M128 405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333M128 106.6666666666667V21.3333333333334H384V106.6666666666667H128z" />
+    <glyph glyph-name="page-layout-header"
+      unicode="&#xF6FB;"
+      horiz-adv-x="512" d=" M128 405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333M128 362.6666666666667V277.3333333333334H384V362.6666666666667H128z" />
+    <glyph glyph-name="page-layout-sidebar-left"
+      unicode="&#xF6FC;"
+      horiz-adv-x="512" d=" M128 405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333M128 277.3333333333334V106.6666666666667H213.3333333333333V277.3333333333334H128z" />
+    <glyph glyph-name="page-layout-sidebar-right"
+      unicode="&#xF6FD;"
+      horiz-adv-x="512" d=" M128 405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333M298.6666666666667 277.3333333333334V106.6666666666667H384V277.3333333333334H298.6666666666667z" />
+    <glyph glyph-name="page-next"
+      unicode="&#xFB8C;"
+      horiz-adv-x="512" d=" M426.6666666666667 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V213.3333333333334H149.3333333333333V256L234.6666666666667 192L149.3333333333333 128V170.6666666666667H64V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H426.6666666666667C450.1333333333334 0 469.3333333333333 19.2 469.3333333333333 42.6666666666667V341.3333333333334C469.3333333333333 364.8 450.1333333333334 384 426.6666666666667 384M362.6666666666667 85.3333333333334H277.3333333333333V128H362.6666666666667V85.3333333333334M426.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H426.6666666666667V170.6666666666667M426.6666666666667 256H277.3333333333333V298.6666666666667H426.6666666666667V256M64 170.6666666666667H0V213.3333333333334H64V170.6666666666667z" />
+    <glyph glyph-name="page-next-outline"
+      unicode="&#xFB8D;"
+      horiz-adv-x="512" d=" M469.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V256H106.6666666666667V341.3333333333334H469.3333333333333V42.6666666666667H106.6666666666667V128H64V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H469.3333333333333C492.8 0 512 19.2 512 42.6666666666667V341.3333333333334C512 364.8 492.8 384 469.3333333333333 384M149.3333333333333 128V170.6666666666667H0V213.3333333333334H149.3333333333333V256L234.6666666666667 192L149.3333333333333 128M426.6666666666667 170.6666666666667H277.3333333333333V213.3333333333334H426.6666666666667V170.6666666666667M426.6666666666667 256H277.3333333333333V298.6666666666667H426.6666666666667V256M362.6666666666667 85.3333333333334H277.3333333333333V128H362.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="page-previous"
+      unicode="&#xFB8E;"
+      horiz-adv-x="512" d=" M85.3333333333333 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V170.6666666666667H362.6666666666667V128L277.3333333333333 192L362.6666666666667 256V213.3333333333334H448V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H85.3333333333333C61.8666666666667 384 42.6666666666667 364.8 42.6666666666667 341.3333333333334V42.6666666666667C42.6666666666667 19.2 61.8666666666667 0 85.3333333333333 0M85.3333333333333 128H170.6666666666667V85.3333333333334H85.3333333333333V128M85.3333333333333 213.3333333333334H234.6666666666667V170.6666666666667H85.3333333333333V213.3333333333334M85.3333333333333 298.6666666666667H234.6666666666667V256H85.3333333333333V298.6666666666667M448 213.3333333333334H512V170.6666666666667H448V213.3333333333334z" />
+    <glyph glyph-name="page-previous-outline"
+      unicode="&#xFB8F;"
+      horiz-adv-x="512" d=" M42.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V256H405.3333333333333V341.3333333333334H42.6666666666667V42.6666666666667H405.3333333333333V128H448V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H42.6666666666667C19.2 0 0 19.2 0 42.6666666666667V341.3333333333334C0 364.8 19.2 384 42.6666666666667 384M362.6666666666667 128V170.6666666666667H512V213.3333333333334H362.6666666666667V256L277.3333333333333 192L362.6666666666667 128M85.3333333333333 170.6666666666667H234.6666666666667V213.3333333333334H85.3333333333333V170.6666666666667M85.3333333333333 256H234.6666666666667V298.6666666666667H85.3333333333333V256M85.3333333333333 85.3333333333334H170.6666666666667V128H85.3333333333333V85.3333333333334z" />
+    <glyph glyph-name="palette"
+      unicode="&#xF3D8;"
+      horiz-adv-x="512" d=" M373.3333333333333 192C355.6266666666667 192 341.3333333333333 206.2933333333334 341.3333333333333 224S355.6266666666667 256 373.3333333333333 256S405.3333333333333 241.7066666666667 405.3333333333333 224S391.04 192 373.3333333333333 192M309.3333333333333 277.3333333333334C291.6266666666667 277.3333333333334 277.3333333333333 291.6266666666667 277.3333333333333 309.3333333333334S291.6266666666667 341.3333333333334 309.3333333333333 341.3333333333334S341.3333333333333 327.04 341.3333333333333 309.3333333333334S327.04 277.3333333333334 309.3333333333333 277.3333333333334M202.6666666666667 277.3333333333334C184.96 277.3333333333334 170.6666666666667 291.6266666666667 170.6666666666667 309.3333333333334S184.96 341.3333333333334 202.6666666666667 341.3333333333334S234.6666666666667 327.04 234.6666666666667 309.3333333333334S220.3733333333333 277.3333333333334 202.6666666666667 277.3333333333334M138.6666666666667 192C120.96 192 106.6666666666667 206.2933333333334 106.6666666666667 224S120.96 256 138.6666666666667 256S170.6666666666667 241.7066666666667 170.6666666666667 224S156.3733333333333 192 138.6666666666667 192M256 384C149.9733333333333 384 64 298.0266666666667 64 192S149.9733333333333 0 256 0C273.7066666666667 0 288 14.2933333333334 288 32C288 40.3200000000001 284.8 47.7866666666666 279.68 53.3333333333334C274.7733333333333 59.0933333333334 271.5733333333333 66.5600000000001 271.5733333333333 74.6666666666667C271.5733333333333 92.3733333333333 285.8666666666666 106.6666666666667 303.5733333333333 106.6666666666667H341.3333333333333C400.2133333333333 106.6666666666667 448 154.4533333333334 448 213.3333333333334C448 307.6266666666667 362.0266666666667 384 256 384z" />
+    <glyph glyph-name="palette-advanced"
+      unicode="&#xF3D9;"
+      horiz-adv-x="512" d=" M469.3333333333333 -21.3333333333333H213.3333333333333V21.3333333333334H469.3333333333333V-21.3333333333333M42.6666666666667 -21.3333333333333V21.3333333333334H192V-21.3333333333333H42.6666666666667M384 64V234.6666666666667H469.3333333333333V64H384M384 384H469.3333333333333V256H384V384M42.6666666666667 64V384H341.3333333333333V64H42.6666666666667M192 137.3866666666667C227.4133333333334 137.3866666666667 256 165.9733333333334 256 201.3866666666667C256 244.0533333333334 192 315.9466666666667 192 315.9466666666667S128 244.0533333333334 128 201.3866666666667C128 165.9733333333334 156.5866666666667 137.3866666666667 192 137.3866666666667z" />
+    <glyph glyph-name="palette-swatch"
+      unicode="&#xF8B4;"
+      horiz-adv-x="512" d=" M53.9733333333333 28.8000000000001L82.56 16.8533333333334V209.4933333333334L30.72 84.48C21.9733333333333 62.72 32 37.76 53.9733333333333 28.8000000000001M469.9733333333334 107.7333333333334L364.16 362.6666666666667C357.5466666666667 379.0933333333334 341.9733333333334 388.9066666666667 325.5466666666666 389.3333333333333C320 389.3333333333333 314.24 388.48 308.6933333333333 386.1333333333334L151.4666666666667 321.0666666666667C135.4666666666667 314.4533333333334 125.6533333333333 298.6666666666667 125.2266666666667 282.6666666666667C125.0133333333333 277.3333333333334 126.08 271.1466666666667 128 265.6L234.6666666666667 10.6666666666667C240.8533333333333 -5.9733333333334 256.64 -15.7866666666666 273.28 -16C278.8266666666667 -16 284.3733333333334 -14.9333333333333 289.7066666666667 -12.8L446.7200000000001 52.2666666666667C468.48 61.2266666666667 478.9333333333334 86.1866666666667 469.9733333333334 107.7333333333334M168.1066666666667 261.3333333333334C156.3733333333333 261.3333333333334 146.7733333333333 270.9333333333334 146.7733333333333 282.6666666666667S156.3733333333333 304 168.1066666666667 304S189.44 294.4 189.44 282.6666666666667S179.84 261.3333333333334 168.1066666666666 261.3333333333334M125.44 26.6666666666667C125.44 3.2 144.64 -16 168.1066666666666 -16H199.04L125.44 161.92V26.6666666666667z" />
+    <glyph glyph-name="pan"
+      unicode="&#xFB90;"
+      horiz-adv-x="512" d=" M256 394.6666666666667L170.6666666666667 298.6666666666667H341.3333333333333L256 394.6666666666667M149.3333333333333 277.3333333333334L53.3333333333333 192L149.3333333333333 106.6666666666667V277.3333333333334M362.6666666666667 277.3333333333334V106.6666666666667L458.6666666666666 192L362.6666666666667 277.3333333333334M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667M170.6666666666667 85.3333333333334L256 -10.6666666666666L341.3333333333333 85.3333333333334H170.6666666666667z" />
+    <glyph glyph-name="pan-bottom-left"
+      unicode="&#xFB91;"
+      horiz-adv-x="512" d=" M256 234.6666666666667C279.4666666666667 234.6666666666667 298.6666666666667 215.4666666666667 298.6666666666667 192S279.4666666666667 149.3333333333334 256 149.3333333333334S213.3333333333333 168.5333333333334 213.3333333333333 192S232.5333333333334 234.6666666666667 256 234.6666666666667M114.1333333333333 170.6666666666667L234.6666666666667 50.1333333333334L106.6666666666667 42.6666666666667L114.1333333333333 170.6666666666667z" />
+    <glyph glyph-name="pan-bottom-right"
+      unicode="&#xFB92;"
+      horiz-adv-x="512" d=" M256 234.6666666666667C279.4666666666667 234.6666666666667 298.6666666666667 215.4666666666667 298.6666666666667 192S279.4666666666667 149.3333333333334 256 149.3333333333334S213.3333333333333 168.5333333333334 213.3333333333333 192S232.5333333333334 234.6666666666667 256 234.6666666666667M277.3333333333333 50.1333333333334L397.8666666666666 170.6666666666667L405.3333333333333 42.6666666666667L277.3333333333333 50.1333333333334z" />
+    <glyph glyph-name="pan-down"
+      unicode="&#xFB93;"
+      horiz-adv-x="512" d=" M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667M170.6666666666667 85.3333333333334L256 -10.6666666666666L341.3333333333333 85.3333333333334H170.6666666666667z" />
+    <glyph glyph-name="pan-horizontal"
+      unicode="&#xFB94;"
+      horiz-adv-x="512" d=" M149.3333333333333 277.3333333333334L53.3333333333333 192L149.3333333333333 106.6666666666667V277.3333333333334M362.6666666666667 277.3333333333334V106.6666666666667L458.6666666666666 192L362.6666666666667 277.3333333333334M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="pan-left"
+      unicode="&#xFB95;"
+      horiz-adv-x="512" d=" M149.3333333333333 277.3333333333334L53.3333333333333 192L149.3333333333333 106.6666666666667V277.3333333333334M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="pan-right"
+      unicode="&#xFB96;"
+      horiz-adv-x="512" d=" M362.6666666666667 277.3333333333334V106.6666666666667L458.6666666666666 192L362.6666666666667 277.3333333333334M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="pan-top-left"
+      unicode="&#xFB97;"
+      horiz-adv-x="512" d=" M256 234.6666666666667C279.4666666666667 234.6666666666667 298.6666666666667 215.4666666666667 298.6666666666667 192S279.4666666666667 149.3333333333334 256 149.3333333333334S213.3333333333333 168.5333333333334 213.3333333333333 192S232.5333333333334 234.6666666666667 256 234.6666666666667M234.6666666666667 333.8666666666667L114.1333333333333 213.3333333333334L106.6666666666667 341.3333333333334L234.6666666666667 333.8666666666667z" />
+    <glyph glyph-name="pan-top-right"
+      unicode="&#xFB98;"
+      horiz-adv-x="512" d=" M256 234.6666666666667C279.4666666666667 234.6666666666667 298.6666666666667 215.4666666666667 298.6666666666667 192S279.4666666666667 149.3333333333334 256 149.3333333333334S213.3333333333333 168.5333333333334 213.3333333333333 192S232.5333333333334 234.6666666666667 256 234.6666666666667M397.8666666666666 213.3333333333334L277.3333333333333 333.8666666666667L405.3333333333333 341.3333333333334L397.8666666666666 213.3333333333334z" />
+    <glyph glyph-name="pan-up"
+      unicode="&#xFB99;"
+      horiz-adv-x="512" d=" M256 394.6666666666667L170.6666666666667 298.6666666666667H341.3333333333333L256 394.6666666666667M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="pan-vertical"
+      unicode="&#xFB9A;"
+      horiz-adv-x="512" d=" M256 394.6666666666667L170.6666666666667 298.6666666666667H341.3333333333333L256 394.6666666666667M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667M170.6666666666667 85.3333333333334L256 -10.6666666666666L341.3333333333333 85.3333333333334H170.6666666666667z" />
+    <glyph glyph-name="panda"
+      unicode="&#xF3DA;"
+      horiz-adv-x="512" d=" M256 384C293.12 384 327.68 373.3333333333334 357.12 355.2000000000001C370.7733333333333 372.6933333333334 392.1066666666667 384 416 384C457.1733333333333 384 490.6666666666666 350.5066666666667 490.6666666666666 309.3333333333334C490.6666666666666 277.3333333333334 470.4 250.0266666666667 442.0266666666667 239.36C445.8666666666666 224 448 208.4266666666667 448 192C448 85.9733333333334 362.0266666666667 0 256 0S64 85.9733333333334 64 192C64 208.4266666666667 66.1333333333333 224 69.9733333333333 239.36C41.6 250.0266666666667 21.3333333333333 277.3333333333334 21.3333333333333 309.3333333333334C21.3333333333333 350.5066666666667 54.8266666666667 384 96 384C119.8933333333333 384 141.2266666666667 372.6933333333334 154.88 355.2000000000001C184.32 373.3333333333334 218.88 384 256 384M256 341.3333333333334C173.44 341.3333333333334 106.6666666666667 274.5600000000001 106.6666666666667 192S173.44 42.6666666666667 256 42.6666666666667S405.3333333333333 109.44 405.3333333333333 192S338.56 341.3333333333334 256 341.3333333333334M345.3866666666667 228.2666666666667C353.0666666666667 199.8933333333333 343.04 172.5866666666667 323.2000000000001 167.2533333333333C303.1466666666667 161.7066666666667 280.9600000000001 180.48 273.2800000000001 209.0666666666667C265.6 237.4400000000001 275.6266666666667 264.7466666666667 295.4666666666667 270.0800000000001C315.52 275.4133333333334 337.7066666666667 256.8533333333334 345.3866666666667 228.2666666666667M166.6133333333334 228.2666666666667C174.2933333333333 256.8533333333334 196.48 275.4133333333334 216.5333333333333 270.0800000000001C236.3733333333334 264.7466666666667 246.4 237.4400000000001 238.7200000000001 209.0666666666667C231.04 180.48 208.8533333333334 161.7066666666667 188.8 167.2533333333333C168.96 172.5866666666667 158.9333333333333 199.8933333333333 166.6133333333334 228.2666666666667M256 149.3333333333334C268.8 149.3333333333334 280.1066666666667 145.28 288 138.6666666666667L266.6666666666667 117.3333333333334C266.6666666666667 108.3733333333333 273.92 101.3333333333334 282.6666666666667 101.3333333333334S298.6666666666667 108.5866666666667 298.6666666666667 117.3333333333334C298.6666666666667 123.3066666666667 303.36 128 309.3333333333333 128S320 123.3066666666667 320 117.3333333333334C320 96.64 303.36 80 282.6666666666667 80C272.2133333333333 80 262.8266666666667 84.2666666666667 256 91.3066666666667C249.1733333333333 84.2666666666668 239.7866666666667 80 229.3333333333333 80C208.64 80 192 96.64 192 117.3333333333334C192 123.3066666666667 196.6933333333333 128 202.6666666666667 128S213.3333333333333 123.3066666666667 213.3333333333333 117.3333333333334C213.3333333333333 108.5866666666667 220.5866666666667 101.3333333333334 229.3333333333333 101.3333333333334S245.3333333333333 108.5866666666667 245.3333333333333 117.3333333333334L224 138.6666666666667C231.8933333333333 145.28 243.2 149.3333333333334 256 149.3333333333334z" />
+    <glyph glyph-name="pandora"
+      unicode="&#xF3DB;"
+      horiz-adv-x="512" d=" M213.3333333333333 21.3333333333334C213.3333333333333 9.6 203.7333333333334 0 192 0H85.3333333333333V384H292.48C372.0533333333334 384 436.48 319.5733333333334 436.48 240C436.48 160 372.0533333333334 96 292.48 96H213.3333333333333V21.3333333333334z" />
+    <glyph glyph-name="panorama"
+      unicode="&#xF3DC;"
+      horiz-adv-x="512" d=" M181.3333333333333 181.3333333333334L234.6666666666667 117.3333333333334L309.3333333333333 213.3333333333334L405.3333333333333 85.3333333333334H106.6666666666667M490.6666666666666 64V320C490.6666666666666 343.4666666666667 471.4666666666667 362.6666666666667 448 362.6666666666667H64C40.5333333333333 362.6666666666667 21.3333333333333 343.4666666666667 21.3333333333333 320V64C21.3333333333333 40.5333333333333 40.5333333333333 21.3333333333334 64 21.3333333333334H448C471.4666666666667 21.3333333333334 490.6666666666666 40.5333333333333 490.6666666666666 64z" />
+    <glyph glyph-name="panorama-fisheye"
+      unicode="&#xF3DD;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C161.92 21.3333333333334 85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667S426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.0266666666667 405.3333333333333 42.6666666666667 309.9733333333334 42.6666666666667 192S138.0266666666667 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.0266666666666 469.3333333333333 192S373.9733333333334 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="panorama-horizontal"
+      unicode="&#xF3DE;"
+      horiz-adv-x="512" d=" M457.1733333333333 362.6666666666667C455.04 362.6666666666667 452.9066666666666 362.6666666666667 450.56 361.3866666666667C387.84 337.92 321.92 326.4 256 326.4C190.08 326.4 124.16 338.1333333333334 61.44 361.3866666666667C59.0933333333333 362.6666666666667 56.7466666666667 362.6666666666667 54.8266666666667 362.6666666666667C47.5733333333333 362.6666666666667 42.6666666666667 357.76 42.6666666666667 349.2266666666667V34.5600000000001C42.6666666666667 26.24 47.5733333333333 21.3333333333334 54.8266666666667 21.3333333333334C56.96 21.3333333333334 59.0933333333333 21.3333333333334 61.44 22.6133333333333C124.16 46.08 190.08 57.6 256 57.6C321.92 57.6 387.84 45.8666666666667 450.5599999999999 22.6133333333333C452.9066666666666 21.3333333333334 455.04 21.3333333333334 457.1733333333332 21.3333333333334C464.2133333333332 21.3333333333334 469.3333333333333 26.24 469.3333333333333 34.7733333333333V349.2266666666667C469.3333333333333 357.76 464.2133333333333 362.6666666666667 457.1733333333332 362.6666666666667M426.6666666666667 308.48V75.7333333333334C371.2 92.16 314.0266666666667 100.48 256 100.48C197.9733333333333 100.48 140.8 92.16 85.3333333333333 75.7333333333334V308.48C140.8 292.0533333333334 197.9733333333334 283.7333333333334 256 283.7333333333334C314.0266666666667 283.52 371.2 291.8400000000001 426.6666666666667 308.48z" />
+    <glyph glyph-name="panorama-vertical"
+      unicode="&#xF3DF;"
+      horiz-adv-x="512" d=" M139.52 21.3333333333334C155.9466666666667 76.8000000000001 164.2666666666667 133.9733333333334 164.2666666666667 192C164.2666666666667 250.0266666666667 155.9466666666667 307.2000000000001 139.52 362.6666666666667H372.2666666666667C355.84 307.2000000000001 347.52 250.0266666666667 347.52 192C347.52 133.9733333333334 355.84 76.8000000000001 372.2666666666667 21.3333333333334M425.3866666666666 -2.56C401.9199999999999 60.16 390.3999999999999 126.0800000000001 390.3999999999999 192C390.3999999999999 257.92 402.1333333333333 323.84 425.3866666666666 386.56C426.6666666666666 388.9066666666667 426.6666666666666 391.2533333333333 426.6666666666666 393.1733333333333C426.6666666666666 400.4266666666666 421.7599999999999 405.3333333333333 413.2266666666666 405.3333333333333H98.7733333333333C90.24 405.3333333333333 85.3333333333333 400.4266666666666 85.3333333333333 393.1733333333333C85.3333333333333 391.04 85.3333333333333 388.9066666666667 86.6133333333333 386.56C110.08 323.8400000000001 121.8133333333333 257.92 121.8133333333333 192C121.8133333333333 126.0800000000001 110.08 60.16 86.8266666666667 -2.5599999999999C85.3333333333333 -4.9066666666666 85.3333333333333 -7.2533333333332 85.3333333333333 -9.1733333333332C85.3333333333333 -16.2133333333332 90.24 -21.3333333333333 98.7733333333333 -21.3333333333333H413.44C421.76 -21.3333333333333 426.6666666666667 -16.2133333333333 426.6666666666667 -9.1733333333332C426.6666666666667 -7.0399999999998 426.6666666666667 -4.9066666666666 425.3866666666667 -2.5599999999999z" />
+    <glyph glyph-name="panorama-wide-angle"
+      unicode="&#xF3E0;"
+      horiz-adv-x="512" d=" M256 362.6666666666667C197.76 362.6666666666667 144.64 357.5466666666667 86.4 347.3066666666667L66.56 343.8933333333333L61.2266666666667 324.6933333333334C48.8533333333333 280.5333333333334 42.6666666666667 236.1600000000001 42.6666666666667 192C42.6666666666667 147.84 48.8533333333333 103.4666666666667 61.2266666666667 59.3066666666667L66.56 40.3200000000001L86.4 36.9066666666667C144.64 26.4533333333334 197.76 21.3333333333334 256 21.3333333333334C314.24 21.3333333333334 367.36 26.4533333333333 425.6 36.6933333333333L445.44 40.1066666666667L450.7733333333333 59.0933333333334C463.1466666666666 103.4666666666667 469.3333333333333 147.84 469.3333333333333 192C469.3333333333333 236.1600000000001 463.1466666666666 280.5333333333334 450.7733333333333 324.6933333333334L445.44 343.68L425.6 347.0933333333334C367.36 357.5466666666667 314.24 362.6666666666667 256 362.6666666666667M256 320C308.2666666666667 320 356.48 315.7333333333334 411.52 306.3466666666667C421.5466666666666 268.3733333333334 426.6666666666667 229.9733333333334 426.6666666666667 192C426.6666666666667 154.0266666666667 421.5466666666667 115.6266666666667 411.52 77.6533333333334C356.48 68.2666666666667 308.2666666666667 64 256 64S155.52 68.2666666666667 100.48 77.6533333333334C90.4533333333333 115.6266666666667 85.3333333333333 154.0266666666667 85.3333333333333 192C85.3333333333333 229.9733333333334 90.4533333333333 268.3733333333334 100.48 306.3466666666667C155.52 315.7333333333334 203.7333333333334 320 256 320z" />
+    <glyph glyph-name="paper-cut-vertical"
+      unicode="&#xF3E1;"
+      horiz-adv-x="512" d=" M243.84 379.0933333333334L256 362.6666666666667L268.16 379.0933333333334V378.88C279.8933333333333 394.6666666666667 298.6666666666667 405.3333333333333 320 405.3333333333333C355.4133333333333 405.3333333333333 384 376.7466666666667 384 341.3333333333334C384 333.8666666666667 382.7200000000001 326.6133333333334 380.3733333333333 320H426.6666666666667C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V277.3333333333334C42.6666666666667 300.8 61.8666666666667 320 85.3333333333333 320H131.6266666666667C129.28 326.6133333333334 128 333.8666666666667 128 341.3333333333334C128 376.7466666666667 156.5866666666667 405.3333333333333 192 405.3333333333333C213.3333333333333 405.3333333333333 232.1066666666667 394.6666666666667 243.84 378.88V379.0933333333334M85.3333333333333 277.3333333333334V21.3333333333334H234.6666666666667C234.6666666666667 33.0666666666667 244.2666666666667 42.6666666666667 256 42.6666666666667S277.3333333333333 33.0666666666667 277.3333333333333 21.3333333333334H426.6666666666667V277.3333333333334H317.8666666666667L362.6666666666667 215.04L328.5333333333333 189.8666666666667L264.96 277.3333333333334H247.04L183.4666666666667 189.8666666666667L149.3333333333333 215.04L194.1333333333333 277.3333333333334H85.3333333333333M192 362.6666666666667C180.2666666666667 362.6666666666667 170.6666666666667 353.0666666666667 170.6666666666667 341.3333333333334S180.2666666666667 320 192 320S213.3333333333333 329.6 213.3333333333333 341.3333333333334S203.7333333333334 362.6666666666667 192 362.6666666666667M320 362.6666666666667C308.2666666666667 362.6666666666667 298.6666666666667 353.0666666666667 298.6666666666667 341.3333333333334S308.2666666666667 320 320 320S341.3333333333333 329.6 341.3333333333333 341.3333333333334S331.7333333333334 362.6666666666667 320 362.6666666666667M256 106.6666666666667C267.7333333333334 106.6666666666667 277.3333333333333 97.0666666666667 277.3333333333333 85.3333333333334S267.7333333333334 64 256 64S234.6666666666667 73.6 234.6666666666667 85.3333333333334S244.2666666666667 106.6666666666667 256 106.6666666666667M256 170.6666666666667C267.7333333333334 170.6666666666667 277.3333333333333 161.0666666666667 277.3333333333333 149.3333333333334S267.7333333333334 128 256 128S234.6666666666667 137.6 234.6666666666667 149.3333333333334S244.2666666666667 170.6666666666667 256 170.6666666666667M256 234.6666666666667C267.7333333333334 234.6666666666667 277.3333333333333 225.0666666666667 277.3333333333333 213.3333333333334S267.7333333333334 192 256 192S234.6666666666667 201.6 234.6666666666667 213.3333333333334S244.2666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="paperclip"
+      unicode="&#xF3E2;"
+      horiz-adv-x="512" d=" M352 320V74.6666666666667C352 27.52 313.8133333333334 -10.6666666666666 266.6666666666667 -10.6666666666666S181.3333333333333 27.52 181.3333333333333 74.6666666666667V341.3333333333334C181.3333333333333 370.7733333333333 205.2266666666667 394.6666666666667 234.6666666666667 394.6666666666667S288 370.7733333333333 288 341.3333333333334V117.3333333333334C288 105.6 278.4 96 266.6666666666667 96S245.3333333333333 105.6 245.3333333333333 117.3333333333334V320H213.3333333333333V117.3333333333334C213.3333333333333 87.8933333333334 237.2266666666667 64 266.6666666666667 64S320 87.8933333333334 320 117.3333333333334V341.3333333333334C320 388.48 281.8133333333334 426.6666666666667 234.6666666666667 426.6666666666667S149.3333333333333 388.48 149.3333333333333 341.3333333333334V74.6666666666667C149.3333333333333 9.8133333333334 201.8133333333333 -42.6666666666666 266.6666666666667 -42.6666666666666S384 9.8133333333334 384 74.6666666666667V320H352z" />
+    <glyph glyph-name="parking"
+      unicode="&#xF3E3;"
+      horiz-adv-x="512" d=" M281.6 213.3333333333334H213.3333333333333V298.6666666666667H281.6C305.0666666666666 298.6666666666667 324.2666666666667 279.4666666666667 324.2666666666667 256S305.0666666666666 213.3333333333334 281.6 213.3333333333334M277.3333333333333 384H128V0H213.3333333333333V128H277.3333333333333C347.9466666666666 128 405.3333333333333 185.3866666666667 405.3333333333333 256C405.3333333333333 326.8266666666667 347.9466666666666 384 277.3333333333333 384z" />
+    <glyph glyph-name="passport"
+      unicode="&#xF7E2;"
+      horiz-adv-x="512" d=" M128 405.3333333333333C104.5333333333333 405.3333333333333 85.3333333333333 386.1333333333334 85.3333333333333 362.6666666666667V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.1333333333334 407.4666666666667 405.3333333333333 384 405.3333333333333H128M256 341.3333333333334C314.88 341.3333333333334 362.6666666666667 293.5466666666667 362.6666666666667 234.6666666666667S314.88 128 256 128S149.3333333333333 175.7866666666667 149.3333333333333 234.6666666666667S197.12 341.3333333333334 256 341.3333333333334M256 320C247.2533333333334 306.7733333333333 240 292.48 235.52 277.3333333333334H276.48C272 292.48 264.9599999999999 306.7733333333333 256 320M228.2666666666667 315.3066666666667C208.64 308.6933333333334 192 295.04 182.1866666666667 277.3333333333334H213.3333333333333C217.1733333333333 290.56 221.8666666666667 303.36 228.2666666666667 315.3066666666667M283.52 315.3066666666667C289.92 303.36 294.8266666666666 290.56 298.6666666666667 277.3333333333334H329.8133333333334C320 295.04 303.1466666666667 308.48 283.52 315.3066666666667M173.44 256C171.7333333333334 249.1733333333334 170.6666666666667 242.1333333333334 170.6666666666667 234.6666666666667S171.7333333333334 220.16 173.44 213.3333333333334H209.4933333333334C208.64 220.3733333333333 208 227.4133333333334 208 234.6666666666667C208 241.92 208.64 248.96 209.4933333333334 256H173.44M231.04 256C229.9733333333334 249.1733333333334 229.3333333333334 241.92 229.3333333333334 234.6666666666667C229.3333333333334 227.4133333333334 229.9733333333334 220.3733333333333 231.04 213.3333333333334H280.9600000000001C281.8133333333334 220.3733333333333 282.6666666666667 227.4133333333334 282.6666666666667 234.6666666666667C282.6666666666667 241.92 281.8133333333334 249.1733333333334 280.9600000000001 256H231.04M302.5066666666667 256C303.36 248.96 304 241.92 304 234.6666666666667C304 227.4133333333334 303.36 220.3733333333333 302.5066666666667 213.3333333333334H338.56C340.2666666666667 220.16 341.3333333333333 227.2 341.3333333333333 234.6666666666667S340.2666666666667 249.1733333333334 338.56 256H302.5066666666667M182.1866666666667 192C192 174.2933333333334 208.64 160.8533333333334 228.2666666666667 154.0266666666667C221.8666666666666 165.9733333333334 217.1733333333333 178.5600000000001 213.3333333333333 192H182.1866666666667M235.52 192C240 176.64 247.2533333333334 162.5600000000001 256 149.3333333333334C264.96 162.56 272 176.64 276.48 192H235.52M298.6666666666667 192C294.8266666666667 178.56 289.92 165.9733333333334 283.52 154.0266666666667C303.1466666666667 160.8533333333334 320 174.2933333333334 329.8133333333333 192H298.6666666666667M149.3333333333333 85.3333333333334H362.6666666666667V42.6666666666667H149.3333333333333V85.3333333333334z" />
+    <glyph glyph-name="patreon"
+      unicode="&#xF881;"
+      horiz-adv-x="512" d=" M314.24 384C393.6 384 458.0266666666666 319.36 458.0266666666666 239.7866666666667C458.0266666666666 160.6400000000001 393.6 96 314.24 96C234.6666666666667 96 170.0266666666667 160.64 170.0266666666667 239.7866666666667C170.0266666666667 319.36 234.6666666666667 384 314.24 384M57.6 0V384H128V0H57.6z" />
+    <glyph glyph-name="pause"
+      unicode="&#xF3E4;"
+      horiz-adv-x="512" d=" M298.6666666666667 42.6666666666667H384V341.3333333333334H298.6666666666667M128 42.6666666666667H213.3333333333333V341.3333333333334H128V42.6666666666667z" />
+    <glyph glyph-name="pause-circle"
+      unicode="&#xF3E5;"
+      horiz-adv-x="512" d=" M320 106.6666666666667H277.3333333333333V277.3333333333334H320M234.6666666666667 106.6666666666667H192V277.3333333333334H234.6666666666667M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="pause-circle-outline"
+      unicode="&#xF3E6;"
+      horiz-adv-x="512" d=" M277.3333333333333 106.6666666666667V277.3333333333334H320V106.6666666666667H277.3333333333333M192 106.6666666666667V277.3333333333334H234.6666666666667V106.6666666666667H192M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="pause-octagon"
+      unicode="&#xF3E7;"
+      horiz-adv-x="512" d=" M335.5733333333333 384L448 271.5733333333334V112.4266666666667L335.5733333333333 0H176.4266666666667L64 112.4266666666667V271.5733333333334L176.4266666666667 384H335.5733333333333M320 106.6666666666667V277.3333333333334H277.3333333333333V106.6666666666667H320M234.6666666666667 106.6666666666667V277.3333333333334H192V106.6666666666667H234.6666666666667z" />
+    <glyph glyph-name="pause-octagon-outline"
+      unicode="&#xF3E8;"
+      horiz-adv-x="512" d=" M320 106.6666666666667H277.3333333333333V277.3333333333334H320V106.6666666666667M234.6666666666667 106.6666666666667H192V277.3333333333334H234.6666666666667V106.6666666666667M335.5733333333333 384L448 271.5733333333334V112.4266666666667L335.5733333333333 0H176.4266666666667L64 112.4266666666667V271.5733333333334L176.4266666666667 384H335.5733333333333M317.8666666666667 341.3333333333334H194.1333333333333L106.6666666666667 253.8666666666667V130.1333333333334L194.1333333333333 42.6666666666667H317.8666666666666L405.3333333333333 130.1333333333333V253.8666666666667L317.8666666666667 341.3333333333334z" />
+    <glyph glyph-name="paw"
+      unicode="&#xF3E9;"
+      horiz-adv-x="512" d=" M178.1333333333333 384C203.3066666666667 387.6266666666667 229.9733333333333 360.1066666666667 237.6533333333334 322.1333333333334C245.3333333333333 284.3733333333334 231.4666666666667 250.6666666666667 206.2933333333333 246.8266666666667C181.3333333333333 242.9866666666667 154.4533333333333 270.5066666666667 146.56 308.48C138.6666666666667 346.24 152.96 379.9466666666667 178.1333333333333 384M330.6666666666667 384C356.0533333333334 379.9466666666667 370.1333333333334 346.24 362.6666666666667 308.48C354.56 270.5066666666667 327.8933333333333 242.9866666666667 302.72 246.8266666666667C277.3333333333333 250.6666666666667 263.4666666666667 284.3733333333334 271.36 322.1333333333334C279.04 360.1066666666667 305.7066666666666 387.6266666666667 330.6666666666667 384M64 285.8666666666667C88.32 296.3200000000001 121.3866666666667 277.3333333333334 138.6666666666667 244.2666666666667C154.88 210.56 149.3333333333333 175.1466666666667 125.2266666666667 164.6933333333334C101.12 154.24 68.2666666666667 173.0133333333334 51.4133333333333 206.5066666666667C34.56 240 40.5333333333333 275.6266666666667 64 285.8666666666667M448 285.8666666666667C471.4666666666667 275.6266666666667 477.4399999999999 240 460.5866666666666 206.5066666666667C443.7333333333334 173.0133333333333 410.88 154.24 386.7733333333333 164.6933333333333C362.6666666666667 175.1466666666667 357.12 210.56 373.3333333333333 244.2666666666667C390.6133333333333 277.3333333333334 423.68 296.32 448 285.8666666666667M412.3733333333333 55.8933333333334C413.2266666666666 35.84 397.8666666666666 13.6533333333334 379.52 5.3333333333334C341.3333333333333 -12.16 296.1066666666667 24.1066666666667 253.6533333333333 24.1066666666667C211.2 24.1066666666667 165.5466666666666 -13.6533333333333 128 5.3333333333334C106.6666666666666 15.7866666666666 91.9466666666666 43.52 94.72 66.5600000000001C98.56 98.3466666666667 136.7466666666667 115.4133333333334 159.36 138.6666666666667C189.44 168.7466666666667 210.7733333333333 225.28 253.6533333333333 225.28C296.32 225.28 318.9333333333333 169.6 347.7333333333333 138.6666666666667C371.4133333333333 112.64 410.88 90.6666666666667 412.3733333333333 55.8933333333334z" />
+    <glyph glyph-name="paw-off"
+      unicode="&#xF657;"
+      horiz-adv-x="512" d=" M42.6666666666667 356.9066666666667L69.9733333333333 384L458.6666666666666 -4.6933333333333L431.5733333333333 -32L388.9066666666667 10.6666666666667C385.92 8.5333333333333 382.7200000000001 6.8266666666667 379.52 5.3333333333334C341.3333333333333 -12.16 296.1066666666667 24.1066666666667 253.6533333333333 24.1066666666667C211.2 24.1066666666667 165.5466666666666 -13.6533333333333 128 5.3333333333334C106.6666666666666 15.7866666666666 91.9466666666666 43.52 94.72 66.5600000000001C98.56 98.3466666666667 136.7466666666667 115.4133333333334 159.36 138.6666666666667C175.1466666666667 154.24 188.5866666666667 177.28 203.7333333333333 195.84L42.6666666666667 356.9066666666667M178.1333333333333 384C203.3066666666667 387.6266666666667 229.9733333333333 360.1066666666667 237.6533333333334 322.1333333333334C241.4933333333334 304 240.2133333333333 286.7200000000001 234.6666666666667 273.28L149.9733333333333 358.4C155.52 372.2666666666667 165.3333333333333 381.8666666666667 178.1333333333333 384M330.6666666666667 384C356.0533333333334 379.9466666666667 370.1333333333334 346.24 362.6666666666667 308.48C354.56 270.5066666666667 327.8933333333333 242.9866666666667 302.72 246.8266666666667C277.3333333333333 250.6666666666667 263.4666666666667 284.3733333333334 271.36 322.1333333333334C279.04 360.1066666666667 305.7066666666666 387.6266666666667 330.6666666666667 384M64 285.8666666666667C88.32 296.3200000000001 121.3866666666667 277.3333333333334 138.6666666666667 244.2666666666667C154.88 210.56 149.3333333333333 175.1466666666667 125.2266666666667 164.6933333333334C101.12 154.24 68.2666666666667 173.0133333333334 51.4133333333333 206.5066666666667C34.56 240 40.5333333333333 275.6266666666667 64 285.8666666666667M448 285.8666666666667C471.4666666666667 275.6266666666667 477.4399999999999 240 460.5866666666666 206.5066666666667C443.7333333333334 173.0133333333333 410.88 154.24 386.7733333333333 164.6933333333333C362.6666666666667 175.1466666666667 357.12 210.56 373.3333333333333 244.2666666666667C390.6133333333333 277.3333333333334 423.68 296.32 448 285.8666666666667z" />
+    <glyph glyph-name="paypal"
+      unicode="&#xF882;"
+      horiz-adv-x="512" d=" M177.4933333333334 -20.6933333333333C175.1466666666667 -19.6266666666666 172.3733333333333 -16.2133333333333 171.9466666666667 -13.8666666666666C171.3066666666667 -10.6666666666666 170.6666666666667 -16.2133333333333 184.7466666666667 73.3866666666667C197.5466666666667 154.4533333333334 197.3333333333333 153.1733333333334 199.04 155.5200000000001C201.8133333333333 159.1466666666667 201.3866666666667 159.1466666666667 233.3866666666667 159.36C261.5466666666666 160 267.52 160 280.1066666666667 161.92C349.44 171.52 392.32 212.2666666666667 407.2533333333334 282.6666666666667C408.1066666666667 287.36 408.9599999999999 291.4133333333334 409.1733333333333 291.4133333333334C409.1733333333333 291.6266666666667 410.6666666666667 290.56 412.3733333333333 289.2800000000001C434.3466666666667 272.6400000000001 441.8133333333333 241.92 433.4933333333333 200.96C423.6799999999999 152.1066666666668 397.6533333333333 119.6800000000001 357.1199999999999 105.8133333333334C339.8399999999999 99.84 325.3333333333332 97.4933333333333 299.7333333333333 96.8533333333334C282.6666666666665 96 282.2399999999999 96 277.3333333333332 92.8C273.7066666666666 89.1733333333333 273.9199999999999 89.8133333333333 265.5999999999999 38.4C259.8399999999999 2.1333333333333 257.7066666666666 -9.6 256.8533333333332 -11.7333333333334C255.3599999999999 -15.1466666666668 252.3733333333332 -18.1333333333334 248.9599999999999 -19.84L246.6133333333333 -21.3333333333334H213.3333333333333C185.8133333333333 -21.3333333333334 178.7733333333333 -21.3333333333334 177.4933333333334 -20.6933333333334M81.4933333333333 26.88C77.44 29.0133333333333 74.6666666666667 32.64 74.6666666666667 36.9066666666666C74.6666666666667 42.6666666666667 130.3466666666667 390.8266666666667 131.84 394.6666666666667C133.76 398.5066666666667 138.6666666666667 402.56 142.5066666666667 404.0533333333334L145.7066666666667 405.3333333333333H221.0133333333333C304.4266666666666 405.3333333333333 301.2266666666667 405.3333333333333 320 401.0666666666667C375.8933333333333 389.3333333333333 401.4933333333334 352 391.8933333333333 295.8933333333333C381.2266666666667 233.3866666666667 349.6533333333333 196.2666666666667 295.8933333333333 182.8266666666667C277.3333333333334 178.3466666666667 264.32 177.0666666666667 228.9066666666667 177.0666666666667C200.96 177.0666666666667 198.8266666666667 176.8533333333334 193.28 173.8666666666667C187.7333333333334 170.6666666666667 183.2533333333333 164.9066666666667 181.3333333333333 157.8666666666667C180.48 156.3733333333333 175.5733333333333 126.5066666666667 170.0266666666667 91.7333333333334C164.48 56.96 160 27.9466666666667 160 27.3066666666667L159.36 26.0266666666668H121.3866666666667C87.68 26.0266666666668 82.9866666666667 26.0266666666668 81.4933333333333 26.8800000000001z" />
+    <glyph glyph-name="peace"
+      unicode="&#xF883;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M234.6666666666667 140.5866666666667V22.8266666666667C204.3733333333333 26.6666666666667 175.5733333333333 38.6133333333333 151.4666666666667 57.3866666666667L234.6666666666667 140.5866666666667M277.3333333333333 140.5866666666667L360.5333333333333 57.3866666666667C336.4266666666666 38.6133333333334 307.6266666666666 26.6666666666667 277.3333333333333 22.8266666666667V140.5866666666667M85.3333333333333 192C85.3333333333333 277.9733333333334 149.3333333333333 350.5066666666667 234.6666666666667 361.1733333333334V200.7466666666667L121.3866666666667 87.4666666666667C97.92 117.3333333333334 85.3333333333333 154.0266666666667 85.3333333333333 192M390.6133333333334 87.4666666666667L277.3333333333333 200.7466666666667V361.1733333333334C362.6666666666667 350.5066666666667 426.6666666666667 277.9733333333334 426.6666666666667 192C426.6666666666667 154.0266666666667 414.08 117.3333333333334 390.6133333333333 87.4666666666667z" />
+    <glyph glyph-name="pen"
+      unicode="&#xF3EA;"
+      horiz-adv-x="512" d=" M441.8133333333334 297.8133333333334C434.56 290.56 427.52 283.52 427.3066666666667 276.48C426.6666666666667 269.6533333333334 433.92 262.6133333333334 440.7466666666667 256C450.9866666666667 245.3333333333334 461.0133333333333 235.7333333333334 460.5866666666666 225.2800000000001C460.16 214.8266666666667 449.28 203.9466666666667 438.4 193.28L350.2933333333334 104.96L320 135.2533333333333L410.6666666666667 225.7066666666667L390.1866666666666 246.1866666666667L359.8933333333333 216.1066666666667L279.8933333333333 296.1066666666667L361.8133333333333 377.8133333333334C370.1333333333333 386.1333333333334 383.9999999999999 386.1333333333334 391.8933333333333 377.8133333333334L441.8133333333333 327.8933333333333C450.1333333333333 320 450.1333333333333 306.1333333333334 441.8133333333333 297.8133333333334M64 80L267.9466666666667 284.1600000000001L347.9466666666667 204.16L144 0H64V80z" />
+    <glyph glyph-name="pencil"
+      unicode="&#xF3EB;"
+      horiz-adv-x="512" d=" M441.8133333333334 297.8133333333334C450.1333333333334 306.1333333333334 450.1333333333334 320 441.8133333333334 327.8933333333333L391.8933333333333 377.8133333333334C384 386.1333333333334 370.1333333333334 386.1333333333334 361.8133333333334 377.8133333333334L322.56 338.7733333333333L402.56 258.7733333333333M64 80V0H144L379.9466666666666 236.1600000000001L299.9466666666666 316.1600000000001L64 80z" />
+    <glyph glyph-name="pencil-box"
+      unicode="&#xF3EC;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 18.9866666666667 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M356.2666666666667 248.5333333333334C360.9599999999999 253.0133333333334 360.9599999999999 260.48 356.2666666666667 264.9600000000001L328.96 292.2666666666667C324.48 296.9600000000001 317.0133333333333 296.9600000000001 312.5333333333333 292.2666666666667L291.2 270.9333333333334L334.9333333333333 227.2L356.2666666666667 248.5333333333333M149.3333333333333 129.28V85.3333333333334H193.28L322.56 214.6133333333333L278.6133333333334 258.56L149.3333333333333 129.28z" />
+    <glyph glyph-name="pencil-box-outline"
+      unicode="&#xF3ED;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667V341.3333333333334H106.6666666666667V42.6666666666667H405.3333333333333M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 18.9866666666667 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M356.2666666666667 248.5333333333334L334.9333333333333 227.2L291.2 270.9333333333334L312.5333333333333 292.2666666666667C317.0133333333333 296.96 324.48 296.96 328.9599999999999 292.2666666666667L356.2666666666667 264.9600000000001C360.9599999999999 260.48 360.9599999999999 253.0133333333333 356.2666666666667 248.5333333333334M149.3333333333333 129.28L278.6133333333333 258.5600000000001L322.56 214.6133333333334L193.28 85.3333333333334H149.3333333333333V129.28z" />
+    <glyph glyph-name="pencil-circle"
+      unicode="&#xF6FE;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.0266666666667 405.3333333333333 42.6666666666667 309.9733333333334 42.6666666666667 192S138.0266666666667 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.0266666666666 469.3333333333333 192S373.9733333333334 405.3333333333333 256 405.3333333333333M322.1333333333334 297.1733333333334C325.12 297.1733333333334 328.1066666666667 296.1066666666667 330.6666666666667 293.76L357.76 266.6666666666667C362.6666666666667 261.9733333333334 362.6666666666667 254.5066666666667 357.76 250.0266666666667L336.4266666666666 228.6933333333334L292.6933333333333 272.4266666666667L314.0266666666667 293.76C316.16 296.1066666666667 319.1466666666667 297.1733333333334 322.1333333333334 297.1733333333334M280.1066666666667 260.0533333333334L324.0533333333333 216.1066666666667L194.7733333333333 86.8266666666667H150.8266666666667V130.7733333333334L280.1066666666667 260.0533333333334z" />
+    <glyph glyph-name="pencil-circle-outline"
+      unicode="&#xF775;"
+      horiz-adv-x="512" d=" M149.3333333333333 129.28L278.6133333333333 258.5600000000001L322.56 214.6133333333334L193.28 85.3333333333334H149.3333333333333V129.28M256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667S85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334M356.2666666666667 248.5333333333334L334.9333333333333 227.2L291.2 270.9333333333334L312.5333333333333 292.2666666666667C317.0133333333333 296.96 324.48 296.96 328.9599999999999 292.2666666666667L356.2666666666667 264.9600000000001C360.9599999999999 260.48 360.9599999999999 253.0133333333333 356.2666666666667 248.5333333333334M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333" />
+    <glyph glyph-name="pencil-lock"
+      unicode="&#xF3EE;"
+      horiz-adv-x="512" d=" M117.3333333333333 405.3333333333333C87.8933333333333 405.3333333333333 64 381.44 64 352V341.3333333333334C52.2666666666667 341.3333333333334 42.6666666666667 331.7333333333334 42.6666666666667 320V234.6666666666667C42.6666666666667 222.9333333333333 52.2666666666667 213.3333333333334 64 213.3333333333334H170.6666666666667C182.4 213.3333333333334 192 222.9333333333333 192 234.6666666666667V320C192 331.7333333333334 182.4 341.3333333333334 170.6666666666667 341.3333333333334V352C170.6666666666667 381.44 146.7733333333333 405.3333333333333 117.3333333333333 405.3333333333333M117.3333333333333 384C135.04 384 149.3333333333333 369.7066666666667 149.3333333333333 352V341.3333333333334H85.3333333333333V352C85.3333333333333 369.7066666666667 99.6266666666667 384 117.3333333333333 384M419.4133333333333 384C413.8666666666666 384 408.7466666666667 382.0800000000001 404.6933333333333 378.0266666666667L365.44 338.56L445.44 258.56L484.6933333333333 298.0266666666667C493.0133333333333 306.3466666666667 493.0133333333333 320 484.6933333333333 327.8933333333333L434.7733333333333 378.0266666666667C430.5066666666667 382.08 424.7466666666667 384 419.4133333333333 384M342.6133333333333 315.9466666666667L106.6666666666667 80V0H186.6666666666667L422.6133333333333 235.9466666666667L342.6133333333333 315.9466666666667z" />
+    <glyph glyph-name="pencil-off"
+      unicode="&#xF3EF;"
+      horiz-adv-x="512" d=" M398.08 405.3333333333333C392.5333333333333 405.3333333333333 387.4133333333333 403.4133333333334 383.36 399.36L344.1066666666667 359.8933333333333L424.1066666666667 279.8933333333333L463.36 319.36C471.6799999999999 327.68 471.6799999999999 341.3333333333333 463.36 349.2266666666667L413.44 399.36C409.1733333333333 403.4133333333333 403.4133333333333 405.3333333333333 398.08 405.3333333333333M69.9733333333333 362.6666666666667L42.6666666666667 335.36L181.3333333333333 197.3333333333334L85.3333333333333 101.3333333333334V21.3333333333334H165.3333333333333L261.3333333333333 117.3333333333334L399.36 -21.3333333333333L426.6666666666667 5.9733333333334L288 144L208 224L69.9733333333333 362.6666666666667M321.28 337.2800000000001L235.3066666666666 251.3066666666667L315.3066666666666 171.3066666666667L401.28 257.2800000000001L321.28 337.2800000000001z" />
+    <glyph glyph-name="pentagon"
+      unicode="&#xF6FF;"
+      horiz-adv-x="512" d=" M256 394.6666666666667L42.6666666666667 238.9333333333334L123.7333333333333 -10.6666666666666H388.2666666666667L469.3333333333333 238.9333333333334L256 394.6666666666667z" />
+    <glyph glyph-name="pentagon-outline"
+      unicode="&#xF700;"
+      horiz-adv-x="512" d=" M256 341.3333333333334L418.1333333333334 224L356.2666666666667 34.1333333333334H155.7333333333333L93.8666666666667 224.0000000000001L256 341.3333333333334M256 394.6666666666667L42.6666666666667 238.9333333333334L123.7333333333333 -10.6666666666666H386.1333333333334L469.3333333333333 238.9333333333334L256 394.6666666666667z" />
+    <glyph glyph-name="percent"
+      unicode="&#xF3F0;"
+      horiz-adv-x="512" d=" M394.6666666666667 373.3333333333334L74.6666666666667 53.3333333333334L117.3333333333333 10.6666666666667L437.3333333333333 330.6666666666667M149.3333333333333 362.6666666666667C113.92 362.6666666666667 85.3333333333333 334.0800000000001 85.3333333333333 298.6666666666667S113.92 234.6666666666667 149.3333333333333 234.6666666666667S213.3333333333333 263.2533333333334 213.3333333333333 298.6666666666667S184.7466666666667 362.6666666666667 149.3333333333333 362.6666666666667M362.6666666666667 149.3333333333334C327.2533333333334 149.3333333333334 298.6666666666667 120.7466666666667 298.6666666666667 85.3333333333334S327.2533333333334 21.3333333333334 362.6666666666667 21.3333333333334S426.6666666666667 49.92 426.6666666666667 85.3333333333334S398.08 149.3333333333334 362.6666666666667 149.3333333333334z" />
+    <glyph glyph-name="periodic-table"
+      unicode="&#xF8B5;"
+      horiz-adv-x="512" d=" M42.6666666666667 362.6666666666667V320H85.3333333333333V362.6666666666667H42.6666666666667M426.6666666666667 362.6666666666667V320H469.3333333333333V362.6666666666667H426.6666666666667M42.6666666666667 298.6666666666667V256H85.3333333333333V298.6666666666667H42.6666666666667M106.6666666666667 298.6666666666667V256H149.3333333333333V298.6666666666667H106.6666666666667M298.6666666666667 298.6666666666667V256H341.3333333333333V298.6666666666667H298.6666666666667M362.6666666666667 298.6666666666667V256H405.3333333333333V298.6666666666667H362.6666666666667M426.6666666666667 298.6666666666667V256H469.3333333333333V298.6666666666667H426.6666666666667M42.6666666666667 234.6666666666667V192H85.3333333333333V234.6666666666667H42.6666666666667M106.6666666666667 234.6666666666667V192H149.3333333333333V234.6666666666667H106.6666666666667M170.6666666666667 234.6666666666667V192H213.3333333333333V234.6666666666667H170.6666666666667M234.6666666666667 234.6666666666667V192H277.3333333333333V234.6666666666667H234.6666666666667M298.6666666666667 234.6666666666667V192H341.3333333333333V234.6666666666667H298.6666666666667M362.6666666666667 234.6666666666667V192H405.3333333333333V234.6666666666667H362.6666666666667M426.6666666666667 234.6666666666667V192H469.3333333333333V234.6666666666667H426.6666666666667M42.6666666666667 170.6666666666667V128H85.3333333333333V170.6666666666667H42.6666666666667M106.6666666666667 170.6666666666667V128H149.3333333333333V170.6666666666667H106.6666666666667M170.6666666666667 170.6666666666667V128H213.3333333333333V170.6666666666667H170.6666666666667M234.6666666666667 170.6666666666667V128H277.3333333333333V170.6666666666667H234.6666666666667M298.6666666666667 170.6666666666667V128H341.3333333333333V170.6666666666667H298.6666666666667M362.6666666666667 170.6666666666667V128H405.3333333333333V170.6666666666667H362.6666666666667M426.6666666666667 170.6666666666667V128H469.3333333333333V170.6666666666667H426.6666666666667M106.6666666666667 85.3333333333334V42.6666666666667H149.3333333333333V85.3333333333334H106.6666666666667M170.6666666666667 85.3333333333334V42.6666666666667H213.3333333333333V85.3333333333334H170.6666666666667M234.6666666666667 85.3333333333334V42.6666666666667H277.3333333333333V85.3333333333334H234.6666666666667M298.6666666666667 85.3333333333334V42.6666666666667H341.3333333333333V85.3333333333334H298.6666666666667M362.6666666666667 85.3333333333334V42.6666666666667H405.3333333333333V85.3333333333334H362.6666666666667z" />
+    <glyph glyph-name="periodic-table-co2"
+      unicode="&#xF7E3;"
+      horiz-adv-x="512" d=" M106.6666666666667 298.6666666666667C83.2 298.6666666666667 64 279.4666666666667 64 256V128C64 104.5333333333333 83.2 85.3333333333334 106.6666666666667 85.3333333333334H170.6666666666667V128H106.6666666666667V256H170.6666666666667V298.6666666666667H106.6666666666667M234.6666666666667 298.6666666666667C211.2 298.6666666666667 192 279.4666666666667 192 256V128C192 104.5333333333333 211.2 85.3333333333334 234.6666666666667 85.3333333333334H277.3333333333333C300.8 85.3333333333334 320 104.5333333333333 320 128V256C320 279.4666666666667 300.8 298.6666666666667 277.3333333333333 298.6666666666667H234.6666666666667M234.6666666666667 256H277.3333333333333V128H234.6666666666667V256M341.3333333333333 224V192H405.3333333333333V160H373.3333333333333C355.6266666666667 160 341.3333333333333 145.7066666666667 341.3333333333333 128V64H437.3333333333333V96H373.3333333333333V128H405.3333333333333C423.04 128 437.3333333333333 142.2933333333334 437.3333333333333 160V192C437.3333333333333 209.7066666666667 423.04 224 405.3333333333333 224H341.3333333333333z" />
+    <glyph glyph-name="periscope"
+      unicode="&#xF747;"
+      horiz-adv-x="512" d=" M256 298.6666666666667C256 275.2000000000001 236.8 256 213.3333333333333 256S170.6666666666667 275.2000000000001 170.6666666666667 298.6666666666667C157.2266666666667 280.7466666666667 149.3333333333333 258.7733333333333 149.3333333333333 234.6666666666667C149.3333333333333 175.7866666666667 197.12 128 256 128S362.6666666666667 175.7866666666667 362.6666666666667 234.6666666666667S314.88 341.3333333333334 256 341.3333333333334C246.8266666666667 341.3333333333334 238.08 340.2666666666667 229.76 338.1333333333334C245.3333333333333 331.7333333333334 256 316.3733333333334 256 298.6666666666667M256 405.3333333333333C350.2933333333334 405.3333333333333 426.6666666666667 328.9600000000001 426.6666666666667 234.6666666666667C426.6666666666667 212.2666666666667 422.4 191.1466666666667 414.5066666666667 171.52C381.6533333333333 77.2266666666667 290.7733333333333 -21.3333333333333 256 -21.3333333333333S130.3466666666667 77.2266666666667 97.4933333333333 171.52C89.6 191.1466666666667 85.3333333333333 212.2666666666667 85.3333333333333 234.6666666666667C85.3333333333333 328.9600000000001 161.7066666666667 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="pharmacy"
+      unicode="&#xF3F1;"
+      horiz-adv-x="512" d=" M341.3333333333333 149.3333333333334H277.3333333333333V85.3333333333334H234.6666666666667V149.3333333333334H170.6666666666667V192H234.6666666666667V256H277.3333333333333V192H341.3333333333333M448 341.3333333333334H391.4666666666667L416 408.5333333333333L365.8666666666666 426.6666666666667L334.7199999999999 341.3333333333334H64V298.6666666666667L106.6666666666667 170.6666666666667L64 42.6666666666667V0H448V42.6666666666667L405.3333333333333 170.6666666666667L448 298.6666666666667V341.3333333333334z" />
+    <glyph glyph-name="phone"
+      unicode="&#xF3F2;"
+      horiz-adv-x="512" d=" M141.2266666666667 217.8133333333334C171.9466666666667 157.4400000000001 221.44 107.9466666666667 281.8133333333334 77.2266666666667L328.7466666666667 124.16C334.72 130.1333333333333 343.04 131.84 350.5066666666667 129.4933333333334C374.4 121.6 400 117.3333333333334 426.6666666666667 117.3333333333334C438.4 117.3333333333334 448 107.7333333333334 448 96V21.3333333333334C448 9.6 438.4 0 426.6666666666667 0C226.3466666666667 0 64 162.3466666666667 64 362.6666666666667C64 374.4 73.6 384 85.3333333333333 384H160C171.7333333333334 384 181.3333333333333 374.4 181.3333333333333 362.6666666666667C181.3333333333333 336 185.6 310.4 193.4933333333334 286.5066666666667C195.84 279.04 194.1333333333333 270.7200000000001 188.16 264.7466666666667L141.2266666666667 217.8133333333334z" />
+    <glyph glyph-name="phone-bluetooth"
+      unicode="&#xF3F3;"
+      horiz-adv-x="512" d=" M426.6666666666667 117.3333333333334C400 117.3333333333334 374.4 121.6 350.5066666666667 129.4933333333334C343.04 131.84 334.72 130.1333333333333 328.7466666666667 124.16L281.8133333333334 77.2266666666667C221.44 107.9466666666667 171.9466666666667 157.4400000000001 141.2266666666667 217.8133333333334L188.16 264.7466666666667C194.1333333333333 270.7200000000001 195.84 279.04 193.4933333333334 286.5066666666667C185.6 310.4 181.3333333333333 336 181.3333333333333 362.6666666666667C181.3333333333333 374.4 171.7333333333334 384 160 384H85.3333333333333C73.6 384 64 374.4 64 362.6666666666667C64 162.3466666666667 226.3466666666667 0 426.6666666666667 0C438.4 0 448 9.6 448 21.3333333333334V96C448 107.7333333333334 438.4 117.3333333333334 426.6666666666667 117.3333333333334M384 294.1866666666667L404.0533333333334 274.3466666666667L384 254.2933333333334M384 385.92L404.0533333333334 365.8666666666667L384 345.8133333333334M313.8133333333334 245.3333333333334L362.6666666666667 294.1866666666667V213.3333333333334H373.3333333333333L434.1333333333334 274.3466666666667L388.48 320L434.1333333333334 365.8666666666667L373.3333333333333 426.6666666666667H362.6666666666667V345.8133333333334L313.8133333333334 394.6666666666667L298.6666666666667 379.52L358.1866666666666 320L298.6666666666667 260.48L313.8133333333334 245.3333333333334z" />
+    <glyph glyph-name="phone-classic"
+      unicode="&#xF602;"
+      horiz-adv-x="512" d=" M256 384C159.1466666666667 384 71.2533333333333 346.0266666666667 6.1866666666667 284.3733333333334C2.3466666666667 280.5333333333334 0 275.2000000000001 0 269.2266666666667C0 263.2533333333334 2.3466666666667 257.9200000000001 6.1866666666667 254.08L59.0933333333333 201.1733333333334C62.9333333333333 197.3333333333334 68.2666666666667 194.9866666666667 74.6666666666667 194.9866666666667C80 194.9866666666667 85.3333333333333 197.3333333333334 89.1733333333333 200.96C106.0266666666667 216.7466666666667 125.2266666666667 229.9733333333334 145.92 240.4266666666667C152.96 243.84 157.8666666666667 251.0933333333334 157.8666666666667 259.6266666666667V325.76C188.8 336 221.6533333333333 341.3333333333334 256 341.3333333333334C289.92 341.3333333333334 322.9866666666667 336 353.92 325.9733333333334V259.8400000000001C353.92 251.52 358.8266666666667 244.0533333333334 365.8666666666666 240.64C386.7733333333333 230.1866666666667 405.3333333333333 216.7466666666667 422.8266666666667 201.1733333333334C426.6666666666667 197.3333333333334 432 195.2 437.3333333333333 195.2C443.7333333333334 195.2 449.0666666666667 197.5466666666667 452.9066666666666 201.3866666666667L505.8133333333333 254.2933333333334C509.6533333333333 258.1333333333334 512 263.4666666666667 512 269.44C512 275.4133333333333 509.4399999999999 280.5333333333333 505.6 284.3733333333334C440.5333333333333 346.0266666666667 352.64 384 256 384M192 298.6666666666667V234.6666666666667S64 128 64 64V-21.3333333333333H448V64C448 128 320 234.6666666666667 320 234.6666666666667V298.6666666666667H277.3333333333333V256H234.6666666666667V298.6666666666667H192M256 192C303.1466666666667 192 341.3333333333333 153.8133333333334 341.3333333333333 106.6666666666667S303.1466666666667 21.3333333333334 256 21.3333333333334S170.6666666666667 59.52 170.6666666666667 106.6666666666667S208.8533333333333 192 256 192M256 160C226.56 160 202.6666666666667 136.1066666666667 202.6666666666667 106.6666666666667S226.56 53.3333333333334 256 53.3333333333334S309.3333333333333 77.2266666666667 309.3333333333333 106.6666666666667S285.44 160 256 160z" />
+    <glyph glyph-name="phone-forward"
+      unicode="&#xF3F4;"
+      horiz-adv-x="512" d=" M426.6666666666667 117.3333333333334C400 117.3333333333334 374.4 121.6 350.5066666666667 129.4933333333334C343.04 131.84 334.72 130.1333333333333 328.7466666666667 124.16L281.8133333333334 77.2266666666667C221.44 107.9466666666667 171.9466666666667 157.4400000000001 141.2266666666667 217.8133333333334L188.16 264.7466666666667C194.1333333333333 270.7200000000001 195.84 279.04 193.4933333333334 286.5066666666667C185.6 310.4 181.3333333333333 336 181.3333333333333 362.6666666666667C181.3333333333333 374.4 171.7333333333334 384 160 384H85.3333333333333C73.6 384 64 374.4 64 362.6666666666667C64 162.3466666666667 226.3466666666667 0 426.6666666666667 0C438.4 0 448 9.6 448 21.3333333333334V96C448 107.7333333333334 438.4 117.3333333333334 426.6666666666667 117.3333333333334M384 213.3333333333334L490.6666666666666 320L384 426.6666666666667V362.6666666666667H298.6666666666667V277.3333333333334H384V213.3333333333334z" />
+    <glyph glyph-name="phone-hangup"
+      unicode="&#xF3F5;"
+      horiz-adv-x="512" d=" M256 256C221.8666666666667 256 188.8 250.6666666666667 157.8666666666667 240.64V174.5066666666667C157.8666666666667 165.9733333333334 152.96 158.72 145.92 155.3066666666667C125.0133333333333 144.8533333333334 106.0266666666667 131.4133333333334 88.96 115.84C85.3333333333333 112 80 109.6533333333334 74.6666666666667 109.6533333333334C68.2666666666667 109.6533333333334 62.9333333333333 112.2133333333334 59.0933333333333 116.0533333333334L6.1866666666667 168.96C2.3466666666667 172.8 0 178.1333333333333 0 183.8933333333333C0 189.8666666666667 2.3466666666667 195.2 6.1866666666667 199.04C71.2533333333333 260.9066666666667 159.1466666666667 298.6666666666667 256 298.6666666666667C352.8533333333333 298.6666666666667 440.7466666666667 260.9066666666667 505.8133333333333 199.04C509.6533333333333 195.2 512 189.8666666666667 512 183.8933333333334C512 178.1333333333334 509.6533333333333 172.8000000000001 505.8133333333333 168.96L452.9066666666666 116.0533333333334C449.0666666666667 112.2133333333334 443.7333333333334 109.6533333333334 437.3333333333333 109.6533333333334C432 109.6533333333334 426.6666666666667 112 422.8266666666667 115.84C405.9733333333334 131.4133333333334 386.9866666666667 144.8533333333334 366.08 155.3066666666667C359.04 158.72 354.1333333333334 165.9733333333334 354.1333333333334 174.5066666666667V240.64C323.2 250.6666666666667 290.1333333333334 256 256 256z" />
+    <glyph glyph-name="phone-in-talk"
+      unicode="&#xF3F6;"
+      horiz-adv-x="512" d=" M320 192H362.6666666666667C362.6666666666667 250.88 314.88 298.6666666666667 256 298.6666666666667V256C291.4133333333333 256 320 227.4133333333334 320 192M405.3333333333333 192H448C448 298.6666666666667 362.0266666666667 384 256 384V341.3333333333334C338.3466666666667 341.3333333333334 405.3333333333333 274.5600000000001 405.3333333333333 192M426.6666666666667 117.3333333333334C400 117.3333333333334 374.4 121.6 350.5066666666667 129.4933333333334C343.04 131.84 334.72 130.1333333333333 328.7466666666667 124.16L281.8133333333334 77.2266666666667C221.44 107.9466666666667 171.9466666666667 157.4400000000001 141.2266666666667 217.8133333333334L188.16 264.7466666666667C194.1333333333333 270.7200000000001 195.84 279.04 193.4933333333334 286.5066666666667C185.6 310.4 181.3333333333333 336 181.3333333333333 362.6666666666667C181.3333333333333 374.4 171.7333333333334 384 160 384H85.3333333333333C73.6 384 64 374.4 64 362.6666666666667C64 162.3466666666667 226.3466666666667 0 426.6666666666667 0C438.4 0 448 9.6 448 21.3333333333334V96C448 107.7333333333334 438.4 117.3333333333334 426.6666666666667 117.3333333333334z" />
+    <glyph glyph-name="phone-incoming"
+      unicode="&#xF3F7;"
+      horiz-adv-x="512" d=" M85.3333333333333 384C73.6 384 64 374.4 64 362.6666666666667C64 162.3466666666667 226.3466666666667 0 426.6666666666667 0C438.4 0 448 9.6 448 21.3333333333334V96C448 107.7333333333334 438.4 117.3333333333334 426.6666666666667 117.3333333333334C400 117.3333333333334 374.4 121.6 350.5066666666667 129.4933333333334C343.04 131.84 334.72 130.1333333333333 328.7466666666667 124.3733333333333L281.8133333333334 77.44C221.44 108.16 171.9466666666667 157.44 141.2266666666667 218.0266666666667L188.16 265.1733333333334C194.1333333333333 270.7200000000001 195.84 279.04 193.4933333333334 286.5066666666667C185.6 310.4 181.3333333333333 336 181.3333333333333 362.6666666666667C181.3333333333333 374.4 171.7333333333334 384 160 384H85.3333333333333M405.3333333333333 213.3333333333334V245.3333333333334H330.6666666666667L448 362.6666666666667L426.6666666666667 384L309.3333333333333 266.6666666666667V341.3333333333334H277.3333333333333V213.3333333333334H405.3333333333333z" />
+    <glyph glyph-name="phone-lock"
+      unicode="&#xF3F8;"
+      horiz-adv-x="512" d=" M409.6 362.6666666666667H337.0666666666666V373.3333333333334C337.0666666666666 393.3866666666667 353.28 409.6 373.3333333333333 409.6S409.6 393.3866666666667 409.6 373.3333333333334M426.6666666666667 362.6666666666667V373.3333333333334C426.6666666666667 402.7733333333333 402.7733333333333 426.6666666666667 373.3333333333333 426.6666666666667S320 402.7733333333333 320 373.3333333333334V362.6666666666667C308.2666666666667 362.6666666666667 298.6666666666667 353.0666666666667 298.6666666666667 341.3333333333334V256C298.6666666666667 244.2666666666667 308.2666666666667 234.6666666666667 320 234.6666666666667H426.6666666666667C438.4 234.6666666666667 448 244.2666666666667 448 256V341.3333333333334C448 353.0666666666667 438.4 362.6666666666667 426.6666666666667 362.6666666666667M426.6666666666667 117.3333333333334C400 117.3333333333334 374.4 121.6 350.5066666666667 129.4933333333334C343.04 131.84 334.72 130.1333333333333 328.7466666666667 124.16L281.8133333333334 77.2266666666667C221.44 107.9466666666667 171.9466666666667 157.4400000000001 141.2266666666667 217.8133333333334L188.16 264.7466666666667C194.1333333333333 270.7200000000001 195.84 279.04 193.4933333333334 286.5066666666667C185.6 310.4 181.3333333333333 336 181.3333333333333 362.6666666666667C181.3333333333333 374.4 171.7333333333334 384 160 384H85.3333333333333C73.6 384 64 374.4 64 362.6666666666667C64 162.3466666666667 226.3466666666667 0 426.6666666666667 0C438.4 0 448 9.6 448 21.3333333333334V96C448 107.7333333333334 438.4 117.3333333333334 426.6666666666667 117.3333333333334z" />
+    <glyph glyph-name="phone-log"
+      unicode="&#xF3F9;"
+      horiz-adv-x="512" d=" M426.6666666666667 117.3333333333334C438.4 117.3333333333334 448 107.7333333333334 448 96V21.3333333333334C448 9.6 438.4 0 426.6666666666667 0C226.3466666666667 0 64 162.3466666666667 64 362.6666666666667C64 374.4 73.6 384 85.3333333333333 384H160C171.7333333333334 384 181.3333333333333 374.4 181.3333333333333 362.6666666666667C181.3333333333333 336.2133333333334 185.6 310.4 193.4933333333334 286.5066666666667C195.84 279.04 194.1333333333333 270.7200000000001 188.16 264.9600000000001L141.2266666666667 217.8133333333334C171.9466666666667 157.4400000000001 221.44 107.9466666666667 281.8133333333334 77.2266666666667L328.7466666666667 124.16C334.72 130.1333333333333 343.04 131.84 350.5066666666667 129.4933333333334C374.4 121.6 400 117.3333333333334 426.6666666666667 117.3333333333334M256 384H298.6666666666667V341.3333333333334H256M320 384H448V341.3333333333334H320M256 320H298.6666666666667V277.3333333333334H256M320 320H448V277.3333333333334H320M256 256H298.6666666666667V213.3333333333334H256M320 256H448V213.3333333333334H320" />
+    <glyph glyph-name="phone-minus"
+      unicode="&#xF658;"
+      horiz-adv-x="512" d=" M85.3333333333333 384C73.6 384 64 374.4 64 362.6666666666667C64 162.3466666666667 226.3466666666667 0 426.6666666666667 0C438.4 0 448 9.6 448 21.3333333333334V96C448 107.7333333333334 438.4 117.3333333333334 426.6666666666667 117.3333333333334C400.2133333333334 117.3333333333334 374.4 121.6 350.5066666666667 129.4933333333334C343.04 131.84 334.72 130.1333333333333 328.7466666666667 124.16L281.8133333333334 77.2266666666667C221.44 107.9466666666667 172.16 157.4400000000001 141.2266666666667 217.8133333333334L188.16 264.9600000000001C194.1333333333333 270.7200000000001 195.84 279.0400000000001 193.4933333333334 286.5066666666667C185.6 310.4 181.3333333333333 336.2133333333334 181.3333333333333 362.6666666666667C181.3333333333333 374.4 171.7333333333334 384 160 384M277.3333333333333 320V277.3333333333334H448V320" />
+    <glyph glyph-name="phone-missed"
+      unicode="&#xF3FA;"
+      horiz-adv-x="512" d=" M505.8133333333333 92.3733333333333C440.7466666666667 154.24 352.8533333333333 192 256 192C159.1466666666667 192 71.2533333333333 154.24 6.1866666666667 92.3733333333333C2.3466666666667 88.5333333333333 0 83.2 0 77.2266666666666C0 71.4666666666666 2.3466666666667 66.1333333333333 6.1866666666667 62.2933333333333L59.0933333333333 9.3866666666667C62.9333333333333 5.5466666666666 68.2666666666667 2.9866666666666 74.6666666666667 2.9866666666666C80 2.9866666666666 85.3333333333333 5.3333333333333 89.1733333333333 9.1733333333333C106.0266666666667 24.9599999999999 125.0133333333333 38.1866666666666 145.92 48.64C152.96 52.0533333333333 157.8666666666667 59.3066666666666 157.8666666666667 67.8399999999999V133.9733333333333C188.8 144 221.6533333333333 149.3333333333333 256 149.3333333333333C290.1333333333334 149.3333333333333 323.2 144 354.1333333333334 133.9733333333333V67.8399999999999C354.1333333333334 59.3066666666666 359.04 52.0533333333333 366.08 48.64C386.9866666666667 38.1866666666667 405.9733333333334 24.96 422.8266666666667 9.1733333333333C426.6666666666667 5.3333333333333 432 2.9866666666666 437.3333333333333 2.9866666666666C443.7333333333334 2.9866666666666 449.0666666666667 5.5466666666666 452.9066666666666 9.3866666666667L505.8133333333333 62.2933333333333C509.6533333333333 66.1333333333333 512 71.4666666666666 512 77.2266666666666C512 83.2 509.6533333333333 88.5333333333333 505.8133333333333 92.3733333333333M138.6666666666667 330.6666666666667L256 213.3333333333334L405.3333333333333 362.6666666666667L384 384L256 256L160 352H234.6666666666667V384H106.6666666666667V256H138.6666666666667V330.6666666666667z" />
+    <glyph glyph-name="phone-outgoing"
+      unicode="&#xF3FB;"
+      horiz-adv-x="512" d=" M85.3333333333333 384C73.6 384 64 374.4 64 362.6666666666667C64 162.3466666666667 226.3466666666667 0 426.6666666666667 0C438.4 0 448 9.6 448 21.3333333333334V96C448 107.7333333333334 438.4 117.3333333333334 426.6666666666667 117.3333333333334C400 117.3333333333334 374.4 121.6 350.5066666666667 129.4933333333334C343.04 131.84 334.72 130.1333333333333 328.7466666666667 124.3733333333333L281.8133333333334 77.44C221.44 108.16 171.9466666666667 157.44 141.2266666666667 218.0266666666667L188.16 265.1733333333334C194.1333333333333 270.7200000000001 195.84 279.04 193.4933333333334 286.5066666666667C185.6 310.4 181.3333333333333 336 181.3333333333333 362.6666666666667C181.3333333333333 374.4 171.7333333333334 384 160 384H85.3333333333333M320 384V352H394.6666666666667L277.3333333333333 234.6666666666667L298.6666666666667 213.3333333333334L416 330.6666666666667V256H448V384H320z" />
+    <glyph glyph-name="phone-paused"
+      unicode="&#xF3FC;"
+      horiz-adv-x="512" d=" M405.3333333333333 234.6666666666667H448V384H405.3333333333333M426.6666666666667 117.3333333333334C400 117.3333333333334 374.4 121.6 350.5066666666667 129.4933333333334C343.04 131.84 334.72 130.1333333333333 328.7466666666667 124.16L281.8133333333334 77.2266666666667C221.44 107.9466666666667 171.9466666666667 157.4400000000001 141.2266666666667 217.8133333333334L188.16 264.7466666666667C194.1333333333333 270.7200000000001 195.84 279.04 193.4933333333334 286.5066666666667C185.6 310.4 181.3333333333333 336 181.3333333333333 362.6666666666667C181.3333333333333 374.4 171.7333333333334 384 160 384H85.3333333333333C73.6 384 64 374.4 64 362.6666666666667C64 162.3466666666667 226.3466666666667 0 426.6666666666667 0C438.4 0 448 9.6 448 21.3333333333334V96C448 107.7333333333334 438.4 117.3333333333334 426.6666666666667 117.3333333333334M362.6666666666667 384H320V234.6666666666667H362.6666666666667V384z" />
+    <glyph glyph-name="phone-plus"
+      unicode="&#xF659;"
+      horiz-adv-x="512" d=" M85.3333333333333 384C73.6 384 64 374.4 64 362.6666666666667C64 162.3466666666667 226.3466666666667 0 426.6666666666667 0C438.4 0 448 9.6 448 21.3333333333334V96C448 107.7333333333334 438.4 117.3333333333334 426.6666666666667 117.3333333333334C400.2133333333334 117.3333333333334 374.4 121.6 350.5066666666667 129.4933333333334C343.04 131.84 334.72 130.1333333333333 328.7466666666667 124.16L281.8133333333334 77.2266666666667C221.44 107.9466666666667 172.16 157.4400000000001 141.2266666666667 217.8133333333334L188.16 264.9600000000001C194.1333333333333 270.7200000000001 195.84 279.0400000000001 193.4933333333334 286.5066666666667C185.6 310.4 181.3333333333333 336.2133333333334 181.3333333333333 362.6666666666667C181.3333333333333 374.4 171.7333333333334 384 160 384M341.3333333333333 384V320H277.3333333333333V277.3333333333334H341.3333333333333V213.3333333333334H384V277.3333333333334H448V320H384V384" />
+    <glyph glyph-name="phone-return"
+      unicode="&#xF82E;"
+      horiz-adv-x="512" d=" M448 320V213.3333333333334H416V288H295.8933333333333L347.7333333333334 236.1600000000001L325.12 213.3333333333334L234.6666666666667 304L325.12 394.6666666666667L347.7333333333334 371.8400000000001L295.8933333333333 320H448M188.16 264.9600000000001C193.7066666666667 270.5066666666667 195.6266666666667 278.8266666666667 193.28 286.2933333333334C185.3866666666667 311.04 181.3333333333333 336.64 181.3333333333333 362.6666666666667C181.3333333333333 374.4 171.7333333333334 384 160 384H85.3333333333333C73.6 384 64 374.4 64 362.6666666666667C64 162.3466666666667 226.3466666666667 0 426.6666666666667 0C438.4 0 448 9.6 448 21.3333333333334V96C448 107.7333333333334 438.4 117.3333333333334 426.6666666666667 117.3333333333334C400.8533333333333 117.3333333333334 375.04 121.3866666666667 350.5066666666667 129.4933333333334C343.04 131.84 334.72 129.92 329.1733333333333 124.3733333333333L282.24 77.44C221.6533333333333 108.3733333333333 172.5866666666667 157.44 141.6533333333333 218.0266666666667L188.16 264.96z" />
+    <glyph glyph-name="phone-rotate-landscape"
+      unicode="&#xF884;"
+      horiz-adv-x="512" d=" M192 426.6666666666667H64C40.5333333333333 426.6666666666667 21.3333333333333 407.4666666666667 21.3333333333333 384V106.6666666666667C21.3333333333333 83.2 40.5333333333333 64 64 64H192C215.4666666666667 64 234.6666666666667 83.2 234.6666666666667 106.6666666666667V384C234.6666666666667 407.4666666666667 215.4666666666667 426.6666666666667 192 426.6666666666667M192 128H64V384H192V128M448 170.6666666666667H277.3333333333333V128H448V0H192V21.3333333333334H128V0C128 -23.4666666666667 147.2 -42.6666666666666 170.6666666666667 -42.6666666666666H448C471.4666666666667 -42.6666666666666 490.6666666666666 -23.4666666666667 490.6666666666666 0V128C490.6666666666666 151.4666666666667 471.4666666666667 170.6666666666667 448 170.6666666666667M490.6666666666666 234.6666666666667L405.3333333333333 277.3333333333334L446.08 296.7466666666667C421.12 356.0533333333334 362.6666666666667 394.6666666666667 298.6666666666667 394.6666666666667V426.6666666666667C404.6933333333333 426.6666666666667 490.6666666666666 340.6933333333334 490.6666666666666 234.6666666666667z" />
+    <glyph glyph-name="phone-rotate-portrait"
+      unicode="&#xF885;"
+      horiz-adv-x="512" d=" M192 426.6666666666667H64C40.5333333333333 426.6666666666667 21.3333333333333 407.4666666666667 21.3333333333333 384V106.6666666666667C21.3333333333333 83.2 40.5333333333333 64 64 64H85.3333333333333V128H64V384H192V213.3333333333334H234.6666666666667V384C234.6666666666667 407.4666666666667 215.4666666666667 426.6666666666667 192 426.6666666666667M490.6666666666666 0V128C490.6666666666666 151.4666666666667 471.4666666666667 170.6666666666667 448 170.6666666666667H170.6666666666667C147.2 170.6666666666667 128 151.4666666666667 128 128V0C128 -23.4666666666667 147.2 -42.6666666666666 170.6666666666667 -42.6666666666666H448C471.4666666666667 -42.6666666666666 490.6666666666666 -23.4666666666667 490.6666666666666 0M192 0V128H448V0H192M490.6666666666666 234.6666666666667H458.6666666666666C458.6666666666666 298.6666666666667 420.0533333333334 356.9066666666667 360.9600000000001 382.0800000000001L341.3333333333333 341.3333333333334L298.6666666666667 426.6666666666667C404.6933333333333 426.6666666666667 490.6666666666666 340.6933333333334 490.6666666666666 234.6666666666667z" />
+    <glyph glyph-name="phone-settings"
+      unicode="&#xF3FD;"
+      horiz-adv-x="512" d=" M405.3333333333333 213.3333333333334H448V256H405.3333333333333M426.6666666666667 117.3333333333334C400 117.3333333333334 374.4 121.6 350.5066666666667 129.4933333333334C343.04 131.84 334.72 130.1333333333333 328.7466666666667 124.16L281.8133333333334 77.2266666666667C221.44 107.9466666666667 171.9466666666667 157.4400000000001 141.2266666666667 217.8133333333334L188.16 264.7466666666667C194.1333333333333 270.7200000000001 195.84 279.04 193.4933333333334 286.5066666666667C185.6 310.4 181.3333333333333 336 181.3333333333333 362.6666666666667C181.3333333333333 374.4 171.7333333333334 384 160 384H85.3333333333333C73.6 384 64 374.4 64 362.6666666666667C64 162.3466666666667 226.3466666666667 0 426.6666666666667 0C438.4 0 448 9.6 448 21.3333333333334V96C448 107.7333333333334 438.4 117.3333333333334 426.6666666666667 117.3333333333334M362.6666666666667 256H320V213.3333333333334H362.6666666666667M277.3333333333333 256H234.6666666666667V213.3333333333334H277.3333333333333V256z" />
+    <glyph glyph-name="phone-voip"
+      unicode="&#xF3FE;"
+      horiz-adv-x="512" d=" M277.3333333333333 85.3333333333334V42.6666666666667H298.6666666666667C310.4 42.6666666666667 320 33.0666666666667 320 21.3333333333334H469.3333333333333V-21.3333333333333H320C320 -33.0666666666667 310.4 -42.6666666666666 298.6666666666667 -42.6666666666666H213.3333333333333C201.6 -42.6666666666666 192 -33.0666666666667 192 -21.3333333333333H42.6666666666667V21.3333333333334H192C192 33.0666666666667 201.6 42.6666666666667 213.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H277.3333333333333M505.6 284.3733333333334C509.4399999999999 280.5333333333334 512 275.4133333333334 512 269.4400000000001C512 263.4666666666667 509.6533333333333 258.1333333333334 505.8133333333333 254.2933333333334L452.9066666666666 201.3866666666667C449.0666666666667 197.5466666666667 443.7333333333334 195.2000000000001 437.3333333333333 195.2000000000001C432 195.2000000000001 426.6666666666667 197.3333333333334 422.8266666666667 201.1733333333334C405.3333333333333 216.7466666666667 386.7733333333333 230.1866666666667 365.8666666666666 240.6400000000001C358.8266666666667 244.0533333333334 353.92 251.5200000000001 353.92 259.8400000000001V325.9733333333334C322.9866666666667 336 289.92 341.3333333333334 256 341.3333333333334C221.8666666666667 341.3333333333334 188.8 336 157.8666666666667 325.76V259.6266666666667C157.8666666666667 251.0933333333334 152.96 243.84 145.92 240.4266666666667C125.2266666666667 229.9733333333334 106.0266666666667 216.7466666666667 89.1733333333333 200.96C85.3333333333333 197.3333333333334 80 194.9866666666667 74.6666666666667 194.9866666666667C68.2666666666667 194.9866666666667 62.9333333333333 197.3333333333334 59.0933333333333 201.1733333333334L6.1866666666667 254.08C2.3466666666667 257.92 0 263.2533333333334 0 269.2266666666667C0 275.2 2.3466666666667 280.5333333333333 6.1866666666667 284.3733333333334C71.2533333333333 346.0266666666667 159.1466666666667 384 256 384C352.64 384 440.5333333333333 346.0266666666667 505.6 284.3733333333334M234.6666666666667 234.6666666666667V128H213.3333333333333V234.6666666666667H234.6666666666667M256 234.6666666666667H320V170.6666666666667H277.3333333333333V128H256V234.6666666666667M298.6666666666667 192V213.3333333333334H277.3333333333333V192H298.6666666666667z" />
+    <glyph glyph-name="pi"
+      unicode="&#xF3FF;"
+      horiz-adv-x="512" d=" M85.3333333333333 341.3333333333334V298.6666666666667H128V42.6666666666667H170.6666666666667V298.6666666666667H298.6666666666667V106.6666666666667C298.6666666666667 71.2533333333333 327.2533333333334 42.6666666666667 362.6666666666667 42.6666666666667S426.6666666666667 71.2533333333333 426.6666666666667 106.6666666666667H384C384 94.9333333333333 374.4 85.3333333333334 362.6666666666667 85.3333333333334S341.3333333333333 94.9333333333333 341.3333333333333 106.6666666666667V298.6666666666667H384V341.3333333333334" />
+    <glyph glyph-name="pi-box"
+      unicode="&#xF400;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384M128 298.6666666666667H362.6666666666667V256H320V149.3333333333334C320 137.6 329.6 128 341.3333333333333 128S362.6666666666667 137.6 362.6666666666667 149.3333333333334H405.3333333333333C405.3333333333333 113.92 376.7466666666667 85.3333333333334 341.3333333333333 85.3333333333334S277.3333333333333 113.92 277.3333333333333 149.3333333333334V256H213.3333333333333V85.3333333333334H170.6666666666667V256H128" />
+    <glyph glyph-name="piano"
+      unicode="&#xF67C;"
+      horiz-adv-x="512" d=" M85.3333333333333 384H426.6666666666667C450.1333333333334 384 469.3333333333333 364.8 469.3333333333333 341.3333333333334V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V341.3333333333334C42.6666666666667 364.8 61.8666666666667 384 85.3333333333333 384M85.3333333333333 341.3333333333334V42.6666666666667H170.6666666666667V170.6666666666667H144V341.3333333333334H85.3333333333333M192 42.6666666666667H320V170.6666666666667H293.3333333333333V341.3333333333334H218.6666666666667V170.6666666666667H192V42.6666666666667M341.3333333333333 42.6666666666667H426.6666666666667V341.3333333333334H368V170.6666666666667H341.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="pickaxe"
+      unicode="&#xF8B6;"
+      horiz-adv-x="512" d=" M315.52 221.44L74.6666666666667 -19.1999999999999L44.8 10.6666666666667L285.44 251.52L315.52 221.44M411.0933333333334 283.0933333333334L423.6800000000001 295.68L406.8266666666667 312.5333333333333L420.4800000000001 326.1866666666667L390.1866666666668 356.48L376.5333333333334 342.8266666666667L359.6800000000001 359.68L347.0933333333335 347.0933333333334C309.9733333333335 377.3866666666667 268.1600000000002 401.7066666666667 223.3600000000001 418.7733333333333L205.6533333333335 380.5866666666667C242.9866666666668 360.96 277.3333333333335 337.28 309.3333333333335 309.3333333333334L298.6666666666667 298.6666666666667L362.6666666666667 234.6666666666667L373.3333333333333 245.3333333333334C401.28 213.3333333333334 424.9600000000001 178.9866666666667 444.5866666666667 141.6533333333334L482.7733333333333 159.36C465.7066666666666 204.16 441.3866666666666 245.9733333333334 411.0933333333333 283.0933333333334z" />
+    <glyph glyph-name="pier"
+      unicode="&#xF886;"
+      horiz-adv-x="512" d=" M426.6666666666667 64C396.8 64 366.9333333333333 74.6666666666667 341.3333333333333 91.7333333333334C290.1333333333334 55.4666666666667 221.8666666666667 55.4666666666667 170.6666666666667 91.7333333333334C145.0666666666667 74.6666666666667 115.2 64 85.3333333333333 64H42.6666666666667V21.3333333333334H85.3333333333333C115.2 21.3333333333334 142.9333333333333 29.8666666666667 170.6666666666667 42.6666666666667C224 14.9333333333333 288 14.9333333333333 341.3333333333333 42.6666666666667C369.0666666666667 29.8666666666667 396.8 21.3333333333334 426.6666666666667 21.3333333333334H469.3333333333333V64H426.6666666666667M426.6666666666667 170.6666666666667H405.3333333333333V87.4666666666667C390.4 89.6000000000001 375.4666666666667 93.8666666666667 362.6666666666667 102.4V170.6666666666667H256V85.3333333333334C241.0666666666667 85.3333333333334 228.2666666666667 87.4666666666667 213.3333333333333 91.7333333333334V170.6666666666667H106.6666666666667V87.4666666666667C100.2666666666667 85.3333333333334 91.7333333333333 85.3333333333334 85.3333333333333 85.3333333333334H64V170.6666666666667H42.6666666666667V213.3333333333334H64V256H106.6666666666667V213.3333333333334H213.3333333333333V256H256V213.3333333333334H362.6666666666667V256H405.3333333333333V213.3333333333334H426.6666666666667V170.6666666666667z" />
+    <glyph glyph-name="pier-crane"
+      unicode="&#xF887;"
+      horiz-adv-x="512" d=" M426.6666666666667 21.3333333333334C397.0133333333333 21.3333333333334 367.36 31.36 341.3333333333333 49.7066666666667C289.28 13.2266666666666 222.72 13.2266666666666 170.6666666666667 49.7066666666667C144.64 31.36 114.9866666666667 21.3333333333334 85.3333333333333 21.3333333333334H42.6666666666667V-21.3333333333333H85.3333333333333C114.56 -21.3333333333333 143.7866666666667 -13.8666666666666 170.6666666666667 0C224 -27.7333333333333 288 -27.7333333333333 341.3333333333333 0C368.2133333333334 -13.8666666666666 397.2266666666667 -21.3333333333333 426.6666666666667 -21.3333333333333H469.3333333333333V21.3333333333334H426.6666666666667M426.6666666666667 362.6666666666667V384C426.6666666666667 395.7333333333334 417.0666666666667 405.3333333333333 405.3333333333333 405.3333333333333H192V426.6666666666667H128V405.3333333333333H106.6666666666667V362.6666666666667H128V170.6666666666667H106.6666666666667V213.3333333333334H64V170.6666666666667H42.6666666666667V128H64V42.6666666666667H85.3333333333333C92.3733333333333 42.6666666666667 99.6266666666667 43.3066666666667 106.6666666666667 44.3733333333333V128H213.3333333333333V50.1333333333334C227.2 45.8666666666667 241.7066666666667 43.7333333333334 256 43.7333333333334V128H277.3333333333333V170.6666666666667H256V213.3333333333334H213.3333333333333V170.6666666666667H192V362.6666666666667H362.6666666666667V264.1066666666667C352.64 260.48 345.3866666666667 251.0933333333334 345.3866666666667 239.7866666666667C345.3866666666667 230.4 350.5066666666667 221.8666666666667 358.4 217.1733333333333V192H371.6266666666667C378.88 192 384.64 186.0266666666667 384.64 178.7733333333334C384.64 171.5200000000001 378.88 165.5466666666668 371.6266666666667 165.5466666666668C366.9333333333334 165.5466666666668 362.6666666666667 168.1066666666667 360.1066666666667 172.1600000000001C356.48 178.3466666666667 348.5866666666667 180.4800000000001 342.4000000000001 176.8533333333334C336.0000000000001 173.4400000000001 333.8666666666668 165.3333333333334 337.4933333333334 158.9333333333334C344.5333333333334 146.9866666666667 357.5466666666668 139.3066666666667 371.6266666666668 139.3066666666667C393.1733333333335 139.3066666666667 410.8800000000001 157.0133333333334 410.8800000000001 178.7733333333334C410.8800000000001 195.4133333333334 400.2133333333334 210.3466666666668 384.6400000000001 215.8933333333334V217.1733333333334C392.7466666666668 221.8666666666668 397.8666666666668 230.4000000000001 397.8666666666668 239.7866666666668C397.8666666666668 249.6000000000001 392.1066666666668 257.9200000000001 384.0000000000001 262.4000000000001V362.6666666666667H426.6666666666668M170.6666666666667 199.2533333333333L149.3333333333333 177.92V208.2133333333334L170.6666666666667 229.5466666666667V199.2533333333333M170.6666666666667 262.1866666666667L149.3333333333333 240.8533333333333V271.1466666666667L170.6666666666667 292.48V262.1866666666667M149.3333333333333 304.8533333333334V335.1466666666667L170.6666666666667 356.48V326.1866666666667L149.3333333333333 304.8533333333334z" />
+    <glyph glyph-name="pig"
+      unicode="&#xF401;"
+      horiz-adv-x="512" d=" M202.6666666666667 256C184.96 256 170.6666666666667 241.7066666666667 170.6666666666667 224S184.96 192 202.6666666666667 192S234.6666666666667 206.2933333333334 234.6666666666667 224S220.3733333333333 256 202.6666666666667 256M309.3333333333333 256C291.6266666666667 256 277.3333333333333 241.7066666666667 277.3333333333333 224S291.6266666666667 192 309.3333333333333 192S341.3333333333333 206.2933333333334 341.3333333333333 224S327.04 256 309.3333333333333 256M256 362.6666666666667L270.5066666666667 362.0266666666667C290.56 378.88 316.16 392.7466666666667 335.36 397.8666666666667C375.2533333333334 408.5333333333333 445.44 400.4266666666667 454.6133333333333 366.2933333333333C461.2266666666666 341.3333333333334 439.4666666666666 310.4 405.9733333333333 290.56C432.2133333333334 257.7066666666667 448 216.1066666666667 448 170.6666666666667C448 64.64 362.0266666666667 -21.3333333333333 256 -21.3333333333333S64 64.64 64 170.6666666666667C64 216.1066666666667 79.7866666666667 257.7066666666667 106.0266666666667 290.56C72.5333333333333 310.4 50.7733333333333 341.3333333333334 57.3866666666667 366.2933333333334C66.56 400.4266666666667 136.7466666666667 408.5333333333333 176.64 397.8666666666667C195.84 392.7466666666667 221.44 378.88 241.4933333333334 362.0266666666667L256 362.6666666666667M213.3333333333333 106.6666666666667C225.0666666666667 106.6666666666667 234.6666666666667 97.0666666666667 234.6666666666667 85.3333333333334S225.0666666666667 64 213.3333333333333 64S192 73.6 192 85.3333333333334S201.6 106.6666666666667 213.3333333333333 106.6666666666667M298.6666666666667 106.6666666666667C310.4 106.6666666666667 320 97.0666666666667 320 85.3333333333334S310.4 64 298.6666666666667 64S277.3333333333333 73.6 277.3333333333333 85.3333333333334S286.9333333333333 106.6666666666667 298.6666666666667 106.6666666666667M256 170.6666666666667C197.12 170.6666666666667 149.3333333333333 120.7466666666667 149.3333333333333 85.3333333333334C149.3333333333333 49.92 197.12 21.3333333333334 256 21.3333333333334S362.6666666666667 49.92 362.6666666666667 85.3333333333334S314.88 170.6666666666667 256 170.6666666666667M165.5466666666667 356.6933333333334C155.9466666666667 359.2533333333334 97.92 355.2 97.92 355.2S145.0666666666667 317.8666666666667 154.4533333333333 315.3066666666667C164.0533333333334 312.7466666666667 208.4266666666667 310.8266666666667 211.4133333333333 322.1333333333334C214.6133333333334 333.6533333333334 174.9333333333333 354.1333333333334 165.5466666666667 356.6933333333334M346.4533333333334 356.6933333333334C337.0666666666667 354.1333333333334 297.3866666666667 333.6533333333334 300.5866666666667 322.1333333333334C303.5733333333334 310.8266666666667 347.9466666666667 312.7466666666667 357.5466666666667 315.3066666666667C366.9333333333334 317.8666666666667 414.08 355.2000000000001 414.08 355.2000000000001S356.0533333333334 359.2533333333334 346.4533333333334 356.6933333333334z" />
+    <glyph glyph-name="pill"
+      unicode="&#xF402;"
+      horiz-adv-x="512" d=" M90.0266666666667 207.1466666666667L240.8533333333333 357.9733333333334C290.9866666666666 407.8933333333334 371.84 407.8933333333334 421.9733333333334 357.9733333333334C471.8933333333333 308.0533333333334 471.8933333333333 226.9866666666667 421.9733333333334 176.8533333333334L271.1466666666667 26.0266666666666C221.0133333333334 -23.8933333333333 139.9466666666667 -23.8933333333333 90.0266666666667 26.0266666666666C40.1066666666667 76.16 40.1066666666667 157.0133333333333 90.0266666666667 207.1466666666667M120.32 176.8533333333334C97.92 154.6666666666667 90.4533333333333 122.88 98.1333333333333 94.5066666666667L225.92 222.08L316.3733333333334 131.6266666666667L391.68 207.1466666666667C425.1733333333333 240.4266666666667 425.1733333333333 294.4000000000001 391.68 327.6800000000001C358.4 361.1733333333334 304.4266666666666 361.1733333333334 271.1466666666667 327.6800000000001L120.32 176.8533333333334z" />
+    <glyph glyph-name="pillar"
+      unicode="&#xF701;"
+      horiz-adv-x="512" d=" M128 341.3333333333334H384C395.7333333333334 341.3333333333334 405.3333333333333 331.7333333333334 405.3333333333333 320S395.7333333333334 298.6666666666667 384 298.6666666666667H128C116.2666666666667 298.6666666666667 106.6666666666667 308.2666666666667 106.6666666666667 320S116.2666666666667 341.3333333333334 128 341.3333333333334M448 405.3333333333333V362.6666666666667H64V405.3333333333333H448M320 277.3333333333334H362.6666666666667V-21.3333333333333H320V277.3333333333334M149.3333333333333 277.3333333333334H192V-21.3333333333333H149.3333333333333V277.3333333333334M234.6666666666667 277.3333333333334H277.3333333333333V-21.3333333333333H234.6666666666667V277.3333333333334z" />
+    <glyph glyph-name="pin"
+      unicode="&#xF403;"
+      horiz-adv-x="512" d=" M341.3333333333333 192V362.6666666666667H362.6666666666667V405.3333333333333H149.3333333333333V362.6666666666667H170.6666666666667V192L128 149.3333333333334V106.6666666666667H238.9333333333333V-21.3333333333333H273.0666666666666V106.6666666666667H384V149.3333333333334L341.3333333333333 192z" />
+    <glyph glyph-name="pin-off"
+      unicode="&#xF404;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L273.0666666666667 105.1733333333334V-21.3333333333333H238.9333333333334V106.6666666666667H128V149.3333333333334L170.6666666666667 192V207.5733333333334L42.6666666666667 335.5733333333334M341.3333333333333 192L384 149.3333333333334V106.6666666666667H380.16L170.6666666666667 316.1600000000001V362.6666666666667H149.3333333333333V405.3333333333333H362.6666666666667V362.6666666666667H341.3333333333333V192z" />
+    <glyph glyph-name="pin-off-outline"
+      unicode="&#xF92F;"
+      horiz-adv-x="512" d=" M170.6666666666667 315.7333333333334V362.6666666666667H149.3333333333333V405.3333333333333H362.6666666666667V362.6666666666667H341.3333333333333V192L384 149.3333333333334V106.6666666666667H379.7333333333334L298.6666666666667 187.7333333333334V362.6666666666667H213.3333333333333V273.0666666666667L170.6666666666667 315.7333333333334M426.6666666666667 6.4L398.9333333333333 -21.3333333333333L273.0666666666666 104.5333333333333V-21.3333333333333H238.9333333333333V106.6666666666667H128V149.3333333333334L170.6666666666667 192V206.9333333333333L42.6666666666667 334.9333333333334L70.4 362.6666666666667L426.6666666666667 6.4M187.7333333333334 149.3333333333334H226.1333333333334L206.9333333333333 168.5333333333334L187.7333333333334 149.3333333333334z" />
+    <glyph glyph-name="pin-outline"
+      unicode="&#xF930;"
+      horiz-adv-x="512" d=" M341.3333333333333 192V362.6666666666667H362.6666666666667V405.3333333333333H149.3333333333333V362.6666666666667H170.6666666666667V192L128 149.3333333333334V106.6666666666667H238.9333333333333V-21.3333333333333H273.0666666666666V106.6666666666667H384V149.3333333333334L341.3333333333333 192M187.7333333333334 149.3333333333334L213.3333333333333 174.9333333333333V362.6666666666667H298.6666666666667V174.9333333333333L324.2666666666667 149.3333333333334H187.7333333333334z" />
+    <glyph glyph-name="pine-tree"
+      unicode="&#xF405;"
+      horiz-adv-x="512" d=" M213.3333333333333 0V64H64L170.6666666666667 170.6666666666667H106.6666666666667L213.3333333333333 277.3333333333334H149.3333333333333L256 384L362.6666666666667 277.3333333333334H298.6666666666667L405.3333333333333 170.6666666666667H341.3333333333333L448 64H298.6666666666667V0H213.3333333333333z" />
+    <glyph glyph-name="pine-tree-box"
+      unicode="&#xF406;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M234.6666666666667 42.6666666666667H277.3333333333333V85.3333333333334H384L298.6666666666667 170.6666666666667H362.6666666666667L277.3333333333333 256H341.3333333333333L256 341.3333333333334L170.6666666666667 256H234.6666666666667L149.3333333333333 170.6666666666667H213.3333333333333L128 85.3333333333334H234.6666666666667V42.6666666666667z" />
+    <glyph glyph-name="pinterest"
+      unicode="&#xF407;"
+      horiz-adv-x="512" d=" M192.8533333333333 -11.52C213.3333333333333 -17.7066666666666 234.0266666666667 -21.3333333333333 256 -21.3333333333333C373.76 -21.3333333333333 469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333S42.6666666666667 309.76 42.6666666666667 192C42.6666666666667 101.3333333333334 99.6266666666667 23.4666666666667 180.0533333333334 -7.2533333333333C178.1333333333334 9.3866666666667 176.2133333333334 36.9066666666667 180.0533333333334 55.8933333333334L204.5866666666667 161.2800000000001S198.4 173.6533333333334 198.4 193.2800000000001C198.4 222.72 216.7466666666667 244.6933333333334 237.6533333333334 244.6933333333334C256 244.6933333333334 264.5333333333334 231.2533333333334 264.5333333333334 213.9733333333334C264.5333333333334 195.6266666666668 252.3733333333334 169.3866666666668 246.1866666666667 144.2133333333334C242.5600000000001 123.3066666666667 257.2800000000001 104.96 278.6133333333334 104.96C316.5866666666667 104.96 346.0266666666667 145.4933333333334 346.0266666666667 202.6666666666667C346.0266666666667 253.8666666666668 309.3333333333334 288.8533333333334 256.64 288.8533333333334C196.48 288.8533333333334 161.0666666666667 244.0533333333334 161.0666666666667 196.9066666666667C161.0666666666667 178.5600000000001 167.04 160.0000000000001 176.8533333333334 147.8400000000001C178.7733333333334 146.5600000000001 178.7733333333334 144.8533333333334 178.1333333333334 141.6533333333334L171.9466666666667 118.4000000000001C171.9466666666667 114.7733333333334 169.6 113.4933333333335 165.9733333333334 116.0533333333335C138.6666666666667 128.0000000000001 122.88 166.8266666666668 122.88 198.1866666666668C122.88 265.6000000000002 170.6666666666667 326.8266666666668 262.8266666666667 326.8266666666668C336.2133333333333 326.8266666666668 393.3866666666667 274.1333333333335 393.3866666666667 204.1600000000001C393.3866666666667 130.7733333333334 347.9466666666667 71.8933333333334 282.88 71.8933333333334C262.1866666666667 71.8933333333334 241.92 82.9866666666668 234.6666666666667 96.0000000000001L220.3733333333334 45.4400000000001C215.4666666666667 27.0933333333334 202.0266666666667 2.5600000000001 192.8533333333334 -12.1599999999999V-11.5199999999999z" />
+    <glyph glyph-name="pinterest-box"
+      unicode="&#xF408;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H198.1866666666667C206.72 14.2933333333334 217.3866666666667 34.5600000000001 221.6533333333333 50.3466666666667L235.7333333333333 99.4133333333334C242.3466666666667 86.4 261.9733333333333 75.7333333333334 282.0266666666667 75.7333333333334C344.9599999999999 75.7333333333334 388.6933333333333 132.6933333333334 388.6933333333333 203.7333333333334C388.6933333333333 271.36 333.6533333333333 322.3466666666667 262.4 322.3466666666667C173.6533333333333 322.3466666666667 127.36 263.04 127.36 197.9733333333334C127.36 167.6800000000001 142.72 130.3466666666667 168.7466666666666 118.4C172.3733333333333 116.0533333333334 174.72 117.3333333333334 174.72 120.7466666666667L180.6933333333333 143.36C181.3333333333333 146.3466666666667 181.3333333333333 148.0533333333334 179.4133333333333 149.3333333333334C170.0266666666666 161.0666666666667 164.0533333333333 178.9866666666667 164.0533333333333 196.6933333333334C164.0533333333333 242.3466666666667 198.3999999999999 285.6533333333334 256.64 285.6533333333334C307.6266666666666 285.6533333333334 343.04 251.9466666666667 343.04 202.6666666666667C343.04 146.9866666666667 314.6666666666667 107.7333333333334 277.9733333333333 107.7333333333334C257.0666666666666 107.7333333333334 242.9866666666666 125.6533333333334 246.3999999999999 145.7066666666667C252.3733333333333 170.0266666666667 264.32 195.6266666666667 264.32 213.3333333333334C264.32 229.9733333333334 255.9999999999999 242.9866666666667 238.08 242.9866666666667C218.0266666666666 242.9866666666667 200.3199999999999 221.6533333333334 200.3199999999999 193.0666666666667C200.3199999999999 174.2933333333334 206.0799999999999 162.3466666666667 206.0799999999999 162.3466666666667L182.3999999999999 60.3733333333334C178.9866666666666 42.6666666666667 180.6933333333333 16 182.3999999999999 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="pinwheel"
+      unicode="&#xFAD4;"
+      horiz-adv-x="512" d=" M256 192C256 256 309.3333333333333 309.3333333333334 373.3333333333333 309.3333333333334S490.6666666666666 256 490.6666666666666 192H256M256 192C256 128 202.6666666666667 74.6666666666667 138.6666666666667 74.6666666666667S21.3333333333333 128 21.3333333333333 192H256M256 192C192 192 138.6666666666667 245.3333333333334 138.6666666666667 309.3333333333334S192 426.6666666666667 256 426.6666666666667V192M256 192C320 192 373.3333333333333 138.6666666666667 373.3333333333333 74.6666666666667S320 -42.6666666666666 256 -42.6666666666666V192z" />
+    <glyph glyph-name="pinwheel-outline"
+      unicode="&#xFAD5;"
+      horiz-adv-x="512" d=" M256 -42.6666666666666H234.6666666666667V97.4933333333333C211.84 76.8000000000001 181.3333333333333 64 149.3333333333333 64C80 64 21.3333333333333 122.6666666666667 21.3333333333333 192V213.3333333333334H161.4933333333334C140.8 236.1600000000001 128 266.6666666666667 128 298.6666666666667C128 368 186.6666666666667 426.6666666666667 256 426.6666666666667H277.3333333333333V286.5066666666667C300.16 307.2000000000001 330.6666666666667 320 362.6666666666667 320C432 320 490.6666666666666 261.3333333333334 490.6666666666666 192V170.6666666666667H350.5066666666667C371.2 147.84 384 117.3333333333334 384 85.3333333333334C384 16 325.3333333333333 -42.6666666666666 256 -42.6666666666666M277.3333333333333 167.8933333333333V2.7733333333333C313.6 12.5866666666667 341.3333333333333 46.2933333333333 341.3333333333333 85.3333333333334S313.6 158.0800000000001 277.3333333333333 167.8933333333334M66.7733333333333 170.6666666666667C76.5866666666667 134.4 110.2933333333333 106.6666666666667 149.3333333333333 106.6666666666667S222.08 134.4 231.8933333333334 170.6666666666667H66.7733333333333M280.1066666666667 213.3333333333334H445.2266666666666C435.4133333333333 249.6 401.4933333333333 277.3333333333334 362.6666666666666 277.3333333333334C323.8399999999999 277.3333333333334 289.9199999999999 249.6 280.1066666666666 213.3333333333334M234.6666666666667 381.2266666666667C198.4 371.4133333333334 170.6666666666667 337.4933333333334 170.6666666666667 298.6666666666667C170.6666666666667 259.8400000000001 198.4 225.92 234.6666666666667 216.1066666666667V381.2266666666667z" />
+    <glyph glyph-name="pipe"
+      unicode="&#xF7E4;"
+      horiz-adv-x="512" d=" M469.3333333333333 149.3333333333334H426.6666666666667V106.6666666666667H298.6666666666667V170.6666666666667H341.3333333333333V213.3333333333334H298.6666666666667V320C298.6666666666667 343.4666666666667 279.4666666666667 362.6666666666667 256 362.6666666666667H85.3333333333333V405.3333333333333H42.6666666666667V234.6666666666667H85.3333333333333V277.3333333333334H213.3333333333333V213.3333333333334H170.6666666666667V170.6666666666667H213.3333333333333V64C213.3333333333333 40.5333333333333 232.5333333333334 21.3333333333334 256 21.3333333333334H426.6666666666667V-21.3333333333333H469.3333333333333" />
+    <glyph glyph-name="pipe-disconnected"
+      unicode="&#xF7E5;"
+      horiz-adv-x="512" d=" M341.3333333333333 256V213.3333333333334H170.6666666666667V256H213.3333333333333V277.3333333333334H85.3333333333333V234.6666666666667H42.6666666666667V405.3333333333333H85.3333333333333V362.6666666666667H256C279.4666666666667 362.6666666666667 298.6666666666667 343.4666666666667 298.6666666666667 320V256H341.3333333333333M213.3333333333333 128V64C213.3333333333333 40.5333333333333 232.5333333333334 21.3333333333334 256 21.3333333333334H426.6666666666667V-21.3333333333333H469.3333333333333V149.3333333333334H426.6666666666667V106.6666666666667H298.6666666666667V128H341.3333333333333V170.6666666666667H170.6666666666667V128H213.3333333333333z" />
+    <glyph glyph-name="pipe-leak"
+      unicode="&#xF888;"
+      horiz-adv-x="512" d=" M42.6666666666667 341.3333333333334V170.6666666666667H85.3333333333333V213.3333333333334H213.3333333333333L256 256L213.3333333333333 298.6666666666667H85.3333333333333V341.3333333333334H42.6666666666667M426.6666666666667 341.3333333333334V298.6666666666667H256L298.6666666666667 256L256 213.3333333333334H426.6666666666667V170.6666666666667H469.3333333333333V341.3333333333334H426.6666666666667M256 170.6666666666667S213.3333333333333 124.3733333333333 213.3333333333333 96C213.3333333333333 72.5333333333333 232.5333333333334 53.3333333333334 256 53.3333333333334S298.6666666666667 72.5333333333333 298.6666666666667 96C298.6666666666667 124.3733333333333 256 170.6666666666667 256 170.6666666666667z" />
+    <glyph glyph-name="pirate"
+      unicode="&#xFA07;"
+      horiz-adv-x="512" d=" M174.9333333333333 189.8666666666667C168.5333333333333 185.6 164.2666666666667 177.0666666666667 166.4 170.6666666666667C166.4 155.7333333333334 181.3333333333333 145.0666666666667 194.1333333333333 145.0666666666667C206.9333333333333 145.0666666666667 219.7333333333333 155.7333333333334 219.7333333333333 170.6666666666667C206.9333333333333 179.2000000000001 192 185.6 174.9333333333333 189.8666666666667M469.3333333333333 213.3333333333334L490.6666666666666 298.6666666666667S448 298.6666666666667 384 341.3333333333334S320 426.6666666666667 256 426.6666666666667S192 384 128 341.3333333333334S21.3333333333333 298.6666666666667 21.3333333333333 298.6666666666667L42.6666666666667 213.3333333333334H44.8C42.6666666666667 206.9333333333333 42.6666666666667 198.4 42.6666666666667 192C42.6666666666667 117.3333333333334 81.0666666666667 51.2 138.6666666666667 12.8000000000001L128 -6.3999999999999C264.5333333333333 -93.8666666666666 384 -6.3999999999999 384 -6.3999999999999L373.3333333333333 12.8000000000001C430.9333333333333 51.2 469.3333333333333 117.3333333333334 469.3333333333333 192.0000000000001V213.3333333333334M241.0666666666667 352L211.2 381.8666666666667L226.1333333333334 396.8L256 366.9333333333334L285.8666666666667 396.8L300.8 381.8666666666667L270.9333333333333 352L300.8 322.1333333333334L285.8666666666667 307.2L256 337.0666666666667L226.1333333333334 307.2000000000001L211.2 322.1333333333334L241.0666666666667 352M198.4 266.6666666666667C219.7333333333334 273.0666666666667 241.0666666666667 277.3333333333334 256 277.3333333333334C302.9333333333333 277.3333333333334 381.8666666666666 243.2 422.4 226.1333333333334C424.5333333333334 219.7333333333333 424.5333333333334 213.3333333333334 424.5333333333334 206.9333333333333L198.4 266.6666666666667M290.1333333333334 40.5333333333333C275.2000000000001 32 260.2666666666667 25.6 243.2000000000001 23.4666666666666C232.5333333333334 31.9999999999999 232.5333333333334 49.0666666666666 243.2000000000001 57.6C251.7333333333334 66.1333333333333 270.9333333333334 70.4 281.6 59.7333333333334C288.0000000000001 57.6 290.1333333333334 46.9333333333333 290.1333333333334 40.5333333333334M426.6666666666668 162.1333333333334C416.0000000000001 117.3333333333334 388.2666666666667 76.8000000000001 352.0000000000001 51.2L320 106.6666666666667H192L160 51.2C115.2 81.0666666666667 85.3333333333333 132.2666666666667 85.3333333333333 192C85.3333333333333 202.6666666666667 87.4666666666667 213.3333333333334 89.6 224C100.2666666666667 228.2666666666667 113.0666666666667 234.6666666666667 128 241.0666666666667L279.4666666666667 200.5333333333334V149.3333333333334C279.4666666666667 138.6666666666667 288 128 300.8 128H343.4666666666667C354.1333333333334 128 364.8 136.5333333333334 364.8 149.3333333333334V179.2000000000001L426.6666666666667 162.1333333333333z" />
+    <glyph glyph-name="pistol"
+      unicode="&#xF702;"
+      horiz-adv-x="512" d=" M149.3333333333333 341.3333333333334H490.6666666666666V256H469.3333333333333V234.6666666666667H341.3333333333333C329.6 234.6666666666667 320 225.0666666666667 320 213.3333333333334V192C320 168.5333333333334 300.8 149.3333333333334 277.3333333333333 149.3333333333334H205.2266666666666C197.12 149.3333333333334 189.6533333333333 144.64 186.0266666666667 137.3866666666667L133.76 33.0666666666667C130.1333333333333 25.8133333333334 122.88 21.3333333333334 114.7733333333333 21.3333333333334H42.6666666666667S-21.3333333333333 21.3333333333334 64 149.3333333333334C64 149.3333333333334 128 234.6666666666667 42.6666666666667 234.6666666666667V341.3333333333334H64L74.6666666666667 362.6666666666667H138.6666666666667L149.3333333333333 341.3333333333334M298.6666666666667 192V213.3333333333334C298.6666666666667 225.0666666666667 289.0666666666667 234.6666666666667 277.3333333333333 234.6666666666667H256S234.6666666666667 213.3333333333334 256 192C232.5333333333334 192 213.3333333333333 211.2 213.3333333333333 234.6666666666667C201.6 234.6666666666667 192 225.0666666666667 192 213.3333333333334V192C192 180.2666666666667 201.6 170.6666666666667 213.3333333333333 170.6666666666667H277.3333333333333C289.0666666666667 170.6666666666667 298.6666666666667 180.2666666666667 298.6666666666667 192z" />
+    <glyph glyph-name="piston"
+      unicode="&#xF889;"
+      horiz-adv-x="512" d=" M277.3333333333333 102.8266666666667C288 99.2 296.5333333333333 93.2266666666667 303.5733333333333 85.3333333333334H320V0H303.1466666666667C296.32 -7.4666666666667 288 -13.4399999999999 277.3333333333333 -17.0666666666667C252.8 -26.0266666666667 225.7066666666667 -18.56 208.64 0H192V85.3333333333334H208.4266666666667C215.4666666666667 93.2266666666667 224 99.2 234.6666666666667 102.8266666666667V192H277.3333333333333V102.8266666666667M256 21.3333333333334C267.7333333333334 21.3333333333334 277.3333333333333 30.9333333333333 277.3333333333333 42.6666666666667S267.7333333333334 64 256 64S234.6666666666667 54.4 234.6666666666667 42.6666666666667S244.2666666666667 21.3333333333334 256 21.3333333333334M362.6666666666667 362.6666666666667H320V341.3333333333334H362.6666666666667V213.3333333333334H149.3333333333333V341.3333333333334H192V362.6666666666667H149.3333333333333V405.3333333333333H362.6666666666667V362.6666666666667M256 256C267.7333333333334 256 277.3333333333333 265.6 277.3333333333333 277.3333333333334S267.7333333333334 298.6666666666667 256 298.6666666666667S234.6666666666667 289.0666666666667 234.6666666666667 277.3333333333334S244.2666666666667 256 256 256z" />
+    <glyph glyph-name="pizza"
+      unicode="&#xF409;"
+      horiz-adv-x="512" d=" M256 128C232.5333333333334 128 213.3333333333333 147.2000000000001 213.3333333333333 170.6666666666667C213.3333333333333 194.3466666666667 232.5333333333334 213.3333333333334 256 213.3333333333334S298.6666666666667 194.1333333333333 298.6666666666667 170.6666666666667S279.4666666666667 128 256 128M149.3333333333333 298.6666666666667C149.3333333333333 322.3466666666667 168.32 341.3333333333334 192 341.3333333333334C215.4666666666667 341.3333333333334 234.6666666666667 322.1333333333334 234.6666666666667 298.6666666666667S215.4666666666667 256 192 256C168.32 256 149.3333333333333 275.2000000000001 149.3333333333333 298.6666666666667M256 405.3333333333333C179.84 405.3333333333333 111.5733333333333 372.48 64 320L256 -21.3333333333333L448 320C400.64 372.48 332.16 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="plane-shield"
+      unicode="&#xF6BA;"
+      horiz-adv-x="512" d=" M256 426.6666666666667L64 341.3333333333334V213.3333333333334C64 94.9333333333333 145.92 -15.7866666666667 256 -42.6666666666666C366.08 -15.7866666666666 448 94.9333333333333 448 213.3333333333334V341.3333333333334L256 426.6666666666667M256 326.8266666666667C266.6666666666667 326.8266666666667 276.2666666666667 317.6533333333334 276.2666666666667 306.56V232.32L384 165.12V138.0266666666667L276.2666666666667 171.7333333333334V97.7066666666667L303.1466666666667 77.4400000000001V57.1733333333334L256 70.8266666666667L208.8533333333333 57.1733333333334V77.44L235.7333333333333 97.7066666666667V171.7333333333334L128 138.0266666666667V165.12L235.7333333333334 232.32V306.56C235.7333333333334 317.6533333333334 245.3333333333333 326.8266666666667 256 326.8266666666667z" />
+    <glyph glyph-name="play"
+      unicode="&#xF40A;"
+      horiz-adv-x="512" d=" M170.6666666666667 338.3466666666667V39.68L405.3333333333333 189.0133333333333L170.6666666666667 338.3466666666667z" />
+    <glyph glyph-name="play-box-outline"
+      unicode="&#xF40B;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M213.3333333333333 277.3333333333334V106.6666666666667L320 192L213.3333333333333 277.3333333333334z" />
+    <glyph glyph-name="play-circle"
+      unicode="&#xF40C;"
+      horiz-adv-x="512" d=" M213.3333333333333 96V288L341.3333333333333 192M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="play-circle-outline"
+      unicode="&#xF40D;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C161.92 21.3333333333334 85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667S426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M213.3333333333333 96L341.3333333333333 192L213.3333333333333 288V96z" />
+    <glyph glyph-name="play-network"
+      unicode="&#xF88A;"
+      horiz-adv-x="512" d=" M320 21.3333333333334C320 33.0666666666667 310.4 42.6666666666667 298.6666666666667 42.6666666666667H277.3333333333333V85.3333333333334H362.6666666666667C386.1333333333334 85.3333333333334 405.3333333333333 104.5333333333333 405.3333333333333 128V341.3333333333334C405.3333333333333 364.8 386.1333333333334 384 362.6666666666667 384H149.3333333333333C125.8666666666667 384 106.6666666666667 364.8 106.6666666666667 341.3333333333334V128C106.6666666666667 104.5333333333333 125.8666666666667 85.3333333333334 149.3333333333333 85.3333333333334H234.6666666666667V42.6666666666667H213.3333333333333C201.6 42.6666666666667 192 33.0666666666667 192 21.3333333333334H42.6666666666667V-21.3333333333333H192C192 -33.0666666666667 201.6 -42.6666666666666 213.3333333333333 -42.6666666666666H298.6666666666667C310.4 -42.6666666666666 320 -33.0666666666667 320 -21.3333333333333H469.3333333333333V21.3333333333334H320M213.3333333333333 149.3333333333334V320L320 234.6666666666667L213.3333333333333 149.3333333333334z" />
+    <glyph glyph-name="play-pause"
+      unicode="&#xF40E;"
+      horiz-adv-x="512" d=" M64 341.3333333333334V42.6666666666667L234.6666666666667 192M277.3333333333333 42.6666666666667H341.3333333333333V341.3333333333334H277.3333333333333M384 341.3333333333334V42.6666666666667H448V341.3333333333334" />
+    <glyph glyph-name="play-protected-content"
+      unicode="&#xF40F;"
+      horiz-adv-x="512" d=" M42.6666666666667 341.3333333333334V64H234.6666666666667V106.6666666666667H85.3333333333333V298.6666666666667H362.6666666666667V213.3333333333334H405.3333333333333V341.3333333333334H42.6666666666667M192 256V149.3333333333334L266.6666666666667 202.6666666666667L192 256M448.8533333333333 199.04L343.2533333333334 93.44L297.8133333333334 138.6666666666667L267.7333333333334 108.5866666666667L343.2533333333334 33.0666666666667L478.9333333333333 168.7466666666667L448.8533333333333 199.04z" />
+    <glyph glyph-name="play-speed"
+      unicode="&#xF8FE;"
+      horiz-adv-x="512" d=" M277.3333333333333 404.2666666666667V361.6C370.9866666666667 350.0800000000001 437.3333333333333 264.9600000000001 425.8133333333334 171.3066666666667C416 93.6533333333334 354.9866666666667 32 277.3333333333333 22.8266666666667V-19.84C394.6666666666667 -8.1066666666666 480 96 468.2666666666667 213.3333333333334C458.6666666666666 314.6666666666667 378.24 394.6666666666667 277.3333333333333 404.6933333333334V404.2666666666667M120.96 26.8800000000001C153.1733333333333 0 192.8533333333333 -16.8533333333333 234.6666666666667 -21.3333333333333V21.3333333333334C204.3733333333333 25.1733333333333 175.5733333333333 37.3333333333334 151.4666666666667 56.1066666666667L120.96 26.88M151.4666666666667 325.5466666666666C175.36 344.7466666666667 204.16 357.12 234.6666666666667 361.3866666666667V404.0533333333333C193.0666666666667 400 153.3866666666667 384 120.96 357.12L151.4666666666667 325.5466666666667M121.3866666666667 296.5333333333334L90.88 327.04C64 294.6133333333334 48 255.1466666666667 43.7333333333333 213.3333333333334H86.4C90.4533333333333 243.6266666666667 102.4 272.4266666666667 121.3866666666667 296.5333333333334M86.6133333333333 170.6666666666667H43.9466666666667C48.2133333333333 128.8533333333334 64.64 89.3866666666667 91.0933333333333 56.96L121.3866666666667 87.4666666666667C102.6133333333333 111.5733333333334 90.4533333333333 140.3733333333334 86.6133333333333 170.6666666666668M213.3333333333333 96L341.3333333333333 192L213.3333333333333 288V96z" />
+    <glyph glyph-name="playlist-check"
+      unicode="&#xF5C7;"
+      horiz-adv-x="512" d=" M298.6666666666667 234.6666666666667H42.6666666666667V192H298.6666666666667V234.6666666666667M298.6666666666667 320H42.6666666666667V277.3333333333334H298.6666666666667V320M42.6666666666667 106.6666666666667H213.3333333333333V149.3333333333334H42.6666666666667V106.6666666666667M458.6666666666666 202.6666666666667L490.6666666666666 170.6666666666667L341.3333333333333 21.3333333333334L245.3333333333333 117.3333333333334L277.3333333333333 149.3333333333334L341.3333333333333 85.3333333333334L458.6666666666666 202.6666666666667z" />
+    <glyph glyph-name="playlist-edit"
+      unicode="&#xF8FF;"
+      horiz-adv-x="512" d=" M42.6666666666667 320V277.3333333333334H298.6666666666667V320H42.6666666666667M42.6666666666667 234.6666666666667V192H298.6666666666667V234.6666666666667H42.6666666666667M427.52 231.8933333333333C424.5333333333333 231.8933333333333 421.5466666666666 230.6133333333333 419.2 228.2666666666667L397.8666666666666 206.9333333333333L441.6 163.2L462.9333333333333 184.5333333333333C467.6266666666666 189.0133333333333 467.6266666666666 196.48 462.9333333333333 200.96L435.6266666666666 228.2666666666666C433.28 230.6133333333333 430.5066666666667 231.8933333333333 427.52 231.8933333333333M385.4933333333334 194.56L256 65.28V21.3333333333334H299.9466666666667L429.2266666666667 150.8266666666667L385.4933333333334 194.56M42.6666666666667 149.3333333333334V106.6666666666667H213.3333333333333V149.3333333333334H42.6666666666667z" />
+    <glyph glyph-name="playlist-minus"
+      unicode="&#xF410;"
+      horiz-adv-x="512" d=" M42.6666666666667 106.6666666666667H213.3333333333333V149.3333333333334H42.6666666666667M256 149.3333333333334V106.6666666666667H469.3333333333333V149.3333333333334M298.6666666666667 320H42.6666666666667V277.3333333333334H298.6666666666667M298.6666666666667 234.6666666666667H42.6666666666667V192H298.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="playlist-play"
+      unicode="&#xF411;"
+      horiz-adv-x="512" d=" M405.3333333333333 256H42.6666666666667V213.3333333333334H405.3333333333333V256M405.3333333333333 341.3333333333334H42.6666666666667V298.6666666666667H405.3333333333333V341.3333333333334M42.6666666666667 128H320V170.6666666666667H42.6666666666667V128M362.6666666666667 170.6666666666667V42.6666666666667L469.3333333333333 106.6666666666667L362.6666666666667 170.6666666666667z" />
+    <glyph glyph-name="playlist-plus"
+      unicode="&#xF412;"
+      horiz-adv-x="512" d=" M42.6666666666667 106.6666666666667H213.3333333333333V149.3333333333334H42.6666666666667M384 149.3333333333334V234.6666666666667H341.3333333333333V149.3333333333334H256V106.6666666666667H341.3333333333333V21.3333333333334H384V106.6666666666667H469.3333333333333V149.3333333333334M298.6666666666667 320H42.6666666666667V277.3333333333334H298.6666666666667M298.6666666666667 234.6666666666667H42.6666666666667V192H298.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="playlist-remove"
+      unicode="&#xF413;"
+      horiz-adv-x="512" d=" M42.6666666666667 320V277.3333333333334H298.6666666666667V320H42.6666666666667M42.6666666666667 234.6666666666667V192H234.6666666666667V234.6666666666667H42.6666666666667M302.2933333333333 218.4533333333334L272.2133333333333 188.3733333333333L332.5866666666667 128L272.2133333333333 67.6266666666667L302.2933333333333 37.5466666666667L362.6666666666667 97.92L423.04 37.5466666666666L453.1199999999999 67.6266666666667L392.7466666666667 128L453.12 188.3733333333333L423.04 218.4533333333334L362.6666666666667 158.0800000000001L302.2933333333333 218.4533333333334M42.6666666666667 149.3333333333334V106.6666666666667H234.6666666666667V149.3333333333334H42.6666666666667z" />
+    <glyph glyph-name="playstation"
+      unicode="&#xF414;"
+      horiz-adv-x="512" d=" M202.6666666666667 356.9066666666667C232.1066666666667 351.36 275.2 338.3466666666667 298.6666666666667 330.6666666666667C357.3333333333333 310.4 377.3866666666667 285.2266666666667 377.3866666666667 228.48C377.3866666666667 173.0133333333334 343.2533333333334 152.1066666666667 299.7333333333334 173.0133333333334V276.2666666666667C299.7333333333334 288 297.6 299.3066666666667 286.08 302.5066666666667C277.3333333333333 305.28 272.2133333333333 297.1733333333334 272.2133333333333 285.2266666666667V27.0933333333334L202.6666666666667 49.28V356.9066666666667M285.2266666666667 72.1066666666667L397.2266666666667 112.0000000000001C410.0266666666667 116.4800000000001 411.9466666666667 122.8800000000001 401.7066666666667 126.2933333333334C391.2533333333334 129.7066666666668 372.6933333333334 128.6400000000001 359.8933333333333 124.1600000000001L285.2266666666667 97.9200000000001V139.7333333333335L289.7066666666667 141.2266666666668S311.2533333333334 149.3333333333335 341.3333333333333 152.1066666666668C371.84 155.5200000000001 408.9600000000001 151.6800000000001 437.9733333333334 140.8000000000001C470.8266666666667 130.3466666666668 474.6666666666666 114.9866666666668 466.3466666666666 104.5333333333335C457.8133333333333 93.8666666666668 437.3333333333333 86.4000000000001 437.3333333333333 86.4000000000001L285.2266666666667 32.0000000000001V72.1066666666667M74.6666666666667 76.3733333333334C41.1733333333333 85.3333333333334 35.4133333333333 105.6 50.7733333333333 117.3333333333334C65.0666666666667 128 89.1733333333333 135.4666666666667 89.1733333333333 135.4666666666667L189.0133333333333 170.6666666666667V130.5600000000001L117.3333333333333 104.7466666666667C104.5333333333333 100.2666666666667 102.6133333333334 93.8666666666667 112.8533333333333 90.4533333333333C123.0933333333333 87.04 141.8666666666667 87.8933333333333 154.4533333333333 92.5866666666667L189.0133333333333 104.96V68.9066666666666L182.1866666666667 67.6266666666667C147.6266666666666 62.0799999999999 110.9333333333333 63.9999999999999 74.6666666666666 76.3733333333333z" />
+    <glyph glyph-name="plex"
+      unicode="&#xF6B9;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333C61.6533333333333 405.3333333333333 42.6666666666667 386.3466666666667 42.6666666666667 362.6666666666667V21.3333333333334C42.6666666666667 -2.3466666666666 61.6533333333333 -21.3333333333333 85.3333333333333 -21.3333333333333H426.6666666666667C450.3466666666667 -21.3333333333333 469.3333333333333 -2.3466666666666 469.3333333333333 21.3333333333334V362.6666666666667C469.3333333333333 386.3466666666667 450.3466666666667 405.3333333333333 426.6666666666667 405.3333333333333H85.3333333333333M182.6133333333333 320H257.28L330.6666666666667 192L257.28 64H182.6133333333333L256 192L182.6133333333334 320z" />
+    <glyph glyph-name="plus"
+      unicode="&#xF415;"
+      horiz-adv-x="512" d=" M405.3333333333333 170.6666666666667H277.3333333333333V42.6666666666667H234.6666666666667V170.6666666666667H106.6666666666667V213.3333333333334H234.6666666666667V341.3333333333334H277.3333333333333V213.3333333333334H405.3333333333333V170.6666666666667z" />
+    <glyph glyph-name="plus-box"
+      unicode="&#xF416;"
+      horiz-adv-x="512" d=" M362.6666666666667 170.6666666666667H277.3333333333333V85.3333333333334H234.6666666666667V170.6666666666667H149.3333333333333V213.3333333333334H234.6666666666667V298.6666666666667H277.3333333333333V213.3333333333334H362.6666666666667M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="plus-box-outline"
+      unicode="&#xF703;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667V341.3333333333334H106.6666666666667V42.6666666666667H405.3333333333333M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 83.2 384 106.6666666666667 384H405.3333333333333M234.6666666666667 298.6666666666667H277.3333333333333V213.3333333333334H362.6666666666667V170.6666666666667H277.3333333333333V85.3333333333334H234.6666666666667V170.6666666666667H149.3333333333333V213.3333333333334H234.6666666666667V298.6666666666667z" />
+    <glyph glyph-name="plus-circle"
+      unicode="&#xF417;"
+      horiz-adv-x="512" d=" M362.6666666666667 170.6666666666667H277.3333333333333V85.3333333333334H234.6666666666667V170.6666666666667H149.3333333333333V213.3333333333334H234.6666666666667V298.6666666666667H277.3333333333333V213.3333333333334H362.6666666666667M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="plus-circle-multiple-outline"
+      unicode="&#xF418;"
+      horiz-adv-x="512" d=" M341.3333333333333 277.3333333333334H298.6666666666667V213.3333333333334H234.6666666666667V170.6666666666667H298.6666666666667V106.6666666666667H341.3333333333333V170.6666666666667H405.3333333333333V213.3333333333334H341.3333333333333M42.6666666666667 192C42.6666666666667 251.52 77.6533333333333 302.9333333333334 128 326.8266666666667V373.3333333333334C53.3333333333333 346.4533333333334 0 275.4133333333334 0 192S53.3333333333333 37.5466666666666 128 10.6666666666667V57.1733333333334C77.6533333333333 81.0666666666667 42.6666666666667 132.48 42.6666666666667 192M320 384C214.1866666666667 384 128 297.8133333333334 128 192S214.1866666666667 0 320 0S512 86.1866666666667 512 192S425.8133333333334 384 320 384M320 42.6666666666667C237.6533333333334 42.6666666666667 170.6666666666667 109.6533333333334 170.6666666666667 192S237.6533333333334 341.3333333333334 320 341.3333333333334S469.3333333333333 274.3466666666667 469.3333333333333 192S402.3466666666667 42.6666666666667 320 42.6666666666667z" />
+    <glyph glyph-name="plus-circle-outline"
+      unicode="&#xF419;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C161.92 21.3333333333334 85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667S426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M277.3333333333333 298.6666666666667H234.6666666666667V213.3333333333334H149.3333333333333V170.6666666666667H234.6666666666667V85.3333333333334H277.3333333333333V170.6666666666667H362.6666666666667V213.3333333333334H277.3333333333333V298.6666666666667z" />
+    <glyph glyph-name="plus-minus"
+      unicode="&#xF991;"
+      horiz-adv-x="512" d=" M234.6666666666667 362.6666666666667V256H128V213.3333333333334H234.6666666666667V106.6666666666667H277.3333333333333V213.3333333333334H384V256H277.3333333333333V362.6666666666667H234.6666666666667M128 64V21.3333333333334H384V64H128z" />
+    <glyph glyph-name="plus-minus-box"
+      unicode="&#xF992;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667M234.6666666666667 320H277.3333333333333V256H341.3333333333333V213.3333333333334H277.3333333333333V149.3333333333334H234.6666666666667V213.3333333333334H170.6666666666667V256H234.6666666666667V320M170.6666666666667 106.6666666666667H341.3333333333333V64H170.6666666666667V106.6666666666667z" />
+    <glyph glyph-name="plus-network"
+      unicode="&#xF41A;"
+      horiz-adv-x="512" d=" M341.3333333333333 213.3333333333334V256H277.3333333333333V320H234.6666666666667V256H170.6666666666667V213.3333333333334H234.6666666666667V149.3333333333334H277.3333333333333V213.3333333333334H341.3333333333333M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V128C405.3333333333333 104.5333333333333 386.1333333333334 85.3333333333334 362.6666666666667 85.3333333333334H277.3333333333333V42.6666666666667H298.6666666666667C310.4 42.6666666666667 320 33.0666666666667 320 21.3333333333334H469.3333333333333V-21.3333333333333H320C320 -33.0666666666667 310.4 -42.6666666666666 298.6666666666667 -42.6666666666666H213.3333333333333C201.6 -42.6666666666666 192 -33.0666666666667 192 -21.3333333333333H42.6666666666667V21.3333333333334H192C192 33.0666666666667 201.6 42.6666666666667 213.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H149.3333333333333C125.6533333333333 85.3333333333334 106.6666666666667 104.5333333333333 106.6666666666667 128V341.3333333333334C106.6666666666667 364.8 125.8666666666667 384 149.3333333333333 384H362.6666666666667z" />
+    <glyph glyph-name="plus-one"
+      unicode="&#xF41B;"
+      horiz-adv-x="512" d=" M213.3333333333333 277.3333333333334V192H298.6666666666667V149.3333333333334H213.3333333333333V64H170.6666666666667V149.3333333333334H85.3333333333333V192H170.6666666666667V277.3333333333334H213.3333333333333M309.3333333333333 318.2933333333334L405.3333333333333 341.3333333333334V64H362.6666666666667V290.1333333333334L309.3333333333333 279.4666666666667V318.2933333333334z" />
+    <glyph glyph-name="plus-outline"
+      unicode="&#xF704;"
+      horiz-adv-x="512" d=" M85.3333333333333 256H192V362.6666666666667H320V256H426.6666666666667V128H320V21.3333333333334H192V128H85.3333333333333V256M234.6666666666667 170.6666666666667V64H277.3333333333333V170.6666666666667H384V213.3333333333334H277.3333333333333V320H234.6666666666667V213.3333333333334H128V170.6666666666667H234.6666666666667z" />
+    <glyph glyph-name="pocket"
+      unicode="&#xF41C;"
+      horiz-adv-x="512" d=" M467.1999999999999 357.12C461.6533333333333 372.2666666666667 447.1466666666666 382.5066666666667 430.9333333333333 382.5066666666667H81.28C65.4933333333333 382.5066666666667 50.9866666666667 372.48 45.2266666666667 357.5466666666667C43.52 353.0666666666667 42.6666666666667 348.5866666666667 42.6666666666667 343.8933333333333V215.04L44.16 189.4400000000001C50.3466666666667 131.2000000000001 80.64 80.4266666666667 127.36 44.8000000000001C128 44.16 129.0666666666667 43.5200000000001 129.92 42.6666666666667H130.3466666666666C155.52 24.3200000000001 183.4666666666667 11.9466666666667 213.3333333333333 5.76C227.84 2.9866666666667 242.1333333333334 1.4933333333333 256 1.4933333333333C269.44 1.4933333333333 282.6666666666667 2.7733333333333 295.4666666666667 5.1200000000001C297.1733333333333 5.3333333333334 298.6666666666667 5.7600000000001 300.16 5.9733333333334C300.5866666666667 6.1866666666667 301.0133333333333 6.4 301.6533333333333 6.6133333333334C330.6666666666667 12.8000000000001 357.5466666666667 24.96 381.6533333333333 42.6666666666667H382.08C382.9333333333333 43.5200000000001 384 44.1600000000001 384.64 44.8000000000001C431.36 80.4266666666667 461.6533333333333 131.2000000000002 467.84 189.4400000000002L469.3333333333333 215.0400000000001V343.8933333333333C469.3333333333333 348.1600000000001 468.6933333333333 352.64 467.1999999999999 357.12M376.9599999999999 222.9333333333333L276.4799999999999 126.72C270.9333333333333 121.1733333333334 263.4666666666666 118.6133333333334 255.9999999999999 118.6133333333334C248.9599999999999 118.6133333333334 241.7066666666666 121.1733333333333 235.9466666666666 126.72L135.6799999999999 222.9333333333333C123.9466666666666 234.0266666666667 123.5199999999999 252.5866666666667 134.8266666666666 264.32C145.9199999999999 276.0533333333334 164.4799999999999 276.2666666666667 176.2133333333333 265.1733333333333L255.9999999999999 188.3733333333333L336.4266666666666 265.1733333333333C347.9466666666666 276.2666666666667 366.5066666666666 275.84 377.8133333333333 264.32C388.9066666666666 252.5866666666667 388.4799999999999 234.0266666666667 376.9599999999999 222.9333333333333z" />
+    <glyph glyph-name="podcast"
+      unicode="&#xF993;"
+      horiz-adv-x="512" d=" M362.6666666666667 58.6666666666667V-10.6666666666666H149.3333333333333V58.6666666666667C149.3333333333333 88.1066666666667 197.12 112 256 112S362.6666666666667 88.1066666666667 362.6666666666667 58.6666666666667M256 330.6666666666667C332.5866666666667 330.6666666666667 394.6666666666667 268.5866666666667 394.6666666666667 192C394.6666666666667 165.3333333333334 387.2 140.3733333333333 374.1866666666666 119.2533333333333L341.3333333333333 148.48C348.16 161.4933333333334 352 176.4266666666667 352 192C352 245.3333333333334 309.3333333333333 288 256 288S160 245.3333333333334 160 192C160 176.4266666666667 163.84 161.4933333333334 170.6666666666667 148.48L137.8133333333333 119.2533333333333C124.8 140.3733333333333 117.3333333333333 165.3333333333334 117.3333333333333 192C117.3333333333333 268.5866666666667 179.4133333333333 330.6666666666667 256 330.6666666666667M256 416C379.7333333333334 416 480 315.7333333333334 480 192C480 143.36 464.4266666666666 98.3466666666667 438.1866666666666 61.6533333333334L406.1866666666666 90.4533333333334C425.8133333333334 119.4666666666667 437.3333333333333 154.4533333333334 437.3333333333333 192.0000000000001C437.3333333333333 292.0533333333334 356.0533333333334 373.3333333333334 256 373.3333333333334C155.9466666666667 373.3333333333334 74.6666666666667 292.0533333333334 74.6666666666667 192.0000000000001C74.6666666666667 154.4533333333334 86.1866666666667 119.4666666666667 105.8133333333333 90.4533333333334L73.8133333333333 61.6533333333334C47.5733333333333 98.3466666666667 32 143.36 32 192C32 315.7333333333334 132.2666666666667 416 256 416M256 245.3333333333334C285.44 245.3333333333334 309.3333333333333 221.44 309.3333333333333 192S285.44 138.6666666666667 256 138.6666666666667S202.6666666666667 162.5600000000001 202.6666666666667 192S226.56 245.3333333333334 256 245.3333333333334z" />
+    <glyph glyph-name="pokeball"
+      unicode="&#xF41D;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C168.96 362.6666666666667 97.0666666666667 297.6 86.6133333333333 213.3333333333334H173.44C182.8266666666666 250.24 216.32 277.3333333333334 256 277.3333333333334C295.68 277.3333333333334 329.1733333333333 250.24 338.56 213.3333333333334H425.3866666666667C414.9333333333334 297.6 343.04 362.6666666666667 256 362.6666666666667M256 21.3333333333334C343.04 21.3333333333334 414.9333333333333 86.4 425.3866666666667 170.6666666666667H338.56C329.1733333333334 133.76 295.68 106.6666666666667 256 106.6666666666667C216.32 106.6666666666667 182.8266666666667 133.76 173.44 170.6666666666667H86.6133333333333C97.0666666666667 86.4 168.96 21.3333333333334 256 21.3333333333334M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="pokemon-go"
+      unicode="&#xFA08;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C338.56 405.3333333333333 405.3333333333333 338.56 405.3333333333333 256C405.3333333333333 226.1333333333334 396.5866666666667 198.1866666666667 381.44 174.9333333333333L256 -25.8133333333333L130.56 174.9333333333333C115.4133333333333 198.1866666666667 106.6666666666667 226.1333333333334 106.6666666666667 256C106.6666666666667 338.56 173.44 405.3333333333333 256 405.3333333333333M256 373.3333333333334C198.4 373.3333333333334 150.6133333333333 331.9466666666667 140.5866666666667 277.3333333333334H195.6266666666667C204.3733333333333 302.2933333333334 228.0533333333333 320 256 320S307.6266666666667 302.2933333333334 316.3733333333334 277.3333333333334H371.4133333333333C361.3866666666667 331.9466666666667 313.6 373.3333333333334 256 373.3333333333334M256 192C228.0533333333333 192 204.3733333333333 209.7066666666667 195.6266666666667 234.6666666666667H140.5866666666667C143.36 219.9466666666667 148.6933333333333 206.08 156.5866666666667 193.92L157.44 192C178.3466666666666 160 214.6133333333334 138.6666666666667 256 138.6666666666667S333.6533333333333 160 354.56 192L355.4133333333333 193.92C363.3066666666667 206.08 368.64 219.9466666666667 371.4133333333333 234.6666666666667H316.3733333333334C307.6266666666667 209.7066666666667 283.9466666666667 192 256 192M256 288C238.2933333333333 288 224 273.7066666666667 224 256S238.2933333333333 224 256 224S288 238.2933333333334 288 256S273.7066666666667 288 256 288z" />
+    <glyph glyph-name="poker-chip"
+      unicode="&#xF82F;"
+      horiz-adv-x="512" d=" M490.6666666666666 192C490.6666666666666 62.2933333333334 385.7066666666666 -42.6666666666666 256 -42.6666666666666S21.3333333333333 62.2933333333334 21.3333333333333 192S126.2933333333333 426.6666666666667 256 426.6666666666667S490.6666666666666 321.7066666666667 490.6666666666666 192M277.3333333333333 361.3866666666667C322.7733333333333 355.6266666666667 364.16 331.7333333333334 391.8933333333333 295.2533333333334L429.0133333333333 316.5866666666667C393.6 366.5066666666667 338.3466666666667 398.9333333333334 277.3333333333333 405.3333333333333V361.3866666666667M82.9866666666667 316.5866666666667L120.1066666666667 295.2533333333334C147.84 331.7333333333334 189.2266666666667 355.6266666666667 234.6666666666667 361.3866666666667V405.3333333333333C173.6533333333333 398.9333333333334 118.4 366.5066666666667 82.9866666666667 316.5866666666667M61.6533333333333 104.5333333333333L98.56 125.8666666666667C80.8533333333333 168.1066666666667 80.8533333333333 215.8933333333333 98.56 258.1333333333334L61.6533333333333 279.4666666666667C36.2666666666667 224 36.2666666666667 160 61.6533333333333 104.5333333333333M234.6666666666667 22.6133333333333C189.2266666666667 28.3733333333333 147.84 52.2666666666667 120.1066666666667 88.7466666666667L82.9866666666667 67.4133333333334C118.4 17.4933333333333 173.6533333333333 -14.9333333333333 234.6666666666667 -21.3333333333333V22.6133333333333M429.0133333333333 67.4133333333334L391.8933333333333 88.7466666666667C364.16 52.2666666666667 322.7733333333333 28.3733333333333 277.3333333333333 22.6133333333333V-20.0533333333333C338.1333333333334 -13.8666666666667 393.3866666666667 17.92 429.0133333333333 67.4133333333333M450.3466666666667 104.5333333333333C475.7333333333333 159.9999999999999 475.7333333333333 223.9999999999999 450.3466666666667 279.4666666666666L413.44 258.1333333333332C431.1466666666666 215.8933333333332 431.1466666666666 168.1066666666666 413.44 125.8666666666666L450.3466666666667 104.5333333333333M320 192L256 298.6666666666667L192 192L256 85.3333333333334L320 192z" />
+    <glyph glyph-name="polaroid"
+      unicode="&#xF41E;"
+      horiz-adv-x="512" d=" M128 384H384C407.4666666666667 384 426.6666666666667 364.8 426.6666666666667 341.3333333333334V42.6666666666667C426.6666666666667 19.2 407.4666666666667 0 384 0H128C104.5333333333333 0 85.3333333333333 19.2 85.3333333333333 42.6666666666667V341.3333333333334C85.3333333333333 364.8 104.5333333333333 384 128 384M128 341.3333333333334V85.3333333333334H384V341.3333333333334H128z" />
+    <glyph glyph-name="poll"
+      unicode="&#xF41F;"
+      horiz-adv-x="512" d=" M64 -21.3333333333333V277.3333333333334H149.3333333333333V-21.3333333333333H64M213.3333333333333 -21.3333333333333V405.3333333333333H298.6666666666667V-21.3333333333333H213.3333333333333M362.6666666666667 -21.3333333333333V149.3333333333334H448V-21.3333333333333H362.6666666666667z" />
+    <glyph glyph-name="poll-box"
+      unicode="&#xF420;"
+      horiz-adv-x="512" d=" M362.6666666666667 85.3333333333334H320V170.6666666666667H362.6666666666667M277.3333333333333 85.3333333333334H234.6666666666667V298.6666666666667H277.3333333333333M192 85.3333333333334H149.3333333333333V234.6666666666667H192M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="polymer"
+      unicode="&#xF421;"
+      horiz-adv-x="512" d=" M405.3333333333333 362.6666666666667H320L151.4666666666667 93.2266666666667L96 192L192 362.6666666666667H106.6666666666667L10.6666666666667 192L106.6666666666667 21.3333333333334H192L360.32 290.7733333333334L416 192L320 21.3333333333334H405.3333333333333L501.3333333333333 192L405.3333333333333 362.6666666666667z" />
+    <glyph glyph-name="pool"
+      unicode="&#xF606;"
+      horiz-adv-x="512" d=" M42.6666666666667 128C78.2933333333333 144 113.7066666666667 160 149.3333333333333 167.04V341.3333333333334C149.3333333333333 376.7466666666667 177.92 405.3333333333333 213.3333333333333 405.3333333333333C241.28 405.3333333333333 264.96 387.6266666666667 273.7066666666667 362.6666666666667H213.3333333333333C201.6 362.6666666666667 192 353.0666666666667 192 341.3333333333334V320H298.6666666666667V341.3333333333334C298.6666666666667 376.7466666666667 327.2533333333334 405.3333333333333 362.6666666666667 405.3333333333333C390.6133333333333 405.3333333333333 414.2933333333334 387.6266666666667 423.04 362.6666666666667H362.6666666666667C350.9333333333333 362.6666666666667 341.3333333333333 353.0666666666667 341.3333333333333 341.3333333333334V129.28C384 136.1066666666667 426.6666666666667 170.6666666666667 469.3333333333333 170.6666666666667V128C421.9733333333334 128 374.6133333333333 85.3333333333334 327.04 85.3333333333334C279.68 85.3333333333334 232.32 128 184.96 128C137.3866666666667 128 90.0266666666667 106.6666666666667 42.6666666666667 85.3333333333334V128M298.6666666666667 277.3333333333334H192V234.6666666666667H298.6666666666667V277.3333333333334M298.6666666666667 192H192V170.6666666666667C227.6266666666667 167.2533333333333 263.04 142.72 298.6666666666667 132.48V192M42.6666666666667 42.6666666666667C90.0266666666667 64 137.3866666666667 85.3333333333334 184.96 85.3333333333334C232.32 85.3333333333334 279.68 42.6666666666667 327.04 42.6666666666667C374.6133333333333 42.6666666666667 421.9733333333334 85.3333333333334 469.3333333333333 85.3333333333334V42.6666666666667C421.9733333333334 42.6666666666667 374.6133333333333 0 327.04 0C279.68 0 232.32 42.6666666666667 184.96 42.6666666666667C137.3866666666667 42.6666666666667 90.0266666666667 21.3333333333334 42.6666666666667 0V42.6666666666667z" />
+    <glyph glyph-name="popcorn"
+      unicode="&#xF422;"
+      horiz-adv-x="512" d=" M149.3333333333333 -21.3333333333333H101.3333333333333S85.3333333333333 -21.3333333333333 81.28 7.4666666666667L43.52 366.7200000000001L42.6666666666667 373.3333333333334C42.6666666666667 391.04 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333S128 391.04 128 373.3333333333334C128 391.04 147.2 405.3333333333333 170.6666666666667 405.3333333333333S213.3333333333333 391.04 213.3333333333333 373.3333333333334C213.3333333333333 391.04 232.5333333333334 405.3333333333333 256 405.3333333333333C279.2533333333334 405.3333333333333 298.6666666666667 391.2533333333334 298.6666666666667 373.3333333333334C298.6666666666667 391.04 317.8666666666667 405.3333333333333 341.3333333333333 405.3333333333333S384 391.04 384 373.3333333333334C384 391.04 403.2 405.3333333333333 426.6666666666667 405.3333333333333S469.3333333333333 391.04 469.3333333333333 373.3333333333334L468.48 366.7200000000001L430.7200000000001 7.4666666666667C426.6666666666667 -21.3333333333333 410.6666666666667 -21.3333333333333 410.6666666666667 -21.3333333333333H149.3333333333333M380.8 342.8266666666667C374.4 354.3466666666667 359.2533333333334 362.6666666666667 341.3333333333333 362.6666666666667C324.0533333333333 362.6666666666667 306.3466666666667 354.9866666666667 298.6666666666667 344.1066666666667L293.9733333333333 21.3333333333334H355.4133333333333L380.8 342.8266666666667M213.3333333333333 344.1066666666667C205.6533333333333 354.9866666666667 187.9466666666667 362.6666666666667 170.6666666666667 362.6666666666667C152.7466666666667 362.6666666666667 137.6 354.3466666666667 131.2 342.8266666666667L156.5866666666667 21.3333333333334H218.0266666666667L213.3333333333333 344.1066666666667z" />
+    <glyph glyph-name="pot"
+      unicode="&#xF65A;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667C405.3333333333333 19.2 386.1333333333334 0 362.6666666666667 0H149.3333333333333C125.8666666666667 0 106.6666666666667 19.2 106.6666666666667 42.6666666666667V170.6666666666667H64V234.6666666666667H448V170.6666666666667H405.3333333333333V42.6666666666667M128 320H170.6666666666667V277.3333333333334H128V320M234.6666666666667 320H277.3333333333333V277.3333333333334H234.6666666666667V320M341.3333333333333 320H384V277.3333333333334H341.3333333333333V320M384 384H426.6666666666667V341.3333333333334H384V384M277.3333333333333 384H320V341.3333333333334H277.3333333333333V384M170.6666666666667 384H213.3333333333333V341.3333333333334H170.6666666666667V384z" />
+    <glyph glyph-name="pot-mix"
+      unicode="&#xF65B;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667C405.3333333333333 19.2 386.1333333333334 0 362.6666666666667 0H149.3333333333333C125.8666666666667 0 106.6666666666667 19.2 106.6666666666667 42.6666666666667V170.6666666666667H64V234.6666666666667H298.6666666666667L384 382.5066666666667L420.9066666666667 361.1733333333334L347.9466666666666 234.6666666666667H448V170.6666666666667H405.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="pound"
+      unicode="&#xF423;"
+      horiz-adv-x="512" d=" M115.4133333333333 0L130.56 85.3333333333334H45.2266666666667L52.6933333333333 128H138.0266666666667L160.64 256H75.3066666666667L82.7733333333334 298.6666666666667H168.1066666666667L183.2533333333333 384H225.92L210.7733333333333 298.6666666666667H338.7733333333333L353.92 384H396.5866666666667L381.44 298.6666666666667H466.7733333333333L459.3066666666666 256H373.9733333333333L351.36 128H436.6933333333333L429.2266666666666 85.3333333333334H343.8933333333333L328.7466666666666 0H286.08L301.2266666666666 85.3333333333334H173.2266666666666L158.0799999999999 0H115.4133333333333M203.3066666666667 256L180.6933333333333 128H308.6933333333333L331.3066666666666 256H203.3066666666667z" />
+    <glyph glyph-name="pound-box"
+      unicode="&#xF424;"
+      horiz-adv-x="512" d=" M64 341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334M149.3333333333333 64H192L199.4666666666667 106.6666666666667H284.8L277.3333333333333 64H320L327.4666666666667 106.6666666666667H370.1333333333334L377.8133333333334 149.3333333333334H335.1466666666667L350.08 234.6666666666667H392.7466666666667L400.2133333333334 277.3333333333334H357.5466666666667L365.2266666666667 320H322.56L314.88 277.3333333333334H229.5466666666667L237.2266666666667 320H194.56L186.88 277.3333333333334H144.2133333333334L136.7466666666667 234.6666666666667H179.4133333333334L164.48 149.3333333333334H121.8133333333334L114.1333333333334 106.6666666666667H156.8L149.3333333333333 64M222.08 234.6666666666667H307.4133333333333L292.48 149.3333333333334H207.1466666666667L222.08 234.6666666666667z" />
+    <glyph glyph-name="power"
+      unicode="&#xF425;"
+      horiz-adv-x="512" d=" M353.28 331.9466666666667L322.3466666666667 301.0133333333333C359.2533333333334 278.6133333333334 384 238.2933333333334 384 192C384 121.3866666666667 326.6133333333334 64 256 64S128 121.3866666666667 128 192C128 238.2933333333334 152.7466666666667 278.6133333333334 189.44 301.2266666666667L158.72 331.9466666666667C114.3466666666667 301.2266666666667 85.3333333333333 250.0266666666667 85.3333333333333 192C85.3333333333333 97.7066666666667 161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192C426.6666666666667 250.0266666666667 397.6533333333333 301.2266666666667 353.28 331.9466666666667M277.3333333333333 384H234.6666666666667V170.6666666666667H277.3333333333333" />
+    <glyph glyph-name="power-cycle"
+      unicode="&#xF900;"
+      horiz-adv-x="512" d=" M256 384C149.9733333333333 384 64 298.0266666666667 64 192S149.9733333333333 0 256 0S448 85.9733333333334 448 192S362.0266666666667 384 256 384M256 42.6666666666667C173.44 42.6666666666667 106.6666666666667 109.44 106.6666666666667 192S173.44 341.3333333333334 256 341.3333333333334S405.3333333333333 274.5600000000001 405.3333333333333 192S338.56 42.6666666666667 256 42.6666666666667M277.3333333333333 85.3333333333334H234.6666666666667V298.6666666666667H277.3333333333333V85.3333333333334z" />
+    <glyph glyph-name="power-off"
+      unicode="&#xF901;"
+      horiz-adv-x="512" d=" M256 384C149.9733333333333 384 64 298.0266666666667 64 192S149.9733333333333 0 256 0S448 85.9733333333334 448 192S362.0266666666667 384 256 384M256 42.6666666666667C173.44 42.6666666666667 106.6666666666667 109.44 106.6666666666667 192S173.44 341.3333333333334 256 341.3333333333334S405.3333333333333 274.5600000000001 405.3333333333333 192S338.56 42.6666666666667 256 42.6666666666667z" />
+    <glyph glyph-name="power-on"
+      unicode="&#xF902;"
+      horiz-adv-x="512" d=" M234.6666666666667 384H277.3333333333333V0H234.6666666666667V384z" />
+    <glyph glyph-name="power-plug"
+      unicode="&#xF6A4;"
+      horiz-adv-x="512" d=" M341.3333333333333 298.6666666666667V384H298.6666666666667V298.6666666666667H213.3333333333333V384H170.6666666666667V298.6666666666667C149.3333333333333 298.6666666666667 128 277.3333333333334 128 256V138.6666666666667L202.6666666666667 64V0H309.3333333333333V64L384 138.6666666666667V256C384 277.3333333333334 362.6666666666667 298.6666666666667 341.3333333333333 298.6666666666667z" />
+    <glyph glyph-name="power-plug-off"
+      unicode="&#xF6A5;"
+      horiz-adv-x="512" d=" M170.6666666666667 384V316.1600000000001C236.8 251.0933333333334 300.8 185.6 366.9333333333333 121.6C371.2 128.0000000000001 379.7333333333334 132.2666666666667 384 140.8000000000001V260.2666666666667C384 284.16 356.2666666666667 295.2533333333334 341.3333333333333 302.08V384H298.6666666666667V298.6666666666667H213.3333333333333V384H170.6666666666667M69.9733333333333 362.6666666666667C60.8 353.7066666666667 51.84 344.5333333333334 42.6666666666667 335.5733333333334L128 250.24V138.6666666666667C152.96 114.1333333333333 177.7066666666667 88.96 202.6666666666667 64V0H309.3333333333333V64C314.0266666666667 69.76 318.9333333333333 56.96 323.6266666666667 54.6133333333333C349.2266666666667 29.0133333333333 372.6933333333333 3.4133333333334 398.2933333333334 -22.1866666666667C408.9600000000001 -13.6533333333334 417.4933333333334 -2.9866666666667 426.0266666666667 5.5466666666666C306.5600000000001 125.0133333333333 187.0933333333334 242.3466666666667 69.7600000000001 361.8133333333333L69.9733333333333 362.6666666666667z" />
+    <glyph glyph-name="power-settings"
+      unicode="&#xF426;"
+      horiz-adv-x="512" d=" M320 -64H362.6666666666667V-21.3333333333333H320M353.28 353.28L322.3466666666667 322.3466666666667C359.2533333333334 299.9466666666667 384 259.6266666666667 384 213.3333333333334C384 142.72 326.6133333333334 85.3333333333334 256 85.3333333333334S128 142.72 128 213.3333333333334C128 259.6266666666667 152.7466666666667 299.9466666666667 189.44 322.56L158.72 353.28C114.3466666666667 322.56 85.3333333333333 271.36 85.3333333333333 213.3333333333334C85.3333333333333 119.04 161.7066666666667 42.6666666666667 256 42.6666666666667S426.6666666666667 119.04 426.6666666666667 213.3333333333334C426.6666666666667 271.36 397.6533333333333 322.56 353.28 353.28M277.3333333333333 405.3333333333333H234.6666666666667V192H277.3333333333333M234.6666666666667 -64H277.3333333333333V-21.3333333333333H234.6666666666667M149.3333333333333 -64H192V-21.3333333333333H149.3333333333333V-64z" />
+    <glyph glyph-name="power-sleep"
+      unicode="&#xF903;"
+      horiz-adv-x="512" d=" M399.5733333333333 64C328.5333333333333 -14.72 207.1466666666667 -21.3333333333333 128 50.3466666666667C49.7066666666667 121.3866666666667 43.52 242.7733333333333 114.56 321.4933333333334C147.2 357.3333333333334 192 379.7333333333334 240.4266666666667 384C169.8133333333333 305.0666666666667 176.4266666666667 183.68 256 112.8533333333334C290.7733333333333 81.28 336.64 64 384 64H399.5733333333333z" />
+    <glyph glyph-name="power-socket"
+      unicode="&#xF427;"
+      horiz-adv-x="512" d=" M320 128H362.6666666666667V213.3333333333334H320M149.3333333333333 128H192V213.3333333333334H149.3333333333333M234.6666666666667 170.6666666666667H277.3333333333333V256H234.6666666666667M188.3733333333333 298.6666666666667H324.2666666666667L405.3333333333333 217.6V85.3333333333334H106.6666666666667V217.6M170.6666666666667 341.3333333333334L64 234.6666666666667V42.6666666666667H448V234.6666666666667L341.3333333333333 341.3333333333334H170.6666666666667z" />
+    <glyph glyph-name="power-socket-au"
+      unicode="&#xF904;"
+      horiz-adv-x="512" d=" M90.0266666666667 405.3333333333333C63.7866666666667 405.3333333333333 42.6666666666667 384.2133333333333 42.6666666666667 357.9733333333334V26.0266666666666C42.6666666666667 0 64 -21.3333333333333 90.0266666666667 -21.3333333333333H421.9733333333334C448.2133333333334 -21.3333333333333 469.3333333333333 -0.2133333333334 469.3333333333333 26.0266666666666V357.9733333333334C469.3333333333333 384 448 405.3333333333333 421.9733333333334 405.3333333333333H90.0266666666667M256 362.6666666666667C350.2933333333334 362.6666666666667 426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334S85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667M176.4266666666667 287.1466666666667L133.76 213.3333333333334L170.6666666666667 192L213.3333333333333 265.8133333333334L176.4266666666667 287.1466666666667M335.5733333333333 287.1466666666667L298.6666666666667 265.8133333333334L341.3333333333333 192L378.24 213.3333333333334L335.5733333333333 287.1466666666667M234.6666666666667 149.3333333333334V64H277.3333333333333V149.3333333333334H234.6666666666667z" />
+    <glyph glyph-name="power-socket-eu"
+      unicode="&#xF7E6;"
+      horiz-adv-x="512" d=" M160 224C177.7066666666667 224 192 209.7066666666667 192 192S177.7066666666667 160 160 160C142.08 160 128 174.2933333333334 128 192S142.2933333333333 224 160 224M352 224C369.7066666666666 224 384 209.7066666666667 384 192S369.7066666666666 160 352 160S320 174.2933333333334 320 192S334.2933333333333 224 352 224M90.0266666666667 405.3333333333333H421.9733333333334C448 405.3333333333333 469.3333333333333 384 469.3333333333333 357.9733333333334V26.0266666666666C469.3333333333333 -0.2133333333334 448.2133333333334 -21.3333333333333 421.9733333333334 -21.3333333333333H90.0266666666667C64 -21.3333333333333 42.6666666666667 0 42.6666666666667 26.0266666666666V357.9733333333334C42.6666666666667 384.2133333333333 63.7866666666667 405.3333333333333 90.0266666666667 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="power-socket-uk"
+      unicode="&#xF7E7;"
+      horiz-adv-x="512" d=" M309.3333333333333 154.6666666666667H384V106.6666666666667H309.3333333333333V154.6666666666667M128 154.6666666666667H202.6666666666667V106.6666666666667H128V154.6666666666667M234.6666666666667 320H277.3333333333333V234.6666666666667H234.6666666666667V320M90.0266666666667 405.3333333333333C63.7866666666667 405.3333333333333 42.6666666666667 384.2133333333333 42.6666666666667 357.9733333333334V26.0266666666666C42.6666666666667 0 64 -21.3333333333333 90.0266666666667 -21.3333333333333H421.9733333333334C448.2133333333334 -21.3333333333333 469.3333333333333 -0.2133333333334 469.3333333333333 26.0266666666666V357.9733333333334C469.3333333333333 384 448 405.3333333333333 421.9733333333334 405.3333333333333H90.0266666666667M256 362.6666666666667C350.2933333333334 362.6666666666667 426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334S85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="power-socket-us"
+      unicode="&#xF7E8;"
+      horiz-adv-x="512" d=" M170.6666666666667 298.6666666666667H213.3333333333333V192H170.6666666666667V298.6666666666667M90.0266666666667 405.3333333333333H421.9733333333334C448 405.3333333333333 469.3333333333333 384 469.3333333333333 357.9733333333334V26.0266666666666C469.3333333333333 -0.2133333333334 448.2133333333334 -21.3333333333333 421.9733333333334 -21.3333333333333H90.0266666666667C64 -21.3333333333333 42.6666666666667 0 42.6666666666667 26.0266666666666V357.9733333333334C42.6666666666667 384.2133333333333 63.7866666666667 405.3333333333333 90.0266666666667 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667M298.6666666666667 288H341.3333333333333V202.6666666666667H298.6666666666667V288M224 101.3333333333334C224 119.04 238.2933333333333 133.3333333333334 256 133.3333333333334S288 119.04 288 101.3333333333334V85.3333333333334H224V101.3333333333334z" />
+    <glyph glyph-name="power-standby"
+      unicode="&#xF905;"
+      horiz-adv-x="512" d=" M277.3333333333333 384H234.6666666666667V170.6666666666667H277.3333333333333V384M380.3733333333333 337.7066666666667L350.08 307.4133333333334C385.0666666666667 279.2533333333334 405.3333333333333 236.8 405.3333333333333 192C405.3333333333333 109.44 338.56 42.6666666666667 256 42.6666666666667C173.6533333333333 42.6666666666667 106.6666666666667 109.2266666666667 106.6666666666667 192C106.6666666666667 236.5866666666667 126.9333333333333 279.2533333333334 161.7066666666667 307.6266666666667L131.6266666666667 337.7066666666667C50.7733333333333 269.0133333333333 40.96 147.84 109.6533333333333 66.9866666666667C178.3466666666666 -13.6533333333333 299.52 -23.4666666666667 380.3733333333333 45.2266666666667C423.4666666666667 81.7066666666667 448 135.4666666666667 448 192C448 248.1066666666667 423.2533333333334 301.44 380.3733333333333 337.7066666666667z" />
+    <glyph glyph-name="powershell"
+      unicode="&#xFA09;"
+      horiz-adv-x="512" d=" M465.7066666666666 362.6666666666667C476.1599999999999 362.6666666666667 482.7733333333333 354.1333333333334 480 343.68L412.5866666666667 40.3200000000001C410.24 29.8666666666667 400 21.3333333333334 389.5466666666666 21.3333333333334H46.2933333333333C35.84 21.3333333333334 29.2266666666667 29.8666666666667 32 40.3200000000001L99.4133333333333 343.68C101.76 354.1333333333334 112 362.6666666666667 122.4533333333333 362.6666666666667H465.7066666666666M337.7066666666666 106.6666666666667H252.3733333333333C242.56 106.6666666666667 234.6666666666667 98.5600000000001 234.6666666666667 88.7466666666667C234.6666666666667 78.72 242.56 70.6133333333334 252.3733333333333 70.6133333333334H337.7066666666666C347.7333333333333 70.6133333333334 355.84 78.72 355.84 88.7466666666667C355.84 98.5600000000001 347.7333333333334 106.6666666666667 337.7066666666667 106.6666666666667M123.3066666666667 100.6933333333333C114.7733333333333 94.72 112.8533333333333 82.9866666666667 118.8266666666667 74.6666666666667C124.8 65.7066666666667 136.7466666666667 64 145.28 69.76C302.08 180.0533333333334 303.1466666666667 181.3333333333334 304.2133333333333 181.9733333333334C308.0533333333333 185.3866666666667 309.9733333333333 190.0800000000001 310.1866666666666 194.7733333333333C310.4 199.04 309.3333333333333 202.6666666666666 306.7733333333333 206.72L201.8133333333333 319.36C194.7733333333334 327.04 182.8266666666667 327.4666666666667 175.1466666666667 320C167.4666666666667 313.1733333333334 167.04 301.2266666666667 174.08 293.5466666666667L262.6133333333334 198.8266666666667L123.3066666666667 100.6933333333333z" />
+    <glyph glyph-name="prescription"
+      unicode="&#xF705;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667V149.3333333333334H128V234.6666666666667H170.6666666666667L286.08 119.2533333333333L209.7066666666667 42.6666666666667L239.7866666666667 12.5866666666667L316.3733333333334 88.96L392.7466666666667 12.5866666666668L422.8266666666667 42.6666666666667L346.4533333333334 119.2533333333333L422.8266666666667 195.6266666666667L392.7466666666667 225.92L316.3733333333334 149.3333333333334L231.04 234.6666666666667H234.6666666666667C270.08 234.6666666666667 298.6666666666667 263.2533333333334 298.6666666666667 298.6666666666667S270.08 362.6666666666667 234.6666666666667 362.6666666666667H85.3333333333333M128 320H234.6666666666667C246.4 320 256 310.4 256 298.6666666666667S246.4 277.3333333333334 234.6666666666667 277.3333333333334H128V320z" />
+    <glyph glyph-name="presentation"
+      unicode="&#xF428;"
+      horiz-adv-x="512" d=" M42.6666666666667 384H213.3333333333333C213.3333333333333 407.4666666666667 232.5333333333334 426.6666666666667 256 426.6666666666667S298.6666666666667 407.4666666666667 298.6666666666667 384H469.3333333333333V341.3333333333334H448V106.6666666666667H325.3333333333333L362.6666666666667 -21.3333333333333H320L282.6666666666667 106.6666666666667H229.3333333333333L192 -21.3333333333333H149.3333333333333L186.6666666666667 106.6666666666667H64V341.3333333333334H42.6666666666667V384M106.6666666666667 341.3333333333334V149.3333333333334H405.3333333333333V341.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="presentation-play"
+      unicode="&#xF429;"
+      horiz-adv-x="512" d=" M42.6666666666667 384H213.3333333333333C213.3333333333333 407.4666666666667 232.5333333333334 426.6666666666667 256 426.6666666666667S298.6666666666667 407.4666666666667 298.6666666666667 384H469.3333333333333V341.3333333333334H448V106.6666666666667H325.3333333333333L362.6666666666667 -21.3333333333333H320L282.6666666666667 106.6666666666667H229.3333333333333L192 -21.3333333333333H149.3333333333333L186.6666666666667 106.6666666666667H64V341.3333333333334H42.6666666666667V384M106.6666666666667 341.3333333333334V149.3333333333334H405.3333333333333V341.3333333333334H106.6666666666667M252.8 195.2C250.88 193.28 248.32 192 245.3333333333333 192C239.36 192 234.6666666666667 196.6933333333334 234.6666666666667 202.6666666666667V288C234.6666666666667 293.9733333333334 239.36 298.6666666666667 245.3333333333333 298.6666666666667C248.32 298.6666666666667 250.88 297.3866666666667 252.8 295.4666666666667L282.6666666666667 265.8133333333334C289.4933333333334 258.9866666666667 296.32 252.16 296.32 245.3333333333334C296.32 238.5066666666667 289.4933333333334 231.68 282.6666666666667 224.8533333333333L252.8 195.2z" />
+    <glyph glyph-name="printer"
+      unicode="&#xF42A;"
+      horiz-adv-x="512" d=" M384 384H128V298.6666666666667H384M405.3333333333333 192C393.6 192 384 201.6 384 213.3333333333334S393.6 234.6666666666667 405.3333333333333 234.6666666666667S426.6666666666667 225.0666666666667 426.6666666666667 213.3333333333334S417.0666666666667 192 405.3333333333333 192M341.3333333333333 42.6666666666667H170.6666666666667V149.3333333333334H341.3333333333333M405.3333333333333 277.3333333333334H106.6666666666667C71.2533333333333 277.3333333333334 42.6666666666667 248.7466666666667 42.6666666666667 213.3333333333334V85.3333333333334H128V0H384V85.3333333333334H469.3333333333333V213.3333333333334C469.3333333333333 248.7466666666667 440.7466666666667 277.3333333333334 405.3333333333333 277.3333333333334z" />
+    <glyph glyph-name="printer-3d"
+      unicode="&#xF42B;"
+      horiz-adv-x="512" d=" M405.3333333333333 320C417.0666666666667 320 426.6666666666667 329.6 426.6666666666667 341.3333333333334S417.0666666666667 362.6666666666667 405.3333333333333 362.6666666666667S384 353.0666666666667 384 341.3333333333334S393.6 320 405.3333333333333 320M405.3333333333333 405.3333333333333C440.7466666666667 405.3333333333333 469.3333333333333 376.7466666666667 469.3333333333333 341.3333333333334V213.3333333333334H384V298.6666666666667H128V213.3333333333334H42.6666666666667V341.3333333333334C42.6666666666667 376.7466666666667 71.2533333333333 405.3333333333333 106.6666666666667 405.3333333333333H405.3333333333333M384 58.6666666666667C384 50.5600000000001 379.52 43.52 372.6933333333333 39.8933333333334L268.16 -17.4933333333333C264.5333333333333 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L139.3066666666666 39.8933333333334C132.4799999999999 43.5200000000001 128 50.5600000000001 128 58.6666666666667V170.6666666666667C128 178.7733333333334 132.4799999999999 185.8133333333334 139.3066666666666 189.4400000000001L243.84 241.4933333333334C247.2533333333333 244.0533333333334 251.5199999999999 245.3333333333334 256 245.3333333333334C260.48 245.3333333333334 264.5333333333333 244.0533333333334 268.16 241.4933333333334L372.6933333333333 189.4400000000001C379.52 185.8133333333334 384 178.7733333333334 384 170.6666666666667V58.6666666666667M256 199.4666666666667L192.8533333333333 170.6666666666667L256 136.5333333333334L319.1466666666667 170.6666666666667L256 199.4666666666667M170.6666666666667 71.2533333333333L234.6666666666667 36.48V99.6266666666667L170.6666666666667 134.1866666666667V71.2533333333335M341.3333333333333 71.2533333333335V134.1866666666667L277.3333333333333 99.6266666666667V36.48L341.3333333333333 71.2533333333333z" />
+    <glyph glyph-name="printer-alert"
+      unicode="&#xF42C;"
+      horiz-adv-x="512" d=" M298.6666666666667 362.6666666666667V277.3333333333334H128V362.6666666666667H298.6666666666667M320 170.6666666666667C331.7333333333334 170.6666666666667 341.3333333333333 180.2666666666667 341.3333333333333 192S331.7333333333334 213.3333333333334 320 213.3333333333334S298.6666666666667 203.7333333333334 298.6666666666667 192S308.2666666666667 170.6666666666667 320 170.6666666666667M277.3333333333333 42.6666666666667V128H149.3333333333333V42.6666666666667H277.3333333333333M320 256C355.4133333333333 256 384 227.4133333333334 384 192V85.3333333333334H320V0H106.6666666666667V85.3333333333334H42.6666666666667V192C42.6666666666667 227.4133333333334 71.2533333333333 256 106.6666666666667 256H320M469.3333333333333 298.6666666666667V192H426.6666666666667V298.6666666666667H469.3333333333333M469.3333333333333 149.3333333333334V106.6666666666667H426.6666666666667V149.3333333333334H469.3333333333333z" />
+    <glyph glyph-name="printer-settings"
+      unicode="&#xF706;"
+      horiz-adv-x="512" d=" M384 405.3333333333333V320H128V405.3333333333333H384M405.3333333333333 213.3333333333334C417.0666666666667 213.3333333333334 426.6666666666667 222.9333333333333 426.6666666666667 234.6666666666667S417.0666666666667 256 405.3333333333333 256S384 246.4000000000001 384 234.6666666666667S393.6 213.3333333333334 405.3333333333333 213.3333333333334M341.3333333333333 64V170.6666666666667H170.6666666666667V64H341.3333333333333M405.3333333333333 298.6666666666667C440.7466666666667 298.6666666666667 469.3333333333333 270.0800000000001 469.3333333333333 234.6666666666667V106.6666666666667H384V21.3333333333334H128V106.6666666666667H42.6666666666667V234.6666666666667C42.6666666666667 270.0800000000001 71.2533333333333 298.6666666666667 106.6666666666667 298.6666666666667H405.3333333333333M320 -64V-21.3333333333333H362.6666666666667V-64H320M234.6666666666667 -64V-21.3333333333333H277.3333333333333V-64H234.6666666666667M149.3333333333333 -64V-21.3333333333333H192V-64H149.3333333333333z" />
+    <glyph glyph-name="printer-wireless"
+      unicode="&#xFA0A;"
+      horiz-adv-x="512" d=" M105.1733333333333 364.3733333333334L135.2533333333333 334.2933333333334C201.8133333333333 401.0666666666667 309.9733333333333 401.0666666666667 376.7466666666667 334.2933333333334L406.8266666666667 364.3733333333334C323.6266666666667 448 188.5866666666667 448 105.1733333333333 364.3733333333334M165.5466666666667 304L195.6266666666667 273.92C228.9066666666667 307.2000000000001 282.88 307.2000000000001 316.3733333333334 273.92L346.4533333333333 304C296.5333333333333 353.92 215.4666666666666 353.92 165.5466666666666 304M405.3333333333333 149.3333333333334C393.6 149.3333333333334 384 158.9333333333333 384 170.6666666666667S393.6 192 405.3333333333333 192S426.6666666666667 182.4 426.6666666666667 170.6666666666667S417.0666666666667 149.3333333333334 405.3333333333333 149.3333333333334M341.3333333333333 21.3333333333334H170.6666666666667V128H341.3333333333333V21.3333333333334M405.3333333333333 234.6666666666667H106.6666666666667C71.2533333333333 234.6666666666667 42.6666666666667 206.08 42.6666666666667 170.6666666666667V64H128V-21.3333333333333H384V64H469.3333333333333V170.6666666666667C469.3333333333333 206.08 440.7466666666667 234.6666666666667 405.3333333333333 234.6666666666667z" />
+    <glyph glyph-name="priority-high"
+      unicode="&#xF603;"
+      horiz-adv-x="512" d=" M298.6666666666667 42.6666666666667H469.3333333333333V85.3333333333334H298.6666666666667V42.6666666666667M298.6666666666667 160H469.3333333333333V202.6666666666667H298.6666666666667V160M298.6666666666667 277.3333333333334H469.3333333333333V320H298.6666666666667V277.3333333333334M42.6666666666667 181.3333333333334C42.6666666666667 257.7066666666667 104.96 320 181.3333333333333 320H192V362.6666666666667L256 298.6666666666667L192 234.6666666666667V277.3333333333334H181.3333333333333C128 277.3333333333334 85.3333333333333 234.6666666666667 85.3333333333333 181.3333333333334S128 85.3333333333334 181.3333333333333 85.3333333333334H256V42.6666666666667H181.3333333333333C104.96 42.6666666666667 42.6666666666667 104.96 42.6666666666667 181.3333333333334z" />
+    <glyph glyph-name="priority-low"
+      unicode="&#xF604;"
+      horiz-adv-x="512" d=" M298.6666666666667 341.3333333333334H469.3333333333333V298.6666666666667H298.6666666666667V341.3333333333334M298.6666666666667 224H469.3333333333333V181.3333333333334H298.6666666666667V224M298.6666666666667 106.6666666666667H469.3333333333333V64H298.6666666666667V106.6666666666667M42.6666666666667 202.6666666666667C42.6666666666667 126.2933333333334 104.96 64 181.3333333333333 64H192V21.3333333333334L256 85.3333333333334L192 149.3333333333334V106.6666666666667H181.3333333333333C128 106.6666666666667 85.3333333333333 149.3333333333334 85.3333333333333 202.6666666666667S128 298.6666666666667 181.3333333333333 298.6666666666667H256V341.3333333333334H181.3333333333333C104.96 341.3333333333334 42.6666666666667 279.04 42.6666666666667 202.6666666666667z" />
+    <glyph glyph-name="professional-hexagon"
+      unicode="&#xF42D;"
+      horiz-adv-x="512" d=" M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M106.6666666666667 256V128H133.3333333333333V170.6666666666667H149.3333333333333C172.8 170.6666666666667 192 189.8666666666667 192 213.3333333333334S172.8 256 149.3333333333333 256H106.6666666666667M133.3333333333333 192V234.6666666666667H144C155.7333333333333 234.6666666666667 165.3333333333333 225.0666666666667 165.3333333333333 213.3333333333334S155.7333333333333 192 144 192H133.3333333333333M208 256V128H234.6666666666667V170.6666666666667H250.6666666666667L264.7466666666667 128H292.9066666666667L276.0533333333334 178.9866666666667C286.5066666666667 186.6666666666667 293.3333333333334 199.2533333333333 293.3333333333334 213.3333333333334C293.3333333333334 236.8 274.1333333333334 256 250.6666666666667 256H208M234.6666666666667 192V234.6666666666667H245.3333333333333C257.0666666666667 234.6666666666667 266.6666666666667 225.0666666666667 266.6666666666667 213.3333333333334S257.0666666666667 192 245.3333333333333 192H234.6666666666667M362.6666666666667 256C333.2266666666667 256 309.3333333333333 227.4133333333334 309.3333333333333 192S333.2266666666667 128 362.6666666666667 128S416 156.5866666666667 416 192S392.1066666666667 256 362.6666666666667 256M362.6666666666667 229.3333333333334C378.88 229.3333333333334 392.1066666666667 212.6933333333334 392.1066666666667 192S378.88 154.6666666666667 362.6666666666667 154.6666666666667C346.4533333333333 154.6666666666667 333.44 171.3066666666667 333.44 192S346.4533333333333 229.3333333333334 362.6666666666667 229.3333333333334z" />
+    <glyph glyph-name="progress-check"
+      unicode="&#xF994;"
+      horiz-adv-x="512" d=" M277.3333333333333 404.6933333333334V361.6C370.9866666666667 350.0800000000001 437.3333333333333 264.9600000000001 425.8133333333334 171.3066666666667C416 93.6533333333334 354.9866666666667 32 277.3333333333333 22.8266666666667V-19.84C394.6666666666667 -8.1066666666666 480 96 468.2666666666667 213.3333333333334C458.6666666666666 314.6666666666667 378.24 394.6666666666667 277.3333333333333 404.6933333333334M234.6666666666667 404.0533333333334C193.0666666666667 400 153.3866666666667 384 120.96 357.12L151.4666666666667 325.5466666666667C175.36 344.7466666666667 204.16 357.12 234.6666666666667 361.3866666666667V404.0533333333334M90.88 327.04C64 294.6133333333334 48 255.1466666666667 43.7333333333333 213.3333333333334H86.4C90.4533333333333 243.6266666666667 102.4 272.4266666666667 121.3866666666667 296.5333333333334L90.88 327.04M330.6666666666667 266.6666666666667L226.56 162.5600000000001L181.3333333333333 207.7866666666667L158.72 185.1733333333334L226.56 117.3333333333334L353.28 244.0533333333334L330.6666666666667 266.6666666666667M43.9466666666667 170.6666666666667C48.2133333333333 128.8533333333334 64.64 89.3866666666667 91.0933333333333 56.96L121.3866666666667 87.4666666666667C102.6133333333333 111.5733333333334 90.4533333333333 140.3733333333334 86.6133333333333 170.6666666666668H43.9466666666667M151.4666666666667 56.1066666666667L120.96 26.8800000000001C153.1733333333333 0 192.8533333333333 -16.8533333333333 234.6666666666667 -21.3333333333333V21.3333333333334C204.3733333333333 25.1733333333333 175.5733333333333 37.3333333333334 151.4666666666667 56.1066666666667z" />
+    <glyph glyph-name="progress-clock"
+      unicode="&#xF995;"
+      horiz-adv-x="512" d=" M277.3333333333333 404.6933333333334V361.6C370.9866666666667 350.0800000000001 437.3333333333333 264.9600000000001 425.8133333333334 171.3066666666667C416 93.6533333333334 354.9866666666667 32 277.3333333333333 22.8266666666667V-19.84C394.6666666666667 -8.1066666666666 480 96 468.2666666666667 213.3333333333334C458.6666666666666 314.6666666666667 378.24 394.6666666666667 277.3333333333333 404.6933333333334M234.6666666666667 404.0533333333334C193.0666666666667 400 153.3866666666667 384 120.96 357.12L151.4666666666667 325.5466666666667C175.36 344.7466666666667 204.16 357.12 234.6666666666667 361.3866666666667V404.0533333333334M90.88 327.04C64 294.6133333333334 48 255.1466666666667 43.7333333333333 213.3333333333334H86.4C90.4533333333333 243.6266666666667 102.4 272.4266666666667 121.3866666666667 296.5333333333334L90.88 327.04M43.9466666666667 170.6666666666667C48.2133333333333 128.8533333333334 64.64 89.3866666666667 91.0933333333333 56.96L121.3866666666667 87.4666666666667C102.6133333333333 111.5733333333334 90.4533333333333 140.3733333333334 86.6133333333333 170.6666666666668H43.9466666666667M151.4666666666667 56.1066666666667L120.96 26.8800000000001C153.1733333333333 0 192.8533333333333 -16.8533333333333 234.6666666666667 -21.3333333333333V21.3333333333334C204.3733333333333 25.1733333333333 175.5733333333333 37.3333333333334 151.4666666666667 56.1066666666667M266.6666666666667 298.6666666666667V186.6666666666667L362.6666666666667 129.7066666666667L346.6666666666667 103.4666666666667L234.6666666666667 170.6666666666667V298.6666666666667H266.6666666666667z" />
+    <glyph glyph-name="progress-download"
+      unicode="&#xF996;"
+      horiz-adv-x="512" d=" M277.3333333333333 404.6933333333334C378.24 394.6666666666667 458.6666666666666 314.6666666666667 468.2666666666667 213.3333333333334C480 96 394.6666666666667 -8.1066666666667 277.3333333333333 -19.84V22.8266666666667C354.9866666666667 32 416 93.6533333333334 425.8133333333334 171.3066666666667C437.3333333333333 264.9600000000001 370.9866666666667 350.0800000000001 277.3333333333333 361.6V404.6933333333334M234.6666666666667 404.0533333333334V361.3866666666667C204.16 357.12 175.36 344.7466666666667 151.4666666666667 325.5466666666667L120.96 357.12C153.3866666666667 384 193.0666666666667 400 234.6666666666667 404.0533333333334M90.88 327.04L121.3866666666667 296.5333333333334C102.4 272.4266666666667 90.4533333333333 243.6266666666667 86.4 213.3333333333334H43.7333333333333C48 255.1466666666667 64 294.6133333333334 90.88 327.04M43.9466666666667 170.6666666666667H86.6133333333334C90.4533333333333 140.3733333333333 102.6133333333334 111.5733333333334 121.3866666666667 87.4666666666667L91.0933333333333 56.96C64.64 89.3866666666667 48.2133333333333 128.8533333333334 43.9466666666667 170.6666666666667M151.4666666666667 56.1066666666667C175.5733333333333 37.3333333333334 204.3733333333333 25.1733333333333 234.6666666666667 21.3333333333334V-21.3333333333333C192.8533333333333 -16.8533333333333 153.1733333333333 0 120.96 26.88L151.4666666666667 56.1066666666667M256 96L160 192H234.6666666666667V277.3333333333334H277.3333333333333V192H352L256 96z" />
+    <glyph glyph-name="progress-upload"
+      unicode="&#xF997;"
+      horiz-adv-x="512" d=" M277.3333333333333 404.6933333333334C378.24 394.6666666666667 458.6666666666666 314.6666666666667 468.2666666666667 213.3333333333334C480 96 394.6666666666667 -8.1066666666667 277.3333333333333 -19.84V22.8266666666667C354.9866666666667 32 416 93.6533333333334 425.8133333333334 171.3066666666667C437.3333333333333 264.9600000000001 370.9866666666667 350.0800000000001 277.3333333333333 361.6V404.6933333333334M234.6666666666667 404.0533333333334V361.3866666666667C204.16 357.12 175.36 344.7466666666667 151.4666666666667 325.5466666666667L120.96 357.12C153.3866666666667 384 193.0666666666667 400 234.6666666666667 404.0533333333334M90.88 327.04L121.3866666666667 296.5333333333334C102.4 272.4266666666667 90.4533333333333 243.6266666666667 86.4 213.3333333333334H43.7333333333333C48 255.1466666666667 64 294.6133333333334 90.88 327.04M43.9466666666667 170.6666666666667H86.6133333333334C90.4533333333333 140.3733333333333 102.6133333333334 111.5733333333334 121.3866666666667 87.4666666666667L91.0933333333333 56.96C64.64 89.3866666666667 48.2133333333333 128.8533333333334 43.9466666666667 170.6666666666667M151.4666666666667 56.1066666666667C175.5733333333333 37.3333333333334 204.3733333333333 25.1733333333333 234.6666666666667 21.3333333333334V-21.3333333333333C192.8533333333333 -16.8533333333333 153.1733333333333 0 120.96 26.88L151.4666666666667 56.1066666666667M256 288L160 192H234.6666666666667V106.6666666666667H277.3333333333333V192H352L256 288z" />
+    <glyph glyph-name="projector"
+      unicode="&#xF42E;"
+      horiz-adv-x="512" d=" M341.3333333333333 320C317.2266666666667 320 293.76 312.5333333333334 273.92 298.6666666666667H85.3333333333333C61.6533333333333 298.6666666666667 42.6666666666667 279.68 42.6666666666667 256V128C42.6666666666667 104.3200000000001 61.6533333333333 85.3333333333334 85.3333333333333 85.3333333333334H106.6666666666667V64C106.6666666666667 52.2666666666667 116.2666666666667 42.6666666666667 128 42.6666666666667H170.6666666666667C182.4 42.6666666666667 192 52.2666666666667 192 64V85.3333333333334H320V64C320 52.2666666666667 329.6 42.6666666666667 341.3333333333333 42.6666666666667H384C395.7333333333334 42.6666666666667 405.3333333333333 52.2666666666667 405.3333333333333 64V85.3333333333334H426.6666666666667C450.3466666666667 85.3333333333334 469.3333333333333 104.3200000000001 469.3333333333333 128V256C469.3333333333333 279.68 450.3466666666667 298.6666666666667 426.6666666666667 298.6666666666667H408.5333333333333C388.9066666666666 312.5333333333334 365.44 320 341.3333333333333 320M341.3333333333333 288C382.5066666666667 288 416 254.5066666666667 416 213.3333333333334S382.5066666666667 138.6666666666667 341.3333333333333 138.6666666666667S266.6666666666667 172.16 266.6666666666667 213.3333333333334S300.16 288 341.3333333333333 288M85.3333333333333 256H170.6666666666667V234.6666666666667H85.3333333333333V256M341.3333333333333 256C317.8666666666667 256 298.6666666666667 236.8 298.6666666666667 213.3333333333334S317.8666666666667 170.6666666666667 341.3333333333333 170.6666666666667S384 189.8666666666667 384 213.3333333333334S364.8 256 341.3333333333333 256M85.3333333333333 213.3333333333334H170.6666666666667V192H85.3333333333333V213.3333333333334M85.3333333333333 170.6666666666667H170.6666666666667V149.3333333333334H85.3333333333333V170.6666666666667z" />
+    <glyph glyph-name="projector-screen"
+      unicode="&#xF42F;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333C73.6 405.3333333333333 64 395.7333333333334 64 384V362.6666666666667C64 350.9333333333334 73.6 341.3333333333334 85.3333333333333 341.3333333333334H106.6666666666667V149.3333333333334H234.6666666666667V94.08L144.8533333333333 4.48L175.1466666666667 -25.8133333333333L234.6666666666667 33.92V-21.3333333333333H277.3333333333333V33.92L336.8533333333333 -25.8133333333333L367.1466666666667 4.48L277.3333333333333 94.08V149.3333333333334H405.3333333333333V341.3333333333334H426.6666666666667C438.4 341.3333333333334 448 350.9333333333334 448 362.6666666666667V384C448 395.7333333333334 438.4 405.3333333333333 426.6666666666667 405.3333333333333H85.3333333333333z" />
+    <glyph glyph-name="publish"
+      unicode="&#xF6A6;"
+      horiz-adv-x="512" d=" M106.6666666666667 362.6666666666667V320H405.3333333333333V362.6666666666667H106.6666666666667M106.6666666666667 149.3333333333334H192V21.3333333333334H320V149.3333333333334H405.3333333333333L256 298.6666666666667L106.6666666666667 149.3333333333334z" />
+    <glyph glyph-name="pulse"
+      unicode="&#xF430;"
+      horiz-adv-x="512" d=" M64 170.6666666666667H123.52L215.4666666666667 345.8133333333334L240.64 154.6666666666667L309.3333333333333 241.92L380.3733333333333 170.6666666666667H448V128H362.6666666666667L312.96 177.7066666666667L211.6266666666667 48.4266666666667L190.72 206.72L149.3333333333333 128H64V170.6666666666667z" />
+    <glyph glyph-name="pumpkin"
+      unicode="&#xFB9B;"
+      horiz-adv-x="512" d=" M138.6666666666667 320C159.36 320 178.56 309.3333333333334 194.3466666666666 290.56C206.08 303.1466666666667 219.9466666666666 312.3200000000001 234.6666666666667 316.8V362.6666666666667C234.6666666666667 386.1333333333334 253.8666666666667 405.3333333333333 277.3333333333333 405.3333333333333H320V362.6666666666667H277.3333333333333V316.8C292.0533333333333 312.32 305.92 303.1466666666667 317.6533333333333 290.56C333.44 309.3333333333334 352.64 320 373.3333333333333 320C426.6666666666667 320 469.3333333333333 248.32 469.3333333333333 160C469.3333333333333 71.68 426.6666666666667 0 373.3333333333333 0C352.64 0 333.44 10.6666666666667 317.6533333333333 29.44C300.3733333333334 10.6666666666667 279.04 0 256 0S211.6266666666667 10.6666666666667 194.3466666666666 29.44C178.56 10.6666666666667 159.36 0 138.6666666666667 0C85.3333333333333 0 42.6666666666667 71.68 42.6666666666667 160C42.6666666666667 248.32 85.3333333333333 320 138.6666666666667 320z" />
+    <glyph glyph-name="puzzle"
+      unicode="&#xF431;"
+      horiz-adv-x="512" d=" M437.3333333333333 213.3333333333334H405.3333333333333V298.6666666666667C405.3333333333333 322.3466666666667 386.1333333333334 341.3333333333334 362.6666666666667 341.3333333333334H277.3333333333333V373.3333333333334C277.3333333333333 402.7733333333333 253.44 426.6666666666667 224 426.6666666666667S170.6666666666667 402.7733333333333 170.6666666666667 373.3333333333334V341.3333333333334H85.3333333333333C61.8666666666667 341.3333333333334 42.6666666666667 322.1333333333334 42.6666666666667 298.6666666666667V217.6H74.6666666666667C106.6666666666667 217.6 132.2666666666667 192 132.2666666666667 160C132.2666666666667 128 106.6666666666667 102.4 74.6666666666667 102.4H42.6666666666667V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H166.4V10.6666666666667C166.4 42.6666666666667 192 68.2666666666667 224 68.2666666666667C256 68.2666666666667 281.6 42.6666666666667 281.6 10.6666666666667V-21.3333333333333H362.6666666666667C386.1333333333334 -21.3333333333333 405.3333333333333 -2.1333333333333 405.3333333333333 21.3333333333334V106.6666666666667H437.3333333333333C466.7733333333333 106.6666666666667 490.6666666666666 130.5600000000001 490.6666666666666 160S466.7733333333333 213.3333333333334 437.3333333333333 213.3333333333334z" />
+    <glyph glyph-name="puzzle-outline"
+      unicode="&#xFA65;"
+      horiz-adv-x="512" d=" M469.3333333333333 160C469.3333333333333 122.4533333333334 441.6 91.3066666666667 405.3333333333333 86.1866666666667V21.3333333333334C405.3333333333333 -2.1333333333333 386.1333333333334 -21.3333333333333 362.6666666666667 -21.3333333333333H281.6V-14.9333333333333C281.6 16.8533333333334 255.7866666666667 42.6666666666667 224 42.6666666666667C192 42.6666666666667 166.4 16.8533333333334 166.4 -14.9333333333333V-21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V102.4H49.0666666666667C80.8533333333333 102.4 106.6666666666667 128 106.6666666666667 160C106.6666666666667 192 80.8533333333333 217.6 49.0666666666667 217.6H42.6666666666667V298.6666666666667C42.6666666666667 322.1333333333334 61.8666666666667 341.3333333333334 85.3333333333333 341.3333333333334H150.1866666666667C155.3066666666667 377.6 186.4533333333333 405.3333333333333 224 405.3333333333333S292.6933333333334 377.6 297.8133333333334 341.3333333333334H362.6666666666667C386.1333333333334 341.3333333333334 405.3333333333333 322.1333333333334 405.3333333333333 298.6666666666667V233.8133333333334C441.6 228.6933333333334 469.3333333333333 197.5466666666667 469.3333333333333 160M362.6666666666667 128H394.6666666666667C412.3733333333333 128 426.6666666666667 142.2933333333334 426.6666666666667 160S412.3733333333333 192 394.6666666666667 192H362.6666666666667V298.6666666666667H256V330.6666666666667C256 348.3733333333334 241.7066666666667 362.6666666666667 224 362.6666666666667S192 348.3733333333334 192 330.6666666666667V298.6666666666667H85.3333333333333V253.44C122.88 238.9333333333334 149.3333333333333 202.6666666666667 149.3333333333333 160S122.6666666666667 81.0666666666667 85.3333333333333 66.5600000000001V21.3333333333334H130.56C145.0666666666667 58.6666666666667 181.3333333333333 85.3333333333334 224 85.3333333333334S302.9333333333333 58.6666666666667 317.44 21.3333333333334H362.6666666666667V128z" />
+    <glyph glyph-name="qi"
+      unicode="&#xF998;"
+      horiz-adv-x="512" d=" M257.92 308.0533333333334V135.68C257.92 133.9733333333334 256 132.48 254.72 132.48C205.2266666666666 132.48 165.3333333333333 172.5866666666667 165.3333333333333 221.8666666666667C165.3333333333333 271.36 205.2266666666666 311.4666666666667 254.72 311.4666666666667C256 311.4666666666667 257.92 309.9733333333333 257.92 308.0533333333333M257.92 66.9866666666666V15.1466666666666C257.28 -14.72 279.8933333333333 -39.8933333333334 309.3333333333333 -42.6666666666667C312.7466666666667 -42.6666666666667 315.3066666666666 -40.32 315.52 -36.9066666666667V352.64C315.3066666666666 356.2666666666667 313.1733333333333 359.4666666666667 309.3333333333333 360.7466666666667C232.96 391.04 146.3466666666667 353.2800000000001 116.0533333333333 276.6933333333334C85.3333333333333 199.8933333333334 123.52 113.28 200.1066666666666 82.9866666666667C216.7466666666666 76.3733333333334 234.6666666666667 72.96 251.9466666666667 72.5333333333334C254.9333333333333 72.7466666666668 257.4933333333333 70.1866666666667 257.7066666666666 66.7733333333334M345.3866666666667 330.6666666666667V112.64C345.3866666666667 106.6666666666667 345.3866666666667 102.4 351.1466666666667 106.6666666666667C414.2933333333334 160 422.6133333333334 254.08 369.7066666666667 317.2266666666667C364.16 324.0533333333334 357.7600000000001 330.6666666666667 351.1466666666667 335.7866666666667C345.3866666666667 340.2666666666667 345.3866666666667 335.7866666666667 345.3866666666667 330.0266666666667M315.52 396.16C315.52 412.5866666666667 328.9600000000001 426.0266666666667 345.3866666666667 426.0266666666667C361.8133333333334 426.0266666666667 375.2533333333334 412.5866666666667 375.2533333333334 396.16C375.2533333333334 379.7333333333334 361.8133333333334 366.2933333333333 345.3866666666667 366.2933333333333C328.9600000000001 366.2933333333333 315.52 379.7333333333334 315.52 396.16" />
+    <glyph glyph-name="qqchat"
+      unicode="&#xF605;"
+      horiz-adv-x="512" d=" M67.84 159.1466666666667C80.2133333333333 188.5866666666667 97.4933333333333 210.3466666666667 110.2933333333333 215.0400000000001C110.08 232.1066666666668 113.28 242.7733333333334 118.6133333333333 251.3066666666667C118.6133333333333 251.9466666666667 117.3333333333333 258.9866666666667 122.0266666666667 267.7333333333334C125.2266666666667 344.5333333333334 175.1466666666667 405.3333333333333 256 405.3333333333333S386.7733333333333 344.5333333333334 389.9733333333334 267.7333333333334C394.6666666666667 258.9866666666667 393.3866666666667 251.9466666666667 393.3866666666667 251.3066666666667C398.7200000000001 242.7733333333334 401.92 232.1066666666667 401.7066666666667 215.0400000000001C414.5066666666667 210.3466666666667 431.7866666666667 188.5866666666667 444.16 158.9333333333334C460.16 121.3866666666668 462.72 85.3333333333334 449.92 78.9333333333334C441.1733333333333 74.6666666666667 427.3066666666667 85.3333333333334 414.2933333333334 104.1066666666667C409.1733333333334 83.2000000000001 396.3733333333334 64.0000000000001 378.24 48.8533333333334C397.44 41.8133333333334 409.8133333333334 30.2933333333334 409.8133333333334 17.2800000000001C409.8133333333334 -4.0533333333333 376.1066666666667 -21.3333333333333 334.7200000000001 -21.3333333333333C297.1733333333334 -21.3333333333333 266.6666666666667 -7.2533333333332 260.48 10.6666666666667H251.52C245.3333333333334 -7.2533333333332 214.8266666666667 -21.3333333333333 177.28 -21.3333333333333C135.8933333333334 -21.3333333333333 102.1866666666667 -4.0533333333333 102.1866666666667 17.2800000000001C102.1866666666667 30.2933333333334 114.56 41.8133333333334 133.76 48.8533333333334C115.6266666666667 64.0000000000001 102.8266666666667 83.2000000000001 97.7066666666667 104.1066666666667C84.6933333333334 85.3333333333334 70.8266666666667 74.6666666666667 62.08 78.9333333333334C49.28 85.3333333333334 51.84 121.3866666666668 67.84 159.1466666666668z" />
+    <glyph glyph-name="qrcode"
+      unicode="&#xF432;"
+      horiz-adv-x="512" d=" M64 213.3333333333334H106.6666666666667V170.6666666666667H64V213.3333333333334M234.6666666666667 341.3333333333334H277.3333333333333V256H234.6666666666667V341.3333333333334M192 213.3333333333334H277.3333333333333V128H234.6666666666667V170.6666666666667H192V213.3333333333334M320 213.3333333333334H362.6666666666667V170.6666666666667H405.3333333333333V213.3333333333334H448V170.6666666666667H405.3333333333333V128H448V42.6666666666667H405.3333333333333V0H362.6666666666667V42.6666666666667H277.3333333333333V0H234.6666666666667V85.3333333333334H320V128H362.6666666666667V170.6666666666667H320V213.3333333333334M405.3333333333333 42.6666666666667V128H362.6666666666667V42.6666666666667H405.3333333333333M320 384H448V256H320V384M362.6666666666667 341.3333333333334V298.6666666666667H405.3333333333333V341.3333333333334H362.6666666666667M64 384H192V256H64V384M106.6666666666667 341.3333333333334V298.6666666666667H149.3333333333333V341.3333333333334H106.6666666666667M64 128H192V0H64V128M106.6666666666667 85.3333333333334V42.6666666666667H149.3333333333333V85.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="qrcode-edit"
+      unicode="&#xF8B7;"
+      horiz-adv-x="512" d=" M106.6666666666667 341.3333333333334H149.3333333333333V298.6666666666667H106.6666666666667V341.3333333333334M21.3333333333333 426.6666666666667H234.6666666666667V213.3333333333334H21.3333333333333V426.6666666666667M64 384V256H192V384H64M106.6666666666667 85.3333333333334H149.3333333333333V42.6666666666667H106.6666666666667V85.3333333333334M21.3333333333333 170.6666666666667H234.6666666666667V-42.6666666666666H21.3333333333333V170.6666666666667M64 128V0H192V128H64M277.3333333333333 170.6666666666667H362.6666666666667V128H405.3333333333333V170.6666666666667H490.6666666666666V128H405.3333333333333V85.3333333333334H490.6666666666666V-42.6666666666666H405.3333333333333V0H320V-42.6666666666666H277.3333333333333V0H320V42.6666666666667H277.3333333333333V170.6666666666667M448 0V42.6666666666667H405.3333333333333V0H448M405.3333333333333 85.3333333333334H362.6666666666667V128H320V42.6666666666667H405.3333333333333V85.3333333333334M484.2666666666667 376.5333333333334L462.9333333333333 355.2000000000001L419.2 397.8666666666667L440.5333333333333 419.2C444.8 423.68 452.0533333333333 423.8933333333333 456.9599999999999 419.2L484.2666666666667 392.9600000000001C488.7466666666667 388.6933333333334 488.9599999999999 381.44 484.2666666666667 376.5333333333334M277.3333333333333 257.2800000000001L406.8266666666667 386.56L450.56 342.8266666666667L321.28 213.3333333333334H277.3333333333333V257.2800000000001z" />
+    <glyph glyph-name="qrcode-scan"
+      unicode="&#xF433;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H213.3333333333333V234.6666666666667H85.3333333333333V362.6666666666667M426.6666666666667 362.6666666666667V234.6666666666667H298.6666666666667V362.6666666666667H426.6666666666667M298.6666666666667 128H341.3333333333333V170.6666666666667H298.6666666666667V213.3333333333334H341.3333333333333V170.6666666666667H384V213.3333333333334H426.6666666666667V170.6666666666667H384V128H426.6666666666667V64H384V21.3333333333334H341.3333333333333V64H277.3333333333333V21.3333333333334H234.6666666666667V106.6666666666667H298.6666666666667V128M341.3333333333333 128V64H384V128H341.3333333333333M85.3333333333333 21.3333333333334V149.3333333333334H213.3333333333333V21.3333333333334H85.3333333333333M128 320V277.3333333333334H170.6666666666667V320H128M341.3333333333333 320V277.3333333333334H384V320H341.3333333333333M128 106.6666666666667V64H170.6666666666667V106.6666666666667H128M85.3333333333333 213.3333333333334H128V170.6666666666667H85.3333333333333V213.3333333333334M192 213.3333333333334H277.3333333333333V128H234.6666666666667V170.6666666666667H192V213.3333333333334M234.6666666666667 320H277.3333333333333V234.6666666666667H234.6666666666667V320M42.6666666666667 405.3333333333333V320H0V405.3333333333333C0 428.8 19.2 448 42.6666666666667 448H128V405.3333333333333H42.6666666666667M469.3333333333333 448C492.8 448 512 428.8 512 405.3333333333333V320H469.3333333333333V405.3333333333333H384V448H469.3333333333333M42.6666666666667 64V-21.3333333333333H128V-64H42.6666666666667C19.2 -64 0 -44.8 0 -21.3333333333333V64H42.6666666666667M469.3333333333333 -21.3333333333333V64H512V-21.3333333333333C512 -44.8 492.8 -64 469.3333333333333 -64H384V-21.3333333333333H469.3333333333333z" />
+    <glyph glyph-name="quadcopter"
+      unicode="&#xF434;"
+      horiz-adv-x="512" d=" M117.3333333333333 426.6666666666667C170.6666666666667 426.6666666666667 213.3333333333333 384 213.3333333333333 330.6666666666667C213.3333333333333 311.8933333333333 208 294.4 198.6133333333334 279.4666666666667L200.7466666666667 277.3333333333334H311.2533333333334L313.3866666666667 279.4666666666667C304 294.4 298.6666666666667 311.8933333333333 298.6666666666667 330.6666666666667C298.6666666666667 384 341.3333333333333 426.6666666666667 394.6666666666667 426.6666666666667S490.6666666666666 384 490.6666666666666 330.6666666666667S448 234.6666666666667 394.6666666666667 234.6666666666667C375.8933333333333 234.6666666666667 358.4 240 343.4666666666667 249.3866666666667L320 225.92V158.0800000000001L343.4666666666667 134.6133333333334C358.4 144 375.8933333333333 149.3333333333334 394.6666666666667 149.3333333333334C448 149.3333333333334 490.6666666666666 106.6666666666667 490.6666666666666 53.3333333333334S448 -42.6666666666666 394.6666666666667 -42.6666666666666S298.6666666666667 0 298.6666666666667 53.3333333333334C298.6666666666667 72.1066666666667 304 89.6 313.3866666666667 104.5333333333333L311.2533333333334 106.6666666666667H200.7466666666667L198.6133333333334 104.5333333333333C208 89.6 213.3333333333333 72.1066666666667 213.3333333333333 53.3333333333334C213.3333333333333 0 170.6666666666667 -42.6666666666666 117.3333333333333 -42.6666666666666S21.3333333333333 0 21.3333333333333 53.3333333333334S64 149.3333333333334 117.3333333333333 149.3333333333334C136.1066666666667 149.3333333333334 153.6 144 168.5333333333333 134.6133333333334L192 158.0800000000001V225.92L168.5333333333333 249.3866666666667C153.6 240 136.1066666666667 234.6666666666667 117.3333333333333 234.6666666666667C64 234.6666666666667 21.3333333333333 277.3333333333334 21.3333333333333 330.6666666666667S64 426.6666666666667 117.3333333333333 426.6666666666667M117.3333333333333 384C87.8933333333333 384 64 360.1066666666667 64 330.6666666666667S87.8933333333333 277.3333333333334 117.3333333333333 277.3333333333334S170.6666666666667 301.2266666666667 170.6666666666667 330.6666666666667S146.7733333333333 384 117.3333333333333 384M117.3333333333333 106.6666666666667C87.8933333333333 106.6666666666667 64 82.7733333333333 64 53.3333333333334S87.8933333333333 0 117.3333333333333 0S170.6666666666667 23.8933333333334 170.6666666666667 53.3333333333334S146.7733333333333 106.6666666666667 117.3333333333333 106.6666666666667M394.6666666666667 384C365.2266666666667 384 341.3333333333333 360.1066666666667 341.3333333333333 330.6666666666667S365.2266666666667 277.3333333333334 394.6666666666667 277.3333333333334S448 301.2266666666667 448 330.6666666666667S424.1066666666667 384 394.6666666666667 384M394.6666666666667 106.6666666666667C365.2266666666667 106.6666666666667 341.3333333333333 82.7733333333333 341.3333333333333 53.3333333333334S365.2266666666667 0 394.6666666666667 0S448 23.8933333333334 448 53.3333333333334S424.1066666666667 106.6666666666667 394.6666666666667 106.6666666666667M83.4133333333333 80L107.52 65.92C110.2933333333333 68.0533333333334 113.7066666666667 69.3333333333334 117.3333333333333 69.3333333333334C126.08 69.3333333333334 133.3333333333333 62.08 133.3333333333333 53.3333333333334L133.12 51.2L157.2266666666667 37.3333333333334L151.2533333333333 26.6666666666667L127.1466666666667 40.7466666666667C124.3733333333333 38.6133333333333 120.96 37.3333333333334 117.3333333333333 37.3333333333334C108.5866666666667 37.3333333333334 101.3333333333333 44.5866666666667 101.3333333333333 53.3333333333334L101.5466666666667 55.4666666666667L77.44 69.3333333333334L83.4133333333333 80M77.44 314.6666666666667L101.5466666666667 328.5333333333334L101.3333333333333 330.6666666666667C101.3333333333333 339.4133333333334 108.5866666666667 346.6666666666667 117.3333333333333 346.6666666666667C120.96 346.6666666666667 124.3733333333333 345.3866666666667 127.1466666666667 343.2533333333334L151.2533333333333 357.3333333333334L157.2266666666667 346.6666666666667L133.12 332.8L133.3333333333333 330.6666666666667C133.3333333333333 321.92 126.08 314.6666666666667 117.3333333333333 314.6666666666667C113.7066666666667 314.6666666666667 110.2933333333333 315.9466666666667 107.52 318.0800000000001L83.4133333333333 304L77.44 314.6666666666667M360.7466666666667 357.3333333333334L384.8533333333333 343.2533333333334C387.6266666666666 345.3866666666667 391.04 346.6666666666667 394.6666666666667 346.6666666666667C403.4133333333333 346.6666666666667 410.6666666666667 339.4133333333334 410.6666666666667 330.6666666666667L410.4533333333333 328.5333333333334L434.56 314.6666666666667L428.5866666666666 304L404.4799999999999 318.0800000000001C401.7066666666666 315.9466666666667 398.2933333333333 314.6666666666667 394.6666666666666 314.6666666666667C385.9199999999999 314.6666666666667 378.6666666666666 321.92 378.6666666666666 330.6666666666667L378.88 332.8L354.7733333333333 346.6666666666667L360.7466666666667 357.3333333333334M354.7733333333333 37.3333333333334L378.6666666666667 53.3333333333334C378.6666666666667 62.08 385.92 69.3333333333334 394.6666666666667 69.3333333333334C398.2933333333334 69.3333333333334 401.7066666666666 68.0533333333334 404.48 65.92L428.5866666666667 80L434.56 69.3333333333334L410.6666666666667 53.3333333333334C410.6666666666667 44.5866666666667 403.4133333333333 37.3333333333334 394.6666666666667 37.3333333333334C391.04 37.3333333333334 387.6266666666667 38.6133333333333 384.8533333333333 40.7466666666667L360.7466666666667 26.6666666666667L354.7733333333333 37.3333333333334z" />
+    <glyph glyph-name="quality-high"
+      unicode="&#xF435;"
+      horiz-adv-x="512" d=" M309.3333333333333 160H352V224H309.3333333333333M384 149.3333333333334C384 137.6 374.4 128 362.6666666666667 128H346.6666666666667V96H314.6666666666667V128H298.6666666666667C286.9333333333333 128 277.3333333333333 137.6 277.3333333333333 149.3333333333334V234.6666666666667C277.3333333333333 246.4000000000001 286.9333333333333 256 298.6666666666667 256H362.6666666666667C374.4 256 384 246.4000000000001 384 234.6666666666667M234.6666666666667 128H202.6666666666667V170.6666666666667H160V128H128V256H160V202.6666666666667H202.6666666666667V256H234.6666666666667M405.3333333333333 362.6666666666667H106.6666666666667C82.9866666666667 362.6666666666667 64 343.68 64 320V64C64 40.5333333333333 83.2 21.3333333333334 106.6666666666667 21.3333333333334H405.3333333333333C428.8 21.3333333333334 448 40.5333333333333 448 64V320C448 343.68 428.8 362.6666666666667 405.3333333333333 362.6666666666667z" />
+    <glyph glyph-name="quality-low"
+      unicode="&#xFA0B;"
+      horiz-adv-x="512" d=" M309.3333333333333 160H352V224H309.3333333333333M384 149.3333333333334C384 136.5333333333334 375.4666666666667 128 362.6666666666667 128H346.6666666666667V96H314.6666666666667V128H298.6666666666667C285.8666666666667 128 277.3333333333333 136.5333333333334 277.3333333333333 149.3333333333334V234.6666666666667C277.3333333333333 247.4666666666667 285.8666666666667 256 298.6666666666667 256H362.6666666666667C375.4666666666667 256 384 247.4666666666667 384 234.6666666666667M405.3333333333333 362.6666666666667H106.6666666666667C83.2 362.6666666666667 64 343.4666666666667 64 320V64C64 40.5333333333333 83.2 21.3333333333334 106.6666666666667 21.3333333333334H405.3333333333333C428.8 21.3333333333334 448 40.5333333333333 448 64V320C448 343.4666666666667 428.8 362.6666666666667 405.3333333333333 362.6666666666667M234.6666666666667 160V128H128V256H160V160H234.6666666666667z" />
+    <glyph glyph-name="quality-medium"
+      unicode="&#xFA0C;"
+      horiz-adv-x="512" d=" M448 320V64C448 40.5333333333333 428.8 21.3333333333334 405.3333333333333 21.3333333333334H106.6666666666667C83.2 21.3333333333334 64 40.5333333333333 64 64V320C64 343.4666666666667 83.2 362.6666666666667 106.6666666666667 362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320M256 234.6666666666667C256 245.3333333333334 245.3333333333333 256 234.6666666666667 256H138.6666666666667C128 256 117.3333333333333 245.3333333333334 117.3333333333333 234.6666666666667V128H149.3333333333333V224H170.6666666666667V149.3333333333334H202.6666666666667V224H224V128H256V234.6666666666667M309.3333333333333 256C297.6 256 288 246.4000000000001 288 234.6666666666667V149.3333333333334C288 137.6 297.6 128 309.3333333333333 128H330.6666666666667V96H357.3333333333333V128H373.3333333333333C385.0666666666667 128 394.6666666666667 137.6 394.6666666666667 149.3333333333334V234.6666666666667C394.6666666666667 246.4000000000001 385.0666666666667 256 373.3333333333333 256H309.3333333333333M320 224H362.6666666666667V160H320V224z" />
+    <glyph glyph-name="quicktime"
+      unicode="&#xF436;"
+      horiz-adv-x="512" d=" M256 384C362.0266666666667 384 448 298.0266666666667 448 192C448 154.4533333333334 437.3333333333333 119.4666666666667 418.56 89.8133333333334L448 60.3733333333333V21.3333333333334C448 9.6 438.4 0 426.6666666666667 0H387.84L358.1866666666666 29.44C328.7466666666667 10.6666666666667 293.5466666666666 0 256 0C149.9733333333333 0 64 85.9733333333334 64 192S149.9733333333333 384 256 384M256 298.6666666666667C197.12 298.6666666666667 149.3333333333333 250.88 149.3333333333333 192S197.12 85.3333333333334 256 85.3333333333334C269.8666666666667 85.3333333333334 282.88 87.8933333333334 295.04 92.8000000000001L233.6 154.24C216.96 170.6666666666667 216.96 197.9733333333334 233.6 214.6133333333334C250.24 231.2533333333334 277.3333333333333 231.2533333333334 293.9733333333333 214.6133333333334L355.4133333333333 153.1733333333334C360.1066666666667 165.12 362.6666666666667 178.3466666666667 362.6666666666667 192C362.6666666666667 250.88 314.88 298.6666666666667 256 298.6666666666667z" />
+    <glyph glyph-name="rabbit"
+      unicode="&#xF906;"
+      horiz-adv-x="512" d=" M385.0666666666667 0L326.8266666666667 101.1200000000001C326.8266666666667 138.0266666666668 304 161.7066666666667 276.2666666666667 161.7066666666667C257.0666666666666 161.7066666666667 240.4266666666667 151.0400000000001 231.8933333333333 135.2533333333334C238.9333333333333 139.3066666666667 247.2533333333334 141.4400000000001 256 141.4400000000001C283.7333333333334 141.4400000000001 306.3466666666667 118.8266666666667 306.3466666666667 91.0933333333334C306.3466666666667 63.1466666666667 283.9466666666666 40.3200000000001 256 40.3200000000001H326.4V0H144.8533333333333C139.7333333333333 0 134.4 1.92 130.56 5.9733333333334C122.6666666666667 13.8666666666667 122.6666666666667 26.6666666666667 130.56 34.5600000000001L141.2266666666667 45.2266666666667C133.9733333333333 48.4266666666667 128 53.3333333333334 122.0266666666667 58.4533333333334C117.3333333333333 47.7866666666668 106.6666666666667 40.3200000000001 94.2933333333333 40.3200000000001C77.6533333333333 40.3200000000001 64 53.9733333333334 64 70.8266666666667C64 87.4666666666667 77.6533333333333 101.1200000000001 94.2933333333333 101.1200000000001L104.32 99.4133333333334V141.4400000000001C104.32 197.3333333333334 149.3333333333333 242.5600000000001 205.44 242.5600000000001H205.8666666666666C251.0933333333333 242.3466666666668 286.2933333333333 224.6400000000001 286.2933333333333 252.5866666666668C286.2933333333333 272.4266666666668 290.56 280.3200000000001 297.8133333333333 291.4133333333335C282.2399999999999 298.6666666666668 264.5333333333333 303.1466666666668 245.9733333333333 303.1466666666668C234.6666666666667 303.1466666666668 225.7066666666666 312.1066666666668 225.7066666666666 323.4133333333335C225.7066666666666 332.5866666666668 231.68 340.2666666666668 240 342.8266666666668L225.7066666666666 343.6800000000001C214.6133333333333 343.6800000000001 205.44 352.6400000000001 205.44 363.7333333333335C205.44 375.0400000000002 214.6133333333333 384.0000000000001 225.7066666666666 384.0000000000001H245.9733333333333C290.7733333333333 384.0000000000001 330.0266666666666 359.4666666666668 351.1466666666666 323.2000000000002L357.12 323.4133333333335C372.2666666666667 323.4133333333335 386.3466666666667 318.5066666666668 397.8666666666666 310.4000000000001L407.4666666666666 302.2933333333335C453.7599999999999 260.6933333333335 447.9999999999999 232.5333333333335 447.9999999999999 232.3200000000002C447.9999999999999 205.0133333333335 425.3866666666666 182.6133333333335 397.8666666666666 182.6133333333335L387.4133333333333 183.6800000000002V181.9733333333335C387.4133333333333 158.2933333333335 377.1733333333333 137.1733333333335 361.1733333333333 122.2400000000002L431.7866666666667 0H385.0666666666666M387.4133333333333 282.88C376.1066666666666 282.88 367.1466666666666 273.92 367.1466666666666 262.8266666666667C367.1466666666666 251.5200000000001 376.1066666666667 242.5600000000001 387.4133333333333 242.5600000000001C398.5066666666666 242.5600000000001 407.6799999999999 251.5200000000001 407.6799999999999 262.8266666666667C407.6799999999999 273.92 398.5066666666666 282.88 387.4133333333333 282.88z" />
+    <glyph glyph-name="radar"
+      unicode="&#xF437;"
+      horiz-adv-x="512" d=" M406.8266666666667 342.8266666666667L376.7466666666667 312.7466666666667C407.4666666666667 281.8133333333334 426.6666666666667 239.1466666666667 426.6666666666667 192C426.6666666666667 97.7066666666667 350.2933333333334 21.3333333333334 256 21.3333333333334S85.3333333333333 97.7066666666667 85.3333333333333 192C85.3333333333333 279.04 150.4 350.7200000000001 234.6666666666667 361.1733333333334V318.0800000000001C174.08 307.8400000000001 128 255.36 128 192C128 121.3866666666667 185.3866666666667 64 256 64S384 121.3866666666667 384 192C384 227.4133333333334 369.7066666666666 259.4133333333334 346.4533333333333 282.4533333333334L316.3733333333333 252.3733333333334C331.7333333333334 236.8 341.3333333333333 215.4666666666667 341.3333333333333 192C341.3333333333333 144.8533333333334 303.1466666666667 106.6666666666667 256 106.6666666666667S170.6666666666667 144.8533333333334 170.6666666666667 192C170.6666666666667 231.68 197.9733333333333 264.7466666666667 234.6666666666667 274.3466666666667V228.6933333333334C221.8666666666667 221.2266666666667 213.3333333333333 207.7866666666666 213.3333333333333 192C213.3333333333333 168.5333333333333 232.5333333333334 149.3333333333333 256 149.3333333333333S298.6666666666667 168.5333333333333 298.6666666666667 192C298.6666666666667 207.7866666666666 290.1333333333334 221.44 277.3333333333333 228.6933333333334V405.3333333333333H256C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192C469.3333333333333 250.88 445.44 304.2133333333334 406.8266666666667 342.8266666666667z" />
+    <glyph glyph-name="radiator"
+      unicode="&#xF438;"
+      horiz-adv-x="512" d=" M169.6 384L139.3066666666667 337.28L169.6 290.1333333333334H169.3866666666667L126.9333333333333 224L90.0266666666667 243.2L120.32 290.3466666666667L90.0266666666667 337.2800000000001L132.6933333333333 403.4133333333334L169.6 384M297.6 386.3466666666667L267.3066666666666 339.2000000000001L297.6 292.2666666666667L297.3866666666667 292.0533333333334L254.9333333333333 226.1333333333334L218.0266666666667 245.3333333333334L248.32 292.2666666666667L218.0266666666667 339.2000000000001L260.6933333333333 405.3333333333334L297.6 386.3466666666667M426.6666666666667 386.3466666666667L395.9466666666666 339.2000000000001L426.6666666666667 292.2666666666667V292.0533333333334L384 226.1333333333334L346.6666666666667 245.3333333333334L376.9600000000001 292.2666666666667L346.6666666666667 339.2000000000001L389.3333333333333 405.3333333333334L426.6666666666667 386.3466666666667M42.6666666666667 -21.3333333333333V149.3333333333334C42.6666666666667 172.8 61.8666666666667 192 85.3333333333333 192H426.6666666666667C450.1333333333334 192 469.3333333333333 172.8 469.3333333333333 149.3333333333334V-21.3333333333333H426.6666666666667V21.3333333333334H85.3333333333333V-21.3333333333333H42.6666666666667M128 149.3333333333334C116.2666666666667 149.3333333333334 106.6666666666667 139.7333333333334 106.6666666666667 128V85.3333333333334C106.6666666666667 73.6 116.2666666666667 64 128 64S149.3333333333333 73.6 149.3333333333333 85.3333333333334V128C149.3333333333333 139.7333333333334 139.7333333333333 149.3333333333334 128 149.3333333333334M213.3333333333333 149.3333333333334C201.6 149.3333333333334 192 139.7333333333334 192 128V85.3333333333334C192 73.6 201.6 64 213.3333333333333 64S234.6666666666667 73.6 234.6666666666667 85.3333333333334V128C234.6666666666667 139.7333333333334 225.0666666666667 149.3333333333334 213.3333333333333 149.3333333333334M298.6666666666667 149.3333333333334C286.9333333333333 149.3333333333334 277.3333333333333 139.7333333333334 277.3333333333333 128V85.3333333333334C277.3333333333333 73.6 286.9333333333333 64 298.6666666666667 64S320 73.6 320 85.3333333333334V128C320 139.7333333333334 310.4 149.3333333333334 298.6666666666667 149.3333333333334M384 149.3333333333334C372.2666666666667 149.3333333333334 362.6666666666667 139.7333333333334 362.6666666666667 128V85.3333333333334C362.6666666666667 73.6 372.2666666666667 64 384 64S405.3333333333333 73.6 405.3333333333333 85.3333333333334V128C405.3333333333333 139.7333333333334 395.7333333333334 149.3333333333334 384 149.3333333333334z" />
+    <glyph glyph-name="radiator-disabled"
+      unicode="&#xFAD6;"
+      horiz-adv-x="512" d=" M426.6666666666667 192H85.3333333333333C61.8666666666667 192 42.6666666666667 172.8 42.6666666666667 149.3333333333334V-21.3333333333333H85.3333333333333V21.3333333333334H426.6666666666667V-21.3333333333333H469.3333333333333V149.3333333333334C469.3333333333333 172.8 450.1333333333334 192 426.6666666666667 192M149.3333333333333 85.3333333333334C149.3333333333333 73.6 139.7333333333333 64 128 64S106.6666666666667 73.6 106.6666666666667 85.3333333333334V128C106.6666666666667 139.7333333333334 116.2666666666667 149.3333333333334 128 149.3333333333334S149.3333333333333 139.7333333333334 149.3333333333333 128V85.3333333333334M234.6666666666667 85.3333333333334C234.6666666666667 73.6 225.0666666666667 64 213.3333333333333 64S192 73.6 192 85.3333333333334V128C192 139.7333333333334 201.6 149.3333333333334 213.3333333333333 149.3333333333334S234.6666666666667 139.7333333333334 234.6666666666667 128V85.3333333333334M320 85.3333333333334C320 73.6 310.4 64 298.6666666666667 64S277.3333333333333 73.6 277.3333333333333 85.3333333333334V128C277.3333333333333 139.7333333333334 286.9333333333333 149.3333333333334 298.6666666666667 149.3333333333334S320 139.7333333333334 320 128V85.3333333333334M405.3333333333333 85.3333333333334C405.3333333333333 73.6 395.7333333333334 64 384 64S362.6666666666667 73.6 362.6666666666667 85.3333333333334V128C362.6666666666667 139.7333333333334 372.2666666666667 149.3333333333334 384 149.3333333333334S405.3333333333333 139.7333333333334 405.3333333333333 128V85.3333333333334z" />
+    <glyph glyph-name="radiator-off"
+      unicode="&#xFAD7;"
+      horiz-adv-x="512" d=" M69.9733333333333 405.3333333333333L42.6666666666667 378.24L101.76 319.1466666666667L120.32 290.3466666666667L90.0266666666667 243.2L126.9333333333333 224L154.24 266.6666666666667L228.9066666666667 192H85.3333333333333C61.8666666666667 192 42.6666666666667 172.8 42.6666666666667 149.3333333333334V-21.3333333333333H85.3333333333333V21.3333333333334H399.5733333333333L426.6666666666667 -5.76V-21.3333333333333H469.3333333333333V5.9733333333334L69.9733333333333 405.3333333333333M149.3333333333333 85.3333333333334C149.3333333333333 73.6 139.7333333333333 64 128 64S106.6666666666667 73.6 106.6666666666667 85.3333333333334V128C106.6666666666667 139.7333333333334 116.2666666666667 149.3333333333334 128 149.3333333333334S149.3333333333333 139.7333333333334 149.3333333333333 128V85.3333333333334M234.6666666666667 85.3333333333334C234.6666666666667 73.6 225.0666666666667 64 213.3333333333333 64S192 73.6 192 85.3333333333334V128C192 139.7333333333334 201.6 149.3333333333334 213.3333333333333 149.3333333333334S234.6666666666667 139.7333333333334 234.6666666666667 128V85.3333333333334M320 85.3333333333334C320 73.6 310.4 64 298.6666666666667 64S277.3333333333333 73.6 277.3333333333333 85.3333333333334V128C277.3333333333333 132.48 279.04 136.3200000000001 281.1733333333333 139.7333333333334L320 100.9066666666667V85.3333333333334M346.6666666666667 245.3333333333334L376.9600000000001 292.2666666666667L346.6666666666667 339.2000000000001L389.3333333333333 405.3333333333334L426.6666666666667 386.3466666666667L395.9466666666666 339.2000000000001L426.6666666666667 292.2666666666667V292.0533333333334L384 226.1333333333334L346.6666666666667 245.3333333333334M469.3333333333333 149.3333333333334V60.16L405.3333333333333 124.16V128C405.3333333333333 139.7333333333334 395.7333333333334 149.3333333333334 384 149.3333333333334C382.9333333333333 149.3333333333334 381.8666666666666 149.3333333333334 380.8 148.6933333333334L337.4933333333334 192H426.6666666666667C450.3466666666667 192 469.3333333333333 172.8 469.3333333333333 149.3333333333334M248.32 292.2666666666667L218.0266666666667 339.2000000000001L260.6933333333334 405.3333333333334L297.6 386.3466666666667L267.3066666666667 339.2000000000001L297.6 292.2666666666667L297.3866666666667 292.0533333333334L273.92 256L244.0533333333333 285.44L248.32 292.2666666666667M160 369.28L130.1333333333333 399.36L132.6933333333333 403.4133333333334L169.6 384L160 369.28z" />
+    <glyph glyph-name="radio"
+      unicode="&#xF439;"
+      horiz-adv-x="512" d=" M426.6666666666667 320C450.1333333333334 320 469.3333333333333 300.8 469.3333333333333 277.3333333333334V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V277.3333333333334C42.6666666666667 295.4666666666667 53.9733333333333 311.04 69.9733333333333 317.2266666666667L335.1466666666667 426.6666666666667L351.36 387.6266666666667L188.3733333333333 320H426.6666666666667M426.6666666666667 277.3333333333334H85.3333333333333V192H341.3333333333333V234.6666666666667H384V192H426.6666666666667V277.3333333333334M149.3333333333333 149.3333333333334C113.92 149.3333333333334 85.3333333333333 120.7466666666667 85.3333333333333 85.3333333333334S113.92 21.3333333333334 149.3333333333333 21.3333333333334S213.3333333333333 49.92 213.3333333333333 85.3333333333334S184.7466666666667 149.3333333333334 149.3333333333333 149.3333333333334z" />
+    <glyph glyph-name="radio-handheld"
+      unicode="&#xF43A;"
+      horiz-adv-x="512" d=" M192 405.3333333333333C180.2666666666667 405.3333333333333 170.6666666666667 395.7333333333334 170.6666666666667 384V21.3333333333334C170.6666666666667 -2.3466666666666 189.6533333333333 -21.3333333333333 213.3333333333333 -21.3333333333333H320C343.68 -21.3333333333333 362.6666666666667 -2.3466666666666 362.6666666666667 21.3333333333334V256C362.6666666666667 279.68 343.68 298.6666666666667 320 298.6666666666667H213.3333333333333V384C213.3333333333333 395.7333333333334 203.7333333333334 405.3333333333333 192 405.3333333333333M213.3333333333333 256H320V170.6666666666667H213.3333333333333V256z" />
+    <glyph glyph-name="radio-tower"
+      unicode="&#xF43B;"
+      horiz-adv-x="512" d=" M256 234.6666666666667C279.4666666666667 234.6666666666667 298.6666666666667 215.4666666666667 298.6666666666667 192C298.6666666666667 181.3333333333334 294.8266666666667 171.9466666666667 288.64 164.48L356.2666666666667 -21.3333333333333H310.8266666666667L256 129.4933333333334L201.1733333333333 -21.3333333333333H155.7333333333333L223.36 164.48C217.1733333333333 171.9466666666667 213.3333333333333 181.3333333333334 213.3333333333333 192C213.3333333333333 215.4666666666667 232.5333333333333 234.6666666666667 256 234.6666666666667M256 277.3333333333334C208.8533333333333 277.3333333333334 170.6666666666666 239.1466666666667 170.6666666666666 192C170.6666666666666 181.3333333333334 172.8 170.6666666666667 176.6399999999999 160.8533333333334L157.8666666666666 109.6533333333333C139.3066666666667 132.0533333333334 128 160.64 128 192C128 262.6133333333334 185.3866666666667 320 256 320S384 262.6133333333334 384 192C384 160.64 372.6933333333333 132.0533333333334 354.1333333333334 109.6533333333334L335.36 160.8533333333334C339.2 170.6666666666667 341.3333333333333 181.3333333333334 341.3333333333333 192C341.3333333333333 239.1466666666667 303.1466666666667 277.3333333333334 256 277.3333333333334M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192C85.3333333333333 141.6533333333334 106.6666666666667 96 141.6533333333333 65.28L126.2933333333334 22.6133333333333C75.52 61.6533333333334 42.6666666666667 123.0933333333334 42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192C469.3333333333333 123.0933333333334 436.48 61.6533333333334 385.7066666666666 22.6133333333333L370.3466666666667 65.28C405.3333333333333 96 426.6666666666667 141.6533333333334 426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="radioactive"
+      unicode="&#xF43C;"
+      horiz-adv-x="512" d=" M256 234.6666666666667C279.4666666666667 234.6666666666667 298.6666666666667 215.4666666666667 298.6666666666667 192S279.4666666666667 149.3333333333334 256 149.3333333333334S213.3333333333333 168.5333333333334 213.3333333333333 192S232.5333333333334 234.6666666666667 256 234.6666666666667M256 -21.3333333333333C214.4 -21.3333333333333 175.36 -9.3866666666667 142.72 11.3066666666667L213.3333333333333 117.9733333333334C226.1333333333334 110.72 240.64 106.6666666666667 256 106.6666666666667S285.8666666666667 110.72 298.6666666666667 117.9733333333334L369.28 11.3066666666667C336.64 -9.3866666666667 297.6 -21.3333333333333 256 -21.3333333333333M42.6666666666667 192C42.6666666666667 280.32 96 356.2666666666667 173.0133333333333 388.6933333333334L220.5866666666667 269.6533333333334C191.1466666666667 256 170.6666666666667 226.56 170.6666666666667 192H42.6666666666667M341.3333333333333 192C341.3333333333333 226.5600000000001 320.8533333333333 256 291.4133333333333 269.6533333333334L338.9866666666667 388.6933333333334C416 356.2666666666667 469.3333333333333 280.32 469.3333333333333 192H341.3333333333333z" />
+    <glyph glyph-name="radiobox-blank"
+      unicode="&#xF43D;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="radiobox-marked"
+      unicode="&#xF43E;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 298.6666666666667C197.12 298.6666666666667 149.3333333333333 250.88 149.3333333333333 192S197.12 85.3333333333334 256 85.3333333333334S362.6666666666667 133.12 362.6666666666667 192S314.88 298.6666666666667 256 298.6666666666667z" />
+    <glyph glyph-name="raspberrypi"
+      unicode="&#xF43F;"
+      horiz-adv-x="512" d=" M426.6666666666667 277.3333333333334H469.3333333333333V234.6666666666667H426.6666666666667V277.3333333333334M85.3333333333333 341.3333333333334H426.6666666666667C450.1333333333334 341.3333333333334 469.3333333333333 322.1333333333334 469.3333333333333 298.6666666666667H405.3333333333333V256H106.6666666666667V170.6666666666667H170.6666666666667V106.6666666666667H405.3333333333333V85.3333333333334H469.3333333333333C469.3333333333333 61.8666666666667 450.1333333333334 42.6666666666667 426.6666666666667 42.6666666666667H341.3333333333333V21.3333333333334H298.6666666666667V42.6666666666667H234.6666666666667V21.3333333333334H149.3333333333333V42.6666666666667H85.3333333333333C61.8666666666667 42.6666666666667 42.6666666666667 61.8666666666667 42.6666666666667 85.3333333333334V298.6666666666667C42.6666666666667 322.1333333333334 61.8666666666667 341.3333333333334 85.3333333333333 341.3333333333334M405.3333333333333 128H192V234.6666666666667H405.3333333333333V213.3333333333334H469.3333333333333V170.6666666666667H405.3333333333333V128M277.3333333333333 192V149.3333333333334H320V192H277.3333333333333M106.6666666666667 320V277.3333333333334H128V320H106.6666666666667M149.3333333333333 320V277.3333333333334H170.6666666666667V320H149.3333333333333M192 320V277.3333333333334H213.3333333333333V320H192M234.6666666666667 320V277.3333333333334H256V320H234.6666666666667M277.3333333333333 320V277.3333333333334H298.6666666666667V320H277.3333333333333M320 320V277.3333333333334H341.3333333333333V320H320M426.6666666666667 149.3333333333334H469.3333333333333V106.6666666666667H426.6666666666667V149.3333333333334z" />
+    <glyph glyph-name="ray-end"
+      unicode="&#xF440;"
+      horiz-adv-x="512" d=" M426.6666666666667 256C398.7200000000001 256 375.04 238.2933333333334 366.2933333333334 213.3333333333334H42.6666666666667V170.6666666666667H366.2933333333334C375.04 145.7066666666667 398.7200000000001 128 426.6666666666667 128C462.08 128 490.6666666666666 156.5866666666667 490.6666666666666 192S462.08 256 426.6666666666667 256z" />
+    <glyph glyph-name="ray-end-arrow"
+      unicode="&#xF441;"
+      horiz-adv-x="512" d=" M21.3333333333333 192L106.6666666666667 106.6666666666667V170.6666666666667H366.2933333333334C375.04 145.7066666666667 398.7200000000001 128 426.6666666666667 128C462.08 128 490.6666666666666 156.5866666666667 490.6666666666666 192S462.08 256 426.6666666666667 256C398.7200000000001 256 375.04 238.2933333333334 366.2933333333334 213.3333333333334H106.6666666666667V277.3333333333334L21.3333333333333 192z" />
+    <glyph glyph-name="ray-start"
+      unicode="&#xF442;"
+      horiz-adv-x="512" d=" M85.3333333333333 256C113.28 256 136.96 238.2933333333334 145.7066666666667 213.3333333333334H469.3333333333333V170.6666666666667H145.7066666666667C136.96 145.7066666666667 113.28 128 85.3333333333333 128C49.92 128 21.3333333333333 156.5866666666667 21.3333333333333 192S49.92 256 85.3333333333333 256z" />
+    <glyph glyph-name="ray-start-arrow"
+      unicode="&#xF443;"
+      horiz-adv-x="512" d=" M490.6666666666666 192L405.3333333333333 106.6666666666667V170.6666666666667H145.7066666666667C136.96 145.7066666666667 113.28 128 85.3333333333333 128C49.92 128 21.3333333333333 156.5866666666667 21.3333333333333 192S49.92 256 85.3333333333333 256C113.28 256 136.96 238.2933333333334 145.7066666666667 213.3333333333334H405.3333333333333V277.3333333333334L490.6666666666666 192z" />
+    <glyph glyph-name="ray-start-end"
+      unicode="&#xF444;"
+      horiz-adv-x="512" d=" M85.3333333333333 256C113.28 256 136.96 238.2933333333334 145.7066666666667 213.3333333333334H366.2933333333334C375.04 238.2933333333334 398.7200000000001 256 426.6666666666667 256C462.08 256 490.6666666666666 227.4133333333334 490.6666666666666 192S462.08 128 426.6666666666667 128C398.7200000000001 128 375.04 145.7066666666667 366.2933333333334 170.6666666666667H145.7066666666667C136.96 145.7066666666667 113.28 128 85.3333333333333 128C49.92 128 21.3333333333333 156.5866666666667 21.3333333333333 192S49.92 256 85.3333333333333 256z" />
+    <glyph glyph-name="ray-vertex"
+      unicode="&#xF445;"
+      horiz-adv-x="512" d=" M42.6666666666667 213.3333333333334H195.6266666666667C204.3733333333333 238.2933333333334 228.0533333333333 256 256 256S307.6266666666667 238.2933333333334 316.3733333333334 213.3333333333334H469.3333333333333V170.6666666666667H316.3733333333334C307.6266666666667 145.7066666666667 283.9466666666667 128 256 128S204.3733333333333 145.7066666666667 195.6266666666667 170.6666666666667H42.6666666666667V213.3333333333334z" />
+    <glyph glyph-name="react"
+      unicode="&#xF707;"
+      horiz-adv-x="512" d=" M256 232.32C277.9733333333333 232.32 295.8933333333333 214.4 295.8933333333333 192C295.8933333333333 170.6666666666667 277.9733333333334 152.5333333333334 256 152.5333333333334C234.0266666666667 152.5333333333334 216.1066666666666 170.6666666666667 216.1066666666666 192C216.1066666666666 214.4 234.0266666666667 232.32 256 232.32M157.2266666666667 21.3333333333334C170.6666666666667 13.2266666666667 200.1066666666666 25.6 234.0266666666667 57.6C222.9333333333333 70.1866666666667 212.0533333333334 83.84 201.8133333333333 98.1333333333333C184.32 99.8399999999999 167.04 102.4 150.6133333333334 105.8133333333333C139.7333333333334 60.16 143.7866666666667 28.8 157.2266666666667 21.3333333333333M172.3733333333333 143.7866666666666L166.1866666666667 154.6666666666666C163.84 148.48 161.4933333333334 142.2933333333333 160 136.3199999999999C165.76 135.04 172.16 133.9733333333333 178.7733333333334 132.9066666666667L172.3733333333333 143.7866666666666M311.8933333333333 160L329.1733333333334 192L311.8933333333333 224C305.4933333333334 235.3066666666666 298.6666666666667 245.3333333333333 292.48 255.36C280.96 256 268.8 256 256 256C243.2 256 231.04 256 219.52 255.36C213.3333333333333 245.3333333333334 206.5066666666667 235.3066666666667 200.1066666666666 224L182.8266666666667 192L200.1066666666667 160C206.5066666666667 148.6933333333334 213.3333333333333 138.6666666666667 219.52 128.64C231.04 128 243.2 128 256 128C268.8 128 280.96 128 292.48 128.64C298.6666666666667 138.6666666666667 305.4933333333334 148.6933333333333 311.8933333333333 160M256 303.36C251.9466666666667 298.6666666666667 247.68 293.76 243.4133333333334 288H268.5866666666667C264.32 293.76 260.0533333333333 298.6666666666667 256 303.36M256 80.64C260.0533333333333 85.3333333333334 264.32 90.24 268.5866666666667 96H243.4133333333334C247.68 90.24 251.9466666666667 85.3333333333334 256 80.64M354.56 362.6666666666667C341.3333333333333 370.7733333333333 311.8933333333333 358.4 277.9733333333334 326.4C289.0666666666667 313.8133333333334 299.9466666666667 300.1600000000001 310.1866666666667 285.8666666666667C327.68 284.1600000000001 344.9600000000001 281.6 361.3866666666667 278.1866666666667C372.2666666666667 323.8400000000001 368.2133333333334 355.2000000000001 354.56 362.6666666666667M339.6266666666667 240.2133333333334L345.8133333333334 229.3333333333334C348.16 235.52 350.5066666666667 241.7066666666667 352 247.68C346.24 248.96 339.84 250.0266666666667 333.2266666666667 251.0933333333334L339.6266666666667 240.2133333333334M370.56 390.6133333333334C401.92 372.6933333333334 405.3333333333333 325.5466666666667 392.1066666666667 270.5066666666667C446.2933333333334 254.5066666666667 485.3333333333334 228.0533333333334 485.3333333333334 192C485.3333333333334 155.9466666666667 446.2933333333334 129.4933333333334 392.1066666666667 113.4933333333334C405.3333333333334 58.4533333333334 401.9200000000001 11.3066666666667 370.56 -6.6133333333333C339.4133333333333 -24.5333333333333 296.9600000000001 -4.0533333333333 256 34.9866666666667C215.04 -4.0533333333333 172.5866666666667 -24.5333333333333 141.2266666666667 -6.6133333333333C110.08 11.3066666666667 106.6666666666667 58.4533333333334 119.8933333333333 113.4933333333334C65.7066666666667 129.4933333333334 26.6666666666667 155.9466666666667 26.6666666666667 192C26.6666666666667 228.0533333333334 65.7066666666667 254.5066666666667 119.8933333333333 270.5066666666667C106.6666666666667 325.5466666666667 110.08 372.6933333333334 141.2266666666667 390.6133333333334C172.5866666666667 408.5333333333333 215.04 388.0533333333334 256 349.0133333333333C296.96 388.0533333333334 339.4133333333333 408.5333333333333 370.56 390.6133333333334M364.3733333333333 192C371.6266666666666 176 378.0266666666667 160 383.36 143.7866666666667C428.16 157.2266666666667 453.3333333333333 176.4266666666667 453.3333333333333 192C453.3333333333333 207.5733333333334 428.16 226.7733333333333 383.36 240.2133333333334C378.0266666666667 224 371.6266666666666 208 364.3733333333333 192M147.6266666666667 192C140.3733333333333 208 133.9733333333333 224 128.64 240.2133333333334C83.84 226.7733333333333 58.6666666666667 207.5733333333334 58.6666666666667 192C58.6666666666667 176.4266666666667 83.84 157.2266666666667 128.64 143.7866666666667C133.9733333333333 160 140.3733333333333 176 147.6266666666667 192M339.6266666666667 143.7866666666667L333.2266666666667 132.9066666666667C339.84 133.9733333333334 346.24 135.04 352 136.3200000000001C350.5066666666667 142.2933333333334 348.16 148.48 345.8133333333334 154.6666666666667L339.6266666666667 143.7866666666667M277.9733333333334 57.6C311.8933333333333 25.6 341.3333333333333 13.2266666666666 354.56 21.3333333333334C368.2133333333334 28.8000000000001 372.2666666666667 60.16 361.3866666666667 105.8133333333334C344.9600000000001 102.4 327.68 99.84 310.1866666666667 98.1333333333334C299.9466666666667 83.84 289.0666666666667 70.1866666666667 277.9733333333334 57.6000000000001M172.3733333333333 240.2133333333334L178.7733333333334 251.0933333333334C172.16 250.0266666666667 165.76 248.96 160 247.68C161.4933333333334 241.7066666666667 163.84 235.52 166.1866666666667 229.3333333333334L172.3733333333333 240.2133333333334M234.0266666666667 326.4C200.1066666666667 358.4 170.6666666666667 370.7733333333333 157.2266666666667 362.6666666666667C143.7866666666667 355.2000000000001 139.7333333333333 323.8400000000001 150.6133333333334 278.1866666666667C167.04 281.6 184.32 284.1600000000001 201.8133333333333 285.8666666666667C212.0533333333334 300.1600000000001 222.9333333333333 313.8133333333334 234.0266666666667 326.4000000000001z" />
+    <glyph glyph-name="read"
+      unicode="&#xF447;"
+      horiz-adv-x="512" d=" M460.5866666666666 200.7466666666667L490.6666666666666 170.6666666666667L288 -32L179.6266666666667 76.5866666666667L209.7066666666667 106.6666666666667L288 28.16L460.5866666666666 200.7466666666667M85.3333333333333 106.6666666666667V384H192C239.1466666666667 384 277.3333333333333 345.8133333333334 277.3333333333333 298.6666666666667C277.3333333333333 265.8133333333334 258.7733333333333 237.2266666666667 231.4666666666667 222.9333333333333L298.6666666666667 106.6666666666667H256L194.3466666666666 213.3333333333334H128V106.6666666666667H85.3333333333333M128 256H192C215.4666666666667 256 234.6666666666667 275.2000000000001 234.6666666666667 298.6666666666667S215.4666666666667 341.3333333333334 192 341.3333333333334H128V256z" />
+    <glyph glyph-name="receipt"
+      unicode="&#xF449;"
+      horiz-adv-x="512" d=" M64 -21.3333333333333L96 10.6666666666667L128 -21.3333333333333L160 10.6666666666667L192 -21.3333333333333L224 10.6666666666667L256 -21.3333333333333L288 10.6666666666667L320 -21.3333333333333L352 10.6666666666667L384 -21.3333333333333L416 10.6666666666667L448 -21.3333333333333V405.3333333333333L416 373.3333333333334L384 405.3333333333333L352 373.3333333333334L320 405.3333333333333L288 373.3333333333334L256 405.3333333333333L224 373.3333333333334L192 405.3333333333333L160 373.3333333333334L128 405.3333333333333L96 373.3333333333334L64 405.3333333333333M384 256H128V298.6666666666667H384M384 170.6666666666667H128V213.3333333333334H384M384 85.3333333333334H128V128H384V85.3333333333334z" />
+    <glyph glyph-name="record"
+      unicode="&#xF44A;"
+      horiz-adv-x="512" d=" M405.3333333333333 192C405.3333333333333 109.6533333333334 338.3466666666667 42.6666666666667 256 42.6666666666667S106.6666666666667 109.6533333333334 106.6666666666667 192S173.6533333333333 341.3333333333334 256 341.3333333333334S405.3333333333333 274.3466666666667 405.3333333333333 192z" />
+    <glyph glyph-name="record-player"
+      unicode="&#xF999;"
+      horiz-adv-x="512" d=" M106.6666666666667 74.6666666666667C106.6666666666667 68.6933333333333 101.9733333333333 64 96 64H74.6666666666667C68.6933333333333 64 64 68.6933333333333 64 74.6666666666667V85.3333333333334H42.6666666666667C30.9333333333333 85.3333333333334 21.3333333333333 94.9333333333333 21.3333333333333 106.6666666666667V170.6666666666667C21.3333333333333 182.4 30.9333333333333 192 42.6666666666667 192H405.3333333333333V234.6666666666667H149.3333333333333L128 213.3333333333334V256C128 267.7333333333334 137.6 277.3333333333334 149.3333333333333 277.3333333333334H405.3333333333333V298.6666666666667H448V277.3333333333334C459.7333333333333 277.3333333333334 469.3333333333333 267.7333333333334 469.3333333333333 256V234.6666666666667H448V192H469.3333333333333C481.0666666666667 192 490.6666666666666 182.4 490.6666666666666 170.6666666666667V106.6666666666667C490.6666666666666 94.9333333333333 481.0666666666667 85.3333333333334 469.3333333333333 85.3333333333334H448V74.6666666666667C448 68.6933333333333 443.3066666666667 64 437.3333333333333 64H416C410.0266666666667 64 405.3333333333333 68.6933333333333 405.3333333333333 74.6666666666667V85.3333333333334H106.6666666666667V74.6666666666667M64 149.3333333333334V128H106.6666666666667V149.3333333333334H64M128 149.3333333333334V128H170.6666666666667V149.3333333333334H128M437.3333333333333 160C425.6 160 416 150.4 416 138.6666666666667S425.6 117.3333333333334 437.3333333333333 117.3333333333334S458.6666666666666 126.9333333333333 458.6666666666666 138.6666666666667S449.0666666666667 160 437.3333333333333 160z" />
+    <glyph glyph-name="record-rec"
+      unicode="&#xF44B;"
+      horiz-adv-x="512" d=" M266.6666666666667 341.3333333333334C178.3466666666666 341.3333333333334 106.6666666666667 269.6533333333334 106.6666666666667 181.3333333333334C106.6666666666667 93.0133333333333 178.3466666666666 21.3333333333334 266.6666666666667 21.3333333333334C354.9866666666667 21.3333333333334 426.6666666666667 93.0133333333333 426.6666666666667 181.3333333333334C426.6666666666667 269.6533333333334 354.9866666666667 341.3333333333334 266.6666666666667 341.3333333333334M149.3333333333333 234.6666666666667H192C203.7333333333334 234.6666666666667 213.3333333333333 225.0666666666667 213.3333333333333 213.3333333333334V192C213.3333333333333 181.3333333333334 205.2266666666666 172.8 194.9866666666667 171.3066666666667L219.9466666666667 128H195.2L170.6666666666667 170.6666666666667V128H149.3333333333333M256 234.6666666666667H298.6666666666667V213.3333333333334H256V192H298.6666666666667V170.6666666666667H256V149.3333333333334H298.6666666666667V128H256C244.2666666666667 128 234.6666666666667 137.6 234.6666666666667 149.3333333333334V213.3333333333334C234.6666666666667 225.0666666666667 244.2666666666667 234.6666666666667 256 234.6666666666667M341.3333333333333 234.6666666666667H384V213.3333333333334H341.3333333333333V149.3333333333334H384V128H341.3333333333333C329.6 128 320 137.6 320 149.3333333333334V213.3333333333334C320 225.0666666666667 329.6 234.6666666666667 341.3333333333333 234.6666666666667M170.6666666666667 213.3333333333334V192H192V213.3333333333334" />
+    <glyph glyph-name="recycle"
+      unicode="&#xF44C;"
+      horiz-adv-x="512" d=" M465.4933333333333 119.04L412.16 26.6666666666667C401.7066666666667 8.3200000000001 382.2933333333334 -1.28 362.6666666666667 0H320V-42.6666666666666L266.6666666666667 53.3333333333334L320 149.3333333333334V106.6666666666667H380.16L332.8 188.8L425.1733333333333 242.1333333333334L463.5733333333333 175.5733333333334C474.6666666666666 159.1466666666667 476.16 137.1733333333334 465.4933333333333 119.04M196.48 382.7200000000001H303.1466666666667C324.0533333333334 382.7200000000001 342.1866666666666 370.56 350.9333333333334 353.0666666666667L372.2666666666667 315.9466666666667L409.1733333333334 337.28L352.8533333333334 243.2L242.9866666666667 241.28L279.8933333333334 262.6133333333334L249.8133333333334 314.88L202.6666666666668 232.7466666666667L110.0800000000001 286.08L148.4800000000001 352.64C157.2266666666668 370.3466666666667 175.3600000000001 382.72 196.4800000000001 382.72M107.7333333333334 26.4533333333333L54.4000000000001 118.8266666666667C43.9466666666668 136.96 45.4400000000001 158.72 56.3200000000001 175.1466666666667L77.6533333333334 212.0533333333334L40.7466666666668 233.3866666666667L150.4000000000001 231.68L206.9333333333334 137.3866666666667L170.0266666666668 158.72L139.9466666666667 106.6666666666667H234.6666666666667V0H157.8666666666667C138.0266666666667 -1.4933333333333 118.4 8.3200000000001 107.7333333333334 26.4533333333333z" />
+    <glyph glyph-name="reddit"
+      unicode="&#xF44D;"
+      horiz-adv-x="512" d=" M469.3333333333333 202.6666666666667C469.3333333333333 232.5333333333334 445.8666666666666 256 416 256C403.2 256 390.4 251.7333333333334 381.8666666666666 243.2C349.8666666666666 262.4000000000001 311.4666666666666 275.2000000000001 266.6666666666667 277.3333333333334L290.1333333333333 362.6666666666667L362.6666666666667 341.3333333333334C362.6666666666667 317.8666666666667 381.8666666666666 298.6666666666667 405.3333333333333 298.6666666666667S448 317.8666666666667 448 341.3333333333334S428.8 384 405.3333333333333 384C390.4 384 375.4666666666667 375.4666666666667 369.0666666666667 362.6666666666667L283.7333333333334 384C277.3333333333333 386.1333333333334 273.0666666666667 381.8666666666667 270.9333333333334 375.4666666666667L245.3333333333333 277.3333333333334C202.6666666666667 275.2000000000001 162.1333333333333 262.4000000000001 130.1333333333333 243.2C121.6 251.7333333333334 108.8 256 96 256C66.1333333333333 256 42.6666666666667 232.5333333333334 42.6666666666667 202.6666666666667C42.6666666666667 183.4666666666667 51.2 168.5333333333334 66.1333333333333 157.8666666666667L64 138.6666666666667C64 61.8666666666667 149.3333333333333 0 256 0S448 61.8666666666667 448 138.6666666666667L445.8666666666666 157.8666666666667C460.8 168.5333333333334 469.3333333333333 183.4666666666667 469.3333333333333 202.6666666666667M192 196.2666666666667C206.9333333333333 196.2666666666667 217.6 183.4666666666667 217.6 170.6666666666667S206.9333333333333 145.0666666666667 192 145.0666666666667S166.4 155.7333333333334 166.4 170.6666666666667S177.0666666666667 196.2666666666667 192 196.2666666666667M337.0666666666667 81.0666666666666C298.6666666666667 57.5999999999999 213.3333333333333 57.5999999999999 174.9333333333333 81.0666666666666C170.6666666666667 85.3333333333333 168.5333333333334 91.7333333333333 172.8 95.9999999999999C177.0666666666667 100.2666666666666 183.4666666666667 102.4 187.7333333333334 98.1333333333333C213.3333333333333 78.9333333333333 298.6666666666667 78.9333333333333 324.2666666666667 98.1333333333333C328.5333333333333 102.4 334.9333333333334 100.2666666666667 339.2 95.9999999999999C343.4666666666667 91.7333333333333 341.3333333333333 85.3333333333333 337.0666666666667 81.0666666666666M320 145.0666666666666C305.0666666666667 145.0666666666666 294.4 157.8666666666666 294.4 170.6666666666666C294.4 185.5999999999999 307.2 196.2666666666666 320 196.2666666666666C334.9333333333333 196.2666666666666 345.6 183.4666666666666 345.6 170.6666666666666C345.6 155.7333333333333 334.9333333333333 145.0666666666666 320 145.0666666666666z" />
+    <glyph glyph-name="redo"
+      unicode="&#xF44E;"
+      horiz-adv-x="512" d=" M392.5333333333333 221.8666666666667C353.0666666666667 256 301.8666666666667 277.3333333333334 245.3333333333333 277.3333333333334C146.1333333333333 277.3333333333334 62.2933333333333 212.6933333333334 32.8533333333333 123.3066666666667L83.2 106.6666666666667C105.6 174.72 169.6 224 245.3333333333333 224C286.9333333333333 224 324.9066666666667 208.64 354.56 183.8933333333334L277.3333333333333 106.6666666666667H469.3333333333333V298.6666666666667L392.5333333333333 221.8666666666667z" />
+    <glyph glyph-name="redo-variant"
+      unicode="&#xF44F;"
+      horiz-adv-x="512" d=" M224 298.6666666666667C147.4133333333333 298.6666666666667 85.3333333333333 236.5866666666667 85.3333333333333 160S147.4133333333333 21.3333333333334 224 21.3333333333334H298.6666666666667V64H224C170.6666666666667 64 128 106.6666666666667 128 160S170.6666666666667 256 224 256H344.9600000000001L279.2533333333334 190.0800000000001L309.3333333333334 160L426.6666666666667 277.3333333333334L309.3333333333333 394.6666666666667L279.04 364.5866666666667L344.9600000000001 298.6666666666667H224M384 64H341.3333333333333V21.3333333333334H384V64z" />
+    <glyph glyph-name="reflect-horizontal"
+      unicode="&#xFA0D;"
+      horiz-adv-x="512" d=" M469.3333333333333 21.3333333333334H298.6666666666667C286.9333333333333 21.3333333333334 277.3333333333333 30.9333333333333 277.3333333333333 42.6666666666667V341.9733333333334C277.3333333333333 352 283.9466666666667 360.1066666666667 293.12 362.6666666666667C302.72 365.2266666666667 312.5333333333333 360.9600000000001 317.2266666666667 352.64L488.32 53.3333333333334C492.16 46.72 492.16 38.6133333333333 488.32 32C484.48 25.3866666666667 477.4399999999999 21.3333333333334 469.3333333333333 21.3333333333334M42.6666666666667 21.3333333333334C34.56 21.3333333333334 27.52 25.3866666666667 23.68 32C19.84 38.6133333333333 19.84 46.72 23.68 53.3333333333334L194.7733333333334 352.64C199.4666666666667 360.9600000000001 209.28 365.2266666666667 218.88 362.6666666666667C228.0533333333334 360.1066666666667 234.6666666666667 352 234.6666666666667 341.9733333333334V42.6666666666667C234.6666666666667 30.9333333333333 225.0666666666667 21.3333333333334 213.3333333333334 21.3333333333334H42.6666666666667M192 64V261.5466666666667L79.1466666666667 64H192z" />
+    <glyph glyph-name="reflect-vertical"
+      unicode="&#xFA0E;"
+      horiz-adv-x="512" d=" M384 -42.6666666666666H128C119.68 -42.6666666666666 112.2133333333333 -38.1866666666666 108.5866666666667 -30.9333333333333C104.96 -23.6799999999999 105.8133333333333 -14.9333333333333 110.72 -8.5333333333333L238.9333333333333 162.5600000000001C247.04 173.4400000000001 264.96 173.4400000000001 273.0666666666666 162.5600000000001L401.28 -8.5333333333333C406.1866666666666 -14.9333333333333 407.04 -23.6799999999999 403.4133333333333 -30.9333333333333C399.7866666666667 -38.1866666666666 392.32 -42.6666666666666 384 -42.6666666666666M384 426.6666666666667C392.32 426.6666666666667 399.7866666666667 422.1866666666667 403.4133333333333 414.9333333333334C407.04 407.68 406.1866666666666 398.9333333333334 401.28 392.5333333333333L273.0666666666666 221.44C264.9599999999999 210.56 247.04 210.56 238.9333333333333 221.44L110.72 392.5333333333333C105.8133333333333 398.9333333333334 104.96 407.68 108.5866666666667 414.9333333333334C112.2133333333333 422.1866666666667 119.68 426.6666666666667 128 426.6666666666667H384M170.6666666666667 384L256 269.8666666666667L341.3333333333333 384H170.6666666666667z" />
+    <glyph glyph-name="refresh"
+      unicode="&#xF450;"
+      horiz-adv-x="512" d=" M376.5333333333333 312.5333333333334C345.6 343.4666666666667 303.1466666666667 362.6666666666667 256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334C335.5733333333333 21.3333333333334 401.92 75.7333333333334 420.9066666666667 149.3333333333334H376.5333333333333C359.04 99.6266666666667 311.68 64 256 64C185.3866666666666 64 128 121.3866666666667 128 192S185.3866666666666 320 256 320C291.4133333333333 320 322.9866666666666 305.2800000000001 346.0266666666667 282.0266666666667L277.3333333333333 213.3333333333334H426.6666666666667V362.6666666666667L376.5333333333333 312.5333333333334z" />
+    <glyph glyph-name="regex"
+      unicode="&#xF451;"
+      horiz-adv-x="512" d=" M341.3333333333333 87.04C334.2933333333333 85.9733333333333 327.2533333333334 85.3333333333334 320 85.3333333333334C312.7466666666667 85.3333333333334 305.7066666666667 85.9733333333334 298.6666666666667 87.04V161.92L245.3333333333333 109.0133333333333C234.6666666666667 117.3333333333333 224 128 215.68 138.6666666666666L268.5866666666667 192H193.7066666666667C192.64 199.04 192 206.08 192 213.3333333333333C192 220.5866666666667 192.64 227.6266666666667 193.7066666666667 234.6666666666667H268.5866666666667L215.68 288C219.7333333333333 293.3333333333333 224 298.6666666666667 229.5466666666667 303.7866666666667C234.6666666666667 309.3333333333333 240 313.6 245.3333333333333 317.6533333333333L298.6666666666667 264.7466666666667V339.6266666666667C305.7066666666667 340.6933333333334 312.7466666666667 341.3333333333334 320 341.3333333333334C327.2533333333334 341.3333333333334 334.2933333333333 340.6933333333334 341.3333333333333 339.6266666666667V264.7466666666667L394.6666666666667 317.6533333333334C405.3333333333333 309.3333333333334 416 298.6666666666667 424.32 288L371.4133333333333 234.6666666666667H446.2933333333334C447.36 227.6266666666667 448 220.5866666666667 448 213.3333333333334C448 206.08 447.36 199.04 446.2933333333334 192H371.4133333333334L424.3200000000001 138.6666666666667C420.2666666666667 133.3333333333334 416.0000000000001 128 410.4533333333335 122.88C405.3333333333335 117.3333333333334 400.0000000000001 113.0666666666667 394.6666666666668 109.0133333333333L341.3333333333333 161.92V87.04M106.6666666666667 42.6666666666667C106.6666666666667 66.1333333333334 125.8666666666667 85.3333333333334 149.3333333333333 85.3333333333334S192 66.1333333333334 192 42.6666666666667S172.8 0 149.3333333333333 0S106.6666666666667 19.2 106.6666666666667 42.6666666666667z" />
+    <glyph glyph-name="registered-trademark"
+      unicode="&#xFA66;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 21.3333333333334C161.92 21.3333333333334 85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667S426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334M261.3333333333333 164.9066666666667H230.6133333333334V96H192V283.52H261.5466666666666C283.52 283.52 300.5866666666667 278.6133333333334 312.7466666666667 268.8C324.6933333333334 258.7733333333333 330.6666666666667 245.3333333333334 330.6666666666667 226.9866666666667C330.6666666666667 214.1866666666667 327.8933333333333 203.5200000000001 322.3466666666667 194.9866666666667C316.8 186.4533333333334 308.48 179.6266666666667 297.1733333333333 174.72L337.7066666666667 98.1333333333334V96H296.32L261.3333333333333 164.9066666666667M230.6133333333334 196.0533333333334H261.76C271.36 196.0533333333334 278.8266666666667 198.6133333333334 284.16 203.5200000000001C289.4933333333334 208.4266666666667 292.0533333333333 215.2533333333334 292.0533333333333 224C292.0533333333333 232.7466666666667 289.7066666666667 239.5733333333334 284.5866666666667 244.6933333333334C279.68 249.8133333333334 272 252.1600000000001 261.5466666666666 252.1600000000001H230.6133333333334V196.0533333333334z" />
+    <glyph glyph-name="relative-scale"
+      unicode="&#xF452;"
+      horiz-adv-x="512" d=" M426.6666666666667 64H85.3333333333333V320H426.6666666666667M426.6666666666667 362.6666666666667H85.3333333333333C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667M256 234.6666666666667H213.3333333333333V192H256M170.6666666666667 234.6666666666667H128V192H170.6666666666667M341.3333333333333 149.3333333333334H298.6666666666667V106.6666666666667H341.3333333333333M341.3333333333333 234.6666666666667H298.6666666666667V192H341.3333333333333V234.6666666666667z" />
+    <glyph glyph-name="reload"
+      unicode="&#xF453;"
+      horiz-adv-x="512" d=" M405.3333333333333 192H476.16L370.56 86.4L264.96 192H362.0266666666667C362.6666666666667 224.8533333333333 350.2933333333333 257.4933333333334 325.12 282.6666666666667C275.2 332.5866666666667 194.1333333333333 332.5866666666667 144.2133333333333 282.6666666666667C94.2933333333333 232.7466666666667 94.2933333333333 151.4666666666667 144.2133333333333 101.5466666666666C183.4666666666666 62.2933333333333 242.3466666666666 53.9733333333333 289.7066666666666 76.5866666666666L321.0666666666666 45.2266666666666C256 6.6133333333333 170.6666666666667 15.1466666666667 113.92 71.4666666666667C47.36 138.0266666666668 47.5733333333333 245.9733333333334 114.1333333333333 312.5333333333334C181.3333333333333 379.3066666666668 288.64 379.5200000000001 355.4133333333333 312.7466666666668C388.6933333333333 279.4666666666667 405.3333333333333 235.7333333333334 405.3333333333333 192z" />
+    <glyph glyph-name="reminder"
+      unicode="&#xF88B;"
+      horiz-adv-x="512" d=" M154.6666666666667 384C168.5333333333333 384 181.3333333333333 379.52 192 372.0533333333334V384C192 407.4666666666667 211.2 426.6666666666667 234.6666666666667 426.6666666666667S277.3333333333333 407.4666666666667 277.3333333333333 384V371.8400000000001C288 379.3066666666667 300.8 384 314.6666666666667 384C350.08 384 378.6666666666667 355.4133333333334 378.6666666666667 320C378.6666666666667 286.2933333333334 352.8533333333333 258.7733333333333 320 256H277.3333333333333V234.6666666666667H303.7866666666667L314.0266666666667 231.8933333333333L411.9466666666667 183.04C429.4400000000001 176.4266666666666 437.9733333333334 163.4133333333333 437.9733333333334 144L437.3333333333333 141.0133333333333V138.0266666666667L416 -5.9733333333334C414.7200000000001 -16 410.0266666666667 -24.7466666666667 401.92 -32C394.0266666666667 -39.2533333333333 385.0666666666667 -42.6666666666666 375.04 -42.6666666666666H213.3333333333333C201.6 -42.6666666666666 192 -38.6133333333333 183.04 -30.08L42.6666666666667 110.08L65.0666666666667 132.9066666666667C71.04 138.6666666666667 78.72 142.0800000000001 88.1066666666667 142.0800000000001H94.9333333333333L192 120.96V256H149.3333333333333C116.48 258.9866666666667 90.6666666666667 286.5066666666667 90.6666666666667 320C90.6666666666667 355.4133333333334 119.2533333333333 384 154.6666666666667 384M192 320C192 340.6933333333334 175.36 357.3333333333334 154.6666666666667 357.3333333333334S117.3333333333333 340.6933333333334 117.3333333333333 320C117.3333333333333 301.2266666666667 131.2 285.6533333333333 149.3333333333333 283.0933333333334V282.6666666666667H192V320M320 282.6666666666667V282.88C338.1333333333334 285.44 352 301.0133333333333 352 320C352 340.48 335.36 357.12 314.6666666666667 357.12S277.3333333333333 340.48 277.3333333333333 320V282.6666666666667H320z" />
+    <glyph glyph-name="remote"
+      unicode="&#xF454;"
+      horiz-adv-x="512" d=" M256 448C191.1466666666667 448 132.48 421.76 90.0266666666667 379.3066666666667L120.1066666666667 349.2266666666667C154.88 384 202.6666666666667 405.3333333333333 256 405.3333333333333S357.12 384 391.68 349.0133333333333L421.76 379.0933333333334C379.52 421.76 320.8533333333333 448 256 448M150.4 318.9333333333334L180.48 288.8533333333334C199.8933333333333 308.0533333333334 226.56 320 256 320S312.1066666666667 308.0533333333334 331.52 288.8533333333334L361.6 318.9333333333334C334.5066666666667 346.0266666666667 297.1733333333333 362.6666666666667 256 362.6666666666667C214.8266666666667 362.6666666666667 177.4933333333334 346.0266666666667 150.4 318.9333333333334M256 128C232.5333333333334 128 213.3333333333333 147.2000000000001 213.3333333333333 170.6666666666667S232.5333333333334 213.3333333333334 256 213.3333333333334S298.6666666666667 194.1333333333333 298.6666666666667 170.6666666666667S279.4666666666667 128 256 128M320 256H192C180.2666666666667 256 170.6666666666667 246.4000000000001 170.6666666666667 234.6666666666667V-21.3333333333333C170.6666666666667 -33.0666666666667 180.2666666666667 -42.6666666666666 192 -42.6666666666666H320C331.7333333333334 -42.6666666666666 341.3333333333333 -33.0666666666667 341.3333333333333 -21.3333333333333V234.6666666666667C341.3333333333333 246.4000000000001 331.7333333333334 256 320 256z" />
+    <glyph glyph-name="remote-desktop"
+      unicode="&#xF8B8;"
+      horiz-adv-x="512" d=" M64 405.3333333333333C40.5333333333333 405.3333333333333 21.3333333333333 386.1333333333334 21.3333333333333 362.6666666666667V106.6666666666667C21.3333333333333 82.9866666666667 40.5333333333333 64 64 64H213.3333333333333V21.3333333333334H170.6666666666667V-21.3333333333333H341.3333333333333V21.3333333333334H298.6666666666667V64H448C471.4666666666667 64 490.6666666666666 83.2 490.6666666666666 106.6666666666667V362.6666666666667C490.6666666666666 386.1333333333334 471.4666666666667 405.3333333333333 448 405.3333333333333M64 362.6666666666667H448V106.6666666666667H64M320 341.3333333333334L245.3333333333333 266.6666666666667L320 192L349.8666666666666 221.8666666666667L305.0666666666666 266.6666666666667L349.8666666666666 311.4666666666667M192 277.3333333333334L162.1333333333333 247.4666666666667L206.9333333333333 202.6666666666667L162.1333333333333 157.8666666666667L192 128L266.6666666666667 202.6666666666667" />
+    <glyph glyph-name="rename-box"
+      unicode="&#xF455;"
+      horiz-adv-x="512" d=" M384 85.3333333333334H224L266.6666666666667 128H384M128 85.3333333333334V138.6666666666667L296.1066666666667 306.1333333333334C300.16 310.4 306.9866666666666 310.4 311.2533333333334 306.1333333333334L348.8 268.5866666666667C353.0666666666667 264.3200000000001 353.0666666666667 257.7066666666667 348.8 253.44L180.6933333333333 85.3333333333334M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="reorder-horizontal"
+      unicode="&#xF687;"
+      horiz-adv-x="512" d=" M64 128H448V170.6666666666667H64V128M64 42.6666666666667H448V85.3333333333334H64V42.6666666666667M64 213.3333333333334H448V256H64V213.3333333333334M64 341.3333333333334V298.6666666666667H448V341.3333333333334H64z" />
+    <glyph glyph-name="reorder-vertical"
+      unicode="&#xF688;"
+      horiz-adv-x="512" d=" M192 384V0H234.6666666666667V384H192M106.6666666666667 384V0H149.3333333333333V384H106.6666666666667M277.3333333333333 384V0H320V384H277.3333333333333M405.3333333333333 384H362.6666666666667V0H405.3333333333333V384z" />
+    <glyph glyph-name="repeat"
+      unicode="&#xF456;"
+      horiz-adv-x="512" d=" M362.6666666666667 85.3333333333334H149.3333333333333V149.3333333333334L64 64L149.3333333333333 -21.3333333333333V42.6666666666667H405.3333333333333V170.6666666666667H362.6666666666667M149.3333333333333 298.6666666666667H362.6666666666667V234.6666666666667L448 320L362.6666666666667 405.3333333333333V341.3333333333334H106.6666666666667V213.3333333333334H149.3333333333333V298.6666666666667z" />
+    <glyph glyph-name="repeat-off"
+      unicode="&#xF457;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L335.5733333333333 42.6666666666667H149.3333333333333V-21.3333333333333L64 64L149.3333333333333 149.3333333333334V85.3333333333334H292.9066666666667L149.3333333333333 228.9066666666667V213.3333333333334H106.6666666666667V271.5733333333334L42.6666666666667 335.5733333333334M362.6666666666667 170.6666666666667H405.3333333333333V81.4933333333333L362.6666666666667 124.16V170.6666666666667M362.6666666666667 341.3333333333334V405.3333333333333L448 320L362.6666666666667 234.6666666666667V298.6666666666667H188.16L145.4933333333334 341.3333333333334H362.6666666666667z" />
+    <glyph glyph-name="repeat-once"
+      unicode="&#xF458;"
+      horiz-adv-x="512" d=" M277.3333333333333 128V256H256L213.3333333333333 234.6666666666667V213.3333333333334H245.3333333333333V128M362.6666666666667 85.3333333333334H149.3333333333333V149.3333333333334L64 64L149.3333333333333 -21.3333333333333V42.6666666666667H405.3333333333333V170.6666666666667H362.6666666666667M149.3333333333333 298.6666666666667H362.6666666666667V234.6666666666667L448 320L362.6666666666667 405.3333333333333V341.3333333333334H106.6666666666667V213.3333333333334H149.3333333333333V298.6666666666667z" />
+    <glyph glyph-name="replay"
+      unicode="&#xF459;"
+      horiz-adv-x="512" d=" M256 341.3333333333334V426.6666666666667L149.3333333333333 320L256 213.3333333333334V298.6666666666667C326.6133333333334 298.6666666666667 384 241.2800000000001 384 170.6666666666667S326.6133333333334 42.6666666666667 256 42.6666666666667S128 100.0533333333334 128 170.6666666666667H85.3333333333333C85.3333333333333 76.3733333333333 161.7066666666667 0 256 0S426.6666666666667 76.3733333333333 426.6666666666667 170.6666666666667S350.2933333333334 341.3333333333334 256 341.3333333333334z" />
+    <glyph glyph-name="reply"
+      unicode="&#xF45A;"
+      horiz-adv-x="512" d=" M213.3333333333333 256V341.3333333333334L64 192L213.3333333333333 42.6666666666667V130.1333333333333C320 130.1333333333333 394.6666666666667 96 448 21.3333333333334C426.6666666666667 128 362.6666666666667 234.6666666666667 213.3333333333333 256z" />
+    <glyph glyph-name="reply-all"
+      unicode="&#xF45B;"
+      horiz-adv-x="512" d=" M277.3333333333333 256V341.3333333333334L128 192L277.3333333333333 42.6666666666667V130.1333333333333C384 130.1333333333333 458.6666666666666 96 512 21.3333333333334C490.6666666666666 128 426.6666666666667 234.6666666666667 277.3333333333333 256M149.3333333333333 277.3333333333334V341.3333333333334L0 192L149.3333333333333 42.6666666666667V106.6666666666667L64 192L149.3333333333333 277.3333333333334z" />
+    <glyph glyph-name="reproduction"
+      unicode="&#xF45C;"
+      horiz-adv-x="512" d=" M271.36 167.4666666666667L290.56 186.4533333333334C290.1333333333334 213.3333333333334 305.28 246.6133333333334 333.2266666666667 274.3466666666667C374.8266666666667 316.16 429.0133333333333 329.6 453.9733333333334 304.64S465.4933333333333 225.4933333333334 423.68 183.8933333333333C395.9466666666666 155.9466666666667 362.6666666666667 140.8 335.7866666666667 141.2266666666667L316.8 122.0266666666667C309.3333333333333 114.9866666666667 298.6666666666667 113.92 290.1333333333333 119.2533333333333C272.2133333333333 112.8533333333333 256 104.96 246.6133333333333 89.6C235.3066666666667 70.8266666666667 235.3066666666667 40.5333333333333 223.36 22.4C211.4133333333333 4.0533333333334 187.52 -2.1333333333333 162.3466666666666 -2.1333333333333S106.6666666666667 0 84.2666666666667 32L137.1733333333333 23.04C149.3333333333333 21.3333333333334 181.3333333333333 34.3466666666667 193.0666666666667 52.48C205.0133333333334 70.8266666666666 205.0133333333334 100.9066666666666 216.32 119.8933333333333C226.3466666666667 136.5333333333333 245.3333333333333 144.4266666666666 265.1733333333333 151.2533333333333C264.96 157.0133333333333 266.6666666666667 162.9866666666667 271.36 167.4666666666667M149.3333333333333 405.3333333333333C208.2133333333333 405.3333333333333 256 357.5466666666667 256 298.6666666666667S208.2133333333333 192 149.3333333333333 192S42.6666666666667 239.7866666666667 42.6666666666667 298.6666666666667S90.4533333333333 405.3333333333333 149.3333333333333 405.3333333333333M149.3333333333333 362.6666666666667C113.92 362.6666666666667 85.3333333333333 334.0800000000001 85.3333333333333 298.6666666666667S113.92 234.6666666666667 149.3333333333333 234.6666666666667S213.3333333333333 263.2533333333334 213.3333333333333 298.6666666666667S184.7466666666667 362.6666666666667 149.3333333333333 362.6666666666667z" />
+    <glyph glyph-name="resistor"
+      unicode="&#xFB1F;"
+      horiz-adv-x="512" d=" M42.6666666666667 213.3333333333334H149.3333333333333L214.8266666666667 120.5333333333334L279.68 362.6666666666667L384 213.3333333333334H469.3333333333333V170.6666666666667H362.6666666666667L297.1733333333333 263.4666666666667L232.32 21.3333333333334L128 170.6666666666667H42.6666666666667V213.3333333333334z" />
+    <glyph glyph-name="resistor-nodes"
+      unicode="&#xFB20;"
+      horiz-adv-x="512" d=" M42.6666666666667 213.3333333333334H78.2933333333333C87.04 238.2933333333334 110.72 256 138.6666666666667 256C174.08 256 202.6666666666667 227.4133333333334 202.6666666666667 192C202.6666666666667 178.1333333333333 198.1866666666667 165.3333333333334 190.72 154.88L214.8266666666667 120.5333333333334L279.68 362.6666666666667L311.68 317.2266666666667L356.2666666666667 253.6533333333334L373.3333333333333 256C401.28 256 424.9600000000001 238.2933333333334 433.7066666666666 213.3333333333334H469.3333333333333V170.6666666666667H433.7066666666666C424.9599999999999 145.7066666666667 401.28 128 373.3333333333333 128C337.92 128 309.3333333333333 156.5866666666667 309.3333333333333 192C309.3333333333333 205.8666666666667 313.8133333333334 218.6666666666667 321.28 229.12L297.1733333333333 263.4666666666667L232.32 21.3333333333334L155.7333333333333 130.3466666666667C150.4 128.8533333333334 144.64 128 138.6666666666667 128C110.72 128 87.04 145.7066666666667 78.2933333333333 170.6666666666667H42.6666666666667V213.3333333333334M373.3333333333333 224C355.6266666666667 224 341.3333333333333 209.7066666666667 341.3333333333333 192S355.6266666666667 160 373.3333333333333 160S405.3333333333333 174.2933333333334 405.3333333333333 192S391.04 224 373.3333333333333 224M138.6666666666667 224C120.96 224 106.6666666666667 209.7066666666667 106.6666666666667 192S120.96 160 138.6666666666667 160S170.6666666666667 174.2933333333334 170.6666666666667 192S156.3733333333333 224 138.6666666666667 224z" />
+    <glyph glyph-name="resize"
+      unicode="&#xFA67;"
+      horiz-adv-x="512" d=" M225.92 192L311.2533333333334 277.3333333333334H234.6666666666667V320H384V170.6666666666667H341.3333333333333V247.2533333333334L256 161.92V106.6666666666667H426.6666666666667V362.6666666666667H170.6666666666667V192H225.92M469.3333333333333 405.3333333333333V64H256V-21.3333333333333H42.6666666666667V192H128V405.3333333333333H469.3333333333333M213.3333333333333 149.3333333333334H85.3333333333333V21.3333333333334H213.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="resize-bottom-right"
+      unicode="&#xF45D;"
+      horiz-adv-x="512" d=" M469.3333333333333 -21.3333333333333H426.6666666666667V21.3333333333334H469.3333333333333V-21.3333333333333M469.3333333333333 64H426.6666666666667V106.6666666666667H469.3333333333333V64M384 -21.3333333333333H341.3333333333333V21.3333333333334H384V-21.3333333333333M384 64H341.3333333333333V106.6666666666667H384V64M298.6666666666667 -21.3333333333333H256V21.3333333333334H298.6666666666667V-21.3333333333333M469.3333333333333 149.3333333333334H426.6666666666667V192H469.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="responsive"
+      unicode="&#xF45E;"
+      horiz-adv-x="512" d=" M85.3333333333333 320V106.6666666666667H192V192C192 215.4666666666667 211.2 234.6666666666667 234.6666666666667 234.6666666666667H341.3333333333333C364.8 234.6666666666667 384 215.4666666666667 384 192V106.6666666666667H426.6666666666667V320H85.3333333333333M0 21.3333333333334V64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H512V21.3333333333334H384C384 -2.3466666666666 364.8 -21.3333333333333 341.3333333333333 -21.3333333333333H234.6666666666667C211.2 -21.3333333333333 192 -2.1333333333333 192 21.3333333333334H0M245.3333333333333 21.3333333333334C239.36 21.3333333333334 234.6666666666667 16.64 234.6666666666667 10.6666666666667S239.36 0 245.3333333333333 0S256 4.6933333333333 256 10.6666666666667S251.3066666666667 21.3333333333334 245.3333333333333 21.3333333333334M330.6666666666667 21.3333333333334C324.6933333333334 21.3333333333334 320 16.64 320 10.6666666666667S324.6933333333334 0 330.6666666666667 0S341.3333333333333 4.6933333333333 341.3333333333333 10.6666666666667S336.64 21.3333333333334 330.6666666666667 21.3333333333334M277.3333333333333 21.3333333333334V0H298.6666666666667V21.3333333333334H277.3333333333333M234.6666666666667 192V42.6666666666667H341.3333333333333V192H234.6666666666667z" />
+    <glyph glyph-name="restart"
+      unicode="&#xF708;"
+      horiz-adv-x="512" d=" M234.6666666666667 362.6666666666667C278.4 362.6666666666667 321.92 346.24 355.2 312.9600000000001C421.9733333333333 246.1866666666667 421.76 138.6666666666667 354.9866666666666 71.68C315.9466666666666 32 262.3999999999999 16.2133333333333 211.4133333333333 23.04L222.7199999999999 64.8533333333334C259.1999999999999 61.44 297.1733333333333 73.8133333333334 325.1199999999999 101.76C375.0399999999999 151.68 375.0399999999999 232.7466666666667 325.1199999999999 282.6666666666667C299.9466666666667 307.8400000000001 267.3066666666666 320 234.6666666666667 320V222.2933333333334L128.8533333333333 327.8933333333333L234.6666666666667 433.4933333333334V362.6666666666667M113.92 71.4666666666667C57.6 128 49.0666666666667 213.3333333333334 87.68 278.6133333333334L119.2533333333333 247.2533333333334C96 199.68 104.7466666666667 141.0133333333333 144 101.76C155.0933333333333 90.6666666666667 167.8933333333333 81.92 181.3333333333333 75.7333333333334L170.6666666666667 34.1333333333334C149.3333333333333 42.6666666666667 130.56 54.8266666666667 113.92 71.4666666666667z" />
+    <glyph glyph-name="restore"
+      unicode="&#xF99A;"
+      horiz-adv-x="512" d=" M277.3333333333333 384C171.3066666666667 384 85.3333333333333 298.0266666666667 85.3333333333333 192H21.3333333333333L104.32 109.0133333333333L105.8133333333334 106.0266666666666L192 192H128C128 274.5600000000001 194.7733333333333 341.3333333333334 277.3333333333333 341.3333333333334S426.6666666666667 274.5600000000001 426.6666666666667 192S359.8933333333333 42.6666666666667 277.3333333333333 42.6666666666667C236.16 42.6666666666667 198.8266666666667 59.52 171.9466666666666 86.6133333333334L141.6533333333333 56.3200000000001C176.4266666666667 21.3333333333334 224 0 277.3333333333333 0C383.36 0 469.3333333333333 85.9733333333334 469.3333333333333 192S383.36 384 277.3333333333333 384z" />
+    <glyph glyph-name="restore-clock"
+      unicode="&#xF6A7;"
+      horiz-adv-x="512" d=" M277.3333333333333 384C171.3066666666667 384 85.3333333333333 298.0266666666667 85.3333333333333 192H21.3333333333333L104.32 109.0133333333333L105.8133333333334 106.0266666666666L192 192H128C128 274.5600000000001 194.7733333333333 341.3333333333334 277.3333333333333 341.3333333333334S426.6666666666667 274.5600000000001 426.6666666666667 192S359.8933333333333 42.6666666666667 277.3333333333333 42.6666666666667C236.16 42.6666666666667 198.8266666666667 59.52 171.9466666666666 86.6133333333334L141.6533333333333 56.3200000000001C176.4266666666667 21.3333333333334 224 0 277.3333333333333 0C383.36 0 469.3333333333333 85.9733333333334 469.3333333333333 192S383.36 384 277.3333333333333 384M256 277.3333333333334V170.6666666666667L347.3066666666667 116.48L362.6666666666667 142.2933333333334L288 186.6666666666668V277.3333333333334H256z" />
+    <glyph glyph-name="rewind"
+      unicode="&#xF45F;"
+      horiz-adv-x="512" d=" M245.3333333333333 192L426.6666666666667 64V320M234.6666666666667 64V320L53.3333333333333 192L234.6666666666667 64z" />
+    <glyph glyph-name="rewind-outline"
+      unicode="&#xF709;"
+      horiz-adv-x="512" d=" M213.3333333333333 236.8L149.3333333333333 192L213.3333333333333 147.2000000000001V236.8M405.3333333333333 236.8L341.3333333333333 192L405.3333333333333 147.2000000000001V236.8M256 320V64L74.6666666666667 192L256 320M448 320V64L266.6666666666667 192L448 320z" />
+    <glyph glyph-name="rhombus"
+      unicode="&#xF70A;"
+      horiz-adv-x="512" d=" M458.6666666666666 217.6L281.6 394.6666666666667C266.6666666666667 409.6 245.3333333333333 409.6 230.4 394.6666666666667L53.3333333333333 217.6C38.4 202.6666666666667 38.4 181.3333333333334 53.3333333333333 166.4L230.4 -10.6666666666666C245.3333333333333 -25.6 266.6666666666667 -25.6 281.6 -10.6666666666666L458.6666666666666 166.4C471.4666666666667 181.3333333333334 471.4666666666667 202.6666666666667 458.6666666666666 217.6z" />
+    <glyph glyph-name="rhombus-medium"
+      unicode="&#xFA0F;"
+      horiz-adv-x="512" d=" M367.5733333333333 206.08L270.5066666666667 303.1466666666667C262.4 311.4666666666667 250.6666666666667 311.4666666666667 242.3466666666667 303.1466666666667L145.28 206.08C136.96 197.76 136.96 186.0266666666667 145.28 177.92L242.3466666666667 80.8533333333334C250.6666666666667 72.5333333333333 262.4 72.5333333333333 270.5066666666667 80.8533333333334L367.5733333333333 177.92C374.6133333333333 186.24 374.6133333333333 197.76 367.5733333333333 206.08z" />
+    <glyph glyph-name="rhombus-outline"
+      unicode="&#xF70B;"
+      horiz-adv-x="512" d=" M458.6666666666666 217.6L281.6 394.6666666666667C266.6666666666667 409.6 245.3333333333333 409.6 230.4 394.6666666666667L53.3333333333333 217.6C38.4 202.6666666666667 38.4 181.3333333333334 53.3333333333333 166.4L230.4 -10.6666666666666C245.3333333333333 -25.6 266.6666666666667 -25.6 281.6 -10.6666666666666L458.6666666666666 166.4C471.4666666666667 181.3333333333334 471.4666666666667 202.6666666666667 458.6666666666666 217.6M433.0666666666667 192L256 14.9333333333333L78.9333333333333 192L256 369.0666666666667L433.0666666666667 192z" />
+    <glyph glyph-name="rhombus-split"
+      unicode="&#xFA10;"
+      horiz-adv-x="512" d=" M157.0133333333333 321.28L230.4 394.6666666666667C245.3333333333333 409.6 266.6666666666667 409.6 281.6 394.6666666666667L354.9866666666667 321.2800000000001L256 222.08L157.0133333333333 321.28M385.28 290.9866666666667L286.08 192L385.2800000000001 93.0133333333333L458.6666666666667 166.4C471.4666666666668 181.3333333333333 471.4666666666668 202.6666666666666 458.6666666666667 217.6L385.2800000000001 290.9866666666667M126.72 93.0133333333333L225.92 192L126.72 290.9866666666667L53.3333333333333 217.6C38.4 202.6666666666667 38.4 181.3333333333334 53.3333333333333 166.4L126.72 93.0133333333333M256 161.92L157.0133333333333 62.72L230.4 -10.6666666666667C245.3333333333333 -25.6 266.6666666666667 -25.6 281.6 -10.6666666666667L354.9866666666667 62.72L256 161.92z" />
+    <glyph glyph-name="ribbon"
+      unicode="&#xF460;"
+      horiz-adv-x="512" d=" M286.08 36.0533333333334L353.92 -32L384 -1.4933333333333L316.3733333333334 66.1333333333334M331.52 202.0266666666667H331.3066666666666L256 126.5066666666667L180.6933333333333 202.0266666666667H180.48C161.28 221.2266666666667 149.3333333333333 247.8933333333333 149.3333333333333 277.3333333333334C149.3333333333333 336.2133333333334 197.12 384 256 384S362.6666666666667 336.2133333333334 362.6666666666667 277.3333333333334C362.6666666666667 247.8933333333334 350.7200000000001 221.2266666666667 331.52 202.0266666666667M360.5333333333333 170.6666666666667C388.2666666666667 197.76 405.3333333333333 235.52 405.3333333333333 277.3333333333334C405.3333333333333 359.8933333333333 338.56 426.6666666666667 256 426.6666666666667S106.6666666666667 359.8933333333333 106.6666666666667 277.3333333333334C106.6666666666667 235.52 123.9466666666667 197.76 151.4666666666667 170.6666666666667L225.92 96L128 -1.4933333333333L158.08 -32L360.5333333333333 170.6666666666667z" />
+    <glyph glyph-name="rice"
+      unicode="&#xF7E9;"
+      horiz-adv-x="512" d=" M469.3333333333333 213.3333333333334H420.2666666666667C413.8666666666666 236.8 403.2 260.2666666666667 388.2666666666667 277.3333333333334L460.8 392.5333333333334L424.5333333333333 416L356.2666666666667 307.2000000000001C347.7333333333334 313.6 341.3333333333333 317.8666666666667 330.6666666666667 322.1333333333334L349.8666666666666 398.9333333333334L309.3333333333333 409.6L292.2666666666666 337.0666666666667C279.4666666666666 339.2000000000001 268.8 341.3333333333334 256 341.3333333333334C177.0666666666666 341.3333333333334 110.9333333333333 285.8666666666667 91.7333333333333 213.3333333333334H42.6666666666667C42.6666666666667 125.8666666666667 96 51.2 170.6666666666667 17.0666666666667V-21.3333333333333H341.3333333333333V17.0666666666667C416 51.2 469.3333333333333 125.8666666666667 469.3333333333333 213.3333333333334M256 298.6666666666667C311.4666666666667 298.6666666666667 358.4 262.4000000000001 375.4666666666667 213.3333333333334H136.5333333333333C153.6 262.4000000000001 200.5333333333333 298.6666666666667 256 298.6666666666667z" />
+    <glyph glyph-name="ring"
+      unicode="&#xF7EA;"
+      horiz-adv-x="512" d=" M256 234.6666666666667L170.6666666666667 354.1333333333334L204.8 405.3333333333333H307.2L341.3333333333333 354.1333333333334L256 234.6666666666667M330.6666666666667 302.9333333333334L305.0666666666667 266.6666666666667C352 247.4666666666667 384 202.6666666666667 384 149.3333333333334C384 78.72 326.6133333333334 21.3333333333334 256 21.3333333333334S128 78.72 128 149.3333333333334C128 202.6666666666667 160 247.4666666666667 206.9333333333333 266.6666666666667L181.3333333333333 302.9333333333334C123.7333333333333 275.2000000000001 85.3333333333333 217.6 85.3333333333333 149.3333333333334C85.3333333333333 55.04 161.7066666666667 -21.3333333333333 256 -21.3333333333333S426.6666666666667 55.04 426.6666666666667 149.3333333333334C426.6666666666667 217.6 388.2666666666667 275.2000000000001 330.6666666666667 302.9333333333334z" />
+    <glyph glyph-name="road"
+      unicode="&#xF461;"
+      horiz-adv-x="512" d=" M234.6666666666667 106.6666666666667H277.3333333333333V21.3333333333334H234.6666666666667M234.6666666666667 234.6666666666667H277.3333333333333V149.3333333333334H234.6666666666667M234.6666666666667 362.6666666666667H277.3333333333333V277.3333333333334H234.6666666666667M85.3333333333333 -21.3333333333333H426.6666666666667V405.3333333333333H85.3333333333333V-21.3333333333333z" />
+    <glyph glyph-name="road-variant"
+      unicode="&#xF462;"
+      horiz-adv-x="512" d=" M386.1333333333334 345.6C384 356.2666666666667 375.4666666666667 362.6666666666667 364.8 362.6666666666667H277.3333333333333L281.6 298.6666666666667H230.4L234.6666666666667 362.6666666666667H145.0666666666667C134.4 362.6666666666667 125.8666666666667 354.1333333333334 123.7333333333333 345.6L66.1333333333333 46.9333333333333C64 34.1333333333333 74.6666666666667 21.3333333333334 87.4666666666667 21.3333333333334H213.3333333333333L219.7333333333334 128H292.2666666666667L298.6666666666667 21.3333333333334H422.4C435.2000000000001 21.3333333333334 445.8666666666667 34.1333333333334 443.7333333333334 46.9333333333333L386.1333333333334 345.6M221.8666666666667 170.6666666666667L226.1333333333334 256H281.6L285.8666666666666 170.6666666666667H221.8666666666666z" />
+    <glyph glyph-name="robot"
+      unicode="&#xF6A8;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C279.4666666666667 405.3333333333333 298.6666666666667 386.1333333333334 298.6666666666667 362.6666666666667C298.6666666666667 346.88 290.1333333333334 333.0133333333333 277.3333333333333 325.76V298.6666666666667H298.6666666666667C381.2266666666667 298.6666666666667 448 231.8933333333334 448 149.3333333333334H469.3333333333333C481.0666666666667 149.3333333333334 490.6666666666666 139.7333333333334 490.6666666666666 128V64C490.6666666666666 52.2666666666667 481.0666666666667 42.6666666666667 469.3333333333333 42.6666666666667H448V21.3333333333334C448 -2.1333333333333 428.8 -21.3333333333333 405.3333333333333 -21.3333333333333H106.6666666666667C83.2 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V42.6666666666667H42.6666666666667C30.9333333333333 42.6666666666667 21.3333333333333 52.2666666666667 21.3333333333333 64V128C21.3333333333333 139.7333333333334 30.9333333333333 149.3333333333334 42.6666666666667 149.3333333333334H64C64 231.8933333333334 130.7733333333333 298.6666666666667 213.3333333333333 298.6666666666667H234.6666666666667V325.76C221.8666666666667 333.0133333333333 213.3333333333333 346.88 213.3333333333333 362.6666666666667C213.3333333333333 386.1333333333334 232.5333333333334 405.3333333333333 256 405.3333333333333M160 170.6666666666667C130.56 170.6666666666667 106.6666666666667 146.7733333333334 106.6666666666667 117.3333333333334S130.56 64 160 64S213.3333333333333 87.8933333333334 213.3333333333333 117.3333333333334S189.44 170.6666666666667 160 170.6666666666667M352 170.6666666666667C322.56 170.6666666666667 298.6666666666667 146.7733333333333 298.6666666666667 117.3333333333334S322.56 64 352 64S405.3333333333333 87.8933333333334 405.3333333333333 117.3333333333334S381.44 170.6666666666667 352 170.6666666666667z" />
+    <glyph glyph-name="robot-industrial"
+      unicode="&#xFB21;"
+      horiz-adv-x="512" d=" M392.7466666666667 362.6666666666667L341.3333333333333 311.2533333333334V307.4133333333334L392.7466666666667 256H469.3333333333333V213.3333333333334H375.2533333333334L341.3333333333333 247.2533333333334V192H320C296.5333333333333 192 277.3333333333333 211.2 277.3333333333333 234.6666666666667V288H210.3466666666666C208.4266666666667 280.1066666666667 205.2266666666666 272.64 200.96 265.6L323.84 42.6666666666667H426.6666666666667C450.1333333333334 42.6666666666667 469.3333333333333 23.4666666666667 469.3333333333333 0V-21.3333333333333H42.6666666666667V0C42.6666666666667 23.4666666666667 61.8666666666667 42.6666666666667 85.3333333333333 42.6666666666667H226.3466666666667L126.2933333333333 224C87.8933333333333 224.64 54.6133333333333 250.88 45.0133333333333 288C33.28 333.6533333333334 60.8 380.1600000000001 106.6666666666666 391.8933333333333C152.1066666666666 403.6266666666667 198.6133333333333 376.32 210.3466666666666 330.6666666666667H277.3333333333333V384C277.3333333333333 407.4666666666667 296.5333333333333 426.6666666666667 320 426.6666666666667H341.3333333333333V371.4133333333334L375.2533333333334 405.3333333333333H469.3333333333333V362.6666666666667H392.7466666666667M128 352C104.5333333333333 352 85.3333333333333 332.8 85.3333333333333 309.3333333333334S104.5333333333333 266.6666666666667 128 266.6666666666667S170.6666666666667 285.8666666666667 170.6666666666667 309.3333333333334S151.4666666666667 352 128 352z" />
+    <glyph glyph-name="robot-vacuum"
+      unicode="&#xF70C;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C312.5333333333333 405.3333333333333 366.7200000000001 382.7200000000001 406.8266666666667 342.8266666666667L376.5333333333333 312.5333333333334C344.5333333333333 344.5333333333334 301.2266666666667 362.6666666666667 256 362.6666666666667C210.7733333333333 362.6666666666667 167.2533333333333 344.7466666666667 135.4666666666667 312.5333333333334L105.1733333333333 342.8266666666667C145.28 382.7200000000001 199.4666666666667 405.3333333333333 256 405.3333333333333M78.08 309.3333333333334L109.0133333333333 278.6133333333334C93.6533333333333 252.3733333333334 85.3333333333333 222.5066666666667 85.3333333333333 192C85.3333333333333 97.7066666666667 161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192C426.6666666666667 222.5066666666667 418.3466666666667 252.3733333333334 402.7733333333333 278.6133333333334L433.92 309.3333333333334C456.96 274.7733333333334 469.3333333333333 233.8133333333334 469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192C42.6666666666667 233.8133333333334 55.04 274.7733333333333 78.08 309.3333333333334M256 320C326.6133333333334 320 384 262.6133333333334 384 192C384 158.0800000000001 370.56 125.44 346.4533333333333 101.5466666666666L316.3733333333333 131.6266666666667C300.3733333333334 115.6266666666667 278.6133333333334 106.6666666666667 256 106.6666666666667S211.6266666666667 115.6266666666667 195.6266666666667 131.6266666666667L165.5466666666667 101.5466666666667C141.44 125.4400000000001 128 158.0800000000001 128 192C128 262.6133333333334 185.3866666666667 320 256 320M256 277.3333333333334C244.2666666666667 277.3333333333334 234.6666666666667 267.7333333333334 234.6666666666667 256S244.2666666666667 234.6666666666667 256 234.6666666666667S277.3333333333333 244.2666666666667 277.3333333333333 256S267.7333333333334 277.3333333333334 256 277.3333333333334z" />
+    <glyph glyph-name="robot-vacuum-variant"
+      unicode="&#xF907;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C83.2 384 64 364.8 64 341.3333333333334V298.6666666666667H106.6666666666667V341.3333333333334H405.3333333333333V298.6666666666667H448V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667M170.6666666666667 298.6666666666667V256H341.3333333333333V298.6666666666667H170.6666666666667M64 256V192C64 85.9733333333334 149.9733333333333 0 256 0S448 85.9733333333334 448 192V256H405.3333333333333V192C405.3333333333333 109.44 338.56 42.6666666666667 256 42.6666666666667S106.6666666666667 109.44 106.6666666666667 192V256H64M256 192C226.56 192 202.6666666666667 168.1066666666667 202.6666666666667 138.6666666666667S226.56 85.3333333333334 256 85.3333333333334S309.3333333333333 109.2266666666667 309.3333333333333 138.6666666666667S285.44 192 256 192z" />
+    <glyph glyph-name="rocket"
+      unicode="&#xF463;"
+      horiz-adv-x="512" d=" M59.9466666666667 146.7733333333334L120.32 207.1466666666667L174.2933333333333 217.8133333333334C242.9866666666667 311.2533333333334 374.4 357.9733333333334 421.9733333333334 357.9733333333334C421.9733333333334 310.4000000000001 375.2533333333334 178.9866666666667 281.8133333333334 110.2933333333334L271.1466666666667 56.3200000000001L210.7733333333334 -4.0533333333333L195.6266666666667 71.2533333333335C165.5466666666667 71.2533333333335 165.5466666666667 71.2533333333335 150.4 86.4000000000001C135.2533333333334 101.5466666666668 135.2533333333334 101.5466666666668 135.2533333333334 131.6266666666668L59.9466666666667 146.7733333333335M120.3200000000001 86.4000000000001L150.4 56.3200000000001L93.6533333333334 -0.6399999999999H63.36V29.6533333333335L120.32 86.4000000000002M90.0266666666667 116.4800000000002L116.48 112.8533333333335L64 60.5866666666667V90.88L90.0266666666667 116.48M176.8533333333333 52.48L180.48 26.0266666666666L154.88 0H124.5866666666667L176.8533333333333 52.48M277.3333333333333 245.3333333333334C259.6266666666667 245.3333333333334 245.3333333333333 231.04 245.3333333333333 213.3333333333334S259.6266666666667 181.3333333333334 277.3333333333333 181.3333333333334S309.3333333333333 195.6266666666667 309.3333333333333 213.3333333333334S295.04 245.3333333333334 277.3333333333333 245.3333333333334z" />
+    <glyph glyph-name="rollupjs"
+      unicode="&#xFB9C;"
+      horiz-adv-x="512" d=" M415.1466666666667 263.68C415.1466666666667 210.9866666666667 386.3466666666667 165.12 343.8933333333333 140.8C341.3333333333333 138.6666666666667 339.8400000000001 135.2533333333333 341.3333333333333 132.0533333333334L414.08 -11.7333333333333C416 -16.2133333333334 413.0133333333333 -21.3333333333333 408.1066666666667 -21.3333333333333H130.1333333333333L131.6266666666667 -20.48C142.08 -14.5066666666667 214.6133333333334 128.64 285.44 196.48C356.2666666666667 264.32 365.2266666666666 241.7066666666667 326.1866666666666 315.52C326.1866666666666 315.52 356.2666666666667 256.8533333333334 330.6666666666667 252.3733333333333C310.6133333333334 248.7466666666667 264.5333333333333 293.3333333333333 281.6 333.44C298.6666666666667 372.6933333333333 365.8666666666666 365.2266666666667 396.8 333.2266666666667C408.5333333333334 312.7466666666667 415.1466666666667 289.0666666666667 415.1466666666667 263.68M152.7466666666667 167.8933333333333C124.5866666666667 116.0533333333334 106.6666666666667 78.2933333333333 96.8533333333333 51.84V398.7200000000001C96.8533333333333 402.3466666666667 99.84 405.3333333333333 103.4666666666667 405.3333333333333H275.6266666666667C325.5466666666666 404.48 369.28 378.0266666666667 393.8133333333334 338.1333333333334C375.8933333333333 360.5333333333334 347.7333333333334 373.3333333333334 320 373.3333333333334C267.3066666666666 373.3333333333334 254.08 354.1333333333334 152.7466666666667 167.8933333333333z" />
+    <glyph glyph-name="room-service"
+      unicode="&#xF88C;"
+      horiz-adv-x="512" d=" M42.6666666666667 85.3333333333334H469.3333333333333V42.6666666666667H42.6666666666667V85.3333333333334M295.2533333333334 281.8133333333334C297.3866666666667 287.1466666666667 298.6666666666667 292.9066666666667 298.6666666666667 298.6666666666667C298.6666666666667 322.1333333333334 279.4666666666667 341.3333333333334 256 341.3333333333334S213.3333333333333 322.1333333333334 213.3333333333333 298.6666666666667C213.3333333333333 292.9066666666667 214.6133333333334 287.1466666666667 216.7466666666667 281.8133333333334C132.2666666666667 264.3200000000001 69.76 192.64 64 106.6666666666667H448C442.24 192.6400000000001 379.7333333333334 264.3200000000001 295.2533333333334 281.8133333333334z" />
+    <glyph glyph-name="rotate-3d"
+      unicode="&#xF464;"
+      horiz-adv-x="512" d=" M256 341.3333333333334C362.0266666666667 341.3333333333334 448 283.9466666666667 448 213.3333333333334C448 177.4933333333334 425.8133333333334 145.0666666666667 390.1866666666666 121.8133333333334C413.0133333333333 140.3733333333333 426.6666666666667 163.84 426.6666666666667 189.2266666666667C426.6666666666667 249.8133333333334 350.2933333333334 298.6666666666667 256 298.6666666666667V234.6666666666667L170.6666666666667 320L256 405.3333333333333V341.3333333333334M256 42.6666666666667C149.9733333333333 42.6666666666667 64 100.0533333333334 64 170.6666666666667C64 206.5066666666667 86.1866666666667 238.9333333333334 121.8133333333333 262.1866666666667C98.9866666666667 243.6266666666667 85.3333333333333 220.16 85.3333333333333 194.56C85.3333333333333 134.1866666666667 161.7066666666667 85.3333333333334 256 85.3333333333334V149.3333333333334L341.3333333333333 64L256 -21.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="rotate-left"
+      unicode="&#xF465;"
+      horiz-adv-x="512" d=" M277.3333333333333 361.1733333333334V426.6666666666667L180.2666666666667 329.6L277.3333333333333 234.6666666666667V318.0800000000001C337.92 307.8400000000001 384 255.36 384 192S337.92 76.16 277.3333333333333 65.92V22.8266666666667C361.6 33.28 426.6666666666667 104.96 426.6666666666667 192S361.6 350.7200000000001 277.3333333333333 361.1733333333334M151.4666666666667 57.1733333333334C176.2133333333333 37.9733333333334 205.0133333333333 26.4533333333333 234.6666666666667 22.8266666666667V66.1333333333334C216.1066666666667 69.3333333333334 198.1866666666667 76.5866666666667 182.1866666666667 88.1066666666667L151.4666666666667 57.1733333333334M129.92 170.6666666666667H86.8266666666667C90.4533333333333 141.0133333333333 102.1866666666667 112.4266666666667 121.3866666666667 87.68L151.4666666666667 117.9733333333334C140.3733333333333 133.9733333333334 132.9066666666667 151.8933333333333 129.92 170.6666666666667M151.68 266.0266666666667L121.6 296.32C102.4 271.5733333333334 90.4533333333333 242.9866666666667 86.8266666666667 213.3333333333334H129.92C132.9066666666667 231.8933333333333 140.3733333333333 250.0266666666667 151.68 266.0266666666667z" />
+    <glyph glyph-name="rotate-left-variant"
+      unicode="&#xF466;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H149.3333333333333C172.8 405.3333333333333 192 386.1333333333334 192 362.6666666666667V21.3333333333334C192 -2.1333333333333 172.8 -21.3333333333333 149.3333333333333 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M426.6666666666667 128C450.1333333333334 128 469.3333333333333 108.8 469.3333333333333 85.3333333333334V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H234.6666666666667V128H426.6666666666667M298.6666666666667 362.6666666666667C392.9600000000001 362.6666666666667 469.3333333333333 286.2933333333334 469.3333333333333 192L468.0533333333333 170.6666666666667H424.9600000000001L426.6666666666667 192C426.6666666666667 262.6133333333334 369.28 320 298.6666666666667 320V256L213.3333333333333 341.3333333333334L298.6666666666667 426.6666666666667V362.6666666666667z" />
+    <glyph glyph-name="rotate-right"
+      unicode="&#xF467;"
+      horiz-adv-x="512" d=" M360.32 117.3333333333334L390.6133333333334 87.68C409.8133333333334 112.4266666666667 421.5466666666667 141.0133333333333 425.1733333333334 170.6666666666667H382.0800000000001C379.0933333333334 152.1066666666667 371.8400000000001 133.9733333333334 360.3200000000001 117.3333333333334M277.3333333333333 66.1333333333334V23.0400000000001C306.9866666666667 26.6666666666667 335.7866666666667 38.1866666666667 360.5333333333333 57.3866666666667L329.8133333333333 88.1066666666667C313.8133333333333 76.5866666666668 295.8933333333333 69.1200000000001 277.3333333333333 66.1333333333334M425.1733333333333 213.3333333333334C421.5466666666666 242.9866666666668 409.8133333333334 271.5733333333334 390.6133333333333 296.3200000000001L360.32 266.0266666666668C371.84 250.0266666666668 379.0933333333333 231.8933333333334 382.08 213.3333333333334M331.7333333333334 329.6L234.6666666666667 426.6666666666667V361.1733333333334C150.6133333333333 350.7200000000001 85.3333333333333 279.04 85.3333333333333 192S150.4 33.28 234.6666666666667 22.8266666666667V65.92C174.08 76.16 128 128.64 128 192S174.08 307.8400000000001 234.6666666666667 318.0800000000001V234.6666666666667L331.7333333333334 329.6z" />
+    <glyph glyph-name="rotate-right-variant"
+      unicode="&#xF468;"
+      horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667V426.6666666666667L298.6666666666667 341.3333333333334L213.3333333333333 256V320C142.72 320 85.3333333333333 262.6133333333334 85.3333333333333 192L87.04 170.6666666666667H43.9466666666667L42.6666666666667 192C42.6666666666667 286.2933333333334 119.04 362.6666666666667 213.3333333333333 362.6666666666667M362.6666666666667 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H362.6666666666667C339.2 -21.3333333333333 320 -2.1333333333333 320 21.3333333333334V362.6666666666667C320 386.1333333333334 339.2 405.3333333333333 362.6666666666667 405.3333333333333M85.3333333333333 128H277.3333333333333V-21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V85.3333333333334C42.6666666666667 108.8 61.8666666666667 128 85.3333333333333 128z" />
+    <glyph glyph-name="rounded-corner"
+      unicode="&#xF607;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H448V0H405.3333333333333V42.6666666666667M405.3333333333333 85.3333333333334H448V128H405.3333333333333V85.3333333333334M64 170.6666666666667H106.6666666666667V213.3333333333334H64V170.6666666666667M64 85.3333333333334H106.6666666666667V128H64V85.3333333333334M64 256H106.6666666666667V298.6666666666667H64V256M64 341.3333333333334H106.6666666666667V384H64V341.3333333333334M149.3333333333333 341.3333333333334H192V384H149.3333333333333V341.3333333333334M320 0H362.6666666666667V42.6666666666667H320V0M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667V0M320 0H362.6666666666667V42.6666666666667H320V0M149.3333333333333 0H192V42.6666666666667H149.3333333333333V0M64 0H106.6666666666667V42.6666666666667H64V0M448 277.3333333333334C448 336.2133333333334 400.2133333333333 384 341.3333333333333 384H234.6666666666667V341.3333333333334H341.3333333333333C376.7466666666667 341.3333333333334 405.3333333333333 312.7466666666667 405.3333333333333 277.3333333333334V170.6666666666667H448V277.3333333333334z" />
+    <glyph glyph-name="router-wireless"
+      unicode="&#xF469;"
+      horiz-adv-x="512" d=" M430.9333333333333 322.1333333333334L448 339.2C418.1333333333334 369.0666666666667 379.7333333333334 384 341.3333333333333 384C302.9333333333333 384 264.5333333333333 369.0666666666667 234.6666666666667 339.2000000000001L251.7333333333334 322.1333333333334C277.3333333333333 345.6 309.3333333333333 358.4 341.3333333333333 358.4S405.3333333333333 345.6 430.9333333333333 322.1333333333334M411.7333333333334 305.0666666666667C392.5333333333334 324.2666666666667 366.9333333333333 334.9333333333334 341.3333333333333 334.9333333333334C315.7333333333334 334.9333333333334 290.1333333333334 324.2666666666667 270.9333333333333 305.0666666666667L288 288C302.9333333333333 302.9333333333334 322.1333333333334 309.3333333333333 341.3333333333333 309.3333333333333C360.5333333333333 309.3333333333333 379.7333333333334 302.9333333333334 394.6666666666667 288L411.7333333333334 305.0666666666667M405.3333333333333 170.6666666666667H362.6666666666667V256H320V170.6666666666667H106.6666666666667C83.2 170.6666666666667 64 151.4666666666667 64 128V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V128C448 151.4666666666667 428.8 170.6666666666667 405.3333333333333 170.6666666666667M170.6666666666667 64H128V106.6666666666667H170.6666666666667V64M245.3333333333333 64H202.6666666666667V106.6666666666667H245.3333333333333V64M320 64H277.3333333333333V106.6666666666667H320V64z" />
+    <glyph glyph-name="router-wireless-settings"
+      unicode="&#xFA68;"
+      horiz-adv-x="512" d=" M430.9333333333333 343.4666666666667C405.3333333333333 366.9333333333334 373.3333333333333 379.7333333333334 341.3333333333333 379.7333333333334S277.3333333333333 366.9333333333334 251.7333333333334 343.4666666666667L234.6666666666667 360.5333333333333C264.5333333333333 390.4 302.9333333333333 405.3333333333333 341.3333333333333 405.3333333333333C379.7333333333334 405.3333333333333 418.1333333333334 390.4 448 360.5333333333334L430.9333333333333 343.4666666666667M411.7333333333334 326.4000000000001L394.6666666666667 309.3333333333334C379.7333333333334 324.2666666666667 360.5333333333333 330.6666666666667 341.3333333333333 330.6666666666667C322.1333333333334 330.6666666666667 302.9333333333333 324.2666666666667 288 309.3333333333334L270.9333333333333 326.4000000000001C290.1333333333334 345.6 315.7333333333333 356.2666666666667 341.3333333333333 356.2666666666667C366.9333333333333 356.2666666666667 392.5333333333333 345.6 411.7333333333334 326.4000000000001M405.3333333333333 192C428.8 192 448 172.8 448 149.3333333333334V64C448 40.5333333333333 428.8 21.3333333333334 405.3333333333333 21.3333333333334H106.6666666666667C83.2 21.3333333333334 64 40.5333333333333 64 64V149.3333333333334C64 172.8 83.2 192 106.6666666666667 192H320V277.3333333333334H362.6666666666667V192H405.3333333333333M170.6666666666667 85.3333333333334V128H128V85.3333333333334H170.6666666666667M245.3333333333333 85.3333333333334V128H202.6666666666667V85.3333333333334H245.3333333333333M320 85.3333333333334V128H277.3333333333333V85.3333333333334H320M149.3333333333333 -21.3333333333333H192V-64H149.3333333333333V-21.3333333333333M234.6666666666667 -21.3333333333333H277.3333333333333V-64H234.6666666666667V-21.3333333333333M320 -21.3333333333333H362.6666666666667V-64H320V-21.3333333333333z" />
+    <glyph glyph-name="routes"
+      unicode="&#xF46A;"
+      horiz-adv-x="512" d=" M234.6666666666667 234.6666666666667H106.6666666666667L64 277.3333333333334L106.6666666666667 320H234.6666666666667V384L256 405.3333333333333L277.3333333333333 384V362.6666666666667H405.3333333333333L448 320L405.3333333333333 277.3333333333334H277.3333333333333V234.6666666666667H405.3333333333333L448 192L405.3333333333333 149.3333333333334H277.3333333333333V21.3333333333334C300.8 21.3333333333334 320 2.1333333333334 320 -21.3333333333333H192C192 2.1333333333334 211.2 21.3333333333334 234.6666666666667 21.3333333333334V234.6666666666667z" />
+    <glyph glyph-name="rowing"
+      unicode="&#xF608;"
+      horiz-adv-x="512" d=" M181.3333333333333 138.6666666666667L85.3333333333333 42.6666666666667L117.3333333333333 10.6666666666667L192 85.3333333333334H234.6666666666667L181.3333333333333 138.6666666666667M320 426.6666666666667C296.5333333333333 426.6666666666667 277.3333333333333 407.4666666666667 277.3333333333333 384S296.5333333333333 341.3333333333334 320 341.3333333333334S362.6666666666667 360.5333333333334 362.6666666666667 384S343.4666666666667 426.6666666666667 320 426.6666666666667M448 0L384 -64L320 0V32L168.7466666666667 183.2533333333333C162.1333333333333 182.1866666666667 155.7333333333333 181.3333333333334 149.3333333333333 181.3333333333334V227.84C184.7466666666667 227.2 226.3466666666667 246.4 248.96 271.36L278.8266666666667 304.4266666666666C282.88 309.3333333333333 288 312.5333333333333 293.5466666666666 315.0933333333333C299.7333333333333 318.08 306.7733333333333 320 314.0266666666667 320H314.6666666666667C341.3333333333333 320 362.6666666666667 298.6666666666667 362.6666666666667 271.7866666666667V149.3333333333334C362.6666666666667 131.2000000000001 355.2 114.7733333333333 343.04 103.04L266.6666666666667 179.4133333333333V227.84C253.2266666666666 216.7466666666667 236.16 206.08 217.8133333333333 198.1866666666666L352 64H384L448 0z" />
+    <glyph glyph-name="rss"
+      unicode="&#xF46B;"
+      horiz-adv-x="512" d=" M131.84 114.3466666666667C157.44 114.3466666666667 178.3466666666666 93.44 178.3466666666666 67.84C178.3466666666666 42.6666666666667 157.44 21.3333333333334 131.84 21.3333333333334C106.6666666666667 21.3333333333334 85.3333333333333 42.6666666666667 85.3333333333333 67.84C85.3333333333333 93.44 106.24 114.3466666666667 131.84 114.3466666666667M85.3333333333333 353.28C268.5866666666667 353.28 417.2800000000001 204.5866666666667 417.2800000000001 21.3333333333334H356.9066666666668C356.9066666666668 171.3066666666667 235.3066666666668 292.9066666666667 85.3333333333334 292.9066666666667V353.28M85.3333333333334 232.5333333333333C202.0266666666667 232.5333333333333 296.5333333333334 138.0266666666667 296.5333333333334 21.3333333333334H236.1600000000001C236.1600000000001 104.5333333333333 168.5333333333334 172.16 85.3333333333334 172.16V232.5333333333334z" />
+    <glyph glyph-name="rss-box"
+      unicode="&#xF46C;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M160 128C142.2933333333333 128 128 113.7066666666667 128 96S142.2933333333333 64 160 64S192 78.2933333333334 192 96S177.7066666666667 128 160 128M128 234.6666666666667V192C198.6133333333334 192 256 134.6133333333334 256 64H298.6666666666667C298.6666666666667 158.2933333333334 222.2933333333333 234.6666666666667 128 234.6666666666667M128 320V277.3333333333334C245.76 277.3333333333334 341.3333333333333 181.76 341.3333333333333 64H384C384 205.44 269.44 320 128 320z" />
+    <glyph glyph-name="ruler"
+      unicode="&#xF46D;"
+      horiz-adv-x="512" d=" M29.6533333333333 56.3200000000001L67.4133333333333 93.8666666666667L97.7066666666667 64L120.32 86.4L90.0266666666667 116.48L120.32 146.7733333333334L173.0133333333334 93.8666666666667L195.6266666666667 116.4800000000001L142.9333333333333 169.3866666666668L173.0133333333334 199.4666666666668L203.3066666666667 169.3866666666668L225.92 192L195.6266666666667 222.08L225.92 252.3733333333334L278.6133333333334 199.4666666666667L301.2266666666667 222.08L248.5333333333334 274.9866666666667L278.6133333333334 305.0666666666667L308.6933333333334 274.9866666666667L331.52 297.6L301.2266666666667 327.6800000000001L331.52 357.9733333333334L384 305.0666666666667L406.8266666666667 327.68L354.1333333333334 380.5866666666667L391.6800000000001 418.3466666666667L482.3466666666667 327.68L120.32 -34.3466666666666L29.6533333333333 56.3200000000001z" />
+    <glyph glyph-name="run"
+      unicode="&#xF70D;"
+      horiz-adv-x="512" d=" M288 330.6666666666667C311.2533333333334 330.6666666666667 330.6666666666667 350.2933333333334 330.6666666666667 373.3333333333334C330.6666666666667 397.2266666666667 311.2533333333334 416 288 416C264.32 416 245.3333333333333 397.2266666666667 245.3333333333333 373.3333333333334C245.3333333333333 350.2933333333334 264.32 330.6666666666667 288 330.6666666666667M210.9866666666667 34.5600000000001L232.32 128L277.3333333333333 85.3333333333334V-42.6666666666666H320V117.3333333333334L274.9866666666667 160L288 224C315.52 192 358.1866666666666 170.6666666666667 405.3333333333333 170.6666666666667V213.3333333333334C364.5866666666667 213.3333333333334 330.6666666666667 234.6666666666667 313.3866666666667 264.9600000000001L292.0533333333334 298.6666666666667C283.52 311.8933333333333 270.7200000000001 320 256 320C249.3866666666667 320 245.3333333333334 318.2933333333334 238.7200000000001 318.2933333333334L128 271.36V170.6666666666667H170.6666666666667V243.6266666666667L208.8533333333333 258.56L174.72 85.3333333333334L70.1866666666666 106.6666666666667L61.6533333333333 64L210.9866666666666 34.5600000000001z" />
+    <glyph glyph-name="run-fast"
+      unicode="&#xF46E;"
+      horiz-adv-x="512" d=" M352 330.6666666666667C375.4666666666667 330.6666666666667 394.6666666666667 349.8666666666667 394.6666666666667 373.3333333333334S375.4666666666667 416 352 416S309.3333333333333 396.8 309.3333333333333 373.3333333333334S328.5333333333333 330.6666666666667 352 330.6666666666667M275.2 34.1333333333334L296.5333333333333 128.0000000000001L341.3333333333333 85.3333333333334V-42.6666666666666H384V117.3333333333334L339.2 160L352 224C381.6533333333333 190.0800000000001 424.32 170.6666666666667 469.3333333333333 170.6666666666667V213.3333333333334C431.7866666666667 212.6933333333334 396.8 232.32 377.6 264.5333333333334L356.2666666666667 298.6666666666667C348.5866666666667 311.4666666666667 334.9333333333333 320 320 320C313.6 320 309.3333333333333 317.8666666666667 302.9333333333333 317.8666666666667L192 270.9333333333334V170.6666666666667H234.6666666666667V243.2L273.0666666666667 258.1333333333334L238.9333333333334 85.3333333333334L134.4 106.6666666666667L125.8666666666667 64L275.2 34.1333333333334M85.3333333333333 256C73.6 256 64 265.6 64 277.3333333333334S73.6 298.6666666666667 85.3333333333333 298.6666666666667H149.3333333333333V256H85.3333333333333M106.6666666666667 341.3333333333334C94.9333333333333 341.3333333333334 85.3333333333333 350.9333333333334 85.3333333333333 362.6666666666667S94.9333333333333 384 106.6666666666667 384H213.3333333333333V341.3333333333334H106.6666666666667M64 170.6666666666667C52.2666666666667 170.6666666666667 42.6666666666667 180.2666666666667 42.6666666666667 192S52.2666666666667 213.3333333333334 64 213.3333333333334H149.3333333333333V170.6666666666667H64z" />
+    <glyph glyph-name="safe"
+      unicode="&#xFA69;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V85.3333333333334C42.6666666666667 61.8666666666667 61.8666666666667 42.6666666666667 85.3333333333333 42.6666666666667V21.3333333333334H128V42.6666666666667H362.6666666666667V21.3333333333334H405.3333333333333V42.6666666666667C428.8 42.6666666666667 448 61.8666666666667 448 85.3333333333334V106.6666666666667H469.3333333333333V149.3333333333334H448V256H469.3333333333333V298.6666666666667H448V320C448 343.4666666666667 428.8 362.6666666666667 405.3333333333333 362.6666666666667H85.3333333333333M85.3333333333333 320H405.3333333333333V85.3333333333334H85.3333333333333V320M288 288C240.8533333333333 288 202.6666666666667 249.8133333333334 202.6666666666667 202.6666666666667S240.8533333333333 117.3333333333334 288 117.3333333333334S373.3333333333333 155.52 373.3333333333333 202.6666666666667S335.1466666666667 288 288 288M106.6666666666667 256V149.3333333333334H149.3333333333333V256H106.6666666666667M288 245.3333333333334C311.4666666666667 245.3333333333334 330.6666666666667 226.1333333333334 330.6666666666667 202.6666666666667S311.4666666666667 160 288 160S245.3333333333333 179.2000000000001 245.3333333333333 202.6666666666667S264.5333333333333 245.3333333333334 288 245.3333333333334z" />
+    <glyph glyph-name="sale"
+      unicode="&#xF46F;"
+      horiz-adv-x="512" d=" M397.8666666666666 387.2L410.88 304.8533333333334L485.7599999999999 266.6666666666667L448 192L485.9733333333334 117.3333333333334L410.4533333333334 79.1466666666667L397.4400000000001 -3.1999999999999L314.4533333333334 9.8133333333334L255.3600000000001 -49.0666666666666L196.0533333333334 10.6666666666667L113.7066666666667 -2.9866666666666L100.4800000000001 80.0000000000001L26.0266666666667 117.9733333333334L64 192.64L26.24 266.6666666666667L101.12 305.2800000000001L114.1333333333334 386.9866666666667L196.6933333333333 373.3333333333334L256 433.28L315.0933333333333 374.1866666666667L397.8666666666666 387.2M202.6666666666667 298.6666666666667C184.96 298.6666666666667 170.6666666666667 284.3733333333334 170.6666666666667 266.6666666666667S184.96 234.6666666666667 202.6666666666667 234.6666666666667S234.6666666666667 248.96 234.6666666666667 266.6666666666667S220.3733333333333 298.6666666666667 202.6666666666667 298.6666666666667M309.3333333333333 149.3333333333334C291.6266666666667 149.3333333333334 277.3333333333333 135.04 277.3333333333333 117.3333333333334S291.6266666666667 85.3333333333334 309.3333333333333 85.3333333333334S341.3333333333333 99.6266666666667 341.3333333333333 117.3333333333334S327.04 149.3333333333334 309.3333333333333 149.3333333333334M179.4133333333333 85.3333333333334L362.6666666666667 268.5866666666667L332.5866666666667 298.6666666666667L149.3333333333333 115.4133333333334L179.4133333333333 85.3333333333334z" />
+    <glyph glyph-name="salesforce"
+      unicode="&#xF88D;"
+      horiz-adv-x="512" d=" M392.1066666666667 312.1066666666667C377.1733333333333 312.1066666666667 364.16 307.6266666666667 351.36 303.36C336.4266666666666 329.1733333333334 308.48 346.24 278.4 346.24C254.9333333333333 346.24 233.6 335.5733333333333 218.4533333333333 320.64C201.3866666666666 341.9733333333334 175.5733333333333 357.12 145.7066666666666 357.12C96 357.12 53.3333333333333 316.3733333333334 53.3333333333333 266.6666666666667C53.3333333333333 254.08 57.8133333333333 241.2800000000001 62.08 228.48C38.4 215.4666666666667 21.3333333333333 189.8666666666667 21.3333333333333 160C21.3333333333333 117.3333333333334 55.68 80.64 98.56 80.64C104.96 80.64 111.36 80.64 115.6266666666667 82.7733333333334C124.16 50.5600000000001 156.3733333333333 26.8800000000001 194.9866666666667 26.8800000000001C231.2533333333334 26.8800000000001 261.3333333333333 48.4266666666667 272 78.5066666666667C282.88 74.0266666666666 293.5466666666666 69.76 304.2133333333333 69.76C332.16 69.76 357.76 85.3333333333334 370.56 108.3733333333333C377.1733333333333 106.6666666666667 384 106.6666666666667 389.9733333333334 106.6666666666667C445.6533333333333 106.6666666666667 490.6666666666666 151.2533333333333 490.6666666666666 209.0666666666667C492.8 266.6666666666667 448 312.1066666666667 392.1066666666667 312.1066666666667z" />
+    <glyph glyph-name="sass"
+      unicode="&#xF7EB;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M213.3333333333333 120.96C216.7466666666667 109.44 216.32 98.7733333333333 213.3333333333333 88.96C213.3333333333333 87.8933333333334 212.48 86.8266666666667 212.0533333333333 85.3333333333334C211.6266666666667 85.3333333333334 211.2 83.84 210.56 82.7733333333333C208.2133333333333 77.6533333333334 204.8 72.7466666666667 200.7466666666666 68.48C188.3733333333333 54.8266666666666 170.6666666666666 49.7066666666667 163.6266666666666 53.9733333333333C155.52 58.6666666666666 160 77.8666666666667 174.08 93.0133333333333C189.44 109.2266666666667 211.6266666666666 119.8933333333333 211.6266666666666 119.8933333333333L213.3333333333333 120.96M389.7599999999999 314.0266666666667C380.1599999999999 352 317.2266666666666 364.3733333333334 257.9199999999999 343.2533333333334C222.5066666666666 330.6666666666667 184.1066666666666 311.04 156.5866666666666 285.2266666666667C123.9466666666666 254.5066666666667 118.6133333333333 227.8400000000001 120.7466666666666 216.7466666666667C127.9999999999999 177.4933333333334 182.1866666666666 151.68 204.3733333333333 132.6933333333334V132.48C197.9733333333333 129.28 150.1866666666666 105.1733333333334 138.6666666666666 80.4266666666667C127.1466666666666 54.4 140.7999999999999 35.6266666666667 149.3333333333333 33.0666666666667C177.9199999999999 25.3866666666667 206.7199999999999 39.2533333333333 222.0799999999999 62.5066666666667C237.0133333333333 84.6933333333333 235.9466666666666 113.4933333333334 229.3333333333333 128C238.2933333333333 130.1333333333333 248.7466666666666 131.2000000000001 261.9733333333333 129.7066666666667C299.5199999999999 125.2266666666667 306.7733333333332 101.9733333333334 305.2799999999999 92.16C303.9999999999999 82.3466666666667 296.1066666666666 77.0133333333333 293.5466666666665 75.3066666666667C290.9866666666666 73.8133333333334 290.1333333333332 73.1733333333334 290.3466666666665 71.8933333333334C290.5599999999999 70.1866666666667 291.8399999999999 70.1866666666667 293.9733333333332 70.6133333333334C297.1733333333332 71.2533333333335 313.8133333333332 78.5066666666668 314.4533333333332 96.64C315.3066666666665 119.6800000000001 293.3333333333332 145.28 254.5066666666666 144.6400000000001C238.5066666666666 144.2133333333334 228.4799999999999 142.72 221.2266666666665 139.9466666666667L219.5199999999999 141.8666666666667C195.4133333333332 167.4666666666667 151.0399999999999 185.6 152.9599999999999 220.16C153.5999999999999 232.7466666666667 157.8666666666665 265.6 238.2933333333332 305.7066666666667C303.9999999999999 338.56 356.6933333333332 329.6 365.8666666666666 309.3333333333334C378.8799999999999 280.9600000000001 337.7066666666666 227.84 269.4399999999999 220.16C243.4133333333332 217.1733333333334 229.5466666666666 227.4133333333334 226.1333333333333 231.04C222.5066666666666 234.6666666666667 222.0799999999999 235.3066666666667 220.7999999999999 234.6666666666667C218.4533333333333 233.1733333333334 219.9466666666666 229.76 220.7999999999999 227.6266666666667C222.7199999999999 222.2933333333334 231.2533333333333 213.3333333333334 245.3333333333333 208.2133333333334C257.9199999999999 204.16 288.6399999999999 201.8133333333333 325.5466666666666 216.1066666666667C366.9333333333332 232.1066666666667 399.3599999999999 276.6933333333334 389.7599999999999 314.0266666666667z" />
+    <glyph glyph-name="satellite"
+      unicode="&#xF470;"
+      horiz-adv-x="512" d=" M106.6666666666667 64L181.3333333333333 160L234.6666666666667 96L309.3333333333333 192L405.3333333333333 64M106.6666666666667 192V234.6666666666667C165.5466666666667 234.6666666666667 213.3333333333333 282.4533333333334 213.3333333333333 341.3333333333334H256C256 258.7733333333333 189.2266666666667 192 106.6666666666667 192M106.6666666666667 341.3333333333334H170.6666666666667C170.6666666666667 305.92 142.08 277.3333333333334 106.6666666666667 277.3333333333334M405.3333333333333 384H106.6666666666667C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="satellite-uplink"
+      unicode="&#xF908;"
+      horiz-adv-x="512" d=" M253.0133333333333 405.3333333333333L241.92 364.1600000000001C336 346.0266666666667 409.6 272.4266666666667 427.7333333333334 178.1333333333333L469.3333333333333 189.2266666666667C446.9333333333333 298.0266666666667 361.8133333333334 383.1466666666667 253.0133333333333 405.3333333333333M230.8266666666667 322.9866666666667L219.7333333333334 281.3866666666667C284.5866666666667 271.5733333333334 335.36 220.8000000000001 345.1733333333333 156.16L386.56 167.2533333333333C372.48 246.6133333333334 310.4 309.3333333333334 230.8266666666667 322.9866666666667M79.36 241.28C69.3333333333333 219.0933333333333 64 194.9866666666667 64 170.6666666666667C64 129.0666666666667 79.1466666666667 89.1733333333334 106.6666666666667 58.0266666666666V-21.3333333333333H170.6666666666667V12.5866666666667C190.9333333333333 4.2666666666667 212.6933333333333 0 234.6666666666667 0C258.9866666666667 0 283.0933333333333 5.3333333333334 305.0666666666667 15.36L79.36 241.2800000000001M208.8533333333334 239.7866666666667L197.5466666666667 197.9733333333334C232.9600000000001 197.9733333333334 261.5466666666667 169.3866666666667 261.5466666666667 133.9733333333334L303.5733333333334 145.0666666666667C298.6666666666667 194.9866666666667 258.7733333333334 234.6666666666667 208.8533333333334 239.7866666666667z" />
+    <glyph glyph-name="satellite-variant"
+      unicode="&#xF471;"
+      horiz-adv-x="512" d=" M247.8933333333333 426.6666666666667L368.64 305.7066666666667L323.4133333333333 260.48L278.1866666666666 305.7066666666667L247.8933333333333 275.4133333333334L297.6 225.92L272.8533333333333 200.96L282.4533333333333 191.1466666666667C302.2933333333333 200.32 326.6133333333333 196.9066666666667 342.8266666666667 180.48L267.52 105.1733333333334C251.0933333333334 121.3866666666667 247.68 145.7066666666667 256.8533333333334 165.5466666666667L247.04 175.1466666666667L222.08 150.4L172.5866666666667 200.1066666666667L142.2933333333333 169.8133333333333L187.52 124.5866666666667L142.2933333333333 79.36L21.3333333333333 200.1066666666667L66.9866666666667 245.3333333333334L112.2133333333333 200.1066666666667L142.2933333333333 230.1866666666667L81.92 290.56C65.28 307.2 65.28 334.2933333333333 81.92 350.9333333333334L97.0666666666667 366.08C113.7066666666667 382.7200000000001 140.8 382.7200000000001 157.44 366.08L217.8133333333333 305.7066666666667L247.8933333333334 335.7866666666667L202.6666666666667 381.0133333333333L247.8933333333333 426.6666666666667M384 149.3333333333334C384 102.1866666666667 345.8133333333334 64 298.6666666666667 64V106.6666666666667C322.1333333333334 106.6666666666667 341.3333333333333 125.8666666666667 341.3333333333333 149.3333333333334H384M469.3333333333333 149.3333333333334C469.3333333333333 55.04 392.9600000000001 -21.3333333333333 298.6666666666667 -21.3333333333333V21.3333333333334C369.28 21.3333333333334 426.6666666666667 78.72 426.6666666666667 149.3333333333334H469.3333333333333z" />
+    <glyph glyph-name="sausage"
+      unicode="&#xF8B9;"
+      horiz-adv-x="512" d=" M74.6666666666667 384H202.6666666666667L169.8133333333333 334.5066666666667C195.4133333333333 322.7733333333333 213.3333333333333 296.7466666666667 213.3333333333333 266.6666666666667C213.3333333333333 201.8133333333334 265.8133333333334 149.3333333333334 330.6666666666667 149.3333333333334C360.7466666666667 149.3333333333334 386.7733333333333 131.4133333333334 398.5066666666667 105.8133333333334L448 138.6666666666667V10.6666666666667L398.5066666666667 43.52C386.7733333333333 17.92 360.7466666666667 0 330.6666666666667 0C183.4666666666667 0 64 119.4666666666667 64 266.6666666666667C64 296.7466666666667 81.92 322.7733333333333 107.52 334.5066666666667L74.6666666666667 384z" />
+    <glyph glyph-name="saxophone"
+      unicode="&#xF609;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333C73.6 405.3333333333333 64 395.7333333333334 64 384S73.6 362.6666666666667 85.3333333333333 362.6666666666667C120.7466666666667 362.6666666666667 149.3333333333333 334.0800000000001 149.3333333333333 298.6666666666667V117.3333333333334C149.3333333333333 40.5333333333333 211.2 -21.3333333333333 288 -21.3333333333333S426.6666666666667 40.5333333333333 426.6666666666667 117.3333333333334V170.6666666666667C438.4 170.6666666666667 448 180.2666666666667 448 192S438.4 213.3333333333334 426.6666666666667 213.3333333333334H298.6666666666667C286.9333333333333 213.3333333333334 277.3333333333333 203.7333333333334 277.3333333333333 192S286.9333333333333 170.6666666666667 298.6666666666667 170.6666666666667V128C298.6666666666667 116.2666666666667 289.0666666666667 106.6666666666667 277.3333333333333 106.6666666666667S256 116.2666666666667 256 128V213.3333333333334C267.7333333333334 213.3333333333334 277.3333333333333 222.9333333333333 277.3333333333333 234.6666666666667S267.7333333333334 256 256 256V277.3333333333334C267.7333333333334 277.3333333333334 277.3333333333333 286.9333333333334 277.3333333333333 298.6666666666667S267.7333333333334 320 256 320V330.6666666666667C256 371.8400000000001 222.5066666666667 405.3333333333333 181.3333333333333 405.3333333333333H85.3333333333333z" />
+    <glyph glyph-name="scale"
+      unicode="&#xF472;"
+      horiz-adv-x="512" d=" M180.48 126.72L150.4 96.64L121.1733333333334 125.8666666666667C102.8266666666667 102.1866666666667 90.4533333333333 73.8133333333334 86.6133333333334 42.6666666666667H128V1e-13H42.6666666666667V21.3333333333334C42.6666666666667 124.5866666666668 116.0533333333333 210.5600000000001 213.3333333333333 230.4000000000001V273.0666666666668L42.6666666666667 341.3333333333334V384H469.3333333333333V341.3333333333334L298.6666666666667 273.0666666666667V230.4000000000001C395.9466666666666 210.56 469.3333333333333 124.5866666666667 469.3333333333333 21.3333333333334V0H384V42.6666666666667H425.3866666666667C421.5466666666667 73.8133333333334 409.1733333333333 102.1866666666667 390.8266666666667 125.8666666666667L361.6 96.64L331.52 126.72L360.7466666666667 156.16C337.0666666666667 174.5066666666667 308.48 186.88 277.3333333333333 190.72V149.3333333333334H234.6666666666667V190.72C203.52 186.88 174.9333333333333 174.5066666666667 151.2533333333333 156.16L180.48 126.72M256 64C279.4666666666667 64 298.6666666666667 44.8000000000001 298.6666666666667 21.3333333333334S279.4666666666667 -21.3333333333333 256 -21.3333333333333C249.1733333333333 -21.3333333333333 242.7733333333334 -19.84 237.2266666666667 -16.8533333333333L155.0933333333333 21.3333333333334L237.2266666666667 59.52C242.7733333333333 62.5066666666667 249.1733333333333 64 256 64z" />
+    <glyph glyph-name="scale-balance"
+      unicode="&#xF5D1;"
+      horiz-adv-x="512" d=" M256 384C228.9066666666667 384 204.8 366.9333333333334 195.84 341.3333333333334H64V298.6666666666667H105.6L42.6666666666667 149.3333333333334C32.64 106.6666666666667 64 85.3333333333334 117.3333333333333 85.3333333333334S203.9466666666666 106.6666666666667 192 149.3333333333334L129.0666666666667 298.6666666666667H195.6266666666667C202.6666666666667 280.5333333333334 216.5333333333333 266.6666666666667 234.6666666666667 259.6266666666667V21.3333333333334H42.6666666666667V-21.3333333333333H469.3333333333333V21.3333333333334H277.3333333333333V259.8400000000001C295.4666666666667 266.6666666666667 309.3333333333333 280.5333333333333 316.16 298.6666666666667H382.9333333333333L320 149.3333333333334C309.9733333333333 106.6666666666667 341.3333333333333 85.3333333333334 394.6666666666667 85.3333333333334S481.28 106.6666666666667 469.3333333333333 149.3333333333334L406.4 298.6666666666667H448V341.3333333333334H316.3733333333334C307.2 366.9333333333334 283.0933333333333 384 256 384M256 341.3333333333334C267.7333333333334 341.3333333333334 277.3333333333333 331.7333333333334 277.3333333333333 320S267.7333333333334 298.6666666666667 256 298.6666666666667S234.6666666666667 308.2666666666667 234.6666666666667 320S244.2666666666667 341.3333333333334 256 341.3333333333334M117.3333333333333 229.3333333333334L149.3333333333333 149.3333333333334H85.3333333333333L117.3333333333333 229.3333333333334M394.6666666666667 229.3333333333334L426.6666666666667 149.3333333333334H362.6666666666667L394.6666666666667 229.3333333333334z" />
+    <glyph glyph-name="scale-bathroom"
+      unicode="&#xF473;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333H405.3333333333333C428.8 405.3333333333333 448 386.1333333333334 448 362.6666666666667V21.3333333333334C448 -2.1333333333333 428.8 -21.3333333333333 405.3333333333333 -21.3333333333333H106.6666666666667C83.2 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V362.6666666666667C64 386.1333333333334 83.2 405.3333333333333 106.6666666666667 405.3333333333333M256 362.6666666666667C208.8533333333333 362.6666666666667 170.6666666666667 324.48 170.6666666666667 277.3333333333334H240.2133333333333L231.4666666666667 336.4266666666667L275.2 277.3333333333334H341.3333333333333C341.3333333333333 324.48 303.1466666666667 362.6666666666667 256 362.6666666666667M106.6666666666667 234.6666666666667V21.3333333333334H405.3333333333333V234.6666666666667H106.6666666666667z" />
+    <glyph glyph-name="scanner"
+      unicode="&#xF6AA;"
+      horiz-adv-x="512" d=" M89.6 219.7333333333334L422.4 341.3333333333334L437.3333333333333 300.8L136.5333333333333 192H405.3333333333333C428.8 192 448 172.8 448 149.3333333333334V64C448 40.5333333333333 428.8 21.3333333333334 405.3333333333333 21.3333333333334H106.6666666666667C83.2 21.3333333333334 64 40.5333333333333 64 64V181.3333333333334C64 198.4 74.6666666666667 215.4666666666667 89.6 219.7333333333334M362.6666666666667 85.3333333333334H405.3333333333333V128H362.6666666666667V85.3333333333334M106.6666666666667 85.3333333333334H320V128H106.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="scanner-off"
+      unicode="&#xF909;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L356.9066666666667 21.3333333333334H106.6666666666667C83.2 21.3333333333334 64 40.5333333333333 64 64V181.3333333333334C64 198.4 74.6666666666667 215.4666666666667 89.6 219.7333333333334L140.16 238.08L42.6666666666667 335.5733333333334M136.5333333333333 192H186.24L173.0133333333334 205.2266666666667L136.5333333333333 192M106.6666666666667 128V85.3333333333334H292.9066666666667L250.24 128H106.6666666666667M422.4 341.3333333333334L437.3333333333333 300.8L252.8 234.0266666666667L219.7333333333333 267.3066666666667L422.4 341.3333333333334M405.3333333333333 192C428.8 192 448 172.8 448 149.3333333333334V64C448 56.7466666666667 446.08 49.92 442.88 43.9466666666667L405.3333333333333 81.4933333333333V128H358.8266666666667L294.8266666666667 192H405.3333333333333z" />
+    <glyph glyph-name="school"
+      unicode="&#xF474;"
+      horiz-adv-x="512" d=" M256 384L21.3333333333333 256L256 128L448 232.7466666666667V85.3333333333334H490.6666666666666V256M106.6666666666667 166.8266666666667V81.4933333333333L256 0L405.3333333333333 81.4933333333333V166.8266666666667L256 85.3333333333334L106.6666666666667 166.8266666666667z" />
+    <glyph glyph-name="scissors-cutting"
+      unicode="&#xFA6A;"
+      horiz-adv-x="512" d=" M234.6666666666667 0H149.3333333333333V42.6666666666667H234.6666666666667V0M330.6666666666667 42.6666666666667H362.6666666666667V0H277.3333333333333V42.6666666666667H281.6L251.7333333333333 172.8L198.4 160C196.2666666666667 149.3333333333334 192 140.8 187.7333333333333 132.2666666666667C168.5333333333333 100.2666666666667 128 91.7333333333334 96 110.9333333333333C64 130.1333333333333 55.4666666666667 170.6666666666667 74.6666666666666 202.6666666666667C93.8666666666667 234.6666666666667 134.4 243.2 166.4 224C174.9333333333333 219.7333333333334 181.3333333333333 211.2 185.6 204.8L238.9333333333333 217.6L226.1333333333334 270.9333333333334C217.6 273.0666666666667 209.0666666666666 277.3333333333334 200.5333333333333 281.6C170.6666666666667 300.8 160 341.3333333333334 179.2 373.3333333333334C198.4 405.3333333333333 238.9333333333333 413.8666666666667 270.9333333333333 394.6666666666667C302.9333333333333 375.4666666666667 311.4666666666667 334.9333333333334 292.2666666666667 302.9333333333334C288 294.4 279.4666666666667 288 273.0666666666666 283.7333333333334L330.6666666666667 42.6666666666667M149.3333333333333 196.2666666666667C134.4 206.9333333333333 113.0666666666667 200.5333333333333 102.4 185.6C91.7333333333333 170.6666666666667 98.1333333333333 149.3333333333334 113.0666666666667 140.8C128 130.1333333333333 149.3333333333333 134.4 160 151.4666666666667C168.5333333333333 166.4 164.2666666666667 187.7333333333334 149.3333333333333 196.2666666666667M264.5333333333333 320C275.2 334.9333333333334 268.8 356.2666666666667 253.8666666666667 366.9333333333334C238.9333333333334 377.6 217.6 371.2000000000001 206.9333333333333 356.2666666666667C198.4 341.3333333333334 202.6666666666667 320 219.7333333333333 309.3333333333334C234.6666666666667 300.8 256 305.0666666666667 264.5333333333333 320M273.0666666666666 206.9333333333333C268.8 209.0666666666667 264.5333333333333 209.0666666666667 262.4 204.8C260.2666666666667 200.5333333333334 260.2666666666667 196.2666666666667 264.5333333333333 194.1333333333333C268.8 192 273.0666666666666 192 275.2 196.2666666666667C279.4666666666666 200.5333333333333 277.3333333333333 204.8 273.0666666666666 206.9333333333333M448 266.6666666666667L309.3333333333333 234.6666666666667L320 187.7333333333334L480 226.1333333333334L490.6666666666666 241.0666666666667L448 266.6666666666667M490.6666666666666 42.6666666666667H405.3333333333333V0H490.6666666666666V42.6666666666667M106.6666666666667 42.6666666666667H21.3333333333333V0H106.6666666666667V42.6666666666667z" />
+    <glyph glyph-name="screen-rotation"
+      unicode="&#xF475;"
+      horiz-adv-x="512" d=" M160 -10.6666666666666C90.6666666666667 22.6133333333333 40.7466666666667 90.4533333333334 33.0666666666667 170.6666666666667H1.0666666666667C11.9466666666667 39.2533333333333 121.8133333333333 -64 256 -64L270.08 -63.36L188.8 17.92M316.3733333333334 -4.0533333333333L59.9466666666667 252.3733333333334L195.6266666666667 388.0533333333334L452.0533333333333 131.6266666666667M218.24 410.6666666666667C205.6533333333333 423.2533333333334 185.3866666666667 423.2533333333334 173.0133333333333 410.6666666666667L37.3333333333333 274.9866666666667C24.7466666666667 262.4000000000001 24.7466666666667 242.1333333333334 37.3333333333333 229.76L293.76 -26.6666666666666C306.3466666666667 -39.2533333333333 326.6133333333333 -39.2533333333333 338.9866666666667 -26.6666666666666L474.6666666666666 109.0133333333333C487.2533333333333 121.6 487.2533333333333 141.8666666666667 474.6666666666666 154.24L218.24 410.6666666666667M352 394.6666666666667C421.3333333333333 361.1733333333334 471.2533333333333 293.5466666666667 478.9333333333333 213.3333333333334H510.9333333333333C500.0533333333333 344.7466666666667 390.1866666666666 448 256 448L241.92 447.36L323.2 366.0800000000001L352 394.6666666666667z" />
+    <glyph glyph-name="screen-rotation-lock"
+      unicode="&#xF476;"
+      horiz-adv-x="512" d=" M358.4 394.6666666666667C358.4 414.7200000000001 374.6133333333334 430.9333333333334 394.6666666666667 430.9333333333334S430.9333333333333 414.7200000000001 430.9333333333333 394.6666666666667V384H358.4V394.6666666666667M341.3333333333333 256H448C459.7333333333333 256 469.3333333333333 265.6 469.3333333333333 277.3333333333334V362.6666666666667C469.3333333333333 374.4 459.7333333333333 384 448 384V394.6666666666667C448 424.1066666666667 424.1066666666667 448 394.6666666666667 448S341.3333333333333 424.1066666666667 341.3333333333333 394.6666666666667V384C329.6 384 320 374.4 320 362.6666666666667V277.3333333333334C320 265.6 329.6 256 341.3333333333333 256M180.6933333333333 10.6666666666667C110.9333333333333 43.9466666666667 61.0133333333333 111.7866666666667 53.3333333333333 192H21.3333333333333C32 60.5866666666667 142.08 -42.6666666666666 276.2666666666667 -42.6666666666666L290.3466666666667 -42.0266666666666L209.0666666666666 39.4666666666667L180.6933333333333 10.6666666666667M496 175.5733333333334L441.1733333333333 230.4000000000001L411.0933333333333 200.32L458.6666666666666 152.96L337.7066666666667 32L96 273.7066666666667L216.96 394.6666666666667L261.76 349.6533333333334L291.84 379.7333333333334L239.5733333333333 432C226.9866666666667 444.5866666666667 206.72 444.5866666666667 194.3466666666666 432L58.6666666666667 296.32C46.08 283.7333333333334 46.08 263.4666666666667 58.6666666666667 251.0933333333334L315.0933333333333 -5.3333333333333C327.68 -17.92 347.9466666666666 -17.92 360.32 -5.3333333333333L496 130.3466666666667C508.5866666666666 142.9333333333333 508.5866666666666 163.2 496 175.5733333333334z" />
+    <glyph glyph-name="screwdriver"
+      unicode="&#xF477;"
+      horiz-adv-x="512" d=" M384 408.96C373.3333333333333 408.96 362.6666666666667 405.3333333333333 353.92 396.5866666666667L170.6666666666667 213.3333333333334L202.6666666666667 181.3333333333334L128 106.6666666666667H85.3333333333333L42.6666666666667 21.3333333333334L85.3333333333333 -21.3333333333333L170.6666666666667 21.3333333333334V64L245.3333333333333 138.6666666666667L277.3333333333333 106.6666666666667L460.5866666666666 289.92C473.8133333333333 309.3333333333334 477.2266666666667 333.44 460.5866666666666 350.0800000000001L414.08 396.5866666666667C405.3333333333333 405.3333333333333 394.6666666666667 408.96 384 408.96M384 362.6666666666667L426.6666666666667 320L277.3333333333333 170.6666666666667L234.6666666666667 213.3333333333334L384 362.6666666666667z" />
+    <glyph glyph-name="script"
+      unicode="&#xFB9D;"
+      horiz-adv-x="512" d=" M379.7333333333334 21.3333333333334C371.2000000000001 -4.2666666666667 347.7333333333334 -21.3333333333333 320 -21.3333333333333H106.6666666666667C70.4 -21.3333333333333 42.6666666666667 6.4 42.6666666666667 42.6666666666667V64H302.9333333333333C311.4666666666667 38.4 334.9333333333333 21.3333333333334 362.6666666666667 21.3333333333334H379.7333333333334M405.3333333333333 405.3333333333333H170.6666666666667C134.4 405.3333333333333 106.6666666666667 377.6 106.6666666666667 341.3333333333334V106.6666666666667H341.3333333333333V85.3333333333334C341.3333333333333 72.5333333333333 349.8666666666666 64 362.6666666666667 64H384V341.3333333333334C384 354.1333333333334 392.5333333333333 362.6666666666667 405.3333333333333 362.6666666666667S426.6666666666667 354.1333333333334 426.6666666666667 341.3333333333334V320H469.3333333333333V341.3333333333334C469.3333333333333 377.6 441.6 405.3333333333333 405.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="script-outline"
+      unicode="&#xF478;"
+      horiz-adv-x="512" d=" M320 21.3333333333334C331.7333333333334 21.3333333333334 341.3333333333333 30.9333333333333 341.3333333333333 42.6666666666667V362.6666666666667H170.6666666666667C158.9333333333333 362.6666666666667 149.3333333333333 353.0666666666667 149.3333333333333 341.3333333333334V106.6666666666667H106.6666666666667V341.3333333333334C106.6666666666667 376.7466666666667 135.2533333333333 405.3333333333333 170.6666666666667 405.3333333333333H405.3333333333333C440.7466666666667 405.3333333333333 469.3333333333333 376.7466666666667 469.3333333333333 341.3333333333334V320H426.6666666666667V341.3333333333334C426.6666666666667 353.0666666666667 417.0666666666667 362.6666666666667 405.3333333333333 362.6666666666667S384 353.0666666666667 384 341.3333333333334V42.6666666666667C384 7.2533333333333 355.4133333333333 -21.3333333333333 320 -21.3333333333333H106.6666666666667C71.2533333333333 -21.3333333333333 42.6666666666667 7.2533333333333 42.6666666666667 42.6666666666667V64H277.3333333333333C277.3333333333333 40.5333333333333 296.5333333333333 21.3333333333334 320 21.3333333333334z" />
+    <glyph glyph-name="script-text"
+      unicode="&#xFB9E;"
+      horiz-adv-x="512" d=" M379.7333333333334 21.3333333333334C371.2000000000001 -4.2666666666667 347.7333333333334 -21.3333333333333 320 -21.3333333333333H106.6666666666667C70.4 -21.3333333333333 42.6666666666667 6.4 42.6666666666667 42.6666666666667V64H302.9333333333333C311.4666666666667 38.4 334.9333333333333 21.3333333333334 362.6666666666667 21.3333333333334H379.7333333333334M405.3333333333333 405.3333333333333C441.6 405.3333333333333 469.3333333333333 377.6 469.3333333333333 341.3333333333334V320H426.6666666666667V341.3333333333334C426.6666666666667 354.1333333333334 418.1333333333334 362.6666666666667 405.3333333333333 362.6666666666667S384 354.1333333333334 384 341.3333333333334V64H362.6666666666667C349.8666666666666 64 341.3333333333333 72.5333333333333 341.3333333333333 85.3333333333334V106.6666666666667H106.6666666666667V341.3333333333334C106.6666666666667 377.6 134.4 405.3333333333333 170.6666666666667 405.3333333333333H405.3333333333333M170.6666666666667 320V277.3333333333334H320V320H170.6666666666667M170.6666666666667 234.6666666666667V192H298.6666666666667V234.6666666666667H170.6666666666667z" />
+    <glyph glyph-name="script-text-outline"
+      unicode="&#xFB9F;"
+      horiz-adv-x="512" d=" M320 21.3333333333334C331.7333333333334 21.3333333333334 341.3333333333333 30.9333333333333 341.3333333333333 42.6666666666667V362.6666666666667H170.6666666666667C158.9333333333333 362.6666666666667 149.3333333333333 353.0666666666667 149.3333333333333 341.3333333333334V106.6666666666667H106.6666666666667V341.3333333333334C106.6666666666667 376.7466666666667 135.2533333333333 405.3333333333333 170.6666666666667 405.3333333333333H405.3333333333333C440.7466666666667 405.3333333333333 469.3333333333333 376.7466666666667 469.3333333333333 341.3333333333334V320H426.6666666666667V341.3333333333334C426.6666666666667 353.0666666666667 417.0666666666667 362.6666666666667 405.3333333333333 362.6666666666667S384 353.0666666666667 384 341.3333333333334V42.6666666666667C384 7.2533333333333 355.4133333333333 -21.3333333333333 320 -21.3333333333333H106.6666666666667C71.2533333333333 -21.3333333333333 42.6666666666667 7.2533333333333 42.6666666666667 42.6666666666667V64H277.3333333333333C277.3333333333333 40.5333333333333 296.5333333333333 21.3333333333334 320 21.3333333333334M192 320H298.6666666666667V277.3333333333334H192V320M192 234.6666666666667H298.6666666666667V192H192V234.6666666666667M192 149.3333333333334H298.6666666666667V106.6666666666667H192V149.3333333333334z" />
+    <glyph glyph-name="sd"
+      unicode="&#xF479;"
+      horiz-adv-x="512" d=" M384 277.3333333333334H341.3333333333333V362.6666666666667H384M320 277.3333333333334H277.3333333333333V362.6666666666667H320M256 277.3333333333334H213.3333333333333V362.6666666666667H256M384 405.3333333333333H213.3333333333333L85.3333333333333 277.3333333333334V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.1333333333334 407.4666666666667 405.3333333333333 384 405.3333333333333z" />
+    <glyph glyph-name="seal"
+      unicode="&#xF47A;"
+      horiz-adv-x="512" d=" M434.9866666666667 34.7733333333333L349.44 64L320 -21.3333333333333L254.2933333333333 106.6666666666667L192 -21.3333333333333L162.56 64L77.0133333333333 34.7733333333333L139.3066666666667 162.7733333333333C118.8266666666667 188.3733333333333 106.6666666666667 220.8 106.6666666666667 256C106.6666666666667 338.56 173.44 405.3333333333333 256 405.3333333333333S405.3333333333333 338.56 405.3333333333333 256C405.3333333333333 220.8 393.1733333333333 188.3733333333333 372.6933333333333 162.7733333333333L434.9866666666667 34.7733333333333M149.3333333333333 256L206.72 227.4133333333334L202.6666666666667 163.4133333333334L256 198.8266666666667L309.3333333333333 163.6266666666667L305.7066666666667 227.4133333333334L362.6666666666667 256L305.4933333333334 284.8L309.3333333333333 348.3733333333334L256 313.3866666666667L202.6666666666667 348.8L206.2933333333333 284.5866666666667L149.3333333333333 256z" />
+    <glyph glyph-name="search-web"
+      unicode="&#xF70E;"
+      horiz-adv-x="512" d=" M330.6666666666667 149.3333333333334L437.3333333333333 42.6666666666667L405.3333333333333 10.6666666666667L298.6666666666667 117.3333333333334V134.1866666666667L292.9066666666667 140.16C268.5866666666667 119.2533333333333 237.0133333333333 106.6666666666667 202.6666666666667 106.6666666666667C126.08 106.6666666666667 64 168.7466666666667 64 245.3333333333334S126.08 384 202.6666666666667 384S341.3333333333333 321.92 341.3333333333333 245.3333333333334C341.3333333333333 210.9866666666667 328.7466666666667 179.4133333333334 307.84 155.0933333333334L313.8133333333333 149.3333333333334H330.6666666666667M202.6666666666667 352L190.9333333333333 351.36C185.8133333333333 340.2666666666667 177.92 321.4933333333334 172.16 298.6666666666667H233.1733333333333C227.4133333333333 321.4933333333334 219.5199999999999 340.2666666666667 214.3999999999999 351.36C210.56 352 206.72 352 202.6666666666666 352M295.04 298.6666666666667C282.4533333333333 320.64 262.1866666666666 337.7066666666667 237.8666666666667 346.0266666666667C242.9866666666667 334.7200000000001 249.6 318.2933333333334 254.5066666666667 298.6666666666667H295.04M110.2933333333333 298.6666666666667H150.8266666666667C155.7333333333334 318.2933333333334 162.3466666666667 334.7200000000001 167.4666666666667 346.0266666666667C143.1466666666667 337.7066666666667 122.88 320.64 110.2933333333333 298.6666666666667M96 245.3333333333334C96 234.6666666666667 97.7066666666667 223.36 100.9066666666667 213.3333333333334H146.56L144 245.3333333333334L146.56 277.3333333333334H100.9066666666667C97.7066666666667 267.3066666666667 96 256 96 245.3333333333334M304.4266666666666 213.3333333333334C307.6266666666667 223.36 309.3333333333333 234.6666666666667 309.3333333333333 245.3333333333334S307.6266666666667 267.3066666666667 304.4266666666666 277.3333333333334H258.7733333333333C260.48 266.6666666666667 261.3333333333333 256 261.3333333333333 245.3333333333334S260.48 224 258.7733333333333 213.3333333333334H304.4266666666666M167.8933333333333 277.3333333333334L165.3333333333333 245.3333333333334L167.8933333333333 213.3333333333334H237.44C239.1466666666667 224 240 234.6666666666667 240 245.3333333333334S239.1466666666667 266.6666666666667 237.44 277.3333333333334H167.8933333333333M202.6666666666667 138.6666666666667C206.5066666666667 138.6666666666667 210.3466666666666 138.6666666666667 213.9733333333333 139.3066666666667C219.3066666666667 150.4 227.4133333333334 169.1733333333334 233.1733333333333 192H172.16C177.92 169.1733333333334 186.0266666666667 150.4 191.36 139.3066666666667L202.6666666666667 138.6666666666667M295.04 192H254.5066666666667C249.6 172.3733333333333 242.9866666666667 155.9466666666667 237.8666666666667 144.64C262.1866666666667 152.96 282.4533333333333 170.0266666666667 295.04 192M110.2933333333333 192C122.88 170.0266666666667 143.1466666666667 152.96 167.4666666666667 144.64C162.3466666666666 155.9466666666667 155.7333333333333 172.3733333333333 150.8266666666667 192H110.2933333333333z" />
+    <glyph glyph-name="seat-flat"
+      unicode="&#xF47B;"
+      horiz-adv-x="512" d=" M469.3333333333333 213.3333333333334V170.6666666666667H192V298.6666666666667H384C431.1466666666667 298.6666666666667 469.3333333333333 260.48 469.3333333333333 213.3333333333334M42.6666666666667 149.3333333333334V106.6666666666667H170.6666666666667V64H341.3333333333333V106.6666666666667H469.3333333333333V149.3333333333334M152.32 189.8666666666667C177.0666666666667 215.2533333333333 176.64 256 151.4666666666667 280.32C126.08 305.0666666666667 85.3333333333333 304.64 61.0133333333333 279.4666666666667C36.2666666666667 254.08 36.6933333333333 213.3333333333334 61.8666666666667 189.0133333333333C87.2533333333333 164.2666666666667 128 164.6933333333333 152.32 189.8666666666667z" />
+    <glyph glyph-name="seat-flat-angled"
+      unicode="&#xF47C;"
+      horiz-adv-x="512" d=" M474.6666666666666 143.1466666666667L459.9466666666666 102.8266666666667L196.2666666666667 198.1866666666667L240.64 318.9333333333334L423.2533333333334 253.0133333333333C468.0533333333333 236.8 490.6666666666666 187.7333333333334 474.6666666666666 143.1466666666667M32 189.0133333333333L170.6666666666667 138.6666666666667V42.6666666666667H341.3333333333333V77.44L437.3333333333333 42.6666666666667L452.48 82.9866666666667L46.72 229.3333333333334M155.7333333333334 230.4000000000001C187.52 245.3333333333334 200.96 283.9466666666667 185.8133333333333 315.7333333333334C170.6666666666667 347.52 132.2666666666667 360.9600000000001 100.2666666666667 345.6C68.48 330.6666666666667 55.04 292.2666666666667 70.4 260.2666666666667C85.3333333333333 228.48 123.7333333333334 215.04 155.7333333333334 230.4z" />
+    <glyph glyph-name="seat-individual-suite"
+      unicode="&#xF47D;"
+      horiz-adv-x="512" d=" M149.3333333333333 170.6666666666667C184.7466666666667 170.6666666666667 213.3333333333333 199.2533333333333 213.3333333333333 234.6666666666667S184.7466666666667 298.6666666666667 149.3333333333333 298.6666666666667S85.3333333333333 270.0800000000001 85.3333333333333 234.6666666666667S113.92 170.6666666666667 149.3333333333333 170.6666666666667M405.3333333333333 298.6666666666667H234.6666666666667V149.3333333333334H64V298.6666666666667H21.3333333333333V85.3333333333334H490.6666666666666V213.3333333333334C490.6666666666666 260.48 452.48 298.6666666666667 405.3333333333333 298.6666666666667z" />
+    <glyph glyph-name="seat-legroom-extra"
+      unicode="&#xF47E;"
+      horiz-adv-x="512" d=" M85.3333333333333 192V384H42.6666666666667V192C42.6666666666667 133.12 90.4533333333333 85.3333333333334 149.3333333333333 85.3333333333334H277.3333333333333V128H149.3333333333333C113.92 128 85.3333333333333 156.5866666666667 85.3333333333333 192M487.04 80.2133333333333C478.9333333333333 95.9999999999999 459.52 100.9066666666666 443.7333333333333 93.6533333333333L420.4799999999999 82.9866666666666L347.7333333333333 231.8933333333333C340.48 246.4000000000001 325.76 256 309.3333333333333 256H234.6666666666667V384H106.6666666666667V213.3333333333334C106.6666666666667 177.92 135.2533333333333 149.3333333333334 170.6666666666667 149.3333333333334H320L392.7466666666667 0L472.1066666666666 36.2666666666667C488.5333333333333 43.9466666666667 495.5733333333333 64 487.04 80.2133333333333z" />
+    <glyph glyph-name="seat-legroom-normal"
+      unicode="&#xF47F;"
+      horiz-adv-x="512" d=" M106.6666666666667 192V384H64V192C64 133.12 111.7866666666667 85.3333333333334 170.6666666666667 85.3333333333334H298.6666666666667V128H170.6666666666667C135.2533333333333 128 106.6666666666667 156.5866666666667 106.6666666666667 192M437.3333333333333 64H405.3333333333333V213.3333333333334C405.3333333333333 236.8 386.1333333333334 256 362.6666666666667 256H256V384H128V213.3333333333334C128 177.92 156.5866666666667 149.3333333333334 192 149.3333333333334H341.3333333333333V0H437.3333333333333C455.04 0 469.3333333333333 14.2933333333334 469.3333333333333 32S455.04 64 437.3333333333333 64z" />
+    <glyph glyph-name="seat-legroom-reduced"
+      unicode="&#xF480;"
+      horiz-adv-x="512" d=" M426.0266666666667 38.4C429.8666666666666 17.92 414.2933333333333 0 394.6666666666667 0H298.6666666666667V64L320 149.3333333333334H192C156.5866666666667 149.3333333333334 128 177.92 128 213.3333333333334V384H256V256H362.6666666666667C386.1333333333334 256 405.3333333333333 236.8 405.3333333333333 213.3333333333334L362.6666666666667 64H393.3866666666667C408.9600000000001 64 423.04 53.3333333333334 426.0266666666667 38.4M106.6666666666667 192V384H64V192C64 133.12 111.7866666666667 85.3333333333334 170.6666666666667 85.3333333333334H256V128H170.6666666666667C135.2533333333333 128 106.6666666666667 156.5866666666667 106.6666666666667 192z" />
+    <glyph glyph-name="seat-recline-extra"
+      unicode="&#xF481;"
+      horiz-adv-x="512" d=" M114.1333333333333 327.68C94.9333333333333 341.3333333333334 90.24 367.7866666666667 103.68 387.2C117.3333333333333 406.4 143.7866666666666 411.0933333333334 163.2 397.6533333333334C182.4 384 187.0933333333333 357.5466666666667 173.6533333333333 338.1333333333334C160 318.9333333333334 133.5466666666666 314.24 114.1333333333333 327.68M341.3333333333333 42.6666666666667H190.5066666666667C158.9333333333333 42.6666666666667 132.0533333333333 65.7066666666667 127.36 96.8533333333334L85.3333333333333 298.6666666666667H42.6666666666667L85.3333333333333 90.4533333333334C93.2266666666667 38.4 138.0266666666667 0 190.72 0H341.3333333333333M346.24 128H242.1333333333334L220.16 215.4666666666667C253.8666666666667 196.48 290.1333333333334 182.6133333333334 330.0266666666667 189.44V234.6666666666667C295.2533333333334 228.2666666666667 256.6400000000001 240.64 229.9733333333334 261.5466666666667L194.9866666666667 288.64C190.08 292.48 184.5333333333333 295.04 178.7733333333334 296.7466666666667C171.9466666666667 298.6666666666667 164.6933333333333 299.3066666666667 157.6533333333333 298.0266666666667H157.2266666666667C130.9866666666667 293.3333333333334 113.4933333333334 268.3733333333334 117.9733333333334 242.3466666666667L146.7733333333334 116.0533333333334C152.7466666666667 85.3333333333334 178.9866666666667 64 209.7066666666667 64H355.84L437.3333333333333 0L469.3333333333333 32" />
+    <glyph glyph-name="seat-recline-normal"
+      unicode="&#xF482;"
+      horiz-adv-x="512" d=" M161.92 332.5866666666667C145.28 349.2266666666667 145.28 376.32 161.92 392.96C178.56 409.6 205.6533333333333 409.6 222.2933333333333 392.96C238.9333333333333 376.32 238.9333333333333 349.2266666666667 222.2933333333333 332.5866666666667C205.44 315.7333333333334 178.56 315.7333333333334 161.92 332.5866666666667M128 106.6666666666667V298.6666666666667H85.3333333333333V106.6666666666667C85.3333333333333 47.7866666666668 133.12 0 192 0H320V42.6666666666667H192C156.5866666666667 42.6666666666667 128 71.2533333333333 128 106.6666666666667M426.6666666666667 19.84L318.5066666666667 128H245.3333333333333V206.5066666666667C275.2 181.9733333333334 322.1333333333334 160 362.6666666666667 160V206.5066666666667C327.2533333333334 206.08 285.6533333333333 225.0666666666667 263.04 250.0266666666667L233.1733333333333 283.0933333333333C229.12 288 224 291.2 218.4533333333333 293.76C212.2666666666667 296.7466666666667 205.2266666666667 298.6666666666667 197.9733333333334 298.6666666666667H197.3333333333334C170.6666666666667 298.6666666666667 149.3333333333333 277.3333333333334 149.3333333333333 250.6666666666667V128C149.3333333333333 92.5866666666667 177.92 64 213.3333333333333 64H321.4933333333334L396.16 -10.6666666666666" />
+    <glyph glyph-name="security"
+      unicode="&#xF483;"
+      horiz-adv-x="512" d=" M256 192H405.3333333333333C394.0266666666667 104.3200000000001 335.36 26.0266666666666 256 1.7066666666666V192H106.6666666666667V313.6L256 379.9466666666667M256 426.6666666666667L64 341.3333333333334V213.3333333333334C64 94.9333333333333 145.92 -15.5733333333333 256 -42.6666666666666C366.08 -15.5733333333333 448 94.9333333333333 448 213.3333333333334V341.3333333333334L256 426.6666666666667z" />
+    <glyph glyph-name="security-account"
+      unicode="&#xF88E;"
+      horiz-adv-x="512" d=" M256 426.6666666666667L64 341.3333333333334V213.3333333333334C64 94.9333333333333 145.92 -15.7866666666667 256 -42.6666666666666C366.08 -15.7866666666666 448 94.9333333333333 448 213.3333333333334V341.3333333333334L256 426.6666666666667M256 341.3333333333334C291.4133333333333 341.3333333333334 320 312.7466666666667 320 277.3333333333334S291.4133333333333 213.3333333333334 256 213.3333333333334S192 241.92 192 277.3333333333334S220.5866666666667 341.3333333333334 256 341.3333333333334M365.44 85.3333333333334C339.6266666666666 45.8666666666667 301.0133333333333 16.2133333333333 256 1.7066666666666C210.9866666666667 16.2133333333333 172.3733333333333 45.8666666666667 146.56 85.3333333333334C139.3066666666667 96 133.12 106.6666666666667 128 117.9733333333334C128 153.1733333333334 185.8133333333333 181.9733333333334 256 181.9733333333334S384 153.8133333333333 384 117.9733333333334C378.88 106.6666666666667 372.6933333333333 96 365.44 85.3333333333334z" />
+    <glyph glyph-name="security-account-outline"
+      unicode="&#xFA11;"
+      horiz-adv-x="512" d=" M256 426.6666666666667L64 341.3333333333334V213.3333333333334C64 94.9333333333333 145.92 -15.7866666666667 256 -42.6666666666666C366.08 -15.7866666666666 448 94.9333333333333 448 213.3333333333334V341.3333333333334L256 426.6666666666667M256 380.16L405.3333333333333 313.6V208.64C405.3333333333333 172.3733333333333 394.6666666666667 135.4666666666667 376.5333333333333 103.04C341.3333333333333 129.28 282.88 138.6666666666667 256 138.6666666666667C229.12 138.6666666666667 170.6666666666667 129.28 135.4666666666667 103.04C117.3333333333333 135.4666666666667 106.6666666666667 172.3733333333333 106.6666666666667 208.64V313.6L256 380.1600000000001M256 320C214.8266666666667 320 181.3333333333333 286.5066666666667 181.3333333333333 245.3333333333334S214.8266666666667 170.6666666666667 256 170.6666666666667S330.6666666666667 204.16 330.6666666666667 245.3333333333334S297.1733333333333 320 256 320M256 277.3333333333334C273.7066666666667 277.3333333333334 288 263.04 288 245.3333333333334S273.7066666666667 213.3333333333334 256 213.3333333333334S224 227.6266666666667 224 245.3333333333334S238.2933333333333 277.3333333333334 256 277.3333333333334M256 96C289.4933333333334 96 333.6533333333333 82.9866666666667 352.64 67.4133333333334C326.1866666666666 34.5600000000001 292.2666666666667 9.6 256 0C219.7333333333334 9.6 185.8133333333333 34.5600000000001 159.36 67.4133333333334C178.56 82.9866666666667 222.5066666666667 96 256 96z" />
+    <glyph glyph-name="security-close"
+      unicode="&#xF99B;"
+      horiz-adv-x="512" d=" M256 426.6666666666667L64 341.3333333333334V213.3333333333334C64 94.9333333333333 145.92 -15.7866666666667 256 -42.6666666666666C366.08 -15.7866666666666 448 94.9333333333333 448 213.3333333333334V341.3333333333334L256 426.6666666666667M362.6666666666667 115.4133333333334L332.5866666666667 85.3333333333334L256 161.92L179.4133333333333 85.3333333333334L149.3333333333333 115.4133333333334L225.92 192L149.3333333333333 268.5866666666667L179.4133333333333 298.6666666666667L256 222.08L332.5866666666667 298.6666666666667L362.6666666666667 268.5866666666667L286.08 192L362.6666666666667 115.4133333333334z" />
+    <glyph glyph-name="security-home"
+      unicode="&#xF689;"
+      horiz-adv-x="512" d=" M234.6666666666667 170.6666666666667H277.3333333333333V106.6666666666667H341.3333333333333V213.3333333333334H384L256 320L128 213.3333333333334H170.6666666666667V106.6666666666667H234.6666666666667V170.6666666666667M256 426.6666666666667L448 341.3333333333334V213.3333333333334C448 94.9333333333333 366.08 -15.7866666666667 256 -42.6666666666666C145.92 -15.7866666666666 64 94.9333333333333 64 213.3333333333334V341.3333333333334L256 426.6666666666667z" />
+    <glyph glyph-name="security-lock"
+      unicode="&#xF99C;"
+      horiz-adv-x="512" d=" M256 426.6666666666667L64 341.3333333333334V213.3333333333334C64 94.9333333333333 145.92 -15.7866666666667 256 -42.6666666666666C366.08 -15.7866666666666 448 94.9333333333333 448 213.3333333333334V341.3333333333334L256 426.6666666666667M256 298.6666666666667C285.8666666666667 298.6666666666667 315.7333333333334 275.2000000000001 315.7333333333334 245.3333333333334V213.3333333333334C328.5333333333333 213.3333333333334 341.3333333333333 200.5333333333334 341.3333333333333 185.6V110.9333333333333C341.3333333333333 98.1333333333333 328.5333333333333 85.3333333333334 313.6 85.3333333333334H196.2666666666667C183.4666666666667 85.3333333333334 170.6666666666666 98.1333333333334 170.6666666666666 113.0666666666667V187.7333333333334C170.6666666666666 200.5333333333334 183.4666666666667 213.3333333333334 196.2666666666667 213.3333333333334V245.3333333333334C196.2666666666667 275.2000000000001 226.1333333333334 298.6666666666667 256 298.6666666666667M256 273.0666666666667C238.9333333333333 273.0666666666667 224 262.4000000000001 224 245.3333333333334V213.3333333333334H288V245.3333333333334C288 262.4000000000001 273.0666666666667 273.0666666666667 256 273.0666666666667z" />
+    <glyph glyph-name="security-network"
+      unicode="&#xF484;"
+      horiz-adv-x="512" d=" M277.3333333333333 64H298.6666666666667C310.4 64 320 54.4 320 42.6666666666667H469.3333333333333V0H320C320 -11.7333333333333 310.4 -21.3333333333333 298.6666666666667 -21.3333333333333H213.3333333333333C201.6 -21.3333333333333 192 -11.7333333333333 192 0H42.6666666666667V42.6666666666667H192C192 54.4 201.6 64 213.3333333333333 64H234.6666666666667V99.4133333333334C172.16 125.2266666666667 128 192 128 263.04V348.3733333333334L256 405.3333333333333L384 348.3733333333334V263.04C384 192 339.84 125.2266666666667 277.3333333333333 99.4133333333334V64M256 362.6666666666667L170.6666666666667 326.6133333333334V256H256V362.6666666666667M256 256V128C296.7466666666667 138.0266666666667 341.3333333333333 190.72 341.3333333333333 234.6666666666667V256H256z" />
+    <glyph glyph-name="security-off"
+      unicode="&#xF99D;"
+      horiz-adv-x="512" d=" M21.3333333333333 356.9066666666667L48.64 384L437.3333333333333 -4.6933333333333L410.24 -32L362.6666666666667 16C332.16 -12.16 295.8933333333333 -32.8533333333333 256 -42.6666666666666C145.92 -15.7866666666666 64 94.9333333333333 64 213.3333333333334V314.24L21.3333333333333 356.9066666666667M256 426.6666666666667L448 341.3333333333334V213.3333333333334C448 164.6933333333334 434.1333333333334 117.3333333333334 410.24 76.5866666666667L120.5333333333333 366.5066666666667L256 426.6666666666667z" />
+    <glyph glyph-name="select"
+      unicode="&#xF485;"
+      horiz-adv-x="512" d=" M85.3333333333333 384H106.6666666666667V341.3333333333334H64V362.6666666666667C64 374.4 73.6 384 85.3333333333333 384M426.6666666666667 384C438.4 384 448 374.4 448 362.6666666666667V341.3333333333334H405.3333333333333V384H426.6666666666667M320 341.3333333333334V384H362.6666666666667V341.3333333333334H320M234.6666666666667 341.3333333333334V384H277.3333333333333V341.3333333333334H234.6666666666667M149.3333333333333 341.3333333333334V384H192V341.3333333333334H149.3333333333333M448 21.3333333333334C448 9.6 438.4 0 426.6666666666667 0H405.3333333333333V42.6666666666667H448V21.3333333333334M320 0V42.6666666666667H362.6666666666667V0H320M234.6666666666667 0V42.6666666666667H277.3333333333333V0H234.6666666666667M149.3333333333333 0V42.6666666666667H192V0H149.3333333333333M85.3333333333333 0C73.6 0 64 9.6 64 21.3333333333334V42.6666666666667H106.6666666666667V0H85.3333333333333M64 128H106.6666666666667V85.3333333333334H64V128M448 128V85.3333333333334H405.3333333333333V128H448M64 213.3333333333334H106.6666666666667V170.6666666666667H64V213.3333333333334M448 213.3333333333334V170.6666666666667H405.3333333333333V213.3333333333334H448M64 298.6666666666667H106.6666666666667V256H64V298.6666666666667M448 298.6666666666667V256H405.3333333333333V298.6666666666667H448z" />
+    <glyph glyph-name="select-all"
+      unicode="&#xF486;"
+      horiz-adv-x="512" d=" M192 256H320V128H192M149.3333333333333 85.3333333333334H362.6666666666667V298.6666666666667H149.3333333333333M320 341.3333333333334H362.6666666666667V384H320M320 0H362.6666666666667V42.6666666666667H320M405.3333333333333 85.3333333333334H448V128H405.3333333333333M405.3333333333333 256H448V298.6666666666667H405.3333333333333M405.3333333333333 0C428.8 0 448 19.2 448 42.6666666666667H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333M234.6666666666667 0H277.3333333333333V42.6666666666667H234.6666666666667M192 384H149.3333333333333V341.3333333333334H192M64 85.3333333333334H106.6666666666667V128H64M106.6666666666667 0V42.6666666666667H64C64 19.2 83.2 0 106.6666666666667 0M405.3333333333333 384V341.3333333333334H448C448 364.8 428.8 384 405.3333333333333 384M277.3333333333333 384H234.6666666666667V341.3333333333334H277.3333333333333M64 256H106.6666666666667V298.6666666666667H64M149.3333333333333 0H192V42.6666666666667H149.3333333333333M64 170.6666666666667H106.6666666666667V213.3333333333334H64M64 341.3333333333334H106.6666666666667V384C83.2 384 64 364.8 64 341.3333333333334z" />
+    <glyph glyph-name="select-compare"
+      unicode="&#xFAD8;"
+      horiz-adv-x="512" d=" M277.3333333333333 -42.6666666666666H234.6666666666667V426.6666666666667H277.3333333333333V-42.6666666666666M192 42.6666666666667H106.6666666666667V341.3333333333334H192V384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 18.9866666666667 83.2 0 106.6666666666667 0H192V42.6666666666667M405.3333333333333 298.6666666666667V256H448V298.6666666666667H405.3333333333333M405.3333333333333 341.3333333333334H448C448 365.0133333333333 428.8 384 405.3333333333333 384V341.3333333333334M448 128H405.3333333333333V85.3333333333334H448V128M405.3333333333333 213.3333333333334V170.6666666666667H448V213.3333333333334H405.3333333333333M362.6666666666667 384H320V341.3333333333334H362.6666666666667V384M405.3333333333333 0C429.0133333333333 0 448 18.9866666666667 448 42.6666666666667H405.3333333333333V0M362.6666666666667 42.6666666666667H320V0H362.6666666666667V42.6666666666667z" />
+    <glyph glyph-name="select-drag"
+      unicode="&#xFA6B;"
+      horiz-adv-x="512" d=" M277.3333333333333 85.3333333333334H362.6666666666667V170.6666666666667H405.3333333333333V85.3333333333334H490.6666666666666V42.6666666666667H405.3333333333333V-42.6666666666666H362.6666666666667V42.6666666666667H277.3333333333333V85.3333333333334M234.6666666666667 85.3333333333334V42.6666666666667H192V85.3333333333334H234.6666666666667M149.3333333333333 85.3333333333334V42.6666666666667H106.6666666666667V85.3333333333334H149.3333333333333M405.3333333333333 256V213.3333333333334H362.6666666666667V256H405.3333333333333M405.3333333333333 341.3333333333334V298.6666666666667H362.6666666666667V341.3333333333334H405.3333333333333M320 341.3333333333334V298.6666666666667H277.3333333333333V341.3333333333334H320M234.6666666666667 341.3333333333334V298.6666666666667H192V341.3333333333334H234.6666666666667M149.3333333333333 341.3333333333334V298.6666666666667H106.6666666666667V341.3333333333334H149.3333333333333M149.3333333333333 170.6666666666667V128H106.6666666666667V170.6666666666667H149.3333333333333M149.3333333333333 256V213.3333333333334H106.6666666666667V256H149.3333333333333z" />
+    <glyph glyph-name="select-inverse"
+      unicode="&#xF487;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H149.3333333333333V341.3333333333334H192V384H234.6666666666667V341.3333333333334H277.3333333333333V384H320V341.3333333333334H362.6666666666667V384H405.3333333333333V341.3333333333334H448V298.6666666666667H405.3333333333333V256H448V213.3333333333334H405.3333333333333V170.6666666666667H448V128H405.3333333333333V85.3333333333334H448V42.6666666666667H405.3333333333333V0H362.6666666666667V42.6666666666667H320V0H277.3333333333333V42.6666666666667H234.6666666666667V0H192V42.6666666666667H149.3333333333333V0H106.6666666666667V42.6666666666667H64V85.3333333333334H106.6666666666667V128H64V170.6666666666667H106.6666666666667V213.3333333333334H64V256H106.6666666666667V298.6666666666667H64V341.3333333333334H106.6666666666667V384z" />
+    <glyph glyph-name="select-off"
+      unicode="&#xF488;"
+      horiz-adv-x="512" d=" M21.3333333333333 356.9066666666667L48.64 384L448 -15.36L420.9066666666667 -42.6666666666666L362.6666666666667 15.5733333333334V0H320V42.6666666666667H335.5733333333333L106.6666666666667 271.5733333333334V256H64V298.6666666666667H79.5733333333333L21.3333333333333 356.9066666666667M426.6666666666667 384C438.4 384 448 374.4 448 362.6666666666667V341.3333333333334H405.3333333333333V384H426.6666666666667M320 341.3333333333334V384H362.6666666666667V341.3333333333334H320M234.6666666666667 341.3333333333334V384H277.3333333333333V341.3333333333334H234.6666666666667M149.3333333333333 341.3333333333334V384H192V341.3333333333334H149.3333333333333M234.6666666666667 0V42.6666666666667H277.3333333333333V0H234.6666666666667M149.3333333333333 0V42.6666666666667H192V0H149.3333333333333M85.3333333333333 0C73.6 0 64 9.6 64 21.3333333333334V42.6666666666667H106.6666666666667V0H85.3333333333333M64 128H106.6666666666667V85.3333333333334H64V128M448 128V85.3333333333334H405.3333333333333V128H448M64 213.3333333333334H106.6666666666667V170.6666666666667H64V213.3333333333334M448 213.3333333333334V170.6666666666667H405.3333333333333V213.3333333333334H448M448 298.6666666666667V256H405.3333333333333V298.6666666666667H448z" />
+    <glyph glyph-name="selection"
+      unicode="&#xF489;"
+      horiz-adv-x="512" d=" M42.6666666666667 362.6666666666667C42.6666666666667 386.3466666666667 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333H149.3333333333333V362.6666666666667H85.3333333333333V298.6666666666667H42.6666666666667V362.6666666666667M469.3333333333333 362.6666666666667V298.6666666666667H426.6666666666667V362.6666666666667H362.6666666666667V405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667M426.6666666666667 21.3333333333334V85.3333333333334H469.3333333333333V21.3333333333334C469.3333333333333 -2.3466666666666 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H362.6666666666667V21.3333333333334H426.6666666666667M42.6666666666667 21.3333333333334V85.3333333333334H85.3333333333333V21.3333333333334H149.3333333333333V-21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334M213.3333333333333 405.3333333333333H298.6666666666667V362.6666666666667H213.3333333333333V405.3333333333333M213.3333333333333 21.3333333333334H298.6666666666667V-21.3333333333333H213.3333333333333V21.3333333333334M426.6666666666667 234.6666666666667H469.3333333333333V149.3333333333334H426.6666666666667V234.6666666666667M42.6666666666667 234.6666666666667H85.3333333333333V149.3333333333334H42.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="selection-drag"
+      unicode="&#xFA6C;"
+      horiz-adv-x="512" d=" M298.6666666666667 85.3333333333334H362.6666666666667V149.3333333333334H405.3333333333333V85.3333333333334H469.3333333333333V42.6666666666667H405.3333333333333V-21.3333333333333H362.6666666666667V42.6666666666667H298.6666666666667V85.3333333333334M256 85.3333333333334V42.6666666666667H192V85.3333333333334H256M149.3333333333333 85.3333333333334V42.6666666666667H64V128H106.6666666666667V85.3333333333334H149.3333333333333M64 170.6666666666667V234.6666666666667H106.6666666666667V170.6666666666667H64M64 277.3333333333334V362.6666666666667H149.3333333333333V320H106.6666666666667V277.3333333333334H64M192 362.6666666666667H256V320H192V362.6666666666667M320 362.6666666666667H405.3333333333333V277.3333333333334H362.6666666666667V320H320V362.6666666666667M405.3333333333333 234.6666666666667V192H362.6666666666667V234.6666666666667H405.3333333333333z" />
+    <glyph glyph-name="selection-off"
+      unicode="&#xF776;"
+      horiz-adv-x="512" d=" M10.6666666666667 367.5733333333333L37.9733333333333 394.6666666666667L458.6666666666666 -26.0266666666666L431.5733333333333 -53.3333333333333L399.5733333333333 -21.3333333333333H362.6666666666667V15.5733333333334L79.5733333333333 298.6666666666667H42.6666666666667V335.5733333333334L10.6666666666667 367.5733333333333M85.3333333333333 405.3333333333333H149.3333333333333V362.6666666666667H124.16L81.7066666666667 405.3333333333333H85.3333333333333M469.3333333333333 362.6666666666667V298.6666666666667H426.6666666666667V362.6666666666667H362.6666666666667V405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667M426.6666666666667 85.3333333333334H469.3333333333333V17.7066666666667L426.6666666666667 60.16V85.3333333333334M42.6666666666667 21.3333333333334V85.3333333333334H85.3333333333333V21.3333333333334H149.3333333333333V-21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334M213.3333333333333 405.3333333333333H298.6666666666667V362.6666666666667H213.3333333333333V405.3333333333333M213.3333333333333 21.3333333333334H298.6666666666667V-21.3333333333333H213.3333333333333V21.3333333333334M426.6666666666667 234.6666666666667H469.3333333333333V149.3333333333334H426.6666666666667V234.6666666666667M42.6666666666667 234.6666666666667H85.3333333333333V149.3333333333334H42.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="send"
+      unicode="&#xF48A;"
+      horiz-adv-x="512" d=" M42.6666666666667 0L490.6666666666666 192L42.6666666666667 384V234.6666666666667L362.6666666666667 192L42.6666666666667 149.3333333333334V0z" />
+    <glyph glyph-name="send-lock"
+      unicode="&#xF7EC;"
+      horiz-adv-x="512" d=" M490.6666666666666 64V74.6666666666667C490.6666666666666 104.1066666666667 466.7733333333333 128 437.3333333333333 128S384 104.1066666666667 384 74.6666666666667V64C372.2666666666667 64 362.6666666666667 54.4 362.6666666666667 42.6666666666667V-42.6666666666666C362.6666666666667 -54.4 372.2666666666667 -64 384 -64H490.6666666666666C502.4 -64 512 -54.4 512 -42.6666666666666V42.6666666666667C512 54.4 502.4 64 490.6666666666666 64M469.3333333333333 64H405.3333333333333V74.6666666666667C405.3333333333333 92.3733333333333 419.6266666666667 106.6666666666667 437.3333333333333 106.6666666666667S469.3333333333333 92.3733333333333 469.3333333333333 74.6666666666667V64M490.6666666666666 192L42.6666666666667 0V149.3333333333334L362.6666666666667 192L42.6666666666667 234.6666666666667V384L490.6666666666666 192z" />
+    <glyph glyph-name="serial-port"
+      unicode="&#xF65C;"
+      horiz-adv-x="512" d=" M149.3333333333333 384H362.6666666666667V341.3333333333334H405.3333333333333V277.3333333333334H341.3333333333333V149.3333333333334H170.6666666666667V277.3333333333334H106.6666666666667V341.3333333333334H149.3333333333333V384M362.6666666666667 256H405.3333333333333V149.3333333333334H362.6666666666667V256M234.6666666666667 128H277.3333333333333V-21.3333333333333H234.6666666666667V128M106.6666666666667 256H149.3333333333333V149.3333333333334H106.6666666666667V256z" />
+    <glyph glyph-name="server"
+      unicode="&#xF48B;"
+      horiz-adv-x="512" d=" M85.3333333333333 426.6666666666667H426.6666666666667C438.4 426.6666666666667 448 417.0666666666667 448 405.3333333333333V320C448 308.2666666666667 438.4 298.6666666666667 426.6666666666667 298.6666666666667H85.3333333333333C73.6 298.6666666666667 64 308.2666666666667 64 320V405.3333333333333C64 417.0666666666667 73.6 426.6666666666667 85.3333333333333 426.6666666666667M85.3333333333333 256H426.6666666666667C438.4 256 448 246.4000000000001 448 234.6666666666667V149.3333333333334C448 137.6 438.4 128 426.6666666666667 128H85.3333333333333C73.6 128 64 137.6 64 149.3333333333334V234.6666666666667C64 246.4000000000001 73.6 256 85.3333333333333 256M85.3333333333333 85.3333333333334H426.6666666666667C438.4 85.3333333333334 448 75.7333333333334 448 64V-21.3333333333333C448 -33.0666666666667 438.4 -42.6666666666666 426.6666666666667 -42.6666666666666H85.3333333333333C73.6 -42.6666666666666 64 -33.0666666666667 64 -21.3333333333333V64C64 75.7333333333334 73.6 85.3333333333334 85.3333333333333 85.3333333333334M192 341.3333333333334H213.3333333333333V384H192V341.3333333333334M192 170.6666666666667H213.3333333333333V213.3333333333334H192V170.6666666666667M192 0H213.3333333333333V42.6666666666667H192V0M106.6666666666667 384V341.3333333333334H149.3333333333333V384H106.6666666666667M106.6666666666667 213.3333333333334V170.6666666666667H149.3333333333333V213.3333333333334H106.6666666666667M106.6666666666667 42.6666666666667V0H149.3333333333333V42.6666666666667H106.6666666666667z" />
+    <glyph glyph-name="server-minus"
+      unicode="&#xF48C;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H426.6666666666667C438.4 362.6666666666667 448 353.0666666666667 448 341.3333333333334V256C448 244.2666666666667 438.4 234.6666666666667 426.6666666666667 234.6666666666667H85.3333333333333C73.6 234.6666666666667 64 244.2666666666667 64 256V341.3333333333334C64 353.0666666666667 73.6 362.6666666666667 85.3333333333333 362.6666666666667M192 277.3333333333334H213.3333333333333V320H192V277.3333333333334M106.6666666666667 320V277.3333333333334H149.3333333333333V320H106.6666666666667M170.6666666666667 106.6666666666667H341.3333333333333V64H170.6666666666667V106.6666666666667z" />
+    <glyph glyph-name="server-network"
+      unicode="&#xF48D;"
+      horiz-adv-x="512" d=" M277.3333333333333 64H298.6666666666667C310.4 64 320 54.4 320 42.6666666666667H469.3333333333333V0H320C320 -11.7333333333333 310.4 -21.3333333333333 298.6666666666667 -21.3333333333333H213.3333333333333C201.6 -21.3333333333333 192 -11.7333333333333 192 0H42.6666666666667V42.6666666666667H192C192 54.4 201.6 64 213.3333333333333 64H234.6666666666667V106.6666666666667H85.3333333333333C73.6 106.6666666666667 64 116.2666666666667 64 128V213.3333333333334C64 225.0666666666667 73.6 234.6666666666667 85.3333333333333 234.6666666666667H426.6666666666667C438.4 234.6666666666667 448 225.0666666666667 448 213.3333333333334V128C448 116.2666666666667 438.4 106.6666666666667 426.6666666666667 106.6666666666667H277.3333333333333V64M85.3333333333333 405.3333333333333H426.6666666666667C438.4 405.3333333333333 448 395.7333333333334 448 384V298.6666666666667C448 286.9333333333334 438.4 277.3333333333334 426.6666666666667 277.3333333333334H85.3333333333333C73.6 277.3333333333334 64 286.9333333333334 64 298.6666666666667V384C64 395.7333333333334 73.6 405.3333333333333 85.3333333333333 405.3333333333333M192 320H213.3333333333333V362.6666666666667H192V320M192 149.3333333333334H213.3333333333333V192H192V149.3333333333334M106.6666666666667 362.6666666666667V320H149.3333333333333V362.6666666666667H106.6666666666667M106.6666666666667 192V149.3333333333334H149.3333333333333V192H106.6666666666667z" />
+    <glyph glyph-name="server-network-off"
+      unicode="&#xF48E;"
+      horiz-adv-x="512" d=" M277.3333333333333 64H298.6666666666667C310.4 64 320 54.4 320 42.6666666666667H335.5733333333333L277.3333333333333 100.9066666666667V64M469.3333333333333 42.6666666666667V17.4933333333333L444.16 42.6666666666667H469.3333333333333M448 -15.36L420.9066666666667 -42.6666666666666L378.24 0H320C320 -11.7333333333333 310.4 -21.3333333333333 298.6666666666667 -21.3333333333333H213.3333333333333C201.6 -21.3333333333333 192 -11.7333333333333 192 0H42.6666666666667V42.6666666666667H192C192 54.4 201.6 64 213.3333333333333 64H234.6666666666667V106.6666666666667H85.3333333333333C73.6 106.6666666666667 64 116.2666666666667 64 128V213.3333333333334C64 225.0666666666667 73.6 234.6666666666667 85.3333333333333 234.6666666666667H143.5733333333333L100.9066666666667 277.3333333333334H85.3333333333333C73.6 277.3333333333334 64 286.9333333333334 64 298.6666666666667V314.24L21.3333333333333 356.9066666666667L48.64 384L448 -15.36M85.3333333333333 405.3333333333333H426.6666666666667C438.4 405.3333333333333 448 395.7333333333334 448 384V298.6666666666667C448 286.9333333333334 438.4 277.3333333333334 426.6666666666667 277.3333333333334H209.4933333333334L149.3333333333333 337.4933333333334V362.6666666666667H124.16L81.92 405.3333333333333H85.3333333333333M426.6666666666667 234.6666666666667C438.4 234.6666666666667 448 225.0666666666667 448 213.3333333333334V128C448 116.2666666666667 438.4 106.6666666666667 426.6666666666667 106.6666666666667H380.16L252.16 234.6666666666667H426.6666666666667M192 320H213.3333333333333V362.6666666666667H192V320M192 149.3333333333334H213.3333333333333V164.9066666666667L192 186.24V149.3333333333334M106.6666666666667 192V149.3333333333334H149.3333333333333V192H106.6666666666667z" />
+    <glyph glyph-name="server-off"
+      unicode="&#xF48F;"
+      horiz-adv-x="512" d=" M85.3333333333333 426.6666666666667H426.6666666666667C438.4 426.6666666666667 448 417.0666666666667 448 405.3333333333333V320C448 308.2666666666667 438.4 298.6666666666667 426.6666666666667 298.6666666666667H188.16L145.4933333333334 341.3333333333334H149.3333333333333V384H106.6666666666667V380.16L68.48 418.3466666666667C72.32 423.4666666666667 78.5066666666667 426.6666666666667 85.3333333333333 426.6666666666667M469.3333333333333 -36.6933333333333L442.24 -64L420.9066666666667 -42.6666666666666H85.3333333333333C73.6 -42.6666666666666 64 -33.0666666666667 64 -21.3333333333333V64C64 75.7333333333334 73.6 85.3333333333334 85.3333333333333 85.3333333333334H292.9066666666667L250.24 128H85.3333333333333C73.6 128 64 137.6 64 149.3333333333334V234.6666666666667C64 246.4000000000001 73.6 256 85.3333333333333 256H122.24L78.5066666666667 299.7333333333334C72.1066666666667 301.8666666666667 67.2 306.7733333333333 65.0666666666667 313.1733333333334L21.3333333333333 356.9066666666667L48.64 384L469.3333333333333 -36.6933333333333M426.6666666666667 256C438.4 256 448 246.4000000000001 448 234.6666666666667V149.3333333333334C448 137.6 438.4 128 426.6666666666667 128H358.8266666666667L230.8266666666667 256H426.6666666666667M426.6666666666667 85.3333333333334C438.4 85.3333333333334 448 75.7333333333334 448 64V38.8266666666667L401.4933333333334 85.3333333333334H426.6666666666667M192 341.3333333333334H213.3333333333333V384H192V341.3333333333334M192 170.6666666666667H207.5733333333333L192 186.24V170.6666666666667M192 0H213.3333333333333V42.6666666666667H192V0M106.6666666666667 213.3333333333334V170.6666666666667H149.3333333333333V213.3333333333334H106.6666666666667M106.6666666666667 42.6666666666667V0H149.3333333333333V42.6666666666667H106.6666666666667z" />
+    <glyph glyph-name="server-plus"
+      unicode="&#xF490;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H426.6666666666667C438.4 362.6666666666667 448 353.0666666666667 448 341.3333333333334V256C448 244.2666666666667 438.4 234.6666666666667 426.6666666666667 234.6666666666667H85.3333333333333C73.6 234.6666666666667 64 244.2666666666667 64 256V341.3333333333334C64 353.0666666666667 73.6 362.6666666666667 85.3333333333333 362.6666666666667M192 277.3333333333334H213.3333333333333V320H192V277.3333333333334M106.6666666666667 320V277.3333333333334H149.3333333333333V320H106.6666666666667M170.6666666666667 106.6666666666667H234.6666666666667V170.6666666666667H277.3333333333333V106.6666666666667H341.3333333333333V64H277.3333333333333V0H234.6666666666667V64H170.6666666666667V106.6666666666667z" />
+    <glyph glyph-name="server-remove"
+      unicode="&#xF491;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H426.6666666666667C438.4 362.6666666666667 448 353.0666666666667 448 341.3333333333334V256C448 244.2666666666667 438.4 234.6666666666667 426.6666666666667 234.6666666666667H85.3333333333333C73.6 234.6666666666667 64 244.2666666666667 64 256V341.3333333333334C64 353.0666666666667 73.6 362.6666666666667 85.3333333333333 362.6666666666667M192 277.3333333333334H213.3333333333333V320H192V277.3333333333334M106.6666666666667 320V277.3333333333334H149.3333333333333V320H106.6666666666667M225.92 85.3333333333334L170.6666666666667 140.5866666666667L200.7466666666667 170.6666666666667L256 115.4133333333334L311.2533333333334 170.6666666666667L341.3333333333333 140.5866666666667L286.08 85.3333333333334L341.3333333333333 30.08L311.2533333333334 0L256 55.2533333333333L200.7466666666667 0L170.6666666666667 30.08L225.92 85.3333333333334z" />
+    <glyph glyph-name="server-security"
+      unicode="&#xF492;"
+      horiz-adv-x="512" d=" M64 426.6666666666667H405.3333333333333C417.0666666666667 426.6666666666667 426.6666666666667 417.0666666666667 426.6666666666667 405.3333333333333V320C426.6666666666667 308.2666666666667 417.0666666666667 298.6666666666667 405.3333333333333 298.6666666666667H64C52.2666666666667 298.6666666666667 42.6666666666667 308.2666666666667 42.6666666666667 320V405.3333333333333C42.6666666666667 417.0666666666667 52.2666666666667 426.6666666666667 64 426.6666666666667M64 256H405.3333333333333C417.0666666666667 256 426.6666666666667 246.4000000000001 426.6666666666667 234.6666666666667V220.3733333333333L373.3333333333333 244.0533333333334L234.6666666666667 182.6133333333334V128H64C52.2666666666667 128 42.6666666666667 137.6 42.6666666666667 149.3333333333334V234.6666666666667C42.6666666666667 246.4000000000001 52.2666666666667 256 64 256M64 85.3333333333334H234.6666666666667C235.9466666666667 37.3333333333334 256 -8.5333333333333 287.1466666666667 -42.6666666666666H64C52.2666666666667 -42.6666666666666 42.6666666666667 -33.0666666666667 42.6666666666667 -21.3333333333333V64C42.6666666666667 75.7333333333334 52.2666666666667 85.3333333333334 64 85.3333333333334M170.6666666666667 341.3333333333334H192V384H170.6666666666667V341.3333333333334M170.6666666666667 170.6666666666667H192V213.3333333333334H170.6666666666667V170.6666666666667M170.6666666666667 0H192V42.6666666666667H170.6666666666667V0M85.3333333333333 384V341.3333333333334H128V384H85.3333333333333M85.3333333333333 213.3333333333334V170.6666666666667H128V213.3333333333334H85.3333333333333M85.3333333333333 42.6666666666667V0H128V42.6666666666667H85.3333333333333M373.3333333333333 192L469.3333333333333 149.3333333333334V85.3333333333334C469.3333333333333 26.0266666666666 428.3733333333333 -29.2266666666667 373.3333333333333 -42.6666666666666C318.2933333333333 -29.2266666666667 277.3333333333333 26.0266666666666 277.3333333333333 85.3333333333334V149.3333333333334L373.3333333333333 192M373.3333333333333 150.6133333333334L320 126.72V69.9733333333334C320 37.1200000000001 342.8266666666667 6.4 373.3333333333333 -1.28V150.6133333333334z" />
+    <glyph glyph-name="set-all"
+      unicode="&#xF777;"
+      horiz-adv-x="512" d=" M192 341.3333333333334C214.1866666666667 341.3333333333334 235.9466666666667 336.2133333333334 256 326.8266666666667C276.0533333333333 336.2133333333334 297.8133333333334 341.3333333333334 320 341.3333333333334C402.56 341.3333333333334 469.3333333333333 274.5600000000001 469.3333333333333 192S402.56 42.6666666666667 320 42.6666666666667C297.8133333333334 42.6666666666667 276.0533333333333 47.7866666666666 256 57.1733333333334C235.9466666666667 47.7866666666666 214.1866666666667 42.6666666666667 192 42.6666666666667C109.44 42.6666666666667 42.6666666666667 109.44 42.6666666666667 192S109.44 341.3333333333334 192 341.3333333333334M181.3333333333333 192C181.3333333333333 152.1066666666667 198.1866666666667 116.0533333333334 225.28 90.6666666666667L246.6133333333334 100.48C219.9466666666667 121.8133333333334 202.6666666666667 154.8800000000001 202.6666666666667 192C202.6666666666667 229.12 219.9466666666667 262.1866666666667 246.6133333333334 283.52L225.28 293.3333333333334C198.1866666666667 267.9466666666667 181.3333333333333 231.8933333333333 181.3333333333333 192M330.6666666666667 192C330.6666666666667 231.8933333333334 313.8133333333334 267.9466666666667 286.72 293.3333333333334L265.3866666666667 283.52C292.0533333333333 262.1866666666667 309.3333333333333 229.12 309.3333333333333 192C309.3333333333333 154.88 292.0533333333333 121.8133333333334 265.3866666666667 100.48L286.72 90.6666666666667C313.8133333333333 116.0533333333334 330.6666666666667 152.1066666666667 330.6666666666667 192z" />
+    <glyph glyph-name="set-center"
+      unicode="&#xF778;"
+      horiz-adv-x="512" d=" M192 341.3333333333334C109.44 341.3333333333334 42.6666666666667 274.5600000000001 42.6666666666667 192S109.44 42.6666666666667 192 42.6666666666667C214.1866666666667 42.6666666666667 235.9466666666667 47.7866666666666 256 57.1733333333334C276.0533333333333 47.7866666666666 297.8133333333334 42.6666666666667 320 42.6666666666667C402.56 42.6666666666667 469.3333333333333 109.44 469.3333333333333 192S402.56 341.3333333333334 320 341.3333333333334C297.8133333333334 341.3333333333334 276.0533333333333 336.2133333333334 256 326.8266666666667C235.9466666666667 336.2133333333334 214.1866666666667 341.3333333333334 192 341.3333333333334M192 298.6666666666667C199.2533333333333 298.6666666666667 206.2933333333333 298.0266666666667 213.3333333333333 296.5333333333334C186.0266666666667 268.5866666666667 170.6666666666667 231.04 170.6666666666667 192C170.6666666666667 152.96 186.0266666666667 115.4133333333334 213.3333333333333 87.68C206.2933333333333 86.1866666666667 199.2533333333333 85.3333333333334 192 85.3333333333334C133.12 85.3333333333334 85.3333333333333 133.12 85.3333333333333 192S133.12 298.6666666666667 192 298.6666666666667M320 298.6666666666667C378.88 298.6666666666667 426.6666666666667 250.88 426.6666666666667 192S378.88 85.3333333333334 320 85.3333333333334C312.7466666666667 85.3333333333334 305.7066666666667 85.9733333333334 298.6666666666667 87.4666666666667C325.9733333333333 115.4133333333334 341.3333333333333 152.96 341.3333333333333 192.0000000000001C341.3333333333333 231.0400000000001 325.9733333333333 268.5866666666667 298.6666666666667 296.3200000000001C305.7066666666667 297.8133333333334 312.7466666666667 298.6666666666668 320 298.6666666666668z" />
+    <glyph glyph-name="set-center-right"
+      unicode="&#xF779;"
+      horiz-adv-x="512" d=" M320 42.6666666666667C297.8133333333334 42.6666666666667 276.0533333333333 47.7866666666666 256 57.1733333333334C235.9466666666667 47.7866666666666 214.1866666666667 42.6666666666667 192 42.6666666666667C109.44 42.6666666666667 42.6666666666667 109.44 42.6666666666667 192S109.44 341.3333333333334 192 341.3333333333334C214.1866666666667 341.3333333333334 235.9466666666667 336.2133333333334 256 326.8266666666667C276.0533333333333 336.2133333333334 297.8133333333334 341.3333333333334 320 341.3333333333334C402.56 341.3333333333334 469.3333333333333 274.5600000000001 469.3333333333333 192S402.56 42.6666666666667 320 42.6666666666667M192 85.3333333333334L213.3333333333333 87.68C186.0266666666667 115.4133333333334 170.6666666666667 152.96 170.6666666666667 192C170.6666666666667 231.04 186.0266666666667 268.5866666666667 213.3333333333333 296.5333333333334L192 298.6666666666667C133.12 298.6666666666667 85.3333333333333 250.88 85.3333333333333 192S133.12 85.3333333333334 192 85.3333333333334M330.6666666666667 192C330.6666666666667 231.8933333333334 313.8133333333334 267.9466666666667 286.72 293.3333333333334L265.3866666666667 283.52C292.0533333333333 262.1866666666667 309.3333333333333 229.12 309.3333333333333 192C309.3333333333333 154.88 292.0533333333333 121.8133333333334 265.3866666666667 100.48L286.72 90.6666666666667C313.8133333333333 116.0533333333334 330.6666666666667 152.1066666666667 330.6666666666667 192z" />
+    <glyph glyph-name="set-left"
+      unicode="&#xF77A;"
+      horiz-adv-x="512" d=" M192 341.3333333333334C109.44 341.3333333333334 42.6666666666667 274.5600000000001 42.6666666666667 192S109.44 42.6666666666667 192 42.6666666666667C214.1866666666667 42.6666666666667 235.9466666666667 47.7866666666666 256 57.1733333333334C276.0533333333333 47.7866666666666 297.8133333333334 42.6666666666667 320 42.6666666666667C402.56 42.6666666666667 469.3333333333333 109.44 469.3333333333333 192S402.56 341.3333333333334 320 341.3333333333334C297.8133333333334 341.3333333333334 276.0533333333333 336.2133333333334 256 326.8266666666667C235.9466666666667 336.2133333333334 214.1866666666667 341.3333333333334 192 341.3333333333334M320 298.6666666666667C378.88 298.6666666666667 426.6666666666667 250.88 426.6666666666667 192S378.88 85.3333333333334 320 85.3333333333334C312.7466666666667 85.3333333333334 305.7066666666667 85.9733333333334 298.6666666666667 87.4666666666667C325.9733333333333 115.4133333333334 341.3333333333333 152.96 341.3333333333333 192.0000000000001C341.3333333333333 231.0400000000001 325.9733333333333 268.5866666666667 298.6666666666667 296.3200000000001C305.7066666666667 297.8133333333334 312.7466666666667 298.6666666666668 320 298.6666666666668M256 277.3333333333334C282.88 257.0666666666667 298.6666666666667 225.4933333333334 298.6666666666667 192.0000000000001C298.6666666666667 158.5066666666667 282.88 126.9333333333334 256 106.6666666666667C229.12 126.9333333333334 213.3333333333333 158.5066666666667 213.3333333333333 192.0000000000001C213.3333333333333 225.4933333333334 229.12 257.0666666666667 256 277.3333333333334z" />
+    <glyph glyph-name="set-left-center"
+      unicode="&#xF77B;"
+      horiz-adv-x="512" d=" M192 341.3333333333334C214.1866666666667 341.3333333333334 235.9466666666667 336.2133333333334 256 326.8266666666667C276.0533333333333 336.2133333333334 297.8133333333334 341.3333333333334 320 341.3333333333334C402.56 341.3333333333334 469.3333333333333 274.5600000000001 469.3333333333333 192S402.56 42.6666666666667 320 42.6666666666667C297.8133333333334 42.6666666666667 276.0533333333333 47.7866666666666 256 57.1733333333334C235.9466666666667 47.7866666666666 214.1866666666667 42.6666666666667 192 42.6666666666667C109.44 42.6666666666667 42.6666666666667 109.44 42.6666666666667 192S109.44 341.3333333333334 192 341.3333333333334M320 298.6666666666667L298.6666666666667 296.32C325.9733333333333 268.5866666666667 341.3333333333333 231.04 341.3333333333333 192C341.3333333333333 152.96 325.9733333333333 115.4133333333334 298.6666666666667 87.4666666666667L320 85.3333333333334C378.88 85.3333333333334 426.6666666666667 133.12 426.6666666666667 192S378.88 298.6666666666667 320 298.6666666666667M181.3333333333333 192C181.3333333333333 152.1066666666667 198.1866666666667 116.0533333333334 225.28 90.6666666666667L246.6133333333334 100.48C219.9466666666667 121.8133333333334 202.6666666666667 154.8800000000001 202.6666666666667 192C202.6666666666667 229.12 219.9466666666667 262.1866666666667 246.6133333333334 283.52L225.28 293.3333333333334C198.1866666666667 267.9466666666667 181.3333333333333 231.8933333333333 181.3333333333333 192z" />
+    <glyph glyph-name="set-left-right"
+      unicode="&#xF77C;"
+      horiz-adv-x="512" d=" M192 341.3333333333334C214.1866666666667 341.3333333333334 235.9466666666667 336.2133333333334 256 326.8266666666667C276.0533333333333 336.2133333333334 297.8133333333334 341.3333333333334 320 341.3333333333334C402.56 341.3333333333334 469.3333333333333 274.5600000000001 469.3333333333333 192S402.56 42.6666666666667 320 42.6666666666667C297.8133333333334 42.6666666666667 276.0533333333333 47.7866666666666 256 57.1733333333334C235.9466666666667 47.7866666666666 214.1866666666667 42.6666666666667 192 42.6666666666667C109.44 42.6666666666667 42.6666666666667 109.44 42.6666666666667 192S109.44 341.3333333333334 192 341.3333333333334M192 192C192 144.64 217.8133333333333 103.2533333333333 256 81.0666666666667C294.1866666666666 103.2533333333333 320 144.6400000000001 320 192S294.1866666666666 280.7466666666667 256 302.9333333333334C217.8133333333333 280.7466666666667 192 239.36 192 192z" />
+    <glyph glyph-name="set-none"
+      unicode="&#xF77D;"
+      horiz-adv-x="512" d=" M192 341.3333333333334C109.44 341.3333333333334 42.6666666666667 274.5600000000001 42.6666666666667 192S109.44 42.6666666666667 192 42.6666666666667C214.1866666666667 42.6666666666667 235.9466666666667 47.7866666666666 256 57.1733333333334C276.0533333333333 47.7866666666666 297.8133333333334 42.6666666666667 320 42.6666666666667C402.56 42.6666666666667 469.3333333333333 109.44 469.3333333333333 192S402.56 341.3333333333334 320 341.3333333333334C297.8133333333334 341.3333333333334 276.0533333333333 336.2133333333334 256 326.8266666666667C235.9466666666667 336.2133333333334 214.1866666666667 341.3333333333334 192 341.3333333333334M192 298.6666666666667C199.2533333333333 298.6666666666667 206.2933333333333 298.0266666666667 213.3333333333333 296.5333333333334C186.0266666666667 268.5866666666667 170.6666666666667 231.04 170.6666666666667 192C170.6666666666667 152.96 186.0266666666667 115.4133333333334 213.3333333333333 87.68C206.2933333333333 86.1866666666667 199.2533333333333 85.3333333333334 192 85.3333333333334C133.12 85.3333333333334 85.3333333333333 133.12 85.3333333333333 192S133.12 298.6666666666667 192 298.6666666666667M320 298.6666666666667C378.88 298.6666666666667 426.6666666666667 250.88 426.6666666666667 192S378.88 85.3333333333334 320 85.3333333333334C312.7466666666667 85.3333333333334 305.7066666666667 85.9733333333334 298.6666666666667 87.4666666666667C325.9733333333333 115.4133333333334 341.3333333333333 152.96 341.3333333333333 192.0000000000001C341.3333333333333 231.0400000000001 325.9733333333333 268.5866666666667 298.6666666666667 296.3200000000001C305.7066666666667 297.8133333333334 312.7466666666667 298.6666666666668 320 298.6666666666668M256 277.3333333333334C282.88 257.0666666666667 298.6666666666667 225.4933333333334 298.6666666666667 192.0000000000001C298.6666666666667 158.5066666666667 282.88 126.9333333333334 256 106.6666666666667C229.12 126.9333333333334 213.3333333333333 158.5066666666667 213.3333333333333 192.0000000000001C213.3333333333333 225.4933333333334 229.12 257.0666666666667 256 277.3333333333334z" />
+    <glyph glyph-name="set-right"
+      unicode="&#xF77E;"
+      horiz-adv-x="512" d=" M320 42.6666666666667C297.8133333333334 42.6666666666667 276.0533333333333 47.7866666666666 256 57.1733333333334C235.9466666666667 47.7866666666666 214.1866666666667 42.6666666666667 192 42.6666666666667C109.44 42.6666666666667 42.6666666666667 109.44 42.6666666666667 192S109.44 341.3333333333334 192 341.3333333333334C214.1866666666667 341.3333333333334 235.9466666666667 336.2133333333334 256 326.8266666666667C276.0533333333333 336.2133333333334 297.8133333333334 341.3333333333334 320 341.3333333333334C402.56 341.3333333333334 469.3333333333333 274.5600000000001 469.3333333333333 192S402.56 42.6666666666667 320 42.6666666666667M192 85.3333333333334L213.3333333333333 87.68C186.0266666666667 115.4133333333334 170.6666666666667 152.96 170.6666666666667 192C170.6666666666667 231.04 186.0266666666667 268.5866666666667 213.3333333333333 296.5333333333334L192 298.6666666666667C133.12 298.6666666666667 85.3333333333333 250.88 85.3333333333333 192S133.12 85.3333333333334 192 85.3333333333334M256 106.6666666666667C282.88 126.9333333333333 298.6666666666667 158.5066666666667 298.6666666666667 192C298.6666666666667 225.4933333333334 282.88 257.0666666666667 256 277.3333333333334C229.12 257.0666666666667 213.3333333333333 225.4933333333334 213.3333333333333 192C213.3333333333333 158.5066666666667 229.12 126.9333333333333 256 106.6666666666667z" />
+    <glyph glyph-name="set-top-box"
+      unicode="&#xF99E;"
+      horiz-adv-x="512" d=" M106.6666666666667 117.3333333333334C106.6666666666667 111.36 101.9733333333333 106.6666666666667 96 106.6666666666667H74.6666666666667C68.6933333333333 106.6666666666667 64 111.36 64 117.3333333333334V128H42.6666666666667C30.9333333333333 128 21.3333333333333 137.6 21.3333333333333 149.3333333333334V213.3333333333334C21.3333333333333 225.0666666666667 30.9333333333333 234.6666666666667 42.6666666666667 234.6666666666667H469.3333333333333C481.0666666666667 234.6666666666667 490.6666666666666 225.0666666666667 490.6666666666666 213.3333333333334V149.3333333333334C490.6666666666666 137.6 481.0666666666667 128 469.3333333333333 128H448V117.3333333333334C448 111.36 443.3066666666667 106.6666666666667 437.3333333333333 106.6666666666667H416C410.0266666666667 106.6666666666667 405.3333333333333 111.36 405.3333333333333 117.3333333333334V128H106.6666666666667V117.3333333333334M64 192V170.6666666666667H106.6666666666667V192H64M128 192V170.6666666666667H170.6666666666667V192H128M437.3333333333333 202.6666666666667C425.6 202.6666666666667 416 193.0666666666667 416 181.3333333333334S425.6 160 437.3333333333333 160S458.6666666666666 169.6 458.6666666666666 181.3333333333334S449.0666666666667 202.6666666666667 437.3333333333333 202.6666666666667z" />
+    <glyph glyph-name="settings"
+      unicode="&#xF493;"
+      horiz-adv-x="512" d=" M256 117.3333333333334C214.8266666666667 117.3333333333334 181.3333333333333 150.8266666666667 181.3333333333333 192S214.8266666666667 266.6666666666667 256 266.6666666666667S330.6666666666667 233.1733333333334 330.6666666666667 192S297.1733333333333 117.3333333333334 256 117.3333333333334M414.5066666666667 171.3066666666667C415.36 178.1333333333333 416 184.96 416 192C416 199.04 415.36 206.08 414.5066666666667 213.3333333333334L459.52 248.1066666666667C463.5733333333333 251.3066666666667 464.6399999999999 257.0666666666667 462.08 261.76L419.4133333333333 335.5733333333333C416.8533333333333 340.2666666666667 411.0933333333333 342.1866666666667 406.4 340.2666666666667L353.2800000000001 318.9333333333334C342.1866666666667 327.2533333333334 330.6666666666667 334.5066666666667 317.2266666666667 339.8400000000001L309.3333333333334 396.3733333333334C308.4800000000001 401.4933333333334 304.0000000000001 405.3333333333333 298.6666666666668 405.3333333333333H213.3333333333334C208.0000000000001 405.3333333333333 203.5200000000001 401.4933333333334 202.6666666666668 396.3733333333334L194.7733333333334 339.8400000000001C181.3333333333334 334.5066666666667 169.8133333333334 327.2533333333334 158.7200000000001 318.9333333333334L105.6000000000001 340.2666666666667C100.9066666666668 342.1866666666667 95.1466666666668 340.2666666666667 92.5866666666668 335.5733333333333L49.9200000000001 261.76C47.1466666666668 257.0666666666667 48.4266666666668 251.3066666666667 52.4800000000001 248.1066666666667L97.4933333333333 213.3333333333334C96.64 206.08 96 199.04 96 192C96 184.96 96.64 178.1333333333333 97.4933333333333 171.3066666666667L52.48 135.8933333333333C48.4266666666667 132.6933333333333 47.1466666666667 126.9333333333333 49.92 122.24L92.5866666666667 48.4266666666667C95.1466666666667 43.7333333333334 100.9066666666667 42.0266666666666 105.6 43.7333333333334L158.72 65.2800000000001C169.8133333333333 56.7466666666668 181.3333333333333 49.4933333333335 194.7733333333334 44.1600000000001L202.6666666666667 -12.3733333333332C203.52 -17.4933333333332 208 -21.3333333333333 213.3333333333333 -21.3333333333333H298.6666666666667C304 -21.3333333333333 308.48 -17.4933333333332 309.3333333333333 -12.3733333333332L317.2266666666667 44.1600000000001C330.6666666666667 49.7066666666668 342.1866666666666 56.7466666666668 353.28 65.2800000000001L406.3999999999999 43.7333333333334C411.0933333333333 42.0266666666668 416.8533333333333 43.7333333333334 419.4133333333333 48.4266666666667L462.0799999999999 122.24C464.6399999999999 126.9333333333334 463.5733333333333 132.6933333333334 459.5199999999999 135.8933333333334L414.5066666666666 171.3066666666667z" />
+    <glyph glyph-name="settings-box"
+      unicode="&#xF494;"
+      horiz-adv-x="512" d=" M368 192C368 187.0933333333334 367.5733333333333 182.1866666666667 366.9333333333333 177.4933333333334L398.5066666666667 152.7466666666667C401.28 150.4 402.1333333333334 146.5600000000001 400.2133333333333 143.1466666666667L370.3466666666667 91.52C368.4266666666666 88.3200000000001 364.5866666666667 87.04 361.1733333333333 88.3200000000001L324.0533333333333 103.2533333333333C316.3733333333334 97.28 307.84 92.3733333333333 298.6666666666667 88.5333333333333L293.3333333333333 49.0666666666666C292.6933333333334 45.4399999999999 289.4933333333334 42.6666666666666 285.8666666666667 42.6666666666666H226.1333333333334C222.5066666666667 42.6666666666666 219.3066666666667 45.4399999999999 218.6666666666667 49.0666666666666L213.3333333333333 88.5333333333333C203.9466666666667 92.3733333333333 195.6266666666667 97.28 187.9466666666667 103.2533333333333L150.8266666666667 88.3200000000001C147.4133333333333 87.0400000000001 143.5733333333333 88.3200000000001 141.6533333333333 91.52L111.7866666666667 143.1466666666667C109.8666666666667 146.56 110.72 150.4 113.4933333333334 152.7466666666667L145.0666666666667 177.4933333333334C144.4266666666667 182.1866666666667 144 187.0933333333333 144 192C144 196.9066666666667 144.4266666666667 201.8133333333333 145.0666666666667 206.5066666666666L113.4933333333334 231.2533333333333C110.72 233.6 109.8666666666667 237.6533333333333 111.7866666666667 240.8533333333333L141.6533333333333 292.48C143.5733333333333 295.8933333333333 147.4133333333333 297.1733333333333 150.8266666666667 295.8933333333333L187.9466666666667 280.7466666666666C195.6266666666667 286.72 203.9466666666667 291.84 213.3333333333333 295.4666666666667L218.6666666666667 335.1466666666667C219.3066666666667 338.56 222.5066666666667 341.3333333333333 226.1333333333334 341.3333333333333H285.8666666666666C289.4933333333333 341.3333333333333 292.6933333333333 338.56 293.3333333333333 335.1466666666667L298.6666666666667 295.4666666666667C307.84 291.8400000000001 316.3733333333334 286.7200000000001 324.0533333333333 280.7466666666667L361.1733333333333 295.8933333333333C364.5866666666667 297.1733333333334 368.4266666666666 295.8933333333333 370.3466666666667 292.48L400.2133333333333 240.8533333333333C402.1333333333333 237.6533333333333 401.28 233.6 398.5066666666667 231.2533333333334L366.9333333333333 206.5066666666667C367.5733333333333 201.8133333333333 368 196.9066666666667 368 192M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384M256 234.6666666666667C232.32 234.6666666666667 213.3333333333333 215.68 213.3333333333333 192C213.3333333333333 168.5333333333334 232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192C298.6666666666667 215.68 279.4666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="settings-helper"
+      unicode="&#xFA6D;"
+      horiz-adv-x="512" d=" M149.3333333333333 -21.3333333333333H192V-64H149.3333333333333V-21.3333333333333M234.6666666666667 -21.3333333333333H277.3333333333333V-64H234.6666666666667V-21.3333333333333M320 -21.3333333333333H362.6666666666667V-64H320V-21.3333333333333z" />
+    <glyph glyph-name="settings-outline"
+      unicode="&#xF8BA;"
+      horiz-adv-x="512" d=" M414.5066666666667 171.3066666666667L459.52 135.8933333333333C463.5733333333333 132.6933333333333 464.6399999999999 126.9333333333333 462.08 122.24L419.4133333333333 48.4266666666667C416.8533333333333 43.7333333333334 411.0933333333333 42.0266666666666 406.4 43.7333333333334L353.2800000000001 65.2800000000001C342.1866666666667 56.7466666666668 330.6666666666667 49.7066666666667 317.2266666666667 44.1600000000001L309.3333333333334 -12.3733333333332C308.4800000000001 -17.4933333333332 304.0000000000001 -21.3333333333333 298.6666666666668 -21.3333333333333H213.3333333333334C208.0000000000001 -21.3333333333333 203.5200000000001 -17.4933333333332 202.6666666666668 -12.3733333333332L194.7733333333334 44.1600000000001C181.3333333333334 49.4933333333335 169.8133333333334 56.7466666666668 158.7200000000001 65.2800000000001L105.6000000000001 43.7333333333334C100.9066666666668 42.0266666666668 95.1466666666668 43.7333333333334 92.5866666666668 48.4266666666667L49.9200000000001 122.24C47.1466666666668 126.9333333333334 48.4266666666668 132.6933333333334 52.4800000000001 135.8933333333334L97.4933333333334 171.3066666666667L96 192L97.4933333333333 213.3333333333334L52.48 248.1066666666667C48.4266666666667 251.3066666666667 47.1466666666667 257.0666666666667 49.92 261.76L92.5866666666667 335.5733333333333C95.1466666666667 340.2666666666667 100.9066666666667 342.1866666666667 105.6 340.2666666666667L158.72 318.9333333333334C169.8133333333333 327.2533333333334 181.3333333333333 334.5066666666667 194.7733333333334 339.8400000000001L202.6666666666667 396.3733333333334C203.52 401.4933333333334 208 405.3333333333333 213.3333333333333 405.3333333333333H298.6666666666667C304 405.3333333333333 308.48 401.4933333333334 309.3333333333333 396.3733333333334L317.2266666666667 339.8400000000001C330.6666666666667 334.5066666666667 342.1866666666666 327.2533333333334 353.28 318.9333333333334L406.3999999999999 340.2666666666667C411.0933333333333 342.1866666666667 416.8533333333333 340.2666666666667 419.4133333333333 335.5733333333333L462.0799999999999 261.76C464.6399999999999 257.0666666666667 463.5733333333333 251.3066666666667 459.5199999999999 248.1066666666667L414.5066666666667 213.3333333333334L416 192L414.5066666666667 171.3066666666667M138.6666666666667 192C138.6666666666667 179.6266666666667 140.5866666666667 167.8933333333334 144 156.5866666666667L99.84 120.3200000000001L115.84 92.5866666666667L169.6 112.64C185.3866666666667 95.36 206.5066666666667 82.7733333333333 230.4 77.44L239.7866666666667 21.3333333333334H271.7866666666667L281.1733333333333 77.44C305.0666666666666 82.56 326.3999999999999 95.1466666666667 342.3999999999999 112.4266666666667L395.9466666666666 92.3733333333333L411.9466666666666 120.1066666666667L367.7866666666665 156.3733333333333C371.4133333333333 167.68 373.3333333333333 179.6266666666667 373.3333333333333 192C373.3333333333333 204.16 371.4133333333333 216.1066666666667 367.9999999999999 227.2L411.9466666666666 263.2533333333334L395.9466666666666 290.9866666666666L342.6133333333333 271.1466666666667C326.6133333333333 288.64 305.2799999999999 301.2266666666667 281.3866666666666 306.56L272 362.6666666666667H240L230.6133333333334 306.56C206.72 301.2266666666667 185.3866666666667 288.64 169.3866666666667 271.1466666666667L116.0533333333334 291.2000000000001L100.0533333333333 263.4666666666667L144 227.2C140.5866666666667 216.1066666666667 138.6666666666667 204.16 138.6666666666667 192M256 266.6666666666667C297.1733333333333 266.6666666666667 330.6666666666667 233.1733333333334 330.6666666666667 192S297.1733333333333 117.3333333333334 256 117.3333333333334S181.3333333333333 150.8266666666667 181.3333333333333 192S214.8266666666667 266.6666666666667 256 266.6666666666667M256 224C238.2933333333333 224 224 209.7066666666667 224 192S238.2933333333333 160 256 160S288 174.2933333333334 288 192S273.7066666666667 224 256 224z" />
+    <glyph glyph-name="shape"
+      unicode="&#xF830;"
+      horiz-adv-x="512" d=" M234.6666666666667 160V-10.6666666666666H64V160H234.6666666666667M256 405.3333333333333L373.3333333333333 213.3333333333334H138.6666666666667L256 405.3333333333333M373.3333333333333 170.6666666666667C426.6666666666667 170.6666666666667 469.3333333333333 128 469.3333333333333 74.6666666666667S426.6666666666667 -21.3333333333333 373.3333333333333 -21.3333333333333S277.3333333333333 21.3333333333334 277.3333333333333 74.6666666666667S320 170.6666666666667 373.3333333333333 170.6666666666667z" />
+    <glyph glyph-name="shape-circle-plus"
+      unicode="&#xF65D;"
+      horiz-adv-x="512" d=" M234.6666666666667 42.6666666666667C305.28 42.6666666666667 362.6666666666667 100.0533333333334 362.6666666666667 170.6666666666667H405.3333333333333C405.3333333333333 76.3733333333333 328.96 0 234.6666666666667 0S64 76.3733333333333 64 170.6666666666667S140.3733333333333 341.3333333333334 234.6666666666667 341.3333333333334V298.6666666666667C164.0533333333333 298.6666666666667 106.6666666666667 241.2800000000001 106.6666666666667 170.6666666666667S164.0533333333333 42.6666666666667 234.6666666666667 42.6666666666667M405.3333333333333 341.3333333333334H469.3333333333333V298.6666666666667H405.3333333333333V234.6666666666667H362.6666666666667V298.6666666666667H298.6666666666667V341.3333333333334H362.6666666666667V405.3333333333333H405.3333333333333V341.3333333333334z" />
+    <glyph glyph-name="shape-outline"
+      unicode="&#xF831;"
+      horiz-adv-x="512" d=" M234.6666666666667 160V-10.6666666666666H64V160H234.6666666666667M192 117.3333333333334H106.6666666666667V32H192V117.3333333333334M256 405.3333333333333L373.3333333333333 213.3333333333334H138.6666666666667L256 405.3333333333333M256 322.9866666666667L215.04 256H296.96L256 322.9866666666667M373.3333333333333 170.6666666666667C426.6666666666667 170.6666666666667 469.3333333333333 128 469.3333333333333 74.6666666666667S426.6666666666667 -21.3333333333333 373.3333333333333 -21.3333333333333S277.3333333333333 21.3333333333334 277.3333333333333 74.6666666666667S320 170.6666666666667 373.3333333333333 170.6666666666667M373.3333333333333 128C343.8933333333333 128 320 104.1066666666667 320 74.6666666666667S343.8933333333333 21.3333333333334 373.3333333333333 21.3333333333334S426.6666666666667 45.2266666666667 426.6666666666667 74.6666666666667S402.7733333333333 128 373.3333333333333 128z" />
+    <glyph glyph-name="shape-plus"
+      unicode="&#xF495;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H234.6666666666667V213.3333333333334H42.6666666666667V405.3333333333333M373.3333333333333 405.3333333333333C426.6666666666667 405.3333333333333 469.3333333333333 362.6666666666667 469.3333333333333 309.3333333333334S426.6666666666667 213.3333333333334 373.3333333333333 213.3333333333334S277.3333333333333 256 277.3333333333333 309.3333333333334S320 405.3333333333333 373.3333333333333 405.3333333333333M138.6666666666667 149.3333333333334L234.6666666666667 -21.3333333333333H42.6666666666667L138.6666666666667 149.3333333333334M405.3333333333333 85.3333333333334H469.3333333333333V42.6666666666667H405.3333333333333V-21.3333333333333H362.6666666666667V42.6666666666667H298.6666666666667V85.3333333333334H362.6666666666667V149.3333333333334H405.3333333333333V85.3333333333334z" />
+    <glyph glyph-name="shape-polygon-plus"
+      unicode="&#xF65E;"
+      horiz-adv-x="512" d=" M362.6666666666667 113.0666666666667V170.6666666666667H405.3333333333333V85.3333333333334L213.3333333333333 0L64 149.3333333333334L149.3333333333333 341.3333333333334H234.6666666666667V298.6666666666667H177.0666666666667L115.2 157.8666666666667L221.8666666666667 51.2L362.6666666666667 113.0666666666667M469.3333333333333 341.3333333333334V298.6666666666667H405.3333333333333V234.6666666666667H362.6666666666667V298.6666666666667H298.6666666666667V341.3333333333334H362.6666666666667V405.3333333333333H405.3333333333333V341.3333333333334H469.3333333333333z" />
+    <glyph glyph-name="shape-rectangle-plus"
+      unicode="&#xF65F;"
+      horiz-adv-x="512" d=" M405.3333333333333 320H469.3333333333333V277.3333333333334H405.3333333333333V213.3333333333334H362.6666666666667V277.3333333333334H298.6666666666667V320H362.6666666666667V384H405.3333333333333V320M362.6666666666667 85.3333333333334V149.3333333333334H405.3333333333333V42.6666666666667H64V320H234.6666666666667V277.3333333333334H106.6666666666667V85.3333333333334H362.6666666666667z" />
+    <glyph glyph-name="shape-square-plus"
+      unicode="&#xF660;"
+      horiz-adv-x="512" d=" M405.3333333333333 341.3333333333334H469.3333333333333V298.6666666666667H405.3333333333333V234.6666666666667H362.6666666666667V298.6666666666667H298.6666666666667V341.3333333333334H362.6666666666667V405.3333333333333H405.3333333333333V341.3333333333334M362.6666666666667 42.6666666666667V170.6666666666667H405.3333333333333V0H64V341.3333333333334H234.6666666666667V298.6666666666667H106.6666666666667V42.6666666666667H362.6666666666667z" />
+    <glyph glyph-name="share"
+      unicode="&#xF496;"
+      horiz-adv-x="512" d=" M448 213.3333333333334L298.6666666666667 362.6666666666667V277.3333333333334C149.3333333333333 256 85.3333333333333 149.3333333333334 64 42.6666666666667C117.3333333333333 117.3333333333334 192 151.4666666666667 298.6666666666667 151.4666666666667V64L448 213.3333333333334z" />
+    <glyph glyph-name="share-outline"
+      unicode="&#xF931;"
+      horiz-adv-x="512" d=" M298.6666666666667 362.6666666666667V277.3333333333334C149.3333333333333 256 85.3333333333333 149.3333333333334 64 42.6666666666667C117.3333333333333 117.3333333333334 192 151.4666666666667 298.6666666666667 151.4666666666667V64L448 213.3333333333334L298.6666666666667 362.6666666666667M341.3333333333333 259.6266666666667L387.6266666666667 213.3333333333334L341.3333333333333 167.04V194.1333333333333H298.6666666666667C254.5066666666667 194.1333333333333 214.8266666666667 186.0266666666667 177.92 173.8666666666667C207.7866666666667 203.5200000000001 246.1866666666667 226.7733333333334 304.64 234.6666666666667L341.3333333333333 240.4266666666667V259.6266666666667z" />
+    <glyph glyph-name="share-variant"
+      unicode="&#xF497;"
+      horiz-adv-x="512" d=" M384 104.96C367.7866666666667 104.96 353.28 98.5600000000001 342.1866666666666 88.5333333333334L190.08 177.0666666666667C191.1466666666667 181.9733333333334 192 186.8800000000001 192 192C192 197.12 191.1466666666667 202.0266666666667 190.08 206.9333333333333L340.48 294.6133333333334C352 283.9466666666667 367.1466666666667 277.3333333333334 384 277.3333333333334C419.4133333333333 277.3333333333334 448 305.92 448 341.3333333333334S419.4133333333333 405.3333333333333 384 405.3333333333333S320 376.7466666666667 320 341.3333333333334C320 336.2133333333334 320.8533333333333 331.3066666666667 321.92 326.4L171.52 238.72C160 249.3866666666667 144.8533333333333 256 128 256C92.5866666666667 256 64 227.4133333333334 64 192S92.5866666666667 128 128 128C144.8533333333333 128 160 134.6133333333334 171.52 145.28L323.4133333333333 56.7466666666667C322.3466666666667 52.2666666666667 321.7066666666667 47.5733333333334 321.7066666666667 42.6666666666667C321.7066666666667 8.3200000000001 349.6533333333333 -19.4133333333333 384 -19.4133333333333C418.3466666666667 -19.4133333333333 446.2933333333334 8.3200000000001 446.2933333333334 42.6666666666667S418.3466666666667 104.96 384 104.96z" />
+    <glyph glyph-name="shield"
+      unicode="&#xF498;"
+      horiz-adv-x="512" d=" M256 426.6666666666667L64 341.3333333333334V213.3333333333334C64 94.9333333333333 145.92 -15.7866666666667 256 -42.6666666666666C366.08 -15.7866666666666 448 94.9333333333333 448 213.3333333333334V341.3333333333334L256 426.6666666666667z" />
+    <glyph glyph-name="shield-half-full"
+      unicode="&#xF77F;"
+      horiz-adv-x="512" d=" M448 213.3333333333334C448 94.9333333333333 366.08 -15.7866666666667 256 -42.6666666666666C145.92 -15.7866666666666 64 94.9333333333333 64 213.3333333333334V341.3333333333334L256 426.6666666666667L448 341.3333333333334V213.3333333333334M256 0C336 21.3333333333334 405.3333333333333 116.48 405.3333333333333 208.64V313.6L256 380.1600000000001V0z" />
+    <glyph glyph-name="shield-key"
+      unicode="&#xFBA0;"
+      horiz-adv-x="512" d=" M256 277.3333333333334C267.7333333333334 277.3333333333334 277.3333333333333 267.7333333333334 277.3333333333333 256S267.7333333333334 234.6666666666667 256 234.6666666666667S234.6666666666667 244.2666666666667 234.6666666666667 256S244.2666666666667 277.3333333333334 256 277.3333333333334M448 213.3333333333334C448 94.9333333333333 366.08 -15.7866666666667 256 -42.6666666666666C145.92 -15.7866666666666 64 94.9333333333333 64 213.3333333333334V341.3333333333334L256 426.6666666666667L448 341.3333333333334V213.3333333333334M256 320C220.5866666666667 320 192 291.4133333333334 192 256C192 228.0533333333334 209.7066666666667 204.3733333333333 234.6666666666667 195.6266666666667V64H277.3333333333333V106.6666666666667H320V149.3333333333334H277.3333333333333V195.6266666666667C302.2933333333333 204.3733333333333 320 228.0533333333334 320 256C320 291.4133333333334 291.4133333333333 320 256 320z" />
+    <glyph glyph-name="shield-key-outline"
+      unicode="&#xFBA1;"
+      horiz-adv-x="512" d=" M448 213.3333333333334C448 94.9333333333333 366.08 -15.7866666666667 256 -42.6666666666666C145.92 -15.7866666666666 64 94.9333333333333 64 213.3333333333334V341.3333333333334L256 426.6666666666667L448 341.3333333333334V213.3333333333334M256 0C336 21.3333333333334 405.3333333333333 116.48 405.3333333333333 208.64V313.6L256 380.1600000000001L106.6666666666667 313.6V208.6400000000001C106.6666666666667 116.48 176 21.3333333333334 256 0M256 320C291.4133333333333 320 320 291.4133333333334 320 256C320 228.0533333333334 302.2933333333333 204.3733333333333 277.3333333333333 195.6266666666667V149.3333333333334H320V106.6666666666667H277.3333333333333V64H234.6666666666667V195.6266666666667C209.7066666666667 204.3733333333333 192 228.0533333333334 192 256C192 291.4133333333334 220.5866666666667 320 256 320M256 277.3333333333334C244.2666666666667 277.3333333333334 234.6666666666667 267.7333333333334 234.6666666666667 256S244.2666666666667 234.6666666666667 256 234.6666666666667S277.3333333333333 244.2666666666667 277.3333333333333 256S267.7333333333334 277.3333333333334 256 277.3333333333334z" />
+    <glyph glyph-name="shield-outline"
+      unicode="&#xF499;"
+      horiz-adv-x="512" d=" M448 213.3333333333334C448 94.9333333333333 366.08 -15.7866666666667 256 -42.6666666666666C145.92 -15.7866666666666 64 94.9333333333333 64 213.3333333333334V341.3333333333334L256 426.6666666666667L448 341.3333333333334V213.3333333333334M256 0C336 21.3333333333334 405.3333333333333 116.48 405.3333333333333 208.64V313.6L256 380.1600000000001L106.6666666666667 313.6V208.6400000000001C106.6666666666667 116.48 176 21.3333333333334 256 0z" />
+    <glyph glyph-name="shield-plus"
+      unicode="&#xFAD9;"
+      horiz-adv-x="512" d=" M405.3333333333333 21.3333333333334V-42.0266666666666H362.6666666666667V21.3333333333334H298.6666666666667V64H362.6666666666667V128H405.3333333333333V64H469.3333333333333V21.3333333333334H405.3333333333333M256 426.6666666666667L448 341.3333333333334V213.3333333333334C448 194.1333333333333 445.8666666666666 175.36 441.8133333333334 156.8C424.5333333333333 165.76 405.3333333333333 170.6666666666667 384 170.6666666666667C313.3866666666667 170.6666666666667 256 113.28 256 42.6666666666667C256 13.6533333333334 265.6 -13.2266666666667 282.0266666666667 -34.56L256 -42.6666666666666C145.92 -15.7866666666666 64 94.9333333333333 64 213.3333333333334V341.3333333333334L256 426.6666666666667z" />
+    <glyph glyph-name="shield-plus-outline"
+      unicode="&#xFADA;"
+      horiz-adv-x="512" d=" M405.3333333333333 21.3333333333334V-42.0266666666666H362.6666666666667V21.3333333333334H298.6666666666667V64H362.6666666666667V128H405.3333333333333V64H469.3333333333333V21.3333333333334H405.3333333333333M448 213.3333333333334C448 194.1333333333333 445.8666666666666 175.36 441.8133333333334 156.8C429.4400000000001 163.2000000000001 416 167.4666666666667 401.2800000000001 169.6C403.8400000000001 182.4 405.3333333333334 195.6266666666667 405.3333333333334 208.64V313.6L256.0000000000001 380.1600000000001L106.6666666666667 313.6V208.6400000000001C106.6666666666667 116.48 176 21.3333333333334 256 0L262.6133333333334 1.92C266.6666666666667 -11.3066666666667 273.7066666666667 -23.6799999999999 282.0266666666667 -34.56L256 -42.6666666666666C145.92 -15.7866666666666 64 94.9333333333333 64 213.3333333333334V341.3333333333334L256 426.6666666666667L448 341.3333333333334V213.3333333333334z" />
+    <glyph glyph-name="shield-remove"
+      unicode="&#xFADB;"
+      horiz-adv-x="512" d=" M414.5066666666667 42.6666666666667L458.6666666666666 -2.3466666666666L429.2266666666667 -32L384.64 12.5866666666667L339.4133333333333 -32.64L309.3333333333333 -2.3466666666666L354.3466666666667 42.6666666666667L309.3333333333333 88.3200000000001L338.7733333333333 117.9733333333334L384 72.7466666666667L429.2266666666667 117.9733333333334L459.7333333333333 87.4666666666667L414.5066666666667 42.6666666666667M256 426.6666666666667L448 341.3333333333334V213.3333333333334C448 194.1333333333333 445.8666666666666 175.36 441.8133333333334 156.8C424.5333333333333 165.76 405.3333333333333 170.6666666666667 384 170.6666666666667C313.3866666666667 170.6666666666667 256 113.28 256 42.6666666666667C256 13.6533333333334 265.6 -13.2266666666667 282.0266666666667 -34.56L256 -42.6666666666666C145.92 -15.7866666666666 64 94.9333333333333 64 213.3333333333334V341.3333333333334L256 426.6666666666667z" />
+    <glyph glyph-name="shield-remove-outline"
+      unicode="&#xFADC;"
+      horiz-adv-x="512" d=" M414.5066666666667 42.6666666666667L458.6666666666666 -2.3466666666666L429.2266666666667 -32L384.64 12.5866666666667L339.4133333333333 -32.64L309.3333333333333 -2.3466666666666L354.3466666666667 42.6666666666667L309.3333333333333 88.3200000000001L338.7733333333333 117.9733333333334L384 72.7466666666667L429.2266666666667 117.9733333333334L459.7333333333333 87.4666666666667L414.5066666666667 42.6666666666667M448 213.3333333333334C448 194.1333333333333 445.8666666666666 175.36 441.8133333333334 156.8C429.4400000000001 163.2000000000001 416 167.4666666666667 401.2800000000001 169.6C403.8400000000001 182.4 405.3333333333334 195.6266666666667 405.3333333333334 208.64V313.6L256.0000000000001 380.1600000000001L106.6666666666667 313.6V208.6400000000001C106.6666666666667 116.48 176 21.3333333333334 256 0L262.6133333333334 1.92C266.6666666666667 -11.3066666666667 273.7066666666667 -23.6799999999999 282.0266666666667 -34.56L256 -42.6666666666666C145.92 -15.7866666666666 64 94.9333333333333 64 213.3333333333334V341.3333333333334L256 426.6666666666667L448 341.3333333333334V213.3333333333334z" />
+    <glyph glyph-name="ship-wheel"
+      unicode="&#xF832;"
+      horiz-adv-x="512" d=" M42.6666666666667 213.3333333333334L86.4 211.2C91.7333333333333 259.6266666666667 117.3333333333333 301.8666666666667 154.6666666666667 329.3866666666667L130.7733333333333 366.0800000000001C125.0133333333333 376.32 128 389.3333333333333 138.6666666666667 395.3066666666667C149.3333333333333 401.0666666666667 161.92 397.6533333333333 167.8933333333333 387.4133333333334L187.7333333333334 348.5866666666667C208.64 357.5466666666667 231.68 362.6666666666667 256 362.6666666666667C280.32 362.6666666666667 303.36 357.5466666666667 324.2666666666667 348.5866666666667L344.1066666666667 387.4133333333334C350.08 397.6533333333333 362.6666666666667 401.0666666666667 373.3333333333333 395.3066666666667C384 389.3333333333333 386.9866666666667 376.32 381.2266666666667 366.0800000000001L357.3333333333333 329.3866666666667C394.6666666666667 301.8666666666667 420.2666666666667 259.6266666666667 425.6 211.2L469.3333333333333 213.3333333333334C481.0666666666667 213.3333333333334 490.6666666666666 203.7333333333334 490.6666666666666 192S481.0666666666667 170.6666666666667 469.3333333333333 170.6666666666667L425.6 172.8C420.2666666666667 124.3733333333333 394.6666666666667 82.1333333333334 357.3333333333333 54.6133333333333L381.2266666666667 17.92C386.9866666666667 7.68 384 -5.3333333333333 373.3333333333333 -11.3066666666667C362.6666666666667 -17.0666666666667 350.08 -13.6533333333333 344.1066666666667 -3.4133333333333L324.2666666666667 35.4133333333334C303.36 26.4533333333333 280.32 21.3333333333334 256 21.3333333333334C231.68 21.3333333333334 208.64 26.4533333333333 187.7333333333334 35.4133333333334L167.8933333333334 -3.4133333333333C161.92 -13.6533333333333 149.3333333333334 -17.0666666666667 138.6666666666667 -11.3066666666667C128 -5.3333333333333 125.0133333333334 7.68 130.7733333333334 17.92L154.6666666666667 54.6133333333333C117.3333333333334 82.1333333333333 91.7333333333334 124.3733333333333 86.4 172.8L42.6666666666667 170.6666666666667C30.9333333333333 170.6666666666667 21.3333333333333 180.2666666666667 21.3333333333333 192S30.9333333333333 213.3333333333334 42.6666666666667 213.3333333333334M193.4933333333334 205.8666666666667C196.2666666666667 218.88 203.3066666666667 230.4000000000001 213.3333333333333 239.1466666666667L177.92 293.3333333333334C151.68 273.2800000000001 133.76 243.2 129.0666666666667 209.0666666666667L193.4933333333334 205.8666666666667M256 256C262.8266666666667 256 269.2266666666667 254.9333333333334 275.2 253.0133333333333L304.64 310.4C289.7066666666667 316.5866666666667 273.28 320 256 320C238.72 320 222.2933333333333 316.5866666666667 207.36 310.4L236.8 253.0133333333333C242.7733333333334 254.9333333333334 249.1733333333334 256 256 256M318.5066666666667 205.8666666666667L382.9333333333334 209.0666666666667C378.2400000000001 243.2 360.3200000000001 273.2800000000001 334.0800000000001 293.3333333333334L298.6666666666667 239.1466666666667C308.6933333333334 230.4000000000001 315.7333333333334 218.8800000000001 318.5066666666667 205.8666666666667M318.5066666666667 178.1333333333333C315.7333333333333 165.12 308.6933333333333 153.6 298.6666666666667 144.8533333333334L334.08 90.6666666666667C360.32 110.72 378.24 140.8 382.9333333333333 174.9333333333333L318.5066666666667 178.1333333333333M256 128C249.1733333333333 128 242.7733333333334 129.0666666666667 236.5866666666667 130.9866666666667L207.36 73.6C222.2933333333333 67.4133333333334 238.72 64 256 64C273.28 64 289.7066666666666 67.4133333333334 304.64 73.6L275.4133333333333 130.9866666666667C269.2266666666666 129.0666666666667 262.8266666666666 128 255.9999999999999 128M193.4933333333333 178.1333333333333L129.0666666666666 174.9333333333333C133.7599999999999 140.8 151.68 110.72 177.9199999999999 90.6666666666666L213.3333333333333 144.8533333333334C203.3066666666667 153.6 196.2666666666667 165.12 193.4933333333334 178.1333333333333z" />
+    <glyph glyph-name="shoe-formal"
+      unicode="&#xFB22;"
+      horiz-adv-x="512" d=" M458.6666666666666 256V277.3333333333334H437.3333333333333L416 256H320L298.6666666666667 277.3333333333334H277.3333333333333L149.3333333333333 192H85.3333333333333C61.8666666666667 192 42.6666666666667 172.8 42.6666666666667 149.3333333333334V106.6666666666667H213.3333333333333L277.3333333333333 128H320V106.6666666666667H458.6666666666666V149.3333333333334S469.3333333333333 170.6666666666667 469.3333333333333 202.6666666666667S458.6666666666666 256 458.6666666666666 256z" />
+    <glyph glyph-name="shoe-heel"
+      unicode="&#xFB23;"
+      horiz-adv-x="512" d=" M64 64H249.6L362.6666666666667 149.3333333333334H384V64H426.6666666666667V149.3333333333334S448 192 448 234.6666666666667S437.3333333333333 320 437.3333333333333 320H394.6666666666667L384 298.6666666666667L213.3333333333333 149.3333333333334H170.6666666666667L64 106.6666666666667V64z" />
+    <glyph glyph-name="shopify"
+      unicode="&#xFADD;"
+      horiz-adv-x="512" d=" M397.0133333333333 322.3466666666667C396.8 324.48 394.6666666666667 325.76 393.3866666666666 325.76C391.8933333333333 325.9733333333334 359.04 328.3200000000001 359.04 328.3200000000001S336.2133333333333 350.9333333333334 333.8666666666666 353.4933333333334C331.3066666666666 356.0533333333334 326.4 355.2000000000001 324.48 354.7733333333333C324.2666666666667 354.7733333333333 320 353.28 311.68 350.9333333333334C304 373.3333333333334 290.56 392.96 265.1733333333333 392.96C258.3466666666667 401.4933333333334 250.0266666666667 405.3333333333333 242.7733333333333 405.3333333333333C187.7333333333333 405.3333333333333 161.4933333333333 336.64 153.1733333333333 301.6533333333333L114.56 289.7066666666667C102.8266666666667 285.8666666666667 102.4 285.44 100.9066666666667 274.3466666666667C99.6266666666667 265.8133333333334 68.48 24.3200000000001 68.48 24.3200000000001L311.68 -21.3333333333333L443.52 7.2533333333333S397.2266666666667 320 397.0133333333333 322.3466666666667M298.6666666666667 346.4533333333334C292.0533333333333 344.5333333333334 285.2266666666667 342.4 277.3333333333333 340.0533333333334V344.5333333333334C277.3333333333333 358.1866666666667 275.84 369.0666666666667 272.8533333333333 377.8133333333334C284.8 376.3200000000001 292.9066666666667 362.6666666666667 298.6666666666667 346.4533333333334M257.7066666666667 375.04C261.12 366.5066666666667 263.2533333333334 354.3466666666667 263.2533333333334 337.92V335.5733333333333C249.8133333333333 331.52 235.3066666666667 326.8266666666667 220.8 322.3466666666667C228.9066666666667 354.1333333333334 244.2666666666667 369.28 257.7066666666667 375.04M241.28 390.6133333333334C243.6266666666667 390.6133333333334 245.9733333333334 389.76 248.32 388.2666666666667C230.6133333333334 379.9466666666667 211.84 359.04 203.7333333333334 317.44C192 313.6 180.6933333333333 310.1866666666667 170.6666666666667 306.7733333333333C179.6266666666667 338.7733333333333 201.8133333333333 390.6133333333334 241.28 390.6133333333334M266.6666666666667 252.8L250.88 204.3733333333333S236.5866666666667 212.0533333333334 219.0933333333333 212.0533333333334C193.4933333333334 212.0533333333334 192 196.0533333333334 192 192C192 169.8133333333334 249.8133333333334 161.4933333333334 249.8133333333334 109.6533333333334C249.8133333333334 68.9066666666667 224 42.6666666666667 189.2266666666667 42.6666666666667C147.4133333333334 42.6666666666667 126.08 68.6933333333333 126.08 68.6933333333333L137.1733333333334 105.6S159.1466666666667 86.8266666666667 177.7066666666667 86.8266666666667C189.8666666666667 86.8266666666667 194.7733333333334 96 194.7733333333334 103.2533333333333C194.7733333333334 132.0533333333334 147.6266666666667 133.3333333333334 147.6266666666667 180.6933333333333C147.6266666666667 220.5866666666667 176.2133333333334 259.2 234.0266666666667 259.2C256 259.2 266.6666666666667 252.8 266.6666666666667 252.8M329.1733333333334 335.1466666666667L357.3333333333333 307.2L377.8133333333334 305.4933333333333C385.0666666666667 256 409.3866666666667 91.0933333333333 419.4133333333333 23.8933333333333L312.7466666666667 0.64L329.1733333333333 335.1466666666667z" />
+    <glyph glyph-name="shopping"
+      unicode="&#xF49A;"
+      horiz-adv-x="512" d=" M256 170.6666666666667C197.12 170.6666666666667 149.3333333333333 218.4533333333334 149.3333333333333 277.3333333333334H192C192 241.92 220.5866666666667 213.3333333333334 256 213.3333333333334S320 241.92 320 277.3333333333334H362.6666666666667C362.6666666666667 218.4533333333334 314.88 170.6666666666667 256 170.6666666666667M256 384C291.4133333333333 384 320 355.4133333333334 320 320H192C192 355.4133333333334 220.5866666666667 384 256 384M405.3333333333333 320H362.6666666666667C362.6666666666667 378.88 314.88 426.6666666666667 256 426.6666666666667S149.3333333333333 378.88 149.3333333333333 320H106.6666666666667C82.9866666666667 320 64 301.0133333333333 64 277.3333333333334V21.3333333333334C64 -2.1333333333333 83.2 -21.3333333333333 106.6666666666667 -21.3333333333333H405.3333333333333C428.8 -21.3333333333333 448 -2.1333333333333 448 21.3333333333334V277.3333333333334C448 301.0133333333333 428.8 320 405.3333333333333 320z" />
+    <glyph glyph-name="shopping-music"
+      unicode="&#xF49B;"
+      horiz-adv-x="512" d=" M256 384C220.5866666666667 384 192 355.4133333333334 192 320H320C320 355.4133333333334 291.4133333333333 384 256 384M405.3333333333333 320C428.8 320 448 300.8 448 277.3333333333334V21.3333333333334C448 -2.1333333333333 428.8 -21.3333333333333 405.3333333333333 -21.3333333333333H106.6666666666667C82.9866666666667 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V277.3333333333334C64 301.0133333333333 82.9866666666667 320 106.6666666666667 320H149.3333333333333C149.3333333333333 378.88 197.12 426.6666666666667 256 426.6666666666667S362.6666666666667 378.88 362.6666666666667 320H405.3333333333333M192 42.6666666666667L352 149.3333333333334L192 234.6666666666667V42.6666666666667z" />
+    <glyph glyph-name="shovel"
+      unicode="&#xF70F;"
+      horiz-adv-x="512" d=" M322.1333333333334 409.3866666666667L261.76 349.0133333333333C245.3333333333333 332.3733333333334 245.3333333333333 305.28 261.76 288.64L291.84 258.56L194.7733333333333 161.4933333333334L134.6133333333333 221.8666666666667L104.32 192C-1.28 85.3333333333334 74.6666666666667 10.6666666666667 74.6666666666667 10.6666666666667S149.3333333333333 -64 256 40.7466666666667L286.08 70.8266666666667L226.3466666666667 130.5600000000001L323.2 227.4133333333334L352.8533333333333 197.76C369.4933333333334 181.3333333333334 396.5866666666667 181.3333333333334 413.2266666666666 197.76L473.6 258.1333333333334L322.1333333333334 409.3866666666667M382.5066666666667 228.6933333333334L353.0666666666667 258.1333333333334L322.3466666666667 288.8533333333334L292.48 318.7200000000001L322.56 348.8L412.8 258.56L382.5066666666667 228.6933333333334z" />
+    <glyph glyph-name="shovel-off"
+      unicode="&#xF710;"
+      horiz-adv-x="512" d=" M322.1333333333334 409.3866666666667L261.76 348.8C245.3333333333333 332.16 245.3333333333333 305.28 261.76 288.64L291.84 258.3466666666667L277.3333333333333 242.7733333333333L308.0533333333333 212.0533333333334L323.6266666666667 227.6266666666667L353.28 197.9733333333333C369.92 181.3333333333334 397.0133333333333 181.3333333333334 413.6533333333333 197.9733333333333L474.0266666666666 258.56L322.1333333333333 409.3866666666667M382.5066666666667 228.6933333333334L292.2666666666667 318.7200000000001L322.3466666666667 348.8L412.5866666666667 258.5600000000001L382.5066666666667 228.6933333333334M441.6 16.2133333333333L411.52 -13.8666666666667L245.3333333333333 151.8933333333333L224 130.56L284.3733333333334 70.6133333333334L256 40.7466666666667C149.3333333333333 -64 74.6666666666667 10.6666666666667 74.6666666666667 10.6666666666667S-1.28 85.3333333333334 104.32 192L134.6133333333333 221.8666666666667L194.7733333333333 161.4933333333334L216.1066666666666 182.8266666666667L50.1333333333333 348.1600000000001L80.4266666666666 378.4533333333334L441.6 16.2133333333334z" />
+    <glyph glyph-name="shower"
+      unicode="&#xF99F;"
+      horiz-adv-x="512" d=" M448 149.3333333333334V128C448 87.2533333333333 425.1733333333333 51.84 391.4666666666667 33.92L405.3333333333333 -21.3333333333333H362.6666666666667L352 21.3333333333334H160L149.3333333333333 -21.3333333333333H106.6666666666667L120.5333333333333 33.92C86.8266666666667 51.84 64 87.2533333333333 64 128V149.3333333333334H42.6666666666667V192H426.6666666666667V341.3333333333334C426.6666666666667 353.0666666666667 417.0666666666667 362.6666666666667 405.3333333333333 362.6666666666667C394.6666666666667 362.6666666666667 386.56 355.4133333333334 384 345.8133333333334C397.44 334.2933333333334 405.3333333333333 317.2266666666667 405.3333333333333 298.6666666666667H277.3333333333333C277.3333333333333 334.0800000000001 305.92 362.6666666666667 341.3333333333333 362.6666666666667H344.9600000000001C353.7066666666667 387.4133333333334 377.3866666666667 405.3333333333333 405.3333333333333 405.3333333333333C440.7466666666667 405.3333333333333 469.3333333333333 376.7466666666667 469.3333333333333 341.3333333333334V149.3333333333334H448M405.3333333333333 149.3333333333334H106.6666666666667V128C106.6666666666667 92.5866666666667 135.2533333333333 64 170.6666666666667 64H341.3333333333333C376.7466666666667 64 405.3333333333333 92.5866666666667 405.3333333333333 128V149.3333333333334z" />
+    <glyph glyph-name="shower-head"
+      unicode="&#xF9A0;"
+      horiz-adv-x="512" d=" M426.6666666666667 21.3333333333334C438.4 21.3333333333334 448 11.7333333333333 448 0S438.4 -21.3333333333333 426.6666666666667 -21.3333333333333S405.3333333333333 -11.7333333333333 405.3333333333333 0S414.9333333333333 21.3333333333334 426.6666666666667 21.3333333333334M341.3333333333333 21.3333333333334C353.0666666666667 21.3333333333334 362.6666666666667 11.7333333333333 362.6666666666667 0S353.0666666666667 -21.3333333333333 341.3333333333333 -21.3333333333333S320 -11.7333333333333 320 0S329.6 21.3333333333334 341.3333333333333 21.3333333333334M256 21.3333333333334C267.7333333333334 21.3333333333334 277.3333333333333 11.7333333333333 277.3333333333333 0S267.7333333333334 -21.3333333333333 256 -21.3333333333333S234.6666666666667 -11.7333333333333 234.6666666666667 0S244.2666666666667 21.3333333333334 256 21.3333333333334M170.6666666666667 21.3333333333334C182.4 21.3333333333334 192 11.7333333333333 192 0S182.4 -21.3333333333333 170.6666666666667 -21.3333333333333S149.3333333333333 -11.7333333333333 149.3333333333333 0S158.9333333333333 21.3333333333334 170.6666666666667 21.3333333333334M85.3333333333333 21.3333333333334C97.0666666666667 21.3333333333334 106.6666666666667 11.7333333333333 106.6666666666667 0S97.0666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333S64 -11.7333333333333 64 0S73.6 21.3333333333334 85.3333333333333 21.3333333333334M128 85.3333333333334C139.7333333333333 85.3333333333334 149.3333333333333 75.7333333333334 149.3333333333333 64S139.7333333333333 42.6666666666667 128 42.6666666666667S106.6666666666667 52.2666666666667 106.6666666666667 64S116.2666666666667 85.3333333333334 128 85.3333333333334M213.3333333333333 85.3333333333334C225.0666666666667 85.3333333333334 234.6666666666667 75.7333333333334 234.6666666666667 64S225.0666666666667 42.6666666666667 213.3333333333333 42.6666666666667S192 52.2666666666667 192 64S201.6 85.3333333333334 213.3333333333333 85.3333333333334M298.6666666666667 85.3333333333334C310.4 85.3333333333334 320 75.7333333333334 320 64S310.4 42.6666666666667 298.6666666666667 42.6666666666667S277.3333333333333 52.2666666666667 277.3333333333333 64S286.9333333333333 85.3333333333334 298.6666666666667 85.3333333333334M384 85.3333333333334C395.7333333333334 85.3333333333334 405.3333333333333 75.7333333333334 405.3333333333333 64S395.7333333333334 42.6666666666667 384 42.6666666666667S362.6666666666667 52.2666666666667 362.6666666666667 64S372.2666666666667 85.3333333333334 384 85.3333333333334M170.6666666666667 149.3333333333334C182.4 149.3333333333334 192 139.7333333333334 192 128S182.4 106.6666666666667 170.6666666666667 106.6666666666667S149.3333333333333 116.2666666666667 149.3333333333333 128S158.9333333333333 149.3333333333334 170.6666666666667 149.3333333333334M256 149.3333333333334C267.7333333333334 149.3333333333334 277.3333333333333 139.7333333333334 277.3333333333333 128S267.7333333333334 106.6666666666667 256 106.6666666666667S234.6666666666667 116.2666666666667 234.6666666666667 128S244.2666666666667 149.3333333333334 256 149.3333333333334M341.3333333333333 149.3333333333334C353.0666666666667 149.3333333333334 362.6666666666667 139.7333333333334 362.6666666666667 128S353.0666666666667 106.6666666666667 341.3333333333333 106.6666666666667S320 116.2666666666667 320 128S329.6 149.3333333333334 341.3333333333333 149.3333333333334M405.3333333333333 192H106.6666666666667V234.6666666666667H405.3333333333333V192M382.2933333333334 256H129.7066666666667C138.6666666666667 309.3333333333334 181.3333333333333 352 234.6666666666667 360.9600000000001V405.3333333333333H277.3333333333333V360.9600000000001C330.6666666666667 352 373.3333333333333 309.3333333333334 382.2933333333334 256z" />
+    <glyph glyph-name="shredder"
+      unicode="&#xF49C;"
+      horiz-adv-x="512" d=" M128 384V298.6666666666667H170.6666666666667V341.3333333333334H341.3333333333333V298.6666666666667H384V384H128M106.6666666666667 277.3333333333334C71.2533333333333 277.3333333333334 42.6666666666667 248.7466666666667 42.6666666666667 213.3333333333334V85.3333333333334H106.6666666666667V149.3333333333334H405.3333333333333V85.3333333333334H469.3333333333333V213.3333333333334C469.3333333333333 248.7466666666667 440.7466666666667 277.3333333333334 405.3333333333333 277.3333333333334H106.6666666666667M384 234.6666666666667C395.7333333333334 234.6666666666667 405.3333333333333 225.0666666666667 405.3333333333333 213.3333333333334S395.7333333333334 192 384 192S362.6666666666667 201.6 362.6666666666667 213.3333333333334S372.2666666666667 234.6666666666667 384 234.6666666666667M149.3333333333333 106.6666666666667V0H192V106.6666666666667H149.3333333333333M234.6666666666667 106.6666666666667V21.3333333333334H277.3333333333333V106.6666666666667H234.6666666666667M320 106.6666666666667V0H362.6666666666667V106.6666666666667H320z" />
+    <glyph glyph-name="shuffle"
+      unicode="&#xF49D;"
+      horiz-adv-x="512" d=" M316.3733333333334 161.92L286.2933333333333 131.84L353.0666666666667 65.0666666666667L309.3333333333333 21.3333333333334H426.6666666666667V138.6666666666667L383.1466666666667 95.1466666666667L316.3733333333334 161.92M309.3333333333333 362.6666666666667L352.8533333333333 319.1466666666667L85.3333333333333 51.4133333333334L115.4133333333333 21.3333333333334L383.1466666666667 288.8533333333334L426.6666666666667 245.3333333333334V362.6666666666667M225.92 252.3733333333334L115.4133333333333 362.6666666666667L85.3333333333333 332.5866666666667L195.6266666666667 222.2933333333334L225.92 252.3733333333334z" />
+    <glyph glyph-name="shuffle-disabled"
+      unicode="&#xF49E;"
+      horiz-adv-x="512" d=" M341.3333333333333 352V298.6666666666667H106.6666666666667V256H341.3333333333333V202.6666666666667L416 277.3333333333334M341.3333333333333 181.3333333333334V128H106.6666666666667V85.3333333333334H341.3333333333333V32L416 106.6666666666667" />
+    <glyph glyph-name="shuffle-variant"
+      unicode="&#xF49F;"
+      horiz-adv-x="512" d=" M362.6666666666667 384L474.6666666666666 288L362.6666666666667 192L474.6666666666666 96L362.6666666666667 0V64H304.2133333333333L244.0533333333333 124.16L289.28 169.3866666666667L330.6666666666667 128H362.6666666666667V256H330.6666666666667L138.6666666666667 64H42.6666666666667V128H112.2133333333333L304.2133333333333 320H362.6666666666667V384M42.6666666666667 320H138.6666666666667L198.8266666666667 259.8400000000001L153.6 214.6133333333333L112.2133333333333 256H42.6666666666667V320z" />
+    <glyph glyph-name="sigma"
+      unicode="&#xF4A0;"
+      horiz-adv-x="512" d=" M106.6666666666667 362.6666666666667H384V256H362.6666666666667L341.3333333333333 320H214.6133333333333L291.2 210.56L203.52 85.3333333333334H341.3333333333333L362.6666666666667 128H384V21.3333333333334H106.6666666666667L226.1333333333334 192L106.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="sigma-lower"
+      unicode="&#xF62B;"
+      horiz-adv-x="512" d=" M405.3333333333333 192C405.3333333333333 97.7066666666667 333.6533333333333 21.3333333333334 245.3333333333333 21.3333333333334C157.0133333333333 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S157.0133333333333 362.6666666666667 245.3333333333333 362.6666666666667H426.6666666666667V320H351.1466666666667C384 288.64 405.3333333333333 242.9866666666667 405.3333333333333 192M245.3333333333333 320C180.48 320 128 262.6133333333334 128 192S180.48 64 245.3333333333333 64S362.6666666666667 121.3866666666667 362.6666666666667 192S310.1866666666666 320 245.3333333333333 320z" />
+    <glyph glyph-name="sign-caution"
+      unicode="&#xF4A1;"
+      horiz-adv-x="512" d=" M42.6666666666667 384H469.3333333333333V170.6666666666667H384V0H341.3333333333333V170.6666666666667H170.6666666666667V0H128V170.6666666666667H42.6666666666667V384M404.6933333333333 213.3333333333334L426.6666666666667 235.3066666666667V295.4666666666667L344.5333333333333 213.3333333333334H404.6933333333333M284.16 213.3333333333334L412.16 341.3333333333334H352L224 213.3333333333334H284.16M163.4133333333333 213.3333333333334L291.4133333333333 341.3333333333334H231.04L103.04 213.3333333333334H163.4133333333333M110.5066666666667 341.3333333333334L85.3333333333333 316.1600000000001V256L170.6666666666667 341.3333333333334H110.5066666666667z" />
+    <glyph glyph-name="sign-direction"
+      unicode="&#xF780;"
+      horiz-adv-x="512" d=" M234.6666666666667 192H74.6666666666667L128 245.3333333333334L74.6666666666667 298.6666666666667H234.6666666666667V384L256 405.3333333333333L277.3333333333333 384V298.6666666666667H384L437.3333333333333 245.3333333333334L384 192H277.3333333333333V21.3333333333334C300.8 21.3333333333334 320 2.1333333333334 320 -21.3333333333333H192C192 2.1333333333334 211.2 21.3333333333334 234.6666666666667 21.3333333333334V192z" />
+    <glyph glyph-name="sign-text"
+      unicode="&#xF781;"
+      horiz-adv-x="512" d=" M234.6666666666667 384L256 405.3333333333333L277.3333333333333 384V341.3333333333334H426.6666666666667C438.4 341.3333333333334 448 331.7333333333334 448 320V106.6666666666667C448 94.9333333333333 438.4 85.3333333333334 426.6666666666667 85.3333333333334H277.3333333333333V21.3333333333334C300.8 21.3333333333334 320 2.1333333333334 320 -21.3333333333333H192C192 2.1333333333334 211.2 21.3333333333334 234.6666666666667 21.3333333333334V85.3333333333334H85.3333333333333C73.6 85.3333333333334 64 94.9333333333333 64 106.6666666666667V320C64 331.7333333333334 73.6 341.3333333333334 85.3333333333333 341.3333333333334H234.6666666666667V384M128 277.3333333333334V234.6666666666667H384V277.3333333333334H128M128 192V149.3333333333334H277.3333333333333V192H128z" />
+    <glyph glyph-name="signal"
+      unicode="&#xF4A2;"
+      horiz-adv-x="512" d=" M64 0H128V64H64M170.6666666666667 0H234.6666666666667V149.3333333333334H170.6666666666667M277.3333333333333 0H341.3333333333333V256H277.3333333333333M384 0H448V384H384V0z" />
+    <glyph glyph-name="signal-2g"
+      unicode="&#xF711;"
+      horiz-adv-x="512" d=" M234.6666666666667 32H42.6666666666667V160C42.6666666666667 195.4133333333334 71.2533333333333 224 106.6666666666667 224H170.6666666666667V288H42.6666666666667V352H170.6666666666667C206.08 352 234.6666666666667 323.4133333333334 234.6666666666667 288V224C234.6666666666667 188.5866666666667 206.08 160 170.6666666666667 160H106.6666666666667V96H234.6666666666667M469.3333333333333 224H373.3333333333333V160H405.3333333333333V96H341.3333333333333V288H469.3333333333333V352H341.3333333333333C305.92 352 277.3333333333333 323.4133333333334 277.3333333333333 288V96C277.3333333333333 60.5866666666667 305.92 32 341.3333333333333 32H405.3333333333333C440.7466666666667 32 469.3333333333333 60.5866666666667 469.3333333333333 96" />
+    <glyph glyph-name="signal-3g"
+      unicode="&#xF712;"
+      horiz-adv-x="512" d=" M234.6666666666667 96V144C234.6666666666667 170.6666666666667 213.3333333333333 192 186.6666666666667 192C213.3333333333333 192 234.6666666666667 213.3333333333334 234.6666666666667 240V288C234.6666666666667 323.4133333333334 206.08 352 170.6666666666667 352H42.6666666666667V288H170.6666666666667V224H106.6666666666667V160H170.6666666666667V96H42.6666666666667V32H170.6666666666667C206.08 32 234.6666666666667 60.5866666666667 234.6666666666667 96M469.3333333333333 96V224H373.3333333333333V160H405.3333333333333V96H341.3333333333333V288H469.3333333333333V352H341.3333333333333C305.92 352 277.3333333333333 323.4133333333334 277.3333333333333 288V96C277.3333333333333 60.5866666666667 305.92 32 341.3333333333333 32H405.3333333333333C440.7466666666667 32 469.3333333333333 60.5866666666667 469.3333333333333 96z" />
+    <glyph glyph-name="signal-4g"
+      unicode="&#xF713;"
+      horiz-adv-x="512" d=" M469.3333333333333 96V224H373.3333333333333V160H405.3333333333333V96H341.3333333333333V288H469.3333333333333V352H341.3333333333333C305.92 352 277.3333333333333 323.4133333333334 277.3333333333333 288V96C277.3333333333333 60.5866666666667 305.92 32 341.3333333333333 32H405.3333333333333C440.7466666666667 32 469.3333333333333 60.5866666666667 469.3333333333333 96M170.6666666666667 32H234.6666666666667V352H170.6666666666667V224H106.6666666666667V352H42.6666666666667V160H170.6666666666667V32z" />
+    <glyph glyph-name="signal-5g"
+      unicode="&#xFA6E;"
+      horiz-adv-x="512" d=" M469.3333333333333 96V224H373.3333333333333V160H405.3333333333333V96H341.3333333333333V288H469.3333333333333V352H341.3333333333333C305.92 352 277.3333333333333 323.4133333333334 277.3333333333333 288V96C277.3333333333333 60.5866666666667 305.92 32 341.3333333333333 32H405.3333333333333C440.7466666666667 32 469.3333333333333 60.5866666666667 469.3333333333333 96M213.3333333333333 352H64V160H149.3333333333333V96H64V32H181.3333333333333C199.04 32 213.3333333333333 46.2933333333334 213.3333333333333 64V192C213.3333333333333 209.7066666666667 199.04 224 181.3333333333333 224H128V288H213.3333333333333V352z" />
+    <glyph glyph-name="signal-cellular-1"
+      unicode="&#xF8BB;"
+      horiz-adv-x="512" d=" M416 330.6666666666667V53.3333333333334H373.3333333333333V330.6666666666667H416M266.6666666666667 224V53.3333333333334H224V224H266.6666666666667M448 362.6666666666667H341.3333333333333V21.3333333333334H448V362.6666666666667M298.6666666666667 256H192V21.3333333333334H298.6666666666667V256M149.3333333333333 149.3333333333334H42.6666666666667V21.3333333333334H149.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="signal-cellular-2"
+      unicode="&#xF8BC;"
+      horiz-adv-x="512" d=" M416 330.6666666666667V53.3333333333334H373.3333333333333V330.6666666666667H416M448 362.6666666666667H341.3333333333333V21.3333333333334H448V362.6666666666667M298.6666666666667 256H192V21.3333333333334H298.6666666666667V256M149.3333333333333 149.3333333333334H42.6666666666667V21.3333333333334H149.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="signal-cellular-3"
+      unicode="&#xF8BD;"
+      horiz-adv-x="512" d=" M448 362.6666666666667H341.3333333333333V21.3333333333334H448V362.6666666666667M298.6666666666667 256H192V21.3333333333334H298.6666666666667V256M149.3333333333333 149.3333333333334H42.6666666666667V21.3333333333334H149.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="signal-cellular-outline"
+      unicode="&#xF8BE;"
+      horiz-adv-x="512" d=" M416 330.6666666666667V53.3333333333334H373.3333333333333V330.6666666666667H416M266.6666666666667 224V53.3333333333334H224V224H266.6666666666667M117.3333333333333 117.3333333333334V53.3333333333334H74.6666666666667V117.3333333333334H117.3333333333333M448 362.6666666666667H341.3333333333333V21.3333333333334H448V362.6666666666667M298.6666666666667 256H192V21.3333333333334H298.6666666666667V256M149.3333333333333 149.3333333333334H42.6666666666667V21.3333333333334H149.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="signal-hspa"
+      unicode="&#xF714;"
+      horiz-adv-x="512" d=" M224 224H288V352H352V32H288V160H224V32H160V352H224V224z" />
+    <glyph glyph-name="signal-hspa-plus"
+      unicode="&#xF715;"
+      horiz-adv-x="512" d=" M405.3333333333333 277.3333333333334V213.3333333333334H469.3333333333333V149.3333333333334H405.3333333333333V85.3333333333334H341.3333333333333V149.3333333333334H277.3333333333333V213.3333333333334H341.3333333333333V277.3333333333334H405.3333333333333M106.6666666666667 224H170.6666666666667V352H234.6666666666667V32H170.6666666666667V160H106.6666666666667V32H42.6666666666667V352H106.6666666666667V224z" />
+    <glyph glyph-name="signal-off"
+      unicode="&#xF782;"
+      horiz-adv-x="512" d=" M384 384V102.8266666666667L448 38.8266666666667V384H384M91.3066666666667 341.3333333333334L64 314.24L228.9066666666667 149.3333333333334H170.6666666666667V0H234.6666666666667V143.5733333333334L277.3333333333333 100.9066666666667V0H341.3333333333333V36.9066666666667L420.9066666666667 -42.6666666666666L448 -15.36L91.3066666666667 341.3333333333334M277.3333333333333 256V209.4933333333334L341.3333333333333 145.4933333333334V256H277.3333333333333M64 64V0H128V64H64z" />
+    <glyph glyph-name="signal-variant"
+      unicode="&#xF60A;"
+      horiz-adv-x="512" d=" M85.3333333333333 320V362.6666666666667H87.4666666666667C275.2 362.6666666666667 426.6666666666667 211.2 426.6666666666667 23.4666666666667V21.3333333333334H384V23.4666666666667C384 187.7333333333334 251.7333333333334 320 85.3333333333333 320M85.3333333333333 234.6666666666667V277.3333333333334C226.7733333333333 277.3333333333334 341.3333333333333 162.7733333333333 341.3333333333333 21.3333333333334H298.6666666666667C298.6666666666667 139.0933333333334 203.0933333333333 234.6666666666667 85.3333333333333 234.6666666666667M85.3333333333333 149.3333333333334V192C179.6266666666667 192 256 115.6266666666667 256 21.3333333333334H213.3333333333333C213.3333333333333 91.9466666666667 155.9466666666667 149.3333333333334 85.3333333333333 149.3333333333334M85.3333333333333 106.6666666666667C132.48 106.6666666666667 170.6666666666667 68.48 170.6666666666667 21.3333333333334H85.3333333333333V106.6666666666667z" />
+    <glyph glyph-name="silo"
+      unicode="&#xFB24;"
+      horiz-adv-x="512" d=" M181.3333333333333 405.3333333333333C252.8 405.3333333333333 311.4666666666667 351.36 319.1466666666667 282.0266666666667L469.3333333333333 192V149.3333333333334L426.6666666666667 174.9333333333333V-21.3333333333333H384V200.5333333333334L320 238.9333333333334V-21.3333333333333H277.3333333333333V256H85.3333333333333V-21.3333333333333H42.6666666666667V266.6666666666667C42.6666666666667 343.2533333333334 104.7466666666667 405.3333333333333 181.3333333333333 405.3333333333333M181.3333333333333 362.6666666666667C139.52 362.6666666666667 103.8933333333333 336 90.88 298.6666666666667H271.7866666666667C258.7733333333333 336 223.1466666666667 362.6666666666667 181.3333333333333 362.6666666666667M128 213.3333333333334H234.6666666666667V170.6666666666667H128V213.3333333333334M128 128H234.6666666666667V85.3333333333334H128V128M128 42.6666666666667H234.6666666666667V0H128V42.6666666666667z" />
+    <glyph glyph-name="silverware"
+      unicode="&#xF4A3;"
+      horiz-adv-x="512" d=" M172.8 163.4133333333334L83.4133333333333 252.5866666666667C50.1333333333333 286.0800000000001 50.1333333333333 340.0533333333334 83.4133333333333 373.3333333333334L233.1733333333333 224L172.8 163.4133333333334M317.44 202.0266666666667L286.08 170.6666666666667L432.8533333333333 23.8933333333334L402.7733333333333 -6.1866666666666L256 140.5866666666667L109.2266666666667 -6.1866666666666L79.1466666666667 23.8933333333334L287.36 232.1066666666667C272.2133333333333 264.7466666666667 282.88 310.6133333333334 316.8 344.5333333333334C357.5466666666666 385.4933333333334 416 393.1733333333334 447.1466666666666 362.0266666666667C478.5066666666665 330.6666666666667 470.8266666666666 272.2133333333334 429.8666666666666 231.4666666666667C395.9466666666666 197.5466666666667 350.08 186.8800000000001 317.44 202.0266666666667z" />
+    <glyph glyph-name="silverware-fork"
+      unicode="&#xF4A4;"
+      horiz-adv-x="512" d=" M109.2266666666667 -6.1866666666666L79.1466666666667 23.8933333333334L285.0133333333333 229.9733333333334L280.7466666666667 234.6666666666667C264.1066666666667 251.0933333333334 264.1066666666667 277.9733333333334 280.7466666666667 294.6133333333334L373.3333333333333 387.8400000000001L393.1733333333333 368.2133333333334L324.0533333333333 298.6666666666667L344.5333333333333 278.6133333333334L413.6533333333333 347.9466666666667L433.2800000000001 328.3200000000001L363.9466666666667 259.2000000000001L384.0000000000001 238.7200000000001L453.5466666666667 308.0533333333334L473.1733333333335 288.0000000000001L379.9466666666668 195.4133333333334C363.3066666666668 178.7733333333334 336.4266666666668 178.7733333333334 320.0000000000001 195.4133333333334L315.3066666666668 199.68L109.2266666666668 -6.1866666666666z" />
+    <glyph glyph-name="silverware-fork-knife"
+      unicode="&#xFA6F;"
+      horiz-adv-x="512" d=" M234.6666666666667 256H192V405.3333333333333H149.3333333333333V256H106.6666666666667V405.3333333333333H64V256C64 210.7733333333333 99.4133333333333 174.0800000000001 144 171.3066666666667V-21.3333333333333H197.3333333333333V171.3066666666667C241.92 174.0800000000001 277.3333333333333 210.7733333333334 277.3333333333333 256V405.3333333333333H234.6666666666667V256M341.3333333333333 320V149.3333333333334H394.6666666666667V-21.3333333333333H448V405.3333333333333C389.12 405.3333333333333 341.3333333333333 357.5466666666667 341.3333333333333 320z" />
+    <glyph glyph-name="silverware-spoon"
+      unicode="&#xF4A5;"
+      horiz-adv-x="512" d=" M317.44 202.0266666666667L109.2266666666667 -6.1866666666666L79.1466666666667 23.8933333333334L287.36 232.1066666666667C272.2133333333334 264.7466666666667 282.88 310.6133333333334 316.8 344.5333333333334C357.5466666666667 385.4933333333334 416 393.1733333333334 447.1466666666667 362.0266666666667C478.5066666666667 330.6666666666667 470.8266666666667 272.2133333333334 429.8666666666667 231.4666666666667C395.9466666666667 197.5466666666667 350.0800000000001 186.8800000000001 317.4400000000001 202.0266666666667z" />
+    <glyph glyph-name="silverware-variant"
+      unicode="&#xF4A6;"
+      horiz-adv-x="512" d=" M172.8 163.4133333333334L83.4133333333333 252.5866666666667C50.1333333333333 286.0800000000001 50.1333333333333 340.0533333333334 83.4133333333333 373.3333333333334L233.1733333333333 224L172.8 163.4133333333334M286.08 170.6666666666667L432.8533333333333 23.8933333333334L402.7733333333333 -6.1866666666666L256 140.5866666666667L109.2266666666667 -6.1866666666666L79.1466666666667 23.8933333333334L285.0133333333333 229.9733333333334L280.7466666666667 234.6666666666667C264.1066666666667 251.0933333333334 264.1066666666667 277.9733333333334 280.7466666666667 294.6133333333334L373.3333333333333 387.8400000000001L393.1733333333333 368.2133333333334L324.0533333333333 298.6666666666667L344.5333333333333 278.6133333333334L413.6533333333333 347.9466666666667L433.2800000000001 328.3200000000001L363.9466666666667 259.2000000000001L384.0000000000001 238.7200000000001L453.5466666666667 308.0533333333334L473.1733333333335 288.0000000000001L379.9466666666668 195.4133333333334C363.3066666666668 178.7733333333334 336.4266666666668 178.7733333333334 320.0000000000001 195.4133333333334L315.3066666666668 199.68L286.08 170.6666666666667z" />
+    <glyph glyph-name="sim"
+      unicode="&#xF4A7;"
+      horiz-adv-x="512" d=" M426.6666666666667 362.6666666666667C426.6666666666667 386.1333333333334 407.4666666666667 405.3333333333333 384 405.3333333333333H213.3333333333333L85.3333333333333 277.3333333333334V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.68 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667M192 42.6666666666667H149.3333333333333V85.3333333333334H192V42.6666666666667M362.6666666666667 42.6666666666667H320V85.3333333333334H362.6666666666667V42.6666666666667M192 128H149.3333333333333V213.3333333333334H192V128M277.3333333333333 42.6666666666667H234.6666666666667V128H277.3333333333333V42.6666666666667M277.3333333333333 170.6666666666667H234.6666666666667V213.3333333333334H277.3333333333333V170.6666666666667M362.6666666666667 128H320V213.3333333333334H362.6666666666667V128z" />
+    <glyph glyph-name="sim-alert"
+      unicode="&#xF4A8;"
+      horiz-adv-x="512" d=" M277.3333333333333 170.6666666666667H234.6666666666667V277.3333333333334H277.3333333333333M277.3333333333333 85.3333333333334H234.6666666666667V128H277.3333333333333M384 405.3333333333333H213.3333333333333L85.3333333333333 277.3333333333334V21.3333333333334C85.3333333333333 -2.1333333333333 104.5333333333333 -21.3333333333333 128 -21.3333333333333H384C407.4666666666667 -21.3333333333333 426.6666666666667 -2.1333333333333 426.6666666666667 21.3333333333334V362.6666666666667C426.6666666666667 386.1333333333334 407.4666666666667 405.3333333333333 384 405.3333333333333z" />
+    <glyph glyph-name="sim-off"
+      unicode="&#xF4A9;"
+      horiz-adv-x="512" d=" M405.3333333333333 341.3333333333334C405.3333333333333 364.8 386.1333333333334 384 362.6666666666667 384H213.3333333333333L163.4133333333333 334.0800000000001L405.3333333333333 92.16V341.3333333333334M77.8666666666667 365.2266666666667L50.7733333333333 338.1333333333334L106.6666666666667 282.24V42.6666666666667C106.6666666666667 19.2 125.8666666666667 0 149.3333333333333 0H362.6666666666667C370.3466666666667 0 377.1733333333333 2.1333333333334 383.36 5.5466666666667L423.4666666666666 -34.5599999999999L450.5599999999999 -7.4666666666666L77.8666666666667 365.2266666666667z" />
+    <glyph glyph-name="sina-weibo"
+      unicode="&#xFADE;"
+      horiz-adv-x="512" d=" M209.4933333333334 152.1066666666667C232.32 152.1066666666667 251.0933333333333 133.5466666666668 251.0933333333333 110.5066666666667S232.5333333333334 68.9066666666667 209.4933333333334 68.9066666666667S167.8933333333333 87.68 167.8933333333333 110.5066666666667C167.8933333333333 133.5466666666667 186.4533333333333 152.1066666666667 209.4933333333334 152.1066666666667M309.3333333333333 376.7466666666667L323.84 377.3866666666667C404.0533333333333 377.3866666666667 469.3333333333333 312.1066666666667 469.3333333333333 231.8933333333333L468.2666666666667 214.4L442.88 222.2933333333333L443.3066666666666 231.8933333333333C443.3066666666666 297.8133333333333 389.7599999999999 351.36 323.8399999999999 351.36L316.3733333333333 351.1466666666667L309.3333333333333 376.7466666666666M326.8266666666666 315.0933333333333C370.7733333333333 313.6 406.3999999999999 277.3333333333333 407.04 233.3866666666667L380.5866666666667 241.4933333333333C376.5333333333333 265.3866666666667 357.9733333333334 284.16 334.2933333333333 288L326.8266666666667 315.0933333333333M42.6666666666667 119.2533333333333C42.0266666666667 132.2666666666667 44.16 178.3466666666667 105.6 235.3066666666667C178.1333333333333 302.7200000000001 209.4933333333334 297.6 209.4933333333334 297.6S277.3333333333333 304 235.9466666666667 224.8533333333334H237.44C247.4666666666667 235.5200000000001 269.2266666666667 251.5200000000001 313.3866666666667 256C357.7600000000001 260.48 357.7600000000001 224 352 198.4C392.1066666666667 178.3466666666667 417.28 148.6933333333334 417.28 115.6266666666667C417.28 55.4666666666667 333.44 6.6133333333334 229.9733333333333 6.6133333333334H224C149.3333333333333 6.6133333333334 85.3333333333333 33.7066666666667 57.8133333333333 72.7466666666668C48 85.9733333333335 42.6666666666667 100.4800000000001 42.6666666666667 115.6266666666668V119.2533333333335M209.4933333333334 193.7066666666668C140.5866666666667 193.7066666666668 84.6933333333333 156.3733333333335 84.6933333333333 110.5066666666668S140.5866666666667 27.3066666666668 209.4933333333334 27.3066666666668C278.4 27.3066666666668 334.2933333333333 64.6400000000001 334.2933333333333 110.5066666666668S278.4 193.7066666666668 209.4933333333334 193.7066666666668z" />
+    <glyph glyph-name="sitemap"
+      unicode="&#xF4AA;"
+      horiz-adv-x="512" d=" M192 405.3333333333333V277.3333333333334H234.6666666666667V213.3333333333334H106.6666666666667C82.9866666666667 213.3333333333334 64 194.3466666666667 64 170.6666666666667V106.6666666666667H21.3333333333333V-21.3333333333333H149.3333333333333V106.6666666666667H106.6666666666667V170.6666666666667H234.6666666666667V106.6666666666667H192V-21.3333333333333H320V106.6666666666667H277.3333333333333V170.6666666666667H405.3333333333333V106.6666666666667H362.6666666666667V-21.3333333333333H490.6666666666666V106.6666666666667H448V170.6666666666667C448 194.3466666666667 429.0133333333333 213.3333333333334 405.3333333333333 213.3333333333334H277.3333333333333V277.3333333333334H320V405.3333333333333H192z" />
+    <glyph glyph-name="skip-backward"
+      unicode="&#xF4AB;"
+      horiz-adv-x="512" d=" M426.6666666666667 341.3333333333334V42.6666666666667L277.3333333333333 192M128 341.3333333333334V42.6666666666667H85.3333333333333V341.3333333333334M277.3333333333333 341.3333333333334V42.6666666666667L128 192" />
+    <glyph glyph-name="skip-forward"
+      unicode="&#xF4AC;"
+      horiz-adv-x="512" d=" M85.3333333333333 341.3333333333334V42.6666666666667L234.6666666666667 192M384 341.3333333333334V42.6666666666667H426.6666666666667V341.3333333333334M234.6666666666667 341.3333333333334V42.6666666666667L384 192" />
+    <glyph glyph-name="skip-next"
+      unicode="&#xF4AD;"
+      horiz-adv-x="512" d=" M341.3333333333333 64H384V320H341.3333333333333M128 64L309.3333333333333 192L128 320V64z" />
+    <glyph glyph-name="skip-next-circle"
+      unicode="&#xF661;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M170.6666666666667 277.3333333333334L277.3333333333333 192L170.6666666666667 106.6666666666667M298.6666666666667 277.3333333333334H341.3333333333333V106.6666666666667H298.6666666666667" />
+    <glyph glyph-name="skip-next-circle-outline"
+      unicode="&#xF662;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 362.6666666666667C350.08 362.6666666666667 426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334S85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667M170.6666666666667 277.3333333333334V106.6666666666667L277.3333333333333 192M298.6666666666667 277.3333333333334V106.6666666666667H341.3333333333333V277.3333333333334" />
+    <glyph glyph-name="skip-previous"
+      unicode="&#xF4AE;"
+      horiz-adv-x="512" d=" M128 64V320H170.6666666666667V64H128M202.6666666666667 192L384 320V64L202.6666666666667 192z" />
+    <glyph glyph-name="skip-previous-circle"
+      unicode="&#xF663;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M170.6666666666667 277.3333333333334H213.3333333333333V106.6666666666667H170.6666666666667M341.3333333333333 277.3333333333334V106.6666666666667L234.6666666666667 192" />
+    <glyph glyph-name="skip-previous-circle-outline"
+      unicode="&#xF664;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.92 362.6666666666667 85.3333333333333 286.0800000000001 85.3333333333333 192S161.92 21.3333333333334 256 21.3333333333334S426.6666666666667 97.92 426.6666666666667 192S350.08 362.6666666666667 256 362.6666666666667M341.3333333333333 277.3333333333334V106.6666666666667L234.6666666666667 192M213.3333333333333 277.3333333333334V106.6666666666667H170.6666666666667V277.3333333333334" />
+    <glyph glyph-name="skull"
+      unicode="&#xF68B;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C149.9733333333333 405.3333333333333 64 319.36 64 213.3333333333334C64 148.6933333333334 96.64 89.1733333333334 149.3333333333333 53.9733333333334V-21.3333333333333H192V42.6666666666667H234.6666666666667V-21.3333333333333H277.3333333333333V42.6666666666667H320V-21.3333333333333H362.6666666666667V54.1866666666667C415.36 89.3866666666667 448 149.3333333333334 448 213.3333333333334C448 319.36 362.0266666666667 405.3333333333333 256 405.3333333333333M170.6666666666667 213.3333333333334C194.1333333333333 213.3333333333334 213.3333333333333 194.1333333333333 213.3333333333333 170.6666666666667S194.1333333333333 128 170.6666666666667 128S128 147.2000000000001 128 170.6666666666667S147.2 213.3333333333334 170.6666666666667 213.3333333333334M341.3333333333333 213.3333333333334C364.8 213.3333333333334 384 194.1333333333333 384 170.6666666666667S364.8 128 341.3333333333333 128S298.6666666666667 147.2000000000001 298.6666666666667 170.6666666666667S317.8666666666667 213.3333333333334 341.3333333333333 213.3333333333334M256 149.3333333333334L288 85.3333333333334H224L256 149.3333333333334z" />
+    <glyph glyph-name="skull-crossbones"
+      unicode="&#xFBA2;"
+      horiz-adv-x="512" d=" M337.0666666666667 53.3333333333334L465.0666666666667 19.2L456.5333333333334 -21.3333333333333L256 32L55.4666666666667 -21.3333333333333L44.8 19.2L172.8 53.3333333333334L42.6666666666667 87.4666666666667L53.3333333333333 128.0000000000001L253.8666666666667 74.6666666666667L454.4 128L465.0666666666667 87.4666666666667L337.0666666666667 53.3333333333334M384 277.3333333333334C384 238.9333333333334 366.9333333333333 206.9333333333333 341.3333333333333 183.4666666666667V128H298.6666666666667V170.6666666666667H277.3333333333333V128H234.6666666666667V170.6666666666667H213.3333333333333V128H170.6666666666667V183.4666666666667C145.0666666666667 206.9333333333333 128 238.9333333333334 128 277.3333333333334C128 347.9466666666667 185.3866666666667 405.3333333333333 256 405.3333333333333S384 347.9466666666667 384 277.3333333333334M234.6666666666667 288C234.6666666666667 305.0666666666667 219.7333333333334 320 202.6666666666667 320S170.6666666666667 305.0666666666667 170.6666666666667 288S185.6 256 202.6666666666667 256S234.6666666666667 270.9333333333334 234.6666666666667 288M277.3333333333333 213.3333333333334L256 256L234.6666666666667 213.3333333333334H277.3333333333333M341.3333333333333 288C341.3333333333333 305.0666666666667 326.4 320 309.3333333333333 320S277.3333333333333 305.0666666666667 277.3333333333333 288S292.2666666666667 256 309.3333333333333 256S341.3333333333333 270.9333333333334 341.3333333333333 288z" />
+    <glyph glyph-name="skull-crossbones-outline"
+      unicode="&#xFBA3;"
+      horiz-adv-x="512" d=" M337.0666666666667 53.3333333333334L465.0666666666667 19.2L456.5333333333334 -21.3333333333333L256 32L55.4666666666667 -21.3333333333333L44.8 19.2L172.8 53.3333333333334L42.6666666666667 87.4666666666667L53.3333333333333 128.0000000000001L253.8666666666667 74.6666666666667L454.4 128L465.0666666666667 87.4666666666667L337.0666666666667 53.3333333333334M202.6666666666667 320C185.6 320 170.6666666666667 305.0666666666667 170.6666666666667 288S185.6 256 202.6666666666667 256S234.6666666666667 270.9333333333334 234.6666666666667 288S219.7333333333334 320 202.6666666666667 320M309.3333333333333 320C292.2666666666667 320 277.3333333333333 305.0666666666667 277.3333333333333 288S292.2666666666667 256 309.3333333333333 256S341.3333333333333 270.9333333333334 341.3333333333333 288S326.4 320 309.3333333333333 320M277.3333333333333 213.3333333333334L256 256L234.6666666666667 213.3333333333334H277.3333333333333M256 426.6666666666667C172.8 426.6666666666667 106.6666666666667 360.5333333333334 106.6666666666667 277.3333333333334C106.6666666666667 236.8 123.7333333333333 200.5333333333334 149.3333333333333 172.8V106.6666666666667H362.6666666666667V172.8C388.2666666666667 200.5333333333334 405.3333333333333 236.8 405.3333333333333 277.3333333333334C405.3333333333333 360.5333333333334 339.2 426.6666666666667 256 426.6666666666667M320 192V149.3333333333334H298.6666666666667V192H277.3333333333333V149.3333333333334H234.6666666666667V192H213.3333333333333V149.3333333333334H192V192C166.4 211.2 149.3333333333333 241.0666666666667 149.3333333333333 277.3333333333334C149.3333333333333 337.0666666666667 196.2666666666667 384 256 384S362.6666666666667 337.0666666666667 362.6666666666667 277.3333333333334C362.6666666666667 243.2 345.6 211.2 320 192z" />
+    <glyph glyph-name="skull-outline"
+      unicode="&#xFBA4;"
+      horiz-adv-x="512" d=" M170.6666666666667 128C147.2 128 128 147.2000000000001 128 170.6666666666667S147.2 213.3333333333334 170.6666666666667 213.3333333333334S213.3333333333333 194.1333333333333 213.3333333333333 170.6666666666667S194.1333333333333 128 170.6666666666667 128M224 85.3333333333334L256 149.3333333333334L288 85.3333333333334H224M341.3333333333333 128C317.8666666666667 128 298.6666666666667 147.2000000000001 298.6666666666667 170.6666666666667S317.8666666666667 213.3333333333334 341.3333333333333 213.3333333333334S384 194.1333333333333 384 170.6666666666667S364.8 128 341.3333333333333 128M469.3333333333333 213.3333333333334C469.3333333333333 331.0933333333334 373.76 426.6666666666667 256 426.6666666666667S42.6666666666667 331.0933333333334 42.6666666666667 213.3333333333334C42.6666666666667 153.6 68.2666666666667 100.2666666666667 106.6666666666667 61.8666666666667V-21.3333333333333H405.3333333333333V61.8666666666667C443.7333333333334 100.2666666666667 469.3333333333333 153.6 469.3333333333333 213.3333333333333M362.6666666666667 21.3333333333334H320V64H277.3333333333333V21.3333333333334H234.6666666666667V64H192V21.3333333333334H149.3333333333333V81.0666666666667C110.9333333333333 113.0666666666667 85.3333333333333 160 85.3333333333333 213.3333333333334C85.3333333333333 307.6266666666667 161.7066666666667 384 256 384S426.6666666666667 307.6266666666667 426.6666666666667 213.3333333333334C426.6666666666667 160 401.0666666666667 110.9333333333333 362.6666666666667 81.0666666666667V21.3333333333334z" />
+    <glyph glyph-name="skype"
+      unicode="&#xF4AF;"
+      horiz-adv-x="512" d=" M384 320C428.16 276.48 444.8 215.68 434.3466666666667 158.9333333333333C443.0933333333333 143.5733333333333 448 125.6533333333333 448 106.6666666666667C448 47.7866666666668 400.2133333333333 0 341.3333333333333 0C322.3466666666667 0 304.4266666666666 4.9066666666667 289.0666666666667 13.6533333333334C232.32 3.2 171.52 19.84 128 64C83.84 107.52 67.2 168.3200000000001 77.6533333333334 225.0666666666667C68.9066666666667 240.4266666666667 64 258.3466666666667 64 277.3333333333334C64 336.2133333333334 111.7866666666667 384 170.6666666666667 384C189.6533333333333 384 207.5733333333333 379.0933333333334 222.9333333333333 370.3466666666667C279.68 380.8 340.48 364.16 384 320M256.8533333333333 81.92C318.08 81.92 348.5866666666667 111.36 348.5866666666667 151.04C348.5866666666667 176.4266666666667 336.64 203.52 290.3466666666667 213.9733333333334L247.8933333333333 223.36C231.68 226.9866666666667 213.3333333333333 231.8933333333334 213.3333333333333 247.04C213.3333333333333 262.4000000000001 226.1333333333334 273.0666666666667 249.6 273.0666666666667C297.1733333333333 273.0666666666667 292.6933333333333 240.4266666666667 316.3733333333333 240.4266666666667C328.7466666666666 240.4266666666667 339.4133333333333 247.6800000000001 339.4133333333333 260.2666666666667C339.4133333333333 289.4933333333334 292.6933333333333 311.4666666666667 253.0133333333333 311.4666666666667C210.1333333333333 311.4666666666667 164.2666666666667 293.12 164.2666666666667 244.48C164.2666666666667 221.0133333333334 172.5866666666667 196.0533333333334 218.6666666666667 184.5333333333334L276.0533333333333 170.0266666666667C293.3333333333333 165.7600000000001 297.6 156.16 297.6 147.2000000000001C297.6 132.6933333333334 283.0933333333333 118.4 256.8533333333333 118.4C205.44 118.4 212.48 157.8666666666667 184.96 157.8666666666667C172.5866666666666 157.8666666666667 163.6266666666666 149.3333333333334 163.6266666666666 137.1733333333334C163.6266666666666 113.4933333333334 192 81.92 256.8533333333333 81.92z" />
+    <glyph glyph-name="skype-business"
+      unicode="&#xF4B0;"
+      horiz-adv-x="512" d=" M256.64 95.36C199.8933333333333 95.36 174.5066666666667 123.3066666666667 174.5066666666667 144.2133333333333C174.5066666666667 154.88 182.4 162.56 193.28 162.56C217.6 162.56 211.4133333333333 128 256.64 128C279.8933333333333 128 292.9066666666667 140.16 292.9066666666667 153.1733333333333C292.9066666666667 160.8533333333333 289.0666666666667 169.3866666666666 273.7066666666667 173.2266666666666L223.1466666666667 185.8133333333333C182.4 196.0533333333333 174.9333333333333 218.0266666666666 174.9333333333333 238.7199999999999C174.9333333333333 281.8133333333333 215.4666666666667 298.0266666666666 253.44 298.0266666666666C288 298.0266666666666 329.8133333333334 278.6133333333333 329.8133333333334 252.7999999999999C329.8133333333334 241.7066666666666 320 235.3066666666666 309.3333333333333 235.3066666666666C288 235.3066666666666 292.2666666666667 264.1066666666666 250.4533333333333 264.1066666666666C229.76 264.1066666666666 218.24 254.7199999999999 218.24 241.2799999999999C218.24 227.8399999999999 234.6666666666667 223.9999999999999 248.7466666666667 220.1599999999999L286.2933333333333 211.8399999999999C327.2533333333334 202.6666666666665 337.7066666666667 178.7733333333332 337.7066666666667 156.3733333333332C337.7066666666667 121.3866666666666 310.8266666666667 95.3599999999998 256.64 95.3599999999998M384 320C428.16 276.48 444.8 215.68 434.3466666666667 158.9333333333333C443.0933333333333 143.5733333333333 448 125.6533333333333 448 106.6666666666667C448 47.7866666666668 400.2133333333333 0 341.3333333333333 0C322.3466666666667 0 304.4266666666666 4.9066666666667 289.0666666666667 13.6533333333334C232.32 3.2 171.52 19.84 128 64C83.84 107.52 67.2 168.3200000000001 77.6533333333334 225.0666666666667C68.9066666666667 240.4266666666667 64 258.3466666666667 64 277.3333333333334C64 336.2133333333334 111.7866666666667 384 170.6666666666667 384C189.6533333333333 384 207.5733333333333 379.0933333333334 222.9333333333333 370.3466666666667C279.68 380.8 340.48 364.16 384 320M170.6666666666667 341.3333333333334C135.2533333333333 341.3333333333334 106.6666666666667 312.7466666666667 106.6666666666667 277.3333333333334C106.6666666666667 260.48 113.0666666666667 245.3333333333334 123.7333333333333 233.8133333333334C108.8 186.0266666666667 120.1066666666667 131.84 157.8666666666667 93.8666666666667C195.84 56.1066666666667 250.0266666666667 44.8000000000001 297.8133333333334 59.7333333333334C309.3333333333333 49.0666666666667 324.48 42.6666666666667 341.3333333333333 42.6666666666667C376.7466666666667 42.6666666666667 405.3333333333333 71.2533333333333 405.3333333333333 106.6666666666667C405.3333333333333 123.52 398.9333333333333 138.6666666666667 388.2666666666667 150.1866666666667C403.2 197.9733333333333 391.8933333333333 252.1600000000001 354.1333333333333 290.1333333333334C316.16 327.8933333333333 261.9733333333333 339.2 214.1866666666667 324.2666666666667C202.6666666666667 334.9333333333334 187.52 341.3333333333334 170.6666666666667 341.3333333333334z" />
+    <glyph glyph-name="slack"
+      unicode="&#xF4B1;"
+      horiz-adv-x="512" d=" M218.24 209.92L275.4133333333333 228.9066666666667L293.76 174.0800000000001L236.5866666666667 155.0933333333334L218.24 209.92M377.3866666666667 155.52C388.9066666666667 159.36 394.6666666666667 171.9466666666667 391.2533333333334 183.4666666666667C387.4133333333333 194.9866666666667 374.8266666666667 201.3866666666667 363.3066666666667 197.3333333333334L335.5733333333333 188.16L317.2266666666667 242.9866666666667L344.9600000000001 252.3733333333334C356.48 256 362.6666666666667 268.8 358.8266666666667 280.3200000000001C354.9866666666667 291.8400000000001 342.4 298.6666666666667 330.6666666666667 294.1866666666667L303.1466666666667 285.0133333333334L293.5466666666667 313.6C289.7066666666667 325.12 277.3333333333334 331.5200000000001 265.6 327.4666666666667C254.08 323.6266666666667 247.8933333333334 311.0400000000001 251.7333333333334 299.5200000000001L261.3333333333333 270.9333333333334L204.16 251.9466666666667L194.56 280.5333333333334C190.72 292.0533333333334 178.3466666666667 298.6666666666667 166.6133333333334 294.4000000000001C155.0933333333333 290.5600000000001 149.3333333333333 277.9733333333334 152.7466666666667 266.6666666666667L162.3466666666667 237.8666666666667L134.6133333333334 228.48C123.0933333333333 224.6400000000001 117.3333333333333 212.0533333333334 120.7466666666667 200.5333333333334C123.7333333333333 192 132.0533333333334 185.6 141.0133333333333 185.3866666666667L148.6933333333333 186.6666666666668L176.4266666666667 195.84L194.7733333333334 141.0133333333334L167.04 131.6266666666667C155.52 128.0000000000001 149.3333333333334 115.2000000000001 153.1733333333334 103.6800000000001C156.16 94.72 164.48 88.7466666666668 173.44 88.5333333333334L181.3333333333333 89.8133333333334L208.8533333333333 98.9866666666667L218.4533333333333 70.4C221.44 61.2266666666667 229.76 55.4666666666667 238.72 55.2533333333333L246.3999999999999 56.5333333333333C257.9199999999999 60.3733333333333 264.1066666666666 72.7466666666667 260.2666666666666 84.48L250.6666666666667 113.0666666666666L307.8399999999999 132.0533333333333L317.44 103.4666666666666C319.9999999999999 94.5066666666666 328.7466666666666 88.7466666666666 337.7066666666666 88.5333333333333L345.3866666666666 89.6C356.9066666666666 93.44 362.6666666666666 106.0266666666666 359.2533333333332 117.3333333333334L349.6533333333333 146.1333333333333L377.3866666666666 155.52M451.6266666666666 250.6666666666667C495.5733333333333 104.1066666666667 461.2266666666666 40.5333333333333 314.6666666666667 -3.6266666666667C168.1066666666666 -47.5733333333333 104.5333333333333 -13.2266666666667 60.3733333333333 133.3333333333333C16.4266666666667 279.8933333333333 50.7733333333333 343.4666666666667 197.3333333333333 387.6266666666667C343.8933333333333 431.5733333333333 407.4666666666667 397.2266666666667 451.6266666666667 250.6666666666667z" />
+    <glyph glyph-name="slackware"
+      unicode="&#xF90A;"
+      horiz-adv-x="512" d=" M159.36 81.28C157.2266666666667 65.0666666666666 151.04 59.52 132.0533333333333 59.52C112.4266666666667 59.52 103.8933333333333 68.48 102.6133333333333 88.1066666666667L98.3466666666667 156.8C98.3466666666667 172.5866666666667 103.8933333333333 180.2666666666667 125.0133333333333 180.2666666666667C153.8133333333333 180.2666666666667 150.1866666666667 159.1466666666667 162.9866666666667 138.6666666666667C177.7066666666667 114.7733333333333 213.3333333333333 99.2 262.6133333333333 99.2C323.6266666666666 99.2 362.6666666666667 125.0133333333333 362.6666666666667 158.5066666666667C362.6666666666667 187.0933333333333 338.9866666666667 205.0133333333333 295.4666666666667 209.92L245.3333333333333 215.68C153.8133333333333 225.7066666666667 108.8 251.9466666666666 108.8 306.7733333333333C108.8 361.1733333333334 171.9466666666667 405.3333333333333 260.48 405.3333333333333C288 405.3333333333333 315.9466666666667 399.1466666666667 347.52 389.12C347.52 399.7866666666667 353.7066666666666 403.2 369.0666666666667 403.2C393.8133333333334 403.2 395.7333333333334 397.0133333333333 397.2266666666667 382.2933333333334L402.1333333333334 322.5600000000001C402.1333333333334 309.3333333333334 392.32 302.2933333333334 376.1066666666667 302.2933333333334C348.8 302.2933333333334 353.0666666666667 322.5600000000001 338.3466666666667 339.8400000000001S294.1866666666667 368.4266666666667 257.7066666666667 368.4266666666667C201.3866666666667 368.4266666666667 164.2666666666667 343.68 164.2666666666667 309.3333333333334C164.2666666666667 281.6 190.2933333333333 265.3866666666667 242.7733333333334 259.8400000000001L297.6 254.2933333333334C377.6 245.3333333333334 418.3466666666667 215.04 418.3466666666667 163.6266666666667C418.3466666666667 103.04 356.48 62.2933333333334 260.48 62.2933333333334C225.28 62.2933333333334 193.7066666666666 68.9066666666667 159.36 81.2800000000001M21.3333333333333 106.6666666666667H42.6666666666667V0H490.6666666666666V-21.3333333333333H21.3333333333333V106.6666666666667z" />
+    <glyph glyph-name="sleep"
+      unicode="&#xF4B2;"
+      horiz-adv-x="512" d=" M490.6666666666666 192H362.6666666666667V234.6666666666667L434.9866666666667 320H362.6666666666667V362.6666666666667H490.6666666666666V320L418.56 234.6666666666667H490.6666666666666V192M320 106.6666666666667H192V149.3333333333334L264.32 234.6666666666667H192V277.3333333333334H320V234.6666666666667L247.8933333333334 149.3333333333334H320V106.6666666666667M149.3333333333333 21.3333333333334H21.3333333333333V64L93.6533333333333 149.3333333333334H21.3333333333333V192H149.3333333333333V149.3333333333334L77.2266666666667 64H149.3333333333333V21.3333333333334z" />
+    <glyph glyph-name="sleep-off"
+      unicode="&#xF4B3;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L271.5733333333333 106.6666666666667H192V149.3333333333334L208.8533333333333 169.3866666666667L42.6666666666667 335.5733333333334M490.6666666666666 192H362.6666666666667V234.6666666666667L434.9866666666667 320H362.6666666666667V362.6666666666667H490.6666666666666V320L418.56 234.6666666666667H490.6666666666666V192M209.4933333333334 277.3333333333334H320V234.6666666666667L288.8533333333333 197.9733333333333L209.4933333333334 277.3333333333334M149.3333333333333 21.3333333333334H21.3333333333333V64L93.6533333333333 149.3333333333334H21.3333333333333V192H149.3333333333333V149.3333333333334L77.2266666666667 64H149.3333333333333V21.3333333333334z" />
+    <glyph glyph-name="smog"
+      unicode="&#xFA70;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C215.04 405.3333333333333 181.3333333333333 376.5333333333333 172.5866666666667 338.1333333333334C158.9333333333333 353.28 139.3066666666667 362.6666666666667 117.3333333333333 362.6666666666667C76.16 362.6666666666667 42.6666666666667 329.1733333333334 42.6666666666667 288S76.16 213.3333333333334 117.3333333333333 213.3333333333334H142.5066666666667V192H228.6933333333333V213.3333333333334H283.3066666666666V192H369.4933333333334V213.3333333333334H394.6666666666667C435.84 213.3333333333334 469.3333333333333 246.8266666666667 469.3333333333333 288S435.84 362.6666666666667 394.6666666666667 362.6666666666667C372.6933333333333 362.6666666666667 353.0666666666667 353.28 339.4133333333333 338.1333333333334C330.6666666666667 376.5333333333333 296.96 405.3333333333333 256 405.3333333333333M153.6 149.3333333333334L136.5333333333333 -21.3333333333333H234.6666666666667L217.6 149.3333333333334H153.6M294.4 149.3333333333334L277.3333333333333 -21.3333333333333H375.4666666666666L358.3999999999999 149.3333333333334H294.3999999999999z" />
+    <glyph glyph-name="smoke-detector"
+      unicode="&#xF392;"
+      horiz-adv-x="512" d=" M256 64C326.6133333333334 64 384 121.3866666666667 384 192C384 262.8266666666667 326.6133333333334 320 256 320C185.1733333333333 320 128 262.8266666666667 128 192C128 121.3866666666667 185.3866666666667 64 256 64M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 365.0133333333333 82.9866666666667 384 106.6666666666667 384H405.3333333333333M170.6666666666667 192C170.6666666666667 239.1466666666667 208.8533333333333 277.3333333333334 256 277.3333333333334S341.3333333333333 239.1466666666667 341.3333333333333 192S303.1466666666667 106.6666666666667 256 106.6666666666667S170.6666666666667 144.8533333333334 170.6666666666667 192z" />
+    <glyph glyph-name="smoking"
+      unicode="&#xF4B4;"
+      horiz-adv-x="512" d=" M42.6666666666667 106.6666666666667H362.6666666666667V42.6666666666667H42.6666666666667V106.6666666666667M437.3333333333333 106.6666666666667H469.3333333333333V42.6666666666667H437.3333333333333V106.6666666666667M384 106.6666666666667H416V42.6666666666667H384V106.6666666666667M402.1333333333334 283.0933333333334C415.36 296.1066666666667 423.4666666666667 314.0266666666667 423.4666666666667 333.8666666666667C423.4666666666667 373.3333333333334 391.4666666666667 405.3333333333333 352 405.3333333333333V373.3333333333334C373.3333333333333 373.3333333333334 391.4666666666667 355.6266666666667 391.4666666666667 333.8666666666667S373.3333333333333 294.4 352 294.4V262.4000000000001C399.7866666666667 262.4000000000001 437.3333333333333 223.36 437.3333333333333 175.5733333333334V128H469.3333333333333V175.7866666666667C469.3333333333333 223.1466666666667 442.0266666666667 264.1066666666667 402.1333333333334 283.0933333333334M341.9733333333334 230.4000000000001H309.3333333333333C288 230.4000000000001 269.8666666666667 251.3066666666667 269.8666666666667 273.0666666666667S288 310.4000000000001 309.3333333333333 310.4000000000001V342.4000000000001C269.8666666666667 342.4000000000001 237.8666666666667 310.4000000000001 237.8666666666667 270.9333333333334S269.8666666666667 199.4666666666667 309.3333333333333 199.4666666666667H341.9733333333334C364.3733333333334 199.4666666666667 384 183.6800000000001 384 155.7333333333334V128H416V162.9866666666667C416 201.6 381.8666666666666 230.4000000000001 341.9733333333334 230.4000000000001z" />
+    <glyph glyph-name="smoking-off"
+      unicode="&#xF4B5;"
+      horiz-adv-x="512" d=" M42.6666666666667 320L192 170.6666666666667H42.6666666666667V106.6666666666667H256L405.3333333333333 -42.6666666666666L432 -16L69.3333333333333 346.6666666666667L42.6666666666667 320M437.3333333333333 170.6666666666667H469.3333333333333V106.6666666666667H437.3333333333333V170.6666666666667M384 170.6666666666667H416V106.6666666666667H384V170.6666666666667M402.1333333333334 343.8933333333333C415.36 356.9066666666667 423.4666666666667 374.8266666666667 423.4666666666667 394.6666666666667H391.4666666666667C391.4666666666667 373.3333333333333 373.3333333333333 355.2 352 355.2V323.2C399.7866666666667 323.2 437.3333333333333 284.16 437.3333333333333 236.3733333333333V192H469.3333333333333V236.3733333333334C469.3333333333333 283.9466666666667 442.0266666666667 324.9066666666667 402.1333333333334 343.8933333333333M309.3333333333333 262.4000000000001H341.9733333333334C364.3733333333334 262.4000000000001 384 246.6133333333334 384 218.6666666666667V192H416V225.92C416 264.3200000000001 381.8666666666666 293.3333333333334 341.9733333333334 293.3333333333334H309.3333333333333C288 293.3333333333334 269.8666666666667 314.24 269.8666666666667 336S288 373.3333333333334 309.3333333333333 373.3333333333334V405.3333333333333C269.8666666666667 405.3333333333333 237.8666666666667 373.3333333333334 237.8666666666667 333.8666666666667S269.8666666666667 262.4000000000001 309.3333333333333 262.4000000000001M362.6666666666667 108.16V170.6666666666667H300.16L362.6666666666667 108.16z" />
+    <glyph glyph-name="snapchat"
+      unicode="&#xF4B6;"
+      horiz-adv-x="512" d=" M256 11.7333333333333C230.6133333333334 11.7333333333333 215.4666666666667 22.6133333333334 202.0266666666667 32C192 38.8266666666667 183.04 45.44 172.3733333333333 47.1466666666667C147.84 48.4266666666667 140.5866666666667 47.1466666666667 127.36 44.8000000000001C125.0133333333333 44.8000000000001 122.24 45.4400000000001 121.1733333333334 49.2800000000001C117.3333333333334 65.2800000000001 116.2666666666667 69.7600000000001 113.4933333333334 70.1866666666667C85.3333333333333 74.6666666666667 68.0533333333333 81.0666666666668 64.64 88.96C64 93.8666666666667 65.4933333333333 96 67.84 96C90.6666666666667 100.0533333333334 110.9333333333333 112 128 132.0533333333334C141.44 147.4133333333334 147.84 162.3466666666667 148.48 163.84C151.8933333333333 170.6666666666667 152.5333333333333 176.64 150.6133333333333 181.3333333333334C146.9866666666667 190.0800000000001 134.6133333333333 193.92 121.1733333333333 198.4C113.92 201.1733333333334 102.1866666666667 207.1466666666667 103.68 215.4666666666667C104.96 221.44 112.8533333333333 225.7066666666667 123.9466666666667 224.8533333333334C131.4133333333333 221.44 137.8133333333333 219.7333333333334 143.5733333333333 219.7333333333334C150.6133333333333 219.7333333333334 153.8133333333333 222.2933333333334 154.6666666666667 223.1466666666667C152.32 260.6933333333334 150.4 293.3333333333334 158.72 311.8933333333334C183.68 367.7866666666667 236.3733333333334 372.2666666666667 256 372.2666666666667C275.6266666666667 372.2666666666667 328.32 367.7866666666667 353.28 311.8933333333333C361.6 293.3333333333334 359.68 260.6933333333334 357.3333333333333 223.1466666666667C358.1866666666666 222.2933333333334 361.3866666666667 219.7333333333334 368.4266666666666 219.7333333333334C374.1866666666666 219.7333333333334 380.5866666666667 221.44 388.0533333333334 224.8533333333334C399.1466666666667 225.7066666666667 407.04 221.44 408.32 215.4666666666667C409.8133333333334 207.1466666666667 398.08 201.1733333333334 390.8266666666667 198.4C377.3866666666667 193.92 365.0133333333333 190.0800000000001 361.3866666666667 181.3333333333334C359.4666666666667 176.64 360.1066666666667 170.6666666666667 363.5200000000001 163.84C364.1600000000001 162.3466666666667 370.56 147.4133333333334 384.0000000000001 132.0533333333334C401.0666666666667 112 421.3333333333334 100.0533333333333 444.1600000000001 96C446.5066666666667 96 448.0000000000001 93.8666666666667 447.36 88.96C443.9466666666667 81.0666666666667 426.6666666666668 74.6666666666667 398.5066666666667 70.1866666666667C395.7333333333334 69.7600000000001 394.6666666666668 65.2800000000001 390.8266666666667 49.2800000000001C389.7600000000001 45.4400000000001 386.9866666666668 44.8000000000001 384.6400000000001 44.8000000000001C371.4133333333334 47.1466666666667 364.1600000000001 48.4266666666667 339.6266666666668 47.1466666666667C328.9600000000001 45.4400000000001 320.0000000000001 38.8266666666667 309.9733333333334 32C296.5333333333334 22.6133333333333 281.3866666666668 11.7333333333333 256.0000000000001 11.7333333333333z" />
+    <glyph glyph-name="snowflake"
+      unicode="&#xF716;"
+      horiz-adv-x="512" d=" M443.52 150.4L393.8133333333334 137.1733333333334L351.1466666666667 161.2800000000001V222.72L393.8133333333334 246.8266666666667L443.52 233.6L454.6133333333333 274.7733333333334L416.8533333333333 284.8L426.6666666666667 322.5600000000001L385.4933333333334 333.6533333333334L372.2666666666667 283.9466666666667L329.6 259.8400000000001L277.3333333333333 290.56V338.7733333333333L313.8133333333334 375.2533333333334L283.52 405.3333333333333L256 377.8133333333334L228.48 405.3333333333333L198.1866666666667 375.2533333333334L234.6666666666667 338.7733333333333V290.56L181.3333333333333 259.8400000000001L138.6666666666667 283.9466666666667L126.2933333333333 333.6533333333333L85.3333333333333 322.56L95.36 284.8L57.6 274.7733333333333L68.6933333333333 233.6L118.4 246.8266666666667L161.0666666666667 222.72V161.0666666666666L118.4 136.96L68.6933333333333 150.1866666666666L57.6 109.0133333333333L95.36 98.9866666666666L85.3333333333333 61.44L126.5066666666667 50.3466666666667L139.7333333333333 100.0533333333333L182.4 124.16L234.6666666666667 93.44V45.2266666666666L198.1866666666667 8.7466666666666L228.48 -21.3333333333333L256 6.1866666666667L283.52 -21.3333333333333L313.6 8.7466666666667L277.3333333333333 45.2266666666667V93.4400000000001L330.6666666666667 124.3733333333334L373.3333333333333 100.2666666666668L386.56 50.5600000000001L426.6666666666667 61.4400000000002L416.64 99.2000000000002L454.4 109.2266666666668L443.52 150.4000000000002M202.6666666666667 222.72L256 253.6533333333334L309.3333333333333 222.72V161.2800000000001L256 130.3466666666667L202.6666666666667 161.28V222.72z" />
+    <glyph glyph-name="snowman"
+      unicode="&#xF4B7;"
+      horiz-adv-x="512" d=" M362.6666666666667 85.3333333333334C362.6666666666667 26.4533333333334 314.88 -21.3333333333333 256 -21.3333333333333S149.3333333333333 26.4533333333334 149.3333333333333 85.3333333333334C149.3333333333333 117.3333333333334 163.2 145.7066666666667 185.3866666666667 165.3333333333334C176.2133333333333 178.9866666666667 170.6666666666667 195.6266666666667 170.6666666666667 213.3333333333334V222.08L107.52 258.7733333333334L103.04 262.1866666666667L48.8533333333333 247.6800000000001L43.3066666666667 268.1600000000001L90.4533333333333 280.7466666666667L48.2133333333333 305.2800000000001L58.88 323.8400000000001L101.12 299.3066666666668L88.5333333333333 346.6666666666668L109.0133333333333 352.0000000000001L123.7333333333334 297.8133333333334L128.8533333333334 295.6800000000001L186.24 262.6133333333334C194.3466666666667 274.1333333333334 205.2266666666667 283.5200000000001 218.0266666666667 289.7066666666667C202.6666666666667 301.44 192 320 192 341.3333333333334C192 376.7466666666667 220.5866666666667 405.3333333333333 256 405.3333333333333S320 376.7466666666667 320 341.3333333333334C320 320 309.3333333333333 301.44 293.9733333333333 289.7066666666667C306.7733333333333 283.52 317.6533333333333 274.1333333333334 325.76 262.6133333333334L383.1466666666667 295.68L388.2666666666667 297.8133333333334L402.9866666666667 352L423.4666666666667 346.6666666666667L410.88 299.3066666666667L453.12 323.8400000000001L463.7866666666667 305.28L421.5466666666667 280.7466666666667L468.6933333333334 268.1600000000001L463.1466666666666 247.68L408.9600000000001 262.1866666666667L404.48 258.7733333333333L341.3333333333333 222.08V213.3333333333334C341.3333333333333 195.6266666666667 335.7866666666667 178.9866666666667 326.6133333333334 165.3333333333334C348.8 145.7066666666667 362.6666666666667 117.3333333333334 362.6666666666667 85.3333333333334z" />
+    <glyph glyph-name="soccer"
+      unicode="&#xF4B8;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 384C293.5466666666666 384 328.5333333333333 372.6933333333334 357.9733333333334 353.92L352 341.3333333333334H256L219.3066666666667 359.2533333333334L226.7733333333333 381.2266666666667C236.3733333333333 382.9333333333334 245.9733333333333 384 256 384M203.3066666666667 375.8933333333333L196.0533333333333 353.92L141.44 326.6133333333334L114.7733333333333 321.28C138.6666666666666 347.0933333333334 168.96 366.08 203.3066666666667 375.8933333333333M277.3333333333333 320H341.3333333333333L398.7200000000001 243.4133333333334L372.0533333333334 188.5866666666667L315.9466666666667 175.36L245.9733333333334 257.2800000000001L277.3333333333333 320M131.4133333333333 305.92L149.3333333333333 234.6666666666667L123.3066666666667 169.3866666666667L68.6933333333333 150.6133333333334C65.7066666666667 164.0533333333334 64 177.7066666666667 64 192C64 232.5333333333334 76.5866666666667 269.6533333333334 97.92 300.5866666666667L131.4133333333333 305.92M438.6133333333334 251.3066666666667C444.8 232.7466666666667 448.0000000000001 212.6933333333333 448.0000000000001 192C448.0000000000001 161.28 440.1066666666667 132.48 427.3066666666668 106.6666666666667H405.3333333333333L387.4133333333333 177.92L419.4133333333333 241.92L438.6133333333333 251.3066666666667M170.6666666666667 234.6666666666667H234.6666666666667L294.6133333333334 164.6933333333334L256 106.6666666666667L188.5866666666667 90.0266666666666L139.3066666666667 155.9466666666667L170.6666666666667 234.6666666666667M256 85.3333333333334L320 42.6666666666667L301.44 5.9733333333334C286.7200000000001 2.5600000000001 271.5733333333333 0 256 0C218.6666666666667 0 184.1066666666666 10.6666666666667 154.6666666666667 29.2266666666667L179.4133333333333 65.92L256 85.3333333333334M405.3333333333333 85.3333333333334H416C394.6666666666667 53.3333333333334 362.6666666666667 28.3733333333333 326.6133333333333 14.08L341.3333333333333 42.6666666666667L405.3333333333333 85.3333333333334z" />
+    <glyph glyph-name="soccer-field"
+      unicode="&#xF833;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667C61.6533333333333 362.6666666666667 42.6666666666667 343.68 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667H85.3333333333333M85.3333333333333 320H234.6666666666667V274.5600000000001C197.12 264.7466666666667 170.6666666666667 230.8266666666667 170.6666666666667 192C170.6666666666667 153.1733333333334 197.12 119.2533333333333 234.6666666666667 109.44V64H85.3333333333333V106.6666666666667H149.3333333333333V277.3333333333334H85.3333333333333V320M277.3333333333333 320H426.6666666666667V277.3333333333334H362.6666666666667V106.6666666666667H426.6666666666667V64H277.3333333333333V109.44C314.88 119.2533333333333 341.3333333333333 153.1733333333334 341.3333333333333 192C341.3333333333333 230.8266666666667 314.88 264.7466666666667 277.3333333333333 274.5600000000001V320M85.3333333333333 234.6666666666667H106.6666666666667V149.3333333333334H85.3333333333333V234.6666666666667M405.3333333333333 234.6666666666667H426.6666666666667V149.3333333333334H405.3333333333333V234.6666666666667M277.3333333333333 228.9066666666667C290.56 221.2266666666667 298.6666666666667 207.1466666666667 298.6666666666667 192S290.56 162.7733333333333 277.3333333333333 155.0933333333334V228.9066666666667M234.6666666666667 228.9066666666667V155.0933333333334C221.44 162.7733333333333 213.3333333333333 176.8533333333334 213.3333333333333 192S221.44 221.2266666666667 234.6666666666667 228.9066666666667z" />
+    <glyph glyph-name="sofa"
+      unicode="&#xF4B9;"
+      horiz-adv-x="512" d=" M149.3333333333333 320H192C215.4666666666667 320 234.6666666666667 300.8 234.6666666666667 277.3333333333334V192H106.6666666666667V277.3333333333334C106.6666666666667 300.8 125.8666666666667 320 149.3333333333333 320M320 320H362.6666666666667C386.1333333333334 320 405.3333333333333 300.8 405.3333333333333 277.3333333333334V192H277.3333333333333V277.3333333333334C277.3333333333333 300.8 296.5333333333333 320 320 320M21.3333333333333 256H42.6666666666667C54.4 256 64 246.4000000000001 64 234.6666666666667V192C64 168.5333333333334 83.2 149.3333333333334 106.6666666666667 149.3333333333334H405.3333333333333C428.8 149.3333333333334 448 168.5333333333334 448 192V234.6666666666667C448 246.4000000000001 457.6 256 469.3333333333333 256H490.6666666666666C502.4 256 512 246.4000000000001 512 234.6666666666667V42.6666666666667H448V85.3333333333334H64V42.6666666666667H0V234.6666666666667C0 246.4000000000001 9.6 256 21.3333333333333 256z" />
+    <glyph glyph-name="solar-power"
+      unicode="&#xFA71;"
+      horiz-adv-x="512" d=" M244.2666666666667 405.3333333333333V329.6L320 367.5733333333333L244.2666666666667 405.3333333333333M222.9333333333333 277.3333333333334L170.6666666666667 224.8533333333333L250.6666666666667 198.1866666666667L222.9333333333333 277.3333333333334M42.6666666666667 203.7333333333334L80.4266666666667 128L118.4 203.7333333333334H42.6666666666667M213.3333333333333 405.3333333333333H42.6666666666667V234.6666666666667C54.8266666666667 231.04 67.6266666666667 229.3333333333334 80.4266666666667 229.3333333333334C156.8 229.12 218.88 291.2000000000001 219.0933333333333 368C218.88 380.5866666666667 216.96 393.1733333333334 213.3333333333333 405.3333333333333M362.6666666666667 -21.3333333333333V106.6666666666667H298.6666666666667L405.3333333333333 298.6666666666667V170.6666666666667H469.3333333333333L362.6666666666667 -21.3333333333333z" />
+    <glyph glyph-name="solid"
+      unicode="&#xF68C;"
+      horiz-adv-x="512" d=" M0 448H512V-64H0" />
+    <glyph glyph-name="sort"
+      unicode="&#xF4BA;"
+      horiz-adv-x="512" d=" M213.3333333333333 170.6666666666667V213.3333333333334H384V170.6666666666667H213.3333333333333M213.3333333333333 42.6666666666667V85.3333333333334H298.6666666666667V42.6666666666667H213.3333333333333M213.3333333333333 298.6666666666667V341.3333333333334H469.3333333333333V298.6666666666667H213.3333333333333M128 85.3333333333334H181.3333333333333L106.6666666666667 10.6666666666667L32 85.3333333333334H85.3333333333333V298.6666666666667H32L106.6666666666667 373.3333333333334L181.3333333333333 298.6666666666667H128V85.3333333333334z" />
+    <glyph glyph-name="sort-alphabetical"
+      unicode="&#xF4BB;"
+      horiz-adv-x="512" d=" M197.3333333333333 341.3333333333334L266.6666666666667 410.6666666666667L336 341.3333333333334H197.3333333333333M336 42.6666666666667L266.6666666666667 -26.6666666666666L197.3333333333333 42.6666666666667H336M189.6533333333333 142.9333333333333H128L112.64 85.3333333333334H62.08L128 298.6666666666667H192L258.7733333333333 85.3333333333334H206.2933333333333L189.6533333333333 142.9333333333333M135.04 177.4933333333334H182.6133333333334L169.1733333333334 222.72L163.6266666666667 243.4133333333334L158.2933333333334 263.8933333333334H157.6533333333333L152.96 243.2L147.84 222.2933333333334L135.04 177.4933333333334M278.4 85.3333333333334V112.2133333333334L379.7333333333334 256.64V257.92H288V298.6666666666667H442.24V270.0800000000001L343.2533333333334 128V126.2933333333334H443.7333333333334V85.3333333333334H278.4z" />
+    <glyph glyph-name="sort-ascending"
+      unicode="&#xF4BC;"
+      horiz-adv-x="512" d=" M213.3333333333333 213.3333333333334V170.6666666666667H384V213.3333333333334H213.3333333333333M213.3333333333333 341.3333333333334V298.6666666666667H298.6666666666667V341.3333333333334H213.3333333333333M213.3333333333333 85.3333333333334V42.6666666666667H469.3333333333333V85.3333333333334H213.3333333333333M128 298.6666666666667H181.3333333333333L106.6666666666667 373.3333333333334L32 298.6666666666667H85.3333333333333V21.3333333333334H128V298.6666666666667z" />
+    <glyph glyph-name="sort-descending"
+      unicode="&#xF4BD;"
+      horiz-adv-x="512" d=" M213.3333333333333 170.6666666666667V213.3333333333334H384V170.6666666666667H213.3333333333333M213.3333333333333 42.6666666666667V85.3333333333334H298.6666666666667V42.6666666666667H213.3333333333333M213.3333333333333 298.6666666666667V341.3333333333334H469.3333333333333V298.6666666666667H213.3333333333333M128 85.3333333333334H181.3333333333333L106.6666666666667 10.6666666666667L32 85.3333333333334H85.3333333333333V362.6666666666667H128V85.3333333333334z" />
+    <glyph glyph-name="sort-numeric"
+      unicode="&#xF4BE;"
+      horiz-adv-x="512" d=" M165.9733333333333 298.6666666666667C193.7066666666667 297.8133333333334 213.3333333333333 287.36 225.4933333333334 267.52C237.44 247.4666666666667 243.4133333333334 222.72 242.9866666666667 193.0666666666667C243.2 160 236.5866666666667 133.76 224 114.7733333333333C210.7733333333334 96 190.9333333333333 85.9733333333333 164.48 85.3333333333334C137.6 86.1866666666667 118.1866666666667 96 105.8133333333333 116.0533333333334C93.44 135.8933333333333 87.2533333333333 161.0666666666667 87.2533333333333 192C87.2533333333333 222.9333333333333 93.6533333333333 248.32 106.6666666666667 267.9466666666667C119.2533333333333 288 138.6666666666667 297.8133333333334 165.9733333333333 298.6666666666667M165.3333333333333 263.8933333333334C155.9466666666666 263.8933333333334 148.48 258.1333333333334 142.9333333333333 246.1866666666667C137.3866666666667 234.6666666666667 134.8266666666667 216.1066666666667 134.8266666666667 192C134.6133333333333 167.4666666666667 137.3866666666667 149.3333333333334 142.72 137.8133333333334C148.2666666666667 125.8666666666667 155.9466666666667 120.1066666666667 165.76 120.1066666666667C185.3866666666667 120.1066666666667 195.4133333333333 144.2133333333334 195.6266666666667 192C195.6266666666667 239.5733333333334 185.6 263.4666666666667 165.3333333333333 263.8933333333334M284.3733333333334 85.3333333333334V123.3066666666667L293.5466666666666 122.88L305.0666666666667 123.3066666666667L327.2533333333334 127.36C334.5066666666667 129.7066666666667 341.3333333333333 132.6933333333333 346.88 136.96C353.92 141.8666666666667 359.6800000000001 147.6266666666667 364.16 154.4533333333333C368.8533333333333 161.0666666666667 372.0533333333334 168.1066666666667 373.9733333333334 175.36L373.3333333333333 175.5733333333333C363.7333333333334 166.6133333333334 349.44 162.1333333333333 330.0266666666667 161.92C311.8933333333333 162.1333333333333 296.7466666666667 167.4666666666667 284.5866666666667 178.1333333333333C272.4266666666666 188.8 266.6666666666667 204.16 265.8133333333333 224C266.0266666666667 245.3333333333333 273.28 262.6133333333334 287.36 276.6933333333334C301.6533333333333 290.7733333333333 320 298.0266666666667 343.8933333333333 298.6666666666667C370.56 297.8133333333334 390.1866666666666 289.0666666666667 402.7733333333332 272.2133333333334C415.3599999999999 256 421.5466666666665 234.6666666666667 421.5466666666665 209.28C421.3333333333332 188.8 418.3466666666666 170.6666666666666 412.1599999999999 154.4533333333333C405.9733333333332 138.6666666666666 397.6533333333332 125.2266666666666 386.5599999999999 114.3466666666667C376.7466666666665 105.3866666666667 365.0133333333332 98.5600000000001 351.3599999999999 93.6533333333334C337.7066666666666 88.96 322.5599999999999 86.1866666666667 305.9199999999999 85.3333333333334H284.3733333333332M342.6133333333333 263.8933333333333C333.8666666666666 263.68 326.8266666666666 260.2666666666667 321.2799999999999 253.6533333333333C315.9466666666666 247.04 313.1733333333332 238.08 313.1733333333332 226.9866666666667C313.1733333333332 217.6 315.7333333333332 209.92 320.6399999999999 203.52C325.7599999999999 196.9066666666667 333.4399999999999 193.7066666666667 343.6799999999999 193.4933333333333C350.5066666666665 193.4933333333333 356.2666666666665 194.9866666666667 360.9599999999998 197.5466666666666C365.6533333333331 200.32 369.0666666666665 203.52 371.4133333333331 207.36C373.3333333333331 209.7066666666667 373.9733333333332 213.9733333333333 373.9733333333332 219.52C374.1866666666665 231.2533333333334 371.8399999999998 241.28 366.9333333333332 250.0266666666667C362.0266666666665 258.7733333333333 353.9199999999999 263.4666666666667 342.6133333333331 263.8933333333333M197.3333333333333 341.3333333333334L266.6666666666667 410.6666666666667L336 341.3333333333334H197.3333333333333M336 42.6666666666667L266.6666666666667 -26.6666666666666L197.3333333333333 42.6666666666667H336z" />
+    <glyph glyph-name="sort-variant"
+      unicode="&#xF4BF;"
+      horiz-adv-x="512" d=" M64 170.6666666666667H320V213.3333333333334H64M64 320V277.3333333333334H448V320M64 64H192V106.6666666666667H64V64z" />
+    <glyph glyph-name="soundcloud"
+      unicode="&#xF4C0;"
+      horiz-adv-x="512" d=" M246.6133333333334 258.7733333333334V85.3333333333334H433.4933333333334C472.96 88.1066666666667 490.6666666666666 112.4266666666667 490.6666666666666 142.2933333333334C490.6666666666666 173.8666666666667 466.7733333333333 199.2533333333333 434.7733333333333 199.2533333333333C426.6666666666667 199.2533333333333 419.84 197.5466666666667 412.8 194.56C407.68 244.48 365.2266666666666 283.52 312.9599999999999 283.52C288 283.52 264.32 274.1333333333334 246.6133333333333 258.7733333333333M227.84 237.0133333333333C221.44 240.8533333333333 214.6133333333333 243.84 207.1466666666666 245.3333333333334V85.3333333333334H236.8V248.7466666666667C233.6 245.3333333333334 230.6133333333333 241.0666666666667 227.84 237.0133333333333M177.7066666666666 248.5333333333333V85.3333333333334H197.3333333333333V247.8933333333333C193.28 248.5333333333333 189.2266666666666 248.7466666666667 184.96 248.7466666666667C182.4 248.7466666666667 180.0533333333333 248.7466666666667 177.7066666666666 248.5333333333333M138.6666666666667 234.6666666666667V85.3333333333334H158.08V244.48C151.04 242.1333333333334 144.4266666666667 238.7200000000001 138.6666666666667 234.6666666666667M103.04 181.3333333333334C101.76 181.3333333333334 100.48 182.6133333333334 98.9866666666667 183.2533333333333V85.3333333333334H118.6133333333333V216.32C110.72 206.08 105.3866666666667 193.92 103.04 181.3333333333334M59.52 187.3066666666667V87.2533333333333C64 85.9733333333334 69.12 85.3333333333334 74.6666666666667 85.3333333333334H79.36V189.0133333333333C77.6533333333333 189.2266666666667 75.9466666666667 189.44 74.6666666666667 189.44C69.12 189.44 64 188.5866666666667 59.52 187.3066666666667M21.3333333333333 137.3866666666667C21.3333333333333 121.3866666666667 28.5866666666667 107.3066666666667 39.8933333333333 97.7066666666667V176.8533333333334C28.5866666666667 167.4666666666667 21.3333333333333 153.1733333333334 21.3333333333333 137.3866666666667z" />
+    <glyph glyph-name="source-branch"
+      unicode="&#xF62C;"
+      horiz-adv-x="512" d=" M277.3333333333333 149.3333333333334C205.6533333333333 149.3333333333334 182.1866666666667 120.5333333333334 174.5066666666667 101.5466666666666C197.3333333333333 91.7333333333334 213.3333333333333 69.12 213.3333333333333 42.6666666666667C213.3333333333333 7.2533333333333 184.7466666666667 -21.3333333333333 149.3333333333333 -21.3333333333333S85.3333333333333 7.2533333333333 85.3333333333333 42.6666666666667C85.3333333333333 70.6133333333334 103.04 94.2933333333334 128 103.04V280.9600000000001C103.04 289.7066666666667 85.3333333333333 313.3866666666667 85.3333333333333 341.3333333333334C85.3333333333333 376.7466666666667 113.92 405.3333333333333 149.3333333333333 405.3333333333333S213.3333333333333 376.7466666666667 213.3333333333333 341.3333333333334C213.3333333333333 313.3866666666667 195.6266666666667 289.7066666666667 170.6666666666667 280.9600000000001V168.1066666666667C189.44 181.9733333333334 216.7466666666667 192 256 192C312.96 192 331.9466666666667 220.5866666666667 338.1333333333334 239.5733333333334C315.0933333333333 249.1733333333334 298.6666666666667 272 298.6666666666667 298.6666666666667C298.6666666666667 334.0800000000001 327.2533333333334 362.6666666666667 362.6666666666667 362.6666666666667S426.6666666666667 334.0800000000001 426.6666666666667 298.6666666666667C426.6666666666667 270.0800000000001 407.8933333333333 245.3333333333334 382.08 237.6533333333334C376.5333333333333 207.1466666666667 355.84 149.3333333333334 277.3333333333333 149.3333333333334M149.3333333333333 64C137.6 64 128 54.4 128 42.6666666666667S137.6 21.3333333333334 149.3333333333333 21.3333333333334S170.6666666666667 30.9333333333333 170.6666666666667 42.6666666666667S161.0666666666667 64 149.3333333333333 64M149.3333333333333 362.6666666666667C137.6 362.6666666666667 128 353.0666666666667 128 341.3333333333334S137.6 320 149.3333333333333 320S170.6666666666667 329.6 170.6666666666667 341.3333333333334S161.0666666666667 362.6666666666667 149.3333333333333 362.6666666666667M362.6666666666667 320C350.9333333333333 320 341.3333333333333 310.4 341.3333333333333 298.6666666666667S350.9333333333333 277.3333333333334 362.6666666666667 277.3333333333334S384 286.9333333333334 384 298.6666666666667S374.4 320 362.6666666666667 320z" />
+    <glyph glyph-name="source-commit"
+      unicode="&#xF717;"
+      horiz-adv-x="512" d=" M362.6666666666667 192C362.6666666666667 140.3733333333333 325.9733333333333 97.28 277.3333333333333 87.4666666666667V0H234.6666666666667V87.4666666666667C186.0266666666667 97.2800000000001 149.3333333333333 140.3733333333334 149.3333333333333 192.0000000000001C149.3333333333333 243.6266666666667 186.0266666666667 286.7200000000001 234.6666666666667 296.5333333333334V384H277.3333333333333V296.5333333333334C325.9733333333333 286.7200000000001 362.6666666666667 243.6266666666667 362.6666666666667 192M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256z" />
+    <glyph glyph-name="source-commit-end"
+      unicode="&#xF718;"
+      horiz-adv-x="512" d=" M362.6666666666667 192C362.6666666666667 133.12 314.88 85.3333333333334 256 85.3333333333334S149.3333333333333 133.12 149.3333333333333 192C149.3333333333333 243.6266666666667 186.0266666666667 286.7200000000001 234.6666666666667 296.5333333333334V384H277.3333333333333V296.5333333333334C325.9733333333333 286.7200000000001 362.6666666666667 243.6266666666667 362.6666666666667 192M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256z" />
+    <glyph glyph-name="source-commit-end-local"
+      unicode="&#xF719;"
+      horiz-adv-x="512" d=" M256 298.6666666666667C314.88 298.6666666666667 362.6666666666667 250.88 362.6666666666667 192S314.88 85.3333333333334 256 85.3333333333334S149.3333333333333 133.12 149.3333333333333 192S197.12 298.6666666666667 256 298.6666666666667M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256M234.6666666666667 341.3333333333334V384H277.3333333333333V341.3333333333334H234.6666666666667z" />
+    <glyph glyph-name="source-commit-local"
+      unicode="&#xF71A;"
+      horiz-adv-x="512" d=" M256 298.6666666666667C314.88 298.6666666666667 362.6666666666667 250.88 362.6666666666667 192S314.88 85.3333333333334 256 85.3333333333334S149.3333333333333 133.12 149.3333333333333 192S197.12 298.6666666666667 256 298.6666666666667M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256M234.6666666666667 341.3333333333334V384H277.3333333333333V341.3333333333334H234.6666666666667M234.6666666666667 0V42.6666666666667H277.3333333333333V0H234.6666666666667z" />
+    <glyph glyph-name="source-commit-next-local"
+      unicode="&#xF71B;"
+      horiz-adv-x="512" d=" M362.6666666666667 192C362.6666666666667 133.12 314.88 85.3333333333334 256 85.3333333333334S149.3333333333333 133.12 149.3333333333333 192C149.3333333333333 243.6266666666667 186.0266666666667 286.7200000000001 234.6666666666667 296.5333333333334V384H277.3333333333333V296.5333333333334C325.9733333333333 286.7200000000001 362.6666666666667 243.6266666666667 362.6666666666667 192M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256M234.6666666666667 0V42.6666666666667H277.3333333333333V0H234.6666666666667z" />
+    <glyph glyph-name="source-commit-start"
+      unicode="&#xF71C;"
+      horiz-adv-x="512" d=" M256 298.6666666666667C314.88 298.6666666666667 362.6666666666667 250.88 362.6666666666667 192C362.6666666666667 140.3733333333333 325.9733333333333 97.28 277.3333333333333 87.4666666666667V0H234.6666666666667V87.4666666666667C186.0266666666667 97.2800000000001 149.3333333333333 140.3733333333334 149.3333333333333 192.0000000000001C149.3333333333333 250.8800000000001 197.12 298.6666666666668 256 298.6666666666668M256 256.0000000000001C220.5866666666667 256.0000000000001 192 227.4133333333334 192 192.0000000000001S220.5866666666667 128.0000000000001 256 128.0000000000001S320 156.5866666666667 320 192.0000000000001S291.4133333333333 256.0000000000001 256 256.0000000000001z" />
+    <glyph glyph-name="source-commit-start-next-local"
+      unicode="&#xF71D;"
+      horiz-adv-x="512" d=" M256 298.6666666666667C314.88 298.6666666666667 362.6666666666667 250.88 362.6666666666667 192S314.88 85.3333333333334 256 85.3333333333334S149.3333333333333 133.12 149.3333333333333 192S197.12 298.6666666666667 256 298.6666666666667M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256M234.6666666666667 0V42.6666666666667H277.3333333333333V0H234.6666666666667z" />
+    <glyph glyph-name="source-fork"
+      unicode="&#xF4C1;"
+      horiz-adv-x="512" d=" M128 405.3333333333333C163.4133333333333 405.3333333333333 192 376.7466666666667 192 341.3333333333334C192 314.0266666666667 174.72 290.56 150.6133333333334 281.3866666666667C152.5333333333333 271.5733333333333 157.6533333333333 259.6266666666667 170.6666666666667 242.56C192 215.04 234.6666666666667 174.2933333333333 256 145.7066666666667C277.3333333333333 174.2933333333333 320 215.04 341.3333333333333 242.56C354.3466666666667 259.6266666666667 359.4666666666667 271.5733333333333 361.3866666666667 281.3866666666667C337.28 290.56 320 314.0266666666667 320 341.3333333333334C320 376.7466666666667 348.5866666666667 405.3333333333333 384 405.3333333333333S448 376.7466666666667 448 341.3333333333334C448 313.1733333333334 429.6533333333333 289.0666666666667 404.2666666666667 280.5333333333334C402.56 269.4400000000001 397.6533333333333 256 384 238.2933333333334C362.6666666666667 209.7066666666667 320 168.96 298.6666666666667 141.2266666666667C285.6533333333333 124.3733333333334 280.5333333333333 112.4266666666667 278.6133333333334 102.6133333333334C302.72 93.44 320 69.9733333333334 320 42.6666666666667C320 7.2533333333333 291.4133333333333 -21.3333333333333 256 -21.3333333333333S192 7.2533333333333 192 42.6666666666667C192 69.9733333333334 209.28 93.44 233.3866666666667 102.6133333333334C231.4666666666667 112.4266666666667 226.3466666666667 124.3733333333333 213.3333333333333 141.2266666666667C192 168.96 149.3333333333333 209.7066666666667 128 238.2933333333333C114.3466666666667 256 109.44 269.44 107.7333333333333 280.5333333333333C82.3466666666667 289.0666666666667 64 313.1733333333334 64 341.3333333333334C64 376.7466666666667 92.5866666666667 405.3333333333333 128 405.3333333333333M128 362.6666666666667C116.2666666666667 362.6666666666667 106.6666666666667 353.0666666666667 106.6666666666667 341.3333333333334S116.2666666666667 320 128 320S149.3333333333333 329.6 149.3333333333333 341.3333333333334S139.7333333333333 362.6666666666667 128 362.6666666666667M384 362.6666666666667C372.2666666666667 362.6666666666667 362.6666666666667 353.0666666666667 362.6666666666667 341.3333333333334S372.2666666666667 320 384 320S405.3333333333333 329.6 405.3333333333333 341.3333333333334S395.7333333333334 362.6666666666667 384 362.6666666666667M256 64C244.2666666666667 64 234.6666666666667 54.4 234.6666666666667 42.6666666666667S244.2666666666667 21.3333333333334 256 21.3333333333334S277.3333333333333 30.9333333333333 277.3333333333333 42.6666666666667S267.7333333333334 64 256 64z" />
+    <glyph glyph-name="source-merge"
+      unicode="&#xF62D;"
+      horiz-adv-x="512" d=" M149.3333333333333 384C184.7466666666667 384 213.3333333333333 355.4133333333334 213.3333333333333 320C213.3333333333333 292.48 196.0533333333333 269.0133333333333 171.52 260.0533333333334C183.04 153.3866666666667 279.04 132.9066666666667 324.0533333333333 128.8533333333334C333.0133333333333 153.3866666666667 356.48 170.6666666666667 384 170.6666666666667C419.4133333333333 170.6666666666667 448 142.0800000000001 448 106.6666666666667S419.4133333333333 42.6666666666667 384 42.6666666666667C356.0533333333334 42.6666666666667 332.16 60.5866666666667 323.4133333333333 85.3333333333334C232.7466666666667 89.6 201.3866666666667 123.9466666666667 170.6666666666667 162.3466666666667V124.3733333333333C195.6266666666667 115.6266666666667 213.3333333333333 91.9466666666667 213.3333333333333 64C213.3333333333333 28.5866666666667 184.7466666666667 0 149.3333333333333 0S85.3333333333333 28.5866666666667 85.3333333333333 64C85.3333333333333 91.9466666666667 103.04 115.6266666666667 128 124.3733333333333V259.6266666666667C103.04 268.3733333333334 85.3333333333333 292.0533333333334 85.3333333333333 320C85.3333333333333 355.4133333333334 113.92 384 149.3333333333333 384M149.3333333333333 341.3333333333334C137.6 341.3333333333334 128 331.7333333333334 128 320S137.6 298.6666666666667 149.3333333333333 298.6666666666667S170.6666666666667 308.2666666666667 170.6666666666667 320S161.0666666666667 341.3333333333334 149.3333333333333 341.3333333333334M149.3333333333333 85.3333333333334C137.6 85.3333333333334 128 75.7333333333334 128 64S137.6 42.6666666666667 149.3333333333333 42.6666666666667S170.6666666666667 52.2666666666667 170.6666666666667 64S161.0666666666667 85.3333333333334 149.3333333333333 85.3333333333334M384 128C372.2666666666667 128 362.6666666666667 118.4 362.6666666666667 106.6666666666667S372.2666666666667 85.3333333333334 384 85.3333333333334S405.3333333333333 94.9333333333333 405.3333333333333 106.6666666666667S395.7333333333334 128 384 128z" />
+    <glyph glyph-name="source-pull"
+      unicode="&#xF4C2;"
+      horiz-adv-x="512" d=" M128 384C163.4133333333333 384 192 355.4133333333334 192 320C192 292.0533333333334 174.2933333333333 268.3733333333334 149.3333333333333 259.6266666666667V124.3733333333333C174.2933333333333 115.6266666666667 192 91.9466666666667 192 64C192 28.5866666666667 163.4133333333333 0 128 0S64 28.5866666666667 64 64C64 91.9466666666667 81.7066666666667 115.6266666666667 106.6666666666667 124.3733333333333V259.6266666666667C81.7066666666667 268.3733333333334 64 292.0533333333334 64 320C64 355.4133333333334 92.5866666666667 384 128 384M128 341.3333333333334C116.2666666666667 341.3333333333334 106.6666666666667 331.7333333333334 106.6666666666667 320S116.2666666666667 298.6666666666667 128 298.6666666666667S149.3333333333333 308.2666666666667 149.3333333333333 320S139.7333333333333 341.3333333333334 128 341.3333333333334M128 85.3333333333334C116.2666666666667 85.3333333333334 106.6666666666667 75.7333333333334 106.6666666666667 64S116.2666666666667 42.6666666666667 128 42.6666666666667S149.3333333333333 52.2666666666667 149.3333333333333 64S139.7333333333333 85.3333333333334 128 85.3333333333334M448 64C448 28.5866666666667 419.4133333333333 0 384 0S320 28.5866666666667 320 64C320 91.9466666666667 337.7066666666667 115.6266666666667 362.6666666666667 124.3733333333333V298.6666666666667H320V229.3333333333334L229.3333333333333 320L320 410.6666666666667V341.3333333333334H362.6666666666667C386.1333333333334 341.3333333333334 405.3333333333333 322.1333333333334 405.3333333333333 298.6666666666667V124.3733333333333C430.2933333333334 115.6266666666667 448 91.9466666666667 448 64M384 85.3333333333334C372.2666666666667 85.3333333333334 362.6666666666667 75.7333333333334 362.6666666666667 64S372.2666666666667 42.6666666666667 384 42.6666666666667S405.3333333333333 52.2666666666667 405.3333333333333 64S395.7333333333334 85.3333333333334 384 85.3333333333334z" />
+    <glyph glyph-name="soy-sauce"
+      unicode="&#xF7ED;"
+      horiz-adv-x="512" d=" M296.5333333333333 288C296.5333333333333 302.9333333333334 300.8 313.6 302.9333333333334 320H315.7333333333334L334.9333333333334 373.3333333333334H352V405.3333333333333H160V373.3333333333334H177.0666666666667L196.2666666666667 320H209.0666666666666C213.3333333333333 313.6 215.4666666666667 302.9333333333334 215.4666666666667 288C215.4666666666667 260.2666666666667 128 155.7333333333334 128 72.5333333333333V29.8666666666667C128 0 185.6 -19.2 256 -19.2S384 -1e-13 384 29.8666666666667V72.5333333333333C384 155.7333333333334 296.5333333333333 260.2666666666667 296.5333333333333 288M256 128C232.5333333333334 128 213.3333333333333 147.2000000000001 213.3333333333333 170.6666666666667S232.5333333333334 213.3333333333334 256 213.3333333333334S298.6666666666667 194.1333333333333 298.6666666666667 170.6666666666667S279.4666666666667 128 256 128z" />
+    <glyph glyph-name="space-invaders"
+      unicode="&#xFBA5;"
+      horiz-adv-x="512" d=" M149.3333333333333 320H106.6666666666667V362.6666666666667H149.3333333333333V320M362.6666666666667 320H405.3333333333333V362.6666666666667H362.6666666666667V320M490.6666666666666 192V64H448V149.3333333333334H405.3333333333333V64H362.6666666666667V106.6666666666667H149.3333333333333V64H106.6666666666667V149.3333333333334H64V64H21.3333333333333V192H64V234.6666666666667H106.6666666666667V277.3333333333334H149.3333333333333V320H192V277.3333333333334H320V320H362.6666666666667V277.3333333333334H405.3333333333333V234.6666666666667H448V192H490.6666666666666M320 234.6666666666667V192H362.6666666666667V234.6666666666667H320M149.3333333333333 192H192V234.6666666666667H149.3333333333333V192M234.6666666666667 64H149.3333333333333V21.3333333333334H234.6666666666667V64M362.6666666666667 64H277.3333333333333V21.3333333333334H362.6666666666667V64z" />
+    <glyph glyph-name="speaker"
+      unicode="&#xF4C3;"
+      horiz-adv-x="512" d=" M256 192C220.5866666666667 192 192 163.4133333333334 192 128S220.5866666666667 64 256 64S320 92.5866666666667 320 128S291.4133333333333 192 256 192M256 21.3333333333334C197.12 21.3333333333334 149.3333333333333 69.1200000000001 149.3333333333333 128S197.12 234.6666666666667 256 234.6666666666667S362.6666666666667 186.88 362.6666666666667 128S314.88 21.3333333333334 256 21.3333333333334M256 362.6666666666667C279.4666666666667 362.6666666666667 298.6666666666667 343.4666666666667 298.6666666666667 320S279.4666666666667 277.3333333333334 256 277.3333333333334C232.32 277.3333333333334 213.3333333333333 296.5333333333334 213.3333333333333 320C213.3333333333333 343.68 232.32 362.6666666666667 256 362.6666666666667M362.6666666666667 405.3333333333333H149.3333333333333C125.6533333333333 405.3333333333333 106.6666666666667 386.3466666666667 106.6666666666667 362.6666666666667V21.3333333333334C106.6666666666667 -2.1333333333333 125.8666666666667 -21.3333333333333 149.3333333333333 -21.3333333333333H362.6666666666667C386.1333333333334 -21.3333333333333 405.3333333333333 -2.1333333333333 405.3333333333333 21.3333333333334V362.6666666666667C405.3333333333333 386.3466666666667 386.1333333333334 405.3333333333333 362.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="speaker-bluetooth"
+      unicode="&#xF9A1;"
+      horiz-adv-x="512" d=" M85.3333333333333 384C61.8666666666667 384 42.6666666666667 364.8 42.6666666666667 341.3333333333334V42.6666666666667C42.6666666666667 19.2 61.8666666666667 0 85.3333333333333 0H256C279.4666666666667 0 298.6666666666667 19.2 298.6666666666667 42.6666666666667V341.3333333333334C298.6666666666667 364.8 279.4666666666667 384 256 384H85.3333333333333M170.6666666666667 341.3333333333334C194.1333333333333 341.3333333333334 213.3333333333333 322.1333333333334 213.3333333333333 298.6666666666667S194.1333333333333 256 170.6666666666667 256S128 275.2000000000001 128 298.6666666666667S147.2 341.3333333333334 170.6666666666667 341.3333333333334M405.3333333333333 298.6666666666667V217.8133333333334L356.48 266.6666666666667L341.3333333333333 251.52L400.8533333333333 192L341.3333333333333 132.48L356.48 117.3333333333334L405.3333333333333 166.1866666666667V85.3333333333334H416L476.8 146.3466666666667L431.1466666666667 192L476.8 237.8666666666667L416 298.6666666666667H405.3333333333333M426.6666666666667 257.92L446.7200000000001 237.8666666666667L426.6666666666667 217.8133333333334V257.92M170.6666666666667 213.3333333333334C217.8133333333333 213.3333333333334 256 175.1466666666667 256 128S217.8133333333333 42.6666666666667 170.6666666666667 42.6666666666667S85.3333333333333 80.8533333333334 85.3333333333333 128S123.52 213.3333333333334 170.6666666666667 213.3333333333334M170.6666666666667 170.6666666666667C147.2 170.6666666666667 128 151.4666666666667 128 128S147.2 85.3333333333334 170.6666666666667 85.3333333333334S213.3333333333333 104.5333333333333 213.3333333333333 128S194.1333333333333 170.6666666666667 170.6666666666667 170.6666666666667M426.6666666666667 166.1866666666667L446.7200000000001 146.3466666666667L426.6666666666667 126.2933333333334V166.1866666666667z" />
+    <glyph glyph-name="speaker-off"
+      unicode="&#xF4C4;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L448 -15.36L420.9066666666667 -42.6666666666666L389.76 -11.52C382.5066666666667 -17.7066666666666 373.3333333333333 -21.3333333333333 362.6666666666667 -21.3333333333333H149.3333333333333C125.6533333333333 -21.3333333333333 106.6666666666667 -2.1333333333333 106.6666666666667 21.3333333333334V271.5733333333334L42.6666666666667 335.5733333333334M256 64C220.5866666666667 64 192 92.5866666666667 192 128C192 144.2133333333334 197.9733333333333 159.1466666666667 208 170.6666666666667L177.7066666666667 200.5333333333334C160 181.3333333333334 149.3333333333333 155.9466666666667 149.3333333333333 128C149.3333333333333 69.1200000000001 197.12 21.3333333333334 256 21.3333333333334C283.9466666666667 21.3333333333334 309.3333333333333 32 328.5333333333333 49.7066666666667L298.6666666666667 80C286.9333333333333 69.9733333333334 272.2133333333333 64 256 64M362.6666666666667 128C362.6666666666667 186.88 314.88 234.6666666666667 256 234.6666666666667H252.16L109.2266666666667 377.6C115.4133333333333 393.8133333333334 130.9866666666667 405.3333333333333 149.3333333333333 405.3333333333333H362.6666666666667C386.1333333333334 405.3333333333333 405.3333333333333 386.1333333333334 405.3333333333333 362.6666666666667V81.4933333333333L362.6666666666667 124.3733333333333V128M256 362.6666666666667C232.32 362.6666666666667 213.3333333333333 343.68 213.3333333333333 320C213.3333333333333 296.5333333333334 232.5333333333334 277.3333333333334 256 277.3333333333334S298.6666666666667 296.5333333333334 298.6666666666667 320C298.6666666666667 343.68 279.4666666666667 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="speaker-wireless"
+      unicode="&#xF71E;"
+      horiz-adv-x="512" d=" M428.16 41.1733333333333L398.08 71.2533333333333C429.0133333333333 101.9733333333334 448 144.8533333333334 448 192C448 239.36 429.0133333333333 282.0266666666667 398.08 312.7466666666667L428.16 342.8266666666667C466.7733333333333 304.2133333333334 490.6666666666666 250.88 490.6666666666666 192C490.6666666666666 133.12 466.7733333333333 79.7866666666668 428.16 41.1733333333333M367.7866666666667 101.5466666666666L337.7066666666667 131.6266666666667C353.0666666666667 146.9866666666667 362.6666666666667 168.3200000000001 362.6666666666667 192S353.0666666666667 237.0133333333333 337.7066666666667 252.3733333333334L367.7866666666667 282.4533333333334C391.04 259.2000000000001 405.3333333333333 227.2 405.3333333333333 192C405.3333333333333 156.8 391.04 124.8 367.7866666666667 101.5466666666666M85.3333333333333 384H256C279.4666666666667 384 298.6666666666667 364.8 298.6666666666667 341.3333333333334V42.6666666666667C298.6666666666667 19.2 279.4666666666667 0 256 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V341.3333333333334C42.6666666666667 364.8 61.8666666666667 384 85.3333333333333 384M170.6666666666667 341.3333333333334C147.2 341.3333333333334 128 322.1333333333334 128 298.6666666666667S147.2 256 170.6666666666667 256S213.3333333333333 275.2000000000001 213.3333333333333 298.6666666666667S194.1333333333333 341.3333333333334 170.6666666666667 341.3333333333334M170.6666666666667 213.3333333333334C123.52 213.3333333333334 85.3333333333333 175.1466666666667 85.3333333333333 128S123.52 42.6666666666667 170.6666666666667 42.6666666666667S256 80.8533333333334 256 128S217.8133333333333 213.3333333333334 170.6666666666667 213.3333333333334M170.6666666666667 170.6666666666667C194.1333333333333 170.6666666666667 213.3333333333333 151.4666666666667 213.3333333333333 128S194.1333333333333 85.3333333333334 170.6666666666667 85.3333333333334S128 104.5333333333333 128 128S147.2 170.6666666666667 170.6666666666667 170.6666666666667z" />
+    <glyph glyph-name="speedometer"
+      unicode="&#xF4C5;"
+      horiz-adv-x="512" d=" M256 106.6666666666667C220.5866666666667 106.6666666666667 192 135.2533333333333 192 170.6666666666667C192 194.56 205.0133333333333 215.4666666666667 224 226.3466666666667L431.1466666666667 346.24L313.1733333333333 141.8666666666667C302.5066666666667 120.96 280.96 106.6666666666667 256 106.6666666666667M256 384C294.6133333333334 384 330.6666666666667 373.3333333333334 362.0266666666667 355.8400000000001L317.2266666666667 330.0266666666667C298.6666666666667 337.28 277.3333333333333 341.3333333333334 256 341.3333333333334C161.7066666666667 341.3333333333334 85.3333333333333 264.9600000000001 85.3333333333333 170.6666666666667C85.3333333333333 123.52 104.32 80.8533333333334 135.2533333333333 50.1333333333334H135.4666666666667C143.7866666666666 41.8133333333334 143.7866666666666 28.3733333333334 135.4666666666667 20.0533333333334C127.1466666666667 11.7333333333333 113.4933333333333 11.7333333333333 105.1733333333333 19.84C66.56 58.4533333333333 42.6666666666667 111.7866666666667 42.6666666666667 170.6666666666667C42.6666666666667 288.4266666666667 138.24 384 256 384M469.3333333333333 170.6666666666667C469.3333333333333 111.7866666666667 445.44 58.4533333333334 406.8266666666667 19.84C398.5066666666667 11.7333333333333 385.0666666666667 11.7333333333333 376.7466666666667 20.0533333333334C368.4266666666666 28.3733333333334 368.4266666666666 41.8133333333334 376.7466666666667 50.1333333333334C407.68 81.0666666666667 426.6666666666667 123.52 426.6666666666667 170.6666666666667C426.6666666666667 192 422.6133333333333 213.3333333333334 415.1466666666667 232.5333333333334L440.9600000000001 277.3333333333334C458.6666666666666 245.3333333333334 469.3333333333333 209.4933333333334 469.3333333333333 170.6666666666667z" />
+    <glyph glyph-name="spellcheck"
+      unicode="&#xF4C6;"
+      horiz-adv-x="512" d=" M460.5866666666666 200.7466666666667L288 28.16L209.7066666666667 106.6666666666667L179.6266666666667 76.5866666666667L288 -32L490.6666666666666 170.6666666666667M137.1733333333333 213.3333333333334L181.3333333333333 330.6666666666667L225.4933333333334 213.3333333333334M265.6 106.6666666666667H310.1866666666666L201.1733333333333 384H161.4933333333334L52.48 106.6666666666667H97.0666666666667L120.96 170.6666666666667H241.28L265.6 106.6666666666667z" />
+    <glyph glyph-name="spider-web"
+      unicode="&#xFBA6;"
+      horiz-adv-x="512" d=" M290.56 164.6933333333334L325.5466666666666 116.48C326.1866666666666 128 328.1066666666667 139.3066666666667 331.9466666666667 150.8266666666667C335.7866666666667 162.7733333333334 341.3333333333333 173.6533333333334 347.7333333333334 183.2533333333333L290.56 164.6933333333334M379.0933333333333 42.6666666666667C378.6666666666667 70.8266666666667 382.9333333333333 100.9066666666667 392.7466666666667 131.2000000000001C402.7733333333333 161.7066666666667 417.28 189.0133333333333 434.3466666666667 211.4133333333334L390.8266666666667 197.3333333333334C374.1866666666666 186.4533333333334 359.8933333333333 167.68 352 144.4266666666667C344.9600000000001 121.8133333333333 345.1733333333333 98.9866666666667 352 80.64L379.0933333333333 42.6666666666667M410.6666666666667 0C400 -9.8133333333333 388.48 -18.3466666666666 376.1066666666667 -25.6L369.28 -16.2133333333333C339.2 0 299.52 10.6666666666667 256 10.6666666666667C212.48 10.6666666666667 172.8 0 142.72 -16.2133333333334L135.8933333333333 -25.6C123.52 -18.3466666666667 112 -9.8133333333334 101.3333333333333 -1e-13L106.6666666666667 6.6133333333332C113.7066666666667 40.9599999999999 111.36 82.7733333333333 97.7066666666667 125.0133333333333C84.0533333333333 166.6133333333332 61.8666666666667 201.3866666666666 36.48 224.8533333333333L27.0933333333333 227.8399999999999C30.2933333333333 241.92 34.7733333333333 256 40.32 268.5866666666666L48.8533333333333 265.8133333333333C83.6266666666667 269.44 122.4533333333333 284.7999999999999 158.5066666666667 310.8266666666666C193.92 336.6399999999999 220.16 368.4266666666666 234.6666666666667 399.7866666666666V409.8133333333332L256 410.6666666666666L277.3333333333333 409.8133333333332V400.8533333333333C291.6266666666667 368.8533333333333 318.08 336.4266666666666 354.1333333333334 310.3999999999999C389.5466666666667 284.5866666666666 427.9466666666667 269.44 462.2933333333334 265.3866666666666L471.6800000000001 268.5866666666666C477.2266666666667 255.9999999999999 481.7066666666667 241.9199999999999 484.9066666666668 227.8399999999999L474.2400000000001 223.9999999999999C448.8533333333334 200.9599999999999 426.6666666666668 166.1866666666666 413.2266666666668 124.5866666666666C399.7866666666668 83.4133333333332 397.2266666666668 42.6666666666665 403.6266666666668 9.1733333333332L410.6666666666668 -1e-13M234.6666666666667 205.44V266.6666666666667C227.4133333333334 257.7066666666667 218.88 249.1733333333334 208.64 241.7066666666667C198.1866666666667 234.6666666666667 187.0933333333333 228.48 176 224L234.6666666666667 205.44M234.6666666666667 357.9733333333334C218.6666666666667 334.7200000000001 197.12 312.5333333333334 170.6666666666667 293.5466666666668C144.64 274.3466666666667 116.48 260.6933333333334 89.1733333333333 252.5866666666667L131.2 238.9333333333334C151.68 237.2266666666667 175.36 244.0533333333334 196.0533333333333 258.9866666666667C216.1066666666666 273.4933333333334 229.5466666666667 292.9066666666667 234.6666666666667 312.3200000000001V357.9733333333334M277.3333333333333 205.44L335.7866666666667 224C324.9066666666667 228.2666666666666 314.0266666666667 234.0266666666667 304 241.28C293.5466666666666 248.96 284.5866666666667 257.7066666666667 277.3333333333333 266.6666666666667V205.44M422.4 252.5866666666667C395.3066666666667 260.6933333333334 367.5733333333333 274.1333333333334 341.3333333333333 293.12C315.0933333333333 312.3200000000001 293.5466666666666 334.7200000000001 277.3333333333333 358.4000000000001V314.24C282.0266666666667 294.1866666666667 295.68 273.7066666666667 316.5866666666667 258.5600000000001C336.4266666666666 244.0533333333334 359.04 237.4400000000001 379.0933333333333 238.5066666666667L422.4 252.5866666666667M221.44 164.6933333333334L162.9866666666667 183.6800000000001C169.6 174.0800000000001 174.9333333333333 163.2000000000001 178.7733333333334 151.2533333333335C182.8266666666667 138.6666666666668 184.7466666666667 126.7200000000001 185.1733333333334 114.7733333333334L221.44 164.6933333333334M76.3733333333334 211.8400000000001C93.44 189.4400000000001 107.9466666666667 162.1333333333335 117.9733333333334 131.6266666666668C128 100.4800000000001 132.2666666666667 69.5466666666668 131.6266666666667 40.96L157.44 76.5866666666668C165.5466666666667 96.0000000000001 166.4 120.3200000000001 158.5066666666667 144.6400000000001C150.8266666666667 168.1066666666668 136.5333333333333 186.8800000000001 119.68 197.7600000000001L76.3733333333333 211.8400000000001M256 139.7333333333334L220.8 91.3066666666667C231.8933333333333 94.2933333333334 243.6266666666667 96 256 96C268.3733333333334 96 280.1066666666667 94.2933333333334 291.2 91.3066666666667L256 139.7333333333334M167.2533333333333 17.4933333333333C193.7066666666667 26.6666666666667 224 32 256 32S318.2933333333333 26.6666666666667 344.7466666666667 17.4933333333333L317.44 55.0400000000001C302.08 67.2000000000001 280.1066666666667 74.6666666666667 256 74.6666666666667S209.92 67.2000000000001 194.56 55.0400000000001L167.2533333333333 17.4933333333333z" />
+    <glyph glyph-name="spotify"
+      unicode="&#xF4C7;"
+      horiz-adv-x="512" d=" M381.8666666666666 215.4666666666667C313.6 256 199.4666666666667 260.2666666666667 134.4 240C123.7333333333333 236.8 113.0666666666667 243.2 109.8666666666667 252.8C106.6666666666667 263.4666666666667 113.0666666666667 274.1333333333334 122.6666666666667 277.3333333333334C198.4 299.7333333333334 323.2 295.4666666666667 402.1333333333334 248.5333333333334C411.7333333333334 243.2 414.9333333333334 230.4000000000001 409.6 220.8C404.2666666666667 213.3333333333334 391.4666666666667 210.1333333333333 381.8666666666667 215.4666666666667M379.7333333333334 155.7333333333334C374.4 148.2666666666667 364.8 145.0666666666667 357.3333333333333 150.4C299.7333333333334 185.6 212.2666666666667 196.2666666666667 145.0666666666667 174.9333333333334C136.5333333333333 172.8000000000001 126.9333333333334 177.0666666666667 124.8 185.6C122.6666666666667 194.1333333333334 126.9333333333333 203.7333333333334 135.4666666666667 205.8666666666667C213.3333333333333 229.3333333333334 309.3333333333333 217.6 375.4666666666667 177.0666666666667C381.8666666666667 173.8666666666667 385.0666666666667 163.2000000000001 379.7333333333334 155.7333333333334M354.1333333333334 97.0666666666667C349.8666666666667 90.6666666666667 342.4 88.5333333333334 336 92.8000000000001C285.8666666666667 123.7333333333334 222.9333333333334 130.1333333333334 148.2666666666667 113.0666666666667C140.8 110.9333333333334 134.4 116.2666666666667 132.2666666666667 122.6666666666667C130.1333333333334 130.1333333333333 135.4666666666667 136.5333333333334 141.8666666666667 138.6666666666667C222.9333333333333 156.8 293.3333333333333 149.3333333333334 348.8 115.2000000000001C356.2666666666667 112 357.3333333333333 103.4666666666667 354.1333333333334 97.0666666666667M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="spotlight"
+      unicode="&#xF4C8;"
+      horiz-adv-x="512" d=" M42.6666666666667 320L151.2533333333333 265.6C136.5333333333333 245.3333333333334 128 219.52 128 192S136.5333333333333 138.6666666666667 151.2533333333333 118.4L42.6666666666667 64V320M128 384H384L329.6 296.7466666666667C309.3333333333333 311.4666666666667 283.52 320 256 320S202.6666666666667 311.4666666666667 182.4 296.7466666666667L128 384M469.3333333333333 320V64L360.7466666666667 118.4C375.4666666666667 138.6666666666667 384 164.48 384 192S375.4666666666667 245.3333333333334 360.7466666666667 265.6L469.3333333333333 320M384 0H128L182.4 87.2533333333333C202.6666666666667 72.5333333333333 228.48 64 256 64S309.3333333333333 72.5333333333333 329.6 87.2533333333333L384 0M256 277.3333333333334C303.1466666666667 277.3333333333334 341.3333333333333 239.1466666666667 341.3333333333333 192S303.1466666666667 106.6666666666667 256 106.6666666666667S170.6666666666667 144.8533333333334 170.6666666666667 192S208.8533333333333 277.3333333333334 256 277.3333333333334M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="spotlight-beam"
+      unicode="&#xF4C9;"
+      horiz-adv-x="512" d=" M192 96L211.4133333333333 115.4133333333334L322.7733333333333 4.2666666666667L303.1466666666667 -15.1466666666666L192 96M330.6666666666667 234.6666666666667L350.08 254.08L461.4399999999999 142.9333333333333L441.8133333333333 123.52L330.6666666666667 234.6666666666667M143.36 389.9733333333334L216.5333333333333 316.8L131.2 231.4666666666667L58.0266666666667 304.64C41.3866666666667 321.28 41.3866666666667 348.3733333333334 58.0266666666667 365.0133333333333L82.9866666666667 389.9733333333333C99.6266666666667 406.6133333333334 126.72 406.6133333333334 143.36 389.9733333333333M310.8266666666667 288L325.9733333333334 272.8533333333334L175.1466666666667 122.0266666666667L160 137.1733333333334L141.6533333333333 211.84L236.16 306.3466666666667L310.8266666666667 288z" />
+    <glyph glyph-name="spray"
+      unicode="&#xF665;"
+      horiz-adv-x="512" d=" M213.3333333333333 362.6666666666667H256V320H213.3333333333333V362.6666666666667M149.3333333333333 384H192V341.3333333333334H149.3333333333333V384M149.3333333333333 320H192V277.3333333333334H149.3333333333333V320M128 277.3333333333334V234.6666666666667H85.3333333333333V277.3333333333334H128M128 341.3333333333334V298.6666666666667H85.3333333333333V341.3333333333334H128M128 405.3333333333333V362.6666666666667H85.3333333333333V405.3333333333333H128M277.3333333333333 -21.3333333333333C253.8666666666667 -21.3333333333333 234.6666666666667 -2.1333333333333 234.6666666666667 21.3333333333334V234.6666666666667C234.6666666666667 258.1333333333334 253.8666666666667 277.3333333333334 277.3333333333333 277.3333333333334V298.6666666666667H298.6666666666667V362.6666666666667H362.6666666666667V298.6666666666667H384V277.3333333333334C407.4666666666667 277.3333333333334 426.6666666666667 258.1333333333334 426.6666666666667 234.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H277.3333333333333M277.3333333333333 234.6666666666667V21.3333333333334H384V234.6666666666667H277.3333333333333z" />
+    <glyph glyph-name="spray-bottle"
+      unicode="&#xFADF;"
+      horiz-adv-x="512" d=" M256 298.6666666666667H320C334.08 285.0133333333333 341.3333333333333 270.7200000000001 341.3333333333333 256V-21.3333333333333H170.6666666666667V128C170.6666666666667 133.9733333333334 173.0133333333333 141.0133333333333 177.0666666666667 149.3333333333334L256 298.6666666666667M341.3333333333333 362.6666666666667L320 320H256V341.3333333333334L213.3333333333333 298.6666666666667H192L213.3333333333333 341.3333333333334V362.6666666666667H192V405.3333333333333H309.3333333333333C327.04 405.3333333333333 341.3333333333333 391.04 341.3333333333333 373.3333333333334V362.6666666666667z" />
+    <glyph glyph-name="square"
+      unicode="&#xF763;"
+      horiz-adv-x="512" d=" M64 384V0H448V384" />
+    <glyph glyph-name="square-edit-outline"
+      unicode="&#xF90B;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V192H405.3333333333333V42.6666666666667H106.6666666666667V341.3333333333334H256V384H106.6666666666667M379.3066666666667 362.6666666666667C375.68 362.6666666666667 371.84 361.1733333333334 369.0666666666667 358.4L343.04 332.5866666666667L396.3733333333334 279.2533333333334L422.4 305.0666666666667C427.9466666666667 310.6133333333334 427.9466666666667 320 422.4 325.3333333333334L389.3333333333333 358.4C386.56 361.1733333333334 382.9333333333333 362.6666666666667 379.3066666666667 362.6666666666667M327.8933333333333 317.44L170.6666666666667 160V106.6666666666667H224L381.2266666666667 264.1066666666667L327.8933333333333 317.44z" />
+    <glyph glyph-name="square-inc"
+      unicode="&#xF4CA;"
+      horiz-adv-x="512" d=" M128 384H384C419.4133333333333 384 448 355.4133333333334 448 320V64C448 28.5866666666667 419.4133333333333 0 384 0H128C92.5866666666667 0 64 28.5866666666667 64 64V320C64 355.4133333333334 92.5866666666667 384 128 384M149.3333333333333 320C137.6 320 128 310.4 128 298.6666666666667V85.3333333333334C128 73.6 137.6 64 149.3333333333333 64H362.6666666666667C374.4 64 384 73.6 384 85.3333333333334V298.6666666666667C384 310.4 374.4 320 362.6666666666667 320H149.3333333333333M202.6666666666667 256H309.3333333333333C315.3066666666666 256 320 251.3066666666667 320 245.3333333333334V138.6666666666667C320 132.6933333333334 315.3066666666666 128 309.3333333333333 128H202.6666666666667C196.6933333333333 128 192 132.6933333333334 192 138.6666666666667V245.3333333333334C192 251.3066666666667 196.6933333333333 256 202.6666666666667 256z" />
+    <glyph glyph-name="square-inc-cash"
+      unicode="&#xF4CB;"
+      horiz-adv-x="512" d=" M117.3333333333333 448H394.6666666666667C459.52 448 512 395.52 512 330.6666666666667V53.3333333333334C512 -11.52 459.52 -64 394.6666666666667 -64H117.3333333333333C52.48 -64 0 -11.52 0 53.3333333333334V330.6666666666667C0 395.52 52.48 448 117.3333333333333 448M328.32 124.16C328.32 90.4533333333334 309.3333333333333 68.0533333333334 274.1333333333334 65.0666666666667V178.9866666666667C310.4 167.8933333333334 328.32 156.5866666666667 328.32 124.16M248.5333333333334 320V215.8933333333334C220.5866666666667 224.0000000000001 192.64 236.1600000000001 192.64 268.1600000000001C192.64 299.9466666666667 217.1733333333334 317.4400000000001 248.5333333333334 320M330.6666666666667 285.8666666666667L352 302.9333333333334C333.2266666666667 327.2533333333334 307.2 343.04 274.1333333333334 346.24V366.9333333333334H248.5333333333334V346.6666666666667C202.6666666666667 343.68 163.84 316.3733333333334 163.84 266.6666666666667C163.84 213.3333333333334 207.7866666666667 196.6933333333334 248.5333333333334 185.8133333333334V64.8533333333334C224.8533333333334 67.4133333333334 198.1866666666667 78.72 179.84 106.0266666666666L155.7333333333333 90.0266666666666C174.9333333333333 61.44 208.2133333333333 42.6666666666667 248.5333333333333 39.68V17.0666666666667H274.1333333333333V39.2533333333333C327.4666666666666 42.6666666666667 356.2666666666667 78.08 356.2666666666667 125.0133333333333C356.2666666666667 179.6266666666667 315.9466666666666 197.12 274.1333333333334 209.28V318.9333333333334C298.6666666666667 315.3066666666667 316.8 303.7866666666667 330.6666666666667 285.8666666666667z" />
+    <glyph glyph-name="square-medium"
+      unicode="&#xFA12;"
+      horiz-adv-x="512" d=" M341.3333333333333 277.3333333333334H170.6666666666667V106.6666666666667H341.3333333333333V277.3333333333334z" />
+    <glyph glyph-name="square-medium-outline"
+      unicode="&#xFA13;"
+      horiz-adv-x="512" d=" M298.6666666666667 234.6666666666667V149.3333333333334H213.3333333333333V234.6666666666667H298.6666666666667M341.3333333333333 277.3333333333334H170.6666666666667V106.6666666666667H341.3333333333333V277.3333333333334z" />
+    <glyph glyph-name="square-outline"
+      unicode="&#xF762;"
+      horiz-adv-x="512" d=" M64 384H448V0H64V384M106.6666666666667 341.3333333333334V42.6666666666667H405.3333333333333V341.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="square-root"
+      unicode="&#xF783;"
+      horiz-adv-x="512" d=" M250.88 88.96L311.2533333333334 149.3333333333334L250.88 209.7066666666667L280.96 239.7866666666667L341.3333333333333 179.4133333333334L401.7066666666666 239.7866666666667L431.7866666666667 209.7066666666667L371.4133333333333 149.3333333333334L431.7866666666667 88.96L401.7066666666667 58.8800000000001L341.3333333333333 119.2533333333333L280.96 58.88L250.88 88.96M42.6666666666667 213.3333333333334H106.6666666666667L155.52 98.1333333333334L213.3333333333333 320H469.3333333333333V277.3333333333334H246.4L185.1733333333333 42.6666666666667H132.6933333333333L78.5066666666667 170.6666666666667H42.6666666666667V213.3333333333334z" />
+    <glyph glyph-name="square-root-box"
+      unicode="&#xF9A2;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667M239.7866666666667 320H405.3333333333333V277.3333333333334H272.2133333333333L213.3333333333333 64H170.6666666666667L133.3333333333333 192H106.6666666666667V234.6666666666667H165.3333333333333L192 143.36L239.7866666666667 320M298.6666666666667 222.08L336.8533333333333 183.8933333333334L375.2533333333334 222.08L405.3333333333333 192L367.1466666666667 153.8133333333334L405.3333333333333 115.4133333333334L375.2533333333334 85.3333333333334L336.8533333333333 123.52L298.6666666666667 85.3333333333334L268.5866666666667 115.4133333333334L306.7733333333333 153.8133333333334L268.5866666666667 192L298.6666666666667 222.08z" />
+    <glyph glyph-name="square-small"
+      unicode="&#xFA14;"
+      horiz-adv-x="512" d=" M213.3333333333333 149.3333333333334V234.6666666666667H298.6666666666667V149.3333333333334H213.3333333333333z" />
+    <glyph glyph-name="squeegee"
+      unicode="&#xFAE0;"
+      horiz-adv-x="512" d=" M469.3333333333333 405.3333333333333V341.3333333333334H42.6666666666667V405.3333333333333H469.3333333333333M42.6666666666667 277.3333333333334H149.3333333333333L192 234.6666666666667H213.3333333333333V21.3333333333334C213.3333333333333 -2.1333333333333 232.5333333333334 -21.3333333333333 256 -21.3333333333333S298.6666666666667 -2.1333333333333 298.6666666666667 21.3333333333334V234.6666666666667H320L362.6666666666667 277.3333333333334H469.3333333333333V320H42.6666666666667V277.3333333333334z" />
+    <glyph glyph-name="ssh"
+      unicode="&#xF8BF;"
+      horiz-adv-x="512" d=" M96 256C83.2 256 74.6666666666667 245.3333333333334 74.6666666666667 234.6666666666667V197.3333333333334C74.6666666666667 186.6666666666667 83.2 176 96 176H149.3333333333333V160H74.6666666666667V128H160C172.8 128 181.3333333333333 138.6666666666667 181.3333333333333 149.3333333333334V186.6666666666667C181.3333333333333 197.3333333333334 172.8 208 160 208H106.6666666666667V224H181.3333333333333V256H96M224 256C211.2 256 202.6666666666667 245.3333333333334 202.6666666666667 234.6666666666667V197.3333333333334C202.6666666666667 186.6666666666667 211.2 176 224 176H277.3333333333333V160H202.6666666666667V128H288C300.8 128 309.3333333333333 138.6666666666667 309.3333333333333 149.3333333333334V186.6666666666667C309.3333333333333 197.3333333333334 300.8 208 288 208H234.6666666666667V224H309.3333333333333V256H224M330.6666666666667 256V128H362.6666666666667V181.3333333333334H405.3333333333333V128H437.3333333333333V256H405.3333333333333V213.3333333333334H362.6666666666667V256H330.6666666666667z" />
+    <glyph glyph-name="stack-exchange"
+      unicode="&#xF60B;"
+      horiz-adv-x="512" d=" M85.3333333333333 148.48V213.3333333333334H426.6666666666667V148.48H85.3333333333333M85.3333333333333 234.6666666666667V298.6666666666667H426.6666666666667V234.6666666666667H85.3333333333333M372.48 405.3333333333333C402.3466666666667 405.3333333333333 426.6666666666667 380.16 426.6666666666667 349.2266666666667V320H85.3333333333333V349.2266666666667C85.3333333333333 380.16 109.6533333333333 405.3333333333333 139.52 405.3333333333333H372.48M85.3333333333333 128H426.6666666666667V99.2C426.6666666666667 68.0533333333333 402.3466666666667 42.6666666666667 372.48 42.6666666666667H352L277.3333333333333 -21.3333333333333V42.6666666666667H139.52C109.6533333333333 42.6666666666667 85.3333333333333 68.0533333333334 85.3333333333333 99.2V128z" />
+    <glyph glyph-name="stack-overflow"
+      unicode="&#xF4CC;"
+      horiz-adv-x="512" d=" M370.3466666666667 17.0666666666667V131.84H408.5333333333333V-21.3333333333333H64V131.84H102.4V17.0666666666667H370.3466666666667M144.4266666666667 142.5066666666667L152.32 180.0533333333334L339.84 140.5866666666667L331.9466666666667 103.04L144.4266666666667 142.5066666666667M169.1733333333334 232.32L185.3866666666667 266.6666666666667L359.04 186.0266666666667L342.8266666666667 151.4666666666667L169.1733333333333 232.32M217.3866666666667 317.44L241.92 346.88L389.12 224L364.5866666666667 194.7733333333333L217.3866666666667 317.44M312.3200000000001 408.1066666666666L426.6666666666667 254.2933333333334L395.9466666666666 231.4666666666667L281.6 385.28L312.32 408.1066666666667M140.5866666666667 55.2533333333333V93.6533333333334H332.16V55.2533333333333H140.5866666666667z" />
+    <glyph glyph-name="stadium"
+      unicode="&#xF71F;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H149.3333333333333L213.3333333333333 341.3333333333334L149.3333333333333 298.6666666666667V270.2933333333334C180.6933333333333 274.7733333333334 217.1733333333333 277.3333333333334 256 277.3333333333334C294.8266666666667 277.3333333333334 331.3066666666666 274.7733333333334 362.6666666666667 270.2933333333334V384H405.3333333333333L469.3333333333333 341.3333333333334L405.3333333333333 298.6666666666667V262.1866666666667C444.8 252.3733333333333 469.3333333333333 238.9333333333334 469.3333333333333 224C469.3333333333333 194.56 373.3333333333333 170.6666666666667 256 170.6666666666667S42.6666666666667 194.56 42.6666666666667 224C42.6666666666667 238.9333333333334 67.2 252.3733333333334 106.6666666666667 262.1866666666667V384M256 245.3333333333334C185.3866666666667 245.3333333333334 149.3333333333333 241.7066666666667 149.3333333333333 224S185.3866666666667 202.6666666666667 256 202.6666666666667S362.6666666666667 206.2933333333334 362.6666666666667 224S326.6133333333334 245.3333333333334 256 245.3333333333334M256 133.3333333333334C337.28 133.3333333333334 409.6 147.6266666666667 456.5333333333333 169.6L426.6666666666667 0H320V42.6666666666667C320 66.1333333333334 300.8 85.3333333333334 277.3333333333333 85.3333333333334H234.6666666666667C211.2 85.3333333333334 192 66.1333333333334 192 42.6666666666667V0H85.3333333333333L55.4666666666667 169.6C102.4 147.6266666666667 174.72 133.3333333333334 256 133.3333333333334z" />
+    <glyph glyph-name="stairs"
+      unicode="&#xF4CD;"
+      horiz-adv-x="512" d=" M320 341.3333333333334V256H234.6666666666667V170.6666666666667H149.3333333333333V85.3333333333334H64V21.3333333333334H213.3333333333333V106.6666666666667H298.6666666666667V192H384V277.3333333333334H469.3333333333333V341.3333333333334H320z" />
+    <glyph glyph-name="standard-definition"
+      unicode="&#xF7EE;"
+      horiz-adv-x="512" d=" M277.3333333333333 298.6666666666667H341.3333333333333C376.7466666666667 298.6666666666667 405.3333333333333 270.0800000000001 405.3333333333333 234.6666666666667V149.3333333333334C405.3333333333333 113.92 376.7466666666667 85.3333333333334 341.3333333333333 85.3333333333334H277.3333333333333V298.6666666666667M341.3333333333333 128C353.0666666666667 128 362.6666666666667 137.6 362.6666666666667 149.3333333333334V234.6666666666667C362.6666666666667 246.4000000000001 353.0666666666667 256 341.3333333333333 256H320V128H341.3333333333333M149.3333333333333 298.6666666666667H234.6666666666667V256H149.3333333333333V213.3333333333334H192C215.4666666666667 213.3333333333334 234.6666666666667 194.1333333333333 234.6666666666667 170.6666666666667V128C234.6666666666667 104.5333333333333 215.4666666666667 85.3333333333334 192 85.3333333333334H106.6666666666667V128H192V170.6666666666667H149.3333333333333C125.8666666666667 170.6666666666667 106.6666666666667 189.8666666666667 106.6666666666667 213.3333333333334V256C106.6666666666667 279.4666666666667 125.8666666666667 298.6666666666667 149.3333333333333 298.6666666666667z" />
+    <glyph glyph-name="star"
+      unicode="&#xF4CE;"
+      horiz-adv-x="512" d=" M256 79.5733333333334L387.84 0L352.8533333333333 149.9733333333334L469.3333333333333 250.88L315.9466666666666 264.1066666666667L256 405.3333333333333L196.0533333333333 264.1066666666667L42.6666666666667 250.88L158.9333333333333 149.9733333333334L124.16 0L256 79.5733333333334z" />
+    <glyph glyph-name="star-box"
+      unicode="&#xFA72;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 18.9866666666667 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M332.3733333333334 85.3333333333334L312.1066666666667 172.3733333333333L379.52 230.6133333333334L290.56 238.2933333333334L256 320L221.44 238.08L132.48 230.4000000000001L199.8933333333333 172.16L179.6266666666667 85.3333333333334L256 131.4133333333334L332.3733333333334 85.3333333333334z" />
+    <glyph glyph-name="star-box-outline"
+      unicode="&#xFA73;"
+      horiz-adv-x="512" d=" M332.3733333333334 85.3333333333334L256 131.4133333333334L179.6266666666667 85.3333333333334L199.8933333333333 172.16L132.48 230.4000000000001L221.44 238.08L256 320L290.56 238.2933333333334L379.52 230.6133333333334L312.1066666666667 172.3733333333333L332.3733333333333 85.3333333333334M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 18.9866666666667 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M106.6666666666667 341.3333333333334V42.6666666666667H405.3333333333333V341.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="star-circle"
+      unicode="&#xF4CF;"
+      horiz-adv-x="512" d=" M346.24 64L256 118.4L165.76 64L189.6533333333333 166.6133333333334L110.08 235.52L215.04 244.48L256 341.3333333333334L296.96 244.6933333333334L401.92 235.7333333333333L322.3466666666667 166.8266666666667L346.24 64M256 405.3333333333333C138.0266666666667 405.3333333333333 42.6666666666667 309.3333333333334 42.6666666666667 192C42.6666666666667 74.24 138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="star-circle-outline"
+      unicode="&#xF9A3;"
+      horiz-adv-x="512" d=" M183.04 80L202.6666666666667 162.9866666666667L138.6666666666667 218.0266666666667L222.9333333333333 225.92L256 302.9333333333334L289.0666666666667 225.0666666666667L373.3333333333333 218.0266666666667L309.3333333333333 162.9866666666667L328.96 80L256 123.9466666666667L183.04 80M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334S426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="star-face"
+      unicode="&#xF9A4;"
+      horiz-adv-x="512" d=" M256 394.6666666666667L179.6266666666667 276.0533333333334L42.6666666666667 240.2133333333334L132.2666666666667 130.5600000000001L124.16 -10.6666666666666L256 40.7466666666667L387.84 -10.6666666666666L379.7333333333334 130.5600000000001L469.3333333333333 240.2133333333334L332.3733333333334 276.0533333333334L256 394.6666666666667M200.1066666666666 224C213.3333333333333 224 224 213.3333333333334 224 199.8933333333334C224 186.6666666666668 213.3333333333333 176 200.1066666666666 176C186.6666666666666 176 176 186.6666666666667 176 199.8933333333334C176 213.3333333333334 186.6666666666667 224 200.1066666666666 224M312.1066666666667 224C325.3333333333333 224 336 213.3333333333334 336 199.8933333333334C336 186.6666666666668 325.3333333333333 176 312.1066666666667 176C298.6666666666667 176 288 186.6666666666667 288 199.8933333333334C288 213.3333333333334 298.6666666666667 224 312.1066666666667 224M192 128H320C309.3333333333333 102.1866666666667 283.9466666666667 85.3333333333334 256 85.3333333333334S202.6666666666667 102.1866666666667 192 128z" />
+    <glyph glyph-name="star-four-points"
+      unicode="&#xFAE1;"
+      horiz-adv-x="512" d=" M256 426.6666666666667L192 256L21.3333333333333 192L192 128L256 -42.6666666666666L320 128L490.6666666666666 192L320 256L256 426.6666666666667z" />
+    <glyph glyph-name="star-four-points-outline"
+      unicode="&#xFAE2;"
+      horiz-adv-x="512" d=" M256 305.0666666666667L286.9333333333333 222.9333333333333L369.0666666666667 192L286.9333333333334 161.0666666666667L256 78.9333333333333L225.0666666666667 161.0666666666667L142.9333333333333 192L225.0666666666667 222.9333333333333L256 305.0666666666667M256 426.6666666666667L192 256L21.3333333333333 192L192 128L256 -42.6666666666666L320 128L490.6666666666666 192L320 256L256 426.6666666666667z" />
+    <glyph glyph-name="star-half"
+      unicode="&#xF4D0;"
+      horiz-adv-x="512" d=" M256 119.4666666666667V317.8666666666667L292.48 231.8933333333334L385.92 224.0000000000001L315.0933333333333 162.3466666666667L336.2133333333333 71.0400000000001M469.3333333333333 250.88L315.9466666666666 263.8933333333333L256 405.3333333333333L196.0533333333333 263.8933333333333L42.6666666666667 250.88L158.9333333333333 149.9733333333334L124.16 0L256 79.5733333333334L387.84 0L352.8533333333333 149.9733333333334L469.3333333333333 250.88z" />
+    <glyph glyph-name="star-off"
+      unicode="&#xF4D1;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L363.7333333333334 14.72L256 79.5733333333334L124.16 0L158.9333333333333 149.9733333333334L42.6666666666667 250.88L120.7466666666667 257.4933333333334L42.6666666666667 335.5733333333334M256 405.3333333333333L315.9466666666667 264.1066666666667L469.3333333333333 250.88L352.8533333333333 149.9733333333334L357.76 129.0666666666667L203.9466666666666 282.88L256 405.3333333333333z" />
+    <glyph glyph-name="star-outline"
+      unicode="&#xF4D2;"
+      horiz-adv-x="512" d=" M256 119.68L175.7866666666667 71.2533333333333L196.9066666666667 162.5600000000001L126.08 224L219.52 231.8933333333333L256 318.0800000000001L292.48 231.8933333333334L385.92 224.0000000000001L315.0933333333333 162.5600000000001L336.2133333333333 71.2533333333333M469.3333333333333 250.88L315.9466666666666 263.8933333333333L256 405.3333333333333L196.0533333333333 263.8933333333333L42.6666666666667 250.88L158.9333333333333 149.9733333333334L124.16 0L256 79.5733333333334L387.84 0L352.8533333333333 149.9733333333334L469.3333333333333 250.88z" />
+    <glyph glyph-name="star-three-points"
+      unicode="&#xFAE3;"
+      horiz-adv-x="512" d=" M256 392.5333333333333L192 183.4666666666667L42.6666666666667 23.4666666666667L256 72.5333333333334L469.3333333333333 21.3333333333334L320 181.3333333333334L256 392.5333333333334z" />
+    <glyph glyph-name="star-three-points-outline"
+      unicode="&#xFAE4;"
+      horiz-adv-x="512" d=" M256 245.3333333333334L281.6 160L341.3333333333333 96L256 115.2000000000001L168.5333333333333 96L228.2666666666667 160L256 245.3333333333334M256 392.5333333333334L192 183.4666666666667L42.6666666666667 23.4666666666667L256 72.5333333333334L469.3333333333333 21.3333333333334L320 181.3333333333334L256 392.5333333333334z" />
+    <glyph glyph-name="steam"
+      unicode="&#xF4D3;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333C157.8666666666667 -21.3333333333333 75.7333333333334 44.3733333333333 50.3466666666667 133.76L132.0533333333333 100.0533333333333C137.6 72.5333333333333 162.1333333333333 51.6266666666667 191.36 51.6266666666667C224.64 51.6266666666667 251.7333333333333 78.72 251.7333333333333 112V114.7733333333333L324.2666666666667 166.6133333333334H325.9733333333333C370.3466666666667 166.6133333333334 406.4 202.6666666666666 406.4 247.04S370.3466666666667 327.4666666666667 325.9733333333334 327.4666666666667S245.3333333333334 291.4133333333333 245.3333333333334 247.04V245.9733333333333L194.7733333333334 172.16L191.3600000000001 172.3733333333333C178.7733333333334 172.3733333333333 167.0400000000001 168.5333333333333 157.4400000000001 161.92L42.6666666666667 209.0666666666667C51.84 318.9333333333334 143.5733333333333 405.3333333333333 256 405.3333333333333M176.64 81.7066666666667C193.7066666666667 74.6666666666667 213.3333333333333 82.56 220.3733333333333 99.6266666666667C227.4133333333333 116.6933333333333 219.3066666666666 136.1066666666667 202.6666666666666 143.1466666666667L175.36 154.4533333333333C185.8133333333333 158.2933333333333 197.5466666666666 158.5066666666666 208.64 153.8133333333333C219.9466666666666 149.3333333333333 228.6933333333333 140.5866666666667 233.1733333333333 129.28C237.8666666666667 118.1866666666666 237.8666666666667 105.8133333333333 233.1733333333333 94.72C224 71.68 196.9066666666667 60.5866666666666 173.8666666666667 70.1866666666667C163.2 74.6666666666667 155.0933333333333 82.7733333333333 150.6133333333334 92.3733333333333L176.64 81.7066666666667M379.7333333333334 247.04C379.7333333333334 217.3866666666666 355.6266666666667 193.28 325.9733333333334 193.28C296.5333333333334 193.28 272.4266666666667 217.3866666666666 272.4266666666667 247.04C272.4266666666667 276.48 296.5333333333334 300.5866666666667 325.9733333333334 300.5866666666667C355.6266666666667 300.5866666666667 379.7333333333334 276.48 379.7333333333334 247.04M285.8666666666667 247.04C285.8666666666667 224.8533333333333 303.7866666666667 206.72 326.1866666666667 206.72C348.3733333333334 206.72 366.2933333333334 224.8533333333333 366.2933333333334 247.04S348.3733333333334 287.36 326.1866666666667 287.36C303.7866666666667 287.36 285.8666666666667 269.2266666666667 285.8666666666667 247.04z" />
+    <glyph glyph-name="steam-box"
+      unicode="&#xF90C;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V128L132.0533333333333 100.0533333333334C137.6 72.5333333333334 162.1333333333333 51.6266666666667 191.36 51.6266666666667C224.64 51.6266666666667 251.7333333333333 78.72 251.7333333333333 112.0000000000001V114.7733333333334L324.2666666666667 166.6133333333334H325.9733333333333C370.3466666666667 166.6133333333334 406.4 202.6666666666667 406.4 247.0400000000001S370.3466666666667 327.4666666666667 325.9733333333334 327.4666666666667S245.3333333333334 291.4133333333334 245.3333333333334 247.0400000000001V245.9733333333334L194.7733333333334 172.16L191.3600000000001 172.3733333333333C178.7733333333334 172.3733333333333 167.0400000000001 168.5333333333334 157.4400000000001 161.92L64 200.5333333333334V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M176.64 81.7066666666667C193.7066666666667 74.6666666666667 213.3333333333333 82.56 220.3733333333333 99.6266666666667C227.4133333333333 116.6933333333333 219.3066666666666 136.1066666666667 202.6666666666666 143.1466666666667L175.36 154.4533333333333C185.8133333333333 158.2933333333333 197.5466666666666 158.5066666666666 208.64 153.8133333333333C219.9466666666666 149.3333333333333 228.6933333333333 140.5866666666667 233.1733333333333 129.28C237.8666666666667 118.1866666666666 237.8666666666667 105.8133333333333 233.1733333333333 94.72C224 71.68 196.9066666666667 60.5866666666666 173.8666666666667 70.1866666666667C163.2 74.6666666666667 155.0933333333333 82.7733333333333 150.6133333333334 92.3733333333333L176.64 81.7066666666667M379.7333333333334 247.04C379.7333333333334 217.3866666666666 355.6266666666667 193.28 325.9733333333334 193.28C296.5333333333334 193.28 272.4266666666667 217.3866666666666 272.4266666666667 247.04C272.4266666666667 276.6933333333334 296.32 300.5866666666667 325.9733333333334 300.5866666666667C355.6266666666667 300.5866666666667 379.7333333333334 276.48 379.7333333333334 247.04M285.8666666666667 247.04C285.8666666666667 224.8533333333333 303.7866666666667 206.72 326.1866666666667 206.72C348.3733333333334 206.72 366.2933333333334 224.8533333333333 366.2933333333334 247.04S348.3733333333334 287.36 326.1866666666667 287.36C303.7866666666667 287.36 285.8666666666667 269.2266666666667 285.8666666666667 247.04z" />
+    <glyph glyph-name="steering"
+      unicode="&#xF4D4;"
+      horiz-adv-x="512" d=" M277.3333333333333 23.04C315.7333333333334 27.7333333333333 348.8 43.7333333333333 376.5333333333333 71.4666666666666C404.2666666666667 99.2 420.2666666666667 132.2666666666667 424.9599999999999 170.6666666666666H360.9599999999999C356.2666666666667 149.3333333333333 346.4533333333333 131.4133333333333 331.52 116.48C316.5866666666667 101.5466666666666 298.6666666666667 91.7333333333333 277.3333333333333 87.04V23.04M213.3333333333333 277.3333333333334H298.6666666666667L362.6666666666667 213.3333333333334H424.9600000000001C419.6266666666667 254.9333333333334 400.8533333333334 290.56 368.4266666666668 320C336.2133333333333 348.5866666666667 298.6666666666667 362.6666666666667 256 362.6666666666667C213.3333333333333 362.6666666666667 175.7866666666667 348.5866666666667 143.5733333333333 320C111.1466666666667 290.56 92.3733333333333 254.9333333333334 87.04 213.3333333333334H149.3333333333333L213.3333333333333 277.3333333333334M234.6666666666667 23.04V87.04C213.3333333333333 91.7333333333333 195.4133333333333 101.5466666666666 180.48 116.48C165.5466666666667 131.4133333333333 155.7333333333334 149.3333333333333 151.04 170.6666666666666H87.04C91.7333333333334 132.9066666666667 107.7333333333334 100.2666666666666 135.4666666666667 72.5333333333333C163.2 44.8 196.2666666666667 28.3733333333333 234.6666666666667 23.04M256 405.3333333333333C314.6666666666667 405.3333333333333 364.8 384 406.4 342.4C448 300.8 469.3333333333333 250.6666666666667 469.3333333333333 192S448 83.2 406.4 41.6C364.8 0 314.6666666666667 -21.3333333333333 256 -21.3333333333333S147.2 0 105.6 41.6C64 83.2 42.6666666666667 133.3333333333334 42.6666666666667 192S64 300.8 105.6 342.4C147.2 384 197.3333333333333 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="steering-off"
+      unicode="&#xF90D;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L368 10.6666666666667C334.9333333333333 -10.6666666666666 297.6 -21.3333333333333 256 -21.3333333333333C197.3333333333333 -21.3333333333333 147.2 0 105.6 41.6C64 83.2 42.6666666666667 133.3333333333334 42.6666666666667 192C42.6666666666667 233.6 53.3333333333333 270.9333333333334 74.6666666666667 304L42.6666666666667 335.5733333333334M277.3333333333333 23.04C298.6666666666667 25.6 318.5066666666667 32 336.64 41.6L288 90.0266666666666C284.5866666666667 88.7466666666667 280.7466666666667 87.8933333333333 277.3333333333333 87.04V23.04M87.04 213.3333333333334H149.3333333333333L157.2266666666667 221.2266666666667L105.8133333333333 272.4266666666667C96 254.2933333333334 89.8133333333333 234.6666666666667 87.04 213.3333333333334M424.9600000000001 170.6666666666667H360.9600000000001C358.4 159.1466666666667 354.1333333333334 148.2666666666667 348.3733333333334 138.6666666666667L211.4133333333333 275.4133333333334L213.3333333333333 277.3333333333334H298.6666666666667L362.6666666666667 213.3333333333334H424.9600000000001C419.6266666666667 254.9333333333334 400.8533333333334 290.56 368.4266666666668 320C336.2133333333333 348.5866666666667 298.6666666666667 362.6666666666667 256 362.6666666666667C218.88 362.6666666666667 185.8133333333333 352 156.5866666666667 330.6666666666667L126.08 360.7466666666667C163.4133333333333 390.1866666666667 206.72 405.3333333333333 256 405.3333333333333C314.6666666666667 405.3333333333333 364.8 384 406.4 342.4C448 300.8 469.3333333333333 250.6666666666667 469.3333333333333 192C469.3333333333333 142.72 454.1866666666666 99.4133333333334 424.7466666666667 62.08L394.6666666666667 92.3733333333333C411.3066666666667 115.4133333333333 421.5466666666667 141.6533333333333 424.9600000000001 170.6666666666666M234.6666666666667 23.04V87.04C213.3333333333333 91.7333333333333 195.4133333333333 101.5466666666666 180.48 116.48C165.5466666666667 131.4133333333333 155.7333333333334 149.3333333333333 151.04 170.6666666666666H87.04C91.7333333333334 132.9066666666667 107.7333333333334 100.2666666666666 135.4666666666667 72.5333333333333C163.2 44.8 196.2666666666667 28.3733333333333 234.6666666666667 23.04z" />
+    <glyph glyph-name="step-backward"
+      unicode="&#xF4D5;"
+      horiz-adv-x="512" d=" M405.3333333333333 341.3333333333334V42.6666666666667H341.3333333333333V341.3333333333334M298.6666666666667 341.3333333333334V42.6666666666667L64 192" />
+    <glyph glyph-name="step-backward-2"
+      unicode="&#xF4D6;"
+      horiz-adv-x="512" d=" M362.6666666666667 341.3333333333334H298.6666666666667V42.6666666666667H362.6666666666667V341.3333333333334M256 341.3333333333334L21.3333333333333 192L256 42.6666666666667V341.3333333333334M469.3333333333333 341.3333333333334H405.3333333333333V42.6666666666667H469.3333333333333V341.3333333333334z" />
+    <glyph glyph-name="step-forward"
+      unicode="&#xF4D7;"
+      horiz-adv-x="512" d=" M106.6666666666667 341.3333333333334V42.6666666666667H170.6666666666667V341.3333333333334M213.3333333333333 341.3333333333334V42.6666666666667L448 192" />
+    <glyph glyph-name="step-forward-2"
+      unicode="&#xF4D8;"
+      horiz-adv-x="512" d=" M149.3333333333333 341.3333333333334H213.3333333333333V42.6666666666667H149.3333333333333V341.3333333333334M256 341.3333333333334L490.6666666666666 192L256 42.6666666666667V341.3333333333334M42.6666666666667 341.3333333333334H106.6666666666667V42.6666666666667H42.6666666666667V341.3333333333334z" />
+    <glyph glyph-name="stethoscope"
+      unicode="&#xF4D9;"
+      horiz-adv-x="512" d=" M405.3333333333333 277.3333333333334C417.28 277.3333333333334 426.6666666666667 268.1600000000001 426.6666666666667 256C426.6666666666667 244.2666666666667 417.0666666666667 234.6666666666667 405.3333333333333 234.6666666666667C393.1733333333333 234.6666666666667 384 244.2666666666667 384 256C384 268.1600000000001 393.1733333333333 277.3333333333334 405.3333333333333 277.3333333333334M42.6666666666667 405.3333333333333V213.3333333333334C42.6666666666667 150.1866666666667 89.3866666666667 96 152.32 87.2533333333333C165.5466666666667 23.04 222.2933333333333 -21.3333333333333 288 -21.3333333333333C364.5866666666667 -21.3333333333333 426.6666666666667 40.7466666666667 426.6666666666667 117.3333333333334V196.0533333333334C451.4133333333333 205.0133333333333 469.3333333333333 228.48 469.3333333333333 256C469.3333333333333 291.4133333333334 440.7466666666667 320 405.3333333333333 320S341.3333333333333 291.4133333333334 341.3333333333333 256C341.3333333333333 228.48 359.2533333333334 204.8 384 196.0533333333334V119.2533333333333C384 65.92 341.3333333333333 23.2533333333333 288 23.2533333333333C245.3333333333333 23.2533333333333 209.4933333333334 49.0666666666667 196.6933333333333 87.4666666666667C256 100.2666666666667 298.6666666666667 153.6 298.6666666666667 213.3333333333334V405.3333333333333H213.3333333333333V341.3333333333334H256V213.3333333333334C256 166.1866666666667 217.8133333333333 128 170.6666666666667 128S85.3333333333333 166.1866666666667 85.3333333333333 213.3333333333334V341.3333333333334H128V405.3333333333333H42.6666666666667z" />
+    <glyph glyph-name="sticker"
+      unicode="&#xF5D0;"
+      horiz-adv-x="512" d=" M258.56 54.1866666666667L390.3999999999999 186.0266666666667C361.3866666666666 179.4133333333333 326.6133333333333 166.4 300.1599999999999 139.52C278.1866666666666 117.3333333333334 264.32 88.96 258.56 54.1866666666667M442.6666666666667 234.6666666666667H449.0666666666667C457.3866666666667 234.6666666666667 464.8533333333333 228.9066666666667 467.84 221.0133333333333C470.8266666666667 213.3333333333334 469.3333333333333 204.16 462.9333333333333 198.1866666666667L249.6 -15.1466666666666C245.3333333333333 -19.2 240.2133333333333 -21.3333333333333 234.6666666666667 -21.3333333333333L226.9866666666667 -19.84C219.0933333333334 -16.8533333333333 213.3333333333333 -9.3866666666667 213.3333333333333 -1.0666666666667C209.92 71.2533333333333 228.9066666666667 128.8533333333334 270.08 170.0266666666667C330.6666666666667 230.4000000000001 418.56 234.6666666666667 442.6666666666667 234.6666666666667M256 405.3333333333333C352 405.3333333333333 433.92 341.3333333333334 460.3733333333333 253.6533333333334L426.6666666666667 256H414.2933333333334C389.12 318.5066666666667 327.68 362.6666666666667 256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192C85.3333333333333 120.3200000000001 129.4933333333334 58.88 192 33.7066666666667C191.36 18.5599999999999 192 3.2 194.3466666666666 -12.16C106.6666666666667 14.2933333333334 42.6666666666667 96 42.6666666666667 192C42.6666666666667 309.9733333333334 138.6666666666667 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="sticker-emoji"
+      unicode="&#xF784;"
+      horiz-adv-x="512" d=" M117.3333333333333 405.3333333333333C75.9466666666667 405.3333333333333 42.6666666666667 372.0533333333334 42.6666666666667 330.6666666666667V53.3333333333334C42.6666666666667 11.9466666666667 75.9466666666667 -21.3333333333333 117.3333333333333 -21.3333333333333H341.3333333333333L469.3333333333333 106.6666666666667V330.6666666666667C469.3333333333333 372.0533333333334 436.0533333333334 405.3333333333333 394.6666666666667 405.3333333333333H117.3333333333333M122.6666666666667 362.6666666666667H389.3333333333333C410.0266666666667 362.6666666666667 426.6666666666667 346.0266666666667 426.6666666666667 325.3333333333334V128H394.6666666666667C353.28 128 320 94.72 320 53.3333333333334V21.3333333333334H122.6666666666667C101.9733333333333 21.3333333333334 85.3333333333333 37.9733333333334 85.3333333333333 58.6666666666667V325.3333333333334C85.3333333333333 346.0266666666667 101.9733333333333 362.6666666666667 122.6666666666667 362.6666666666667M308.0533333333333 303.5733333333334C304.64 303.5733333333334 301.2266666666667 303.1466666666667 298.0266666666667 302.2933333333334C277.9733333333333 296.7466666666667 266.6666666666667 276.2666666666667 271.7866666666667 256C272.8533333333333 252.8 274.3466666666666 249.6 276.2666666666667 246.6133333333334L345.1733333333333 265.3866666666667C345.1733333333333 269.0133333333334 344.7466666666667 272.6400000000001 343.8933333333333 276.2666666666667C339.4133333333333 292.2666666666667 324.6933333333334 303.5733333333334 308.0533333333334 303.5733333333334M174.2933333333333 266.6666666666667C170.6666666666667 266.6666666666667 167.4666666666667 266.6666666666667 164.2666666666667 265.6C144.4266666666667 260.0533333333334 132.6933333333333 239.5733333333333 138.0266666666667 219.7333333333333C138.6666666666667 216.32 140.5866666666667 213.3333333333333 142.5066666666667 209.92L211.4133333333333 228.6933333333334C211.4133333333333 232.32 210.9866666666667 235.9466666666667 210.1333333333333 239.36C205.6533333333333 256 190.9333333333333 266.6666666666667 174.2933333333333 266.6666666666667M356.6933333333333 207.7866666666667L161.92 154.24C190.08 121.6 234.6666666666667 107.9466666666667 276.2666666666667 119.2533333333333C317.8666666666666 130.7733333333333 349.0133333333333 165.3333333333334 356.6933333333333 207.7866666666667z" />
+    <glyph glyph-name="stocking"
+      unicode="&#xF4DA;"
+      horiz-adv-x="512" d=" M362.6666666666667 405.3333333333333C386.1333333333334 405.3333333333333 405.3333333333333 386.1333333333334 405.3333333333333 362.6666666666667V298.6666666666667C405.3333333333333 275.2000000000001 386.1333333333334 256 362.6666666666667 256V85.3333333333334C362.6666666666667 67.2 352 51.84 335.7866666666667 45.6533333333334L202.6666666666667 -16.4266666666666C181.3333333333333 -26.4533333333333 155.52 -17.28 145.7066666666667 4.0533333333334L128 42.6666666666667C117.3333333333333 64 126.9333333333333 89.6 148.2666666666667 99.4133333333334L213.3333333333333 129.92V256C189.8666666666667 256 170.6666666666667 275.2000000000001 170.6666666666667 298.6666666666667V362.6666666666667C170.6666666666667 386.1333333333334 189.8666666666667 405.3333333333333 213.3333333333333 405.3333333333333H362.6666666666667M213.3333333333333 362.6666666666667V298.6666666666667H362.6666666666667V362.6666666666667H213.3333333333333z" />
+    <glyph glyph-name="stop"
+      unicode="&#xF4DB;"
+      horiz-adv-x="512" d=" M384 64H128V320H384V64z" />
+    <glyph glyph-name="stop-circle"
+      unicode="&#xF666;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M192 256H320V128H192" />
+    <glyph glyph-name="stop-circle-outline"
+      unicode="&#xF667;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M256 362.6666666666667C350.08 362.6666666666667 426.6666666666667 286.0800000000001 426.6666666666667 192S350.08 21.3333333333334 256 21.3333333333334S85.3333333333333 97.92 85.3333333333333 192S161.92 362.6666666666667 256 362.6666666666667M192 256V128H320V256" />
+    <glyph glyph-name="store"
+      unicode="&#xF4DC;"
+      horiz-adv-x="512" d=" M256 64H128V149.3333333333334H256M448 149.3333333333334V192L426.6666666666667 298.6666666666667H85.3333333333333L64 192V149.3333333333334H85.3333333333333V21.3333333333334H298.6666666666667V149.3333333333334H384V21.3333333333334H426.6666666666667V149.3333333333334M426.6666666666667 362.6666666666667H85.3333333333333V320H426.6666666666667V362.6666666666667z" />
+    <glyph glyph-name="store-24-hour"
+      unicode="&#xF4DD;"
+      horiz-adv-x="512" d=" M341.3333333333333 192H320V234.6666666666667H277.3333333333333V298.6666666666667H298.6666666666667V256H320V298.6666666666667H341.3333333333333M234.6666666666667 234.6666666666667H192V213.3333333333334H234.6666666666667V192H170.6666666666667V256H213.3333333333333V277.3333333333334H170.6666666666667V298.6666666666667H234.6666666666667M405.3333333333333 298.6666666666667V362.6666666666667H106.6666666666667V298.6666666666667H42.6666666666667V21.3333333333334H213.3333333333333V106.6666666666667H298.6666666666667V21.3333333333334H469.3333333333333V298.6666666666667H405.3333333333333z" />
+    <glyph glyph-name="stove"
+      unicode="&#xF4DE;"
+      horiz-adv-x="512" d=" M128 149.3333333333334H170.6666666666667L234.6666666666667 85.3333333333334H192L128 149.3333333333334M85.3333333333333 362.6666666666667H106.6666666666667V384C106.6666666666667 395.7333333333334 116.2666666666667 405.3333333333333 128 405.3333333333333H213.3333333333333C225.0666666666667 405.3333333333333 234.6666666666667 395.7333333333334 234.6666666666667 384V362.6666666666667H277.3333333333333V384C277.3333333333333 395.7333333333334 286.9333333333333 405.3333333333333 298.6666666666667 405.3333333333333H384C395.7333333333334 405.3333333333333 405.3333333333333 395.7333333333334 405.3333333333333 384V362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0V-21.3333333333333H362.6666666666667V0H149.3333333333333V-21.3333333333333H85.3333333333333V0C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M384 298.6666666666667C395.7333333333334 298.6666666666667 405.3333333333333 289.0666666666667 405.3333333333333 277.3333333333334S395.7333333333334 256 384 256S362.6666666666667 265.6 362.6666666666667 277.3333333333334S372.2666666666667 298.6666666666667 384 298.6666666666667M298.6666666666667 298.6666666666667C310.4 298.6666666666667 320 289.0666666666667 320 277.3333333333334S310.4 256 298.6666666666667 256S277.3333333333333 265.6 277.3333333333333 277.3333333333334S286.9333333333333 298.6666666666667 298.6666666666667 298.6666666666667M426.6666666666667 320H85.3333333333333V234.6666666666667H426.6666666666667V320M85.3333333333333 42.6666666666667H426.6666666666667V192H85.3333333333333V42.6666666666667M128 298.6666666666667C139.7333333333333 298.6666666666667 149.3333333333333 289.0666666666667 149.3333333333333 277.3333333333334S139.7333333333333 256 128 256S106.6666666666667 265.6 106.6666666666667 277.3333333333334S116.2666666666667 298.6666666666667 128 298.6666666666667M277.3333333333333 149.3333333333334H320L384 85.3333333333334H341.3333333333333L277.3333333333333 149.3333333333334z" />
+    <glyph glyph-name="strava"
+      unicode="&#xFB25;"
+      horiz-adv-x="512" d=" M318.2933333333333 81.92L357.3333333333333 159.36H414.9333333333333L318.72 -32L221.2266666666666 159.36H278.8266666666667L318.2933333333333 81.92M226.7733333333333 263.2533333333334L174.5066666666667 158.9333333333333H97.0666666666667L226.3466666666667 416L357.12 158.9333333333333H279.68L226.7733333333333 263.2533333333334z" />
+    <glyph glyph-name="subdirectory-arrow-left"
+      unicode="&#xF60C;"
+      horiz-adv-x="512" d=" M234.6666666666667 256L264.96 225.7066666666667L188.3733333333333 149.3333333333334H384V362.6666666666667H426.6666666666667V106.6666666666667H188.3733333333333L264.96 30.2933333333334L234.6666666666667 0L106.6666666666667 128L234.6666666666667 256z" />
+    <glyph glyph-name="subdirectory-arrow-right"
+      unicode="&#xF60D;"
+      horiz-adv-x="512" d=" M405.3333333333333 128L277.3333333333333 0L247.04 30.2933333333334L323.6266666666667 106.6666666666667H85.3333333333333V362.6666666666667H128V149.3333333333334H323.6266666666667L247.04 225.7066666666667L277.3333333333333 256L405.3333333333333 128z" />
+    <glyph glyph-name="subtitles"
+      unicode="&#xFA15;"
+      horiz-adv-x="512" d=" M426.6666666666667 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.4666666666667 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667M85.3333333333333 192H170.6666666666667V149.3333333333334H85.3333333333333V192M298.6666666666667 64H85.3333333333333V106.6666666666667H298.6666666666667V64M426.6666666666667 64H341.3333333333333V106.6666666666667H426.6666666666667V64M426.6666666666667 149.3333333333334H213.3333333333333V192H426.6666666666667V149.3333333333334z" />
+    <glyph glyph-name="subtitles-outline"
+      unicode="&#xFA16;"
+      horiz-adv-x="512" d=" M426.6666666666667 362.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667M426.6666666666667 64V320H85.3333333333333V64H426.6666666666667M128 234.6666666666667H170.6666666666667V192H128V234.6666666666667M128 149.3333333333334H298.6666666666667V106.6666666666667H128V149.3333333333334M341.3333333333333 149.3333333333334H384V106.6666666666667H341.3333333333333V149.3333333333334M213.3333333333333 234.6666666666667H384V192H213.3333333333333V234.6666666666667z" />
+    <glyph glyph-name="subway"
+      unicode="&#xF6AB;"
+      horiz-adv-x="512" d=" M181.3333333333333 128C193.0666666666667 128 202.6666666666667 118.4 202.6666666666667 106.6666666666667S193.0666666666667 85.3333333333334 181.3333333333333 85.3333333333334S160 94.9333333333333 160 106.6666666666667S169.6 128 181.3333333333333 128M149.3333333333333 256H362.6666666666667V149.3333333333334H149.3333333333333V256M330.6666666666667 128C342.4 128 352 118.4 352 106.6666666666667S342.4 85.3333333333334 330.6666666666667 85.3333333333334S309.3333333333333 94.9333333333333 309.3333333333333 106.6666666666667S318.9333333333333 128 330.6666666666667 128M384 109.2266666666667V256C384 311.8933333333333 326.8266666666667 320 256 320C192 320 128 312.1066666666667 128 256V109.2266666666667C128 78.2933333333334 152.96 53.3333333333334 183.8933333333334 53.3333333333334L160 29.44V21.3333333333334H195.6266666666667L227.6266666666667 53.3333333333334H288L320 21.3333333333334H352V29.44L327.8933333333333 53.3333333333334C358.8266666666667 53.3333333333334 384 78.2933333333334 384 109.2266666666667M379.7333333333334 388.2666666666667C436.6933333333333 366.0800000000001 469.3333333333333 318.9333333333334 469.3333333333333 258.9866666666667V-21.3333333333333H42.6666666666667V258.9866666666667C42.6666666666667 318.9333333333334 75.3066666666667 366.0800000000001 132.2666666666667 388.2666666666667C170.6666666666667 403.4133333333334 216.32 405.3333333333333 256 405.3333333333333C295.68 405.3333333333333 341.3333333333333 403.4133333333334 379.7333333333334 388.2666666666667z" />
+    <glyph glyph-name="subway-variant"
+      unicode="&#xF4DF;"
+      horiz-adv-x="512" d=" M384 213.3333333333334H277.3333333333333V320H384M352 85.3333333333334C334.2933333333333 85.3333333333334 320 99.6266666666667 320 117.3333333333334S334.2933333333333 149.3333333333334 352 149.3333333333334S384 135.04 384 117.3333333333334S369.7066666666666 85.3333333333334 352 85.3333333333334M234.6666666666667 213.3333333333334H128V320H234.6666666666667M160 85.3333333333334C142.2933333333333 85.3333333333334 128 99.6266666666667 128 117.3333333333334S142.2933333333333 149.3333333333334 160 149.3333333333334S192 135.04 192 117.3333333333334S177.7066666666667 85.3333333333334 160 85.3333333333334M256 405.3333333333333C161.7066666666667 405.3333333333333 85.3333333333333 394.6666666666667 85.3333333333333 320V117.3333333333334C85.3333333333333 76.16 118.8266666666667 42.6666666666667 160 42.6666666666667L128 10.6666666666667V0H384V10.6666666666667L352 42.6666666666667C393.1733333333333 42.6666666666667 426.6666666666667 76.16 426.6666666666667 117.3333333333334V320C426.6666666666667 394.6666666666667 350.2933333333334 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="summit"
+      unicode="&#xF785;"
+      horiz-adv-x="512" d=" M320 384H362.6666666666667L469.3333333333333 341.3333333333334L362.6666666666667 298.6666666666667V231.04L469.3333333333333 0H42.6666666666667L170.6666666666667 170.6666666666667L245.3333333333333 70.4L320 231.0400000000001V384z" />
+    <glyph glyph-name="sunglasses"
+      unicode="&#xF4E0;"
+      horiz-adv-x="512" d=" M149.3333333333333 85.3333333333334H85.3333333333333C50.7733333333333 85.3333333333334 20.48 112.2133333333334 16.2133333333333 146.3466666666667L5.5466666666667 210.1333333333333C3.2 228.2666666666667 8.32 245.3333333333334 19.4133333333333 257.7066666666667C30.5066666666667 270.0800000000001 46.72 277.3333333333334 64 277.3333333333334H192C209.7066666666667 277.3333333333334 225.7066666666667 269.8666666666667 235.9466666666667 256.8533333333334C238.2933333333333 253.6533333333333 240.4266666666667 250.24 242.1333333333334 246.4C251.3066666666667 248.32 260.6933333333333 248.32 269.6533333333333 246.4C271.36 250.24 273.4933333333334 253.6533333333333 276.0533333333334 256.8533333333334C286.08 269.8666666666667 302.08 277.3333333333334 320 277.3333333333334H448C465.28 277.3333333333334 481.4933333333333 270.0800000000001 492.5866666666666 257.7066666666667C503.4666666666667 245.3333333333334 508.5866666666666 228.2666666666667 506.4533333333333 210.9866666666667L495.5733333333333 145.4933333333334C491.52 112.2133333333334 461.0133333333333 85.3333333333334 426.6666666666667 85.3333333333334H362.6666666666667C329.3866666666667 85.3333333333334 296.96 110.72 288.8533333333333 142.9333333333333L269.6533333333333 200.7466666666667C261.5466666666666 206.72 250.24 206.72 242.1333333333333 200.7466666666667L222.5066666666666 141.4400000000001C214.8266666666667 110.5066666666667 182.6133333333334 85.3333333333334 149.3333333333333 85.3333333333334z" />
+    <glyph glyph-name="surround-sound"
+      unicode="&#xF5C5;"
+      horiz-adv-x="512" d=" M426.6666666666667 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V320C469.3333333333333 343.4666666666667 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667M165.5466666666667 101.5466666666667L135.4666666666667 71.4666666666667C101.9733333333333 104.5333333333333 85.3333333333333 148.2666666666667 85.3333333333333 192C85.3333333333333 235.7333333333334 101.9733333333333 279.4666666666667 135.2533333333333 312.7466666666667L165.3333333333333 282.6666666666667C140.5866666666667 257.4933333333334 128 224.8533333333333 128 192S140.5866666666667 126.5066666666667 165.5466666666667 101.5466666666666M256 106.6666666666667C208.8533333333333 106.6666666666667 170.6666666666667 144.8533333333334 170.6666666666667 192S208.8533333333333 277.3333333333334 256 277.3333333333334S341.3333333333333 239.1466666666667 341.3333333333333 192S303.1466666666667 106.6666666666667 256 106.6666666666667M376.7466666666667 71.2533333333333L346.6666666666667 101.3333333333334C371.4133333333333 126.5066666666667 384 159.1466666666667 384 192S371.4133333333333 257.4933333333334 346.4533333333333 282.4533333333334L376.5333333333333 312.5333333333334C410.0266666666667 279.4666666666667 426.6666666666667 235.7333333333334 426.6666666666667 192C426.6666666666667 148.2666666666667 410.0266666666667 104.5333333333333 376.7466666666667 71.2533333333333M256 234.6666666666667C232.5333333333334 234.6666666666667 213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334S298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667z" />
+    <glyph glyph-name="surround-sound-2-0"
+      unicode="&#xF7EF;"
+      horiz-adv-x="512" d=" M362.6666666666667 298.6666666666667H405.3333333333333C428.8 298.6666666666667 448 279.4666666666667 448 256V128C448 104.5333333333333 428.8 85.3333333333334 405.3333333333333 85.3333333333334H362.6666666666667C339.2 85.3333333333334 320 104.5333333333333 320 128V256C320 279.4666666666667 339.2 298.6666666666667 362.6666666666667 298.6666666666667M362.6666666666667 256V128H405.3333333333333V256H362.6666666666667M192 85.3333333333334H64V128L149.3333333333333 256H64V298.6666666666667H149.3333333333333C172.8 298.6666666666667 192 279.4666666666667 192 256C192 247.04 189.2266666666666 238.72 184.5333333333333 231.8933333333334L115.4133333333333 128H192V85.3333333333334M256 85.3333333333334C244.2666666666667 85.3333333333334 234.6666666666667 94.9333333333333 234.6666666666667 106.6666666666667S244.2666666666667 128 256 128S277.3333333333333 118.4 277.3333333333333 106.6666666666667S267.7333333333334 85.3333333333334 256 85.3333333333334z" />
+    <glyph glyph-name="surround-sound-3-1"
+      unicode="&#xF7F0;"
+      horiz-adv-x="512" d=" M277.3333333333333 85.3333333333334C265.6 85.3333333333334 256 94.9333333333333 256 106.6666666666667S265.6 128 277.3333333333333 128S298.6666666666667 118.4 298.6666666666667 106.6666666666667S289.0666666666667 85.3333333333334 277.3333333333333 85.3333333333334M405.3333333333333 298.6666666666667V128H426.6666666666667V85.3333333333334H341.3333333333333V128H362.6666666666667V256H341.3333333333333L362.6666666666667 298.6666666666667H405.3333333333333M85.3333333333333 298.6666666666667H170.6666666666667C194.1333333333333 298.6666666666667 213.3333333333333 279.4666666666667 213.3333333333333 256V128C213.3333333333333 104.5333333333333 194.1333333333333 85.3333333333334 170.6666666666667 85.3333333333334H85.3333333333333V128H170.6666666666667V170.6666666666667H106.6666666666667V213.3333333333334H170.6666666666667V256H85.3333333333333V298.6666666666667z" />
+    <glyph glyph-name="surround-sound-5-1"
+      unicode="&#xF7F1;"
+      horiz-adv-x="512" d=" M277.3333333333333 85.3333333333334C265.6 85.3333333333334 256 94.9333333333333 256 106.6666666666667S265.6 128 277.3333333333333 128S298.6666666666667 118.4 298.6666666666667 106.6666666666667S289.0666666666667 85.3333333333334 277.3333333333333 85.3333333333334M405.3333333333333 298.6666666666667V128H426.6666666666667V85.3333333333334H341.3333333333333V128H362.6666666666667V256H341.3333333333333L362.6666666666667 298.6666666666667H405.3333333333333M128 170.6666666666667C104.5333333333333 170.6666666666667 85.3333333333333 189.8666666666667 85.3333333333333 213.3333333333334V298.6666666666667H213.3333333333333V256H128V213.3333333333334H170.6666666666667C194.1333333333333 213.3333333333334 213.3333333333333 194.1333333333333 213.3333333333333 170.6666666666667V128C213.3333333333333 104.5333333333333 194.1333333333333 85.3333333333334 170.6666666666667 85.3333333333334H85.3333333333333V128H170.6666666666667V170.6666666666667H128z" />
+    <glyph glyph-name="surround-sound-7-1"
+      unicode="&#xF7F2;"
+      horiz-adv-x="512" d=" M256 85.3333333333334C244.2666666666667 85.3333333333334 234.6666666666667 94.9333333333333 234.6666666666667 106.6666666666667S244.2666666666667 128 256 128S277.3333333333333 118.4 277.3333333333333 106.6666666666667S267.7333333333334 85.3333333333334 256 85.3333333333334M384 298.6666666666667V128H405.3333333333333V85.3333333333334H320V128H341.3333333333333V256H320L341.3333333333333 298.6666666666667H384M234.6666666666667 298.6666666666667L170.6666666666667 85.3333333333334H128L179.2 256H106.6666666666667V298.6666666666667H234.6666666666667z" />
+    <glyph glyph-name="svg"
+      unicode="&#xF720;"
+      horiz-adv-x="512" d=" M109.44 219.52H189.2266666666667L132.6933333333333 276.0533333333334C111.1466666666667 276.0533333333334 93.6533333333333 293.5466666666667 93.6533333333333 315.3066666666667C93.6533333333333 336.8533333333334 111.1466666666667 354.3466666666667 132.6933333333333 354.3466666666667C154.4533333333333 354.3466666666667 171.9466666666667 336.8533333333334 171.9466666666667 315.3066666666667L228.48 258.7733333333333V338.56C213.3333333333333 353.92 213.3333333333333 378.6666666666667 228.48 393.8133333333334C243.6266666666667 409.1733333333334 268.3733333333334 409.1733333333334 283.52 393.8133333333334C298.6666666666667 378.6666666666667 298.6666666666667 353.92 283.52 338.56V258.7733333333333L340.2666666666667 315.3066666666667C340.2666666666667 336.8533333333334 357.5466666666667 354.3466666666667 379.3066666666667 354.3466666666667C400.8533333333334 354.3466666666667 418.3466666666667 336.8533333333334 418.3466666666667 315.3066666666667C418.3466666666667 293.5466666666667 400.8533333333333 276.0533333333334 379.3066666666667 276.0533333333334L322.7733333333333 219.52H402.56C417.92 234.6666666666667 442.6666666666667 234.6666666666667 457.8133333333333 219.52C473.1733333333333 204.3733333333333 473.1733333333333 179.6266666666667 457.8133333333333 164.48C442.6666666666667 149.3333333333334 417.92 149.3333333333334 402.56 164.48H322.7733333333333L379.3066666666667 107.7333333333334C400.8533333333334 107.7333333333334 418.3466666666667 90.4533333333333 418.3466666666667 68.6933333333333C418.3466666666667 47.1466666666667 400.8533333333333 29.6533333333334 379.3066666666667 29.6533333333334C357.5466666666667 29.6533333333334 340.2666666666667 47.1466666666667 340.2666666666667 68.6933333333333L283.52 125.2266666666667V45.44C298.6666666666667 30.08 298.6666666666667 5.3333333333334 283.52 -9.8133333333333C268.3733333333334 -25.1733333333333 243.6266666666667 -25.1733333333333 228.48 -9.8133333333333C213.3333333333333 5.3333333333334 213.3333333333333 30.08 228.48 45.44V125.2266666666667L171.9466666666667 68.6933333333333C171.9466666666667 47.1466666666667 154.4533333333333 29.6533333333334 132.6933333333333 29.6533333333334C111.1466666666667 29.6533333333334 93.6533333333333 47.1466666666667 93.6533333333333 68.6933333333333C93.6533333333333 90.4533333333333 111.1466666666667 107.7333333333334 132.6933333333333 107.7333333333334L189.2266666666667 164.48H109.44C94.08 149.3333333333334 69.3333333333333 149.3333333333334 54.1866666666667 164.48C38.8266666666667 179.6266666666667 38.8266666666667 204.3733333333333 54.1866666666667 219.52C69.3333333333333 234.6666666666667 94.08 234.6666666666667 109.44 219.52z" />
+    <glyph glyph-name="swap-horizontal"
+      unicode="&#xF4E1;"
+      horiz-adv-x="512" d=" M448 256L362.6666666666667 341.3333333333334V277.3333333333334H213.3333333333333V234.6666666666667H362.6666666666667V170.6666666666667M149.3333333333333 213.3333333333334L64 128L149.3333333333333 42.6666666666667V106.6666666666667H298.6666666666667V149.3333333333334H149.3333333333333V213.3333333333334z" />
+    <glyph glyph-name="swap-horizontal-bold"
+      unicode="&#xFBA9;"
+      horiz-adv-x="512" d=" M170.6666666666667 234.6666666666667V170.6666666666667H298.6666666666667V64H170.6666666666667V0L42.6666666666667 117.3333333333334L170.6666666666667 234.6666666666667M469.3333333333333 266.6666666666667L341.3333333333333 384V320H213.3333333333333V213.3333333333334H341.3333333333333V149.3333333333334L469.3333333333333 266.6666666666667z" />
+    <glyph glyph-name="swap-horizontal-variant"
+      unicode="&#xF8C0;"
+      horiz-adv-x="512" d=" M85.3333333333333 320L170.6666666666667 234.6666666666667V298.6666666666667H341.3333333333333C364.8 298.6666666666667 384 279.4666666666667 384 256S364.8 213.3333333333334 341.3333333333333 213.3333333333334H170.6666666666667C123.52 213.3333333333334 85.3333333333333 175.1466666666667 85.3333333333333 128S123.52 42.6666666666667 170.6666666666667 42.6666666666667H341.3333333333333V-21.3333333333333L426.6666666666667 64L341.3333333333333 149.3333333333334V85.3333333333334H170.6666666666667C147.2 85.3333333333334 128 104.5333333333333 128 128S147.2 170.6666666666667 170.6666666666667 170.6666666666667H341.3333333333333C388.48 170.6666666666667 426.6666666666667 208.8533333333333 426.6666666666667 256S388.48 341.3333333333334 341.3333333333333 341.3333333333334H170.6666666666667V405.3333333333333L85.3333333333333 320z" />
+    <glyph glyph-name="swap-vertical"
+      unicode="&#xF4E2;"
+      horiz-adv-x="512" d=" M192 384L106.6666666666667 298.6666666666667H170.6666666666667V149.3333333333334H213.3333333333333V298.6666666666667H277.3333333333333M341.3333333333333 85.3333333333334V234.6666666666667H298.6666666666667V85.3333333333334H234.6666666666667L320 0L405.3333333333333 85.3333333333334H341.3333333333333z" />
+    <glyph glyph-name="swap-vertical-bold"
+      unicode="&#xFBAA;"
+      horiz-adv-x="512" d=" M298.6666666666667 277.3333333333334H234.6666666666667V149.3333333333334H128V277.3333333333334H64L181.3333333333333 405.3333333333333L298.6666666666667 277.3333333333334M330.6666666666667 -21.3333333333333L448 106.6666666666667H384V234.6666666666667H277.3333333333333V106.6666666666667H213.3333333333333L330.6666666666667 -21.3333333333333z" />
+    <glyph glyph-name="swap-vertical-variant"
+      unicode="&#xF8C1;"
+      horiz-adv-x="512" d=" M384 362.6666666666667L298.6666666666667 277.3333333333334H362.6666666666667V106.6666666666667C362.6666666666667 83.2 343.4666666666667 64 320 64S277.3333333333333 83.2 277.3333333333333 106.6666666666667V277.3333333333334C277.3333333333333 324.48 239.1466666666667 362.6666666666667 192 362.6666666666667S106.6666666666667 324.48 106.6666666666667 277.3333333333334V106.6666666666667H42.6666666666667L128 21.3333333333334L213.3333333333333 106.6666666666667H149.3333333333333V277.3333333333334C149.3333333333333 300.8 168.5333333333333 320 192 320S234.6666666666667 300.8 234.6666666666667 277.3333333333334V106.6666666666667C234.6666666666667 59.52 272.8533333333333 21.3333333333334 320 21.3333333333334S405.3333333333333 59.52 405.3333333333333 106.6666666666667V277.3333333333334H469.3333333333333L384 362.6666666666667z" />
+    <glyph glyph-name="swim"
+      unicode="&#xF4E3;"
+      horiz-adv-x="512" d=" M42.6666666666667 64C90.0266666666667 85.3333333333334 137.3866666666667 106.6666666666667 184.96 106.6666666666667C232.32 106.6666666666667 279.68 64 327.04 64C374.6133333333333 64 421.9733333333334 106.6666666666667 469.3333333333333 106.6666666666667V42.6666666666667C421.9733333333334 42.6666666666667 374.6133333333333 0 327.04 0C279.68 0 232.32 42.6666666666667 184.96 42.6666666666667C137.3866666666667 42.6666666666667 90.0266666666667 21.3333333333334 42.6666666666667 0V64M184.96 170.6666666666667C168.32 170.6666666666667 151.8933333333333 168.1066666666667 135.4666666666667 163.84L240.4266666666667 237.2266666666667L218.24 263.68C215.2533333333333 267.3066666666667 213.3333333333333 272.2133333333334 213.3333333333333 277.3333333333334C213.3333333333333 284.5866666666667 216.96 291.2000000000001 222.72 295.04L344.7466666666667 380.3733333333334L369.28 345.6L266.0266666666667 273.2800000000001L377.6 140.3733333333333C360.7466666666667 133.3333333333334 343.8933333333333 128 327.04 128C279.68 128 232.32 170.6666666666667 184.96 170.6666666666667M384 298.6666666666667C407.4666666666667 298.6666666666667 426.6666666666667 279.4666666666667 426.6666666666667 256S407.4666666666667 213.3333333333334 384 213.3333333333334S341.3333333333333 232.5333333333334 341.3333333333333 256S360.5333333333333 298.6666666666667 384 298.6666666666667z" />
+    <glyph glyph-name="switch"
+      unicode="&#xF4E4;"
+      horiz-adv-x="512" d=" M277.3333333333333 64H298.6666666666667C310.4 64 320 54.4 320 42.6666666666667H469.3333333333333V0H320C320 -11.7333333333333 310.4 -21.3333333333333 298.6666666666667 -21.3333333333333H213.3333333333333C201.6 -21.3333333333333 192 -11.7333333333333 192 0H42.6666666666667V42.6666666666667H192C192 54.4 201.6 64 213.3333333333333 64H234.6666666666667V106.6666666666667H170.6666666666667C158.9333333333333 106.6666666666667 149.3333333333333 116.2666666666667 149.3333333333333 128V384C149.3333333333333 395.7333333333334 158.9333333333333 405.3333333333333 170.6666666666667 405.3333333333333H341.3333333333333C353.0666666666667 405.3333333333333 362.6666666666667 395.7333333333334 362.6666666666667 384V128C362.6666666666667 116.2666666666667 353.0666666666667 106.6666666666667 341.3333333333333 106.6666666666667H277.3333333333333V64M277.3333333333333 320H298.6666666666667V362.6666666666667H277.3333333333333V320M192 362.6666666666667V320H234.6666666666667V362.6666666666667H192M192 277.3333333333334V234.6666666666667H234.6666666666667V277.3333333333334H192M192 192V149.3333333333334H234.6666666666667V192H192z" />
+    <glyph glyph-name="sword"
+      unicode="&#xF4E5;"
+      horiz-adv-x="512" d=" M147.6266666666667 341.3333333333334H106.6666666666667L298.6666666666667 149.3333333333334L320 169.3866666666667M425.8133333333334 40.1066666666667L407.8933333333333 22.1866666666667C399.5733333333333 13.8666666666667 386.1333333333334 13.8666666666667 377.8133333333334 22.1866666666667L311.2533333333334 88.7466666666667L254.08 32L224 62.08L254.2933333333333 92.3733333333333L64 282.6666666666667V384H165.3333333333333L355.6266666666667 193.7066666666667L385.9200000000001 224L416.0000000000001 193.92L359.0400000000001 136.96L425.6000000000002 70.4C434.1333333333335 61.8666666666667 434.1333333333335 48.4266666666667 425.8133333333335 40.1066666666667z" />
+    <glyph glyph-name="sword-cross"
+      unicode="&#xF786;"
+      horiz-adv-x="512" d=" M132.2666666666667 395.9466666666667L386.1333333333334 142.0800000000001L431.36 187.3066666666667L461.4400000000001 157.2266666666667L408.7466666666668 104.5333333333334L476.5866666666667 36.6933333333334C484.9066666666668 28.3733333333334 484.9066666666668 14.9333333333334 476.5866666666667 6.6133333333334L461.4400000000001 -8.5333333333333C453.12 -16.8533333333333 439.6800000000001 -16.8533333333333 431.36 -8.5333333333333L362.6666666666667 59.0933333333334L310.6133333333334 6.4L280.5333333333333 36.48L325.76 81.7066666666667L71.8933333333333 335.5733333333334V395.9466666666667H132.2666666666667M338.9866666666667 234.6666666666667L440.1066666666667 335.7866666666667V395.9466666666667H379.7333333333334L278.6133333333334 294.8266666666667L338.9866666666667 234.6666666666667M233.3866666666667 128L173.0133333333334 189.2266666666667L125.8666666666667 142.0800000000001L80.64 187.3066666666667L50.56 157.2266666666667L103.2533333333334 104.5333333333334L35.4133333333334 36.48C27.0933333333334 28.16 27.0933333333334 14.72 35.4133333333334 6.4L50.56 -8.7466666666667C58.88 -17.0666666666667 72.32 -17.0666666666667 80.64 -8.7466666666667L149.3333333333333 59.0933333333334L201.3866666666667 6.4L231.4666666666667 36.48L186.24 81.7066666666667L233.3866666666667 128z" />
+    <glyph glyph-name="symfony"
+      unicode="&#xFAE5;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M349.2266666666667 326.4C370.9866666666667 327.04 387.2000000000001 317.2266666666667 388.48 302.0800000000001C388.6933333333334 295.4666666666667 384.8533333333333 282.6666666666667 371.6266666666667 282.24C361.6 281.8133333333334 354.7733333333334 288 354.56 296.7466666666667C354.3466666666667 300.1600000000001 360.1066666666667 311.04 360.1066666666667 312.9600000000001C359.8933333333333 318.7200000000001 351.36 318.9333333333334 349.0133333333334 318.7200000000001C317.0133333333334 317.6533333333333 308.48 274.56 301.6533333333334 239.36L298.6666666666667 220.8C316.5866666666667 218.0266666666667 329.8133333333334 221.44 337.0666666666667 226.1333333333334C347.3066666666667 232.7466666666667 334.0800000000001 239.5733333333334 335.7866666666667 247.2533333333334C337.4933333333334 255.1466666666667 344.5333333333334 258.7733333333333 350.0800000000001 258.9866666666667C357.9733333333334 259.2000000000001 363.5200000000001 251.0933333333334 363.3066666666668 242.7733333333334C362.6666666666668 229.12 344.9600000000001 210.3466666666667 309.3333333333335 211.2C304.6400000000001 211.2 300.5866666666668 211.6266666666667 296.7466666666668 212.0533333333334C283.7333333333335 145.92 275.6266666666668 106.6666666666667 246.6133333333335 72.96C221.6533333333335 43.3066666666667 196.2666666666668 38.8266666666667 184.9600000000001 38.4C163.6266666666668 37.5466666666667 149.3333333333334 48.8533333333334 149.3333333333334 64C148.6933333333335 78.5066666666667 161.4933333333335 86.6133333333334 170.0266666666668 86.8266666666667C181.3333333333334 87.2533333333333 189.2266666666668 78.9333333333333 189.4400000000001 69.5466666666667C189.8666666666667 61.6533333333334 185.6000000000001 59.0933333333334 182.8266666666668 57.6000000000001C181.3333333333334 56.1066666666667 178.1333333333334 54.4000000000001 178.3466666666667 51.2C178.3466666666667 49.7066666666667 179.8400000000001 46.5066666666668 184.5333333333334 46.72C193.4933333333334 46.9333333333334 199.2533333333334 51.4133333333334 203.5200000000001 54.4C224.0000000000001 71.4666666666667 232.1066666666667 101.5466666666667 242.5600000000001 156.16C248.1066666666667 187.0933333333334 252.1600000000001 206.9333333333333 258.1333333333334 226.5600000000001C243.6266666666667 237.4400000000001 234.6666666666668 251.0933333333334 215.2533333333334 256C201.8133333333334 260.0533333333334 193.7066666666667 256.8533333333334 187.9466666666668 249.6C181.3333333333334 240.8533333333333 183.4666666666667 229.76 189.8666666666667 223.1466666666667C214.4000000000001 195.84 221.6533333333334 183.8933333333333 218.8800000000001 167.68C214.6133333333334 141.8666666666667 183.8933333333334 122.24 147.6266666666667 133.3333333333334C116.6933333333334 142.9333333333333 110.9333333333334 164.6933333333334 114.5600000000001 176.8533333333334C117.9733333333334 187.3066666666667 126.2933333333334 189.44 134.6133333333334 186.88C143.5733333333334 184.1066666666667 146.9866666666667 173.44 144.4266666666667 165.12C144.0000000000001 164.2666666666667 139.7333333333334 156.3733333333333 138.6666666666668 153.8133333333334C136.7466666666667 147.2000000000001 145.7066666666667 142.72 151.8933333333334 140.8000000000001C165.7600000000001 136.5333333333334 179.2000000000001 143.7866666666668 182.4000000000001 155.0933333333334C185.6000000000001 165.3333333333334 179.2000000000001 172.5866666666667 176.4266666666668 175.36C157.4400000000001 196.2666666666667 144.2133333333334 214.8266666666667 150.6133333333334 235.7333333333334C153.1733333333334 243.6266666666667 158.2933333333334 252.1600000000001 165.9733333333334 257.92C181.9733333333334 269.6533333333334 199.4666666666668 271.7866666666667 215.8933333333334 266.6666666666667C237.4400000000001 260.9066666666667 247.6800000000001 246.6133333333334 261.1200000000001 235.7333333333334C268.5866666666668 257.4933333333334 279.0400000000001 279.04 294.6133333333335 297.1733333333334C308.6933333333335 313.6 327.4666666666668 325.5466666666667 349.2266666666668 326.4000000000001z" />
+    <glyph glyph-name="sync"
+      unicode="&#xF4E6;"
+      horiz-adv-x="512" d=" M256 64C185.3866666666667 64 128 121.3866666666667 128 192C128 213.3333333333334 133.3333333333333 234.0266666666667 142.9333333333333 251.7333333333334L111.7866666666667 282.88C95.1466666666667 256.64 85.3333333333333 225.4933333333334 85.3333333333333 192C85.3333333333333 97.7066666666667 161.7066666666667 21.3333333333334 256 21.3333333333334V-42.6666666666666L341.3333333333333 42.6666666666667L256 128M256 362.6666666666667V426.6666666666667L170.6666666666667 341.3333333333334L256 256V320C326.6133333333334 320 384 262.6133333333334 384 192C384 170.6666666666667 378.6666666666667 149.9733333333334 369.0666666666667 132.2666666666667L400.2133333333334 101.12C416.8533333333333 127.36 426.6666666666667 158.5066666666667 426.6666666666667 192C426.6666666666667 286.2933333333334 350.2933333333334 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="sync-alert"
+      unicode="&#xF4E7;"
+      horiz-adv-x="512" d=" M234.6666666666667 170.6666666666667H277.3333333333333V298.6666666666667H234.6666666666667M448 362.6666666666667H320V234.6666666666667L367.7866666666667 282.4533333333334C390.8266666666667 259.2000000000001 405.3333333333333 227.4133333333334 405.3333333333333 192C405.3333333333333 136.3200000000001 369.7066666666666 88.96 320 71.4666666666667V26.8800000000001C393.6 45.8666666666667 448 112.4266666666667 448 192.0000000000001C448 239.1466666666667 428.5866666666667 281.6 397.6533333333333 312.3200000000001M234.6666666666667 85.3333333333334H277.3333333333333V128H234.6666666666667M64 192C64 144.8533333333334 83.4133333333333 102.4 114.3466666666667 71.68L64 21.3333333333334H192V149.3333333333334L144.2133333333333 101.5466666666666C121.1733333333333 124.8 106.6666666666667 156.5866666666667 106.6666666666667 192C106.6666666666667 247.68 142.2933333333333 295.04 192 312.5333333333334V357.12C118.4 338.1333333333334 64 271.5733333333334 64 192z" />
+    <glyph glyph-name="sync-off"
+      unicode="&#xF4E8;"
+      horiz-adv-x="512" d=" M426.6666666666667 362.6666666666667H298.6666666666667V234.6666666666667L346.4533333333334 282.4533333333334C369.4933333333334 259.2000000000001 384 227.4133333333334 384 192C384 170.6666666666667 378.6666666666667 150.6133333333334 369.4933333333334 132.9066666666667L400.64 101.76C417.0666666666667 128 426.6666666666667 158.72 426.6666666666667 192C426.6666666666667 239.1466666666667 407.2533333333334 281.6 376.32 312.32L426.6666666666667 362.6666666666667M61.0133333333333 332.5866666666667L111.36 282.24C94.9333333333333 256 85.3333333333333 225.2800000000001 85.3333333333333 192C85.3333333333333 144.8533333333334 104.7466666666667 102.4 135.68 71.68L85.3333333333333 21.3333333333334H213.3333333333333V149.3333333333334L165.5466666666667 101.5466666666666C142.5066666666667 124.8 128 156.5866666666667 128 192C128 213.3333333333334 133.3333333333333 233.3866666666667 142.5066666666667 251.0933333333334L314.88 78.72C309.3333333333333 75.9466666666667 304.2133333333333 73.3866666666667 298.6666666666667 71.4666666666666V26.88C315.52 31.36 331.52 38.4 346.0266666666667 47.36L396.3733333333333 -2.9866666666667L423.4666666666666 24.1066666666667L88.32 359.68L61.0133333333333 332.5866666666667M213.3333333333333 312.5333333333334V357.12C196.2666666666667 352.64 180.2666666666667 345.6 165.76 336.64L196.9066666666667 305.4933333333334C202.6666666666667 308.0533333333334 207.5733333333333 310.6133333333334 213.3333333333333 312.5333333333334z" />
+    <glyph glyph-name="tab"
+      unicode="&#xF4E9;"
+      horiz-adv-x="512" d=" M448 384H64C40.5333333333333 384 21.3333333333333 364.8 21.3333333333333 341.3333333333334V42.6666666666667C21.3333333333333 19.2 40.5333333333333 0 64 0H448C471.4666666666667 0 490.6666666666666 19.2 490.6666666666666 42.6666666666667V341.3333333333334C490.6666666666666 364.8 471.4666666666667 384 448 384M448 42.6666666666667H64V341.3333333333334H277.3333333333333V256H448V42.6666666666667z" />
+    <glyph glyph-name="tab-minus"
+      unicode="&#xFB26;"
+      horiz-adv-x="512" d=" M64 384C40.5333333333333 384 21.3333333333333 364.8 21.3333333333333 341.3333333333334V42.6666666666667C21.3333333333333 19.2 40.5333333333333 0 64 0H448C471.4666666666667 0 490.6666666666666 19.2 490.6666666666666 42.6666666666667V341.3333333333334C490.6666666666666 364.8 471.4666666666667 384 448 384H64M64 341.3333333333334H277.3333333333333V256H448V42.6666666666667H64V341.3333333333334M149.3333333333333 170.6666666666667V128H320V170.6666666666667H149.3333333333333z" />
+    <glyph glyph-name="tab-plus"
+      unicode="&#xF75B;"
+      horiz-adv-x="512" d=" M64 384C40.5333333333333 384 21.3333333333333 364.8 21.3333333333333 341.3333333333334V42.6666666666667C21.3333333333333 19.2 40.5333333333333 0 64 0H448C471.4666666666667 0 490.6666666666666 19.2 490.6666666666666 42.6666666666667V341.3333333333334C490.6666666666666 364.8 471.4666666666667 384 448 384H64M64 341.3333333333334H277.3333333333333V256H448V42.6666666666667H64V341.3333333333334M213.3333333333333 234.6666666666667V170.6666666666667H149.3333333333333V128H213.3333333333333V64H256V128H320V170.6666666666667H256V234.6666666666667H213.3333333333333z" />
+    <glyph glyph-name="tab-remove"
+      unicode="&#xFB27;"
+      horiz-adv-x="512" d=" M159.1466666666667 194.56L189.44 224.8533333333333L234.6666666666667 179.4133333333334L279.8933333333333 224.8533333333333L310.1866666666667 194.56L264.7466666666667 149.3333333333334L310.1866666666666 104.1066666666667L279.8933333333333 73.8133333333334L234.6666666666667 119.2533333333333L189.44 73.8133333333334L159.1466666666667 104.1066666666667L204.5866666666667 149.3333333333334L159.1466666666667 194.56M64 384H448C471.4666666666667 384 490.6666666666666 364.8 490.6666666666666 341.3333333333334V42.6666666666667C490.6666666666666 19.2 471.4666666666667 0 448 0H64C40.5333333333333 0 21.3333333333333 19.2 21.3333333333333 42.6666666666667V341.3333333333334C21.3333333333333 364.8 40.5333333333333 384 64 384M64 341.3333333333334V42.6666666666667H448V256H277.3333333333333V341.3333333333334H64z" />
+    <glyph glyph-name="tab-unselected"
+      unicode="&#xF4EA;"
+      horiz-adv-x="512" d=" M21.3333333333333 256H64V298.6666666666667H21.3333333333333V256M21.3333333333333 170.6666666666667H64V213.3333333333334H21.3333333333333V170.6666666666667M21.3333333333333 341.3333333333334H64V384C40.5333333333333 384 21.3333333333333 364.8 21.3333333333333 341.3333333333334M192 0H234.6666666666667V42.6666666666667H192V0M21.3333333333333 85.3333333333334H64V128H21.3333333333333V85.3333333333334M64 0V42.6666666666667H21.3333333333333C21.3333333333333 19.2 40.5333333333333 0 64 0M448 384H277.3333333333333V256H490.6666666666666V341.3333333333334C490.6666666666666 364.8 471.4666666666667 384 448 384M448 85.3333333333334H490.6666666666666V128H448V85.3333333333334M192 341.3333333333334H234.6666666666667V384H192V341.3333333333334M106.6666666666667 0H149.3333333333333V42.6666666666667H106.6666666666667V0M106.6666666666667 341.3333333333334H149.3333333333333V384H106.6666666666667V341.3333333333334M448 0C471.4666666666667 0 490.6666666666666 19.2 490.6666666666666 42.6666666666667H448V0M448 170.6666666666667H490.6666666666666V213.3333333333334H448V170.6666666666667M277.3333333333333 0H320V42.6666666666667H277.3333333333333V0M362.6666666666667 0H405.3333333333333V42.6666666666667H362.6666666666667V0z" />
+    <glyph glyph-name="table"
+      unicode="&#xF4EB;"
+      horiz-adv-x="512" d=" M106.6666666666667 362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320V64C448 40.5333333333333 428.8 21.3333333333334 405.3333333333333 21.3333333333334H106.6666666666667C83.2 21.3333333333334 64 40.5333333333333 64 64V320C64 343.4666666666667 83.2 362.6666666666667 106.6666666666667 362.6666666666667M106.6666666666667 277.3333333333334V192H234.6666666666667V277.3333333333334H106.6666666666667M277.3333333333333 277.3333333333334V192H405.3333333333333V277.3333333333334H277.3333333333333M106.6666666666667 149.3333333333334V64H234.6666666666667V149.3333333333334H106.6666666666667M277.3333333333333 149.3333333333334V64H405.3333333333333V149.3333333333334H277.3333333333333z" />
+    <glyph glyph-name="table-border"
+      unicode="&#xFA17;"
+      horiz-adv-x="512" d=" M448 42.6666666666667C448 30.9333333333333 438.4 21.3333333333334 426.6666666666667 21.3333333333334H405.3333333333333V64H448V42.6666666666667M320 21.3333333333334V64H362.6666666666667V21.3333333333334H320M234.6666666666667 21.3333333333334V64H277.3333333333333V21.3333333333334H234.6666666666667M149.3333333333333 21.3333333333334V64H192V21.3333333333334H149.3333333333333M85.3333333333333 21.3333333333334C73.6 21.3333333333334 64 30.9333333333333 64 42.6666666666667V64H106.6666666666667V21.3333333333334H85.3333333333333M405.3333333333333 362.6666666666667H106.6666666666667C83.2 362.6666666666667 64 343.4666666666667 64 320V277.3333333333334H448V320C448 343.68 429.0133333333333 362.6666666666667 405.3333333333333 362.6666666666667M106.6666666666667 149.3333333333334H64V106.6666666666667H106.6666666666667V149.3333333333334M106.6666666666667 234.6666666666667H64V192H106.6666666666667V234.6666666666667M448 234.6666666666667H405.3333333333333V192H448V234.6666666666667M448 149.3333333333334H405.3333333333333V106.6666666666667H448V149.3333333333334M234.6666666666667 106.6666666666667V149.3333333333334H277.3333333333333V106.6666666666667H234.6666666666667M234.6666666666667 192V234.6666666666667H277.3333333333333V192H234.6666666666667" />
+    <glyph glyph-name="table-column"
+      unicode="&#xF834;"
+      horiz-adv-x="512" d=" M170.6666666666667 405.3333333333333H341.3333333333333C364.8 405.3333333333333 384 386.1333333333334 384 362.6666666666667V21.3333333333334C384 -2.1333333333333 364.8 -21.3333333333333 341.3333333333333 -21.3333333333333H170.6666666666667C147.2 -21.3333333333333 128 -2.1333333333333 128 21.3333333333334V362.6666666666667C128 386.1333333333334 147.2 405.3333333333333 170.6666666666667 405.3333333333333M170.6666666666667 234.6666666666667V149.3333333333334H341.3333333333333V234.6666666666667H170.6666666666667M170.6666666666667 106.6666666666667V21.3333333333334H341.3333333333333V106.6666666666667H170.6666666666667M170.6666666666667 362.6666666666667V277.3333333333334H341.3333333333333V362.6666666666667H170.6666666666667z" />
+    <glyph glyph-name="table-column-plus-after"
+      unicode="&#xF4EC;"
+      horiz-adv-x="512" d=" M234.6666666666667 405.3333333333333C258.1333333333334 405.3333333333333 277.3333333333333 386.1333333333334 277.3333333333333 362.6666666666667V21.3333333333334C277.3333333333333 -2.1333333333333 258.1333333333334 -21.3333333333333 234.6666666666667 -21.3333333333333H42.6666666666667V405.3333333333333H234.6666666666667M85.3333333333333 234.6666666666667V149.3333333333334H234.6666666666667V234.6666666666667H85.3333333333333M85.3333333333333 106.6666666666667V21.3333333333334H234.6666666666667V106.6666666666667H85.3333333333333M85.3333333333333 362.6666666666667V277.3333333333334H234.6666666666667V362.6666666666667H85.3333333333333M320 213.3333333333334H384V277.3333333333334H426.6666666666667V213.3333333333334H490.6666666666666V170.6666666666667H426.6666666666667V106.6666666666667H384V170.6666666666667H320V213.3333333333334z" />
+    <glyph glyph-name="table-column-plus-before"
+      unicode="&#xF4ED;"
+      horiz-adv-x="512" d=" M277.3333333333333 405.3333333333333C253.8666666666667 405.3333333333333 234.6666666666667 386.1333333333334 234.6666666666667 362.6666666666667V21.3333333333334C234.6666666666667 -2.1333333333333 253.8666666666667 -21.3333333333333 277.3333333333333 -21.3333333333333H469.3333333333333V405.3333333333333H277.3333333333333M426.6666666666667 234.6666666666667V149.3333333333334H277.3333333333333V234.6666666666667H426.6666666666667M426.6666666666667 106.6666666666667V21.3333333333334H277.3333333333333V106.6666666666667H426.6666666666667M426.6666666666667 362.6666666666667V277.3333333333334H277.3333333333333V362.6666666666667H426.6666666666667M192 213.3333333333334H128V277.3333333333334H85.3333333333333V213.3333333333334H21.3333333333333V170.6666666666667H85.3333333333333V106.6666666666667H128V170.6666666666667H192V213.3333333333334z" />
+    <glyph glyph-name="table-column-remove"
+      unicode="&#xF4EE;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H234.6666666666667C258.1333333333334 405.3333333333333 277.3333333333333 386.1333333333334 277.3333333333333 362.6666666666667V21.3333333333334C277.3333333333333 -2.1333333333333 258.1333333333334 -21.3333333333333 234.6666666666667 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M85.3333333333333 234.6666666666667V149.3333333333334H234.6666666666667V234.6666666666667H85.3333333333333M85.3333333333333 106.6666666666667V21.3333333333334H234.6666666666667V106.6666666666667H85.3333333333333M85.3333333333333 362.6666666666667V277.3333333333334H234.6666666666667V362.6666666666667H85.3333333333333M375.2533333333334 192L320 247.2533333333334L350.08 277.3333333333334L405.3333333333333 222.08L460.5866666666666 277.3333333333334L490.6666666666666 247.2533333333334L435.4133333333333 192L490.6666666666666 136.7466666666667L460.5866666666666 106.6666666666667L405.3333333333333 161.92L350.08 106.6666666666667L320 136.7466666666667L375.2533333333334 192z" />
+    <glyph glyph-name="table-column-width"
+      unicode="&#xF4EF;"
+      horiz-adv-x="512" d=" M106.6666666666667 277.3333333333334H405.3333333333333C428.8 277.3333333333334 448 258.1333333333334 448 234.6666666666667V21.3333333333334C448 -2.1333333333333 428.8 -21.3333333333333 405.3333333333333 -21.3333333333333H106.6666666666667C83.2 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V234.6666666666667C64 258.1333333333334 83.2 277.3333333333334 106.6666666666667 277.3333333333334M106.6666666666667 192V128H234.6666666666667V192H106.6666666666667M277.3333333333333 192V128H405.3333333333333V192H277.3333333333333M106.6666666666667 85.3333333333334V21.3333333333334H234.6666666666667V85.3333333333334H106.6666666666667M277.3333333333333 85.3333333333334V21.3333333333334H405.3333333333333V85.3333333333334H277.3333333333333M234.6666666666667 405.3333333333333H448V320H405.3333333333333V362.6666666666667H277.3333333333333V320H234.6666666666667V405.3333333333333z" />
+    <glyph glyph-name="table-edit"
+      unicode="&#xF4F0;"
+      horiz-adv-x="512" d=" M462.9333333333333 163.2000000000001L441.6 141.8666666666667L397.8666666666666 185.6L419.2 206.9333333333333C423.68 211.6266666666667 431.1466666666666 211.6266666666667 435.6266666666666 206.9333333333333L462.9333333333333 179.6266666666667C467.6266666666666 175.1466666666667 467.6266666666666 167.68 462.9333333333333 163.2000000000001M256 43.9466666666667L385.4933333333334 173.2266666666666L429.2266666666667 129.4933333333333L299.9466666666667 0H256V43.9466666666667M85.3333333333333 405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V273.7066666666667L344.9600000000001 192H256V103.04L216.96 64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M85.3333333333333 320V234.6666666666667H213.3333333333333V320H85.3333333333333M256 320V234.6666666666667H384V320H256M85.3333333333333 192V106.6666666666667H213.3333333333333V192H85.3333333333333z" />
+    <glyph glyph-name="table-large"
+      unicode="&#xF4F1;"
+      horiz-adv-x="512" d=" M85.3333333333333 384H426.6666666666667C450.1333333333334 384 469.3333333333333 364.8 469.3333333333333 341.3333333333334V21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H85.3333333333333C61.8666666666667 -21.3333333333333 42.6666666666667 -2.1333333333333 42.6666666666667 21.3333333333334V341.3333333333334C42.6666666666667 364.8 61.8666666666667 384 85.3333333333333 384M85.3333333333333 298.6666666666667V234.6666666666667H170.6666666666667V298.6666666666667H85.3333333333333M213.3333333333333 298.6666666666667V234.6666666666667H298.6666666666667V298.6666666666667H213.3333333333333M426.6666666666667 234.6666666666667V298.6666666666667H341.3333333333333V234.6666666666667H426.6666666666667M85.3333333333333 192V128H170.6666666666667V192H85.3333333333333M85.3333333333333 21.3333333333334H170.6666666666667V85.3333333333334H85.3333333333333V21.3333333333334M213.3333333333333 192V128H298.6666666666667V192H213.3333333333333M213.3333333333333 21.3333333333334H298.6666666666667V85.3333333333334H213.3333333333333V21.3333333333334M426.6666666666667 21.3333333333334V85.3333333333334H341.3333333333333V21.3333333333334H426.6666666666667M426.6666666666667 192H341.3333333333333V128H426.6666666666667V192z" />
+    <glyph glyph-name="table-merge-cells"
+      unicode="&#xF9A5;"
+      horiz-adv-x="512" d=" M106.6666666666667 234.6666666666667H64V320C64 343.4666666666667 83.2 362.6666666666667 106.6666666666667 362.6666666666667H234.6666666666667V320H106.6666666666667V234.6666666666667M405.3333333333333 64H277.3333333333333V21.3333333333334H405.3333333333333C428.8 21.3333333333334 448 40.5333333333333 448 64V149.3333333333334H405.3333333333333V64M106.6666666666667 64V149.3333333333334H64V64C64 40.5333333333333 83.2 21.3333333333334 106.6666666666667 21.3333333333334H234.6666666666667V64H106.6666666666667M405.3333333333333 362.6666666666667H277.3333333333333V320H405.3333333333333V234.6666666666667H448V320C448 343.4666666666667 428.8 362.6666666666667 405.3333333333333 362.6666666666667M170.6666666666667 170.6666666666667V128L234.6666666666667 192L170.6666666666667 256V213.3333333333334H64V170.6666666666667H170.6666666666667M341.3333333333333 213.3333333333334V256L277.3333333333333 192L341.3333333333333 128V170.6666666666667H448V213.3333333333334H341.3333333333333z" />
+    <glyph glyph-name="table-of-contents"
+      unicode="&#xF835;"
+      horiz-adv-x="512" d=" M64 256H362.6666666666667V298.6666666666667H64V256M64 170.6666666666667H362.6666666666667V213.3333333333334H64V170.6666666666667M64 85.3333333333334H362.6666666666667V128H64V85.3333333333334M405.3333333333333 85.3333333333334H448V128H405.3333333333333V85.3333333333334M405.3333333333333 298.6666666666667V256H448V298.6666666666667H405.3333333333333M405.3333333333333 170.6666666666667H448V213.3333333333334H405.3333333333333V170.6666666666667z" />
+    <glyph glyph-name="table-plus"
+      unicode="&#xFA74;"
+      horiz-adv-x="512" d=" M384 149.3333333333334H426.6666666666667V85.3333333333334H490.6666666666666V42.6666666666667H426.6666666666667V-21.3333333333333H384V42.6666666666667H320V85.3333333333334H384V149.3333333333334M85.3333333333333 384H384C407.4666666666667 384 426.6666666666667 364.8 426.6666666666667 341.3333333333334V190.2933333333334C393.6 195.84 360.9600000000001 188.16 334.5066666666667 170.6666666666667H256V85.3333333333334H279.04C276.6933333333334 70.8266666666667 276.6933333333334 56.5333333333333 279.04 42.6666666666667H85.3333333333333C61.8666666666667 42.6666666666667 42.6666666666667 61.8666666666667 42.6666666666667 85.3333333333334V341.3333333333334C42.6666666666667 364.8 61.8666666666667 384 85.3333333333333 384M85.3333333333333 298.6666666666667V213.3333333333334H213.3333333333333V298.6666666666667H85.3333333333333M256 298.6666666666667V213.3333333333334H384V298.6666666666667H256M85.3333333333333 170.6666666666667V85.3333333333334H213.3333333333333V170.6666666666667H85.3333333333333z" />
+    <glyph glyph-name="table-remove"
+      unicode="&#xFA75;"
+      horiz-adv-x="512" d=" M329.8133333333334 109.2266666666667L360.1066666666667 139.52L405.3333333333333 94.08L450.56 139.52L480.8533333333333 109.2266666666667L435.4133333333333 64L480.8533333333333 18.7733333333333L450.5599999999999 -11.52L405.3333333333333 33.92L360.1066666666667 -11.52L329.8133333333333 18.7733333333334L375.2533333333334 64L329.8133333333334 109.2266666666667M85.3333333333333 384H384C407.4666666666667 384 426.6666666666667 364.8 426.6666666666667 341.3333333333334V190.2933333333334C393.6 195.84 360.9600000000001 188.16 334.5066666666667 170.6666666666667H256V85.3333333333334H279.04C276.6933333333334 70.8266666666667 276.6933333333334 56.5333333333333 279.04 42.6666666666667H85.3333333333333C61.8666666666667 42.6666666666667 42.6666666666667 61.8666666666667 42.6666666666667 85.3333333333334V341.3333333333334C42.6666666666667 364.8 61.8666666666667 384 85.3333333333333 384M85.3333333333333 298.6666666666667V213.3333333333334H213.3333333333333V298.6666666666667H85.3333333333333M256 298.6666666666667V213.3333333333334H384V298.6666666666667H256M85.3333333333333 170.6666666666667V85.3333333333334H213.3333333333333V170.6666666666667H85.3333333333333z" />
+    <glyph glyph-name="table-row"
+      unicode="&#xF836;"
+      horiz-adv-x="512" d=" M469.3333333333333 149.3333333333334C469.3333333333333 125.8666666666667 450.1333333333334 106.6666666666667 426.6666666666667 106.6666666666667H85.3333333333333C61.8666666666667 106.6666666666667 42.6666666666667 125.8666666666667 42.6666666666667 149.3333333333334V234.6666666666667C42.6666666666667 258.1333333333334 61.8666666666667 277.3333333333334 85.3333333333333 277.3333333333334H426.6666666666667C450.1333333333334 277.3333333333334 469.3333333333333 258.1333333333334 469.3333333333333 234.6666666666667V149.3333333333334M85.3333333333333 149.3333333333334H170.6666666666667V234.6666666666667H85.3333333333333V149.3333333333334M213.3333333333333 149.3333333333334H298.6666666666667V234.6666666666667H213.3333333333333V149.3333333333334M341.3333333333333 149.3333333333334H426.6666666666667V234.6666666666667H341.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="table-row-height"
+      unicode="&#xF4F2;"
+      horiz-adv-x="512" d=" M64 341.3333333333334H320C343.4666666666667 341.3333333333334 362.6666666666667 322.1333333333334 362.6666666666667 298.6666666666667V85.3333333333334C362.6666666666667 61.8666666666667 343.4666666666667 42.6666666666667 320 42.6666666666667H64C40.5333333333333 42.6666666666667 21.3333333333333 61.8666666666667 21.3333333333333 85.3333333333334V298.6666666666667C21.3333333333333 322.1333333333334 40.5333333333333 341.3333333333334 64 341.3333333333334M64 256V192H170.6666666666667V256H64M213.3333333333333 256V192H320V256H213.3333333333333M64 149.3333333333334V85.3333333333334H170.6666666666667V149.3333333333334H64M213.3333333333333 149.3333333333334V85.3333333333334H320V149.3333333333334H213.3333333333333M490.6666666666666 149.3333333333334V298.6666666666667H405.3333333333333V256H448V192H405.3333333333333V149.3333333333334H490.6666666666666z" />
+    <glyph glyph-name="table-row-plus-after"
+      unicode="&#xF4F3;"
+      horiz-adv-x="512" d=" M469.3333333333333 234.6666666666667C469.3333333333333 211.2 450.1333333333334 192 426.6666666666667 192H85.3333333333333C61.8666666666667 192 42.6666666666667 211.2 42.6666666666667 234.6666666666667V384H85.3333333333333V341.3333333333334H170.6666666666667V384H213.3333333333333V341.3333333333334H298.6666666666667V384H341.3333333333333V341.3333333333334H426.6666666666667V384H469.3333333333333V234.6666666666667M85.3333333333333 234.6666666666667H170.6666666666667V298.6666666666667H85.3333333333333V234.6666666666667M213.3333333333333 234.6666666666667H298.6666666666667V298.6666666666667H213.3333333333333V234.6666666666667M426.6666666666667 234.6666666666667V298.6666666666667H341.3333333333333V234.6666666666667H426.6666666666667M234.6666666666667 149.3333333333334H277.3333333333333V85.3333333333334H341.3333333333333V42.6666666666667H277.3333333333333V-21.3333333333333H234.6666666666667V42.6666666666667H170.6666666666667V85.3333333333334H234.6666666666667V149.3333333333334z" />
+    <glyph glyph-name="table-row-plus-before"
+      unicode="&#xF4F4;"
+      horiz-adv-x="512" d=" M469.3333333333333 149.3333333333334C469.3333333333333 172.8 450.1333333333334 192 426.6666666666667 192H85.3333333333333C61.8666666666667 192 42.6666666666667 172.8 42.6666666666667 149.3333333333334V0H85.3333333333333V42.6666666666667H170.6666666666667V0H213.3333333333333V42.6666666666667H298.6666666666667V0H341.3333333333333V42.6666666666667H426.6666666666667V0H469.3333333333333V149.3333333333334M85.3333333333333 149.3333333333334H170.6666666666667V85.3333333333334H85.3333333333333V149.3333333333334M213.3333333333333 149.3333333333334H298.6666666666667V85.3333333333334H213.3333333333333V149.3333333333334M426.6666666666667 149.3333333333334V85.3333333333334H341.3333333333333V149.3333333333334H426.6666666666667M234.6666666666667 234.6666666666667H277.3333333333333V298.6666666666667H341.3333333333333V341.3333333333334H277.3333333333333V405.3333333333333H234.6666666666667V341.3333333333334H170.6666666666667V298.6666666666667H234.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="table-row-remove"
+      unicode="&#xF4F5;"
+      horiz-adv-x="512" d=" M200.7466666666667 170.6666666666667L256 115.4133333333334L311.2533333333334 170.6666666666667L341.3333333333333 140.5866666666667L286.08 85.3333333333334L341.3333333333333 30.08L311.2533333333334 0L256 55.2533333333333L200.7466666666667 0L170.6666666666667 30.08L225.92 85.3333333333334L170.6666666666667 140.5866666666667L200.7466666666667 170.6666666666667M469.3333333333333 256C469.3333333333333 232.5333333333334 450.1333333333334 213.3333333333334 426.6666666666667 213.3333333333334H85.3333333333333C61.8666666666667 213.3333333333334 42.6666666666667 232.5333333333334 42.6666666666667 256V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V256M85.3333333333333 256H170.6666666666667V320H85.3333333333333V256M213.3333333333333 256H298.6666666666667V320H213.3333333333333V256M341.3333333333333 256H426.6666666666667V320H341.3333333333333V256z" />
+    <glyph glyph-name="table-search"
+      unicode="&#xF90E;"
+      horiz-adv-x="512" d=" M411.7333333333334 66.3466666666667C439.8933333333333 111.1466666666667 426.6666666666667 170.6666666666667 381.6533333333333 198.8266666666667C336.8533333333334 226.9866666666667 277.3333333333333 213.3333333333334 249.1733333333333 168.7466666666667C221.0133333333333 123.7333333333334 234.6666666666667 64 279.2533333333334 36.2666666666667C310.6133333333334 16.64 350.2933333333334 16.64 381.6533333333333 36.2666666666667L448 -29.6533333333333L477.6533333333333 0L411.7333333333334 66.3466666666667M369.0666666666667 79.5733333333334C348.16 58.6666666666667 314.4533333333333 58.8800000000001 293.5466666666667 79.5733333333334C272.8533333333334 100.48 272.8533333333334 134.1866666666667 293.76 155.0933333333334C314.4533333333334 175.7866666666667 348.16 175.7866666666667 369.0666666666667 155.0933333333334C389.5466666666667 133.9733333333334 389.3333333333333 100.2666666666667 368.4266666666666 79.5733333333334H369.0666666666667M405.3333333333333 362.6666666666667H106.6666666666667C83.2 362.6666666666667 64 343.4666666666667 64 320V64C64 40.5333333333333 83.2 21.3333333333334 106.6666666666667 21.3333333333334H230.6133333333333C218.6666666666666 33.7066666666667 209.0666666666666 48.2133333333334 202.6666666666666 64H106.6666666666667V149.3333333333334H195.84C199.2533333333333 164.48 205.0133333333333 178.9866666666667 213.3333333333333 192H106.6666666666667V277.3333333333334H234.6666666666667V217.3866666666667C247.04 229.3333333333334 261.5466666666666 238.9333333333334 277.3333333333333 245.3333333333334V277.3333333333334H405.3333333333333V234.6666666666667C413.8666666666666 229.3333333333334 421.76 222.9333333333333 428.8 215.8933333333333C436.0533333333334 208.64 442.4533333333334 200.7466666666667 448 192V320C448 343.4666666666667 428.8 362.6666666666667 405.3333333333333 362.6666666666667z" />
+    <glyph glyph-name="table-settings"
+      unicode="&#xF837;"
+      horiz-adv-x="512" d=" M149.3333333333333 -21.3333333333333H192V-64H149.3333333333333V-21.3333333333333M234.6666666666667 -21.3333333333333H277.3333333333333V-64H234.6666666666667V-21.3333333333333M320 -21.3333333333333H362.6666666666667V-64H320V-21.3333333333333M106.6666666666667 362.6666666666667H405.3333333333333C428.8 362.6666666666667 448 343.4666666666667 448 320V64C448 40.5333333333333 428.8 21.3333333333334 405.3333333333333 21.3333333333334H106.6666666666667C83.2 21.3333333333334 64 40.5333333333333 64 64V320C64 343.4666666666667 83.2 362.6666666666667 106.6666666666667 362.6666666666667M106.6666666666667 277.3333333333334V192H234.6666666666667V277.3333333333334H106.6666666666667M277.3333333333333 277.3333333333334V192H405.3333333333333V277.3333333333334H277.3333333333333M106.6666666666667 149.3333333333334V64H234.6666666666667V149.3333333333334H106.6666666666667M277.3333333333333 149.3333333333334V64H405.3333333333333V149.3333333333334H277.3333333333333z" />
+    <glyph glyph-name="tablet"
+      unicode="&#xF4F6;"
+      horiz-adv-x="512" d=" M405.3333333333333 64H106.6666666666667V320H405.3333333333333M448 362.6666666666667H64C40.32 362.6666666666667 21.3333333333333 343.68 21.3333333333333 320V64C21.3333333333333 40.5333333333333 40.5333333333333 21.3333333333334 64 21.3333333333334H448C471.4666666666667 21.3333333333334 490.6666666666666 40.5333333333333 490.6666666666666 64V320C490.6666666666666 343.68 471.4666666666667 362.6666666666667 448 362.6666666666667z" />
+    <glyph glyph-name="tablet-android"
+      unicode="&#xF4F7;"
+      horiz-adv-x="512" d=" M410.6666666666667 42.6666666666667H101.3333333333333V384H410.6666666666667M298.6666666666667 -21.3333333333333H213.3333333333333V0H298.6666666666667M384 448H128C92.5866666666667 448 64 419.4133333333334 64 384V0C64 -35.4133333333333 92.5866666666667 -64 128 -64H384C419.4133333333333 -64 448 -35.4133333333333 448 0V384C448 419.4133333333334 419.4133333333333 448 384 448z" />
+    <glyph glyph-name="tablet-cellphone"
+      unicode="&#xF9A6;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V277.3333333333334H384V320H106.6666666666667V64H298.6666666666667V21.3333333333334H64C40.5333333333333 21.3333333333334 21.3333333333333 40.5333333333333 21.3333333333333 64V320C21.3333333333333 343.4666666666667 40.5333333333333 362.6666666666667 64 362.6666666666667M362.6666666666667 234.6666666666667H490.6666666666666C502.4 234.6666666666667 512 225.0666666666667 512 213.3333333333334V0C512 -11.7333333333333 502.4 -21.3333333333333 490.6666666666666 -21.3333333333333H362.6666666666667C350.9333333333333 -21.3333333333333 341.3333333333333 -11.7333333333333 341.3333333333333 0V213.3333333333334C341.3333333333333 225.0666666666667 350.9333333333333 234.6666666666667 362.6666666666667 234.6666666666667M384 192V42.6666666666667H469.3333333333333V192H384z" />
+    <glyph glyph-name="tablet-ipad"
+      unicode="&#xF4F8;"
+      horiz-adv-x="512" d=" M405.3333333333333 42.6666666666667H85.3333333333333V384H405.3333333333333M245.3333333333333 -42.6666666666666C227.6266666666667 -42.6666666666666 213.3333333333333 -28.3733333333333 213.3333333333333 -10.6666666666666S227.6266666666667 21.3333333333334 245.3333333333333 21.3333333333334S277.3333333333333 7.04 277.3333333333333 -10.6666666666666S263.04 -42.6666666666666 245.3333333333333 -42.6666666666666M394.6666666666667 448H96C66.56 448 42.6666666666667 424.1066666666667 42.6666666666667 394.6666666666667V-10.6666666666666C42.6666666666667 -40.1066666666666 66.56 -64 96 -64H394.6666666666667C424.1066666666667 -64 448 -40.1066666666666 448 -10.6666666666666V394.6666666666667C448 424.1066666666667 424.1066666666667 448 394.6666666666667 448z" />
+    <glyph glyph-name="taco"
+      unicode="&#xF761;"
+      horiz-adv-x="512" d=" M405.3333333333333 64H106.6666666666667C59.52 64 21.3333333333333 102.1866666666667 21.3333333333333 149.3333333333334C21.3333333333333 243.6266666666667 97.7066666666667 320 192 320C214.6133333333334 320 236.16 315.52 256 307.6266666666667C275.84 315.52 297.3866666666667 320 320 320C414.2933333333334 320 490.6666666666666 243.6266666666667 490.6666666666666 149.3333333333334C490.6666666666666 102.1866666666667 452.48 64 405.3333333333333 64M64 149.3333333333334C64 125.8666666666667 83.2 106.6666666666667 106.6666666666667 106.6666666666667S149.3333333333333 125.8666666666667 149.3333333333333 149.3333333333334C149.3333333333333 199.8933333333334 171.3066666666667 245.3333333333334 206.2933333333333 276.48L192 277.3333333333334C121.3866666666667 277.3333333333334 64 219.9466666666667 64 149.3333333333334M405.3333333333333 106.6666666666667C428.8 106.6666666666667 448 125.8666666666667 448 149.3333333333334C448 219.9466666666667 390.6133333333333 277.3333333333334 320 277.3333333333334S192 219.9466666666667 192 149.3333333333334C192 133.76 187.9466666666667 119.2533333333333 180.48 106.6666666666667H405.3333333333333z" />
+    <glyph glyph-name="tag"
+      unicode="&#xF4F9;"
+      horiz-adv-x="512" d=" M117.3333333333333 298.6666666666667C99.6266666666667 298.6666666666667 85.3333333333333 312.9600000000001 85.3333333333333 330.6666666666667S99.6266666666667 362.6666666666667 117.3333333333333 362.6666666666667S149.3333333333333 348.3733333333334 149.3333333333333 330.6666666666667S135.04 298.6666666666667 117.3333333333333 298.6666666666667M456.7466666666667 200.96L264.7466666666667 392.96C257.0666666666667 400.64 246.4 405.3333333333333 234.6666666666667 405.3333333333333H85.3333333333333C61.6533333333333 405.3333333333333 42.6666666666667 386.3466666666667 42.6666666666667 362.6666666666667V213.3333333333334C42.6666666666667 201.6 47.36 190.9333333333333 55.2533333333333 183.2533333333333L247.04 -8.7466666666667C254.9333333333333 -16.4266666666666 265.6 -21.3333333333333 277.3333333333333 -21.3333333333333C289.0666666666667 -21.3333333333333 299.7333333333334 -16.4266666666666 307.4133333333333 -8.7466666666667L456.7466666666667 140.5866666666667C464.64 148.2666666666667 469.3333333333333 158.9333333333333 469.3333333333333 170.6666666666667C469.3333333333333 182.6133333333334 464.4266666666666 193.28 456.7466666666667 200.96z" />
+    <glyph glyph-name="tag-faces"
+      unicode="&#xF4FA;"
+      horiz-adv-x="512" d=" M320 64C249.1733333333333 64 192 121.3866666666667 192 192C192 262.8266666666667 249.1733333333333 320 320 320C390.6133333333333 320 448 262.6133333333334 448 192S390.6133333333333 64 320 64M85.3333333333333 170.6666666666667C73.6 170.6666666666667 64 180.2666666666667 64 192S73.6 213.3333333333334 85.3333333333333 213.3333333333334S106.6666666666667 203.7333333333334 106.6666666666667 192S97.0666666666667 170.6666666666667 85.3333333333333 170.6666666666667M469.3333333333333 384H162.7733333333333C148.6933333333333 384 136.1066666666667 377.1733333333334 128 366.7200000000001L0 192L128 17.4933333333333C136.1066666666667 6.8266666666667 148.6933333333333 0 162.7733333333333 0H469.3333333333333C492.8 0 512 19.2 512 42.6666666666667V341.3333333333334C512 365.0133333333333 492.8 384 469.3333333333333 384M277.3333333333333 213.3333333333334C289.0666666666667 213.3333333333334 298.6666666666667 222.9333333333333 298.6666666666667 234.6666666666667S289.0666666666667 256 277.3333333333333 256S256 246.4000000000001 256 234.6666666666667S265.6 213.3333333333334 277.3333333333333 213.3333333333334M320 106.6666666666667C359.68 106.6666666666667 391.4666666666667 133.9733333333334 401.0666666666667 170.6666666666667H238.9333333333334C248.5333333333334 133.9733333333334 280.32 106.6666666666667 320 106.6666666666667M362.6666666666667 213.3333333333334C374.4 213.3333333333334 384 222.9333333333333 384 234.6666666666667S374.4 256 362.6666666666667 256S341.3333333333333 246.4000000000001 341.3333333333333 234.6666666666667S350.9333333333333 213.3333333333334 362.6666666666667 213.3333333333334z" />
+    <glyph glyph-name="tag-heart"
+      unicode="&#xF68A;"
+      horiz-adv-x="512" d=" M456.7466666666667 200.96L264.7466666666667 392.96C257.0666666666667 400.64 246.4 405.3333333333333 234.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V213.3333333333334C42.6666666666667 201.6 47.36 190.9333333333333 55.2533333333333 183.04L247.2533333333334 -8.96C254.9333333333333 -16.64 265.6 -21.3333333333333 277.3333333333333 -21.3333333333333C289.0666666666667 -21.3333333333333 299.7333333333334 -16.64 307.4133333333333 -8.7466666666667L456.7466666666667 140.5866666666667C464.64 148.2666666666667 469.3333333333333 158.9333333333333 469.3333333333333 170.6666666666667C469.3333333333333 182.4 464.4266666666666 193.28 456.7466666666667 200.96M117.3333333333333 298.6666666666667C99.6266666666667 298.6666666666667 85.3333333333333 312.9600000000001 85.3333333333333 330.6666666666667S99.6266666666667 362.6666666666667 117.3333333333333 362.6666666666667S149.3333333333333 348.3733333333334 149.3333333333333 330.6666666666667S135.04 298.6666666666667 117.3333333333333 298.6666666666667M368.4266666666666 122.24L277.3333333333333 31.1466666666667L186.24 122.24C176.64 132.0533333333334 170.6666666666667 145.28 170.6666666666667 160C170.6666666666667 189.44 194.56 213.3333333333334 224 213.3333333333334C238.72 213.3333333333334 252.16 207.36 261.76 197.5466666666667L277.3333333333333 182.1866666666667L292.9066666666667 197.76C302.5066666666667 207.36 315.9466666666667 213.3333333333334 330.6666666666667 213.3333333333334C360.1066666666667 213.3333333333334 384 189.44 384 160C384 145.28 378.0266666666667 131.84 368.4266666666666 122.24z" />
+    <glyph glyph-name="tag-heart-outline"
+      unicode="&#xFBAB;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V213.3333333333334C42.6666666666667 201.6 47.36 190.9333333333333 55.2533333333333 183.04L247.2533333333334 -8.96C254.9333333333333 -16.64 265.6 -21.3333333333333 277.3333333333333 -21.3333333333333C289.0666666666667 -21.3333333333333 299.7333333333334 -16.64 307.4133333333333 -8.7466666666667L456.7466666666667 140.5866666666667C464.64 148.2666666666667 469.3333333333333 158.9333333333333 469.3333333333333 170.6666666666667C469.3333333333333 182.4 464.4266666666666 193.28 456.7466666666667 200.96L264.7466666666667 392.96C257.0666666666667 400.64 246.4 405.3333333333333 234.6666666666667 405.3333333333333H85.3333333333333M234.6666666666667 362.6666666666667L426.6666666666667 170.6666666666667L277.3333333333333 21.3333333333334L85.3333333333333 213.3333333333334V362.6666666666667H234.6666666666667M138.6666666666667 341.3333333333334C120.96 341.3333333333334 106.6666666666667 327.04 106.6666666666667 309.3333333333334S120.96 277.3333333333334 138.6666666666667 277.3333333333334S170.6666666666667 291.6266666666667 170.6666666666667 309.3333333333334S156.3733333333333 341.3333333333334 138.6666666666667 341.3333333333334M233.6 224C209.4933333333334 224 189.8666666666666 204.3733333333333 189.8666666666666 180.2666666666667C189.8666666666666 168.1066666666667 194.7733333333333 157.44 202.6666666666666 149.3333333333334L277.3333333333333 74.6666666666667L352 149.3333333333334C359.8933333333333 157.2266666666667 364.8 168.3200000000001 364.8 180.2666666666667C364.8 204.3733333333333 345.1733333333333 224 321.0666666666667 224C309.3333333333333 224 298.0266666666667 219.0933333333333 290.1333333333334 211.2L277.3333333333334 198.4L264.5333333333334 210.9866666666667C256.6400000000001 219.0933333333334 245.3333333333334 224 233.6000000000001 224z" />
+    <glyph glyph-name="tag-minus"
+      unicode="&#xF90F;"
+      horiz-adv-x="512" d=" M456.7466666666667 200.96L264.7466666666667 392.96C256.8533333333333 400.8533333333334 245.9733333333333 405.3333333333333 234.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V213.3333333333334C42.6666666666667 202.0266666666667 47.1466666666667 191.1466666666667 55.2533333333333 183.2533333333333L64 174.72C83.2 186.24 105.3866666666667 192 128 192C198.6133333333334 192 256 134.6133333333334 256 64C256 41.3866666666667 250.0266666666667 19.4133333333334 238.5066666666667 0L247.04 -8.5333333333333C254.9333333333333 -16.6399999999999 266.0266666666667 -21.3333333333333 277.3333333333333 -21.3333333333333C288.64 -21.3333333333333 299.52 -16.8533333333333 307.4133333333333 -8.7466666666667L456.7466666666667 140.5866666666667C464.8533333333333 148.48 469.3333333333333 159.36 469.3333333333333 170.6666666666667C469.3333333333333 181.9733333333334 464.8533333333333 192.8533333333333 456.7466666666667 200.96M117.3333333333333 298.6666666666667C99.6266666666667 298.6666666666667 85.3333333333333 312.9600000000001 85.3333333333333 330.6666666666667S99.6266666666667 362.6666666666667 117.3333333333333 362.6666666666667S149.3333333333333 348.3733333333334 149.3333333333333 330.6666666666667S135.04 298.6666666666667 117.3333333333333 298.6666666666667M213.3333333333333 42.6666666666667H42.6666666666667V85.3333333333334H213.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="tag-multiple"
+      unicode="&#xF4FB;"
+      horiz-adv-x="512" d=" M117.3333333333333 256C135.04 256 149.3333333333333 270.2933333333334 149.3333333333333 288S135.04 320 117.3333333333333 320S85.3333333333333 305.7066666666667 85.3333333333333 288S99.6266666666667 256 117.3333333333333 256M371.4133333333333 200.96C379.0933333333333 193.28 384 182.6133333333334 384 170.6666666666667C384 158.9333333333333 379.3066666666667 148.2666666666667 371.4133333333333 140.5866666666667L264.7466666666667 33.92C257.0666666666667 26.24 246.4 21.3333333333334 234.6666666666667 21.3333333333334C222.9333333333333 21.3333333333334 212.2666666666667 26.0266666666666 204.3733333333333 33.92L55.2533333333333 183.04C47.36 190.9333333333333 42.6666666666667 201.6 42.6666666666667 213.3333333333334V320C42.6666666666667 343.68 61.6533333333333 362.6666666666667 85.3333333333333 362.6666666666667H192C203.7333333333334 362.6666666666667 214.4 357.9733333333334 222.08 350.2933333333334L371.4133333333333 200.96M288.8533333333333 326.1866666666667L310.1866666666666 347.52L456.7466666666667 200.96C464.64 193.28 469.3333333333333 182.4 469.3333333333333 170.6666666666667C469.3333333333333 158.9333333333333 464.64 148.2666666666667 456.96 140.5866666666667L342.1866666666667 25.8133333333334L320.8533333333334 47.1466666666667L442.6666666666667 170.6666666666667L288.8533333333333 326.1866666666667z" />
+    <glyph glyph-name="tag-outline"
+      unicode="&#xF4FC;"
+      horiz-adv-x="512" d=" M117.3333333333333 298.6666666666667C135.04 298.6666666666667 149.3333333333333 312.9600000000001 149.3333333333333 330.6666666666667S135.04 362.6666666666667 117.3333333333333 362.6666666666667S85.3333333333333 348.3733333333334 85.3333333333333 330.6666666666667S99.6266666666667 298.6666666666667 117.3333333333333 298.6666666666667M456.7466666666667 200.96C464.4266666666666 193.28 469.3333333333333 182.6133333333334 469.3333333333333 170.6666666666667C469.3333333333333 158.9333333333333 464.64 148.2666666666667 456.7466666666667 140.5866666666667L307.4133333333333 -8.7466666666667C299.7333333333334 -16.4266666666666 289.0666666666667 -21.3333333333333 277.3333333333333 -21.3333333333333C265.6 -21.3333333333333 254.9333333333333 -16.4266666666666 247.04 -8.7466666666667L55.2533333333333 183.2533333333333C47.36 190.9333333333333 42.6666666666667 201.6 42.6666666666667 213.3333333333334V362.6666666666667C42.6666666666667 386.3466666666667 61.6533333333333 405.3333333333333 85.3333333333333 405.3333333333333H234.6666666666667C246.4 405.3333333333333 257.0666666666667 400.64 264.7466666666667 392.96L456.7466666666667 200.96M277.3333333333333 21.3333333333334L426.6666666666667 170.6666666666667L245.3333333333333 352L96 202.6666666666667L277.3333333333333 21.3333333333334z" />
+    <glyph glyph-name="tag-plus"
+      unicode="&#xF721;"
+      horiz-adv-x="512" d=" M456.7466666666667 200.96L264.7466666666667 392.96C256.8533333333333 400.8533333333334 245.9733333333333 405.3333333333333 234.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V213.3333333333334C42.6666666666667 202.0266666666667 47.1466666666667 191.1466666666667 55.2533333333333 183.2533333333333L64 174.72C83.2 186.24 105.3866666666667 192 128 192C198.6133333333334 192 256 134.6133333333334 256 64C256 41.3866666666667 250.0266666666667 19.4133333333334 238.5066666666667 0L247.04 -8.5333333333333C254.9333333333333 -16.6399999999999 266.0266666666667 -21.3333333333333 277.3333333333333 -21.3333333333333C288.64 -21.3333333333333 299.52 -16.8533333333333 307.4133333333333 -8.7466666666667L456.7466666666667 140.5866666666667C464.8533333333333 148.48 469.3333333333333 159.36 469.3333333333333 170.6666666666667C469.3333333333333 181.9733333333334 464.8533333333333 192.8533333333333 456.7466666666667 200.96M117.3333333333333 298.6666666666667C99.6266666666667 298.6666666666667 85.3333333333333 312.9600000000001 85.3333333333333 330.6666666666667S99.6266666666667 362.6666666666667 117.3333333333333 362.6666666666667S149.3333333333333 348.3733333333334 149.3333333333333 330.6666666666667S135.04 298.6666666666667 117.3333333333333 298.6666666666667M213.3333333333333 42.6666666666667H149.3333333333333V-21.3333333333333H106.6666666666667V42.6666666666667H42.6666666666667V85.3333333333334H106.6666666666667V149.3333333333334H149.3333333333333V85.3333333333334H213.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="tag-remove"
+      unicode="&#xF722;"
+      horiz-adv-x="512" d=" M456.7466666666667 200.96L264.7466666666667 392.96C256.8533333333333 400.8533333333334 245.9733333333333 405.3333333333333 234.6666666666667 405.3333333333333H85.3333333333333C61.8666666666667 405.3333333333333 42.6666666666667 386.1333333333334 42.6666666666667 362.6666666666667V213.3333333333334C42.6666666666667 202.0266666666667 47.1466666666667 191.1466666666667 55.2533333333333 183.2533333333333L64 174.72C83.2 186.24 105.3866666666667 192 128 192C198.6133333333334 192 256 134.6133333333334 256 64C256 41.3866666666667 250.0266666666667 19.4133333333334 238.5066666666667 0L247.04 -8.5333333333333C254.9333333333333 -16.6399999999999 266.0266666666667 -21.3333333333333 277.3333333333333 -21.3333333333333C288.64 -21.3333333333333 299.52 -16.8533333333333 307.4133333333333 -8.7466666666667L456.7466666666667 140.5866666666667C464.8533333333333 148.48 469.3333333333333 159.36 469.3333333333333 170.6666666666667C469.3333333333333 181.9733333333334 464.8533333333333 192.8533333333333 456.7466666666667 200.96M117.3333333333333 298.6666666666667C99.6266666666667 298.6666666666667 85.3333333333333 312.9600000000001 85.3333333333333 330.6666666666667S99.6266666666667 362.6666666666667 117.3333333333333 362.6666666666667S149.3333333333333 348.3733333333334 149.3333333333333 330.6666666666667S135.04 298.6666666666667 117.3333333333333 298.6666666666667M173.2266666666667 -11.52L128 33.92L82.7733333333333 -11.52L52.48 18.7733333333334L97.92 64L52.48 109.2266666666667L82.56 139.3066666666667L128 94.08L173.2266666666667 139.3066666666667L203.3066666666667 109.2266666666667L158.08 64L203.3066666666667 18.7733333333333L173.2266666666667 -11.52z" />
+    <glyph glyph-name="tag-text-outline"
+      unicode="&#xF4FD;"
+      horiz-adv-x="512" d=" M117.3333333333333 298.6666666666667C135.04 298.6666666666667 149.3333333333333 312.9600000000001 149.3333333333333 330.6666666666667S135.04 362.6666666666667 117.3333333333333 362.6666666666667S85.3333333333333 348.3733333333334 85.3333333333333 330.6666666666667S99.6266666666667 298.6666666666667 117.3333333333333 298.6666666666667M456.7466666666667 200.96C464.4266666666666 193.28 469.3333333333333 182.6133333333334 469.3333333333333 170.6666666666667C469.3333333333333 158.9333333333333 464.64 148.2666666666667 456.7466666666667 140.5866666666667L307.4133333333333 -8.7466666666667C299.7333333333334 -16.4266666666666 289.0666666666667 -21.3333333333333 277.3333333333333 -21.3333333333333C265.6 -21.3333333333333 254.9333333333333 -16.4266666666666 247.04 -8.7466666666667L55.2533333333333 183.2533333333333C47.36 190.9333333333333 42.6666666666667 201.6 42.6666666666667 213.3333333333334V362.6666666666667C42.6666666666667 386.3466666666667 61.6533333333333 405.3333333333333 85.3333333333333 405.3333333333333H234.6666666666667C246.4 405.3333333333333 257.0666666666667 400.64 264.7466666666667 392.96L456.7466666666667 200.96M277.3333333333333 21.3333333333334L426.6666666666667 170.6666666666667L245.3333333333333 352L96 202.6666666666667L277.3333333333333 21.3333333333334M215.2533333333333 257.92L245.3333333333333 288L362.6666666666667 170.6666666666667L332.5866666666667 140.5866666666667L215.2533333333333 257.92M161.92 204.5866666666667L192 234.6666666666667L277.3333333333333 149.3333333333334L247.2533333333334 119.2533333333333L161.92 204.5866666666667z" />
+    <glyph glyph-name="tape-measure"
+      unicode="&#xFB28;"
+      horiz-adv-x="512" d=" M192 341.3333333333334C274.56 341.3333333333334 341.3333333333333 274.5600000000001 341.3333333333333 192H362.6666666666667V128H341.3333333333333V42.6666666666667H192C109.44 42.6666666666667 42.6666666666667 109.44 42.6666666666667 192S109.44 341.3333333333334 192 341.3333333333334M192 277.3333333333334C144.8533333333333 277.3333333333334 106.6666666666667 239.1466666666667 106.6666666666667 192S144.8533333333333 106.6666666666667 192 106.6666666666667S277.3333333333333 144.8533333333334 277.3333333333333 192S239.1466666666667 277.3333333333334 192 277.3333333333334M362.6666666666667 85.3333333333334H469.3333333333333V0H426.6666666666667V42.6666666666667H362.6666666666667V85.3333333333334z" />
+    <glyph glyph-name="target"
+      unicode="&#xF4FE;"
+      horiz-adv-x="512" d=" M234.6666666666667 405.3333333333333V361.1733333333334C157.44 351.36 96.64 290.56 86.8266666666667 213.3333333333334H42.6666666666667V170.6666666666667H86.8266666666667C96.64 93.44 157.44 32.64 234.6666666666667 22.8266666666667V-21.3333333333333H277.3333333333333V22.8266666666667C354.56 32.64 415.36 93.44 425.1733333333333 170.6666666666667H469.3333333333333V213.3333333333334H425.1733333333333C415.36 290.56 354.56 351.36 277.3333333333333 361.1733333333334V405.3333333333333M234.6666666666667 318.2933333333334V277.3333333333334H277.3333333333333V318.0800000000001C330.6666666666667 309.3333333333334 373.3333333333333 266.6666666666667 382.2933333333334 213.3333333333334H341.3333333333333V170.6666666666667H382.08C373.3333333333333 117.3333333333334 330.6666666666667 74.6666666666667 277.3333333333333 65.7066666666667V106.6666666666667H234.6666666666667V65.92C181.3333333333333 74.6666666666667 138.6666666666667 117.3333333333334 129.7066666666667 170.6666666666667H170.6666666666667V213.3333333333334H129.92C138.6666666666667 266.6666666666667 181.3333333333333 309.3333333333334 234.6666666666667 318.2933333333334M256 213.3333333333334C244.2666666666667 213.3333333333334 234.6666666666667 203.7333333333334 234.6666666666667 192S244.2666666666667 170.6666666666667 256 170.6666666666667S277.3333333333333 180.2666666666667 277.3333333333333 192S267.7333333333334 213.3333333333334 256 213.3333333333334z" />
+    <glyph glyph-name="target-account"
+      unicode="&#xFBAC;"
+      horiz-adv-x="512" d=" M446.9333333333333 213.3333333333334H480V170.6666666666667H446.9333333333333C437.3333333333333 81.7066666666667 366.2933333333333 10.6666666666667 277.3333333333333 1.0666666666667V-32H234.6666666666667V1.0666666666667C145.7066666666667 10.6666666666667 74.6666666666667 81.7066666666667 65.0666666666667 170.6666666666667H32V213.3333333333334H65.0666666666667C74.6666666666667 302.2933333333334 145.7066666666667 373.3333333333334 234.6666666666667 382.9333333333334V416H277.3333333333333V382.9333333333334C366.2933333333334 373.3333333333334 437.3333333333333 302.2933333333334 446.9333333333333 213.3333333333334M108.16 213.3333333333334H138.6666666666667V170.6666666666667H108.16C117.3333333333333 105.1733333333334 169.1733333333333 53.3333333333334 234.6666666666667 44.16V74.6666666666667H277.3333333333333V44.16C342.8266666666667 53.3333333333334 394.6666666666667 105.1733333333334 403.84 170.6666666666667H373.3333333333333V213.3333333333334H403.84C394.6666666666667 278.8266666666667 342.8266666666667 330.6666666666667 277.3333333333333 339.8400000000001V309.3333333333334H234.6666666666667V339.8400000000001C169.1733333333333 330.6666666666667 117.3333333333333 278.8266666666667 108.16 213.3333333333334M341.3333333333333 106.6666666666667H170.6666666666667V128C170.6666666666667 156.3733333333333 227.6266666666667 170.6666666666667 256 170.6666666666667S341.3333333333333 156.3733333333333 341.3333333333333 128V106.6666666666667M256 277.3333333333334C279.4666666666667 277.3333333333334 298.6666666666667 258.1333333333334 298.6666666666667 234.6666666666667S279.4666666666667 192 256 192S213.3333333333333 211.2 213.3333333333333 234.6666666666667S232.5333333333334 277.3333333333334 256 277.3333333333334z" />
+    <glyph glyph-name="target-variant"
+      unicode="&#xFA76;"
+      horiz-adv-x="512" d=" M471.04 212.48H428.3733333333333V362.6666666666667H278.3999999999999V405.3333333333333H235.5199999999999V362.6666666666667H85.3333333333333V212.48H42.6666666666667V169.6H85.3333333333333V19.6266666666667H235.52V-23.04H278.4V19.6266666666667H428.3733333333333V169.6000000000001H471.04V212.4800000000001M385.4933333333334 62.5066666666668H278.4V105.3866666666668H235.52V62.5066666666668H128V169.6000000000001H171.3066666666667V212.4800000000001H128V320H235.52V276.6933333333334H278.4V320H385.4933333333334V212.48H342.6133333333334V169.6H385.4933333333334V62.5066666666667M278.4 190.9333333333333C278.4 179.2 268.8 169.6 257.0666666666667 169.6S235.52 179.2 235.52 190.9333333333333S245.3333333333334 212.48 257.0666666666667 212.48S278.4 202.6666666666666 278.4 190.9333333333333z" />
+    <glyph glyph-name="taxi"
+      unicode="&#xF4FF;"
+      horiz-adv-x="512" d=" M106.6666666666667 213.3333333333334L138.6666666666667 309.3333333333334H373.3333333333333L405.3333333333333 213.3333333333334M373.3333333333333 106.6666666666667C355.6266666666667 106.6666666666667 341.3333333333333 120.96 341.3333333333333 138.6666666666667S355.6266666666667 170.6666666666667 373.3333333333333 170.6666666666667S405.3333333333333 156.3733333333333 405.3333333333333 138.6666666666667S391.04 106.6666666666667 373.3333333333333 106.6666666666667M138.6666666666667 106.6666666666667C120.96 106.6666666666667 106.6666666666667 120.96 106.6666666666667 138.6666666666667S120.96 170.6666666666667 138.6666666666667 170.6666666666667S170.6666666666667 156.3733333333333 170.6666666666667 138.6666666666667S156.3733333333333 106.6666666666667 138.6666666666667 106.6666666666667M403.6266666666667 320C399.36 332.3733333333334 387.4133333333333 341.3333333333334 373.3333333333333 341.3333333333334H320V384H192V341.3333333333334H138.6666666666667C124.5866666666667 341.3333333333334 112.64 332.3733333333334 108.3733333333333 320L64 192V21.3333333333334C64 9.6 73.6 0 85.3333333333333 0H106.6666666666667C118.4 0 128 9.6 128 21.3333333333334V42.6666666666667H384V21.3333333333334C384 9.6 393.6 0 405.3333333333333 0H426.6666666666667C438.4 0 448 9.6 448 21.3333333333334V192L403.6266666666667 320z" />
+    <glyph glyph-name="teach"
+      unicode="&#xF88F;"
+      horiz-adv-x="512" d=" M426.6666666666667 85.3333333333334C450.1333333333334 85.3333333333334 469.3333333333333 104.5333333333333 469.3333333333333 128V362.6666666666667C469.3333333333333 386.1333333333334 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333H201.8133333333333C209.28 392.32 213.3333333333333 377.6 213.3333333333333 362.6666666666667H426.6666666666667V128H234.6666666666667V85.3333333333334M320 298.6666666666667V256H192V-21.3333333333333H149.3333333333333V106.6666666666667H106.6666666666667V-21.3333333333333H64V149.3333333333334H32V256C32 279.4666666666667 51.2 298.6666666666667 74.6666666666667 298.6666666666667H320M170.6666666666667 362.6666666666667C170.6666666666667 339.2000000000001 151.4666666666667 320 128 320S85.3333333333333 339.2000000000001 85.3333333333333 362.6666666666667S104.5333333333333 405.3333333333333 128 405.3333333333333S170.6666666666667 386.1333333333334 170.6666666666667 362.6666666666667z" />
+    <glyph glyph-name="teamviewer"
+      unicode="&#xF500;"
+      horiz-adv-x="512" d=" M405.3333333333333 384C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 18.9866666666667 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333M256 341.3333333333334C173.44 341.3333333333334 106.6666666666667 274.5600000000001 106.6666666666667 192S173.44 42.6666666666667 256 42.6666666666667S405.3333333333333 109.44 405.3333333333333 192S338.56 341.3333333333334 256 341.3333333333334M149.3333333333333 192L213.3333333333333 256V213.3333333333334H298.6666666666667V256L362.6666666666667 192L298.6666666666667 128V170.6666666666667H213.3333333333333V128L149.3333333333333 192z" />
+    <glyph glyph-name="telegram"
+      unicode="&#xF501;"
+      horiz-adv-x="512" d=" M208.64 50.1333333333334L214.6133333333333 140.3733333333334L378.4533333333333 288.0000000000001C385.7066666666666 294.6133333333334 376.9599999999999 297.8133333333334 367.36 292.0533333333334L165.12 164.2666666666667L77.6533333333333 192C58.88 197.3333333333334 58.6666666666667 210.3466666666667 81.92 219.7333333333334L422.6133333333334 351.1466666666667C438.1866666666667 358.1866666666667 453.12 347.3066666666668 447.1466666666667 323.4133333333334L389.12 50.1333333333334C385.0666666666667 30.72 373.3333333333334 26.0266666666668 357.12 34.9866666666667L268.8 100.2666666666667L226.3466666666667 59.0933333333334C221.44 54.1866666666667 217.3866666666667 50.1333333333333 208.64 50.1333333333333z" />
+    <glyph glyph-name="telescope"
+      unicode="&#xFB29;"
+      horiz-adv-x="512" d=" M467.1999999999999 258.1333333333334L430.9333333333333 236.8L345.6 384L381.8666666666666 405.3333333333333L467.1999999999999 258.1333333333334M209.0666666666666 279.4666666666667L273.0666666666666 168.5333333333333L403.2 243.2L339.2 354.1333333333334L209.0666666666666 279.4666666666667M243.2 177.0666666666667L200.5333333333333 251.7333333333333L108.8 198.4L151.4666666666667 123.7333333333334L243.2 177.0666666666667M44.8 136.5333333333333L66.1333333333333 100.2666666666667L121.5999999999999 132.2666666666667L100.2666666666666 168.5333333333333L44.7999999999999 136.5333333333333M258.1333333333333 149.3333333333333L251.7333333333333 157.8666666666667L160 104.5333333333333L166.3999999999999 96C170.6666666666666 89.6 177.0666666666666 83.2 183.4666666666666 78.9333333333333L149.3333333333333 -21.3333333333333H192L221.8666666666667 70.4H224L256 -21.3333333333333H298.6666666666667L258.1333333333334 98.1333333333334C268.8 113.0666666666667 268.8 132.2666666666667 258.1333333333334 149.3333333333334z" />
+    <glyph glyph-name="television"
+      unicode="&#xF502;"
+      horiz-adv-x="512" d=" M448 85.3333333333334H64V341.3333333333334H448M448 384H64C40.5333333333333 384 21.3333333333333 364.8 21.3333333333333 341.3333333333334V85.3333333333334C21.3333333333333 61.8666666666667 40.5333333333333 42.6666666666667 64 42.6666666666667H170.6666666666667V0H341.3333333333333V42.6666666666667H448C471.4666666666667 42.6666666666667 490.6666666666666 61.8666666666667 490.6666666666666 85.3333333333334V341.3333333333334C490.6666666666666 364.8 471.4666666666667 384 448 384z" />
+    <glyph glyph-name="television-box"
+      unicode="&#xF838;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M341.3333333333333 106.6666666666667L405.3333333333333 277.3333333333334H352L320 181.3333333333334L288 277.3333333333334H106.6666666666667V234.6666666666667H170.6666666666667V106.6666666666667H213.3333333333333V234.6666666666667H251.0933333333333L298.6666666666667 106.6666666666667H341.3333333333333z" />
+    <glyph glyph-name="television-classic"
+      unicode="&#xF7F3;"
+      horiz-adv-x="512" d=" M174.08 384L144 353.92L199.2533333333333 298.6666666666667H85.3333333333333C61.6533333333333 298.6666666666667 42.6666666666667 279.68 42.6666666666667 256V42.6666666666667C42.6666666666667 18.9866666666667 61.6533333333333 0 85.3333333333333 0H426.6666666666667C450.3466666666667 0 469.3333333333333 18.9866666666667 469.3333333333333 42.6666666666667V256C469.3333333333333 279.68 450.3466666666667 298.6666666666667 426.6666666666667 298.6666666666667H312.7466666666667L368 353.92L337.92 384L256 302.0800000000001L174.08 384M85.3333333333333 256H362.6666666666667V42.6666666666667H85.3333333333333V256M416 256C427.7333333333334 256 437.3333333333333 246.4000000000001 437.3333333333333 234.6666666666667S427.7333333333334 213.3333333333334 416 213.3333333333334S394.6666666666667 222.9333333333333 394.6666666666667 234.6666666666667S404.2666666666667 256 416 256M416 192C427.7333333333334 192 437.3333333333333 182.4 437.3333333333333 170.6666666666667S427.7333333333334 149.3333333333334 416 149.3333333333334S394.6666666666667 158.9333333333333 394.6666666666667 170.6666666666667S404.2666666666667 192 416 192z" />
+    <glyph glyph-name="television-classic-off"
+      unicode="&#xF839;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L448 -15.36L420.9066666666667 -42.6666666666666L378.24 0H85.3333333333333C61.6533333333333 0 42.6666666666667 18.9866666666667 42.6666666666667 42.6666666666667V256C42.6666666666667 277.3333333333334 58.88 295.68 80 298.6666666666667L42.6666666666667 335.5733333333334M174.08 384L256 302.0800000000001L337.92 384L368 353.92L312.7466666666667 298.6666666666667H426.6666666666667C450.3466666666667 298.6666666666667 469.3333333333333 279.68 469.3333333333333 256V42.6666666666667C469.3333333333333 35.4133333333334 467.6266666666667 28.5866666666667 464.4266666666666 22.6133333333333L362.6666666666667 124.16V256H230.8266666666667L188.16 298.6666666666667H199.2533333333333L144 353.92L174.08 384M85.3333333333333 256V42.6666666666667H335.5733333333333L122.24 256H85.3333333333333M416 256C404.2666666666667 256 394.6666666666667 246.4000000000001 394.6666666666667 234.6666666666667S404.2666666666667 213.3333333333334 416 213.3333333333334S437.3333333333333 222.9333333333333 437.3333333333333 234.6666666666667S427.7333333333334 256 416 256M416 192C404.2666666666667 192 394.6666666666667 182.4 394.6666666666667 170.6666666666667S404.2666666666667 149.3333333333334 416 149.3333333333334S437.3333333333333 158.9333333333333 437.3333333333333 170.6666666666667S427.7333333333334 192 416 192z" />
+    <glyph glyph-name="television-guide"
+      unicode="&#xF503;"
+      horiz-adv-x="512" d=" M448 85.3333333333334V341.3333333333334H64V85.3333333333334H448M448 384C471.4666666666667 384 490.6666666666666 364.8 490.6666666666666 341.3333333333334V85.3333333333334C490.6666666666666 61.8666666666667 471.4666666666667 42.6666666666667 448 42.6666666666667H341.3333333333333V0H170.6666666666667V42.6666666666667H64C40.5333333333333 42.6666666666667 21.3333333333333 61.8666666666667 21.3333333333333 85.3333333333334V341.3333333333334C21.3333333333333 364.8 40.5333333333333 384 64 384H448M106.6666666666667 298.6666666666667H234.6666666666667V213.3333333333334H106.6666666666667V298.6666666666667M106.6666666666667 170.6666666666667H234.6666666666667V128H106.6666666666667V170.6666666666667M277.3333333333333 298.6666666666667H405.3333333333333V256H277.3333333333333V298.6666666666667M277.3333333333333 213.3333333333334H405.3333333333333V128H277.3333333333333V213.3333333333334z" />
+    <glyph glyph-name="television-off"
+      unicode="&#xF83A;"
+      horiz-adv-x="512" d=" M10.6666666666667 388.9066666666667L37.9733333333333 416L448 5.9733333333334L420.9066666666667 -21.3333333333333L356.9066666666667 42.6666666666667H341.3333333333333V0H170.6666666666667V42.6666666666667H64C40.5333333333333 42.6666666666667 21.3333333333333 61.8666666666667 21.3333333333333 85.3333333333334V341.3333333333334C21.3333333333333 352 24.96 361.1733333333334 31.1466666666667 368.4266666666667L10.6666666666667 388.9066666666667M448 85.3333333333334V341.3333333333334H166.8266666666667L124.16 384H448C471.4666666666667 384 490.6666666666666 364.8 490.6666666666666 341.3333333333334V85.3333333333334C490.6666666666666 67.2 478.9333333333333 51.4133333333334 462.9333333333333 45.44L422.8266666666667 85.3333333333334H448M64 85.3333333333334H314.24L64 335.5733333333334V85.3333333333334z" />
+    <glyph glyph-name="temperature-celsius"
+      unicode="&#xF504;"
+      horiz-adv-x="512" d=" M352 341.3333333333334C385.0666666666667 341.3333333333334 416 331.3066666666667 441.3866666666667 314.0266666666667L416.64 252.3733333333334C399.5733333333333 267.9466666666667 376.9600000000001 277.3333333333334 352 277.3333333333334C298.6666666666667 277.3333333333334 256 234.6666666666667 256 181.3333333333334S298.6666666666667 85.3333333333334 352 85.3333333333334C373.9733333333334 85.3333333333334 394.0266666666667 92.5866666666667 410.24 104.96L434.56 44.16C410.4533333333334 29.6533333333334 382.2933333333334 21.3333333333334 352 21.3333333333334C263.68 21.3333333333334 192 93.0133333333333 192 181.3333333333334C192 269.6533333333334 263.68 341.3333333333334 352 341.3333333333334M128 384C163.4133333333333 384 192 355.4133333333334 192 320S163.4133333333333 256 128 256S64 284.5866666666667 64 320S92.5866666666667 384 128 384M128 341.3333333333334C116.2666666666667 341.3333333333334 106.6666666666667 331.7333333333334 106.6666666666667 320S116.2666666666667 298.6666666666667 128 298.6666666666667S149.3333333333333 308.2666666666667 149.3333333333333 320S139.7333333333333 341.3333333333334 128 341.3333333333334z" />
+    <glyph glyph-name="temperature-fahrenheit"
+      unicode="&#xF505;"
+      horiz-adv-x="512" d=" M234.6666666666667 21.3333333333334V341.3333333333334H426.6666666666667V277.3333333333334H298.6666666666667V213.3333333333334H405.3333333333333V149.3333333333334H298.6666666666667V21.3333333333334H234.6666666666667M128 384C163.4133333333333 384 192 355.4133333333334 192 320S163.4133333333333 256 128 256S64 284.5866666666667 64 320S92.5866666666667 384 128 384M128 341.3333333333334C116.2666666666667 341.3333333333334 106.6666666666667 331.7333333333334 106.6666666666667 320S116.2666666666667 298.6666666666667 128 298.6666666666667S149.3333333333333 308.2666666666667 149.3333333333333 320S139.7333333333333 341.3333333333334 128 341.3333333333334z" />
+    <glyph glyph-name="temperature-kelvin"
+      unicode="&#xF506;"
+      horiz-adv-x="512" d=" M149.3333333333333 341.3333333333334H213.3333333333333V213.3333333333334L320 341.3333333333334H405.3333333333333L296.1066666666667 218.0266666666667L405.3333333333333 21.3333333333334H328.1066666666667L250.88 167.04L213.3333333333333 124.8V21.3333333333334H149.3333333333333V341.3333333333334z" />
+    <glyph glyph-name="tennis"
+      unicode="&#xF507;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C309.3333333333333 405.3333333333333 357.3333333333333 386.1333333333334 394.6666666666667 354.1333333333334C349.0133333333333 315.0933333333334 320 256.8533333333334 320 192S349.0133333333333 68.9066666666667 394.6666666666667 29.8666666666667C357.3333333333333 -2.1333333333333 309.3333333333333 -21.3333333333333 256 -21.3333333333333S154.6666666666667 -2.1333333333333 117.3333333333333 29.8666666666667C162.9866666666667 68.9066666666667 192 127.1466666666667 192 192S162.9866666666667 315.0933333333334 117.3333333333333 354.1333333333334C154.6666666666667 386.1333333333334 202.6666666666667 405.3333333333333 256 405.3333333333333M469.3333333333333 192C469.3333333333333 142.5066666666667 452.48 97.0666666666667 424.1066666666667 60.8000000000001C386.56 92.16 362.6666666666667 139.3066666666667 362.6666666666667 192S386.56 291.8400000000001 424.1066666666667 323.2000000000001C452.48 286.9333333333334 469.3333333333333 241.4933333333334 469.3333333333333 192M42.6666666666667 192C42.6666666666667 241.4933333333334 59.52 286.9333333333334 87.8933333333333 323.2000000000001C125.44 291.8400000000001 149.3333333333333 244.6933333333334 149.3333333333333 192S125.44 92.16 87.8933333333333 60.8000000000001C59.52 97.0666666666667 42.6666666666667 142.5066666666667 42.6666666666667 192z" />
+    <glyph glyph-name="tent"
+      unicode="&#xF508;"
+      horiz-adv-x="512" d=" M85.3333333333333 320C85.3333333333333 294.6133333333334 93.6533333333333 271.5733333333334 106.6666666666667 256C71.2533333333333 256 42.6666666666667 284.5866666666667 42.6666666666667 320S71.2533333333333 384 106.6666666666667 384C93.6533333333333 368.4266666666667 85.3333333333333 345.3866666666667 85.3333333333333 320M42.6666666666667 0V42.6666666666667H101.5466666666667L256 346.0266666666667L410.4533333333333 42.6666666666667H469.3333333333333V0H42.6666666666667M256 251.9466666666667L149.3333333333333 42.6666666666667H362.6666666666667L256 251.9466666666667z" />
+    <glyph glyph-name="terrain"
+      unicode="&#xF509;"
+      horiz-adv-x="512" d=" M298.6666666666667 320L218.6666666666667 213.3333333333334L279.4666666666667 132.2666666666667L245.3333333333333 106.6666666666667C209.28 154.6666666666667 149.3333333333333 234.6666666666667 149.3333333333333 234.6666666666667L21.3333333333333 64H490.6666666666666L298.6666666666667 320z" />
+    <glyph glyph-name="test-tube"
+      unicode="&#xF668;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333V362.6666666666667H170.6666666666667V64C170.6666666666667 16.8533333333334 208.8533333333333 -21.3333333333333 256 -21.3333333333333S341.3333333333333 16.8533333333334 341.3333333333333 64V362.6666666666667H362.6666666666667V405.3333333333333H149.3333333333333M234.6666666666667 106.6666666666667C221.8666666666667 106.6666666666667 213.3333333333333 115.2000000000001 213.3333333333333 128S221.8666666666667 149.3333333333334 234.6666666666667 149.3333333333334S256 140.8 256 128S247.4666666666667 106.6666666666667 234.6666666666667 106.6666666666667M277.3333333333333 192C264.5333333333333 192 256 200.5333333333334 256 213.3333333333334S264.5333333333333 234.6666666666667 277.3333333333333 234.6666666666667S298.6666666666667 226.1333333333334 298.6666666666667 213.3333333333334S290.1333333333334 192 277.3333333333333 192M298.6666666666667 298.6666666666667H213.3333333333333V362.6666666666667H298.6666666666667V298.6666666666667z" />
+    <glyph glyph-name="test-tube-empty"
+      unicode="&#xF910;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333H362.6666666666667V362.6666666666667H341.3333333333333V64C341.3333333333333 16.8533333333334 303.1466666666667 -21.3333333333333 256 -21.3333333333333S170.6666666666667 16.8533333333334 170.6666666666667 64V362.6666666666667H149.3333333333333V405.3333333333333M298.6666666666667 362.6666666666667H213.3333333333333V64C213.3333333333333 40.5333333333333 232.5333333333334 21.3333333333334 256 21.3333333333334S298.6666666666667 40.5333333333333 298.6666666666667 64V362.6666666666667z" />
+    <glyph glyph-name="test-tube-off"
+      unicode="&#xF911;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L337.92 40.3200000000001C327.68 4.9066666666667 294.8266666666667 -21.3333333333333 256 -21.3333333333333C208.8533333333333 -21.3333333333333 170.6666666666667 16.8533333333334 170.6666666666667 64V207.5733333333334L42.6666666666667 335.5733333333334M149.3333333333333 405.3333333333333H362.6666666666667V362.6666666666667H341.3333333333333V145.4933333333334L290.7733333333333 196.0533333333334C295.68 199.8933333333334 298.6666666666667 205.8666666666667 298.6666666666667 213.3333333333334C298.6666666666667 226.1333333333334 290.1333333333333 234.6666666666667 277.3333333333333 234.6666666666667C269.8666666666666 234.6666666666667 263.8933333333333 231.6800000000001 260.0533333333333 226.7733333333334L170.6666666666667 316.1600000000001V362.6666666666667H149.3333333333333V405.3333333333333M234.6666666666667 106.6666666666667C245.3333333333333 106.6666666666667 253.44 112.8533333333334 256 122.88L229.5466666666667 149.3333333333334C219.52 146.7733333333334 213.3333333333333 138.6666666666667 213.3333333333333 128C213.3333333333333 115.2000000000001 221.8666666666667 106.6666666666667 234.6666666666667 106.6666666666667M298.6666666666667 298.6666666666667V362.6666666666667H213.3333333333333V298.6666666666667H298.6666666666667z" />
+    <glyph glyph-name="text"
+      unicode="&#xF9A7;"
+      horiz-adv-x="512" d=" M448 320V277.3333333333334H64V320H448M64 64H256V106.6666666666667H64V64M64 170.6666666666667H448V213.3333333333334H64V170.6666666666667z" />
+    <glyph glyph-name="text-shadow"
+      unicode="&#xF669;"
+      horiz-adv-x="512" d=" M64 384H341.3333333333333V320H234.6666666666667V64H170.6666666666667V320H64V384M256 298.6666666666667H298.6666666666667V256H256V298.6666666666667M320 298.6666666666667H362.6666666666667V256H320V298.6666666666667M384 298.6666666666667H426.6666666666667V256H384V298.6666666666667M256 234.6666666666667H298.6666666666667V192H256V234.6666666666667M256 170.6666666666667H298.6666666666667V128H256V170.6666666666667M256 106.6666666666667H298.6666666666667V64H256V106.6666666666667M256 42.6666666666667H298.6666666666667V0H256V42.6666666666667z" />
+    <glyph glyph-name="text-short"
+      unicode="&#xF9A8;"
+      horiz-adv-x="512" d=" M85.3333333333333 256H426.6666666666667V213.3333333333334H85.3333333333333V256M85.3333333333333 170.6666666666667H298.6666666666667V128H85.3333333333333V170.6666666666667z" />
+    <glyph glyph-name="text-subject"
+      unicode="&#xF9A9;"
+      horiz-adv-x="512" d=" M85.3333333333333 341.3333333333334H426.6666666666667V298.6666666666667H85.3333333333333V341.3333333333334M85.3333333333333 256H426.6666666666667V213.3333333333334H85.3333333333333V256M85.3333333333333 170.6666666666667H426.6666666666667V128H85.3333333333333V170.6666666666667M85.3333333333333 85.3333333333334H298.6666666666667V42.6666666666667H85.3333333333333V85.3333333333334z" />
+    <glyph glyph-name="text-to-speech"
+      unicode="&#xF50A;"
+      horiz-adv-x="512" d=" M170.6666666666667 298.6666666666667C194.1333333333333 298.6666666666667 213.3333333333333 279.4666666666667 213.3333333333333 256V149.3333333333334C213.3333333333333 125.8666666666667 194.1333333333333 106.6666666666667 170.6666666666667 106.6666666666667S128 125.8666666666667 128 149.3333333333334V256C128 279.4666666666667 147.2 298.6666666666667 170.6666666666667 298.6666666666667M298.6666666666667 149.3333333333334C298.6666666666667 85.9733333333334 252.5866666666667 33.28 192 23.04V-21.3333333333333H149.3333333333333V23.04C88.7466666666667 33.28 42.6666666666667 85.9733333333333 42.6666666666667 149.3333333333333H85.3333333333333C85.3333333333333 102.1866666666667 123.52 64 170.6666666666667 64S256 102.1866666666667 256 149.3333333333334H298.6666666666667M456.7466666666667 247.2533333333334L366.2933333333334 156.5866666666667L387.84 234.6666666666667H298.6666666666667C275.2 234.6666666666667 256 253.8666666666667 256 277.3333333333334V362.6666666666667C256 386.1333333333334 275.2 405.3333333333333 298.6666666666667 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V277.3333333333334C469.3333333333333 265.6 464.64 254.9333333333334 456.7466666666667 247.2533333333334z" />
+    <glyph glyph-name="text-to-speech-off"
+      unicode="&#xF50B;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L285.44 92.8000000000001C267.7333333333334 56.5333333333334 233.1733333333333 30.08 192 23.0400000000001V-21.3333333333333H149.3333333333333V23.04C88.7466666666667 33.28 42.6666666666667 85.9733333333333 42.6666666666667 149.3333333333333H85.3333333333333C85.3333333333333 102.1866666666667 123.52 64 170.6666666666667 64C209.4933333333334 64 242.3466666666667 90.0266666666666 252.5866666666667 125.6533333333334L213.3333333333333 164.9066666666667V149.3333333333334C213.3333333333333 125.8666666666667 194.1333333333333 106.6666666666667 170.6666666666667 106.6666666666667S128 125.8666666666667 128 149.3333333333334V250.24L42.6666666666667 335.5733333333334M456.7466666666667 247.2533333333334L366.2933333333334 156.5866666666667L387.84 234.6666666666667H298.6666666666667C275.2 234.6666666666667 256 253.8666666666667 256 277.3333333333334V362.6666666666667C256 386.1333333333334 275.2 405.3333333333333 298.6666666666667 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V277.3333333333334C469.3333333333333 265.6 464.64 254.9333333333334 456.7466666666667 247.2533333333334z" />
+    <glyph glyph-name="textbox"
+      unicode="&#xF60E;"
+      horiz-adv-x="512" d=" M362.6666666666667 298.6666666666667H469.3333333333333V85.3333333333334H362.6666666666667V42.6666666666667C362.6666666666667 30.9333333333333 372.2666666666667 21.3333333333334 384 21.3333333333334H426.6666666666667V-21.3333333333333H373.3333333333333C361.6 -21.3333333333333 341.3333333333333 -11.7333333333333 341.3333333333333 0C341.3333333333333 -11.7333333333333 321.0666666666667 -21.3333333333333 309.3333333333333 -21.3333333333333H256V21.3333333333334H298.6666666666667C310.4 21.3333333333334 320 30.9333333333333 320 42.6666666666667V341.3333333333334C320 353.0666666666667 310.4 362.6666666666667 298.6666666666667 362.6666666666667H256V405.3333333333333H309.3333333333333C321.0666666666667 405.3333333333333 341.3333333333333 395.7333333333334 341.3333333333333 384C341.3333333333333 395.7333333333334 361.6 405.3333333333333 373.3333333333333 405.3333333333333H426.6666666666667V362.6666666666667H384C372.2666666666667 362.6666666666667 362.6666666666667 353.0666666666667 362.6666666666667 341.3333333333334V298.6666666666667M42.6666666666667 298.6666666666667H277.3333333333333V256H85.3333333333333V128H277.3333333333333V85.3333333333334H42.6666666666667V298.6666666666667M426.6666666666667 128V256H362.6666666666667V128H426.6666666666667z" />
+    <glyph glyph-name="textbox-password"
+      unicode="&#xF7F4;"
+      horiz-adv-x="512" d=" M362.6666666666667 298.6666666666667H469.3333333333333V85.3333333333334H362.6666666666667V42.6666666666667C362.6666666666667 30.9333333333333 372.2666666666667 21.3333333333334 384 21.3333333333334H426.6666666666667V-21.3333333333333H373.3333333333333C361.6 -21.3333333333333 341.3333333333333 -11.7333333333333 341.3333333333333 0C341.3333333333333 -11.7333333333333 321.0666666666667 -21.3333333333333 309.3333333333333 -21.3333333333333H256V21.3333333333334H298.6666666666667C310.4 21.3333333333334 320 30.9333333333333 320 42.6666666666667V341.3333333333334C320 353.0666666666667 310.4 362.6666666666667 298.6666666666667 362.6666666666667H256V405.3333333333333H309.3333333333333C321.0666666666667 405.3333333333333 341.3333333333333 395.7333333333334 341.3333333333333 384C341.3333333333333 395.7333333333334 361.6 405.3333333333333 373.3333333333333 405.3333333333333H426.6666666666667V362.6666666666667H384C372.2666666666667 362.6666666666667 362.6666666666667 353.0666666666667 362.6666666666667 341.3333333333334V298.6666666666667M42.6666666666667 298.6666666666667H277.3333333333333V256H85.3333333333333V128H277.3333333333333V85.3333333333334H42.6666666666667V298.6666666666667M426.6666666666667 128V256H362.6666666666667V128H426.6666666666667M181.3333333333333 192C181.3333333333333 209.7066666666667 167.04 224 149.3333333333333 224S117.3333333333333 209.7066666666667 117.3333333333333 192S131.6266666666667 160 149.3333333333333 160S181.3333333333333 174.2933333333334 181.3333333333333 192M277.3333333333333 215.68C264.32 227.6266666666667 244.0533333333333 226.56 232.1066666666667 213.3333333333334C220.16 200.5333333333334 221.2266666666666 180.2666666666667 234.6666666666667 168.3200000000001C246.4 157.2266666666667 265.1733333333333 157.2266666666667 277.3333333333333 168.3200000000001V215.68z" />
+    <glyph glyph-name="texture"
+      unicode="&#xF50C;"
+      horiz-adv-x="512" d=" M198.1866666666667 0H258.56L448 189.4400000000001V249.8133333333334M405.3333333333333 0C417.0666666666667 0 427.7333333333334 4.6933333333333 435.4133333333333 12.5866666666667C443.3066666666667 20.2666666666667 448 30.9333333333333 448 42.6666666666667V85.3333333333334L362.6666666666667 0M106.6666666666667 384C83.2 384 64 364.8 64 341.3333333333334V298.6666666666667L149.3333333333333 384M253.44 384L64 194.56V134.1866666666667L313.8133333333334 384M416 382.2933333333334L65.7066666666667 32C67.6266666666667 24.5333333333333 71.4666666666667 17.92 76.5866666666667 12.5866666666667C81.92 7.4666666666667 88.5333333333333 3.6266666666667 96 1.7066666666666L446.5066666666667 352C442.4533333333333 366.9333333333334 430.9333333333333 378.4533333333334 416 382.2933333333334z" />
+    <glyph glyph-name="theater"
+      unicode="&#xF50D;"
+      horiz-adv-x="512" d=" M85.3333333333333 128H128C151.4666666666667 128 170.6666666666667 108.8 170.6666666666667 85.3333333333334V42.6666666666667H192V85.3333333333334C192 108.8 211.2 128 234.6666666666667 128H277.3333333333333C300.8 128 320 108.8 320 85.3333333333334V42.6666666666667H341.3333333333333V85.3333333333334C341.3333333333333 108.8 360.5333333333333 128 384 128H426.6666666666667C450.1333333333334 128 469.3333333333333 108.8 469.3333333333333 85.3333333333334V42.6666666666667H490.6666666666666V-21.3333333333333H21.3333333333333V42.6666666666667H42.6666666666667V85.3333333333334C42.6666666666667 108.8 61.8666666666667 128 85.3333333333333 128M234.6666666666667 298.6666666666667L320 234.6666666666667L234.6666666666667 170.6666666666667V298.6666666666667M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V159.1466666666667C456.7466666666667 166.6133333333334 442.24 170.6666666666667 426.6666666666667 170.6666666666667V362.6666666666667H85.3333333333333V170.6666666666667C69.76 170.6666666666667 55.2533333333333 166.6133333333334 42.6666666666667 159.1466666666667V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="theme-light-dark"
+      unicode="&#xF50E;"
+      horiz-adv-x="512" d=" M160 405.3333333333333C121.8133333333333 380.8 96 337.4933333333334 96 288S121.8133333333333 195.2 160.64 170.6666666666667C95.1466666666667 170.6666666666667 42.6666666666667 223.1466666666667 42.6666666666667 288S95.1466666666667 405.3333333333333 160 405.3333333333333M406.8266666666667 373.3333333333334L437.3333333333333 342.8266666666667L105.1733333333333 10.6666666666667L74.6666666666667 41.1733333333333L406.8266666666667 373.3333333333334M274.9866666666667 321.4933333333334L243.4133333333334 341.3333333333334L212.6933333333333 320L221.6533333333333 356.2666666666667L192 378.88L229.3333333333333 381.44L241.7066666666667 416.64L256 381.8666666666667L292.9066666666667 381.2266666666667L264.1066666666667 357.12L274.9866666666667 321.4933333333334M204.5866666666667 244.48L179.84 260.0533333333334L155.9466666666667 243.4133333333334L163.2 271.5733333333334L139.9466666666667 289.2800000000001L168.96 291.2000000000001L178.56 318.7200000000001L189.44 291.6266666666667L218.4533333333333 290.9866666666667L196.0533333333333 272.4266666666668L204.5866666666666 244.48M405.3333333333333 160C405.3333333333333 95.1466666666667 352.8533333333333 42.6666666666667 288 42.6666666666667C261.9733333333333 42.6666666666667 237.8666666666667 51.2 218.4533333333333 65.4933333333333L382.5066666666667 229.5466666666667C396.8 210.1333333333334 405.3333333333333 186.0266666666668 405.3333333333333 160.0000000000001M311.4666666666667 19.6266666666667L370.56 44.16L365.4400000000001 -27.3066666666667L311.4666666666667 19.6266666666667M403.8400000000001 77.2266666666666L428.3733333333334 136.3199999999999L475.3066666666667 82.1333333333333L403.84 77.2266666666666M428.3733333333333 183.04L404.0533333333333 242.3466666666667L475.3066666666666 237.2266666666667L428.3733333333333 183.04M205.44 44.16L264.5333333333333 19.6266666666667L210.56 -27.0933333333333L205.44 44.16z" />
+    <glyph glyph-name="thermometer"
+      unicode="&#xF50F;"
+      horiz-adv-x="512" d=" M362.6666666666667 85.3333333333334C362.6666666666667 26.4533333333334 314.88 -21.3333333333333 256 -21.3333333333333S149.3333333333333 26.4533333333334 149.3333333333333 85.3333333333334C149.3333333333333 120.3200000000001 166.1866666666667 151.2533333333333 192 170.6666666666667V341.3333333333334C192 376.7466666666667 220.5866666666667 405.3333333333333 256 405.3333333333333S320 376.7466666666667 320 341.3333333333334V170.6666666666667C345.8133333333334 151.2533333333333 362.6666666666667 120.3200000000001 362.6666666666667 85.3333333333334M234.6666666666667 277.3333333333334V145.7066666666667C209.7066666666667 136.96 192 113.28 192 85.3333333333334C192 49.92 220.5866666666667 21.3333333333334 256 21.3333333333334S320 49.92 320 85.3333333333334C320 113.28 302.2933333333333 136.96 277.3333333333333 145.7066666666667V277.3333333333334H234.6666666666667z" />
+    <glyph glyph-name="thermometer-lines"
+      unicode="&#xF510;"
+      horiz-adv-x="512" d=" M362.6666666666667 384H448V341.3333333333334H362.6666666666667V384M362.6666666666667 298.6666666666667H448V256H362.6666666666667V298.6666666666667M362.6666666666667 213.3333333333334H448V170.6666666666667H378.6666666666667L362.6666666666667 189.8666666666667V213.3333333333334M448 128V85.3333333333334H405.3333333333333C405.3333333333333 100.0533333333334 403.2 114.5600000000001 399.1466666666667 128H448M362.6666666666667 85.3333333333334C362.6666666666667 26.4533333333334 314.88 -21.3333333333333 256 -21.3333333333333S149.3333333333333 26.4533333333334 149.3333333333333 85.3333333333334C149.3333333333333 120.3200000000001 166.1866666666667 151.2533333333333 192 170.6666666666667V341.3333333333334C192 376.7466666666667 220.5866666666667 405.3333333333333 256 405.3333333333333S320 376.7466666666667 320 341.3333333333334V170.6666666666667C345.8133333333334 151.2533333333333 362.6666666666667 120.3200000000001 362.6666666666667 85.3333333333334M234.6666666666667 277.3333333333334V145.7066666666667C209.7066666666667 136.96 192 113.28 192 85.3333333333334C192 49.92 220.5866666666667 21.3333333333334 256 21.3333333333334S320 49.92 320 85.3333333333334C320 113.28 302.2933333333333 136.96 277.3333333333333 145.7066666666667V277.3333333333334H234.6666666666667M149.3333333333333 384V341.3333333333334H64V384H149.3333333333333M149.3333333333333 298.6666666666667V256H64V298.6666666666667H149.3333333333333M149.3333333333333 213.3333333333334V189.8666666666667L133.3333333333333 170.6666666666667H64V213.3333333333334H149.3333333333333M64 128H112.8533333333333C108.8 114.56 106.6666666666667 100.0533333333334 106.6666666666667 85.3333333333334H64V128z" />
+    <glyph glyph-name="thermostat"
+      unicode="&#xF393;"
+      horiz-adv-x="512" d=" M361.6 86.4L316.3733333333333 131.6266666666667C331.7333333333334 147.2000000000001 341.3333333333333 168.5333333333334 341.3333333333333 192C341.3333333333333 207.7866666666667 336.8533333333333 222.5066666666667 329.1733333333333 234.6666666666667L375.4666666666667 281.3866666666667C394.6666666666667 256 405.3333333333333 225.4933333333334 405.3333333333333 192C405.3333333333333 150.8266666666667 388.6933333333333 113.4933333333334 361.6 86.4M256 341.3333333333334C289.4933333333334 341.3333333333334 320 330.6666666666667 345.3866666666667 311.4666666666667L298.6666666666667 265.3866666666667C286.5066666666667 272.8533333333334 271.7866666666667 277.3333333333334 256 277.3333333333334C208.8533333333333 277.3333333333334 170.6666666666667 239.1466666666667 170.6666666666667 192C170.6666666666667 168.5333333333334 180.2666666666667 147.2000000000001 195.6266666666667 131.6266666666667L150.4 86.4C123.3066666666667 113.4933333333334 106.6666666666667 150.8266666666667 106.6666666666667 192C106.6666666666667 274.5600000000001 173.44 341.3333333333334 256 341.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192C469.3333333333333 309.9733333333334 373.3333333333333 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="thermostat-box"
+      unicode="&#xF890;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384H106.6666666666667M256 341.3333333333334C289.4933333333334 341.3333333333334 320 330.6666666666667 345.3866666666667 311.4666666666667L298.6666666666667 265.3866666666667C286.5066666666667 272.8533333333334 271.7866666666667 277.3333333333334 256 277.3333333333334C208.8533333333333 277.3333333333334 170.6666666666667 239.1466666666667 170.6666666666667 192C170.6666666666667 168.5333333333334 180.2666666666667 147.2000000000001 195.6266666666667 131.6266666666667L150.4 86.4C123.3066666666667 113.4933333333334 106.6666666666667 150.8266666666667 106.6666666666667 192C106.6666666666667 274.5600000000001 173.44 341.3333333333334 256 341.3333333333334M375.4666666666667 281.3866666666667C394.6666666666667 256 405.3333333333333 225.4933333333334 405.3333333333333 192C405.3333333333333 150.8266666666667 388.6933333333333 113.4933333333334 361.6 86.4L316.3733333333333 131.6266666666667C331.7333333333334 147.2000000000001 341.3333333333333 168.5333333333334 341.3333333333333 192C341.3333333333333 207.7866666666667 336.8533333333333 222.5066666666667 329.1733333333333 234.6666666666667L375.4666666666667 281.3866666666667z" />
+    <glyph glyph-name="thought-bubble"
+      unicode="&#xF7F5;"
+      horiz-adv-x="512" d=" M74.6666666666667 42.6666666666667C92.3733333333333 42.6666666666667 106.6666666666667 28.3733333333333 106.6666666666667 10.6666666666667S92.3733333333333 -21.3333333333333 74.6666666666667 -21.3333333333333S42.6666666666667 -7.04 42.6666666666667 10.6666666666667S56.96 42.6666666666667 74.6666666666667 42.6666666666667M181.3333333333333 106.6666666666667C210.7733333333333 106.6666666666667 234.6666666666667 82.7733333333333 234.6666666666667 53.3333333333334S210.7733333333334 0 181.3333333333333 0S128 23.8933333333334 128 53.3333333333334S151.8933333333333 106.6666666666667 181.3333333333333 106.6666666666667M309.3333333333333 128C283.9466666666667 128 260.9066666666667 138.6666666666667 245.3333333333333 156.8C229.76 138.6666666666667 206.72 128 181.3333333333333 128C139.52 128 104.7466666666667 158.0800000000001 97.4933333333333 197.5466666666667C65.4933333333333 209.92 42.6666666666667 241.0666666666667 42.6666666666667 277.3333333333334C42.6666666666667 324.48 80.8533333333333 362.6666666666667 128 362.6666666666667C133.5466666666667 362.6666666666667 138.6666666666667 362.0266666666667 144.4266666666667 361.1733333333334C160 375.2533333333334 180.2666666666667 384 202.6666666666667 384C228.0533333333333 384 251.0933333333333 373.3333333333334 266.6666666666667 355.2000000000001C282.24 373.3333333333334 305.28 384 330.6666666666667 384C372.48 384 407.2533333333334 353.92 414.5066666666667 314.4533333333334C446.5066666666667 302.0800000000001 469.3333333333333 270.9333333333334 469.3333333333333 234.6666666666667C469.3333333333333 187.52 431.1466666666667 149.3333333333334 384 149.3333333333334L367.5733333333333 150.8266666666667C352 136.7466666666667 331.7333333333334 128 309.3333333333333 128z" />
+    <glyph glyph-name="thought-bubble-outline"
+      unicode="&#xF7F6;"
+      horiz-adv-x="512" d=" M74.6666666666667 42.6666666666667C92.3733333333333 42.6666666666667 106.6666666666667 28.3733333333333 106.6666666666667 10.6666666666667S92.3733333333333 -21.3333333333333 74.6666666666667 -21.3333333333333S42.6666666666667 -7.04 42.6666666666667 10.6666666666667S56.96 42.6666666666667 74.6666666666667 42.6666666666667M181.3333333333333 106.6666666666667C210.7733333333333 106.6666666666667 234.6666666666667 82.7733333333333 234.6666666666667 53.3333333333334S210.7733333333334 0 181.3333333333333 0S128 23.8933333333334 128 53.3333333333334S151.8933333333333 106.6666666666667 181.3333333333333 106.6666666666667M309.3333333333333 128C283.9466666666667 128 260.9066666666667 138.6666666666667 245.3333333333333 156.8C229.76 138.6666666666667 206.72 128 181.3333333333333 128C139.52 128 104.7466666666667 158.0800000000001 97.4933333333333 197.5466666666667C65.4933333333333 209.92 42.6666666666667 241.0666666666667 42.6666666666667 277.3333333333334C42.6666666666667 324.48 80.8533333333333 362.6666666666667 128 362.6666666666667L144.4266666666667 361.1733333333334C160 375.2533333333334 180.2666666666667 384 202.6666666666667 384C228.0533333333333 384 251.0933333333333 373.3333333333334 266.6666666666667 355.2000000000001C282.24 373.3333333333334 305.28 384 330.6666666666667 384C372.48 384 407.2533333333334 353.92 414.5066666666667 314.4533333333334C446.5066666666667 302.0800000000001 469.3333333333333 270.9333333333334 469.3333333333333 234.6666666666667C469.3333333333333 187.52 431.1466666666667 149.3333333333334 384 149.3333333333334L367.5733333333333 150.8266666666667C352 136.7466666666667 331.7333333333334 128 309.3333333333333 128M128 320C104.5333333333333 320 85.3333333333333 300.8 85.3333333333333 277.3333333333334S104.5333333333333 234.6666666666667 128 234.6666666666667C135.04 234.6666666666667 141.6533333333333 236.3733333333334 147.6266666666667 239.36C142.08 232.1066666666667 138.6666666666667 223.1466666666667 138.6666666666667 213.3333333333334C138.6666666666667 189.8666666666667 157.8666666666667 170.6666666666667 181.3333333333333 170.6666666666667C194.1333333333333 170.6666666666667 205.6533333333333 176.4266666666667 213.3333333333333 185.3866666666667L244.6933333333334 221.2266666666667L277.3333333333333 184.7466666666667C285.44 176.2133333333334 296.7466666666667 170.6666666666667 309.3333333333333 170.6666666666667C330.6666666666667 170.6666666666667 348.3733333333333 186.4533333333334 352 206.9333333333333C359.2533333333334 197.76 370.9866666666667 192 384 192C407.4666666666667 192 426.6666666666667 211.2 426.6666666666667 234.6666666666667S407.4666666666667 277.3333333333334 384 277.3333333333334C376.9600000000001 277.3333333333334 370.3466666666667 275.6266666666667 364.3733333333333 272.64C369.92 279.8933333333333 373.3333333333333 288.8533333333334 373.3333333333333 298.6666666666667C373.3333333333333 322.1333333333334 354.1333333333334 341.3333333333333 330.6666666666667 341.3333333333333C318.08 341.3333333333333 306.7733333333333 335.7866666666667 298.6666666666667 327.2533333333334L266.0266666666667 290.7733333333333L234.6666666666667 326.6133333333334C226.9866666666667 335.5733333333333 215.4666666666667 341.3333333333334 202.6666666666667 341.3333333333334C181.3333333333333 341.3333333333334 163.6266666666667 325.5466666666667 160 305.0666666666667C152.7466666666667 314.24 141.0133333333333 320 128 320M181.3333333333333 74.6666666666667C169.6 74.6666666666667 160 65.0666666666667 160 53.3333333333334S169.6 32 181.3333333333333 32S202.6666666666667 41.6 202.6666666666667 53.3333333333334S193.0666666666667 74.6666666666667 181.3333333333333 74.6666666666667z" />
+    <glyph glyph-name="thumb-down"
+      unicode="&#xF511;"
+      horiz-adv-x="512" d=" M405.3333333333333 128H490.6666666666666V384H405.3333333333333M320 384H128C110.2933333333333 384 95.1466666666667 373.3333333333334 88.7466666666667 357.9733333333334L24.32 207.5733333333334C22.4 202.6666666666667 21.3333333333333 197.5466666666667 21.3333333333333 192V149.3333333333334C21.3333333333333 125.8666666666667 40.5333333333333 106.6666666666667 64 106.6666666666667H198.6133333333333L178.3466666666666 9.1733333333333C177.92 7.04 177.7066666666667 4.9066666666667 177.7066666666667 2.5600000000001C177.7066666666667 -6.4 181.3333333333333 -14.2933333333333 187.0933333333333 -20.0533333333333L209.7066666666667 -42.6666666666666L350.08 97.92C357.9733333333334 105.6 362.6666666666667 116.2666666666667 362.6666666666667 128V341.3333333333334C362.6666666666667 365.0133333333333 343.4666666666667 384 320 384z" />
+    <glyph glyph-name="thumb-down-outline"
+      unicode="&#xF512;"
+      horiz-adv-x="512" d=" M405.3333333333333 128V384H490.6666666666666V128H405.3333333333333M320 384C343.4666666666667 384 362.6666666666667 364.8 362.6666666666667 341.3333333333334V128C362.6666666666667 116.2666666666667 357.9733333333334 105.6 350.08 97.92L209.7066666666667 -42.6666666666666L187.0933333333333 -20.0533333333333C181.3333333333333 -14.2933333333333 177.7066666666667 -6.4 177.7066666666667 2.5599999999999L178.3466666666666 9.1733333333333L198.6133333333333 106.6666666666666H64C40.32 106.6666666666666 21.3333333333333 125.8666666666666 21.3333333333333 149.3333333333333V192C21.3333333333333 197.5466666666666 22.4 202.6666666666666 24.32 207.5733333333333L88.7466666666667 357.9733333333333C95.1466666666667 373.3333333333334 110.2933333333333 384 128 384H320M320 341.3333333333334H127.36L64 192V149.3333333333334H251.3066666666667L227.2 35.84L320 128.64V341.3333333333334z" />
+    <glyph glyph-name="thumb-up"
+      unicode="&#xF513;"
+      horiz-adv-x="512" d=" M490.6666666666666 234.6666666666667C490.6666666666666 258.3466666666667 471.4666666666667 277.3333333333334 448 277.3333333333334H313.1733333333333L333.6533333333333 374.8266666666667C334.08 376.9600000000001 334.2933333333333 379.3066666666667 334.2933333333333 381.6533333333333C334.2933333333333 390.4 330.6666666666667 398.5066666666667 324.9066666666667 404.2666666666667L302.2933333333333 426.6666666666667L161.92 286.2933333333334C154.0266666666667 278.4 149.3333333333333 267.7333333333334 149.3333333333333 256V42.6666666666667C149.3333333333333 19.2 168.5333333333333 0 192 0H384C401.7066666666666 0 416.8533333333333 10.6666666666667 423.2533333333334 26.0266666666666L487.6799999999999 176.4266666666667C489.6 181.3333333333334 490.6666666666666 186.4533333333334 490.6666666666666 192V234.6666666666667M21.3333333333333 0H106.6666666666667V256H21.3333333333333V0z" />
+    <glyph glyph-name="thumb-up-outline"
+      unicode="&#xF514;"
+      horiz-adv-x="512" d=" M106.6666666666667 256V0H21.3333333333333V256H106.6666666666667M192 0C168.5333333333333 0 149.3333333333333 19.2 149.3333333333333 42.6666666666667V256C149.3333333333333 267.7333333333334 154.0266666666667 278.4 161.92 286.0800000000001L302.2933333333333 426.6666666666667L324.9066666666667 404.0533333333334C330.6666666666667 398.2933333333334 334.2933333333333 390.4 334.2933333333333 381.6533333333333L333.6533333333333 374.8266666666667L313.3866666666667 277.3333333333334H448C471.6799999999999 277.3333333333334 490.6666666666666 258.1333333333334 490.6666666666666 234.6666666666667V192C490.6666666666666 186.4533333333334 489.6 181.3333333333334 487.6799999999999 176.4266666666667L423.2533333333334 26.0266666666666C416.8533333333333 10.6666666666667 401.7066666666666 0 384 0H192M192 42.6666666666667H384.64L448 192V234.6666666666667H260.48L284.5866666666667 348.1600000000001L192 255.36V42.6666666666667z" />
+    <glyph glyph-name="thumbs-up-down"
+      unicode="&#xF515;"
+      horiz-adv-x="512" d=" M480 234.6666666666667H336C322.7733333333333 234.6666666666667 311.4666666666667 226.56 306.56 215.2533333333333L258.3466666666667 102.4C256.8533333333334 98.7733333333333 256 94.72 256 90.6666666666667V64C256 52.2666666666667 265.6 42.6666666666667 277.3333333333334 42.6666666666667H387.84L373.3333333333333 -25.1733333333333V-30.2933333333333C373.3333333333333 -36.9066666666666 376.1066666666667 -42.6666666666666 380.3733333333333 -47.36L397.2266666666666 -64L502.6133333333333 41.3866666666667C508.3733333333333 47.1466666666667 512 55.2533333333333 512 64V202.6666666666667C512 220.3733333333333 497.7066666666666 234.6666666666667 480 234.6666666666667M256 320C256 331.7333333333334 246.4 341.3333333333334 234.6666666666667 341.3333333333334H124.16L138.6666666666667 409.1733333333334V414.08C138.6666666666667 420.6933333333334 135.8933333333333 426.6666666666667 131.6266666666667 431.1466666666667L114.7733333333333 448L9.3866666666667 342.6133333333334C3.6266666666667 336.8533333333334 0 328.7466666666667 0 320V181.3333333333334C0 163.6266666666667 14.2933333333333 149.3333333333334 32 149.3333333333334H176C189.2266666666666 149.3333333333334 200.5333333333333 157.4400000000001 205.44 168.7466666666667L253.6533333333333 281.6C255.1466666666667 285.2266666666667 256 289.2800000000001 256 293.3333333333334V320z" />
+    <glyph glyph-name="ticket"
+      unicode="&#xF516;"
+      horiz-adv-x="512" d=" M332.3733333333334 89.6L256 138.6666666666667L179.6266666666667 89.6L202.6666666666667 177.4933333333334L132.48 234.6666666666667L223.1466666666667 240.2133333333334L256 324.2666666666667L288.8533333333333 240.2133333333334L379.52 234.6666666666667L309.3333333333333 177.4933333333334M426.6666666666667 192C426.6666666666667 215.68 445.8666666666666 234.6666666666667 469.3333333333333 234.6666666666667V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V234.6666666666667C66.3466666666667 234.6666666666667 85.3333333333333 215.4666666666667 85.3333333333333 192S66.1333333333333 149.3333333333334 42.6666666666667 149.3333333333334V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V149.3333333333334C445.8666666666666 149.3333333333334 426.6666666666667 168.5333333333334 426.6666666666667 192z" />
+    <glyph glyph-name="ticket-account"
+      unicode="&#xF517;"
+      horiz-adv-x="512" d=" M426.6666666666667 192C426.6666666666667 168.5333333333334 445.8666666666666 149.3333333333334 469.3333333333333 149.3333333333334V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V149.3333333333334C66.3466666666667 149.3333333333334 85.3333333333333 168.5333333333334 85.3333333333333 192S66.1333333333333 234.6666666666667 42.6666666666667 234.6666666666667V320C42.6666666666667 343.68 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V234.6666666666667C445.8666666666666 234.6666666666667 426.6666666666667 215.4666666666667 426.6666666666667 192M352 101.3333333333334C352 133.3333333333334 288 149.3333333333334 256 149.3333333333334S160 133.3333333333334 160 101.3333333333334V85.3333333333334H352V101.3333333333334M256 186.6666666666667C282.4533333333333 186.6666666666667 304 208.2133333333334 304 234.6666666666667S282.4533333333333 282.6666666666667 256 282.6666666666667S208 261.12 208 234.6666666666667S229.5466666666667 186.6666666666667 256 186.6666666666667z" />
+    <glyph glyph-name="ticket-confirmation"
+      unicode="&#xF518;"
+      horiz-adv-x="512" d=" M277.3333333333333 266.6666666666667H234.6666666666667V309.3333333333334H277.3333333333333V266.6666666666667M277.3333333333333 170.6666666666667H234.6666666666667V213.3333333333334H277.3333333333333V170.6666666666667M277.3333333333333 74.6666666666667H234.6666666666667V117.3333333333334H277.3333333333333V74.6666666666667M469.3333333333333 234.6666666666667V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667H85.3333333333333C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V234.6666666666667C66.3466666666667 234.6666666666667 85.3333333333333 215.4666666666667 85.3333333333333 192S66.1333333333333 149.3333333333334 42.6666666666667 149.3333333333334V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V149.3333333333334C445.8666666666666 149.3333333333334 426.6666666666667 168.5333333333334 426.6666666666667 192S445.8666666666666 234.6666666666667 469.3333333333333 234.6666666666667z" />
+    <glyph glyph-name="ticket-outline"
+      unicode="&#xF912;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V234.6666666666667C66.1333333333333 234.6666666666667 85.3333333333333 215.4666666666667 85.3333333333333 192S66.1333333333333 149.3333333333334 42.6666666666667 149.3333333333334V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V149.3333333333334C445.8666666666666 149.3333333333334 426.6666666666667 168.5333333333334 426.6666666666667 192S445.8666666666666 234.6666666666667 469.3333333333333 234.6666666666667V320C469.3333333333333 343.4666666666667 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667H85.3333333333333M85.3333333333333 320H426.6666666666667V265.8133333333334C400.2133333333334 250.6666666666667 384 222.5066666666667 384 192C384 161.4933333333334 400.2133333333334 133.3333333333334 426.6666666666667 118.1866666666667V64H85.3333333333333V118.1866666666667C111.7866666666667 133.3333333333334 128 161.4933333333334 128 192C128 222.5066666666667 111.7866666666667 250.6666666666667 85.3333333333333 265.8133333333334V320z" />
+    <glyph glyph-name="ticket-percent"
+      unicode="&#xF723;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667C61.8666666666667 362.6666666666667 42.6666666666667 343.4666666666667 42.6666666666667 320V234.6666666666667C66.3466666666667 234.6666666666667 85.3333333333333 215.4666666666667 85.3333333333333 192S66.1333333333333 149.3333333333334 42.6666666666667 149.3333333333334V64C42.6666666666667 40.5333333333333 61.8666666666667 21.3333333333334 85.3333333333333 21.3333333333334H426.6666666666667C450.1333333333334 21.3333333333334 469.3333333333333 40.5333333333333 469.3333333333333 64V149.3333333333334C445.8666666666666 149.3333333333334 426.6666666666667 168.5333333333334 426.6666666666667 192C426.6666666666667 215.68 445.8666666666666 234.6666666666667 469.3333333333333 234.6666666666667V320C469.3333333333333 343.68 450.1333333333334 362.6666666666667 426.6666666666667 362.6666666666667H85.3333333333333M330.6666666666667 298.6666666666667L362.6666666666667 266.6666666666667L181.3333333333333 85.3333333333334L149.3333333333333 117.3333333333334L330.6666666666667 298.6666666666667M187.9466666666666 297.8133333333334C208.8533333333333 297.8133333333334 225.7066666666666 280.9600000000001 225.7066666666666 260.0533333333334S208.8533333333333 222.2933333333334 187.9466666666666 222.2933333333334S150.1866666666667 239.1466666666667 150.1866666666667 260.0533333333334S167.04 297.8133333333334 187.9466666666666 297.8133333333334M324.0533333333333 161.7066666666667C344.9599999999999 161.7066666666667 361.8133333333333 144.8533333333334 361.8133333333333 123.9466666666667S344.9599999999999 86.1866666666667 324.0533333333333 86.1866666666667S286.2933333333333 103.04 286.2933333333333 123.9466666666667S303.1466666666666 161.7066666666667 324.0533333333333 161.7066666666667z" />
+    <glyph glyph-name="tie"
+      unicode="&#xF519;"
+      horiz-adv-x="512" d=" M128 405.3333333333333L213.3333333333333 320L149.3333333333333 85.3333333333334L256 -21.3333333333333L362.6666666666667 85.3333333333334L298.6666666666667 320L384 405.3333333333333z" />
+    <glyph glyph-name="tilde"
+      unicode="&#xF724;"
+      horiz-adv-x="512" d=" M42.6666666666667 128S42.6666666666667 256 170.6666666666667 256C256 256 266.6666666666667 181.3333333333334 330.6666666666667 181.3333333333334C416 181.3333333333334 416 256 416 256H469.3333333333333S469.3333333333333 128 341.3333333333333 128C256 128 224 202.6666666666667 181.3333333333333 202.6666666666667C96 202.6666666666667 96 128 96 128H42.6666666666667" />
+    <glyph glyph-name="timelapse"
+      unicode="&#xF51A;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C161.7066666666667 21.3333333333334 85.3333333333333 97.7066666666667 85.3333333333333 192S161.7066666666667 362.6666666666667 256 362.6666666666667S426.6666666666667 286.2933333333334 426.6666666666667 192S350.2933333333334 21.3333333333334 256 21.3333333333334M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M346.4533333333334 282.4533333333334C321.4933333333334 307.6266666666667 288.64 320 256 320V192L165.5466666666667 101.5466666666666C215.4666666666667 51.6266666666667 296.5333333333333 51.6266666666667 346.4533333333334 101.5466666666666C396.5866666666667 151.4666666666667 396.5866666666667 232.5333333333333 346.4533333333334 282.4533333333333z" />
+    <glyph glyph-name="timeline"
+      unicode="&#xFBAD;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V277.3333333333334H64V405.3333333333333H106.6666666666667M64 -21.3333333333333H106.6666666666667V106.6666666666667H64V-21.3333333333333M128 192C128 215.4666666666667 108.8 234.6666666666667 85.3333333333333 234.6666666666667S42.6666666666667 215.4666666666667 42.6666666666667 192S61.8666666666667 149.3333333333334 85.3333333333333 149.3333333333334S128 168.5333333333334 128 192M469.3333333333333 298.6666666666667V85.3333333333334C469.3333333333333 61.8666666666667 450.1333333333334 42.6666666666667 426.6666666666667 42.6666666666667H234.6666666666667C211.2 42.6666666666667 192 61.8666666666667 192 85.3333333333334V149.3333333333334L149.3333333333333 192L192 234.6666666666667V298.6666666666667C192 322.1333333333334 211.2 341.3333333333334 234.6666666666667 341.3333333333334H426.6666666666667C450.1333333333334 341.3333333333334 469.3333333333333 322.1333333333334 469.3333333333333 298.6666666666667z" />
+    <glyph glyph-name="timeline-outline"
+      unicode="&#xFBAE;"
+      horiz-adv-x="512" d=" M128 192C128 168.5333333333334 108.8 149.3333333333334 85.3333333333333 149.3333333333334S42.6666666666667 168.5333333333334 42.6666666666667 192S61.8666666666667 234.6666666666667 85.3333333333333 234.6666666666667S128 215.4666666666667 128 192M106.6666666666667 405.3333333333333V277.3333333333334H64V405.3333333333333H106.6666666666667M64 -21.3333333333333V106.6666666666667H106.6666666666667V-21.3333333333333H64M469.3333333333333 298.6666666666667V85.3333333333334C469.3333333333333 61.8666666666667 450.1333333333334 42.6666666666667 426.6666666666667 42.6666666666667H234.6666666666667C211.2 42.6666666666667 192 61.8666666666667 192 85.3333333333334V149.3333333333334L149.3333333333333 192L192 234.6666666666667V298.6666666666667C192 322.1333333333334 211.2 341.3333333333334 234.6666666666667 341.3333333333334H426.6666666666667C450.1333333333334 341.3333333333334 469.3333333333333 322.1333333333334 469.3333333333333 298.6666666666667M426.6666666666667 298.6666666666667H234.6666666666667V216.96L209.7066666666667 192L234.6666666666667 167.04V85.3333333333334H426.6666666666667V298.6666666666667z" />
+    <glyph glyph-name="timeline-text"
+      unicode="&#xFBAF;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333V277.3333333333334H64V405.3333333333333H106.6666666666667M64 -21.3333333333333H106.6666666666667V106.6666666666667H64V-21.3333333333333M128 192C128 215.4666666666667 108.8 234.6666666666667 85.3333333333333 234.6666666666667S42.6666666666667 215.4666666666667 42.6666666666667 192S61.8666666666667 149.3333333333334 85.3333333333333 149.3333333333334S128 168.5333333333334 128 192M469.3333333333333 298.6666666666667V85.3333333333334C469.3333333333333 61.8666666666667 450.1333333333334 42.6666666666667 426.6666666666667 42.6666666666667H234.6666666666667C211.2 42.6666666666667 192 61.8666666666667 192 85.3333333333334V149.3333333333334L149.3333333333333 192L192 234.6666666666667V298.6666666666667C192 322.1333333333334 211.2 341.3333333333334 234.6666666666667 341.3333333333334H426.6666666666667C450.1333333333334 341.3333333333334 469.3333333333333 322.1333333333334 469.3333333333333 298.6666666666667M362.6666666666667 170.6666666666667H256V128H362.6666666666667V170.6666666666667M405.3333333333333 256H256V213.3333333333334H405.3333333333333V256z" />
+    <glyph glyph-name="timeline-text-outline"
+      unicode="&#xFBB0;"
+      horiz-adv-x="512" d=" M128 192C128 168.5333333333334 108.8 149.3333333333334 85.3333333333333 149.3333333333334S42.6666666666667 168.5333333333334 42.6666666666667 192S61.8666666666667 234.6666666666667 85.3333333333333 234.6666666666667S128 215.4666666666667 128 192M106.6666666666667 405.3333333333333V277.3333333333334H64V405.3333333333333H106.6666666666667M64 -21.3333333333333V106.6666666666667H106.6666666666667V-21.3333333333333H64M469.3333333333333 298.6666666666667V85.3333333333334C469.3333333333333 61.8666666666667 450.1333333333334 42.6666666666667 426.6666666666667 42.6666666666667H234.6666666666667C211.2 42.6666666666667 192 61.8666666666667 192 85.3333333333334V149.3333333333334L149.3333333333333 192L192 234.6666666666667V298.6666666666667C192 322.1333333333334 211.2 341.3333333333334 234.6666666666667 341.3333333333334H426.6666666666667C450.1333333333334 341.3333333333334 469.3333333333333 322.1333333333334 469.3333333333333 298.6666666666667M426.6666666666667 298.6666666666667H234.6666666666667V216.96L209.7066666666667 192L234.6666666666667 167.04V85.3333333333334H426.6666666666667V298.6666666666667M277.3333333333333 256H384V213.3333333333334H277.3333333333333V256M277.3333333333333 170.6666666666667H341.3333333333333V128H277.3333333333333V170.6666666666667z" />
+    <glyph glyph-name="timer"
+      unicode="&#xF51B;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667S173.44 320 256 320S405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667S338.56 21.3333333333334 256 21.3333333333334M405.9733333333334 290.3466666666667L436.2666666666667 320.64C426.6666666666668 331.52 417.0666666666667 341.3333333333333 406.1866666666667 350.7200000000001L375.8933333333333 320C342.8266666666667 346.88 301.2266666666667 362.6666666666667 256 362.6666666666667C149.9733333333333 362.6666666666667 64 276.6933333333334 64 170.6666666666667S149.9733333333333 -21.3333333333333 256 -21.3333333333333C362.6666666666667 -21.3333333333333 448 64.64 448 170.6666666666667C448 215.8933333333334 432.2133333333334 257.4933333333334 405.9733333333334 290.3466666666667M234.6666666666667 149.3333333333334H277.3333333333333V277.3333333333334H234.6666666666667M320 426.6666666666667H192V384H320V426.6666666666667z" />
+    <glyph glyph-name="timer-10"
+      unicode="&#xF51C;"
+      horiz-adv-x="512" d=" M275.2 165.9733333333334C275.2 153.1733333333334 274.3466666666667 142.2933333333334 272.64 133.3333333333334C270.9333333333334 124.3733333333333 268.3733333333334 117.3333333333334 264.9600000000001 111.5733333333334C261.5466666666667 106.0266666666666 257.2800000000001 101.9733333333334 252.3733333333334 99.4133333333334C247.4666666666667 96.8533333333334 241.4933333333334 96 234.6666666666667 96C228.4800000000001 96 222.5066666666667 96.8533333333334 217.3866666666667 99.4133333333334C212.2666666666667 101.9733333333334 208 106.0266666666666 204.5866666666667 111.5733333333334C201.1733333333334 117.3333333333334 198.4 124.3733333333333 196.48 133.3333333333334C194.56 142.2933333333334 193.7066666666667 153.1733333333334 193.7066666666667 165.9733333333334V219.3066666666667C193.7066666666667 232.1066666666667 194.56 242.9866666666667 196.48 251.7333333333333C198.4 260.48 200.96 267.52 204.5866666666667 273.0666666666667C208 278.4 212.2666666666667 282.24 217.3866666666667 284.8C222.5066666666667 287.1466666666667 228.2666666666667 288 234.6666666666667 288C241.2800000000001 288 247.04 287.1466666666667 251.9466666666667 284.8C257.0666666666667 282.4533333333333 261.3333333333334 278.6133333333334 264.7466666666667 273.0666666666667C268.1600000000001 267.7333333333334 270.9333333333334 260.6933333333334 272.64 251.9466666666667C274.3466666666667 243.2 275.4133333333334 232.32 275.4133333333334 219.52V165.9733333333334M294.8266666666667 297.6C288 306.1333333333334 278.8266666666667 312.5333333333333 268.5866666666667 316.3733333333334C258.56 320 247.04 322.1333333333334 234.6666666666667 322.1333333333334C222.2933333333333 322.1333333333334 210.9866666666667 320 200.7466666666667 316.3733333333334C190.5066666666667 312.5333333333334 181.3333333333333 306.3466666666667 174.5066666666667 297.6C167.2533333333333 288.8533333333334 161.7066666666667 277.3333333333334 157.6533333333333 263.68C153.8133333333333 249.8133333333334 151.68 232.7466666666667 151.68 212.6933333333333V171.7333333333334C151.68 151.68 153.6 134.6133333333334 157.6533333333333 120.7466666666667C161.7066666666667 106.6666666666667 167.2533333333333 95.36 174.72 86.6133333333334C181.9733333333333 77.8666666666667 190.72 71.4666666666666 200.96 67.6266666666667C211.2 63.9999999999999 222.5066666666667 61.6533333333333 234.6666666666667 61.6533333333333C247.4666666666667 61.6533333333333 258.7733333333333 63.9999999999999 268.8 67.6266666666667C279.04 71.4666666666666 288 77.8666666666667 294.8266666666667 86.6133333333334C302.08 95.36 307.6266666666667 106.6666666666667 311.4666666666667 120.7466666666667C315.3066666666666 134.6133333333334 317.44 151.68 317.44 171.7333333333334V212.6933333333333C317.44 232.7466666666667 315.52 249.8133333333334 311.4666666666667 263.68C307.6266666666667 277.3333333333334 302.08 289.0666666666667 294.8266666666667 297.6M507.3066666666667 141.44C504.32 147.4133333333333 499.84 152.7466666666667 493.8666666666667 157.2266666666667C487.8933333333333 161.7066666666667 480.8533333333334 165.5466666666667 472.32 168.5333333333333S454.1866666666666 174.2933333333333 443.52 176.64C436.0533333333333 178.1333333333333 429.8666666666666 179.84 424.9599999999999 181.3333333333334C420.0533333333333 183.2533333333333 415.9999999999999 184.96 413.2266666666666 186.88C410.2399999999999 188.8 408.32 190.9333333333333 407.2533333333332 193.28C406.1866666666666 195.6266666666667 405.3333333333333 198.4 405.3333333333333 201.6C405.3333333333333 204.5866666666667 406.1866666666666 207.5733333333334 407.4666666666666 210.3466666666667C408.7466666666666 213.3333333333334 410.6666666666666 215.68 413.2266666666666 217.6C415.9999999999999 219.7333333333334 418.9866666666666 221.44 422.8266666666666 222.72S431.3599999999999 224.6400000000001 436.4799999999999 224.6400000000001C441.8133333333333 224.6400000000001 446.5066666666666 224.0000000000001 450.5599999999999 222.2933333333334C454.6133333333333 220.8000000000001 458.0266666666666 218.6666666666667 460.8 216.1066666666668C463.5733333333333 213.3333333333334 465.4933333333332 210.5600000000001 466.9866666666666 207.1466666666667C468.2666666666665 203.7333333333334 469.3333333333333 200.3200000000001 469.3333333333333 196.6933333333334H510.7199999999999C510.7199999999999 205.0133333333334 509.0133333333333 212.6933333333334 505.6 219.9466666666667C502.1866666666666 227.2000000000001 497.28 233.3866666666668 490.6666666666666 238.7200000000001C484.48 244.0533333333334 476.8 248.1066666666668 467.6266666666667 251.3066666666668C458.6666666666666 254.5066666666667 448 256 436.48 256C425.6 256 416 254.5066666666667 406.8266666666667 251.52C398.08 248.5333333333333 390.4 244.48 384 239.36C378.0266666666667 234.6666666666667 373.3333333333333 228.2666666666667 369.92 221.44C366.5066666666667 214.6133333333333 365.0133333333333 207.5733333333333 365.0133333333333 199.8933333333333C365.0133333333333 192 366.7199999999999 185.1733333333334 369.92 179.4133333333334C373.3333333333333 173.4400000000001 377.6 168.3200000000001 384 163.84C389.3333333333333 159.36 396.3733333333333 155.7333333333334 404.48 152.5333333333334C412.5866666666667 149.3333333333334 421.76 146.9866666666667 431.5733333333333 144.8533333333334C439.8933333333333 143.1466666666667 446.7200000000001 141.2266666666667 451.84 139.3066666666667S461.0133333333333 135.2533333333334 464 133.1200000000001C466.7733333333333 130.9866666666667 468.6933333333333 128.0000000000001 469.3333333333333 125.8666666666667C470.8266666666667 123.3066666666667 471.2533333333333 120.5333333333334 471.2533333333333 117.3333333333334C471.2533333333333 110.72 468.48 105.3866666666667 462.72 101.1200000000001C456.96 96.8533333333334 448.64 94.9333333333334 437.3333333333333 94.9333333333334C433.0666666666667 94.9333333333334 428.5866666666667 95.3600000000001 424.1066666666667 96.64C419.6266666666666 97.7066666666667 416 99.4133333333334 412.16 101.76C408.5333333333333 104.1066666666667 405.3333333333333 107.3066666666667 403.4133333333333 111.1466666666667C401.0666666666667 114.9866666666667 399.7866666666667 119.8933333333333 399.5733333333333 125.44H359.2533333333334C359.2533333333334 117.3333333333333 360.9599999999999 110.2933333333333 364.3733333333333 103.04C367.7866666666667 96 372.6933333333333 89.1733333333334 379.3066666666666 83.2C385.9199999999999 77.44 394.0266666666667 72.7466666666667 403.8399999999999 69.12C413.6533333333333 65.4933333333333 424.7466666666666 64 437.3333333333333 64C448.8533333333333 64 458.6666666666666 65.0666666666667 468.2666666666665 67.84C477.4399999999999 70.6133333333334 485.3333333333333 74.6666666666667 491.9466666666665 79.36C498.5599999999998 84.2666666666667 503.4666666666665 90.24 507.0933333333332 97.0666666666666C510.7199999999999 103.8933333333333 511.9999999999999 111.36 511.9999999999999 119.68S510.5066666666665 135.4666666666667 507.3066666666666 141.44M0 283.3066666666667V247.4666666666667L64 268.8V64H106.6666666666667V320H101.3333333333333L0 283.3066666666667z" />
+    <glyph glyph-name="timer-3"
+      unicode="&#xF51D;"
+      horiz-adv-x="512" d=" M445.2266666666667 141.4400000000001C442.24 147.4133333333334 437.3333333333333 152.7466666666667 431.7866666666667 157.2266666666667C425.8133333333334 161.7066666666667 418.7733333333334 165.5466666666668 410.24 168.5333333333334S392.1066666666667 174.2933333333334 381.44 176.6400000000001C373.9733333333333 178.1333333333334 367.7866666666667 179.84 362.6666666666667 181.3333333333334C357.9733333333334 183.2533333333334 354.1333333333334 184.96 351.1466666666667 186.8800000000001S346.24 190.9333333333334 345.1733333333333 193.2800000000001C344.1066666666667 195.6266666666667 343.4666666666667 198.4000000000001 343.4666666666667 201.6000000000001C343.4666666666667 204.8000000000001 344.1066666666667 207.5733333333334 345.3866666666667 210.3466666666668C346.6666666666667 213.3333333333334 348.5866666666667 215.6800000000001 351.1466666666667 217.6000000000001C353.7066666666667 219.7333333333334 356.9066666666667 221.4400000000001 360.7466666666667 222.7200000000001S369.28 224.6400000000001 374.4 224.6400000000001C379.7333333333334 224.6400000000001 384 224.0000000000001 388.48 222.2933333333334C392.5333333333334 220.8000000000001 395.9466666666667 218.6666666666668 398.7200000000001 216.1066666666668C401.4933333333334 213.3333333333334 403.4133333333333 210.5600000000001 405.3333333333333 207.1466666666668C406.1866666666666 203.7333333333334 407.04 200.3200000000001 407.04 196.6933333333335H448.64C448.64 205.0133333333334 446.9333333333333 212.6933333333335 443.52 219.9466666666668C440.1066666666667 227.2000000000001 435.2 233.3866666666668 428.8 238.7200000000001C422.3999999999999 244.0533333333335 414.7199999999999 248.1066666666668 405.3333333333333 251.3066666666668C396.3733333333332 254.5066666666668 385.9199999999999 256.0000000000001 374.3999999999999 256.0000000000001C363.5199999999999 256.0000000000001 353.4933333333333 254.5066666666668 344.7466666666666 251.5200000000001C335.9999999999999 248.5333333333334 328.32 244.4800000000001 322.1333333333332 239.3600000000001C315.9466666666666 234.6666666666668 311.2533333333332 228.2666666666668 307.8399999999999 221.4400000000001C304.4266666666666 214.6133333333334 302.9333333333332 207.5733333333334 302.9333333333332 199.8933333333334C302.9333333333332 192.0000000000001 304.6399999999999 185.3866666666668 307.8399999999999 179.4133333333334C311.0399999999999 173.4400000000001 315.7333333333333 168.3200000000001 321.4933333333333 163.8400000000001C327.2533333333332 159.3600000000001 334.2933333333333 155.7333333333334 342.3999999999999 152.5333333333334C350.5066666666666 149.3333333333334 359.6799999999999 146.9866666666668 369.4933333333333 144.8533333333335C377.8133333333333 143.1466666666668 384.64 141.2266666666668 389.7599999999999 139.3066666666668C394.6666666666666 137.3866666666668 398.9333333333332 135.2533333333335 401.9199999999999 133.1200000000001C404.6933333333332 130.9866666666668 406.6133333333333 128.0000000000001 407.6799999999999 125.8666666666668C408.7466666666666 123.3066666666669 409.1733333333333 120.5333333333335 409.1733333333333 117.3333333333335C409.1733333333333 110.7200000000001 406.3999999999999 105.3866666666668 400.64 101.1200000000001C394.6666666666666 96.8533333333335 386.56 94.9333333333335 375.68 94.9333333333335C370.9866666666667 94.9333333333335 366.5066666666667 95.3600000000001 362.0266666666667 96.6400000000001C357.5466666666666 97.7066666666668 353.4933333333334 99.4133333333334 350.08 101.7600000000001C346.4533333333333 104.1066666666667 343.68 107.3066666666667 341.3333333333333 111.1466666666668C338.9866666666667 114.9866666666667 337.7066666666667 119.8933333333334 337.4933333333334 125.4400000000001H297.1733333333333C297.1733333333333 117.3333333333334 298.6666666666667 110.2933333333334 302.2933333333333 103.0400000000001C305.7066666666667 96.0000000000001 310.6133333333334 89.1733333333334 317.2266666666667 83.2000000000001C323.84 77.4400000000001 331.9466666666666 72.7466666666668 341.3333333333333 69.1200000000001C352 65.4933333333333 362.6666666666667 64.0000000000001 375.4666666666667 64.0000000000001C386.7733333333334 64.0000000000001 397.0133333333334 65.0666666666668 406.1866666666667 67.8400000000001C415.36 70.6133333333334 423.2533333333334 74.6666666666667 429.8666666666667 79.3600000000001C436.48 84.2666666666668 441.3866666666667 90.2400000000001 445.0133333333334 97.0666666666667C448.6400000000001 103.8933333333334 450.3466666666667 111.36 450.3466666666667 119.6800000000001C449.9200000000001 128.0000000000001 448.0000000000001 135.4666666666667 445.2266666666668 141.4400000000001M247.6800000000001 171.3066666666667C244.2666666666668 176.4266666666667 240.0000000000001 181.3333333333334 234.6666666666668 185.1733333333334C229.1200000000001 189.2266666666667 222.5066666666668 192.6400000000001 214.6133333333335 195.4133333333334C221.0133333333335 198.4000000000001 226.7733333333335 201.8133333333334 231.6800000000001 206.0800000000001C236.5866666666668 210.3466666666667 240.6400000000002 214.8266666666667 243.8400000000002 219.7333333333334C247.0400000000002 224.6400000000001 249.6000000000002 229.5466666666668 251.0933333333335 234.6666666666667C252.8000000000002 240.0000000000001 253.4400000000001 245.3333333333334 253.4400000000001 250.4533333333334C253.4400000000001 262.1866666666667 251.5200000000001 272.6400000000001 247.4666666666668 281.6C243.6266666666668 290.5600000000001 238.0800000000002 298.0266666666668 230.8266666666668 304.2133333333334C224.0000000000002 310.1866666666667 215.2533333333335 314.8800000000001 205.2266666666668 317.8666666666667C195.6266666666668 320.6400000000001 184.5333333333335 322.1333333333334 172.5866666666669 322.1333333333334C160.8533333333335 322.1333333333334 149.9733333333335 320.0000000000001 140.1600000000002 317.0133333333334C130.1333333333335 313.3866666666667 121.6000000000002 308.48 114.5600000000002 302.2933333333334C107.5200000000002 296.1066666666667 101.7600000000002 288.8533333333334 97.9200000000002 280.3200000000001C93.6533333333335 272.0000000000001 91.7333333333335 262.6133333333334 91.7333333333335 252.8000000000001H133.9733333333335C133.9733333333335 258.3466666666667 135.0400000000002 263.2533333333334 136.9600000000002 267.5200000000001C138.6666666666668 271.7866666666667 141.6533333333335 275.6266666666667 145.0666666666668 278.6133333333334C148.6933333333335 281.6 152.7466666666669 283.9466666666667 157.4400000000002 285.6533333333334C162.1333333333335 287.36 167.2533333333335 288 173.0133333333335 288C186.0266666666668 288 195.6266666666668 284.8 202.0266666666668 278.1866666666667C208.4266666666669 271.5733333333334 211.4133333333335 262.1866666666667 211.4133333333335 250.0266666666667C211.4133333333335 244.2666666666667 210.5600000000002 238.9333333333334 208.8533333333335 234.6666666666667C207.1466666666668 229.5466666666667 204.3733333333335 225.4933333333334 200.7466666666668 222.08C197.1200000000002 218.6666666666667 192.6400000000001 216.1066666666667 187.3066666666668 214.1866666666667C181.9733333333335 212.2666666666667 175.5733333333334 211.4133333333334 168.3200000000001 211.4133333333334H143.36V177.92H168.5333333333333C175.7866666666667 177.92 182.1866666666667 177.0666666666667 187.9466666666667 175.5733333333334C193.7066666666667 173.8666666666667 198.6133333333334 171.5200000000001 202.6666666666667 168.1066666666667C206.72 164.6933333333334 209.92 160 212.0533333333333 155.0933333333334C214.1866666666667 149.9733333333334 215.4666666666667 143.5733333333334 215.4666666666667 136.5333333333334C215.4666666666667 123.3066666666667 211.6266666666667 113.2800000000001 204.16 106.6666666666667C196.6933333333333 99.2000000000001 186.24 96 173.2266666666667 96C167.04 96 161.28 96.64 156.16 98.5600000000001C151.04 100.2666666666667 146.7733333333334 102.8266666666667 143.1466666666667 106.6666666666667C139.52 109.6533333333334 136.7466666666667 113.4933333333334 134.8266666666667 118.1866666666667C132.9066666666667 122.8800000000001 131.84 128.0000000000001 131.84 133.5466666666668H89.3866666666667C89.3866666666667 121.8133333333334 91.7333333333334 111.5733333333334 96 102.6133333333334C100.6933333333333 93.6533333333334 106.6666666666667 86.1866666666667 114.56 80.2133333333334C122.24 74.6666666666667 130.9866666666667 69.7600000000001 141.0133333333333 66.7733333333334C151.04 64.0000000000001 161.4933333333334 62.2933333333334 172.5866666666667 62.2933333333334C184.7466666666667 62.2933333333334 195.84 64 206.2933333333333 67.2000000000001C216.7466666666667 70.4 225.7066666666667 75.3066666666667 233.1733333333333 81.7066666666667C240.8533333333333 88.1066666666667 246.8266666666667 96.0000000000001 251.0933333333333 105.1733333333334C255.36 114.3466666666668 257.4933333333334 125.0133333333334 257.4933333333334 136.7466666666668C257.4933333333334 142.9333333333334 256.64 149.3333333333334 255.1466666666667 155.0933333333334C253.44 160.0000000000001 251.0933333333334 165.9733333333334 247.68 171.3066666666667z" />
+    <glyph glyph-name="timer-off"
+      unicode="&#xF51E;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C173.44 21.3333333333334 106.6666666666667 88.1066666666667 106.6666666666667 170.6666666666667C106.6666666666667 197.9733333333333 114.1333333333333 224 126.9333333333333 245.3333333333334L330.6666666666667 41.8133333333334C309.3333333333333 28.8000000000001 283.3066666666666 21.3333333333334 256 21.3333333333334M64 362.6666666666667L37.3333333333333 335.5733333333334L96 276.6933333333334C75.7333333333333 246.4000000000001 64 209.92 64 170.6666666666667C64 64.64 149.9733333333333 -21.3333333333333 256 -21.3333333333333C295.2533333333334 -21.3333333333333 331.7333333333334 -9.6 362.6666666666667 10.6666666666667L416 -42.6666666666666L442.6666666666667 -15.5733333333333L278.1866666666666 149.3333333333334L64 362.6666666666667M234.6666666666667 246.6133333333333L277.3333333333333 203.9466666666667V277.3333333333334H234.6666666666667M320 426.6666666666667H192V384H320M406.1866666666666 350.9333333333334L375.8933333333333 320.64C342.8266666666667 346.88 301.2266666666667 362.6666666666667 256 362.6666666666667C216.96 362.6666666666667 180.6933333333333 350.9333333333334 150.4 330.6666666666667L181.3333333333333 299.9466666666667C203.3066666666667 312.5333333333334 228.9066666666667 320 256 320C338.56 320 405.3333333333333 253.2266666666667 405.3333333333333 170.6666666666667C405.3333333333333 143.5733333333334 397.8666666666666 117.9733333333334 385.28 96L416 65.28C436.2666666666667 95.36 448 131.6266666666667 448 170.6666666666667C448 215.8933333333334 432.2133333333334 257.4933333333334 405.9733333333334 290.3466666666667L436.2666666666667 320.64L406.1866666666667 350.9333333333334z" />
+    <glyph glyph-name="timer-sand"
+      unicode="&#xF51F;"
+      horiz-adv-x="512" d=" M128 405.3333333333333H384V277.3333333333334L298.6666666666667 192L384 106.6666666666667V-21.3333333333333H128V106.6666666666667L213.3333333333333 192L128 277.3333333333334V405.3333333333333M341.3333333333333 96L256 181.3333333333334L170.6666666666667 96V21.3333333333334H341.3333333333333V96M256 202.6666666666667L341.3333333333333 288V362.6666666666667H170.6666666666667V288L256 202.6666666666667M213.3333333333333 320H298.6666666666667V304L256 261.3333333333334L213.3333333333333 304V320z" />
+    <glyph glyph-name="timer-sand-empty"
+      unicode="&#xF6AC;"
+      horiz-adv-x="512" d=" M128 405.3333333333333V277.3333333333334L213.3333333333333 192L128 106.6666666666667V-21.3333333333333H384V106.6666666666667L298.6666666666667 192L384 277.3333333333334V405.3333333333333H128M341.3333333333333 96V21.3333333333334H170.6666666666667V96L256 181.3333333333334L341.3333333333333 96M256 202.6666666666667L170.6666666666667 288V362.6666666666667H341.3333333333333V288L256 202.6666666666667z" />
+    <glyph glyph-name="timer-sand-full"
+      unicode="&#xF78B;"
+      horiz-adv-x="512" d=" M128 405.3333333333333V277.3333333333334L213.3333333333333 192L128 106.6666666666667V-21.3333333333333H384V106.6666666666667L298.6666666666667 192L384 277.3333333333334V405.3333333333333H128z" />
+    <glyph glyph-name="timetable"
+      unicode="&#xF520;"
+      horiz-adv-x="512" d=" M298.6666666666667 192H330.6666666666667V131.84L382.7200000000001 101.76L366.7200000000001 74.0266666666666L298.6666666666667 113.28V192M85.3333333333333 405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V232.5333333333334C453.1199999999999 205.6533333333334 469.3333333333333 168.7466666666667 469.3333333333333 128C469.3333333333333 45.44 402.56 -21.3333333333333 320 -21.3333333333333C279.2533333333334 -21.3333333333333 242.3466666666667 -5.1199999999999 215.4666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M85.3333333333333 128V64H184.96C175.7866666666667 83.4133333333334 170.6666666666667 105.1733333333334 170.6666666666667 128H85.3333333333333M85.3333333333333 277.3333333333334H213.3333333333333V341.3333333333334H85.3333333333333V277.3333333333334M384 277.3333333333334V341.3333333333334H256V277.3333333333334H384M85.3333333333333 170.6666666666667H176.8533333333333C184.1066666666666 195.2 197.5466666666667 217.1733333333334 215.4666666666667 234.6666666666667H85.3333333333333V170.6666666666667M320 231.4666666666667C262.8266666666667 231.4666666666667 216.5333333333333 185.1733333333334 216.5333333333333 128C216.5333333333333 70.8266666666667 262.8266666666667 24.5333333333333 320 24.5333333333333C377.1733333333333 24.5333333333333 423.4666666666667 70.8266666666667 423.4666666666667 128C423.4666666666667 185.1733333333333 377.1733333333333 231.4666666666667 320 231.4666666666667z" />
+    <glyph glyph-name="toggle-switch"
+      unicode="&#xF521;"
+      horiz-adv-x="512" d=" M362.6666666666667 298.6666666666667H149.3333333333333C90.4533333333333 298.6666666666667 42.6666666666667 250.88 42.6666666666667 192S90.4533333333333 85.3333333333334 149.3333333333333 85.3333333333334H362.6666666666667C421.5466666666666 85.3333333333334 469.3333333333333 133.12 469.3333333333333 192S421.5466666666666 298.6666666666667 362.6666666666667 298.6666666666667M362.6666666666667 128C327.2533333333334 128 298.6666666666667 156.5866666666667 298.6666666666667 192S327.2533333333334 256 362.6666666666667 256S426.6666666666667 227.4133333333334 426.6666666666667 192S398.08 128 362.6666666666667 128z" />
+    <glyph glyph-name="toggle-switch-off"
+      unicode="&#xF522;"
+      horiz-adv-x="512" d=" M362.6666666666667 298.6666666666667H149.3333333333333C90.4533333333333 298.6666666666667 42.6666666666667 250.88 42.6666666666667 192S90.4533333333333 85.3333333333334 149.3333333333333 85.3333333333334H362.6666666666667C421.5466666666666 85.3333333333334 469.3333333333333 133.12 469.3333333333333 192S421.5466666666666 298.6666666666667 362.6666666666667 298.6666666666667M149.3333333333333 128C113.92 128 85.3333333333333 156.5866666666667 85.3333333333333 192S113.92 256 149.3333333333333 256S213.3333333333333 227.4133333333334 213.3333333333333 192S184.7466666666667 128 149.3333333333333 128z" />
+    <glyph glyph-name="toggle-switch-off-outline"
+      unicode="&#xFA18;"
+      horiz-adv-x="512" d=" M149.3333333333333 234.6666666666667C172.8 234.6666666666667 192 215.4666666666667 192 192S172.8 149.3333333333334 149.3333333333333 149.3333333333334S106.6666666666667 168.5333333333334 106.6666666666667 192S125.8666666666667 234.6666666666667 149.3333333333333 234.6666666666667M362.6666666666667 298.6666666666667C421.5466666666666 298.6666666666667 469.3333333333333 250.88 469.3333333333333 192S421.5466666666666 85.3333333333334 362.6666666666667 85.3333333333334H149.3333333333333C90.4533333333333 85.3333333333334 42.6666666666667 133.12 42.6666666666667 192S90.4533333333333 298.6666666666667 149.3333333333333 298.6666666666667H362.6666666666667M149.3333333333333 256C113.92 256 85.3333333333333 227.4133333333334 85.3333333333333 192S113.92 128 149.3333333333333 128H362.6666666666667C398.08 128 426.6666666666667 156.5866666666667 426.6666666666667 192S398.08 256 362.6666666666667 256H149.3333333333333z" />
+    <glyph glyph-name="toggle-switch-outline"
+      unicode="&#xFA19;"
+      horiz-adv-x="512" d=" M362.6666666666667 234.6666666666667C386.1333333333334 234.6666666666667 405.3333333333333 215.4666666666667 405.3333333333333 192S386.1333333333334 149.3333333333334 362.6666666666667 149.3333333333334S320 168.5333333333334 320 192S339.2 234.6666666666667 362.6666666666667 234.6666666666667M362.6666666666667 298.6666666666667C421.5466666666666 298.6666666666667 469.3333333333333 250.88 469.3333333333333 192S421.5466666666666 85.3333333333334 362.6666666666667 85.3333333333334H149.3333333333333C90.4533333333333 85.3333333333334 42.6666666666667 133.12 42.6666666666667 192S90.4533333333333 298.6666666666667 149.3333333333333 298.6666666666667H362.6666666666667M149.3333333333333 256C113.92 256 85.3333333333333 227.4133333333334 85.3333333333333 192S113.92 128 149.3333333333333 128H362.6666666666667C398.08 128 426.6666666666667 156.5866666666667 426.6666666666667 192S398.08 256 362.6666666666667 256H149.3333333333333z" />
+    <glyph glyph-name="toilet"
+      unicode="&#xF9AA;"
+      horiz-adv-x="512" d=" M192 -21.3333333333333H362.6666666666667V32C414.08 66.7733333333333 448 125.44 448 192V362.6666666666667C448 386.1333333333334 428.8 405.3333333333333 405.3333333333333 405.3333333333333H320C296.32 405.3333333333333 277.3333333333333 386.1333333333334 277.3333333333333 362.6666666666667V192H64C64 126.0800000000001 106.6666666666667 64 192 32V-21.3333333333333M112.8533333333333 149.3333333333334H399.1466666666667C386.9866666666667 108.5866666666667 357.76 74.6666666666667 320 56.96V21.3333333333334H234.6666666666667V56.96C192 64 125.0133333333333 108.5866666666667 112.8533333333333 149.3333333333334M320 362.6666666666667H405.3333333333333V192H320V362.6666666666667M341.3333333333333 341.3333333333334V277.3333333333334H384V341.3333333333334H341.3333333333333z" />
+    <glyph glyph-name="toolbox"
+      unicode="&#xF9AB;"
+      horiz-adv-x="512" d=" M192 341.3333333333334V320H320V341.3333333333334H192M469.3333333333333 64C469.3333333333333 52.6933333333333 464.8533333333333 42.6666666666667 456.5333333333333 33.92C448 25.3866666666667 438.3999999999999 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C73.6 21.3333333333334 64 25.3866666666667 55.4666666666667 33.92C47.1466666666667 42.6666666666667 42.6666666666667 52.6933333333333 42.6666666666667 64V149.3333333333334H149.3333333333333V128H192V149.3333333333334H320V128H362.6666666666667V149.3333333333334H469.3333333333333V64M96 293.9733333333334C103.2533333333333 311.2533333333334 116.2666666666667 320 135.04 320H149.3333333333333V341.3333333333334C149.3333333333333 353.0666666666667 153.1733333333333 362.6666666666667 161.4933333333334 371.4133333333334C169.8133333333333 379.7333333333334 180.0533333333333 384 192 384H320C331.9466666666667 384 342.1866666666666 379.7333333333334 350.5066666666667 371.4133333333334C358.8266666666667 362.6666666666667 362.6666666666667 353.0666666666667 362.6666666666667 341.3333333333334V320H376.9600000000001C395.7333333333334 320 408.7466666666667 311.2533333333334 416 293.9733333333334L460.3733333333333 192H362.6666666666667V213.3333333333334H320V192H192V213.3333333333334H149.3333333333333V192H51.6266666666667L96 293.9733333333334z" />
+    <glyph glyph-name="toolbox-outline"
+      unicode="&#xF9AC;"
+      horiz-adv-x="512" d=" M426.6666666666667 64V149.3333333333334H362.6666666666667V128H320V149.3333333333334H192V128H149.3333333333333V149.3333333333334H85.3333333333333V64H426.6666666666667M135.04 277.3333333333334L97.92 192H149.3333333333333V213.3333333333334H192V192H320V213.3333333333334H362.6666666666667V192H414.08L376.9600000000001 277.3333333333334H135.04M192 341.3333333333334V320H320V341.3333333333334H192M465.92 178.9866666666667C468.0533333333333 174.2933333333334 469.3333333333333 168.7466666666667 469.3333333333333 161.92V64C469.3333333333333 52.6933333333333 464.8533333333333 42.6666666666667 456.5333333333333 33.92C448 25.3866666666667 438.3999999999999 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C73.6 21.3333333333334 64 25.3866666666667 55.4666666666667 33.92C47.1466666666667 42.6666666666667 42.6666666666667 52.6933333333333 42.6666666666667 64V161.92C42.6666666666667 168.7466666666667 43.9466666666667 174.2933333333334 46.08 178.9866666666667L96 293.9733333333334C103.2533333333333 311.2533333333334 116.2666666666667 320 135.04 320H149.3333333333333V341.3333333333334C149.3333333333333 353.0666666666667 153.1733333333333 362.6666666666667 161.4933333333334 371.4133333333334C169.8133333333333 379.7333333333334 180.0533333333333 384 192 384H320C331.9466666666667 384 342.1866666666666 379.7333333333334 350.5066666666667 371.4133333333334C358.8266666666667 362.6666666666667 362.6666666666667 353.0666666666667 362.6666666666667 341.3333333333334V320H376.9600000000001C395.7333333333334 320 408.7466666666667 311.2533333333334 416 293.9733333333334L465.92 178.9866666666667z" />
+    <glyph glyph-name="tooltip"
+      unicode="&#xF523;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H341.3333333333333L256 -21.3333333333333L170.6666666666667 64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="tooltip-edit"
+      unicode="&#xF524;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H341.3333333333333L256 -21.3333333333333L170.6666666666667 64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M384 149.3333333333334V192H266.6666666666667L224 149.3333333333334H384M128 149.3333333333334H181.3333333333333L327.4666666666667 296.1066666666667C331.7333333333333 300.1600000000001 331.7333333333333 306.9866666666667 327.4666666666667 311.2533333333334L289.92 348.8C285.6533333333333 353.0666666666667 278.8266666666667 353.0666666666667 274.7733333333333 348.8L128 202.0266666666667V149.3333333333334z" />
+    <glyph glyph-name="tooltip-image"
+      unicode="&#xF525;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H341.3333333333333L256 -21.3333333333333L170.6666666666667 64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M405.3333333333333 128V298.6666666666667L320 213.3333333333334L277.3333333333333 256L149.3333333333333 128H405.3333333333333M149.3333333333333 341.3333333333334C125.8666666666667 341.3333333333334 106.6666666666667 322.1333333333334 106.6666666666667 298.6666666666667S125.8666666666667 256 149.3333333333333 256S192 275.2000000000001 192 298.6666666666667S172.8 341.3333333333334 149.3333333333333 341.3333333333334z" />
+    <glyph glyph-name="tooltip-image-outline"
+      unicode="&#xFBB1;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H341.3333333333333L256 -21.3333333333333L170.6666666666667 64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M85.3333333333333 362.6666666666667V106.6666666666667H188.3733333333333L256 39.04L323.6266666666667 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333M160 320C177.7066666666667 320 192 305.7066666666667 192 288S177.7066666666667 256 160 256S128 270.2933333333334 128 288S142.2933333333333 320 160 320M128 149.3333333333334L234.6666666666667 256L277.3333333333333 213.3333333333334L384 320V149.3333333333334H128z" />
+    <glyph glyph-name="tooltip-outline"
+      unicode="&#xF526;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H341.3333333333333L256 -21.3333333333333L170.6666666666667 64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M85.3333333333333 362.6666666666667V106.6666666666667H188.3733333333333L256 39.04L323.6266666666667 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333z" />
+    <glyph glyph-name="tooltip-plus"
+      unicode="&#xFBB2;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H341.3333333333333L256 -21.3333333333333L170.6666666666667 64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M234.6666666666667 320V256H170.6666666666667V213.3333333333334H234.6666666666667V149.3333333333334H277.3333333333333V213.3333333333334H341.3333333333333V256H277.3333333333333V320H234.6666666666667z" />
+    <glyph glyph-name="tooltip-plus-outline"
+      unicode="&#xF527;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H341.3333333333333L256 -21.3333333333333L170.6666666666667 64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M85.3333333333333 362.6666666666667V106.6666666666667H188.3733333333333L256 39.04L323.6266666666667 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333M234.6666666666667 320H277.3333333333333V256H341.3333333333333V213.3333333333334H277.3333333333333V149.3333333333334H234.6666666666667V213.3333333333334H170.6666666666667V256H234.6666666666667V320z" />
+    <glyph glyph-name="tooltip-text"
+      unicode="&#xF528;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H341.3333333333333L256 -21.3333333333333L170.6666666666667 64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M106.6666666666667 341.3333333333334V298.6666666666667H405.3333333333333V341.3333333333334H106.6666666666667M106.6666666666667 256V213.3333333333334H320V256H106.6666666666667M106.6666666666667 170.6666666666667V128H362.6666666666667V170.6666666666667H106.6666666666667z" />
+    <glyph glyph-name="tooltip-text-outline"
+      unicode="&#xFBB3;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H426.6666666666667C450.1333333333334 405.3333333333333 469.3333333333333 386.1333333333334 469.3333333333333 362.6666666666667V106.6666666666667C469.3333333333333 83.2 450.1333333333334 64 426.6666666666667 64H341.3333333333333L256 -21.3333333333333L170.6666666666667 64H85.3333333333333C61.8666666666667 64 42.6666666666667 83.2 42.6666666666667 106.6666666666667V362.6666666666667C42.6666666666667 386.1333333333334 61.8666666666667 405.3333333333333 85.3333333333333 405.3333333333333M85.3333333333333 362.6666666666667V106.6666666666667H188.3733333333333L256 39.04L323.6266666666667 106.6666666666667H426.6666666666667V362.6666666666667H85.3333333333333M128 298.6666666666667H384V256H128V298.6666666666667M128 213.3333333333334H341.3333333333333V170.6666666666667H128V213.3333333333334z" />
+    <glyph glyph-name="tooth"
+      unicode="&#xF8C2;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333C85.3333333333333 405.3333333333333 42.6666666666667 341.3333333333334 42.6666666666667 277.3333333333334C42.6666666666667 232.32 64 170.6666666666667 85.3333333333333 149.3333333333334S128 -21.3333333333333 170.6666666666667 -21.3333333333333C267.52 -21.3333333333333 213.3333333333333 128 256 128S244.48 -21.3333333333333 341.3333333333333 -21.3333333333333C384 -21.3333333333333 405.3333333333333 128 426.6666666666667 149.3333333333334S469.3333333333333 232.32 469.3333333333333 277.3333333333334C469.3333333333333 341.3333333333334 426.6666666666667 405.3333333333333 362.6666666666667 405.3333333333333S298.6666666666667 384 256 384S213.3333333333333 405.3333333333333 149.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="tooth-outline"
+      unicode="&#xF529;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333C85.3333333333333 405.3333333333333 42.6666666666667 341.3333333333334 42.6666666666667 277.3333333333334C42.6666666666667 232.32 64 170.6666666666667 85.3333333333333 149.3333333333334S128 -21.3333333333333 170.6666666666667 -21.3333333333333C267.52 -21.3333333333333 213.3333333333333 128 256 128S244.48 -21.3333333333333 341.3333333333333 -21.3333333333333C384 -21.3333333333333 405.3333333333333 128 426.6666666666667 149.3333333333334S469.3333333333333 232.32 469.3333333333333 277.3333333333334C469.3333333333333 341.3333333333334 426.6666666666667 405.3333333333333 362.6666666666667 405.3333333333333S298.6666666666667 384 256 384S213.3333333333333 405.3333333333333 149.3333333333333 405.3333333333333M149.3333333333333 362.6666666666667C192 362.6666666666667 213.3333333333333 341.3333333333334 256 341.3333333333334S320 362.6666666666667 362.6666666666667 362.6666666666667C398.2933333333334 362.6666666666667 426.6666666666667 320 426.6666666666667 277.3333333333334C426.6666666666667 240 408.32 189.6533333333334 388.0533333333334 169.3866666666667C369.7066666666667 151.0400000000001 342.6133333333334 22.6133333333334 330.6666666666667 22.6133333333334C326.1866666666667 22.6133333333334 320 45.2266666666667 320 72.7466666666668C320 116.2666666666668 307.8400000000001 170.6666666666668 256 170.6666666666668S192 116.2666666666668 192 72.7466666666668C192 45.2266666666668 185.8133333333334 22.6133333333334 181.3333333333334 22.6133333333334C169.3866666666667 22.6133333333334 142.2933333333334 151.0400000000001 123.9466666666667 169.3866666666667C103.68 189.6533333333334 85.3333333333333 240 85.3333333333333 277.3333333333334C85.3333333333333 320 113.7066666666667 362.6666666666667 149.3333333333333 362.6666666666667z" />
+    <glyph glyph-name="tor"
+      unicode="&#xF52A;"
+      horiz-adv-x="512" d=" M256 149.3333333333334C234.6666666666667 149.3333333333334 192 128 192 106.6666666666667C192 64 256 64 256 64V85.3333333333334C244.2666666666667 85.3333333333334 234.6666666666667 94.9333333333333 234.6666666666667 106.6666666666667S244.2666666666667 128 256 128V149.3333333333334M256 42.6666666666667S170.6666666666667 53.3333333333334 170.6666666666667 96C170.6666666666667 160 234.6666666666667 176 256 176V202.6666666666667C234.6666666666667 202.6666666666667 149.3333333333333 170.6666666666667 149.3333333333333 106.6666666666667C149.3333333333333 21.3333333333334 256 21.3333333333334 256 21.3333333333334V42.6666666666667M214.8266666666667 298.0266666666667L240.2133333333333 286.7200000000001C249.3866666666667 338.7733333333333 273.92 373.3333333333333 273.92 373.3333333333333C264.7466666666667 351.36 258.7733333333333 333.2266666666667 254.9333333333333 318.9333333333334C280.7466666666667 372.2666666666667 333.0133333333333 405.3333333333333 333.0133333333333 405.3333333333333C307.84 380.1600000000001 289.28 352.8533333333334 276.6933333333333 330.0266666666667C310.4 365.8666666666667 357.12 389.3333333333334 357.12 389.3333333333334C299.7333333333333 352.64 273.92 294.4000000000001 267.52 278.1866666666667L279.2533333333334 276.48C279.2533333333334 265.3866666666667 279.2533333333334 255.1466666666667 284.5866666666667 247.0400000000001C300.8 206.72 384 203.3066666666667 384 106.6666666666667S298.0266666666667 -21.3333333333333 252.3733333333334 -21.3333333333333C206.72 -21.3333333333333 106.6666666666667 -0.64 106.6666666666667 106.6666666666667S212.2666666666667 214.8266666666667 231.04 257.7066666666667C233.6 265.8133333333334 214.8266666666667 298.0266666666667 214.8266666666667 298.0266666666667z" />
+    <glyph glyph-name="tournament"
+      unicode="&#xF9AD;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333V362.6666666666667H149.3333333333333V277.3333333333334H42.6666666666667V234.6666666666667H149.3333333333333C173.0133333333333 234.6666666666667 192 253.6533333333334 192 277.3333333333334V298.6666666666667H298.6666666666667V85.3333333333334H192V106.6666666666667C192 130.3466666666667 173.0133333333333 149.3333333333334 149.3333333333333 149.3333333333334H42.6666666666667V106.6666666666667H149.3333333333333V21.3333333333334H42.6666666666667V-21.3333333333333H149.3333333333333C173.0133333333333 -21.3333333333333 192 -2.3466666666666 192 21.3333333333334V42.6666666666667H298.6666666666667C322.3466666666667 42.6666666666667 341.3333333333333 61.6533333333334 341.3333333333333 85.3333333333334V170.6666666666667H469.3333333333333V213.3333333333334H341.3333333333333V298.6666666666667C341.3333333333333 322.3466666666667 322.3466666666667 341.3333333333334 298.6666666666667 341.3333333333334H192V362.6666666666667C192 386.3466666666667 173.0133333333333 405.3333333333333 149.3333333333333 405.3333333333333H42.6666666666667z" />
+    <glyph glyph-name="tower-beach"
+      unicode="&#xF680;"
+      horiz-adv-x="512" d=" M362.6666666666667 362.6666666666667V277.3333333333334H384V234.6666666666667H376.32L448 -42.6666666666666H403.84L391.8933333333333 3.6266666666667L256 82.1333333333334L120.1066666666667 3.6266666666667L108.16 -42.6666666666666H64L135.68 234.6666666666667H128V277.3333333333334H149.3333333333333V362.6666666666667H128V384L384 426.6666666666667V362.6666666666667H362.6666666666667M155.3066666666667 140.16L135.04 61.44L213.3333333333333 106.6666666666667L155.3066666666667 140.16M332.16 234.6666666666667H179.84L166.4 183.04L256 131.2000000000001L345.6 183.04L332.16 234.6666666666667M376.9599999999999 61.4400000000001L356.6933333333333 140.1600000000001L298.6666666666667 106.6666666666667L376.9600000000001 61.44z" />
+    <glyph glyph-name="tower-fire"
+      unicode="&#xF681;"
+      horiz-adv-x="512" d=" M362.6666666666667 362.6666666666667V277.3333333333334H384V234.6666666666667H376.32L448 -42.6666666666666H403.84L391.8933333333333 3.6266666666667L256 82.1333333333334L120.1066666666667 3.6266666666667L108.16 -42.6666666666666H64L135.68 234.6666666666667H128V277.3333333333334H149.3333333333333V362.6666666666667H128V384L256 426.6666666666667L384 384V362.6666666666667H362.6666666666667M155.3066666666667 140.16L135.04 61.44L213.3333333333333 106.6666666666667L155.3066666666667 140.16M332.16 234.6666666666667H179.84L166.4 183.04L256 131.2000000000001L345.6 183.04L332.16 234.6666666666667M376.9599999999999 61.4400000000001L356.6933333333333 140.1600000000001L298.6666666666667 106.6666666666667L376.9600000000001 61.44z" />
+    <glyph glyph-name="towing"
+      unicode="&#xF83B;"
+      horiz-adv-x="512" d=" M320 234.6666666666667H434.9866666666667L363.9466666666667 320H320V234.6666666666667M373.3333333333333 53.3333333333334C381.6533333333333 53.3333333333334 389.12 56.1066666666667 395.52 62.5066666666667C401.92 68.9066666666667 405.3333333333333 76.3733333333333 405.3333333333333 85.3333333333334C405.3333333333333 93.6533333333334 401.92 101.12 395.52 107.52C389.12 113.92 381.6533333333333 117.3333333333334 373.3333333333333 117.3333333333334C364.3733333333333 117.3333333333334 356.9066666666667 113.92 350.5066666666667 107.52C344.1066666666667 101.12 341.3333333333333 93.6533333333334 341.3333333333333 85.3333333333334C341.3333333333333 76.3733333333333 344.1066666666667 68.9066666666667 350.5066666666667 62.5066666666667C356.9066666666667 56.1066666666667 364.3733333333333 53.3333333333334 373.3333333333333 53.3333333333334M128 53.3333333333334C137.3866666666667 53.3333333333334 145.0666666666667 56.1066666666667 151.04 62.5066666666667S160 76.3733333333333 160 85.3333333333334C160 93.6533333333334 157.0133333333333 101.12 151.04 107.52C145.0666666666667 113.92 137.3866666666667 117.3333333333334 128 117.3333333333334C118.6133333333333 117.3333333333334 110.9333333333333 113.92 104.96 107.52C98.9866666666667 101.12 96 93.6533333333334 96 85.3333333333334C96 76.3733333333333 98.9866666666667 68.9066666666667 104.96 62.5066666666667C110.9333333333333 56.1066666666667 118.6133333333333 53.3333333333334 128 53.3333333333334M384 362.6666666666667L490.6666666666666 234.6666666666667V85.3333333333334H437.3333333333333C437.3333333333333 67.6266666666667 430.7200000000001 52.6933333333333 417.92 39.8933333333334C405.3333333333333 27.3066666666667 390.4 21.3333333333334 373.3333333333333 21.3333333333334C355.6266666666667 21.3333333333334 340.6933333333334 27.3066666666667 328.1066666666667 39.8933333333334C315.3066666666666 52.6933333333334 309.3333333333333 67.6266666666667 309.3333333333333 85.3333333333334H192C192 67.6266666666667 185.6 52.6933333333333 173.0133333333333 39.8933333333334C160 27.3066666666667 145.28 21.3333333333334 128 21.3333333333334C110.72 21.3333333333334 96 27.3066666666667 82.9866666666667 39.8933333333334C70.4 52.6933333333333 64 67.6266666666667 64 85.3333333333334H21.3333333333333V170.6666666666667H196.0533333333333L64 274.9866666666667V213.3333333333334H21.3333333333333V341.3333333333334H42.6666666666667L277.3333333333333 212.0533333333334V362.6666666666667H384z" />
+    <glyph glyph-name="track-light"
+      unicode="&#xF913;"
+      horiz-adv-x="512" d=" M128 426.6666666666667V384H192V311.4666666666667L87.68 354.56L30.5066666666667 216.7466666666667L148.6933333333333 167.68L254.7200000000001 89.1733333333334L294.1866666666667 72.7466666666667L375.8933333333333 269.8666666666667L336.4266666666667 286.2933333333334L234.6666666666667 301.44V384H298.6666666666667V426.6666666666667H128M465.28 313.8133333333334L416.0000000000001 293.3333333333334L432.2133333333334 253.8666666666667L481.4933333333334 274.3466666666667L465.28 313.8133333333334M421.9733333333334 158.5066666666667L405.3333333333333 119.04L464.8533333333333 94.5066666666667L481.0666666666667 133.9733333333334L421.9733333333334 158.5066666666667M345.3866666666667 44.16L305.92 27.9466666666667L326.4 -21.3333333333333L365.8666666666667 -4.9066666666666L345.3866666666667 44.16z" />
+    <glyph glyph-name="trackpad"
+      unicode="&#xF7F7;"
+      horiz-adv-x="512" d=" M85.3333333333333 384H426.6666666666667C450.1333333333334 384 469.3333333333333 364.8 469.3333333333333 341.3333333333334V42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667V341.3333333333334C42.6666666666667 364.8 61.8666666666667 384 85.3333333333333 384M85.3333333333333 341.3333333333334V170.6666666666667H426.6666666666667V341.3333333333334H85.3333333333333M85.3333333333333 42.6666666666667H234.6666666666667V128H85.3333333333333V42.6666666666667M426.6666666666667 42.6666666666667V128H277.3333333333333V42.6666666666667H426.6666666666667z" />
+    <glyph glyph-name="trackpad-lock"
+      unicode="&#xF932;"
+      horiz-adv-x="512" d=" M64 426.6666666666667C40.32 426.6666666666667 21.3333333333333 407.68 21.3333333333333 384V85.3333333333334C21.3333333333333 61.6533333333334 40.32 42.6666666666667 64 42.6666666666667H298.6666666666667V85.3333333333334H256V170.6666666666667H355.84C373.3333333333333 184.5333333333334 394.0266666666667 192 416 192C426.6666666666667 192 437.3333333333333 190.0800000000001 448 186.4533333333334V384C448 407.68 429.0133333333333 426.6666666666667 405.3333333333333 426.6666666666667H64M64 384H405.3333333333333V213.3333333333334H64V384M64 170.6666666666667H213.3333333333333V85.3333333333334H64V170.6666666666667M416 149.3333333333334C386.56 149.3333333333334 362.6666666666667 125.44 362.6666666666667 96V85.3333333333334C350.9333333333333 85.3333333333334 341.3333333333333 75.7333333333334 341.3333333333333 64V-21.3333333333333C341.3333333333333 -33.0666666666667 350.9333333333333 -42.6666666666666 362.6666666666667 -42.6666666666666H469.3333333333333C481.0666666666667 -42.6666666666666 490.6666666666666 -33.0666666666667 490.6666666666666 -21.3333333333333V64C490.6666666666666 75.7333333333334 481.0666666666667 85.3333333333334 469.3333333333333 85.3333333333334V96C469.3333333333333 125.44 445.44 149.3333333333334 416 149.3333333333334M416 128C433.7066666666666 128 448 113.7066666666667 448 96V85.3333333333334H384V96C384 113.7066666666667 398.2933333333334 128 416 128z" />
+    <glyph glyph-name="tractor"
+      unicode="&#xF891;"
+      horiz-adv-x="512" d=" M106.6666666666667 362.6666666666667V207.7866666666667C68.2666666666667 194.1333333333333 42.6666666666667 157.8666666666667 42.6666666666667 117.3333333333334C42.6666666666667 64 85.3333333333333 21.3333333333334 138.6666666666667 21.3333333333334C187.52 21.3333333333334 228.48 58.0266666666666 234.0266666666667 106.6666666666667H323.6266666666666C321.28 99.84 320 92.5866666666667 320 85.3333333333334C320 49.92 348.5866666666667 21.3333333333334 384 21.3333333333334S448 49.92 448 85.3333333333334C448 92.5866666666667 446.7200000000001 99.84 444.16 106.6666666666667H469.3333333333333V170.6666666666667C469.3333333333333 194.3466666666667 450.3466666666667 213.3333333333334 426.6666666666667 213.3333333333334H320.8533333333333L291.2 362.6666666666667H106.6666666666667M149.3333333333333 320H256L277.3333333333333 213.3333333333334V149.3333333333334H229.12C216.7466666666667 183.8933333333334 185.8133333333333 208.4266666666667 149.3333333333333 212.6933333333334V320M138.6666666666667 165.3333333333334C165.12 165.3333333333334 186.6666666666667 143.7866666666667 186.6666666666667 117.3333333333334S165.12 69.3333333333334 138.6666666666667 69.3333333333334S90.6666666666667 90.8800000000001 90.6666666666667 117.3333333333334S112.2133333333333 165.3333333333334 138.6666666666667 165.3333333333334M384 117.3333333333334C401.7066666666666 117.3333333333334 416 103.04 416 85.3333333333334S401.7066666666666 53.3333333333334 384 53.3333333333334S352 67.6266666666667 352 85.3333333333334S366.2933333333334 117.3333333333334 384 117.3333333333334z" />
+    <glyph glyph-name="trademark"
+      unicode="&#xFA77;"
+      horiz-adv-x="512" d=" M209.0666666666667 267.9466666666667H146.56V106.6666666666667H104.32V267.9466666666667H42.6666666666667V298.6666666666667H209.0666666666667V267.9466666666667M288 298.6666666666667L340.48 160L392.7466666666667 298.6666666666667H448V106.6666666666667H405.3333333333333V160L410.0266666666667 250.88L354.7733333333333 106.6666666666667H325.9733333333333L270.9333333333333 250.6666666666667L275.2 160V106.6666666666667H233.1733333333333V298.6666666666667H288z" />
+    <glyph glyph-name="traffic-light"
+      unicode="&#xF52B;"
+      horiz-adv-x="512" d=" M256 256C232.5333333333334 256 213.3333333333333 275.2000000000001 213.3333333333333 298.6666666666667C213.3333333333333 322.3466666666667 232.5333333333334 341.3333333333334 256 341.3333333333334C279.68 341.3333333333334 298.6666666666667 322.3466666666667 298.6666666666667 298.6666666666667C298.6666666666667 275.2000000000001 279.4666666666667 256 256 256M256 149.3333333333334C232.5333333333334 149.3333333333334 213.3333333333333 168.5333333333334 213.3333333333333 192C213.3333333333333 215.68 232.5333333333334 234.6666666666667 256 234.6666666666667C279.68 234.6666666666667 298.6666666666667 215.68 298.6666666666667 192C298.6666666666667 168.5333333333334 279.4666666666667 149.3333333333334 256 149.3333333333334M256 42.6666666666667C232.5333333333334 42.6666666666667 213.3333333333333 61.8666666666667 213.3333333333333 85.3333333333334C213.3333333333333 109.0133333333333 232.5333333333334 128 256 128C279.68 128 298.6666666666667 109.0133333333333 298.6666666666667 85.3333333333334C298.6666666666667 61.8666666666667 279.4666666666667 42.6666666666667 256 42.6666666666667M426.6666666666667 234.6666666666667H362.6666666666667V258.9866666666667C399.36 268.5866666666667 426.6666666666667 301.6533333333334 426.6666666666667 341.3333333333334H362.6666666666667V362.6666666666667C362.6666666666667 374.4 353.0666666666667 384 341.3333333333333 384H170.6666666666667C158.9333333333333 384 149.3333333333333 374.4 149.3333333333333 362.6666666666667V341.3333333333334H85.3333333333333C85.3333333333333 301.6533333333333 112.64 268.5866666666667 149.3333333333333 258.9866666666667V234.6666666666667H85.3333333333333C85.3333333333333 194.9866666666667 112.64 161.92 149.3333333333333 152.3200000000001V128H85.3333333333333C85.3333333333333 88.3200000000001 112.64 55.2533333333333 149.3333333333333 45.6533333333334V21.3333333333334C149.3333333333333 9.6 158.9333333333333 0 170.6666666666667 0H341.3333333333333C353.0666666666667 0 362.6666666666667 9.6 362.6666666666667 21.3333333333334V45.6533333333334C399.36 55.2533333333333 426.6666666666667 88.3200000000001 426.6666666666667 128H362.6666666666667V152.3200000000001C399.36 161.92 426.6666666666667 194.9866666666667 426.6666666666667 234.6666666666667z" />
+    <glyph glyph-name="train"
+      unicode="&#xF52C;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C170.6666666666667 405.3333333333333 85.3333333333333 394.6666666666667 85.3333333333333 320V117.3333333333334C85.3333333333333 76.16 118.8266666666667 42.6666666666667 160 42.6666666666667L128 10.6666666666667V0H175.5733333333333L218.24 42.6666666666667H298.6666666666667L341.3333333333333 0H384V10.6666666666667L352 42.6666666666667C393.1733333333333 42.6666666666667 426.6666666666667 76.16 426.6666666666667 117.3333333333334V320C426.6666666666667 394.6666666666667 350.2933333333334 405.3333333333333 256 405.3333333333333M160 85.3333333333334C142.2933333333333 85.3333333333334 128 99.6266666666667 128 117.3333333333334S142.2933333333333 149.3333333333334 160 149.3333333333334S192 135.04 192 117.3333333333334S177.7066666666667 85.3333333333334 160 85.3333333333334M234.6666666666667 234.6666666666667H128V320H234.6666666666667V234.6666666666667M277.3333333333333 234.6666666666667V320H384V234.6666666666667H277.3333333333333M352 85.3333333333334C334.2933333333333 85.3333333333334 320 99.6266666666667 320 117.3333333333334S334.2933333333333 149.3333333333334 352 149.3333333333334S384 135.04 384 117.3333333333334S369.7066666666666 85.3333333333334 352 85.3333333333334z" />
+    <glyph glyph-name="train-car"
+      unicode="&#xFBB4;"
+      horiz-adv-x="512" d=" M256 362.6666666666667H106.6666666666667C71.2533333333333 362.6666666666667 42.6666666666667 334.0800000000001 42.6666666666667 298.6666666666667V128C42.6666666666667 92.5866666666667 71.2533333333333 64 106.6666666666667 64L85.3333333333333 42.6666666666667V21.3333333333334H106.6666666666667L149.3333333333333 64.64L192 64V170.6666666666667H85.3333333333333V320H277.3333333333333V277.3333333333334H320V298.6666666666667C320 334.0800000000001 291.4133333333333 362.6666666666667 256 362.6666666666667M106.6666666666667 149.3333333333334C118.4 149.3333333333334 128 139.7333333333334 128 128S118.4 106.6666666666667 106.6666666666667 106.6666666666667S85.3333333333333 116.2666666666667 85.3333333333333 128S94.9333333333333 149.3333333333334 106.6666666666667 149.3333333333334M438.8266666666667 241.92C435.84 250.4533333333334 427.7333333333334 256 418.1333333333334 256H264.7466666666667C254.9333333333333 256 247.04 250.4533333333334 243.84 241.92L213.3333333333333 154.24V36.6933333333333C213.3333333333333 28.5866666666667 220.16 21.3333333333334 228.2666666666667 21.3333333333334H241.4933333333333C249.6 21.3333333333334 256 29.44 256 37.5466666666667V64H426.6666666666667V37.5466666666667C426.6666666666667 29.4400000000001 433.28 21.3333333333334 441.3866666666667 21.3333333333334H454.4C462.5066666666667 21.3333333333334 469.3333333333333 28.5866666666667 469.3333333333333 36.6933333333333V154.24L438.8266666666667 241.92M264.7466666666667 234.6666666666667H418.1333333333334L440.1066666666667 170.6666666666667H242.7733333333334L264.7466666666667 234.6666666666667M256 106.6666666666667C244.2666666666667 106.6666666666667 234.6666666666667 116.2666666666667 234.6666666666667 128S244.2666666666667 149.3333333333334 256 149.3333333333334S277.3333333333333 139.7333333333334 277.3333333333333 128S267.7333333333334 106.6666666666667 256 106.6666666666667M426.6666666666667 106.6666666666667C414.9333333333333 106.6666666666667 405.3333333333333 116.2666666666667 405.3333333333333 128S414.9333333333333 149.3333333333334 426.6666666666667 149.3333333333334S448 139.7333333333334 448 128S438.4 106.6666666666667 426.6666666666667 106.6666666666667z" />
+    <glyph glyph-name="train-variant"
+      unicode="&#xF8C3;"
+      horiz-adv-x="512" d=" M384 234.6666666666667H128V341.3333333333334H384M256 85.3333333333334C232.32 85.3333333333334 213.3333333333333 104.5333333333333 213.3333333333333 128C213.3333333333333 151.68 232.32 170.6666666666667 256 170.6666666666667C279.4666666666667 170.6666666666667 298.6666666666667 151.4666666666667 298.6666666666667 128S279.4666666666667 85.3333333333334 256 85.3333333333334M85.3333333333333 117.3333333333334C85.3333333333333 76.16 118.8266666666667 42.6666666666667 160 42.6666666666667L128 10.6666666666667V0H384V10.6666666666667L352 42.6666666666667C393.1733333333333 42.6666666666667 426.6666666666667 76.16 426.6666666666667 117.3333333333334V341.3333333333334C426.6666666666667 416 350.2933333333334 426.6666666666667 256 426.6666666666667S85.3333333333333 416 85.3333333333333 341.3333333333334V117.3333333333334z" />
+    <glyph glyph-name="tram"
+      unicode="&#xF52D;"
+      horiz-adv-x="512" d=" M405.3333333333333 86.6133333333334V266.6666666666667C405.3333333333333 326.1866666666667 349.6533333333333 339.2000000000001 277.3333333333333 341.3333333333334L293.3333333333333 373.3333333333334H362.6666666666667V405.3333333333333H149.3333333333333V373.3333333333334H250.6666666666667L234.6666666666667 341.3333333333334C167.68 338.9866666666667 106.6666666666667 325.76 106.6666666666667 266.6666666666667V86.6133333333334C106.6666666666667 55.6800000000001 132.0533333333333 29.8666666666667 161.92 23.2533333333334L128 -10.6666666666666V-21.3333333333333H175.5733333333333L218.24 21.3333333333334H298.6666666666667L341.3333333333333 -21.3333333333333H384V-10.6666666666666L352 21.3333333333334H350.2933333333334C386.3466666666667 21.3333333333334 405.3333333333333 50.5600000000001 405.3333333333333 86.6133333333334M256 53.3333333333334C238.2933333333333 53.3333333333334 224 67.6266666666667 224 85.3333333333334S238.2933333333333 117.3333333333334 256 117.3333333333334S288 103.04 288 85.3333333333334S273.7066666666667 53.3333333333334 256 53.3333333333334M362.6666666666667 149.3333333333334H149.3333333333333V256H362.6666666666667V149.3333333333334z" />
+    <glyph glyph-name="transcribe"
+      unicode="&#xF52E;"
+      horiz-adv-x="512" d=" M426.6666666666667 341.3333333333334C450.1333333333334 341.3333333333334 469.3333333333333 322.1333333333334 469.3333333333333 298.6666666666667V85.3333333333334C469.3333333333333 61.8666666666667 450.1333333333334 42.6666666666667 426.6666666666667 42.6666666666667H85.3333333333333C61.6533333333333 42.6666666666667 42.6666666666667 61.8666666666667 42.6666666666667 85.3333333333334V298.6666666666667C42.6666666666667 322.3466666666667 61.6533333333333 341.3333333333334 85.3333333333333 341.3333333333334H426.6666666666667M384 85.3333333333334V128H266.6666666666667L224 85.3333333333334H384M128 85.3333333333334H181.3333333333333L327.4666666666667 232.1066666666667C331.7333333333333 236.16 331.7333333333333 242.9866666666667 327.4666666666667 247.2533333333334L289.92 284.8C285.6533333333333 289.0666666666667 278.8266666666667 289.0666666666667 274.7733333333333 284.8L128 138.0266666666667V85.3333333333334z" />
+    <glyph glyph-name="transcribe-close"
+      unicode="&#xF52F;"
+      horiz-adv-x="512" d=" M256 -42.6666666666666L170.6666666666667 42.6666666666667H341.3333333333333L256 -42.6666666666666M426.6666666666667 384C450.1333333333334 384 469.3333333333333 364.8 469.3333333333333 341.3333333333334V128C469.3333333333333 104.5333333333333 450.1333333333334 85.3333333333334 426.6666666666667 85.3333333333334H85.3333333333333C61.8666666666667 85.3333333333334 42.6666666666667 104.5333333333333 42.6666666666667 128V341.3333333333334C42.6666666666667 364.8 61.8666666666667 384 85.3333333333333 384H426.6666666666667M384 128V170.6666666666667H266.6666666666667L224 128H384M128 128H181.3333333333333L327.4666666666667 274.7733333333333C331.7333333333333 278.8266666666667 331.7333333333333 285.6533333333333 327.4666666666667 289.7066666666667L289.92 327.4666666666667C285.6533333333333 331.7333333333334 278.8266666666667 331.7333333333334 274.7733333333333 327.4666666666667L128 180.6933333333334V128z" />
+    <glyph glyph-name="transfer"
+      unicode="&#xF530;"
+      horiz-adv-x="512" d=" M64 277.3333333333334H106.6666666666667V106.6666666666667H64V277.3333333333334M149.3333333333333 277.3333333333334H192V106.6666666666667H149.3333333333333V277.3333333333334M234.6666666666667 277.3333333333334H277.3333333333333V106.6666666666667H234.6666666666667V277.3333333333334M320 37.3333333333334V346.6666666666667L474.6666666666666 192L320 37.3333333333334z" />
+    <glyph glyph-name="transit-transfer"
+      unicode="&#xF6AD;"
+      horiz-adv-x="512" d=" M352 117.3333333333334H469.3333333333333V85.3333333333334H352V48L298.6666666666667 101.3333333333334L352 154.6666666666667V117.3333333333334M416 26.6666666666667V64L469.3333333333333 10.6666666666667L416 -42.6666666666666V-5.3333333333333H298.6666666666667V26.6666666666667H416M202.6666666666667 330.6666666666667C179.2 330.6666666666667 160 349.8666666666667 160 373.3333333333334S179.2 416 202.6666666666667 416S245.3333333333333 396.8 245.3333333333333 373.3333333333334S226.1333333333334 330.6666666666667 202.6666666666667 330.6666666666667M122.6666666666667 258.1333333333334L85.3333333333333 242.1333333333334V170.6666666666667H42.6666666666667V270.9333333333334L154.6666666666667 316.8C160 318.9333333333334 165.3333333333333 320 170.6666666666667 320C185.6 320 199.4666666666667 312.5333333333334 206.9333333333333 299.7333333333334L227.2 265.6C246.4 234.6666666666667 280.5333333333333 213.3333333333334 320 213.3333333333334V170.6666666666667C273.0666666666667 170.6666666666667 231.4666666666667 192 203.7333333333334 226.1333333333334L190.9333333333333 162.1333333333333L234.6666666666667 118.4V-42.6666666666666H192V85.3333333333334L146.1333333333333 128L108.8 -42.6666666666666H64L122.6666666666667 258.1333333333334z" />
+    <glyph glyph-name="transition"
+      unicode="&#xF914;"
+      horiz-adv-x="512" d=" M320 405.3333333333333C402.56 405.3333333333333 469.3333333333333 338.56 469.3333333333333 256C469.3333333333333 198.1866666666667 436.48 148.2666666666667 388.6933333333333 123.3066666666667C374.3999999999999 96 352 73.6000000000001 324.6933333333333 59.3066666666667C299.7333333333334 11.52 249.8133333333334 -21.3333333333333 192 -21.3333333333333C109.44 -21.3333333333333 42.6666666666667 45.44 42.6666666666667 128C42.6666666666667 185.8133333333334 75.52 235.7333333333334 123.3066666666667 260.6933333333334C137.6 288 160 310.4 187.3066666666667 324.6933333333334C212.2666666666667 372.48 262.1866666666666 405.3333333333333 320 405.3333333333333M256 42.6666666666667C173.44 42.6666666666667 106.6666666666667 109.44 106.6666666666667 192C93.2266666666667 174.0800000000001 85.3333333333333 152.1066666666667 85.3333333333333 128C85.3333333333333 69.1200000000001 133.12 21.3333333333334 192 21.3333333333334C216.1066666666666 21.3333333333334 238.08 29.2266666666667 256 42.6666666666667M320 106.6666666666667C237.44 106.6666666666667 170.6666666666667 173.44 170.6666666666667 256C157.2266666666667 238.08 149.3333333333333 216.1066666666667 149.3333333333333 192C149.3333333333333 133.12 197.12 85.3333333333334 256 85.3333333333334C280.1066666666667 85.3333333333334 302.08 93.2266666666667 320 106.6666666666667M320 362.6666666666667C295.8933333333333 362.6666666666667 273.92 354.7733333333333 256 341.3333333333334C338.56 341.3333333333334 405.3333333333333 274.5600000000001 405.3333333333333 192C418.7733333333333 209.92 426.6666666666667 231.8933333333334 426.6666666666667 256C426.6666666666667 314.88 378.88 362.6666666666667 320 362.6666666666667M213.3333333333333 256C213.3333333333333 197.12 261.12 149.3333333333334 320 149.3333333333334C332.8 149.3333333333334 344.9600000000001 151.4666666666667 356.2666666666667 155.7333333333334C360.5333333333333 167.04 362.6666666666667 179.2000000000001 362.6666666666667 192C362.6666666666667 250.88 314.88 298.6666666666667 256 298.6666666666667C243.2 298.6666666666667 231.04 296.5333333333334 219.7333333333334 292.2666666666667C215.4666666666667 280.9600000000001 213.3333333333333 268.8 213.3333333333333 256z" />
+    <glyph glyph-name="transition-masked"
+      unicode="&#xF915;"
+      horiz-adv-x="512" d=" M320 405.3333333333333C361.3866666666667 405.3333333333333 396.5866666666667 390.4 425.6 361.6C454.4 332.5866666666667 469.3333333333333 297.3866666666667 469.3333333333333 256C469.3333333333333 222.72 458.6666666666666 192.8533333333333 439.04 166.4C418.9866666666666 140.16 393.3866666666666 122.24 362.0266666666667 113.0666666666667L362.6666666666667 119.8933333333334V128C362.6666666666667 174.72 346.24 214.8266666666667 312.5333333333333 248.5333333333334S238.72 298.6666666666667 192 298.6666666666667H184.1066666666667L177.0666666666667 298.0266666666667C186.24 329.3866666666667 204.16 354.9866666666667 230.4 375.04C256.8533333333333 394.6666666666667 286.72 405.3333333333333 320 405.3333333333333M192 277.3333333333334C274.56 277.3333333333334 341.3333333333333 210.56 341.3333333333333 128S274.56 -21.3333333333333 192 -21.3333333333333S42.6666666666667 45.44 42.6666666666667 128S109.44 277.3333333333334 192 277.3333333333334M192 234.6666666666667C133.12 234.6666666666667 85.3333333333333 186.88 85.3333333333333 128S133.12 21.3333333333334 192 21.3333333333334S298.6666666666667 69.1200000000001 298.6666666666667 128S250.88 234.6666666666667 192 234.6666666666667z" />
+    <glyph glyph-name="translate"
+      unicode="&#xF5CA;"
+      horiz-adv-x="512" d=" M274.56 126.5066666666667L220.3733333333333 180.0533333333334L221.0133333333333 180.6933333333333C258.1333333333333 222.08 284.5866666666666 269.6533333333333 300.1599999999999 320H362.6666666666667V362.6666666666667H213.3333333333333V405.3333333333333H170.6666666666667V362.6666666666667H21.3333333333333V320H259.6266666666667C245.3333333333333 279.04 222.72 240 192 205.8666666666667C172.16 227.84 155.7333333333333 251.9466666666667 142.72 277.3333333333334H100.0533333333333C115.6266666666667 242.5600000000001 136.96 209.7066666666667 163.6266666666667 180.0533333333334L55.04 72.96L85.3333333333333 42.6666666666667L192 149.3333333333334L258.3466666666667 82.9866666666667L274.56 126.5066666666667M394.6666666666667 234.6666666666667H352L256 -21.3333333333333H298.6666666666667L322.56 42.6666666666667H423.8933333333333L448 -21.3333333333333H490.6666666666666L394.6666666666667 234.6666666666667M338.7733333333333 85.3333333333334L373.3333333333333 177.7066666666667L407.8933333333333 85.3333333333334H338.7733333333333z" />
+    <glyph glyph-name="trash-can"
+      unicode="&#xFA78;"
+      horiz-adv-x="512" d=" M192 384V362.6666666666667H85.3333333333333V320H106.6666666666667V42.6666666666667C106.6666666666667 19.2 125.8666666666667 0 149.3333333333333 0H362.6666666666667C386.1333333333334 0 405.3333333333333 19.2 405.3333333333333 42.6666666666667V320H426.6666666666667V362.6666666666667H320V384H192M192 277.3333333333334H234.6666666666667V85.3333333333334H192V277.3333333333334M277.3333333333333 277.3333333333334H320V85.3333333333334H277.3333333333333V277.3333333333334z" />
+    <glyph glyph-name="trash-can-outline"
+      unicode="&#xFA79;"
+      horiz-adv-x="512" d=" M192 384V362.6666666666667H85.3333333333333V320H106.6666666666667V42.6666666666667C106.6666666666667 19.2 125.8666666666667 0 149.3333333333333 0H362.6666666666667C386.1333333333334 0 405.3333333333333 19.2 405.3333333333333 42.6666666666667V320H426.6666666666667V362.6666666666667H320V384H192M149.3333333333333 320H362.6666666666667V42.6666666666667H149.3333333333333V320M192 277.3333333333334V85.3333333333334H234.6666666666667V277.3333333333334H192M277.3333333333333 277.3333333333334V85.3333333333334H320V277.3333333333334H277.3333333333333z" />
+    <glyph glyph-name="treasure-chest"
+      unicode="&#xF725;"
+      horiz-adv-x="512" d=" M106.6666666666667 362.6666666666667H405.3333333333333C440.7466666666667 362.6666666666667 469.3333333333333 334.0800000000001 469.3333333333333 298.6666666666667V213.3333333333334H320V234.6666666666667H192V213.3333333333334H42.6666666666667V298.6666666666667C42.6666666666667 334.0800000000001 71.2533333333333 362.6666666666667 106.6666666666667 362.6666666666667M234.6666666666667 213.3333333333334H277.3333333333333V170.6666666666667H234.6666666666667V213.3333333333334M42.6666666666667 192H192V170.6666666666667L234.6666666666667 128H277.3333333333333L320 170.6666666666667V192H469.3333333333333V21.3333333333334H42.6666666666667V192z" />
+    <glyph glyph-name="tree"
+      unicode="&#xF531;"
+      horiz-adv-x="512" d=" M234.6666666666667 0V90.88C224.64 87.2533333333333 213.9733333333333 85.3333333333333 202.6666666666667 85.3333333333333C149.3333333333333 85.3333333333334 106.6666666666667 128 106.6666666666667 181.3333333333334C106.6666666666667 208.4266666666667 117.3333333333333 232.7466666666667 135.68 250.24C130.7733333333333 261.76 128 274.56 128 288C128 341.3333333333334 170.6666666666667 384 224 384C257.28 384 286.72 366.9333333333334 304 341.3333333333334H309.3333333333333C374.1866666666666 341.3333333333334 426.6666666666667 288.8533333333334 426.6666666666667 224S374.1866666666666 106.6666666666667 309.3333333333333 106.6666666666667C298.6666666666667 106.6666666666667 288 108.16 277.3333333333333 111.1466666666667V0H234.6666666666667z" />
+    <glyph glyph-name="trello"
+      unicode="&#xF532;"
+      horiz-adv-x="512" d=" M416 405.3333333333333H96C66.56 405.3333333333333 42.6666666666667 381.44 42.6666666666667 352V32C42.6666666666667 2.5600000000001 66.56 -21.3333333333333 96 -21.3333333333333H416C445.44 -21.3333333333333 469.3333333333333 2.5600000000001 469.3333333333333 32V352C469.3333333333333 381.44 445.44 405.3333333333333 416 405.3333333333333M228.2666666666667 81.0666666666667C228.2666666666667 66.9866666666667 216.7466666666667 55.4666666666667 202.6666666666667 55.4666666666667H123.7333333333333C109.6533333333333 55.4666666666667 98.1333333333333 66.9866666666667 98.1333333333333 81.0666666666667V324.2666666666667C98.1333333333333 338.3466666666667 109.6533333333333 349.8666666666667 123.7333333333333 349.8666666666667H202.6666666666667C216.7466666666667 349.8666666666667 228.2666666666667 338.3466666666667 228.2666666666667 324.2666666666667V81.0666666666667M413.8666666666666 187.7333333333334C413.8666666666666 173.6533333333334 402.3466666666667 162.1333333333334 388.2666666666667 162.1333333333334H309.3333333333333C295.2533333333334 162.1333333333334 283.7333333333334 173.6533333333334 283.7333333333334 187.7333333333334V324.2666666666667C283.7333333333334 338.3466666666667 295.2533333333334 349.8666666666667 309.3333333333333 349.8666666666667H388.2666666666667C402.3466666666667 349.8666666666667 413.8666666666666 338.3466666666667 413.8666666666666 324.2666666666667V187.7333333333334z" />
+    <glyph glyph-name="trending-down"
+      unicode="&#xF533;"
+      horiz-adv-x="512" d=" M341.3333333333333 64L390.1866666666666 112.8533333333334L286.08 216.96L200.7466666666667 131.6266666666667L42.6666666666667 289.92L72.7466666666667 320L200.7466666666667 192L286.08 277.3333333333334L420.48 143.1466666666667L469.3333333333333 192V64H341.3333333333333z" />
+    <glyph glyph-name="trending-neutral"
+      unicode="&#xF534;"
+      horiz-adv-x="512" d=" M469.3333333333333 192L384 277.3333333333334V213.3333333333334H64V170.6666666666667H384V106.6666666666667L469.3333333333333 192z" />
+    <glyph glyph-name="trending-up"
+      unicode="&#xF535;"
+      horiz-adv-x="512" d=" M341.3333333333333 320L390.1866666666666 271.1466666666667L286.08 167.0400000000001L200.7466666666667 252.3733333333334L42.6666666666667 94.08L72.7466666666667 64L200.7466666666667 192L286.08 106.6666666666667L420.48 240.8533333333333L469.3333333333333 192V320H341.3333333333333z" />
+    <glyph glyph-name="triangle"
+      unicode="&#xF536;"
+      horiz-adv-x="512" d=" M21.3333333333333 0H490.6666666666666L256 405.3333333333333" />
+    <glyph glyph-name="triangle-outline"
+      unicode="&#xF537;"
+      horiz-adv-x="512" d=" M256 405.3333333333333L21.3333333333333 0H490.6666666666666M256 320L416.64 42.6666666666667H95.36" />
+    <glyph glyph-name="triforce"
+      unicode="&#xFBB5;"
+      horiz-adv-x="512" d=" M32 0L256 373.3333333333334L480 0H32M256 0L362.6666666666667 192H149.3333333333333L256 0z" />
+    <glyph glyph-name="trophy"
+      unicode="&#xF538;"
+      horiz-adv-x="512" d=" M430.9333333333333 405.3333333333333H384C364.8 405.3333333333333 341.3333333333333 384 341.3333333333333 362.6666666666667H170.6666666666667C170.6666666666667 384 147.2 405.3333333333333 128 405.3333333333333H42.6666666666667V213.3333333333334C42.6666666666667 192 64 170.6666666666667 85.3333333333333 170.6666666666667H132.2666666666667C140.8 128 168.5333333333333 91.7333333333334 234.6666666666667 85.3333333333334V40.5333333333333C187.7333333333334 36.2666666666667 170.6666666666667 12.8 170.6666666666667 -14.9333333333334V-21.3333333333334H341.3333333333333V-14.9333333333334C341.3333333333333 12.8 324.2666666666667 36.2666666666666 277.3333333333333 40.5333333333333V85.3333333333334C343.4666666666667 91.7333333333334 371.2 128 379.7333333333334 170.6666666666667H426.6666666666667C448 170.6666666666667 469.3333333333333 192 469.3333333333333 213.3333333333334V405.3333333333333H430.9333333333333M85.3333333333333 213.3333333333334V362.6666666666667H128V213.3333333333334H85.3333333333333M426.6666666666667 213.3333333333334H384V362.6666666666667H426.6666666666667V213.3333333333334z" />
+    <glyph glyph-name="trophy-award"
+      unicode="&#xF539;"
+      horiz-adv-x="512" d=" M324.2666666666667 219.7333333333334L354.1333333333333 106.6666666666667L256 187.7333333333334L157.8666666666667 106.6666666666667L187.7333333333334 217.6L98.1333333333333 292.2666666666667L213.3333333333333 298.6666666666667L256 405.3333333333333L298.6666666666667 298.6666666666667L413.8666666666666 292.2666666666667L324.2666666666667 219.7333333333334M298.6666666666667 40.5333333333333H277.3333333333333V106.6666666666667L256 128L234.6666666666667 106.6666666666667V40.5333333333333H213.3333333333333C189.8666666666667 40.5333333333333 170.6666666666667 21.3333333333334 170.6666666666667 -2.1333333333333V-23.4666666666667H341.3333333333333V-2.1333333333333C341.3333333333333 21.3333333333334 322.1333333333334 40.5333333333333 298.6666666666667 40.5333333333333z" />
+    <glyph glyph-name="trophy-outline"
+      unicode="&#xF53A;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333V213.3333333333334C42.6666666666667 192 64 170.6666666666667 85.3333333333333 170.6666666666667H132.2666666666667C140.8 128 168.5333333333333 91.7333333333334 234.6666666666667 85.3333333333334V40.5333333333333C187.7333333333334 36.2666666666667 170.6666666666667 12.8 170.6666666666667 -14.9333333333334V-21.3333333333334H341.3333333333333V-14.9333333333334C341.3333333333333 12.8 324.2666666666667 36.2666666666666 277.3333333333333 40.5333333333333V85.3333333333334C343.4666666666667 91.7333333333334 371.2 128 379.7333333333334 170.6666666666667H426.6666666666667C448 170.6666666666667 469.3333333333333 192 469.3333333333333 213.3333333333334V405.3333333333333H384C364.8 405.3333333333333 341.3333333333333 384 341.3333333333333 362.6666666666667H170.6666666666667C170.6666666666667 384 147.2 405.3333333333333 128 405.3333333333333H42.6666666666667M85.3333333333333 362.6666666666667H128V213.3333333333334H85.3333333333333V362.6666666666667M384 362.6666666666667H426.6666666666667V213.3333333333334H384V362.6666666666667M170.6666666666667 320H341.3333333333333V202.6666666666667C341.3333333333333 161.4933333333334 328.96 128 256 128C183.2533333333333 128 170.6666666666667 161.4933333333334 170.6666666666667 202.6666666666667V320z" />
+    <glyph glyph-name="trophy-variant"
+      unicode="&#xF53B;"
+      horiz-adv-x="512" d=" M430.9333333333333 362.6666666666667H362.6666666666667V405.3333333333333H149.3333333333333V362.6666666666667H42.6666666666667V213.3333333333334C42.6666666666667 192 64 170.6666666666667 85.3333333333333 170.6666666666667H153.6C162.1333333333333 130.1333333333333 183.4666666666667 93.8666666666667 234.6666666666667 87.4666666666667V42.6666666666667C170.6666666666667 38.4 170.6666666666667 14.9333333333333 170.6666666666667 -12.8V-21.3333333333333H341.3333333333333V-14.9333333333333C341.3333333333333 12.8000000000001 341.3333333333333 36.2666666666667 277.3333333333333 40.5333333333334V85.3333333333334C330.6666666666667 91.7333333333334 352 128 358.4 168.5333333333334H426.6666666666667C448 168.5333333333334 469.3333333333333 189.8666666666667 469.3333333333333 211.2V362.6666666666667H430.9333333333333M85.3333333333333 213.3333333333334V320H149.3333333333333V213.3333333333334H85.3333333333333M426.6666666666667 213.3333333333334H362.6666666666667V320H426.6666666666667V213.3333333333334z" />
+    <glyph glyph-name="trophy-variant-outline"
+      unicode="&#xF53C;"
+      horiz-adv-x="512" d=" M149.3333333333333 405.3333333333333V362.6666666666667H42.6666666666667V213.3333333333334C42.6666666666667 192 64 170.6666666666667 85.3333333333333 170.6666666666667H153.6C162.1333333333333 130.1333333333333 183.4666666666667 93.8666666666667 234.6666666666667 87.4666666666667V42.6666666666667C170.6666666666667 38.4 170.6666666666667 14.9333333333333 170.6666666666667 -12.8V-21.3333333333333H341.3333333333333V-14.9333333333333C341.3333333333333 12.8000000000001 341.3333333333333 36.2666666666667 277.3333333333333 40.5333333333334V85.3333333333334C330.6666666666667 91.7333333333334 352 128 358.4 168.5333333333334H426.6666666666667C448 168.5333333333334 469.3333333333333 189.8666666666667 469.3333333333333 211.2V362.6666666666667H362.6666666666667V405.3333333333333H149.3333333333333M192 362.6666666666667H320V192C320 156.5866666666667 291.4133333333333 128 256 128C213.3333333333333 128 192 156.5866666666667 192 192V362.6666666666667M85.3333333333333 320H149.3333333333333V213.3333333333334H85.3333333333333V320M362.6666666666667 320H426.6666666666667V213.3333333333334H362.6666666666667V320z" />
+    <glyph glyph-name="truck"
+      unicode="&#xF53D;"
+      horiz-adv-x="512" d=" M384 53.3333333333334C366.2933333333334 53.3333333333334 352 67.6266666666667 352 85.3333333333334S366.2933333333334 117.3333333333334 384 117.3333333333334S416 103.04 416 85.3333333333334S401.7066666666666 53.3333333333334 384 53.3333333333334M416 245.3333333333334L457.8133333333333 192H362.6666666666667V245.3333333333334M128 53.3333333333334C110.2933333333333 53.3333333333334 96 67.6266666666667 96 85.3333333333334S110.2933333333333 117.3333333333334 128 117.3333333333334S160 103.04 160 85.3333333333334S145.7066666666667 53.3333333333334 128 53.3333333333334M426.6666666666667 277.3333333333334H362.6666666666667V362.6666666666667H64C40.32 362.6666666666667 21.3333333333333 343.68 21.3333333333333 320V85.3333333333334H64C64 49.92 92.5866666666667 21.3333333333334 128 21.3333333333334S192 49.92 192 85.3333333333334H320C320 49.92 348.5866666666667 21.3333333333334 384 21.3333333333334S448 49.92 448 85.3333333333334H490.6666666666666V192L426.6666666666667 277.3333333333334z" />
+    <glyph glyph-name="truck-delivery"
+      unicode="&#xF53E;"
+      horiz-adv-x="512" d=" M64 362.6666666666667C40.5333333333333 362.6666666666667 21.3333333333333 343.4666666666667 21.3333333333333 320V85.3333333333334H64C64 49.92 92.5866666666667 21.3333333333334 128 21.3333333333334S192 49.92 192 85.3333333333334H320C320 49.92 348.5866666666667 21.3333333333334 384 21.3333333333334S448 49.92 448 85.3333333333334H490.6666666666666V192L426.6666666666667 277.3333333333334H362.6666666666667V362.6666666666667M213.3333333333333 320L298.6666666666667 234.6666666666667L213.3333333333333 149.3333333333334V213.3333333333334H85.3333333333333V256H213.3333333333333M362.6666666666667 245.3333333333334H416L458.0266666666666 192H362.6666666666667M128 117.3333333333334C145.7066666666667 117.3333333333334 160 103.04 160 85.3333333333334S145.7066666666667 53.3333333333334 128 53.3333333333334S96 67.6266666666667 96 85.3333333333334S110.2933333333333 117.3333333333334 128 117.3333333333334M384 117.3333333333334C401.7066666666666 117.3333333333334 416 103.04 416 85.3333333333334S401.7066666666666 53.3333333333334 384 53.3333333333334S352 67.6266666666667 352 85.3333333333334S366.2933333333334 117.3333333333334 384 117.3333333333334z" />
+    <glyph glyph-name="truck-fast"
+      unicode="&#xF787;"
+      horiz-adv-x="512" d=" M64 160L48 192H160L147.2 224H42.6666666666667L26.6666666666667 256H193.0666666666667L180.2666666666667 288H23.68L5.3333333333333 320H85.3333333333333C85.3333333333333 343.4666666666667 104.5333333333333 362.6666666666667 128 362.6666666666667H384V277.3333333333334H448L512 192V85.3333333333334H469.3333333333333C469.3333333333333 49.92 440.7466666666667 21.3333333333334 405.3333333333333 21.3333333333334S341.3333333333333 49.92 341.3333333333333 85.3333333333334H256C256 49.92 227.4133333333334 21.3333333333334 192 21.3333333333334S128 49.92 128 85.3333333333334H85.3333333333333V160H64M405.3333333333333 53.3333333333334C423.04 53.3333333333334 437.3333333333333 67.6266666666667 437.3333333333333 85.3333333333334S423.04 117.3333333333334 405.3333333333333 117.3333333333334S373.3333333333333 103.04 373.3333333333333 85.3333333333334S387.6266666666667 53.3333333333334 405.3333333333333 53.3333333333334M437.3333333333333 245.3333333333334H384V192H479.1466666666666L437.3333333333333 245.3333333333334M192 53.3333333333334C209.7066666666667 53.3333333333334 224 67.6266666666667 224 85.3333333333334S209.7066666666667 117.3333333333334 192 117.3333333333334S160 103.04 160 85.3333333333334S174.2933333333333 53.3333333333334 192 53.3333333333334z" />
+    <glyph glyph-name="truck-trailer"
+      unicode="&#xF726;"
+      horiz-adv-x="512" d=" M469.3333333333333 128V85.3333333333334H213.3333333333333C213.3333333333333 49.92 184.7466666666667 21.3333333333334 149.3333333333333 21.3333333333334S85.3333333333333 49.92 85.3333333333333 85.3333333333334H42.6666666666667V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667H362.6666666666667C386.1333333333334 362.6666666666667 405.3333333333333 343.4666666666667 405.3333333333333 320V128H469.3333333333333M149.3333333333333 106.6666666666667C137.6 106.6666666666667 128 97.0666666666667 128 85.3333333333334S137.6 64 149.3333333333333 64S170.6666666666667 73.6 170.6666666666667 85.3333333333334S161.0666666666667 106.6666666666667 149.3333333333333 106.6666666666667z" />
+    <glyph glyph-name="tshirt-crew"
+      unicode="&#xFA7A;"
+      horiz-adv-x="512" d=" M341.3333333333333 0H170.6666666666667C158.9333333333333 0 149.3333333333333 9.6 149.3333333333333 21.3333333333334V190.5066666666667L121.6 169.1733333333334C113.28 160.8533333333334 99.84 160.8533333333334 91.52 169.1733333333334L31.1466666666667 228.48C22.8266666666667 236.8 22.8266666666667 250.24 31.1466666666667 258.56L156.5866666666667 384H192C192 360.5333333333334 220.5866666666667 341.3333333333334 256 341.3333333333334S320 360.5333333333334 320 384H355.4133333333333L480.8533333333333 258.5600000000001C489.1733333333333 250.24 489.1733333333333 236.8000000000001 480.8533333333333 228.48L420.48 168.1066666666667C412.16 160 398.7200000000001 160 390.4 168.1066666666667L362.6666666666667 189.4400000000001V21.3333333333334C362.6666666666667 9.6 353.0666666666667 0 341.3333333333333 0" />
+    <glyph glyph-name="tshirt-crew-outline"
+      unicode="&#xF53F;"
+      horiz-adv-x="512" d=" M341.3333333333333 0H170.6666666666667C158.9333333333333 0 149.3333333333333 9.6 149.3333333333333 21.3333333333334V190.5066666666667L121.6 168.1066666666667C113.28 160 99.84 160 91.52 168.1066666666667L31.1466666666667 228.48C22.8266666666667 236.8 22.8266666666667 250.24 31.1466666666667 258.56L156.5866666666667 384H192C192 360.5333333333334 220.5866666666667 341.3333333333334 256 341.3333333333334S320 360.5333333333334 320 384H355.4133333333333L480.8533333333333 258.5600000000001C489.1733333333333 250.24 489.1733333333333 236.8000000000001 480.8533333333333 228.48L420.48 168.1066666666667C412.16 160 398.7200000000001 160 390.4 168.1066666666667L362.6666666666667 190.5066666666667V21.3333333333334C362.6666666666667 9.6 353.0666666666667 0 341.3333333333333 0M435.6266666666667 243.6266666666667L343.6800000000001 335.36C337.0666666666667 327.8933333333333 329.1733333333334 321.28 320.0000000000001 315.7333333333334C302.0800000000001 305.0666666666667 280.1066666666667 298.6666666666667 256.0000000000001 298.6666666666667C219.7333333333334 298.6666666666667 187.5200000000001 313.1733333333334 168.3200000000001 335.36L76.3733333333334 243.6266666666667L106.6666666666667 213.3333333333334L170.6666666666667 256H192V42.6666666666667H320V256H341.3333333333333L405.3333333333333 213.3333333333334L435.6266666666667 243.6266666666667z" />
+    <glyph glyph-name="tshirt-v"
+      unicode="&#xFA7B;"
+      horiz-adv-x="512" d=" M341.3333333333333 0H170.6666666666667C158.9333333333333 0 149.3333333333333 9.6 149.3333333333333 21.3333333333334V190.5066666666667L121.6 169.1733333333334C113.28 160.8533333333334 99.84 160.8533333333334 91.52 169.1733333333334L31.1466666666667 228.48C22.8266666666667 236.8 22.8266666666667 250.24 31.1466666666667 258.56L156.5866666666667 384H192C198.1866666666667 345.6 221.8666666666667 312.1066666666667 256 293.3333333333334C290.1333333333334 312.1066666666667 313.8133333333334 345.6 320 384H355.4133333333333L480.8533333333333 258.5600000000001C489.1733333333333 250.24 489.1733333333333 236.8000000000001 480.8533333333333 228.48L420.48 168.1066666666667C412.16 160 398.7200000000001 160 390.4 168.1066666666667L362.6666666666667 189.4400000000001V21.3333333333334C362.6666666666667 9.6 353.0666666666667 0 341.3333333333333 0" />
+    <glyph glyph-name="tshirt-v-outline"
+      unicode="&#xF540;"
+      horiz-adv-x="512" d=" M341.3333333333333 0H170.6666666666667C158.9333333333333 0 149.3333333333333 9.6 149.3333333333333 21.3333333333334V190.5066666666667L121.6 168.1066666666667C113.28 160 99.84 160 91.52 168.1066666666667L31.1466666666667 228.48C22.8266666666667 236.8 22.8266666666667 250.24 31.1466666666667 258.56L156.5866666666667 384H192C192 360.5333333333334 213.3333333333333 320 256 293.3333333333334C298.6666666666667 320 320 360.5333333333334 320 384H355.4133333333333L480.8533333333333 258.5600000000001C489.1733333333333 250.24 489.1733333333333 236.8000000000001 480.8533333333333 228.48L420.48 168.1066666666667C412.16 160 398.7200000000001 160 390.4 168.1066666666667L362.6666666666667 190.5066666666667V21.3333333333334C362.6666666666667 9.6 353.0666666666667 0 341.3333333333333 0M435.6266666666667 243.6266666666667L343.6800000000001 335.36C320 298.6666666666667 298.6666666666667 272 256 250.6666666666667C213.3333333333333 272 192 298.6666666666667 168.32 335.36L76.3733333333333 243.6266666666667L106.6666666666667 213.3333333333334L170.6666666666667 256H192V42.6666666666667H320V256H341.3333333333333L405.3333333333333 213.3333333333334L435.6266666666667 243.6266666666667z" />
+    <glyph glyph-name="tumble-dryer"
+      unicode="&#xF916;"
+      horiz-adv-x="512" d=" M128 405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333M149.3333333333333 362.6666666666667C137.6 362.6666666666667 128 353.0666666666667 128 341.3333333333334S137.6 320 149.3333333333333 320S170.6666666666667 329.6 170.6666666666667 341.3333333333334S161.0666666666667 362.6666666666667 149.3333333333333 362.6666666666667M213.3333333333333 362.6666666666667C201.6 362.6666666666667 192 353.0666666666667 192 341.3333333333334S201.6 320 213.3333333333333 320S234.6666666666667 329.6 234.6666666666667 341.3333333333334S225.0666666666667 362.6666666666667 213.3333333333333 362.6666666666667M256 277.3333333333334C185.3866666666667 277.3333333333334 128 219.9466666666667 128 149.3333333333334S185.3866666666667 21.3333333333334 256 21.3333333333334S384 78.72 384 149.3333333333334S326.6133333333334 277.3333333333334 256 277.3333333333334M173.0133333333333 224H213.3333333333333C208.2133333333333 194.56 213.3333333333333 177.7066666666667 225.7066666666667 164.48C249.1733333333333 141.6533333333334 259.4133333333333 112.8533333333334 253.6533333333334 74.6666666666667H213.3333333333333C218.4533333333333 104.1066666666667 213.3333333333333 120.96 200.96 134.1866666666667C177.4933333333334 157.0133333333333 167.4666666666667 185.8133333333333 173.0133333333333 224M258.3466666666667 224H298.6666666666667C293.5466666666666 194.56 298.6666666666667 177.7066666666667 311.04 164.48C334.5066666666667 141.6533333333334 344.7466666666667 112.8533333333334 338.9866666666667 74.6666666666667H298.6666666666667C303.7866666666667 104.1066666666667 298.6666666666667 120.96 286.2933333333333 134.1866666666667C262.8266666666667 157.0133333333333 252.8 185.8133333333333 258.3466666666667 224z" />
+    <glyph glyph-name="tumblr"
+      unicode="&#xF541;"
+      horiz-adv-x="512" d=" M362.6666666666667 213.3333333333334H277.3333333333333V117.3333333333334C277.3333333333333 97.28 283.3066666666666 85.3333333333334 309.3333333333333 85.3333333333334H362.6666666666667V0S331.52 -1.0666666666667 302.2933333333333 -1.0666666666667C230.4 -1.0666666666667 202.6666666666667 42.6666666666667 202.6666666666667 90.6666666666667V213.3333333333334H149.3333333333333V298.6666666666667C214.8266666666667 304.2133333333334 219.0933333333333 352 224 384H277.3333333333333V298.6666666666667H362.6666666666667" />
+    <glyph glyph-name="tumblr-box"
+      unicode="&#xF917;"
+      horiz-adv-x="512" d=" M341.3333333333333 213.3333333333334H277.3333333333333V130.1333333333333C277.3333333333333 114.56 280.32 106.6666666666667 300.8 106.6666666666667H341.3333333333333V42.6666666666667S319.36 40.5333333333333 296.5333333333333 40.5333333333333C240 40.5333333333333 213.3333333333333 74.6666666666667 213.3333333333333 113.0666666666667V213.3333333333334H170.6666666666667V273.0666666666667C222.08 277.3333333333334 226.56 316.5866666666667 230.4 341.3333333333334H277.3333333333333V277.3333333333334H341.3333333333333M426.6666666666667 405.3333333333334H85.3333333333333C61.6533333333333 405.3333333333334 42.6666666666667 386.3466666666667 42.6666666666667 362.6666666666667V21.3333333333334C42.6666666666667 -2.1333333333333 61.8666666666667 -21.3333333333333 85.3333333333333 -21.3333333333333H426.6666666666667C450.1333333333334 -21.3333333333333 469.3333333333333 -2.1333333333333 469.3333333333333 21.3333333333334V362.6666666666667C469.3333333333333 386.3466666666667 450.1333333333334 405.3333333333333 426.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="tumblr-reblog"
+      unicode="&#xF542;"
+      horiz-adv-x="512" d=" M80 85.3333333333334L170.6666666666667 176V106.6666666666667H384V202.6666666666667L426.6666666666667 245.3333333333334V106.6666666666667C426.6666666666667 83.2 407.4666666666667 64 384 64H170.6666666666667V-5.3333333333333L80 85.3333333333334M432 298.6666666666667L341.3333333333333 208V277.3333333333334H128V181.3333333333334L85.3333333333333 138.6666666666667V277.3333333333334C85.3333333333333 300.8 104.5333333333333 320 128 320H341.3333333333333V389.3333333333333L432 298.6666666666667z" />
+    <glyph glyph-name="tune"
+      unicode="&#xF62E;"
+      horiz-adv-x="512" d=" M64 85.3333333333334V42.6666666666667H192V85.3333333333334H64M64 341.3333333333334V298.6666666666667H277.3333333333333V341.3333333333334H64M277.3333333333333 0V42.6666666666667H448V85.3333333333334H277.3333333333333V128H234.6666666666667V0H277.3333333333333M149.3333333333333 256V213.3333333333334H64V170.6666666666667H149.3333333333333V128H192V256H149.3333333333333M448 170.6666666666667V213.3333333333334H234.6666666666667V170.6666666666667H448M320 256H362.6666666666667V298.6666666666667H448V341.3333333333334H362.6666666666667V384H320V256z" />
+    <glyph glyph-name="tune-vertical"
+      unicode="&#xF66A;"
+      horiz-adv-x="512" d=" M106.6666666666667 384V192H64V149.3333333333334H106.6666666666667V0H149.3333333333333V149.3333333333334H192V192H149.3333333333333V384M234.6666666666667 384V277.3333333333334H192V234.6666666666667H234.6666666666667V0H277.3333333333333V234.6666666666667H320V277.3333333333334H277.3333333333333V384M362.6666666666667 384V149.3333333333334H320V106.6666666666667H362.6666666666667V0H405.3333333333333V106.6666666666667H448V149.3333333333334H405.3333333333333V384" />
+    <glyph glyph-name="twitch"
+      unicode="&#xF543;"
+      horiz-adv-x="512" d=" M85.3333333333333 405.3333333333333H469.3333333333333V149.3333333333334L362.6666666666667 42.6666666666667H277.3333333333333L213.3333333333333 -21.3333333333333H149.3333333333333V42.6666666666667H42.6666666666667V320L85.3333333333333 405.3333333333333M426.6666666666667 170.6666666666667V362.6666666666667H128V106.6666666666667H192V42.6666666666667L256 106.6666666666667H362.6666666666667L426.6666666666667 170.6666666666667M320 298.6666666666667H362.6666666666667V192H320V298.6666666666667M256 298.6666666666667V192H213.3333333333333V298.6666666666667H256z" />
+    <glyph glyph-name="twitter"
+      unicode="&#xF544;"
+      horiz-adv-x="512" d=" M479.1466666666666 320C462.72 312.5333333333334 445.0133333333333 307.6266666666667 426.6666666666667 305.2800000000001C445.44 316.5866666666667 459.9466666666666 334.5066666666667 466.7733333333333 356.0533333333334C449.0666666666667 345.3866666666667 429.44 337.92 408.7466666666667 333.6533333333334C391.8933333333333 352 368.2133333333334 362.6666666666667 341.3333333333333 362.6666666666667C291.2 362.6666666666667 250.24 321.7066666666667 250.24 271.1466666666667C250.24 263.8933333333334 251.0933333333333 256.8533333333334 252.5866666666667 250.24C176.64 254.08 109.0133333333333 290.56 64 345.8133333333334C56.1066666666667 332.3733333333334 51.6266666666667 316.5866666666667 51.6266666666667 299.9466666666667C51.6266666666667 268.1600000000001 67.6266666666667 240 92.3733333333333 224C77.2266666666667 224 63.1466666666667 228.2666666666667 50.7733333333333 234.6666666666667V234.0266666666667C50.7733333333333 189.6533333333334 82.3466666666667 152.5333333333334 124.16 144.2133333333334C116.48 142.0800000000001 108.3733333333333 141.0133333333334 100.0533333333333 141.0133333333334C94.2933333333333 141.0133333333334 88.5333333333333 141.6533333333334 82.9866666666667 142.72C94.5066666666667 106.6666666666667 128 79.7866666666668 168.32 79.1466666666667C137.1733333333334 54.4 97.7066666666667 39.8933333333334 54.6133333333333 39.8933333333334C47.36 39.8933333333334 40.1066666666667 40.3200000000001 32.8533333333333 41.1733333333333C73.3866666666667 15.1466666666667 121.6 0 173.2266666666666 0C341.3333333333333 0 433.7066666666666 139.52 433.7066666666666 260.48C433.7066666666666 264.5333333333334 433.7066666666666 268.3733333333334 433.4933333333333 272.4266666666668C451.4133333333332 285.2266666666667 466.7733333333332 301.4400000000001 479.1466666666666 320.0000000000001z" />
+    <glyph glyph-name="twitter-box"
+      unicode="&#xF545;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M377.8133333333334 248.96C388.0533333333334 257.4933333333334 400 267.7333333333334 405.3333333333333 279.04C396.5866666666667 274.56 386.1333333333334 271.7866666666667 374.6133333333333 270.2933333333334C385.28 277.9733333333334 394.0266666666667 288 398.5066666666667 301.6533333333333C387.4133333333333 295.68 376.1066666666667 290.56 362.0266666666667 288C328.9599999999999 327.8933333333333 249.8133333333333 295.4666666666667 263.8933333333333 235.7333333333334C208.2133333333333 239.1466666666667 174.2933333333333 264.3200000000001 146.1333333333333 295.2533333333334C130.1333333333333 269.2266666666667 144 229.7600000000001 162.9866666666667 218.8800000000001C153.1733333333333 219.5200000000001 145.7066666666667 222.5066666666667 138.6666666666667 225.9200000000001C139.52 193.0666666666667 157.6533333333333 177.2800000000001 183.04 168.7466666666667C175.36 167.2533333333334 166.8266666666667 166.8266666666667 158.72 168.1066666666668C166.6133333333334 145.2800000000001 183.04 130.9866666666667 211.2 128.0000000000001C192 111.7866666666668 156.5866666666667 100.4800000000001 128 104.96C152.5333333333333 89.3866666666667 180.48 77.0133333333334 219.3066666666667 78.72C313.3866666666667 82.9866666666667 376.32 150.4 377.8133333333334 248.9600000000001z" />
+    <glyph glyph-name="twitter-circle"
+      unicode="&#xF546;"
+      horiz-adv-x="512" d=" M377.8133333333334 248.96C388.0533333333334 257.4933333333334 400 267.7333333333334 405.3333333333333 279.04C396.5866666666667 274.56 386.1333333333334 271.7866666666667 374.6133333333333 270.2933333333334C385.28 277.9733333333334 394.0266666666667 288 398.5066666666667 301.6533333333333C387.4133333333333 295.68 376.1066666666667 290.56 362.0266666666667 288C328.9599999999999 327.8933333333333 249.8133333333333 295.4666666666667 263.8933333333333 235.7333333333334C208.2133333333333 239.1466666666667 174.2933333333333 264.3200000000001 146.1333333333333 295.2533333333334C130.1333333333333 269.2266666666667 144 229.7600000000001 162.9866666666667 218.8800000000001C153.1733333333333 219.5200000000001 145.7066666666667 222.5066666666667 138.6666666666667 225.9200000000001C139.52 193.0666666666667 157.6533333333333 177.2800000000001 183.04 168.7466666666667C175.36 167.2533333333334 166.8266666666667 166.8266666666667 158.72 168.1066666666668C166.6133333333334 145.2800000000001 183.04 130.9866666666667 211.2 128.0000000000001C192 111.7866666666668 156.5866666666667 100.4800000000001 128 104.96C152.5333333333333 89.3866666666667 180.48 77.0133333333334 219.3066666666667 78.72C313.3866666666667 82.9866666666667 376.32 150.4 377.8133333333334 248.9600000000001M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="twitter-retweet"
+      unicode="&#xF547;"
+      horiz-adv-x="512" d=" M128 325.3333333333334L218.6666666666667 234.6666666666667H149.3333333333333V106.6666666666667H288L330.6666666666667 64H149.3333333333333C125.8666666666667 64 106.6666666666667 83.2 106.6666666666667 106.6666666666667V234.6666666666667H37.3333333333333L128 325.3333333333334M384 58.6666666666667L293.3333333333333 149.3333333333334H362.6666666666667V277.3333333333334H224L181.3333333333333 320H362.6666666666667C386.1333333333334 320 405.3333333333333 300.8 405.3333333333333 277.3333333333334V149.3333333333334H474.6666666666666L384 58.6666666666667z" />
+    <glyph glyph-name="two-factor-authentication"
+      unicode="&#xF9AE;"
+      horiz-adv-x="512" d=" M42.6666666666667 298.6666666666667V256H128V213.3333333333334H85.3333333333333C61.8666666666667 213.3333333333334 42.6666666666667 194.1333333333333 42.6666666666667 170.6666666666667V85.3333333333334H170.6666666666667V128H85.3333333333333V170.6666666666667H128C151.4666666666667 170.6666666666667 170.6666666666667 189.8666666666667 170.6666666666667 213.3333333333334V256C170.6666666666667 279.68 151.4666666666667 298.6666666666667 128 298.6666666666667H42.6666666666667M192 298.6666666666667V85.3333333333334H234.6666666666667V170.6666666666667H298.6666666666667V213.3333333333334H234.6666666666667V256H320V298.6666666666667H192M384 298.6666666666667C360.5333333333333 298.6666666666667 341.3333333333333 279.4666666666667 341.3333333333333 256V85.3333333333334H384V149.3333333333334H426.6666666666667V85.3333333333334H469.3333333333333V256C469.3333333333333 279.4666666666667 450.1333333333334 298.6666666666667 426.6666666666667 298.6666666666667H384M384 256H426.6666666666667V192H384V256z" />
+    <glyph glyph-name="uber"
+      unicode="&#xF748;"
+      horiz-adv-x="512" d=" M136.1066666666667 165.5466666666667V255.1466666666667H157.8666666666667V110.08H136.32V123.5200000000001C126.5066666666667 113.4933333333334 112.8533333333333 107.52 97.7066666666667 107.52C66.56 107.52 42.6666666666667 130.1333333333333 42.6666666666667 164.2666666666667V255.1466666666667H64V165.5466666666668C64 142.2933333333334 79.7866666666667 127.1466666666667 100.2666666666667 127.1466666666667C120.32 127.1466666666667 136.1066666666667 142.72 136.1066666666667 165.5466666666668M194.9866666666667 255.1466666666667V202.6666666666667C199.8933333333334 207.1466666666667 205.8666666666667 211.2 212.2666666666667 213.9733333333333C218.6666666666667 216.5333333333333 225.7066666666667 218.0266666666667 232.7466666666667 218.0266666666667C263.8933333333333 218.0266666666667 288 193.28 288 162.7733333333333S263.8933333333333 107.52 232.7466666666667 107.52C225.7066666666667 107.52 218.6666666666667 109.0133333333333 212.2666666666667 111.5733333333333C205.6533333333333 114.3466666666667 199.8933333333333 118.4 194.7733333333333 123.3066666666667V110.08H174.08V255.1466666666667H194.9866666666666M267.7333333333333 162.7733333333334C267.7333333333333 183.2533333333333 251.0933333333333 199.4666666666667 231.2533333333334 199.4666666666667C210.9866666666667 199.4666666666667 194.7733333333333 183.2533333333334 194.7733333333333 162.7733333333334C194.7733333333333 142.5066666666667 210.7733333333333 126.0800000000001 231.2533333333334 126.0800000000001C251.0933333333333 126.0800000000001 267.7333333333334 142.5066666666667 267.7333333333334 162.7733333333334M351.1466666666667 217.8133333333334C381.8666666666667 217.8133333333334 404.2666666666667 194.3466666666667 404.2666666666667 162.9866666666667V155.9466666666667H318.0800000000001C320.8533333333334 138.6666666666667 335.1466666666668 126.0800000000001 353.0666666666667 126.0800000000001C365.4400000000001 126.0800000000001 375.6800000000001 130.9866666666667 384.0000000000001 141.6533333333334L398.9333333333334 130.3466666666667C388.2666666666667 116.2666666666667 372.4800000000001 107.7333333333334 353.0666666666667 107.7333333333334C321.2800000000001 107.7333333333334 296.7466666666668 131.4133333333334 296.7466666666668 162.9866666666667C296.7466666666668 192.6400000000001 320.0000000000001 217.8133333333334 351.1466666666668 217.8133333333334M318.2933333333334 172.5866666666667H382.9333333333335C379.5200000000001 188.8 366.5066666666668 199.4666666666667 350.7200000000001 199.4666666666667C335.1466666666668 199.4666666666667 322.1333333333335 188.8 318.2933333333334 172.5866666666667M437.3333333333335 170.6666666666667V110.08H416.0000000000001V215.68H436.6933333333335V202.6666666666667C441.8133333333334 211.2 450.3466666666668 216.5333333333334 462.0800000000002 216.5333333333334H469.3333333333333V197.12H460.5866666666666C446.9333333333333 197.12 437.3333333333333 186.4533333333334 437.3333333333333 170.6666666666667" />
+    <glyph glyph-name="ubisoft"
+      unicode="&#xFBB6;"
+      horiz-adv-x="512" d=" M243.4133333333334 405.3333333333333C111.1466666666667 405.3333333333333 53.9733333333333 287.36 53.9733333333333 287.36L70.8266666666667 275.4133333333334S49.7066666666667 234.6666666666667 50.1333333333333 183.4666666666667C50.1333333333333 78.08 134.1866666666667 -21.3333333333333 257.4933333333334 -21.3333333333333C369.7066666666666 -21.3333333333333 462.2933333333334 70.1866666666667 462.2933333333334 183.2533333333333C462.2933333333334 330.6666666666667 347.9466666666666 405.3333333333333 243.4133333333334 405.3333333333333M244.6933333333334 369.28C347.9466666666667 369.28 428.16 285.8666666666667 428.16 189.0133333333334C428.16 86.4 350.9333333333333 14.9333333333334 260.9066666666667 14.9333333333334C194.7733333333334 14.9333333333334 135.04 65.2800000000001 135.04 134.4000000000001C135.04 174.5066666666668 156.16 202.6666666666668 180.0533333333333 217.1733333333334L183.4666666666667 213.3333333333334C177.0666666666666 208.2133333333334 158.5066666666667 178.3466666666668 158.5066666666667 149.3333333333334C158.5066666666667 94.7200000000001 201.1733333333333 56.96 254.9333333333333 56.96C323.4133333333333 56.96 369.0666666666666 115.4133333333334 369.0666666666666 183.2533333333334C369.0666666666666 262.1866666666667 299.3066666666666 329.1733333333334 215.4666666666666 329.1733333333334C169.1733333333333 329.1733333333334 129.92 309.3333333333334 107.3066666666666 291.6266666666667L103.68 294.8266666666667C133.3333333333333 340.4800000000001 184.5333333333333 369.2800000000001 244.6933333333333 369.2800000000001M213.3333333333333 293.76C267.3066666666666 293.76 319.36 258.3466666666667 332.5866666666667 208L327.68 206.2933333333334C304.4266666666666 237.2266666666667 266.0266666666667 262.8266666666667 220.8 262.8266666666667C137.3866666666667 262.8266666666667 93.6533333333333 187.0933333333334 100.0533333333333 123.9466666666667L95.1466666666667 122.0266666666667S85.9733333333333 142.2933333333334 85.9733333333333 166.4C85.9733333333333 236.1600000000001 143.1466666666667 293.76 213.3333333333333 293.76M249.1733333333333 206.2933333333334C274.3466666666667 206.2933333333334 294.6133333333333 185.6 294.6133333333333 161.2800000000001C294.6133333333333 141.2266666666668 281.8133333333333 129.2800000000001 281.8133333333333 129.2800000000001L296.9599999999999 118.4000000000001S281.8133333333333 94.5066666666668 250.88 94.5066666666668C221.2266666666666 94.5066666666668 194.7733333333333 118.6133333333334 194.7733333333333 150.8266666666668C194.7733333333333 183.8933333333334 223.36 206.2933333333334 249.1733333333333 206.2933333333334z" />
+    <glyph glyph-name="ubuntu"
+      unicode="&#xF548;"
+      horiz-adv-x="512" d=" M469.3333333333333 192C469.3333333333333 74.24 373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333S469.3333333333333 309.76 469.3333333333333 192M305.92 282.88C318.2933333333333 275.8400000000001 333.8666666666667 280.1066666666667 341.3333333333333 292.2666666666667C347.9466666666666 304.4266666666667 343.8933333333333 320 331.52 327.2533333333334C319.36 334.2933333333334 303.5733333333333 330.6666666666667 296.5333333333333 317.8666666666667C289.4933333333333 305.7066666666667 293.76 289.92 305.92 282.88M253.44 117.3333333333334C242.1333333333334 117.3333333333334 231.4666666666667 119.68 222.08 124.16L204.16 92.16C219.0933333333333 85.3333333333334 235.7333333333333 80.64 253.44 80.64C263.8933333333333 80.64 273.7066666666666 82.1333333333334 283.3066666666666 84.6933333333334C285.0133333333333 95.1466666666667 290.9866666666666 104.5333333333334 300.8 110.08C310.6133333333334 115.84 321.7066666666667 116.2666666666667 331.52 112.6400000000001C350.5066666666667 131.2000000000001 362.6666666666667 156.5866666666667 364.5866666666667 184.96L328.1066666666667 185.3866666666667C324.6933333333333 147.2000000000001 292.6933333333333 117.3333333333334 253.44 117.3333333333334M253.44 266.6666666666668C292.6933333333333 266.6666666666668 324.6933333333333 237.0133333333334 328.1066666666667 198.6133333333334L364.5866666666667 199.2533333333334C362.6666666666667 227.4133333333334 350.5066666666667 252.8000000000001 331.52 271.3600000000001C321.7066666666666 267.7333333333334 310.4 268.3733333333334 300.8 273.9200000000001C290.9866666666666 279.4666666666667 285.0133333333333 289.0666666666667 283.3066666666666 299.3066666666668C273.7066666666667 301.8666666666667 263.8933333333333 303.36 253.44 303.36C235.7333333333333 303.36 219.0933333333333 299.3066666666668 204.16 291.8400000000001L222.08 259.8400000000001C231.4666666666666 264.3200000000001 242.1333333333333 266.6666666666668 253.44 266.6666666666668M178.56 192C178.56 217.3866666666667 191.1466666666667 239.7866666666667 210.3466666666666 253.2266666666667L192 284.8C169.3866666666667 269.6533333333334 152.5333333333333 246.8266666666667 145.7066666666667 219.9466666666667C153.8133333333333 213.3333333333333 158.9333333333333 203.3066666666667 158.9333333333333 192S153.8133333333333 170.6666666666666 145.7066666666667 164.0533333333333C152.5333333333333 137.3866666666667 169.3866666666667 114.3466666666666 192 99.4133333333333L210.3466666666666 130.7733333333333C191.1466666666667 144.2133333333333 178.56 166.6133333333333 178.56 192M305.92 101.1199999999999C293.76 94.0799999999999 289.4933333333334 78.5066666666666 296.5333333333333 66.1333333333332C303.5733333333333 53.9733333333332 319.36 49.7066666666666 331.52 56.7466666666666C343.8933333333333 63.9999999999999 347.9466666666667 79.5733333333332 341.3333333333333 91.7333333333332C333.8666666666667 104.1066666666665 318.2933333333333 108.1599999999999 305.92 101.1199999999999M122.88 217.6C108.8 217.6 97.28 206.08 97.28 192C97.28 177.92 108.8 166.4 122.88 166.4C137.1733333333333 166.4 148.48 177.92 148.48 192C148.48 206.08 137.1733333333333 217.6 122.88 217.6z" />
+    <glyph glyph-name="ultra-high-definition"
+      unicode="&#xF7F8;"
+      horiz-adv-x="512" d=" M192 298.6666666666667H234.6666666666667V213.3333333333334H277.3333333333333V298.6666666666667H320V85.3333333333334H277.3333333333333V170.6666666666667H234.6666666666667V85.3333333333334H192V298.6666666666667M362.6666666666667 298.6666666666667H426.6666666666667C462.08 298.6666666666667 490.6666666666666 270.0800000000001 490.6666666666666 234.6666666666667V149.3333333333334C490.6666666666666 113.92 462.08 85.3333333333334 426.6666666666667 85.3333333333334H362.6666666666667V298.6666666666667M426.6666666666667 128C438.4 128 448 137.6 448 149.3333333333334V234.6666666666667C448 246.4000000000001 438.4 256 426.6666666666667 256H405.3333333333333V128H426.6666666666667M149.3333333333333 149.3333333333334C149.3333333333333 113.92 120.7466666666667 85.3333333333334 85.3333333333333 85.3333333333334S21.3333333333333 113.92 21.3333333333333 149.3333333333334V298.6666666666667H64V149.3333333333334C64 137.6 73.6 128 85.3333333333333 128S106.6666666666667 137.6 106.6666666666667 149.3333333333334V298.6666666666667H149.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="umbraco"
+      unicode="&#xF549;"
+      horiz-adv-x="512" d=" M183.4666666666667 264.5333333333334L152.96 269.2266666666667C138.6666666666667 199.0400000000001 137.8133333333333 144.2133333333334 162.3466666666667 117.3333333333334C183.4666666666667 93.6533333333334 253.6533333333334 93.6533333333334 253.6533333333334 93.6533333333334S326.1866666666667 93.6533333333334 347.3066666666667 117.3333333333334C371.84 144.2133333333334 370.7733333333334 199.04 356.6933333333334 269.2266666666667L326.1866666666667 264.5333333333334S352.8533333333334 151.8933333333334 313.3866666666667 134.6133333333334C294.6133333333334 126.5066666666667 253.6533333333334 126.5066666666667 253.6533333333334 126.5066666666667S215.0400000000001 126.5066666666667 196.2666666666668 134.6133333333334C156.8000000000001 151.8933333333334 183.4666666666668 264.5333333333334 183.4666666666668 264.5333333333334M256 384C362.0266666666667 384 448 298.0266666666667 448 192S362.0266666666667 0 256 0S64 85.9733333333334 64 192S149.9733333333333 384 256 384z" />
+    <glyph glyph-name="umbrella"
+      unicode="&#xF54A;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C362.0266666666667 405.3333333333333 448 319.36 448 213.3333333333334H277.3333333333333V42.6666666666667C277.3333333333333 7.2533333333333 248.7466666666667 -21.3333333333333 213.3333333333333 -21.3333333333333S149.3333333333333 7.2533333333333 149.3333333333333 42.6666666666667V64H192V42.6666666666667C192 30.9333333333333 201.6 21.3333333333334 213.3333333333333 21.3333333333334S234.6666666666667 30.9333333333333 234.6666666666667 42.6666666666667V213.3333333333334H64C64 319.36 149.9733333333333 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="umbrella-closed"
+      unicode="&#xF9AF;"
+      horiz-adv-x="512" d=" M256 415.36L373.3333333333333 128H277.3333333333333V42.6666666666667C277.3333333333333 7.2533333333333 248.7466666666667 -21.3333333333333 213.3333333333333 -21.3333333333333S149.3333333333333 7.2533333333333 149.3333333333333 42.6666666666667V64H192V42.6666666666667C192 30.9333333333333 201.6 21.3333333333334 213.3333333333333 21.3333333333334S234.6666666666667 30.9333333333333 234.6666666666667 42.6666666666667V128H138.6666666666667L256 415.36z" />
+    <glyph glyph-name="umbrella-outline"
+      unicode="&#xF54B;"
+      horiz-adv-x="512" d=" M256 362.6666666666667C189.8666666666667 362.6666666666667 131.84 319.36 113.0666666666667 256H398.9333333333333C380.16 319.1466666666667 321.92 362.6666666666667 256 362.6666666666667M256 405.3333333333333C362.0266666666667 405.3333333333333 448 319.36 448 213.3333333333334H277.3333333333333V42.6666666666667C277.3333333333333 7.2533333333333 248.7466666666667 -21.3333333333333 213.3333333333333 -21.3333333333333S149.3333333333333 7.2533333333333 149.3333333333333 42.6666666666667V64H192V42.6666666666667C192 30.9333333333333 201.6 21.3333333333334 213.3333333333333 21.3333333333334S234.6666666666667 30.9333333333333 234.6666666666667 42.6666666666667V213.3333333333334H64C64 319.36 149.9733333333333 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="undo"
+      unicode="&#xF54C;"
+      horiz-adv-x="512" d=" M266.6666666666667 277.3333333333334C210.1333333333333 277.3333333333334 158.9333333333333 256 119.4666666666667 221.8666666666667L42.6666666666667 298.6666666666667V106.6666666666667H234.6666666666667L157.44 183.8933333333334C187.0933333333333 208.6400000000001 224.8533333333333 224 266.6666666666667 224C342.1866666666666 224 406.4 174.72 428.8 106.6666666666667L479.36 123.3066666666667C449.7066666666666 212.6933333333334 365.8666666666666 277.3333333333334 266.6666666666667 277.3333333333334z" />
+    <glyph glyph-name="undo-variant"
+      unicode="&#xF54D;"
+      horiz-adv-x="512" d=" M288 298.6666666666667C364.5866666666667 298.6666666666667 426.6666666666667 236.5866666666667 426.6666666666667 160S364.5866666666667 21.3333333333334 288 21.3333333333334H213.3333333333333V64H288C341.3333333333333 64 384 106.6666666666667 384 160S341.3333333333333 256 288 256H167.04L232.7466666666667 190.0800000000001L202.6666666666667 160L85.3333333333333 277.3333333333334L202.6666666666667 394.6666666666667L232.96 364.5866666666667L167.04 298.6666666666667H288M128 64H170.6666666666667V21.3333333333334H128V64z" />
+    <glyph glyph-name="unfold-less-horizontal"
+      unicode="&#xF54E;"
+      horiz-adv-x="512" d=" M353.92 332.5866666666667L323.6266666666667 362.6666666666667L256 295.04L188.3733333333333 362.6666666666667L158.08 332.5866666666667L256 234.6666666666667M158.08 51.4133333333334L188.3733333333333 21.3333333333334L256 88.96L323.6266666666667 21.3333333333334L353.7066666666666 51.4133333333334L256 149.3333333333334L158.08 51.4133333333334z" />
+    <glyph glyph-name="unfold-less-vertical"
+      unicode="&#xF75F;"
+      horiz-adv-x="512" d=" M115.4133333333333 289.92L213.3333333333333 192L115.4133333333333 94.08L85.3333333333333 124.3733333333333L152.96 192L85.3333333333333 259.6266666666667L115.4133333333333 289.92M396.5866666666667 94.08L298.6666666666667 192L396.5866666666667 289.7066666666667L426.6666666666667 259.6266666666667L359.04 192L426.6666666666667 124.3733333333333L396.5866666666667 94.08z" />
+    <glyph glyph-name="unfold-more-horizontal"
+      unicode="&#xF54F;"
+      horiz-adv-x="512" d=" M256 60.3733333333333L188.3733333333333 128L158.2933333333333 97.92L256 0L353.92 97.92L323.6266666666667 128M256 323.6266666666667L323.6266666666667 256L353.7066666666666 286.0800000000001L256 384L158.08 286.0800000000001L188.3733333333333 256L256 323.6266666666667z" />
+    <glyph glyph-name="unfold-more-vertical"
+      unicode="&#xF760;"
+      horiz-adv-x="512" d=" M387.6266666666667 192L320 259.6266666666667L350.08 289.92L448 192L350.08 94.2933333333334L320 124.3733333333333L387.6266666666667 192M124.3733333333333 192L192 124.3733333333333L161.92 94.08L64 192L161.92 289.7066666666667L192 259.6266666666667L124.3733333333333 192z" />
+    <glyph glyph-name="ungroup"
+      unicode="&#xF550;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H128V384H277.3333333333333V405.3333333333333H362.6666666666667V320H341.3333333333333V256H384V277.3333333333334H469.3333333333333V192H448V64H469.3333333333333V-21.3333333333333H384V0H256V-21.3333333333333H170.6666666666667V64H192V106.6666666666667H128V85.3333333333334H42.6666666666667V170.6666666666667H64V320H42.6666666666667V405.3333333333333M384 192V213.3333333333334H341.3333333333333V170.6666666666667H362.6666666666667V85.3333333333334H277.3333333333333V106.6666666666667H234.6666666666667V64H256V42.6666666666667H384V64H405.3333333333333V192H384M277.3333333333333 320V341.3333333333334H128V320H106.6666666666667V170.6666666666667H128V149.3333333333334H192V192H170.6666666666667V277.3333333333334H256V256H298.6666666666667V320H277.3333333333333M256 192H234.6666666666667V149.3333333333334H277.3333333333333V170.6666666666667H298.6666666666667V213.3333333333334H256V192z" />
+    <glyph glyph-name="unity"
+      unicode="&#xF6AE;"
+      horiz-adv-x="512" d=" M194.3466666666666 85.3333333333334H138.6666666666667L33.92 192L138.6666666666667 298.6666666666667H194.3466666666666L222.2933333333333 346.88L367.1466666666667 384L407.04 240.2133333333334L379.0933333333333 192L407.04 143.7866666666667L367.1466666666667 0L222.2933333333334 37.12L194.3466666666666 85.3333333333334M197.3333333333333 90.6666666666667L306.7733333333333 61.2266666666667L243.6266666666667 170.6666666666667H117.3333333333333L197.3333333333333 90.6666666666667M343.8933333333333 82.5600000000001L373.3333333333333 192L343.8933333333333 301.44L280.5333333333333 192L343.8933333333333 82.5600000000001M197.3333333333333 293.3333333333334L117.3333333333333 213.3333333333334H243.6266666666667L306.7733333333333 322.7733333333333L197.3333333333333 293.3333333333334z" />
+    <glyph glyph-name="unreal"
+      unicode="&#xF9B0;"
+      horiz-adv-x="512" d=" M42.6666666666667 192C42.6666666666667 74.24 138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333S42.6666666666667 309.76 42.6666666666667 192M111.7866666666667 47.7866666666668C73.1733333333333 86.4 52.0533333333333 137.6000000000001 52.0533333333333 192.0000000000001S73.1733333333334 297.6 111.7866666666667 336.2133333333334C150.4 374.8266666666667 201.6 395.9466666666667 256 395.9466666666667S361.6 374.8266666666667 400.2133333333333 336.2133333333334C438.8266666666666 297.6 459.9466666666666 246.4000000000001 459.9466666666666 192.0000000000001S438.8266666666667 86.4 400.2133333333333 47.7866666666668C361.6 9.1733333333334 310.3999999999999 -11.9466666666666 256 -11.9466666666666S150.4 9.1733333333333 111.7866666666666 47.7866666666668M135.4666666666667 245.3333333333334C92.5866666666667 196.48 100.9066666666667 156.16 100.9066666666667 156.16S112.64 183.8933333333334 141.0133333333333 213.3333333333334C154.6666666666666 226.7733333333334 164.6933333333333 231.4666666666667 171.52 231.4666666666667C179.2 231.4666666666667 182.8266666666666 225.92 182.8266666666666 220.8V121.8133333333334C182.8266666666666 112 176.4266666666666 109.8666666666667 170.6666666666666 110.08C165.7599999999999 110.08 161.0666666666666 111.7866666666667 161.0666666666666 111.7866666666667C190.2933333333333 69.76 260.0533333333333 64 260.0533333333333 64L290.7733333333333 96H291.6266666666666L320 71.8933333333334C370.9866666666667 102.1866666666667 395.7333333333334 158.2933333333334 395.7333333333334 158.2933333333334C373.3333333333333 134.4 358.1866666666666 128.6400000000001 349.6533333333333 128.8533333333334C341.9733333333334 128.8533333333334 338.7733333333333 133.3333333333334 338.7733333333333 133.3333333333334C338.56 135.4666666666668 337.4933333333334 258.1333333333335 338.9866666666667 258.1333333333335C347.9466666666667 274.5600000000001 376.1066666666667 308.0533333333334 376.1066666666667 308.0533333333334C323.4133333333333 297.6000000000001 294.6133333333333 263.2533333333335 294.6133333333333 263.2533333333335C286.08 269.8666666666668 268.5866666666666 268.8000000000001 268.5866666666666 268.8000000000001C276.6933333333333 264.3200000000001 284.8 251.5200000000001 284.8 240.6400000000001V135.4666666666668S266.6666666666667 119.8933333333334 253.44 119.8933333333334C245.3333333333333 119.8933333333334 240.4266666666666 124.3733333333335 237.6533333333333 128.0000000000001C235.7333333333333 130.5600000000001 234.6666666666666 132.4800000000001 234.6666666666666 132.4800000000001V262.6133333333335C233.1733333333333 261.3333333333335 230.8266666666666 260.2666666666668 228.48 260.2666666666668C225.4933333333333 260.4800000000002 222.5066666666666 261.7600000000001 220.5866666666666 266.0266666666668C218.88 269.2266666666668 218.0266666666667 274.1333333333335 218.0266666666667 280.9600000000001C218.0266666666667 305.0666666666668 245.3333333333333 320.8533333333335 245.3333333333333 320.8533333333335C210.56 311.6800000000001 178.3466666666666 293.9733333333335 135.4666666666666 245.3333333333335" />
+    <glyph glyph-name="untappd"
+      unicode="&#xF551;"
+      horiz-adv-x="512" d=" M307.4133333333333 362.6666666666667S318.72 354.3466666666667 319.36 347.52C319.36 345.3866666666667 314.24 344.5333333333334 313.1733333333334 342.8266666666667C311.8933333333333 341.3333333333334 313.6 338.1333333333334 312.5333333333334 336.8533333333334C311.2533333333334 335.7866666666667 309.3333333333334 335.7866666666667 307.4133333333334 332.5866666666667C305.7066666666667 329.3866666666667 257.4933333333334 232.7466666666667 250.2400000000001 221.2266666666667C247.2533333333334 212.6933333333334 244.6933333333334 182.1866666666667 242.5600000000001 177.9200000000001C240.2133333333334 173.8666666666667 135.2533333333334 24.7466666666668 131.4133333333334 20.2666666666668C120.9600000000001 7.8933333333334 91.9466666666667 14.9333333333334 69.9733333333334 30.72C49.0666666666667 45.6533333333334 37.1200000000001 70.4 45.0133333333334 81.92C48.4266666666667 86.8266666666667 152.5333333333334 236.3733333333334 155.5200000000001 240C158.7200000000001 243.6266666666667 186.6666666666668 256 193.4933333333334 262.1866666666667C202.0266666666667 272.64 276.48 351.1466666666667 278.8266666666667 353.7066666666667C281.1733333333334 356.2666666666667 280.5333333333334 358.4 281.1733333333334 359.8933333333333C282.0266666666667 361.3866666666667 285.44 360.96 286.5066666666667 362.6666666666667C288 364.16 285.6533333333334 368.8533333333334 288 369.4933333333334C289.92 370.3466666666667 297.8133333333334 369.7066666666667 307.4133333333334 362.6666666666667M231.4666666666667 353.28L250.4533333333334 333.44L218.88 299.9466666666667L201.8133333333333 333.44C200.1066666666667 336.64 197.9733333333334 336.64 196.6933333333333 337.7066666666667C195.6266666666667 338.9866666666667 197.12 341.9733333333334 196.0533333333334 343.68C194.7733333333334 345.3866666666667 189.8666666666667 344.96 189.8666666666667 347.0933333333334C189.8666666666667 349.44 193.0666666666667 356.6933333333334 202.6666666666667 363.52C202.6666666666667 363.52 214.6133333333334 371.2 221.2266666666667 369.4933333333334C223.36 368.8533333333334 222.5066666666667 363.7333333333334 224 362.6666666666667C224.8533333333334 360.5333333333333 228.2666666666667 360.96 228.9066666666667 359.4666666666667C229.76 358.1866666666667 228.9066666666667 355.84 231.4666666666667 353.28M467.6266666666667 82.1333333333333C475.52 68.0533333333333 459.3066666666667 42.6666666666666 437.3333333333333 27.7333333333333C416 13.0133333333333 388.48 9.8133333333333 380.3733333333333 21.3333333333333C376.7466666666666 26.0266666666666 270.2933333333333 174.5066666666666 267.9466666666666 178.7733333333333C265.6 182.8266666666666 262.8266666666666 213.3333333333333 259.8399999999999 222.0799999999999L259.2 222.9333333333332C265.6 234.6666666666666 278.8266666666666 260.9066666666665 292.9066666666667 288.6399999999999C305.0666666666666 276.0533333333333 314.6666666666667 265.3866666666666 317.44 261.9733333333333C324.48 255.9999999999999 352.64 243.6266666666666 355.84 239.9999999999999C358.8266666666667 236.3733333333332 464.64 87.2533333333333 467.6266666666667 82.1333333333332z" />
+    <glyph glyph-name="update"
+      unicode="&#xF6AF;"
+      horiz-adv-x="512" d=" M448 232.1066666666667H303.36L361.8133333333334 292.2666666666667C303.5733333333333 349.8666666666667 209.28 352 151.04 294.4000000000001C92.8 236.5866666666667 92.8 143.36 151.04 85.3333333333334C209.28 27.7333333333334 303.5733333333333 27.7333333333334 361.8133333333334 85.3333333333334C390.8266666666667 114.1333333333333 405.3333333333333 147.6266666666667 405.3333333333333 189.8666666666667H448C448 147.6266666666667 429.2266666666667 92.8000000000001 391.68 55.68C316.8 -18.56 195.2 -18.56 120.32 55.68C45.6533333333333 129.7066666666667 45.0133333333333 250.0266666666667 119.8933333333333 324.0533333333334C194.7733333333333 398.08 314.88 398.08 389.76 324.0533333333334L448 384V232.1066666666667M266.6666666666667 277.3333333333334V186.6666666666667L341.3333333333333 142.2933333333334L325.9733333333333 116.48L234.6666666666667 170.6666666666667V277.3333333333334H266.6666666666667z" />
+    <glyph glyph-name="upload"
+      unicode="&#xF552;"
+      horiz-adv-x="512" d=" M192 106.6666666666667V234.6666666666667H106.6666666666667L256 384L405.3333333333333 234.6666666666667H320V106.6666666666667H192M106.6666666666667 21.3333333333334V64H405.3333333333333V21.3333333333334H106.6666666666667z" />
+    <glyph glyph-name="upload-multiple"
+      unicode="&#xF83C;"
+      horiz-adv-x="512" d=" M192 149.3333333333334V277.3333333333334H106.6666666666667L256 426.6666666666667L405.3333333333333 277.3333333333334H320V149.3333333333334H192M106.6666666666667 64V106.6666666666667H405.3333333333333V64H106.6666666666667M405.3333333333333 21.3333333333334H106.6666666666667V-21.3333333333333H405.3333333333333V21.3333333333334z" />
+    <glyph glyph-name="upload-network"
+      unicode="&#xF6F5;"
+      horiz-adv-x="512" d=" M362.6666666666667 384C386.1333333333334 384 405.3333333333333 364.8 405.3333333333333 341.3333333333334V128C405.3333333333333 104.5333333333333 386.1333333333334 85.3333333333334 362.6666666666667 85.3333333333334H277.3333333333333V42.6666666666667H298.6666666666667C310.4 42.6666666666667 320 33.0666666666667 320 21.3333333333334H469.3333333333333V-21.3333333333333H320C320 -33.0666666666667 310.4 -42.6666666666666 298.6666666666667 -42.6666666666666H213.3333333333333C201.6 -42.6666666666666 192 -33.0666666666667 192 -21.3333333333333H42.6666666666667V21.3333333333334H192C192 33.0666666666667 201.6 42.6666666666667 213.3333333333333 42.6666666666667H234.6666666666667V85.3333333333334H149.3333333333333C125.6533333333333 85.3333333333334 106.6666666666667 104.5333333333333 106.6666666666667 128V341.3333333333334C106.6666666666667 364.8 125.8666666666667 384 149.3333333333333 384H362.6666666666667M256 330.6666666666667L160 234.6666666666667H234.6666666666667V149.3333333333334H277.3333333333333V234.6666666666667H352L256 330.6666666666667z" />
+    <glyph glyph-name="usb"
+      unicode="&#xF553;"
+      horiz-adv-x="512" d=" M320 298.6666666666667V213.3333333333334H341.3333333333333V170.6666666666667H277.3333333333333V341.3333333333334H320L256 426.6666666666667L192 341.3333333333334H234.6666666666667V170.6666666666667H170.6666666666667V214.8266666666667C185.6 222.72 196.2666666666667 237.8666666666667 196.2666666666667 256C196.2666666666667 282.0266666666667 175.1466666666667 302.9333333333334 149.3333333333333 302.9333333333334C123.3066666666667 302.9333333333334 102.4 282.0266666666667 102.4 256C102.4 237.8666666666667 113.0666666666666 222.72 128 214.8266666666667V170.6666666666667C128 147.2000000000001 147.2 128 170.6666666666666 128H234.6666666666667V62.9333333333333C219.52 55.2533333333333 209.0666666666667 39.4666666666666 209.0666666666667 21.3333333333334C209.0666666666667 -4.6933333333333 229.9733333333334 -25.6 256 -25.6C282.0266666666667 -25.6 302.9333333333333 -4.6933333333333 302.9333333333333 21.3333333333334C302.9333333333333 39.4666666666667 292.48 55.2533333333333 277.3333333333333 62.9333333333333V128H341.3333333333333C364.8 128 384 147.2000000000001 384 170.6666666666667V213.3333333333334H405.3333333333333V298.6666666666667H320z" />
+    <glyph glyph-name="van-passenger"
+      unicode="&#xF7F9;"
+      horiz-adv-x="512" d=" M64 298.6666666666667C40.32 298.6666666666667 21.3333333333333 279.68 21.3333333333333 256V85.3333333333334H64C64 49.92 92.5866666666667 21.3333333333334 128 21.3333333333334S192 49.92 192 85.3333333333334H320C320 49.92 348.5866666666667 21.3333333333334 384 21.3333333333334S448 49.92 448 85.3333333333334H490.6666666666666V170.6666666666667C490.6666666666666 194.3466666666667 471.6799999999999 213.3333333333334 448 213.3333333333334L384 298.6666666666667H64M64 266.6666666666667H149.3333333333333V213.3333333333334H64V266.6666666666667M192 266.6666666666667H277.3333333333333V213.3333333333334H192V266.6666666666667M320 266.6666666666667H373.3333333333333L415.1466666666667 213.3333333333334H320V266.6666666666667M128 117.3333333333334C145.7066666666667 117.3333333333334 160 103.04 160 85.3333333333334S145.7066666666667 53.3333333333334 128 53.3333333333334S96 67.6266666666667 96 85.3333333333334S110.2933333333333 117.3333333333334 128 117.3333333333334M384 117.3333333333334C401.7066666666666 117.3333333333334 416 103.04 416 85.3333333333334S401.7066666666666 53.3333333333334 384 53.3333333333334S352 67.6266666666667 352 85.3333333333334S366.2933333333334 117.3333333333334 384 117.3333333333334z" />
+    <glyph glyph-name="van-utility"
+      unicode="&#xF7FA;"
+      horiz-adv-x="512" d=" M64 298.6666666666667C40.32 298.6666666666667 21.3333333333333 279.68 21.3333333333333 256V85.3333333333334H64C64 49.92 92.5866666666667 21.3333333333334 128 21.3333333333334S192 49.92 192 85.3333333333334H320C320 49.92 348.5866666666667 21.3333333333334 384 21.3333333333334S448 49.92 448 85.3333333333334H490.6666666666666V170.6666666666667C490.6666666666666 194.3466666666667 471.6799999999999 213.3333333333334 448 213.3333333333334L384 298.6666666666667H64M320 266.6666666666667H373.3333333333333L415.1466666666667 213.3333333333334H320V266.6666666666667M128 117.3333333333334C145.7066666666667 117.3333333333334 160 103.04 160 85.3333333333334S145.7066666666667 53.3333333333334 128 53.3333333333334S96 67.6266666666667 96 85.3333333333334S110.2933333333333 117.3333333333334 128 117.3333333333334M384 117.3333333333334C401.7066666666666 117.3333333333334 416 103.04 416 85.3333333333334S401.7066666666666 53.3333333333334 384 53.3333333333334S352 67.6266666666667 352 85.3333333333334S366.2933333333334 117.3333333333334 384 117.3333333333334z" />
+    <glyph glyph-name="vanish"
+      unicode="&#xF7FB;"
+      horiz-adv-x="512" d=" M341.3333333333333 170.6666666666667V213.3333333333334H448V170.6666666666667H341.3333333333333M316.3733333333334 282.4533333333334L376.7466666666667 342.8266666666667L406.8266666666667 312.7466666666667L346.4533333333334 252.3733333333334L316.3733333333334 282.4533333333334M234.6666666666667 106.6666666666667H277.3333333333333V0H234.6666666666667V106.6666666666667M234.6666666666667 384H277.3333333333333V277.3333333333334H234.6666666666667V384M105.1733333333333 71.2533333333333L165.5466666666667 131.6266666666667L195.6266666666667 101.5466666666667L135.2533333333333 41.1733333333333L105.1733333333333 71.2533333333333M105.1733333333333 312.7466666666667L135.2533333333333 342.8266666666667L195.6266666666667 282.4533333333334L165.5466666666667 252.3733333333334L105.1733333333333 312.7466666666667M170.6666666666667 170.6666666666667H64V213.3333333333334H170.6666666666667V170.6666666666667M406.8266666666667 71.2533333333333L376.7466666666667 41.1733333333333L316.3733333333334 101.5466666666666L346.4533333333333 131.6266666666667L406.8266666666667 71.2533333333333z" />
+    <glyph glyph-name="variable"
+      unicode="&#xFAE6;"
+      horiz-adv-x="512" d=" M435.4133333333333 384C465.0666666666667 326.1866666666667 476.8 259.4133333333334 469.3333333333333 192C465.0666666666667 124.5866666666667 441.6 57.8133333333334 401.7066666666666 0L369.0666666666666 21.3333333333334C403.4133333333333 73.1733333333334 423.4666666666666 132.2666666666667 426.6666666666666 192C433.9199999999999 251.7333333333334 424.32 310.8266666666667 398.9333333333332 362.6666666666667L435.4133333333333 384M110.2933333333333 384L142.9333333333333 362.6666666666667C108.5866666666667 310.8266666666667 88.5333333333333 251.7333333333334 85.3333333333333 192C78.08 132.2666666666667 87.8933333333333 73.1733333333334 113.0666666666667 21.3333333333334L77.0133333333333 0C47.1466666666667 57.8133333333334 35.2 124.3733333333333 42.6666666666667 192C46.9333333333333 259.4133333333334 70.4 326.1866666666667 110.2933333333333 384M257.7066666666667 220.16L307.2 289.0666666666667H361.1733333333333L280.5333333333333 182.4L327.4666666666667 77.4400000000001H279.2533333333334L249.8133333333334 149.3333333333334L197.9733333333334 78.2933333333334H144.2133333333333L227.4133333333334 187.5200000000001L181.9733333333334 289.0666666666667H230.4L257.7066666666667 220.1600000000001z" />
+    <glyph glyph-name="vector-arrange-above"
+      unicode="&#xF554;"
+      horiz-adv-x="512" d=" M64 426.6666666666667C40.32 426.6666666666667 21.3333333333333 407.68 21.3333333333333 384V149.3333333333334C21.3333333333333 125.6533333333334 40.32 106.6666666666667 64 106.6666666666667H298.6666666666667C322.3466666666667 106.6666666666667 341.3333333333333 125.6533333333334 341.3333333333333 149.3333333333334V384C341.3333333333333 407.68 322.3466666666667 426.6666666666667 298.6666666666667 426.6666666666667H64M64 384H298.6666666666667V149.3333333333334H64V384M384 298.6666666666667V256H426.6666666666667V21.3333333333334H192V64H149.3333333333333V21.3333333333334C149.3333333333333 -2.3466666666666 168.32 -21.3333333333333 192 -21.3333333333333H426.6666666666667C450.3466666666667 -21.3333333333333 469.3333333333333 -2.3466666666666 469.3333333333333 21.3333333333334V256C469.3333333333333 279.68 450.3466666666667 298.6666666666667 426.6666666666667 298.6666666666667H384z" />
+    <glyph glyph-name="vector-arrange-below"
+      unicode="&#xF555;"
+      horiz-adv-x="512" d=" M426.6666666666667 -21.3333333333333C450.3466666666667 -21.3333333333333 469.3333333333333 -2.3466666666666 469.3333333333333 21.3333333333334V256C469.3333333333333 279.68 450.3466666666667 298.6666666666667 426.6666666666667 298.6666666666667H192C168.32 298.6666666666667 149.3333333333333 279.68 149.3333333333333 256V21.3333333333334C149.3333333333333 -2.3466666666666 168.32 -21.3333333333333 192 -21.3333333333333H426.6666666666667M426.6666666666667 21.3333333333334H192V256H426.6666666666667V21.3333333333334M106.6666666666667 106.6666666666667V149.3333333333334H64V384H298.6666666666667V341.3333333333334H341.3333333333333V384C341.3333333333333 407.68 322.3466666666667 426.6666666666667 298.6666666666667 426.6666666666667H64C40.32 426.6666666666667 21.3333333333333 407.68 21.3333333333333 384V149.3333333333334C21.3333333333333 125.6533333333334 40.32 106.6666666666667 64 106.6666666666667H106.6666666666667z" />
+    <glyph glyph-name="vector-bezier"
+      unicode="&#xFAE7;"
+      horiz-adv-x="512" d=" M160 362.6666666666667C142.2933333333333 362.6666666666667 128 348.3733333333334 128 330.6666666666667S142.2933333333333 298.6666666666667 160 298.6666666666667C173.44 298.6666666666667 185.6 307.2000000000001 190.08 320H277.3333333333333C291.6266666666667 334.2933333333334 305.7066666666667 341.3333333333334 320 341.3333333333334H190.08C185.6 354.1333333333334 173.44 362.6666666666667 160 362.6666666666667M405.3333333333333 341.3333333333334C170.6666666666667 341.3333333333334 298.6666666666667 85.3333333333334 106.6666666666667 85.3333333333334V42.6666666666667C341.3333333333333 42.6666666666667 213.3333333333333 298.6666666666667 405.3333333333333 298.6666666666667V341.3333333333334M352 85.3333333333334C338.56 85.3333333333334 326.4 76.8000000000001 321.92 64H234.6666666666667C220.3733333333333 49.7066666666667 206.2933333333333 42.6666666666667 192 42.6666666666667H321.92C326.4 29.8666666666667 338.56 21.3333333333334 352 21.3333333333334C369.7066666666666 21.3333333333334 384 35.6266666666667 384 53.3333333333334S369.7066666666666 85.3333333333334 352 85.3333333333334z" />
+    <glyph glyph-name="vector-circle"
+      unicode="&#xF556;"
+      horiz-adv-x="512" d=" M192 405.3333333333333V361.3866666666667C143.36 343.04 104.96 304.64 86.4 256H42.6666666666667V128H86.6133333333334C104.96 79.36 143.36 40.7466666666667 192 22.4V-21.3333333333333H320V22.6133333333333C368.64 40.96 407.2533333333334 79.36 425.6 128H469.3333333333333V256H425.3866666666667C407.04 304.64 368.64 343.04 320 361.6V405.3333333333333M234.6666666666667 362.6666666666667H277.3333333333333V320H234.6666666666667M192 314.6666666666667V277.3333333333334H320V314.6666666666667C345.1733333333333 301.6533333333333 365.6533333333333 281.1733333333334 378.6666666666667 256H341.3333333333333V128H378.6666666666667C365.6533333333333 102.8266666666667 345.1733333333333 82.3466666666667 320 69.3333333333334V106.6666666666667H192V69.3333333333334C166.8266666666667 82.3466666666667 146.3466666666666 102.8266666666667 133.3333333333333 128H170.6666666666667V256H133.3333333333333C146.3466666666667 281.1733333333334 166.8266666666667 301.6533333333333 192 314.6666666666667M85.3333333333333 213.3333333333334H128V170.6666666666667H85.3333333333333M384 213.3333333333334H426.6666666666667V170.6666666666667H384M234.6666666666667 64H277.3333333333333V21.3333333333334H234.6666666666667" />
+    <glyph glyph-name="vector-circle-variant"
+      unicode="&#xF557;"
+      horiz-adv-x="512" d=" M469.3333333333333 256H426.0266666666667C398.9333333333333 332.5866666666667 326.6133333333333 384 245.3333333333333 384C139.3066666666666 384 53.3333333333333 298.0266666666667 53.3333333333333 192C53.3333333333333 85.3333333333334 139.3066666666666 0 245.3333333333333 0C326.6133333333333 0 398.9333333333333 51.2 426.6666666666667 128H469.3333333333333M426.6666666666667 213.3333333333334V170.6666666666667H384V213.3333333333334M380.16 128C355.4133333333333 75.9466666666667 302.9333333333333 42.6666666666667 245.3333333333333 42.6666666666667C162.9866666666667 42.6666666666667 96 109.44 96 192C96 274.3466666666667 162.9866666666667 341.3333333333334 245.3333333333333 341.3333333333334C302.9333333333333 341.3333333333334 355.4133333333333 307.8400000000001 379.9466666666666 256H341.3333333333333V128" />
+    <glyph glyph-name="vector-combine"
+      unicode="&#xF558;"
+      horiz-adv-x="512" d=" M64 426.6666666666667C40.32 426.6666666666667 21.3333333333333 407.68 21.3333333333333 384V149.3333333333334C21.3333333333333 125.6533333333334 40.32 106.6666666666667 64 106.6666666666667H149.3333333333333V21.3333333333334C149.3333333333333 -2.3466666666666 168.32 -21.3333333333333 192 -21.3333333333333H426.6666666666667C450.3466666666667 -21.3333333333333 469.3333333333333 -2.3466666666666 469.3333333333333 21.3333333333334V256C469.3333333333333 279.68 450.3466666666667 298.6666666666667 426.6666666666667 298.6666666666667H341.3333333333333V384C341.3333333333333 407.68 322.3466666666667 426.6666666666667 298.6666666666667 426.6666666666667H64M64 384H298.6666666666667V298.6666666666667H192C168.32 298.6666666666667 149.3333333333333 279.68 149.3333333333333 256V149.3333333333334H64V384M192 256H298.6666666666667V149.3333333333334H192V256M341.3333333333333 256H426.6666666666667V21.3333333333334H192V106.6666666666667H298.6666666666667C322.3466666666667 106.6666666666667 341.3333333333333 125.6533333333334 341.3333333333333 149.3333333333334V256z" />
+    <glyph glyph-name="vector-curve"
+      unicode="&#xF559;"
+      horiz-adv-x="512" d=" M394.6666666666667 405.3333333333333C412.3733333333333 405.3333333333333 426.6666666666667 391.04 426.6666666666667 373.3333333333334S412.3733333333333 341.3333333333334 394.6666666666667 341.3333333333334C389.76 341.3333333333334 385.0666666666667 342.4 380.8 344.5333333333334L302.0800000000001 265.6L309.3333333333334 256C356.0533333333334 282.88 410.88 298.6666666666667 469.3333333333333 298.6666666666667L490.6666666666666 298.0266666666667V255.1466666666667L469.3333333333333 256C414.2933333333334 256 362.6666666666667 240 320 212.48C320 165.7600000000001 282.24 128 235.52 128C208 85.3333333333334 192 33.7066666666667 192 -21.3333333333333L192.8533333333333 -42.6666666666666H149.9733333333333L149.3333333333333 -21.3333333333333C149.3333333333333 37.1200000000001 165.12 91.9466666666667 192 138.6666666666667L182.4 145.92L103.4666666666667 67.2C105.6 62.9333333333333 106.6666666666667 58.24 106.6666666666667 53.3333333333334C106.6666666666667 35.6266666666667 92.3733333333334 21.3333333333334 74.6666666666667 21.3333333333334S42.6666666666667 35.6266666666667 42.6666666666667 53.3333333333334S56.96 85.3333333333334 74.6666666666667 85.3333333333334C79.5733333333333 85.3333333333334 84.2666666666667 84.2666666666667 88.5333333333333 82.1333333333334L167.2533333333333 161.0666666666667C155.9466666666667 175.36 149.3333333333333 193.7066666666667 149.3333333333333 213.3333333333334C149.3333333333333 260.48 187.52 298.6666666666667 234.6666666666667 298.6666666666667C254.2933333333333 298.6666666666667 272.64 292.0533333333334 286.9333333333333 280.7466666666667L365.8666666666666 359.4666666666667C363.7333333333333 363.7333333333334 362.6666666666667 368.4266666666667 362.6666666666667 373.3333333333333C362.6666666666667 391.04 376.9600000000001 405.3333333333333 394.6666666666667 405.3333333333333M234.6666666666667 256C211.2 256 192 236.8 192 213.3333333333334S211.2 170.6666666666667 234.6666666666667 170.6666666666667S277.3333333333333 189.8666666666667 277.3333333333333 213.3333333333334S258.1333333333334 256 234.6666666666667 256z" />
+    <glyph glyph-name="vector-difference"
+      unicode="&#xF55A;"
+      horiz-adv-x="512" d=" M64 426.6666666666667C40.32 426.6666666666667 21.3333333333333 407.68 21.3333333333333 384V149.3333333333334C21.3333333333333 125.6533333333334 40.32 106.6666666666667 64 106.6666666666667H106.6666666666667V149.3333333333334H64V384H298.6666666666667V341.3333333333334H341.3333333333333V384C341.3333333333333 407.68 322.3466666666667 426.6666666666667 298.6666666666667 426.6666666666667H64M192 298.6666666666667C168.32 298.6666666666667 149.3333333333333 279.68 149.3333333333333 256V213.3333333333334H192V256H234.6666666666667V298.6666666666667H192M277.3333333333333 298.6666666666667V256H298.6666666666667V234.6666666666667H341.3333333333333V298.6666666666667H277.3333333333333M384 298.6666666666667V256H426.6666666666667V21.3333333333334H192V64H149.3333333333333V21.3333333333334C149.3333333333333 -2.3466666666666 168.32 -21.3333333333333 192 -21.3333333333333H426.6666666666667C450.3466666666667 -21.3333333333333 469.3333333333333 -2.3466666666666 469.3333333333333 21.3333333333334V256C469.3333333333333 279.68 450.3466666666667 298.6666666666667 426.6666666666667 298.6666666666667H384M298.6666666666667 192V149.3333333333334H256V106.6666666666667H298.6666666666667C322.3466666666667 106.6666666666667 341.3333333333333 125.6533333333334 341.3333333333333 149.3333333333334V192H298.6666666666667M149.3333333333333 170.6666666666667V106.6666666666667H213.3333333333333V149.3333333333334H192V170.6666666666667H149.3333333333333z" />
+    <glyph glyph-name="vector-difference-ab"
+      unicode="&#xF55B;"
+      horiz-adv-x="512" d=" M64 426.6666666666667C40.32 426.6666666666667 21.3333333333333 407.68 21.3333333333333 384V341.3333333333334H64V384H106.6666666666667V426.6666666666667H64M149.3333333333333 426.6666666666667V384H213.3333333333333V426.6666666666667H149.3333333333333M256 426.6666666666667V384H298.6666666666667V341.3333333333334H341.3333333333333V384C341.3333333333333 407.68 322.3466666666667 426.6666666666667 298.6666666666667 426.6666666666667H256M21.3333333333333 298.6666666666667V234.6666666666667H64V298.6666666666667H21.3333333333333M298.6666666666667 298.6666666666667V149.3333333333334H149.3333333333333V21.3333333333334C149.3333333333333 -2.3466666666666 168.32 -21.3333333333333 192 -21.3333333333333H426.6666666666667C450.3466666666667 -21.3333333333333 469.3333333333333 -2.3466666666666 469.3333333333333 21.3333333333334V256C469.3333333333333 279.68 450.3466666666667 298.6666666666667 426.6666666666667 298.6666666666667H298.6666666666667M341.3333333333333 256H426.6666666666667V21.3333333333334H192V106.6666666666667H298.6666666666667C322.3466666666667 106.6666666666667 341.3333333333333 125.6533333333334 341.3333333333333 149.3333333333334V256M21.3333333333333 192V149.3333333333334C21.3333333333333 125.6533333333334 40.32 106.6666666666667 64 106.6666666666667H106.6666666666667V149.3333333333334H64V192H21.3333333333333z" />
+    <glyph glyph-name="vector-difference-ba"
+      unicode="&#xF55C;"
+      horiz-adv-x="512" d=" M426.6666666666667 -21.3333333333333C450.3466666666667 -21.3333333333333 469.3333333333333 -2.3466666666666 469.3333333333333 21.3333333333334V64H426.6666666666667V21.3333333333334H384V-21.3333333333333H426.6666666666667M341.3333333333333 -21.3333333333333V21.3333333333334H277.3333333333333V-21.3333333333333H341.3333333333333M234.6666666666667 -21.3333333333333V21.3333333333334H192V64H149.3333333333333V21.3333333333334C149.3333333333333 -2.3466666666666 168.32 -21.3333333333333 192 -21.3333333333333H234.6666666666667M469.3333333333333 106.6666666666667V170.6666666666667H426.6666666666667V106.6666666666667H469.3333333333333M192 106.6666666666667V256H341.3333333333333V384C341.3333333333333 407.68 322.3466666666667 426.6666666666667 298.6666666666667 426.6666666666667H64C40.32 426.6666666666667 21.3333333333333 407.68 21.3333333333333 384V149.3333333333334C21.3333333333333 125.6533333333334 40.32 106.6666666666667 64 106.6666666666667H192M149.3333333333333 149.3333333333334H64V384H298.6666666666667V298.6666666666667H192C168.32 298.6666666666667 149.3333333333333 279.68 149.3333333333333 256V149.3333333333334M469.3333333333333 213.3333333333334V256C469.3333333333333 279.68 450.3466666666667 298.6666666666667 426.6666666666667 298.6666666666667H384V256H426.6666666666667V213.3333333333334H469.3333333333333z" />
+    <glyph glyph-name="vector-ellipse"
+      unicode="&#xF892;"
+      horiz-adv-x="512" d=" M490.6666666666666 256V128H434.1333333333334C413.4400000000001 82.7733333333333 371.84 47.36 320 31.1466666666667V-21.3333333333333H192V31.1466666666667C117.3333333333333 54.4 64 117.3333333333334 64 192C64 286.2933333333334 149.9733333333333 362.6666666666667 256 362.6666666666667C336.64 362.6666666666667 405.3333333333333 318.5066666666667 434.1333333333334 256H490.6666666666666M362.6666666666667 128V256H385.28C359.4666666666667 294.1866666666667 311.2533333333334 320 256 320C173.44 320 106.6666666666667 262.6133333333334 106.6666666666667 192C106.6666666666667 141.0133333333333 141.6533333333333 96.8533333333334 192 76.3733333333333V106.6666666666667H320V76.3733333333333C347.52 87.4666666666666 370.1333333333334 105.6 385.28 128H362.6666666666667M405.3333333333333 170.6666666666666H448V213.3333333333333H405.3333333333333V170.6666666666666M234.6666666666667 21.3333333333334H277.3333333333333V64H234.6666666666667V21.3333333333334z" />
+    <glyph glyph-name="vector-intersection"
+      unicode="&#xF55D;"
+      horiz-adv-x="512" d=" M66.9866666666667 426.6666666666667C41.8133333333333 426.6666666666667 21.3333333333333 406.1866666666667 21.3333333333333 381.0133333333333V341.3333333333334H64V384H106.6666666666667V426.6666666666667H66.9866666666667M149.3333333333333 426.6666666666667V384H213.3333333333333V426.6666666666667H149.3333333333333M256 426.6666666666667V384H298.6666666666667V341.3333333333334H341.3333333333333V381.0133333333333C341.3333333333333 406.1866666666667 320.8533333333333 426.6666666666667 295.68 426.6666666666667H256M21.3333333333333 298.6666666666667V234.6666666666667H64V298.6666666666667H21.3333333333333M192 298.6666666666667C168.32 298.6666666666667 149.3333333333333 279.68 149.3333333333333 256V106.6666666666667H295.68C320.8533333333333 106.6666666666667 341.3333333333333 127.1466666666667 341.3333333333333 152.3200000000001V298.6666666666667H192M384 298.6666666666667V256H426.6666666666667V213.3333333333334H469.3333333333333V256C469.3333333333333 279.68 450.3466666666667 298.6666666666667 426.6666666666667 298.6666666666667H384M192 256H298.6666666666667V149.3333333333334H192V256M21.3333333333333 192V152.3200000000001C21.3333333333333 127.1466666666667 41.8133333333333 106.6666666666667 66.9866666666667 106.6666666666667H106.6666666666667V149.3333333333334H64V192H21.3333333333333M426.6666666666667 170.6666666666667V106.6666666666667H469.3333333333333V170.6666666666667H426.6666666666667M149.3333333333333 64V21.3333333333334C149.3333333333333 -2.3466666666666 168.32 -21.3333333333333 192 -21.3333333333333H234.6666666666667V21.3333333333334H192V64H149.3333333333333M426.6666666666667 64V21.3333333333334H384V-21.3333333333333H426.6666666666667C450.3466666666667 -21.3333333333333 469.3333333333333 -2.3466666666666 469.3333333333333 21.3333333333334V64H426.6666666666667M277.3333333333333 21.3333333333334V-21.3333333333333H341.3333333333333V21.3333333333334H277.3333333333333z" />
+    <glyph glyph-name="vector-line"
+      unicode="&#xF55E;"
+      horiz-adv-x="512" d=" M320 384V286.0800000000001L161.92 128H64V0H192V97.7066666666667L350.2933333333334 256H448V384M362.6666666666667 341.3333333333334H405.3333333333333V298.6666666666667H362.6666666666667M106.6666666666667 85.3333333333334H149.3333333333333V42.6666666666667H106.6666666666667" />
+    <glyph glyph-name="vector-point"
+      unicode="&#xF55F;"
+      horiz-adv-x="512" d=" M256 21.3333333333334L149.3333333333333 -21.3333333333333L256 213.3333333333334L362.6666666666667 -21.3333333333333L256 21.3333333333334M170.6666666666667 405.3333333333333H341.3333333333333V341.3333333333334H469.3333333333333V298.6666666666667H341.3333333333333V234.6666666666667H170.6666666666667V298.6666666666667H42.6666666666667V341.3333333333334H170.6666666666667V405.3333333333333M213.3333333333333 362.6666666666667V277.3333333333334H298.6666666666667V362.6666666666667H213.3333333333333z" />
+    <glyph glyph-name="vector-polygon"
+      unicode="&#xF560;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333V277.3333333333334H91.3066666666666L118.8266666666667 106.6666666666667H85.3333333333333V-21.3333333333333H213.3333333333333V20.0533333333334L320 20.2666666666668V-21.3333333333333H448V106.6666666666667H408.9600000000001L426.6666666666667 256H469.3333333333333V384H341.3333333333333V308.6933333333334L315.7333333333334 277.3333333333334H204.5866666666667L170.6666666666667 323.8400000000001V405.3333333333333M85.3333333333333 362.6666666666667H128V320H85.3333333333333M384 341.3333333333334H426.6666666666667V298.6666666666667H384M134.6133333333333 277.3333333333334H151.68L192 222.08V149.3333333333334H320V215.2533333333333L353.4933333333334 256H384L366.08 106.6666666666667H320V62.72H213.3333333333333V106.6666666666667H162.1333333333333M234.6666666666667 234.6666666666667H277.3333333333333V192H234.6666666666667M128 64H170.6666666666667V21.3333333333334H128M362.6666666666667 64H405.3333333333333V21.3333333333334H362.6666666666667" />
+    <glyph glyph-name="vector-polyline"
+      unicode="&#xF561;"
+      horiz-adv-x="512" d=" M341.3333333333333 405.3333333333333V277.3333333333334H364.3733333333333L318.9333333333333 170.6666666666667H304.2133333333333L256 235.3066666666667V341.3333333333334H128V213.3333333333334H147.4133333333333L104.1066666666667 106.6666666666667H42.6666666666667V-21.3333333333333H170.6666666666667V106.6666666666667H150.1866666666667L193.4933333333334 213.3333333333334H219.0933333333333L256 163.84V42.6666666666667H384V170.6666666666667H365.2266666666667L410.6666666666667 277.3333333333334H469.3333333333333V405.3333333333333M384 362.6666666666667H426.6666666666667V320H384M170.6666666666667 298.6666666666667H213.3333333333333V256H170.6666666666667M298.6666666666667 128H341.3333333333333V85.3333333333334H298.6666666666667M85.3333333333333 64H128V21.3333333333334H85.3333333333333" />
+    <glyph glyph-name="vector-radius"
+      unicode="&#xF749;"
+      horiz-adv-x="512" d=" M42.6666666666667 362.6666666666667H85.3333333333333V405.3333333333333H213.3333333333333V362.6666666666667C331.0933333333333 362.6666666666667 426.6666666666667 267.0933333333334 426.6666666666667 149.3333333333334H469.3333333333333V21.3333333333334H426.6666666666667V-21.3333333333333H384V21.3333333333334H341.3333333333333V149.3333333333334H384C384 243.6266666666667 307.6266666666667 320 213.3333333333333 320V277.3333333333334H85.3333333333333V320H42.6666666666667V362.6666666666667M384 106.6666666666667V64H426.6666666666667V106.6666666666667H384M128 362.6666666666667V320H170.6666666666667V362.6666666666667H128z" />
+    <glyph glyph-name="vector-rectangle"
+      unicode="&#xF5C6;"
+      horiz-adv-x="512" d=" M42.6666666666667 362.6666666666667H170.6666666666667V320H341.3333333333333V362.6666666666667H469.3333333333333V234.6666666666667H426.6666666666667V149.3333333333334H469.3333333333333V21.3333333333334H341.3333333333333V64H170.6666666666667V21.3333333333334H42.6666666666667V149.3333333333334H85.3333333333333V234.6666666666667H42.6666666666667V362.6666666666667M341.3333333333333 234.6666666666667V277.3333333333334H170.6666666666667V234.6666666666667H128V149.3333333333334H170.6666666666667V106.6666666666667H341.3333333333333V149.3333333333334H384V234.6666666666667H341.3333333333333M85.3333333333333 320V277.3333333333334H128V320H85.3333333333333M384 320V277.3333333333334H426.6666666666667V320H384M85.3333333333333 106.6666666666667V64H128V106.6666666666667H85.3333333333333M384 106.6666666666667V64H426.6666666666667V106.6666666666667H384z" />
+    <glyph glyph-name="vector-selection"
+      unicode="&#xF562;"
+      horiz-adv-x="512" d=" M64 426.6666666666667H106.6666666666667V384H64V341.3333333333334H21.3333333333333V384C21.3333333333333 407.4666666666667 40.5333333333333 426.6666666666667 64 426.6666666666667M298.6666666666667 426.6666666666667C322.1333333333334 426.6666666666667 341.3333333333333 407.4666666666667 341.3333333333333 384V341.3333333333334H298.6666666666667V384H256V426.6666666666667H298.6666666666667M426.6666666666667 298.6666666666667C450.1333333333334 298.6666666666667 469.3333333333333 279.4666666666667 469.3333333333333 256V213.3333333333334H426.6666666666667V256H384V298.6666666666667H426.6666666666667M469.3333333333333 21.3333333333334C469.3333333333333 -2.1333333333333 450.1333333333334 -21.3333333333333 426.6666666666667 -21.3333333333333H384V21.3333333333334H426.6666666666667V64H469.3333333333333V21.3333333333334M426.6666666666667 170.6666666666667H469.3333333333333V106.6666666666667H426.6666666666667V170.6666666666667M277.3333333333333 256V298.6666666666667H341.3333333333333V234.6666666666667H298.6666666666667V256H277.3333333333333M277.3333333333333 -21.3333333333333V21.3333333333334H341.3333333333333V-21.3333333333333H277.3333333333333M192 -21.3333333333333C168.5333333333333 -21.3333333333333 149.3333333333333 -2.1333333333333 149.3333333333333 21.3333333333334V64H192V21.3333333333334H234.6666666666667V-21.3333333333333H192M149.3333333333333 106.6666666666667V170.6666666666667H192V149.3333333333334H213.3333333333333V106.6666666666667H149.3333333333333M149.3333333333333 384V426.6666666666667H213.3333333333333V384H149.3333333333333M64 106.6666666666667C40.5333333333333 106.6666666666667 21.3333333333333 125.8666666666667 21.3333333333333 149.3333333333334V192H64V149.3333333333334H106.6666666666667V106.6666666666667H64M21.3333333333333 298.6666666666667H64V234.6666666666667H21.3333333333333V298.6666666666667M192 298.6666666666667H234.6666666666667V256H192V213.3333333333334H149.3333333333333V256C149.3333333333333 279.4666666666667 168.5333333333333 298.6666666666667 192 298.6666666666667M341.3333333333333 149.3333333333334C341.3333333333333 125.8666666666667 322.1333333333334 106.6666666666667 298.6666666666667 106.6666666666667H256V149.3333333333334H298.6666666666667V192H341.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="vector-square"
+      unicode="&#xF001;"
+      horiz-adv-x="512" d=" M42.6666666666667 405.3333333333333H170.6666666666667V362.6666666666667H341.3333333333333V405.3333333333333H469.3333333333333V277.3333333333334H426.6666666666667V106.6666666666667H469.3333333333333V-21.3333333333333H341.3333333333333V21.3333333333334H170.6666666666667V-21.3333333333333H42.6666666666667V106.6666666666667H85.3333333333333V277.3333333333334H42.6666666666667V405.3333333333333M341.3333333333333 277.3333333333334V320H170.6666666666667V277.3333333333334H128V106.6666666666667H170.6666666666667V64H341.3333333333333V106.6666666666667H384V277.3333333333334H341.3333333333333M85.3333333333333 362.6666666666667V320H128V362.6666666666667H85.3333333333333M384 362.6666666666667V320H426.6666666666667V362.6666666666667H384M85.3333333333333 64V21.3333333333334H128V64H85.3333333333333M384 64V21.3333333333334H426.6666666666667V64H384z" />
+    <glyph glyph-name="vector-triangle"
+      unicode="&#xF563;"
+      horiz-adv-x="512" d=" M192 384V256H207.5733333333333L123.52 106.6666666666667H42.6666666666667V-21.3333333333333H170.6666666666667V21.3333333333334H341.3333333333333V-21.3333333333333H469.3333333333333V106.6666666666667H388.48L304.4266666666667 256H320V384M234.6666666666667 341.3333333333334H277.3333333333333V298.6666666666667H234.6666666666667M256 255.1466666666667L341.3333333333333 103.4666666666667V64H170.6666666666667V103.4666666666667M85.3333333333333 64H128V21.3333333333334H85.3333333333333M384 64H426.6666666666667V21.3333333333334H384" />
+    <glyph glyph-name="vector-union"
+      unicode="&#xF564;"
+      horiz-adv-x="512" d=" M64 426.6666666666667C40.32 426.6666666666667 21.3333333333333 407.68 21.3333333333333 384V149.3333333333334C21.3333333333333 125.6533333333334 40.32 106.6666666666667 64 106.6666666666667H149.3333333333333V21.3333333333334C149.3333333333333 -2.3466666666666 168.32 -21.3333333333333 192 -21.3333333333333H426.6666666666667C450.3466666666667 -21.3333333333333 469.3333333333333 -2.3466666666666 469.3333333333333 21.3333333333334V256C469.3333333333333 279.68 450.3466666666667 298.6666666666667 426.6666666666667 298.6666666666667H341.3333333333333V384C341.3333333333333 407.68 322.3466666666667 426.6666666666667 298.6666666666667 426.6666666666667H64M64 384H298.6666666666667V256H426.6666666666667V21.3333333333334H192V149.3333333333334H64V384z" />
+    <glyph glyph-name="venmo"
+      unicode="&#xF578;"
+      horiz-adv-x="512" d=" M416 384C429.6533333333333 360.9600000000001 436.0533333333334 337.2800000000001 436.0533333333334 307.2000000000001C436.0533333333334 211.6266666666667 354.3466666666667 87.2533333333333 288 0H136.7466666666667L75.9466666666667 362.6666666666667L208.4266666666667 375.68L240.64 117.3333333333334C270.72 166.1866666666667 307.6266666666667 242.9866666666667 307.6266666666667 295.2533333333334C307.6266666666667 324.0533333333334 302.72 343.4666666666667 295.04 359.4666666666667L416 384z" />
+    <glyph glyph-name="verified"
+      unicode="&#xF565;"
+      horiz-adv-x="512" d=" M213.3333333333333 85.3333333333334L128 170.6666666666667L158.08 200.7466666666667L213.3333333333333 145.7066666666667L353.92 286.2933333333334L384 256M256 426.6666666666667L64 341.3333333333334V213.3333333333334C64 94.9333333333333 145.92 -15.7866666666667 256 -42.6666666666666C366.08 -15.7866666666666 448 94.9333333333333 448 213.3333333333334V341.3333333333334L256 426.6666666666667z" />
+    <glyph glyph-name="vhs"
+      unicode="&#xFA1A;"
+      horiz-adv-x="512" d=" M85.3333333333333 320C61.8666666666667 320 42.6666666666667 300.8 42.6666666666667 277.3333333333334V106.6666666666667C42.6666666666667 83.2 61.8666666666667 64 85.3333333333333 64H426.6666666666667C450.1333333333334 64 469.3333333333333 83.2 469.3333333333333 106.6666666666667V277.3333333333334C469.3333333333333 300.8 450.1333333333334 320 426.6666666666667 320H85.3333333333333M96.8533333333333 234.6666666666667H149.3333333333333V149.3333333333334H96.8533333333333C89.3866666666667 162.3466666666667 85.3333333333333 177.0666666666667 85.3333333333333 192S89.3866666666667 221.6533333333334 96.8533333333333 234.6666666666667M192 234.6666666666667H320V149.3333333333334H192V234.6666666666667M362.6666666666667 234.6666666666667H415.1466666666667C422.6133333333334 221.6533333333334 426.6666666666667 206.9333333333333 426.6666666666667 192S422.6133333333333 162.3466666666667 415.1466666666667 149.3333333333334H362.6666666666667V234.6666666666667z" />
+    <glyph glyph-name="vibrate"
+      unicode="&#xF566;"
+      horiz-adv-x="512" d=" M341.3333333333333 42.6666666666667H170.6666666666667V341.3333333333334H341.3333333333333M352 384H160C142.2933333333333 384 128 369.7066666666667 128 352V32C128 14.2933333333334 142.2933333333333 0 160 0H352C369.7066666666666 0 384 14.2933333333334 384 32V352C384 369.7066666666667 369.7066666666666 384 352 384M405.3333333333333 85.3333333333334H448V298.6666666666667H405.3333333333333M469.3333333333333 256V128H512V256M64 85.3333333333334H106.6666666666667V298.6666666666667H64M0 128H42.6666666666667V256H0V128z" />
+    <glyph glyph-name="video"
+      unicode="&#xF567;"
+      horiz-adv-x="512" d=" M362.6666666666667 224V298.6666666666667C362.6666666666667 310.4 353.0666666666667 320 341.3333333333333 320H85.3333333333333C73.6 320 64 310.4 64 298.6666666666667V85.3333333333334C64 73.6 73.6 64 85.3333333333333 64H341.3333333333333C353.0666666666667 64 362.6666666666667 73.6 362.6666666666667 85.3333333333334V160L448 74.6666666666667V309.3333333333334L362.6666666666667 224z" />
+    <glyph glyph-name="video-3d"
+      unicode="&#xF7FC;"
+      horiz-adv-x="512" d=" M106.6666666666667 298.6666666666667H192C215.4666666666667 298.6666666666667 234.6666666666667 279.4666666666667 234.6666666666667 256V128C234.6666666666667 104.5333333333333 215.4666666666667 85.3333333333334 192 85.3333333333334H106.6666666666667V128H192V170.6666666666667H128V213.3333333333334H192V256H106.6666666666667V298.6666666666667M277.3333333333333 298.6666666666667H341.3333333333333C376.7466666666667 298.6666666666667 405.3333333333333 270.0800000000001 405.3333333333333 234.6666666666667V149.3333333333334C405.3333333333333 113.92 376.7466666666667 85.3333333333334 341.3333333333333 85.3333333333334H277.3333333333333V298.6666666666667M341.3333333333333 128C353.0666666666667 128 362.6666666666667 137.6 362.6666666666667 149.3333333333334V234.6666666666667C362.6666666666667 246.4000000000001 353.0666666666667 256 341.3333333333333 256H320V128H341.3333333333333z" />
+    <glyph glyph-name="video-4k-box"
+      unicode="&#xF83D;"
+      horiz-adv-x="512" d=" M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384M385.92 128L343.04 192L385.9199999999999 256H349.0133333333332L306.9866666666666 192V256H274.9866666666666V128H306.9866666666666V192L349.0133333333332 128H385.9199999999999M253.0133333333333 160V192H232.1066666666666V256H200.1066666666666V192H168.1066666666666V256H136.1066666666666V160H200.1066666666666V128H232.1066666666666V160H253.0133333333333z" />
+    <glyph glyph-name="video-account"
+      unicode="&#xF918;"
+      horiz-adv-x="512" d=" M362.6666666666667 224L448 309.3333333333334V74.6666666666667L362.6666666666667 160V85.3333333333334C362.6666666666667 73.6 353.0666666666667 64 341.3333333333333 64H85.3333333333333C73.6 64 64 73.6 64 85.3333333333334V298.6666666666667C64 310.4 73.6 320 85.3333333333333 320H341.3333333333333C353.0666666666667 320 362.6666666666667 310.4 362.6666666666667 298.6666666666667V224M298.6666666666667 106.6666666666667V128C298.6666666666667 156.3733333333333 241.7066666666667 170.6666666666667 213.3333333333333 170.6666666666667S128 156.3733333333333 128 128V106.6666666666667H298.6666666666667M213.3333333333333 277.3333333333334C189.8666666666667 277.3333333333334 170.6666666666667 258.1333333333334 170.6666666666667 234.6666666666667S189.8666666666667 192 213.3333333333333 192S256 211.2 256 234.6666666666667S236.8 277.3333333333334 213.3333333333333 277.3333333333334z" />
+    <glyph glyph-name="video-image"
+      unicode="&#xF919;"
+      horiz-adv-x="512" d=" M362.6666666666667 224L448 309.3333333333334V74.6666666666667L362.6666666666667 160V85.3333333333334C362.6666666666667 73.6 353.0666666666667 64 341.3333333333333 64H85.3333333333333C73.6 64 64 73.6 64 85.3333333333334V298.6666666666667C64 310.4 73.6 320 85.3333333333333 320H341.3333333333333C353.0666666666667 320 362.6666666666667 310.4 362.6666666666667 298.6666666666667V224M232.7466666666667 244.2666666666667L196.2666666666667 195.84L224 158.9333333333333L208.4266666666667 147.4133333333334L164.9066666666667 205.6533333333334L106.6666666666667 128H320L232.7466666666667 244.2666666666667z" />
+    <glyph glyph-name="video-input-antenna"
+      unicode="&#xF83E;"
+      horiz-adv-x="512" d=" M256 341.3333333333334C173.44 341.3333333333334 106.6666666666667 274.5600000000001 106.6666666666667 192H149.3333333333333C149.3333333333333 250.88 197.12 298.6666666666667 256 298.6666666666667S362.6666666666667 250.88 362.6666666666667 192H405.3333333333333C405.3333333333333 274.5600000000001 338.56 341.3333333333334 256 341.3333333333334M277.3333333333333 143.1466666666667C296.1066666666667 151.4666666666667 309.3333333333333 170.0266666666667 309.3333333333333 192C309.3333333333333 221.44 285.44 245.3333333333334 256 245.3333333333334S202.6666666666667 221.44 202.6666666666667 192C202.6666666666667 170.6666666666667 215.8933333333333 151.4666666666667 234.6666666666667 143.1466666666667V72.7466666666667L161.92 0L192 -30.08L256 33.92L320 -30.08L350.08 0L277.3333333333333 72.7466666666667V143.1466666666667M256 426.6666666666667C126.2933333333333 426.6666666666667 21.3333333333333 321.7066666666667 21.3333333333333 192H64C64 298.0266666666667 149.9733333333333 384 256 384S448 298.0266666666667 448 192H490.6666666666666C490.6666666666666 321.7066666666667 385.7066666666666 426.6666666666667 256 426.6666666666667z" />
+    <glyph glyph-name="video-input-component"
+      unicode="&#xF83F;"
+      horiz-adv-x="512" d=" M106.6666666666667 405.3333333333333C106.6666666666667 417.0666666666667 97.0666666666667 426.6666666666667 85.3333333333333 426.6666666666667S64 417.0666666666667 64 405.3333333333333V320H21.3333333333333V192H149.3333333333333V320H106.6666666666667V405.3333333333333M192 106.6666666666667C192 78.9333333333333 209.92 55.4666666666667 234.6666666666667 46.5066666666667V-42.6666666666666H277.3333333333333V46.5066666666667C302.08 55.2533333333333 320 78.72 320 106.6666666666667V149.3333333333334H192V106.6666666666667M21.3333333333333 106.6666666666667C21.3333333333333 78.9333333333333 39.2533333333333 55.4666666666667 64 46.5066666666667V-42.6666666666666H106.6666666666667V46.5066666666667C131.4133333333333 55.4666666666667 149.3333333333333 78.9333333333333 149.3333333333333 106.6666666666667V149.3333333333334H21.3333333333333V106.6666666666667M448 320V405.3333333333333C448 417.0666666666667 438.4 426.6666666666667 426.6666666666667 426.6666666666667S405.3333333333333 417.0666666666667 405.3333333333333 405.3333333333333V320H362.6666666666667V192H490.6666666666666V320H448M277.3333333333333 405.3333333333333C277.3333333333333 417.0666666666667 267.7333333333334 426.6666666666667 256 426.6666666666667S234.6666666666667 417.0666666666667 234.6666666666667 405.3333333333333V320H192V192H320V320H277.3333333333333V405.3333333333333M362.6666666666667 106.6666666666667C362.6666666666667 78.9333333333333 380.5866666666667 55.4666666666667 405.3333333333333 46.5066666666667V-42.6666666666666H448V46.5066666666667C472.7466666666667 55.2533333333333 490.6666666666666 78.72 490.6666666666666 106.6666666666667V149.3333333333334H362.6666666666667V106.6666666666667z" />
+    <glyph glyph-name="video-input-hdmi"
+      unicode="&#xF840;"
+      horiz-adv-x="512" d=" M384 298.6666666666667V362.6666666666667C384 386.1333333333334 364.8 405.3333333333333 341.3333333333333 405.3333333333333H170.6666666666667C147.2 405.3333333333333 128 386.1333333333334 128 362.6666666666667V298.6666666666667H106.6666666666667V170.6666666666667L170.6666666666667 42.6666666666667V-21.3333333333333H341.3333333333333V42.6666666666667L405.3333333333333 170.6666666666667V298.6666666666667H384M170.6666666666667 362.6666666666667H341.3333333333333V298.6666666666667H298.6666666666667V341.3333333333334H277.3333333333333V298.6666666666667H234.6666666666667V341.3333333333334H213.3333333333333V298.6666666666667H170.6666666666667V362.6666666666667z" />
+    <glyph glyph-name="video-input-svideo"
+      unicode="&#xF841;"
+      horiz-adv-x="512" d=" M170.6666666666667 202.6666666666667C170.6666666666667 220.3733333333333 156.3733333333333 234.6666666666667 138.6666666666667 234.6666666666667S106.6666666666667 220.3733333333333 106.6666666666667 202.6666666666667S120.96 170.6666666666667 138.6666666666667 170.6666666666667S170.6666666666667 184.96 170.6666666666667 202.6666666666667M320 309.3333333333334C320 327.04 305.7066666666667 341.3333333333334 288 341.3333333333334H224C206.2933333333333 341.3333333333334 192 327.04 192 309.3333333333334S206.2933333333333 277.3333333333334 224 277.3333333333334H288C305.7066666666667 277.3333333333334 320 291.6266666666667 320 309.3333333333334M181.3333333333333 128C163.6266666666667 128 149.3333333333333 113.7066666666667 149.3333333333333 96S163.6266666666667 64 181.3333333333333 64S213.3333333333333 78.2933333333334 213.3333333333333 96S199.04 128 181.3333333333333 128M256 426.6666666666667C126.2933333333333 426.6666666666667 21.3333333333333 321.7066666666667 21.3333333333333 192S126.2933333333333 -42.6666666666666 256 -42.6666666666666S490.6666666666666 62.2933333333334 490.6666666666666 192S385.7066666666666 426.6666666666667 256 426.6666666666667M256 0C150.1866666666667 0 64 86.1866666666667 64 192S150.1866666666667 384 256 384S448 297.8133333333334 448 192S361.8133333333334 0 256 0M373.3333333333333 234.6666666666667C355.6266666666667 234.6666666666667 341.3333333333333 220.3733333333333 341.3333333333333 202.6666666666667S355.6266666666667 170.6666666666667 373.3333333333333 170.6666666666667S405.3333333333333 184.96 405.3333333333333 202.6666666666667S391.04 234.6666666666667 373.3333333333333 234.6666666666667M330.6666666666667 128C312.96 128 298.6666666666667 113.7066666666667 298.6666666666667 96S312.96 64 330.6666666666667 64S362.6666666666667 78.2933333333334 362.6666666666667 96S348.3733333333333 128 330.6666666666667 128z" />
+    <glyph glyph-name="video-minus"
+      unicode="&#xF9B1;"
+      horiz-adv-x="512" d=" M362.6666666666667 224V298.6666666666667C362.6666666666667 310.4 353.0666666666667 320 341.3333333333333 320H85.3333333333333C73.6 320 64 310.4 64 298.6666666666667V85.3333333333334C64 73.6 73.6 64 85.3333333333333 64H341.3333333333333C353.0666666666667 64 362.6666666666667 73.6 362.6666666666667 85.3333333333334V160L448 74.6666666666667V309.3333333333334L362.6666666666667 224M298.6666666666667 170.6666666666667H128V213.3333333333334H298.6666666666667V170.6666666666667z" />
+    <glyph glyph-name="video-off"
+      unicode="&#xF568;"
+      horiz-adv-x="512" d=" M69.76 405.3333333333333L42.6666666666667 378.24L100.9066666666667 320H85.3333333333333C73.6 320 64 310.4 64 298.6666666666667V85.3333333333334C64 73.6 73.6 64 85.3333333333333 64H341.3333333333333C345.6 64 349.6533333333333 65.7066666666667 352.8533333333333 67.84L420.9066666666667 0L448 27.0933333333334M448 309.3333333333334L362.6666666666667 224V298.6666666666667C362.6666666666667 310.4 353.0666666666667 320 341.3333333333333 320H209.4933333333334L448 81.4933333333333V309.3333333333334z" />
+    <glyph glyph-name="video-off-outline"
+      unicode="&#xFBB7;"
+      horiz-adv-x="512" d=" M72.7466666666667 408.32L42.6666666666667 378.24L100.9066666666667 320H85.3333333333333C73.6 320 64 310.4 64 298.6666666666667V85.3333333333334C64 73.6 73.6 64 85.3333333333333 64H341.3333333333333C345.8133333333334 64 349.6533333333333 65.7066666666667 353.0666666666667 67.84L420.9066666666667 0L450.9866666666667 30.08L261.9733333333334 219.0933333333333L72.7466666666667 408.32M106.6666666666667 106.6666666666667V277.3333333333334H143.5733333333333L314.24 106.6666666666667H106.6666666666667M320 277.3333333333334V221.6533333333334L448 93.6533333333334V309.3333333333334L362.6666666666667 224V298.6666666666667C362.6666666666667 310.4 353.0666666666667 320 341.3333333333333 320H221.6533333333333L264.32 277.3333333333334H320z" />
+    <glyph glyph-name="video-outline"
+      unicode="&#xFBB8;"
+      horiz-adv-x="512" d=" M320 277.3333333333334V106.6666666666667H106.6666666666667V277.3333333333334H320M341.3333333333333 320H85.3333333333333C73.6 320 64 310.4 64 298.6666666666667V85.3333333333334C64 73.6 73.6 64 85.3333333333333 64H341.3333333333333C353.0666666666667 64 362.6666666666667 73.6 362.6666666666667 85.3333333333334V160L448 74.6666666666667V309.3333333333334L362.6666666666667 224V298.6666666666667C362.6666666666667 310.4 353.0666666666667 320 341.3333333333333 320z" />
+    <glyph glyph-name="video-plus"
+      unicode="&#xF9B2;"
+      horiz-adv-x="512" d=" M362.6666666666667 224V298.6666666666667C362.6666666666667 310.4 353.0666666666667 320 341.3333333333333 320H85.3333333333333C73.6 320 64 310.4 64 298.6666666666667V85.3333333333334C64 73.6 73.6 64 85.3333333333333 64H341.3333333333333C353.0666666666667 64 362.6666666666667 73.6 362.6666666666667 85.3333333333334V160L448 74.6666666666667V309.3333333333334L362.6666666666667 224M298.6666666666667 170.6666666666667H234.6666666666667V106.6666666666667H192V170.6666666666667H128V213.3333333333334H192V277.3333333333334H234.6666666666667V213.3333333333334H298.6666666666667V170.6666666666667z" />
+    <glyph glyph-name="video-stabilization"
+      unicode="&#xF91A;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H426.6666666666667C450.1333333333334 362.6666666666667 469.3333333333333 343.4666666666667 469.3333333333333 320V64C469.3333333333333 40.5333333333333 450.1333333333334 21.3333333333334 426.6666666666667 21.3333333333334H85.3333333333333C61.8666666666667 21.3333333333334 42.6666666666667 40.5333333333333 42.6666666666667 64V320C42.6666666666667 343.4666666666667 61.8666666666667 362.6666666666667 85.3333333333333 362.6666666666667M85.3333333333333 320V64H426.6666666666667V320H85.3333333333333M154.4533333333333 307.6266666666667L401.7066666666666 241.2800000000001L357.5466666666666 76.3733333333333L110.2933333333333 142.72L154.4533333333333 307.6266666666667z" />
+    <glyph glyph-name="video-switch"
+      unicode="&#xF569;"
+      horiz-adv-x="512" d=" M277.3333333333333 117.3333333333334V170.6666666666667H149.3333333333333V117.3333333333334L74.6666666666667 192L149.3333333333333 266.6666666666667V213.3333333333334H277.3333333333333V266.6666666666667L352 192M384 245.3333333333334V320C384 331.7333333333334 374.4 341.3333333333334 362.6666666666667 341.3333333333334H64C52.2666666666667 341.3333333333334 42.6666666666667 331.7333333333334 42.6666666666667 320V64C42.6666666666667 52.2666666666667 52.2666666666667 42.6666666666667 64 42.6666666666667H362.6666666666667C374.4 42.6666666666667 384 52.2666666666667 384 64V138.6666666666667L469.3333333333333 53.3333333333334V330.6666666666667L384 245.3333333333334z" />
+    <glyph glyph-name="video-vintage"
+      unicode="&#xFA1B;"
+      horiz-adv-x="512" d=" M384 138.6666666666667V213.3333333333334C384 225.0666666666667 374.4 234.6666666666667 362.6666666666667 234.6666666666667H341.3333333333333C389.12 269.0133333333333 400.2133333333333 335.5733333333334 365.8666666666666 384C331.52 431.36 264.96 442.4533333333333 216.96 408.1066666666667C202.6666666666667 397.8666666666667 191.1466666666667 384 183.4666666666667 368.4266666666667C133.3333333333333 399.36 67.6266666666667 384 36.6933333333333 333.44C5.9733333333333 283.3066666666667 21.3333333333333 217.6 71.68 186.6666666666667C76.16 184.1066666666667 80.64 181.3333333333334 85.3333333333333 179.6266666666667V0C85.3333333333333 -11.7333333333333 94.9333333333333 -21.3333333333333 106.6666666666667 -21.3333333333333H362.6666666666667C374.4 -21.3333333333333 384 -11.7333333333333 384 0V74.6666666666667L469.3333333333333 -10.6666666666666V224L384 138.6666666666667M277.3333333333333 362.6666666666667C300.8 362.6666666666667 320 343.4666666666667 320 320S300.8 277.3333333333334 277.3333333333333 277.3333333333334S234.6666666666667 296.5333333333334 234.6666666666667 320S253.8666666666667 362.6666666666667 277.3333333333333 362.6666666666667M128 320C151.4666666666667 320 170.6666666666667 300.8 170.6666666666667 277.3333333333334S151.4666666666667 234.6666666666667 128 234.6666666666667S85.3333333333333 253.8666666666667 85.3333333333333 277.3333333333334S104.5333333333333 320 128 320z" />
+    <glyph glyph-name="view-agenda"
+      unicode="&#xF56A;"
+      horiz-adv-x="512" d=" M426.6666666666667 384H64C52.2666666666667 384 42.6666666666667 374.4 42.6666666666667 362.6666666666667V234.6666666666667C42.6666666666667 222.9333333333333 52.2666666666667 213.3333333333334 64 213.3333333333334H426.6666666666667C438.4 213.3333333333334 448 222.9333333333333 448 234.6666666666667V362.6666666666667C448 374.4 438.4 384 426.6666666666667 384M426.6666666666667 170.6666666666667H64C52.2666666666667 170.6666666666667 42.6666666666667 161.0666666666667 42.6666666666667 149.3333333333334V21.3333333333334C42.6666666666667 9.6 52.2666666666667 0 64 0H426.6666666666667C438.4 0 448 9.6 448 21.3333333333334V149.3333333333334C448 161.0666666666667 438.4 170.6666666666667 426.6666666666667 170.6666666666667z" />
+    <glyph glyph-name="view-array"
+      unicode="&#xF56B;"
+      horiz-adv-x="512" d=" M170.6666666666667 64H362.6666666666667V341.3333333333334H170.6666666666667M384 341.3333333333334V64H448V341.3333333333334M85.3333333333333 64H149.3333333333333V341.3333333333334H85.3333333333333V64z" />
+    <glyph glyph-name="view-carousel"
+      unicode="&#xF56C;"
+      horiz-adv-x="512" d=" M384 320V85.3333333333334H469.3333333333333V320M42.6666666666667 85.3333333333334H128V320H42.6666666666667M149.3333333333333 42.6666666666667H362.6666666666667V362.6666666666667H149.3333333333333V42.6666666666667z" />
+    <glyph glyph-name="view-column"
+      unicode="&#xF56D;"
+      horiz-adv-x="512" d=" M341.3333333333333 341.3333333333334V64H448V341.3333333333334M85.3333333333333 64H192V341.3333333333334H85.3333333333333M213.3333333333333 64H320V341.3333333333334H213.3333333333333V64z" />
+    <glyph glyph-name="view-dashboard"
+      unicode="&#xF56E;"
+      horiz-adv-x="512" d=" M277.3333333333333 384V256H448V384M277.3333333333333 0H448V213.3333333333334H277.3333333333333M64 0H234.6666666666667V128H64M64 170.6666666666667H234.6666666666667V384H64V170.6666666666667z" />
+    <glyph glyph-name="view-dashboard-outline"
+      unicode="&#xFA1C;"
+      horiz-adv-x="512" d=" M405.3333333333333 341.3333333333334V298.6666666666667H320V341.3333333333334H405.3333333333333M192 341.3333333333334V213.3333333333334H106.6666666666667V341.3333333333334H192M405.3333333333333 170.6666666666667V42.6666666666667H320V170.6666666666667H405.3333333333333M192 85.3333333333334V42.6666666666667H106.6666666666667V85.3333333333334H192M448 384H277.3333333333333V256H448V384M234.6666666666667 384H64V170.6666666666667H234.6666666666667V384M448 213.3333333333334H277.3333333333333V0H448V213.3333333333334M234.6666666666667 128H64V0H234.6666666666667V128z" />
+    <glyph glyph-name="view-dashboard-variant"
+      unicode="&#xF842;"
+      horiz-adv-x="512" d=" M42.6666666666667 341.3333333333334V42.6666666666667H170.6666666666667V341.3333333333334H42.6666666666667M192 341.3333333333334V234.6666666666667H320V341.3333333333334H192M341.3333333333333 341.3333333333334V149.3333333333334H469.3333333333333V341.3333333333334H341.3333333333333M192 213.3333333333334V42.6666666666667H320V213.3333333333334H192M341.3333333333333 128V42.6666666666667H469.3333333333333V128H341.3333333333333z" />
+    <glyph glyph-name="view-day"
+      unicode="&#xF56F;"
+      horiz-adv-x="512" d=" M42.6666666666667 384V320H448V384M426.6666666666667 277.3333333333334H64C52.2666666666667 277.3333333333334 42.6666666666667 267.7333333333334 42.6666666666667 256V128C42.6666666666667 116.2666666666667 52.2666666666667 106.6666666666667 64 106.6666666666667H426.6666666666667C438.4 106.6666666666667 448 116.2666666666667 448 128V256C448 267.7333333333334 438.4 277.3333333333334 426.6666666666667 277.3333333333334M42.6666666666667 0H448V64H42.6666666666667V0z" />
+    <glyph glyph-name="view-grid"
+      unicode="&#xF570;"
+      horiz-adv-x="512" d=" M64 213.3333333333334H234.6666666666667V384H64M64 0H234.6666666666667V170.6666666666667H64M277.3333333333333 0H448V170.6666666666667H277.3333333333333M277.3333333333333 384V213.3333333333334H448V384" />
+    <glyph glyph-name="view-headline"
+      unicode="&#xF571;"
+      horiz-adv-x="512" d=" M85.3333333333333 341.3333333333334V298.6666666666667H448V341.3333333333334M85.3333333333333 213.3333333333334H448V256H85.3333333333333M85.3333333333333 42.6666666666667H448V85.3333333333334H85.3333333333333M85.3333333333333 128H448V170.6666666666667H85.3333333333333V128z" />
+    <glyph glyph-name="view-list"
+      unicode="&#xF572;"
+      horiz-adv-x="512" d=" M192 341.3333333333334V256H448V341.3333333333334M192 42.6666666666667H448V128H192M192 149.3333333333334H448V234.6666666666667H192M85.3333333333333 256H170.6666666666667V341.3333333333334H85.3333333333333M85.3333333333333 42.6666666666667H170.6666666666667V128H85.3333333333333M85.3333333333333 149.3333333333334H170.6666666666667V234.6666666666667H85.3333333333333V149.3333333333334z" />
+    <glyph glyph-name="view-module"
+      unicode="&#xF573;"
+      horiz-adv-x="512" d=" M341.3333333333333 341.3333333333334V213.3333333333334H448V341.3333333333334M213.3333333333333 213.3333333333334H320V341.3333333333334H213.3333333333333M341.3333333333333 64H448V192H341.3333333333333M213.3333333333333 64H320V192H213.3333333333333M85.3333333333333 64H192V192H85.3333333333333M85.3333333333333 213.3333333333334H192V341.3333333333334H85.3333333333333V213.3333333333334z" />
+    <glyph glyph-name="view-parallel"
+      unicode="&#xF727;"
+      horiz-adv-x="512" d=" M85.3333333333333 0V384H170.6666666666667V0H85.3333333333333M213.3333333333333 0V384H298.6666666666667V0H213.3333333333333M341.3333333333333 0V384H426.6666666666667V0H341.3333333333333z" />
+    <glyph glyph-name="view-quilt"
+      unicode="&#xF574;"
+      horiz-adv-x="512" d=" M213.3333333333333 341.3333333333334V213.3333333333334H448V341.3333333333334M341.3333333333333 64H448V192H341.3333333333333M85.3333333333333 64H192V341.3333333333334H85.3333333333333M213.3333333333333 64H320V192H213.3333333333333V64z" />
+    <glyph glyph-name="view-sequential"
+      unicode="&#xF728;"
+      horiz-adv-x="512" d=" M64 362.6666666666667H448V277.3333333333334H64V362.6666666666667M64 234.6666666666667H448V149.3333333333334H64V234.6666666666667M64 106.6666666666667H448V21.3333333333334H64V106.6666666666667z" />
+    <glyph glyph-name="view-split-horizontal"
+      unicode="&#xFBA7;"
+      horiz-adv-x="512" d=" M64 341.3333333333334H448V298.6666666666667H64V341.3333333333334M64 213.3333333333334V256H448V213.3333333333334H64M64 42.6666666666667V170.6666666666667H448V42.6666666666667H64z" />
+    <glyph glyph-name="view-split-vertical"
+      unicode="&#xFBA8;"
+      horiz-adv-x="512" d=" M277.3333333333333 341.3333333333334H448V42.6666666666667H277.3333333333333V341.3333333333334M64 341.3333333333334H234.6666666666667V298.6666666666667H64V341.3333333333334M64 213.3333333333334V256H234.6666666666667V213.3333333333334H64M64 42.6666666666667V85.3333333333334H234.6666666666667V42.6666666666667H64M64 128V170.6666666666667H234.6666666666667V128H64z" />
+    <glyph glyph-name="view-stream"
+      unicode="&#xF575;"
+      horiz-adv-x="512" d=" M85.3333333333333 341.3333333333334V213.3333333333334H448V341.3333333333334M85.3333333333333 64H448V192H85.3333333333333V64z" />
+    <glyph glyph-name="view-week"
+      unicode="&#xF576;"
+      horiz-adv-x="512" d=" M277.3333333333333 341.3333333333334H213.3333333333333C201.6 341.3333333333334 192 331.7333333333334 192 320V64C192 52.2666666666667 201.6 42.6666666666667 213.3333333333333 42.6666666666667H277.3333333333333C289.0666666666667 42.6666666666667 298.6666666666667 52.2666666666667 298.6666666666667 64V320C298.6666666666667 331.7333333333334 289.0666666666667 341.3333333333334 277.3333333333333 341.3333333333334M426.6666666666667 341.3333333333334H362.6666666666667C350.9333333333333 341.3333333333334 341.3333333333333 331.7333333333334 341.3333333333333 320V64C341.3333333333333 52.2666666666667 350.9333333333333 42.6666666666667 362.6666666666667 42.6666666666667H426.6666666666667C438.4 42.6666666666667 448 52.2666666666667 448 64V320C448 331.7333333333334 438.4 341.3333333333334 426.6666666666667 341.3333333333334M128 341.3333333333334H64C52.2666666666667 341.3333333333334 42.6666666666667 331.7333333333334 42.6666666666667 320V64C42.6666666666667 52.2666666666667 52.2666666666667 42.6666666666667 64 42.6666666666667H128C139.7333333333333 42.6666666666667 149.3333333333333 52.2666666666667 149.3333333333333 64V320C149.3333333333333 331.7333333333334 139.7333333333333 341.3333333333334 128 341.3333333333334z" />
+    <glyph glyph-name="vimeo"
+      unicode="&#xF577;"
+      horiz-adv-x="512" d=" M469.3333333333333 289.7066666666667C467.4133333333333 248.1066666666667 438.4 191.1466666666667 382.2933333333334 118.6133333333334C324.2666666666667 42.6666666666667 275.2 5.3333333333334 234.6666666666667 5.3333333333334C210.1333333333333 5.3333333333334 189.0133333333333 28.3733333333333 171.7333333333334 74.6666666666667C160 116.48 149.3333333333334 158.72 137.3866666666667 200.96C124.5866666666667 247.04 110.9333333333333 270.0800000000001 96 270.0800000000001C93.0133333333333 270.0800000000001 81.92 263.2533333333334 62.72 249.8133333333334L42.6666666666667 275.8400000000001C64 294.4 84.48 312.9600000000001 104.96 331.52C133.12 355.84 154.24 368.64 168.1066666666667 369.92C201.3866666666667 373.3333333333333 221.8666666666667 350.2933333333333 229.5466666666667 301.6533333333333C237.8666666666667 248.96 243.6266666666667 216.32 246.8266666666667 203.52C256 160 266.6666666666667 138.6666666666667 278.4 138.6666666666667C287.36 138.6666666666667 300.8 152.3200000000001 318.7200000000001 180.6933333333334C336.64 208.8533333333334 346.24 230.4000000000001 347.5200000000001 245.3333333333334C350.0800000000001 269.6533333333334 340.48 281.8133333333334 318.7200000000001 281.8133333333334C308.48 281.8133333333334 298.0266666666667 279.4666666666667 287.1466666666667 274.7733333333334C308.0533333333334 343.6800000000001 348.1600000000001 377.1733333333334 407.2533333333334 375.2533333333334C451.2 373.9733333333334 471.8933333333334 345.3866666666667 469.3333333333334 289.7066666666667z" />
+    <glyph glyph-name="violin"
+      unicode="&#xF60F;"
+      horiz-adv-x="512" d=" M234.6666666666667 405.3333333333333C222.9333333333333 405.3333333333333 213.3333333333333 395.7333333333334 213.3333333333333 384V256C213.3333333333333 250.0266666666667 218.0266666666667 245.3333333333334 224 245.3333333333334H256C261.9733333333333 245.3333333333334 266.6666666666667 240.64 266.6666666666667 234.6666666666667S261.9733333333333 224 256 224H224C207.5733333333333 224 192 239.5733333333334 192 256V337.92C155.0933333333333 328.5333333333334 128 295.8933333333333 128 256V224C157.44 224 181.3333333333333 200.1066666666667 181.3333333333333 170.6666666666667S157.44 117.3333333333334 128 117.3333333333334V85.3333333333334C128 26.24 175.5733333333333 -21.3333333333333 234.6666666666667 -21.3333333333333H277.3333333333333C336.4266666666666 -21.3333333333333 384 26.24 384 85.3333333333334V117.3333333333334C354.56 117.3333333333334 330.6666666666667 141.2266666666667 330.6666666666667 170.6666666666667S354.56 224 384 224V256C384 303.36 346.0266666666667 341.3333333333334 298.6666666666667 341.3333333333334V384C298.6666666666667 395.7333333333334 289.0666666666667 405.3333333333333 277.3333333333333 405.3333333333333H234.6666666666667M229.3333333333333 96H282.6666666666667L272 21.3333333333334H240L229.3333333333333 96z" />
+    <glyph glyph-name="virtual-reality"
+      unicode="&#xF893;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667M128 256H160L181.3333333333333 182.8266666666667L202.6666666666667 256H234.6666666666667L197.3333333333333 128H165.3333333333333L128 256M277.3333333333333 256H352C370.1333333333334 256 384 242.1333333333334 384 224V202.6666666666667C384 189.8666666666667 375.4666666666667 178.1333333333333 364.8 172.8L384 128H352L333.8666666666667 170.6666666666667H309.3333333333333V128H277.3333333333333V256M309.3333333333333 224V202.6666666666667H352V224H309.3333333333333z" />
+    <glyph glyph-name="visual-studio"
+      unicode="&#xF610;"
+      horiz-adv-x="512" d=" M362.6666666666667 266.6666666666667L261.3333333333333 185.1733333333334L362.6666666666667 106.6666666666667V266.6666666666667M100.2666666666667 55.4666666666667L42.6666666666667 91.7333333333334V283.7333333333334L106.6666666666667 305.0666666666667L198.4 234.0266666666667L384 405.3333333333333L469.3333333333333 352V21.3333333333334L362.6666666666667 -21.3333333333333L199.2533333333333 135.2533333333333L100.2666666666667 55.4666666666667M106.6666666666667 149.3333333333334L146.3466666666667 186.0266666666667L106.6666666666667 224V149.3333333333334z" />
+    <glyph glyph-name="visual-studio-code"
+      unicode="&#xFA1D;"
+      horiz-adv-x="512" d=" M70.1866666666667 282.24L94.2933333333333 290.56L153.3866666666667 245.9733333333334L251.7333333333334 343.8933333333334L309.3333333333333 317.8666666666667L310.1866666666666 128.8533333333334L251.3066666666667 103.0400000000001L153.1733333333333 200.1066666666668L94.2933333333333 155.5200000000001L70.1866666666667 163.6266666666668L129.28 222.5066666666668L70.1866666666667 282.2400000000001M184.1066666666667 222.7200000000001L251.0933333333334 173.0133333333334V273.2800000000001L184.1066666666667 222.72M362.6666666666667 39.04V404.6933333333334L469.3333333333333 360.5333333333334V23.4666666666667L360.7466666666667 -21.3333333333333L42.6666666666667 87.04L362.6666666666667 39.04z" />
+    <glyph glyph-name="vk"
+      unicode="&#xF579;"
+      horiz-adv-x="512" d=" M443.7333333333334 282.88C446.5066666666667 291.8400000000001 443.7333333333334 298.6666666666667 430.5066666666667 298.6666666666667H387.4133333333333C376.32 298.6666666666667 371.4133333333333 292.9066666666667 368.64 286.5066666666667C368.64 286.5066666666667 346.6666666666667 232.96 315.52 197.9733333333333C305.28 187.9466666666667 300.8 184.7466666666667 295.2533333333334 184.7466666666667C292.48 184.7466666666667 288 187.9466666666667 288 197.12V282.88C288 293.76 285.4400000000001 298.6666666666667 276.2666666666667 298.6666666666667H208.2133333333333C201.3866666666667 298.6666666666667 197.3333333333333 293.5466666666667 197.3333333333333 288.64C197.3333333333333 278.4000000000001 213.3333333333333 275.8400000000001 214.4 246.6133333333334V183.04C214.4 168.96 211.84 166.4 206.5066666666667 166.4C192 166.4 156.16 220.3733333333333 135.04 281.8133333333334C130.7733333333334 293.7600000000001 126.7200000000001 298.6666666666667 115.6266666666667 298.6666666666667H72.32C60.16 298.6666666666667 57.6 292.9066666666667 57.6 286.5066666666667C57.6 274.9866666666667 72.32 218.24 125.8666666666667 143.1466666666667C161.4933333333334 91.7333333333334 211.84 64 257.7066666666667 64C285.2266666666667 64 288.64 70.1866666666667 288.64 80.8533333333334V119.68C288.64 131.84 291.2 134.4 299.9466666666666 134.4C306.3466666666667 134.4 317.2266666666667 131.2 342.8266666666667 106.6666666666667C372.2666666666667 77.2266666666667 376.9600000000001 64 393.6 64H436.6933333333333C449.0666666666666 64 455.2533333333333 70.1866666666667 451.84 82.3466666666667C448 94.5066666666667 433.92 112.2133333333334 415.36 133.12C405.3333333333333 144.8533333333334 390.1866666666666 157.6533333333333 385.4933333333334 164.2666666666667C379.0933333333333 172.3733333333333 381.0133333333333 176 385.4933333333334 183.4666666666667C385.4933333333334 183.4666666666667 438.1866666666666 257.4933333333334 443.7333333333334 282.88z" />
+    <glyph glyph-name="vk-box"
+      unicode="&#xF57A;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C83.2 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667M117.3333333333333 266.6666666666667H149.3333333333333C157.0133333333333 266.6666666666667 160 263.2533333333334 162.9866666666667 254.5066666666667C178.3466666666666 209.7066666666667 204.16 170.6666666666667 214.8266666666667 170.6666666666667C218.88 170.6666666666667 220.8 172.3733333333333 220.8 182.4V228.6933333333334C219.52 250.0266666666667 208.2133333333333 251.9466666666667 208.2133333333333 259.4133333333334C208.2133333333333 263.04 211.2 266.6666666666667 216.32 266.6666666666667H265.6C272.4266666666667 266.6666666666667 274.56 263.04 274.56 255.1466666666667V192.8533333333334C274.56 186.24 277.3333333333334 183.8933333333334 279.4666666666667 183.8933333333334C283.52 183.8933333333334 286.9333333333334 186.24 294.1866666666667 193.4933333333334C316.8 218.88 332.8 257.7066666666667 332.8 257.7066666666667C334.9333333333334 262.4000000000001 338.56 266.6666666666667 346.4533333333334 266.6666666666667H377.8133333333334C387.4133333333333 266.6666666666667 389.5466666666667 261.76 387.4133333333333 255.1466666666667C383.36 236.8000000000001 345.1733333333333 182.8266666666667 345.1733333333333 182.8266666666667C341.3333333333333 177.4933333333334 340.48 174.9333333333334 345.1733333333333 168.7466666666667C348.3733333333333 164.2666666666667 359.4666666666667 154.88 366.7200000000001 146.1333333333333C380.3733333333334 130.9866666666667 390.4 118.1866666666667 393.3866666666667 109.44C395.9466666666667 100.48 391.4666666666667 96 382.5066666666667 96H350.9333333333333C338.9866666666666 96 335.5733333333333 105.6 314.24 126.9333333333333C295.4666666666666 144.8533333333334 288 147.2 282.88 147.2C276.4799999999999 147.2 274.56 145.4933333333334 274.56 136.32V108.16C274.56 100.48 272.2133333333333 96 252.1599999999999 96C218.8799999999999 96 182.1866666666666 116.2666666666667 156.3733333333333 153.6C117.3333333333333 208.2133333333334 106.6666666666667 249.3866666666667 106.6666666666667 257.7066666666667C106.6666666666667 262.4000000000001 108.3733333333333 266.6666666666667 117.3333333333333 266.6666666666667z" />
+    <glyph glyph-name="vk-circle"
+      unicode="&#xF57B;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M117.3333333333333 266.6666666666667H149.3333333333333C157.0133333333333 266.6666666666667 160 263.2533333333334 162.9866666666667 254.5066666666667C178.3466666666666 209.7066666666667 204.16 170.6666666666667 214.8266666666667 170.6666666666667C218.88 170.6666666666667 220.8 172.3733333333333 220.8 182.4V228.6933333333334C219.52 250.0266666666667 208.2133333333333 251.9466666666667 208.2133333333333 259.4133333333334C208.2133333333333 263.04 211.2 266.6666666666667 216.32 266.6666666666667H265.6C272.4266666666667 266.6666666666667 274.56 263.04 274.56 255.1466666666667V192.8533333333334C274.56 186.24 277.3333333333334 183.8933333333334 279.4666666666667 183.8933333333334C283.52 183.8933333333334 286.9333333333334 186.24 294.1866666666667 193.4933333333334C316.8 218.88 332.8 257.7066666666667 332.8 257.7066666666667C334.9333333333334 262.4000000000001 338.56 266.6666666666667 346.4533333333334 266.6666666666667H377.8133333333334C387.4133333333333 266.6666666666667 389.5466666666667 261.76 387.4133333333333 255.1466666666667C383.36 236.8000000000001 345.1733333333333 182.8266666666667 345.1733333333333 182.8266666666667C341.3333333333333 177.4933333333334 340.48 174.9333333333334 345.1733333333333 168.7466666666667C348.3733333333333 164.2666666666667 359.4666666666667 154.88 366.7200000000001 146.1333333333333C380.3733333333334 130.9866666666667 390.4 118.1866666666667 393.3866666666667 109.44C395.9466666666667 100.48 391.4666666666667 96 382.5066666666667 96H350.9333333333333C338.9866666666666 96 335.5733333333333 105.6 314.24 126.9333333333333C295.4666666666666 144.8533333333334 288 147.2 282.88 147.2C276.4799999999999 147.2 274.56 145.4933333333334 274.56 136.32V108.16C274.56 100.48 272.2133333333333 96 252.1599999999999 96C218.8799999999999 96 182.1866666666666 116.2666666666667 156.3733333333333 153.6C117.3333333333333 208.2133333333334 106.6666666666667 249.3866666666667 106.6666666666667 257.7066666666667C106.6666666666667 262.4000000000001 108.3733333333333 266.6666666666667 117.3333333333333 266.6666666666667z" />
+    <glyph glyph-name="vlc"
+      unicode="&#xF57C;"
+      horiz-adv-x="512" d=" M256 426.6666666666667C247.04 426.6666666666667 238.72 421.76 234.6666666666667 410.6666666666667L210.7733333333334 343.8933333333333C221.0133333333334 332.8 240.64 330.6666666666667 256 330.6666666666667C271.36 330.6666666666667 290.9866666666667 332.8 301.44 343.8933333333333L277.3333333333333 410.6666666666667C273.4933333333334 421.3333333333333 264.96 426.6666666666667 256 426.6666666666667M180.0533333333333 257.92L149.3333333333333 172.5866666666667C172.16 143.5733333333334 218.88 138.6666666666667 256 138.6666666666667C293.12 138.6666666666667 339.84 143.5733333333334 362.6666666666667 172.5866666666667L331.9466666666667 257.92C314.88 238.2933333333334 282.4533333333333 234.6666666666667 256 234.6666666666667C229.5466666666667 234.6666666666667 197.12 238.2933333333334 180.0533333333333 257.92M116.0533333333333 128C98.56 128 80.2133333333333 114.1333333333333 75.3066666666666 97.28L43.9466666666667 -11.9466666666667C39.2533333333333 -28.8 49.0666666666667 -42.6666666666667 66.7733333333333 -42.6666666666667H445.44C462.9333333333333 -42.6666666666667 472.7466666666667 -28.8000000000001 468.0533333333333 -11.9466666666667L436.6933333333333 97.28C431.7866666666667 114.1333333333333 413.44 128 395.9466666666666 128H378.6666666666667L385.92 107.3066666666666C388.48 100.48 390.1866666666666 91.9466666666667 385.92 85.9733333333333C359.2533333333334 49.0666666666667 301.6533333333333 42.6666666666667 256 42.6666666666667C210.3466666666666 42.6666666666667 152.7466666666667 49.0666666666667 126.08 85.9733333333334C121.8133333333333 91.9466666666667 123.52 100.48 126.08 107.3066666666667L133.3333333333333 128.0000000000001H116.0533333333333z" />
+    <glyph glyph-name="voice"
+      unicode="&#xF5CB;"
+      horiz-adv-x="512" d=" M192 341.3333333333334C239.1466666666667 341.3333333333334 277.3333333333333 303.1466666666667 277.3333333333333 256S239.1466666666667 170.6666666666667 192 170.6666666666667S106.6666666666667 208.8533333333333 106.6666666666667 256S144.8533333333333 341.3333333333334 192 341.3333333333334M192 128C248.96 128 362.6666666666667 99.4133333333334 362.6666666666667 42.6666666666667V0H21.3333333333333V42.6666666666667C21.3333333333333 99.4133333333334 135.04 128 192 128M357.5466666666666 333.6533333333334C400.64 286.7200000000001 400.64 221.6533333333334 357.5466666666666 178.5600000000001L321.7066666666666 214.6133333333334C339.6266666666666 239.7866666666667 339.6266666666666 272.4266666666667 321.7066666666666 297.6L357.5466666666666 333.6533333333334M428.16 405.3333333333333C512 318.9333333333334 511.36 189.6533333333334 428.16 106.6666666666667L393.3866666666667 141.44C452.48 209.28 452.48 306.1333333333334 393.3866666666667 370.56L428.16 405.3333333333333z" />
+    <glyph glyph-name="voicemail"
+      unicode="&#xF57D;"
+      horiz-adv-x="512" d=" M394.6666666666667 128C353.4933333333334 128 320 161.4933333333334 320 202.6666666666667S353.4933333333334 277.3333333333334 394.6666666666667 277.3333333333334S469.3333333333333 243.84 469.3333333333333 202.6666666666667S435.84 128 394.6666666666667 128M117.3333333333333 128C76.16 128 42.6666666666667 161.4933333333334 42.6666666666667 202.6666666666667S76.16 277.3333333333334 117.3333333333333 277.3333333333334S192 243.84 192 202.6666666666667S158.5066666666667 128 117.3333333333333 128M394.6666666666667 320C329.8133333333334 320 277.3333333333333 267.52 277.3333333333333 202.6666666666667C277.3333333333333 174.2933333333334 287.36 148.2666666666667 304.2133333333333 128H207.7866666666667C224.64 148.2666666666667 234.6666666666667 174.2933333333334 234.6666666666667 202.6666666666667C234.6666666666667 267.52 182.1866666666667 320 117.3333333333333 320S0 267.52 0 202.6666666666667S52.48 85.3333333333334 117.3333333333333 85.3333333333334H394.6666666666667C459.52 85.3333333333334 512 137.8133333333334 512 202.6666666666667S459.52 320 394.6666666666667 320z" />
+    <glyph glyph-name="volleyball"
+      unicode="&#xF9B3;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M290.1333333333334 13.8666666666667C340.48 63.1466666666667 377.3866666666666 126.2933333333333 394.6666666666667 197.12C380.5866666666667 200.1066666666667 366.5066666666667 201.8133333333333 352 202.6666666666666C331.9466666666667 125.6533333333333 286.08 59.3066666666666 224 13.44C234.6666666666667 11.7333333333333 245.3333333333333 10.6666666666667 256 10.6666666666667C267.7333333333334 10.6666666666667 279.04 11.7333333333333 290.1333333333334 13.8666666666667M196.9066666666667 20.48C260.9066666666667 62.5066666666666 309.3333333333333 126.9333333333333 329.8133333333334 202.6666666666666C313.8133333333334 201.5999999999999 298.0266666666667 199.4666666666666 283.0933333333334 196.0533333333333C259.8400000000001 130.3466666666666 212.6933333333334 75.9466666666666 152.1066666666667 43.3066666666666C165.76 33.7066666666666 181.3333333333334 26.0266666666666 196.9066666666667 20.4799999999999M437.3333333333333 184.1066666666666C430.08 187.0933333333333 422.6133333333333 189.6533333333332 415.1466666666667 191.9999999999999C400.2133333333334 130.1333333333332 370.9866666666667 74.0266666666665 331.52 27.0933333333332C391.68 54.6133333333332 434.1333333333334 114.3466666666665 437.3333333333333 184.1066666666665M75.9466666666667 212.48C74.6666666666667 205.8666666666667 74.6666666666667 198.8266666666667 74.6666666666667 192C74.6666666666667 138.6666666666667 97.4933333333333 91.0933333333334 133.76 58.0266666666666C146.3466666666666 64 158.08 71.2533333333333 169.3866666666667 79.1466666666667C129.7066666666667 116.48 97.7066666666667 161.92 75.9466666666667 212.48M113.7066666666667 304.2133333333333C100.9066666666667 288 90.88 269.8666666666666 84.2666666666667 250.0266666666666C104.96 189.2266666666666 140.3733333333333 135.2533333333333 186.4533333333333 92.3733333333333C197.3333333333333 101.5466666666666 207.36 111.5733333333333 216.5333333333333 122.4533333333333C165.12 170.0266666666667 128 232.96 113.7066666666667 304.2133333333334M171.52 352C157.0133333333333 344.5333333333334 143.5733333333333 334.9333333333334 131.84 323.8400000000001C143.1466666666667 251.52 178.56 187.0933333333334 229.76 139.3066666666667C238.2933333333333 151.2533333333333 245.3333333333333 163.84 252.16 177.0666666666667C206.5066666666667 222.72 176.64 283.9466666666667 171.52 352M425.8133333333334 255.36C398.9333333333333 262.8266666666667 370.56 266.6666666666667 341.3333333333333 266.6666666666667C300.8 266.6666666666667 261.9733333333333 259.2000000000001 226.3466666666667 245.3333333333334C233.8133333333333 232.5333333333334 242.1333333333334 220.3733333333333 251.7333333333333 209.0666666666667C279.8933333333333 218.6666666666667 309.9733333333333 224 341.3333333333333 224C374.8266666666667 224 407.04 218.0266666666667 436.6933333333333 207.1466666666667C435.2 224 431.5733333333333 240.2133333333334 425.8133333333333 255.36M374.1866666666666 329.1733333333334C363.3066666666667 330.6666666666667 352 330.6666666666667 341.3333333333333 330.6666666666667C292.0533333333333 330.6666666666667 244.6933333333333 321.28 201.3866666666667 304.4266666666667C205.2266666666667 290.56 210.3466666666667 277.3333333333334 216.32 264.3200000000001C255.1466666666667 279.68 297.1733333333333 288 341.3333333333333 288C366.5066666666667 288 390.8266666666667 285.2266666666667 414.2933333333334 280.1066666666667C403.8400000000001 298.6666666666667 390.1866666666667 315.52 374.1866666666667 329.1733333333334M341.3333333333333 352C315.52 365.44 286.72 373.3333333333334 256 373.3333333333334C233.6 373.3333333333334 212.0533333333333 369.0666666666667 192 361.6C192.8533333333333 349.2266666666667 194.3466666666666 337.0666666666667 196.48 325.3333333333334C241.28 342.4 290.1333333333334 352 341.3333333333333 352z" />
+    <glyph glyph-name="volume-high"
+      unicode="&#xF57E;"
+      horiz-adv-x="512" d=" M298.6666666666667 379.0933333333334V335.1466666666667C360.32 316.8 405.3333333333333 259.6266666666667 405.3333333333333 192S360.32 67.4133333333334 298.6666666666667 49.0666666666667V4.9066666666667C384 24.3200000000001 448 100.6933333333333 448 192C448 283.3066666666667 384 359.68 298.6666666666667 379.0933333333334M352 192C352 229.76 330.6666666666667 262.1866666666667 298.6666666666667 277.9733333333334V106.6666666666667C330.6666666666667 121.8133333333334 352 154.4533333333334 352 192M64 256V128H149.3333333333333L256 21.3333333333334V362.6666666666667L149.3333333333333 256H64z" />
+    <glyph glyph-name="volume-low"
+      unicode="&#xF57F;"
+      horiz-adv-x="512" d=" M149.3333333333333 256V128H234.6666666666667L341.3333333333333 21.3333333333334V362.6666666666667L234.6666666666667 256H149.3333333333333z" />
+    <glyph glyph-name="volume-medium"
+      unicode="&#xF580;"
+      horiz-adv-x="512" d=" M106.6666666666667 256V128H192L298.6666666666667 21.3333333333334V362.6666666666667L192 256M394.6666666666667 192C394.6666666666667 229.76 373.3333333333333 262.1866666666667 341.3333333333333 277.9733333333334V106.6666666666667C373.3333333333333 121.8133333333334 394.6666666666667 154.4533333333334 394.6666666666667 192z" />
+    <glyph glyph-name="volume-minus"
+      unicode="&#xF75D;"
+      horiz-adv-x="512" d=" M64 256H149.3333333333333L256 362.6666666666667V21.3333333333334L149.3333333333333 128H64V256M298.6666666666667 213.3333333333334H469.3333333333333V170.6666666666667H298.6666666666667V213.3333333333334z" />
+    <glyph glyph-name="volume-mute"
+      unicode="&#xF75E;"
+      horiz-adv-x="512" d=" M64 256H149.3333333333333L256 362.6666666666667V21.3333333333334L149.3333333333333 128H64V256M353.92 192L298.6666666666667 247.2533333333334L328.7466666666667 277.3333333333334L384 222.08L439.2533333333334 277.3333333333334L469.3333333333333 247.2533333333334L414.08 192L469.3333333333333 136.7466666666667L439.2533333333334 106.6666666666667L384 161.92L328.7466666666667 106.6666666666667L298.6666666666667 136.7466666666667L353.92 192z" />
+    <glyph glyph-name="volume-off"
+      unicode="&#xF581;"
+      horiz-adv-x="512" d=" M256 362.6666666666667L211.4133333333333 318.0800000000001L256 273.4933333333334M91.0933333333333 384L64 356.9066666666667L164.9066666666667 256H64V128H149.3333333333333L256 21.3333333333334V164.9066666666667L346.6666666666667 74.0266666666666C332.3733333333334 63.1466666666667 316.3733333333334 54.1866666666667 298.6666666666667 49.0666666666666V4.9066666666666C328.1066666666667 11.7333333333333 354.7733333333333 25.1733333333333 377.1733333333333 43.5199999999999L420.9066666666667 0L448 27.0933333333334L256 219.0933333333333M405.3333333333333 192C405.3333333333333 171.9466666666667 401.0666666666667 153.1733333333334 393.8133333333334 135.68L426.0266666666667 103.4666666666666C439.8933333333333 129.92 448 160 448 192C448 283.3066666666667 384 359.68 298.6666666666667 379.0933333333334V335.1466666666667C360.32 316.8 405.3333333333333 259.6266666666667 405.3333333333333 192M352 192C352 229.76 330.6666666666667 262.1866666666667 298.6666666666667 277.9733333333334V230.8266666666667L350.9333333333333 178.5600000000001C352 182.8266666666667 352 187.5200000000001 352 192.0000000000001z" />
+    <glyph glyph-name="volume-plus"
+      unicode="&#xF75C;"
+      horiz-adv-x="512" d=" M64 256H149.3333333333333L256 362.6666666666667V21.3333333333334L149.3333333333333 128H64V256M298.6666666666667 213.3333333333334H362.6666666666667V277.3333333333334H405.3333333333333V213.3333333333334H469.3333333333333V170.6666666666667H405.3333333333333V106.6666666666667H362.6666666666667V170.6666666666667H298.6666666666667V213.3333333333334z" />
+    <glyph glyph-name="vote"
+      unicode="&#xFA1E;"
+      horiz-adv-x="512" d=" M384 170.6666666666667H369.4933333333334L326.8266666666667 128H367.5733333333333L405.3333333333333 85.3333333333334H106.6666666666667L144.64 128H188.3733333333333L145.7066666666667 170.6666666666667H128L64 106.6666666666667V21.3333333333334C64 -2.1333333333333 83.2 -21.3333333333333 106.6666666666667 -21.3333333333333H405.3333333333333C428.8 -21.3333333333333 448 -2.1333333333333 448 21.3333333333334V106.6666666666667L384 170.6666666666667M362.6666666666667 278.4L257.0666666666667 172.8L181.3333333333333 248.32L287.1466666666667 353.92L362.6666666666667 278.4M272.2133333333333 399.1466666666667L136.32 263.2533333333334C128 254.9333333333334 128 241.4933333333334 136.32 233.1733333333334L241.92 128C250.24 119.2533333333333 263.68 119.2533333333333 272 128L407.68 263.2533333333334C416 271.5733333333334 416 285.0133333333333 407.68 293.3333333333334L302.08 398.9333333333334C293.9733333333333 407.4666666666667 280.5333333333333 407.4666666666667 272.2133333333333 399.1466666666667z" />
+    <glyph glyph-name="vote-outline"
+      unicode="&#xFA1F;"
+      horiz-adv-x="512" d=" M384 170.6666666666667L448 106.6666666666667V21.3333333333334C448 -2.3466666666666 428.8 -21.3333333333333 405.3333333333333 -21.3333333333333H106.6666666666667C82.9866666666667 -21.3333333333333 64 -2.1333333333333 64 21.3333333333334V106.6666666666667L128 170.6666666666667H145.7066666666667L188.3733333333333 128H144.64L106.6666666666667 85.3333333333334H405.3333333333333L367.5733333333333 128H326.8266666666667L369.4933333333334 170.6666666666667H384M405.3333333333333 21.3333333333334V42.6666666666667H106.6666666666667V21.3333333333334H405.3333333333333M241.92 128L136.32 233.1733333333334C128 241.4933333333334 128 254.9333333333334 136.32 263.2533333333334L272.2133333333333 399.1466666666667C280.5333333333333 407.4666666666667 293.9733333333333 407.4666666666667 302.08 398.9333333333334L407.68 293.3333333333334C416 285.0133333333333 416 271.5733333333334 407.68 263.2533333333334L272 128C263.68 119.2533333333333 250.24 119.2533333333333 241.92 128M287.1466666666667 353.92L181.3333333333333 248.32L257.0666666666667 172.8000000000001L362.6666666666667 278.4L287.1466666666667 353.92z" />
+    <glyph glyph-name="vpn"
+      unicode="&#xF582;"
+      horiz-adv-x="512" d=" M192 341.3333333333334H320L256 277.3333333333334L192 341.3333333333334M224 135.2533333333333C217.6 128 213.3333333333333 117.3333333333334 213.3333333333333 106.6666666666667C213.3333333333333 83.2 232.5333333333334 64 256 64S298.6666666666667 83.2 298.6666666666667 106.6666666666667C298.6666666666667 118.4 293.9733333333333 129.0666666666667 286.08 136.7466666666667L316.3733333333334 167.04C331.7333333333334 151.4666666666667 341.3333333333333 130.1333333333333 341.3333333333333 106.6666666666667C341.3333333333333 59.52 303.1466666666667 21.3333333333334 256 21.3333333333334S170.6666666666667 59.52 170.6666666666667 106.6666666666667C170.6666666666667 129.4933333333334 179.6266666666667 150.1866666666667 194.1333333333333 165.3333333333334L193.92 165.5466666666667L344.9600000000001 316.3733333333334C360.32 331.7333333333334 381.6533333333333 341.3333333333334 405.3333333333333 341.3333333333334C452.48 341.3333333333334 490.6666666666666 303.1466666666667 490.6666666666666 256S452.48 170.6666666666667 405.3333333333333 170.6666666666667C381.8666666666666 170.6666666666667 360.5333333333333 180.2666666666667 344.9600000000001 195.6266666666667L375.2533333333334 225.92C382.9333333333334 218.0266666666667 393.6 213.3333333333334 405.3333333333334 213.3333333333334C428.8000000000001 213.3333333333334 448.0000000000001 232.5333333333334 448.0000000000001 256S428.8000000000001 298.6666666666667 405.3333333333334 298.6666666666667C393.6 298.6666666666667 382.9333333333334 293.9733333333334 375.2533333333334 286.0800000000001L224.0000000000001 135.2533333333333M136.7466666666667 286.0800000000001C129.0666666666667 293.9733333333334 118.4 298.6666666666667 106.6666666666667 298.6666666666667C83.2 298.6666666666667 64 279.4666666666667 64 256S83.2 213.3333333333334 106.6666666666667 213.3333333333334C118.4 213.3333333333334 129.0666666666667 218.0266666666667 136.7466666666667 225.92L167.04 195.6266666666667C151.4666666666667 180.2666666666667 130.1333333333333 170.6666666666667 106.6666666666667 170.6666666666667C59.52 170.6666666666667 21.3333333333333 208.8533333333333 21.3333333333333 256S59.52 341.3333333333334 106.6666666666667 341.3333333333334C130.3466666666667 341.3333333333334 151.68 331.7333333333334 167.04 316.3733333333334L225.92 257.4933333333334L195.6266666666667 227.2L136.7466666666667 286.0800000000001z" />
+    <glyph glyph-name="vuejs"
+      unicode="&#xF843;"
+      horiz-adv-x="512" d=" M42.6666666666667 384H117.3333333333333L256 128L394.6666666666667 384H469.3333333333333L256 0L42.6666666666667 384M138.6666666666667 384H202.6666666666667L256 286.2933333333334L309.3333333333333 384H373.3333333333333L256 168.96L138.6666666666667 384z" />
+    <glyph glyph-name="walk"
+      unicode="&#xF583;"
+      horiz-adv-x="512" d=" M301.2266666666667 234.6666666666667H405.3333333333333V273.0666666666667H328.1066666666667L285.44 344.1066666666667C279.04 354.7733333333334 267.52 362.0266666666667 254.2933333333333 362.0266666666667C250.4533333333333 362.0266666666667 247.04 361.3866666666667 243.6266666666666 360.3200000000001L128 324.2666666666667V213.3333333333334H166.4V291.6266666666667L211.4133333333333 305.7066666666667L128 -21.3333333333333H166.4L227.6266666666667 151.68L277.3333333333333 85.3333333333334V-21.3333333333333H315.7333333333334V115.4133333333334L262.6133333333334 212.2666666666667L278.1866666666667 273.4933333333334M298.6666666666667 366.9333333333334C320 366.9333333333334 337.0666666666667 384 337.0666666666667 405.3333333333334S320 443.7333333333334 298.6666666666667 443.7333333333334S260.2666666666667 426.6666666666667 260.2666666666667 405.3333333333333S277.3333333333333 366.9333333333334 298.6666666666667 366.9333333333334z" />
+    <glyph glyph-name="wall"
+      unicode="&#xF7FD;"
+      horiz-adv-x="512" d=" M64 106.6666666666667H256V0H64V106.6666666666667M42.6666666666667 234.6666666666667H170.6666666666667V128H42.6666666666667V234.6666666666667M192 234.6666666666667H320V128H192V234.6666666666667M341.3333333333333 234.6666666666667H469.3333333333333V128H341.3333333333333V234.6666666666667M277.3333333333333 106.6666666666667H448V0H277.3333333333333V106.6666666666667M64 362.6666666666667H234.6666666666667V256H64V362.6666666666667M256 362.6666666666667H448V256H256V362.6666666666667z" />
+    <glyph glyph-name="wall-sconce"
+      unicode="&#xF91B;"
+      horiz-adv-x="512" d=" M234.6666666666667 362.6666666666667L149.3333333333333 170.6666666666667H405.3333333333333L320 362.6666666666667H234.6666666666667M85.3333333333333 149.3333333333334V-21.3333333333333H128V42.6666666666667H298.6666666666667V149.3333333333334H256V85.3333333333334H128V149.3333333333334H85.3333333333333z" />
+    <glyph glyph-name="wall-sconce-flat"
+      unicode="&#xF91C;"
+      horiz-adv-x="512" d=" M106.6666666666667 341.3333333333334V213.3333333333334H405.3333333333333V341.3333333333334H106.6666666666667M112.4266666666667 163.84L74.6666666666667 126.0800000000001L104.7466666666667 96L142.5066666666667 133.76L112.4266666666667 163.84M399.5733333333333 163.84L369.4933333333334 133.76L407.2533333333334 96L437.3333333333333 126.0800000000001L399.5733333333333 163.84M234.6666666666667 106.6666666666667V42.6666666666667H277.3333333333333V106.6666666666667H234.6666666666667z" />
+    <glyph glyph-name="wall-sconce-variant"
+      unicode="&#xF91D;"
+      horiz-adv-x="512" d=" M234.6666666666667 352V288H277.3333333333333V352H234.6666666666667M104.7466666666667 298.6666666666667L74.6666666666667 268.5866666666667L112.4266666666667 230.8266666666667L142.5066666666667 260.9066666666667L104.7466666666667 298.6666666666667M407.2533333333334 298.6666666666667L369.4933333333334 260.9066666666667L399.5733333333333 230.8266666666667L437.3333333333333 268.5866666666667L407.2533333333334 298.6666666666667M85.3333333333333 202.6666666666667C85.3333333333333 141.6533333333334 117.3333333333333 85.3333333333334 170.6666666666667 54.8266666666667C224 24.3200000000001 288 24.3200000000001 341.3333333333333 54.8266666666667S426.6666666666667 141.6533333333334 426.6666666666667 202.6666666666667H85.3333333333333z" />
+    <glyph glyph-name="wallet"
+      unicode="&#xF584;"
+      horiz-adv-x="512" d=" M448 64V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C82.9866666666667 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V320H256C232.32 320 213.3333333333333 300.8 213.3333333333333 277.3333333333334V106.6666666666667C213.3333333333333 83.2 232.5333333333334 64 256 64M256 106.6666666666667H469.3333333333333V277.3333333333334H256M341.3333333333333 160C323.6266666666667 160 309.3333333333333 174.2933333333334 309.3333333333333 192S323.6266666666667 224 341.3333333333333 224S373.3333333333333 209.7066666666667 373.3333333333333 192S359.04 160 341.3333333333333 160z" />
+    <glyph glyph-name="wallet-giftcard"
+      unicode="&#xF585;"
+      horiz-adv-x="512" d=" M426.6666666666667 149.3333333333334H85.3333333333333V277.3333333333334H193.7066666666667L149.3333333333333 216.96L183.8933333333333 192L234.6666666666667 261.12L256 290.1333333333334L277.3333333333333 261.12L328.1066666666667 192L362.6666666666667 216.96L318.2933333333333 277.3333333333334H426.6666666666667M426.6666666666667 42.6666666666667H85.3333333333333V85.3333333333334H426.6666666666667M192 362.6666666666667C203.7333333333334 362.6666666666667 213.3333333333333 353.0666666666667 213.3333333333333 341.3333333333334S203.7333333333334 320 192 320S170.6666666666667 329.6 170.6666666666667 341.3333333333334S180.2666666666667 362.6666666666667 192 362.6666666666667M320 362.6666666666667C331.7333333333334 362.6666666666667 341.3333333333333 353.0666666666667 341.3333333333333 341.3333333333334S331.7333333333334 320 320 320S298.6666666666667 329.6 298.6666666666667 341.3333333333334S308.2666666666667 362.6666666666667 320 362.6666666666667M426.6666666666667 320H380.16C382.5066666666667 326.6133333333334 384 333.8666666666667 384 341.3333333333334C384 376.7466666666667 355.4133333333333 405.3333333333333 320 405.3333333333333C297.6 405.3333333333333 278.1866666666666 393.8133333333334 266.6666666666667 376.5333333333333L256 362.6666666666667L245.3333333333333 376.7466666666667C233.8133333333334 393.8133333333334 214.4 405.3333333333333 192 405.3333333333333C156.5866666666667 405.3333333333333 128 376.7466666666667 128 341.3333333333334C128 333.8666666666667 129.4933333333334 326.6133333333334 131.84 320H85.3333333333333C61.6533333333333 320 42.6666666666667 301.0133333333333 42.6666666666667 277.3333333333334V42.6666666666667C42.6666666666667 18.9866666666667 61.6533333333333 0 85.3333333333333 0H426.6666666666667C450.3466666666667 0 469.3333333333333 18.9866666666667 469.3333333333333 42.6666666666667V277.3333333333334C469.3333333333333 301.0133333333333 450.3466666666667 320 426.6666666666667 320z" />
+    <glyph glyph-name="wallet-membership"
+      unicode="&#xF586;"
+      horiz-adv-x="512" d=" M426.6666666666667 234.6666666666667H85.3333333333333V362.6666666666667H426.6666666666667M426.6666666666667 128H85.3333333333333V170.6666666666667H426.6666666666667M426.6666666666667 405.3333333333333H85.3333333333333C61.6533333333333 405.3333333333333 42.6666666666667 386.3466666666667 42.6666666666667 362.6666666666667V128C42.6666666666667 104.3200000000001 61.6533333333333 85.3333333333334 85.3333333333333 85.3333333333334H170.6666666666667V-21.3333333333333L256 21.3333333333334L341.3333333333333 -21.3333333333333V85.3333333333334H426.6666666666667C450.3466666666667 85.3333333333334 469.3333333333333 104.3200000000001 469.3333333333333 128V362.6666666666667C469.3333333333333 386.3466666666667 450.3466666666667 405.3333333333333 426.6666666666667 405.3333333333333z" />
+    <glyph glyph-name="wallet-outline"
+      unicode="&#xFBB9;"
+      horiz-adv-x="512" d=" M106.6666666666667 384C82.9866666666667 384 64 364.8 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V91.3066666666667C460.5866666666666 98.7733333333334 469.3333333333333 112.2133333333334 469.3333333333333 128.0000000000001V256C469.3333333333333 271.7866666666667 460.5866666666666 285.2266666666667 448 292.6933333333334V341.3333333333334C448 364.8 428.8 384 405.3333333333333 384H106.6666666666667M106.6666666666667 341.3333333333334H405.3333333333333V298.6666666666667H277.3333333333333C253.8666666666667 298.6666666666667 234.6666666666667 279.4666666666667 234.6666666666667 256V128C234.6666666666667 104.5333333333333 253.8666666666667 85.3333333333334 277.3333333333333 85.3333333333334H405.3333333333333V42.6666666666667H106.6666666666667V341.3333333333334M277.3333333333333 256H426.6666666666667V128H277.3333333333333V256M341.3333333333333 224C323.6266666666667 224 309.3333333333333 209.7066666666667 309.3333333333333 192S323.6266666666667 160 341.3333333333333 160S373.3333333333333 174.2933333333334 373.3333333333333 192S359.04 224 341.3333333333333 224z" />
+    <glyph glyph-name="wallet-travel"
+      unicode="&#xF587;"
+      horiz-adv-x="512" d=" M426.6666666666667 149.3333333333334H85.3333333333333V277.3333333333334H149.3333333333333V234.6666666666667H192V277.3333333333334H320V234.6666666666667H362.6666666666667V277.3333333333334H426.6666666666667M426.6666666666667 42.6666666666667H85.3333333333333V85.3333333333334H426.6666666666667M192 362.6666666666667H320V320H192M426.6666666666667 320H362.6666666666667V362.6666666666667C362.6666666666667 386.3466666666667 343.68 405.3333333333333 320 405.3333333333333H192C168.32 405.3333333333333 149.3333333333333 386.3466666666667 149.3333333333333 362.6666666666667V320H85.3333333333333C61.6533333333333 320 42.6666666666667 301.0133333333333 42.6666666666667 277.3333333333334V42.6666666666667C42.6666666666667 18.9866666666667 61.6533333333333 0 85.3333333333333 0H426.6666666666667C450.3466666666667 0 469.3333333333333 18.9866666666667 469.3333333333333 42.6666666666667V277.3333333333334C469.3333333333333 301.0133333333333 450.3466666666667 320 426.6666666666667 320z" />
+    <glyph glyph-name="wan"
+      unicode="&#xF588;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C161.7066666666667 405.3333333333333 85.3333333333333 328.9600000000001 85.3333333333333 234.6666666666667C85.3333333333333 148.6933333333333 149.3333333333333 76.3733333333333 234.6666666666667 65.4933333333333V42.6666666666667H213.3333333333333C201.6 42.6666666666667 192 33.0666666666667 192 21.3333333333334H42.6666666666667V-21.3333333333333H192C192 -33.0666666666667 201.6 -42.6666666666666 213.3333333333333 -42.6666666666666H298.6666666666667C310.4 -42.6666666666666 320 -33.0666666666667 320 -21.3333333333333H469.3333333333333V21.3333333333334H320C320 33.0666666666667 310.4 42.6666666666667 298.6666666666667 42.6666666666667H277.3333333333333V65.4933333333333C362.6666666666667 76.16 426.6666666666667 148.6933333333334 426.6666666666667 234.6666666666667C426.6666666666667 328.9600000000001 350.2933333333334 405.3333333333333 256 405.3333333333333M256 362.6666666666667S271.7866666666667 335.36 282.88 298.6666666666667H229.12C240.2133333333333 335.36 256 362.6666666666667 256 362.6666666666667M208.4266666666667 353.4933333333334C202.6666666666667 342.8266666666667 193.92 323.4133333333334 186.4533333333333 298.6666666666667H145.28C160 323.4133333333334 181.3333333333333 342.8266666666667 208.4266666666667 353.4933333333334M303.5733333333333 353.2800000000001C330.6666666666667 342.6133333333334 352 323.4133333333334 366.7200000000001 298.6666666666667H325.5466666666667C318.0800000000001 323.4133333333334 309.3333333333334 342.8266666666667 303.5733333333334 353.2800000000001M129.92 256H177.4933333333334C176.64 248.96 176 241.92 176 234.6666666666667C176 227.4133333333334 176.64 220.3733333333333 177.4933333333334 213.3333333333334H129.92C128.64 220.3733333333333 128 227.4133333333334 128 234.6666666666667C128 241.92 128.64 248.96 129.92 256M220.16 256H291.84C292.6933333333333 248.96 293.3333333333333 241.92 293.3333333333333 234.6666666666667C293.3333333333333 227.4133333333334 292.6933333333334 220.3733333333333 291.84 213.3333333333334H220.16C219.3066666666667 220.3733333333333 218.6666666666667 227.4133333333334 218.6666666666667 234.6666666666667C218.6666666666667 241.92 219.3066666666667 248.96 220.16 256M334.5066666666667 256H382.08C383.36 248.96 384 241.92 384 234.6666666666667C384 227.4133333333334 383.36 220.3733333333333 382.08 213.3333333333334H334.5066666666667C335.36 220.3733333333333 336 227.4133333333334 336 234.6666666666667C336 241.92 335.36 248.96 334.5066666666667 256M145.28 170.6666666666667H186.4533333333333C193.92 145.92 202.6666666666667 126.5066666666667 208.4266666666667 116.0533333333334C181.3333333333333 126.72 160 145.92 145.28 170.6666666666667M229.12 170.6666666666667H282.88C271.7866666666667 133.9733333333334 256 106.6666666666667 256 106.6666666666667S240.2133333333333 133.9733333333334 229.12 170.6666666666667M325.5466666666666 170.6666666666667H366.7200000000001C352 145.92 330.6666666666667 126.5066666666667 303.5733333333333 115.84C309.3333333333333 126.5066666666667 318.08 145.92 325.5466666666666 170.6666666666667z" />
+    <glyph glyph-name="washing-machine"
+      unicode="&#xF729;"
+      horiz-adv-x="512" d=" M316.3733333333334 209.7066666666667C349.6533333333333 176.4266666666667 349.6533333333333 122.24 316.3733333333334 88.96C283.0933333333333 55.6800000000001 228.9066666666667 55.6800000000001 195.6266666666667 88.96L316.3733333333334 209.7066666666667M128 405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333M149.3333333333333 362.6666666666667C137.6 362.6666666666667 128 353.0666666666667 128 341.3333333333334S137.6 320 149.3333333333333 320S170.6666666666667 329.6 170.6666666666667 341.3333333333334S161.0666666666667 362.6666666666667 149.3333333333333 362.6666666666667M213.3333333333333 362.6666666666667C201.6 362.6666666666667 192 353.0666666666667 192 341.3333333333334S201.6 320 213.3333333333333 320S234.6666666666667 329.6 234.6666666666667 341.3333333333334S225.0666666666667 362.6666666666667 213.3333333333333 362.6666666666667M256 277.3333333333334C185.3866666666667 277.3333333333334 128 219.9466666666667 128 149.3333333333334S185.3866666666667 21.3333333333334 256 21.3333333333334S384 78.72 384 149.3333333333334S326.6133333333334 277.3333333333334 256 277.3333333333334z" />
+    <glyph glyph-name="watch"
+      unicode="&#xF589;"
+      horiz-adv-x="512" d=" M128 192C128 262.6133333333334 185.3866666666667 320 256 320S384 262.6133333333334 384 192S326.6133333333334 64 256 64S128 121.3866666666667 128 192M426.6666666666667 192C426.6666666666667 246.4000000000001 401.28 294.6133333333334 361.6 325.76L341.3333333333333 448H170.6666666666667L150.4 325.76C110.72 294.6133333333334 85.3333333333333 246.4000000000001 85.3333333333333 192C85.3333333333333 137.8133333333334 110.72 89.3866666666667 150.4 58.24L170.6666666666667 -64H341.3333333333333L361.6 58.24C401.28 89.3866666666667 426.6666666666667 137.8133333333334 426.6666666666667 192z" />
+    <glyph glyph-name="watch-export"
+      unicode="&#xF58A;"
+      horiz-adv-x="512" d=" M298.6666666666667 213.3333333333334H405.3333333333333L352 266.6666666666667L382.2933333333334 296.9600000000001L487.2533333333333 192L382.2933333333334 87.04L352 117.3333333333333L405.3333333333333 170.6666666666667H298.6666666666667V213.3333333333334M256 64C185.3866666666667 64 128 121.3866666666667 128 192S185.3866666666667 320 256 320C285.8666666666667 320 313.3866666666667 309.3333333333334 335.1466666666667 292.48L365.4400000000001 322.7733333333333L361.6 325.76L341.3333333333333 448H170.6666666666667L150.4 325.76C110.72 294.6133333333334 85.3333333333333 246.1866666666667 85.3333333333333 192C85.3333333333333 137.6 110.72 89.3866666666667 150.4 58.24L170.6666666666667 -64H341.3333333333333L361.6 58.24L365.44 61.2266666666667L335.1466666666667 91.52C313.3866666666667 74.6666666666667 285.8666666666667 64 256 64z" />
+    <glyph glyph-name="watch-export-variant"
+      unicode="&#xF894;"
+      horiz-adv-x="512" d=" M298.6666666666667 213.3333333333334H405.3333333333333L352 266.6666666666667L382.2933333333334 296.9600000000001L487.2533333333333 192L382.2933333333334 87.04L352 117.3333333333333L405.3333333333333 170.6666666666667H298.6666666666667V213.3333333333334M170.6666666666667 448H341.3333333333333L359.04 341.3333333333334H362.6666666666667C368.64 341.3333333333334 374.1866666666666 340.0533333333334 379.3066666666667 337.92L340.0533333333333 298.6666666666667H149.3333333333333V85.3333333333334H340.0533333333333L379.3066666666667 46.08C374.1866666666667 43.9466666666667 368.64 42.6666666666667 362.6666666666667 42.6666666666667H359.04L341.3333333333333 -64H170.6666666666667L152.96 42.6666666666667H149.3333333333333C125.8666666666667 42.6666666666667 106.6666666666667 61.8666666666667 106.6666666666667 85.3333333333334V298.6666666666667C106.6666666666667 322.3466666666667 125.8666666666667 341.3333333333334 149.3333333333333 341.3333333333334H152.96L170.6666666666667 448z" />
+    <glyph glyph-name="watch-import"
+      unicode="&#xF58B;"
+      horiz-adv-x="512" d=" M42.6666666666667 213.3333333333334H149.3333333333333L96 266.6666666666667L126.2933333333333 296.9600000000001L231.2533333333334 192L126.2933333333333 87.04L96 117.3333333333334L149.3333333333333 170.6666666666667H42.6666666666667V213.3333333333334M256 64C326.6133333333334 64 384 121.3866666666667 384 192S326.6133333333334 320 256 320C226.1333333333334 320 198.6133333333334 309.3333333333334 176.8533333333333 292.48L146.56 322.7733333333333L150.4 325.76L170.6666666666667 448H341.3333333333333L361.6 325.76C401.28 294.6133333333334 426.6666666666667 246.4000000000001 426.6666666666667 192C426.6666666666667 137.8133333333334 401.28 89.3866666666667 361.6 58.24L341.3333333333333 -64H170.6666666666667L150.4 58.24L146.56 61.2266666666667L176.8533333333333 91.52C198.6133333333334 74.6666666666667 226.1333333333334 64 256 64z" />
+    <glyph glyph-name="watch-import-variant"
+      unicode="&#xF895;"
+      horiz-adv-x="512" d=" M21.3333333333333 213.3333333333334H128L74.6666666666667 266.6666666666667L104.96 296.9600000000001L209.92 192L104.96 87.04L74.6666666666667 117.3333333333334L128 170.6666666666667H21.3333333333333V213.3333333333334M170.6666666666667 448H341.3333333333333L359.04 341.3333333333334H362.6666666666667C386.1333333333334 341.3333333333334 405.3333333333333 322.1333333333334 405.3333333333333 298.6666666666667V85.3333333333334C405.3333333333333 61.6533333333334 386.1333333333334 42.6666666666667 362.6666666666667 42.6666666666667H359.04L341.3333333333333 -64H170.6666666666667L152.96 42.6666666666667H149.3333333333333C137.8133333333333 42.6666666666667 128 47.1466666666667 119.8933333333333 54.6133333333333L150.6133333333333 85.3333333333334H362.6666666666667V298.6666666666667H150.6133333333333L119.8933333333333 329.3866666666667C128 336.8533333333334 137.8133333333333 341.3333333333334 149.3333333333333 341.3333333333334H152.96L170.6666666666667 448z" />
+    <glyph glyph-name="watch-variant"
+      unicode="&#xF896;"
+      horiz-adv-x="512" d=" M170.6666666666667 448L152.96 341.3333333333334H149.3333333333333C125.8666666666667 341.3333333333334 106.6666666666667 322.1333333333334 106.6666666666667 298.6666666666667V85.3333333333334C106.6666666666667 61.6533333333334 125.8666666666667 42.6666666666667 149.3333333333333 42.6666666666667H152.96L170.6666666666667 -64H341.3333333333333L359.04 42.6666666666667H362.6666666666667C386.1333333333334 42.6666666666667 405.3333333333333 61.8666666666667 405.3333333333333 85.3333333333334V298.6666666666667C405.3333333333333 322.3466666666667 386.1333333333334 341.3333333333334 362.6666666666667 341.3333333333334H359.04L341.3333333333333 448H170.6666666666667M149.3333333333333 298.6666666666667H362.6666666666667V85.3333333333334H149.3333333333333V298.6666666666667z" />
+    <glyph glyph-name="watch-vibrate"
+      unicode="&#xF6B0;"
+      horiz-adv-x="512" d=" M64 85.3333333333334V298.6666666666667H106.6666666666667V85.3333333333334H64M405.3333333333333 85.3333333333334V298.6666666666667H448V85.3333333333334H405.3333333333333M469.3333333333333 256H512V128H469.3333333333333V256M0 128V256H42.6666666666667V128H0M383.1466666666667 192.64C383.1466666666667 152.1066666666667 364.16 115.84 334.5066666666667 92.3733333333333L319.36 1.0666666666666H192L176.4266666666667 92.3733333333333C146.7733333333333 115.84 128 152.1066666666667 128 192.64C128 233.1733333333334 146.7733333333333 269.44 176.4266666666667 292.6933333333334L192 384H319.36L334.5066666666667 292.6933333333334C364.16 269.44 383.1466666666667 233.1733333333334 383.1466666666667 192.64M160 192.64C160 139.7333333333334 202.6666666666667 96.8533333333334 255.36 96.8533333333334C308.48 96.8533333333334 351.1466666666667 139.52 351.1466666666667 192.64C351.1466666666667 245.3333333333334 308.2666666666667 288 255.36 288C202.6666666666667 288 160 245.3333333333334 160 192.64z" />
+    <glyph glyph-name="water"
+      unicode="&#xF58C;"
+      horiz-adv-x="512" d=" M256 21.3333333333334C185.3866666666667 21.3333333333334 128 78.72 128 149.3333333333334C128 234.6666666666667 256 378.6666666666667 256 378.6666666666667S384 234.6666666666667 384 149.3333333333334C384 78.72 326.6133333333334 21.3333333333334 256 21.3333333333334z" />
+    <glyph glyph-name="water-off"
+      unicode="&#xF58D;"
+      horiz-adv-x="512" d=" M365.2266666666667 82.7733333333333L266.6666666666667 181.3333333333334L112.4266666666667 335.5733333333334L85.3333333333333 308.2666666666667L156.16 237.4400000000001C139.7333333333333 206.5066666666667 128 175.1466666666667 128 149.3333333333334C128 78.72 185.3866666666667 21.3333333333334 256 21.3333333333334C288 21.3333333333334 317.8666666666667 33.4933333333333 340.48 53.3333333333334L396.5866666666667 -2.7733333333333L423.68 24.3200000000001L365.2266666666666 82.7733333333334M384 149.3333333333334C384 234.6666666666667 256 379.7333333333334 256 379.7333333333334S227.6266666666667 347.5200000000001 197.76 304.6400000000001L381.0133333333333 121.3866666666667C382.9333333333333 130.3466666666667 384 139.7333333333334 384 149.3333333333334z" />
+    <glyph glyph-name="water-percent"
+      unicode="&#xF58E;"
+      horiz-adv-x="512" d=" M256 378.6666666666667S128 234.6666666666667 128 149.3333333333334C128 78.5066666666667 185.3866666666667 21.3333333333334 256 21.3333333333334S384 78.72 384 149.3333333333334C384 234.6666666666667 256 378.6666666666667 256 378.6666666666667M308.6933333333334 235.3066666666667L331.3066666666667 212.6933333333334L203.3066666666667 84.6933333333333L180.6933333333333 107.3066666666667M208 234.6666666666667C222.72 234.6666666666667 234.6666666666667 222.72 234.6666666666667 208S222.72 181.3333333333334 208 181.3333333333334S181.3333333333333 193.28 181.3333333333333 208S193.28 234.6666666666667 208 234.6666666666667M304 138.6666666666667C318.72 138.6666666666667 330.6666666666667 126.72 330.6666666666667 112S318.72 85.3333333333334 304 85.3333333333334S277.3333333333333 97.28 277.3333333333333 112S289.28 138.6666666666667 304 138.6666666666667z" />
+    <glyph glyph-name="water-pump"
+      unicode="&#xF58F;"
+      horiz-adv-x="512" d=" M405.3333333333333 138.6666666666667S448 92.3733333333333 448 64C448 40.5333333333333 428.8 21.3333333333334 405.3333333333333 21.3333333333334S362.6666666666667 40.5333333333333 362.6666666666667 64C362.6666666666667 92.3733333333333 405.3333333333333 138.6666666666667 405.3333333333333 138.6666666666667M106.6666666666667 64V256C83.2 256 64 275.2000000000001 64 298.6666666666667S83.2 341.3333333333334 106.6666666666667 341.3333333333334V362.6666666666667C106.6666666666667 386.1333333333334 125.8666666666667 405.3333333333333 149.3333333333333 405.3333333333333H192C215.4666666666667 405.3333333333333 234.6666666666667 386.1333333333334 234.6666666666667 362.6666666666667V341.3333333333334H405.3333333333333C428.8 341.3333333333334 448 322.1333333333334 448 298.6666666666667V213.3333333333334C459.7333333333333 213.3333333333334 469.3333333333333 203.7333333333334 469.3333333333333 192S459.7333333333333 170.6666666666667 448 170.6666666666667H362.6666666666667C350.9333333333333 170.6666666666667 341.3333333333333 180.2666666666667 341.3333333333333 192S350.9333333333333 213.3333333333334 362.6666666666667 213.3333333333334V256H234.6666666666667V64H256C279.4666666666667 64 298.6666666666667 44.8000000000001 298.6666666666667 21.3333333333334V-21.3333333333333H42.6666666666667V21.3333333333334C42.6666666666667 44.8000000000001 61.8666666666667 64 85.3333333333333 64H106.6666666666667z" />
+    <glyph glyph-name="watermark"
+      unicode="&#xF612;"
+      horiz-adv-x="512" d=" M448 384H64C40.5333333333333 384 21.3333333333333 364.8 21.3333333333333 341.3333333333334V42.6666666666667C21.3333333333333 19.2 40.5333333333333 0 64 0H448C471.4666666666667 0 490.6666666666666 19.2 490.6666666666666 42.6666666666667V341.3333333333334C490.6666666666666 364.8 471.4666666666667 384 448 384M448 42.6666666666667H256V170.6666666666667H448V42.6666666666667z" />
+    <glyph glyph-name="waves"
+      unicode="&#xF78C;"
+      horiz-adv-x="512" d=" M42.6666666666667 64C90.0266666666667 85.3333333333334 137.3866666666667 106.6666666666667 184.96 106.6666666666667C232.32 106.6666666666667 279.68 64 327.04 64C374.6133333333333 64 421.9733333333334 106.6666666666667 469.3333333333333 106.6666666666667V42.6666666666667C421.9733333333334 42.6666666666667 374.6133333333333 0 327.04 0C279.68 0 232.32 42.6666666666667 184.96 42.6666666666667C137.3866666666667 42.6666666666667 90.0266666666667 21.3333333333334 42.6666666666667 0V64M42.6666666666667 192C90.0266666666667 213.3333333333334 137.3866666666667 234.6666666666667 184.96 234.6666666666667C232.32 234.6666666666667 279.68 192 327.04 192C374.6133333333333 192 421.9733333333334 234.6666666666667 469.3333333333333 234.6666666666667V170.6666666666667C421.9733333333334 170.6666666666667 374.6133333333333 128 327.04 128C279.68 128 232.32 170.6666666666667 184.96 170.6666666666667C137.3866666666667 170.6666666666667 90.0266666666667 149.3333333333334 42.6666666666667 128V192M42.6666666666667 320C90.0266666666667 341.3333333333334 137.3866666666667 362.6666666666667 184.96 362.6666666666667C232.32 362.6666666666667 279.68 320 327.04 320C374.6133333333333 320 421.9733333333334 362.6666666666667 469.3333333333333 362.6666666666667V298.6666666666667C421.9733333333334 298.6666666666667 374.6133333333333 256 327.04 256C279.68 256 232.32 298.6666666666667 184.96 298.6666666666667C137.3866666666667 298.6666666666667 90.0266666666667 277.3333333333334 42.6666666666667 256V320z" />
+    <glyph glyph-name="waze"
+      unicode="&#xFBBA;"
+      horiz-adv-x="512" d=" M438.1866666666666 306.56C452.9066666666666 286.5066666666667 462.7199999999999 263.04 466.9866666666667 238.5066666666667C471.4666666666667 211.84 469.3333333333333 184.7466666666667 460.3733333333333 159.1466666666667C451.84 134.1866666666667 437.3333333333333 111.7866666666666 417.7066666666667 93.8666666666667C403.4133333333333 80.2133333333333 387.2000000000001 68.9066666666666 369.4933333333334 60.16C378.24 37.3333333333334 366.7200000000001 11.7333333333333 343.8933333333333 2.9866666666667C338.7733333333333 1.0666666666667 333.44 0 328.1066666666667 0C304.4266666666667 0 284.8 18.9866666666667 283.9466666666667 42.6666666666667H218.4533333333333C216.1066666666667 18.3466666666667 194.3466666666666 0 170.0266666666667 2.7733333333333C147.4133333333333 4.9066666666667 130.3466666666667 23.68 129.92 46.2933333333333C130.1333333333333 50.3466666666667 130.7733333333334 54.6133333333333 132.0533333333334 58.4533333333333C98.1333333333333 69.76 68.48 90.88 46.72 119.2533333333333C39.68 128.64 41.8133333333333 142.08 51.6266666666667 149.3333333333333C55.4666666666667 152.32 60.16 154.0266666666667 65.0666666666667 154.0266666666667C80.4266666666667 154.0266666666667 86.4 159.36 90.0266666666667 167.4666666666667C95.1466666666667 182.8266666666667 98.1333333333333 198.8266666666667 98.3466666666667 215.04C98.9866666666667 226.3466666666667 100.2666666666667 237.4400000000001 101.9733333333333 248.5333333333334C109.44 285.44 130.1333333333333 318.5066666666667 160 341.3333333333334C195.4133333333333 369.0666666666667 238.72 384 283.52 384C314.0266666666667 384 344.1066666666667 376.5333333333333 371.2 362.6666666666667C397.6533333333333 349.44 420.4799999999999 330.6666666666667 438.1866666666666 306.56M356.6933333333333 78.72C394.6666666666667 96 424.5333333333333 127.1466666666667 439.2533333333334 166.1866666666667C473.8133333333333 271.5733333333334 384 361.6 283.52 361.6C276.0533333333333 361.6 268.3733333333333 361.1733333333334 260.9066666666667 360.1066666666667C199.68 352 136.5333333333333 309.3333333333334 123.9466666666667 245.3333333333334C115.84 202.6666666666667 128 132.48 65.0666666666667 132.48C85.3333333333333 106.6666666666667 113.4933333333334 86.8266666666667 145.28 77.44C163.4133333333333 93.6533333333334 191.36 91.9466666666667 207.7866666666667 73.6C210.1333333333333 71.04 212.0533333333333 68.2666666666667 213.3333333333333 65.28H289.0666666666667C300.16 87.04 327.04 96 348.8 84.48C352 82.7733333333333 354.1333333333334 80.8533333333332 356.6933333333334 78.72M234.0266666666667 228.0533333333333C221.6533333333334 227.4133333333333 210.7733333333334 236.8 210.1333333333334 249.3866666666667C209.4933333333334 261.76 219.0933333333334 272.4266666666666 231.4666666666667 273.28C243.8400000000001 273.92 254.7200000000001 264.32 255.3600000000001 250.6666666666667C256 238.9333333333333 246.6133333333334 228.9066666666667 234.6666666666667 228.48L234.0266666666667 228.0533333333333M334.0800000000001 228.0533333333333C321.7066666666667 227.4133333333333 310.8266666666667 236.8 310.1866666666667 249.3866666666667C309.3333333333334 261.76 319.1466666666667 272.4266666666666 331.5200000000001 273.28C343.8933333333333 273.92 354.7733333333334 264.32 355.4133333333334 250.6666666666667C355.8400000000001 238.9333333333333 346.6666666666668 228.9066666666667 334.0800000000001 228.48V228.0533333333333M207.1466666666668 190.5066666666667C205.8666666666667 196.48 209.9200000000001 202.6666666666666 215.8933333333334 203.7333333333333C221.8666666666667 204.8 227.8400000000001 200.9599999999999 229.1200000000001 194.9866666666666C236.5866666666668 171.3066666666666 259.4133333333334 155.9466666666666 284.1600000000001 157.8666666666666C308.4800000000001 156.5866666666666 330.6666666666668 171.52 338.9866666666668 194.56C341.9733333333334 200.1066666666666 348.8000000000001 202.6666666666666 354.1333333333335 199.4666666666667C357.9733333333334 197.3333333333333 360.3200000000001 193.7066666666667 360.3200000000001 189.44C356.2666666666667 174.2933333333333 346.8800000000001 161.0666666666666 334.0800000000001 151.8933333333333C319.3600000000001 141.6533333333333 302.0800000000001 135.8933333333333 284.1600000000001 135.68H281.8133333333334C247.0400000000001 134.1866666666666 215.6800000000001 157.0133333333333 206.5066666666668 190.72L207.1466666666668 190.5066666666667z" />
+    <glyph glyph-name="weather-cloudy"
+      unicode="&#xF590;"
+      horiz-adv-x="512" d=" M128 42.6666666666667C69.12 42.6666666666667 21.3333333333333 90.4533333333334 21.3333333333333 149.3333333333334S69.12 256 128 256C149.3333333333333 306.1333333333334 198.4 341.3333333333334 256 341.3333333333334C329.1733333333333 341.3333333333334 389.12 284.5866666666667 394.6666666666667 212.6933333333333L405.3333333333333 213.3333333333334C452.48 213.3333333333334 490.6666666666666 175.1466666666667 490.6666666666666 128S452.48 42.6666666666667 405.3333333333333 42.6666666666667H128M405.3333333333333 170.6666666666667H362.6666666666667V192C362.6666666666667 250.88 314.88 298.6666666666667 256 298.6666666666667C202.6666666666667 298.6666666666667 158.9333333333333 259.8400000000001 150.6133333333333 209.28C143.5733333333333 211.84 135.8933333333333 213.3333333333334 128 213.3333333333334C92.5866666666667 213.3333333333334 64 184.7466666666667 64 149.3333333333334S92.5866666666667 85.3333333333334 128 85.3333333333334H405.3333333333333C428.8 85.3333333333334 448 104.5333333333333 448 128S428.8 170.6666666666667 405.3333333333333 170.6666666666667z" />
+    <glyph glyph-name="weather-fog"
+      unicode="&#xF591;"
+      horiz-adv-x="512" d=" M64 128H277.3333333333333C289.0666666666667 128 298.6666666666667 118.4 298.6666666666667 106.6666666666667S289.0666666666667 85.3333333333334 277.3333333333333 85.3333333333334H64C52.2666666666667 85.3333333333334 42.6666666666667 94.9333333333333 42.6666666666667 106.6666666666667S52.2666666666667 128 64 128M341.3333333333333 128H448C459.7333333333333 128 469.3333333333333 118.4 469.3333333333333 106.6666666666667S459.7333333333333 85.3333333333334 448 85.3333333333334H341.3333333333333C329.6 85.3333333333334 320 94.9333333333333 320 106.6666666666667S329.6 128 341.3333333333333 128M21.3333333333333 192C21.3333333333333 250.88 69.12 298.6666666666667 128 298.6666666666667C149.3333333333333 348.8 198.4 384 256 384C329.1733333333333 384 389.12 327.2533333333334 394.6666666666667 255.36L405.3333333333333 256C452.0533333333333 256 490.0266666666666 218.4533333333334 490.6666666666666 170.6666666666667H448C448 194.1333333333333 428.8 213.3333333333334 405.3333333333333 213.3333333333334H362.6666666666667V234.6666666666667C362.6666666666667 293.5466666666667 314.88 341.3333333333334 256 341.3333333333334C202.6666666666667 341.3333333333334 158.9333333333333 302.5066666666667 150.6133333333333 251.9466666666667C143.5733333333333 254.5066666666667 135.8933333333333 256 128 256C92.5866666666667 256 64 227.4133333333334 64 192C64 184.5333333333334 65.28 177.28 67.6266666666667 170.6666666666667H23.4666666666667L21.3333333333333 192M64 42.6666666666667H106.6666666666667C118.4 42.6666666666667 128 33.0666666666667 128 21.3333333333334S118.4 0 106.6666666666667 0H64C52.2666666666667 0 42.6666666666667 9.6 42.6666666666667 21.3333333333334S52.2666666666667 42.6666666666667 64 42.6666666666667M170.6666666666667 42.6666666666667H448C459.7333333333333 42.6666666666667 469.3333333333333 33.0666666666667 469.3333333333333 21.3333333333334S459.7333333333333 0 448 0H170.6666666666667C158.9333333333333 0 149.3333333333333 9.6 149.3333333333333 21.3333333333334S158.9333333333333 42.6666666666667 170.6666666666667 42.6666666666667z" />
+    <glyph glyph-name="weather-hail"
+      unicode="&#xF592;"
+      horiz-adv-x="512" d=" M128 149.3333333333334C139.7333333333333 149.3333333333334 149.3333333333333 139.7333333333334 149.3333333333333 128S139.7333333333333 106.6666666666667 128 106.6666666666667C69.12 106.6666666666667 21.3333333333333 154.4533333333334 21.3333333333333 213.3333333333334S69.12 320 128 320C149.3333333333333 370.1333333333334 198.4 405.3333333333333 256 405.3333333333333C329.1733333333333 405.3333333333333 389.12 348.5866666666667 394.6666666666667 276.6933333333334L405.3333333333333 277.3333333333334C452.48 277.3333333333334 490.6666666666666 239.1466666666667 490.6666666666666 192S452.48 106.6666666666667 405.3333333333333 106.6666666666667H384C372.2666666666667 106.6666666666667 362.6666666666667 116.2666666666667 362.6666666666667 128S372.2666666666667 149.3333333333334 384 149.3333333333334H405.3333333333333C428.8 149.3333333333334 448 168.5333333333334 448 192S428.8 234.6666666666667 405.3333333333333 234.6666666666667H362.6666666666667V256C362.6666666666667 314.88 314.88 362.6666666666667 256 362.6666666666667C202.6666666666667 362.6666666666667 158.9333333333333 323.8400000000001 150.6133333333333 273.28C143.5733333333333 275.8400000000001 135.8933333333333 277.3333333333334 128 277.3333333333334C92.5866666666667 277.3333333333334 64 248.7466666666667 64 213.3333333333334S92.5866666666667 149.3333333333334 128 149.3333333333334M213.3333333333333 64C236.8 64 256 44.8000000000001 256 21.3333333333334S236.8 -21.3333333333333 213.3333333333333 -21.3333333333333S170.6666666666667 -2.1333333333333 170.6666666666667 21.3333333333334S189.8666666666667 64 213.3333333333333 64M309.3333333333333 106.6666666666667C327.04 106.6666666666667 341.3333333333333 92.3733333333333 341.3333333333333 74.6666666666667S327.04 42.6666666666667 309.3333333333333 42.6666666666667S277.3333333333333 56.96 277.3333333333333 74.6666666666667S291.6266666666667 106.6666666666667 309.3333333333333 106.6666666666667M224 192C241.7066666666667 192 256 177.7066666666667 256 160S241.7066666666667 128 224 128S192 142.2933333333334 192 160S206.2933333333333 192 224 192z" />
+    <glyph glyph-name="weather-hurricane"
+      unicode="&#xF897;"
+      horiz-adv-x="512" d=" M320 303.1466666666667C359.68 280.32 384 237.8666666666667 384 192C384 -21.3333333333333 128 -21.3333333333333 128 -21.3333333333333C154.6666666666667 -1.28 178.7733333333333 22.4 199.2533333333333 48.8533333333334C200.1066666666666 49.92 200.7466666666667 50.9866666666667 201.3866666666667 52.2666666666667C206.72 62.72 202.6666666666667 75.52 192 80.8533333333334C152.32 103.68 128 146.1333333333333 128 192C128 405.3333333333333 384 405.3333333333333 384 405.3333333333333C357.3333333333333 385.28 333.2266666666667 361.6 312.7466666666667 335.1466666666667C311.8933333333333 334.0800000000001 311.2533333333334 333.0133333333333 310.6133333333334 331.7333333333334C305.28 321.28 309.3333333333333 308.48 320 303.1466666666667M256 149.3333333333334C279.4666666666667 149.3333333333334 298.6666666666667 168.5333333333334 298.6666666666667 192S279.4666666666667 234.6666666666667 256 234.6666666666667S213.3333333333333 215.4666666666667 213.3333333333333 192S232.5333333333334 149.3333333333334 256 149.3333333333334z" />
+    <glyph glyph-name="weather-lightning"
+      unicode="&#xF593;"
+      horiz-adv-x="512" d=" M128 106.6666666666667C69.12 106.6666666666667 21.3333333333333 154.4533333333334 21.3333333333333 213.3333333333334S69.12 320 128 320C149.3333333333333 370.1333333333334 198.4 405.3333333333333 256 405.3333333333333C329.1733333333333 405.3333333333333 389.12 348.5866666666667 394.6666666666667 276.6933333333334L405.3333333333333 277.3333333333334C452.48 277.3333333333334 490.6666666666666 239.1466666666667 490.6666666666666 192S452.48 106.6666666666667 405.3333333333333 106.6666666666667H384C372.2666666666667 106.6666666666667 362.6666666666667 116.2666666666667 362.6666666666667 128S372.2666666666667 149.3333333333334 384 149.3333333333334H405.3333333333333C428.8 149.3333333333334 448 168.5333333333334 448 192S428.8 234.6666666666667 405.3333333333333 234.6666666666667H362.6666666666667V256C362.6666666666667 314.88 314.88 362.6666666666667 256 362.6666666666667C202.6666666666667 362.6666666666667 158.9333333333333 323.8400000000001 150.6133333333333 273.28C143.5733333333333 275.8400000000001 135.8933333333333 277.3333333333334 128 277.3333333333334C92.5866666666667 277.3333333333334 64 248.7466666666667 64 213.3333333333334S92.5866666666667 149.3333333333334 128 149.3333333333334H149.3333333333333C161.0666666666667 149.3333333333334 170.6666666666667 139.7333333333334 170.6666666666667 128S161.0666666666667 106.6666666666667 149.3333333333333 106.6666666666667H128M256 213.3333333333334H320L277.3333333333333 128H320L240 -21.3333333333333L256 85.3333333333334H202.6666666666667L256 213.3333333333334z" />
+    <glyph glyph-name="weather-lightning-rainy"
+      unicode="&#xF67D;"
+      horiz-adv-x="512" d=" M96 158.0800000000001C106.6666666666667 152.1066666666667 109.6533333333333 138.6666666666667 103.8933333333333 128.8533333333334C97.92 118.6133333333334 85.3333333333333 115.2 74.6666666666667 120.96C42.6666666666667 139.3066666666667 21.3333333333333 173.8666666666667 21.3333333333333 213.3333333333334C21.3333333333333 272.2133333333334 69.12 320 128 320C149.3333333333333 370.1333333333334 198.4 405.3333333333333 256 405.3333333333333C329.1733333333333 405.3333333333333 389.12 348.5866666666667 394.6666666666667 276.6933333333334L405.3333333333333 277.3333333333334C452.48 277.3333333333334 490.6666666666666 239.1466666666667 490.6666666666666 192S452.48 106.6666666666667 405.3333333333333 106.6666666666667C393.6 106.6666666666667 384 116.2666666666667 384 128S393.6 149.3333333333334 405.3333333333333 149.3333333333334C428.8 149.3333333333334 448 168.5333333333334 448 192S428.8 234.6666666666667 405.3333333333333 234.6666666666667H362.6666666666667V256C362.6666666666667 314.88 314.88 362.6666666666667 256 362.6666666666667C202.6666666666667 362.6666666666667 158.9333333333333 323.8400000000001 150.6133333333333 273.28C143.5733333333333 275.8400000000001 135.8933333333333 277.3333333333334 128 277.3333333333334C92.5866666666667 277.3333333333334 64 248.7466666666667 64 213.3333333333334C64 189.6533333333334 76.8 168.96 96 157.8666666666667V158.0800000000001M202.6666666666667 213.3333333333334H266.6666666666667L224 128H266.6666666666667L186.6666666666667 -21.3333333333333L202.6666666666667 85.3333333333334H149.3333333333333L202.6666666666667 213.3333333333334M373.3333333333333 49.7066666666667C373.3333333333333 22.1866666666667 352 0 325.3333333333333 0S277.3333333333333 22.1866666666667 277.3333333333333 49.7066666666667C277.3333333333333 82.7733333333333 325.3333333333333 138.6666666666666 325.3333333333333 138.6666666666666S373.3333333333333 82.7733333333333 373.3333333333333 49.7066666666667z" />
+    <glyph glyph-name="weather-night"
+      unicode="&#xF594;"
+      horiz-adv-x="512" d=" M378.6666666666667 360.7466666666667L324.6933333333334 319.36L344.1066666666667 254.08L288 292.6933333333334L231.8933333333334 254.08L251.3066666666667 319.36L197.3333333333334 360.7466666666667L265.3866666666667 362.6666666666667L288 426.6666666666667L310.6133333333334 362.6666666666667L378.6666666666667 360.7466666666667M453.3333333333333 213.3333333333334L418.3466666666667 186.6666666666667L430.9333333333333 144.4266666666667L394.6666666666667 169.3866666666667L358.4 144.4266666666667L370.9866666666667 186.6666666666667L336 213.3333333333334L379.9466666666666 214.4L394.6666666666667 256L409.3866666666667 214.4L453.3333333333333 213.3333333333334M404.6933333333333 107.7333333333334C422.3999999999999 109.4400000000001 441.3866666666666 84.2666666666667 430.08 68.2666666666667C423.2533333333334 58.6666666666667 416 49.7066666666667 407.04 41.1733333333333C323.6266666666667 -42.6666666666666 188.5866666666667 -42.6666666666666 105.3866666666667 41.1733333333333C21.9733333333333 124.3733333333333 21.9733333333333 259.6266666666667 105.3866666666667 342.8266666666667C113.92 351.36 122.88 359.04 132.48 365.8666666666667C148.48 377.1733333333334 173.6533333333333 358.1866666666667 171.9466666666667 340.48C166.1866666666667 279.4666666666667 186.6666666666667 216.1066666666667 233.6 169.3866666666667C280.32 122.4533333333334 343.4666666666667 101.9733333333334 404.6933333333333 107.7333333333334M369.7066666666666 64.64C309.3333333333333 68.0533333333334 249.6 93.0133333333333 203.3066666666666 138.6666666666668C157.0133333333333 185.3866666666667 132.2666666666666 245.3333333333334 128.8533333333333 305.4933333333334C68.9066666666666 238.5066666666667 71.2533333333333 135.6800000000001 135.4666666666666 71.2533333333335C199.8933333333333 7.0400000000001 302.7199999999999 4.6933333333334 369.7066666666666 64.6400000000001z" />
+    <glyph glyph-name="weather-partlycloudy"
+      unicode="&#xF595;"
+      horiz-adv-x="512" d=" M271.7866666666667 331.3066666666667C322.1333333333334 309.3333333333334 348.8 255.36 339.6266666666667 203.52C366.7200000000001 180.0533333333334 384 145.28 384 106.6666666666667V103.04C390.6133333333333 105.3866666666667 397.8666666666666 106.6666666666667 405.3333333333333 106.6666666666667C440.7466666666667 106.6666666666667 469.3333333333333 78.08 469.3333333333333 42.6666666666667S440.7466666666667 -21.3333333333333 405.3333333333333 -21.3333333333333H128C80.8533333333333 -21.3333333333333 42.6666666666667 16.8533333333334 42.6666666666667 64S80.8533333333333 149.3333333333334 128 149.3333333333334H133.76C106.6666666666667 182.4 98.1333333333333 229.5466666666667 117.3333333333333 271.7866666666667C143.36 330.6666666666667 212.6933333333333 357.5466666666667 271.7866666666667 331.3066666666667M254.5066666666667 292.2666666666667C216.7466666666667 309.3333333333334 172.5866666666667 292.0533333333334 155.9466666666667 254.5066666666667C146.1333333333333 232.7466666666667 147.84 208.64 158.08 189.2266666666667C181.3333333333333 216.96 216.7466666666667 234.6666666666667 256 234.6666666666667C270.9333333333333 234.6666666666667 285.44 232.1066666666667 298.6666666666667 227.4133333333334C297.3866666666667 254.72 281.1733333333333 280.3200000000001 254.5066666666667 292.2666666666667M289.0666666666667 370.3466666666667C277.3333333333333 375.4666666666667 265.6 379.0933333333334 253.44 381.44L306.56 409.1733333333334L325.76 347.52C314.88 356.48 302.7200000000001 364.1600000000001 289.0666666666667 370.3466666666667M129.92 353.2800000000001C119.4666666666667 345.8133333333334 110.2933333333334 337.2800000000001 102.4 327.8933333333334L104.7466666666667 387.8400000000001L167.8933333333334 373.3333333333334C154.6666666666667 368.8533333333334 141.8666666666667 362.0266666666667 129.92 353.2800000000001M384 240.8533333333333C382.08 253.44 379.3066666666667 265.6 375.2533333333334 277.3333333333334L426.0266666666667 245.3333333333334L382.2933333333333 197.76C384.64 211.6266666666667 385.0666666666666 226.1333333333334 383.9999999999999 240.8533333333333M64.8533333333333 206.9333333333333C66.3466666666667 194.1333333333333 69.12 181.9733333333334 73.1733333333333 170.6666666666667L22.6133333333333 202.6666666666667L66.1333333333333 250.0266666666667C64 236.1600000000001 63.36 221.6533333333334 64.8533333333333 206.9333333333334M405.3333333333333 64H341.3333333333333V106.6666666666667C341.3333333333333 153.8133333333334 303.1466666666667 192 256 192S170.6666666666667 153.8133333333334 170.6666666666667 106.6666666666667H128C104.5333333333333 106.6666666666667 85.3333333333333 87.4666666666667 85.3333333333333 64S104.5333333333333 21.3333333333334 128 21.3333333333334H405.3333333333333C417.0666666666667 21.3333333333334 426.6666666666667 30.9333333333333 426.6666666666667 42.6666666666667S417.0666666666667 64 405.3333333333333 64z" />
+    <glyph glyph-name="weather-pouring"
+      unicode="&#xF596;"
+      horiz-adv-x="512" d=" M192 192C203.3066666666667 189.0133333333333 210.1333333333333 177.28 207.1466666666667 165.9733333333334L179.4133333333333 62.9333333333333C176.4266666666667 51.4133333333334 164.6933333333333 44.8 153.3866666666667 47.7866666666666C141.8666666666667 50.7733333333333 135.2533333333333 62.5066666666667 138.6666666666667 73.8133333333333L165.9733333333333 176.8533333333333C168.96 188.3733333333333 180.6933333333333 194.9866666666666 192 192M277.3333333333333 192C288.64 189.0133333333333 295.4666666666667 177.28 292.48 165.9733333333333L248.32 1.0666666666666C245.3333333333333 -10.6666666666667 233.6 -17.0666666666667 222.08 -14.08C210.7733333333334 -10.6666666666667 203.9466666666667 0.64 206.9333333333333 12.16L251.3066666666667 176.8533333333333C254.2933333333333 188.3733333333332 266.0266666666667 194.9866666666666 277.3333333333333 192M362.6666666666667 192C373.9733333333334 189.0133333333333 380.8 177.28 377.8133333333334 165.9733333333333L350.08 62.9333333333333C347.0933333333333 51.4133333333333 335.36 44.7999999999999 324.0533333333333 47.7866666666666C312.5333333333333 50.7733333333333 305.92 62.5066666666666 309.3333333333333 73.8133333333332L336.64 176.8533333333333C339.6266666666667 188.3733333333332 351.36 194.9866666666665 362.6666666666667 191.9999999999999M362.6666666666667 234.6666666666665V256C362.6666666666667 314.88 314.88 362.6666666666667 256 362.6666666666667C202.6666666666667 362.6666666666667 158.9333333333333 323.8400000000001 150.6133333333333 273.28C143.5733333333333 275.8400000000001 135.8933333333333 277.3333333333334 128 277.3333333333334C92.5866666666667 277.3333333333334 64 248.7466666666667 64 213.3333333333334C64 189.6533333333334 76.8 168.96 96 157.8666666666667V158.0800000000001C106.6666666666667 152.1066666666667 109.6533333333333 138.6666666666667 103.8933333333333 128.8533333333334C97.92 118.8266666666667 85.3333333333333 115.2 74.6666666666667 121.1733333333334V120.96C42.6666666666667 139.3066666666667 21.3333333333333 173.8666666666667 21.3333333333333 213.3333333333334C21.3333333333333 272.2133333333334 69.12 320 128 320C149.3333333333333 370.1333333333334 198.4 405.3333333333333 256 405.3333333333333C329.1733333333333 405.3333333333333 389.12 348.5866666666667 394.6666666666667 276.6933333333334L405.3333333333333 277.3333333333334C452.48 277.3333333333334 490.6666666666666 239.1466666666667 490.6666666666666 192C490.6666666666666 160 473.6 132.9066666666667 448 118.1866666666667C437.3333333333333 112.4266666666667 424.7466666666667 115.84 418.7733333333333 126.08C413.0133333333333 136.32 416 149.3333333333333 426.6666666666667 155.3066666666666V155.0933333333333C439.4666666666667 162.3466666666666 448 176.2133333333333 448 192C448 215.4666666666667 428.8 234.6666666666667 405.3333333333333 234.6666666666667H362.6666666666667z" />
+    <glyph glyph-name="weather-rainy"
+      unicode="&#xF597;"
+      horiz-adv-x="512" d=" M128 149.3333333333334C139.7333333333333 149.3333333333334 149.3333333333333 139.7333333333334 149.3333333333333 128S139.7333333333333 106.6666666666667 128 106.6666666666667C69.12 106.6666666666667 21.3333333333333 154.4533333333334 21.3333333333333 213.3333333333334S69.12 320 128 320C149.3333333333333 370.1333333333334 198.4 405.3333333333333 256 405.3333333333333C329.1733333333333 405.3333333333333 389.12 348.5866666666667 394.6666666666667 276.6933333333334L405.3333333333333 277.3333333333334C452.48 277.3333333333334 490.6666666666666 239.1466666666667 490.6666666666666 192S452.48 106.6666666666667 405.3333333333333 106.6666666666667H384C372.2666666666667 106.6666666666667 362.6666666666667 116.2666666666667 362.6666666666667 128S372.2666666666667 149.3333333333334 384 149.3333333333334H405.3333333333333C428.8 149.3333333333334 448 168.5333333333334 448 192S428.8 234.6666666666667 405.3333333333333 234.6666666666667H362.6666666666667V256C362.6666666666667 314.88 314.88 362.6666666666667 256 362.6666666666667C202.6666666666667 362.6666666666667 158.9333333333333 323.8400000000001 150.6133333333333 273.28C143.5733333333333 275.8400000000001 135.8933333333333 277.3333333333334 128 277.3333333333334C92.5866666666667 277.3333333333334 64 248.7466666666667 64 213.3333333333334S92.5866666666667 149.3333333333334 128 149.3333333333334M316.3733333333334 113.7066666666667C349.6533333333333 80.4266666666667 349.6533333333333 32 316.3733333333334 -1.7066666666666C299.7333333333334 -18.3466666666666 277.3333333333333 -21.3333333333333 256 -21.3333333333333S212.2666666666667 -18.3466666666666 195.6266666666667 -1.7066666666666C162.3466666666666 32 162.3466666666666 80.4266666666667 195.6266666666667 113.7066666666667L256 213.3333333333334L316.3733333333334 113.7066666666667M286.08 91.9466666666667L256 144L225.92 91.9466666666667C209.0666666666667 74.6666666666667 209.0666666666667 49.0666666666666 225.92 32C234.6666666666667 22.8266666666667 245.3333333333333 21.3333333333334 256 21.3333333333334C266.6666666666667 21.3333333333334 277.3333333333333 22.8266666666667 286.08 32C302.9333333333333 49.0666666666667 302.9333333333333 74.6666666666667 286.08 91.9466666666667z" />
+    <glyph glyph-name="weather-snowy"
+      unicode="&#xF598;"
+      horiz-adv-x="512" d=" M128 149.3333333333334C139.7333333333333 149.3333333333334 149.3333333333333 139.7333333333334 149.3333333333333 128S139.7333333333333 106.6666666666667 128 106.6666666666667C69.12 106.6666666666667 21.3333333333333 154.4533333333334 21.3333333333333 213.3333333333334S69.12 320 128 320C149.3333333333333 370.1333333333334 198.4 405.3333333333333 256 405.3333333333333C329.1733333333333 405.3333333333333 389.12 348.5866666666667 394.6666666666667 276.6933333333334L405.3333333333333 277.3333333333334C452.48 277.3333333333334 490.6666666666666 239.1466666666667 490.6666666666666 192S452.48 106.6666666666667 405.3333333333333 106.6666666666667H384C372.2666666666667 106.6666666666667 362.6666666666667 116.2666666666667 362.6666666666667 128S372.2666666666667 149.3333333333334 384 149.3333333333334H405.3333333333333C428.8 149.3333333333334 448 168.5333333333334 448 192S428.8 234.6666666666667 405.3333333333333 234.6666666666667H362.6666666666667V256C362.6666666666667 314.88 314.88 362.6666666666667 256 362.6666666666667C202.6666666666667 362.6666666666667 158.9333333333333 323.8400000000001 150.6133333333333 273.28C143.5733333333333 275.8400000000001 135.8933333333333 277.3333333333334 128 277.3333333333334C92.5866666666667 277.3333333333334 64 248.7466666666667 64 213.3333333333334S92.5866666666667 149.3333333333334 128 149.3333333333334M168.1066666666667 62.5066666666667L214.8266666666667 74.6666666666667L180.48 109.2266666666667C172.16 117.3333333333334 172.16 130.9866666666667 180.48 139.5200000000001C188.8 147.84 202.6666666666667 147.84 210.7733333333334 139.5200000000001L245.3333333333333 105.1733333333334L257.4933333333334 151.8933333333333C260.48 163.4133333333334 272.2133333333333 170.0266666666667 283.52 167.04C295.04 164.0533333333333 301.6533333333333 152.32 298.6666666666667 140.8L286.08 94.0799999999999L332.8 106.6666666666667C344.32 109.6533333333334 356.0533333333334 103.04 359.04 91.52C362.0266666666667 80.2133333333333 355.4133333333333 68.48 343.8933333333333 65.4933333333333L297.1733333333333 53.3333333333334L331.5199999999999 18.7733333333333C339.8399999999999 10.6666666666667 339.8399999999999 -3.2 331.5199999999999 -11.52C323.2 -19.84 309.3333333333333 -19.84 301.2266666666666 -11.52L266.6666666666666 22.8266666666667L254.5066666666666 -23.8933333333333C251.5199999999999 -35.4133333333333 239.7866666666666 -42.0266666666667 228.4799999999999 -39.04C216.9599999999999 -36.0533333333333 210.3466666666666 -24.32 213.3333333333333 -12.8L225.9199999999999 33.92L179.2 21.3333333333334C167.68 18.3466666666667 155.9466666666667 24.96 152.96 36.48C149.9733333333333 47.7866666666668 156.5866666666667 59.52 168.1066666666667 62.5066666666667z" />
+    <glyph glyph-name="weather-snowy-rainy"
+      unicode="&#xF67E;"
+      horiz-adv-x="512" d=" M394.6666666666667 49.7066666666667C394.6666666666667 22.1866666666667 373.3333333333333 0 346.6666666666667 0S298.6666666666667 22.1866666666667 298.6666666666667 49.7066666666667C298.6666666666667 82.7733333333333 346.6666666666667 138.6666666666666 346.6666666666667 138.6666666666666S394.6666666666667 82.7733333333333 394.6666666666667 49.7066666666667M85.3333333333333 77.6533333333334C82.3466666666667 89.1733333333334 89.1733333333333 101.3333333333334 100.9066666666667 104.3200000000001L149.3333333333333 117.3333333333334L113.7066666666667 152.3200000000001C105.1733333333333 160.8533333333334 105.1733333333333 174.72 113.7066666666667 183.4666666666667C122.24 192.0000000000001 136.5333333333333 192.0000000000001 144.8533333333333 183.4666666666667L180.2666666666667 148.2666666666667L192.8533333333333 196.2666666666667C195.84 208.2133333333334 208 215.0400000000001 219.52 211.84C231.4666666666667 208.8533333333334 238.2933333333333 196.6933333333334 234.6666666666667 184.96L222.2933333333333 136.96L270.2933333333333 149.3333333333334C282.0266666666667 152.96 294.1866666666666 146.1333333333334 297.1733333333333 134.1866666666667C300.3733333333334 122.6666666666668 293.5466666666666 110.5066666666668 281.6 107.5200000000001L233.6 94.9333333333334L268.8 59.5200000000001C277.3333333333333 51.2 277.3333333333333 36.9066666666668 268.8 28.3733333333334C260.2666666666667 19.8400000000001 246.1866666666667 19.8400000000001 237.8666666666667 28.3733333333334L202.6666666666667 64L189.6533333333333 15.5733333333334C186.6666666666667 3.6266666666667 174.5066666666667 -2.9866666666667 162.9866666666667 0C151.04 2.9866666666667 144.4266666666667 15.1466666666667 147.4133333333333 26.8800000000001L160 74.6666666666667L112.2133333333333 62.08C100.48 59.0933333333334 88.32 65.7066666666667 85.3333333333333 77.6533333333334M21.3333333333333 213.3333333333334C21.3333333333333 272.2133333333334 69.12 320 128 320C149.3333333333333 370.1333333333334 198.4 405.3333333333333 256 405.3333333333333C329.1733333333333 405.3333333333333 389.12 348.5866666666667 394.6666666666667 276.6933333333334L405.3333333333333 277.3333333333334C452.48 277.3333333333334 490.6666666666666 239.1466666666667 490.6666666666666 192S452.48 106.6666666666667 405.3333333333333 106.6666666666667C393.6 106.6666666666667 384 116.2666666666667 384 128S393.6 149.3333333333334 405.3333333333333 149.3333333333334C428.8 149.3333333333334 448 168.5333333333334 448 192S428.8 234.6666666666667 405.3333333333333 234.6666666666667H362.6666666666667V256C362.6666666666667 314.88 314.88 362.6666666666667 256 362.6666666666667C202.6666666666667 362.6666666666667 158.9333333333333 323.8400000000001 150.6133333333333 273.28C143.5733333333333 275.8400000000001 135.8933333333333 277.3333333333334 128 277.3333333333334C92.5866666666667 277.3333333333334 64 248.7466666666667 64 213.3333333333334C64 195.2 71.4666666666667 178.9866666666667 83.4133333333333 167.2533333333333C91.0933333333333 158.9333333333333 90.88 145.92 82.7733333333333 137.8133333333334C74.6666666666667 129.4933333333334 60.8 129.4933333333334 52.6933333333333 137.8133333333334C33.28 157.2266666666667 21.3333333333333 183.8933333333333 21.3333333333333 213.3333333333334z" />
+    <glyph glyph-name="weather-sunny"
+      unicode="&#xF599;"
+      horiz-adv-x="512" d=" M256 298.6666666666667C314.88 298.6666666666667 362.6666666666667 250.88 362.6666666666667 192S314.88 85.3333333333334 256 85.3333333333334S149.3333333333333 133.12 149.3333333333333 192S197.12 298.6666666666667 256 298.6666666666667M256 256C220.5866666666667 256 192 227.4133333333334 192 192S220.5866666666667 128 256 128S320 156.5866666666667 320 192S291.4133333333333 256 256 256M256 405.3333333333333L306.9866666666667 332.3733333333334C291.2 338.1333333333334 273.92 341.3333333333334 256 341.3333333333334C238.08 341.3333333333334 220.8 338.1333333333334 205.0133333333333 332.3733333333334L256 405.3333333333333M71.2533333333333 298.6666666666667L160 306.1333333333334C147.2 295.2533333333334 135.68 282.0266666666667 126.72 266.6666666666667C117.3333333333333 250.88 112 234.6666666666667 109.0133333333333 217.8133333333334L71.2533333333333 298.6666666666667M71.68 85.3333333333334L109.2266666666667 165.76C112.2133333333333 149.3333333333334 117.9733333333333 132.6933333333333 126.9333333333333 117.3333333333334C135.8933333333333 101.5466666666667 147.4133333333333 88.3200000000001 160 77.44L71.68 85.3333333333334M440.5333333333333 298.6666666666667L402.7733333333333 217.8133333333334C399.7866666666667 234.6666666666667 394.0266666666667 251.0933333333334 385.0666666666667 266.6666666666667C376.1066666666667 282.0266666666667 364.8 295.4666666666667 352 306.3466666666667L440.5333333333333 298.6666666666667M440.32 85.3333333333334L351.9999999999999 77.6533333333334C364.5866666666666 88.5333333333334 375.8933333333333 101.9733333333334 384.8533333333333 117.3333333333334C393.8133333333333 132.9066666666667 399.5733333333333 149.3333333333334 402.5599999999999 166.1866666666667L440.32 85.3333333333334M256 -21.3333333333333L204.5866666666667 52.0533333333334C220.3733333333333 46.2933333333334 237.6533333333334 42.6666666666667 256 42.6666666666667C273.4933333333334 42.6666666666667 290.7733333333333 46.2933333333334 306.56 52.0533333333334L256 -21.3333333333333z" />
+    <glyph glyph-name="weather-sunset"
+      unicode="&#xF59A;"
+      horiz-adv-x="512" d=" M64 192H149.3333333333333C149.3333333333333 250.88 197.12 298.6666666666667 256 298.6666666666667S362.6666666666667 250.88 362.6666666666667 192H448C459.7333333333333 192 469.3333333333333 182.4 469.3333333333333 170.6666666666667S459.7333333333333 149.3333333333334 448 149.3333333333334H64C52.2666666666667 149.3333333333334 42.6666666666667 158.9333333333333 42.6666666666667 170.6666666666667S52.2666666666667 192 64 192M106.6666666666667 106.6666666666667H405.3333333333333C417.0666666666667 106.6666666666667 426.6666666666667 97.0666666666667 426.6666666666667 85.3333333333334S417.0666666666667 64 405.3333333333333 64H106.6666666666667C94.9333333333333 64 85.3333333333333 73.6 85.3333333333333 85.3333333333334S94.9333333333333 106.6666666666667 106.6666666666667 106.6666666666667M362.6666666666667 21.3333333333334C374.4 21.3333333333334 384 11.7333333333333 384 0S374.4 -21.3333333333333 362.6666666666667 -21.3333333333333H149.3333333333333C137.6 -21.3333333333333 128 -11.7333333333333 128 0S137.6 21.3333333333334 149.3333333333333 21.3333333333334H362.6666666666667M320 192C320 227.4133333333334 291.4133333333333 256 256 256S192 227.4133333333334 192 192H320M256 405.3333333333333L306.9866666666667 332.3733333333334C291.2 338.1333333333334 273.92 341.3333333333334 256 341.3333333333334C238.08 341.3333333333334 220.8 338.1333333333334 205.0133333333333 332.3733333333334L256 405.3333333333333M71.2533333333333 298.6666666666667L160 306.1333333333334C147.2 295.2533333333334 135.68 282.0266666666667 126.72 266.6666666666667C117.3333333333333 250.88 112 234.6666666666667 109.0133333333333 217.8133333333334L71.2533333333333 298.6666666666667M440.5333333333333 298.6666666666667L402.7733333333333 217.8133333333334C399.7866666666667 234.6666666666667 394.0266666666667 251.0933333333334 385.0666666666667 266.6666666666667C376.1066666666667 282.0266666666667 364.8 295.4666666666667 352 306.3466666666667L440.5333333333333 298.6666666666667z" />
+    <glyph glyph-name="weather-sunset-down"
+      unicode="&#xF59B;"
+      horiz-adv-x="512" d=" M64 192H149.3333333333333C149.3333333333333 250.88 197.12 298.6666666666667 256 298.6666666666667S362.6666666666667 250.88 362.6666666666667 192H448C459.7333333333333 192 469.3333333333333 182.4 469.3333333333333 170.6666666666667S459.7333333333333 149.3333333333334 448 149.3333333333334H64C52.2666666666667 149.3333333333334 42.6666666666667 158.9333333333333 42.6666666666667 170.6666666666667S52.2666666666667 192 64 192M320 192C320 227.4133333333334 291.4133333333333 256 256 256S192 227.4133333333334 192 192H320M256 405.3333333333333L306.9866666666667 332.3733333333334C291.2 338.1333333333334 273.92 341.3333333333334 256 341.3333333333334C238.08 341.3333333333334 220.8 338.1333333333334 205.0133333333333 332.3733333333334L256 405.3333333333333M71.2533333333333 298.6666666666667L160 306.1333333333334C147.2 295.2533333333334 135.68 282.0266666666667 126.72 266.6666666666667C117.3333333333333 250.88 112 234.6666666666667 109.0133333333333 217.8133333333334L71.2533333333333 298.6666666666667M440.5333333333333 298.6666666666667L402.7733333333333 217.8133333333334C399.7866666666667 234.6666666666667 394.0266666666667 251.0933333333334 385.0666666666667 266.6666666666667C376.1066666666667 282.0266666666667 364.8 295.4666666666667 352 306.3466666666667L440.5333333333333 298.6666666666667M271.1466666666666 6.1866666666667L337.4933333333333 72.5333333333333C345.8133333333333 80.8533333333334 345.8133333333333 94.5066666666667 337.4933333333333 102.8266666666667C329.1733333333333 111.1466666666667 315.7333333333333 111.1466666666667 307.4133333333333 102.8266666666667L256 51.4133333333334L204.5866666666667 102.8266666666667C196.2666666666667 111.1466666666667 182.8266666666667 111.1466666666667 174.5066666666667 102.8266666666667C166.1866666666667 94.5066666666667 166.1866666666667 80.8533333333334 174.5066666666667 72.5333333333333L240.8533333333333 6.1866666666667C245.3333333333333 2.1333333333333 250.4533333333333 0 256 0C261.5466666666666 0 266.6666666666667 2.1333333333334 271.1466666666667 6.1866666666667z" />
+    <glyph glyph-name="weather-sunset-up"
+      unicode="&#xF59C;"
+      horiz-adv-x="512" d=" M64 192H149.3333333333333C149.3333333333333 250.88 197.12 298.6666666666667 256 298.6666666666667S362.6666666666667 250.88 362.6666666666667 192H448C459.7333333333333 192 469.3333333333333 182.4 469.3333333333333 170.6666666666667S459.7333333333333 149.3333333333334 448 149.3333333333334H64C52.2666666666667 149.3333333333334 42.6666666666667 158.9333333333333 42.6666666666667 170.6666666666667S52.2666666666667 192 64 192M320 192C320 227.4133333333334 291.4133333333333 256 256 256S192 227.4133333333334 192 192H320M256 405.3333333333333L306.9866666666667 332.3733333333334C291.2 338.1333333333334 273.92 341.3333333333334 256 341.3333333333334C238.08 341.3333333333334 220.8 338.1333333333334 205.0133333333333 332.3733333333334L256 405.3333333333333M71.2533333333333 298.6666666666667L160 306.1333333333334C147.2 295.2533333333334 135.68 282.0266666666667 126.72 266.6666666666667C117.3333333333333 250.88 112 234.6666666666667 109.0133333333333 217.8133333333334L71.2533333333333 298.6666666666667M440.5333333333333 298.6666666666667L402.7733333333333 217.8133333333334C399.7866666666667 234.6666666666667 394.0266666666667 251.0933333333334 385.0666666666667 266.6666666666667C376.1066666666667 282.0266666666667 364.8 295.4666666666667 352 306.3466666666667L440.5333333333333 298.6666666666667M271.1466666666666 100.2666666666667L337.4933333333333 33.92C345.8133333333333 25.6 345.8133333333333 12.16 337.4933333333333 3.84C329.1733333333333 -4.48 315.7333333333333 -4.48 307.4133333333333 3.84L256 55.2533333333333L204.5866666666667 3.84C196.2666666666667 -4.48 182.8266666666667 -4.48 174.5066666666667 3.84C166.1866666666667 12.16 166.1866666666667 25.6 174.5066666666667 33.92L240.8533333333333 100.2666666666667C245.3333333333333 104.5333333333333 250.4533333333333 106.6666666666667 256 106.6666666666667C261.5466666666666 106.6666666666667 266.6666666666667 104.5333333333333 271.1466666666667 100.2666666666667z" />
+    <glyph glyph-name="weather-windy"
+      unicode="&#xF59D;"
+      horiz-adv-x="512" d=" M85.3333333333333 234.6666666666667C73.6 234.6666666666667 64 244.2666666666667 64 256S73.6 277.3333333333334 85.3333333333333 277.3333333333334H256C279.4666666666667 277.3333333333334 298.6666666666667 296.5333333333334 298.6666666666667 320S279.4666666666667 362.6666666666667 256 362.6666666666667C244.2666666666667 362.6666666666667 233.6 357.9733333333334 225.92 350.0800000000001C217.6 341.3333333333334 203.9466666666667 341.3333333333334 195.6266666666667 350.0800000000001C187.3066666666667 358.4 187.3066666666667 372.0533333333334 195.6266666666667 380.3733333333334C211.2 395.7333333333334 232.5333333333334 405.3333333333333 256 405.3333333333333C303.1466666666667 405.3333333333333 341.3333333333333 367.1466666666667 341.3333333333333 320S303.1466666666667 234.6666666666667 256 234.6666666666667H85.3333333333333M405.3333333333333 192C417.0666666666667 192 426.6666666666667 201.6 426.6666666666667 213.3333333333334S417.0666666666667 234.6666666666667 405.3333333333333 234.6666666666667C399.36 234.6666666666667 394.0266666666667 232.32 390.1866666666666 228.48C381.8666666666666 220.16 368.4266666666666 220.16 360.1066666666667 228.48C352 236.8000000000001 352 250.24 360.1066666666667 258.5600000000001C371.6266666666667 270.0800000000001 387.6266666666667 277.3333333333334 405.3333333333333 277.3333333333334C440.7466666666667 277.3333333333334 469.3333333333333 248.7466666666667 469.3333333333333 213.3333333333334S440.7466666666667 149.3333333333334 405.3333333333333 149.3333333333334H106.6666666666667C94.9333333333333 149.3333333333334 85.3333333333333 158.9333333333333 85.3333333333333 170.6666666666667S94.9333333333333 192 106.6666666666667 192H405.3333333333333M384 64H85.3333333333333C73.6 64 64 73.6 64 85.3333333333334S73.6 106.6666666666667 85.3333333333333 106.6666666666667H384C419.4133333333333 106.6666666666667 448 78.08 448 42.6666666666667S419.4133333333333 -21.3333333333333 384 -21.3333333333333C366.2933333333334 -21.3333333333333 350.2933333333334 -14.08 338.7733333333333 -2.56C330.6666666666667 5.76 330.6666666666667 19.2 338.7733333333333 27.52C347.0933333333333 35.84 360.5333333333333 35.84 368.8533333333333 27.52C372.6933333333333 23.68 378.0266666666667 21.3333333333334 384 21.3333333333334C395.7333333333334 21.3333333333334 405.3333333333333 30.9333333333333 405.3333333333333 42.6666666666667S395.7333333333334 64 384 64z" />
+    <glyph glyph-name="weather-windy-variant"
+      unicode="&#xF59E;"
+      horiz-adv-x="512" d=" M128 320L142.72 318.7200000000001C156.16 368.64 201.8133333333333 405.3333333333333 256 405.3333333333333C320.8533333333333 405.3333333333333 373.3333333333333 352.8533333333334 373.3333333333333 288L371.6266666666667 267.7333333333334C381.4400000000001 273.92 392.9600000000001 277.3333333333334 405.3333333333333 277.3333333333334C440.7466666666667 277.3333333333334 469.3333333333333 248.7466666666667 469.3333333333333 213.3333333333334S440.7466666666667 149.3333333333334 405.3333333333333 149.3333333333334H128C80.8533333333333 149.3333333333334 42.6666666666667 187.52 42.6666666666667 234.6666666666667S80.8533333333333 320 128 320M128 277.3333333333334C104.5333333333333 277.3333333333334 85.3333333333333 258.1333333333334 85.3333333333333 234.6666666666667S104.5333333333333 192 128 192H405.3333333333333C417.0666666666667 192 426.6666666666667 201.6 426.6666666666667 213.3333333333334S417.0666666666667 234.6666666666667 405.3333333333333 234.6666666666667H330.6666666666667V288C330.6666666666667 329.1733333333334 297.1733333333333 362.6666666666667 256 362.6666666666667S181.3333333333333 329.1733333333334 181.3333333333333 288V277.3333333333334H128M384 64H85.3333333333333C73.6 64 64 73.6 64 85.3333333333334S73.6 106.6666666666667 85.3333333333333 106.6666666666667H384C419.4133333333333 106.6666666666667 448 78.08 448 42.6666666666667S419.4133333333333 -21.3333333333333 384 -21.3333333333333C366.2933333333334 -21.3333333333333 350.2933333333334 -14.08 338.7733333333333 -2.56C330.6666666666667 5.76 330.6666666666667 19.2 338.7733333333333 27.52C347.0933333333333 35.84 360.5333333333333 35.84 368.8533333333333 27.52C372.6933333333333 23.68 378.0266666666667 21.3333333333334 384 21.3333333333334C395.7333333333334 21.3333333333334 405.3333333333333 30.9333333333333 405.3333333333333 42.6666666666667S395.7333333333334 64 384 64z" />
+    <glyph glyph-name="web"
+      unicode="&#xF59F;"
+      horiz-adv-x="512" d=" M349.0133333333333 149.3333333333334C350.7199999999999 163.4133333333334 352 177.4933333333334 352 192C352 206.5066666666667 350.7200000000001 220.5866666666667 349.0133333333333 234.6666666666667H421.12C424.5333333333333 221.0133333333333 426.6666666666667 206.72 426.6666666666667 192S424.5333333333333 162.9866666666667 421.12 149.3333333333334M311.2533333333333 30.72C324.0533333333333 54.4 333.8666666666666 80 340.6933333333333 106.6666666666667H403.6266666666666C383.1466666666666 71.4666666666667 350.5066666666667 44.16 311.2533333333333 30.72M305.92 149.3333333333334H206.08C203.9466666666667 163.4133333333334 202.6666666666667 177.4933333333334 202.6666666666667 192C202.6666666666667 206.5066666666667 203.9466666666667 220.8 206.08 234.6666666666667H305.92C307.84 220.8 309.3333333333333 206.5066666666667 309.3333333333333 192C309.3333333333333 177.4933333333334 307.84 163.4133333333334 305.92 149.3333333333334M256 22.1866666666667C238.2933333333333 47.7866666666666 224 76.16 215.2533333333333 106.6666666666667H296.7466666666667C288 76.16 273.7066666666667 47.7866666666668 256 22.1866666666667M170.6666666666667 277.3333333333334H108.3733333333333C128.64 312.7466666666667 161.4933333333334 340.0533333333334 200.5333333333333 353.2800000000001C187.7333333333334 329.6 178.1333333333333 304 170.6666666666667 277.3333333333334M108.3733333333333 106.6666666666667H170.6666666666667C178.1333333333333 80 187.7333333333334 54.4 200.5333333333333 30.72C161.4933333333334 44.16 128.64 71.4666666666667 108.3733333333333 106.6666666666667M90.88 149.3333333333334C87.4666666666667 162.9866666666667 85.3333333333333 177.28 85.3333333333333 192S87.4666666666667 221.0133333333333 90.88 234.6666666666667H162.9866666666667C161.28 220.5866666666667 160 206.5066666666667 160 192C160 177.4933333333334 161.28 163.4133333333334 162.9866666666667 149.3333333333334M256 362.0266666666667C273.7066666666667 336.4266666666667 288 307.8400000000001 296.7466666666667 277.3333333333334H215.2533333333333C224 307.8400000000001 238.2933333333333 336.4266666666667 256 362.0266666666667M403.6266666666667 277.3333333333334H340.6933333333334C333.8666666666667 304 324.0533333333334 329.6 311.2533333333334 353.2800000000001C350.5066666666667 339.8400000000001 383.1466666666668 312.7466666666667 403.6266666666667 277.3333333333334M256 405.3333333333333C138.0266666666667 405.3333333333333 42.6666666666667 309.3333333333334 42.6666666666667 192C42.6666666666667 74.24 138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333z" />
+    <glyph glyph-name="webcam"
+      unicode="&#xF5A0;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C338.56 405.3333333333333 405.3333333333333 338.56 405.3333333333333 256S338.56 106.6666666666667 256 106.6666666666667S106.6666666666667 173.44 106.6666666666667 256S173.44 405.3333333333333 256 405.3333333333333M256 362.6666666666667C197.12 362.6666666666667 149.3333333333333 314.88 149.3333333333333 256S197.12 149.3333333333334 256 149.3333333333334S362.6666666666667 197.12 362.6666666666667 256S314.88 362.6666666666667 256 362.6666666666667M256 320C291.4133333333333 320 320 291.4133333333334 320 256S291.4133333333333 192 256 192S192 220.5866666666667 192 256S220.5866666666667 320 256 320M128 -21.3333333333333C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334C85.3333333333333 29.44 87.4666666666667 36.9066666666667 91.52 43.3066666666667L130.3466666666667 110.72C164.0533333333334 81.7066666666667 208 64 256 64C304 64 347.9466666666666 81.7066666666667 381.6533333333333 110.72L420.48 43.3066666666667C424.5333333333334 36.9066666666667 426.6666666666667 29.4400000000001 426.6666666666667 21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128z" />
+    <glyph glyph-name="webhook"
+      unicode="&#xF62F;"
+      horiz-adv-x="512" d=" M223.1466666666667 42.6666666666667C192 -1.4933333333333 131.2 -12.5866666666666 87.2533333333333 18.1333333333334C43.52 48.8533333333334 33.28 110.08 64 154.6666666666668C82.56 181.3333333333334 111.1466666666667 195.6266666666667 140.3733333333333 196.9066666666667L141.44 166.4000000000001C122.0266666666667 164.9066666666668 103.2533333333333 154.8800000000001 91.0933333333333 137.3866666666668C69.76 106.6666666666667 76.3733333333333 65.2800000000001 105.6 44.5866666666668C135.04 24.1066666666667 176.2133333333333 32.0000000000001 197.5466666666666 62.5066666666668C204.16 72.1066666666667 208 82.5600000000001 209.4933333333333 93.2266666666668V114.7733333333334L328.5333333333333 115.6266666666668L330.0266666666667 117.9733333333334C341.3333333333333 137.6000000000001 365.8666666666666 144.4266666666667 385.0666666666666 133.3333333333334C404.2666666666666 122.2400000000001 410.88 97.4933333333335 399.5733333333333 77.8666666666667C388.2666666666666 58.4533333333334 363.5199999999999 51.6266666666667 344.32 62.72C335.5733333333333 67.6266666666667 329.3866666666666 75.5200000000001 326.6133333333333 84.48L239.7866666666666 84.0533333333334C237.44 69.76 231.8933333333333 55.8933333333334 223.1466666666666 42.6666666666667M378.4533333333333 194.9866666666667C432.4266666666666 188.3733333333333 470.8266666666667 139.9466666666667 464.2133333333333 86.8266666666667C457.6 33.4933333333333 408.5333333333333 -4.2666666666667 354.56 2.3466666666667C322.7733333333333 6.1866666666667 296.5333333333333 24.3200000000001 281.3866666666666 49.4933333333333L307.8399999999999 64.8533333333334C318.2933333333333 48.4266666666667 336 36.6933333333333 357.3333333333333 33.92C394.6666666666666 29.44 427.7333333333333 54.8266666666667 432.2133333333333 90.4533333333333C436.6933333333333 126.08 410.2399999999999 158.72 373.3333333333333 163.2C361.8133333333334 164.48 350.7200000000001 162.9866666666667 340.6933333333334 159.36L322.56 149.9733333333334L267.52 251.7333333333333H262.8266666666667C240.2133333333333 252.5866666666667 222.72 271.1466666666667 223.36 293.3333333333333C224 315.52 243.2 332.8 265.6 331.9466666666667C288 330.6666666666667 305.7066666666667 312.5333333333333 305.0666666666667 290.3466666666667C304.64 280.96 301.0133333333333 272.4266666666666 295.2533333333334 265.8133333333334L335.7866666666667 190.9333333333333C349.0133333333333 195.2 363.52 196.6933333333333 378.4533333333334 194.9866666666667M176 253.0133333333333C154.6666666666667 303.1466666666667 177.28 360.5333333333333 226.56 381.44C276.0533333333334 402.3466666666667 333.2266666666667 378.6666666666667 354.56 328.5333333333333C367.1466666666667 299.3066666666666 364.5866666666667 267.3066666666666 350.2933333333334 241.7066666666667L323.8400000000001 257.0666666666667C332.8 274.3466666666667 334.2933333333334 295.4666666666667 325.76 315.3066666666667C311.2533333333334 349.44 272.64 365.8666666666667 239.5733333333333 352C206.2933333333333 337.92 191.36 298.6666666666667 205.8666666666667 264.5333333333333C211.84 250.4533333333333 221.8666666666667 239.5733333333333 234.0266666666667 232.32L242.3466666666667 227.84L176.8533333333334 121.3866666666667C177.4933333333334 120.3199999999999 178.3466666666667 119.04 178.9866666666667 117.3333333333333C189.44 97.92 182.1866666666667 73.3866666666667 162.56 62.9333333333333C143.1466666666667 52.48 118.6133333333334 60.16 107.9466666666667 80.2133333333333C97.4933333333333 100.0533333333333 104.7466666666667 124.5866666666667 124.3733333333333 135.04C132.6933333333333 139.52 141.8666666666667 140.5866666666667 150.6133333333334 138.6666666666666L199.8933333333334 219.0933333333333C189.8666666666667 228.2666666666666 181.3333333333334 239.7866666666667 176 253.0133333333333z" />
+    <glyph glyph-name="webpack"
+      unicode="&#xF72A;"
+      horiz-adv-x="512" d=" M448 96C448 87.8933333333334 443.52 80.8533333333334 436.6933333333333 77.2266666666667L268.16 -17.4933333333333C264.7466666666666 -20.0533333333333 260.48 -21.3333333333333 256 -21.3333333333333C251.5199999999999 -21.3333333333333 247.2533333333333 -20.0533333333333 243.84 -17.4933333333333L75.3066666666666 77.2266666666667C68.48 80.8533333333334 63.9999999999999 87.8933333333334 63.9999999999999 96V288C63.9999999999999 296.1066666666667 68.4799999999999 303.1466666666667 75.3066666666666 306.7733333333333L243.84 401.4933333333334C247.2533333333333 404.0533333333334 251.5199999999999 405.3333333333334 256 405.3333333333334C260.48 405.3333333333334 264.7466666666666 404.0533333333334 268.16 401.4933333333334L436.6933333333333 306.7733333333333C443.52 303.1466666666667 448 296.1066666666667 448 288V96M256 359.4666666666667L106.6666666666667 275.4133333333334V108.5866666666667L256 24.5333333333333L405.3333333333333 108.5866666666667V275.4133333333334L256 359.4666666666667M256 315.0933333333334L360.5333333333333 254.72L256 194.3466666666667L151.4666666666666 254.72L256 315.0933333333334M362.6666666666667 130.3466666666667L277.3333333333333 81.0666666666667V157.4400000000001L362.6666666666667 206.72V130.3466666666667M234.6666666666667 81.0666666666667L149.3333333333333 130.3466666666667V206.72L234.6666666666667 157.4400000000001V81.0666666666667z" />
+    <glyph glyph-name="wechat"
+      unicode="&#xF611;"
+      horiz-adv-x="512" d=" M202.6666666666667 362.6666666666667C114.3466666666667 362.6666666666667 42.6666666666667 305.28 42.6666666666667 234.6666666666667C42.6666666666667 194.3466666666667 65.7066666666667 158.72 101.9733333333333 135.2533333333333L85.3333333333333 85.3333333333334L138.6666666666667 117.3333333333334C157.6533333333333 110.72 178.56 106.6666666666667 200.7466666666667 106.6666666666667C195.2 120.1066666666667 192 134.4 192 149.3333333333334C192 219.9466666666667 258.7733333333333 277.3333333333334 341.3333333333333 277.3333333333334C345.3866666666667 277.3333333333334 349.44 277.3333333333334 353.28 276.6933333333334C331.52 326.6133333333334 272.64 362.6666666666667 202.6666666666667 362.6666666666667M138.6666666666667 309.3333333333334C150.4 309.3333333333334 160 299.7333333333334 160 288S150.4 266.6666666666667 138.6666666666667 266.6666666666667S117.3333333333333 276.2666666666667 117.3333333333333 288S126.9333333333333 309.3333333333334 138.6666666666667 309.3333333333334M245.3333333333333 309.3333333333334C257.0666666666667 309.3333333333334 266.6666666666667 299.7333333333334 266.6666666666667 288S257.0666666666667 266.6666666666667 245.3333333333333 266.6666666666667S224 276.2666666666667 224 288S233.6 309.3333333333334 245.3333333333333 309.3333333333334M341.3333333333333 256C270.72 256 213.3333333333333 208.2133333333334 213.3333333333333 149.3333333333334S270.72 42.6666666666667 341.3333333333333 42.6666666666667C355.6266666666667 42.6666666666667 369.28 44.3733333333333 382.08 48L426.6666666666667 21.3333333333334L413.44 61.2266666666667C446.9333333333333 80.64 469.3333333333333 112.8533333333334 469.3333333333333 149.3333333333334C469.3333333333333 208.2133333333334 411.9466666666666 256 341.3333333333333 256M298.6666666666667 202.6666666666667C310.4 202.6666666666667 320 193.0666666666667 320 181.3333333333334S310.4 160 298.6666666666667 160S277.3333333333333 169.6 277.3333333333333 181.3333333333334S286.9333333333333 202.6666666666667 298.6666666666667 202.6666666666667M384 202.6666666666667C395.7333333333334 202.6666666666667 405.3333333333333 193.0666666666667 405.3333333333333 181.3333333333334S395.7333333333334 160 384 160S362.6666666666667 169.6 362.6666666666667 181.3333333333334S372.2666666666667 202.6666666666667 384 202.6666666666667z" />
+    <glyph glyph-name="weight"
+      unicode="&#xF5A1;"
+      horiz-adv-x="512" d=" M256 384C303.1466666666667 384 341.3333333333333 345.8133333333334 341.3333333333333 298.6666666666667C341.3333333333333 283.0933333333334 337.28 268.5866666666667 329.8133333333334 256H384C404.2666666666667 256 421.3333333333333 241.7066666666667 425.6 222.72C468.48 51.84 469.3333333333333 47.36 469.3333333333333 42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667C42.6666666666667 47.36 43.52 51.84 86.4 222.72C90.6666666666667 241.7066666666667 107.7333333333333 256 128 256H182.1866666666667C174.72 268.5866666666667 170.6666666666667 283.0933333333334 170.6666666666667 298.6666666666667C170.6666666666667 345.8133333333334 208.8533333333333 384 256 384M256 341.3333333333334C232.5333333333334 341.3333333333334 213.3333333333333 322.1333333333334 213.3333333333333 298.6666666666667S232.5333333333334 256 256 256S298.6666666666667 275.2000000000001 298.6666666666667 298.6666666666667S279.4666666666667 341.3333333333334 256 341.3333333333334z" />
+    <glyph glyph-name="weight-kilogram"
+      unicode="&#xF5A2;"
+      horiz-adv-x="512" d=" M256 384C303.1466666666667 384 341.3333333333333 345.8133333333334 341.3333333333333 298.6666666666667C341.3333333333333 283.0933333333334 337.28 268.5866666666667 329.8133333333334 256H384C404.2666666666667 256 421.3333333333333 241.7066666666667 425.6 222.72C468.48 51.84 469.3333333333333 47.36 469.3333333333333 42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667C42.6666666666667 47.36 43.52 51.84 86.4 222.72C90.6666666666667 241.7066666666667 107.7333333333333 256 128 256H182.1866666666667C174.72 268.5866666666667 170.6666666666667 283.0933333333334 170.6666666666667 298.6666666666667C170.6666666666667 345.8133333333334 208.8533333333333 384 256 384M256 341.3333333333334C232.5333333333334 341.3333333333334 213.3333333333333 322.1333333333334 213.3333333333333 298.6666666666667S232.5333333333334 256 256 256S298.6666666666667 275.2000000000001 298.6666666666667 298.6666666666667S279.4666666666667 341.3333333333334 256 341.3333333333334M128 213.3333333333334V42.6666666666667H170.6666666666667V96L192 74.6666666666667V42.6666666666667H234.6666666666667V85.3333333333334L192 128L234.6666666666667 170.6666666666667V213.3333333333334H192V181.3333333333334L170.6666666666667 160V213.3333333333334H128M320 213.3333333333334C296.32 213.3333333333334 277.3333333333333 194.3466666666667 277.3333333333333 170.6666666666667V85.3333333333334C277.3333333333333 61.6533333333334 296.32 42.6666666666667 320 42.6666666666667H384V149.3333333333334H341.3333333333333V85.3333333333334H320V170.6666666666667H384V213.3333333333334H320z" />
+    <glyph glyph-name="weight-pound"
+      unicode="&#xF9B4;"
+      horiz-adv-x="512" d=" M256 384C303.1466666666667 384 341.3333333333333 345.8133333333334 341.3333333333333 298.6666666666667C341.3333333333333 283.0933333333334 337.28 268.5866666666667 329.8133333333334 256H384C404.2666666666667 256 421.3333333333333 241.7066666666667 425.6 222.72C468.48 51.84 469.3333333333333 47.36 469.3333333333333 42.6666666666667C469.3333333333333 19.2 450.1333333333334 0 426.6666666666667 0H85.3333333333333C61.8666666666667 0 42.6666666666667 19.2 42.6666666666667 42.6666666666667C42.6666666666667 47.36 43.52 51.84 86.4 222.72C90.6666666666667 241.7066666666667 107.7333333333333 256 128 256H182.1866666666667C174.72 268.5866666666667 170.6666666666667 283.0933333333334 170.6666666666667 298.6666666666667C170.6666666666667 345.8133333333334 208.8533333333333 384 256 384M256 341.3333333333334C232.5333333333334 341.3333333333334 213.3333333333333 322.1333333333334 213.3333333333333 298.6666666666667S232.5333333333334 256 256 256S298.6666666666667 275.2000000000001 298.6666666666667 298.6666666666667S279.4666666666667 341.3333333333334 256 341.3333333333334M128 213.3333333333334V42.6666666666667H234.6666666666667V85.3333333333334H170.6666666666667V213.3333333333334H128M277.3333333333333 213.3333333333334V42.6666666666667H341.3333333333333C365.0133333333333 42.6666666666667 384 61.6533333333334 384 85.3333333333334V96C384 108.16 378.6666666666667 119.8933333333334 369.4933333333334 128C378.6666666666667 136.1066666666667 384 147.84 384 160V170.6666666666667C384 194.3466666666667 365.0133333333333 213.3333333333334 341.3333333333333 213.3333333333334H277.3333333333333M320 170.6666666666667H341.3333333333333V149.3333333333334H320V170.6666666666667M320 106.6666666666667H341.3333333333333V85.3333333333334H320V106.6666666666667z" />
+    <glyph glyph-name="whatsapp"
+      unicode="&#xF5A3;"
+      horiz-adv-x="512" d=" M357.3333333333333 150.1866666666667C362.6666666666667 147.4133333333333 366.08 145.92 367.1466666666667 143.7866666666666C368.4266666666666 141.44 368 130.7733333333333 362.6666666666667 118.6133333333334C358.4 106.6666666666667 336.2133333333333 95.1466666666667 326.4 94.72C316.5866666666667 94.2933333333333 316.3733333333334 87.04 263.2533333333334 110.2933333333333C210.1333333333333 133.5466666666666 178.1333333333333 190.2933333333333 175.5733333333333 193.92C173.0133333333334 197.5466666666666 155.0933333333333 223.36 155.9466666666667 249.6C157.0133333333333 275.6266666666667 170.6666666666667 288 176.2133333333333 293.12C181.3333333333333 298.6666666666667 187.0933333333333 299.3066666666666 190.72 298.6666666666667H200.7466666666667C203.9466666666667 298.6666666666667 208.4266666666667 299.9466666666666 212.48 289.0666666666666L227.2 249.1733333333333C228.48 246.3999999999999 229.3333333333333 243.2 227.4133333333334 239.7866666666666L221.6533333333333 231.04L213.3333333333333 222.0799999999999C210.7733333333334 219.52 207.7866666666667 216.7466666666666 210.7733333333334 211.4133333333333C213.3333333333333 205.8666666666666 224 188.16 238.9333333333334 173.44C258.3466666666667 154.6666666666666 275.4133333333333 148.48 280.5333333333333 145.7066666666666C285.6533333333333 142.7199999999999 288.8533333333334 143.1466666666667 292.0533333333334 146.56L309.3333333333334 166.6133333333332C313.3866666666667 171.9466666666666 316.8 170.6666666666666 321.7066666666667 168.9599999999999L357.3333333333333 150.1866666666666M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333C213.9733333333333 -21.3333333333333 174.9333333333333 -9.1733333333333 141.8666666666667 11.7333333333333L42.6666666666667 -21.3333333333333L75.7333333333333 77.8666666666667C54.8266666666667 110.9333333333333 42.6666666666667 149.9733333333334 42.6666666666667 192C42.6666666666667 309.76 138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192C85.3333333333333 155.3066666666667 96.8533333333333 121.3866666666667 116.48 93.6533333333334L96 32L157.6533333333333 52.48C185.3866666666667 32.8533333333334 219.3066666666667 21.3333333333334 256 21.3333333333334C350.2933333333334 21.3333333333334 426.6666666666667 97.7066666666667 426.6666666666667 192S350.2933333333334 362.6666666666667 256 362.6666666666667z" />
+    <glyph glyph-name="wheelchair-accessibility"
+      unicode="&#xF5A4;"
+      horiz-adv-x="512" d=" M392.5333333333333 209.0666666666667L305.0666666666666 204.8000000000001L354.1333333333333 260.2666666666667C358.3999999999999 266.6666666666668 360.5333333333333 277.3333333333334 358.3999999999999 288C356.2666666666666 294.4000000000001 354.1333333333333 300.8 347.7333333333333 305.0666666666667L232.5333333333333 373.3333333333334C223.9999999999999 379.7333333333334 211.1999999999999 377.6 202.6666666666666 371.2000000000001L145.0666666666667 317.8666666666667C134.4 307.2000000000001 132.2666666666667 292.2666666666667 142.9333333333333 281.6C151.4666666666667 270.9333333333334 168.5333333333333 270.9333333333334 179.2 279.4666666666667L221.8666666666667 317.8666666666667L262.4 294.4000000000001L172.8 202.6666666666667C170.6666666666667 200.5333333333334 170.6666666666667 198.4 168.5333333333334 198.4C157.8666666666667 194.1333333333334 147.2 189.8666666666667 138.6666666666667 183.4666666666667L170.6666666666667 151.4666666666667C181.3333333333333 155.7333333333334 192 160 202.6666666666667 160C243.2 160 277.3333333333333 125.8666666666667 277.3333333333333 85.3333333333334C277.3333333333333 72.5333333333333 275.2 61.8666666666667 268.8 53.3333333333334L300.8 21.3333333333334C313.6 40.5333333333333 320 61.8666666666667 320 85.3333333333334C320 110.9333333333333 311.4666666666667 136.5333333333334 296.5333333333333 155.7333333333334L366.9333333333333 162.1333333333334L362.6666666666667 59.7333333333334C360.5333333333333 44.8000000000001 371.2 34.1333333333334 386.1333333333334 32H388.2666666666667C401.0666666666667 32 411.7333333333334 42.6666666666667 413.8666666666667 55.4666666666667L418.1333333333334 181.3333333333334C418.1333333333334 187.7333333333334 416 196.2666666666667 411.7333333333334 200.5333333333334C405.3333333333333 206.9333333333334 398.9333333333333 209.0666666666667 392.5333333333334 209.0666666666667M384 330.6666666666667C407.4666666666667 330.6666666666667 426.6666666666667 349.8666666666667 426.6666666666667 373.3333333333334S407.4666666666667 416 384 416S341.3333333333333 396.8 341.3333333333333 373.3333333333334S360.5333333333333 330.6666666666667 384 330.6666666666667M266.6666666666667 -12.8C247.4666666666667 -25.6 226.1333333333334 -32 202.6666666666667 -32C138.6666666666667 -32 85.3333333333333 21.3333333333334 85.3333333333333 85.3333333333334C85.3333333333333 108.8 91.7333333333333 130.1333333333333 104.5333333333333 149.3333333333334L136.5333333333333 117.3333333333334C132.2666666666667 106.6666666666667 128 96 128 85.3333333333334C128 44.8000000000001 162.1333333333333 10.6666666666667 202.6666666666667 10.6666666666667C215.4666666666667 10.6666666666667 226.1333333333334 12.8000000000001 234.6666666666667 19.2L266.6666666666667 -12.8z" />
+    <glyph glyph-name="whistle"
+      unicode="&#xF9B5;"
+      horiz-adv-x="512" d=" M181.3333333333333 256C104.7466666666667 256 42.6666666666667 193.92 42.6666666666667 117.3333333333334S104.7466666666667 -21.3333333333333 181.3333333333333 -21.3333333333333S320 40.7466666666667 320 117.3333333333334V151.2533333333333L469.3333333333333 192V256H234.6666666666667V213.3333333333334H192V256H181.3333333333333M234.6666666666667 405.3333333333333V298.6666666666667H192V405.3333333333333H234.6666666666667M135.4666666666667 292.6933333333334C121.1733333333333 289.28 107.52 284.16 94.5066666666667 277.3333333333334L45.6533333333333 343.8933333333333L80.2133333333333 369.0666666666667L135.4666666666667 292.6933333333334M381.0133333333333 343.8933333333333L348.16 298.6666666666667H295.4666666666667L346.4533333333333 369.0666666666667L381.0133333333333 343.8933333333333z" />
+    <glyph glyph-name="white-balance-auto"
+      unicode="&#xF5A5;"
+      horiz-adv-x="512" d=" M219.7333333333334 106.6666666666667L204.8 149.3333333333334H136.5333333333333L121.6 106.6666666666667H81.0666666666667L149.3333333333333 298.6666666666667H192L260.2666666666667 106.6666666666667M469.3333333333333 298.6666666666667L443.7333333333334 164.48L411.7333333333334 298.6666666666667H377.6L345.8133333333334 164.48L320 298.6666666666667H303.7866666666667C272.4266666666666 337.7066666666667 224 362.6666666666667 170.6666666666667 362.6666666666667C76.3733333333333 362.6666666666667 0 286.2933333333334 0 192S76.3733333333333 21.3333333333334 170.6666666666667 21.3333333333334C237.44 21.3333333333334 295.2533333333334 59.9466666666667 323.2 115.84L325.3333333333333 106.6666666666667H362.6666666666667L394.6666666666667 236.8L426.6666666666667 106.6666666666667H464L507.7333333333333 298.6666666666667M146.1333333333333 178.1333333333333H195.2L170.6666666666667 256L146.1333333333333 178.1333333333333z" />
+    <glyph glyph-name="white-balance-incandescent"
+      unicode="&#xF5A6;"
+      horiz-adv-x="512" d=" M367.7866666666667 60.8000000000001L406.1866666666666 22.4L436.2666666666667 52.6933333333333L398.08 90.88M426.6666666666667 181.3333333333334H490.6666666666666V224H426.6666666666667M320 313.3866666666667V416H192V313.3866666666667C153.8133333333333 291.2000000000001 128 250.0266666666667 128 202.6666666666667C128 132.0533333333334 185.3866666666667 74.6666666666667 256 74.6666666666667S384 132.0533333333334 384 202.6666666666667C384 250.0266666666667 358.1866666666666 291.2000000000001 320 313.3866666666667M85.3333333333333 224H21.3333333333333V181.3333333333334H85.3333333333333M234.6666666666667 -30.9333333333333H277.3333333333333V32H234.6666666666667M75.7333333333333 52.6933333333333L105.8133333333333 22.4L144.2133333333333 60.8L113.92 90.88L75.7333333333333 52.6933333333333z" />
+    <glyph glyph-name="white-balance-iridescent"
+      unicode="&#xF5A7;"
+      horiz-adv-x="512" d=" M105.8133333333333 22.4L144.2133333333333 60.8000000000001L113.92 90.8800000000001L75.7333333333333 52.6933333333334M75.7333333333333 352.8533333333334L113.92 314.4533333333334L144.2133333333333 344.7466666666668L105.8133333333333 382.9333333333334M436.2666666666667 52.6933333333334L398.08 90.8800000000001L367.7866666666667 60.8000000000001L406.1866666666667 22.4M277.3333333333333 -30.9333333333333V32H234.6666666666667V-30.9333333333333H277.3333333333333M406.1866666666666 382.9333333333334L367.7866666666667 344.7466666666667L398.08 314.4533333333333L436.2666666666666 352.8533333333334M234.6666666666667 373.3333333333334H277.3333333333333V436.2666666666667H234.6666666666667M106.6666666666667 138.6666666666667H405.3333333333333V266.6666666666667H106.6666666666667V138.6666666666667z" />
+    <glyph glyph-name="white-balance-sunny"
+      unicode="&#xF5A8;"
+      horiz-adv-x="512" d=" M75.7333333333333 52.48L105.8133333333333 22.4L144.2133333333333 60.5866666666667L113.92 90.88M234.6666666666667 -30.9333333333333H277.3333333333333V32H234.6666666666667M256 330.6666666666667C185.3866666666667 330.6666666666667 128 273.2800000000001 128 202.6666666666667S185.3866666666667 74.6666666666667 256 74.6666666666667S384 132.0533333333334 384 202.6666666666667C384 273.4933333333334 326.6133333333334 330.6666666666667 256 330.6666666666667M426.6666666666667 181.3333333333334H490.6666666666666V224H426.6666666666667M367.7866666666667 60.5866666666667L406.1866666666667 22.4L436.2666666666667 52.48L398.0800000000001 90.8800000000001M436.2666666666667 352.8533333333334L406.1866666666667 382.9333333333334L367.7866666666667 344.7466666666667L398.0800000000001 314.4533333333334M277.3333333333333 436.2666666666667H234.6666666666667V373.3333333333334H277.3333333333333M85.3333333333333 224H21.3333333333333V181.3333333333334H85.3333333333333M144.2133333333333 344.7466666666667L105.8133333333333 382.9333333333334L75.7333333333333 352.8533333333334L113.92 314.4533333333334L144.2133333333333 344.7466666666667z" />
+    <glyph glyph-name="widgets"
+      unicode="&#xF72B;"
+      horiz-adv-x="512" d=" M64 384H234.6666666666667V291.4133333333334L355.4133333333333 411.9466666666667L475.9466666666667 291.4133333333334L355.4133333333333 170.6666666666667H448V0H277.3333333333333V170.6666666666667H355.4133333333333L234.6666666666667 291.4133333333334V213.3333333333334H64V384M64 170.6666666666667H234.6666666666667V0H64V170.6666666666667z" />
+    <glyph glyph-name="wifi"
+      unicode="&#xF5A9;"
+      horiz-adv-x="512" d=" M256 0L332.8 102.4C311.4666666666667 118.4 284.8 128 256 128S200.5333333333333 118.4 179.2 102.4L256 0M256 384C169.6 384 89.8133333333333 355.4133333333334 25.6 307.2000000000001L64 256C117.3333333333333 296.1066666666667 183.8933333333334 320 256 320S394.6666666666667 296.1066666666667 448 256L486.4 307.2000000000001C422.1866666666666 355.4133333333334 342.4 384 256 384M256 256C198.4 256 145.28 237.0133333333333 102.4 204.8L140.8 153.6C172.8 177.7066666666667 212.6933333333333 192 256 192C299.3066666666666 192 339.2 177.7066666666667 371.2 153.6L409.6 204.8C366.7200000000001 237.0133333333333 313.6 256 256 256z" />
+    <glyph glyph-name="wifi-off"
+      unicode="&#xF5AA;"
+      horiz-adv-x="512" d=" M48.64 384L21.3333333333333 356.9066666666667L52.6933333333333 325.5466666666667C43.52 320 34.3466666666667 313.8133333333334 25.6 307.2000000000001L64 256C75.3066666666667 264.5333333333334 87.04 272 99.4133333333333 278.8266666666667L146.9866666666667 231.2533333333334C131.2 224 116.0533333333334 215.2533333333333 102.4 204.8L140.8 153.6C157.44 165.9733333333334 176.2133333333333 175.5733333333333 196.2666666666667 181.9733333333334L250.6666666666667 128C224 126.5066666666667 199.2533333333333 117.3333333333334 179.2 102.4L256 0L308.48 69.76L378.4533333333333 0L405.3333333333333 27.3066666666667M256 384C210.1333333333333 384 166.4 375.8933333333333 125.8666666666667 361.1733333333334L176.8533333333334 309.9733333333334C202.6666666666667 316.5866666666667 228.6933333333334 320 256 320C328.1066666666667 320 394.6666666666667 296.32 448 256L486.4 307.2000000000001C422.1866666666666 355.4133333333334 342.6133333333333 384 256 384M256 256C247.8933333333333 256 240 256 232.1066666666667 254.9333333333334L300.16 186.6666666666667C326.1866666666666 180.6933333333334 350.5066666666667 169.1733333333334 371.2 153.6L409.6 204.8C366.9333333333333 237.0133333333333 313.6 256 256 256z" />
+    <glyph glyph-name="wifi-strength-1"
+      unicode="&#xF91E;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.92 8.1066666666667 298.6666666666667C94.08 190.72 168.32 98.7733333333333 256 -10.6666666666666C343.04 97.7066666666667 431.7866666666667 208.2133333333334 504.5333333333333 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384M256 341.3333333333334C321.4933333333334 341.3333333333334 385.92 322.9866666666667 441.8133333333334 289.0666666666667L333.0133333333333 153.3866666666667C309.3333333333333 164.6933333333334 282.6666666666667 170.6666666666667 256 170.6666666666667S202.6666666666667 164.6933333333334 178.9866666666667 153.6L69.76 289.28C126.08 323.2000000000001 190.5066666666667 341.3333333333334 256 341.3333333333334z" />
+    <glyph glyph-name="wifi-strength-1-alert"
+      unicode="&#xF91F;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.92 8.1066666666667 298.6666666666667C94.08 190.72 168.32 98.7733333333333 256 -10.6666666666666C308.2666666666667 54.4 355.84 113.4933333333334 405.3333333333333 175.36V243.4133333333334L333.0133333333333 153.3866666666667C309.3333333333333 164.6933333333334 282.6666666666667 170.6666666666667 256 170.6666666666667S202.6666666666667 164.6933333333334 178.9866666666667 153.6L69.76 289.28C126.08 323.2000000000001 190.5066666666667 341.3333333333334 256 341.3333333333334C321.4933333333334 341.3333333333334 385.92 322.9866666666667 441.8133333333334 289.0666666666667L432.4266666666666 277.3333333333334H487.2533333333333C492.5866666666666 283.7333333333334 499.4133333333333 292.48 504.5333333333333 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384M448 234.6666666666667V64H490.6666666666666V234.6666666666667M448 21.3333333333334V-21.3333333333333H490.6666666666666V21.3333333333334" />
+    <glyph glyph-name="wifi-strength-1-lock"
+      unicode="&#xF920;"
+      horiz-adv-x="512" d=" M256 384C346.0266666666667 384 433.4933333333334 353.92 504.5333333333333 298.6666666666667L459.52 242.7733333333333L437.3333333333333 245.3333333333333C425.1733333333333 245.3333333333333 413.2266666666667 243.2 401.7066666666666 239.1466666666667L441.8133333333333 289.0666666666667C385.7066666666666 322.9866666666667 321.4933333333334 341.3333333333334 256 341.3333333333334C190.2933333333333 341.3333333333334 126.08 323.2000000000001 69.76 289.2800000000001L178.9866666666667 153.6C202.6666666666667 164.6933333333333 229.3333333333333 170.6666666666667 256 170.6666666666667C282.24 170.6666666666667 308.0533333333333 164.6933333333334 331.7333333333334 153.8133333333334L330.6666666666667 138.6666666666667V82.3466666666667L256 -10.6666666666666L8.1066666666667 298.6666666666667C78.9333333333333 353.7066666666667 166.1866666666667 384 256 384M490.6666666666666 106.6666666666667C501.3333333333333 106.6666666666667 512 96 512 85.3333333333334V0C512 -10.6666666666666 501.3333333333333 -21.3333333333333 490.6666666666666 -21.3333333333333H384C373.3333333333333 -21.3333333333333 362.6666666666667 -10.6666666666666 362.6666666666667 0V85.3333333333334C362.6666666666667 96 373.3333333333333 106.6666666666667 384 106.6666666666667V138.6666666666667C384 168.5333333333334 407.4666666666667 192 437.3333333333333 192S490.6666666666666 168.5333333333334 490.6666666666666 138.6666666666667V106.6666666666667M469.3333333333333 106.6666666666667V138.6666666666667C469.3333333333333 155.7333333333334 454.4 170.6666666666667 437.3333333333333 170.6666666666667S405.3333333333333 155.7333333333334 405.3333333333333 138.6666666666667V106.6666666666667H469.3333333333333z" />
+    <glyph glyph-name="wifi-strength-2"
+      unicode="&#xF921;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.92 8.1066666666667 298.6666666666667C94.08 190.72 168.32 98.7733333333333 256 -10.6666666666666C343.04 97.7066666666667 431.7866666666667 208.2133333333334 504.5333333333333 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384M256 341.3333333333334C321.4933333333334 341.3333333333334 385.92 322.9866666666667 441.8133333333334 289.0666666666667L373.3333333333333 204.16C346.88 218.88 306.56 234.6666666666667 256 234.6666666666667C205.2266666666667 234.6666666666667 165.12 218.6666666666667 138.6666666666667 204.16L69.76 289.28C126.08 323.2000000000001 190.5066666666667 341.3333333333334 256 341.3333333333334z" />
+    <glyph glyph-name="wifi-strength-2-alert"
+      unicode="&#xF922;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.92 8.1066666666667 298.6666666666667C94.08 190.72 168.32 98.7733333333333 256 -10.6666666666666C308.2666666666667 54.4 355.84 113.4933333333334 405.3333333333333 175.36V243.4133333333334L373.3333333333333 204.16C346.88 218.88 306.56 234.6666666666667 256 234.6666666666667C205.2266666666667 234.6666666666667 165.12 218.6666666666667 138.6666666666667 204.16L69.76 289.28C126.08 323.2000000000001 190.5066666666667 341.3333333333334 256 341.3333333333334C321.4933333333334 341.3333333333334 385.92 322.9866666666667 441.8133333333334 289.0666666666667L432.4266666666666 277.3333333333334H487.2533333333333C492.5866666666666 283.7333333333334 499.4133333333333 292.48 504.5333333333333 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384M448 234.6666666666667V64H490.6666666666666V234.6666666666667M448 21.3333333333334V-21.3333333333333H490.6666666666666V21.3333333333334" />
+    <glyph glyph-name="wifi-strength-2-lock"
+      unicode="&#xF923;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.7066666666667 8.1066666666667 298.6666666666667C94.2933333333333 190.72 168.32 98.7733333333333 256 -10.6666666666666C282.24 21.9733333333334 304.8533333333333 49.92 330.6666666666667 82.3466666666667V138.6666666666667C330.6666666666667 165.5466666666667 341.3333333333333 192 359.2533333333334 211.2C333.2266666666667 223.36 298.6666666666667 234.6666666666667 256 234.6666666666667C205.2266666666667 234.6666666666667 165.12 218.6666666666667 138.6666666666667 204.16L69.76 289.28C126.08 323.2000000000001 190.2933333333333 341.3333333333334 256 341.3333333333334C321.4933333333334 341.3333333333334 385.7066666666666 322.9866666666667 441.8133333333334 289.0666666666667L401.7066666666667 239.1466666666667C413.2266666666667 243.2 425.1733333333334 245.3333333333334 437.3333333333333 245.3333333333334C444.8 245.3333333333334 452.2666666666667 244.48 459.52 242.7733333333334C473.6 260.2666666666667 491.3066666666666 282.4533333333334 504.5333333333333 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384M437.3333333333333 192C407.4666666666667 192 384 168.5333333333334 384 138.6666666666667V106.6666666666667C373.3333333333333 106.6666666666667 362.6666666666667 96 362.6666666666667 85.3333333333334V0C362.6666666666667 -10.6666666666666 373.3333333333333 -21.3333333333333 384 -21.3333333333333H490.6666666666666C501.3333333333333 -21.3333333333333 512 -10.6666666666666 512 0V85.3333333333334C512 96 501.3333333333333 106.6666666666667 490.6666666666666 106.6666666666667V138.6666666666667C490.6666666666666 168.5333333333334 467.1999999999999 192 437.3333333333333 192M437.3333333333333 170.6666666666667C454.4 170.6666666666667 469.3333333333333 155.7333333333334 469.3333333333333 138.6666666666667V106.6666666666667H405.3333333333333V138.6666666666667C405.3333333333333 155.7333333333334 420.2666666666667 170.6666666666667 437.3333333333333 170.6666666666667z" />
+    <glyph glyph-name="wifi-strength-3"
+      unicode="&#xF924;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.92 8.1066666666667 298.6666666666667C94.08 190.72 168.32 98.7733333333333 256 -10.6666666666666C343.04 97.7066666666667 431.7866666666667 208.2133333333334 504.5333333333333 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384M256 341.3333333333334C321.4933333333334 341.3333333333334 385.92 322.9866666666667 441.8133333333334 289.0666666666667L400.4266666666666 237.2266666666667C368.2133333333334 256 317.44 277.3333333333334 256 277.3333333333334C192 277.3333333333334 142.5066666666667 256 111.1466666666667 238.08L69.76 289.2800000000001C126.08 323.2000000000001 190.5066666666667 341.3333333333334 256 341.3333333333334z" />
+    <glyph glyph-name="wifi-strength-3-alert"
+      unicode="&#xF925;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.92 8.1066666666667 298.6666666666667C94.08 190.72 168.32 98.7733333333333 256 -10.6666666666666C308.2666666666667 54.4 355.84 113.4933333333334 405.3333333333333 175.36V243.4133333333334L400.4266666666666 237.2266666666667C368.2133333333334 256 317.44 277.3333333333334 256 277.3333333333334C192 277.3333333333334 142.5066666666667 256 111.1466666666667 238.08L69.76 289.2800000000001C126.08 323.2000000000001 190.5066666666667 341.3333333333334 256 341.3333333333334C321.4933333333334 341.3333333333334 385.92 322.9866666666667 441.8133333333334 289.0666666666667L432.4266666666666 277.3333333333334H487.2533333333333C492.5866666666666 283.7333333333334 499.4133333333333 292.48 504.5333333333333 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384M448 234.6666666666667V64H490.6666666666666V234.6666666666667M448 21.3333333333334V-21.3333333333333H490.6666666666666V21.3333333333334" />
+    <glyph glyph-name="wifi-strength-3-lock"
+      unicode="&#xF926;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.7066666666667 8.1066666666667 298.6666666666667C94.2933333333333 190.72 168.32 98.7733333333333 256 -10.6666666666666C282.24 21.9733333333334 304.8533333333333 49.92 330.6666666666667 82.3466666666667V138.6666666666667C330.6666666666667 182.6133333333334 357.76 222.08 398.7200000000001 238.08C366.7200000000001 256.8533333333334 316.5866666666667 277.3333333333334 256 277.3333333333334C192 277.3333333333334 142.5066666666667 256 110.9333333333333 238.08L69.76 289.2800000000001C126.08 323.2000000000001 190.2933333333333 341.3333333333334 256 341.3333333333334C321.4933333333334 341.3333333333334 385.7066666666666 322.9866666666667 441.8133333333334 289.0666666666667L401.92 239.1466666666667C413.2266666666667 243.2 425.1733333333333 245.3333333333334 437.3333333333333 245.3333333333334C444.8 245.3333333333334 452.2666666666667 244.48 459.52 242.7733333333334C473.6 260.2666666666667 491.3066666666666 282.4533333333334 504.5333333333333 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384M437.3333333333333 192C407.4666666666667 192 384 168.5333333333334 384 138.6666666666667V106.6666666666667C373.3333333333333 106.6666666666667 362.6666666666667 96 362.6666666666667 85.3333333333334V0C362.6666666666667 -10.6666666666666 373.3333333333333 -21.3333333333333 384 -21.3333333333333H490.6666666666666C501.3333333333333 -21.3333333333333 512 -10.6666666666666 512 0V85.3333333333334C512 96 501.3333333333333 106.6666666666667 490.6666666666666 106.6666666666667V138.6666666666667C490.6666666666666 168.5333333333334 467.1999999999999 192 437.3333333333333 192M437.3333333333333 170.6666666666667C454.4 170.6666666666667 469.3333333333333 155.7333333333334 469.3333333333333 138.6666666666667V106.6666666666667H405.3333333333333V138.6666666666667C405.3333333333333 155.7333333333334 420.2666666666667 170.6666666666667 437.3333333333333 170.6666666666667z" />
+    <glyph glyph-name="wifi-strength-4"
+      unicode="&#xF927;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.92 8.1066666666667 298.6666666666667C94.08 190.72 168.32 98.7733333333333 256 -10.6666666666666C343.04 97.7066666666667 431.7866666666667 208.2133333333334 504.5333333333333 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384z" />
+    <glyph glyph-name="wifi-strength-4-alert"
+      unicode="&#xF928;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.92 8.1066666666667 298.6666666666667C94.08 190.72 168.32 98.7733333333333 256 -10.6666666666666C308.2666666666667 54.4 355.84 113.4933333333334 405.3333333333333 175.36V277.3333333333334H487.2533333333333C492.5866666666666 283.7333333333334 499.4133333333333 292.48 504.5333333333333 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384M448 234.6666666666667V64H490.6666666666666V234.6666666666667M448 21.3333333333334V-21.3333333333333H490.6666666666666V21.3333333333334" />
+    <glyph glyph-name="wifi-strength-4-lock"
+      unicode="&#xF929;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.7066666666667 8.1066666666667 298.6666666666667C94.2933333333333 190.72 168.32 98.7733333333333 256 -10.6666666666666C282.24 21.9733333333334 304.8533333333333 49.92 330.6666666666667 82.3466666666667V138.6666666666667C330.6666666666667 197.5466666666667 378.4533333333334 245.3333333333334 437.3333333333333 245.3333333333334C444.8 245.3333333333334 452.2666666666667 244.48 459.52 242.7733333333334C473.6 260.2666666666667 491.3066666666666 282.4533333333334 504.5333333333333 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384M437.3333333333333 192C407.4666666666667 192 384 168.5333333333334 384 138.6666666666667V106.6666666666667C373.3333333333333 106.6666666666667 362.6666666666667 96 362.6666666666667 85.3333333333334V0C362.6666666666667 -10.6666666666666 373.3333333333333 -21.3333333333333 384 -21.3333333333333H490.6666666666666C501.3333333333333 -21.3333333333333 512 -10.6666666666666 512 0V85.3333333333334C512 96 501.3333333333333 106.6666666666667 490.6666666666666 106.6666666666667V138.6666666666667C490.6666666666666 168.5333333333334 467.1999999999999 192 437.3333333333333 192M437.3333333333333 170.6666666666667C454.4 170.6666666666667 469.3333333333333 155.7333333333334 469.3333333333333 138.6666666666667V106.6666666666667H405.3333333333333V138.6666666666667C405.3333333333333 155.7333333333334 420.2666666666667 170.6666666666667 437.3333333333333 170.6666666666667z" />
+    <glyph glyph-name="wifi-strength-alert-outline"
+      unicode="&#xF92A;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.92 8.1066666666667 298.6666666666667H7.68C90.4533333333333 195.6266666666667 173.44 92.5866666666667 256 -10.6666666666666C305.92 51.4133333333334 355.6266666666667 113.4933333333334 405.3333333333333 175.36V243.4133333333334L256 57.6L69.76 289.28C125.8666666666667 323.2000000000001 190.2933333333333 341.3333333333334 256 341.3333333333334C321.4933333333334 341.3333333333334 385.92 322.9866666666667 441.8133333333334 289.0666666666667L432.4266666666666 277.3333333333334H487.2533333333333C493.0133333333333 284.3733333333334 498.56 291.6266666666667 504.32 298.6666666666667H504.5333333333334C433.4933333333334 353.92 346.0266666666667 384 256 384M448 234.6666666666667V64H490.6666666666666V234.6666666666667M448 21.3333333333334V-21.3333333333333H490.6666666666666V21.3333333333334" />
+    <glyph glyph-name="wifi-strength-lock-outline"
+      unicode="&#xF92B;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.7066666666667 8.1066666666667 298.6666666666667C98.3466666666667 185.6 174.08 91.7333333333334 256 -10.6666666666666C281.8133333333334 21.3333333333334 304.8533333333333 50.1333333333334 330.6666666666667 82.3466666666667V138.6666666666667C330.6666666666667 142.9333333333333 330.6666666666667 147.4133333333334 331.52 151.68L256 57.6L69.76 289.28C126.08 323.2000000000001 190.2933333333333 341.3333333333334 256 341.3333333333334C321.4933333333334 341.3333333333334 385.7066666666666 322.9866666666667 441.8133333333334 289.0666666666667L401.7066666666667 239.1466666666667C413.2266666666667 243.2 425.1733333333334 245.3333333333334 437.3333333333333 245.3333333333334C444.8 245.3333333333334 452.2666666666667 244.48 459.7333333333333 242.7733333333334C473.8133333333333 260.48 490.6666666666666 282.24 504.5333333333334 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384M437.3333333333333 192C407.4666666666667 192 384 168.5333333333334 384 138.6666666666667V106.6666666666667C373.3333333333333 106.6666666666667 362.6666666666667 96 362.6666666666667 85.3333333333334V0C362.6666666666667 -10.6666666666666 373.3333333333333 -21.3333333333333 384 -21.3333333333333H490.6666666666666C501.3333333333333 -21.3333333333333 512 -10.6666666666666 512 0V85.3333333333334C512 96 501.3333333333333 106.6666666666667 490.6666666666666 106.6666666666667V138.6666666666667C490.6666666666666 168.5333333333334 467.1999999999999 192 437.3333333333333 192M437.3333333333333 170.6666666666667C454.4 170.6666666666667 469.3333333333333 155.7333333333334 469.3333333333333 138.6666666666667V106.6666666666667H405.3333333333333V138.6666666666667C405.3333333333333 155.7333333333334 420.2666666666667 170.6666666666667 437.3333333333333 170.6666666666667z" />
+    <glyph glyph-name="wifi-strength-off"
+      unicode="&#xF92C;"
+      horiz-adv-x="512" d=" M69.76 417.28L42.6666666666667 389.9733333333334L86.4 346.24C58.6666666666667 333.44 32 317.6533333333333 8.1066666666667 298.6666666666667C94.08 190.72 256 -10.6666666666666 256 -10.6666666666666L339.4133333333333 93.2266666666667L410.24 22.4L437.3333333333333 49.4933333333333M256 384C226.1333333333334 384 196.48 380.3733333333334 167.68 373.3333333333334L387.84 153.3866666666667C426.6666666666667 202.6666666666667 470.4 256 504.5333333333333 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384z" />
+    <glyph glyph-name="wifi-strength-off-outline"
+      unicode="&#xF92D;"
+      horiz-adv-x="512" d=" M69.76 417.28L42.6666666666667 389.9733333333334L86.4 346.24C58.6666666666667 333.44 32 317.6533333333333 8.1066666666667 298.6666666666667C89.6 196.2666666666667 173.6533333333333 92.3733333333333 256 -10.6666666666666L339.4133333333333 93.2266666666667L410.24 22.4L437.3333333333333 49.4933333333333C317.2266666666667 169.8133333333334 69.76 417.28 69.76 417.28M256 384C226.1333333333334 384 196.48 380.3733333333334 167.68 373.3333333333334L203.9466666666667 337.2800000000001C221.2266666666666 339.8400000000001 238.5066666666667 341.3333333333334 256 341.3333333333334C321.4933333333334 341.3333333333334 385.92 322.9866666666667 441.8133333333334 289.0666666666667L357.5466666666667 183.8933333333334L387.84 153.6C428.3733333333333 204.16 469.3333333333333 256 504.5333333333333 298.6666666666667C433.4933333333334 353.92 346.0266666666667 384 256 384M118.8266666666667 313.8133333333334L309.3333333333333 123.52L256 57.6L69.76 289.28C85.3333333333333 298.6666666666667 101.9733333333333 306.9866666666667 118.8266666666667 313.8133333333334z" />
+    <glyph glyph-name="wifi-strength-outline"
+      unicode="&#xF92E;"
+      horiz-adv-x="512" d=" M256 384C166.1866666666667 384 78.9333333333333 353.92 8.1066666666667 298.6666666666667H7.68C90.4533333333333 195.6266666666667 173.44 92.5866666666667 256 -10.6666666666666C338.9866666666667 92.5866666666667 421.76 195.6266666666667 504.32 298.6666666666667H504.5333333333334C433.4933333333334 353.92 346.0266666666667 384 256 384M256 341.3333333333334C321.4933333333334 341.3333333333334 385.92 322.9866666666667 441.8133333333334 289.0666666666667L256 57.6L69.76 289.28C125.8666666666667 323.2000000000001 190.2933333333333 341.3333333333334 256 341.3333333333334z" />
+    <glyph glyph-name="wii"
+      unicode="&#xF5AB;"
+      horiz-adv-x="512" d=" M380.5866666666667 86.6133333333334H340.6933333333333V217.8133333333333H380.5866666666667V86.6133333333334M384 264.9600000000001C384 251.9466666666667 373.3333333333333 241.2800000000001 360.5333333333333 241.2800000000001C347.52 241.2800000000001 336.8533333333333 251.9466666666667 336.8533333333333 264.9600000000001C336.8533333333333 278.1866666666667 347.52 288.8533333333334 360.5333333333333 288.8533333333334C373.3333333333333 288.8533333333334 384 278.1866666666667 384 264.9600000000001M465.4933333333333 86.6133333333334H425.3866666666667V217.8133333333334H465.4933333333333V86.6133333333334M469.3333333333333 264.9600000000001C469.3333333333333 251.9466666666667 458.6666666666666 241.2800000000001 445.44 241.2800000000001C432.4266666666666 241.2800000000001 421.76 251.9466666666667 421.76 264.9600000000001C421.76 278.1866666666667 432.4266666666666 288.8533333333334 445.44 288.8533333333334C458.6666666666666 288.8533333333334 469.3333333333333 278.1866666666667 469.3333333333333 264.9600000000001M275.2 276.2666666666667H317.8666666666667L272.64 117.3333333333334S266.6666666666667 84.48 240.64 84.48C214.8266666666667 84.48 208.8533333333334 117.3333333333334 208.8533333333334 117.3333333333334L180.2666666666667 221.0133333333333L151.68 117.3333333333334S145.4933333333334 84.48 119.68 84.48S87.8933333333334 117.3333333333334 87.8933333333334 117.3333333333334L42.6666666666667 276.2666666666667H85.3333333333333L122.0266666666667 135.04L151.68 249.6C158.5066666666667 278.4 180.2666666666667 277.9733333333334 180.2666666666667 277.9733333333334S202.0266666666667 278.4 208.8533333333334 249.6L238.2933333333334 135.04L275.2000000000001 276.2666666666667z" />
+    <glyph glyph-name="wiiu"
+      unicode="&#xF72C;"
+      horiz-adv-x="512" d=" M42.6666666666667 107.52C42.6666666666667 59.9466666666667 75.52 32 123.52 32H396.16C436.6933333333333 32 469.3333333333333 59.7333333333334 469.3333333333333 99.84V299.3066666666667C469.3333333333333 323.6266666666667 451.1999999999999 349.8666666666667 429.0133333333333 349.8666666666667H365.8666666666666V185.6C365.8666666666666 61.0133333333333 148.6933333333333 62.08 148.6933333333333 183.2533333333333V352H100.6933333333333C69.5466666666667 352 42.6666666666667 332.5866666666667 42.6666666666667 301.8666666666667V107.52M199.2533333333333 208.4266666666667C199.2533333333333 112.2133333333334 312.7466666666667 126.0800000000001 312.7466666666667 193.2800000000001V352H199.2533333333333V208.4266666666667z" />
+    <glyph glyph-name="wikipedia"
+      unicode="&#xF5AC;"
+      horiz-adv-x="512" d=" M319.36 43.7333333333334L264.7466666666667 172.3733333333334C242.9866666666667 129.9200000000001 219.0933333333333 85.3333333333334 198.6133333333334 43.7333333333334C198.4 43.52 188.5866666666667 43.7333333333334 188.5866666666667 43.7333333333334C157.2266666666667 117.3333333333334 124.8 189.8666666666667 93.2266666666667 262.8266666666667C85.9733333333333 280.7466666666667 60.3733333333333 309.3333333333334 42.6666666666667 309.3333333333334V318.9333333333334H150.6133333333333V309.3333333333334C137.8133333333333 309.3333333333334 116.0533333333333 300.8 121.6 286.9333333333334C136.96 254.08 190.72 126.72 205.44 94.2933333333334C215.4666666666667 114.3466666666667 243.84 167.2533333333334 256 189.6533333333334C246.4 208.4266666666667 216.1066666666666 278.8266666666667 207.1466666666667 296.3200000000001C200.32 307.8400000000001 183.04 309.3333333333334 169.8133333333333 309.3333333333334C169.8133333333333 312.5333333333334 170.0266666666667 314.6666666666667 169.8133333333333 318.7200000000001L264.9600000000001 318.5066666666667V309.9733333333334C251.9466666666667 309.3333333333334 239.7866666666667 304.8533333333334 245.3333333333334 292.48C258.1333333333334 266.0266666666667 265.6 247.0400000000001 277.3333333333334 222.5066666666667C280.9600000000001 229.7600000000001 300.1600000000001 269.2266666666667 309.3333333333334 289.9200000000001C314.88 303.7866666666668 306.56 309.3333333333334 283.5200000000001 309.3333333333334C283.7333333333334 311.8933333333334 283.7333333333334 316.3733333333334 283.7333333333334 318.5066666666667C313.3866666666667 318.7200000000001 357.9733333333334 318.7200000000001 365.8666666666667 318.9333333333334V309.9733333333334C350.7200000000001 309.3333333333334 335.1466666666667 301.2266666666667 327.04 288.8533333333334L288 206.9333333333333C291.84 196.0533333333334 329.8133333333334 111.7866666666666 333.8666666666667 102.4L416 290.7733333333333C409.6 306.1333333333333 391.2533333333334 309.3333333333333 384 309.3333333333333V318.9333333333333L469.3333333333333 318.2933333333333V309.3333333333334C450.56 309.3333333333334 438.8266666666667 298.6666666666667 432 282.6666666666667C414.9333333333333 244.48 362.6666666666667 122.88 328.5333333333333 43.7333333333334H319.36z" />
+    <glyph glyph-name="window-close"
+      unicode="&#xF5AD;"
+      horiz-adv-x="512" d=" M287.1466666666667 192L405.3333333333333 73.8133333333334V42.6666666666667H374.1866666666666L256 160.8533333333334L137.8133333333333 42.6666666666667H106.6666666666667V73.8133333333334L224.8533333333333 192L106.6666666666667 310.1866666666667V341.3333333333334H137.8133333333333L256 223.1466666666667L374.1866666666666 341.3333333333334H405.3333333333333V310.1866666666667L287.1466666666667 192z" />
+    <glyph glyph-name="window-closed"
+      unicode="&#xF5AE;"
+      horiz-adv-x="512" d=" M128 213.3333333333334H213.3333333333333V256H298.6666666666667V213.3333333333334H384V362.6666666666667H128V213.3333333333334M384 170.6666666666667H128V21.3333333333334H384V170.6666666666667M128 405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333z" />
+    <glyph glyph-name="window-maximize"
+      unicode="&#xF5AF;"
+      horiz-adv-x="512" d=" M85.3333333333333 362.6666666666667H426.6666666666667V21.3333333333334H85.3333333333333V362.6666666666667M128 277.3333333333334V64H384V277.3333333333334H128z" />
+    <glyph glyph-name="window-minimize"
+      unicode="&#xF5B0;"
+      horiz-adv-x="512" d=" M426.6666666666667 149.3333333333334H85.3333333333333V234.6666666666667H426.6666666666667" />
+    <glyph glyph-name="window-open"
+      unicode="&#xF5B1;"
+      horiz-adv-x="512" d=" M128 277.3333333333334H213.3333333333333V320H298.6666666666667V277.3333333333334H384V362.6666666666667H128V277.3333333333334M384 234.6666666666667H128V128H384V234.6666666666667M128 21.3333333333334H384V85.3333333333334H128V21.3333333333334M128 405.3333333333333H384C407.4666666666667 405.3333333333333 426.6666666666667 386.1333333333334 426.6666666666667 362.6666666666667V21.3333333333334C426.6666666666667 -2.1333333333333 407.4666666666667 -21.3333333333333 384 -21.3333333333333H128C104.5333333333333 -21.3333333333333 85.3333333333333 -2.1333333333333 85.3333333333333 21.3333333333334V362.6666666666667C85.3333333333333 386.1333333333334 104.5333333333333 405.3333333333333 128 405.3333333333333z" />
+    <glyph glyph-name="window-restore"
+      unicode="&#xF5B2;"
+      horiz-adv-x="512" d=" M85.3333333333333 277.3333333333334H170.6666666666667V362.6666666666667H426.6666666666667V106.6666666666667H341.3333333333333V21.3333333333334H85.3333333333333V277.3333333333334M341.3333333333333 277.3333333333334V149.3333333333334H384V320H213.3333333333333V277.3333333333334H341.3333333333333M128 192V64H298.6666666666667V192H128z" />
+    <glyph glyph-name="windows"
+      unicode="&#xF5B3;"
+      horiz-adv-x="512" d=" M64 192V304L192 332.1600000000001V193.92L64 192M426.6666666666667 384V197.3333333333334L213.3333333333333 194.1333333333333V336.8533333333334L426.6666666666667 384M64 170.6666666666667L192 168.7466666666667V23.4666666666667L64 48V170.6666666666667M426.6666666666667 165.3333333333334V-21.3333333333333L213.3333333333333 19.4133333333334V168.5333333333334L426.6666666666667 165.3333333333334z" />
+    <glyph glyph-name="windows-classic"
+      unicode="&#xFA20;"
+      horiz-adv-x="512" d=" M56.96 334.9333333333334V321.92L41.8133333333333 315.52V328.5333333333334L56.96 334.9333333333334M56.96 208.2133333333334V194.9866666666667L41.8133333333333 188.8000000000001V201.3866666666667L56.96 208.2133333333334M56.96 79.5733333333334V66.3466666666667L41.8133333333333 60.16V72.7466666666667L56.96 79.5733333333334M55.4666666666667 292.48V280.7466666666667L43.3066666666667 275.2000000000001V286.7200000000001L55.4666666666667 292.48M55.4666666666667 250.0266666666667V238.5066666666667L43.3066666666667 232.96V244.48L55.4666666666667 250.0266666666667M55.4666666666667 164.0533333333334V152.7466666666667L43.3066666666667 147.2000000000001V158.72L55.4666666666667 164.0533333333334M55.4666666666667 120.96V109.4400000000001L43.3066666666667 103.8933333333334V115.2000000000001L55.4666666666667 120.96M96 327.68V312.32L74.6666666666667 304.4266666666667V320L96 327.68M96 199.2533333333333V184.1066666666667L74.6666666666667 176.2133333333334V191.36L96 199.2533333333333M96 70.4V55.2533333333333L74.6666666666667 46.72V61.8666666666667L96 70.4M94.5066666666667 283.3066666666666V269.2266666666667L77.6533333333333 262.8266666666666V277.3333333333334L94.5066666666667 283.3066666666667M94.5066666666667 240.4266666666667V226.7733333333333L77.8666666666667 220.3733333333333V234.6666666666667L94.5066666666667 240.4266666666667M94.5066666666667 154.88V141.2266666666667L77.8666666666667 134.6133333333334V148.6933333333333L94.5066666666667 154.88M94.5066666666667 111.7866666666666V97.92L77.8666666666667 91.3066666666667V105.3866666666667L94.5066666666667 111.7866666666668M134.6133333333333 318.0800000000001V299.9466666666667L107.7333333333333 289.4933333333334V307.4133333333334L134.6133333333333 318.0800000000001M134.6133333333333 189.6533333333334V171.5200000000001L107.7333333333333 161.0666666666667V178.9866666666667L134.6133333333333 189.6533333333334M134.6133333333333 62.2933333333334V44.16L107.7333333333333 33.4933333333333V51.6266666666667L134.6133333333333 62.2933333333334M133.3333333333333 273.4933333333334V257.2800000000001L110.72 248.7466666666668V264.3200000000001L133.3333333333333 273.4933333333334M133.3333333333333 230.8266666666667V214.8266666666667L110.72 205.8666666666667V221.8666666666667L133.3333333333333 230.8266666666667M133.3333333333333 145.2800000000001V129.2800000000001L110.72 120.1066666666668V136.1066666666668L133.3333333333333 145.2800000000001M133.3333333333333 103.6800000000001V87.4666666666667L110.72 78.5066666666667V94.5066666666667L133.3333333333333 103.68M176.8533333333333 319.1466666666667V295.2533333333334L143.36 282.0266666666667V305.7066666666667L176.8533333333333 319.1466666666667M176.8533333333333 190.72V166.6133333333334L143.36 153.6000000000001V177.4933333333335L176.8533333333333 190.7200000000001M176.8533333333333 63.3600000000001V39.4666666666667L143.36 26.24V49.92L176.8533333333333 63.36M174.9333333333333 274.56V252.5866666666667L146.9866666666666 241.2800000000001V263.2533333333334L174.9333333333333 274.56M174.9333333333333 231.8933333333333V210.1333333333333L146.9866666666666 198.8266666666667V220.8L174.9333333333333 231.8933333333333M174.9333333333333 146.1333333333333V124.16L146.9866666666666 113.0666666666667V135.04L174.9333333333333 146.1333333333333M174.9333333333333 104.5333333333333V82.7733333333333L146.9866666666666 71.68V93.2266666666667L174.9333333333333 104.5333333333334M220.5866666666667 323.2000000000001V291.8400000000001L183.68 277.3333333333334V308.0533333333334L220.5866666666667 323.2000000000001M220.5866666666667 194.7733333333334V163.6266666666667L183.68 148.6933333333334V180.0533333333334L220.5866666666667 194.7733333333334M220.5866666666667 67.4133333333334V36.2666666666668L183.68 21.3333333333334V52.4800000000001L220.5866666666667 67.4133333333334M218.88 276.2666666666668V250.0266666666668L187.3066666666667 237.4400000000001V263.68L218.88 276.2666666666667M218.88 235.3066666666667V209.0666666666667L187.3066666666667 196.6933333333333V222.72L218.88 235.3066666666667M218.88 148.0533333333334V121.3866666666667L187.3066666666667 109.2266666666667V135.4666666666667L218.88 148.0533333333334M218.88 106.6666666666667V80L187.3066666666667 67.4133333333334V93.8666666666667L218.88 106.6666666666667M265.6 338.7733333333334V296.1066666666667L225.92 279.6800000000001V320C239.5733333333333 327.4666666666667 252.8 333.8666666666667 265.6 338.7733333333333M265.6 291.6266666666667V254.72L225.92 238.08V275.2000000000001L265.6 291.6266666666667M265.6 250.0266666666667V212.48L225.92 195.84V233.3866666666667L265.6 250.0266666666667M265.6 208V170.6666666666667L225.92 154.24V192L265.6 208M265.6 166.1866666666667V128L225.92 111.36V149.3333333333334L265.6 166.1866666666667M265.6 123.52V86.1866666666667L225.92 69.12V106.6666666666667L265.6 123.52M265.6 81.7066666666667V41.8133333333333C250.0266666666667 35.8399999999999 236.8 30.0799999999999 225.92 24.7466666666666V64.8533333333332L265.6 81.7066666666666M470.1866666666666 337.4933333333333V37.7599999999999C444.8 54.6133333333332 413.2266666666666 62.9333333333333 375.2533333333334 62.9333333333333C343.8933333333333 62.9333333333333 308.6933333333333 56.5333333333333 269.8666666666666 43.5199999999999V84.0533333333332C290.56 91.9466666666666 313.1733333333333 97.7066666666666 337.92 101.1199999999999V198.6133333333332C317.0133333333333 196.0533333333333 294.3999999999999 188.7999999999999 269.8666666666666 176.8533333333333V204.8C290.9866666666666 214.6133333333334 313.8133333333333 221.2266666666667 337.92 224.8533333333333V320C316.16 316.1600000000001 293.5466666666666 308.6933333333334 269.8666666666666 298.6666666666667V340.6933333333334C304.4266666666666 355.4133333333334 338.3466666666667 362.6666666666667 371.4133333333333 362.6666666666667C407.2533333333334 362.6666666666667 440.1066666666667 354.3466666666667 470.1866666666666 337.4933333333334M429.8666666666666 311.2533333333334C413.6533333333333 320 394.6666666666667 323.8400000000001 371.6266666666666 323.8400000000001C368.8533333333333 323.8400000000001 366.2933333333333 323.6266666666667 363.7333333333333 323.4133333333334V226.5600000000001L372.4799999999999 226.7733333333334C391.8933333333333 226.7733333333334 411.0933333333333 224 429.8666666666666 217.6V311.2533333333334M429.8666666666666 189.8666666666667C412.5866666666667 197.5466666666666 393.1733333333333 201.3866666666666 372.0533333333333 201.3866666666666C369.28 201.3866666666666 366.5066666666666 201.1733333333333 363.7333333333333 200.96V103.2533333333333H372.4799999999999C393.5999999999999 103.2533333333333 412.8 100.6933333333333 429.8666666666666 95.3599999999999V189.8666666666667z" />
+    <glyph glyph-name="wiper"
+      unicode="&#xFAE8;"
+      horiz-adv-x="512" d=" M256 362.6666666666667C106.6666666666667 362.6666666666667 42.6666666666667 256 42.6666666666667 256L192 106.6666666666667S202.6666666666667 125.8666666666667 221.8666666666667 138.6666666666667L228.2666666666667 96C219.7333333333334 89.6 213.3333333333334 76.8000000000001 213.3333333333334 64C213.3333333333334 40.5333333333333 232.5333333333334 21.3333333333334 256 21.3333333333334S298.6666666666667 40.5333333333333 298.6666666666667 64C298.6666666666667 83.2 288 98.1333333333334 270.9333333333334 104.5333333333333L262.4 149.3333333333333C300.8 145.0666666666667 320 106.6666666666667 320 106.6666666666667L469.3333333333333 256S405.3333333333333 362.6666666666667 256 362.6666666666667M322.1333333333334 168.5333333333334C305.0666666666666 181.3333333333334 283.7333333333333 192 256 192L234.6666666666667 317.8666666666667C241.0666666666667 320 249.6 320 256 320C334.9333333333333 320 386.1333333333334 283.7333333333334 411.7333333333334 258.1333333333334L322.1333333333334 168.5333333333333M189.8666666666667 168.5333333333333L100.2666666666667 258.1333333333334C117.3333333333333 277.3333333333334 149.3333333333333 298.6666666666667 192 311.4666666666667L213.3333333333333 183.4666666666667C204.8 179.2000000000001 196.2666666666667 174.9333333333333 189.8666666666667 168.5333333333334z" />
+    <glyph glyph-name="wordpress"
+      unicode="&#xF5B4;"
+      horiz-adv-x="512" d=" M72.96 192C72.96 218.4533333333334 78.72 243.6266666666667 88.7466666666667 266.6666666666667L176.2133333333333 27.3066666666667C114.9866666666667 56.96 72.96 119.4666666666667 72.96 192M379.52 201.1733333333334C379.52 185.6 373.3333333333333 167.4666666666667 365.6533333333333 142.0800000000001L347.3066666666667 81.0666666666667L281.1733333333334 277.3333333333334L302.0800000000001 279.4666666666667C312.1066666666667 280.7466666666667 310.8266666666667 295.2533333333334 301.0133333333333 294.6133333333334C301.0133333333333 294.6133333333334 271.36 292.2666666666667 252.16 292.2666666666667L203.9466666666667 294.6133333333334C194.1333333333333 295.2533333333334 193.0666666666667 280.1066666666667 202.6666666666667 279.4666666666667L222.08 277.3333333333334L250.6666666666667 199.68L210.56 79.5733333333334L143.7866666666667 277.3333333333334L164.9066666666667 279.4666666666667C174.72 280.7466666666667 173.44 295.2533333333334 163.6266666666667 294.6133333333334C163.6266666666667 294.6133333333334 133.9733333333334 292.2666666666667 114.7733333333334 292.2666666666667L103.04 292.48C135.8933333333333 342.1866666666667 192 375.04 256 375.04C303.5733333333333 375.04 347.0933333333333 356.6933333333334 379.52 327.04H377.1733333333333C359.2533333333334 327.04 346.4533333333333 311.4666666666667 346.4533333333333 294.6133333333334C346.4533333333333 279.4666666666667 355.2 266.6666666666667 364.3733333333333 251.7333333333334C371.4133333333333 239.5733333333334 379.52 224 379.52 201.1733333333334M259.2 176L315.52 21.9733333333334L316.8 19.4133333333334C297.8133333333333 12.5866666666667 277.3333333333333 8.96 256 8.96C238.08 8.96 220.8 11.5200000000001 204.3733333333333 16.4266666666667L259.2 176.0000000000001M416.64 279.8933333333335C430.9333333333334 253.6533333333334 439.04 224.0000000000001 439.04 192.0000000000001C439.04 124.5866666666668 402.3466666666667 65.4933333333335 347.9466666666667 33.9200000000001L403.8400000000001 195.4133333333334C414.2933333333334 221.4400000000001 417.9200000000001 242.3466666666668 417.9200000000001 260.9066666666668L416.6400000000001 279.8933333333335M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 -11.52C368.2133333333333 -11.52 459.52 79.7866666666668 459.52 192C459.52 304.2133333333334 368.2133333333333 395.52 256 395.52C143.7866666666667 395.52 52.48 304.2133333333333 52.48 192C52.48 79.7866666666668 143.7866666666667 -11.52 256 -11.52z" />
+    <glyph glyph-name="worker"
+      unicode="&#xF5B5;"
+      horiz-adv-x="512" d=" M256 128C161.7066666666667 128 85.3333333333333 89.8133333333334 85.3333333333333 42.6666666666667V0H426.6666666666667V42.6666666666667C426.6666666666667 89.8133333333334 350.2933333333334 128 256 128M170.6666666666667 256C170.6666666666667 208.8533333333333 208.8533333333333 170.6666666666667 256 170.6666666666667S341.3333333333333 208.8533333333333 341.3333333333333 256M245.3333333333333 405.3333333333333C238.9333333333333 405.3333333333333 234.6666666666667 400.8533333333334 234.6666666666667 394.6666666666667V330.6666666666667H213.3333333333333V384S165.3333333333333 365.6533333333333 165.3333333333333 304C165.3333333333333 304 149.3333333333333 301.0133333333333 149.3333333333333 277.3333333333334H362.6666666666667C361.6 301.0133333333333 346.6666666666667 304 346.6666666666667 304C346.6666666666667 365.6533333333333 298.6666666666667 384 298.6666666666667 384V330.6666666666667H277.3333333333333V394.6666666666667C277.3333333333333 400.8533333333334 273.28 405.3333333333333 266.6666666666667 405.3333333333333H245.3333333333333z" />
+    <glyph glyph-name="wrap"
+      unicode="&#xF5B6;"
+      horiz-adv-x="512" d=" M448 341.3333333333334H64V298.6666666666667H448V341.3333333333334M64 42.6666666666667H213.3333333333333V85.3333333333334H64V42.6666666666667M64 170.6666666666667H384C405.3333333333333 170.6666666666667 426.6666666666667 161.4933333333334 426.6666666666667 128S405.3333333333333 85.3333333333334 384 85.3333333333334H341.3333333333333V128L256 64L341.3333333333333 0V42.6666666666667H384C446.9333333333333 42.6666666666667 469.3333333333333 69.76 469.3333333333333 128C469.3333333333333 186.0266666666667 448 213.3333333333334 384 213.3333333333334H64V170.6666666666667z" />
+    <glyph glyph-name="wrap-disabled"
+      unicode="&#xFBBB;"
+      horiz-adv-x="512" d=" M341.3333333333333 298.6666666666667H64V341.3333333333334H341.3333333333333V298.6666666666667M64 42.6666666666667H341.3333333333333V85.3333333333334H64V42.6666666666667M469.3333333333333 192L384 256V213.3333333333334H64V170.6666666666667H384V128L469.3333333333333 192z" />
+    <glyph glyph-name="wrench"
+      unicode="&#xF5B7;"
+      horiz-adv-x="512" d=" M484.2666666666667 42.6666666666667L290.1333333333334 236.8C309.3333333333333 285.8666666666667 298.6666666666667 343.4666666666667 258.1333333333334 384C215.4666666666667 426.6666666666667 151.4666666666667 435.2 100.2666666666667 411.7333333333334L192 320L128 256L34.1333333333333 347.7333333333334C8.5333333333333 296.5333333333334 19.2 232.5333333333334 61.8666666666667 189.8666666666667C102.4 149.3333333333334 160 138.6666666666667 209.0666666666667 157.8666666666667L403.2 -36.2666666666666C411.7333333333333 -44.8 424.5333333333333 -44.8 433.0666666666666 -36.2666666666666L482.1333333333333 12.8000000000001C492.8 21.3333333333334 492.8 36.2666666666668 484.2666666666667 42.6666666666667z" />
+    <glyph glyph-name="wrench-outline"
+      unicode="&#xFBBC;"
+      horiz-adv-x="512" d=" M482.3466666666666 42.6666666666667L288.64 236.5866666666667C308.48 286.5066666666667 298.6666666666667 345.3866666666667 257.92 385.92C208.8533333333333 434.9866666666667 132.48 439.4666666666667 78.08 399.7866666666667L160 317.6533333333333L129.7066666666667 288L48 369.28C8.32 315.0933333333334 12.8 238.5066666666667 61.8666666666667 189.6533333333334C101.5466666666667 149.9733333333334 159.36 139.5200000000001 208.8533333333333 158.0800000000001L403.2 -36.2666666666666C411.52 -44.5866666666666 424.9599999999999 -44.5866666666666 433.28 -36.2666666666666L482.3466666666666 12.8000000000001C490.6666666666666 21.3333333333334 490.6666666666666 34.3466666666668 482.3466666666666 42.6666666666667M418.3466666666667 8.7466666666667L216.5333333333333 210.56C203.52 200.96 189.0133333333333 195.2 173.8666666666666 193.0666666666667C144.8533333333333 188.8000000000001 114.3466666666666 197.5466666666667 92.16 219.7333333333334C71.8933333333333 239.7866666666667 62.5066666666667 266.6666666666667 64 293.12L129.92 227.2L220.3733333333333 317.6533333333334L154.4533333333333 384C181.3333333333333 385.0666666666667 207.5733333333333 375.68 227.84 355.6266666666667C250.88 332.5866666666667 259.6266666666667 300.8 254.2933333333333 271.1466666666667C251.7333333333334 256 245.3333333333333 241.92 235.52 229.3333333333334L437.3333333333333 27.7333333333334L418.3466666666667 8.7466666666667z" />
+    <glyph glyph-name="wunderlist"
+      unicode="&#xF5B8;"
+      horiz-adv-x="512" d=" M362.6666666666667 74.6666666666667L256 128L149.3333333333333 74.6666666666667V341.3333333333334H106.6666666666667V42.6666666666667H405.3333333333333V341.3333333333334H362.6666666666667V74.6666666666667M256 183.04L304 154.24L291.2 208.6400000000001L333.6533333333333 245.3333333333334L277.3333333333333 250.24L256 301.6533333333334L234.6666666666667 250.24L178.3466666666666 245.3333333333334L220.8 208.64L208 154.24L256 183.04M106.6666666666667 384H405.3333333333333C428.8 384 448 364.8 448 341.3333333333334V42.6666666666667C448 19.2 428.8 0 405.3333333333333 0H106.6666666666667C83.2 0 64 19.2 64 42.6666666666667V341.3333333333334C64 364.8 83.2 384 106.6666666666667 384z" />
+    <glyph glyph-name="xamarin"
+      unicode="&#xF844;"
+      horiz-adv-x="512" d=" M485.3333333333333 211.84C488.7466666666667 205.8666666666667 490.6666666666666 199.04 490.6666666666666 192C490.6666666666666 184.96 488.7466666666667 178.1333333333333 485.3333333333333 172.16L385.7066666666666 0C378.0266666666667 -13.2266666666667 363.9466666666666 -21.3333333333333 348.8 -21.3333333333333H163.2C148.0533333333333 -21.3333333333333 133.9733333333333 -13.2266666666667 126.2933333333333 0L26.6666666666666 172.16C23.2533333333333 178.1333333333333 21.3333333333333 184.96 21.3333333333333 192C21.3333333333333 199.04 23.2533333333333 205.8666666666667 26.6666666666666 211.84L126.2933333333333 384C133.9733333333333 397.2266666666667 148.0533333333333 405.3333333333333 163.2 405.3333333333333H348.8C363.9466666666667 405.3333333333333 378.0266666666667 397.2266666666667 385.7066666666667 384L485.3333333333333 211.84M256 192V194.1333333333333L200.96 296.5333333333334L197.3333333333333 298.6666666666667H163.4133333333333L160 296.5333333333334V292.2666666666667L213.3333333333333 192L160 91.7333333333334V87.4666666666667L163.4133333333333 85.3333333333334H197.3333333333333L200.96 87.4666666666667L256 189.8666666666667V192L256.64 189.8666666666667L311.04 87.4666666666667L314.6666666666667 85.3333333333334H348.5866666666667L352 87.4666666666667V91.7333333333334L298.6666666666667 192L352 292.2666666666667V296.5333333333334L348.5866666666667 298.6666666666667H314.6666666666667L311.04 296.5333333333334L256.64 194.1333333333334L256 192.0000000000001z" />
+    <glyph glyph-name="xamarin-outline"
+      unicode="&#xF845;"
+      horiz-adv-x="512" d=" M256 192L256.64 194.1333333333333L311.04 296.5333333333333L314.6666666666667 298.6666666666667H348.5866666666667L352 296.5333333333333V292.2666666666667L298.6666666666667 192L352 91.7333333333334V87.4666666666667L348.5866666666667 85.3333333333334H314.6666666666667L311.04 87.4666666666667L256.64 189.8666666666667L256 192V189.8666666666667L200.96 87.4666666666667L197.3333333333333 85.3333333333334H163.4133333333333L160 87.4666666666667V91.7333333333334L213.3333333333333 192L160 292.2666666666667V296.5333333333334L163.4133333333333 298.6666666666667H197.3333333333333L200.96 296.5333333333334L256 194.1333333333333V192M485.3333333333333 211.84C488.7466666666667 205.8666666666667 490.6666666666666 199.04 490.6666666666666 192C490.6666666666666 184.96 488.7466666666667 178.1333333333333 485.3333333333333 172.16L385.7066666666666 0C378.0266666666667 -13.2266666666667 363.9466666666666 -21.3333333333333 348.8 -21.3333333333333H163.2C148.0533333333333 -21.3333333333333 133.9733333333333 -13.2266666666667 126.2933333333333 0L26.6666666666666 172.16C23.2533333333333 178.1333333333333 21.3333333333333 184.96 21.3333333333333 192C21.3333333333333 199.04 23.2533333333333 205.8666666666667 26.6666666666666 211.84L126.2933333333333 384C133.9733333333333 397.2266666666667 148.0533333333333 405.3333333333333 163.2 405.3333333333333H348.8C363.9466666666667 405.3333333333333 378.0266666666667 397.2266666666667 385.7066666666667 384L485.3333333333333 211.84M443.7333333333334 208L362.0266666666667 345.6C355.84 356.2666666666667 344.32 362.6666666666667 331.9466666666666 362.6666666666667H180.0533333333333C167.68 362.6666666666667 156.16 356.2666666666667 149.9733333333333 345.6L68.2666666666667 208C65.4933333333333 202.6666666666667 64 197.5466666666667 64 192S65.4933333333333 181.3333333333334 68.2666666666667 176L149.9733333333333 38.4C156.16 27.7333333333334 167.68 21.3333333333334 180.0533333333333 21.3333333333334H331.9466666666666C344.32 21.3333333333334 355.84 27.7333333333334 362.0266666666667 38.4L443.7333333333333 176C446.5066666666666 181.3333333333334 447.9999999999999 186.4533333333334 447.9999999999999 192S446.5066666666666 202.6666666666667 443.7333333333333 208z" />
+    <glyph glyph-name="xaml"
+      unicode="&#xF673;"
+      horiz-adv-x="512" d=" M403.84 192L329.8133333333333 64H182.1866666666667L108.16 192L182.1866666666667 320H329.8133333333333L403.84 192M507.0933333333333 192L420.9066666666667 42.6666666666667L384 64L457.8133333333333 192L384 320L420.9066666666667 341.3333333333334L507.0933333333333 192M4.9066666666667 192L91.0933333333333 341.3333333333334L128 320L54.1866666666667 192L128 64L91.0933333333333 42.6666666666667L4.9066666666667 192z" />
+    <glyph glyph-name="xbox"
+      unicode="&#xF5B9;"
+      horiz-adv-x="512" d=" M137.1733333333333 368.64C138.6666666666667 369.92 140.16 371.2 141.2266666666667 372.0533333333334C174.5066666666667 393.6 213.3333333333333 405.3333333333333 256 405.3333333333333C296.1066666666667 405.3333333333333 333.6533333333333 394.6666666666667 365.6533333333333 375.04C368 373.3333333333334 374.1866666666666 369.28 377.6 365.2266666666667C346.6666666666667 399.36 256 326.4 256 326.4C224 350.5066666666667 195.6266666666667 366.9333333333334 174.08 373.3333333333334C155.9466666666667 377.8133333333334 143.5733333333333 373.3333333333334 137.8133333333333 369.0666666666667M412.5866666666667 336.8533333333334C411.52 337.92 410.4533333333333 338.9866666666667 409.6 340.0533333333334C401.92 348.5866666666667 392.1066666666667 350.7200000000001 384 350.0800000000001C375.68 347.52 339.2 334.5066666666667 294.4 292.0533333333334C294.4 292.0533333333334 344.9600000000001 242.9866666666667 375.8933333333333 192.8533333333333C406.8266666666667 142.72 425.1733333333333 103.2533333333333 413.8666666666667 48.4266666666667C448 86.4 469.3333333333333 136.7466666666667 469.3333333333333 192C469.3333333333333 247.8933333333334 448 298.6666666666667 412.5866666666667 336.8533333333334M335.5733333333333 171.52C321.7066666666667 186.88 301.44 208.8533333333333 274.3466666666667 235.7333333333333C268.5866666666667 241.4933333333333 262.4 247.4666666666667 256 253.8666666666667C256 253.8666666666667 245.9733333333333 244.0533333333333 233.1733333333333 231.04C216.7466666666667 214.6133333333333 195.6266666666667 193.0666666666667 183.68 180.48C162.7733333333333 158.0799999999999 102.6133333333333 87.68 99.2 48.2133333333333C99.2 48.2133333333333 85.3333333333333 79.36 115.2 151.68C134.4 198.8266666666666 192 269.6533333333333 216.5333333333333 292.6933333333333C216.5333333333333 292.6933333333333 194.56 317.0133333333333 166.8266666666666 333.8666666666666L165.76 334.5066666666667C152.32 342.4 137.8133333333333 348.5866666666667 123.7333333333333 349.44C109.44 348.3733333333334 100.48 337.92 100.48 337.92C64.64 299.7333333333334 42.6666666666667 248.5333333333334 42.6666666666667 192C42.6666666666667 74.24 138.24 -21.3333333333333 256 -21.3333333333333C318.5066666666667 -21.3333333333333 374.8266666666667 5.5466666666667 413.8666666666666 48.4266666666667C413.8666666666666 48.4266666666667 409.3866666666666 76.8000000000001 380.5866666666667 117.3333333333334C373.9733333333334 126.5066666666667 349.2266666666667 155.9466666666667 335.5733333333333 171.52z" />
+    <glyph glyph-name="xbox-controller"
+      unicode="&#xF5BA;"
+      horiz-adv-x="512" d=" M186.6666666666667 112C144 112 128 64 85.3333333333333 42.6666666666667C42.6666666666667 42.6666666666667 10.6666666666667 106.6666666666667 96 288H101.3333333333333L110.72 305.7066666666667S170.6666666666667 341.3333333333334 199.04 315.0933333333334H312.96C341.3333333333333 341.3333333333334 401.28 305.7066666666667 401.28 305.7066666666667L410.6666666666667 288H416C501.3333333333333 106.6666666666667 469.3333333333333 42.6666666666667 426.6666666666667 42.6666666666667C384 64 368 112 325.3333333333333 112H186.6666666666667M256 298.6666666666667C244.2666666666667 298.6666666666667 234.6666666666667 289.0666666666667 234.6666666666667 277.3333333333334S244.2666666666667 256 256 256S277.3333333333333 265.6 277.3333333333333 277.3333333333334S267.7333333333334 298.6666666666667 256 298.6666666666667z" />
+    <glyph glyph-name="xbox-controller-battery-alert"
+      unicode="&#xF74A;"
+      horiz-adv-x="512" d=" M448 42.6666666666667V298.6666666666667H320V42.6666666666667H448M462.2933333333334 341.3333333333334C477.8666666666666 341.3333333333334 490.6666666666666 328.5333333333334 490.6666666666666 312.9600000000001V28.3733333333333C490.6666666666666 12.8 477.8666666666666 0 462.2933333333334 0H305.7066666666667C290.1333333333334 0 277.3333333333334 12.8000000000001 277.3333333333334 28.3733333333333V90.6666666666667H165.3333333333333C122.6666666666667 90.6666666666667 106.6666666666667 42.6666666666667 64 21.3333333333334C21.3333333333333 21.3333333333334 -10.6666666666667 85.3333333333334 74.6666666666667 266.6666666666667H80L89.3866666666667 284.3733333333334S149.3333333333333 320 177.7066666666667 293.76H277.3333333333333V312.9600000000001C277.3333333333333 328.5333333333334 290.1333333333334 341.3333333333334 305.7066666666667 341.3333333333334H341.3333333333333V384H426.6666666666667V341.3333333333334H462.2933333333334M234.6666666666667 277.3333333333334C222.9333333333333 277.3333333333334 213.3333333333333 267.7333333333334 213.3333333333333 256S222.9333333333333 234.6666666666667 234.6666666666667 234.6666666666667S256 244.2666666666667 256 256S246.4 277.3333333333334 234.6666666666667 277.3333333333334M362.6666666666667 256H405.3333333333333V149.3333333333334H362.6666666666667V256M362.6666666666667 128H405.3333333333333V85.3333333333334H362.6666666666667V128z" />
+    <glyph glyph-name="xbox-controller-battery-charging"
+      unicode="&#xFA21;"
+      horiz-adv-x="512" d=" M426.6666666666667 341.3333333333334H462.2933333333334C477.8666666666666 341.3333333333334 490.6666666666666 328.5333333333334 490.6666666666666 312.9600000000001V28.3733333333333C490.6666666666666 12.8 477.8666666666666 0 462.2933333333334 0H305.7066666666667C290.1333333333334 0 277.3333333333334 12.8000000000001 277.3333333333334 28.3733333333333V90.6666666666667H165.3333333333333C122.6666666666667 90.6666666666667 106.6666666666667 42.6666666666667 64 21.3333333333334C21.3333333333333 21.3333333333334 -10.6666666666667 85.3333333333334 74.6666666666667 266.6666666666667H80L89.3866666666667 284.3733333333334S149.3333333333333 320 177.7066666666667 293.76H277.3333333333333V312.9600000000001C277.3333333333333 328.5333333333334 290.1333333333334 341.3333333333334 305.7066666666667 341.3333333333334H341.3333333333333V384H426.6666666666667V341.3333333333334M448 298.6666666666667H320V42.6666666666667H448V298.6666666666667M330.6666666666667 149.3333333333334L394.6666666666667 288V192H437.3333333333333L373.3333333333333 53.3333333333334V149.3333333333334H330.6666666666667M234.6666666666667 277.3333333333334C222.9333333333333 277.3333333333334 213.3333333333333 267.7333333333334 213.3333333333333 256S222.9333333333333 234.6666666666667 234.6666666666667 234.6666666666667S256 244.2666666666667 256 256S246.4 277.3333333333334 234.6666666666667 277.3333333333334z" />
+    <glyph glyph-name="xbox-controller-battery-empty"
+      unicode="&#xF74B;"
+      horiz-adv-x="512" d=" M448 42.6666666666667V298.6666666666667H320V42.6666666666667H448M462.2933333333334 341.3333333333334C477.8666666666666 341.3333333333334 490.6666666666666 328.5333333333334 490.6666666666666 312.9600000000001V28.3733333333333C490.6666666666666 12.8 477.8666666666666 0 462.2933333333334 0H305.7066666666667C290.1333333333334 0 277.3333333333334 12.8000000000001 277.3333333333334 28.3733333333333V90.6666666666667H165.3333333333333C122.6666666666667 90.6666666666667 106.6666666666667 42.6666666666667 64 21.3333333333334C21.3333333333333 21.3333333333334 -10.6666666666667 85.3333333333334 74.6666666666667 266.6666666666667H80L89.3866666666667 284.3733333333334S149.3333333333333 320 177.7066666666667 293.76H277.3333333333333V312.9600000000001C277.3333333333333 328.5333333333334 290.1333333333334 341.3333333333334 305.7066666666667 341.3333333333334H341.3333333333333V384H426.6666666666667V341.3333333333334H462.2933333333334M234.6666666666667 277.3333333333334C222.9333333333333 277.3333333333334 213.3333333333333 267.7333333333334 213.3333333333333 256S222.9333333333333 234.6666666666667 234.6666666666667 234.6666666666667S256 244.2666666666667 256 256S246.4 277.3333333333334 234.6666666666667 277.3333333333334z" />
+    <glyph glyph-name="xbox-controller-battery-full"
+      unicode="&#xF74C;"
+      horiz-adv-x="512" d=" M462.2933333333334 341.3333333333334C477.8666666666666 341.3333333333334 490.6666666666666 328.5333333333334 490.6666666666666 312.9600000000001V28.3733333333333C490.6666666666666 12.8 477.8666666666666 0 462.2933333333334 0H305.7066666666667C290.1333333333334 0 277.3333333333334 12.8000000000001 277.3333333333334 28.3733333333333V90.6666666666667H165.3333333333333C122.6666666666667 90.6666666666667 106.6666666666667 42.6666666666667 64 21.3333333333334C21.3333333333333 21.3333333333334 -10.6666666666667 85.3333333333334 74.6666666666667 266.6666666666667H80L89.3866666666667 284.3733333333334S149.3333333333333 320 177.7066666666667 293.76H277.3333333333333V312.9600000000001C277.3333333333333 328.5333333333334 290.1333333333334 341.3333333333334 305.7066666666667 341.3333333333334H341.3333333333333V384H426.6666666666667V341.3333333333334H462.2933333333334M234.6666666666667 277.3333333333334C222.9333333333333 277.3333333333334 213.3333333333333 267.7333333333334 213.3333333333333 256S222.9333333333333 234.6666666666667 234.6666666666667 234.6666666666667S256 244.2666666666667 256 256S246.4 277.3333333333334 234.6666666666667 277.3333333333334z" />
+    <glyph glyph-name="xbox-controller-battery-low"
+      unicode="&#xF74D;"
+      horiz-adv-x="512" d=" M448 106.6666666666667V298.6666666666667H320V106.6666666666667H448M462.2933333333334 341.3333333333334C477.8666666666666 341.3333333333334 490.6666666666666 328.5333333333334 490.6666666666666 312.9600000000001V28.3733333333333C490.6666666666666 12.8 477.8666666666666 0 462.2933333333334 0H305.7066666666667C290.1333333333334 0 277.3333333333334 12.8000000000001 277.3333333333334 28.3733333333333V90.6666666666667H165.3333333333333C122.6666666666667 90.6666666666667 106.6666666666667 42.6666666666667 64 21.3333333333334C21.3333333333333 21.3333333333334 -10.6666666666667 85.3333333333334 74.6666666666667 266.6666666666667H80L89.3866666666667 284.3733333333334S149.3333333333333 320 177.7066666666667 293.76H277.3333333333333V312.9600000000001C277.3333333333333 328.5333333333334 290.1333333333334 341.3333333333334 305.7066666666667 341.3333333333334H341.3333333333333V384H426.6666666666667V341.3333333333334H462.2933333333334M234.6666666666667 277.3333333333334C222.9333333333333 277.3333333333334 213.3333333333333 267.7333333333334 213.3333333333333 256S222.9333333333333 234.6666666666667 234.6666666666667 234.6666666666667S256 244.2666666666667 256 256S246.4 277.3333333333334 234.6666666666667 277.3333333333334z" />
+    <glyph glyph-name="xbox-controller-battery-medium"
+      unicode="&#xF74E;"
+      horiz-adv-x="512" d=" M448 192V298.6666666666667H320V192H448M462.2933333333334 341.3333333333334C477.8666666666666 341.3333333333334 490.6666666666666 328.5333333333334 490.6666666666666 312.9600000000001V28.3733333333333C490.6666666666666 12.8 477.8666666666666 0 462.2933333333334 0H305.7066666666667C290.1333333333334 0 277.3333333333334 12.8000000000001 277.3333333333334 28.3733333333333V90.6666666666667H165.3333333333333C122.6666666666667 90.6666666666667 106.6666666666667 42.6666666666667 64 21.3333333333334C21.3333333333333 21.3333333333334 -10.6666666666667 85.3333333333334 74.6666666666667 266.6666666666667H80L89.3866666666667 284.3733333333334S149.3333333333333 320 177.7066666666667 293.76H277.3333333333333V312.9600000000001C277.3333333333333 328.5333333333334 290.1333333333334 341.3333333333334 305.7066666666667 341.3333333333334H341.3333333333333V384H426.6666666666667V341.3333333333334H462.2933333333334M234.6666666666667 277.3333333333334C222.9333333333333 277.3333333333334 213.3333333333333 267.7333333333334 213.3333333333333 256S222.9333333333333 234.6666666666667 234.6666666666667 234.6666666666667S256 244.2666666666667 256 256S246.4 277.3333333333334 234.6666666666667 277.3333333333334z" />
+    <glyph glyph-name="xbox-controller-battery-unknown"
+      unicode="&#xF74F;"
+      horiz-adv-x="512" d=" M462.2933333333334 341.3333333333334C477.8666666666666 341.3333333333334 490.6666666666666 328.5333333333334 490.6666666666666 312.9600000000001V28.3733333333333C490.6666666666666 12.8 477.8666666666666 0 462.2933333333334 0H305.7066666666667C290.1333333333334 0 277.3333333333334 12.8000000000001 277.3333333333334 28.3733333333333V90.6666666666667H165.3333333333333C122.6666666666667 90.6666666666667 106.6666666666667 42.6666666666667 64 21.3333333333334C21.3333333333333 21.3333333333334 -10.6666666666667 85.3333333333334 74.6666666666667 266.6666666666667H80L89.3866666666667 284.3733333333334S149.3333333333333 320 177.7066666666667 293.76H277.3333333333333V312.9600000000001C277.3333333333333 328.5333333333334 290.1333333333334 341.3333333333334 305.7066666666667 341.3333333333334H341.3333333333333V384H426.6666666666667V341.3333333333334H462.2933333333334M234.6666666666667 277.3333333333334C222.9333333333333 277.3333333333334 213.3333333333333 267.7333333333334 213.3333333333333 256S222.9333333333333 234.6666666666667 234.6666666666667 234.6666666666667S256 244.2666666666667 256 256S246.4 277.3333333333334 234.6666666666667 277.3333333333334M388.0533333333334 277.3333333333334C369.4933333333334 277.3333333333334 354.56 273.0666666666667 343.04 264.7466666666667C331.9466666666667 256 326.4000000000001 243.84 326.6133333333334 226.9866666666667L326.8266666666667 226.3466666666667H368.0000000000001C368.2133333333334 232.7466666666668 370.1333333333335 237.6533333333334 373.9733333333334 241.0666666666667C377.8133333333334 244.2666666666667 382.5066666666667 245.9733333333334 388.0533333333334 245.9733333333334C394.6666666666668 245.9733333333334 400.2133333333334 243.8400000000001 404.0533333333334 240.0000000000001C407.8933333333335 235.9466666666667 409.6000000000002 230.4000000000001 409.6000000000002 224.0000000000001C409.6000000000002 217.1733333333334 408.1066666666668 211.4133333333334 404.6933333333335 206.5066666666667C401.7066666666668 201.6 397.2266666666668 197.3333333333334 391.6800000000001 193.9200000000001C380.8000000000001 186.6666666666668 373.3333333333335 180.2666666666667 369.2800000000001 174.5066666666667C365.0133333333335 168.96 362.6666666666668 160.0000000000001 362.6666666666668 149.3333333333334H405.3333333333335C405.3333333333335 155.9466666666667 406.1866666666668 161.2800000000001 408.1066666666668 165.1200000000001C410.0266666666668 168.96 413.6533333333335 172.8000000000001 418.9866666666668 176.2133333333334C428.5866666666668 181.3333333333334 436.4800000000002 187.5200000000001 442.6666666666668 196.0533333333334C448.8533333333335 204.5866666666667 452.0533333333335 213.3333333333334 452.0533333333335 224.0000000000001C452.0533333333335 240.2133333333334 446.2933333333335 253.2266666666667 434.7733333333336 262.8266666666667C423.4666666666668 272.4266666666668 407.8933333333335 277.3333333333334 388.0533333333335 277.3333333333334M362.6666666666667 128V85.3333333333334H405.3333333333333V128H362.6666666666667z" />
+    <glyph glyph-name="xbox-controller-off"
+      unicode="&#xF5BB;"
+      horiz-adv-x="512" d=" M42.6666666666667 335.5733333333334L69.9733333333333 362.6666666666667L426.6666666666667 5.9733333333334L399.5733333333333 -21.3333333333333L266.6666666666667 112H186.6666666666667C144 112 128 64 85.3333333333333 42.6666666666667C42.6666666666667 42.6666666666667 10.6666666666667 105.8133333333334 94.2933333333333 283.9466666666667L42.6666666666667 335.5733333333334M199.04 315.0933333333334H312.96C341.3333333333333 341.3333333333334 401.28 305.7066666666667 401.28 305.7066666666667L410.6666666666667 288H416C490.6666666666666 128 475.3066666666667 59.7333333333334 441.3866666666667 45.4400000000001L162.56 324.2666666666667C176 325.76 189.2266666666667 324.0533333333334 199.04 315.0933333333334M256 298.6666666666667C244.2666666666667 298.6666666666667 234.6666666666667 289.0666666666667 234.6666666666667 277.3333333333334S244.2666666666667 256 256 256S277.3333333333333 265.6 277.3333333333333 277.3333333333334S267.7333333333334 298.6666666666667 256 298.6666666666667z" />
+    <glyph glyph-name="xda"
+      unicode="&#xF5BC;"
+      horiz-adv-x="512" d=" M-1.0666666666667 89.8133333333334L68.0533333333333 171.3066666666667L-1.0666666666667 252.8000000000001L32 280.32L96 204.5866666666667L160 280.32L193.0666666666667 252.8L123.9466666666667 171.3066666666667L193.0666666666667 89.8133333333334L160 62.5066666666667L96 138.6666666666667L32 62.5066666666667L-1.0666666666666 89.8133333333334M512 85.3333333333334C512 73.6 502.4 64 490.6666666666666 64H426.6666666666667C403.2 64 384 83.2 384 106.6666666666667V149.3333333333334C384 172.8 403.2 192 426.6666666666667 192H469.3333333333333V234.6666666666667H384V277.3333333333334H490.6666666666666C502.4 277.3333333333334 512 267.7333333333334 512 256M469.3333333333333 149.3333333333334H426.6666666666667V106.6666666666667H469.3333333333333V149.3333333333334M341.3333333333333 85.3333333333334C341.3333333333333 73.6 331.7333333333334 64 320 64H256C232.5333333333334 64 213.3333333333333 83.2 213.3333333333333 106.6666666666667V234.6666666666667C213.3333333333333 258.1333333333334 232.5333333333334 277.3333333333334 256 277.3333333333334H298.6666666666667V341.3333333333334H341.3333333333333V85.3333333333334M298.6666666666667 106.6666666666667V234.6666666666667H256V106.6666666666667H298.6666666666667z" />
+    <glyph glyph-name="xing"
+      unicode="&#xF5BD;"
+      horiz-adv-x="512" d=" M376.9600000000001 405.3333333333333C367.7866666666667 405.3333333333333 363.7333333333334 399.5733333333333 360.5333333333334 393.6C360.5333333333334 393.6 227.8400000000001 158.5066666666667 224 150.8266666666667L311.04 -9.6C314.0266666666667 -15.1466666666666 318.7200000000001 -21.3333333333333 328.1066666666667 -21.3333333333333H389.5466666666667C393.3866666666667 -21.3333333333333 396.16 -19.84 397.6533333333333 -17.4933333333333C399.36 -14.72 399.36 -11.3066666666667 397.6533333333333 -7.8933333333333L310.8266666666667 151.04L447.1466666666667 391.8933333333333C448.8533333333333 395.3066666666666 448.8533333333333 398.7199999999999 447.36 401.4933333333333C445.6533333333334 403.8399999999999 442.88 405.3333333333333 439.04 405.3333333333333M118.4 321.0666666666667C114.7733333333333 321.0666666666667 111.5733333333333 320 110.08 317.2266666666667C108.3733333333333 314.4533333333334 108.5866666666667 311.2533333333334 110.5066666666667 307.8400000000001L151.8933333333333 235.3066666666667L86.6133333333333 120.1066666666667C85.3333333333333 116.6933333333333 85.3333333333333 113.28 86.6133333333333 110.5066666666667C88.1066666666666 107.9466666666667 90.88 106.6666666666667 94.5066666666666 106.6666666666667H156.16C165.3333333333333 106.6666666666667 169.8133333333333 112.64 173.0133333333333 118.4C173.0133333333333 118.4 236.8 231.2533333333334 239.36 235.7333333333334L197.12 309.3333333333334C194.1333333333333 314.88 189.44 321.0666666666667 179.84 321.0666666666667" />
+    <glyph glyph-name="xing-box"
+      unicode="&#xF5BE;"
+      horiz-adv-x="512" d=" M102.4 384C81.0666666666667 384 64 366.9333333333334 64 345.6V38.4C64 17.0666666666667 81.0666666666667 0 102.4 0H409.6C430.9333333333333 0 448 17.0666666666667 448 38.4V345.6C448 366.9333333333334 430.9333333333333 384 409.6 384M342.8266666666667 341.3333333333334H386.3466666666667C388.9066666666667 341.3333333333334 391.04 340.48 391.8933333333333 338.56C393.1733333333333 336.64 393.1733333333333 334.2933333333334 391.8933333333333 331.9466666666667L296.5333333333334 162.9866666666667L357.3333333333334 52.0533333333334C358.6133333333334 49.7066666666667 358.6133333333334 47.3600000000001 357.3333333333334 45.4400000000001C356.2666666666667 43.7333333333335 354.3466666666667 42.6666666666667 352.0000000000001 42.6666666666667H308.6933333333334C302.0800000000001 42.6666666666667 298.6666666666668 47.1466666666668 296.7466666666668 50.9866666666668L235.5200000000001 163.2000000000001L331.3066666666668 333.0133333333335C333.6533333333334 337.2800000000001 336.4266666666668 341.3333333333335 342.8266666666667 341.3333333333335M151.2533333333333 282.4533333333334H194.1333333333333C200.7466666666667 282.4533333333334 204.16 278.1866666666667 206.2933333333333 274.1333333333334L235.9466666666667 222.5066666666667C234.0266666666667 219.52 189.44 140.3733333333333 189.44 140.3733333333333C187.0933333333334 136.3200000000001 184.1066666666667 132.0533333333334 177.4933333333334 132.0533333333334H134.4C131.84 132.0533333333334 129.92 133.12 128.8533333333333 135.04C128 136.7466666666667 128 139.3066666666667 128.8533333333333 141.6533333333334L174.5066666666667 222.5066666666667L145.4933333333334 273.0666666666667C144.4266666666667 275.4133333333334 144 277.3333333333334 145.28 279.68C146.3466666666667 281.3866666666667 148.48 282.4533333333334 151.2533333333333 282.4533333333334z" />
+    <glyph glyph-name="xing-circle"
+      unicode="&#xF5BF;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C138.24 405.3333333333333 42.6666666666667 309.76 42.6666666666667 192S138.24 -21.3333333333333 256 -21.3333333333333S469.3333333333333 74.24 469.3333333333333 192S373.76 405.3333333333333 256 405.3333333333333M338.1333333333334 320H378.4533333333333C381.0133333333333 320 382.7199999999999 319.1466666666667 384 317.44C384.8533333333333 315.7333333333334 384.8533333333333 313.6 384 311.2533333333334L295.2533333333334 154.4533333333334L352 51.4133333333334C352.64 49.28 352.64 46.9333333333333 352 45.2266666666667C350.5066666666667 43.5200000000001 348.8 42.6666666666667 346.4533333333333 42.6666666666667H306.3466666666667C300.16 42.6666666666667 297.1733333333333 46.72 295.2533333333334 50.3466666666667L238.2933333333333 154.4533333333333C241.28 160 327.4666666666667 312.32 327.4666666666667 312.32C329.6 316.16 332.16 320 338.1333333333334 320M160 265.1733333333334H200.32C206.2933333333333 265.1733333333334 209.28 261.3333333333334 211.2 257.7066666666667L238.7200000000001 209.7066666666667C237.2266666666667 206.9333333333333 195.6266666666667 133.3333333333334 195.6266666666667 133.3333333333334C193.4933333333334 129.7066666666667 190.72 125.6533333333334 184.7466666666667 125.6533333333334H144.64C142.2933333333333 125.6533333333334 140.5866666666667 126.72 139.52 128C138.6666666666667 130.1333333333333 138.6666666666667 132.2666666666667 139.52 134.6133333333334L181.9733333333333 209.7066666666667L155.0933333333333 256C153.8133333333333 258.7733333333334 153.6 260.9066666666667 154.6666666666667 262.6133333333334C155.7333333333333 264.3200000000001 157.6533333333333 265.1733333333334 160 265.1733333333334z" />
+    <glyph glyph-name="xml"
+      unicode="&#xF5C0;"
+      horiz-adv-x="512" d=" M274.9866666666667 384L316.8 375.4666666666667L237.0133333333333 0L195.2 8.5333333333333L274.9866666666667 384M417.92 192L341.3333333333333 268.5866666666667V328.9600000000001L478.2933333333334 192L341.3333333333333 55.2533333333333V115.6266666666667L417.92 192M33.7066666666667 192L170.6666666666667 328.9600000000001V268.5866666666667L94.08 192L170.6666666666667 115.6266666666667V55.2533333333333L33.7066666666667 192z" />
+    <glyph glyph-name="xmpp"
+      unicode="&#xF7FE;"
+      horiz-adv-x="512" d=" M256 119.4666666666667C208 168.7466666666667 170.6666666666667 244.48 170.6666666666667 320L42.6666666666667 362.6666666666667C42.6666666666667 242.1333333333334 135.04 146.9866666666667 225.0666666666667 92.5866666666667C200.1066666666667 74.6666666666667 173.8666666666667 64 149.3333333333333 64V42.6666666666667C174.9333333333333 42.6666666666667 213.9733333333333 54.1866666666667 256 75.52C298.0266666666667 54.1866666666667 337.0666666666667 42.6666666666667 362.6666666666667 42.6666666666667V64C338.1333333333334 64 311.8933333333333 74.6666666666667 286.9333333333333 92.5866666666667C376.7466666666667 146.9866666666667 469.3333333333333 242.1333333333334 469.3333333333333 362.6666666666667L341.3333333333333 320C341.3333333333333 244.48 304 168.7466666666667 256 119.4666666666667z" />
+    <glyph glyph-name="yahoo"
+      unicode="&#xFB2A;"
+      horiz-adv-x="512" d=" M256.64 376.32C181.3333333333333 376.32 109.8666666666667 386.1333333333334 42.6666666666667 405.3333333333333V-21.3333333333333C109.8666666666667 -2.1333333333333 181.3333333333333 7.68 256.64 7.68C330.6666666666667 7.68 402.1333333333334 -1.92 469.3333333333333 -21.3333333333333V405.3333333333333C402.1333333333334 385.92 330.6666666666667 376.32 256.64 376.32M273.92 169.8133333333334L276.6933333333334 44.3733333333334L256 47.1466666666667C254.08 47.1466666666667 238.72 45.0133333333333 234.6666666666667 44.16L238.08 169.8133333333334C232.1066666666667 180.48 142.2933333333333 331.9466666666667 137.3866666666667 339.8400000000001L160 336C167.04 336 173.2266666666666 336.8533333333334 181.3333333333333 337.7066666666667C192.64 316.8000000000001 253.44 216.96 256 212.6933333333334C256 212.6933333333334 319.36 316.8 333.0133333333333 338.5600000000001C338.7733333333333 336.8533333333334 344.9599999999999 336 352 336C357.9733333333334 336 364.16 336.8533333333334 374.8266666666667 339.8400000000001L273.92 169.8133333333334z" />
+    <glyph glyph-name="yammer"
+      unicode="&#xF788;"
+      horiz-adv-x="512" d=" M288.8533333333333 321.4933333333334L195.84 82.9866666666667C195.4133333333333 81.2800000000001 176.2133333333333 28.8000000000001 111.5733333333333 28.8000000000001C99.84 28.8000000000001 90.24 38.4 90.24 50.1333333333334C90.24 62.08 99.84 71.4666666666667 111.5733333333333 71.4666666666667C144.8533333333333 71.4666666666667 154.88 95.3600000000001 155.9466666666667 97.92L163.84 119.4666666666667L81.4933333333333 321.2800000000001C77.2266666666667 332.1600000000001 82.3466666666667 344.7466666666667 93.2266666666667 349.0133333333333C104.1066666666667 353.4933333333334 116.6933333333334 348.3733333333334 121.1733333333333 337.2800000000001L186.6666666666667 176.6400000000001L249.1733333333333 337.0666666666667C253.44 348.1600000000001 265.8133333333333 353.4933333333334 277.3333333333333 349.2266666666667C288 344.9600000000001 293.3333333333333 332.5866666666667 288.8533333333333 321.4933333333334M394.6666666666667 311.8933333333334C390.8266666666667 311.8933333333334 386.7733333333333 310.4000000000001 384 307.8400000000001C384 307.8400000000001 294.4 244.0533333333334 298.6666666666667 237.2266666666667C302.72 230.4000000000001 401.7066666666666 276.6933333333334 401.92 277.3333333333334C408.5333333333333 279.4666666666667 413.44 286.0800000000001 413.44 293.7600000000001C413.44 303.7866666666667 405.3333333333333 311.8933333333334 394.6666666666667 311.8933333333334M411.0933333333333 88.7466666666667C408.9599999999999 92.3733333333334 405.3333333333333 95.1466666666667 401.7066666666666 96.8533333333334C401.7066666666666 96.8533333333334 302.2933333333333 143.1466666666667 298.6666666666667 136.32C294.6133333333333 129.28 384 65.7066666666667 384 65.7066666666667C389.3333333333333 61.0133333333333 397.44 60.16 404.0533333333334 64C412.8 68.9066666666667 416 80 411.0933333333333 88.7466666666667M447.36 204.3733333333333C443.52 206.5066666666667 439.4666666666666 207.1466666666667 435.2 206.5066666666667C435.2 206.5066666666667 326.1866666666666 195.2 326.4 187.3066666666667C326.6133333333333 179.4133333333334 435.4133333333333 170.6666666666667 435.6266666666666 170.6666666666667C442.88 169.6 450.3466666666667 172.8 454.1866666666666 179.6266666666667C458.6666666666666 188.3733333333333 456.1066666666666 199.4666666666667 447.36 204.3733333333333z" />
+    <glyph glyph-name="yeast"
+      unicode="&#xF5C1;"
+      horiz-adv-x="512" d=" M384 149.3333333333334C431.1466666666667 149.3333333333334 469.3333333333333 111.1466666666667 469.3333333333333 64S431.1466666666667 -21.3333333333333 384 -21.3333333333333S298.6666666666667 16.8533333333334 298.6666666666667 64L300.5866666666667 82.1333333333334C299.7333333333334 97.0666666666667 296.96 110.08 289.0666666666667 117.3333333333334C284.8 121.6 278.8266666666667 123.9466666666667 272 125.2266666666667C251.52 113.4933333333334 227.84 106.6666666666667 202.6666666666667 106.6666666666667C126.08 106.6666666666667 64 168.7466666666667 64 245.3333333333334S126.08 384 202.6666666666667 384S341.3333333333333 321.92 341.3333333333333 245.3333333333334C341.3333333333333 220.16 334.5066666666667 196.48 322.7733333333333 176C324.0533333333334 169.1733333333334 326.4 163.2000000000001 330.6666666666667 158.9333333333333C337.92 151.04 350.9333333333333 148.2666666666667 365.8666666666666 147.4133333333334L384 149.3333333333334M160 234.6666666666667C177.7066666666667 234.6666666666667 192 220.3733333333333 192 202.6666666666667S177.7066666666667 170.6666666666667 160 170.6666666666667S128 184.96 128 202.6666666666667S142.2933333333333 234.6666666666667 160 234.6666666666667M202.6666666666667 341.3333333333334C149.3333333333333 341.3333333333334 106.6666666666667 298.6666666666667 106.6666666666667 245.3333333333334S149.3333333333333 149.3333333333334 202.6666666666667 149.3333333333334S298.6666666666667 192 298.6666666666667 245.3333333333334S256 341.3333333333334 202.6666666666667 341.3333333333334z" />
+    <glyph glyph-name="yelp"
+      unicode="&#xF5C2;"
+      horiz-adv-x="512" d=" M225.92 405.3333333333333C239.5733333333333 405.3333333333333 245.3333333333333 399.5733333333333 247.04 384.64L251.52 317.0133333333333L256.64 228.48C257.0666666666667 221.0133333333334 256 213.3333333333334 253.0133333333334 206.5066666666667C248.32 196.9066666666667 237.6533333333334 194.3466666666667 228.9066666666667 200.96C224 205.0133333333334 219.9466666666667 210.3466666666667 216.5333333333333 216.1066666666668L136.96 350.9333333333334C129.28 363.9466666666667 131.6266666666667 372.48 144.4266666666667 380.5866666666667C160 390.8266666666667 207.5733333333333 405.3333333333333 225.92 405.3333333333333M316.3733333333334 131.2000000000001L321.92 129.92L404.2666666666667 100.0533333333334C418.3466666666667 94.9333333333334 422.1866666666666 87.0400000000001 416 73.1733333333334C406.6133333333333 49.0666666666667 391.2533333333334 28.5866666666667 371.6266666666667 11.7333333333333C361.8133333333334 3.2 352 4.6933333333334 345.8133333333334 15.3600000000001L297.3866666666667 99.8400000000001C289.0666666666667 114.9866666666668 299.3066666666667 132.2666666666668 316.3733333333334 131.2000000000001M96 149.3333333333334C96 165.12 96 180.2666666666667 101.3333333333333 194.7733333333333C106.0266666666667 209.0666666666667 113.7066666666667 213.3333333333333 128 207.5733333333333L205.44 174.72C215.2533333333333 170.6666666666666 220.8 163.84 220.3733333333333 152.7466666666667C219.7333333333333 141.6533333333333 212.6933333333333 136.96 203.3066666666666 133.76L124.8 107.9466666666667C109.8666666666666 103.04 102.1866666666666 107.52 98.9866666666666 122.6666666666666C97.0666666666666 131.6266666666667 95.36 140.8 96 149.3333333333333M255.36 0C254.9333333333333 -17.28 247.4666666666667 -23.8933333333333 230.6133333333333 -21.3333333333333C208.4266666666667 -17.0666666666667 187.9466666666666 -8.5333333333333 169.8133333333333 5.12C160.8533333333333 11.9466666666667 158.9333333333333 22.4 165.5466666666666 31.36L223.36 107.3066666666667C228.2666666666667 113.7066666666667 235.3066666666667 115.2 242.9866666666666 112.2133333333334C251.0933333333333 109.2266666666667 255.36 102.8266666666667 255.36 94.08V0M308.2666666666667 163.84C292.9066666666667 163.6266666666667 282.24 181.3333333333334 290.9866666666666 193.92C308.6933333333333 220.3733333333333 327.4666666666666 246.1866666666667 346.2399999999999 271.7866666666667C351.9999999999999 280.5333333333334 361.3866666666666 281.1733333333334 369.2799999999999 273.92C389.1199999999999 256 403.4133333333333 234.6666666666667 411.5199999999999 208.64C414.5066666666666 199.04 410.6666666666666 190.2933333333334 401.7066666666666 187.7333333333334L321.9199999999999 167.04L308.2666666666666 163.84z" />
+    <glyph glyph-name="yin-yang"
+      unicode="&#xF67F;"
+      horiz-adv-x="512" d=" M256 405.3333333333333C373.76 405.3333333333333 469.3333333333333 309.76 469.3333333333333 192S373.76 -21.3333333333333 256 -21.3333333333333S42.6666666666667 74.24 42.6666666666667 192S138.24 405.3333333333333 256 405.3333333333333M256 362.6666666666667C161.7066666666667 362.6666666666667 85.3333333333333 286.2933333333334 85.3333333333333 192S161.7066666666667 21.3333333333334 256 21.3333333333334C208.8533333333333 21.3333333333334 170.6666666666667 59.52 170.6666666666667 106.6666666666667S208.8533333333333 192 256 192S341.3333333333333 230.1866666666667 341.3333333333333 277.3333333333334S303.1466666666667 362.6666666666667 256 362.6666666666667M256 309.3333333333334C273.7066666666667 309.3333333333334 288 295.04 288 277.3333333333334S273.7066666666667 245.3333333333334 256 245.3333333333334S224 259.6266666666667 224 277.3333333333334S238.2933333333333 309.3333333333334 256 309.3333333333334M256 138.6666666666667C238.2933333333333 138.6666666666667 224 124.3733333333333 224 106.6666666666667S238.2933333333333 74.6666666666667 256 74.6666666666667S288 88.96 288 106.6666666666667S273.7066666666667 138.6666666666667 256 138.6666666666667z" />
+    <glyph glyph-name="youtube"
+      unicode="&#xF5C3;"
+      horiz-adv-x="512" d=" M213.3333333333333 128L324.0533333333334 192L213.3333333333333 256V128M459.9466666666667 295.04C462.72 285.0133333333333 464.64 271.5733333333334 465.9200000000001 254.5066666666667C467.4133333333334 237.44 468.0533333333334 222.72 468.0533333333334 209.92L469.3333333333333 192C469.3333333333333 145.28 465.92 110.9333333333333 459.9466666666666 88.96C454.6133333333333 69.7600000000001 442.24 57.3866666666667 423.04 52.0533333333334C413.0133333333333 49.2800000000001 394.6666666666667 47.3600000000001 366.5066666666667 46.08C338.7733333333333 44.5866666666667 313.3866666666667 43.9466666666667 289.92 43.9466666666667L256 42.6666666666667C166.6133333333333 42.6666666666667 110.9333333333333 46.08 88.96 52.0533333333334C69.76 57.3866666666667 57.3866666666667 69.76 52.0533333333333 88.96C49.28 98.9866666666667 47.36 112.4266666666667 46.08 129.4933333333334C44.5866666666667 146.5600000000001 43.9466666666667 161.2800000000001 43.9466666666667 174.0800000000001L42.6666666666667 192C42.6666666666667 238.72 46.08 273.0666666666667 52.0533333333333 295.04C57.3866666666667 314.24 69.76 326.6133333333334 88.96 331.9466666666667C98.9866666666667 334.7200000000001 117.3333333333333 336.64 145.4933333333334 337.92C173.2266666666667 339.4133333333334 198.6133333333334 340.0533333333334 222.08 340.0533333333334L256 341.3333333333334C345.3866666666667 341.3333333333334 401.0666666666667 337.92 423.04 331.9466666666667C442.2399999999999 326.6133333333334 454.6133333333333 314.24 459.9466666666666 295.04z" />
+    <glyph glyph-name="youtube-creator-studio"
+      unicode="&#xF846;"
+      horiz-adv-x="512" d=" M213.3333333333333 128L320 192L213.3333333333333 256V128M414.9333333333333 170.6666666666667L459.9466666666666 135.8933333333334C464.6399999999999 132.6933333333334 465.28 128.0000000000001 462.08 122.0266666666667L418.9866666666667 48C416 43.3066666666667 411.9466666666667 42.0266666666666 405.9733333333334 43.9466666666667L353.0666666666667 65.0666666666666C338.9866666666667 55.04 327.04 47.9999999999999 317.0133333333333 43.9466666666667L309.3333333333334 -11.9466666666667C307.6266666666667 -17.9200000000001 304.4266666666667 -21.3333333333334 298.6666666666667 -21.3333333333334H213.3333333333334C207.5733333333334 -21.3333333333334 204.3733333333334 -17.9200000000001 202.6666666666667 -11.9466666666667L194.9866666666667 43.9466666666667C182.4 49.28 170.6666666666667 56.3199999999999 158.9333333333334 65.0666666666666L106.0266666666667 43.9466666666667C100.0533333333334 42.0266666666666 96.0000000000001 43.3066666666666 93.0133333333334 48L49.92 122.0266666666667C46.72 128 47.36 132.6933333333334 52.0533333333334 135.8933333333334L97.0666666666667 170.6666666666667C96 175.5733333333334 96 182.6133333333334 96 192C96 201.3866666666667 96 208.4266666666667 97.0666666666667 213.3333333333334L52.0533333333333 247.8933333333333C47.36 251.3066666666667 46.72 256 49.92 261.9733333333334L93.0133333333333 336C96 340.6933333333334 100.0533333333333 341.9733333333334 106.0266666666667 340.0533333333334L158.9333333333333 318.9333333333334C173.0133333333333 328.9600000000001 184.96 336 194.9866666666666 340.0533333333334L202.6666666666666 395.9466666666667C204.3733333333333 401.92 207.5733333333333 405.3333333333334 213.3333333333333 405.3333333333334H298.6666666666667C304.4266666666666 405.3333333333334 307.6266666666666 401.92 309.3333333333333 395.9466666666667L317.0133333333333 340.0533333333334C329.5999999999999 334.7200000000001 341.3333333333333 327.68 353.0666666666666 318.9333333333334L405.9733333333333 340.0533333333334C411.9466666666666 341.9733333333334 415.9999999999999 340.6933333333334 418.9866666666666 336L462.0799999999999 261.9733333333334C465.2799999999999 256 464.6399999999999 251.3066666666667 459.9466666666665 247.8933333333333L414.9333333333333 213.3333333333334C416 208.4266666666667 416 201.3866666666667 416 192C416 182.6133333333334 416 175.5733333333334 414.9333333333333 170.6666666666667z" />
+    <glyph glyph-name="youtube-gaming"
+      unicode="&#xF847;"
+      horiz-adv-x="512" d=" M128 372.48C123.9466666666667 372.48 120.1066666666667 370.7733333333333 116.48 368.8533333333334L11.7333333333333 309.3333333333334C4.48 305.0666666666667 0 297.3866666666667 0 289.0666666666667V156.16C0 147.84 4.48 140.16 11.7333333333333 135.8933333333334L244.48 3.6266666666667C248.1066666666667 1.7066666666667 251.9466666666667 0 256 0C260.0533333333333 0 263.8933333333333 1.7066666666666 267.52 3.6266666666667L500.2666666666667 135.8933333333334C507.52 139.9466666666667 512 147.6266666666667 512 155.9466666666667V289.0666666666667C512 297.3866666666667 507.52 305.0666666666667 500.2666666666667 309.3333333333334L395.52 368.8533333333334C391.8933333333333 370.7733333333333 388.0533333333333 372.48 384 372.48C379.9466666666666 372.48 376.1066666666667 370.7733333333333 372.48 368.8533333333334L267.52 309.3333333333334C260.48 305.0666666666667 251.7333333333333 305.0666666666667 244.48 309.3333333333334L139.52 368.8533333333334C135.8933333333333 370.7733333333333 132.0533333333334 372.48 128 372.48M386.9866666666667 360.7466666666667L500.48 296.7466666666667L386.9866666666667 229.76V360.7466666666667z" />
+    <glyph glyph-name="youtube-tv"
+      unicode="&#xF448;"
+      horiz-adv-x="512" d=" M53.3333333333333 352H458.6666666666666C476.5866666666666 352 490.6666666666666 338.1333333333334 490.6666666666666 320V74.6666666666667C490.6666666666666 56.5333333333333 476.5866666666666 42.6666666666667 458.6666666666666 42.6666666666667H53.3333333333333C35.2 42.6666666666667 21.3333333333333 56.5333333333333 21.3333333333333 74.6666666666667V320C21.3333333333333 338.1333333333334 35.2 352 53.3333333333333 352M207.1466666666667 266.6666666666667V128L328.9600000000001 198.4L207.1466666666667 266.6666666666667M368 0H141.8666666666667C135.4666666666667 0 131.2 4.2666666666667 131.2 10.6666666666667S135.4666666666667 21.3333333333334 141.8666666666667 21.3333333333334H370.1333333333334C376.5333333333334 21.3333333333334 380.8 17.0666666666667 380.8 10.6666666666667S374.4 0 368 0z" />
+    <glyph glyph-name="z-wave"
+      unicode="&#xFAE9;"
+      horiz-adv-x="512" d=" M347.7333333333334 222.2933333333334C280.32 222.2933333333334 226.1333333333334 167.8933333333334 226.1333333333334 100.6933333333333C226.1333333333334 33.4933333333333 280.5333333333334 -21.3333333333333 347.7333333333334 -21.3333333333333C414.9333333333333 -21.3333333333333 469.3333333333333 33.4933333333333 469.3333333333333 100.6933333333333S414.9333333333333 222.2933333333333 347.7333333333334 222.2933333333333M384 40.96H281.3866666666667L337.28 128H283.9466666666667L307.2 165.76H409.1733333333333L354.7733333333333 79.36H409.1733333333333L384 40.96M347.7333333333334 364.16V405.3333333333333C179.4133333333333 405.3333333333333 42.6666666666667 268.3733333333334 42.6666666666667 100.0533333333334H83.6266666666667C84.0533333333333 246.1866666666667 202.6666666666667 364.16 347.7333333333334 364.16M347.7333333333334 282.88V323.8400000000001C224 323.8400000000001 123.9466666666667 223.36 123.9466666666667 100.0533333333333H164.9066666666667C165.3333333333333 200.96 247.2533333333334 282.88 347.7333333333334 282.88" />
+    <glyph glyph-name="zend"
+      unicode="&#xFAEA;"
+      horiz-adv-x="512" d=" M240.64 238.72S240.64 298.6666666666667 300.5866666666667 298.6666666666667H480S480 238.72 420.48 238.72H240.64M240.64 161.92S240.64 221.8666666666667 300.5866666666667 221.8666666666667H390.6133333333334S390.6133333333334 161.92 330.6666666666667 161.92H240.64M240.64 85.3333333333334S240.64 145.28 300.5866666666667 145.28H330.6666666666667S330.6666666666667 85.3333333333334 270.5066666666667 85.3333333333334H240.64M223.1466666666667 132.2666666666667V85.3333333333334H33.7066666666667L155.7333333333333 251.52H51.2V298.6666666666667H248.7466666666667L127.1466666666667 132.2666666666667H223.1466666666667z" />
+    <glyph glyph-name="zip-box"
+      unicode="&#xF5C4;"
+      horiz-adv-x="512" d=" M298.6666666666667 85.3333333333334H256V128H213.3333333333333V170.6666666666667H256V128H298.6666666666667M298.6666666666667 256H256V213.3333333333334H298.6666666666667V170.6666666666667H256V213.3333333333334H213.3333333333333V256H256V298.6666666666667H213.3333333333333V341.3333333333334H256V298.6666666666667H298.6666666666667M405.3333333333333 384H106.6666666666667C82.9866666666667 384 64 365.0133333333333 64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334C448 365.0133333333333 428.8 384 405.3333333333333 384z" />
+    <glyph glyph-name="zip-disk"
+      unicode="&#xFA22;"
+      horiz-adv-x="512" d=" M149.3333333333333 384L64 341.3333333333334V42.6666666666667C64 19.2 83.2 0 106.6666666666667 0H405.3333333333333C428.8 0 448 19.2 448 42.6666666666667V341.3333333333334L362.6666666666667 384V341.3333333333334C362.6666666666667 329.6 353.0666666666667 320 341.3333333333333 320H213.3333333333333C201.6 320 192 329.6 192 341.3333333333334V384H149.3333333333333M170.6666666666667 234.6666666666667H341.3333333333333C353.0666666666667 234.6666666666667 362.6666666666667 225.0666666666667 362.6666666666667 213.3333333333334V42.6666666666667H149.3333333333333V213.3333333333334C149.3333333333333 225.0666666666667 158.9333333333333 234.6666666666667 170.6666666666667 234.6666666666667z" />
+    <glyph glyph-name="zodiac-aquarius"
+      unicode="&#xFA7C;"
+      horiz-adv-x="512" d=" M320 183.2533333333333L256 247.2533333333334L192 183.2533333333333L128 247.2533333333334L79.1466666666667 198.1866666666667L48.8533333333333 228.48L128 307.4133333333334L192 243.4133333333334L256 307.4133333333334L320 243.4133333333334L384 307.4133333333334L463.1466666666666 228.48L432.8533333333333 198.1866666666667L384 247.2533333333334L320 183.2533333333333M384 119.2533333333333L432.8533333333333 70.1866666666667L463.1466666666666 100.48L384 179.4133333333334L320 115.4133333333334L256 179.4133333333334L192 115.4133333333334L128 179.4133333333334L48.8533333333333 100.48L79.1466666666667 70.1866666666667L128 119.2533333333333L192 55.2533333333333L256 119.2533333333333L320 55.2533333333333L384 119.2533333333333z" />
+    <glyph glyph-name="zodiac-aries"
+      unicode="&#xFA7D;"
+      horiz-adv-x="512" d=" M341.3333333333333 405.3333333333333C318.9333333333333 405.3333333333333 296.7466666666667 399.5733333333333 277.3333333333333 388.0533333333334C269.6533333333333 384 262.4 378.4533333333333 256 372.48C249.6 378.4533333333334 242.3466666666667 384 234.6666666666667 388.0533333333334C215.2533333333333 399.5733333333333 193.0666666666667 405.3333333333333 170.6666666666667 405.3333333333333C100.0533333333333 405.3333333333333 42.6666666666667 347.9466666666667 42.6666666666667 277.3333333333334S100.0533333333333 149.3333333333334 170.6666666666667 149.3333333333334V192C123.52 192 85.3333333333333 230.1866666666667 85.3333333333333 277.3333333333334S123.52 362.6666666666667 170.6666666666667 362.6666666666667C192 362.6666666666667 213.3333333333333 354.3466666666667 229.3333333333333 339.2000000000001C231.2533333333334 337.4933333333334 232.96 335.5733333333334 234.6666666666667 333.6533333333334V-21.3333333333333H277.3333333333333V333.6533333333333C279.04 335.5733333333333 280.7466666666667 337.4933333333334 282.6666666666667 339.2C316.8 371.6266666666667 370.7733333333333 370.3466666666667 403.4133333333333 336C435.84 301.8666666666667 434.3466666666667 247.8933333333333 400.2133333333334 215.4666666666667C384 200.32 363.3066666666667 192 341.3333333333333 192V149.3333333333334C411.9466666666666 149.3333333333334 469.3333333333333 206.72 469.3333333333333 277.3333333333334S411.9466666666666 405.3333333333333 341.3333333333333 405.3333333333333z" />
+    <glyph glyph-name="zodiac-cancer"
+      unicode="&#xFA7E;"
+      horiz-adv-x="512" d=" M256 362.6666666666667C138.6666666666667 362.6666666666667 42.6666666666667 286.2933333333334 42.6666666666667 192C42.6666666666667 146.7733333333333 77.8666666666667 109.44 122.88 106.6666666666667H128C175.1466666666667 106.6666666666667 213.3333333333333 144.8533333333334 213.3333333333333 192S175.1466666666667 277.3333333333334 128 277.3333333333334H122.88C158.72 311.2533333333334 206.72 329.6 256 328.5333333333334C293.76 328.9600000000001 330.6666666666667 318.5066666666667 362.6666666666667 298.6666666666667L389.3333333333333 325.3333333333334C349.44 350.2933333333334 303.1466666666667 363.3066666666667 256 362.6666666666667M128 234.6666666666667C151.4666666666667 234.6666666666667 170.6666666666667 215.4666666666667 170.6666666666667 192C170.6666666666667 168.3200000000001 151.04 149.3333333333334 128 149.3333333333334C105.8133333333333 149.3333333333334 87.4666666666667 165.9733333333334 85.3333333333333 187.7333333333334V196.2666666666667C87.4666666666667 218.24 106.0266666666667 234.6666666666667 128 234.6666666666667M389.12 277.3333333333334H384C336.8533333333333 277.3333333333334 298.6666666666667 239.1466666666667 298.6666666666667 192.0000000000001S336.8533333333333 106.6666666666667 384 106.6666666666667H389.12C353.28 72.7466666666667 305.28 54.4 256 55.4666666666667C218.24 55.0400000000001 181.3333333333333 65.4933333333333 149.3333333333333 85.3333333333334L122.88 58.8800000000001C162.7733333333333 33.92 208.8533333333333 21.3333333333334 256 21.3333333333334C373.3333333333333 21.3333333333334 469.3333333333333 97.7066666666667 469.3333333333333 192C469.3333333333333 237.2266666666667 434.1333333333334 274.5600000000001 389.12 277.3333333333334M384 149.3333333333334C360.5333333333333 149.3333333333334 341.3333333333333 168.5333333333334 341.3333333333333 192C341.3333333333333 215.68 360.9600000000001 234.6666666666667 384 234.6666666666667C406.1866666666666 234.6666666666667 424.5333333333333 218.0266666666667 426.6666666666667 196.2666666666667V187.7333333333334C424.5333333333333 165.76 405.9733333333334 149.3333333333333 384 149.3333333333333z" />
+    <glyph glyph-name="zodiac-capricorn"
+      unicode="&#xFA7F;"
+      horiz-adv-x="512" d=" M320 170.6666666666667C305.0666666666667 170.6666666666667 290.3466666666667 166.6133333333334 277.3333333333333 158.9333333333333V320C277.3333333333333 355.4133333333334 248.7466666666667 384 213.3333333333333 384C197.3333333333333 384 182.4 377.8133333333334 170.6666666666667 367.36C158.9333333333333 378.0266666666667 143.7866666666667 384 128 384V341.3333333333334C139.7333333333333 341.3333333333334 149.3333333333333 331.7333333333334 149.3333333333333 320V106.6666666666667H192V320C192 331.7333333333334 201.6 341.3333333333334 213.3333333333333 341.3333333333334S234.6666666666667 331.7333333333334 234.6666666666667 320V85.3333333333334C234.6666666666667 61.8666666666667 215.4666666666667 42.6666666666667 192 42.6666666666667V0C216.5333333333333 0 240 10.6666666666667 256 29.44C286.9333333333333 -6.1866666666666 340.6933333333334 -10.0266666666667 376.32 21.3333333333334C411.9466666666667 51.6266666666667 416 105.6 384.8533333333333 141.2266666666667C368.64 160 344.9600000000001 170.6666666666667 320 170.6666666666667M320 42.6666666666667C296.5333333333333 42.6666666666667 277.3333333333333 61.8666666666667 277.3333333333333 85.3333333333334S296.5333333333333 128 320 128S362.6666666666667 108.8 362.6666666666667 85.3333333333334S343.4666666666667 42.6666666666667 320 42.6666666666667z" />
+    <glyph glyph-name="zodiac-gemini"
+      unicode="&#xFA80;"
+      horiz-adv-x="512" d=" M384 334.9333333333334C412.8 341.9733333333334 440.7466666666667 351.1466666666667 468.0533333333333 362.6666666666667L451.84 402.3466666666667C389.76 376.32 323.2 362.6666666666667 256 362.6666666666667C188.8 362.6666666666667 122.24 375.8933333333333 60.16 401.7066666666667L43.9466666666667 362.6666666666667C71.2533333333333 351.1466666666667 99.2 341.9733333333334 128 334.9333333333334V49.0666666666667C99.2 42.0266666666668 71.2533333333333 32.8533333333334 43.9466666666667 21.3333333333334L60.16 -18.3466666666666C185.6 33.7066666666667 326.4 33.7066666666667 451.84 -18.3466666666666L468.0533333333333 21.3333333333334C440.7466666666667 32.8533333333334 412.8 42.0266666666666 384 49.0666666666667V334.9333333333334M170.6666666666667 57.6V326.6133333333334C198.8266666666667 322.3466666666667 227.4133333333334 320 256 320C284.5866666666667 320 313.1733333333333 322.3466666666667 341.3333333333333 326.6133333333334V57.3866666666667C284.8 66.1333333333334 227.2 66.1333333333334 170.6666666666667 57.3866666666667V57.6000000000001z" />
+    <glyph glyph-name="zodiac-leo"
+      unicode="&#xFA81;"
+      horiz-adv-x="512" d=" M426.6666666666667 85.3333333333334C426.6666666666667 49.92 398.08 21.3333333333334 362.6666666666667 21.3333333333334C328.1066666666667 23.04 300.3733333333334 50.7733333333333 298.6666666666667 85.3333333333334C302.08 119.68 309.3333333333333 153.6 320 186.4533333333334C331.52 222.9333333333333 338.56 260.48 341.3333333333333 298.6666666666667C339.84 356.9066666666667 292.9066666666667 403.84 234.6666666666667 405.3333333333333C176.4266666666667 403.8400000000001 129.4933333333334 356.9066666666667 128 298.6666666666667C131.2 266.0266666666667 138.6666666666667 234.0266666666667 149.3333333333333 202.6666666666667L153.8133333333333 187.7333333333334C108.8 202.0266666666667 61.0133333333333 177.0666666666667 46.72 132.2666666666667C32 87.2533333333333 57.1733333333334 39.2533333333333 102.1866666666667 24.96C147.2 10.6666666666667 194.9866666666667 35.6266666666667 209.28 80.64C212.0533333333334 88.96 213.3333333333333 97.92 213.3333333333333 106.6666666666667C209.92 143.5733333333334 202.6666666666667 180.0533333333334 190.08 215.0400000000001C180.6933333333333 242.1333333333334 174.08 270.0800000000001 170.6666666666667 298.6666666666667C172.3733333333333 333.2266666666667 200.1066666666666 360.9600000000001 234.6666666666667 362.6666666666667C269.2266666666667 360.9600000000001 296.96 333.2266666666667 298.6666666666667 298.6666666666667C295.2533333333334 264.3200000000001 288 230.4000000000001 277.3333333333333 197.5466666666667C265.8133333333334 161.0666666666667 258.7733333333333 123.52 256 85.3333333333334C257.4933333333334 27.0933333333334 304.4266666666666 -19.84 362.6666666666667 -21.3333333333333C421.5466666666666 -21.3333333333333 469.3333333333333 26.4533333333334 469.3333333333333 85.3333333333334H426.6666666666667M128 64C104.5333333333333 64 85.3333333333333 83.2 85.3333333333333 106.6666666666667S104.5333333333333 149.3333333333334 128 149.3333333333334S170.6666666666667 130.1333333333333 170.6666666666667 106.6666666666667S151.4666666666667 64 128 64z" />
+    <glyph glyph-name="zodiac-libra"
+      unicode="&#xFA82;"
+      horiz-adv-x="512" d=" M426.6666666666667 106.6666666666667V64H277.3333333333333V108.5866666666667C341.3333333333333 120.3200000000001 383.1466666666667 181.3333333333334 371.4133333333333 245.3333333333334C359.68 309.3333333333334 298.6666666666667 351.1466666666667 234.6666666666667 339.4133333333334C170.6666666666667 327.4666666666667 128.8533333333333 266.6666666666667 140.5866666666667 202.6666666666667C149.3333333333333 154.88 186.88 117.3333333333334 234.6666666666667 108.5866666666667V64H85.3333333333333V106.6666666666667H147.6266666666667C114.56 136.7466666666667 96 179.4133333333334 96 224C96 312.32 167.68 384 256 384C344.32 384 416 312.3200000000001 416 224C416 179.4133333333334 397.44 136.7466666666667 364.3733333333333 106.6666666666667H426.6666666666667M426.6666666666667 42.6666666666667H85.3333333333333V0H426.6666666666667V42.6666666666667z" />
+    <glyph glyph-name="zodiac-pisces"
+      unicode="&#xFA83;"
+      horiz-adv-x="512" d=" M426.6666666666667 213.3333333333334H384C386.3466666666667 273.2800000000001 399.5733333333333 332.3733333333334 422.6133333333333 387.84L384 404.0533333333334C358.6133333333333 343.4666666666667 344.1066666666667 279.04 341.3333333333333 213.3333333333334H170.6666666666667C167.8933333333333 279.04 153.3866666666667 343.4666666666667 128 404.0533333333334L88.32 387.84C111.7866666666667 332.5866666666667 125.2266666666667 273.4933333333334 128 213.3333333333334H85.3333333333333V170.6666666666667H128C125.6533333333333 110.72 112.4266666666667 51.6266666666667 89.3866666666667 -3.84L128 -20.0533333333333C153.3866666666667 40.5333333333333 167.8933333333333 104.96 170.6666666666667 170.6666666666667H341.3333333333333C344.1066666666667 104.96 358.6133333333333 40.5333333333333 384 -20.0533333333333L423.68 -3.8399999999999C400.2133333333333 51.4133333333334 386.7733333333333 110.5066666666668 384 170.6666666666668H426.6666666666667V213.3333333333334z" />
+    <glyph glyph-name="zodiac-sagittarius"
+      unicode="&#xFA84;"
+      horiz-adv-x="512" d=" M469.3333333333333 405.3333333333333V192H426.6666666666667V332.5866666666667L222.08 128L271.1466666666667 79.1466666666667L240.8533333333334 48.8533333333334L192 97.92L79.1466666666667 -15.1466666666666L48.8533333333333 15.1466666666667L161.92 128L112.8533333333333 176.8533333333334L143.1466666666667 207.1466666666667L192 158.0800000000001L396.5866666666667 362.6666666666667H256V405.3333333333333H469.3333333333333z" />
+    <glyph glyph-name="zodiac-scorpio"
+      unicode="&#xFA85;"
+      horiz-adv-x="512" d=" M377.8133333333334 121.8133333333334L347.52 91.52L375.2533333333334 64H341.3333333333333C317.8666666666667 64 298.6666666666667 83.2 298.6666666666667 106.6666666666667V320C298.6666666666667 355.4133333333334 270.08 384 234.6666666666667 384C218.6666666666667 384 203.7333333333334 377.8133333333334 192 367.36C167.68 389.12 130.9866666666667 389.12 106.6666666666667 367.36C94.9333333333333 378.0266666666667 79.7866666666667 384 64 384V341.3333333333334C75.7333333333333 341.3333333333334 85.3333333333333 331.7333333333334 85.3333333333333 320V106.6666666666667H128V320C128 331.7333333333334 137.6 341.3333333333334 149.3333333333333 341.3333333333334S170.6666666666667 331.7333333333334 170.6666666666667 320V106.6666666666667H213.3333333333333V320C213.3333333333333 331.7333333333334 222.9333333333333 341.3333333333334 234.6666666666667 341.3333333333334S256 331.7333333333334 256 320V106.6666666666667C256 59.52 294.1866666666666 21.3333333333334 341.3333333333333 21.3333333333334H375.2533333333334L347.52 -6.1866666666666L377.8133333333334 -36.48L456.7466666666667 42.6666666666667L377.8133333333334 121.8133333333334z" />
+    <glyph glyph-name="zodiac-taurus"
+      unicode="&#xFA86;"
+      horiz-adv-x="512" d=" M332.5866666666667 256C377.6 282.88 405.3333333333333 331.52 405.3333333333333 384H362.6666666666667C362.6666666666667 325.12 314.88 277.3333333333334 256 277.3333333333334S149.3333333333333 325.12 149.3333333333333 384H106.6666666666667C106.6666666666667 331.52 134.4 282.88 179.4133333333333 256C108.5866666666667 213.3333333333334 85.3333333333333 122.0266666666667 128 51.2C170.0266666666667 -19.6266666666667 261.76 -42.6666666666666 332.5866666666667 0C403.4133333333333 41.8133333333334 426.6666666666667 133.5466666666667 384 204.3733333333333C371.6266666666667 225.4933333333334 353.7066666666666 243.4133333333334 332.5866666666667 256M256 21.3333333333334C197.12 21.3333333333334 149.3333333333333 69.1200000000001 149.3333333333333 128S197.12 234.6666666666667 256 234.6666666666667S362.6666666666667 186.88 362.6666666666667 128S314.88 21.3333333333334 256 21.3333333333334z" />
+    <glyph glyph-name="zodiac-virgo"
+      unicode="&#xFA87;"
+      horiz-adv-x="512" d=" M394.6666666666667 39.8933333333334C426.6666666666667 68.9066666666667 426.6666666666667 124.16 426.6666666666667 149.3333333333334C426.6666666666667 196.48 388.48 234.6666666666667 341.3333333333333 234.6666666666667C326.4 234.6666666666667 311.4666666666667 230.4000000000001 298.6666666666667 222.72V320C298.6666666666667 355.4133333333334 270.08 384 234.6666666666667 384C218.6666666666667 384 203.7333333333334 377.8133333333334 192 367.36C167.68 389.12 130.9866666666667 389.12 106.6666666666667 367.36C94.9333333333333 378.0266666666667 79.7866666666667 384 64 384V341.3333333333334C75.7333333333333 341.3333333333334 85.3333333333333 331.7333333333334 85.3333333333333 320V106.6666666666667H128V320C128 331.7333333333334 137.6 341.3333333333334 149.3333333333333 341.3333333333334S170.6666666666667 331.7333333333334 170.6666666666667 320V106.6666666666667H213.3333333333333V320C213.3333333333333 331.7333333333334 222.9333333333333 341.3333333333334 234.6666666666667 341.3333333333334S256 331.7333333333334 256 320V149.3333333333334C256 124.16 256 68.9066666666667 288 39.8933333333334C271.36 31.1466666666667 253.44 24.7466666666667 234.6666666666667 21.3333333333334V-21.3333333333333C262.1866666666666 -21.3333333333333 316.5866666666667 5.5466666666667 341.3333333333333 18.5600000000001C366.08 5.5466666666667 420.48 -21.3333333333333 448 -21.3333333333333V21.3333333333334C429.2266666666667 24.7466666666667 411.3066666666667 31.1466666666667 394.6666666666667 39.8933333333334M341.3333333333333 192C364.8 192 384 172.8 384 149.3333333333334C384 87.04 372.48 64 341.3333333333333 64S298.6666666666667 87.04 298.6666666666667 149.3333333333334C298.6666666666667 172.8 317.8666666666667 192 341.3333333333333 192z" />
+  </font>
+</defs>
+</svg>