forked from j62/ctbrec
1
0
Fork 0

Added docs folder for github.io pages

This commit is contained in:
0xboobface 2018-07-01 18:23:44 +02:00
parent 1ab902892d
commit 8af7073d22
90 changed files with 16011 additions and 0 deletions

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto

775
docs/css/base.css Normal file
View File

@ -0,0 +1,775 @@
/* ===================================================================
*
* Infinity v1.0 Base Stylesheet
* 01-02-2017
* ------------------------------------------------------------------
* TOC:
* 01. reset
* 02. basic/base setup styles
* 03. grid
* 04. MISC
*
* =================================================================== */
/* ===================================================================
* 01. reset - normalize.css v3.0.2 | MIT License | git.io/normalize
*
* ------------------------------------------------------------------- */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-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: transparent;
}
a:active, a:hover {
outline: 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b, strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
mark {
background: #ff0;
color: #000;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 1em 40px;
}
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
pre {
overflow: auto;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
button, input, optgroup,
select, textarea {
color: inherit;
font: inherit;
margin: 0;
}
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 {
border: 0;
padding: 0;
}
input {
line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
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-appearance: textfield;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
legend {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td, th {
padding: 0;
}
/* ===================================================================
* 02. basic/base setup styles - (_basic.scss)
*
* ------------------------------------------------------------------- */
html {
font-size: 62.5%;
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
body {
font-weight: normal;
line-height: 1;
text-rendering: optimizeLegibility;
word-wrap: break-word;
-webkit-overflow-scrolling: touch;
-webkit-text-size-adjust: none;
}
body, input, button {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}
/* -------------------------------------------------------------------
* Media - (_basic.scss)
* ------------------------------------------------------------------- */
img, video {
max-width: 100%;
height: auto;
}
/* -------------------------------------------------------------------
* Typography resets - (_basic.scss)
* ------------------------------------------------------------------- */
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td {
margin: 0;
padding: 0;
}
h1, h2, h3, h4, h5, h6 {
-webkit-font-variant-ligatures: common-ligatures;
-moz-font-variant-ligatures: common-ligatures;
font-variant-ligatures: common-ligatures;
text-rendering: optimizeLegibility;
}
em, i {
font-style: italic;
line-height: inherit;
}
strong, b {
font-weight: bold;
line-height: inherit;
}
small {
font-size: 60%;
line-height: inherit;
}
ol, ul {
list-style: none;
}
li {
display: block;
}
/* -------------------------------------------------------------------
* links - (_basic.scss)
* ------------------------------------------------------------------- */
a {
text-decoration: none;
line-height: inherit;
}
a img {
border: none;
}
/* -------------------------------------------------------------------
* inputs - (_basic.scss)
* ------------------------------------------------------------------- */
fieldset {
margin: 0;
padding: 0;
}
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
appearance: none;
}
/* ===================================================================
* 03. grid - (_grid.scss)
*
* ------------------------------------------------------------------- */
.row {
width: 94%;
max-width: 1170px;
margin: 0 auto;
}
.row:before, .row:after {
content: "";
display: table;
}
.row:after {
clear: both;
}
.row .row {
width: auto;
max-width: none;
margin-left: -20px;
margin-right: -20px;
}
[class*="col-"], .bgrid {
float: left;
}
[class*="col-"] + [class*="col-"].end {
float: right;
}
[class*="col-"] {
padding: 0 20px;
}
.col-one {
width: 8.33333%;
}
.col-two, .col-1-6 {
width: 16.66667%;
}
.col-three, .col-1-4 {
width: 25%;
}
.col-four, .col-1-3 {
width: 33.33333%;
}
.col-five {
width: 41.66667%;
}
.col-six, .col-1-2 {
width: 50%;
}
.col-seven {
width: 58.33333%;
}
.col-eight, .col-2-3 {
width: 66.66667%;
}
.col-nine, .col-3-4 {
width: 75%;
}
.col-ten, .col-5-6 {
width: 83.33333%;
}
.col-eleven {
width: 91.66667%;
}
.col-twelve, .col-full {
width: 100%;
}
/* -------------------------------------------------------------------
* small screens - (_grid.scss)
* ------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
.row .row {
margin-left: -18px;
margin-right: -18px;
}
[class*="col-"] {
padding: 0 18px;
}
}
/* -------------------------------------------------------------------
* tablets - (_grid.scss)
* ------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
.row {
width: auto;
padding-left: 30px;
padding-right: 30px;
}
.row .row {
padding-left: 0;
padding-right: 0;
margin-left: -15px;
margin-right: -15px;
}
[class*="col-"] {
padding: 0 15px;
}
.tab-1-4 {
width: 25%;
}
.tab-1-3 {
width: 33.33333%;
}
.tab-1-2 {
width: 50%;
}
.tab-2-3 {
width: 66.66667%;
}
.tab-3-4 {
width: 75%;
}
.tab-full {
width: 100%;
}
}
/* -------------------------------------------------------------------
* large mobile devices - (_grid.scss)
* ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
.row {
padding-left: 25px;
padding-right: 25px;
}
.row .row {
margin-left: -10px;
margin-right: -10px;
}
[class*="col-"] {
padding: 0 10px;
}
.mob-1-4 {
width: 25%;
}
.mob-1-2 {
width: 50%;
}
.mob-3-4 {
width: 75%;
}
.mob-full {
width: 100%;
}
}
/* -------------------------------------------------------------------
* small mobile devices - (_grid.scss)
* ------------------------------------------------------------------- */
@media screen and (max-width: 400px) {
.row .row {
padding-left: 0;
padding-right: 0;
margin-left: 0;
margin-right: 0;
}
[class*="col-"] {
width: 100% !important;
float: none !important;
clear: both !important;
margin-left: 0;
margin-right: 0;
padding: 0;
}
[class*="col-"] + [class*="col-"].end {
float: none;
}
}
/* ===================================================================
* block grids - (_grid.scss)
*
* ------------------------------------------------------------------- */
[class*="block-"]:before, [class*="block-"]:after {
content: "";
display: table;
}
[class*="block-"]:after {
clear: both;
}
.block-1-6 .bgrid {
width: 16.66667%;
}
.block-1-4 .bgrid {
width: 25%;
}
.block-1-3 .bgrid {
width: 33.33333%;
}
.block-1-2 .bgrid {
width: 50%;
}
/**
* Clearing for block grid columns. Allow columns with
* different heights to align properly.
*/
.block-1-6 .bgrid:nth-child(6n+1),
.block-1-4 .bgrid:nth-child(4n+1),
.block-1-3 .bgrid:nth-child(3n+1),
.block-1-2 .bgrid:nth-child(2n+1) {
clear: both;
}
/* -------------------------------------------------------------------
* small screens - (_grid.scss)
* ------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
.block-s-1-6 .bgrid {
width: 16.66667%;
}
.block-s-1-4 .bgrid {
width: 25%;
}
.block-s-1-3 .bgrid {
width: 33.33333%;
}
.block-s-1-2 .bgrid {
width: 50%;
}
.block-s-full .bgrid {
width: 100%;
clear: both;
}
[class*="block-s-"] .bgrid:nth-child(n) {
clear: none;
}
.block-s-1-6 .bgrid:nth-child(6n+1),
.block-s-1-4 .bgrid:nth-child(4n+1),
.block-s-1-3 .bgrid:nth-child(3n+1),
.block-s-1-2 .bgrid:nth-child(2n+1) {
clear: both;
}
}
/* -------------------------------------------------------------------
* tablets - (_grid.scss)
* ------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
.block-tab-1-6 .bgrid {
width: 16.66667%;
}
.block-tab-1-4 .bgrid {
width: 25%;
}
.block-tab-1-3 .bgrid {
width: 33.33333%;
}
.block-tab-1-2 .bgrid {
width: 50%;
}
.block-tab-full .bgrid {
width: 100%;
clear: both;
}
[class*="block-tab-"] .bgrid:nth-child(n) {
clear: none;
}
.block-tab-1-6 .bgrid:nth-child(6n+1),
.block-tab-1-4 .bgrid:nth-child(4n+1),
.block-tab-1-3 .bgrid:nth-child(3n+1),
.block-tab-1-2 .bgrid:nth-child(2n+1) {
clear: both;
}
}
/* -------------------------------------------------------------------
* large mobile devices - (_grid.scss)
* ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
.block-mob-1-6 .bgrid {
width: 16.66667%;
}
.block-mob-1-4 .bgrid {
width: 25%;
}
.block-mob-1-3 .bgrid {
width: 33.33333%;
}
.block-mob-1-2 .bgrid {
width: 50%;
}
.block-mob-full .bgrid {
width: 100%;
clear: both;
}
[class*="block-mob-"] .bgrid:nth-child(n) {
clear: none;
}
.block-mob-1-6 .bgrid:nth-child(6n+1),
.block-mob-1-4 .bgrid:nth-child(4n+1),
.block-mob-1-3 .bgrid:nth-child(3n+1),
.block-mob-1-2 .bgrid:nth-child(2n+1) {
clear: both;
}
}
/* -------------------------------------------------------------------
* stack on small mobile devices - (_grid.scss)
* ------------------------------------------------------------------- */
@media screen and (max-width: 400px) {
.stack .bgrid {
width: 100% !important;
float: none !important;
clear: both !important;
margin-left: 0;
margin-right: 0;
}
}
/* ===================================================================
* 04. MISC - (_grid.scss)
*
* ------------------------------------------------------------------- */
/* Clearing - (http://nicolasgallagher.com/micro-clearfix-hack/
*/
.group:before, .group:after {
content: "";
display: table;
}
.group:after {
clear: both;
}
/* Misc Helper Styles
*/
.hide {
display: none;
}
.invisible {
visibility: hidden;
}
.antialiased {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.overflow-hidden {
overflow: hidden;
}
.remove-bottom {
margin-bottom: 0;
}
.half-bottom {
margin-bottom: 1.5rem !important;
}
.add-bottom {
margin-bottom: 3rem !important;
}
.no-border {
border: none;
}
.full-width {
width: 100%;
}
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.pull-left {
float: left;
}
.pull-right {
float: right;
}
.align-center {
margin-left: auto;
margin-right: auto;
text-align: center;
}

2337
docs/css/font-awesome/css/font-awesome.css vendored Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 434 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

42
docs/css/fonts.css Normal file
View File

@ -0,0 +1,42 @@
/* ===================================================================
* fonts.scss)
*
* ------------------------------------------------------------------- */
/*
* Libre Baskerville
================================================================================ */
@font-face {
font-family: "librebaskerville-regular";
src: url("../fonts/librebaskerville/librebaskerville-regular-webfont.woff2") format("woff2"), url("../fonts/librebaskerville/librebaskerville-regular-webfont.woff") format("woff");
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: "librebaskerville-italic";
src: url("../fonts/librebaskerville/librebaskerville-italic-webfont.woff2") format("woff2"), url("../fonts/librebaskerville/librebaskerville-italic-webfont.woff") format("woff");
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: "librebaskerville-bold";
src: url("../fonts/librebaskerville/librebaskerville-bold-webfont.woff2") format("woff2"), url("../fonts/librebaskerville/librebaskerville-bold-webfont.woff") format("woff");
font-style: normal;
font-weight: normal;
}
/*
* Montserrat
================================================================================ */
@font-face {
font-family: "montserrat-regular";
src: url("../fonts/montserrat/montserrat-regular-webfont.woff2") format("woff2"), url("../fonts/montserrat/montserrat-regular-webfont.woff") format("woff");
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: "montserrat-bold";
src: url("../fonts/montserrat/montserrat-bold-webfont.woff2") format("woff2"), url("../fonts/montserrat/montserrat-bold-webfont.woff") format("woff");
font-style: normal;
font-weight: normal;
}

2995
docs/css/main.css Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -0,0 +1,241 @@
<?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>Generated by IcoMoon</metadata>
<defs>
<font id="icomoon" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe900;" glyph-name="align-center" d="M810.667 674.133h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 503.467h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 332.8h-554.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h554.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM725.333 162.133h-384c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h384c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe901;" glyph-name="align-justify" d="M810.667 674.133h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 503.467h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 332.8h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 162.133h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe902;" glyph-name="align-left" d="M810.667 674.133h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512 503.467h-298.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h298.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM768 332.8h-554.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h554.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM640 162.133h-426.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe903;" glyph-name="align-right" d="M810.667 674.133h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 503.467h-298.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h298.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 332.8h-554.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h554.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 162.133h-426.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe904;" glyph-name="alt" d="M981.333 204.8h-426.667c-17.067 0-29.867 8.533-38.4 21.333l-200.533 362.667h-273.067c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h298.667c17.067 0 29.867-8.533 38.4-21.333l200.533-362.667h401.067c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 588.8h-426.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe905;" glyph-name="arrow-right" d="M640 204.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l213.333 213.333c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-213.333-213.333c-8.533-8.533-17.067-12.8-29.867-12.8zM853.333 418.133c-12.8 0-21.333 4.267-29.867 12.8l-213.333 213.333c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l213.333-213.333c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM853.333 418.133h-682.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe906;" glyph-name="arrow-up" d="M725.333 546.133c-12.8 0-21.333 4.267-29.867 12.8l-213.333 213.333c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l213.333-213.333c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM298.667 546.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l213.333 213.333c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-213.333-213.333c-8.533-8.533-17.067-12.8-29.867-12.8zM512 76.8c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-682.667c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe907;" glyph-name="artboard" d="M170.667 34.133c-25.6 0-42.667 17.067-42.667 42.667v640c0 25.6 17.067 42.667 42.667 42.667h810.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-768v-597.333c0-25.6-17.067-42.667-42.667-42.667zM853.333 162.133h-810.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h768v597.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-640c0-25.6-17.067-42.667-42.667-42.667zM981.333 76.8c-8.533 0-17.067 4.267-25.6 8.533l-938.667 682.667c-17.067 12.8-21.333 38.4-8.533 59.733 12.8 17.067 42.667 21.333 59.733 8.533l938.667-682.667c17.067-12.8 21.333-42.667 8.533-59.733-8.533-12.8-21.333-17.067-34.133-17.067z" />
<glyph unicode="&#xe908;" glyph-name="at" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667c0 234.667-192 426.667-426.667 426.667s-426.667-192-426.667-426.667 192-426.667 426.667-426.667c115.2 0 221.867 42.667 302.933 123.733 17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733c-98.133-98.133-226.133-149.333-362.667-149.333zM853.333 290.133c-93.867 0-170.667 76.8-170.667 170.667 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-46.933 38.4-85.333 85.333-85.333s85.333 38.4 85.333 85.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-93.867-76.8-170.667-170.667-170.667zM512 204.8c-140.8 0-256 115.2-256 256s115.2 256 256 256 256-115.2 256-256-115.2-256-256-256zM512 631.467c-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667 170.667 76.8 170.667 170.667-76.8 170.667-170.667 170.667zM725.333 418.133c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-213.333c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe909;" glyph-name="attachment" d="M320 140.8c-34.133 0-64 12.8-89.6 38.4-51.2 51.2-51.2 132.267 0 179.2 17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733c-25.6-25.6-59.733-38.4-89.6-38.4zM861.867 405.333c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733 51.2 51.2 51.2 132.267 0 179.2-46.933 46.933-132.267 46.933-179.2 0-17.067-17.067-42.667-17.067-59.733 0s-17.067 42.667 0 59.733c38.4 42.667 89.6 64 149.333 64s110.933-21.333 149.333-59.733c81.067-81.067 81.067-217.6 0-302.933-8.533-8.533-21.333-12.8-29.867-12.8zM256 285.867c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l362.667 362.667c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-362.667-362.667c-4.267-8.533-17.067-12.8-29.867-12.8zM499.2 42.667c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l362.667 362.667c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-362.667-362.667c-8.533-8.533-17.067-12.8-29.867-12.8zM379.733 166.4c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l362.667 362.667c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-362.667-362.667c-8.533-12.8-21.333-12.8-29.867-12.8zM136.533 405.333c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l482.133 482.133c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-482.133-482.133c-8.533-8.533-17.067-12.8-29.867-12.8zM320-29.867c-76.8 0-153.6 29.867-209.067 85.333s-85.333 132.267-85.333 209.067 29.867 153.6 85.333 209.067c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733c-38.4-38.4-64-93.867-64-149.333s21.333-110.933 64-149.333c81.067-81.067 217.6-81.067 302.933 0 17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733c-64-59.733-136.533-85.333-213.333-85.333z" />
<glyph unicode="&#xe90a;" glyph-name="backward" d="M896 162.133c-8.533 0-17.067 4.267-25.6 8.533l-384 256c-8.533 8.533-17.067 21.333-17.067 34.133s8.533 25.6 17.067 34.133l384 256c12.8 8.533 29.867 8.533 42.667 0 17.067-4.267 25.6-17.067 25.6-34.133v-512c0-17.067-8.533-29.867-21.333-38.4-8.533-4.267-12.8-4.267-21.333-4.267zM588.8 460.8l264.533-174.933v349.867l-264.533-174.933zM512 162.133c-8.533 0-17.067 4.267-25.6 8.533l-384 256c-8.533 8.533-17.067 21.333-17.067 34.133s8.533 25.6 17.067 34.133l384 256c12.8 8.533 29.867 8.533 42.667 0 17.067-4.267 25.6-17.067 25.6-34.133v-512c0-17.067-8.533-29.867-21.333-38.4-8.533-4.267-12.8-4.267-21.333-4.267zM204.8 460.8l264.533-174.933v349.867l-264.533-174.933zM128 162.133c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe90b;" glyph-name="badge" d="M512 290.133c-187.733 0-341.333 153.6-341.333 341.333s153.6 341.333 341.333 341.333 341.333-153.6 341.333-341.333-153.6-341.333-341.333-341.333zM512 887.467c-140.8 0-256-115.2-256-256s115.2-256 256-256 256 115.2 256 256-115.2 256-256 256zM682.667-51.2c-8.533 0-12.8 0-17.067 4.267l-153.6 76.8-153.6-76.8c-12.8-8.533-29.867-4.267-42.667 0-8.533 8.533-17.067 25.6-17.067 38.4v384c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-315.733l110.933 55.467c12.8 4.267 25.6 4.267 38.4 0l110.933-55.467v315.733c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-384c0-12.8-8.533-29.867-21.333-38.4-8.533 0-17.067-4.267-25.6-4.267z" />
<glyph unicode="&#xe90c;" glyph-name="bank-note" d="M981.333 119.467h-938.667c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM85.333 204.8h853.333v512h-853.333v-512zM512 290.133c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM512 546.133c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM85.333 546.133c-21.333 0-38.4 4.267-59.733 8.533-21.333 8.533-29.867 34.133-21.333 55.467s34.133 34.133 55.467 25.6c8.533-4.267 17.067-4.267 25.6-4.267 46.933 0 85.333 38.4 85.333 85.333 0 8.533 0 17.067-4.267 25.6-8.533 25.6 0 46.933 25.6 55.467 21.333 8.533 46.933 0 55.467-21.333 4.267-21.333 8.533-38.4 8.533-59.733 0-93.867-76.8-170.667-170.667-170.667zM938.667 546.133c-93.867 0-170.667 76.8-170.667 170.667 0 21.333 4.267 38.4 8.533 59.733 8.533 21.333 34.133 34.133 55.467 25.6s34.133-34.133 25.6-55.467c-4.267-12.8-4.267-21.333-4.267-29.867 0-46.933 38.4-85.333 85.333-85.333 8.533 0 17.067 0 25.6 4.267 21.333 8.533 46.933-4.267 55.467-25.6s-4.267-46.933-25.6-55.467c-17.067-4.267-34.133-8.533-55.467-8.533zM204.8 119.467c-4.267 0-8.533 0-17.067 4.267-21.333 8.533-34.133 34.133-25.6 55.467 8.533 8.533 8.533 17.067 8.533 25.6 0 46.933-38.4 85.333-85.333 85.333-8.533 0-17.067 0-25.6-4.267-21.333-8.533-46.933 4.267-55.467 25.6s4.267 46.933 25.6 55.467c17.067 4.267 34.133 8.533 55.467 8.533 93.867 0 170.667-76.8 170.667-170.667 0-21.333-4.267-38.4-8.533-59.733-8.533-17.067-25.6-25.6-42.667-25.6zM819.2 119.467c-17.067 0-34.133 8.533-38.4 25.6-8.533 21.333-12.8 38.4-12.8 59.733 0 93.867 76.8 170.667 170.667 170.667 21.333 0 38.4-4.267 59.733-8.533 21.333-8.533 34.133-34.133 25.6-55.467s-34.133-34.133-55.467-25.6c-12.8 4.267-21.333 4.267-29.867 4.267-46.933 0-85.333-38.4-85.333-85.333 0-8.533 0-17.067 4.267-25.6 8.533-21.333-4.267-46.933-25.6-55.467-4.267-4.267-8.533-4.267-12.8-4.267z" />
<glyph unicode="&#xe90d;" glyph-name="bar-chart" d="M1024-51.2h-810.667c-93.867 0-170.667 76.8-170.667 170.667v810.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-810.667c0-46.933 38.4-85.333 85.333-85.333h810.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM256 119.467c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-213.333c0-25.6-17.067-42.667-42.667-42.667zM426.667 119.467c-25.6 0-42.667 17.067-42.667 42.667v384c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-384c0-25.6-17.067-42.667-42.667-42.667zM597.333 119.467c-25.6 0-42.667 17.067-42.667 42.667v298.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667zM768 119.467c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667zM938.667 119.467c-25.6 0-42.667 17.067-42.667 42.667v256c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe90e;" glyph-name="basket-ball" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM217.6 51.2c-12.8 0-25.6 4.267-34.133 17.067-12.8 17.067-8.533 46.933 8.533 59.733 93.867 68.267 149.333 196.267 149.333 332.8 0 85.333-21.333 162.133-59.733 230.4-25.6 42.667-55.467 76.8-89.6 102.4-17.067 12.8-21.333 38.4-8.533 59.733 12.8 17.067 42.667 21.333 59.733 8.533 42.667-34.133 81.067-76.8 110.933-128 46.933-76.8 72.533-170.667 72.533-268.8 0-166.4-68.267-315.733-183.467-405.333-8.533-4.267-17.067-8.533-25.6-8.533zM806.4 51.2c-8.533 0-17.067 4.267-25.6 8.533-115.2 85.333-183.467 234.667-183.467 401.067 0 102.4 25.6 196.267 72.533 277.333 29.867 46.933 64 89.6 106.667 123.733 17.067 12.8 46.933 8.533 59.733-8.533s8.533-46.933-8.533-59.733c-34.133-25.6-64-59.733-85.333-98.133-38.4-68.267-59.733-149.333-59.733-234.667 0-136.533 55.467-264.533 149.333-332.8 17.067-12.8 21.333-42.667 8.533-59.733-8.533-8.533-21.333-17.067-34.133-17.067zM554.667 418.133c-64 0-119.467 0-170.667 4.267-136.533 4.267-243.2 17.067-332.8 29.867-21.333 4.267-38.4 25.6-38.4 46.933s25.6 38.4 46.933 38.4c85.333-12.8 196.267-25.6 324.267-29.867 51.2 0 106.667-4.267 170.667-4.267 29.867 0 55.467 0 85.333 0 119.467 0 234.667 8.533 337.067 17.067 21.333 4.267 42.667-12.8 46.933-38.4 4.267-21.333-12.8-42.667-38.4-46.933-102.4-8.533-221.867-17.067-345.6-17.067-25.6 0-55.467 0-85.333 0z" />
<glyph unicode="&#xe90f;" glyph-name="battery-high" d="M640 759.467h-256c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667zM426.667 844.8h170.667v42.667h-170.667v-42.667zM768-51.2h-512c-25.6 0-42.667 17.067-42.667 42.667v810.667c0 25.6 17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667v-810.667c0-25.6-17.067-42.667-42.667-42.667zM298.667 34.133h426.667v725.333h-426.667v-725.333zM256 503.467c-21.333 0-38.4 12.8-42.667 34.133-4.267 25.6 12.8 46.933 34.133 51.2l512 85.333c21.333 4.267 46.933-12.8 51.2-34.133s-12.8-46.933-34.133-51.2l-512-85.333c-4.267 0-4.267 0-8.533 0z" />
<glyph unicode="&#xe910;" glyph-name="battery-low" d="M640 759.467h-256c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667zM426.667 844.8h170.667v42.667h-170.667v-42.667zM768-51.2h-512c-25.6 0-42.667 17.067-42.667 42.667v810.667c0 25.6 17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667v-810.667c0-25.6-17.067-42.667-42.667-42.667zM298.667 34.133h426.667v725.333h-426.667v-725.333zM256 76.8c-21.333 0-38.4 12.8-42.667 34.133s12.8 46.933 34.133 51.2l512 85.333c21.333 4.267 46.933-12.8 51.2-34.133s-12.8-46.933-34.133-51.2l-512-85.333c-4.267 0-4.267 0-8.533 0z" />
<glyph unicode="&#xe911;" glyph-name="bed" d="M981.333 418.133h-597.333c-25.6 0-42.667 17.067-42.667 42.667v42.667c0 93.867 76.8 170.667 170.667 170.667h341.333c93.867 0 170.667-76.8 170.667-170.667v-42.667c0-25.6-17.067-42.667-42.667-42.667zM426.667 503.467h512c0 46.933-38.4 85.333-85.333 85.333h-341.333c-46.933 0-85.333-38.4-85.333-85.333zM981.333 247.467h-938.667c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-469.333h853.333v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM810.667 418.133h-725.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h725.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM384 418.133h-341.333c-25.6 0-42.667 17.067-42.667 42.667v42.667c0 93.867 76.8 170.667 170.667 170.667h85.333c93.867 0 170.667-76.8 170.667-170.667v-42.667c0-25.6-17.067-42.667-42.667-42.667zM85.333 503.467h256c0 46.933-38.4 85.333-85.333 85.333h-85.333c-46.933 0-85.333-38.4-85.333-85.333zM981.333 76.8h-938.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM85.333 162.133h853.333v85.333h-853.333v-85.333z" />
<glyph unicode="&#xe912;" glyph-name="bell" d="M768 503.467c-25.6 0-42.667 17.067-42.667 42.667 0 119.467-93.867 213.333-213.333 213.333s-213.333-93.867-213.333-213.333c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667c0 166.4 132.267 298.667 298.667 298.667s298.667-132.267 298.667-298.667c0-25.6-17.067-42.667-42.667-42.667zM896 119.467c-93.867 0-170.667 110.933-170.667 256 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-98.133 46.933-170.667 85.333-170.667 25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM128 119.467c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c38.4 0 85.333 72.533 85.333 170.667 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-145.067-76.8-256-170.667-256zM896 119.467h-768c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h768c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM256 332.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM768 332.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM512-51.2c-93.867 0-170.667 76.8-170.667 170.667 0 21.333 4.267 38.4 8.533 59.733 8.533 21.333 34.133 34.133 55.467 25.6s34.133-34.133 25.6-55.467c-4.267-12.8-4.267-21.333-4.267-29.867 0-46.933 38.4-85.333 85.333-85.333s85.333 38.4 85.333 85.333c0 8.533 0 17.067-4.267 25.6-8.533 21.333 4.267 46.933 25.6 55.467s46.933-4.267 55.467-25.6c8.533-17.067 8.533-38.4 8.533-59.733 0-89.6-76.8-166.4-170.667-166.4zM512 759.467c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe913;" glyph-name="bin" d="M384 844.8h-85.333c0 72.533 55.467 128 128 128v-85.333c-25.6 0-42.667-17.067-42.667-42.667zM725.333 844.8h-85.333c0 25.6-17.067 42.667-42.667 42.667v85.333c72.533 0 128-55.467 128-128zM725.333 716.8h-426.667v128h85.333v-42.667h256v42.667h85.333zM426.667 972.8h170.667v-85.333h-170.667v85.333zM896 716.8h-768c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h768c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667-51.2h-597.333c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM256 34.133h512v512h-512v-512zM426.667 119.467c-25.6 0-42.667 17.067-42.667 42.667v256c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667zM597.333 119.467c-25.6 0-42.667 17.067-42.667 42.667v256c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe914;" glyph-name="block" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM844.8 85.333c-12.8 0-21.333 4.267-29.867 12.8l-665.6 665.6c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l665.6-665.6c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-21.333-12.8-29.867-12.8z" />
<glyph unicode="&#xe915;" glyph-name="bluetooth" d="M512 418.133c-4.267 0-12.8 0-17.067 4.267-17.067 4.267-25.6 21.333-25.6 38.4v426.667c0 17.067 8.533 34.133 25.6 38.4 17.067 8.533 34.133 4.267 46.933-8.533l213.333-213.333c17.067-17.067 17.067-42.667 0-59.733l-213.333-213.333c-8.533-8.533-17.067-12.8-29.867-12.8zM554.667 785.067v-221.867l110.933 110.933-110.933 110.933zM512-8.533c-4.267 0-12.8 0-17.067 4.267-17.067 4.267-25.6 21.333-25.6 38.4v426.667c0 17.067 8.533 34.133 25.6 38.4 17.067 8.533 34.133 4.267 46.933-8.533l213.333-213.333c17.067-17.067 17.067-42.667 0-59.733l-213.333-213.333c-8.533-8.533-17.067-12.8-29.867-12.8zM554.667 358.4v-221.867l110.933 110.933-110.933 110.933zM512 418.133c-12.8 0-21.333 4.267-29.867 12.8l-213.333 213.333c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l213.333-213.333c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM298.667 204.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l213.333 213.333c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-213.333-213.333c-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe916;" glyph-name="book" d="M512-51.2c-8.533 0-17.067 4.267-21.333 8.533-4.267 0-128 76.8-448 76.8-25.6 0-42.667 17.067-42.667 42.667v853.333c0 25.6 17.067 42.667 42.667 42.667 273.067 0 418.133-55.467 469.333-81.067 51.2 25.6 196.267 81.067 469.333 81.067 25.6 0 42.667-17.067 42.667-42.667v-853.333c0-25.6-17.067-42.667-42.667-42.667-320 0-443.733-76.8-448-76.8-4.267-4.267-12.8-8.533-21.333-8.533zM85.333 119.467c247.467-4.267 375.467-55.467 426.667-81.067 51.2 25.6 179.2 72.533 426.667 81.067v768c-290.133-8.533-401.067-76.8-405.333-76.8-12.8-8.533-34.133-8.533-46.933 0 0 0-115.2 72.533-401.067 76.8v-768zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v853.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-853.333c0-25.6-17.067-42.667-42.667-42.667zM42.667 34.133c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-682.667c0-25.6-17.067-42.667-42.667-42.667zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-682.667c0-25.6-17.067-42.667-42.667-42.667zM42.667 34.133c-25.6 0-42.667 17.067-42.667 42.667v554.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-554.667c0-25.6-17.067-42.667-42.667-42.667zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v554.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-554.667c0-25.6-17.067-42.667-42.667-42.667zM42.667 34.133c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-426.667c0-25.6-17.067-42.667-42.667-42.667zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-426.667c0-25.6-17.067-42.667-42.667-42.667zM42.667 34.133c-25.6 0-42.667 17.067-42.667 42.667v298.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v298.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667zM42.667 34.133c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe917;" glyph-name="box" d="M981.333 34.133h-938.667c-25.6 0-42.667 17.067-42.667 42.667v768c0 25.6 17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667v-768c0-25.6-17.067-42.667-42.667-42.667zM85.333 119.467h853.333v682.667h-853.333v-682.667zM981.333 631.467h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM640 460.8h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe918;" glyph-name="brightness" d="M512 759.467c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667zM981.333 418.133h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM170.667 418.133h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM755.2 661.333c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l89.6 89.6c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-89.6-89.6c-8.533-8.533-21.333-12.8-29.867-12.8zM179.2 85.333c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l89.6 89.6c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-89.6-89.6c-8.533-8.533-17.067-12.8-29.867-12.8zM844.8 85.333c-12.8 0-21.333 4.267-29.867 12.8l-89.6 89.6c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l89.6-89.6c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-21.333-12.8-29.867-12.8zM268.8 661.333c-12.8 0-21.333 4.267-29.867 12.8l-89.6 89.6c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l89.6-89.6c17.067-17.067 17.067-42.667 0-59.733-4.267-8.533-17.067-12.8-29.867-12.8zM512 247.467c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333 213.333-93.867 213.333-213.333-93.867-213.333-213.333-213.333zM512 588.8c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128z" />
<glyph unicode="&#xe919;" glyph-name="brush" d="M426.667 204.8c-25.6 0-42.667 17.067-42.667 42.667 0 12.8-4.267 21.333-4.267 29.867-8.533 21.333-25.6 38.4-46.933 46.933-59.733 25.6-119.467-17.067-119.467-76.8 0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667c0 93.867 76.8 170.667 170.667 170.667 21.333 0 42.667-4.267 64-12.8 42.667-17.067 76.8-51.2 93.867-93.867 8.533-17.067 12.8-42.667 12.8-64 0-25.6-21.333-42.667-42.667-42.667zM42.667-51.2c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c183.467 0 341.333 98.133 341.333 213.333 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-166.4-192-298.667-426.667-298.667zM42.667-51.2c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c34.133 0 85.333 81.067 85.333 213.333 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-170.667-72.533-298.667-170.667-298.667zM418.133 251.733c-4.267 0-8.533 0-8.533 0-12.8 4.267-25.6 12.8-29.867 25.6-8.533 21.333-25.6 38.4-46.933 46.933-12.8 4.267-21.333 17.067-25.6 29.867s0 29.867 8.533 38.4l477.867 537.6c55.467 55.467 140.8 51.2 187.733 0 29.867-21.333 42.667-55.467 42.667-89.6s-12.8-68.267-38.4-93.867l-541.867-482.133c-8.533-8.533-17.067-12.8-25.6-12.8zM413.867 375.467c4.267-4.267 8.533-8.533 12.8-12.8l499.2 443.733c8.533 8.533 12.8 21.333 12.8 34.133s-4.267 25.6-12.8 34.133c-21.333 21.333-51.2 21.333-68.267 0l-443.733-499.2z" />
<glyph unicode="&#xe91a;" glyph-name="bucket" d="M725.333 34.133h-597.333c-21.333 0-38.4 17.067-42.667 38.4l-85.333 768c0 12.8 4.267 25.6 8.533 34.133 8.533 8.533 21.333 12.8 34.133 12.8h768c12.8 0 25.6-4.267 29.867-12.8 8.533-8.533 12.8-21.333 12.8-34.133l-85.333-768c-4.267-21.333-21.333-38.4-42.667-38.4zM166.4 119.467h520.533l76.8 682.667h-674.133l76.8-682.667zM951.467 307.2c-38.4 0-98.133 17.067-209.067 76.8-72.533 38.4-162.133 93.867-268.8 162.133-42.667 29.867-72.533 46.933-72.533 46.933-17.067 17.067-21.333 42.667-8.533 64s38.4 25.6 59.733 12.8c0 0 25.6-17.067 68.267-46.933 38.4-25.6 157.867-102.4 264.533-157.867 85.333-46.933 128-59.733 149.333-64-12.8 38.4-64 102.4-174.933 187.733-17.067 12.8-21.333 42.667-8.533 59.733s42.667 21.333 59.733 8.533c145.067-110.933 213.333-200.533 213.333-273.067 0-25.6-12.8-46.933-29.867-59.733-12.8-12.8-25.6-17.067-42.667-17.067zM512 631.467c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM426.667 524.8c-59.733 0-106.667 46.933-106.667 106.667s46.933 106.667 106.667 106.667 106.667-46.933 106.667-106.667-46.933-106.667-106.667-106.667zM426.667 695.467c-34.133 0-64-29.867-64-64s29.867-64 64-64 64 29.867 64 64-29.867 64-64 64z" />
<glyph unicode="&#xe91b;" glyph-name="building" d="M554.667-51.2h-512c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667v-938.667c0-25.6-17.067-42.667-42.667-42.667zM85.333 34.133h426.667v853.333h-426.667v-853.333zM981.333-51.2h-426.667c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667v-682.667c0-25.6-17.067-42.667-42.667-42.667zM597.333 34.133h341.333v597.333h-341.333v-597.333zM213.333 290.133c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-426.667c0-25.6-17.067-42.667-42.667-42.667zM384 290.133c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-426.667c0-25.6-17.067-42.667-42.667-42.667zM853.333-51.2h-170.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM725.333 34.133h85.333v85.333h-85.333v-85.333zM384-51.2h-170.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM256 34.133h85.333v85.333h-85.333v-85.333zM853.333 290.133h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM853.333 460.8h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe91c;" glyph-name="calendar" d="M896-8.533h-768c-72.533 0-128 55.467-128 128v597.333c0 72.533 55.467 128 128 128h768c72.533 0 128-55.467 128-128v-597.333c0-72.533-55.467-128-128-128zM128 759.467c-25.6 0-42.667-17.067-42.667-42.667v-597.333c0-25.6 17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667v597.333c0 25.6-17.067 42.667-42.667 42.667h-768zM256 674.133c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM768 674.133c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM981.333 503.467h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM298.667 375.467c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM256 311.467c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM256 396.8c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333zM298.667 204.8c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM256 140.8c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM256 226.133c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333zM469.333 204.8c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM426.667 140.8c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM426.667 226.133c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333zM469.333 375.467c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM426.667 311.467c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM426.667 396.8c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333zM640 375.467c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM597.333 311.467c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM597.333 396.8c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333zM640 204.8c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM597.333 140.8c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM597.333 226.133c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333zM810.667 204.8c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM768 140.8c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM768 226.133c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333zM810.667 375.467c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM768 311.467c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM768 396.8c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333z" />
<glyph unicode="&#xe91d;" glyph-name="camera" d="M878.933 34.133h-733.867c-81.067 0-145.067 64-145.067 145.067v392.533c0 81.067 64 145.067 145.067 145.067 25.6 0 46.933 12.8 59.733 34.133l25.6 55.467c25.6 51.2 76.8 81.067 132.267 81.067h298.667c55.467 0 106.667-29.867 132.267-81.067l25.6-55.467c12.8-21.333 34.133-34.133 55.467-34.133 85.333 0 149.333-64 149.333-145.067v-388.267c0-85.333-64-149.333-145.067-149.333zM362.667 802.133c-21.333 0-42.667-12.8-55.467-34.133l-25.6-55.467c-25.6-51.2-76.8-81.067-132.267-81.067-38.4 0-64-25.6-64-59.733v-388.267c0-38.4 25.6-64 59.733-64h729.6c34.133 0 59.733 25.6 59.733 59.733v392.533c4.267 34.133-21.333 59.733-55.467 59.733-59.733 0-106.667 29.867-132.267 81.067l-25.6 55.467c-17.067 21.333-38.4 34.133-59.733 34.133h-298.667zM512 204.8c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333 213.333-93.867 213.333-213.333-93.867-213.333-213.333-213.333zM512 546.133c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128z" />
<glyph unicode="&#xe91e;" glyph-name="car" d="M981.333 162.133h-938.667c-25.6 0-42.667 17.067-42.667 42.667v298.667c0 72.533 55.467 128 128 128h768c72.533 0 128-55.467 128-128v-298.667c0-25.6-17.067-42.667-42.667-42.667zM85.333 247.467h853.333v256c0 25.6-17.067 42.667-42.667 42.667h-768c-25.6 0-42.667-17.067-42.667-42.667v-256zM896 546.133h-768c-12.8 0-25.6 4.267-34.133 17.067-8.533 8.533-8.533 25.6-8.533 38.4l85.333 298.667c8.533 17.067 25.6 29.867 42.667 29.867h597.333c17.067 0 34.133-12.8 42.667-29.867l85.333-298.667c0-12.8 0-29.867-8.533-38.4-8.533-12.8-21.333-17.067-34.133-17.067zM183.467 631.467h652.8l-59.733 213.333h-529.067l-64-213.333zM256-8.533h-213.333c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h213.333c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM85.333 76.8h128v85.333h-128v-85.333zM981.333-8.533h-213.333c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h213.333c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM810.667 76.8h128v85.333h-128v-85.333zM294.4 285.867c-12.8 0-25.6 0-34.133 0s-17.067 0-21.333 0c-64 4.267-110.933 51.2-110.933 110.933s46.933 106.667 106.667 106.667c59.733 0 149.333-89.6 149.333-149.333 0-21.333-8.533-68.267-89.6-68.267zM234.667 418.133c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333c8.533 0 17.067 0 29.867 0 8.533 0 17.067 0 25.6 0-17.067 17.067-42.667 38.4-55.467 42.667zM729.6 285.867c0 0 0 0 0 0-81.067 0-89.6 46.933-89.6 68.267 0 59.733 89.6 149.333 149.333 149.333s106.667-46.933 106.667-106.667-46.933-106.667-106.667-106.667c-8.533 0-12.8 0-21.333 0-12.8 0-25.6-4.267-38.4-4.267zM789.333 418.133c-12.8-4.267-38.4-25.6-51.2-46.933 8.533 0 17.067 0 25.6 0s21.333 0 29.867 0c12.8 0 21.333 8.533 21.333 21.333s-12.8 25.6-25.6 25.6zM106.667 588.8c-59.733 0-106.667 46.933-106.667 106.667s46.933 106.667 106.667 106.667c42.667 0 81.067-25.6 98.133-64 8.533-21.333 0-46.933-21.333-55.467-4.267-4.267-8.533-4.267-12.8-4.267 0-4.267 4.267-4.267 8.533-8.533 12.8-21.333 8.533-46.933-8.533-59.733s-42.667-21.333-64-21.333zM106.667 716.8c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333c4.267 0 8.533 0 12.8 4.267 8.533 4.267 12.8 8.533 21.333 8.533-8.533 4.267-12.8 8.533-12.8 17.067-4.267 8.533-12.8 12.8-21.333 12.8zM917.333 588.8c-21.333 0-46.933 8.533-64 21.333s-21.333 42.667-8.533 59.733c4.267 4.267 8.533 4.267 8.533 8.533-4.267 0-8.533 0-12.8 4.267-21.333 8.533-34.133 34.133-21.333 55.467 17.067 38.4 55.467 64 98.133 64 59.733 0 106.667-46.933 106.667-106.667s-46.933-106.667-106.667-106.667zM883.2 686.933c8.533 0 17.067-4.267 21.333-8.533s8.533-4.267 12.8-4.267c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333c-8.533 0-17.067-4.267-21.333-12.8 0-8.533-4.267-12.8-12.8-17.067z" />
<glyph unicode="&#xe91f;" glyph-name="card" d="M981.333 119.467h-938.667c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM85.333 204.8h853.333v512h-853.333v-512zM981.333 546.133h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 460.8h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe920;" glyph-name="chat" d="M456.533 119.467c-21.333 0-42.667 17.067-42.667 38.4 0 25.6 17.067 42.667 38.4 46.933 179.2 12.8 315.733 162.133 315.733 341.333 0 187.733-153.6 341.333-341.333 341.333s-341.333-153.6-341.333-341.333c0-132.267 76.8-251.733 196.267-307.2 21.333-8.533 29.867-34.133 21.333-55.467s-34.133-29.867-55.467-21.333c-149.333 68.267-247.467 217.6-247.467 384 0 234.667 192 426.667 426.667 426.667s426.667-192 426.667-426.667c0-221.867-174.933-409.6-396.8-426.667 0 0 0 0 0 0zM213.333-51.2c-17.067 0-34.133 12.8-38.4 29.867s0 38.4 17.067 46.933c8.533 8.533 93.867 76.8 42.667 149.333-12.8 17.067-8.533 46.933 8.533 59.733 12.8 12.8 38.4 8.533 55.467-8.533 42.667-59.733 42.667-119.467 21.333-170.667 42.667 21.333 76.8 64 93.867 119.467 8.533 21.333 29.867 34.133 55.467 29.867 21.333-8.533 34.133-29.867 29.867-51.2-25.6-76.8-93.867-204.8-285.867-204.8zM725.333 64c-4.267 0-4.267 0 0 0-85.333 4.267-153.6 38.4-200.533 93.867-17.067 17.067-12.8 46.933 4.267 59.733 17.067 17.067 46.933 12.8 59.733-4.267 34.133-38.4 76.8-59.733 136.533-64 25.6 0 42.667-21.333 38.4-46.933 0-21.333-17.067-38.4-38.4-38.4zM849.067 76.8c-17.067 0-29.867 8.533-38.4 25.6-8.533 21.333 0 46.933 21.333 55.467 68.267 29.867 110.933 98.133 110.933 174.933 0 85.333-55.467 162.133-140.8 183.467-21.333 8.533-34.133 29.867-29.867 51.2s29.867 34.133 51.2 29.867c119.467-34.133 200.533-145.067 200.533-268.8 0-106.667-64-204.8-157.867-251.733-8.533 0-12.8 0-17.067 0zM878.933-51.2c-93.867 0-162.133 51.2-187.733 136.533-8.533 21.333 4.267 46.933 29.867 51.2 21.333 8.533 46.933-4.267 55.467-29.867 4.267-12.8 8.533-25.6 17.067-38.4 0 21.333 8.533 46.933 25.6 72.533 12.8 17.067 42.667 21.333 59.733 8.533s21.333-42.667 8.533-59.733c-25.6-34.133 17.067-64 21.333-68.267 12.8-12.8 21.333-29.867 17.067-46.933-12.8-12.8-29.867-25.6-46.933-25.6zM597.333 588.8h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512 418.133h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe921;" glyph-name="circle-bottom-left" d="M512-51.2c-136.533 0-264.533 51.2-362.667 149.333-200.533 200.533-200.533 524.8 0 725.333 98.133 98.133 226.133 149.333 362.667 149.333s264.533-51.2 362.667-149.333c200.533-200.533 200.533-524.8 0-725.333-98.133-98.133-226.133-149.333-362.667-149.333zM512 887.467c-115.2 0-221.867-42.667-302.933-123.733-166.4-166.4-166.4-439.467 0-605.867 81.067-81.067 187.733-123.733 302.933-123.733s221.867 42.667 302.933 123.733c166.4 166.4 166.4 435.2 0 601.6-81.067 85.333-187.733 128-302.933 128zM554.667 290.133h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM384 290.133c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM392.533 298.667c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l243.2 243.2c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-243.2-243.2c-8.533-8.533-21.333-12.8-29.867-12.8z" />
<glyph unicode="&#xe922;" glyph-name="circle-bottom-right" d="M512-51.2c-136.533 0-264.533 51.2-362.667 149.333-200.533 200.533-200.533 524.8 0 725.333 98.133 98.133 226.133 149.333 362.667 149.333s264.533-51.2 362.667-149.333c200.533-200.533 200.533-524.8 0-725.333-98.133-98.133-226.133-149.333-362.667-149.333zM512 887.467c-115.2 0-221.867-42.667-302.933-123.733-166.4-166.4-166.4-439.467 0-605.867 81.067-81.067 187.733-123.733 302.933-123.733s221.867 42.667 302.933 123.733c166.4 166.4 166.4 435.2 0 601.6-81.067 85.333-187.733 128-302.933 128zM640 290.133c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM640 290.133h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM631.467 298.667c-12.8 0-21.333 4.267-29.867 12.8l-238.933 238.933c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l243.2-243.2c17.067-17.067 17.067-42.667 0-59.733-12.8-4.267-21.333-8.533-34.133-8.533z" />
<glyph unicode="&#xe923;" glyph-name="circle-down" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM512 247.467c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM512 247.467c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM512 247.467c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe924;" glyph-name="circle-left" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM469.333 290.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM341.333 418.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM682.667 418.133h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe925;" glyph-name="circle-right" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM682.667 418.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM554.667 290.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM682.667 418.133h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe926;" glyph-name="circle-top-left" d="M512-51.2c-136.533 0-264.533 51.2-362.667 149.333-200.533 200.533-200.533 524.8 0 725.333 98.133 98.133 226.133 149.333 362.667 149.333s264.533-51.2 362.667-149.333c200.533-200.533 200.533-524.8 0-725.333-98.133-98.133-226.133-149.333-362.667-149.333zM512 887.467c-115.2 0-221.867-42.667-302.933-123.733-166.4-166.4-166.4-439.467 0-605.867 81.067-81.067 187.733-123.733 302.933-123.733s221.867 42.667 302.933 123.733c166.4 166.4 166.4 435.2 0 601.6-81.067 85.333-187.733 128-302.933 128zM384 375.467c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM554.667 546.133h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM631.467 298.667c-12.8 0-21.333 4.267-29.867 12.8l-238.933 238.933c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l243.2-243.2c17.067-17.067 17.067-42.667 0-59.733-12.8-4.267-21.333-8.533-34.133-8.533z" />
<glyph unicode="&#xe927;" glyph-name="circle-top-right" d="M554.667-51.2c-136.533 0-264.533 51.2-362.667 149.333-200.533 200.533-200.533 524.8 0 725.333 98.133 98.133 226.133 149.333 362.667 149.333s264.533-51.2 362.667-149.333c200.533-200.533 200.533-524.8 0-725.333-98.133-98.133-226.133-149.333-362.667-149.333zM554.667 887.467c-115.2 0-221.867-42.667-302.933-123.733-166.4-166.4-166.4-439.467 0-605.867 81.067-81.067 187.733-123.733 302.933-123.733s221.867 42.667 302.933 123.733c166.4 166.4 166.4 435.2 0 601.6-81.067 85.333-187.733 128-302.933 128zM682.667 546.133h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 375.467c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM435.2 298.667c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l243.2 243.2c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-243.2-243.2c-8.533-8.533-21.333-12.8-29.867-12.8z" />
<glyph unicode="&#xe928;" glyph-name="circle-up" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512c281.6 0 512-230.4 512-512s-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667c234.667 0 426.667 192 426.667 426.667s-192 426.667-426.667 426.667zM384 460.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM640 460.8c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM512 247.467c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe929;" glyph-name="clock" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM512 418.133c-25.6 0-42.667 17.067-42.667 42.667v298.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667zM682.667 247.467c-12.8 0-21.333 4.267-29.867 12.8l-170.667 170.667c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l170.667-170.667c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe92a;" glyph-name="cloud" d="M213.333 460.8c-25.6 0-42.667 17.067-42.667 42.667 0 166.4 132.267 298.667 298.667 298.667 128 0 243.2-85.333 285.867-209.067 8.533-21.333-4.267-46.933-25.6-55.467s-46.933 4.267-55.467 25.6c-29.867 93.867-110.933 153.6-204.8 153.6-119.467 0-213.333-93.867-213.333-213.333 0-25.6-17.067-42.667-42.667-42.667zM768 119.467c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c93.867 0 170.667 76.8 170.667 170.667s-76.8 170.667-170.667 170.667c-12.8 0-29.867 0-42.667-4.267-21.333-4.267-46.933 8.533-51.2 29.867s8.533 46.933 29.867 51.2c21.333 4.267 42.667 8.533 64 8.533 140.8 0 256-115.2 256-256s-115.2-256-256-256zM682.667 119.467h-469.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h469.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM768 119.467h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h85.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM213.333 119.467c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667c-72.533 0-128-55.467-128-128s55.467-128 128-128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe92b;" glyph-name="cmd" d="M213.333 546.133c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333 213.333-93.867 213.333-213.333c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667c0 72.533-55.467 128-128 128s-128-55.467-128-128 55.467-128 128-128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 546.133c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c72.533 0 128 55.467 128 128s-55.467 128-128 128-128-55.467-128-128c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667c0 119.467 93.867 213.333 213.333 213.333s213.333-93.867 213.333-213.333-93.867-213.333-213.333-213.333zM213.333-51.2c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-119.467-93.867-213.333-213.333-213.333zM810.667-51.2c-119.467 0-213.333 93.867-213.333 213.333 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-72.533 55.467-128 128-128s128 55.467 128 128-55.467 128-128 128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c119.467 0 213.333-93.867 213.333-213.333s-93.867-213.333-213.333-213.333zM384 119.467c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM640 119.467c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM810.667 546.133h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 290.133h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe92c;" glyph-name="collapse" d="M341.333 588.8h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM341.333 588.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM341.333 588.8c-12.8 0-21.333 4.267-29.867 12.8l-298.667 298.667c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l298.667-298.667c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM853.333 588.8h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 588.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM682.667 588.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l298.667 298.667c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-298.667-298.667c-8.533-8.533-17.067-12.8-29.867-12.8zM341.333 247.467h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM341.333 76.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM42.667-51.2c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l298.667 298.667c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-298.667-298.667c-8.533-8.533-17.067-12.8-29.867-12.8zM853.333 247.467h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 76.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM981.333-51.2c-12.8 0-21.333 4.267-29.867 12.8l-298.667 298.667c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l298.667-298.667c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe92d;" glyph-name="comment" d="M853.333 119.467h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c46.933 0 85.333 38.4 85.333 85.333v512c0 46.933-38.4 85.333-85.333 85.333h-682.667c-46.933 0-85.333-38.4-85.333-85.333v-512c0-46.933 38.4-85.333 85.333-85.333h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-170.667c-93.867 0-170.667 76.8-170.667 170.667v512c0 93.867 76.8 170.667 170.667 170.667h682.667c93.867 0 170.667-76.8 170.667-170.667v-512c0-93.867-76.8-170.667-170.667-170.667zM512-51.2c-12.8 0-21.333 4.267-29.867 12.8l-170.667 170.667c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l140.8-140.8 140.8 140.8c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-170.667-170.667c-8.533-8.533-17.067-12.8-29.867-12.8zM768 674.133h-512c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM554.667 503.467h-298.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h298.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 332.8h-426.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe92e;" glyph-name="contrast" d="M981.333 460.8c0-260.267-170.667-469.333-469.333-469.333v938.667c298.667 0 469.333-209.067 469.333-469.333zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667 302.933 0 512-209.067 512-512s-209.067-512-512-512zM554.667 887.467v-853.333c264.533 21.333 384 221.867 384 426.667s-119.467 405.333-384 426.667zM512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512c25.6 0 42.667-17.067 42.667-42.667v-938.667c0-25.6-17.067-42.667-42.667-42.667zM469.333 887.467c-213.333-25.6-384-204.8-384-426.667s170.667-401.067 384-426.667v853.333z" />
<glyph unicode="&#xe92f;" glyph-name="corner-arrow" d="M768 460.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l213.333 213.333c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-213.333-213.333c-8.533-8.533-17.067-12.8-29.867-12.8zM981.333 674.133c-12.8 0-21.333 4.267-29.867 12.8l-213.333 213.333c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l213.333-213.333c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM256-51.2c-12.8 0-21.333 4.267-29.867 12.8l-213.333 213.333c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l213.333-213.333c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM256-51.2c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l213.333 213.333c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-213.333-213.333c-8.533-8.533-17.067-12.8-29.867-12.8zM256-51.2c-25.6 0-42.667 17.067-42.667 42.667v469.333c0 166.4 132.267 298.667 298.667 298.667h469.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-469.333c-119.467 0-213.333-93.867-213.333-213.333v-469.333c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe930;" glyph-name="cube" d="M512 546.133c-4.267 0-8.533 0-12.8 4.267l-469.333 170.667c-17.067 4.267-29.867 21.333-29.867 38.4s12.8 34.133 29.867 38.4l469.333 170.667c8.533 4.267 21.333 4.267 29.867 0l469.333-170.667c12.8-4.267 25.6-21.333 25.6-38.4s-12.8-34.133-29.867-38.4l-469.333-170.667c-4.267-4.267-8.533-4.267-12.8-4.267zM166.4 759.467l345.6-123.733 345.6 123.733-345.6 123.733-345.6-123.733zM512-51.2c-4.267 0-8.533 0-12.8 4.267l-469.333 170.667c-21.333 8.533-34.133 34.133-25.6 55.467s34.133 34.133 55.467 25.6l452.267-166.4 456.533 166.4c21.333 8.533 46.933-4.267 55.467-25.6s-4.267-46.933-25.6-55.467l-469.333-170.667c-8.533-4.267-12.8-4.267-17.067-4.267zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM981.333 119.467c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM42.667 119.467c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe931;" glyph-name="cup" d="M597.333 247.467h-170.667c-140.8 0-256 115.2-256 256v298.667c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-298.667c0-140.8-115.2-256-256-256zM256 759.467v-256c0-93.867 76.8-170.667 170.667-170.667h170.667c93.867 0 170.667 76.8 170.667 170.667v256h-512zM810.667 76.8h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM832 482.133h-21.333c-25.6 0-42.667 17.067-42.667 42.667v277.333c0 25.6 17.067 42.667 42.667 42.667h85.333c72.533 0 128-55.467 128-128v-42.667c0-106.667-85.333-192-192-192zM853.333 759.467v-187.733c46.933 8.533 85.333 51.2 85.333 102.4v42.667c0 25.6-17.067 42.667-42.667 42.667h-42.667z" />
<glyph unicode="&#xe932;" glyph-name="cursor" d="M597.333-8.533c0 0 0 0 0 0-17.067 0-34.133 12.8-38.4 29.867l-98.133 294.4c-8.533 21.333 4.267 46.933 25.6 55.467s46.933-4.267 55.467-25.6l59.733-183.467 260.267 652.8-652.8-264.533 183.467-59.733c21.333-8.533 34.133-29.867 25.6-55.467-8.533-21.333-29.867-34.133-55.467-25.6l-294.4 98.133c-12.8 4.267-25.6 21.333-25.6 38.4s8.533 34.133 25.6 42.667l853.333 341.333c17.067 4.267 34.133 0 46.933-12.8s17.067-29.867 8.533-46.933l-341.333-853.333c-4.267-17.067-21.333-25.6-38.4-25.6zM170.667-8.533c-34.133 0-64 12.8-89.6 38.4-51.2 51.2-51.2 132.267 0 179.2l268.8 268.8c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-268.8-268.8c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c17.067-17.067 42.667-17.067 59.733 0l268.8 268.8c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-268.8-268.8c-25.6-25.6-55.467-38.4-89.6-38.4z" />
<glyph unicode="&#xe933;" glyph-name="desktop" d="M861.867 119.467h-699.733c-89.6 0-162.133 72.533-162.133 162.133v529.067c0 89.6 72.533 162.133 162.133 162.133h695.467c93.867 0 166.4-72.533 166.4-162.133v-524.8c0-93.867-72.533-166.4-162.133-166.4zM162.133 887.467c-42.667 0-76.8-34.133-76.8-76.8v-524.8c0-42.667 34.133-76.8 76.8-76.8h695.467c42.667 0 76.8 34.133 76.8 76.8v524.8c0 42.667-34.133 76.8-76.8 76.8h-695.467zM42.667 375.467h938.667v-85.333h-938.667v85.333zM682.667-51.2h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM341.333-51.2c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c8.533 0 42.667 42.667 42.667 128 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-123.733-55.467-213.333-128-213.333zM682.667-51.2c-72.533 0-128 89.6-128 213.333 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-85.333 34.133-128 42.667-128 25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe934;" glyph-name="disk" d="M179.2 85.333c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l243.2 243.2c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-243.2-243.2c-8.533-8.533-17.067-12.8-29.867-12.8zM601.6 507.733c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l243.2 243.2c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-243.2-243.2c-8.533-8.533-17.067-12.8-29.867-12.8zM635.733 448c-17.067 0-38.4 12.8-42.667 34.133s8.533 46.933 29.867 51.2l332.8 81.067c21.333 4.267 46.933-8.533 51.2-29.867s-8.533-46.933-29.867-51.2l-332.8-81.067c0-4.267-4.267-4.267-8.533-4.267zM477.867-51.2c-4.267 0-4.267 0 0 0-25.6 0-42.667 21.333-42.667 46.933l25.6 341.333c0 21.333 21.333 42.667 46.933 38.4 25.6 0 42.667-21.333 38.4-46.933l-25.6-341.333c-4.267-21.333-21.333-38.4-42.667-38.4zM409.6 494.933c-8.533 0-17.067 4.267-25.6 8.533l-277.333 200.533c-17.067 12.8-21.333 38.4-8.533 59.733s42.667 21.333 59.733 8.533l277.333-200.533c17.067-12.8 21.333-42.667 8.533-59.733-8.533-12.8-21.333-17.067-34.133-17.067zM512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM512 290.133c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM512 546.133c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333z" />
<glyph unicode="&#xe935;" glyph-name="dollar" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM512 418.133c-81.067 0-149.333 51.2-166.4 119.467-4.267 8.533-4.267 17.067-4.267 29.867 0 81.067 76.8 149.333 170.667 149.333s170.667-68.267 170.667-149.333c0-12.8 0-21.333-4.267-29.867-4.267-21.333-29.867-38.4-51.2-29.867-21.333 4.267-38.4 29.867-29.867 51.2 0 4.267 0 8.533 0 12.8 0 29.867-38.4 59.733-85.333 59.733s-85.333-29.867-85.333-64c0-4.267 0-8.533 0-12.8 8.533-29.867 42.667-51.2 85.333-51.2 25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512 204.8c-93.867 0-170.667 68.267-170.667 149.333 0 12.8 0 21.333 4.267 29.867 4.267 21.333 29.867 38.4 51.2 29.867 21.333-4.267 38.4-29.867 29.867-51.2 0-4.267 0-8.533 0-12.8 0-34.133 38.4-64 85.333-64s85.333 29.867 85.333 64c0 4.267 0 8.533 0 12.8-8.533 29.867-42.667 51.2-85.333 51.2-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c81.067 0 149.333-51.2 166.4-119.467 4.267-4.267 4.267-12.8 4.267-25.6 0-81.067-76.8-149.333-170.667-149.333zM512 119.467c-25.6 0-42.667 17.067-42.667 42.667v85.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-85.333c0-25.6-17.067-42.667-42.667-42.667zM512 631.467c-25.6 0-42.667 17.067-42.667 42.667v85.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-85.333c0-25.6-17.067-42.667-42.667-42.667zM640 503.467c-12.8 0-21.333 4.267-29.867 12.8s-12.8 17.067-12.8 29.867 4.267 21.333 12.8 29.867c17.067 17.067 42.667 17.067 59.733 0 8.533-8.533 12.8-17.067 12.8-29.867s-4.267-21.333-12.8-29.867c-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe936;" glyph-name="download" d="M213.333 588.8c-25.6 0-42.667 17.067-42.667 42.667 0 166.4 132.267 298.667 298.667 298.667 128 0 243.2-85.333 285.867-209.067 4.267-21.333-4.267-46.933-29.867-51.2-21.333-8.533-46.933 4.267-55.467 25.6-25.6 89.6-106.667 149.333-200.533 149.333-119.467 0-213.333-93.867-213.333-213.333 0-25.6-17.067-42.667-42.667-42.667zM768 247.467c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c93.867 0 170.667 76.8 170.667 170.667s-76.8 170.667-170.667 170.667c-12.8 0-29.867 0-42.667-4.267-21.333-4.267-46.933 8.533-51.2 29.867s8.533 46.933 29.867 51.2c21.333 4.267 42.667 8.533 64 8.533 140.8 0 256-115.2 256-256s-115.2-256-256-256zM341.333 247.467h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM768 247.467h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h85.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM213.333 247.467c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667c-72.533 0-128-55.467-128-128s55.467-128 128-128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512-8.533c-25.6 0-42.667 17.067-42.667 42.667v384c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-384c0-25.6-17.067-42.667-42.667-42.667zM512-8.533c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM512-8.533c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe937;" glyph-name="drawer" d="M896-51.2h-768c-25.6 0-42.667 17.067-42.667 42.667v469.333c0 25.6 17.067 42.667 42.667 42.667h768c25.6 0 42.667-17.067 42.667-42.667v-469.333c0-25.6-17.067-42.667-42.667-42.667zM170.667 34.133h682.667v384h-682.667v-384zM597.333 247.467h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM896 418.133h-768c-25.6 0-42.667 17.067-42.667 42.667v469.333c0 25.6 17.067 42.667 42.667 42.667h768c25.6 0 42.667-17.067 42.667-42.667v-469.333c0-25.6-17.067-42.667-42.667-42.667zM170.667 503.467h682.667v384h-682.667v-384zM597.333 716.8h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe938;" glyph-name="drop" d="M512-51.2c-213.333 0-384 170.667-384 384 0 170.667 102.4 349.867 145.067 418.133 25.6 38.4 145.067 221.867 238.933 221.867 119.467 0 384-371.2 384-640 0-213.333-170.667-384-384-384zM512 887.467c-59.733-8.533-298.667-315.733-298.667-554.667 0-166.4 132.267-298.667 298.667-298.667s298.667 132.267 298.667 298.667c0 238.933-238.933 546.133-298.667 554.667zM512 119.467c0 0-4.267 0-4.267 0-106.667 4.267-200.533 102.4-209.067 209.067 0 0 0 4.267 0 4.267 0 25.6 17.067 42.667 42.667 42.667 21.333 0 42.667-17.067 42.667-42.667 0-64 64-128 128-128 21.333 0 42.667-21.333 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe939;" glyph-name="earth" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM277.333 12.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l17.067 17.067 34.133 102.4-29.867 59.733-119.467 81.067c-12.8 4.267-21.333 17.067-21.333 29.867v128c0 17.067 12.8 34.133 29.867 38.4l119.467 38.4 51.2 51.2-128 179.2c-12.8 21.333-8.533 51.2 8.533 64 21.333 12.8 46.933 8.533 59.733-8.533l149.333-209.067c12.8-17.067 8.533-38.4-4.267-55.467l-85.333-85.333c-4.267-4.267-8.533-8.533-17.067-8.533l-98.133-34.133v-72.533l110.933-72.533c4.267-4.267 12.8-8.533 12.8-17.067l42.667-85.333c4.267-12.8 4.267-25.6 0-34.133l-42.667-128c0-4.267-4.267-12.8-8.533-17.067l-21.333-21.333c-8.533-8.533-21.333-12.8-29.867-12.8zM682.667 162.133c-8.533 0-12.8 0-17.067 4.267l-85.333 42.667c-8.533 4.267-17.067 12.8-17.067 17.067l-42.667 85.333c-4.267 12.8-4.267 25.6 0 38.4l38.4 76.8v76.8c0 25.6 17.067 42.667 42.667 42.667h64l115.2 153.6c0 0 4.267 4.267 4.267 4.267l68.267 72.533c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-72.533-72.533-128-166.4c-4.267-12.8-17.067-17.067-29.867-17.067h-42.667v-42.667c0-8.533 0-12.8-4.267-17.067l-34.133-68.267 25.6-55.467 46.933-21.333 59.733 59.733 38.4 81.067c8.533 12.8 21.333 21.333 34.133 25.6 17.067 0 29.867-4.267 38.4-17.067l81.067-119.467 17.067-8.533c21.333-8.533 29.867-38.4 17.067-55.467-8.533-21.333-38.4-29.867-55.467-17.067l-25.6 12.8c-8.533 4.267-12.8 8.533-17.067 12.8l-42.667 68.267-8.533-21.333c0-4.267-4.267-8.533-8.533-12.8l-85.333-85.333c-12.8-12.8-21.333-17.067-34.133-17.067z" />
<glyph unicode="&#xe93a;" glyph-name="edit" d="M776.533-51.2h-614.4c-89.6 0-162.133 72.533-162.133 162.133v614.4c0 89.6 72.533 162.133 162.133 162.133h307.2c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-307.2c-42.667 0-76.8-34.133-76.8-76.8v-610.133c0-42.667 34.133-76.8 76.8-76.8h610.133c42.667 0 76.8 34.133 76.8 76.8v302.933c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-307.2c4.267-89.6-68.267-162.133-157.867-162.133zM256 162.133c-12.8 0-21.333 4.267-29.867 12.8s-12.8 25.6-12.8 38.4l42.667 213.333c0 8.533 4.267 17.067 12.8 21.333l512 512c17.067 17.067 42.667 17.067 59.733 0l170.667-170.667c17.067-17.067 17.067-42.667 0-59.733l-512-512c-4.267-4.267-12.8-8.533-21.333-12.8l-213.333-42.667c-4.267 0-4.267 0-8.533 0zM337.067 396.8l-25.6-136.533 136.533 25.6 473.6 473.6-110.933 110.933-473.6-473.6z" />
<glyph unicode="&#xe93b;" glyph-name="education" d="M512 375.467c-4.267 0-8.533 0-12.8 4.267l-469.333 170.667c-17.067 4.267-29.867 21.333-29.867 38.4s12.8 34.133 29.867 38.4l469.333 170.667c8.533 4.267 21.333 4.267 29.867 0l469.333-170.667c12.8-4.267 25.6-21.333 25.6-38.4s-12.8-34.133-29.867-38.4l-469.333-170.667c-4.267-4.267-8.533-4.267-12.8-4.267zM166.4 588.8l345.6-123.733 345.6 123.733-345.6 123.733-345.6-123.733zM810.667 119.467h-298.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c-4.267 110.933-29.867 204.8-72.533 273.067-12.8 21.333-4.267 46.933 12.8 59.733 21.333 12.8 46.933 4.267 59.733-12.8 55.467-89.6 85.333-213.333 85.333-358.4 0-29.867-17.067-46.933-42.667-46.933zM512 119.467h-298.667c-25.6 0-42.667 17.067-42.667 42.667 0 145.067 29.867 268.8 85.333 358.4 12.8 21.333 38.4 25.6 59.733 12.8s25.6-38.4 12.8-59.733c-42.667-68.267-68.267-162.133-72.533-273.067h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-38.4-42.667-38.4zM938.667 119.467c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-426.667c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe93c;" glyph-name="eject" d="M768 290.133h-512c-17.067 0-29.867 8.533-38.4 21.333s-8.533 29.867 0 42.667l256 384c17.067 25.6 55.467 25.6 72.533 0l256-384c8.533-12.8 8.533-29.867 0-42.667s-17.067-21.333-34.133-21.333zM337.067 375.467h354.133l-179.2 264.533-174.933-264.533zM768 162.133h-512c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe93d;" glyph-name="euro" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512c281.6 0 512-230.4 512-512s-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667c234.667 0 426.667 192 426.667 426.667s-192 426.667-426.667 426.667zM554.667 204.8c-140.8 0-256 115.2-256 256s115.2 256 256 256c55.467 0 110.933-17.067 153.6-51.2 17.067-12.8 21.333-42.667 8.533-59.733s-42.667-21.333-59.733-8.533c-29.867 21.333-64 34.133-102.4 34.133-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667c38.4 0 72.533 12.8 102.4 34.133 17.067 12.8 46.933 8.533 59.733-8.533s8.533-46.933-8.533-59.733c-42.667-34.133-98.133-51.2-153.6-51.2zM554.667 418.133h-298.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h298.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe93e;" glyph-name="expand" d="M981.333-51.2h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333-51.2c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM213.333 887.467h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM42.667 716.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM332.8 597.333c-12.8 0-21.333 4.267-29.867 12.8l-281.6 281.6c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l277.333-277.333c17.067-17.067 17.067-42.667 0-59.733-4.267-12.8-17.067-17.067-25.6-17.067zM972.8-42.667c-12.8 0-21.333 4.267-29.867 12.8l-277.333 277.333c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l277.333-277.333c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-21.333-12.8-29.867-12.8zM42.667-51.2c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM213.333-51.2h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 716.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM981.333 887.467h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM691.2 597.333c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l277.333 277.333c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-277.333-277.333c-4.267-8.533-17.067-12.8-29.867-12.8zM51.2-42.667c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l277.333 277.333c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-277.333-277.333c-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe93f;" glyph-name="external" d="M768 34.133h-597.333c-93.867 0-170.667 76.8-170.667 170.667v426.667c0 93.867 76.8 170.667 170.667 170.667h469.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-469.333c-46.933 0-85.333-38.4-85.333-85.333v-426.667c0-46.933 38.4-85.333 85.333-85.333h597.333c46.933 0 85.333 38.4 85.333 85.333v298.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-298.667c0-93.867-76.8-170.667-170.667-170.667zM640 460.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l341.333 341.333c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-341.333-341.333c-8.533-8.533-17.067-12.8-29.867-12.8zM981.333 802.133h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 631.467c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe940;" glyph-name="eye" d="M512 290.133c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM512 546.133c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM512 119.467c-320 0-499.2 307.2-507.733 320s-8.533 29.867 0 42.667c8.533 12.8 187.733 320 507.733 320s499.2-307.2 507.733-320c8.533-12.8 8.533-29.867 0-42.667s-187.733-320-507.733-320zM93.867 460.8c42.667-64 192-256 418.133-256s375.467 192 418.133 256c-42.667 64-192 256-418.133 256s-375.467-192-418.133-256z" />
<glyph unicode="&#xe941;" glyph-name="factory" d="M298.667-51.2h-256c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-384c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v341.333h-85.333v-853.333h213.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333-51.2h-938.667c-25.6 0-42.667 17.067-42.667 42.667v554.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-512h853.333v469.333h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-554.667c0-25.6-17.067-42.667-42.667-42.667zM213.333 503.467c-12.8 0-25.6 4.267-34.133 17.067-12.8 17.067-12.8 46.933 8.533 59.733l213.333 170.667c12.8 8.533 29.867 12.8 46.933 4.267 12.8-8.533 21.333-21.333 21.333-38.4v-170.667c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v81.067l-145.067-115.2c-8.533-4.267-17.067-8.533-25.6-8.533zM426.667 503.467c-12.8 0-25.6 4.267-34.133 17.067-12.8 17.067-12.8 46.933 8.533 59.733l213.333 170.667c12.8 8.533 29.867 12.8 46.933 4.267 12.8-8.533 21.333-21.333 21.333-38.4v-170.667c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v81.067l-145.067-115.2c-8.533-4.267-17.067-8.533-25.6-8.533zM640 503.467c-12.8 0-25.6 4.267-34.133 17.067-12.8 17.067-12.8 46.933 8.533 59.733l213.333 170.667c12.8 8.533 29.867 12.8 46.933 4.267 12.8-8.533 21.333-21.333 21.333-38.4v-170.667c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v81.067l-145.067-115.2c-8.533-4.267-17.067-8.533-25.6-8.533zM810.667-51.2h-597.333c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-213.333c0-25.6-17.067-42.667-42.667-42.667zM256 34.133h512v128h-512v-128zM810.667 332.8h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe942;" glyph-name="fast-forward" d="M128 162.133c-8.533 0-12.8 0-21.333 4.267-12.8 8.533-21.333 21.333-21.333 38.4v512c0 17.067 8.533 29.867 21.333 38.4s29.867 8.533 42.667 0l384-256c12.8-8.533 17.067-21.333 17.067-34.133s-8.533-25.6-17.067-34.133l-384-256c-4.267-8.533-12.8-12.8-21.333-12.8zM170.667 635.733v-354.133l264.533 174.933-264.533 179.2zM512 162.133c-8.533 0-12.8 0-21.333 4.267-12.8 8.533-21.333 21.333-21.333 38.4v512c0 17.067 8.533 29.867 21.333 38.4s29.867 8.533 42.667 0l384-256c12.8-8.533 17.067-21.333 17.067-34.133s-8.533-25.6-17.067-34.133l-384-256c-4.267-8.533-12.8-12.8-21.333-12.8zM554.667 635.733v-354.133l264.533 174.933-264.533 179.2zM896 162.133c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe943;" glyph-name="file" d="M853.333-51.2h-682.667c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667v-938.667c0-25.6-17.067-42.667-42.667-42.667zM213.333 34.133h597.333v853.333h-597.333v-853.333zM554.667 674.133h-213.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h213.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 503.467h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM597.333 332.8h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 162.133h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe944;" glyph-name="file-add" d="M853.333 631.467h-256c-25.6 0-42.667 17.067-42.667 42.667v256h85.333v-213.333h213.333v-85.333zM725.333-51.2h-554.667c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667h426.667c12.8 0 21.333-4.267 29.867-12.8l256-256c8.533-8.533 12.8-17.067 12.8-29.867v-213.333h-85.333v196.267l-230.4 230.4h-366.933v-853.333h512v-85.333zM853.333 204.8h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM725.333 76.8c-25.6 0-42.667 17.067-42.667 42.667v256c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667zM725.333-51.2c-166.4 0-298.667 132.267-298.667 298.667s132.267 298.667 298.667 298.667 298.667-132.267 298.667-298.667-132.267-298.667-298.667-298.667zM725.333 460.8c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333 213.333 93.867 213.333 213.333-93.867 213.333-213.333 213.333z" />
<glyph unicode="&#xe945;" glyph-name="file-remove" d="M853.333 631.467h-256c-25.6 0-42.667 17.067-42.667 42.667v256h85.333v-213.333h213.333v-85.333zM725.333-51.2h-554.667c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667h426.667c12.8 0 21.333-4.267 29.867-12.8l256-256c8.533-8.533 12.8-17.067 12.8-29.867v-213.333h-85.333v196.267l-230.4 230.4h-366.933v-853.333h512v-85.333zM853.333 204.8h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM725.333-51.2c-166.4 0-298.667 132.267-298.667 298.667s132.267 298.667 298.667 298.667 298.667-132.267 298.667-298.667-132.267-298.667-298.667-298.667zM725.333 460.8c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333 213.333 93.867 213.333 213.333-93.867 213.333-213.333 213.333z" />
<glyph unicode="&#xe946;" glyph-name="files" d="M682.667 119.467h-512c-25.6 0-42.667 17.067-42.667 42.667v768c0 25.6 17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667v-768c0-25.6-17.067-42.667-42.667-42.667zM213.333 204.8h426.667v682.667h-426.667v-682.667zM853.333-51.2h-512c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128h426.667v682.667h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-768c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe947;" glyph-name="filter" d="M426.667-51.2c-8.533 0-17.067 4.267-21.333 4.267-12.8 8.533-21.333 25.6-21.333 38.4v371.2l-375.467 541.867c-8.533 12.8-12.8 29.867-4.267 46.933 8.533 12.8 21.333 21.333 38.4 21.333h938.667c17.067 0 29.867-8.533 38.4-21.333s4.267-29.867-4.267-42.667l-375.467-546.133v-285.867c0-17.067-8.533-29.867-25.6-38.4l-170.667-85.333c-4.267-4.267-8.533-4.267-17.067-4.267zM123.733 887.467l337.067-486.4c4.267-8.533 8.533-17.067 8.533-25.6v-315.733l85.333 42.667v273.067c0 8.533 4.267 17.067 8.533 25.6l337.067 486.4h-776.533z" />
<glyph unicode="&#xe948;" glyph-name="fire" d="M512-51.2c-213.333 0-384 170.667-384 384 0 170.667 102.4 349.867 145.067 418.133 25.6 38.4 145.067 221.867 238.933 221.867 25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667c-59.733-8.533-298.667-315.733-298.667-554.667 0-166.4 132.267-298.667 298.667-298.667s298.667 132.267 298.667 298.667c0 34.133-4.267 68.267-12.8 110.933-21.333 81.067-59.733 174.933-115.2 260.267-12.8 21.333-8.533 46.933 12.8 59.733s46.933 8.533 59.733-12.8c59.733-93.867 102.4-196.267 128-285.867 8.533-46.933 12.8-93.867 12.8-132.267 0-213.333-170.667-384-384-384zM640 550.4c-12.8 0-25.6 4.267-34.133 12.8-89.6 102.4-136.533 230.4-136.533 366.933 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-115.2 42.667-226.133 115.2-311.467 17.067-17.067 12.8-42.667-4.267-59.733-4.267-4.267-17.067-8.533-25.6-8.533zM640 550.4c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733 29.867 34.133 55.467 72.533 64 115.2 4.267 21.333 29.867 34.133 51.2 29.867s38.4-29.867 29.867-51.2c-12.8-55.467-46.933-110.933-85.333-153.6-8.533-8.533-21.333-12.8-29.867-12.8zM512-51.2c-119.467 0-213.333 93.867-213.333 213.333 0 132.267 132.267 341.333 213.333 341.333 25.6 0 42.667-17.067 42.667-42.667 0-21.333-17.067-38.4-38.4-42.667-29.867-17.067-132.267-153.6-132.267-256 0-72.533 55.467-128 128-128s128 55.467 128 128c0 12.8-4.267 29.867-8.533 51.2-8.533 38.4-29.867 81.067-55.467 123.733-12.8 21.333-8.533 46.933 12.8 59.733s46.933 8.533 59.733-12.8c29.867-46.933 55.467-102.4 68.267-149.333 4.267-25.6 8.533-46.933 8.533-72.533 0-119.467-93.867-213.333-213.333-213.333zM576 247.467c-12.8 0-25.6 4.267-34.133 12.8-46.933 59.733-72.533 128-72.533 200.533 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-51.2 17.067-102.4 51.2-140.8 17.067-17.067 12.8-42.667-4.267-59.733-4.267-8.533-17.067-12.8-25.6-12.8zM576 247.467c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733 12.8 12.8 21.333 29.867 25.6 46.933 4.267 21.333 29.867 38.4 51.2 29.867 21.333-4.267 38.4-29.867 29.867-51.2-8.533-34.133-25.6-64-51.2-85.333-4.267-8.533-17.067-12.8-25.6-12.8z" />
<glyph unicode="&#xe949;" glyph-name="first-aid" d="M341.333 802.133h-85.333c0 72.533 55.467 128 128 128v-85.333c-25.6 0-42.667-17.067-42.667-42.667zM768 802.133h-85.333c0 25.6-17.067 42.667-42.667 42.667v85.333c72.533 0 128-55.467 128-128zM768 674.133h-512v128h85.333v-42.667h341.333v42.667h85.333zM384 930.133h256v-85.333h-256v85.333zM896-8.533h-768c-72.533 0-128 55.467-128 128v512c0 72.533 55.467 128 128 128h768c72.533 0 128-55.467 128-128v-512c0-72.533-55.467-128-128-128zM128 674.133c-25.6 0-42.667-17.067-42.667-42.667v-512c0-25.6 17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667v512c0 25.6-17.067 42.667-42.667 42.667h-768zM512 162.133c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM682.667 332.8h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe94a;" glyph-name="flag" d="M170.667-51.2h-128c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-938.667c0-25.6-17.067-42.667-42.667-42.667zM85.333 34.133h42.667v853.333h-42.667v-853.333zM426.667 332.8c-89.6 0-260.267 42.667-264.533 42.667-21.333 4.267-38.4 29.867-29.867 51.2 4.267 21.333 29.867 38.4 51.2 29.867 0 0 166.4-42.667 247.467-42.667 38.4 0 102.4 8.533 162.133 21.333 68.267 12.8 132.267 21.333 179.2 21.333 55.467 0 123.733-17.067 170.667-29.867v430.933c-46.933 8.533-119.467 29.867-174.933 29.867-38.4 0-102.4-8.533-162.133-21.333-68.267-12.8-132.267-21.333-179.2-21.333-89.6 0-260.267 42.667-264.533 42.667-25.6 8.533-38.4 29.867-34.133 51.2 8.533 25.6 29.867 38.4 51.2 34.133 0 0 166.4-42.667 247.467-42.667 38.4 0 102.4 8.533 162.133 21.333 68.267 12.8 132.267 21.333 179.2 21.333 89.6 0 221.867-42.667 226.133-46.933 17.067-4.267 29.867-21.333 29.867-38.4v-512c0-12.8-8.533-25.6-17.067-34.133-12.8-8.533-25.6-8.533-38.4-4.267 0 0-123.733 38.4-200.533 38.4-38.4 0-102.4-8.533-162.133-21.333-68.267-12.8-132.267-21.333-179.2-21.333z" />
<glyph unicode="&#xe94b;" glyph-name="floppy" d="M981.333-51.2h-768c-12.8 0-21.333 4.267-29.867 12.8l-170.667 170.667c-8.533 8.533-12.8 17.067-12.8 29.867v768c0 25.6 17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667v-938.667c0-25.6-17.067-42.667-42.667-42.667zM230.4 34.133h708.267v853.333h-853.333v-708.267l145.067-145.067zM768-51.2h-512c-25.6 0-42.667 17.067-42.667 42.667v298.667c0 25.6 17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667zM298.667 34.133h426.667v213.333h-426.667v-213.333zM341.333 119.467h128v-170.667h-128v170.667zM512-51.2h-170.667v213.333h170.667v-213.333zM384-8.533h85.333v128h-85.333v-128zM810.667 418.133h-597.333c-25.6 0-42.667 17.067-42.667 42.667v469.333c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-469.333c0-25.6-17.067-42.667-42.667-42.667zM256 503.467h512v384h-512v-384z" />
<glyph unicode="&#xe94c;" glyph-name="folder" d="M853.333 34.133h-810.667c-25.6 0-42.667 17.067-42.667 42.667v768c0 25.6 17.067 42.667 42.667 42.667h298.667c25.6 0 42.667-17.067 42.667-42.667v-42.667h469.333c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v128h-469.333c-25.6 0-42.667 17.067-42.667 42.667v42.667h-213.333v-682.667h768c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM853.333 34.133h-810.667c-12.8 0-25.6 4.267-34.133 17.067s-8.533 21.333-8.533 34.133l128 512c4.267 21.333 21.333 34.133 42.667 34.133h810.667c12.8 0 25.6-4.267 34.133-17.067s8.533-21.333 8.533-34.133l-128-512c-4.267-21.333-21.333-34.133-42.667-34.133zM98.133 119.467h721.067l106.667 426.667h-721.067l-106.667-426.667z" />
<glyph unicode="&#xe94d;" glyph-name="folder-add" d="M482.133 119.467h-439.467c-25.6 0-42.667 17.067-42.667 42.667v768c0 25.6 17.067 42.667 42.667 42.667h298.667c25.6 0 42.667-17.067 42.667-42.667v-42.667h469.333c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v128h-469.333c-25.6 0-42.667 17.067-42.667 42.667v42.667h-213.333v-682.667h396.8c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM469.333 119.467h-426.667c-12.8 0-25.6 4.267-34.133 17.067-8.533 8.533-8.533 21.333-8.533 34.133l128 512c4.267 21.333 21.333 34.133 42.667 34.133h810.667c12.8 0 25.6-4.267 34.133-17.067 8.533-8.533 8.533-25.6 8.533-38.4l-72.533-251.733c-4.267-21.333-29.867-34.133-51.2-29.867s-34.133 29.867-29.867 51.2l55.467 200.533h-721.067l-106.667-426.667h371.2c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM853.333 204.8h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM725.333 76.8c-25.6 0-42.667 17.067-42.667 42.667v256c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667zM725.333-51.2c-166.4 0-298.667 132.267-298.667 298.667s132.267 298.667 298.667 298.667 298.667-132.267 298.667-298.667-132.267-298.667-298.667-298.667zM725.333 460.8c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333 213.333 93.867 213.333 213.333-93.867 213.333-213.333 213.333z" />
<glyph unicode="&#xe94e;" glyph-name="folder-remove" d="M482.133 119.467h-439.467c-25.6 0-42.667 17.067-42.667 42.667v768c0 25.6 17.067 42.667 42.667 42.667h298.667c25.6 0 42.667-17.067 42.667-42.667v-42.667h469.333c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v128h-469.333c-25.6 0-42.667 17.067-42.667 42.667v42.667h-213.333v-682.667h396.8c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM469.333 119.467h-426.667c-12.8 0-25.6 4.267-34.133 17.067-8.533 8.533-8.533 21.333-8.533 34.133l128 512c4.267 21.333 21.333 34.133 42.667 34.133h810.667c12.8 0 25.6-4.267 34.133-17.067 8.533-8.533 8.533-25.6 8.533-38.4l-72.533-251.733c-4.267-21.333-29.867-34.133-51.2-29.867s-34.133 29.867-29.867 51.2l55.467 200.533h-721.067l-106.667-426.667h371.2c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM853.333 204.8h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM725.333-51.2c-166.4 0-298.667 132.267-298.667 298.667s132.267 298.667 298.667 298.667 298.667-132.267 298.667-298.667-132.267-298.667-298.667-298.667zM725.333 460.8c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333 213.333 93.867 213.333 213.333-93.867 213.333-213.333 213.333z" />
<glyph unicode="&#xe94f;" glyph-name="fork-knife" d="M341.333 546.133v0c-93.867 0-170.667 76.8-170.667 170.667v213.333c0 25.6 17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667v-213.333c0-93.867-76.8-170.667-170.667-170.667zM256 887.467v-170.667c0-46.933 38.4-85.333 85.333-85.333v0c46.933 0 85.333 38.4 85.333 85.333v170.667h-170.667zM341.333-51.2c-25.6 0-42.667 17.067-42.667 42.667v554.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-554.667c0-25.6-17.067-42.667-42.667-42.667zM640-51.2c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-938.667c0-25.6-17.067-42.667-42.667-42.667zM810.667 332.8h-170.667c-25.6 0-42.667 17.067-42.667 42.667v554.667c0 25.6 17.067 42.667 42.667 42.667 119.467 0 213.333-93.867 213.333-213.333v-384c0-25.6-17.067-42.667-42.667-42.667zM682.667 418.133h85.333v341.333c0 55.467-34.133 102.4-85.333 119.467v-460.8z" />
<glyph unicode="&#xe950;" glyph-name="form" d="M938.667 716.8h-853.333c-46.933 0-85.333 38.4-85.333 85.333v85.333c0 46.933 38.4 85.333 85.333 85.333h853.333c46.933 0 85.333-38.4 85.333-85.333v-85.333c0-46.933-38.4-85.333-85.333-85.333zM938.667 802.133v0zM85.333 887.467v-85.333h853.333v85.333h-853.333zM938.667 332.8h-853.333c-46.933 0-85.333 38.4-85.333 85.333v85.333c0 46.933 38.4 85.333 85.333 85.333h853.333c46.933 0 85.333-38.4 85.333-85.333v-85.333c0-46.933-38.4-85.333-85.333-85.333zM938.667 418.133v0zM85.333 503.467v-85.333h853.333v85.333h-853.333zM469.333-8.533h-384c-21.333 0-42.667 21.333-42.667 42.667v85.333c0 21.333 21.333 42.667 42.667 42.667h384c25.6 0 42.667-21.333 42.667-42.667v-85.333c0-21.333-17.067-42.667-42.667-42.667zM469.333-51.2h-384c-46.933 0-85.333 38.4-85.333 85.333v85.333c0 46.933 38.4 85.333 85.333 85.333h384c46.933 0 85.333-38.4 85.333-85.333v-85.333c0-46.933-38.4-85.333-85.333-85.333zM469.333 34.133v0zM85.333 119.467v-85.333h384v85.333h-384z" />
<glyph unicode="&#xe951;" glyph-name="frame" d="M170.667 34.133c-25.6 0-42.667 17.067-42.667 42.667v768c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-768c0-25.6-17.067-42.667-42.667-42.667zM853.333 34.133c-25.6 0-42.667 17.067-42.667 42.667v768c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-768c0-25.6-17.067-42.667-42.667-42.667zM981.333 674.133h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 162.133h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe952;" glyph-name="full-screen" d="M213.333 76.8h-170.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 76.8h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM981.333 588.8c-25.6 0-42.667 17.067-42.667 42.667v128h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM42.667 588.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-128v-128c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe953;" glyph-name="gift" d="M938.667-51.2h-853.333c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667h853.333c25.6 0 42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667zM128 34.133h768v426.667h-768v-426.667zM981.333 460.8h-938.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM85.333 546.133h853.333v85.333h-853.333v-85.333zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-682.667c0-25.6-17.067-42.667-42.667-42.667zM640 631.467c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c46.933 0 85.333 38.4 85.333 85.333s-38.4 85.333-85.333 85.333-85.333-38.4-85.333-85.333c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667c0 93.867 76.8 170.667 170.667 170.667s170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM384 631.467c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667c0 46.933-38.4 85.333-85.333 85.333s-85.333-38.4-85.333-85.333 38.4-85.333 85.333-85.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512 546.133c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-213.333c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe954;" glyph-name="glass" d="M512 332.8v0c-145.067 0-256 115.2-256 256v341.333c0 25.6 17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667v-341.333c0-140.8-115.2-256-256-256zM341.333 887.467v-298.667c0-93.867 76.8-170.667 170.667-170.667v0c93.867 0 170.667 76.8 170.667 170.667v298.667h-341.333zM640-51.2h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512-51.2c0 0 0 0 0 0-25.6 0-42.667 21.333-42.667 42.667v384c0 21.333 21.333 42.667 42.667 42.667 0 0 0 0 0 0 25.6 0 42.667-21.333 42.667-42.667v-384c0-25.6-21.333-42.667-42.667-42.667zM725.333 674.133c0 0-4.267 0-4.267 0l-426.667 42.667c-21.333 4.267-38.4 21.333-38.4 46.933 4.267 21.333 21.333 38.4 46.933 38.4l426.667-42.667c21.333-4.267 42.667-21.333 38.4-46.933-4.267-21.333-21.333-38.4-42.667-38.4z" />
<glyph unicode="&#xe955;" glyph-name="glasses" d="M213.333 76.8c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333 213.333-93.867 213.333-213.333-93.867-213.333-213.333-213.333zM213.333 418.133c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM810.667 76.8c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333 213.333-93.867 213.333-213.333-93.867-213.333-213.333-213.333zM810.667 418.133c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM644.267 273.067c-12.8 0-25.6 4.267-34.133 17.067-25.6 25.6-59.733 42.667-98.133 42.667s-72.533-17.067-98.133-46.933c-17.067-17.067-42.667-21.333-59.733-4.267s-21.333 42.667-4.267 59.733c42.667 46.933 98.133 76.8 162.133 76.8s123.733-25.6 162.133-76.8c17.067-17.067 12.8-46.933-4.267-59.733-8.533-4.267-17.067-8.533-25.6-8.533zM42.667 247.467c-25.6 0-42.667 17.067-42.667 42.667 0 166.4 17.067 554.667 170.667 554.667 93.867 0 128-76.8 128-128 0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667c0 21.333-8.533 42.667-42.667 42.667-38.4 0-85.333-217.6-85.333-469.333 0-25.6-17.067-42.667-42.667-42.667zM981.333 247.467c-25.6 0-42.667 17.067-42.667 42.667 0 324.267-59.733 469.333-85.333 469.333-34.133 0-42.667-25.6-42.667-42.667 0-21.333-21.333-42.667-42.667-42.667 0 0 0 0 0 0-21.333 0-42.667 17.067-42.667 42.667 0 51.2 34.133 128 128 128 153.6 0 170.667-388.267 170.667-554.667 0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe956;" glyph-name="grid" d="M426.667 503.467h-384c-25.6 0-42.667 17.067-42.667 42.667v384c0 25.6 17.067 42.667 42.667 42.667h384c25.6 0 42.667-17.067 42.667-42.667v-384c0-25.6-17.067-42.667-42.667-42.667zM85.333 588.8h298.667v298.667h-298.667v-298.667zM981.333 503.467h-384c-25.6 0-42.667 17.067-42.667 42.667v384c0 25.6 17.067 42.667 42.667 42.667h384c25.6 0 42.667-17.067 42.667-42.667v-384c0-25.6-17.067-42.667-42.667-42.667zM640 588.8h298.667v298.667h-298.667v-298.667zM426.667-51.2h-384c-25.6 0-42.667 17.067-42.667 42.667v384c0 25.6 17.067 42.667 42.667 42.667h384c25.6 0 42.667-17.067 42.667-42.667v-384c0-25.6-17.067-42.667-42.667-42.667zM85.333 34.133h298.667v298.667h-298.667v-298.667zM981.333-51.2h-384c-25.6 0-42.667 17.067-42.667 42.667v384c0 25.6 17.067 42.667 42.667 42.667h384c25.6 0 42.667-17.067 42.667-42.667v-384c0-25.6-17.067-42.667-42.667-42.667zM640 34.133h298.667v298.667h-298.667v-298.667z" />
<glyph unicode="&#xe957;" glyph-name="group" d="M213.333 716.8h-170.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM85.333 802.133h85.333v85.333h-85.333v-85.333zM981.333 716.8h-170.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM853.333 802.133h85.333v85.333h-85.333v-85.333zM213.333-51.2h-170.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM85.333 34.133h85.333v85.333h-85.333v-85.333zM981.333-51.2h-170.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM853.333 34.133h85.333v85.333h-85.333v-85.333zM128 119.467c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM810.667 34.133h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM896 119.467c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM810.667 802.133h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe958;" glyph-name="headset" d="M256 162.133h-85.333c-93.867 0-170.667 76.8-170.667 170.667v42.667c0 93.867 76.8 170.667 170.667 170.667h85.333c25.6 0 42.667-17.067 42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667zM170.667 460.8c-46.933 0-85.333-38.4-85.333-85.333v-42.667c0-46.933 38.4-85.333 85.333-85.333h42.667v213.333h-42.667zM853.333 162.133h-85.333c-25.6 0-42.667 17.067-42.667 42.667v298.667c0 25.6 17.067 42.667 42.667 42.667h85.333c93.867 0 170.667-76.8 170.667-170.667v-42.667c0-93.867-76.8-170.667-170.667-170.667zM810.667 247.467h42.667c46.933 0 85.333 38.4 85.333 85.333v42.667c0 46.933-38.4 85.333-85.333 85.333h-42.667v-213.333zM891.733 456.533c-4.267 0-4.267 0-8.533 0-21.333 4.267-38.4 25.6-34.133 46.933 0 12.8 4.267 25.6 4.267 42.667 0 187.733-153.6 341.333-341.333 341.333s-341.333-153.6-341.333-341.333c0-17.067 0-29.867 4.267-42.667 4.267-21.333-12.8-46.933-34.133-46.933-21.333-4.267-46.933 12.8-46.933 34.133-8.533 17.067-8.533 34.133-8.533 55.467 0 234.667 192 426.667 426.667 426.667s426.667-192 426.667-426.667c0-21.333 0-38.4-4.267-55.467-4.267-21.333-21.333-34.133-42.667-34.133zM512-51.2c-93.867 0-128 76.8-128 128s34.133 128 128 128 128-76.8 128-128c0-8.533 0-17.067-4.267-25.6 93.867 25.6 157.867 85.333 192 170.667 8.533 21.333 34.133 34.133 55.467 25.6s34.133-34.133 25.6-55.467c-42.667-110.933-149.333-243.2-396.8-243.2zM512 119.467c-34.133 0-42.667-25.6-42.667-42.667s8.533-42.667 42.667-42.667 42.667 25.6 42.667 42.667c0 17.067-8.533 42.667-42.667 42.667z" />
<glyph unicode="&#xe959;" glyph-name="heart" d="M42.667 541.867c-21.333 0-38.4 17.067-42.667 38.4 0 8.533 0 21.333 0 29.867s0 17.067 0 25.6v8.533c0 12.8 4.267 25.6 8.533 38.4 12.8 42.667 29.867 76.8 55.467 106.667 4.267 4.267 4.267 4.267 8.533 8.533 51.2 55.467 123.733 89.6 204.8 89.6 153.6 0 277.333-123.733 277.333-277.333 0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667c0 106.667-85.333 192-192 192-55.467 0-106.667-21.333-140.8-64 0 0 0 0 0 0s0 0 0 0 0 0 0-4.267c-17.067-21.333-29.867-42.667-38.4-72.533-8.533-8.533-8.533-12.8-8.533-21.333v-12.8c0-4.267 0-12.8 0-17.067 0-8.533 0-12.8 0-17.067 4.267-21.333-12.8-42.667-38.4-46.933-4.267-4.267-4.267-4.267-8.533-4.267zM981.333 541.867c0 0-4.267 0-4.267 0-25.6 4.267-42.667 25.6-38.4 46.933 0 8.533 0 12.8 0 21.333 0 4.267 0 12.8 0 17.067v8.533c0 0 0 4.267 0 4.267 0 8.533-4.267 12.8-4.267 21.333-8.533 29.867-21.333 51.2-38.4 72.533 0 0 0 0-4.267 4.267-38.4 42.667-89.6 64-145.067 64-106.667 0-192-85.333-192-192 0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667c0 153.6 123.733 277.333 277.333 277.333 81.067 0 153.6-34.133 209.067-93.867 0 0 0 0 0 0s0 0 4.267-4.267c25.6-29.867 42.667-64 55.467-102.4 4.267-8.533 4.267-21.333 8.533-34.133 0 0 0-4.267 0-4.267v-8.533c0-8.533 0-17.067 0-29.867 0-8.533 0-17.067 0-29.867-4.267-21.333-21.333-38.4-42.667-38.4zM512 34.133c-183.467 0-490.667 294.4-512 550.4 0 8.533 0 17.067 0 25.6s0 17.067 0 25.6v8.533c4.267 17.067 8.533 29.867 12.8 42.667s8.533 25.6 12.8 34.133c4.267 12.8 8.533 25.6 17.067 34.133l8.533 12.8c8.533 8.533 12.8 17.067 17.067 21.333 17.067 17.067 42.667 17.067 59.733 4.267 17.067-17.067 17.067-42.667 4.267-59.733-4.267 0-4.267-4.267-8.533-8.533l-8.533-12.8c-4.267-8.533-8.533-17.067-12.8-25.6s-8.533-17.067-8.533-25.6c0-8.533-4.267-17.067-4.267-25.6v-8.533c0-4.267 0-12.8 0-17.067-4.267-4.267-4.267-12.8-4.267-21.333 17.067-204.8 281.6-469.333 426.667-469.333s409.6 268.8 426.667 469.333c0 8.533 0 12.8 0 21.333 0 4.267 0 12.8 0 17.067v12.8c0 4.267-4.267 17.067-4.267 25.6-8.533 25.6-21.333 51.2-38.4 72.533-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0c0 0 4.267-4.267 8.533-8.533 21.333-29.867 42.667-64 51.2-98.133 4.267-12.8 4.267-25.6 8.533-38.4v-12.8c0-8.533 0-17.067 0-29.867 0-8.533 0-17.067 0-29.867-21.333-251.733-328.533-546.133-512-546.133z" />
<glyph unicode="&#xe95a;" glyph-name="hide-sdebar-vert" d="M853.333-51.2h-682.667c-93.867 0-170.667 76.8-170.667 170.667v682.667c0 93.867 76.8 170.667 170.667 170.667h682.667c93.867 0 170.667-76.8 170.667-170.667v-682.667c0-93.867-76.8-170.667-170.667-170.667zM170.667 887.467c-46.933 0-85.333-38.4-85.333-85.333v-682.667c0-46.933 38.4-85.333 85.333-85.333h682.667c46.933 0 85.333 38.4 85.333 85.333v682.667c0 46.933-38.4 85.333-85.333 85.333h-682.667zM981.333 588.8h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM640 204.8c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM384 204.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe95b;" glyph-name="hide-sidebar-horiz" d="M853.333-51.2h-682.667c-93.867 0-170.667 76.8-170.667 170.667v682.667c0 93.867 76.8 170.667 170.667 170.667h682.667c93.867 0 170.667-76.8 170.667-170.667v-682.667c0-93.867-76.8-170.667-170.667-170.667zM170.667 887.467c-46.933 0-85.333-38.4-85.333-85.333v-682.667c0-46.933 38.4-85.333 85.333-85.333h682.667c46.933 0 85.333 38.4 85.333 85.333v682.667c0 46.933-38.4 85.333-85.333 85.333h-682.667zM341.333-51.2c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-938.667c0-25.6-17.067-42.667-42.667-42.667zM597.333 418.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM725.333 290.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe95c;" glyph-name="home" d="M810.667-51.2h-597.333c-25.6 0-42.667 17.067-42.667 42.667v384h-128c-17.067 0-34.133 8.533-38.4 25.6-8.533 17.067-4.267 34.133 8.533 46.933l469.333 512c17.067 17.067 46.933 17.067 64 0l469.333-512c12.8-12.8 12.8-29.867 8.533-46.933-8.533-17.067-25.6-25.6-42.667-25.6h-128v-384c0-25.6-17.067-42.667-42.667-42.667zM256 34.133h512v384c0 25.6 17.067 42.667 42.667 42.667h72.533l-371.2 405.333-371.2-405.333h72.533c25.6 0 42.667-17.067 42.667-42.667v-384zM597.333-51.2h-170.667c-25.6 0-42.667 17.067-42.667 42.667v256c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667zM469.333 34.133h85.333v170.667h-85.333v-170.667zM512 418.133c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM512 588.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667z" />
<glyph unicode="&#xe95d;" glyph-name="id" d="M981.333 76.8h-938.667c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667h384c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-341.333v-597.333h853.333v597.333h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h384c25.6 0 42.667-17.067 42.667-42.667v-682.667c0-25.6-17.067-42.667-42.667-42.667zM597.333 674.133h-170.667c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-213.333c0-25.6-17.067-42.667-42.667-42.667zM469.333 759.467h85.333v128h-85.333v-128zM341.333 290.133h-128c-25.6 0-42.667 17.067-42.667 42.667v256c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667zM256 375.467h42.667v170.667h-42.667v-170.667zM768 546.133h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM640 418.133h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM725.333 290.133h-213.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h213.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe95e;" glyph-name="image" d="M981.333-51.2h-938.667c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667v-938.667c0-25.6-17.067-42.667-42.667-42.667zM85.333 34.133h853.333v853.333h-853.333v-853.333zM981.333 162.133h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM42.667 247.467c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l256 256c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-256-256c-8.533-8.533-17.067-12.8-29.867-12.8zM469.333 332.8c-12.8 0-21.333 4.267-29.867 12.8l-170.667 170.667c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l170.667-170.667c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM384 418.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l213.333 213.333c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-213.333-213.333c-8.533-8.533-17.067-12.8-29.867-12.8zM960 268.8c-12.8 0-21.333 4.267-29.867 12.8l-362.667 362.667c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l362.667-362.667c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM128 674.133c-42.667 0-81.067 17.067-115.2 42.667-17.067 17.067-17.067 42.667-4.267 59.733 17.067 17.067 42.667 17.067 59.733 4.267s38.4-21.333 59.733-21.333c46.933 0 85.333 38.4 85.333 85.333 0 21.333-8.533 42.667-21.333 55.467-17.067 17.067-12.8 42.667 4.267 59.733s42.667 17.067 59.733 0c25.6-34.133 42.667-72.533 42.667-115.2 0-93.867-76.8-170.667-170.667-170.667z" />
<glyph unicode="&#xe95f;" glyph-name="info" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM469.333 204.8c-17.067 0-29.867 8.533-42.667 21.333-21.333 29.867-4.267 72.533 42.667 187.733 8.533 17.067 17.067 38.4 25.6 55.467-17.067-12.8-42.667-12.8-59.733 4.267s-17.067 42.667 0 59.733c8.533 4.267 59.733 55.467 119.467 55.467 17.067 0 29.867-8.533 42.667-21.333 21.333-29.867 4.267-72.533-42.667-187.733-8.533-17.067-17.067-38.4-25.6-55.467 17.067 12.8 42.667 12.8 59.733-4.267s17.067-42.667 0-59.733c-8.533-4.267-59.733-55.467-119.467-55.467zM640 695.467c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64zM576 610.133c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM576 738.133c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667z" />
<glyph unicode="&#xe960;" glyph-name="invoice" d="M853.333-51.2h-682.667c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667v-938.667c0-25.6-17.067-42.667-42.667-42.667zM213.333 34.133h597.333v853.333h-597.333v-853.333zM682.667 674.133h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512 503.467h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512 332.8h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 503.467h-42.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h42.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 332.8h-42.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h42.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM597.333 162.133h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe961;" glyph-name="juice" d="M725.333-51.2h-426.667c-21.333 0-38.4 17.067-42.667 38.4l-85.333 682.667c0 12.8 4.267 25.6 8.533 34.133 8.533 8.533 21.333 12.8 34.133 12.8h597.333c12.8 0 25.6-4.267 29.867-12.8 8.533-12.8 12.8-21.333 12.8-34.133l-85.333-682.667c-4.267-21.333-21.333-38.4-42.667-38.4zM337.067 34.133h349.867l76.8 597.333h-503.467l76.8-597.333zM512 76.8c-4.267 0-8.533 0-12.8 4.267-21.333 8.533-34.133 34.133-25.6 55.467l298.667 810.667c8.533 21.333 34.133 34.133 55.467 25.6s34.133-34.133 25.6-55.467l-298.667-810.667c-8.533-21.333-25.6-29.867-42.667-29.867zM640 290.133c-21.333 0-34.133 0-51.2 4.267-46.933 4.267-85.333 12.8-115.2 25.6-34.133 4.267-55.467 12.8-89.6 12.8-29.867 0-72.533-8.533-119.467-17.067-21.333-4.267-46.933 8.533-51.2 29.867s8.533 46.933 29.867 51.2c38.4 8.533 93.867 21.333 140.8 21.333 42.667 0 81.067-8.533 110.933-21.333 29.867-8.533 59.733-17.067 98.133-21.333 42.667-4.267 106.667 0 166.4 8.533 21.333 4.267 46.933-12.8 51.2-34.133s-12.8-46.933-34.133-51.2c-46.933-4.267-93.867-8.533-136.533-8.533z" />
<glyph unicode="&#xe962;" glyph-name="key" d="M426.667-51.2c-8.533 0-17.067 4.267-21.333 4.267-12.8 8.533-21.333 25.6-21.333 38.4v473.6c-119.467 21.333-213.333 123.733-213.333 251.733 0 145.067 115.2 256 256 256h170.667c140.8 0 256-115.2 256-256 0-128-93.867-234.667-213.333-256v-384c0-17.067-8.533-29.867-25.6-38.4l-170.667-85.333c-4.267-4.267-8.533-4.267-17.067-4.267zM426.667 887.467c-93.867 0-170.667-76.8-170.667-170.667 0-98.133 76.8-170.667 170.667-170.667 25.6 0 42.667-17.067 42.667-42.667v-443.733l85.333 42.667v401.067c0 25.6 17.067 42.667 42.667 42.667 93.867 0 170.667 76.8 170.667 170.667 0 98.133-76.8 170.667-170.667 170.667h-170.667zM554.667 716.8h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h85.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe963;" glyph-name="lamp" d="M853.333 375.467c0 0 0 0 0 0h-682.667c-12.8 0-25.6 4.267-34.133 17.067-8.533 8.533-8.533 21.333-8.533 34.133l128 512c4.267 21.333 21.333 34.133 42.667 34.133h426.667c21.333 0 38.4-12.8 42.667-34.133l128-503.467c0-4.267 0-8.533 0-17.067 0-25.6-17.067-42.667-42.667-42.667zM226.133 460.8h571.733l-106.667 426.667h-358.4l-106.667-426.667zM725.333-51.2h-426.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-426.667c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe964;" glyph-name="layers" d="M512 375.467c-4.267 0-12.8 0-17.067 4.267l-469.333 213.333c-17.067 8.533-25.6 21.333-25.6 38.4s8.533 29.867 25.6 38.4l469.333 213.333c12.8 4.267 25.6 4.267 34.133 0l469.333-213.333c17.067-8.533 25.6-21.333 25.6-38.4s-8.533-29.867-25.6-38.4l-469.333-213.333c-4.267-4.267-12.8-4.267-17.067-4.267zM145.067 631.467l366.933-166.4 366.933 166.4-366.933 166.4-366.933-166.4zM512 34.133c-4.267 0-12.8 0-17.067 4.267l-469.333 213.333c-17.067 8.533-25.6 21.333-25.6 38.4s8.533 29.867 25.6 38.4l187.733 85.333c21.333 8.533 46.933 0 55.467-21.333s0-46.933-21.333-55.467l-102.4-46.933 366.933-166.4 366.933 166.4-102.4 46.933c-21.333 8.533-29.867 34.133-21.333 55.467s34.133 29.867 55.467 21.333l187.733-85.333c17.067-8.533 25.6-21.333 25.6-38.4s-8.533-29.867-25.6-38.4l-469.333-213.333c-4.267-4.267-12.8-4.267-17.067-4.267zM512 204.8c-4.267 0-12.8 0-17.067 4.267l-469.333 213.333c-17.067 8.533-25.6 21.333-25.6 38.4s8.533 29.867 25.6 38.4l187.733 85.333c21.333 8.533 46.933 0 55.467-21.333s0-46.933-21.333-55.467l-102.4-46.933 366.933-166.4 366.933 166.4-102.4 46.933c-21.333 8.533-29.867 34.133-21.333 55.467s34.133 29.867 55.467 21.333l187.733-85.333c17.067-8.533 25.6-21.333 25.6-38.4s-8.533-29.867-25.6-38.4l-469.333-213.333c-4.267-4.267-12.8-4.267-17.067-4.267z" />
<glyph unicode="&#xe965;" glyph-name="leaf" d="M512 162.133c-285.867 0-341.333 110.933-341.333 298.667 0 277.333 302.933 494.933 315.733 503.467s34.133 8.533 51.2 0c12.8-8.533 315.733-226.133 315.733-503.467 0-72.533 0-298.667-341.333-298.667zM512 874.667c-68.267-51.2-256-221.867-256-413.867 0-153.6 21.333-213.333 256-213.333s256 110.933 256 213.333c0 192-187.733 362.667-256 413.867zM597.333-51.2c-12.8 0-25.6 8.533-34.133 17.067-153.6 234.667-110.933 554.667-98.133 674.133 4.267 17.067 4.267 29.867 4.267 34.133 0 21.333 21.333 42.667 42.667 42.667 0 0 0 0 0 0 21.333 0 42.667-17.067 42.667-42.667 0-8.533 0-21.333-4.267-42.667-17.067-110.933-55.467-409.6 81.067-614.4 12.8-21.333 8.533-46.933-12.8-59.733-4.267-4.267-12.8-8.533-21.333-8.533z" />
<glyph unicode="&#xe966;" glyph-name="left" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM554.667 290.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-98.133-98.133 98.133-98.133c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe967;" glyph-name="left-right" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM597.333 290.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l98.133 98.133-98.133 98.133c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM426.667 290.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-98.133-98.133 98.133-98.133c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe968;" glyph-name="lego-block" d="M1024 332.8h-1024v469.333h1024v-469.333zM85.333 418.133h853.333v298.667h-853.333v-298.667zM426.667 716.8h-341.333v256h341.333v-256zM170.667 802.133h170.667v85.333h-170.667v-85.333zM938.667 716.8h-341.333v256h341.333v-256zM682.667 802.133h170.667v85.333h-170.667v-85.333zM1024-51.2h-1024v469.333h1024v-469.333zM85.333 34.133h853.333v298.667h-853.333v-298.667z" />
<glyph unicode="&#xe969;" glyph-name="life-buoy" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM512 162.133c-166.4 0-298.667 132.267-298.667 298.667s132.267 298.667 298.667 298.667 298.667-132.267 298.667-298.667-132.267-298.667-298.667-298.667zM512 674.133c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333 213.333 93.867 213.333 213.333-93.867 213.333-213.333 213.333zM294.4 554.667c-8.533 0-17.067 4.267-21.333 8.533l-179.2 115.2c-21.333 12.8-25.6 38.4-12.8 55.467 12.8 21.333 38.4 25.6 59.733 17.067l179.2-115.2c21.333-12.8 25.6-38.4 12.8-59.733-8.533-12.8-21.333-21.333-38.4-21.333zM908.8 166.4c-8.533 0-17.067 4.267-21.333 8.533l-179.2 115.2c-21.333 12.8-25.6 38.4-12.8 59.733s38.4 25.6 59.733 12.8l179.2-115.2c21.333-12.8 25.6-38.4 12.8-59.733-12.8-12.8-25.6-21.333-38.4-21.333zM115.2 166.4c-12.8 0-29.867 8.533-34.133 21.333-12.8 21.333-8.533 46.933 12.8 59.733l179.2 115.2c21.333 12.8 46.933 8.533 59.733-12.8s8.533-46.933-12.8-59.733l-179.2-115.2c-8.533-8.533-17.067-8.533-25.6-8.533zM729.6 554.667c-12.8 0-29.867 8.533-34.133 21.333-12.8 21.333-8.533 46.933 12.8 59.733l179.2 115.2c21.333 12.8 46.933 8.533 59.733-12.8s8.533-46.933-12.8-59.733l-179.2-115.2c-12.8-4.267-21.333-8.533-25.6-8.533z" />
<glyph unicode="&#xe96a;" glyph-name="light-bulb" d="M640 162.133h-256c-25.6 0-42.667 17.067-42.667 42.667v21.333c0 59.733-25.6 119.467-72.533 166.4-68.267 68.267-102.4 157.867-98.133 251.733 8.533 179.2 157.867 324.267 337.067 328.533h4.267c187.733 0 341.333-153.6 341.333-341.333 0-89.6-34.133-179.2-102.4-243.2-46.933-42.667-68.267-102.4-68.267-162.133v-21.333c0-25.6-17.067-42.667-42.667-42.667zM426.667 247.467h170.667c4.267 76.8 38.4 145.067 93.867 204.8 51.2 46.933 76.8 110.933 76.8 179.2 0 140.8-115.2 256-256 256h-4.267c-132.267-4.267-247.467-110.933-251.733-247.467-4.267-68.267 25.6-136.533 72.533-187.733 59.733-59.733 93.867-132.267 98.133-204.8zM512-51.2v0c-93.867 0-170.667 76.8-170.667 170.667v85.333c0 25.6 17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667v-85.333c0-93.867-76.8-170.667-170.667-170.667zM426.667 162.133v-42.667c0-46.933 38.4-85.333 85.333-85.333v0c46.933 0 85.333 38.4 85.333 85.333v42.667h-170.667zM384 588.8c-25.6 0-42.667 17.067-42.667 42.667 0 93.867 76.8 170.667 170.667 170.667 25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667c-46.933 0-85.333-38.4-85.333-85.333 0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe96b;" glyph-name="link" d="M610.133 298.667c-59.733 0-119.467 25.6-162.133 68.267-59.733 59.733-81.067 136.533-64 213.333 0 25.6 21.333 42.667 42.667 34.133 21.333-4.267 38.4-25.6 34.133-51.2-8.533-46.933 4.267-98.133 38.4-132.267 38.4-38.4 89.6-51.2 136.533-42.667 25.6 4.267 51.2 17.067 68.267 34.133 4.267 4.267 4.267 4.267 8.533 4.267l123.733 123.733c55.467 55.467 55.467 149.333 0 209.067-59.733 59.733-153.6 59.733-213.333 4.267l-64-64c0 0-4.267-4.267-4.267-4.267-12.8-17.067-42.667-21.333-59.733-8.533s-21.333 42.667-8.533 59.733c8.533 8.533 12.8 12.8 17.067 12.8l64 64c89.6 89.6 238.933 89.6 328.533 0 93.867-93.867 93.867-238.933 4.267-332.8l-123.733-123.733c-4.267-4.267-8.533-8.533-12.8-12.8-29.867-25.6-64-42.667-106.667-51.2-17.067 0-34.133-4.267-46.933-4.267zM337.067 29.867c-59.733 0-119.467 21.333-166.4 68.267-93.867 93.867-93.867 238.933-4.267 332.8l123.733 123.733c8.533 0 8.533 4.267 12.8 8.533 29.867 25.6 64 42.667 106.667 51.2 76.8 17.067 153.6-8.533 213.333-64 59.733-59.733 81.067-136.533 64-213.333-4.267-21.333-25.6-38.4-51.2-34.133-21.333 4.267-38.4 25.6-34.133 51.2 8.533 46.933-4.267 98.133-38.4 132.267-38.4 38.4-89.6 51.2-136.533 42.667-25.6-4.267-51.2-17.067-68.267-34.133-4.267-4.267-4.267-4.267-8.533-4.267l-123.733-123.733c-55.467-55.467-55.467-149.333 0-209.067 59.733-59.733 153.6-59.733 213.333-4.267l64 64c0 0 4.267 4.267 4.267 4.267 12.8 17.067 42.667 21.333 59.733 8.533s21.333-42.667 8.533-59.733c-4.267-4.267-8.533-8.533-12.8-12.8l-64-64c-42.667-42.667-102.4-64-162.133-64z" />
<glyph unicode="&#xe96c;" glyph-name="list" d="M170.667 674.133c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM170.667 844.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM170.667 652.8c-81.067 0-149.333 68.267-149.333 149.333s68.267 149.333 149.333 149.333 149.333-68.267 149.333-149.333-68.267-149.333-149.333-149.333zM170.667 908.8c-59.733 0-106.667-46.933-106.667-106.667s46.933-106.667 106.667-106.667 106.667 46.933 106.667 106.667-46.933 106.667-106.667 106.667zM170.667 738.133c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM170.667 823.467c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333zM170.667-8.533c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM170.667 162.133c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM170.667-29.867c-81.067 0-149.333 68.267-149.333 149.333s68.267 149.333 149.333 149.333 149.333-68.267 149.333-149.333-68.267-149.333-149.333-149.333zM170.667 226.133c-59.733 0-106.667-46.933-106.667-106.667s46.933-106.667 106.667-106.667 106.667 46.933 106.667 106.667-46.933 106.667-106.667 106.667zM170.667 55.467c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM170.667 140.8c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333zM170.667 332.8c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM170.667 503.467c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM170.667 311.467c-81.067 0-149.333 68.267-149.333 149.333s68.267 149.333 149.333 149.333 149.333-68.267 149.333-149.333-68.267-149.333-149.333-149.333zM170.667 567.467c-59.733 0-106.667-46.933-106.667-106.667s46.933-106.667 106.667-106.667 106.667 46.933 106.667 106.667-46.933 106.667-106.667 106.667zM170.667 396.8c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM170.667 482.133c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333zM938.667 716.8h-512c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM938.667 716.8h-512c-34.133 0-64 29.867-64 64s29.867 64 64 64h512c34.133 0 64-29.867 64-64s-29.867-64-64-64zM426.667 802.133c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h512c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-512zM682.667 375.467h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 375.467h-256c-34.133 0-64 29.867-64 64s29.867 64 64 64h256c34.133 0 64-29.867 64-64s-29.867-64-64-64zM426.667 460.8c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h256c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-256zM810.667 34.133h-384c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h384c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 34.133h-384c-34.133 0-64 29.867-64 64s29.867 64 64 64h384c34.133 0 64-29.867 64-64s-29.867-64-64-64zM426.667 119.467c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h384c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-384z" />
<glyph unicode="&#xe96d;" glyph-name="loading" d="M512 759.467c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667zM170.667 418.133h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 418.133h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM806.4 588.8c-12.8 0-29.867 8.533-38.4 21.333-12.8 21.333-4.267 46.933 17.067 59.733l110.933 64c21.333 12.8 46.933 4.267 59.733-17.067s4.267-46.933-17.067-59.733l-110.933-64c-4.267-4.267-12.8-4.267-21.333-4.267zM106.667 183.467c-12.8 0-29.867 8.533-38.4 21.333-12.8 21.333-4.267 46.933 17.067 59.733l110.933 64c21.333 12.8 46.933 4.267 59.733-17.067s4.267-46.933-17.067-59.733l-110.933-64c-8.533-4.267-17.067-4.267-21.333-4.267zM682.667 712.533c-8.533 0-12.8 0-21.333 4.267-21.333 12.8-25.6 38.4-17.067 59.733l64 110.933c12.8 21.333 38.4 25.6 59.733 17.067 21.333-12.8 25.6-38.4 17.067-59.733l-64-110.933c-8.533-12.8-25.6-21.333-38.4-21.333zM277.333 12.8c-8.533 0-12.8 0-21.333 4.267-21.333 12.8-25.6 38.4-17.067 59.733l64 110.933c12.8 17.067 38.4 25.6 59.733 12.8s25.6-38.4 17.067-59.733l-64-106.667c-8.533-12.8-25.6-21.333-38.4-21.333zM217.6 588.8c-8.533 0-17.067 0-21.333 4.267l-110.933 64c-21.333 12.8-29.867 38.4-17.067 59.733s38.4 25.6 59.733 17.067l110.933-64c21.333-12.8 25.6-38.4 12.8-59.733-4.267-12.8-21.333-21.333-34.133-21.333zM917.333 183.467c-8.533 0-12.8 0-21.333 4.267l-110.933 64c-21.333 12.8-25.6 38.4-17.067 59.733 12.8 21.333 38.4 25.6 59.733 17.067l110.933-64c21.333-12.8 25.6-38.4 17.067-59.733-8.533-12.8-21.333-21.333-38.4-21.333zM341.333 712.533c-12.8 0-29.867 8.533-38.4 21.333l-64 110.933c-8.533 21.333-4.267 46.933 17.067 59.733s46.933 4.267 59.733-17.067l64-110.933c8.533-21.333 4.267-46.933-17.067-55.467-8.533-4.267-12.8-8.533-21.333-8.533zM746.667 12.8c-12.8 0-29.867 8.533-38.4 21.333l-64 110.933c-12.8 21.333-4.267 46.933 17.067 59.733s46.933 4.267 59.733-17.067l64-110.933c12.8-21.333 4.267-46.933-17.067-59.733-8.533-4.267-12.8-4.267-21.333-4.267z" />
<glyph unicode="&#xe96e;" glyph-name="logout" d="M640-51.2h-597.333c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v256h-512v-853.333h512v256c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667zM981.333 418.133h-640c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h640c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 418.133c-12.8 0-21.333 4.267-29.867 12.8l-170.667 170.667c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l170.667-170.667c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM810.667 247.467c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l170.667 170.667c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-170.667-170.667c-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe96f;" glyph-name="mail" d="M981.333 119.467h-938.667c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM85.333 204.8h853.333v512h-853.333v-512zM512 418.133c-12.8 0-29.867 8.533-34.133 21.333-12.8 21.333-8.533 46.933 12.8 59.733l469.333 298.667c21.333 12.8 46.933 8.533 59.733-12.8s8.533-46.933-12.8-59.733l-469.333-298.667c-8.533-4.267-17.067-8.533-25.6-8.533zM512 418.133c-8.533 0-17.067 4.267-21.333 8.533l-469.333 298.667c-21.333 12.8-25.6 38.4-12.8 55.467 12.8 21.333 38.4 25.6 55.467 12.8l469.333-298.667c21.333-12.8 25.6-38.4 12.8-59.733-4.267-8.533-21.333-17.067-34.133-17.067z" />
<glyph unicode="&#xe970;" glyph-name="mail-open" d="M981.333-51.2h-938.667c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM85.333 34.133h853.333v512h-853.333v-512zM512 247.467c-12.8 0-29.867 8.533-34.133 21.333-12.8 21.333-8.533 46.933 12.8 59.733l469.333 298.667c21.333 12.8 46.933 8.533 59.733-12.8s8.533-46.933-12.8-59.733l-469.333-298.667c-8.533-4.267-17.067-8.533-25.6-8.533zM512 247.467c-8.533 0-17.067 4.267-21.333 8.533l-469.333 298.667c-21.333 12.8-25.6 38.4-12.8 55.467 12.8 21.333 38.4 25.6 55.467 12.8l469.333-298.667c21.333-12.8 25.6-38.4 12.8-59.733-4.267-8.533-21.333-17.067-34.133-17.067zM42.667 546.133c-12.8 0-25.6 4.267-34.133 17.067-12.8 21.333-8.533 46.933 8.533 59.733l469.333 341.333c17.067 12.8 46.933 8.533 59.733-8.533s8.533-46.933-8.533-59.733l-469.333-341.333c-8.533-4.267-17.067-8.533-25.6-8.533zM981.333 546.133c-8.533 0-17.067 4.267-25.6 8.533l-469.333 341.333c-17.067 12.8-21.333 42.667-8.533 59.733s38.4 21.333 59.733 8.533l469.333-341.333c17.067-12.8 21.333-42.667 8.533-59.733-8.533-12.8-21.333-17.067-34.133-17.067z" />
<glyph unicode="&#xe971;" glyph-name="map" d="M725.333-51.2c-8.533 0-17.067 4.267-25.6 8.533-8.533 8.533-17.067 21.333-17.067 34.133v853.333c0 17.067 8.533 34.133 25.6 38.4l213.333 85.333c12.8 4.267 29.867 4.267 38.4-4.267 12.8-8.533 21.333-21.333 21.333-34.133v-853.333c0-17.067-8.533-34.133-25.6-38.4l-213.333-85.333c-4.267-4.267-12.8-4.267-17.067-4.267zM768 814.933v-759.467l128 51.2v759.467l-128-51.2zM298.667-51.2c-8.533 0-17.067 4.267-25.6 8.533-8.533 8.533-17.067 21.333-17.067 34.133v853.333c0 17.067 8.533 34.133 25.6 38.4l213.333 85.333c12.8 4.267 29.867 4.267 38.4-4.267s21.333-21.333 21.333-34.133v-853.333c0-17.067-8.533-34.133-25.6-38.4l-213.333-85.333c-4.267-4.267-12.8-4.267-17.067-4.267zM341.333 814.933v-759.467l128 51.2v759.467l-128-51.2zM725.333-51.2c-4.267 0-12.8 0-17.067 4.267l-213.333 85.333c-17.067 4.267-25.6 21.333-25.6 38.4v853.333c0 12.8 8.533 25.6 17.067 34.133s25.6 8.533 38.4 4.267l213.333-85.333c21.333-4.267 29.867-21.333 29.867-38.4v-853.333c0-12.8-8.533-25.6-17.067-34.133-8.533-4.267-17.067-8.533-25.6-8.533zM554.667 106.667l128-51.2v759.467l-128 51.2v-759.467zM298.667-51.2c-4.267 0-12.8 0-17.067 4.267l-213.333 85.333c-17.067 4.267-25.6 21.333-25.6 38.4v853.333c0 12.8 8.533 25.6 17.067 34.133 12.8 8.533 29.867 12.8 42.667 4.267l213.333-85.333c17.067-4.267 25.6-21.333 25.6-38.4v-853.333c0-12.8-8.533-25.6-17.067-34.133-8.533-4.267-17.067-8.533-25.6-8.533zM128 106.667l128-51.2v759.467l-128 51.2v-759.467z" />
<glyph unicode="&#xe972;" glyph-name="margin" d="M810.667 887.467h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667-51.2h-597.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 119.467c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM42.667 119.467c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM810.667 119.467h-597.333c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM256 204.8h512v512h-512v-512z" />
<glyph unicode="&#xe973;" glyph-name="megaphone" d="M469.333 290.133h-256c-115.2 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333h256c25.6 0 42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM213.333 631.467c-68.267 0-128-55.467-128-128s55.467-128 128-128h213.333v256h-213.333zM981.333 119.467c-4.267 0-8.533 0-12.8 4.267l-512 170.667c-17.067 4.267-29.867 21.333-29.867 38.4v341.333c0 17.067 12.8 34.133 29.867 38.4l512 170.667c12.8 8.533 25.6 4.267 38.4-4.267 8.533-8.533 17.067-21.333 17.067-34.133v-682.667c0-12.8-8.533-25.6-17.067-34.133-8.533-4.267-17.067-8.533-25.6-8.533zM512 362.667l426.667-140.8v563.2l-426.667-140.8v-281.6zM341.333 34.133h-170.667c-12.8 0-25.6 8.533-34.133 17.067-8.533 12.8-12.8 25.6-4.267 38.4l85.333 256c4.267 17.067 21.333 29.867 38.4 29.867h170.667c12.8 0 25.6-8.533 34.133-17.067 8.533-12.8 8.533-25.6 4.267-38.4l-85.333-256c-4.267-17.067-21.333-29.867-38.4-29.867zM230.4 119.467h81.067l55.467 170.667h-81.067l-55.467-170.667z" />
<glyph unicode="&#xe974;" glyph-name="meh" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM298.667 418.133c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM298.667 588.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM725.333 418.133c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM725.333 588.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM682.667 204.8h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe975;" glyph-name="menu-circle" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM682.667 588.8h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 418.133h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 247.467h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe976;" glyph-name="menu-circle-dots" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM384 460.8c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM597.333 460.8c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM810.667 460.8c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333z" />
<glyph unicode="&#xe977;" glyph-name="menu-dots" d="M512 674.133c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM512 844.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM512-8.533c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM512 162.133c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM512 332.8c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM512 503.467c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667z" />
<glyph unicode="&#xe978;" glyph-name="menu-lines" d="M853.333 759.467h-682.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM853.333 76.8h-682.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM853.333 418.133h-682.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe979;" glyph-name="microphone" d="M725.333 759.467h-85.333c0 12.8 0 21.333-4.267 29.867-12.8 59.733-64 98.133-123.733 98.133s-110.933-38.4-123.733-93.867c-4.267-12.8-4.267-21.333-4.267-34.133h-85.333c0 21.333 4.267 38.4 8.533 55.467 21.333 93.867 106.667 157.867 204.8 157.867s183.467-64 204.8-162.133c4.267-12.8 8.533-29.867 8.533-51.2zM512 290.133c-119.467 0-213.333 93.867-213.333 213.333h85.333c0-72.533 55.467-128 128-128s128 55.467 128 128h85.333c0-119.467-93.867-213.333-213.333-213.333zM384 759.467h-85.333c0 21.333 4.267 38.4 8.533 55.467l81.067-21.333c-4.267-12.8-4.267-21.333-4.267-34.133zM512 119.467c-213.333 0-384 170.667-384 384 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-166.4 132.267-298.667 298.667-298.667s298.667 132.267 298.667 298.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-213.333-170.667-384-384-384zM682.667-51.2h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM341.333 460.8c-25.6 0-42.667 17.067-42.667 42.667v256c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667zM682.667 460.8c-25.6 0-42.667 17.067-42.667 42.667v256c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe97a;" glyph-name="minus" d="M512-51.2c-136.533 0-264.533 51.2-362.667 149.333-200.533 200.533-200.533 524.8 0 725.333 98.133 98.133 226.133 149.333 362.667 149.333s264.533-51.2 362.667-149.333c200.533-200.533 200.533-524.8 0-725.333-98.133-98.133-226.133-149.333-362.667-149.333zM512 887.467c-115.2 0-221.867-42.667-302.933-123.733-166.4-166.4-166.4-439.467 0-605.867 81.067-81.067 187.733-123.733 302.933-123.733s221.867 42.667 302.933 123.733c166.4 166.4 166.4 435.2 0 601.6-81.067 85.333-187.733 128-302.933 128zM725.333 418.133h-426.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe97b;" glyph-name="mobile" d="M648.533-51.2h-273.067c-89.6 0-162.133 72.533-162.133 162.133v699.733c0 89.6 72.533 162.133 162.133 162.133h268.8c93.867 0 166.4-72.533 166.4-162.133v-695.467c0-93.867-72.533-166.4-162.133-166.4zM375.467 887.467c-42.667 0-76.8-34.133-76.8-76.8v-695.467c0-42.667 34.133-76.8 76.8-76.8h268.8c42.667 0 76.8 34.133 76.8 76.8v695.467c0 42.667-34.133 76.8-76.8 76.8h-268.8zM256 204.8h512v-85.333h-512v85.333zM256 802.133h512v-85.333h-512v85.333z" />
<glyph unicode="&#xe97c;" glyph-name="mouse" d="M512-51.2c-174.933 0-384 89.6-384 512 0 251.733 0 512 384 512s384-260.267 384-512c0-422.4-209.067-512-384-512zM512 887.467c-298.667 0-298.667-162.133-298.667-426.667 0-106.667 0-426.667 298.667-426.667s298.667 320 298.667 426.667c0 264.533 0 426.667-298.667 426.667zM512 546.133c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM512 546.133c-119.467 0-230.4 8.533-337.067 29.867-21.333 4.267-38.4 25.6-34.133 51.2s25.6 38.4 51.2 34.133c98.133-21.333 209.067-29.867 320-29.867s221.867 8.533 320 29.867c21.333 4.267 46.933-12.8 51.2-34.133s-12.8-46.933-34.133-51.2c-106.667-21.333-217.6-29.867-337.067-29.867z" />
<glyph unicode="&#xe97d;" glyph-name="move" d="M768 290.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM896 418.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM85.333 418.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM213.333 290.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM896 418.133h-810.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h810.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512-8.533c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM512-8.533c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM640 674.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM384 674.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM512-8.533c-25.6 0-42.667 17.067-42.667 42.667v810.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-810.667c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe97e;" glyph-name="move-diagonal" d="M853.333 76.8h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM853.333 76.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM341.333 759.467h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM170.667 588.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM844.8 85.333c-12.8 0-21.333 4.267-29.867 12.8l-665.6 665.6c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l665.6-665.6c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-21.333-12.8-29.867-12.8z" />
<glyph unicode="&#xe97f;" glyph-name="move-horizontal" d="M853.333 290.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM981.333 418.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM42.667 418.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM170.667 290.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM981.333 418.133h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe980;" glyph-name="move-vertical" d="M512-51.2c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM512-51.2c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM640 759.467c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM384 759.467c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-938.667c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe981;" glyph-name="mug" d="M768-51.2h-554.667c-25.6 0-42.667 17.067-42.667 42.667v725.333c0 25.6 17.067 42.667 42.667 42.667h554.667c25.6 0 42.667-17.067 42.667-42.667v-725.333c0-25.6-17.067-42.667-42.667-42.667zM256 34.133h469.333v640h-469.333v-640zM256 674.133c-72.533 0-128 55.467-128 128s55.467 128 128 128c34.133 0 64-12.8 89.6-34.133 17.067-17.067 17.067-42.667 0-59.733s-42.667-17.067-59.733 0c-8.533 4.267-17.067 8.533-29.867 8.533-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM725.333 674.133c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667c-12.8 0-25.6-4.267-29.867-12.8-17.067-17.067-42.667-21.333-59.733-4.267s-21.333 42.667-4.267 59.733c25.6 29.867 59.733 42.667 98.133 42.667 72.533 0 128-55.467 128-128s-59.733-128-132.267-128zM661.333 814.933c-12.8 0-25.6 4.267-34.133 17.067-17.067 17.067-42.667 17.067-59.733 4.267-17.067-17.067-42.667-17.067-59.733 0s-17.067 42.667 0 59.733c51.2 46.933 140.8 42.667 183.467-8.533 17.067-17.067 12.8-46.933-4.267-59.733-4.267-8.533-17.067-12.8-25.6-12.8zM537.6 823.467c-17.067 0-29.867 8.533-38.4 21.333-12.8 25.6-42.667 42.667-76.8 42.667s-55.467-17.067-72.533-42.667c-8.533-21.333-34.133-29.867-55.467-17.067s-29.867 34.133-17.067 55.467c29.867 55.467 85.333 89.6 149.333 89.6s119.467-34.133 149.333-89.6c12.8-21.333 4.267-46.933-17.067-59.733-4.267 0-12.8 0-21.333 0zM938.667 460.8c-25.6 0-42.667 17.067-42.667 42.667 0 46.933-38.4 85.333-85.333 85.333-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c93.867 0 170.667-76.8 170.667-170.667 0-25.6-17.067-42.667-42.667-42.667zM810.667 588.8h-42.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h42.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 204.8c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c46.933 0 85.333 38.4 85.333 85.333 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-93.867-76.8-170.667-170.667-170.667zM810.667 204.8h-42.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h42.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM938.667 332.8c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667zM384 119.467c-25.6 0-42.667 17.067-42.667 42.667v384c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-384c0-25.6-17.067-42.667-42.667-42.667zM597.333 119.467c-25.6 0-42.667 17.067-42.667 42.667v384c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-384c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe982;" glyph-name="music" d="M170.667-51.2c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM170.667 204.8c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM853.333-51.2c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM853.333 204.8c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM298.667 76.8c-25.6 0-42.667 17.067-42.667 42.667v810.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-810.667c0-25.6-17.067-42.667-42.667-42.667zM981.333 887.467h-682.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 76.8c-25.6 0-42.667 17.067-42.667 42.667v810.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-810.667c0-25.6-17.067-42.667-42.667-42.667zM981.333 716.8h-682.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe983;" glyph-name="network" d="M128-51.2c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM128 119.467c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM896-51.2c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM896 119.467c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM512-51.2c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM512 119.467c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM512 716.8c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM512 887.467c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM896 119.467c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6-17.067 42.667-42.667 42.667h-597.333c-25.6 0-42.667-17.067-42.667-42.667v-213.333c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v213.333c0 72.533 55.467 128 128 128h597.333c72.533 0 128-55.467 128-128v-213.333c0-25.6-17.067-42.667-42.667-42.667zM512 119.467c-25.6 0-42.667 17.067-42.667 42.667v298.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667zM512 418.133c-25.6 0-42.667 17.067-42.667 42.667v298.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe984;" glyph-name="new-file" d="M853.333 631.467h-256c-25.6 0-42.667 17.067-42.667 42.667v256h85.333v-213.333h213.333v-85.333zM853.333-51.2h-682.667c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667h426.667c12.8 0 21.333-4.267 29.867-12.8l256-256c8.533-8.533 12.8-17.067 12.8-29.867v-682.667c0-25.6-17.067-42.667-42.667-42.667zM213.333 34.133h597.333v622.933l-230.4 230.4h-366.933v-853.333z" />
<glyph unicode="&#xe985;" glyph-name="newspaper" d="M853.333 34.133h-682.667c-93.867 0-170.667 76.8-170.667 170.667v640c0 25.6 17.067 42.667 42.667 42.667h810.667c25.6 0 42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v554.667h-725.333v-597.333c0-46.933 38.4-85.333 85.333-85.333h682.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512 802.133c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667v0c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM853.333 34.133h-213.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h213.333c46.933 0 85.333 38.4 85.333 85.333v512h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-554.667c0-93.867-76.8-170.667-170.667-170.667zM426.667 375.467h-213.333c-25.6 0-42.667 17.067-42.667 42.667v256c0 25.6 17.067 42.667 42.667 42.667h213.333c25.6 0 42.667-17.067 42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667zM256 460.8h128v170.667h-128v-170.667zM682.667 631.467h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 503.467h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 375.467h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 204.8h-469.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h469.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe986;" glyph-name="next" d="M128 162.133c-8.533 0-12.8 0-21.333 4.267-12.8 8.533-21.333 21.333-21.333 38.4v512c0 17.067 8.533 29.867 21.333 38.4s29.867 8.533 42.667 0l384-256c12.8-8.533 17.067-21.333 17.067-34.133s-8.533-25.6-17.067-34.133l-384-256c-4.267-8.533-12.8-12.8-21.333-12.8zM170.667 635.733v-354.133l264.533 174.933-264.533 179.2zM512 162.133c-8.533 0-12.8 0-21.333 4.267-12.8 8.533-21.333 21.333-21.333 38.4v512c0 17.067 8.533 29.867 21.333 38.4s29.867 8.533 42.667 0l384-256c12.8-8.533 17.067-21.333 17.067-34.133s-8.533-25.6-17.067-34.133l-384-256c-4.267-8.533-12.8-12.8-21.333-12.8zM554.667 635.733v-354.133l264.533 174.933-264.533 179.2z" />
<glyph unicode="&#xe987;" glyph-name="no" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM341.333 247.467c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l341.333 341.333c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-341.333-341.333c-8.533-8.533-17.067-12.8-29.867-12.8zM682.667 247.467c-12.8 0-21.333 4.267-29.867 12.8l-341.333 341.333c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l341.333-341.333c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe988;" glyph-name="notes" d="M853.333-51.2h-682.667c-25.6 0-42.667 17.067-42.667 42.667v853.333c0 25.6 17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667v-853.333c0-25.6-17.067-42.667-42.667-42.667zM213.333 34.133h597.333v768h-597.333v-768zM341.333 716.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM512 716.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM682.667 716.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe989;" glyph-name="objects" d="M341.333 247.467h-298.667c-25.6 0-42.667 17.067-42.667 42.667v640c0 25.6 17.067 42.667 42.667 42.667h640c25.6 0 42.667-17.067 42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v256h-554.667v-554.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333-51.2h-640c-25.6 0-42.667 17.067-42.667 42.667v640c0 25.6 17.067 42.667 42.667 42.667h640c25.6 0 42.667-17.067 42.667-42.667v-640c0-25.6-17.067-42.667-42.667-42.667zM384 34.133h554.667v554.667h-554.667v-554.667z" />
<glyph unicode="&#xe98a;" glyph-name="padding" d="M682.667 716.8h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 119.467h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 247.467c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM213.333 247.467c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM981.333-51.2h-938.667c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667v-938.667c0-25.6-17.067-42.667-42.667-42.667zM85.333 34.133h853.333v853.333h-853.333v-853.333z" />
<glyph unicode="&#xe98b;" glyph-name="padlock" d="M682.667-51.2h-341.333c-93.867 0-170.667 76.8-170.667 170.667v298.667c0 93.867 76.8 170.667 170.667 170.667h341.333c93.867 0 170.667-76.8 170.667-170.667v-298.667c0-93.867-76.8-170.667-170.667-170.667zM341.333 503.467c-46.933 0-85.333-38.4-85.333-85.333v-298.667c0-46.933 38.4-85.333 85.333-85.333h341.333c46.933 0 85.333 38.4 85.333 85.333v298.667c0 46.933-38.4 85.333-85.333 85.333h-341.333zM725.333 503.467h-426.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 140.8 115.2 256 256 256 145.067 0 256-115.2 256-256v-170.667c0-25.6-17.067-42.667-42.667-42.667zM341.333 588.8h341.333v128c0 93.867-76.8 170.667-170.667 170.667s-170.667-76.8-170.667-170.667v-128zM597.333 332.8c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM512 119.467c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe98c;" glyph-name="padlock-open" d="M682.667-51.2h-341.333c-93.867 0-170.667 76.8-170.667 170.667v298.667c0 93.867 76.8 170.667 170.667 170.667h341.333c93.867 0 170.667-76.8 170.667-170.667v-298.667c0-93.867-76.8-170.667-170.667-170.667zM341.333 503.467c-46.933 0-85.333-38.4-85.333-85.333v-298.667c0-46.933 38.4-85.333 85.333-85.333h341.333c46.933 0 85.333 38.4 85.333 85.333v298.667c0 46.933-38.4 85.333-85.333 85.333h-341.333zM512 503.467h-213.333c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 140.8 115.2 256 256 256 145.067 0 256-115.2 256-256 0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667c0 93.867-76.8 170.667-170.667 170.667s-170.667-76.8-170.667-170.667v-128h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM597.333 332.8c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM512 119.467c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe98d;" glyph-name="paint-brush" d="M981.333 546.133h-938.667c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667h213.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-170.667v-256h853.333v256h-512c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h554.667c25.6 0 42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM981.333 375.467h-938.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM85.333 460.8h853.333v85.333h-853.333v-85.333zM512-51.2v0c-72.533 0-128 55.467-128 128v341.333c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-341.333c0-72.533-55.467-128-128-128zM469.333 375.467v-298.667c0-21.333 17.067-42.667 42.667-42.667v0c21.333 0 42.667 17.067 42.667 42.667v298.667h-85.333zM341.333 759.467c-12.8 0-25.6 8.533-34.133 17.067l-85.333 128c-12.8 21.333-8.533 46.933 8.533 59.733 21.333 12.8 46.933 8.533 59.733-8.533l85.333-128c12.8-21.333 8.533-46.933-8.533-59.733-8.533-4.267-17.067-8.533-25.6-8.533zM341.333 759.467c-8.533 0-17.067 4.267-25.6 8.533-17.067 12.8-21.333 38.4-8.533 59.733l85.333 128c12.8 21.333 38.4 25.6 59.733 12.8s25.6-38.4 12.8-59.733l-85.333-128c-12.8-12.8-25.6-21.333-38.4-21.333zM341.333 546.133c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-213.333c0-25.6-17.067-42.667-42.667-42.667zM554.667 546.133c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM682.667 546.133c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM853.333 546.133c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe98e;" glyph-name="paper-plane" d="M640-51.2c-12.8 0-21.333 4.267-29.867 12.8l-597.333 597.333c-8.533 8.533-12.8 25.6-12.8 38.4 4.267 12.8 12.8 25.6 25.6 29.867l938.667 341.333c17.067 4.267 34.133 0 42.667-8.533 12.8-12.8 17.067-29.867 8.533-42.667l-341.333-938.667c-4.267-12.8-17.067-25.6-29.867-25.6 0-4.267 0-4.267-4.267-4.267zM119.467 571.733l503.467-503.467 285.867 789.333-789.333-285.867zM256 332.8c-12.8 0-25.6 4.267-34.133 17.067-12.8 17.067-12.8 46.933 8.533 59.733l725.333 554.667c17.067 12.8 46.933 12.8 59.733-8.533 12.8-17.067 12.8-46.933-8.533-59.733l-725.333-554.667c-8.533-4.267-17.067-8.533-25.6-8.533zM256-8.533c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM256-8.533c-8.533 0-17.067 4.267-25.6 8.533-17.067 12.8-21.333 42.667-4.267 59.733l149.333 187.733c12.8 17.067 42.667 21.333 59.733 4.267 17.067-12.8 21.333-42.667 4.267-59.733l-153.6-187.733c-4.267-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe98f;" glyph-name="pause" d="M384 162.133c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667zM640 162.133c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe990;" glyph-name="pen" d="M42.667-51.2c-12.8 0-21.333 4.267-29.867 12.8-12.8 12.8-17.067 29.867-8.533 46.933l128 298.667c0 4.267 4.267 8.533 8.533 12.8l605.867 605.867c59.733 59.733 166.4 59.733 230.4 0 29.867-34.133 46.933-72.533 46.933-115.2s-17.067-85.333-46.933-115.2l-605.867-605.867c-4.267-4.267-8.533-8.533-12.8-8.533l-298.667-128c-4.267-4.267-12.8-4.267-17.067-4.267zM204.8 264.533l-81.067-192 192 81.067 597.333 597.333c17.067 17.067 25.6 38.4 25.6 59.733s-8.533 38.4-21.333 55.467c-34.133 34.133-81.067 29.867-110.933 0l-601.6-601.6zM341.333 76.8c-12.8 0-21.333 4.267-29.867 12.8l-170.667 170.667c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l170.667-170.667c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM341.333 546.133c-4.267 0-12.8 0-17.067 4.267-21.333 12.8-29.867 34.133-21.333 55.467 29.867 59.733 68.267 115.2 119.467 162.133l106.667 106.667c64 64 166.4 64 230.4 0 17.067-17.067 17.067-42.667 0-59.733s-42.667-17.067-59.733 0v0c-29.867 29.867-76.8 29.867-106.667 0l-106.667-106.667c-42.667-42.667-76.8-89.6-102.4-140.8-12.8-12.8-25.6-21.333-42.667-21.333z" />
<glyph unicode="&#xe991;" glyph-name="pencil" d="M42.667-51.2c-12.8 0-21.333 4.267-29.867 12.8-12.8 12.8-17.067 29.867-8.533 46.933l128 298.667c0 4.267 4.267 8.533 8.533 12.8l605.867 605.867c59.733 59.733 166.4 59.733 230.4 0 29.867-34.133 46.933-72.533 46.933-115.2s-17.067-85.333-46.933-115.2l-605.867-605.867c-4.267-4.267-8.533-8.533-12.8-8.533l-298.667-128c-4.267-4.267-12.8-4.267-17.067-4.267zM204.8 264.533l-81.067-192 192 81.067 597.333 597.333c17.067 17.067 25.6 38.4 25.6 59.733s-8.533 38.4-21.333 55.467c-34.133 34.133-81.067 29.867-110.933 0l-601.6-601.6zM341.333 76.8c-12.8 0-21.333 4.267-29.867 12.8l-170.667 170.667c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l170.667-170.667c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM874.667 652.8c-12.8 0-21.333 4.267-29.867 12.8l-149.333 149.333c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l149.333-149.333c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe992;" glyph-name="pencil-ruler" d="M384 162.133h-170.667l85.333-170.667zM298.667-51.2c-17.067 0-29.867 8.533-38.4 25.6l-85.333 170.667c-8.533 12.8-4.267 29.867 0 42.667 8.533 8.533 25.6 17.067 38.4 17.067h170.667c12.8 0 29.867-8.533 38.4-21.333s8.533-29.867 0-42.667l-85.333-170.667c-8.533-12.8-21.333-21.333-38.4-21.333zM281.6 119.467l17.067-34.133 17.067 34.133h-34.133zM384 119.467h-170.667c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 68.267 55.467 128 128 128s128-55.467 128-128v-682.667c0-25.6-17.067-42.667-42.667-42.667zM256 204.8h85.333v640c0 21.333-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-640zM810.667-51.2h-256c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667v-938.667c0-25.6-17.067-42.667-42.667-42.667zM597.333 34.133h170.667v853.333h-170.667v-853.333zM810.667 674.133h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h85.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 503.467h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h85.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 332.8h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h85.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM810.667 162.133h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h85.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe993;" glyph-name="phone" d="M768-17.067c-59.733 0-128 17.067-204.8 55.467-93.867 46.933-187.733 115.2-277.333 204.8-85.333 85.333-157.867 183.467-204.8 277.333-72.533 149.333-76.8 273.067-4.267 341.333 17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733c-42.667-42.667-34.133-136.533 21.333-247.467 42.667-85.333 106.667-174.933 187.733-256s170.667-145.067 256-187.733c110.933-55.467 204.8-64 247.467-21.333 17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733c-34.133-29.867-81.067-46.933-140.8-46.933zM332.8 516.267c-17.067 0-29.867 8.533-38.4 25.6-12.8 21.333-4.267 46.933 17.067 55.467l98.133 46.933c17.067 8.533 38.4 29.867 34.133 55.467 0 12.8-8.533 21.333-17.067 29.867l-140.8 145.067c-12.8 12.8-34.133 17.067-55.467 12.8-8.533-4.267-17.067-8.533-25.6-12.8l-68.267-72.533c-17.067-17.067-42.667-17.067-59.733 0s-17.067 42.667 0 59.733l68.267 68.267c17.067 17.067 38.4 29.867 59.733 34.133 51.2 12.8 102.4 0 140.8-34.133l140.8-140.8c21.333-21.333 34.133-51.2 38.4-81.067 8.533-55.467-25.6-115.2-81.067-145.067l-98.133-46.933c0 4.267-8.533 0-12.8 0zM874.667 21.333c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l68.267 68.267c8.533 8.533 12.8 12.8 12.8 25.6 4.267 21.333 0 42.667-12.8 55.467l-140.8 140.8c-8.533 8.533-21.333 12.8-29.867 17.067-25.6 4.267-46.933-12.8-55.467-34.133l-46.933-98.133c-8.533-21.333-34.133-29.867-55.467-17.067-21.333 8.533-29.867 34.133-17.067 55.467l46.933 98.133c29.867 55.467 85.333 89.6 145.067 81.067 29.867-4.267 55.467-17.067 76.8-38.4l140.8-140.8c38.4-38.4 51.2-89.6 34.133-140.8-8.533-21.333-17.067-42.667-34.133-59.733l-72.533-72.533c-8.533-8.533-17.067-12.8-29.867-12.8zM601.6 247.467c-8.533 0-17.067 4.267-25.6 8.533-51.2 38.4-102.4 81.067-153.6 128-51.2 51.2-93.867 102.4-128 153.6-12.8 17.067-8.533 42.667 12.8 59.733 21.333 12.8 46.933 8.533 59.733-8.533 34.133-46.933 72.533-98.133 119.467-140.8s93.867-85.333 140.8-119.467c21.333-12.8 25.6-38.4 8.533-59.733-4.267-17.067-17.067-21.333-34.133-21.333z" />
<glyph unicode="&#xe994;" glyph-name="pie-chart" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM512 418.133c-25.6 0-42.667 17.067-42.667 42.667v469.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-469.333c0-25.6-17.067-42.667-42.667-42.667zM844.8 85.333c-12.8 0-21.333 4.267-29.867 12.8l-332.8 332.8c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l332.8-332.8c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-21.333-12.8-29.867-12.8zM512 418.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l332.8 332.8c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-332.8-332.8c-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe995;" glyph-name="pin" d="M512 119.467c-17.067 0-29.867 8.533-38.4 21.333l-221.867 388.267c-76.8 136.533-34.133 311.467 102.4 392.533 102.4 64 221.867 59.733 315.733 4.267 136.533-85.333 183.467-260.267 102.4-396.8l-221.867-388.267c-8.533-12.8-21.333-21.333-38.4-21.333zM512 883.2c-38.4 0-76.8-12.8-110.933-29.867-98.133-59.733-128-183.467-72.533-281.6l183.467-324.267 183.467 324.267c55.467 98.133 25.6 221.867-72.533 281.6-34.133 21.333-72.533 29.867-110.933 29.867zM512 546.133c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM512 716.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM512-51.2c-170.667 0-341.333 59.733-341.333 170.667 0 89.6 115.2 157.867 290.133 170.667l4.267-85.333c-136.533-12.8-209.067-59.733-209.067-85.333 0-29.867 98.133-85.333 256-85.333s256 55.467 256 85.333c0 25.6-72.533 72.533-209.067 85.333l4.267 85.333c174.933-12.8 290.133-81.067 290.133-170.667 0-110.933-170.667-170.667-341.333-170.667z" />
<glyph unicode="&#xe996;" glyph-name="pin-2" d="M512-51.2c-119.467 0-384 371.2-384 640 0 213.333 170.667 384 384 384s384-170.667 384-384c0-170.667-102.4-349.867-145.067-418.133-25.6-38.4-145.067-221.867-238.933-221.867zM512 887.467c-166.4 0-298.667-132.267-298.667-298.667 0-238.933 238.933-541.867 298.667-554.667 59.733 12.8 298.667 315.733 298.667 554.667 0 166.4-132.267 298.667-298.667 298.667zM512 375.467c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333 213.333-93.867 213.333-213.333-93.867-213.333-213.333-213.333zM512 716.8c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128z" />
<glyph unicode="&#xe997;" glyph-name="pin-point" d="M682.667 247.467c-12.8 0-21.333 4.267-29.867 12.8l-341.333 341.333c-8.533 8.533-12.8 25.6-12.8 38.4 4.267 12.8 12.8 25.6 25.6 29.867l290.133 123.733 119.467 162.133c8.533 8.533 17.067 17.067 29.867 17.067s25.6-4.267 34.133-12.8l213.333-213.333c8.533-8.533 12.8-21.333 12.8-34.133s-8.533-25.6-17.067-29.867l-162.133-119.467-123.733-290.133c-4.267-12.8-17.067-21.333-29.867-25.6-4.267 0-4.267 0-8.533 0zM418.133 618.667l251.733-251.733 102.4 238.933c4.267 8.533 8.533 12.8 12.8 17.067l132.267 98.133-145.067 145.067-98.133-132.267c-4.267-4.267-8.533-12.8-17.067-12.8l-238.933-102.4zM42.667-51.2c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 38.4-4.267 55.467l409.6 529.067c12.8 17.067 42.667 21.333 59.733 8.533s21.333-42.667 8.533-59.733l-209.067-268.8 268.8 209.067c17.067 12.8 46.933 12.8 59.733-8.533 12.8-17.067 12.8-46.933-8.533-59.733l-529.067-409.6c-8.533-4.267-17.067-8.533-25.6-8.533z" />
<glyph unicode="&#xe998;" glyph-name="play" d="M384 162.133c-8.533 0-12.8 0-21.333 4.267-12.8 8.533-21.333 21.333-21.333 38.4v512c0 17.067 8.533 29.867 21.333 38.4s29.867 8.533 42.667 0l384-256c12.8-8.533 17.067-21.333 17.067-34.133s-8.533-25.6-17.067-34.133l-384-256c-4.267-8.533-12.8-12.8-21.333-12.8zM426.667 635.733v-354.133l264.533 174.933-264.533 179.2z" />
<glyph unicode="&#xe999;" glyph-name="plug" d="M388.267 247.467h-8.533c-162.133 0-294.4 132.267-294.4 294.4v174.933c0 25.6 17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667v-174.933c0-162.133-132.267-294.4-294.4-294.4zM170.667 674.133v-132.267c0-115.2 93.867-209.067 209.067-209.067h4.267c115.2 0 209.067 93.867 209.067 209.067v132.267h-422.4zM256 674.133c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-213.333c0-25.6-17.067-42.667-42.667-42.667zM512 674.133c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-213.333c0-25.6-17.067-42.667-42.667-42.667zM640-51.2c-234.667 0-298.667 221.867-302.933 341.333 0 25.6 17.067 42.667 42.667 42.667 0 0 0 0 0 0 21.333 0 42.667-17.067 42.667-42.667v0c0-8.533 4.267-256 217.6-256 209.067 0 213.333 247.467 213.333 256v298.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-298.667c0-119.467-64-341.333-298.667-341.333z" />
<glyph unicode="&#xe99a;" glyph-name="plus" d="M512-51.2c-136.533 0-264.533 51.2-362.667 149.333-200.533 200.533-200.533 524.8 0 725.333 98.133 98.133 226.133 149.333 362.667 149.333s264.533-51.2 362.667-149.333c200.533-200.533 200.533-524.8 0-725.333-98.133-98.133-226.133-149.333-362.667-149.333zM512 887.467c-115.2 0-221.867-42.667-302.933-123.733-166.4-166.4-166.4-439.467 0-605.867 81.067-81.067 187.733-123.733 302.933-123.733s221.867 42.667 302.933 123.733c166.4 166.4 166.4 435.2 0 601.6-81.067 85.333-187.733 128-302.933 128zM512 204.8c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-426.667c0-25.6-17.067-42.667-42.667-42.667zM725.333 418.133h-426.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe99b;" glyph-name="pound" d="M682.667 247.467h-341.333c-17.067 0-34.133 12.8-42.667 29.867-4.267 17.067 0 38.4 17.067 46.933 46.933 29.867 68.267 115.2 85.333 187.733 25.6 98.133 55.467 204.8 153.6 204.8 59.733 0 110.933-51.2 115.2-55.467 17.067-17.067 17.067-42.667 0-59.733s-42.667-17.067-59.733 0c-12.8 12.8-38.4 29.867-55.467 29.867-29.867 0-46.933-55.467-68.267-140.8-12.8-55.467-25.6-110.933-55.467-157.867h251.733c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM554.667 418.133h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667z" />
<glyph unicode="&#xe99c;" glyph-name="power-on" d="M512-51.2c-234.667 0-426.667 192-426.667 426.667 0 174.933 102.4 328.533 264.533 392.533 21.333 8.533 46.933 0 55.467-21.333s0-46.933-21.333-55.467c-132.267-51.2-213.333-174.933-213.333-315.733 0-187.733 153.6-341.333 341.333-341.333s341.333 153.6 341.333 341.333c0 140.8-81.067 264.533-209.067 315.733-21.333 8.533-34.133 34.133-21.333 55.467 8.533 21.333 34.133 34.133 55.467 21.333 157.867-64 260.267-217.6 260.267-392.533 0-234.667-192-426.667-426.667-426.667zM512 375.467c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe99d;" glyph-name="previous" d="M896 162.133c-8.533 0-17.067 4.267-25.6 8.533l-384 256c-8.533 8.533-17.067 21.333-17.067 34.133s8.533 25.6 17.067 34.133l384 256c12.8 8.533 29.867 8.533 42.667 0 17.067-4.267 25.6-17.067 25.6-34.133v-512c0-17.067-8.533-29.867-21.333-38.4-8.533-4.267-12.8-4.267-21.333-4.267zM588.8 460.8l264.533-174.933v349.867l-264.533-174.933zM512 162.133c-8.533 0-17.067 4.267-25.6 8.533l-384 256c-8.533 8.533-17.067 21.333-17.067 34.133s8.533 25.6 17.067 34.133l384 256c12.8 8.533 29.867 8.533 42.667 0 17.067-4.267 25.6-17.067 25.6-34.133v-512c0-17.067-8.533-29.867-21.333-38.4-8.533-4.267-12.8-4.267-21.333-4.267zM204.8 460.8l264.533-174.933v349.867l-264.533-174.933z" />
<glyph unicode="&#xe99e;" glyph-name="printer" d="M853.333 119.467h-42.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h42.667c46.933 0 85.333 38.4 85.333 85.333v341.333c0 46.933-38.4 85.333-85.333 85.333h-682.667c-46.933 0-85.333-38.4-85.333-85.333v-341.333c0-46.933 38.4-85.333 85.333-85.333h42.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-42.667c-93.867 0-170.667 76.8-170.667 170.667v341.333c0 93.867 76.8 170.667 170.667 170.667h682.667c93.867 0 170.667-76.8 170.667-170.667v-341.333c0-93.867-76.8-170.667-170.667-170.667zM810.667-51.2h-597.333c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM256 34.133h512v256h-512v-256zM810.667 716.8h-597.333c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM256 802.133h512v85.333h-512v-85.333zM853.333 546.133c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM981.333 503.467h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe99f;" glyph-name="projector" d="M725.333 34.133h-682.667c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667v-110.933l200.533 68.267c12.8 4.267 25.6 4.267 38.4-4.267s17.067-25.6 17.067-38.4v-341.333c0-12.8-8.533-25.6-17.067-34.133-12.8-8.533-25.6-8.533-38.4-4.267l-200.533 64v-110.933c0-25.6-17.067-42.667-42.667-42.667zM85.333 119.467h597.333v128c0 12.8 8.533 25.6 17.067 34.133 12.8 8.533 25.6 8.533 38.4 4.267l200.533-68.267v221.867l-200.533-68.267c-12.8-4.267-25.6-4.267-38.4 4.267-8.533 17.067-17.067 29.867-17.067 42.667v128h-597.333v-426.667zM256 546.133c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM256 802.133c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM512 546.133c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM512 802.133c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM512 290.133h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9a0;" glyph-name="question" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM512 290.133c-25.6 0-42.667 17.067-42.667 42.667v29.867c0 64 34.133 119.467 85.333 149.333 34.133 17.067 51.2 55.467 42.667 89.6-4.267 34.133-34.133 64-68.267 68.267-25.6 4.267-51.2 0-72.533-17.067-17.067-12.8-29.867-38.4-29.867-64s-17.067-42.667-42.667-42.667-42.667 17.067-42.667 42.667c0 51.2 21.333 98.133 59.733 132.267s89.6 46.933 140.8 38.4c68.267-12.8 123.733-68.267 136.533-136.533 12.8-72.533-21.333-145.067-85.333-179.2-25.6-12.8-38.4-42.667-38.4-76.8v-34.133c0-25.6-17.067-42.667-42.667-42.667zM554.667 204.8c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM512 140.8c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM512 226.133c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333z" />
<glyph unicode="&#xe9a1;" glyph-name="quote" d="M256 418.133c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333 213.333-93.867 213.333-213.333-93.867-213.333-213.333-213.333zM256 759.467c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM128 76.8c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c251.733 0 256 465.067 256 469.333 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-21.333-4.267-554.667-341.333-554.667zM768 418.133c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333 213.333-93.867 213.333-213.333-93.867-213.333-213.333-213.333zM768 759.467c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM640 76.8c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c251.733 0 256 465.067 256 469.333 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-21.333-4.267-554.667-341.333-554.667z" />
<glyph unicode="&#xe9a2;" glyph-name="record" d="M512 204.8c-140.8 0-256 115.2-256 256s115.2 256 256 256 256-115.2 256-256-115.2-256-256-256zM512 631.467c-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667 170.667 76.8 170.667 170.667-76.8 170.667-170.667 170.667z" />
<glyph unicode="&#xe9a3;" glyph-name="recycle" d="M853.333 418.133c-25.6 0-42.667 17.067-42.667 42.667 0 166.4-132.267 298.667-298.667 298.667-81.067 0-153.6-29.867-213.333-85.333-12.8-17.067-42.667-17.067-59.733 0s-17.067 42.667 0 59.733c72.533 72.533 170.667 110.933 273.067 110.933 213.333 0 384-170.667 384-384 0-25.6-17.067-42.667-42.667-42.667zM512 76.8c-213.333 0-384 170.667-384 384 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-166.4 132.267-298.667 298.667-298.667 81.067 0 153.6 29.867 213.333 85.333 17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733c-72.533-72.533-170.667-110.933-273.067-110.933zM853.333 418.133c-8.533 0-17.067 4.267-25.6 8.533l-145.067 106.667c-17.067 12.8-21.333 42.667-8.533 59.733s42.667 21.333 59.733 8.533l145.067-106.667c17.067-12.8 21.333-42.667 8.533-59.733-8.533-12.8-21.333-17.067-34.133-17.067zM853.333 418.133c-8.533 0-17.067 4.267-25.6 8.533-17.067 12.8-21.333 42.667-8.533 59.733l106.667 145.067c12.8 17.067 42.667 21.333 59.733 8.533s21.333-42.667 8.533-59.733l-106.667-145.067c-8.533-12.8-21.333-17.067-34.133-17.067zM315.733 311.467c-8.533 0-17.067 4.267-25.6 8.533l-145.067 106.667c-17.067 12.8-21.333 42.667-8.533 59.733s38.4 21.333 59.733 8.533l145.067-106.667c17.067-12.8 21.333-42.667 8.533-59.733-8.533-12.8-21.333-17.067-34.133-17.067zM64 273.067c-8.533 0-17.067 4.267-25.6 8.533-17.067 12.8-21.333 42.667-8.533 59.733l106.667 145.067c12.8 17.067 38.4 21.333 59.733 8.533 17.067-12.8 21.333-42.667 8.533-59.733l-106.667-145.067c-8.533-12.8-21.333-17.067-34.133-17.067z" />
<glyph unicode="&#xe9a4;" glyph-name="redo" d="M597.333 76.8c-4.267 0-12.8 0-17.067 4.267-17.067 4.267-25.6 21.333-25.6 38.4v213.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-119.467l277.333 247.467-277.333 247.467v-119.467c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v213.333c0 17.067 8.533 34.133 25.6 38.4 17.067 8.533 34.133 4.267 46.933-8.533l384-341.333c8.533-8.533 12.8-21.333 12.8-29.867s-4.267-25.6-12.8-29.867l-384-341.333c-8.533-8.533-21.333-12.8-29.867-12.8zM42.667 76.8c-4.267 0-4.267 0-8.533 0-21.333 4.267-34.133 21.333-34.133 42.667 0 507.733 593.067 512 597.333 512 25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667c-17.067 0-405.333-4.267-494.933-294.4 85.333 59.733 234.667 123.733 494.933 123.733 25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667c-430.933 0-516.267-183.467-516.267-187.733-4.267-17.067-21.333-25.6-38.4-25.6z" />
<glyph unicode="&#xe9a5;" glyph-name="refresh" d="M469.333 76.8c-213.333 0-384 170.667-384 384 0 102.4 38.4 200.533 110.933 273.067s170.667 110.933 273.067 110.933c213.333 0 384-170.667 384-384 0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667c0 166.4-132.267 298.667-298.667 298.667-81.067 0-153.6-29.867-213.333-85.333-55.467-55.467-85.333-132.267-85.333-213.333 0-166.4 132.267-298.667 298.667-298.667 81.067 0 153.6 29.867 213.333 85.333 17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733c-72.533-72.533-170.667-110.933-273.067-110.933zM810.667 418.133c-8.533 0-17.067 4.267-25.6 8.533l-145.067 106.667c-17.067 12.8-21.333 42.667-8.533 59.733s38.4 21.333 59.733 8.533l145.067-106.667c17.067-12.8 21.333-42.667 8.533-59.733-8.533-12.8-21.333-17.067-34.133-17.067zM810.667 418.133c-8.533 0-17.067 4.267-25.6 8.533-17.067 12.8-21.333 42.667-8.533 59.733l106.667 145.067c12.8 17.067 42.667 21.333 59.733 8.533s21.333-42.667 8.533-59.733l-106.667-145.067c-8.533-12.8-21.333-17.067-34.133-17.067z" />
<glyph unicode="&#xe9a6;" glyph-name="rotate-clock" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512c170.667 0 328.533-85.333 426.667-226.133 12.8-21.333 8.533-46.933-12.8-59.733s-46.933-8.533-59.733 12.8c-76.8 115.2-213.333 187.733-354.133 187.733-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-281.6-230.4-512-512-512zM938.667 631.467h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM512 290.133c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM512 546.133c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333z" />
<glyph unicode="&#xe9a7;" glyph-name="rotate-counter" d="M512-51.2c-281.6 0-512 230.4-512 512 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-234.667 192-426.667 426.667-426.667s426.667 192 426.667 426.667-192 426.667-426.667 426.667c-140.8 0-277.333-72.533-354.133-187.733-12.8-21.333-38.4-25.6-59.733-12.8s-25.6 38.4-12.8 59.733c98.133 140.8 256 226.133 426.667 226.133 281.6 0 512-230.4 512-512s-230.4-512-512-512zM256 631.467h-170.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512 290.133c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM512 546.133c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333z" />
<glyph unicode="&#xe9a8;" glyph-name="sad" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM298.667 418.133c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM298.667 588.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM725.333 418.133c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM725.333 588.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM699.733 162.133c-8.533 0-17.067 4.267-25.6 8.533-46.933 38.4-102.4 55.467-162.133 55.467s-115.2-21.333-162.133-55.467c-17.067-12.8-46.933-12.8-59.733 4.267s-12.8 46.933 4.267 59.733c59.733 51.2 136.533 76.8 213.333 76.8s153.6-25.6 213.333-76.8c17.067-12.8 21.333-42.667 4.267-59.733 0-8.533-12.8-12.8-25.6-12.8z" />
<glyph unicode="&#xe9a9;" glyph-name="scales" d="M170.667 290.133c-93.867 0-170.667 76.8-170.667 170.667 0 76.8 110.933 345.6 132.267 401.067 4.267 17.067 21.333 25.6 38.4 25.6s34.133-8.533 38.4-25.6c21.333-55.467 132.267-324.267 132.267-401.067 0-93.867-76.8-170.667-170.667-170.667zM170.667 729.6c-42.667-115.2-85.333-234.667-85.333-268.8 0-46.933 38.4-85.333 85.333-85.333s85.333 38.4 85.333 85.333c0 34.133-42.667 153.6-85.333 268.8zM853.333 290.133c-93.867 0-170.667 76.8-170.667 170.667 0 76.8 110.933 345.6 132.267 401.067 4.267 17.067 21.333 25.6 38.4 25.6s34.133-8.533 38.4-25.6c21.333-55.467 132.267-324.267 132.267-401.067 0-93.867-76.8-170.667-170.667-170.667zM853.333 729.6c-42.667-110.933-85.333-234.667-85.333-268.8 0-46.933 38.4-85.333 85.333-85.333s85.333 38.4 85.333 85.333c0 34.133-42.667 153.6-85.333 268.8zM853.333 802.133h-682.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512 34.133c-25.6 0-42.667 17.067-42.667 42.667v768c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-768c0-25.6-17.067-42.667-42.667-42.667zM768 34.133h-512c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM298.667 418.133h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 418.133h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9aa;" glyph-name="search" d="M384 204.8c-213.333 0-384 170.667-384 384s170.667 384 384 384 384-170.667 384-384-170.667-384-384-384zM384 887.467c-166.4 0-298.667-132.267-298.667-298.667s132.267-298.667 298.667-298.667 298.667 132.267 298.667 298.667-132.267 298.667-298.667 298.667zM981.333-51.2c-12.8 0-21.333 4.267-29.867 12.8l-341.333 341.333c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l341.333-341.333c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe9ab;" glyph-name="selection" d="M981.333 332.8c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-213.333c0-25.6-17.067-42.667-42.667-42.667zM597.333-51.2h-213.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h213.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM42.667 332.8c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-213.333c0-25.6-17.067-42.667-42.667-42.667zM981.333 716.8c-25.6 0-42.667 17.067-42.667 42.667v42.667c0 46.933-38.4 85.333-85.333 85.333h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h85.333c93.867 0 170.667-76.8 170.667-170.667v-42.667c0-25.6-17.067-42.667-42.667-42.667zM42.667 716.8c-25.6 0-42.667 17.067-42.667 42.667v42.667c0 93.867 76.8 170.667 170.667 170.667h42.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-42.667c-46.933 0-85.333-38.4-85.333-85.333v-42.667c0-25.6-17.067-42.667-42.667-42.667zM597.333 887.467h-213.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h213.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM213.333-51.2h-42.667c-93.867 0-170.667 76.8-170.667 170.667v85.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-85.333c0-46.933 38.4-85.333 85.333-85.333h42.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM853.333-51.2h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h85.333c46.933 0 85.333 38.4 85.333 85.333v85.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-85.333c0-93.867-76.8-170.667-170.667-170.667z" />
<glyph unicode="&#xe9ac;" glyph-name="settings" d="M601.6-46.933l-4.267 51.2c-4.267 42.667-42.667 72.533-85.333 72.533s-76.8-29.867-85.333-72.533l-8.533-46.933-46.933 12.8c-81.067 21.333-157.867 68.267-221.867 128l-34.133 34.133 38.4 29.867c34.133 25.6 42.667 72.533 21.333 110.933-21.333 34.133-68.267 51.2-106.667 38.4l-46.933-17.067-4.267 38.4c-12.8 42.667-17.067 85.333-17.067 128s4.267 85.333 17.067 128l12.8 46.933 46.933-17.067c38.4-17.067 85.333 0 106.667 38.4s12.8 85.333-21.333 110.933l-42.667 25.6 34.133 34.133c64 59.733 136.533 102.4 221.867 128l46.933 12.8 4.267-51.2c4.267-42.667 42.667-72.533 85.333-72.533s76.8 29.867 85.333 72.533l8.533 46.933 46.933-12.8c81.067-21.333 157.867-68.267 221.867-128l34.133-34.133-38.4-29.867c-34.133-25.6-42.667-72.533-21.333-110.933 17.067-25.6 42.667-42.667 72.533-42.667v0c12.8 0 21.333 0 29.867 4.267l46.933 17.067 8.533-38.4c8.533-42.667 17.067-85.333 17.067-128s-4.267-85.333-17.067-128l-12.8-46.933-46.933 17.067c-38.4 17.067-85.333 0-106.667-38.4s-12.8-85.333 21.333-110.933l38.4-29.867-34.133-34.133c-59.733-59.733-136.533-102.4-221.867-128l-42.667-8.533zM512 162.133c68.267 0 128-38.4 153.6-98.133 38.4 17.067 76.8 38.4 110.933 64-38.4 51.2-42.667 123.733-8.533 183.467 34.133 55.467 98.133 89.6 162.133 85.333 8.533 21.333 8.533 42.667 8.533 64s0 42.667-4.267 64c-4.267 0-8.533 0-17.067 0v0c-59.733 0-119.467 34.133-149.333 85.333-34.133 59.733-29.867 132.267 8.533 183.467-34.133 25.6-72.533 51.2-110.933 64-25.6-59.733-85.333-98.133-153.6-98.133s-128 38.4-153.6 98.133c-42.667-12.8-81.067-38.4-115.2-64 38.4-51.2 42.667-123.733 8.533-183.467-34.133-55.467-98.133-89.6-162.133-85.333-4.267-21.333-4.267-42.667-4.267-64s0-42.667 4.267-64c64 4.267 128-25.6 162.133-85.333s29.867-132.267-8.533-183.467c34.133-25.6 72.533-51.2 110.933-64 29.867 59.733 89.6 98.133 157.867 98.133zM512 290.133c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM512 546.133c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333z" />
<glyph unicode="&#xe9ad;" glyph-name="shapes" d="M682.667-51.2c0 0 0 0 0 0h-512c-17.067 0-29.867 8.533-38.4 21.333s-8.533 29.867 0 42.667l256 384c17.067 25.6 55.467 25.6 72.533 0l251.733-379.733c8.533-8.533 12.8-17.067 12.8-29.867 0-21.333-17.067-38.4-42.667-38.4zM251.733 34.133h354.133l-179.2 264.533-174.933-264.533zM981.333 247.467h-341.333c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM682.667 332.8h256v256h-256v-256zM277.333 418.133c-153.6 0-277.333 123.733-277.333 277.333s123.733 277.333 277.333 277.333 277.333-123.733 277.333-277.333-123.733-277.333-277.333-277.333zM277.333 887.467c-106.667 0-192-85.333-192-192s85.333-192 192-192 192 85.333 192 192-85.333 192-192 192z" />
<glyph unicode="&#xe9ae;" glyph-name="share" d="M170.667 290.133c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM170.667 546.133c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM853.333 631.467c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM853.333 887.467c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM853.333-51.2c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM853.333 204.8c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM305.926 440.895l454.117-227.058-38.161-76.322-454.117 227.058 38.161 76.322zM718.074 782.22l38.161-76.322-454.117-227.058-38.161 76.322 454.117 227.058z" />
<glyph unicode="&#xe9af;" glyph-name="shield" d="M512-8.533c-8.533 0-17.067 0-21.333 8.533-358.4 221.867-362.667 490.667-362.667 503.467v298.667c0 25.6 17.067 42.667 42.667 42.667 119.467 0 324.267 89.6 324.267 89.6 21.333 8.533 46.933 0 55.467-21.333s0-46.933-21.333-55.467c-8.533-4.267-183.467-81.067-315.733-93.867v-260.267c0-8.533 8.533-234.667 320-435.2 21.333-12.8 25.6-38.4 12.8-59.733-4.267-8.533-21.333-17.067-34.133-17.067zM512-8.533c-12.8 0-29.867 8.533-34.133 21.333-12.8 21.333-8.533 46.933 12.8 59.733 311.467 196.267 320 422.4 320 430.933v260.267c-132.267 17.067-307.2 89.6-315.733 93.867-21.333 8.533-29.867 34.133-21.333 55.467s34.133 29.867 55.467 21.333c0 0 204.8-89.6 324.267-89.6 25.6 0 42.667-17.067 42.667-42.667v-298.667c0-12.8-4.267-281.6-362.667-503.467-4.267-8.533-12.8-8.533-21.333-8.533zM512-8.533c-25.6 0-42.667 17.067-42.667 42.667v853.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-853.333c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9b0;" glyph-name="shopping-cart" d="M810.667 418.133h-640c-25.6 0-42.667 17.067-42.667 42.667v384c0 25.6 17.067 42.667 42.667 42.667h725.333c12.8 0 25.6-4.267 34.133-17.067 8.533-8.533 8.533-21.333 8.533-34.133l-85.333-384c-4.267-21.333-21.333-34.133-42.667-34.133zM213.333 503.467h563.2l68.267 298.667h-631.467v-298.667zM170.667 802.133h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM170.667 802.133c-12.8 0-21.333 4.267-29.867 12.8s-12.8 17.067-12.8 29.867c0 12.8 4.267 21.333 12.8 29.867 17.067 17.067 42.667 17.067 59.733 0 8.533-8.533 12.8-17.067 12.8-29.867s-4.267-21.333-12.8-29.867c-8.533-8.533-17.067-12.8-29.867-12.8zM341.333 119.467c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM810.667 119.467c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM170.667 247.467c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM810.667 247.467h-640c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h640c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9b1;" glyph-name="show-sidebar-horiz" d="M853.333-51.2h-682.667c-93.867 0-170.667 76.8-170.667 170.667v682.667c0 93.867 76.8 170.667 170.667 170.667h682.667c93.867 0 170.667-76.8 170.667-170.667v-682.667c0-93.867-76.8-170.667-170.667-170.667zM170.667 887.467c-46.933 0-85.333-38.4-85.333-85.333v-682.667c0-46.933 38.4-85.333 85.333-85.333h682.667c46.933 0 85.333 38.4 85.333 85.333v682.667c0 46.933-38.4 85.333-85.333 85.333h-682.667zM341.333-51.2c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-938.667c0-25.6-17.067-42.667-42.667-42.667zM725.333 418.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM597.333 290.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe9b2;" glyph-name="show-sidebar-vert" d="M853.333-51.2h-682.667c-93.867 0-170.667 76.8-170.667 170.667v682.667c0 93.867 76.8 170.667 170.667 170.667h682.667c93.867 0 170.667-76.8 170.667-170.667v-682.667c0-93.867-76.8-170.667-170.667-170.667zM170.667 887.467c-46.933 0-85.333-38.4-85.333-85.333v-682.667c0-46.933 38.4-85.333 85.333-85.333h682.667c46.933 0 85.333 38.4 85.333 85.333v682.667c0 46.933-38.4 85.333-85.333 85.333h-682.667zM981.333 588.8h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512 204.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM512 204.8c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe9b3;" glyph-name="shuffle" d="M938.667 204.8h-256c-12.8 0-25.6 4.267-34.133 17.067l-328.533 409.6h-277.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h298.667c12.8 0 25.6-4.267 34.133-17.067l328.533-409.6h234.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 204.8c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM853.333 76.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM341.333 204.8h-298.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h277.333l328.533 409.6c8.533 12.8 21.333 17.067 34.133 17.067h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-234.667l-328.533-409.6c-8.533-12.8-21.333-17.067-34.133-17.067zM853.333 503.467c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM981.333 631.467c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe9b4;" glyph-name="sign" d="M810.667 460.8h-768c-17.067 0-29.867 8.533-38.4 21.333s-8.533 29.867 0 42.667l115.2 192-115.2 192c-4.267 12.8-4.267 29.867 0 42.667 8.533 12.8 21.333 21.333 38.4 21.333h768c12.8 0 25.6-4.267 34.133-17.067l170.667-213.333c12.8-17.067 12.8-38.4 0-51.2l-170.667-213.333c-8.533-12.8-21.333-17.067-34.133-17.067zM119.467 546.133h674.133l136.533 170.667-136.533 170.667h-674.133l89.6-149.333c8.533-12.8 8.533-29.867 0-42.667l-89.6-149.333zM554.667-51.2h-128c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667zM469.333 34.133h42.667v426.667h-42.667v-426.667z" />
<glyph unicode="&#xe9b5;" glyph-name="signal" d="M85.333 119.467c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM256 119.467c-25.6 0-42.667 17.067-42.667 42.667v256c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667zM426.667 119.467c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM597.333 119.467c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-426.667c0-25.6-17.067-42.667-42.667-42.667zM768 119.467c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667zM938.667 119.467c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9b6;" glyph-name="skull" d="M426.667-51.2c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667zM597.333-51.2c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667zM725.333-51.2h-426.667c-25.6 0-42.667 17.067-42.667 42.667v213.333c-106.667 81.067-170.667 204.8-170.667 341.333 0 234.667 192 426.667 426.667 426.667s426.667-192 426.667-426.667c0-136.533-64-260.267-170.667-341.333v-213.333c0-25.6-17.067-42.667-42.667-42.667zM341.333 34.133h341.333v192c0 12.8 8.533 25.6 17.067 34.133 93.867 64 153.6 170.667 153.6 281.6 0 187.733-153.6 341.333-341.333 341.333s-341.333-153.6-341.333-341.333c0-115.2 55.467-221.867 153.6-281.6 8.533-4.267 17.067-17.067 17.067-34.133v-192zM725.333 375.467c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM597.333 375.467c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM426.667 375.467c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM298.667 375.467c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe9b7;" glyph-name="sliders" d="M170.667 631.467c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM170.667 887.467c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM682.667 290.133c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM682.667 546.133c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM981.333 759.467h-682.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 418.133h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM554.667 418.133h-512c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM426.667-51.2c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM426.667 204.8c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM981.333 76.8h-426.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM298.667 76.8h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9b8;" glyph-name="small-screen" d="M213.333 76.8c-25.6 0-42.667 17.067-42.667 42.667v128h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM810.667 76.8c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-128v-128c0-25.6-17.067-42.667-42.667-42.667zM981.333 588.8h-170.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM213.333 588.8h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128v128c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9b9;" glyph-name="smile" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM298.667 418.133c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM298.667 588.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM725.333 418.133c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM725.333 588.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM512 119.467c-102.4 0-200.533 46.933-264.533 123.733-12.8 17.067-12.8 46.933 4.267 59.733s46.933 12.8 59.733-4.267c51.2-59.733 123.733-93.867 200.533-93.867s149.333 34.133 196.267 93.867c12.8 17.067 42.667 21.333 59.733 4.267 17.067-12.8 21.333-42.667 4.267-59.733-59.733-76.8-157.867-123.733-260.267-123.733z" />
<glyph unicode="&#xe9ba;" glyph-name="soap" d="M256-51.2c-72.533 0-128 55.467-128 128 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-25.6 17.067-42.667 42.667-42.667s42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667zM768-51.2c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c25.6 0 42.667 17.067 42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667c0-72.533-55.467-128-128-128zM170.667 375.467c-25.6 0-42.667 17.067-42.667 42.667 0 119.467 93.867 213.333 213.333 213.333 25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667c-72.533 0-128-55.467-128-128 0-25.6-17.067-42.667-42.667-42.667zM853.333 375.467c-25.6 0-42.667 17.067-42.667 42.667 0 72.533-55.467 128-128 128-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c119.467 0 213.333-93.867 213.333-213.333 0-25.6-17.067-42.667-42.667-42.667zM682.667 546.133h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667-51.2h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM853.333 34.133c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM170.667 34.133c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM768-51.2h-512c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM640 546.133h-256c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM426.667 631.467h170.667v85.333h-170.667v-85.333zM554.667 716.8h-85.333c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h85.333c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM853.333 162.133h-682.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM213.333 247.467h597.333v85.333h-597.333v-85.333zM768 844.8h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9bb;" glyph-name="speed-o-meter" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM85.333 290.133h853.333v-85.333h-853.333v85.333zM512 204.8c-8.533 0-12.8 0-21.333 4.267-21.333 12.8-25.6 38.4-17.067 59.733l213.333 371.2c12.8 21.333 38.4 25.6 59.733 17.067 21.333-12.8 25.6-38.4 17.067-59.733l-213.333-371.2c-8.533-12.8-25.6-21.333-38.4-21.333z" />
<glyph unicode="&#xe9bc;" glyph-name="star" d="M635.733 546.133c-17.067 0-34.133 12.8-38.4 29.867l-85.333 230.4-85.333-230.4c-8.533-21.333-34.133-34.133-55.467-25.6-21.333 4.267-29.867 29.867-25.6 51.2l123.733 341.333c8.533 17.067 25.6 29.867 42.667 29.867s34.133-12.8 38.4-29.867l123.733-341.333c8.533-21.333-4.267-46.933-25.6-55.467-4.267 0-8.533 0-12.8 0zM853.333-51.2c-8.533 0-17.067 4.267-25.6 8.533l-341.333 251.733c-17.067 12.8-21.333 42.667-8.533 59.733s42.667 21.333 59.733 8.533l226.133-166.4-93.867 264.533c-8.533 21.333 4.267 46.933 25.6 55.467s46.933-4.267 55.467-25.6l145.067-396.8c8.533-17.067 0-38.4-12.8-46.933s-21.333-12.8-29.867-12.8zM708.267 345.6c-12.8 0-25.6 4.267-34.133 17.067-12.8 17.067-8.533 46.933 8.533 59.733l170.667 123.733h-213.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c17.067 0 34.133-12.8 42.667-29.867 4.267-17.067 0-38.4-17.067-46.933l-273.067-200.533c-8.533-4.267-17.067-8.533-25.6-8.533zM170.667-51.2c-8.533 0-17.067 4.267-25.6 8.533-17.067 12.8-21.333 29.867-12.8 46.933l132.267 366.933-247.467 183.467c-12.8 12.8-21.333 29.867-17.067 46.933 8.533 17.067 25.6 29.867 42.667 29.867h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-213.333l170.667-123.733c17.067-12.8 21.333-29.867 12.8-46.933l-98.133-264.533 226.133 166.4c17.067 12.8 46.933 8.533 59.733-8.533s8.533-46.933-8.533-59.733l-341.333-251.733c-4.267-4.267-12.8-8.533-21.333-8.533zM768 546.133h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9bd;" glyph-name="stop" d="M725.333 204.8h-426.667c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667v-426.667c0-25.6-17.067-42.667-42.667-42.667zM341.333 290.133h341.333v341.333h-341.333v-341.333z" />
<glyph unicode="&#xe9be;" glyph-name="styling-tools" d="M170.667-51.2c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM170.667 204.8c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM426.667-51.2c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM426.667 204.8c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM298.667 76.8c-25.6 0-42.667 17.067-42.667 42.667v810.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-810.667c0-25.6-17.067-42.667-42.667-42.667zM264.533 162.133c-17.067 0-34.133 12.8-42.667 29.867l-89.6 311.467c-29.867 81.067-25.6 179.2 21.333 256l110.933 192c8.533 21.333 34.133 25.6 55.467 17.067 21.333-12.8 25.6-38.4 17.067-59.733l-110.933-192c-34.133-55.467-38.4-123.733-12.8-183.467l89.6-315.733c8.533-21.333-8.533-46.933-29.867-51.2 0 0-4.267-4.267-8.533-4.267zM332.8 162.133c-4.267 0-8.533 0-12.8 0-21.333 8.533-34.133 29.867-29.867 51.2l93.867 315.733c25.6 64 21.333 132.267-12.8 187.733l-110.933 192c-8.533 21.333-4.267 46.933 17.067 59.733 21.333 8.533 46.933 4.267 59.733-17.067l106.667-192c46.933-81.067 51.2-174.933 17.067-260.267l-89.6-307.2c0-17.067-17.067-29.867-38.4-29.867zM981.333 759.467h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 631.467h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 503.467h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 375.467h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM853.333-51.2h-170.667c-25.6 0-42.667 17.067-42.667 42.667v938.667c0 25.6 17.067 42.667 42.667 42.667h170.667c93.867 0 170.667-76.8 170.667-170.667v-384c0-93.867-76.8-170.667-170.667-170.667-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c46.933 0 85.333 38.4 85.333 85.333v384c0 46.933-38.4 85.333-85.333 85.333h-128v-853.333h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM853.333-51.2c-25.6 0-42.667 17.067-42.667 42.667v298.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9bf;" glyph-name="suitcase" d="M341.333 802.133h-85.333c0 72.533 55.467 128 128 128v-85.333c-25.6 0-42.667-17.067-42.667-42.667zM768 802.133h-85.333c0 25.6-17.067 42.667-42.667 42.667v85.333c72.533 0 128-55.467 128-128zM768 674.133h-512v128h85.333v-42.667h341.333v42.667h85.333zM384 930.133h256v-85.333h-256v85.333zM896-8.533h-768c-72.533 0-128 55.467-128 128v512c0 72.533 55.467 128 128 128h768c72.533 0 128-55.467 128-128v-512c0-72.533-55.467-128-128-128zM128 674.133c-25.6 0-42.667-17.067-42.667-42.667v-512c0-25.6 17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667v512c0 25.6-17.067 42.667-42.667 42.667h-768zM810.667 332.8h-597.333c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM256 418.133h512v256h-512v-256zM597.333 290.133h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9c0;" glyph-name="syringe" d="M384 162.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733l469.333 469.333c17.067 17.067 42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733l-469.333-469.333c-8.533-8.533-17.067-12.8-29.867-12.8zM315.733 332.8l68.267-68.267 409.6 409.6-68.267 68.267-409.6-409.6zM938.667 546.133c-12.8 0-21.333 4.267-29.867 12.8l-298.667 298.667c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l298.667-298.667c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM981.333 716.8c-12.8 0-21.333 4.267-29.867 12.8l-170.667 170.667c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l170.667-170.667c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM42.667-51.2c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l277.333 277.333c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-277.333-277.333c-8.533-8.533-17.067-12.8-29.867-12.8zM789.333 695.467c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l106.667 106.667c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-106.667-106.667c-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe9c1;" glyph-name="table" d="M853.333-51.2h-682.667c-93.867 0-170.667 76.8-170.667 170.667v640c0 25.6 17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667v-640c0-93.867-76.8-170.667-170.667-170.667zM85.333 716.8v-597.333c0-46.933 38.4-85.333 85.333-85.333h682.667c46.933 0 85.333 38.4 85.333 85.333v597.333h-853.333zM981.333 759.467h-938.667v42.667c0 72.533 55.467 128 128 128h682.667c72.533 0 128-55.467 128-128v-42.667zM981.333 716.8h-938.667c-25.6 0-42.667 17.067-42.667 42.667v42.667c0 93.867 76.8 170.667 170.667 170.667h682.667c93.867 0 170.667-76.8 170.667-170.667v-42.667c0-25.6-17.067-42.667-42.667-42.667zM85.333 802.133h853.333c0 46.933-38.4 85.333-85.333 85.333h-682.667c-46.933 0-85.333-38.4-85.333-85.333zM298.667-51.2c-25.6 0-42.667 17.067-42.667 42.667v768c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-768c0-25.6-17.067-42.667-42.667-42.667zM981.333 460.8h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 204.8h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9c2;" glyph-name="tag" d="M853.333-8.533h-341.333c-12.8 0-21.333 4.267-29.867 12.8l-469.333 469.333c-17.067 17.067-17.067 42.667 0 59.733l341.333 341.333c17.067 17.067 42.667 17.067 59.733 0l469.333-469.333c8.533-8.533 12.8-17.067 12.8-29.867v-341.333c0-25.6-17.067-42.667-42.667-42.667zM529.067 76.8h281.6v281.6l-426.667 426.667-281.6-281.6 426.667-426.667zM832 76.8c-102.4 0-179.2 93.867-183.467 98.133-12.8 17.067-12.8 46.933 8.533 59.733 17.067 12.8 46.933 12.8 59.733-8.533 17.067-21.333 72.533-72.533 123.733-68.267 46.933 4.267 81.067 59.733 106.667 102.4 8.533 21.333 34.133 29.867 55.467 17.067 21.333-8.533 29.867-34.133 17.067-55.467-46.933-89.6-102.4-140.8-170.667-149.333-8.533 8.533-12.8 4.267-17.067 4.267zM256 460.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM640 332.8c-12.8 0-21.333 4.267-29.867 12.8l-256 256c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l256-256c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM512 204.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM512 204.8c-12.8 0-21.333 4.267-29.867 12.8l-256 256c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l256-256c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe9c3;" glyph-name="target" d="M512 76.8c-213.333 0-384 170.667-384 384s170.667 384 384 384 384-170.667 384-384-170.667-384-384-384zM512 759.467c-166.4 0-298.667-132.267-298.667-298.667s132.267-298.667 298.667-298.667 298.667 132.267 298.667 298.667-132.267 298.667-298.667 298.667zM512 290.133c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-76.8-170.667-170.667-170.667zM512 546.133c-46.933 0-85.333-38.4-85.333-85.333s38.4-85.333 85.333-85.333 85.333 38.4 85.333 85.333-38.4 85.333-85.333 85.333zM512-51.2c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM512 546.133c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667zM384 418.133h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 418.133h-341.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h341.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9c4;" glyph-name="terminal" d="M810.667-51.2h-597.333c-119.467 0-213.333 93.867-213.333 213.333v597.333c0 119.467 93.867 213.333 213.333 213.333h597.333c119.467 0 213.333-93.867 213.333-213.333v-597.333c0-119.467-93.867-213.333-213.333-213.333zM213.333 887.467c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v597.333c0 72.533-55.467 128-128 128h-597.333zM384 546.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM256 418.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM640 418.133h-170.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9c5;" glyph-name="text" d="M853.333-51.2h-682.667c-93.867 0-170.667 76.8-170.667 170.667v682.667c0 93.867 76.8 170.667 170.667 170.667h682.667c93.867 0 170.667-76.8 170.667-170.667v-682.667c0-93.867-76.8-170.667-170.667-170.667zM170.667 887.467c-46.933 0-85.333-38.4-85.333-85.333v-682.667c0-46.933 38.4-85.333 85.333-85.333h682.667c46.933 0 85.333 38.4 85.333 85.333v682.667c0 46.933-38.4 85.333-85.333 85.333h-682.667zM725.333 631.467h-426.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM298.667 588.8c-25.6 0-42.667 17.067-42.667 42.667v42.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-42.667c0-25.6-17.067-42.667-42.667-42.667zM725.333 588.8c-25.6 0-42.667 17.067-42.667 42.667v42.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-42.667c0-25.6-17.067-42.667-42.667-42.667zM512 204.8c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-426.667c0-25.6-17.067-42.667-42.667-42.667zM554.667 204.8h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h85.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9c6;" glyph-name="thumbs-down" d="M256-51.2c-8.533 0-17.067 4.267-25.6 8.533-8.533 8.533-17.067 21.333-17.067 34.133v776.533c0 89.6 68.267 162.133 157.867 170.667l362.667 25.6c4.267 0 8.533 0 12.8 0 89.6 0 162.133-68.267 170.667-157.867l21.333-315.733c4.267-46.933-12.8-93.867-46.933-128-34.133-38.4-89.6-59.733-140.8-55.467l-273.067 21.333 4.267-21.333c21.333-153.6-64-298.667-204.8-354.133-8.533-4.267-12.8-4.267-21.333-4.267zM746.667 878.933c-4.267 0-4.267 0-8.533 0l-362.667-25.6c-42.667-4.267-76.8-42.667-76.8-85.333v-704c72.533 51.2 110.933 140.8 98.133 230.4l-12.8 76.8c0 12.8 4.267 25.6 12.8 34.133s21.333 12.8 34.133 12.8l328.533-25.6c4.267 0 8.533 0 8.533 0 21.333 0 46.933 8.533 64 25.6s25.6 38.4 21.333 64l-21.333 315.733c-4.267 46.933-42.667 81.067-85.333 81.067zM256 290.133h-213.333c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h213.333c25.6 0 42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM85.333 375.467h128v512h-128v-512z" />
<glyph unicode="&#xe9c7;" glyph-name="thumbs-up" d="M789.333-42.667c-4.267 0-8.533 0-12.8 0l-362.667 25.6c-89.6 8.533-157.867 81.067-157.867 170.667v776.533c0 12.8 8.533 25.6 17.067 34.133 12.8 8.533 29.867 12.8 42.667 4.267 145.067-59.733 230.4-204.8 209.067-354.133l-4.267-21.333 277.333 21.333c4.267 0 12.8 0 17.067 0 46.933 0 93.867-21.333 123.733-55.467 34.133-34.133 46.933-81.067 46.933-128l-21.333-315.733c-12.8-85.333-85.333-157.867-174.933-157.867zM341.333 857.6v-704c0-42.667 34.133-81.067 76.8-85.333l362.667-25.6c4.267 0 4.267 0 8.533 0 42.667 0 81.067 34.133 85.333 81.067l21.333 315.733c0 25.6-4.267 46.933-21.333 64-17.067 21.333-42.667 29.867-72.533 25.6l-328.533-25.6c-12.8 0-25.6 4.267-34.133 12.8s-12.8 21.333-12.8 34.133l8.533 72.533c17.067 93.867-21.333 183.467-93.867 234.667zM298.667-51.2h-213.333c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h213.333c25.6 0 42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM128 34.133h128v512h-128v-512z" />
<glyph unicode="&#xe9c8;" glyph-name="thunderbolt" d="M512-51.2c-4.267 0-8.533 0-8.533 0-17.067 4.267-34.133 21.333-34.133 42.667v315.733l-110.933-55.467c-12.8-4.267-25.6-4.267-38.4 0s-17.067 17.067-21.333 29.867l-128 640c0 12.8 0 25.6 8.533 34.133 8.533 12.8 21.333 17.067 34.133 17.067h426.667c12.8 0 25.6-4.267 34.133-17.067 8.533-8.533 8.533-21.333 8.533-34.133l-68.267-315.733 226.133 68.267c17.067 4.267 34.133 0 46.933-12.8s12.8-29.867 4.267-46.933l-341.333-640c-8.533-17.067-21.333-25.6-38.4-25.6zM512 418.133c8.533 0 17.067-4.267 21.333-4.267 12.8-8.533 21.333-21.333 21.333-38.4v-213.333l213.333 401.067-200.533-59.733c-12.8-4.267-29.867 0-42.667 8.533s-17.067 25.6-12.8 38.4l76.8 337.067h-324.267l106.667-533.333 119.467 59.733c8.533 4.267 12.8 4.267 21.333 4.267z" />
<glyph unicode="&#xe9c9;" glyph-name="tie" d="M597.333 716.8h-170.667c-17.067 0-29.867 8.533-38.4 25.6l-85.333 170.667c-4.267 12.8-4.267 25.6 0 38.4s25.6 21.333 38.4 21.333h341.333c12.8 0 29.867-8.533 38.4-21.333s8.533-29.867 0-42.667l-85.333-170.667c-8.533-12.8-21.333-21.333-38.4-21.333zM452.267 802.133h119.467l42.667 85.333h-204.8l42.667-85.333zM725.333 162.133c-21.333 0-38.4 12.8-42.667 34.133l-119.467 520.533h-102.4l-119.467-520.533c-4.267-21.333-29.867-38.4-51.2-34.133s-38.4 29.867-34.133 51.2l128 554.667c4.267 21.333 21.333 34.133 42.667 34.133h170.667c21.333 0 38.4-12.8 42.667-34.133l128-554.667c4.267-21.333-8.533-46.933-34.133-51.2-4.267 0-4.267 0-8.533 0zM512-51.2c-12.8 0-21.333 4.267-29.867 12.8l-213.333 213.333c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l183.467-183.467 183.467 183.467c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-213.333-213.333c-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe9ca;" glyph-name="toggles" d="M810.667 503.467h-597.333c-115.2 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333h597.333c115.2 0 213.333-93.867 213.333-213.333s-93.867-213.333-213.333-213.333zM213.333 844.8c-72.533 0-128-55.467-128-128s55.467-128 128-128h597.333c68.267 0 128 55.467 128 128s-55.467 128-128 128h-597.333zM810.667-8.533h-597.333c-115.2 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333h597.333c115.2 0 213.333-93.867 213.333-213.333s-93.867-213.333-213.333-213.333zM213.333 332.8c-68.267 0-128-55.467-128-128s55.467-128 128-128h597.333c68.267 0 128 55.467 128 128s-55.467 128-128 128h-597.333zM213.333 503.467c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333 213.333-93.867 213.333-213.333-93.867-213.333-213.333-213.333zM213.333 844.8c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM810.667-8.533c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333 213.333-93.867 213.333-213.333-93.867-213.333-213.333-213.333zM810.667 332.8c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128z" />
<glyph unicode="&#xe9cb;" glyph-name="trophy" d="M554.667-51.2h-298.667c-17.067 0-29.867 8.533-38.4 25.6s-4.267 34.133 4.267 46.933l93.867 115.2c25.6 25.6 38.4 59.733 34.133 98.133s-21.333 68.267-51.2 93.867c-55.467 42.667-85.333 106.667-85.333 174.933v426.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-426.667c0-42.667 17.067-81.067 51.2-106.667 51.2-38.4 76.8-93.867 85.333-153.6 4.267-59.733-12.8-119.467-51.2-166.4l-38.4-42.667h209.067c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM768-51.2h-298.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h209.067l-38.4 42.667c-38.4 46.933-55.467 106.667-51.2 166.4s34.133 115.2 81.067 153.6c38.4 25.6 55.467 64 55.467 106.667v426.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-426.667c0-68.267-29.867-132.267-85.333-174.933-29.867-25.6-51.2-59.733-51.2-93.867-4.267-38.4 8.533-72.533 29.867-102.4l93.867-115.2c8.533-12.8 12.8-29.867 4.267-46.933-4.267-12.8-17.067-21.333-34.133-21.333zM768 887.467h-512c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM768 546.133c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c93.867 0 170.667 76.8 170.667 170.667 0 64-25.6 85.333-170.667 85.333-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c89.6 0 256 0 256-170.667 0-140.8-115.2-256-256-256zM256 546.133c-140.8 0-256 115.2-256 256 0 170.667 166.4 170.667 256 170.667 25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667c-145.067 0-170.667-21.333-170.667-85.333 0-93.867 76.8-170.667 170.667-170.667 25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9cc;" glyph-name="truck" d="M213.333 34.133c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM213.333 204.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM810.667 34.133c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM810.667 204.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM981.333 119.467h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h42.667v204.8l-72.533 221.867h-183.467c-25.6 0-42.667 17.067-42.667 42.667v128h-554.667v-597.333h42.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667h-85.333c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667h640c25.6 0 42.667-17.067 42.667-42.667v-128h170.667c17.067 0 34.133-12.8 38.4-29.867l85.333-256c0-4.267 4.267-8.533 4.267-12.8v-256c0-25.6-17.067-42.667-42.667-42.667zM725.333 119.467h-426.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM682.667 119.467c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667zM981.333 375.467h-298.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h298.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9cd;" glyph-name="tube" d="M896-51.2h-768c-17.067 0-29.867 8.533-38.4 21.333s-8.533 29.867 0 42.667l256 469.333c12.8 21.333 38.4 25.6 59.733 17.067 21.333-12.8 29.867-38.4 17.067-59.733l-221.867-405.333h622.933l-221.867 405.333c-12.8 21.333-4.267 46.933 17.067 59.733s46.933 4.267 59.733-17.067l256-469.333c8.533-12.8 8.533-29.867 0-42.667s-21.333-21.333-38.4-21.333zM640 418.133c-25.6 0-42.667 17.067-42.667 42.667v256h-170.667v-256c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v298.667c0 25.6 17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667zM725.333 716.8h-426.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM426.667 887.467c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM384 823.467c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM384 908.8c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333zM597.333 908.8c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64zM533.333 823.467c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333zM533.333 951.467c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM682.667 866.133c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333zM704 866.133c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM247.467 170.667c-21.333 0-42.667 17.067-42.667 38.4 0 25.6 17.067 42.667 38.4 46.933l512 29.867c21.333 4.267 42.667-17.067 46.933-38.4 0-25.6-17.067-42.667-38.4-46.933l-516.267-29.867c0 0 0 0 0 0z" />
<glyph unicode="&#xe9ce;" glyph-name="tv" d="M896 204.8h-768c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667h768c25.6 0 42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667zM170.667 290.133h682.667v426.667h-682.667v-426.667zM896 34.133h-768c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h768c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM170.667 119.467h682.667v85.333h-682.667v-85.333zM512 716.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l170.667 170.667c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-170.667-170.667c-8.533-8.533-17.067-12.8-29.867-12.8zM512 716.8c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM256-51.2c-25.6 0-42.667 17.067-42.667 42.667v85.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-85.333c0-25.6-17.067-42.667-42.667-42.667zM768-51.2c-25.6 0-42.667 17.067-42.667 42.667v85.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-85.333c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9cf;" glyph-name="umbrella" d="M981.333 460.8c0 0 0 0 0 0h-938.667c-12.8 0-25.6 4.267-34.133 17.067-8.533 8.533-8.533 21.333-8.533 34.133 0 4.267 98.133 418.133 512 418.133 379.733 0 490.667-345.6 507.733-409.6 4.267-4.267 4.267-8.533 4.267-17.067 0-25.6-17.067-42.667-42.667-42.667zM102.4 546.133h823.467c-38.4 98.133-145.067 298.667-409.6 298.667-268.8 0-375.467-200.533-413.867-298.667zM426.667-8.533c-93.867 0-128 76.8-128 128 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-21.333 8.533-42.667 42.667-42.667s42.667 21.333 42.667 42.667v384c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-384c0-51.2-34.133-128-128-128z" />
<glyph unicode="&#xe9d0;" glyph-name="undo" d="M426.667 76.8c-8.533 0-21.333 4.267-29.867 12.8l-384 341.333c-8.533 4.267-12.8 17.067-12.8 29.867s4.267 25.6 12.8 29.867l384 341.333c12.8 12.8 29.867 12.8 46.933 8.533s25.6-21.333 25.6-38.4v-213.333c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v119.467l-277.333-247.467 277.333-247.467v119.467c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-213.333c0-17.067-8.533-34.133-25.6-38.4-4.267-4.267-12.8-4.267-17.067-4.267zM981.333 76.8c-17.067 0-34.133 8.533-38.4 25.6 0 0-85.333 187.733-516.267 187.733-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c260.267 0 409.6-64 494.933-123.733-89.6 290.133-477.867 294.4-494.933 294.4-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c4.267 0 597.333-4.267 597.333-512 0-21.333-12.8-38.4-34.133-42.667-4.267 0-4.267 0-8.533 0z" />
<glyph unicode="&#xe9d1;" glyph-name="up" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM640 375.467c-12.8 0-21.333 4.267-29.867 12.8l-98.133 98.133-98.133-98.133c-17.067-17.067-42.667-17.067-59.733 0s-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe9d2;" glyph-name="update" d="M512 34.133c-234.667 0-426.667 192-426.667 426.667 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-187.733 153.6-341.333 341.333-341.333s341.333 153.6 341.333 341.333-153.6 341.333-341.333 341.333c-115.2 0-221.867-55.467-281.6-153.6-17.067-17.067-42.667-21.333-59.733-8.533-21.333 12.8-25.6 38.4-12.8 59.733 76.8 115.2 213.333 187.733 354.133 187.733 234.667 0 426.667-192 426.667-426.667s-192-426.667-426.667-426.667zM512 418.133c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-213.333c0-25.6-17.067-42.667-42.667-42.667zM640 290.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM341.333 631.467h-170.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-128h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9d3;" glyph-name="up-down" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM640 503.467c-12.8 0-21.333 4.267-29.867 12.8l-98.133 98.133-98.133-98.133c-17.067-17.067-42.667-17.067-59.733 0s-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM512 204.8c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l98.133-98.133 98.133 98.133c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe9d4;" glyph-name="upload" d="M213.333 546.133c-25.6 0-42.667 17.067-42.667 42.667 0 166.4 132.267 298.667 298.667 298.667 128 0 243.2-85.333 285.867-209.067 4.267-21.333-4.267-46.933-29.867-51.2-21.333-8.533-46.933 4.267-55.467 25.6-25.6 89.6-106.667 149.333-200.533 149.333-119.467 0-213.333-93.867-213.333-213.333 0-25.6-17.067-42.667-42.667-42.667zM768 204.8c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667c93.867 0 170.667 76.8 170.667 170.667s-76.8 170.667-170.667 170.667c-12.8 0-29.867 0-42.667-4.267-21.333-4.267-46.933 8.533-51.2 29.867s8.533 46.933 29.867 51.2c21.333 4.267 42.667 8.533 64 8.533 140.8 0 256-115.2 256-256s-115.2-256-256-256zM341.333 204.8h-128c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM768 204.8h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h85.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM213.333 204.8c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667c-72.533 0-128-55.467-128-128s55.467-128 128-128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM512 34.133c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-426.667c0-25.6-17.067-42.667-42.667-42.667zM384 332.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l128 128c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-128-128c-8.533-8.533-17.067-12.8-29.867-12.8zM640 332.8c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe9d5;" glyph-name="user" d="M512 418.133c-38.4 0-72.533 12.8-102.4 29.867-72.533 46.933-110.933 145.067-110.933 268.8 0 119.467 93.867 213.333 213.333 213.333s213.333-93.867 213.333-213.333c0-123.733-38.4-221.867-110.933-268.8-29.867-17.067-64-29.867-102.4-29.867zM512 844.8c-72.533 0-128-55.467-128-128 0-93.867 25.6-166.4 72.533-196.267 34.133-21.333 76.8-21.333 110.933 0 46.933 29.867 72.533 102.4 72.533 196.267 0 72.533-55.467 128-128 128zM512-8.533c-98.133 0-426.667 12.8-426.667 170.667s115.2 213.333 243.2 251.733c8.533 4.267 42.667 17.067 55.467 81.067l85.333-17.067c-12.8-76.8-55.467-123.733-115.2-145.067-128-42.667-183.467-76.8-183.467-170.667 0-46.933 179.2-85.333 341.333-85.333s341.333 38.4 341.333 85.333c0 93.867-55.467 128-183.467 174.933-59.733 21.333-98.133 68.267-115.2 145.067l85.333 17.067c12.8-64 46.933-76.8 59.733-81.067 128-42.667 243.2-93.867 243.2-251.733-4.267-42.667-34.133-174.933-430.933-174.933z" />
<glyph unicode="&#xe9d6;" glyph-name="user-add" d="M853.333 204.8h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM725.333 76.8c-25.6 0-42.667 17.067-42.667 42.667v256c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667zM725.333-51.2c-166.4 0-298.667 132.267-298.667 298.667s132.267 298.667 298.667 298.667 298.667-132.267 298.667-298.667-132.267-298.667-298.667-298.667zM725.333 460.8c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333 213.333 93.867 213.333 213.333-93.867 213.333-213.333 213.333zM469.333 418.133c-38.4 0-72.533 12.8-102.4 29.867-72.533 46.933-110.933 145.067-110.933 268.8 0 119.467 93.867 213.333 213.333 213.333s213.333-93.867 213.333-213.333c0-123.733-38.4-221.867-110.933-268.8-29.867-17.067-64-29.867-102.4-29.867zM469.333 844.8c-72.533 0-128-55.467-128-128 0-93.867 25.6-166.4 72.533-196.267 34.133-21.333 76.8-21.333 110.933 0 46.933 29.867 72.533 102.4 72.533 196.267 0 72.533-55.467 128-128 128zM469.333-8.533c-98.133 0-426.667 12.8-426.667 170.667s115.2 213.333 243.2 251.733c8.533 4.267 42.667 17.067 55.467 81.067l85.333-17.067c-12.8-76.8-55.467-123.733-115.2-145.067-128-42.667-183.467-76.8-183.467-170.667 0-46.933 179.2-85.333 341.333-85.333 0 0 46.933 0 102.4 4.267l8.533-85.333c-59.733-4.267-110.933-4.267-110.933-4.267zM524.8 430.933c-8.533 17.067-12.8 34.133-12.8 46.933l85.333 17.067c0-8.533 4.267-21.333 8.533-34.133l-81.067-29.867z" />
<glyph unicode="&#xe9d7;" glyph-name="user-remove" d="M896 204.8h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM768-51.2c-166.4 0-298.667 132.267-298.667 298.667s132.267 298.667 298.667 298.667 298.667-132.267 298.667-298.667-132.267-298.667-298.667-298.667zM768 460.8c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333 213.333 93.867 213.333 213.333-93.867 213.333-213.333 213.333zM512 418.133c-38.4 0-72.533 12.8-102.4 29.867-72.533 46.933-110.933 145.067-110.933 268.8 0 119.467 93.867 213.333 213.333 213.333s213.333-93.867 213.333-213.333c0-123.733-38.4-221.867-110.933-268.8-29.867-17.067-64-29.867-102.4-29.867zM512 844.8c-72.533 0-128-55.467-128-128 0-93.867 25.6-166.4 72.533-196.267 34.133-21.333 76.8-21.333 110.933 0 46.933 29.867 72.533 102.4 72.533 196.267 0 72.533-55.467 128-128 128zM512-8.533c-98.133 0-426.667 12.8-426.667 170.667s115.2 213.333 243.2 251.733c8.533 4.267 42.667 17.067 55.467 81.067l85.333-17.067c-12.8-76.8-55.467-123.733-115.2-145.067-128-42.667-183.467-76.8-183.467-170.667 0-46.933 179.2-85.333 341.333-85.333 0 0 46.933 0 102.4 4.267l8.533-85.333c-59.733-4.267-110.933-4.267-110.933-4.267zM567.467 430.933c-8.533 17.067-12.8 34.133-12.8 46.933l85.333 17.067c0-8.533 4.267-21.333 8.533-34.133l-81.067-29.867z" />
<glyph unicode="&#xe9d8;" glyph-name="users" d="M392.533 418.133c-29.867 0-64 8.533-89.6 25.6-55.467 38.4-89.6 119.467-89.6 221.867 0 98.133 81.067 179.2 179.2 179.2s179.2-81.067 179.2-179.2c0-102.4-34.133-183.467-93.867-221.867-21.333-17.067-55.467-25.6-85.333-25.6zM392.533 759.467c-51.2 0-93.867-42.667-93.867-93.867 0-72.533 21.333-128 55.467-149.333 25.6-17.067 55.467-17.067 81.067 0 34.133 21.333 55.467 76.8 55.467 149.333-4.267 51.2-46.933 93.867-98.133 93.867zM392.533 76.8c-81.067 0-349.867 8.533-349.867 145.067 0 145.067 119.467 183.467 200.533 209.067 8.533 4.267 29.867 8.533 42.667 59.733l85.333-17.067c-17.067-81.067-59.733-110.933-98.133-123.733-115.2-34.133-145.067-64-145.067-128 0-25.6 123.733-59.733 264.533-59.733s264.533 34.133 264.533 59.733c0 64-29.867 93.867-140.8 132.267-34.133 12.8-81.067 42.667-98.133 123.733l85.333 17.067c8.533-46.933 34.133-55.467 38.4-59.733 81.067-25.6 200.533-68.267 200.533-209.067s-268.8-149.333-349.867-149.333zM725.333 426.667c-25.6 0-46.933 8.533-68.267 21.333-42.667 29.867-68.267 85.333-68.267 162.133s59.733 136.533 136.533 136.533 136.533-59.733 136.533-136.533c0-76.8-25.6-136.533-68.267-166.4-21.333-8.533-42.667-17.067-68.267-17.067zM725.333 665.6c-29.867 0-51.2-21.333-51.2-51.2 0-46.933 12.8-81.067 29.867-93.867 12.8-8.533 29.867-8.533 38.4 0 21.333 12.8 34.133 46.933 34.133 93.867 0 25.6-21.333 51.2-51.2 51.2zM576 349.867l-51.2 68.267c25.6 21.333 55.467 34.133 93.867 42.667 4.267 0 12.8 4.267 17.067 29.867l85.333-17.067c-8.533-46.933-34.133-81.067-76.8-93.867-25.6-4.267-51.2-17.067-68.267-29.867zM725.333 192c0 0-12.8 0-29.867 0l4.267 85.333c12.8 0 21.333 0 25.6 0 72.533 0 153.6 17.067 170.667 29.867 0 34.133-17.067 51.2-89.6 76.8-38.4 12.8-68.267 46.933-76.8 93.867l85.333 17.067c4.267-25.6 17.067-29.867 21.333-29.867 55.467-17.067 149.333-46.933 149.333-157.867-4.267-106.667-183.467-115.2-260.267-115.2v0z" />
<glyph unicode="&#xe9d9;" glyph-name="video" d="M853.333-51.2h-682.667c-93.867 0-170.667 76.8-170.667 170.667v682.667c0 93.867 76.8 170.667 170.667 170.667h682.667c93.867 0 170.667-76.8 170.667-170.667v-682.667c0-93.867-76.8-170.667-170.667-170.667zM170.667 887.467c-46.933 0-85.333-38.4-85.333-85.333v-682.667c0-46.933 38.4-85.333 85.333-85.333h682.667c46.933 0 85.333 38.4 85.333 85.333v682.667c0 46.933-38.4 85.333-85.333 85.333h-682.667zM384 247.467c-8.533 0-12.8 0-21.333 4.267-12.8 8.533-21.333 21.333-21.333 38.4v341.333c0 17.067 8.533 29.867 21.333 38.4s29.867 8.533 42.667 0l298.667-170.667c12.8-8.533 21.333-21.333 21.333-38.4s-8.533-29.867-21.333-38.4l-298.667-170.667c-8.533-4.267-12.8-4.267-21.333-4.267zM426.667 558.933v-196.267l170.667 98.133-170.667 98.133z" />
<glyph unicode="&#xe9da;" glyph-name="video-camera" d="M682.667 76.8h-554.667c-72.533 0-128 55.467-128 128v512c0 72.533 55.467 128 128 128h554.667c72.533 0 128-55.467 128-128v-512c0-72.533-55.467-128-128-128zM128 759.467c-25.6 0-42.667-17.067-42.667-42.667v-512c0-25.6 17.067-42.667 42.667-42.667h554.667c25.6 0 42.667 17.067 42.667 42.667v512c0 25.6-17.067 42.667-42.667 42.667h-554.667zM981.333 247.467c-4.267 0-12.8 0-17.067 4.267l-213.333 85.333c-17.067 4.267-25.6 21.333-25.6 38.4v170.667c0 17.067 8.533 34.133 25.6 38.4l213.333 85.333c12.8 4.267 29.867 4.267 38.4-4.267 12.8-8.533 21.333-21.333 21.333-34.133v-341.333c0-12.8-8.533-25.6-17.067-34.133-8.533-4.267-17.067-8.533-25.6-8.533zM810.667 405.333l128-51.2v213.333l-128-51.2v-110.933zM234.667 503.467c-59.733 0-106.667 46.933-106.667 106.667s46.933 106.667 106.667 106.667 106.667-46.933 106.667-106.667-46.933-106.667-106.667-106.667zM234.667 631.467c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333z" />
<glyph unicode="&#xe9db;" glyph-name="volume-down" d="M682.667-8.533c-8.533 0-17.067 4.267-25.6 8.533l-256 170.667c-8.533 8.533-17.067 21.333-17.067 34.133v512c0 12.8 8.533 25.6 17.067 34.133l256 170.667c12.8 8.533 29.867 8.533 42.667 0 17.067-4.267 25.6-17.067 25.6-34.133v-853.333c0-17.067-8.533-29.867-21.333-38.4-8.533-4.267-12.8-4.267-21.333-4.267zM469.333 226.133l170.667-115.2v695.467l-170.667-115.2v-465.067zM426.667 162.133h-256c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667zM213.333 247.467h170.667v426.667h-170.667v-426.667zM802.133 298.667c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733 25.6 25.6 38.4 55.467 38.4 89.6s-12.8 64-38.4 89.6c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0c42.667-38.4 64-93.867 64-149.333s-21.333-110.933-64-149.333c-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe9dc;" glyph-name="volume-mute" d="M768-8.533c-8.533 0-17.067 4.267-25.6 8.533l-256 170.667c-8.533 8.533-17.067 21.333-17.067 34.133v512c0 12.8 8.533 25.6 17.067 34.133l256 170.667c12.8 8.533 29.867 8.533 42.667 0 17.067-4.267 25.6-17.067 25.6-34.133v-853.333c0-17.067-8.533-29.867-21.333-38.4-8.533-4.267-12.8-4.267-21.333-4.267zM554.667 226.133l170.667-115.2v695.467l-170.667-115.2v-465.067zM512 162.133h-256c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667zM298.667 247.467h170.667v426.667h-170.667v-426.667z" />
<glyph unicode="&#xe9dd;" glyph-name="volume-up" d="M554.667-8.533c-8.533 0-17.067 4.267-25.6 8.533l-256 170.667c-8.533 8.533-17.067 21.333-17.067 34.133v512c0 12.8 8.533 25.6 17.067 34.133l256 170.667c12.8 8.533 29.867 8.533 42.667 0 17.067-4.267 25.6-17.067 25.6-34.133v-853.333c0-17.067-8.533-29.867-21.333-38.4-8.533-4.267-12.8-4.267-21.333-4.267zM341.333 226.133l170.667-115.2v695.467l-170.667-110.933v-469.333zM298.667 162.133h-256c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667zM85.333 247.467h170.667v426.667h-170.667v-426.667zM674.133 298.667c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733 25.6 25.6 38.4 55.467 38.4 89.6s-12.8 64-38.4 89.6c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0c42.667-38.4 64-93.867 64-149.333s-21.333-110.933-64-149.333c-8.533-8.533-17.067-12.8-29.867-12.8zM768 204.8c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733 46.933 46.933 76.8 110.933 76.8 179.2s-25.6 132.267-76.8 179.2c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0c64-59.733 98.133-145.067 98.133-234.667s-34.133-174.933-98.133-243.2c-8.533-8.533-21.333-12.8-29.867-12.8zM857.6 115.2c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733 72.533 72.533 110.933 170.667 110.933 273.067s-38.4 200.533-110.933 273.067c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0c89.6-89.6 136.533-209.067 136.533-332.8s-46.933-243.2-136.533-332.8c-8.533-8.533-21.333-12.8-29.867-12.8z" />
<glyph unicode="&#xe9de;" glyph-name="wallet" d="M128 631.467c-72.533 0-128 55.467-128 128s55.467 128 128 128c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM128 34.133c-72.533 0-128 55.467-128 128 0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667c0-25.6 17.067-42.667 42.667-42.667s42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667zM981.333 34.133h-853.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h810.667v512h-810.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h853.333c25.6 0 42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM896 631.467c-25.6 0-42.667 17.067-42.667 42.667v128h-725.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h768c25.6 0 42.667-17.067 42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667zM42.667 119.467c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-597.333c0-25.6-17.067-42.667-42.667-42.667zM853.333 375.467c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333z" />
<glyph unicode="&#xe9df;" glyph-name="wand" d="M128-51.2c-12.8 0-21.333 4.267-29.867 12.8l-85.333 85.333c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l85.333-85.333c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM128-51.2c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l853.333 853.333c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-853.333-853.333c-8.533-8.533-17.067-12.8-29.867-12.8zM981.333 802.133c-12.8 0-21.333 4.267-29.867 12.8l-85.333 85.333c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l85.333-85.333c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM42.667 34.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l853.333 853.333c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-853.333-853.333c-8.533-8.533-17.067-12.8-29.867-12.8zM810.667 631.467c-12.8 0-21.333 4.267-29.867 12.8l-85.333 85.333c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l85.333-85.333c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM640 204.8c-25.6 0-42.667 17.067-42.667 42.667v85.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-85.333c0-25.6-17.067-42.667-42.667-42.667zM640 802.133c-25.6 0-42.667 17.067-42.667 42.667v85.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-85.333c0-25.6-17.067-42.667-42.667-42.667zM384 546.133h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h85.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM981.333 546.133h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h85.333c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM460.8 725.333c-12.8 0-21.333 4.267-29.867 12.8l-93.867 93.867c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l89.6-89.6c17.067-17.067 17.067-42.667 0-59.733-4.267-12.8-17.067-17.067-25.6-17.067zM913.067 273.067c-12.8 0-21.333 4.267-29.867 12.8l-89.6 89.6c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l89.6-89.6c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-21.333-12.8-29.867-12.8z" />
<glyph unicode="&#xe9e0;" glyph-name="warning" d="M981.333-8.533h-938.667c-17.067 0-29.867 8.533-38.4 21.333s-8.533 29.867 0 42.667l469.333 853.333c17.067 25.6 59.733 25.6 76.8 0l469.333-853.333c8.533-12.8 8.533-29.867 0-42.667s-21.333-21.333-38.4-21.333zM115.2 76.8h793.6l-396.8 721.067-396.8-721.067zM512 290.133c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-213.333c0-25.6-17.067-42.667-42.667-42.667zM554.667 204.8c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM512 140.8c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM512 226.133c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333z" />
<glyph unicode="&#xe9e1;" glyph-name="wi-fi" d="M512 76.8c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM512 247.467c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667zM708.267 324.267c-12.8 0-25.6 4.267-34.133 17.067-42.667 51.2-102.4 76.8-166.4 76.8s-123.733-29.867-166.4-76.8c-17.067-17.067-42.667-21.333-59.733-4.267s-21.333 42.667-4.267 59.733c59.733 68.267 145.067 106.667 234.667 106.667s174.933-38.4 230.4-110.933c12.8-17.067 12.8-46.933-4.267-59.733-8.533-4.267-17.067-8.533-29.867-8.533zM840.533 430.933c-12.8 0-25.6 4.267-34.133 17.067-68.267 89.6-179.2 140.8-294.4 140.8s-226.133-51.2-298.667-140.8c-12.8-17.067-42.667-21.333-59.733-4.267s-21.333 42.667-4.267 59.733c89.6 106.667 221.867 170.667 362.667 170.667s273.067-64 362.667-170.667c12.8-17.067 12.8-46.933-4.267-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM972.8 541.867c-12.8 0-25.6 4.267-34.133 17.067-102.4 128-260.267 200.533-426.667 200.533s-324.267-72.533-430.933-204.8c-12.8-17.067-42.667-21.333-59.733-4.267-17.067 12.8-21.333 42.667-4.267 59.733 119.467 149.333 302.933 234.667 494.933 234.667s375.467-85.333 494.933-234.667c12.8-17.067 12.8-46.933-4.267-59.733-8.533-8.533-17.067-8.533-29.867-8.533z" />
<glyph unicode="&#xe9e2;" glyph-name="window" d="M853.333-51.2h-682.667c-93.867 0-170.667 76.8-170.667 170.667v682.667c0 93.867 76.8 170.667 170.667 170.667h682.667c93.867 0 170.667-76.8 170.667-170.667v-682.667c0-93.867-76.8-170.667-170.667-170.667zM170.667 887.467c-46.933 0-85.333-38.4-85.333-85.333v-682.667c0-46.933 38.4-85.333 85.333-85.333h682.667c46.933 0 85.333 38.4 85.333 85.333v682.667c0 46.933-38.4 85.333-85.333 85.333h-682.667zM981.333 631.467h-938.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h938.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM213.333 802.133c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM170.667 738.133c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM170.667 823.467c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333zM341.333 802.133c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM298.667 738.133c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM298.667 823.467c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333zM469.333 802.133c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667zM426.667 738.133c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64zM426.667 823.467c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333 21.333 8.533 21.333 21.333-8.533 21.333-21.333 21.333z" />
<glyph unicode="&#xe9e3;" glyph-name="wrench" d="M725.333 375.467c-42.667 0-85.333 8.533-128 29.867-21.333 8.533-29.867 34.133-21.333 55.467s34.133 29.867 55.467 21.333c81.067-38.4 179.2-21.333 243.2 42.667 34.133 34.133 55.467 76.8 59.733 119.467l-29.867 29.867-119.467-119.467c-8.533-8.533-17.067-12.8-29.867-12.8-8.533 0-81.067 0-119.467 42.667-42.667 42.667-42.667 110.933-42.667 119.467 0 12.8 4.267 21.333 12.8 29.867l119.467 119.467-29.867 29.867c-46.933-4.267-89.6-25.6-119.467-59.733-64-64-81.067-162.133-42.667-243.2 8.533-21.333 0-46.933-21.333-55.467s-46.933 0-55.467 21.333c-55.467 115.2-29.867 251.733 59.733 341.333 51.2 51.2 119.467 81.067 196.267 85.333 12.8 0 25.6-4.267 34.133-12.8l72.533-72.533c17.067-17.067 17.067-42.667 0-59.733l-136.533-136.533c4.267-17.067 8.533-34.133 17.067-42.667s29.867-12.8 42.667-17.067l136.533 136.533c17.067 17.067 42.667 17.067 59.733 0l72.533-72.533c8.533-12.8 12.8-25.6 12.8-38.4-4.267-72.533-34.133-140.8-85.333-196.267-59.733-55.467-136.533-85.333-213.333-85.333zM785.067 810.667c-12.8 0-21.333 4.267-29.867 12.8l-59.733 64c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l59.733-59.733c17.067-17.067 17.067-42.667 0-59.733-8.533-12.8-17.067-17.067-29.867-17.067zM968.533 631.467c-12.8 0-21.333 4.267-29.867 12.8l-59.733 59.733c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l59.733-59.733c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-21.333-12.8-29.867-12.8zM128-51.2c-34.133 0-64 12.8-89.6 38.4-51.2 51.2-51.2 132.267 0 179.2l426.667 426.667c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-426.667-426.667c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l426.667 426.667c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-426.667-426.667c-25.6-25.6-55.467-38.4-89.6-38.4z" />
<glyph unicode="&#xe9e4;" glyph-name="yes" d="M512-51.2c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 887.467c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM469.333 290.133c-12.8 0-21.333 4.267-29.867 12.8l-128 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l128-128c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM469.333 290.133c-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-17.067 42.667 0 59.733l256 256c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-59.733l-256-256c-8.533-8.533-17.067-12.8-29.867-12.8z" />
<glyph unicode="&#xe9e5;" glyph-name="zoom-in" d="M384 204.8c-213.333 0-384 170.667-384 384s170.667 384 384 384 384-170.667 384-384-170.667-384-384-384zM384 887.467c-166.4 0-298.667-132.267-298.667-298.667s132.267-298.667 298.667-298.667 298.667 132.267 298.667 298.667-132.267 298.667-298.667 298.667zM981.333-51.2c-12.8 0-21.333 4.267-29.867 12.8l-354.133 354.133c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l354.133-354.133c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM512 546.133h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667zM384 418.133c-25.6 0-42.667 17.067-42.667 42.667v256c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667z" />
<glyph unicode="&#xe9e6;" glyph-name="zoom-out" d="M384 204.8c-213.333 0-384 170.667-384 384s170.667 384 384 384 384-170.667 384-384-170.667-384-384-384zM384 887.467c-166.4 0-298.667-132.267-298.667-298.667s132.267-298.667 298.667-298.667 298.667 132.267 298.667 298.667-132.267 298.667-298.667 298.667zM981.333-51.2c-12.8 0-21.333 4.267-29.867 12.8l-354.133 354.133c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0l354.133-354.133c17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8zM512 546.133h-256c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h256c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 262 KiB

Binary file not shown.

Binary file not shown.

720
docs/css/micons/micons.css Normal file
View File

@ -0,0 +1,720 @@
@font-face {
font-family: 'icomoon';
src: url('fonts/icomoon.eot?jo2z5t');
src: url('fonts/icomoon.eot?jo2z5t#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf?jo2z5t') format('truetype'),
url('fonts/icomoon.woff?jo2z5t') format('woff'),
url('fonts/icomoon.svg?jo2z5t#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-align-center:before {
content: "\e900";
}
.icon-align-justify:before {
content: "\e901";
}
.icon-align-left:before {
content: "\e902";
}
.icon-align-right:before {
content: "\e903";
}
.icon-alt:before {
content: "\e904";
}
.icon-arrow-right:before {
content: "\e905";
}
.icon-arrow-up:before {
content: "\e906";
}
.icon-artboard:before {
content: "\e907";
}
.icon-at:before {
content: "\e908";
}
.icon-attachment:before {
content: "\e909";
}
.icon-backward:before {
content: "\e90a";
}
.icon-badge:before {
content: "\e90b";
}
.icon-bank-note:before {
content: "\e90c";
}
.icon-bar-chart:before {
content: "\e90d";
}
.icon-basket-ball:before {
content: "\e90e";
}
.icon-battery-high:before {
content: "\e90f";
}
.icon-battery-low:before {
content: "\e910";
}
.icon-bed:before {
content: "\e911";
}
.icon-bell:before {
content: "\e912";
}
.icon-bin:before {
content: "\e913";
}
.icon-block:before {
content: "\e914";
}
.icon-bluetooth:before {
content: "\e915";
}
.icon-book:before {
content: "\e916";
}
.icon-box:before {
content: "\e917";
}
.icon-brightness:before {
content: "\e918";
}
.icon-brush:before {
content: "\e919";
}
.icon-bucket:before {
content: "\e91a";
}
.icon-building:before {
content: "\e91b";
}
.icon-calendar:before {
content: "\e91c";
}
.icon-camera:before {
content: "\e91d";
}
.icon-car:before {
content: "\e91e";
}
.icon-card:before {
content: "\e91f";
}
.icon-chat:before {
content: "\e920";
}
.icon-circle-bottom-left:before {
content: "\e921";
}
.icon-circle-bottom-right:before {
content: "\e922";
}
.icon-circle-down:before {
content: "\e923";
}
.icon-circle-left:before {
content: "\e924";
}
.icon-circle-right:before {
content: "\e925";
}
.icon-circle-top-left:before {
content: "\e926";
}
.icon-circle-top-right:before {
content: "\e927";
}
.icon-circle-up:before {
content: "\e928";
}
.icon-clock:before {
content: "\e929";
}
.icon-cloud:before {
content: "\e92a";
}
.icon-cmd:before {
content: "\e92b";
}
.icon-collapse:before {
content: "\e92c";
}
.icon-comment:before {
content: "\e92d";
}
.icon-contrast:before {
content: "\e92e";
}
.icon-corner-arrow:before {
content: "\e92f";
}
.icon-cube:before {
content: "\e930";
}
.icon-cup:before {
content: "\e931";
}
.icon-cursor:before {
content: "\e932";
}
.icon-desktop:before {
content: "\e933";
}
.icon-disk:before {
content: "\e934";
}
.icon-dollar:before {
content: "\e935";
}
.icon-download:before {
content: "\e936";
}
.icon-drawer:before {
content: "\e937";
}
.icon-drop:before {
content: "\e938";
}
.icon-earth:before {
content: "\e939";
}
.icon-edit:before {
content: "\e93a";
}
.icon-education:before {
content: "\e93b";
}
.icon-eject:before {
content: "\e93c";
}
.icon-euro:before {
content: "\e93d";
}
.icon-expand:before {
content: "\e93e";
}
.icon-external:before {
content: "\e93f";
}
.icon-eye:before {
content: "\e940";
}
.icon-factory:before {
content: "\e941";
}
.icon-fast-forward:before {
content: "\e942";
}
.icon-file:before {
content: "\e943";
}
.icon-file-add:before {
content: "\e944";
}
.icon-file-remove:before {
content: "\e945";
}
.icon-files:before {
content: "\e946";
}
.icon-filter:before {
content: "\e947";
}
.icon-fire:before {
content: "\e948";
}
.icon-first-aid:before {
content: "\e949";
}
.icon-flag:before {
content: "\e94a";
}
.icon-floppy:before {
content: "\e94b";
}
.icon-folder:before {
content: "\e94c";
}
.icon-folder-add:before {
content: "\e94d";
}
.icon-folder-remove:before {
content: "\e94e";
}
.icon-fork-knife:before {
content: "\e94f";
}
.icon-form:before {
content: "\e950";
}
.icon-frame:before {
content: "\e951";
}
.icon-full-screen:before {
content: "\e952";
}
.icon-gift:before {
content: "\e953";
}
.icon-glass:before {
content: "\e954";
}
.icon-glasses:before {
content: "\e955";
}
.icon-grid:before {
content: "\e956";
}
.icon-group:before {
content: "\e957";
}
.icon-headset:before {
content: "\e958";
}
.icon-heart:before {
content: "\e959";
}
.icon-hide-sdebar-vert:before {
content: "\e95a";
}
.icon-hide-sidebar-horiz:before {
content: "\e95b";
}
.icon-home:before {
content: "\e95c";
}
.icon-id:before {
content: "\e95d";
}
.icon-image:before {
content: "\e95e";
}
.icon-info:before {
content: "\e95f";
}
.icon-invoice:before {
content: "\e960";
}
.icon-juice:before {
content: "\e961";
}
.icon-key:before {
content: "\e962";
}
.icon-lamp:before {
content: "\e963";
}
.icon-layers:before {
content: "\e964";
}
.icon-leaf:before {
content: "\e965";
}
.icon-left:before {
content: "\e966";
}
.icon-left-right:before {
content: "\e967";
}
.icon-lego-block:before {
content: "\e968";
}
.icon-life-buoy:before {
content: "\e969";
}
.icon-light-bulb:before {
content: "\e96a";
}
.icon-link:before {
content: "\e96b";
}
.icon-list:before {
content: "\e96c";
}
.icon-loading:before {
content: "\e96d";
}
.icon-logout:before {
content: "\e96e";
}
.icon-mail:before {
content: "\e96f";
}
.icon-mail-open:before {
content: "\e970";
}
.icon-map:before {
content: "\e971";
}
.icon-margin:before {
content: "\e972";
}
.icon-megaphone:before {
content: "\e973";
}
.icon-meh:before {
content: "\e974";
}
.icon-menu-circle:before {
content: "\e975";
}
.icon-menu-circle-dots:before {
content: "\e976";
}
.icon-menu-dots:before {
content: "\e977";
}
.icon-menu-lines:before {
content: "\e978";
}
.icon-microphone:before {
content: "\e979";
}
.icon-minus:before {
content: "\e97a";
}
.icon-mobile:before {
content: "\e97b";
}
.icon-mouse:before {
content: "\e97c";
}
.icon-move:before {
content: "\e97d";
}
.icon-move-diagonal:before {
content: "\e97e";
}
.icon-move-horizontal:before {
content: "\e97f";
}
.icon-move-vertical:before {
content: "\e980";
}
.icon-mug:before {
content: "\e981";
}
.icon-music:before {
content: "\e982";
}
.icon-network:before {
content: "\e983";
}
.icon-new-file:before {
content: "\e984";
}
.icon-newspaper:before {
content: "\e985";
}
.icon-next:before {
content: "\e986";
}
.icon-no:before {
content: "\e987";
}
.icon-notes:before {
content: "\e988";
}
.icon-objects:before {
content: "\e989";
}
.icon-padding:before {
content: "\e98a";
}
.icon-padlock:before {
content: "\e98b";
}
.icon-padlock-open:before {
content: "\e98c";
}
.icon-paint-brush:before {
content: "\e98d";
}
.icon-paper-plane:before {
content: "\e98e";
}
.icon-pause:before {
content: "\e98f";
}
.icon-pen:before {
content: "\e990";
}
.icon-pencil:before {
content: "\e991";
}
.icon-pencil-ruler:before {
content: "\e992";
}
.icon-phone:before {
content: "\e993";
}
.icon-pie-chart:before {
content: "\e994";
}
.icon-pin:before {
content: "\e995";
}
.icon-pin-2:before {
content: "\e996";
}
.icon-pin-point:before {
content: "\e997";
}
.icon-play:before {
content: "\e998";
}
.icon-plug:before {
content: "\e999";
}
.icon-plus:before {
content: "\e99a";
}
.icon-pound:before {
content: "\e99b";
}
.icon-power-on:before {
content: "\e99c";
}
.icon-previous:before {
content: "\e99d";
}
.icon-printer:before {
content: "\e99e";
}
.icon-projector:before {
content: "\e99f";
}
.icon-question:before {
content: "\e9a0";
}
.icon-quote:before {
content: "\e9a1";
}
.icon-record:before {
content: "\e9a2";
}
.icon-recycle:before {
content: "\e9a3";
}
.icon-redo:before {
content: "\e9a4";
}
.icon-refresh:before {
content: "\e9a5";
}
.icon-rotate-clock:before {
content: "\e9a6";
}
.icon-rotate-counter:before {
content: "\e9a7";
}
.icon-sad:before {
content: "\e9a8";
}
.icon-scales:before {
content: "\e9a9";
}
.icon-search:before {
content: "\e9aa";
}
.icon-selection:before {
content: "\e9ab";
}
.icon-settings:before {
content: "\e9ac";
}
.icon-shapes:before {
content: "\e9ad";
}
.icon-share:before {
content: "\e9ae";
}
.icon-shield:before {
content: "\e9af";
}
.icon-shopping-cart:before {
content: "\e9b0";
}
.icon-show-sidebar-horiz:before {
content: "\e9b1";
}
.icon-show-sidebar-vert:before {
content: "\e9b2";
}
.icon-shuffle:before {
content: "\e9b3";
}
.icon-sign:before {
content: "\e9b4";
}
.icon-signal:before {
content: "\e9b5";
}
.icon-skull:before {
content: "\e9b6";
}
.icon-sliders:before {
content: "\e9b7";
}
.icon-small-screen:before {
content: "\e9b8";
}
.icon-smile:before {
content: "\e9b9";
}
.icon-soap:before {
content: "\e9ba";
}
.icon-speed-o-meter:before {
content: "\e9bb";
}
.icon-star:before {
content: "\e9bc";
}
.icon-stop:before {
content: "\e9bd";
}
.icon-styling-tools:before {
content: "\e9be";
}
.icon-suitcase:before {
content: "\e9bf";
}
.icon-syringe:before {
content: "\e9c0";
}
.icon-table:before {
content: "\e9c1";
}
.icon-tag:before {
content: "\e9c2";
}
.icon-target:before {
content: "\e9c3";
}
.icon-terminal:before {
content: "\e9c4";
}
.icon-text:before {
content: "\e9c5";
}
.icon-thumbs-down:before {
content: "\e9c6";
}
.icon-thumbs-up:before {
content: "\e9c7";
}
.icon-thunderbolt:before {
content: "\e9c8";
}
.icon-tie:before {
content: "\e9c9";
}
.icon-toggles:before {
content: "\e9ca";
}
.icon-trophy:before {
content: "\e9cb";
}
.icon-truck:before {
content: "\e9cc";
}
.icon-tube:before {
content: "\e9cd";
}
.icon-tv:before {
content: "\e9ce";
}
.icon-umbrella:before {
content: "\e9cf";
}
.icon-undo:before {
content: "\e9d0";
}
.icon-up:before {
content: "\e9d1";
}
.icon-update:before {
content: "\e9d2";
}
.icon-up-down:before {
content: "\e9d3";
}
.icon-upload:before {
content: "\e9d4";
}
.icon-user:before {
content: "\e9d5";
}
.icon-user-add:before {
content: "\e9d6";
}
.icon-user-remove:before {
content: "\e9d7";
}
.icon-users:before {
content: "\e9d8";
}
.icon-video:before {
content: "\e9d9";
}
.icon-video-camera:before {
content: "\e9da";
}
.icon-volume-down:before {
content: "\e9db";
}
.icon-volume-mute:before {
content: "\e9dc";
}
.icon-volume-up:before {
content: "\e9dd";
}
.icon-wallet:before {
content: "\e9de";
}
.icon-wand:before {
content: "\e9df";
}
.icon-warning:before {
content: "\e9e0";
}
.icon-wi-fi:before {
content: "\e9e1";
}
.icon-window:before {
content: "\e9e2";
}
.icon-wrench:before {
content: "\e9e3";
}
.icon-yes:before {
content: "\e9e4";
}
.icon-zoom-in:before {
content: "\e9e5";
}
.icon-zoom-out:before {
content: "\e9e6";
}

4082
docs/css/vendor.css Normal file

File diff suppressed because it is too large Load Diff

BIN
docs/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

View File

@ -0,0 +1,42 @@
<?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>
<json>
<![CDATA[
{
"fontFamily": "lg",
"majorVersion": 1,
"minorVersion": 0,
"fontURL": "https://github.com/sachinchoolur/lightGallery",
"copyright": "sachin",
"license": "MLT",
"licenseURL": "http://opensource.org/licenses/MIT",
"version": "Version 1.0",
"fontId": "lg",
"psName": "lg",
"subFamily": "Regular",
"fullName": "lg",
"description": "Font generated by IcoMoon."
}
]]>
</json>
</metadata>
<defs>
<font id="lg" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe01a;" glyph-name="pause_circle_outline" data-tags="pause_circle_outline" d="M554 256.667v340h86v-340h-86zM512 84.667q140 0 241 101t101 241-101 241-241 101-241-101-101-241 101-241 241-101zM512 852.667q176 0 301-125t125-301-125-301-301-125-301 125-125 301 125 301 301 125zM384 256.667v340h86v-340h-86z" />
<glyph unicode="&#xe01d;" glyph-name="play_circle_outline" data-tags="play_circle_outline" d="M512 84.667q140 0 241 101t101 241-101 241-241 101-241-101-101-241 101-241 241-101zM512 852.667q176 0 301-125t125-301-125-301-301-125-301 125-125 301 125 301 301 125zM426 234.667v384l256-192z" />
<glyph unicode="&#xe033;" glyph-name="stack-2" data-tags="stack-2" d="M384 853.334h426.667q53 0 90.5-37.5t37.5-90.5v-426.667q0-53-37.5-90.5t-90.5-37.5h-426.667q-53 0-90.5 37.5t-37.5 90.5v426.667q0 53 37.5 90.5t90.5 37.5zM170.667 675.334v-547.333q0-17.667 12.5-30.167t30.167-12.5h547.333q-13.333-37.667-46.333-61.5t-74.333-23.833h-426.667q-53 0-90.5 37.5t-37.5 90.5v426.667q0 41.333 23.833 74.333t61.5 46.333zM810.667 768h-426.667q-17.667 0-30.167-12.5t-12.5-30.167v-426.667q0-17.667 12.5-30.167t30.167-12.5h426.667q17.667 0 30.167 12.5t12.5 30.167v426.667q0 17.667-12.5 30.167t-30.167 12.5z" />
<glyph unicode="&#xe070;" glyph-name="clear" data-tags="clear" d="M810 664.667l-238-238 238-238-60-60-238 238-238-238-60 60 238 238-238 238 60 60 238-238 238 238z" />
<glyph unicode="&#xe094;" glyph-name="arrow-left" data-tags="arrow-left" d="M426.667 768q17.667 0 30.167-12.5t12.5-30.167q0-18-12.667-30.333l-225.667-225.667h665q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-665l225.667-225.667q12.667-12.333 12.667-30.333 0-17.667-12.5-30.167t-30.167-12.5q-18 0-30.333 12.333l-298.667 298.667q-12.333 13-12.333 30.333t12.333 30.333l298.667 298.667q12.667 12.333 30.333 12.333z" />
<glyph unicode="&#xe095;" glyph-name="arrow-right" data-tags="arrow-right" d="M597.333 768q18 0 30.333-12.333l298.667-298.667q12.333-12.333 12.333-30.333t-12.333-30.333l-298.667-298.667q-12.333-12.333-30.333-12.333-18.333 0-30.5 12.167t-12.167 30.5q0 18 12.333 30.333l226 225.667h-665q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h665l-226 225.667q-12.333 12.333-12.333 30.333 0 18.333 12.167 30.5t30.5 12.167z" />
<glyph unicode="&#xe0f2;" glyph-name="vertical_align_bottom" data-tags="vertical_align_bottom" d="M170 128.667h684v-86h-684v86zM682 384.667l-170-172-170 172h128v426h84v-426h128z" />
<glyph unicode="&#xe1ff;" glyph-name="apps" data-tags="apps" d="M682 84.667v172h172v-172h-172zM682 340.667v172h172v-172h-172zM426 596.667v172h172v-172h-172zM682 768.667h172v-172h-172v172zM426 340.667v172h172v-172h-172zM170 340.667v172h172v-172h-172zM170 84.667v172h172v-172h-172zM426 84.667v172h172v-172h-172zM170 596.667v172h172v-172h-172z" />
<glyph unicode="&#xe20c;" glyph-name="fullscreen" data-tags="fullscreen" d="M598 724.667h212v-212h-84v128h-128v84zM726 212.667v128h84v-212h-212v84h128zM214 512.667v212h212v-84h-128v-128h-84zM298 340.667v-128h128v-84h-212v212h84z" />
<glyph unicode="&#xe20d;" glyph-name="fullscreen_exit" data-tags="fullscreen_exit" d="M682 596.667h128v-84h-212v212h84v-128zM598 128.667v212h212v-84h-128v-128h-84zM342 596.667v128h84v-212h-212v84h128zM214 256.667v84h212v-212h-84v128h-128z" />
<glyph unicode="&#xe311;" glyph-name="zoom_in" data-tags="zoom_in" d="M512 512.667h-86v-86h-42v86h-86v42h86v86h42v-86h86v-42zM406 340.667q80 0 136 56t56 136-56 136-136 56-136-56-56-136 56-136 136-56zM662 340.667l212-212-64-64-212 212v34l-12 12q-76-66-180-66-116 0-197 80t-81 196 81 197 197 81 196-81 80-197q0-104-66-180l12-12h34z" />
<glyph unicode="&#xe312;" glyph-name="zoom_out" data-tags="zoom_out" d="M298 554.667h214v-42h-214v42zM406 340.667q80 0 136 56t56 136-56 136-136 56-136-56-56-136 56-136 136-56zM662 340.667l212-212-64-64-212 212v34l-12 12q-76-66-180-66-116 0-197 80t-81 196 81 197 197 81 196-81 80-197q0-104-66-180l12-12h34z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
docs/images/arrow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
docs/images/contact-bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 967 KiB

BIN
docs/images/hero-bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

BIN
docs/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
docs/images/services-bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 KiB

BIN
docs/images/shutterbug.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 131 KiB

69
docs/inc/sendEmail.php Normal file
View File

@ -0,0 +1,69 @@
<?php
// Replace this with your own email address
$siteOwnersEmail = 'user@website.com';
if($_POST) {
$name = trim(stripslashes($_POST['contactName']));
$email = trim(stripslashes($_POST['contactEmail']));
$subject = trim(stripslashes($_POST['contactSubject']));
$contact_message = trim(stripslashes($_POST['contactMessage']));
// Check Name
if (strlen($name) < 2) {
$error['name'] = "Please enter your name.";
}
// Check Email
if (!preg_match('/^[a-z0-9&\'\.\-_\+]+@[a-z0-9\-]+\.([a-z0-9\-]+\.)*+[a-z]{2}/is', $email)) {
$error['email'] = "Please enter a valid email address.";
}
// Check Message
if (strlen($contact_message) < 15) {
$error['message'] = "Please enter your message. It should have at least 15 characters.";
}
// Subject
if ($subject == '') { $subject = "Contact Form Submission"; }
// Set Message
$message .= "Email from: " . $name . "<br />";
$message .= "Email address: " . $email . "<br />";
$message .= "Message: <br />";
$message .= $contact_message;
$message .= "<br /> ----- <br /> This email was sent from your site's contact form. <br />";
// Set From: header
$from = $name . " <" . $email . ">";
// Email Headers
$headers = "From: " . $from . "\r\n";
$headers .= "Reply-To: ". $email . "\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
if (!$error) {
ini_set("sendmail_from", $siteOwnersEmail); // for windows server
$mail = mail($siteOwnersEmail, $subject, $message, $headers);
if ($mail) { echo "OK"; }
else { echo "Something went wrong. Please try again."; }
} # end if - no validation error
else {
$response = (isset($error['name'])) ? $error['name'] . "<br /> \n" : null;
$response .= (isset($error['email'])) ? $error['email'] . "<br /> \n" : null;
$response .= (isset($error['message'])) ? $error['message'] . "<br />" : null;
echo $response;
} # end if - there was a validation error
}
?>

692
docs/index.html Normal file
View File

@ -0,0 +1,692 @@
<!DOCTYPE html>
<!--[if IE 8 ]><html class="no-js oldie ie8" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Infinity</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body id="top">
<!-- header
================================================== -->
<header>
<div class="header-logo">
<a href="index.html">Infinity</a>
</div>
<a id="header-menu-trigger" href="#0">
<span class="header-menu-text">Menu</span>
<span class="header-menu-icon"></span>
</a>
<nav id="menu-nav-wrap">
<a href="#0" class="close-button" title="close"><span>Close</span></a>
<h3>Infinity.</h3>
<ul class="nav-list">
<li class="current"><a class="smoothscroll" href="#home" title="">Home</a></li>
<li><a class="smoothscroll" href="#about" title="">About</a></li>
<li><a class="smoothscroll" href="#services" title="">Services</a></li>
<li><a class="smoothscroll" href="#portfolio" title="">Works</a></li>
<li><a class="smoothscroll" href="#contact" title="">Contact</a></li>
</ul>
<p class="sponsor-text">
Looking for an awesome and reliable webhosting? Try <a href="http://www.dreamhost.com/r.cgi?287326|STYLESHOUT">DreamHost</a>.
Get <span>$50 off</span> when you sign up with the promocode <span>styleshout</span>.
<!-- Simply type the promocode in the box labeled “Promo Code” when placing your order. -->
</p>
<ul class="header-social-list">
<li>
<a href="#"><i class="fa fa-facebook-square"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-instagram"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-behance"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-dribbble"></i></a>
</li>
</ul>
</nav> <!-- end #menu-nav-wrap -->
</header> <!-- end header -->
<!-- home
================================================== -->
<section id="home">
<div class="overlay"></div>
<div class="home-content-table">
<div class="home-content-tablecell">
<div class="row">
<div class="col-twelve">
<h3 class="animate-intro">We Are Infinity.</h3>
<h1 class="animate-intro">
We Craft Stunning <br>
Digital Experiences.
</h1>
<div class="more animate-intro">
<a class="smoothscroll button stroke" href="#about">
Learn More
</a>
</div>
</div> <!-- end col-twelve -->
</div> <!-- end row -->
</div> <!-- end home-content-tablecell -->
</div> <!-- end home-content-table -->
<ul class="home-social-list">
<li class="animate-intro">
<a href="#"><i class="fa fa-facebook-square"></i></a>
</li>
<li class="animate-intro">
<a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li class="animate-intro">
<a href="#"><i class="fa fa-instagram"></i></a>
</li>
<li class="animate-intro">
<a href="#"><i class="fa fa-behance"></i></a>
</li>
<li class="animate-intro">
<a href="#"><i class="fa fa-dribbble"></i></a>
</li>
</ul> <!-- end home-social-list -->
<div class="scrolldown">
<a href="#about" class="scroll-icon smoothscroll">
Scroll Down
<i class="fa fa-long-arrow-right" aria-hidden="true"></i>
</a>
</div>
</section> <!-- end home -->
<!-- about
================================================== -->
<section id="about">
<div class="row about-wrap">
<div class="col-full">
<div class="about-profile-bg"></div>
<div class="intro">
<h3 class="animate-this">About Us</h3>
<p class="lead animate-this"><span>Infinity</span> is a creative digital agency based in Manila, Philippines. We are composed of creative designers and experienced developers.</p>
</div>
</div> <!-- end col-full -->
</div> <!-- end about-wrap -->
</section> <!-- end about -->
<!-- about
================================================== -->
<section id="services">
<div class="overlay"></div>
<div class="gradient-overlay"></div>
<div class="row narrow section-intro with-bottom-sep animate-this">
<div class="col-full">
<h3>Services</h3>
<h1>What We Do.</h1>
<p class="lead">Lorem ipsum Elit ut consequat veniam eu nulla nulla reprehenderit reprehenderit sit velit in cupidatat ex aliquip ut cupidatat Excepteur tempor id irure sed dolore sint sunt voluptate ullamco nulla qui Duis qui culpa voluptate enim ea aute qui veniam in irure et nisi nostrud deserunt est officia minim.</p>
</div> <!-- end col-full -->
</div> <!-- end row -->
<div class="row services-content">
<div class="services-list block-1-2 block-tab-full group">
<div class="bgrid service-item animate-this">
<span class="icon"><i class="icon-paint-brush"></i></span>
<div class="service-content">
<h3 class="h05">Branding</h3>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.
</p>
</div>
</div> <!-- end bgrid -->
<div class="bgrid service-item animate-this">
<span class="icon"><i class="icon-earth"></i></span>
<div class="service-content">
<h3 class="h05">Web Design</h3>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.
</p>
</div>
</div> <!-- end bgrid -->
<div class="bgrid service-item animate-this">
<span class="icon"><i class="icon-lego-block"></i></span>
<div class="service-content">
<h3 class="h05">Web Development</h3>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.
</p>
</div>
</div> <!-- end bgrid -->
<div class="bgrid service-item animate-this">
<span class="icon"><i class="icon-megaphone"></i></span>
<div class="service-content">
<h3 class="h05">Marketing</h3>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.
</p>
</div>
</div> <!-- end bgrid -->
</div> <!-- end services-list -->
</div> <!-- end services-content -->
</section> <!-- end services -->
<!-- portfolio
================================================== -->
<section id="portfolio">
<div class="intro-wrap">
<div class="row narrow section-intro with-bottom-sep animate-this">
<div class="col-twelve">
<h3>Showcase</h3>
<h1>See Our Featured Projects.</h1>
<p class="lead">Lorem ipsum Dolor adipisicing nostrud et aute Excepteur amet commodo ea dolore irure esse Duis nulla sint fugiat cillum ullamco proident aliquip quis qui voluptate dolore veniam Ut laborum non est in officia.</p>
</div>
</div> <!-- end row section-intro -->
</div> <!-- end intro-wrap -->
<div class="row portfolio-content">
<div class="col-twelve">
<div id="folio-wrap" class="bricks-wrapper">
<div class="brick folio-item">
<div class="item-wrap animate-this" data-src="images/portfolio/gallery/g-shutterbug.jpg" data-sub-html="#01" >
<a href="#" class="overlay">
<img src="images/portfolio/shutterbug.jpg" alt="Skaterboy">
<div class="item-text">
<span class="folio-types">
Web Development
</span>
<h3 class="folio-title">Shutterbug</h3>
</div>
</a>
<a href="https://www.behance.net/" class='details-link' title="details">
<i class="icon-link"></i>
</a>
</div> <!-- end item-wrap -->
<div id="01" class='hide'>
<h4>Shutterbug</h4>
<p>Lorem ipsum Dolor deserunt labore sint officia. Magna et aute enim proident tempor sunt quis nulla voluptate fugiat velit. <a href="https://www.behance.net/">Details</a></p>
</div>
</div> <!-- end folio-item -->
<div class="brick folio-item">
<div class="item-wrap animate-this" data-src="images/portfolio/gallery/g-yellowwall.jpg" data-sub-html="#02">
<a href="#" class="overlay">
<img src="images/portfolio/yellowwall.jpg" alt="Shutterbug">
<div class="item-text">
<span class="folio-types">
Marketing
</span>
<h3 class="folio-title">Yellow Wall</h3>
</div>
</a>
<a href="https://www.behance.net/" class='details-link' title="details">
<i class="icon-link"></i>
</a>
</div> <!-- end item-wrap -->
<div id="02" class='hide'>
<h4>Yellow Wall</h4>
<p>Lorem ipsum Dolor deserunt labore sint officia. Magna et aute enim proident tempor sunt quis nulla voluptate fugiat velit. <a href="https://www.behance.net/">Details</a></p>
</div>
</div> <!-- end folio-item -->
<div class="brick folio-item">
<div class="item-wrap animate-this" data-src="images/portfolio/gallery/g-architecture.jpg" data-sub-html="#03" >
<a href="#" class="overlay">
<img src="images/portfolio/architecture.jpg" alt="Explore">
<div class="item-text">
<span class="folio-types">
Web Design
</span>
<h3 class="folio-title">Architecture</h3>
</div>
</a>
<a href="https://www.behance.net/" class='details-link' title="details">
<i class="icon-link"></i>
</a>
</div> <!-- end item-wrap -->
<div id="03" class='hide'>
<h4>Architecture</h4>
<p>Lorem ipsum Dolor deserunt labore sint officia. Magna et aute enim proident tempor sunt quis nulla voluptate fugiat velit. <a href="https://www.behance.net/">Details</a></p>
</div>
</div> <!-- end folio-item -->
<div class="brick folio-item">
<div class="item-wrap animate-this" data-src="images/portfolio/gallery/g-minimalismo.jpg" data-sub-html="#04" >
<a href="#" class="overlay">
<img src="images/portfolio/minimalismo.jpg" alt="Minimalismo">
<div class="item-text">
<span class="folio-types">
Web Design
</span>
<h3 class="folio-title">Minimalismo</h3>
</div>
</a>
<a href="https://www.behance.net/" class='details-link' title="details">
<i class="icon-link"></i>
</a>
</div> <!-- end item-wrap -->
<div id="04" class='hide'>
<h4>Minimalismo</h4>
<p>Lorem ipsum Dolor deserunt labore sint officia. Magna et aute enim proident tempor sunt quis nulla voluptate fugiat velit. <a href="https://www.behance.net/">Details</a></p>
</div>
</div> <!-- end folio-item -->
<div class="brick folio-item">
<div class="item-wrap animate-this" data-src="images/portfolio/gallery/g-skaterboy.jpg" data-sub-html="#05" >
<a href="#" class="overlay">
<img src="images/portfolio/skaterboy.jpg" alt="Bicycle">
<div class="item-text">
<span class="folio-types">
Branding
</span>
<h3 class="folio-title">Skaterboy</h3>
</div>
</a>
<a href="https://www.behance.net/" class='details-link' title="details">
<i class="icon-link"></i>
</a>
</div> <!-- end item-wrap -->
<div id="05" class='hide'>
<h4>Skaterboy</h4>
<p>Lorem ipsum Dolor deserunt labore sint officia. Magna et aute enim proident tempor sunt quis nulla voluptate fugiat velit. <a href="https://www.behance.net/">Details</a></p>
</div>
</div> <!-- end folio-item -->
<div class="brick folio-item">
<div class="item-wrap animate-this" data-src="images/portfolio/gallery/g-salad.jpg" data-sub-html="#06">
<a href="#" class="overlay">
<img src="images/portfolio/salad.jpg" alt="Salad">
<div class="item-text">
<span class="folio-types">
Branding
</span>
<h3 class="folio-title">Salad</h3>
</div>
</a>
<a href="https://www.behance.net/" class='details-link' title="details">
<i class="icon-link"></i>
</a>
</div> <!-- end item-wrap -->
<div id="06" class='hide'>
<h4>Salad</h4>
<p>Lorem ipsum Dolor deserunt labore sint officia. Magna et aute enim proident tempor sunt quis nulla voluptate fugiat velit. <a href="www.behance.net">Details</a></p>
</div>
</div> <!-- end folio-item -->
</div> <!-- end folio-wrap -->
</div> <!-- end twelve -->
</div> <!-- end portfolio-content -->
</section> <!-- end portfolio -->
<!-- Testimonials Section
================================================== -->
<section id="testimonials">
<div class="row">
<div class="col-twelve">
<h2 class="animate-this">What They Say About Us.</h2>
</div>
</div>
<div class="row flex-container">
<div id="testimonial-slider" class="flex-slider animate-this">
<ul class="slides">
<li>
<p>
Your work is going to fill a large part of your life, and the only way to be truly satisfied is
to do what you believe is great work. And the only way to do great work is to love what you do.
If you haven't found it yet, keep looking. Don't settle. As with all matters of the heart, you'll know when you find it.
</p>
<div class="testimonial-author">
<img src="images/avatars/user-02.jpg" alt="Author image">
<div class="author-info">
Steve Jobs
<span class="position">CEO, Apple.</span>
</div>
</div>
</li> <!-- end slide -->
<li>
<p>
This is Photoshop's version of Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet.
Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem
nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.
</p>
<div class="testimonial-author">
<img src="images/avatars/user-03.jpg" alt="Author image">
<div class="author-info">
John Doe
<span>CEO, ABC Corp.</span>
</div>
</div>
</li> <!-- end slide -->
</ul> <!-- end slides -->
</div> <!-- end testimonial-slider -->
</div> <!-- end flex-container -->
</section> <!-- end testimonials -->
<!-- stats
================================================== -->
<section id="clients">
<div class="row animate-this">
<div class="col-twelve">
<div class="client-lists owl-carousel">
<div><img src="images/clients/mozilla.png" alt=""></div>
<div><img src="images/clients/bower.png" alt=""></div>
<div><img src="images/clients/codepen.png" alt=""></div>
<div><img src="images/clients/envato.png" alt=""></div>
<div><img src="images/clients/firefox.png" alt=""></div>
<div><img src="images/clients/grunt.png" alt=""></div>
<div><img src="images/clients/evernote.png" alt=""></div>
<div><img src="images/clients/github.png" alt=""></div>
<div><img src="images/clients/joomla.png" alt=""></div>
<div><img src="images/clients/jQuery.png" alt=""></div>
<div><img src="images/clients/wordpress.png" alt=""></div>
</div>
</div> <!-- end col-twelve -->
</div> <!-- end row -->
</section> <!-- end clients -->
<!-- contact
================================================== -->
<section id="contact">
<div class="overlay"></div>
<div class="row narrow section-intro with-bottom-sep animate-this">
<div class="col-twelve">
<h3>Contact</h3>
<h1>Get In Touch.</h1>
<p class="lead">Quisque velit nisi, pretium ut lacinia in, elementum id enim. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi.</p>
</div>
</div> <!-- end section-intro -->
<div class="row contact-content">
<div class="col-seven tab-full animate-this">
<h5>Send Us A Message</h5>
<!-- form -->
<form name="contactForm" id="contactForm" method="post">
<div class="form-field">
<input name="contactName" type="text" id="contactName" placeholder="Name" value="" minlength="2" required="">
</div>
<div class="row">
<div class="col-six tab-full">
<div class="form-field">
<input name="contactEmail" type="email" id="contactEmail" placeholder="Email" value="" required="">
</div>
</div>
<div class="col-six tab-full">
<div class="form-field">
<input name="contactSubject" type="text" id="contactSubject" placeholder="Subject" value="">
</div>
</div>
</div>
<div class="form-field">
<textarea name="contactMessage" id="contactMessage" placeholder="message" rows="10" cols="50" required=""></textarea>
</div>
<div class="form-field">
<button class="submitform">Submit</button>
<div id="submit-loader">
<div class="text-loader">Sending...</div>
<div class="s-loader">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
</div>
</form> <!-- end form -->
<!-- contact-warning -->
<div id="message-warning"></div>
<!-- contact-success -->
<div id="message-success">
<i class="fa fa-check"></i>Your message was sent, thank you!<br>
</div>
</div> <!-- end col-seven -->
<div class="col-four tab-full contact-info end animate-this">
<h5>Contact Information</h5>
<div class="cinfo">
<h6>Where to Find Us</h6>
<p>
1600 Amphitheatre Parkway<br>
Mountain View, CA<br>
94043 US
</p>
</div> <!-- end cinfo -->
<div class="cinfo">
<h6>Email Us At</h6>
<p>
someone@infinitysite.com<br>
info@infinitysite.com
</p>
</div> <!-- end cinfo -->
<div class="cinfo">
<h6>Call Us At</h6>
<p>
Phone: (+63) 555 1212<br>
Mobile: (+63) 555 0100<br>
Fax: (+63) 555 0101
</p>
</div>
</div> <!-- end cinfo -->
</div> <!-- end row contact-content -->
</section> <!-- end contact -->
<!-- footer
================================================== -->
<footer>
<div class="footer-main">
<div class="row">
<div class="col-five tab-full footer-about">
<h4 class="h05">Infinity.</h4>
<p>Proin eget tortor risus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Nulla porttitor accumsan tincidunt. Nulla porttitor accumsan tincidunt. Proin eget tortor risus.</p>
</div> <!-- end footer-about -->
<div class="col-three tab-full footer-social">
<h4 class="h05">Follow Us.</h4>
<ul class="list-links">
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="#">Behance</a></li>
<li><a href="#">Dribble</a></li>
</ul>
</div> <!-- end footer-social -->
<div class="col-four tab-full footer-subscribe end">
<h4 class="h05">Get Notified.</h4>
<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Praesent sapien massa.</p>
<div class="subscribe-form">
<form id="mc-form" class="group" novalidate="true">
<input type="email" value="" name="dEmail" class="email" id="mc-email" placeholder="type email" required="">
<!-- <input type="submit" name="subscribe" > -->
<button><i class="icon-mail"></i></button>
<label for="mc-email" class="subscribe-message"></label>
</form>
</div>
</div> <!-- end footer-subscribe -->
</div> <!-- end row -->
</div> <!-- end footer-main -->
<div class="footer-bottom">
<div class="row">
<div class="col-twelve">
<div class="copyright">
<span>© Copyright Infinity 2016.</span>
<span>Design by <a href="http://www.styleshout.com/">styleshout</a></span>
</div>
</div>
</div>
</div> <!-- end footer-bottom -->
<div id="go-top">
<a class="smoothscroll" title="Back to Top" href="#top">
<i class="fa fa-long-arrow-up" aria-hidden="true"></i>
</a>
</div>
</footer>
<div id="preloader">
<div id="loader"></div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>

4
docs/js/jquery-2.1.3.min.js vendored Normal file

File diff suppressed because one or more lines are too long

426
docs/js/main.js Normal file
View File

@ -0,0 +1,426 @@
/* ===================================================================
* Infinity - Main JS
*
* ------------------------------------------------------------------- */
(function($) {
"use strict";
var cfg = {
defAnimation : "fadeInUp", // default css animation
scrollDuration : 800, // smoothscroll duration
mailChimpURL : 'http://facebook.us8.list-manage.com/subscribe/post?u=cdb7b577e41181934ed6a6a44&amp;id=e65110b38d'
},
$WIN = $(window);
// Add the User Agent to the <html>
// will be used for IE10 detection (Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0))
var doc = document.documentElement;
doc.setAttribute('data-useragent', navigator.userAgent);
/* Preloader
* -------------------------------------------------- */
var ssPreloader = function() {
$WIN.on('load', function() {
// force page scroll position to top at page refresh
$('html, body').animate({ scrollTop: 0 }, 'normal');
// will first fade out the loading animation
$("#loader").fadeOut("slow", function(){
// will fade out the whole DIV that covers the website.
$("#preloader").delay(300).fadeOut("slow");
});
});
};
/* FitVids
------------------------------------------------------ */
var ssFitVids = function() {
$(".fluid-video-wrapper").fitVids();
};
/* Masonry
------------------------------------------------------ */
var ssMasonryFolio = function() {
var containerBricks = $('.bricks-wrapper');
containerBricks.imagesLoaded( function() {
containerBricks.masonry( {
itemSelector: '.brick',
resize: true
});
});
};
/* Light Gallery
------------------------------------------------------- */
var ssLightGallery = function() {
$('#folio-wrap').lightGallery({
showThumbByDefault: false,
hash: false,
selector: ".item-wrap"
});
};
/* Flexslider
* ------------------------------------------------------ */
var ssFlexSlider = function() {
$WIN.on('load', function() {
$('#testimonial-slider').flexslider({
namespace: "flex-",
controlsContainer: "",
animation: 'slide',
controlNav: true,
directionNav: false,
smoothHeight: true,
slideshowSpeed: 7000,
animationSpeed: 600,
randomize: false,
touch: true,
});
});
};
/* Carousel
* ------------------------------------------------------ */
var ssOwlCarousel = function() {
$(".owl-carousel").owlCarousel({
nav: false,
loop: true,
margin: 50,
responsiveClass:true,
responsive: {
0:{
items:2,
margin: 20
},
400:{
items:3,
margin: 30
},
600:{
items:4,
margin: 40
},
1000:{
items:6
}
}
});
};
/* Menu on Scrolldown
* ------------------------------------------------------ */
var ssMenuOnScrolldown = function() {
var menuTrigger = $('#header-menu-trigger');
$WIN.on('scroll', function() {
if ($WIN.scrollTop() > 150) {
menuTrigger.addClass('opaque');
}
else {
menuTrigger.removeClass('opaque');
}
});
};
/* OffCanvas Menu
* ------------------------------------------------------ */
var ssOffCanvas = function() {
var menuTrigger = $('#header-menu-trigger'),
nav = $('#menu-nav-wrap'),
closeButton = nav.find('.close-button'),
siteBody = $('body'),
mainContents = $('section, footer');
// open-close menu by clicking on the menu icon
menuTrigger.on('click', function(e){
e.preventDefault();
menuTrigger.toggleClass('is-clicked');
siteBody.toggleClass('menu-is-open');
});
// close menu by clicking the close button
closeButton.on('click', function(e){
e.preventDefault();
menuTrigger.trigger('click');
});
// close menu clicking outside the menu itself
siteBody.on('click', function(e){
if( !$(e.target).is('#menu-nav-wrap, #header-menu-trigger, #header-menu-trigger span') ) {
menuTrigger.removeClass('is-clicked');
siteBody.removeClass('menu-is-open');
}
});
};
/* Smooth Scrolling
* ------------------------------------------------------ */
var ssSmoothScroll = function() {
$('.smoothscroll').on('click', function (e) {
var target = this.hash,
$target = $(target);
e.preventDefault();
e.stopPropagation();
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, cfg.scrollDuration, 'swing').promise().done(function () {
// check if menu is open
if ($('body').hasClass('menu-is-open')) {
$('#header-menu-trigger').trigger('click');
}
window.location.hash = target;
});
});
};
/* Placeholder Plugin Settings
* ------------------------------------------------------ */
var ssPlaceholder = function() {
$('input, textarea, select').placeholder();
};
/* Alert Boxes
------------------------------------------------------- */
var ssAlertBoxes = function() {
$('.alert-box').on('click', '.close', function() {
$(this).parent().fadeOut(500);
});
};
/* Animations
* ------------------------------------------------------- */
var ssAnimations = function() {
if (!$("html").hasClass('no-cssanimations')) {
$('.animate-this').waypoint({
handler: function(direction) {
var defAnimationEfx = cfg.defAnimation;
if ( direction === 'down' && !$(this.element).hasClass('animated')) {
$(this.element).addClass('item-animate');
setTimeout(function() {
$('body .animate-this.item-animate').each(function(ctr) {
var el = $(this),
animationEfx = el.data('animate') || null;
if (!animationEfx) {
animationEfx = defAnimationEfx;
}
setTimeout( function () {
el.addClass(animationEfx + ' animated');
el.removeClass('item-animate');
}, ctr * 30);
});
}, 100);
}
// trigger once only
this.destroy();
},
offset: '95%'
});
}
};
/* Intro Animation
* ------------------------------------------------------- */
var ssIntroAnimation = function() {
$WIN.on('load', function() {
if (!$("html").hasClass('no-cssanimations')) {
setTimeout(function(){
$('.animate-intro').each(function(ctr) {
var el = $(this),
animationEfx = el.data('animate') || null;
if (!animationEfx) {
animationEfx = cfg.defAnimation;
}
setTimeout( function () {
el.addClass(animationEfx + ' animated');
}, ctr * 300);
});
}, 100);
}
});
};
/* Contact Form
* ------------------------------------------------------ */
var ssContactForm = function() {
/* local validation */
$('#contactForm').validate({
/* submit via ajax */
submitHandler: function(form) {
var sLoader = $('#submit-loader');
$.ajax({
type: "POST",
url: "inc/sendEmail.php",
data: $(form).serialize(),
beforeSend: function() {
sLoader.fadeIn();
},
success: function(msg) {
// Message was sent
if (msg == 'OK') {
sLoader.fadeOut();
$('#message-warning').hide();
$('#contactForm').fadeOut();
$('#message-success').fadeIn();
}
// There was an error
else {
sLoader.fadeOut();
$('#message-warning').html(msg);
$('#message-warning').fadeIn();
}
},
error: function() {
sLoader.fadeOut();
$('#message-warning').html("Something went wrong. Please try again.");
$('#message-warning').fadeIn();
}
});
}
});
};
/* AjaxChimp
* ------------------------------------------------------ */
var ssAjaxChimp = function() {
$('#mc-form').ajaxChimp({
language: 'es',
url: cfg.mailChimpURL
});
// Mailchimp translation
//
// Defaults:
// 'submit': 'Submitting...',
// 0: 'We have sent you a confirmation email',
// 1: 'Please enter a value',
// 2: 'An email address must contain a single @',
// 3: 'The domain portion of the email address is invalid (the portion after the @: )',
// 4: 'The username portion of the email address is invalid (the portion before the @: )',
// 5: 'This email address looks fake or invalid. Please enter a real email address'
$.ajaxChimp.translations.es = {
'submit': 'Submitting...',
0: '<i class="fa fa-check"></i> We have sent you a confirmation email',
1: '<i class="fa fa-warning"></i> You must enter a valid e-mail address.',
2: '<i class="fa fa-warning"></i> E-mail address is not valid.',
3: '<i class="fa fa-warning"></i> E-mail address is not valid.',
4: '<i class="fa fa-warning"></i> E-mail address is not valid.',
5: '<i class="fa fa-warning"></i> E-mail address is not valid.'
}
};
/* Back to Top
* ------------------------------------------------------ */
var ssBackToTop = function() {
var pxShow = 500, // height on which the button will show
fadeInTime = 400, // how slow/fast you want the button to show
fadeOutTime = 400, // how slow/fast you want the button to hide
scrollSpeed = 300, // how slow/fast you want the button to scroll to top. can be a value, 'slow', 'normal' or 'fast'
goTopButton = $("#go-top")
// Show or hide the sticky footer button
$(window).on('scroll', function() {
if ($(window).scrollTop() >= pxShow) {
goTopButton.fadeIn(fadeInTime);
} else {
goTopButton.fadeOut(fadeOutTime);
}
});
};
/* Initialize
* ------------------------------------------------------ */
(function ssInit() {
ssPreloader();
ssFitVids();
ssMasonryFolio();
ssLightGallery();
ssFlexSlider();
ssOwlCarousel();
ssMenuOnScrolldown();
ssOffCanvas();
ssSmoothScroll();
ssPlaceholder();
ssAlertBoxes();
ssAnimations();
ssIntroAnimation();
ssContactForm();
ssAjaxChimp();
ssBackToTop();
})();
})(jQuery);

3
docs/js/modernizr.js Normal file

File diff suppressed because one or more lines are too long

2
docs/js/pace.min.js vendored Normal file

File diff suppressed because one or more lines are too long

111
docs/js/plugins.js Normal file

File diff suppressed because one or more lines are too long

127
docs/readme.txt Normal file
View File

@ -0,0 +1,127 @@
==================================================================================================
DESCRIPTION:
INFINITY is a clean, modern and well crafted responsive template designed for creatives and agencies.
The template suits the needs of creative agencies, freelancers, and even small business websites.
Infinity is mobile and retina/hi-dpi ready which means your site will look awesome, crisp and sharp
on any screen resolutions and devices. Also, the code behind infinity is clean and well organized
which makes the template very easy to customize.
==================================================================================================
LICENSE:
INFINITY is released under the Creative Commons Attribution 3.0 License
(http://creativecommons.org/licenses/by/3.0/). This means that you are free:
to Share - to copy, distribute, display, and perform the work
to Remix - to make derivative works
to make commercial use of the work
Under the following conditions:
Attribution - You must attribute the work in the manner specified by the
author or licensor (but not in any way that suggests that they endorse you
or your use of the work).
For any reuse or distribution, you must make clear to others the license
terms of this work
Any of these conditions can be waived if you get permission from the
copyright holder
Attribution:
You must include a credit link to our website(http://www.Styleshout.com) somewhere on
your site. We prefer the footer credit that comes with the template but you are still
free to move it somewhere else.
-----------------------------------------------------------------------------------------------------
REMOVING THE LINK:
We understand that there are situations where you want to use the template without the
crediting obligation. If that's your case, you can always send us a
credit removal fee of 10 USD through Paypal. This will allow you to use the
template attribution/credit link free on ONE DOMAIN name.
You can send your payments through Paypal to this address: ealigam@gmail.com
If possible, kindly send us the site's url where the template is being used.
Also, keep your Paypal receipt as proof of payment and your good to go.
------------------------------------------------------------------------------------------------------
SUPPORT:
Since INIFINITY is distributed for free, support is not offered. INFINITY is coded according
to current web standards and we did our best to make the template easy to use and modify.
If you have minimum web development experience, you can easily modify the template.
However, If you're still new to HTML and CSS, I suggest that you visit the
following tutorials:
- http://tutsplus.com/course/30-days-to-learn-html-and-css/
- http://learn.shayhowe.com/html-css/
These will teach you the essentials of HTML and CSS. In addition, if you want to include
jQuery in your skill-set, you can also check out these tutorials:
- http://code.tutsplus.com/courses/30-days-to-learn-jquery
- http://try.jquery.com/
------------------------------------------------------------------------------------------------------
GET THE LATEST VERSION:
We update our templates on a regular basis so to make sure that you have the latest version,
always download the template files directly on our website(http://www.styleshout.com/)
-------------------------------------------------------------------------------------------------------
SOURCES AND CREDITS:
I've used the following resources as listed.
Fonts:
- Montserrat Font (https://www.google.com/fonts/specimen/Montserrat)
- Libre Baskerville Font (https://fonts.google.com/specimen/Libre+Baskerville)
Icons:
- Font Awesome (http://fortawesome.github.io/Font-Awesome/)
- Micons Free Icons (http://geticonjar.com/freebies/231-micons/)
- Webfont generated by ICOMOON (https://icomoon.io/)
Stock Photos and Graphics:
- Pexels.com (https://www.pexels.com/)
- Picjumbo.com (https://picjumbo.com/)
- RawPixels.com (https://www.rawpixel.com/)
Javascript Files:
- JQuery (http://jquery.com/)
- Modernizr (http://modernizr.com/)
- Waypoints (http://imakewebthings.com/jquery-waypoints/)
- jQuery Placeholder (https://github.com/mathiasbynens/jquery-placeholder)
- FitVids (http://fitvidsjs.com/)
- pace js (http://github.hubspot.com/pace/)
- LightGallery (http://sachinchoolur.github.io/lightGallery/)
- Masonry (http://masonry.desandro.com/)
- ImagesLoaded (http://masonry.desandro.com/)
- jQueryValidation (https://jqueryvalidation.org/)
- ajaxChimp (https://github.com/scdoshi/jquery-ajaxchimp)
-------------------------------------------------------------------------------------------------------

666
docs/styles.html Normal file
View File

@ -0,0 +1,666 @@
<!DOCTYPE html>
<!--[if IE 8 ]><html class="no-js oldie ie8" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Style Guide - Infinity</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<style type="text/css" media="screen">
#styles {
background: white;
padding-top: 12rem;
padding-bottom: 12rem;
}
</style>
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body id="top">
<!-- header
================================================== -->
<header>
<div class="header-logo">
<a href="index.html">Infinity</a>
</div>
<a id="header-menu-trigger" href="#0">
<span class="header-menu-text">Menu</span>
<span class="header-menu-icon"></span>
</a>
<nav id="menu-nav-wrap">
<a href="#0" class="close-button" title="close"><span>Close</span></a>
<h3>Infinity.</h3>
<ul class="nav-list">
<li class="current"><a href="index.html" title="">Home</a></li>
<li><a href="index.html#about" title="">About</a></li>
<li><a href="index.html#services" title="">Services</a></li>
<li><a href="index.html#portfolio" title="">Works</a></li>
<li><a href="index.html#contact" title="">Contact</a></li>
</ul>
<p class="sponsor-text">
Looking for an awesome and reliable webhosting? Try <a href="http://www.dreamhost.com/r.cgi?287326|STYLESHOUT">DreamHost</a>.
Get <span>$50 off</span> when you sign up with the promocode <span>styleshout</span>.
<!-- Simply type the promocode in the box labeled “Promo Code” when placing your order. -->
</p>
<ul class="header-social-list">
<li>
<a href="#"><i class="fa fa-facebook-square"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-instagram"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-behance"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-dribbble"></i></a>
</li>
</ul>
</nav> <!-- end #menu-nav-wrap -->
</header> <!-- end header -->
<!-- home
================================================== -->
<section id="home">
<div class="overlay"></div>
<div class="home-content-table">
<div class="home-content-tablecell">
<div class="row">
<div class="col-twelve">
<h3 class="animate-intro">We Are Infinity.</h3>
<h1 class="animate-intro">
We Craft Stunning <br>
Digital Experiences.
</h1>
<div class="more animate-intro">
<a class="smoothscroll button stroke" href="#styles">
Learn More
</a>
</div>
</div> <!-- end col-twelve -->
</div> <!-- end row -->
</div> <!-- end home-content-tablecell -->
</div> <!-- end home-content-table -->
<ul class="home-social-list">
<li class="animate-intro">
<a href="#"><i class="fa fa-facebook-square"></i></a>
</li>
<li class="animate-intro">
<a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li class="animate-intro">
<a href="#"><i class="fa fa-instagram"></i></a>
</li>
<li class="animate-intro">
<a href="#"><i class="fa fa-behance"></i></a>
</li>
<li class="animate-intro">
<a href="#"><i class="fa fa-dribbble"></i></a>
</li>
</ul> <!-- end home-social-list -->
<div class="scrolldown">
<a href="#about" class="scroll-icon smoothscroll">
Scroll Down
<i class="fa fa-long-arrow-right" aria-hidden="true"></i>
</a>
</div>
</section> <!-- end home -->
<!-- styles
================================================== -->
<section id="styles">
<div class="row narrow add-bottom text-center">
<div class="col-twelve tab-full">
<h1>This is the style page.</h1>
<p class="lead">Lorem ipsum Officia elit ad tempor dolore est ex incididunt incididunt occaecat culpa deserunt sunt labore in cillum ullamco magna in Excepteur consequat in reprehenderit proident mollit incididunt officia commodo.
Duis ea officia sed dolor pariatur enim dolore dolore quis incididunt nulla exercitation commodo veniam et ea incididunt.</p>
</div>
</div>
<div class="row">
<div class="col-six tab-full">
<h3>Paragraph and Image</h3>
<p><a href="#"><img width="120" height="120" class="pull-left" alt="sample-image" src="images/sample-image.jpg"></a>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec libero. Suspendisse bibendum.Cras id urna. Morbi tincidunt, orci ac convallis aliquam, lectus turpis varius lorem, eu posuere nunc justo tempus leo. Donec mattis, purus nec placerat bibendum, dui pede condimentum odio, ac blandit ante orci ut diam. Cras fringilla magna. Phasellus suscipit, leo a pharetra condimentum, lorem tellus eleifend magna, eget fringilla velit magna id neque posuere nunc justo tempus leo. </p>
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec libero. Suspendisse bibendum. Cras id urna. Morbi tincidunt, orci ac convallis aliquam, lectus turpis varius lorem, eu posuere nunc justo tempus leo. Donec mattis, purus nec placerat bibendum, dui pede condimentumodio, ac blandit ante orci ut diam.
</p>
<p>A <a href="#">link</a>,
<abbr title="this really isn't a very good description">abbrebation</abbr>,
<strong>strong text</strong>,
<em>em text</em>,
<del>deleted text</del>, and
<mark>this is a mark text.</mark>
<code>.code</code>
</p>
</div>
<div class="col-six tab-full">
<h3>Drop Caps</h3>
<p class="drop-cap">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia,
there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the
Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. Morbi tincidunt, orci ac convallis aliquam, lectus turpis varius lorem, eu posuere nunc justo tempus leo. Donec mattis, purus nec placerat bibendum, dui pede condimentum odio, ac blandit ante orci ut diam. Cras fringilla magna. Phasellus suscipit, leo a pharetra condimentum, lorem tellus eleifend magna, eget fringilla velit magna id neque.
</p>
<h3>Small Print</h3>
<p>Buy one widget, get one free!
<small>(While supplies last. Offer expires on the vernal equinox. Not valid in Ohio.)</small>
</p>
</div>
</div> <!-- end row -->
<div class="row">
<div class="col-six tab-full">
<h3>Pull Quotes</h3>
<aside class="pull-quote">
<blockquote>
<p>It is a paradisematic country, in which roasted parts of
sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind
texts it is an almost unorthographic life One day however a small line of blind text by the name
of Lorem Ipsum decided to leave for the far World of Grammar.</p>
</blockquote>
</aside>
</div>
<div class="col-six tab-full">
<h3>Block Quotes</h3>
<blockquote cite="http://where-i-got-my-info-from.com">
<p>Your work is going to fill a large part of your life, and the only way to be truly satisfied is
to do what you believe is great work. And the only way to do great work is to love what you do.
If you haven't found it yet, keep looking. Don't settle. As with all matters of the heart, you'll know when you find it.
</p>
<cite>
<a href="#">Steve Jobs</a>
</cite>
</blockquote>
<blockquote>
<p>Good design is as little design as possible.</p>
<cite>Dieter Rams</cite>
</blockquote>
</div>
</div> <!-- end row -->
<div class="row half-bottom">
<div class="col-six tab-full">
<h3>Example Lists</h3>
<ol>
<li>Here is an example</li>
<li>of an ordered list.</li>
<li>A parent list item.
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
</li>
<li>A list item.</li>
</ol>
<ul class="disc">
<li>Here is an example</li>
<li>of an unordered list.</li>
</ul>
<h3>Definition Lists</h3>
<h5>a) Multi-line Definitions (default)</h5>
<dl>
<dt><strong>This is a term</strong></dt>
<dd>this is the definition of that term, which both live in a <code>dl</code>.</dd>
<dt><strong>Another Term</strong></dt>
<dd>And it gets a definition too, which is this line</dd>
<dd>This is a 2<sup>nd</sup> definition for a single term. A <code>dt</code> may be followed by multiple <code>dd</code>s.</dd>
</dl>
</div>
<div class="col-six tab-full">
<h3>Headers</h3>
<h1>H1 Heading</h1>
<h2>H2 Heading</h2>
<h3>H3 Heading</h3>
<h4>H4 Heading</h4>
<h5>H5 Heading</h5>
<h6>H6 Heading</h6>
<br>
<h3>Buttons</h3>
<p>
<a class="button button-primary full-width" href="#">Primary Button</a>
<a class="button full-width" href="#">Default Button</a>
</p>
</div>
</div> <!-- end row -->
<div class="row half-bottom">
<div class="col-twelve">
<h3>Stats Tabs</h3>
<ul class="stats-tabs">
<li><a href="#">1,234 <em>Sasuke</em></a></li>
<li><a href="#">567 <em>Hinata</em></a></li>
<li><a href="#">23,456 <em>Naruto</em></a></li>
<li><a href="#">3,456 <em>Kiba</em></a></li>
<li><a href="#">456 <em>Shikamaru</em></a></li>
<li><a href="#">26 <em>Sakura</em></a></li>
</ul>
</div>
</div> <!-- end row -->
<div class="row half-bottom">
<div class="col-six tab-full">
<h3>Responsive Image</h3>
<p><img src="images/shutterbug.jpg"></p>
</div>
<div class="col-six tab-full">
<h3>Responsive video</h3>
<div class="fluid-video-wrapper">
<iframe src="http://player.vimeo.com/video/14592941?title=0&amp;byline=0&amp;portrait=0&amp;color=F64B39" width="500" height="281" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
</div> <!-- end row -->
<div class="row add-bottom">
<div class="col-twelve">
<h3>Tables</h3>
<p>Be sure to use properly formed table markup with <code>&lt;thead&gt;</code> and <code>&lt;tbody&gt;</code> when building a <code>table</code>.</p>
<div class="table-responsive">
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Sex</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>Naruto Uzumaki</td>
<td>16</td>
<td>Male</td>
<td>Konoha</td>
</tr>
<tr>
<td>Sakura Haruno</td>
<td>16</td>
<td>Female</td>
<td>Konoha</td>
</tr>
</tbody>
</table>
</div>
</div>
</div> <!-- end row -->
<div class="row">
<div class="col-six tab-full">
<h3>Form Styles</h3>
<form>
<div>
<label for="sampleInput">Your email</label>
<input class="full-width" type="email" placeholder="test@mailbox.com" id="sampleInput">
</div>
<div>
<label for="sampleRecipientInput">Reason for contacting</label>
<div class="ss-custom-select">
<select class="full-width" id="sampleRecipientInput">
<option value="Option 1">Questions</option>
<option value="Option 2">Report</option>
<option value="Option 3">Others</option>
</select>
</div>
</div>
<label for="exampleMessage">Message</label>
<textarea class="full-width" placeholder="Your message" id="exampleMessage"></textarea>
<label class="add-bottom">
<input type="checkbox">
<span class="label-text">Send a copy to yourself</span>
</label>
<input class="button-primary" type="submit" value="Submit">
</form>
</div>
<div class="col-six tab-full">
<h3>Alert Boxes</h3>
<br>
<div class="alert-box ss-error hideit">
<p>Error Message. Your Message Goes Here.</p>
<i class="fa fa-times close"></i>
</div><!-- /error -->
<div class="alert-box ss-success hideit">
<p>Success Message. Your Message Goes Here.</p>
<i class="fa fa-times close"></i>
</div><!-- /success -->
<div class="alert-box ss-info hideit">
<p>Info Message. Your Message Goes Here.</p>
<i class="fa fa-times close"></i>
</div><!-- /info -->
<div class="alert-box ss-notice hideit">
<p>Notice Message. Your Message Goes Here.</p>
<i class="fa fa-times close"></i>
</div><!-- /notice -->
</div>
</div> <!-- end row -->
</section> <!-- end styles -->
<!-- contact
================================================== -->
<section id="contact">
<div class="overlay"></div>
<div class="row narrow section-intro with-bottom-sep animate-this">
<div class="col-twelve">
<h3>Contact</h3>
<h1>Get In Touch.</h1>
<p class="lead">Quisque velit nisi, pretium ut lacinia in, elementum id enim. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi.</p>
</div>
</div> <!-- end section-intro -->
<div class="row contact-content">
<div class="col-seven tab-full animate-this">
<h5>Send Us A Message</h5>
<!-- form -->
<form name="contactForm" id="contactForm" method="post">
<div class="form-field">
<input name="contactName" type="text" id="contactName" placeholder="Name" value="" minlength="2" required="">
</div>
<div class="row">
<div class="col-six tab-full">
<div class="form-field">
<input name="contactEmail" type="email" id="contactEmail" placeholder="Email" value="" required="">
</div>
</div>
<div class="col-six tab-full">
<div class="form-field">
<input name="contactSubject" type="text" id="contactSubject" placeholder="Subject" value="">
</div>
</div>
</div>
<div class="form-field">
<textarea name="contactMessage" id="contactMessage" placeholder="message" rows="10" cols="50" required=""></textarea>
</div>
<div class="form-field">
<button class="submitform">Submit</button>
<div id="submit-loader">
<div class="text-loader">Sending...</div>
<div class="s-loader">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
</div>
</form> <!-- end form -->
<!-- contact-warning -->
<div id="message-warning"></div>
<!-- contact-success -->
<div id="message-success">
<i class="fa fa-check"></i>Your message was sent, thank you!<br>
</div>
</div> <!-- end col-seven -->
<div class="col-four tab-full contact-info end animate-this">
<h5>Contact Information</h5>
<div class="cinfo">
<h6>Where to Find Us</h6>
<p>
1600 Amphitheatre Parkway<br>
Mountain View, CA<br>
94043 US
</p>
</div> <!-- end cinfo -->
<div class="cinfo">
<h6>Email Us At</h6>
<p>
someone@infinitysite.com<br>
info@infinitysite.com
</p>
</div> <!-- end cinfo -->
<div class="cinfo">
<h6>Call Us At</h6>
<p>
Phone: (+63) 555 1212<br>
Mobile: (+63) 555 0100<br>
Fax: (+63) 555 0101
</p>
</div>
</div> <!-- end cinfo -->
</div> <!-- end row contact-content -->
</section> <!-- end contact -->
<!-- footer
================================================== -->
<footer>
<div class="footer-main">
<div class="row">
<div class="col-five tab-full footer-about">
<h4 class="h05">Infinity.</h4>
<p>Proin eget tortor risus. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Nulla porttitor accumsan tincidunt. Nulla porttitor accumsan tincidunt. Proin eget tortor risus.</p>
</div> <!-- end footer-about -->
<div class="col-three tab-full footer-social">
<h4 class="h05">Follow Us.</h4>
<ul class="list-links">
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="#">Behance</a></li>
<li><a href="#">Dribble</a></li>
</ul>
</div> <!-- end footer-social -->
<div class="col-four tab-full footer-subscribe end">
<h4 class="h05">Get Notified.</h4>
<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Praesent sapien massa.</p>
<div class="subscribe-form">
<form id="mc-form" class="group" novalidate="true">
<input type="email" value="" name="dEmail" class="email" id="mc-email" placeholder="type email" required="">
<!-- <input type="submit" name="subscribe" > -->
<button><i class="icon-mail"></i></button>
<label for="mc-email" class="subscribe-message"></label>
</form>
</div>
</div> <!-- end footer-subscribe -->
</div> <!-- end row -->
</div> <!-- end footer-main -->
<div class="footer-bottom">
<div class="row">
<div class="col-twelve">
<div class="copyright">
<span>© Copyright Infinity 2016.</span>
<span>Design by <a href="http://www.styleshout.com/">styleshout</a></span>
</div>
</div>
</div>
</div> <!-- end footer-bottom -->
<div id="go-top">
<a class="smoothscroll" title="Back to Top" href="#top">
<i class="fa fa-long-arrow-up" aria-hidden="true"></i>
</a>
</div>
</footer>
<div id="preloader">
<div id="loader"></div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>