feat: add all editors (#1098)

This commit is contained in:
Johnny A
2022-06-14 14:01:30 -04:00
committed by GitHub
parent 9f9f9abab9
commit 1246596cd0
1107 changed files with 34799 additions and 174 deletions

View File

@@ -0,0 +1,18 @@
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"env": {
"build": {
"presets": [
"minify"
]
}
},
"plugins": [
// If you want to use Babel runtime, uncomment the following line
// "@babel/plugin-transform-runtime",
"@babel/plugin-proposal-class-properties"
]
}

View File

@@ -0,0 +1,4 @@
node_modules/**
dist/**
webpack.*
vendor/**

View File

@@ -0,0 +1,29 @@
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"@standardnotes/eslint-config-extensions",
"plugin:react/recommended"
],
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 11,
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"settings": {
"react": {
"version": "detect"
}
},
"globals": {
"$": true
}
}

View File

@@ -0,0 +1,51 @@
# Logs
logs
*.log
npm-debug.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# nyc test coverage
.nyc_output
# Optional npm cache directory
.npm
# Optional REPL history
.node_repl_history
# node-waf configuration
.lock-wscript
# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
## building output directory
build
# OSX
.DS_Store
# Packaged and compiled files
.eslintcache
# Env configuration
.env
# Editor
.idea
dist

View File

@@ -0,0 +1,21 @@
# Secure Spreadsheets
<div align="center">
[![GitHub issues and feature requests](https://img.shields.io/github/issues/standardnotes/secure-spreadsheets.svg)](https://github.com/standardnotes/secure-spreadsheets/issues/)
[![Slack](https://img.shields.io/badge/slack-standardnotes-CC2B5E.svg?style=flat&logo=slack)](https://standardnotes.org/slack)
[![GitHub Stars](https://img.shields.io/github/stars/standardnotes/secure-spreadsheets?style=social)](https://github.com/standardnotes/secure-spreadsheets)
</div>
## Introduction
Secure Spreadsheets is a [derived editor](https://standardnotes.org/help/77/what-are-editors) for [Standard Notes](https://standardnotes.org), a free, [open-source](https://standardnotes.org/knowledge/5/what-is-free-and-open-source-software), and [end-to-end encrypted](https://standardnotes.org/knowledge/2/what-is-end-to-end-encryption) notes app. It is derived from https://github.com/telerik/kendo-ui-core.
A demo of the Secure Spreadsheets editor is available at https://standardnotes.org/demo. To use Secure Spreadsheets with Standard Notes, please sign up for [Standard Notes Extended](https://standardnotes.org/extensions) and install it by following the instructions described [here](https://standardnotes.org/help/29/how-do-i-install-extensions-once-i-ve-signed-up-for-extended).
## Development
1. Run `npm install` to install the dependencies.
2. Run `npm run start` to start the development server. Then visit http://localhost:8080/.
3. Run `npm run build` to build the editor with Webpack.

View File

@@ -0,0 +1,182 @@
import React from 'react';
import ComponentRelay from '@standardnotes/component-relay';
export default class Home extends React.Component {
constructor(props) {
super(props);
this.state = {};
this.connectToBridge();
this.numRows = 75;
this.numColumns = 26;
this.sheetSizeUpdated = false;
}
componentDidMount() {
$(function() {
$('#spreadsheet').kendoSpreadsheet({
rows: this.numRows,
columns: this.numColumns,
change: this.onChange,
changeFormat: this.onChange, // triggered when cell structure changes (currency, date, etc)
excelImport: (event) => {
// Excel import functionality has been disabled completely.
// We'll keep this code around below incase we enable it again in the future.
if (!confirm('Importing will completely overwrite any existing data. Are you sure you want to continue?')) {
event.preventDefault();
return;
}
if (!confirm('Note that importing from Excel may cause very large file sizes within Standard Notes, which may affect performance. You may continue with import, but if you notice performance issues, it is recommended you manually import data instead.')) {
event.preventDefault();
return;
}
event.promise.done(() => {
console.log('Import complete');
this.onChange();
});
},
insertSheet: this.onChange,
removeSheet: this.onChange,
renameSheet: this.onChange,
unhideColumn: this.onChange,
unhideRow: this.onChange,
hideColumn: this.onChange,
hideRow: this.onChange,
deleteColumn: this.onChange,
deleteRow: this.onChange,
insertColumn: (_event) => {
this.numColumns++;
this.sheetSizeUpdated = true;
this.onChange();
},
insertRow: () => {
this.numRows++;
this.sheetSizeUpdated = true;
this.onChange();
},
render: () => {
if (!this.sheetSizeUpdated) {
return;
}
/**
* To update the sheet size when a new column/row is inserted, we need to:
* 1. Rebuild the spreadsheet with the current data
* 2. Immediately save the note
*/
this.sheetSizeUpdated = false;
this.getSpreadsheet().fromJSON(this.getJSON());
this.onChange();
}
});
this.reloadSpreadsheetContent();
$('.k-item, .k-button').click(() => {
setTimeout(() => {
this.onChange();
}, 10);
});
// remove import option
$('.k-upload-button').remove();
}.bind(this));
}
getSpreadsheet() {
return $('#spreadsheet').getKendoSpreadsheet();
}
onChange = () => {
if (!this.note) {
return;
}
this.saveSpreadsheet();
}
saveSpreadsheet() {
// Be sure to capture this object as a variable, as this.note may be reassigned in `streamContextItem`, so by the time
// you modify it in the presave block, it may not be the same object anymore, so the presave values will not be applied to
// the right object, and it will save incorrectly.
const note = this.note;
this.componentRelay.saveItemWithPresave(note, () => {
note.content.preview_html = null;
note.content.preview_plain = 'Created with Secure Spreadsheets';
const json = this.getJSON();
const content = JSON.stringify(json);
note.content.text = content;
});
}
getJSON() {
const json = this.getSpreadsheet().toJSON();
json.rows = this.numRows;
json.columns = this.numColumns;
return json;
}
connectToBridge() {
this.componentRelay = new ComponentRelay({
targetWindow: window,
onReady: () => {
const { platform } = this.componentRelay;
if (platform) {
document.body.classList.add(platform);
}
}
});
this.componentRelay.streamContextItem((note) => {
this.note = note;
// Only update UI on non-metadata updates.
if (note.isMetadataUpdate) {
return;
}
this.reloadSpreadsheetContent();
});
}
reloadSpreadsheetContent() {
if (!this.note) {
return;
}
const text = this.note.content.text;
/**
* If the note's text is empty, we want to save the note
* so that the empty string is replaced with a JSON string
* that is readable by the editor.
*/
if (text.length === 0) {
this.saveSpreadsheet();
}
const json = JSON.parse(text);
if (json.rows) {
this.numRows = json.rows;
}
if (json.columns) {
this.numColumns = json.columns;
}
this.getSpreadsheet().fromJSON(json);
this.getSpreadsheet().refresh();
}
render() {
return (
<div></div>
);
}
}

View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="dist.css">
<link href="./vendor/styles/examples-offline.css" rel="stylesheet">
<!-- Default theme -->
<link href="./vendor/styles/kendo.common-fiori.min.css" rel="stylesheet">
<link href="./vendor/styles/kendo.fiori.min.css" rel="stylesheet">
<link href="./vendor/styles/kendo.fiori.mobile.min.css" rel="stylesheet">
<link href="./vendor/styles/kendo.rtl.min.css" rel="stylesheet">
<script src="./vendor/js/jquery.min.js"></script>
<script src="./vendor/js/jszip.min.js"></script>
<script src="./vendor/js/kendo.spreadsheet.min.js"></script>
<title>Standard Sheets</title>
</head>
<body>
<script type="text/javascript" src="dist.js"></script>
<div id="spreadsheet"></div>
</body>
</html>

View File

@@ -0,0 +1,22 @@
import React from 'react';
import ReactDOM from 'react-dom';
import Home from './components/Home';
class App extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div className="sn-component">
<Home />
</div>
);
}
}
ReactDOM.render(
<App />,
document.body.appendChild(document.createElement('div'))
);

View File

@@ -0,0 +1,235 @@
@import '~stylekit';
body, html {
font-family: sans-serif;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
overflow: hidden;
overflow-y: hidden !important;
}
#spreadsheet {
border: none;
width: 100%;
height: 100%;
color: var(--sn-stylekit-editor-foreground-color);
background-color: var(--sn-stylekit-editor-background-color);
}
.k-spreadsheet-column-header, .k-spreadsheet-row-header, .k-spreadsheet-top-corner {
color: var(--sn-stylekit-editor-foreground-color) !important;
background-color: var(--sn-stylekit-contrast-background-color) !important;
}
.k-spreadsheet .k-spreadsheet-action-bar {
color: var(--sn-stylekit-editor-foreground-color) !important;
background-color: var(--sn-stylekit-contrast-background-color) !important;
border-color: var(--sn-stylekit-border-color) !important;
border-top-width: 1px !important;
}
.k-spreadsheet .k-spreadsheet-formula-input {
color: var(--sn-stylekit-editor-foreground-color) !important;
background-color: var(--sn-stylekit-editor-background-color) !important;
}
.k-spreadsheet .k-spreadsheet-name-editor .k-select {
background-color: var(--sn-stylekit-contrast-background-color) !important;
}
.k-block, .k-content, .k-dropdown .k-input, .k-popup, .k-toolbar, .k-widget {
color: var(--sn-stylekit-editor-foreground-color) !important;
background-color: var(--sn-stylekit-editor-background-color) !important;
}
.k-spreadsheet-filter-menu .k-spreadsheet-value-treeview-wrapper {
color: var(--sn-stylekit-editor-foreground-color) !important;
background-color: var(--sn-stylekit-contrast-background-color) !important;
}
.k-grid-header .k-header>.k-link, .k-header, .k-treemap-title {
color: var(--sn-stylekit-editor-foreground-color) !important;
}
.k-dropdown .k-input, .k-dropdown .k-state-focused .k-input, .k-menu .k-popup {
color: var(--sn-stylekit-editor-foreground-color) !important;
}
.k-panelbar>li.k-state-default>.k-link, .k-tabstrip-items .k-state-default .k-link {
color: var(--sn-stylekit-editor-foreground-color) !important;
}
.k-input, .k-multiselect-wrap, .k-textbox>input, input.k-textbox, input.k-textbox:hover, textarea.k-textbox, textarea.k-textbox:hover {
color: var(--sn-stylekit-editor-foreground-color) !important;
}
.k-spreadsheet-active-cell {
background-color: var(--sn-stylekit-contrast-background-color) !important;
}
.k-spreadsheet-active-cell.k-single {
color: var(--sn-stylekit-editor-foreground-color) !important;
background-color: var(--sn-stylekit-contrast-background-color) !important;
}
.k-spreadsheet .k-spreadsheet-action-bar .k-spreadsheet-name-editor {
border-color: var(--sn-stylekit-border-color) !important;
}
.k-autocomplete .k-input, .k-autocomplete.k-state-focused .k-input, .k-dropdown-wrap .k-input, .k-dropdown-wrap.k-state-focused .k-input, .k-numeric-wrap.k-state-focused .k-input, .k-picker-wrap.k-state-focused .k-input, .k-textbox>input {
border-color: var(--sn-stylekit-border-color) !important;
}
.k-autocomplete, .k-block, .k-button-group .k-tool, .k-calendar th, .k-content, .k-dateinput.k-state-disabled>.k-textbox:hover, .k-dropdown-wrap, .k-dropzone-active, .k-editable-area, .k-editor-dialog .k-tabstrip-items, .k-filter-row>th, .k-footer-template td, .k-grid td, .k-grid td.k-state-selected, .k-grid-content-locked, .k-grid-footer, .k-grid-footer-locked, .k-grid-footer-wrap, .k-grid-header, .k-grid-header-locked, .k-grid-header-wrap, .k-group, .k-group-footer td, .k-grouping-header, .k-grouping-header .k-group-indicator, .k-header, .k-input, .k-maskedtextbox.k-state-disabled>.k-textbox:hover, .k-pager-refresh, .k-pager-wrap, .k-pager-wrap .k-link, .k-panel>.k-item>.k-link, .k-panelbar .k-content, .k-panelbar .k-panel, .k-panelbar>.k-item>.k-link, .k-popup.k-align .k-list .k-item:last-child, .k-separator, .k-slider-track, .k-splitbar, .k-state-default, .k-state-default .k-select, .k-state-disabled, .k-textbox, .k-textbox>input, .k-tiles, .k-toolbar, .k-tooltip, .k-treemap-tile, .k-upload-files, .k-widget {
border-color: var(--sn-stylekit-border-color) !important;
}
.k-input, .k-multiselect-wrap, .k-textbox>input, input.k-textbox, input.k-textbox:hover, textarea.k-textbox, textarea.k-textbox:hover {
color: var(--sn-stylekit-editor-foreground-color) !important;
background-color: var(--sn-stylekit-contrast-background-color) !important;
}
.k-spreadsheet-pane .k-spreadsheet-haxis, .k-spreadsheet-pane .k-spreadsheet-vaxis {
border-color: var(--sn-stylekit-border-color) !important;
}
.k-spreadsheet-pane .k-spreadsheet-column-header, .k-spreadsheet-pane .k-spreadsheet-row-header {
border-color: var(--sn-stylekit-border-color) !important;
}
.k-spreadsheet-toolbar>.k-separator {
border-color: var(--sn-stylekit-border-color) !important;
}
.k-spreadsheet-filter-menu .k-details {
border-color: var(--sn-stylekit-border-color) !important;
}
.k-list-container {
color: var(--sn-stylekit-editor-foreground-color) !important;
background-color: var(--sn-stylekit-contrast-background-color) !important;
border-color: var(--sn-stylekit-border-color) !important;
.k-button {
color: var(--sn-stylekit-editor-foreground-color) !important;
}
}
.k-spreadsheet-popup {
.k-button {
color: var(--sn-stylekit-editor-foreground-color) !important;
}
}
.k-calendar .k-header, .k-header.k-scheduler-toolbar, .k-menu.k-header, .k-scheduler-footer>.k-header, .k-tabstrip .k-tabstrip-items .k-item, .k-tabstrip.k-header {
background-color: var(--sn-stylekit-contrast-background-color) !important;
border-color: transparent !important;
}
.k-gantt-toolbar .k-state-default, .k-grid .k-grouping-header, .k-grid-header, .k-grid-header-wrap, .k-grouping-header .k-group-indicator, .k-header, .k-pager-wrap, .k-pager-wrap .k-link, .k-pager-wrap .k-textbox {
border-color: var(--sn-stylekit-border-color) !important;
}
.k-spreadsheet .k-spreadsheet-action-bar .k-spreadsheet-formula-bar::before {
border-color: var(--sn-stylekit-border-color) !important;
}
.k-active-filter, .k-state-active, .k-state-active:hover {
border-color: var(--sn-stylekit-border-color) !important;
}
.k-tabstrip .k-tabstrip-items .k-state-active {
border-color: var(--sn-stylekit-info-color) !important;
}
.k-syntax-paren-match {
background-color: var(--sn-stylekit-info-color) !important;
}
.k-autocomplete, .k-draghandle, .k-dropdown-wrap, .k-grid-header, .k-grouping-header, .k-header, .k-numeric-wrap, .k-pager-wrap, .k-panelbar .k-tabstrip-items .k-item, .k-picker-wrap, .k-progressbar, .k-state-highlight, .k-tabstrip-items .k-item, .k-textbox, .k-toolbar, .km-pane-wrapper>.km-pane>.km-view>.km-content {
background-color: var(--sn-stylekit-contrast-background-color) !important;
background-image: none;
}
.k-button .k-icon, .k-button .k-image, .k-button .k-sprite {
color: var(--sn-stylekit-info-color) !important;
}
.k-tabstrip .k-tabstrip-items .k-state-active .k-link {
color: var(--sn-stylekit-info-color) !important;
}
div.k-window, div.k-window.k-state-focused {
background-color: var(--sn-stylekit-contrast-background-color) !important;
border-color: var(--sn-stylekit-border-color) !important;
}
.k-content, .k-editable-area, .k-panel>li.k-item, .k-panelbar>li.k-item, .k-tiles {
background-color: var(--sn-stylekit-contrast-background-color) !important;
}
.k-action-window .k-action-buttons {
background-color: var(--sn-stylekit-contrast-background-color) !important;
border-color: var(--sn-stylekit-border-color) !important;
}
.k-state-hover>.k-select {
border-color: var(--sn-stylekit-info-color) !important;
}
.k-icon, .k-tool-icon {
color: var(--sn-stylekit-info-color) !important;
}
.k-button {
color: var(--sn-stylekit-info-color) !important;
background-color: var(--sn-stylekit-contrast-background-color) !important;
border: none !important;
font-weight: bold;
&:hover {
background-color: var(--sn-stylekit-background-color) !important;
}
}
.k-list .k-item {
border: none !important;
cursor: pointer !important;
.k-icon {
color: var(--sn-stylekit-info-color) !important;
}
&.k-state-hovered {
background-color: var(--sn-stylekit-background-color) !important;
}
&.k-state-selected {
background-color: var(--sn-stylekit-info-color) !important;
color: var(--sn-stylekit-info-contrast-color) !important;
.k-icon {
color: var(--sn-stylekit-info-contrast-color) !important;
}
}
}
.k-button.k-primary {
color: var(--sn-stylekit-info-contrast-color) !important;
border-color: var(--sn-stylekit-info-color) !important;
background-color: var(--sn-stylekit-info-color) !important;
&:hover:not(:disabled) {
filter: brightness(130%);
}
}
.k-tabstrip-items-wrapper {
background-color: var(--sn-stylekit-contrast-background-color) !important;
}
.k-spreadsheet-pane .k-spreadsheet-merged-cell {
background-color: var(--sn-stylekit-background-color);
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -0,0 +1,43 @@
{
"name": "@standardnotes/spreadsheets",
"private": true,
"version": "1.4.4",
"main": "dist/dist.js",
"scripts": {
"custom:lint": "eslint app/ --ext .js",
"custom:lint:fix": "npm run lint -- --fix",
"build": "webpack --config webpack.prod.js",
"start": "webpack serve --config webpack.dev.js --progress --hot",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1"
},
"sn": {
"main": "dist/index.html"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.10.1",
"@standardnotes/component-relay": "2.2.0",
"@standardnotes/eslint-config-extensions": "^1.0.4",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^5.2.6",
"eslint": "*",
"eslint-plugin-react": "^7.24.0",
"mini-css-extract-plugin": "^2.0.0",
"node-sass": "*",
"react": "16.x",
"react-dom": "16.x",
"sass-loader": "^11.0.1",
"sn-stylekit": "2.0.22",
"style-loader": "^3.0.0",
"terser-webpack-plugin": "^5.1.4",
"webpack": "*",
"webpack-cli": "*",
"webpack-dev-server": "3.11.0",
"webpack-merge": "^5.8.0"
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1020 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 787 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,687 @@
/*global*/
.floatWrap:after,#example:after{content:"";display:block;clear:both}
.floatWrap,#example{display:inline-block}
.floatWrap,#example{display:block}
.clear{clear:both}
body,h1,h2,h3,h4,p,ul,li,a,button
{
margin:0;
padding:0;
list-style:none;
}
html
{
top: 0;
left: 0;
overflow-y:scroll;
font:75% Arial, Helvetica, sans-serif;
background: #f5f7f8;
}
body
{
margin: 0;
padding: 0;
}
a,
li>a,
h2>a,
h3>a,
a
{
text-decoration:none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
a
{
color: #0487c4;
}
a:hover
{
text-decoration: underline;
}
.page
{
max-width:72%;
margin: 2% auto;
padding: 3% 5% 0;
background: #fff;
/* border: 1px solid #e2e4e7; */
}
.offline-button {
display: inline-block;
margin: 0 0 30px;
padding: 9px 23px;
background-color: #015991;
border-radius: 2px;
color: #fff;
text-decoration: none;
font-size: 13px;
font-weight: 700;
line-height: 1.2;
transition-duration: 0.2s;
transition-property: background-color;
transition-timing-function: ease;
}
.offline-button:hover {
background-color: #013a5e;
color: #fff;
text-decoration: none;
}
#example
{
padding: 0;
border: 0;
background: transparent;
font-size: 14px;
}
/*console*/
.console
{
background-color: transparent;
color: #333;
font: 11px Consolas, Monaco, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
margin: 0;
overflow-x: hidden;
text-align: left;
height: 200px;
border: 1px solid rgba(20,53,80,0.1);
background-color: #ffffff;
text-indent: 0;
}
.demo-section .box-col .console
{
min-width: 200px;
}
.console .count
{
background-color: #26c6da;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
color: #ffffff;
font-size: 10px;
margin-left: 5px;
padding: 2px 6px 2px 5px;
}
.console div
{
background-position: 6px -95px;
border-bottom: 1px solid #DDD;
padding: 5px 10px;
height: 2em;
line-height: 2em;
vertical-align: middle;
}
.console .error
{
background-position: 6px -135px;
}
/*configurator*/
.centerWrap .configuration,
.configuration,
.configuration-horizontal
{
margin: 4.5em auto;
padding: 3em;
background-color: rgba(20,53,80,0.038);
border: 1px solid rgba(20,53,80,0.05);
}
.absConf .configuration
{
position: absolute;
top: -1px;
right: -1px;
height: auto;
margin: 0;
z-index: 2;
}
.configuration-horizontal
{
position: static;
height: auto;
min-height: 0;
margin: 0 auto;
zoom: 1;
}
.configuration-horizontal-bottom
{
margin: 20px -21px -21px;
position: static;
height: auto;
min-height: 0;
width: auto;
float:none;
}
.configuration .configHead,
.configuration .infoHead,
.configuration-horizontal .configHead,
.configuration-horizontal .infoHead
{
display: block;
margin-bottom: 1em;
font-size: 12px;
line-height: 1em;
font-weight: bold;
text-transform: uppercase;
}
.configuration .configTitle,
.configuration-horizontal .configTitle
{
font-size: 12px;
display: block;
line-height: 22px;
}
.configuration .options,
.configuration-horizontal .options
{
list-style:none;
margin: 0;
padding: 0;
}
.configuration button,
.configuration-horizontal button
{
margin: 0;
vertical-align: middle;
}
.configuration .k-textbox,
.configuration-horizontal .k-textbox
{
margin-left: 7px;
width: 30px;
}
.configuration .options li { display: block; margin: 0; padding: 0.2em 0; zoom: 1; }
.configuration .options li:after,
.configuration-horizontal:after
{
content: "";
display: block;
clear: both;
height: 0;
}
.configuration-horizontal .config-section
{
display: block;
float: left;
min-width: 200px;
margin: 0;
padding: 10px 20px 10px 10px;
}
.configuration label,
.configuration input
{
vertical-align: middle;
line-height: 20px;
margin-top: 0;
}
.configuration label
{
float: left;
}
.configuration input
{
width: 40px;
}
.configuration input,
.configuration select,
.configuration .k-numerictextbox
{
float: right;
}
.configuration input.k-input
{
float: none;
}
.configuration .k-button,
.configuration .k-widget
{
margin-bottom: 3px;
}
/* Code Viewer */
.source {
background-color: #f5f7f8;
margin: 0 0 5em;
border: 1px solid rgba(20,53,80,0.05);
}
.source .code {
background-color: #fff;
border-top: 1px solid rgba(20,53,80,0.08);
padding: 20px 0 0;
}
.source .code pre {
margin: 0;
padding: 0 20px 20px;
}
.source .offline-button {
background: none;
text-decoration: none;
color: #0487c4;
margin: 10px 0 10px 14px;
padding: 10px;
}
.source .offline-button.selected {
color: #000;
}
.source .code .controller {
display: none;
}
/* Pretty Print */
.prettyprint
{
font-size: 12px;
overflow: auto;
}
pre .nocode { background-color: transparent; color: #000; }
pre .str, /* string */
pre .atv { color: #2db245; } /* attribute value */
pre .kwd { color: #ff3399; } /* keyword */
pre .com { color: #9933cc; } /* comment */
pre .typ { color: #000; } /* type */
pre .lit { color: #0099ff; } /* literal */
pre .pun { color: #333; } /* punctuation */
pre .pln { color: #3e526b; } /* plaintext */
pre .tag { color: #3e526b; } /* html/xml tag */
pre .atn { color: #3e526b; } /* attribute name */
pre .dec { color: #3e526b; } /* decimal */
/* Specify class=linenums on a pre to get line numbering */
ol.linenums { margin-top: 0; margin-bottom: 0; color: #333; }
li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none }
li.L1,li.L3,li.L5,li.L7,li.L9 { background: #eee; }
/*keyboard navigation legend */
.key-button {
display: inline-block;
text-decoration: none;
color: #555;
min-width: 20px;
margin: 0;
padding: 3px 5px;
font-size: 12px;
text-align: center;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
background: #eee;
box-shadow: 0 1px 0 1px rgba(0,0,0,0.1), 0 2px 0 rgba(0,0,0,0.1);
}
.widest {}
.wider {}
.wide {}
.leftAlign, .rightAlign, .centerAlign {text-align: left;}
.letter {
padding-top: 14px;
padding-bottom: 11px;
font-weight: bold;
font-size: 17px;
}
ul.keyboard-legend {
list-style-type: none;
margin: 0 auto;
padding: 0;
text-align: left;
}
#example ul.keyboard-legend li,
.demo-section .box-col ul.keyboard-legend li {
display: block;
margin: 0;
padding: 4px 0;
line-height: 1.5em;
}
ul.keyboard-legend li a {
color: #0487C4;
}
.button-preview {
display: inline-block;
vertical-align: top;
padding: 0 5px 0 0;
}
.button-descr {
display: inline-block;
vertical-align: top;
text-align: left;
padding: 3px 0;
}
.demo-section p a.hyperlink,
.config-section a {
color: #e15613;
text-decoration: none;
}
.chart-wrapper,
.map-wrapper,
.diagram-wrapper {
position: relative;
height: 430px;
margin: 0 auto 15px auto;
padding: 10px;
}
#example.absConf .chart-wrapper,
#example.absConf .map-wrapper,
#example.absConf .diagram-wrapper
{
margin-left: 0;
}
.chart-wrapper .k-chart,
.map-wrapper .k-map,
.diagram-wrapper .k-diagram {
height: 430px;
}
.config-section.console-section
{
width: 400px;
float: right;
}
#page > h2 {
float: none;
text-align: center;
width: auto;
padding: 5em 0 1em;
font-size: 3em;
}
#suites .imgPlate,
#suites .box {
border-width: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
#suites {
text-align: center;
}
#suites .box {
float: none;
clear: none;
display: inline-block;
width: auto;
min-width: auto;
}
#suites .box h2 {
margin-top: 1em;
}
#draggable
{
cursor: pointer;
position: absolute;
top: 210px;
left: 30px;
border: 1px solid #ff8000;
width: 78px;
height: 78px;
border-radius: 37px;
box-shadow: 2px 0 10px #9d9d9d;
background: #ffcc00 url(../../web/dragdrop/draggable.png) 50% 50% no-repeat;
background: url(../../web/dragdrop/draggable.png) 50% 50% no-repeat, -moz-linear-gradient(top, #ffcc00 0%, #ff8000 100%);
background: url(../../web/dragdrop/draggable.png) 50% 50% no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffcc00), color-stop(100%,#ff8000));
background: url(../../web/dragdrop/draggable.png) 50% 50% no-repeat, -webkit-linear-gradient(top, #ffcc00 0%,#ff8000 100%);
background: url(../../web/dragdrop/draggable.png) 50% 50% no-repeat, -o-linear-gradient(top, #ffcc00 0%,#ff8000 100%);
background: url(../../web/dragdrop/draggable.png) 50% 50% no-repeat, -ms-linear-gradient(top, #ffcc00 0%,#ff8000 100%);
background: url(../../web/dragdrop/draggable.png) 50% 50% no-repeat, linear-gradient(top, #ffcc00 0%,#ff8000 100%);
}
#draggable.hollow
{
cursor: default;
background: #ececec;
border-color: #cbcbcb;
}
/* Box Styles */
.box {
margin: 4.5em 7.5em;
padding: 3em;
background-color: rgba(20,53,80,0.038);
border: 1px solid rgba(20,53,80,0.05);
}
.demo-section {
margin: 0 auto 4.5em;
padding: 3em;
border: 1px solid rgba(20,53,80,0.14);
}
.demo-section:not(.wide),
#example .box:not(.wide) {
max-width: 400px;
}
.box:after,
.demo-section:after {
content: "";
display: block;
clear: both;
height: 0;
}
#example .box {
margin: 4.5em auto;
}
#example .box:first-child {
margin-top: 0;
}
.demo-section.k-content {
box-shadow: 0 1px 2px 1px rgba(0,0,0,.08), 0 3px 6px rgba(0,0,0,.08);
}
.box h4,
.demo-section h4 {
margin-bottom: 1em;
font-size: 12px;
line-height: 1em;
font-weight: bold;
text-transform: uppercase;
}
.box-col {
display: block;
float: left;
padding: 0 3em 1.667em 0;
}
.box ul:not(.km-widget) li,
.demo-section .box-col ul:not(.km-widget) li {
line-height: 3em;
}
.box li:last-child {
margin-bottom: 0;
}
.box li a {
font-size: 13px;
}
.box .k-widget {
background-color: #ebeef0;
border-color: #ccc;
color: #7c7c7c;
}
.box .k-widget.k-slider {
background-color: transparent;
}
.box .k-button {
cursor: pointer;
border-radius: 2px;
font-size: inherit;
color: #333;
background: #e2e4e7;
border-color: #e2e4e7;
min-width: 90px;
box-shadow: none;
}
.box .k-upload-status .k-button-bare {
min-width: 0;
}
.box .k-button:hover,
.box .k-button:focus:active:not(.k-state-disabled):not([disabled]),
.box .k-button:focus:not(.k-state-disabled):not([disabled]) {
background: #cad0d6;
border-color: #cad0d6;
color: #000;
box-shadow: none;
}
.box .k-primary {
color: #fff;
background: #015991;
border-color: #015991;
}
.box .k-primary:hover,
.box .k-primary:focus:active:not(.k-state-disabled):not([disabled]),
.box .k-primary:focus:not(.k-state-disabled):not([disabled]) {
background: #013A5E;
border-color: #013A5E;
color: #fff;
}
.box .k-textbox,
.box textarea {
background: #fff;
border-color: #e2e4e7;
color: #555;
border-radius: 2px;
}
.box .k-textbox:hover,
.box .k-textbox:active,
.box .k-textbox:focus,
.box textarea:hover,
.box textarea:active,
.box textarea:focus {
border-color: #cad0d6;
background: #fff;
color: #333;
box-shadow: none;
}
.box.demo-description p {
line-height: 1.5em;
max-width: 1000px;
padding-bottom: 1em;
}
.box.demo-description p:last-child {
padding-bottom: 0;
}
.box.demo-description ul,
.box.demo-description ul li {
list-style: disc inside;
line-height: 1.5em;
max-width: 1000px;
}
.box.demo-description ol,
.box.demo-description ol li {
list-style: decimal inside;
line-height: 1.5em;
max-width: 1000px;
}
.box.demo-description ul,
.box.demo-description ol {
margin: 1em;
padding: 0;
}
.demo-hint {
line-height: 22px;
color: #aaa;
font-style: italic;
font-size: .9em;
padding-top: 1em;
}
.responsive-message {
font-size: 17px;
display: none;
margin: 4em auto;
padding: 2.5em;
text-align: center;
background-color: #ffda3f;
color: #000;
}
.responsive-message:before {
content: "This demo requires browser or device screen width to be equal or greater than 1024px.";
}
@media screen and (max-width: 1023px) {
.page {
max-width:100%;
margin: 0;
padding: 10px;
background: #fff;
border: 0;
}
.hidden-on-narrow {
display: none !important;
}
.responsive-message {
display: block;
}
}

View File

@@ -0,0 +1,99 @@
Fonts are (c) Bitstream (see below). DejaVu changes are in public domain.
Glyphs imported from Arev fonts are (c) Tavmjong Bah (see below)
Bitstream Vera Fonts Copyright
------------------------------
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is
a trademark of Bitstream, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of the fonts accompanying this license ("Fonts") and associated
documentation files (the "Font Software"), to reproduce and distribute the
Font Software, including without limitation the rights to use, copy, merge,
publish, distribute, and/or sell copies of the Font Software, and to permit
persons to whom the Font Software is furnished to do so, subject to the
following conditions:
The above copyright and trademark notices and this permission notice shall
be included in all copies of one or more of the Font Software typefaces.
The Font Software may be modified, altered, or added to, and in particular
the designs of glyphs or characters in the Fonts may be modified and
additional glyphs or characters may be added to the Fonts, only if the fonts
are renamed to names not containing either the words "Bitstream" or the word
"Vera".
This License becomes null and void to the extent applicable to Fonts or Font
Software that has been modified and is distributed under the "Bitstream
Vera" names.
The Font Software may be sold as part of a larger software package but no
copy of one or more of the Font Software typefaces may be sold by itself.
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,
TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME
FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING
ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE
FONT SOFTWARE.
Except as contained in this notice, the names of Gnome, the Gnome
Foundation, and Bitstream Inc., shall not be used in advertising or
otherwise to promote the sale, use or other dealings in this Font Software
without prior written authorization from the Gnome Foundation or Bitstream
Inc., respectively. For further information, contact: fonts at gnome dot
org.
Arev Fonts Copyright
------------------------------
Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining
a copy of the fonts accompanying this license ("Fonts") and
associated documentation files (the "Font Software"), to reproduce
and distribute the modifications to the Bitstream Vera Font Software,
including without limitation the rights to use, copy, merge, publish,
distribute, and/or sell copies of the Font Software, and to permit
persons to whom the Font Software is furnished to do so, subject to
the following conditions:
The above copyright and trademark notices and this permission notice
shall be included in all copies of one or more of the Font Software
typefaces.
The Font Software may be modified, altered, or added to, and in
particular the designs of glyphs or characters in the Fonts may be
modified and additional glyphs or characters may be added to the
Fonts, only if the fonts are renamed to names not containing either
the words "Tavmjong Bah" or the word "Arev".
This License becomes null and void to the extent applicable to Fonts
or Font Software that has been modified and is distributed under the
"Tavmjong Bah Arev" names.
The Font Software may be sold as part of a larger software package but
no copy of one or more of the Font Software typefaces may be sold by
itself.
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL
TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
Except as contained in this notice, the name of Tavmjong Bah shall not
be used in advertising or otherwise to promote the sale, use or other
dealings in this Font Software without prior written authorization
from Tavmjong Bah. For further information, contact: tavmjong @ free
. fr.
$Id: LICENSE 2133 2007-11-28 02:46:28Z lechimp $

View File

@@ -0,0 +1,188 @@
<?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="KendoUIGlyphs" 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="&#xe600;" glyph-name="arrow-n" d="M512 640l-221.696-384h443.392l-221.696 384z" />
<glyph unicode="&#xe601;" glyph-name="arrow-e" d="M704 448l-384 221.696v-443.392l384 221.696z" />
<glyph unicode="&#xe602;" glyph-name="arrow-s" d="M512 256l-221.696 384h443.392l-221.696-384z" />
<glyph unicode="&#xe603;" glyph-name="arrow-w" d="M320 448l384 221.696v-443.392l-384 221.696z" />
<glyph unicode="&#xe604;" glyph-name="seek-n" d="M512 640l221.696-384h-443.392l221.696 384zM768 704v-64h-512v64h512z" />
<glyph unicode="&#xe605;" glyph-name="seek-e" d="M704 448l-384-221.696v443.392l384-221.696zM768 704v-512h-64v512h64z" />
<glyph unicode="&#xe606;" glyph-name="seek-s" d="M512 256l-221.696 384h443.392l-221.696-384zM768 192h-512v64h512v-64z" />
<glyph unicode="&#xe607;" glyph-name="seek-w" d="M320 448l384 221.696v-443.392l-384 221.696zM256 704h64v-512h-64v512z" />
<glyph unicode="&#xe608;" glyph-name="sarrow-n" d="M512 576l-192-192h384l-192 192z" />
<glyph unicode="&#xe609;" glyph-name="sarrow-e" d="M448 640v-384l192 192z" />
<glyph unicode="&#xe60a;" glyph-name="sarrow-s" d="M704 512h-384l192-192z" />
<glyph unicode="&#xe60b;" glyph-name="sarrow-w" d="M384 448l192-192v384l-192-192z" />
<glyph unicode="&#xe60c;" glyph-name="expand-n" d="M512 576l256-256h-512z" />
<glyph unicode="&#xe60d;" glyph-name="expand-e" d="M640 448l-256-256v512l256-256z" />
<glyph unicode="&#xe60e;" glyph-name="expand-s" d="M256 576h512l-256-256z" />
<glyph unicode="&#xe60f;" glyph-name="expand-w" d="M640 704v-512l-256 256z" />
<glyph unicode="&#xe610;" glyph-name="collapse-ne" d="M704 640v-384l-384 384z" />
<glyph unicode="&#xe611;" glyph-name="collapse-se" d="M704 256h-384l384 384z" />
<glyph unicode="&#xe612;" glyph-name="collapse-sw" d="M320 256v384l384-384z" />
<glyph unicode="&#xe613;" glyph-name="collapse-nw" d="M320 640h384l-384-384z" />
<glyph unicode="&#xe614;" glyph-name="resize-ne" d="M768 704h-512l512-512z" />
<glyph unicode="&#xe615;" glyph-name="resize-se" d="M768 192h-512l512 512z" />
<glyph unicode="&#xe616;" glyph-name="resize-sw" d="M256 192h512l-512 512z" />
<glyph unicode="&#xe617;" glyph-name="resize-nw" d="M256 704h512l-512-512z" />
<glyph unicode="&#xe618;" glyph-name="arrowhead-n" d="M832 320l-320 320-320-320h128l192 192 192-192z" />
<glyph unicode="&#xe619;" glyph-name="arrowhead-e" d="M320 128l320 320-320 320v-128l192-192-192-192z" />
<glyph unicode="&#xe61a;" glyph-name="arrowhead-s" d="M704 576l-192-192-192 192h-128l320-320 320 320z" />
<glyph unicode="&#xe61b;" glyph-name="arrowhead-w" d="M704 256l-192 192 192 192v128l-320-320 320-320z" />
<glyph unicode="&#xe61c;" glyph-name="pencil" d="M779.456 895.872c-0.192 0.192-0.576 0.192-0.704 0l-89.856-89.856c-0.192-0.192-0.192-0.512 0-0.704l180.352-180.352c0.256-0.192 0.512-0.192 0.768 0l89.856 89.792c0.192 0.192 0.192 0.576 0 0.768l-180.416 180.352zM643.648 760.064c-0.192 0.192-0.512 0.192-0.768 0l-457.984-457.984c-0.192-0.192-0.32-0.384-0.384-0.384 0 0-0.064-0.256-0.192-0.512l-120.32-300.864c-0.064-0.256 0-0.384 0.256-0.32l300.8 120.384c0.256 0.128 0.64 0.384 0.832 0.576l458.048 457.984c0.192 0.192 0.192 0.512 0 0.704l-180.288 180.416zM256.256 192.256c-0.192-0.192-0.512-0.192-0.704 0l-44.544 44.544c-0.192 0.192-0.192 0.576 0 0.768l431.872 431.936c0.256 0.192 0.576 0.192 0.768 0l44.544-44.544c0.192-0.192 0.192-0.576 0-0.768l-431.936-431.936z" />
<glyph unicode="&#xe61d;" glyph-name="x" d="M768 638.016l-190.016-190.016 190.016-190.016v-65.984h-62.016l-192 192-192-192h-64l-1.984 1.984v60.032l193.984 193.984-193.984 193.984v60.032l1.984 1.984h64l192-192 192 192h62.016v-65.984z" />
<glyph unicode="&#xe61e;" glyph-name="checkmark" d="M774.016 726.016l72-104-392-514.304-289.984 220.288 27.2 119.808 249.088-192.448 333.696 470.656z" />
<glyph unicode="&#xe61f;" glyph-name="deny" d="M512 832c-212.032 0-384-171.968-384-384s171.968-384 384-384 384 171.968 384 384-171.968 384-384 384zM832 448c0-76.8-28.16-146.304-73.28-201.472l-448.192 448.192c55.168 45.12 124.672 73.28 201.472 73.28 176.768 0 320-143.232 320-320zM192 448c0 76.8 28.16 146.368 73.28 201.472l448.192-448.192c-55.168-45.12-124.672-73.28-201.472-73.28-176.704 0-320 143.232-320 320z" />
<glyph unicode="&#xe620;" glyph-name="trash" d="M384 640h64v-448h-64v448zM512 640h64v-448h-64v448zM640 128h-320v512h-64v-576h448v576h-64zM128 768h704v-64h-704v64zM384 896h192v-64h-192v64z" />
<glyph unicode="&#xe621;" glyph-name="plus" d="M832 512h-256v256h-128v-256h-256v-128h256v-256h128v256h256z" />
<glyph unicode="&#xe622;" glyph-name="splus" d="M704 512h-128v128h-128v-128h-128v-128h128v-128h128v128h128z" />
<glyph unicode="&#xe623;" glyph-name="minus" d="M192 512h640v-128h-640v128z" />
<glyph unicode="&#xe624;" glyph-name="sminus" d="M320 512h384v-128h-384v128z" />
<glyph unicode="&#xe625;" glyph-name="filter" d="M192 752v-76.032l256-256v-435.968l128 176v259.968l256 256v76.032h-640z" />
<glyph unicode="&#xe626;" glyph-name="filter-clear" d="M844.032 379.968l-41.984-41.984-576 576 41.984 41.984 203.968-203.968h360v-76.032l-142.016-142.016 154.048-153.984zM601.984 446.016l-25.984-26.048v-260.032l-128-175.936v435.968l-256 256v76.032h104l305.984-305.984z" />
<glyph unicode="&#xe627;" glyph-name="refresh" d="M763.776 578.816c42.112-54.080 67.264-121.984 67.264-195.84-0.064-176.128-142.848-318.976-319.040-318.976s-318.976 142.848-318.976 318.976c0 154.688 110.080 283.52 256.128 312.704v105.6l251.968-145.472-251.968-145.536v98.496c-98.88-27.456-171.456-118.080-171.456-225.728 0-129.344 104.896-234.304 234.24-234.304 129.408 0 234.304 104.96 234.304 234.304 0 58.432-21.504 111.808-56.896 152.896l74.432 42.88z" />
<glyph unicode="&#xe628;" glyph-name="refresh-clear" d="M766.208 256.128c40.384 53.12 64.832 118.912 64.832 190.848 0 73.856-25.152 141.76-67.264 195.84l-74.368-42.88c35.392-41.088 56.896-94.464 56.896-152.896 0-48.448-15.872-92.544-41.344-129.728l-323.392 323.456c20.48 14.016 43.008 25.152 67.584 32v-98.496l251.968 145.472-251.968 145.536v-105.6c-47.552-9.472-90.624-30.4-127.808-58.688l-194.176 194.176-43.584-43.584 831.936-832.064 43.648 43.648-192.96 192.96zM511.936 212.736c-129.344 0-234.24 104.96-234.24 234.304 0 13.568 1.216 26.88 3.392 39.808l-68.928 68.992c-12.352-33.92-19.136-70.592-19.136-108.8 0-176.192 142.784-319.040 318.976-319.040 38.080 0 74.112 7.808 107.968 20.032l-68.736 68.736c-12.864-2.176-25.856-4.032-39.296-4.032z" />
<glyph unicode="&#xe629;" glyph-name="restore" d="M128 640v-576h576v576h-576zM576 192h-320v320h320v-320zM896 832v-576h-128v448h-448v128h576z" />
<glyph unicode="&#xe62a;" glyph-name="maximize" d="M192 768v-640h640v640h-640zM704 256h-384v384h384v-384z" />
<glyph unicode="&#xe62b;" glyph-name="minimize" d="M192 256h640v-128h-640v128z" />
<glyph unicode="&#xe62c;" glyph-name="pin" d="M640 448v320h-320v-320h-64v-64h192v-256h64v256h192v64h-64zM384 448v256h128v-256h-128z" />
<glyph unicode="&#xe62d;" glyph-name="unpin" d="M768 640h-256v64h-64v-192h-256v-64h256v-192h64v64h320v320h-64zM768 448h-256v128h256v-128z" />
<glyph unicode="&#xe62e;" glyph-name="calendar" d="M768 704v128h-128v-128h-256v128h-128v-128h-128v-640h768v640h-128zM832 128h-640v448h640v-448zM512 448h192v-192h-192v192z" />
<glyph unicode="&#xe62f;" glyph-name="clock" d="M512 832c-212.032 0-384-171.968-384-384s171.968-384 384-384 384 171.968 384 384-171.968 384-384 384zM512 128c-176.704 0-320 143.232-320 320s143.296 320 320 320c176.768 0 320-143.232 320-320s-143.232-320-320-320zM512 640h-64v-256h256v64h-192z" />
<glyph unicode="&#xe630;" glyph-name="search" d="M384 896c-176.768 0-320-143.296-320-320 0-176.768 143.232-320 320-320 176.704 0 320 143.232 320 320 0 176.704-143.296 320-320 320zM640 576c0-141.376-114.624-256-256-256s-256 114.624-256 256 114.624 256 256 256 256-114.624 256-256zM960 128c0-70.656-57.344-128-128-128l-192 192c0 70.656 57.344 128 128 128l192-192z" />
<glyph unicode="&#xe631;" glyph-name="zoom-in" d="M384 896c-176.768 0-320-143.296-320-320 0-176.768 143.232-320 320-320 176.704 0 320 143.232 320 320 0 176.704-143.296 320-320 320zM384 320c-141.376 0-256 114.624-256 256s114.624 256 256 256 256-114.624 256-256-114.624-256-256-256zM960 128c0-70.656-57.344-128-128-128l-192 192c0 70.656 57.344 128 128 128l192-192zM576 512h-128v-128h-128v128h-128v128h128v128h128v-128h128v-128z" />
<glyph unicode="&#xe632;" glyph-name="zoom-out" d="M384 896c-176.768 0-320-143.296-320-320 0-176.768 143.232-320 320-320 176.704 0 320 143.232 320 320 0 176.704-143.296 320-320 320zM384 320c-141.376 0-256 114.624-256 256s114.624 256 256 256 256-114.624 256-256-114.624-256-256-256zM960 128c0-70.656-57.344-128-128-128l-192 192c0 70.656 57.344 128 128 128l192-192zM576 512h-384v128h384v-128z" />
<glyph unicode="&#xe633;" glyph-name="print" d="M832 448v192l-256 256h-384v-448h-192v-384h1024v384h-192zM256 832h320v-192h192v-192h-512v384zM576 384v-64h-128v64h128zM832 128h-640v128h640v-128z" />
<glyph unicode="&#xe634;" glyph-name="folder-add" d="M576 768h-384v-384h-64v448h448v-64zM320 192h-128v128h-64v-128h-128v-64h128v-128h64v128h128v64zM256 704v-64h704v-448h-576v-64h640v576h-768z" />
<glyph unicode="&#xe635;" glyph-name="folder-up" d="M576 768h-384v-256h-64v320h448v-64zM256 704v-64h704v-448h-576v-64h640v576h-768zM320 256l-160 192-160-192h128v-256h64v256h128z" />
<glyph unicode="&#xe636;" glyph-name="insert-image" d="M960 832h-832v-448h64v384h768v-576h-576v-64h640v704zM192 320h-64v-128h-128v-64h128v-128h64v128h128v64h-128zM576 384l-192 192-128-192v-128h640l-192 256zM896 640c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64z" />
<glyph unicode="&#xe637;" glyph-name="image" d="M64 832v-704h896v704h-896zM896 192h-768v576h768v-576zM832 256l-192 256-128-128-192 192-128-192v-128zM832 640c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64z" />
<glyph unicode="&#xe638;" glyph-name="insert-file" d="M512-64c-141.184 0-256 114.88-256 256v576c0 105.856 86.144 192 192 192 105.728 0 192-86.144 192-192v-448c0-70.592-57.472-128-128-128-70.656 0-128 57.408-128 128v384h64v-384c0-35.264 28.736-64 64-64s64 28.736 64 64v448c0 70.592-57.472 128-128 128s-128-57.408-128-128v-576c0-105.856 86.144-192 192-192s192 86.144 192 192v512h64v-512c0-141.12-114.88-256-256-256z" />
<glyph unicode="&#xe639;" glyph-name="file" d="M576 896h-384v-832h640v576l-256 256zM256 128v704h320v-192h192v-512h-512z" />
<glyph unicode="&#xe63a;" glyph-name="files" d="M192 896h320v-64h128l-128 128h-384v-832h192v64h-128zM768 768h-384v-832h640v576l-256 256zM448 0v704h320v-192h192v-512h-512z" />
<glyph unicode="&#xe63b;" glyph-name="pdf" d="M640 896h-384v-384h-128v-320h128v-128h640v576l-256 256zM254.528 326.976v-65.984h-36.48v182.016h72.512c20.928 0 37.376-5.312 49.344-16s17.984-24.704 17.984-42.112-6.016-31.488-17.984-42.048-28.48-15.872-49.408-15.872h-35.968zM320 128v64h448v320h-448v320h320v-192h192v-512h-512zM384.768 260.992v182.016h62.528c22.272 0 40.576-7.104 54.976-21.312s21.632-32.448 21.632-54.656v-30.144c0-22.336-7.168-40.576-21.632-54.656s-32.768-21.184-54.976-21.184h-62.528zM665.28 364.736v-28.096h-76.288v-75.648h-36.48v182.016h125.504v-28.096h-89.024v-50.112h76.288zM445.376 414.848h-24.128v-125.76h24.128c13.056 0 23.296 4.416 30.72 13.248s11.136 20.288 11.136 34.56v30.4c0 14.080-3.712 25.472-11.136 34.304s-17.664 13.248-30.72 13.248zM313.6 363.456c5.248 5.568 7.872 12.608 7.872 21.184 0 8.768-2.624 16-7.808 21.696s-12.928 8.512-23.168 8.512h-35.968v-59.776h36.032c10.112 0.064 17.792 2.816 23.040 8.384z" />
<glyph unicode="&#xe63c;" glyph-name="xls" d="M640 896h-384v-384h-128v-320h128v-128h640v576l-256 256zM224.768 443.008h42.24l33.6-64.512 34.112 64.512h42.496l-54.016-90.24 57.152-91.776h-44.096l-35.136 65.664-35.136-65.6h-42.624l55.36 91.776-53.952 90.176zM320 128v64h448v320h-448v320h320v-192h192v-512h-512zM516.864 289.152v-28.096h-117.504v181.952h36.48v-153.856h81.024zM628.672 325.376c-4.928 4.224-13.632 8.256-26.048 11.968-21.696 6.272-38.080 13.632-49.152 22.272s-16.64 20.352-16.64 35.264c0 14.912 6.4 27.072 19.072 36.544s28.928 14.208 48.704 14.208c20.032 0 36.288-5.312 48.896-15.936s18.688-23.744 18.24-39.296l-0.256-0.768h-35.392c0 8.384-2.816 15.232-8.448 20.416s-13.504 7.808-23.68 7.808c-9.728 0-17.344-2.176-22.656-6.528s-8-9.856-8-16.64c0-6.144 2.88-11.264 8.576-15.168s15.552-8.192 29.568-12.544c20.032-5.632 35.328-12.992 45.632-22.144s15.488-21.248 15.488-36.096c0-15.616-6.144-27.904-18.432-36.864s-28.48-13.504-48.704-13.504c-19.84 0-37.12 5.12-51.904 15.296s-21.952 24.576-21.504 42.944l0.256 0.768h35.52c0-10.88 3.328-18.752 9.92-23.808s15.872-7.552 27.712-7.552c9.92 0 17.472 1.984 22.72 6.144s7.872 9.472 7.872 16.384c0.064 6.976-2.432 12.608-7.36 16.832z" />
<glyph unicode="&#xe63d;" glyph-name="xlsa" d="M640 896h-384v-256h-128v-448h128v-128h640v576l-256 256zM233.28 256h-40l-1.28 1.28v37.504l121.28 121.216-121.28 121.28v37.44l1.28 1.28h40l120-120 120 120h38.72v-41.28l-118.72-118.72 118.72-118.72v-41.28h-38.72l-120 120-120-120zM320 128v64h256v448h-256v192h320v-192h192v-512h-512z" />
<glyph unicode="&#xe63e;" glyph-name="lock" d="M704 512v128c0 106.048-86.016 192-192 192-106.048 0-192-85.952-192-192v-128h-64v-384h512v384h-64zM384 640c0 70.656 57.344 128 128 128s128-57.344 128-128v-128h-256v128z" />
<glyph unicode="&#xe63f;" glyph-name="unlock" d="M512 512v128c0 106.048-85.952 192-192 192s-192-85.952-192-192v-192h64v192c0 70.656 57.344 128 128 128s128-57.344 128-128v-128h-64v-384h512v384h-384z" />
<glyph unicode="&#xe640;" glyph-name="rows" d="M896 256v-192h-768v192h768zM128 576v-192h768v192h-768zM128 896v-192h768v192h-768z" />
<glyph unicode="&#xe641;" glyph-name="columns" d="M256 64h-192v768h192v-768zM576 832h-192v-768h192v768zM896 832h-192v-768h192v768z" />
<glyph unicode="&#xe642;" glyph-name="hamburger" d="M960 640h-896v128h896v-128zM960 512h-896v-128h896v128zM960 256h-896v-128h896v128z" />
<glyph unicode="&#xe643;" glyph-name="vbars" d="M448 832h128v-768h-128v768z" />
<glyph unicode="&#xe644;" glyph-name="hbars" d="M128 512h768v-128h-768v128z" />
<glyph unicode="&#xe645;" glyph-name="move" d="M320 832h128v-768h-128v768zM512 832h128v-768h-128v768z" />
<glyph unicode="&#xe646;" glyph-name="group" d="M448 512h-320v320h320v-320zM832 832h-320v-320h320v320zM448 448h-320v-320h320v320zM832 448h-320v-320h320v320z" />
<glyph unicode="&#xe647;" glyph-name="ungroup" d="M256 704h192v-192h-192v192zM576 832h320v-320h-320v320zM128 384h320v-320h-320v320zM576 384h256v-256h-256v256z" />
<glyph unicode="&#xe648;" glyph-name="dimension" d="M896 224l-192 160v-128h-384v384h128l-160 192-160-192h128v-384h-128v-64h128v-128h64v128h384v-128z" />
<glyph unicode="&#xe649;" glyph-name="connector" d="M736 832c-41.728 0-76.864-26.816-90.112-64h-197.888v-512h-133.888c-13.248 37.184-48.384 64-90.112 64-52.992 0-96-43.008-96-96s43.008-96 96-96c41.728 0 76.864 26.816 90.112 64h197.888v512h133.888c13.248-37.184 48.384-64 90.112-64 52.992 0 96 42.944 96 96s-43.008 96-96 96z" />
<glyph unicode="&#xe64a;" glyph-name="kpi" d="M512 832l192-320h-384l192 320zM512 64l192 320h-384l192-320z" />
<glyph unicode="&#xe64b;" glyph-name="undo" d="M570.24 576c-104.576 0-199.232-41.92-268.352-109.888l-109.888 109.888v-256h256l-100.224 100.224c57.472 56.448 135.488 91.776 222.464 91.776 89.792 0 170.24-37.76 228.352-97.344l44.8 44.8c-69.504 71.296-165.632 116.544-273.152 116.544z" />
<glyph unicode="&#xe64c;" glyph-name="redo" d="M453.76 576c104.576 0 199.232-41.92 268.352-109.888l109.888 109.888v-256h-256l100.16 100.224c-57.408 56.448-135.424 91.776-222.4 91.776-89.792 0-170.24-37.76-228.416-97.344l-44.8 44.8c69.568 71.296 165.696 116.544 273.216 116.544z" />
<glyph unicode="&#xe64d;" glyph-name="undo-large" d="M512.448 662.976v129.792l-448.448-258.88 448.448-258.944v134.336c206.016-0.384 379.392-139.712 431.488-329.28h16.064v134.592c0 247.36-200.32 447.936-447.552 448.384z" />
<glyph unicode="&#xe64e;" glyph-name="redo-large" d="M64 214.592v-134.592h16.064c52.096 189.568 225.472 328.896 431.488 329.28v-134.336l448.448 258.944-448.448 258.88v-129.728c-247.232-0.512-447.552-201.088-447.552-448.448z" />
<glyph unicode="&#xe64f;" glyph-name="rotate-ccw" d="M448 832.064v-768h-384l384 768zM512 320.064v-256h512l-512 256zM832 576.064h-128v96l-128-128 128-128v96h128v-128h64v192h-64z" />
<glyph unicode="&#xe650;" glyph-name="rotate-cw" d="M960.064 64h-384v768l384-768zM0 64h512v256l-512-256zM448 544l-128 128v-96h-192v-192h64v128h128v-96l128 128z" />
<glyph unicode="&#xe651;" glyph-name="cut" d="M800 320c-21.888 0-42.688-4.416-61.696-12.352l-160.256 160.256 258.112 304.32 35.584 121.536-359.744-359.808-359.744 359.744 35.584-121.536 258.112-304.256-160.32-160.256c-18.944 7.936-39.808 12.352-61.632 12.352-88.384 0-160-71.616-160-160s71.616-160 160-160 160 71.616 160 160c0 22.592-4.8 44.032-13.248 63.488l141.248 166.528 141.248-166.528c-8.448-19.52-13.248-40.896-13.248-63.488 0-88.384 71.616-160 160-160s160 71.616 160 160-71.616 160-160 160zM224 64c-52.992 0-96 43.008-96 96s43.008 96 96 96 96-43.008 96-96-43.008-96-96-96zM800 64c-52.992 0-96 43.008-96 96s43.008 96 96 96 96-43.008 96-96-43.008-96-96-96z" />
<glyph unicode="&#xe652;" glyph-name="copy" d="M192 832h192v-64h128l-128 128h-256v-704h192v64h-128zM640 704h-256v-704h512v448l-256 256zM448 64v576h192v-192h192v-384h-384z" />
<glyph unicode="&#xe653;" glyph-name="paste" d="M640 896h-256v64h256v-64zM832 832v-576l-256-256h-384v832h640zM768 768h-64v-64h-384v64h-64v-704h320v192h192v512z" />
<glyph unicode="&#xe654;" glyph-name="bold" d="M256 128v700.992h236.864c82.56 0 146.88-16.064 193.088-48.128 46.272-32.064 69.312-80.064 69.312-143.936 0-32.448-8.576-61.376-25.728-86.912s-42.112-44.736-74.88-57.536c42.112-8.96 73.6-28.224 94.656-57.792 20.928-29.568 31.488-63.68 31.488-102.592 0-67.136-22.208-117.888-66.432-152.384-44.288-34.432-107.072-51.712-188.224-51.712h-270.144zM396.544 535.296h101.12c37.568 0 66.432 7.68 86.656 23.104 20.16 15.36 30.336 37.824 30.336 67.392 0 32.448-10.176 56.32-30.656 71.744-20.224 15.424-50.688 23.168-91.136 23.168h-96.32v-185.408zM396.544 438.080v-201.728h129.536c37.184 0 65.6 8.064 85.184 24.256s29.376 40.128 29.376 71.808c0 34.24-8.32 60.48-25.088 78.592-16.64 17.984-42.88 27.072-78.848 27.072h-140.16z" />
<glyph unicode="&#xe655;" glyph-name="italic" d="M376.32 748.8l5.76 19.2h343.744l-6.848-19.2c-31.040 0-54.912-6.976-71.424-20.8-16.448-13.824-30.848-42.688-43.392-86.656l-128.768-450.624c-9.344-31.872-13.952-53.12-13.952-63.808 0-12.48 4.8-22.272 14.464-29.12 12.608-9.024 36.096-13.888 70.656-14.592l-5.12-19.2h-349.44l5.696 19.2c35.008 0 60.608 6.72 76.864 20.032s30.912 42.56 44.096 87.488l129.728 450.688c7.936 27.712 12.032 48.512 12.032 62.72 0 12.8-4.8 22.848-14.592 30.144-9.6 7.232-32.832 12.16-69.504 14.528z" />
<glyph unicode="&#xe656;" glyph-name="underline" d="M348.416 768v-347.072c0-154.176 68.864-219.904 161.344-219.904 101.76 0 168.512 67.84 168.512 219.904v347.072h90.496v-340.928c0-212.672-112.064-299.072-262.144-299.072-141.824 0-248.64 80.192-248.64 296v344h90.432zM192 64h640v-64h-640v64z" />
<glyph unicode="&#xe657;" glyph-name="strike-through" d="M310.848 325.312c0-25.152 1.216-49.6 4.16-69.312h-47.168l-4.16 36.416h-1.856c-16.128-22.656-47.168-43.008-88.448-43.008-58.56 0-88.448 41.216-88.448 83.072 0 69.952 62.144 108.16 173.952 107.584v6.016c0 23.296-6.592 66.944-65.728 66.368-27.52 0-55.616-7.808-75.904-21.504l-11.968 35.2c23.936 14.912 59.136 25.088 95.616 25.088 88.448 0 109.952-60.352 109.952-117.76v-108.16zM260.032 403.648c-57.344 1.216-122.56-8.96-122.56-65.216 0-34.624 22.72-50.176 49.024-50.176 38.272 0 62.72 23.936 71.104 48.448 1.792 5.952 2.432 11.968 2.432 16.704v50.24zM395.712 680.32h52.032v-181.696h1.216c18.56 32.256 52.032 52.608 98.624 52.608 72.32 0 122.56-59.776 122.56-147.008 0-103.424-65.728-154.752-130.304-154.752-41.792 0-75.328 16.128-97.408 53.76h-1.28l-3.008-47.232h-44.8c1.216 19.712 2.368 49.024 2.368 74.688v349.632zM447.744 371.968c0-6.592 0.576-13.184 2.432-19.136 9.536-36.416 40.64-61.568 78.848-61.568 55.616 0 87.872 44.8 87.872 111.168 0 57.984-29.888 107.584-86.656 107.584-35.264 0-68.736-25.088-79.488-64.512-1.856-6.656-3.008-13.76-3.008-22.144v-51.392zM942.080 266.112c-13.76-6.592-44.224-16.704-83.072-16.704-87.232 0-144.064 59.136-144.064 147.584 0 89.088 60.928 154.24 155.392 154.24 31.104 0 58.56-7.808 72.96-15.552l-11.968-40.064c-12.544 6.592-32.32 13.76-60.992 13.76-66.304 0-102.208-49.6-102.208-109.376 0-66.944 43.072-108.224 100.416-108.224 29.888 0 49.536 7.168 64.512 13.76l9.024-39.424zM64 385.728v29.888h896v-29.888h-896z" />
<glyph unicode="&#xe658;" glyph-name="text" d="M401.28 320.448l-63.552-192.448h-81.728l208.768 611.84h94.464l208.768-611.84h-84.416l-65.344 192.448h-216.96zM602.816 382.208l-60.864 176.128c-13.632 39.936-22.656 76.224-31.744 111.616h-1.856c-9.088-35.392-18.112-73.536-30.848-110.72l-59.904-177.024h185.216z" />
<glyph unicode="&#xe659;" glyph-name="fx" d="M490.496 598.144l-51.2-202.112c-23.936-95.36-47.232-164.48-70.016-207.36s-49.344-74.624-79.808-95.104c-30.528-20.608-65.408-30.848-104.832-30.848-24.832 0-43.008 4.736-54.656 14.272-11.712 9.408-17.472 20.608-17.472 33.408 0 11.968 4.8 22.336 14.464 31.040s22.336 13.12 38.080 13.12c13.12 0 23.168-3.392 30.208-10.048s10.496-15.168 10.496-25.344c0-9.344-2.176-16.256-6.592-20.8-4.352-4.48-6.592-7.488-6.592-8.96l2.176-3.072c1.728-1.408 3.84-2.176 6.144-2.176 8.768 0 16.192 2.752 22.336 8.32 15.424 13.696 27.008 30.336 34.56 49.856 5.248 13.44 15.296 48.896 30.208 106.304l89.28 349.568h-60.8l14.464 51.2c21.888-0.32 37.76 2.496 47.68 8.32s20.416 18.944 31.488 39.36c32.064 59.2 65.92 101.632 101.504 127.296s75.264 38.528 118.976 38.528c28.032 0 48.384-5.376 60.992-16.192 12.736-10.816 19.072-24.832 19.072-41.984 0-15.168-4.224-27.2-12.672-36.096-8.576-9.024-19.072-13.44-31.616-13.44-11.712 0-21.312 3.648-28.864 10.944s-11.392 16.064-11.392 26.24c0 7.296 2.368 14.976 7.232 23.168 4.736 8.192 7.168 13.696 7.168 16.64 0 3.2-1.088 5.824-3.328 7.872-2.048 2.048-4.928 3.072-8.448 3.072-17.216 0-34.88-10.624-52.928-31.936-29.76-34.112-53.696-88.064-71.744-161.856h63.424l-15.296-51.2h-61.696zM551.552 513.408l128.768 22.144c23.36-36.672 39.872-76.992 49.408-121.024 24.128 35.648 42.304 60.672 54.656 74.88 16.448 19.2 30.080 31.68 40.704 37.44 10.816 5.76 22.208 8.64 34.176 8.64 13.504 0 23.936-3.712 31.168-11.072 7.232-7.424 10.88-17.344 10.88-29.888 0-11.84-3.648-21.44-10.88-28.928-7.232-7.424-16.256-11.2-27.136-11.2-7.872 0-16.896 1.408-27.136 4.224-10.176 2.88-17.344 4.288-21.184 4.288-10.368 0-20.16-3.712-29.568-11.072-12.736-10.112-28.48-31.616-47.168-64.576 20.864-73.792 37.632-118.784 50.176-135.040 7.36-9.6 14.848-14.4 22.528-14.4 6.4 0 11.968 1.6 16.576 4.736 7.168 5.184 18.112 18.112 32.896 38.72l13.248-7.744c-21.632-34.88-42.752-59.584-63.424-73.728-15.744-11.072-31.168-16.64-46.528-16.64-15.68 0-28.8 3.584-39.232 10.496-10.496 7.040-19.776 18.432-27.904 34.368-8.128 15.744-17.728 41.28-28.8 76.096-28.736-36.672-51.328-63.36-67.712-80.256-16.32-16.832-29.888-27.84-40.768-33.024s-22.4-7.744-34.688-7.744c-12.736 0-22.912 3.712-30.4 11.072-7.552 7.36-11.264 17.024-11.264 28.8 0 12.48 4.032 22.848 12.16 30.912 8.064 8.128 18.432 12.16 30.976 12.16 6.656 0 14.208-1.984 22.528-5.888 12.352-5.952 21.184-8.896 26.56-8.896 7.168 0 13.504 1.472 19.2 4.416 7.36 3.712 16.768 11.648 28.032 24 6.848 7.552 19.584 23.808 38.016 48.704-23.616 87.808-42.112 140.224-55.36 157.376-8.384 11.072-19.008 16.64-31.744 16.64-6.656 0-14.72-0.96-24.32-2.944l2.56 13.952z" />
<glyph unicode="&#xe65a;" glyph-name="subscript" d="M577.984 704h62.016v-65.984l-190.016-190.016 190.016-190.016v-65.984h-62.016l-192 192-192-192h-64l-1.984 1.984v60.032l193.984 193.984-193.984 193.984v60.032l1.984 1.984h64l192-192 192 192zM791.744 109.056l-0.576 1.152 34.176 36.416c22.208 24.256 37.44 42.496 45.696 54.656 8.256 12.352 12.352 26.368 12.352 42.368 0 23.68-7.808 42.368-23.296 56-15.552 13.632-37.184 20.352-64.832 20.352-26.176 0-47.104-8-62.976-24.256-15.808-16.256-23.424-36.032-22.848-59.392l0.448-1.152h57.152c0 11.648 2.56 21.12 7.552 28.608 5.056 7.424 11.968 11.072 20.736 11.072 9.792 0 17.216-2.816 22.080-8.576 4.928-5.888 7.36-13.632 7.36-23.36 0-6.72-2.432-14.784-7.232-24-4.864-9.28-12.416-19.776-22.72-31.552l-81.152-85.312v-38.080h176.64v45.056h-98.56z" />
<glyph unicode="&#xe65b;" glyph-name="superscript" d="M577.984 704h62.016v-65.984l-190.016-190.016 190.016-190.016v-65.984h-62.016l-192 192-192-192h-64l-1.984 1.984v60.032l193.984 193.984-193.984 193.984v60.032l1.984 1.984h64l192-192 192 192zM791.744 621.056l-0.576 1.152 34.176 36.48c22.208 24.256 37.44 42.432 45.696 54.656 8.256 12.352 12.352 26.368 12.352 42.304 0 23.744-7.808 42.432-23.296 56-15.552 13.568-37.184 20.352-64.832 20.352-26.176 0-47.104-8-62.976-24.256-15.808-16.192-23.424-36.032-22.848-59.328l0.448-1.088h57.152c0 11.648 2.56 21.056 7.552 28.544 5.056 7.488 11.968 11.072 20.736 11.072 9.792 0 17.216-2.752 22.080-8.576 4.928-5.824 7.36-13.568 7.36-23.296 0-6.784-2.432-14.848-7.232-24-4.864-9.28-12.416-19.84-22.72-31.616l-81.152-85.312v-38.144h176.64v45.056h-98.56z" />
<glyph unicode="&#xe65c;" glyph-name="background" d="M480 832c0 0-288-256-288-480 0-159.040 128.96-288 288-288s288 128.96 288 288c0 224-288 480-288 480zM480 128c-123.776 0-224 100.224-224 224 0 192 224 393.344 224 393.344s224-201.344 224-393.344c0-123.776-100.224-224-224-224zM608 384c0-88.384-71.616-160-160-160v64c52.992 0 96 43.008 96 96h64z" />
<glyph unicode="&#xe65d;" glyph-name="sum" d="M768 832h-576v-128l256-256-256-256v-128h576v128h-448l256 256-256 256h448z" />
<glyph unicode="&#xe65e;" glyph-name="increase-decimal" d="M768 448c-70.656 0-128-57.344-128-128v-128c0-70.656 57.344-128 128-128 70.72 0 128 57.344 128 128v128c0 70.656-57.28 128-128 128zM832 211.968c0-47.104-28.608-85.376-64-85.376-35.264 0-64 38.272-64 85.376v85.376c0 47.040 28.736 85.248 64 85.248 35.392 0 64-38.208 64-85.248v-85.376zM768 896c-70.656 0-128-57.344-128-128v-128c0-70.656 57.344-128 128-128 70.72 0 128 57.344 128 128v128c0 70.656-57.28 128-128 128zM832 659.968c0-47.104-28.608-85.312-64-85.312-35.264 0-64 38.208-64 85.312v85.376c0 47.104 28.736 85.312 64 85.312 35.392 0 64-38.208 64-85.312v-85.376zM448 448c-70.656 0-128-57.344-128-128v-128c0-70.656 57.344-128 128-128s128 57.344 128 128v128c0 70.656-57.28 128-128 128zM512 211.968c0-47.104-28.672-85.376-64-85.376s-64 38.272-64 85.376v85.376c0 47.040 28.672 85.248 64 85.248s64-38.208 64-85.248v-85.376zM192 128h64v-64h-64v64zM512 576h64v-64h-64v64zM384 896v-384l-230.4 192z" />
<glyph unicode="&#xe65f;" glyph-name="decrease-decimal" d="M768 896c-70.656 0-128-57.344-128-128v-128c0-70.656 57.344-128 128-128 70.72 0 128 57.344 128 128v128c0 70.656-57.28 128-128 128zM832 659.968c0-47.104-28.608-85.376-64-85.376-35.264 0-64 38.272-64 85.376v85.376c0 47.040 28.736 85.248 64 85.248 35.392 0 64-38.208 64-85.248v-85.376zM768 448c-70.656 0-128-57.344-128-128v-128c0-70.656 57.344-128 128-128 70.72 0 128 57.344 128 128v128c0 70.656-57.28 128-128 128zM832 211.968c0-47.104-28.608-85.376-64-85.376-35.264 0-64 38.272-64 85.376v85.376c0 47.040 28.736 85.248 64 85.248 35.392 0 64-38.208 64-85.248v-85.376zM448 896c-70.656 0-128-57.344-128-128v-128c0-70.656 57.344-128 128-128s128 57.344 128 128v128c0 70.656-57.28 128-128 128zM512 659.968c0-47.104-28.672-85.376-64-85.376s-64 38.272-64 85.376v85.376c0 47.040 28.672 85.248 64 85.248s64-38.208 64-85.248v-85.376zM256 512h-64v64h64v-64zM576 64h-64v64h64v-64zM358.4 256l-230.4-192v384l230.4-192z" />
<glyph unicode="&#xe660;" glyph-name="justify-left" d="M896 768h-768v64h768v-64zM896 576h-768v-64h768v64zM704 704h-576v-64h576v64zM704 448h-576v-64h576v64zM704 192h-576v-64h576v64zM896 320h-768v-64h768v64z" />
<glyph unicode="&#xe661;" glyph-name="justify-center" d="M128 832h768v-64h-768v64zM128 512h768v64h-768v-64zM256 640h512v64h-512v-64zM256 384h512v64h-512v-64zM256 128h512v64h-512v-64zM128 256h768v64h-768v-64z" />
<glyph unicode="&#xe662;" glyph-name="justify-right" d="M128 832h768v-64h-768v64zM128 512h768v64h-768v-64zM320 640h576v64h-576v-64zM320 384h576v64h-576v-64zM320 128h576v64h-576v-64zM128 256h768v64h-768v-64z" />
<glyph unicode="&#xe663;" glyph-name="justify-full" d="M128 832h768v-64h-768v64zM128 512h768v64h-768v-64zM128 640h768v64h-768v-64zM128 384h768v64h-768v-64zM128 128h768v64h-768v-64zM128 256h768v64h-768v-64z" />
<glyph unicode="&#xe664;" glyph-name="justify-clear" d="M128 128h512l64-64h-576v64zM128 192h448l-64 64h-384v-64zM128 320h320l-64 64h-256v-64zM128 448h192l-64 64h-128v-64zM128 576h64l-64 64v-64zM830.336 192h65.664v64h-128v-1.664l-65.664 65.664h193.664v64h-256v-1.664l-65.664 65.664h321.664v64h-384v-1.664l-65.664 65.664h449.664v64h-512v-1.664l-65.6 65.664h577.6v64h-640v-1.6l-128.832 128.768-43.584-43.584 858.56-858.624 43.648 43.648-155.456 155.392z" />
<glyph unicode="&#xe665;" glyph-name="align-top" d="M128 896h768v-64h-768v64zM128 576h768v64h-768v-64zM192 704h640v64h-640v-64z" />
<glyph unicode="&#xe666;" glyph-name="align-middle" d="M128 640h768v-64h-768v64zM128 320h768v64h-768v-64zM192 448h640v64h-640v-64z" />
<glyph unicode="&#xe667;" glyph-name="align-bottom" d="M128 320h768v-64h-768v64zM128 0h768v64h-768v-64zM192 128h640v64h-640v-64z" />
<glyph unicode="&#xe668;" glyph-name="indent" d="M128 832h768v-64h-768v64zM512 512h384v64h-384v-64zM512 640h384v64h-384v-64zM512 384h384v64h-384v-64zM128 128h768v64h-768v-64zM128 256h768v64h-768v-64zM128 704v-320l192 160-192 160z" />
<glyph unicode="&#xe669;" glyph-name="outdent" d="M128 832h768v-64h-768v64zM512 512h384v64h-384v-64zM512 640h384v64h-384v-64zM512 384h384v64h-384v-64zM128 128h768v64h-768v-64zM128 256h768v64h-768v-64zM128 544l192-160v320l-192-160z" />
<glyph unicode="&#xe66a;" glyph-name="insert-n" d="M704 448h-704v64h704v-64zM832 480l192-192v384l-192-192zM704 320h-384v-64h384v64zM704 192h-384v-64h384v64z" />
<glyph unicode="&#xe66b;" glyph-name="insert-m" d="M832 480l192 192v-384l-192 192zM704 320h-384v-64h384v64zM704 704h-384v-64h384v64zM704 512h-704v-64h704v64z" />
<glyph unicode="&#xe66c;" glyph-name="insert-s" d="M704 448h-704v64h704v-64zM832 480l192-192v384l-192-192zM704 704h-384v-64h384v64zM704 832h-384v-64h384v64z" />
<glyph unicode="&#xe66d;" glyph-name="insert-unordered-list" d="M384 768h512v-64h-512v64zM384 448h512v64h-512v-64zM384 192h512v64h-512v-64zM224 832c-52.992 0-96-42.944-96-96s43.008-96 96-96 96 42.944 96 96-43.008 96-96 96zM224 576c-52.992 0-96-42.944-96-96s43.008-96 96-96 96 42.944 96 96-43.008 96-96 96zM224 320c-52.992 0-96-43.008-96-96s43.008-96 96-96 96 43.008 96 96-43.008 96-96 96z" />
<glyph unicode="&#xe66e;" glyph-name="insert-ordered-list" d="M384 768h512v-64h-512v64zM384 448h512v64h-512v-64zM384 192h512v64h-512v-64zM241.792 864.128h-37.12c-5.184-14.528-14.784-27.2-28.8-38.080-13.888-10.944-26.88-18.304-38.848-22.208v-41.472c22.72 7.488 42.432 19.072 59.072 34.688v-172.224h45.696v239.296zM188.416 402.56c2.432 4.096 5.568 8.32 9.344 12.672 3.84 4.352 12.992 13.12 27.456 26.368 14.4 13.184 24.384 23.36 30.016 30.4 8.256 10.624 14.336 20.8 18.24 30.528 3.84 9.728 5.76 19.968 5.76 30.656 0 18.816-6.656 34.624-20.16 47.296-13.44 12.736-31.936 19.008-55.424 19.008-21.504 0-39.36-5.44-53.76-16.448-14.272-10.944-22.784-28.992-25.472-54.080l45.504-4.544c0.832 13.248 4.096 22.848 9.792 28.544 5.632 5.76 13.248 8.64 22.784 8.64 9.664 0 17.216-2.752 22.656-8.192 5.44-5.504 8.192-13.312 8.192-23.488 0-9.216-3.072-18.56-9.472-28.032-4.608-6.784-17.28-19.84-37.824-39.040-25.664-23.68-42.752-42.752-51.392-57.152-8.704-14.336-13.888-29.568-15.616-45.568h160.128v42.432h-90.752zM148.032 88.896c14.144-12.416 32.064-18.624 53.568-18.624 22.72 0 41.792 7.424 57.152 22.144 15.232 14.72 22.912 32.64 22.912 53.504 0 14.464-4.16 26.752-12.288 36.928-8.128 10.24-19.136 16.768-32.768 19.712 22.912 12.48 34.304 29.12 34.304 50.048 0 14.72-5.568 28.032-16.832 39.68-13.44 14.4-31.424 21.504-53.888 21.504-13.184 0-25.024-2.496-35.648-7.424-10.56-4.864-18.752-11.648-24.64-20.288-5.952-8.64-10.368-20.096-13.312-34.56l42.112-7.104c1.28 10.368 4.544 18.304 10.048 23.68 5.568 5.44 12.224 8.192 19.968 8.192 8 0 14.336-2.432 19.072-7.232 4.8-4.672 7.232-11.136 7.232-19.136 0-9.408-3.264-16.96-9.792-22.656s-15.936-8.384-28.224-8.064l-5.12-37.248c8.192 2.24 15.168 3.456 20.992 3.456 8.896 0 16.512-3.328 22.592-10.048 6.208-6.72 9.344-15.872 9.344-27.392 0-12.032-3.264-21.76-9.664-28.928-6.528-7.104-14.4-10.688-23.872-10.688-8.768 0-16.256 2.944-22.464 9.024-6.208 5.888-9.92 14.592-11.328 25.728l-44.224-5.504c2.304-20.032 10.496-36.288 24.768-48.704z" />
<glyph unicode="&#xe66f;" glyph-name="sort-asc" d="M320 704h-192v64h192v-64zM512 576h-384v-64h384v64zM704 384h-576v-64h576v64zM896 192h-768v-64h768v64z" />
<glyph unicode="&#xe670;" glyph-name="sort-desc" d="M128 192h192v-64h-192v64zM128 384h384v-64h-384v64zM128 576h576v-64h-576v64zM128 768h768v-64h-768v64z" />
<glyph unicode="&#xe671;" glyph-name="unsort" d="M512 384h-384v-64h384v64zM704 576h-576v-64h576v64zM320 704h-192v64h192v-64zM896 192h-768v-64h768v64z" />
<glyph unicode="&#xe672;" glyph-name="hyperlink" d="M768 192c-94.72 0-177.344 51.52-221.632 128h221.632c70.656 0 128 57.344 128 128s-57.344 128-128 128h-221.632c44.288 76.48 126.912 128 221.632 128 141.376 0 256-114.624 256-256s-114.624-256-256-256v0zM256 448c0 35.392 28.672 64 64 64h384c35.392 0 64-28.608 64-64s-28.608-64-64-64h-384c-35.328 0-64 28.608-64 64v0zM128 448c0-70.656 57.344-128 128-128h221.632c-44.224-76.48-126.912-128-221.632-128-141.376 0-256 114.624-256 256s114.624 256 256 256c94.72 0 177.344-51.52 221.632-128h-221.632c-70.656 0-128-57.344-128-128v0z" />
<glyph unicode="&#xe673;" glyph-name="hyperlink-remove" d="M320 448c0 35.392-28.672 64-64 64h-128c-35.328 0-64-28.608-64-64 0-35.328 28.672-64 64-64h128c35.328 0 64 28.672 64 64zM308.672 818.688l-65.984 65.984-35.392-35.328 66.048-66.048zM203.328 50.688l35.328-35.392 66.048 66.048-35.392 35.328zM925.696 576c-44.288 76.48-126.976 128-221.696 128-34.688 0-67.84-6.976-97.984-19.52v-108.48h319.68zM880.704 849.344l-35.392 35.328-65.984-65.984 35.328-35.392zM162.368 320c44.224-76.48 126.912-128 221.632-128 34.688 0 67.84 6.976 97.984 19.52v108.48h-319.616zM783.296 81.344l66.048-66.048 35.328 35.392-65.984 65.984zM960 512h-128c-35.328 0-64-28.608-64-64 0-35.328 28.672-64 64-64h128c35.328 0 64 28.672 64 64 0 35.392-28.672 64-64 64zM606.016 320v-108.48c30.144-12.544 63.296-19.52 97.984-19.52 94.72 0 177.408 51.52 221.696 128h-319.68zM162.368 576h319.616v108.48c-30.144 12.544-63.296 19.52-97.984 19.52-94.72 0-177.408-51.52-221.632-128zM512 926.016h64v-158.016h-64v158.016zM512 128h64v-158.016h-64v158.016z" />
<glyph unicode="&#xe674;" glyph-name="clearformat" d="M874.048 628.992l-271.552 271.552-452.544-452.544v-180.992l234.048-234.048v-32.96h448v64h-341.952l384 384v180.992zM810.048 564.992l-388.544-388.544-207.552 207.552v37.44l388.544 388.608 207.552-207.552v-37.504z" />
<glyph unicode="&#xe675;" glyph-name="html" d="M320 128l-320 320 320 320v-128l-192-192 192-192v-128zM704 128l320 320-320 320v-128l192-192-192-192v-128zM640 896h-64l-192-896h64l192 896z" />
<glyph unicode="&#xe676;" glyph-name="exception" d="M512 832c-212.032 0-384-171.968-384-384s171.968-384 384-384 384 171.968 384 384-171.968 384-384 384zM832 448c0-176.768-143.232-320-320-320-176.704 0-320 143.232-320 320s143.296 320 320 320c176.768 0 320-143.232 320-320zM576 384h-128v256h128v-256zM576 256h-128v64h128v-64z" />
<glyph unicode="&#xe677;" glyph-name="custom" d="M841.152 404.416c-79.168-29.056-101.056-81.792-65.536-158.4 35.456-76.544 14.912-97.088-61.632-61.568-76.544 35.456-129.344 13.568-158.4-65.6-29.056-79.232-58.112-79.232-87.104 0-29.056 79.168-81.856 101.056-158.4 65.6-76.544-35.52-97.088-14.976-61.632 61.568 35.52 76.544 13.632 129.344-65.6 158.4s-79.232 58.112 0 87.104 101.12 81.792 65.6 158.4c-35.456 76.608-14.976 97.088 61.632 61.632 76.544-35.52 129.344-13.632 158.4 65.6s58.112 79.232 87.104 0c29.056-79.232 81.792-101.12 158.4-65.6 76.544 35.456 97.088 14.912 61.632-61.632-35.52-76.544-13.632-129.344 65.536-158.4 79.232-28.992 79.232-58.048 0-87.104v0zM512 576c-70.656 0-128-57.344-128-128s57.344-128 128-128 128 57.344 128 128-57.344 128-128 128v0z" />
<glyph unicode="&#xe678;" glyph-name="cog" d="M960 448c0 27.52-2.496 54.4-7.232 80.512h-85.696c-9.28 40.96-25.344 79.168-47.040 113.6l60.608 60.608c-15.104 21.824-32.384 42.624-51.904 62.080-19.392 19.392-40.192 36.672-62.016 51.84l-60.608-60.672c-34.368 21.76-72.768 37.888-113.6 47.104v85.696c-26.112 4.736-52.992 7.232-80.512 7.232-27.456 0-54.4-2.496-80.512-7.232v-85.696c-40.896-9.28-79.232-25.408-113.6-47.104l-60.608 60.672c-21.824-15.168-42.624-32.448-62.080-51.84-19.456-19.456-36.736-40.256-51.84-62.080l60.608-60.608c-21.632-34.432-37.76-72.704-47.040-113.6h-85.696c-4.736-26.112-7.232-52.992-7.232-80.512s2.496-54.4 7.232-80.512h85.696c9.28-40.896 25.344-79.104 47.104-113.6l-60.608-60.608c15.104-21.76 32.384-42.624 51.84-62.016s40.192-36.736 62.016-51.904l60.608 60.736c34.432-21.76 72.704-37.888 113.6-47.104v-85.76c26.112-4.736 53.056-7.232 80.512-7.232 27.52 0 54.4 2.496 80.512 7.232v85.76c40.896 9.28 79.232 25.344 113.6 47.104l60.608-60.736c21.824 15.104 42.624 32.512 62.016 51.904 19.52 19.392 36.736 40.256 51.904 62.016l-60.608 60.608c21.696 34.496 37.824 72.768 47.040 113.6h85.696c4.736 26.112 7.232 52.992 7.232 80.512zM512 300.992c-81.088 0-147.008 65.984-147.008 147.008 0 81.088 65.92 147.008 147.008 147.008s147.008-65.92 147.008-147.008c0-81.024-65.92-147.008-147.008-147.008z" />
<glyph unicode="&#xe679;" glyph-name="create-table" d="M960 896v-832h-576v256h-256v576h832zM640 640v192h-192v-192h192zM448 576v-192h192v192h-192zM896 832h-192v-192h192v192zM896 576h-192v-192h192v192zM896 128v192h-192v-192h192zM448 128h192v192h-192v-192zM192 384h192v192h-192v-192zM192 640h192v192h-192v-192zM0 64h128v-128h64v128h128v64h-128v128h-64v-128h-128v-64z" />
<glyph unicode="&#xe67a;" glyph-name="add-column-left" d="M64 0v960h256v-960h-256zM960 896v-832l-576 0.064v831.936h576zM448 640h192v192h-192v-192zM448 384h192v192h-192v-192zM448 128h192v192h-192v-192zM896 320h-192v-192h192v192zM896 384v192h-192v-192h192zM896 832h-192v-192h192v192z" />
<glyph unicode="&#xe67b;" glyph-name="add-column-right" d="M704 0v960h256v-960h-256zM640 896v-832h-576v832h576zM576 832h-192v-192h192v192zM576 576h-192v-192h192v192zM576 320h-192v-192h192v192zM128 128h192v192h-192v-192zM320 384v192h-192v-192h192zM128 640h192v192h-192v-192z" />
<glyph unicode="&#xe67c;" glyph-name="delete-column" d="M352 726.72v41.28h38.72l120-120 120 120h40l1.28-1.28v-37.504l-121.28-121.216 121.28-121.28v-37.44l-1.28-1.28h-40l-120 120-120-120h-38.72v41.28l118.72 118.72-118.72 118.72zM384 384v-448h256v448h-256zM384 960v-128h256v128h-256zM704 896h256v-832h-256v832zM896 320h-128v-192h128v192zM896 576h-128v-192h128v192zM896 832h-128v-192h128v192zM64 896h256v-832h-256v832zM256 320h-128v-192h128v192zM256 576h-128v-192h128v192zM256 832h-128v-192h128v192z" />
<glyph unicode="&#xe67d;" glyph-name="add-row-above" d="M1024 640h-960v256h960v-256zM128 576h832v-576h-832v576zM192 512v-192h192v192h-192zM448 512v-192h192v192h-192zM704 512v-192h192v192h-192zM896 64v192h-192v-192h192zM640 256h-192v-192h192v192zM384 64v192h-192v-192h192z" />
<glyph unicode="&#xe67e;" glyph-name="add-row-below" d="M1024 0h-960v256h960v-256zM128 896h832v-576h-832v576zM384 384v192h-192v-192h192zM640 384v192h-192v-192h192zM896 384v192h-192v-192h192zM704 832v-192h192v192h-192zM640 832h-192v-192h192v192zM192 832v-192h192v192h-192z" />
<glyph unicode="&#xe67f;" glyph-name="delete-row" d="M790.72 608h41.28v-38.72l-120-120 120-120v-40l-1.28-1.28h-37.504l-121.216 121.28-121.28-121.28h-37.44l-1.28 1.28v40l120 120-120 120v38.72h41.28l118.72-118.72 118.72 118.72zM448 576h-448v-256h448v256zM1024 576h-128v-256h128v256zM960 256v-256h-832v256h832zM384 64v128h-192v-128h192zM640 64v128h-192v-128h192zM896 64v128h-192v-128h192zM960 896v-256h-832v256h832zM384 704v128h-192v-128h192zM640 704v128h-192v-128h192zM896 704v128h-192v-128h192z" />
<glyph unicode="&#xe680;" glyph-name="merge-cells" d="M64 896v-896h832v896h-832zM384 832h192v-128h-192v128zM128 832h192v-128h-192v128zM320 64h-192v128h192v-128zM576 64h-192v128h192v-128zM832 64h-192v128h192v-128zM832 256h-704v384h704v-384zM832 704h-192v128h192v-128z" />
<glyph unicode="&#xe681;" glyph-name="normal-layout" d="M64 896v-832h832v832h-832zM576 832v-192h-192v192h192zM576 576v-192h-192v192h192zM128 832h192v-192h-192v192zM128 576h192v-192h-192v192zM128 128v192h192v-192h-192zM384 128v192h192v-192h-192zM832 128h-192v192h192v-192zM832 384h-192v192h192v-192zM832 640h-192v192h192v-192z" />
<glyph unicode="&#xe682;" glyph-name="page-layout" d="M576 576h-192v64h192v-64zM576 512h-192v-64h192v64zM576 384h-192v-64h192v64zM704 768v-576h-448v576h448zM640 704h-320v-448h320v448zM896 896v-832h-832v832h832zM832 832h-704v-704h704v704z" />
<glyph unicode="&#xe683;" glyph-name="all-borders" d="M64 896v-832h832v832h-832zM128 832h320v-320h-320v320zM128 128v320h320v-320h-320zM832 128h-320v320h320v-320zM832 512h-320v320h320v-320z" />
<glyph unicode="&#xe684;" glyph-name="inside-borders" d="M128 832h-64v64h64v-64zM128 768h-64v-64h64v64zM128 640h-64v-64h64v64zM128 384h-64v-64h64v64zM128 256h-64v-64h64v64zM896 768h-64v-64h64v64zM896 640h-64v-64h64v64zM896 384h-64v-64h64v64zM896 256h-64v-64h64v64zM256 896h-64v-64h64v64zM384 896h-64v-64h64v64zM128 128h-64v-64h64v64zM256 128h-64v-64h64v64zM384 128h-64v-64h64v64zM640 128h-64v-64h64v64zM768 128h-64v-64h64v64zM896 128h-64v-64h64v64zM640 896h-64v-64h64v64zM768 896h-64v-64h64v64zM896 896h-64v-64h64v64zM896 512h-384v384h-64v-384h-384v-64h384v-384h64v384h384v64z" />
<glyph unicode="&#xe685;" glyph-name="inside-horizontal-borders" d="M896 512v-64h-832v64h832zM128 896h-64v-64h64v64zM128 704h-64v64h64v-64zM128 576h-64v64h64v-64zM128 320h-64v64h64v-64zM128 192h-64v64h64v-64zM896 704h-64v64h64v-64zM896 576h-64v64h64v-64zM896 320h-64v64h64v-64zM896 192h-64v64h64v-64zM256 832h-64v64h64v-64zM384 832h-64v64h64v-64zM512 832h-64v64h64v-64zM512 704h-64v64h64v-64zM512 576h-64v64h64v-64zM512 320h-64v64h64v-64zM512 192h-64v64h64v-64zM512 64h-64v64h64v-64zM128 128h-64v-64h64v64zM256 64h-64v64h64v-64zM384 64h-64v64h64v-64zM640 128h-64v-64h64v64zM768 64h-64v64h64v-64zM896 64h-64v64h64v-64zM640 896h-64v-64h64v64zM768 832h-64v64h64v-64zM896 832h-64v64h64v-64z" />
<glyph unicode="&#xe686;" glyph-name="inside-vertical-borders" d="M512 64h-64v832h64v-832zM896 832v64h-64v-64h64zM704 832v64h64v-64h-64zM576 832v64h64v-64h-64zM320 832v64h64v-64h-64zM192 832v64h64v-64h-64zM704 64v64h64v-64h-64zM576 64v64h64v-64h-64zM320 64v64h64v-64h-64zM192 64v64h64v-64h-64zM832 704v64h64v-64h-64zM832 576v64h64v-64h-64zM832 448v64h64v-64h-64zM704 448v64h64v-64h-64zM576 448v64h64v-64h-64zM320 448v64h64v-64h-64zM192 448v64h64v-64h-64zM64 448v64h64v-64h-64zM128 832v64h-64v-64h64zM64 704v64h64v-64h-64zM64 576v64h64v-64h-64zM128 320v64h-64v-64h64zM64 192v64h64v-64h-64zM64 64v64h64v-64h-64zM896 320v64h-64v-64h64zM832 192v64h64v-64h-64zM832 64v64h64v-64h-64z" />
<glyph unicode="&#xe687;" glyph-name="outside-borders" d="M256 448h-64v64h64v-64zM384 512h-64v-64h64v64zM512 512h-64v-64h64v64zM512 640h-64v-64h64v64zM512 768h-64v-64h64v64zM512 256h-64v-64h64v64zM512 384h-64v-64h64v64zM640 512h-64v-64h64v64zM768 512h-64v-64h64v64zM896 896v-832h-832v832h832zM832 832h-704v-704h704v704z" />
<glyph unicode="&#xe688;" glyph-name="top-border" d="M896 896v-64h-832v64h832zM128 768h-64v-64h64v64zM128 576h-64v64h64v-64zM128 448h-64v64h64v-64zM128 320h-64v64h64v-64zM128 192h-64v64h64v-64zM896 576h-64v64h64v-64zM896 448h-64v64h64v-64zM896 320h-64v64h64v-64zM896 192h-64v64h64v-64zM256 448h-64v64h64v-64zM384 448h-64v64h64v-64zM512 704h-64v64h64v-64zM512 576h-64v64h64v-64zM512 448h-64v64h64v-64zM512 320h-64v64h64v-64zM512 192h-64v64h64v-64zM512 64h-64v64h64v-64zM128 128h-64v-64h64v64zM256 64h-64v64h64v-64zM384 64h-64v64h64v-64zM640 128h-64v-64h64v64zM768 64h-64v64h64v-64zM896 64h-64v64h64v-64zM640 512h-64v-64h64v64zM768 448h-64v64h64v-64zM896 704h-64v64h64v-64z" />
<glyph unicode="&#xe689;" glyph-name="right-border" d="M896 64h-64v832h64v-832zM768 832v64h-64v-64h64zM576 832v64h64v-64h-64zM448 832v64h64v-64h-64zM320 832v64h64v-64h-64zM192 832v64h64v-64h-64zM576 64v64h64v-64h-64zM448 64v64h64v-64h-64zM320 64v64h64v-64h-64zM192 64v64h64v-64h-64zM448 704v64h64v-64h-64zM448 576v64h64v-64h-64zM704 448v64h64v-64h-64zM576 448v64h64v-64h-64zM448 448v64h64v-64h-64zM320 448v64h64v-64h-64zM192 448v64h64v-64h-64zM64 448v64h64v-64h-64zM128 832v64h-64v-64h64zM64 704v64h64v-64h-64zM64 576v64h64v-64h-64zM128 320v64h-64v-64h64zM64 192v64h64v-64h-64zM64 64v64h64v-64h-64zM512 320v64h-64v-64h64zM448 192v64h64v-64h-64zM704 64v64h64v-64h-64z" />
<glyph unicode="&#xe68a;" glyph-name="bottom-border" d="M64 64v64h832v-64h-832zM832 192h64v64h-64v-64zM832 384h64v-64h-64v64zM832 512h64v-64h-64v64zM832 640h64v-64h-64v64zM832 768h64v-64h-64v64zM64 384h64v-64h-64v64zM64 512h64v-64h-64v64zM64 640h64v-64h-64v64zM64 768h64v-64h-64v64zM704 512h64v-64h-64v64zM576 512h64v-64h-64v64zM448 256h64v-64h-64v64zM448 384h64v-64h-64v64zM448 512h64v-64h-64v64zM448 640h64v-64h-64v64zM448 768h64v-64h-64v64zM448 896h64v-64h-64v64zM832 832h64v64h-64v-64zM704 896h64v-64h-64v64zM576 896h64v-64h-64v64zM320 832h64v64h-64v-64zM192 896h64v-64h-64v64zM64 896h64v-64h-64v64zM320 448h64v64h-64v-64zM192 512h64v-64h-64v64zM64 256h64v-64h-64v64z" />
<glyph unicode="&#xe68b;" glyph-name="left-border" d="M64 896h64v-832h-64v832zM192 128v-64h64v64h-64zM384 128v-64h-64v64h64zM512 128v-64h-64v64h64zM640 128v-64h-64v64h64zM768 128v-64h-64v64h64zM384 896v-64h-64v64h64zM512 896v-64h-64v64h64zM640 896v-64h-64v64h64zM768 896v-64h-64v64h64zM512 256v-64h-64v64h64zM512 384v-64h-64v64h64zM256 512v-64h-64v64h64zM384 512v-64h-64v64h64zM512 512v-64h-64v64h64zM640 512v-64h-64v64h64zM768 512v-64h-64v64h64zM896 512v-64h-64v64h64zM832 128v-64h64v64h-64zM896 256v-64h-64v64h64zM896 384v-64h-64v64h64zM832 640v-64h64v64h-64zM896 768v-64h-64v64h64zM896 896v-64h-64v64h64zM448 640v-64h64v64h-64zM512 768v-64h-64v64h64zM256 896v-64h-64v64h64z" />
<glyph unicode="&#xe68c;" glyph-name="no-borders" d="M768 832v64h-64v-64h64zM576 832v64h64v-64h-64zM448 832v64h64v-64h-64zM320 832v64h64v-64h-64zM192 832v64h64v-64h-64zM576 64v64h64v-64h-64zM448 64v64h64v-64h-64zM320 64v64h64v-64h-64zM192 64v64h64v-64h-64zM448 704v64h64v-64h-64zM448 576v64h64v-64h-64zM704 448v64h64v-64h-64zM576 448v64h64v-64h-64zM448 448v64h64v-64h-64zM320 448v64h64v-64h-64zM192 448v64h64v-64h-64zM64 448v64h64v-64h-64zM128 832v64h-64v-64h64zM64 704v64h64v-64h-64zM64 576v64h64v-64h-64zM128 320v64h-64v-64h64zM64 192v64h64v-64h-64zM64 64v64h64v-64h-64zM832 448v64h64v-64h-64zM896 832v64h-64v-64h64zM832 704v64h64v-64h-64zM832 576v64h64v-64h-64zM896 320v64h-64v-64h64zM832 192v64h64v-64h-64zM832 64v64h64v-64h-64zM512 320v64h-64v-64h64zM448 192v64h64v-64h-64zM704 64v64h64v-64h-64z" />
<glyph unicode="&#xe68d;" glyph-name="pdfa" d="M576 896h-384v-832h640v576l-256 256zM768 128h-512v704h320v-192h192v-512zM750.656 403.2c-0.512 4.352-3.52 9.664-7.104 13.312-9.472 10.368-30.72 15.808-62.976 16.32-21.76 0.192-48.256-1.856-75.904-6.144-12.288 7.872-25.152 16.448-35.2 26.752-27.008 27.648-49.472 66.112-63.488 108.288 0.96 4.032 1.728 7.424 2.368 10.944 0 0 15.296 94.784 11.2 126.848-0.512 4.48-0.96 5.696-1.984 9.024l-1.28 3.776c-4.16 10.432-12.224 21.632-24.896 20.928l-7.488 0.32h-0.256c-14.080 0-25.728-7.936-28.672-19.84-9.28-37.312 0.384-93.184 17.472-165.44l-4.352-11.776c-12.288-33.024-27.904-66.304-41.472-95.616l-1.664-3.84c-14.464-30.784-27.456-56.96-39.232-79.168l-12.16-7.040c-0.96-0.512-21.824-12.736-26.688-16-41.6-27.328-69.12-58.24-73.728-82.816-1.408-7.744-0.32-17.728 7.040-22.4l11.776-6.592c5.12-2.816 10.496-4.288 16.064-4.288 29.568 0 63.872 40.576 111.232 131.264 54.464 19.648 116.864 35.84 171.264 44.8 41.6-25.728 92.608-43.584 124.864-43.584 5.888 0 10.624 0.576 14.72 1.728 6.272 1.856 11.392 5.696 14.656 10.944 6.208 10.496 7.616 24.704 5.888 39.296zM444.992 394.24c5.568 11.072 11.52 22.72 17.408 35.072 14.528 30.272 23.808 53.952 30.592 73.408 13.568-27.2 30.528-50.368 50.496-68.992 2.56-2.24 5.056-4.608 7.808-6.976-40.448-8.768-75.456-19.52-106.304-32.512z" />
<glyph unicode="&#xe68e;" glyph-name="font-size" d="M597.888 318.080l-62.784-190.080h-80.704l206.272 604.224h93.248l206.080-604.224h-83.392l-64.512 190.080h-214.208zM796.864 379.008l-60.032 173.952c-13.44 39.424-22.464 75.328-31.36 110.272h-1.792c-9.024-34.944-17.856-72.576-30.528-109.312l-59.136-174.912h182.848zM159.36 245.888l-38.912-117.888h-50.048l127.936 374.784h57.792l127.872-374.784h-51.712l-40.064 117.888h-132.864zM282.816 283.712l-37.248 107.84c-8.32 24.448-13.952 46.72-19.456 68.416h-1.088c-5.632-21.696-11.136-45.056-18.944-67.84l-36.672-108.416h113.408z" />
<glyph unicode="&#xe68f;" glyph-name="font-family" d="M448 640h-192v128h512v-128h-192v-512h-128v512z" />
<glyph unicode="&#xe690;" glyph-name="merge-horizontally" d="M64 896v-832h832v832h-832zM384 832h192v-192h-192v192zM128 832h192v-192h-192v192zM320 128h-192v192h192v-192zM576 128h-192v192h192v-192zM832 128h-192v192h192v-192zM832 384h-704v192h704v-192zM832 640h-192v192h192v-192z" />
<glyph unicode="&#xe691;" glyph-name="merge-vertically" d="M64 64h832v832h-832v-832zM128 384v192h192v-192h-192zM128 128v192h192v-192h-192zM832 320v-192h-192v192h192zM832 576v-192h-192v192h192zM832 832v-192h-192v192h192zM576 832v-704h-192v704h192zM320 832v-192h-192v192h192z" />
<glyph unicode="&#xe692;" glyph-name="text-wrap" d="M960 768v-64h-768v64h768zM704 448v-448h-640v448h640zM640 384h-512v-320h512v320zM576 320h-384v-64h384v64zM576 128v64h-384v-64h384zM128 832h576v64h-640v-320h640v64h-576v192z" />
<glyph unicode="&#xe693;" glyph-name="dollar" d="M491.008 51.648v78.72c-39.36 4.992-71.36 13.888-96 26.496-24.704 12.736-46.016 33.28-63.872 61.504-17.984 28.224-28.352 62.848-31.296 103.616l79.168 14.848c6.144-42.24 16.96-73.28 32.384-93.12 22.208-28.032 48.704-43.648 79.616-46.848v250.688c-32.384 6.144-65.536 18.688-99.328 37.632-25.024 14.016-44.416 33.472-57.92 58.176-13.632 24.832-20.416 52.928-20.416 84.48 0 56 19.84 101.376 59.52 136.064 26.56 23.36 65.92 37.632 118.144 42.88v37.568h46.4v-37.632c45.824-4.352 82.112-17.728 108.992-40.192 34.368-28.544 55.104-67.84 62.144-117.696l-81.408-12.288c-4.736 30.976-14.4 54.656-29.12 71.168-14.72 16.448-34.88 27.328-60.608 32.576v-227.072c39.744-9.856 65.984-17.6 78.72-23.168 24.512-10.752 44.48-23.872 60.032-39.36 15.36-15.424 27.264-33.792 35.648-55.104 8.256-21.248 12.48-44.288 12.48-69.12 0-54.528-17.344-100.032-52.096-136.512-34.624-36.352-79.616-56-134.72-58.624v-79.616h-46.464zM491.008 741.12c-30.656-4.608-54.784-16.896-72.384-36.736-17.664-19.84-26.496-43.328-26.496-70.464 0-26.816 7.488-49.28 22.528-67.392 15.040-18.048 40.448-32.448 76.352-43.264v217.856zM537.344 196.864c30.592 3.904 56 17.152 75.904 39.872 20.032 22.72 30.016 50.88 30.016 84.352 0 28.608-6.976 51.584-21.248 68.928-14.144 17.344-42.24 32.896-84.608 46.592v-239.744z" />
<glyph unicode="&#xe694;" glyph-name="percent" d="M455.872 585.28c0-131.52-68.16-196.8-148.8-196.8-78.656 0-144.96 62.4-145.856 187.2 0 124.8 67.2 194.88 151.616 194.88 86.4 0 143.040-67.2 143.040-185.28zM227.392 579.52c-1.856-79.68 28.8-140.16 81.6-140.16 55.68 0 80.64 59.52 80.64 141.12 0 76.8-22.080 139.2-81.536 139.2-51.904 0-80.704-62.4-80.704-140.16zM300.352 124.48l367.68 646.976h53.76l-367.68-646.976h-53.76zM862.784 326.080c0-131.52-68.096-196.8-148.736-196.8-78.72 0-144.896 62.464-145.856 188.16 0 124.8 67.136 194.88 151.616 194.88 86.4 0 142.976-67.2 142.976-186.24zM634.432 320.32c-1.984-79.68 28.736-140.16 81.472-140.16 55.744 0 80.768 59.584 80.768 142.144 0 75.84-22.144 139.2-81.6 139.2-51.904-0.064-80.64-62.464-80.64-141.184z" />
<glyph unicode="&#xe695;" glyph-name="freeze-col" d="M64 896v-832h832v832h-832zM320 832v-128l-128 128h128zM128 768l192-192v-128l-192 192v128zM128 512l192-192v-128l-192 192v128zM128 128v128l128-128h-128zM576 128h-192v192h192v-192zM576 384h-192v192h192v-192zM384 640v0 0 192h192v-192h-192zM832 128h-192v192h192v-192zM832 384h-192v192h192v-192zM832 640h-192v192h192v-192z" />
<glyph unicode="&#xe696;" glyph-name="freeze-row" d="M64 64h832v832h-832v-832zM128 768l128-128h-128v128zM320 832l192-192h-128l-192 192h128zM576 832l192-192h-128l-192 192h128zM832 704l-128 128h128v-128zM640 384v192h192v-192h-192zM384 384v192h192v-192h-192zM320 384h-192v192h192v-192zM640 128v192h192v-192h-192zM384 128v192h192v-192h-192zM128 128v192h192v-192h-192z" />
<glyph unicode="&#xe697;" glyph-name="freeze-panes" d="M64 896v-832h832v832h-832zM576 832l192-192h-128l-192 192h128zM320 832l192-192h-128l-192 192h128zM128 768l192-192v-128l-192 192v128zM128 512l192-192v-128l-192 192v128zM128 128v128l128-128h-128zM576 128h-192v192h192v-192zM576 384h-192v192h192v-192zM832 128h-192v192h192v-192zM832 384h-192v192h192v-192zM704 832h128v-128l-128 128z" />
<glyph unicode="&#xe698;" glyph-name="format-number" d="M225.28 192.128h-85.888v323.264c-31.296-29.312-68.224-50.944-110.72-65.024v77.824c22.336 7.296 46.656 21.248 72.96 41.664 26.176 20.48 44.224 44.352 53.952 71.616h69.696v-449.344zM611.904 271.872v-79.744h-300.736c3.264 30.144 12.992 58.624 29.312 85.632 16.256 27.008 48.384 62.72 96.448 107.328 38.656 35.968 62.336 60.352 71.104 73.216 11.84 17.728 17.728 35.2 17.728 52.48 0 19.136-5.12 33.792-15.424 44.096s-24.448 15.488-42.56 15.488c-17.92 0-32.128-5.376-42.752-16.192-10.56-10.816-16.704-28.736-18.368-53.76l-85.376 8.576c5.056 47.232 20.992 81.088 47.872 101.632s60.48 30.848 100.736 30.848c44.16 0 78.848-11.904 104.128-35.712 25.216-23.808 37.888-53.44 37.888-88.832 0-20.096-3.648-39.296-10.88-57.536s-18.688-37.312-34.368-57.28c-10.368-13.184-29.12-32.256-56.128-57.024s-44.16-41.344-51.392-49.472c-7.232-8.064-13.12-16-17.6-23.68h170.368zM698.112 310.848l83.008 10.048c2.624-21.184 9.728-37.376 21.376-48.576 11.648-11.136 25.6-16.704 42.112-16.704 17.728 0 32.64 6.656 44.736 20.032 12.032 13.504 18.112 31.488 18.112 54.4 0 21.504-5.76 38.656-17.344 51.264s-25.728 18.944-42.368 18.944c-11.008 0-24.128-2.176-39.488-6.4l9.472 69.888c23.232-0.64 40.896 4.416 53.12 15.104s18.368 24.896 18.368 42.624c0 15.040-4.48 27.008-13.504 36.032-9.024 8.96-20.864 13.44-35.648 13.44s-27.264-5.12-37.632-15.296c-10.368-10.176-16.64-25.024-18.88-44.608l-79.104 13.44c5.504 27.072 13.76 48.704 24.896 64.896 11.136 16.128 26.624 28.864 46.4 38.144 19.904 9.28 42.112 13.888 66.752 13.888 42.112 0 75.904-13.44 101.248-40.256 20.992-22.016 31.488-46.848 31.488-74.496 0-39.296-21.376-70.656-64.384-94.016 25.6-5.504 46.144-17.792 61.504-36.928 15.36-19.2 22.976-42.24 22.976-69.312 0-39.232-14.272-72.768-43.008-100.416-28.608-27.648-64.384-41.472-107.136-41.472-40.512 0-74.112 11.648-100.736 34.944s-42.048 53.76-46.336 91.392z" />
<glyph unicode="&#xe900;" glyph-name="reset-color" d="M754.752 774.848l-117.056-117.12c-76.288 101.632-157.696 174.272-157.696 174.272s-288-256-288-480c0-41.088 9.408-79.68 25.024-114.944l-127.744-127.808 45.248-45.248 665.472 665.6-45.248 45.248zM256 352c0 192 224 393.344 224 393.344s58.304-52.928 115.392-129.856l-329.088-329.216c-6.528 20.8-10.304 42.816-10.304 65.728zM704.448 556.416c36.928-65.728 63.552-136.512 63.552-204.416 0-158.976-129.024-288-288-288-74.368 0-141.504 28.992-192.64 75.264l45.248 45.248c39.424-34.752 90.624-56.512 147.392-56.512 123.776 0 224 100.224 224 224 0 54.272-18.176 109.12-43.904 160.128l44.352 44.288zM608 384c0-88.384-71.616-160-160-160v64c52.992 0 96 43.008 96 96h64z" />
<glyph unicode="&#xe901;" glyph-name="file-horizontal" d="M960 512v-384h-832v640h576l256-256zM192 192h704v320h-192v192h-512v-512z" />
<glyph unicode="&#xe902;" glyph-name="folder" d="M192 704v-64h640v-448h-704v576h384v64h-448v-704h832v576z" />
<glyph unicode="&#xe903;" glyph-name="folder-open" d="M301.696 640l-109.696-384h64l91.456 320h594.24l-109.696-384h-704v576h384v64h-448v-704h813.696l146.304 512z" />
<glyph unicode="&#xe904;" glyph-name="table-align-top-left" d="M64 0v960h896v-960h-896zM128 896v-832h768v832h-768zM192 768h384v64h-384v-64zM192 640h640v64h-640v-64zM192 512h384v64h-384v-64z" />
<glyph unicode="&#xe905;" glyph-name="table-align-top-center" d="M64 0v960h896v-960h-896zM128 896v-832h768v832h-768zM704 832h-384v-64h384v64zM832 704h-640v-64h640v64zM704 576h-384v-64h384v64z" />
<glyph unicode="&#xe906;" glyph-name="table-align-top-right" d="M64 0v960h896v-960h-896zM128 896v-832h768v832h-768zM832 832h-384v-64h384v64zM832 704h-640v-64h640v64zM832 576h-384v-64h384v64z" />
<glyph unicode="&#xe907;" glyph-name="table-align-middle-left" d="M64 0v960h896v-960h-896zM128 896v-832h768v832h-768zM192 576h384v64h-384v-64zM192 448h640v64h-640v-64zM192 320h384v64h-384v-64z" />
<glyph unicode="&#xe908;" glyph-name="table-align-middle-center" d="M64 0v960h896v-960h-896zM128 896v-832h768v832h-768zM704 640h-384v-64h384v64zM832 512h-640v-64h640v64zM704 384h-384v-64h384v64z" />
<glyph unicode="&#xe909;" glyph-name="table-align-middle-right" d="M64 0v960h896v-960h-896zM128 896v-832h768v832h-768zM832 640h-384v-64h384v64zM832 512h-640v-64h640v64zM832 384h-384v-64h384v64z" />
<glyph unicode="&#xe90a;" glyph-name="table-align-bottom-left" d="M64 0v960h896v-960h-896zM128 896v-832h768v832h-768zM192 384h384v64h-384v-64zM192 256h640v64h-640v-64zM192 128h384v64h-384v-64z" />
<glyph unicode="&#xe90b;" glyph-name="table-align-bottom-center" d="M64 0v960h896v-960h-896zM128 896v-832h768v832h-768zM704 448h-384v-64h384v64zM832 320h-640v-64h640v64zM704 192h-384v-64h384v64z" />
<glyph unicode="&#xe90c;" glyph-name="table-align-bottom-right" d="M64 0v960h896v-960h-896zM128 896v-832h768v832h-768zM832 448h-384v-64h384v64zM832 320h-640v-64h640v64zM832 192h-384v-64h384v64z" />
<glyph unicode="&#xe90d;" glyph-name="table-align-remove" d="M64 960v-960h896v960h-896zM896 64h-768v832h768v-832zM263.2 512l59.8-64h-67v64h7.2zM256 384h126.8l59.8-64h-186.6v64zM502.2 256l59.8-64h-306v64h246.2zM192 776l45.2 45.2 49.8-53.2h481v-64h-421.2l59.8-64h361.4v-64h-301.8l59.8-64h242v-64h-182.4l59.8-64h122.6v-64h-62.8l126.8-136-45.2-45.2-594.8 637.2z" />
<glyph unicode="&#xe90e;" glyph-name="full-screen" d="M0 896h320v-128h-192v-192h-128v320zM128 320h-128v-320h320v128h-192v192zM704 896v-128h192v-192h128v320h-320zM896 128h-192v-128h320v320h-128v-192z" />
<glyph unicode="&#xe90f;" glyph-name="full-screen-exit" d="M320 896h-128v-192h-192v-128h320v320zM192 0h128v320h-320v-128h192v-192zM1024 576v128h-192v192h-128v-320h320zM832 192h192v128h-320v-320h128v192z" />
<glyph unicode="&#xe910;" glyph-name="volume-down" d="M0 256h192l256-256v896l-256-256h-192v-384zM576 200v496c110.4-28.4 192-128.6 192-248s-81.6-219.6-192-248z" />
<glyph unicode="&#xe911;" glyph-name="volume-up" d="M0 256h192l256-256v896l-256-256h-192v-384zM576 200v496c110.4-28.4 192-128.6 192-248s-81.6-219.6-192-248zM576 960v-89.6c90.4 0 176.6-41.6 242.4-116.8 70.8-80.8 109.6-189.2 109.6-305.6s-38.8-224.8-109.6-305.6c-66-75.4-152-116.8-242.4-116.8v-89.6c247.4 0 448 229.2 448 512s-200.6 512-448 512z" />
<glyph unicode="&#xe912;" glyph-name="volume-off" d="M192 640l256 256v-896l-256 256h-192v384h192zM1024 581.4l-90.6 90.6-133.4-133.4-133.6 133.4-90.4-90.6 133.4-133.4-133.4-133.4 90.6-90.6 133.4 133.4 133.4-133.4 90.6 90.6-133.6 133.4 133.6 133.4z" />
<glyph unicode="&#xe913;" glyph-name="play" d="M0-64v1024l1024-512-1024-512z" />
<glyph unicode="&#xe914;" glyph-name="pause" d="M640 960h320v-1024h-320v1024zM64-64h320v1024h-320v-1024z" />
<glyph unicode="&#xe915;" glyph-name="stop" d="M1024-64h-1024v1024h1024v-1024z" />
<glyph unicode="&#xe916;" glyph-name="hd" d="M960 832h-896c-35.2 0-64-28.8-64-64v-640c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64zM512 192h-128v192h-128v-192h-128v512h128v-192h128v192h128v-512zM932.6 329.8c-10.2-32.4-23.6-58.8-39.6-78.2-16.4-19.6-36.4-34.8-59.6-44.8-23-9.8-52.6-14.8-87.8-14.8h-169.6v512h165.2c40.6 0 70.8-4.4 92.2-13.6s41.2-24.4 59-45.6c17.4-21 31.4-48.2 41.2-81.2 9.6-32.4 14.6-73 14.6-120.6-0.2-43-5.4-81.2-15.6-113.2zM824.2 518.2c5.2-17 7.8-41 7.8-71.2 0-29-2.6-52.6-7.8-70.2-5-16.8-11-28.8-17.8-36-6.6-7-15-12-25.6-15.4-7.6-2.4-23.6-5.4-56.6-5.4h-52.2v256h25.8c42.8 0 61.2-1.8 69-3.4 13.8-2.8 25.2-8.2 35-16.8 9.8-9 17.4-21.6 22.4-37.6z" />
<glyph unicode="&#xe917;" glyph-name="subtitles" d="M960 832h-896c0 0-64 0-64-64v-640c0-64 64-64 64-64h896c64 0 64 64 64 64v640c0 0 0 64-64 64zM480 550.8c-12.2 8.2-27 14.8-43.8 19.4-17 4.6-34.2 7-51.6 7-36 0-64.4-11.6-85.2-34.8s-31.2-54.8-31.2-94.6c0-39.6 10.4-70.8 31.2-93.8s48.6-34.4 83.4-34.4c32.2 0 64.6 9.2 97.2 27.6v-133.2c-36.4-14.8-78.4-22-126.2-22-46.8 0-87.2 10-121.2 30.2s-59.8 48.8-77.8 86c-18 37.2-26.8 80-26.8 128.6 0 52.2 10 98.8 30 139.4 20 40.8 48.4 72.2 85 94.4s78.8 33.4 126.4 33.4c38 0 74.8-5.2 110.4-15.6v-137.6zM896 550.8c-12.2 8.2-27 14.8-43.8 19.4-17 4.6-34.2 7-51.6 7-36 0-64.4-11.6-85.2-34.8s-31.2-54.8-31.2-94.6c0-39.6 10.4-70.8 31.2-93.8s48.6-34.4 83.4-34.4c32.2 0 64.6 9.2 97.2 27.6v-133.2c-36.4-14.8-78.4-22-126.2-22-46.8 0-87.2 10-121.2 30.2s-59.8 48.8-77.8 86c-18 37.2-26.8 80-26.8 128.6 0 52.2 10 98.8 30 139.4 20 40.8 48.4 72.2 85 94.4s78.8 33.4 126.4 33.4c38 0 74.8-5.2 110.4-15.6v-137.6z" />
<glyph unicode="&#xe918;" glyph-name="playlist" d="M0 448h640v-128h-640v128zM1024 832h-1024v128h1024v-128zM768 702.4v-536c-26.8 16-60 25.6-96 25.6-88.4 0-160-57.4-160-128s71.6-128 160-128 160 57.4 160 128v510.4h192v129.6l-256-1.6zM0 704v-128h640v128h-640z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 60 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 637 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 591 B

View File

@@ -0,0 +1,361 @@
<?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="kendoui" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" d="" horiz-adv-x="512" />
<glyph unicode="&#xe000;" d="M354.632 638.616v-492.052l425.558 246.026z" horiz-adv-x="1136" />
<glyph unicode="&#xe001;" d="M567.41 605.368l-246.026-425.558h492.052z" horiz-adv-x="1136" />
<glyph unicode="&#xe002;" d="M321.384 605.368l246.026-425.558 246.026 425.558h-492.052z" horiz-adv-x="1136" />
<glyph unicode="&#xe003;" d="M780.19 638.616l-425.558-246.026 425.558-246.026v492.052z" horiz-adv-x="1136" />
<glyph unicode="&#xe004;" d="M354.632 605.368l425.558-425.558v425.558h-425.558z" horiz-adv-x="1136" />
<glyph unicode="&#xe005;" d="M354.632 605.368v-425.558l425.558 425.558h-425.558z" horiz-adv-x="1136" />
<glyph unicode="&#xe006;" d="M780.19 605.368l-425.558-425.558h425.558v425.558z" horiz-adv-x="1136" />
<glyph unicode="&#xe007;" d="M354.632 605.368v-425.558h425.558z" horiz-adv-x="1136" />
<glyph unicode="&#xe008;" d="M780.19 676.294v-567.41h70.926v567.41h-70.926zM780.19 392.59l-425.558 246.026v-492.052z" horiz-adv-x="1136" />
<glyph unicode="&#xe009;" d="M283.706 605.368v-70.926h567.41v70.926h-567.41zM567.41 534.442l-246.026-425.558h492.052z" horiz-adv-x="1136" />
<glyph unicode="&#xe00a;" d="M321.384 676.294l246.026-425.558 246.026 425.558h-492.052zM567.41 250.736h-283.706v-70.926h567.41v70.926h-283.706z" horiz-adv-x="1136" />
<glyph unicode="&#xe00b;" d="M283.706 676.294v-567.41h70.926v567.41h-70.926zM354.632 392.59l425.558-246.026v492.052z" horiz-adv-x="1136" />
<glyph unicode="&#xe00c;" d="M496.486 605.368v-425.558l212.778 212.778z" horiz-adv-x="1136" />
<glyph unicode="&#xe00d;" d="M567.41 463.514l-212.778-212.778h425.558z" horiz-adv-x="1136" />
<glyph unicode="&#xe00e;" d="M354.632 534.442l212.78-212.778 212.778 212.778h-425.558z" horiz-adv-x="1136" />
<glyph unicode="&#xe00f;" d="M638.338 605.368l-212.778-212.778 212.778-212.778v425.558z" horiz-adv-x="1136" />
<glyph unicode="&#xe010;" d="M848.9 317.23l-269.298 269.298q-9.974 8.866-22.72 8.866t-21.61-8.866-8.866-21.61 8.866-21.61l250.46-250.46-250.46-250.46q-8.866-8.866-8.866-22.164t8.866-22.164 21.61-8.866 22.72 8.866l269.298 270.406q9.974 9.974 8.866 24.38 1.108 14.408-8.866 24.38z" horiz-adv-x="1136" />
<glyph unicode="&#xe011;" d="M986.32 179.81l-269.298 269.298q-11.082 9.974-25.49 8.866-14.408 1.108-24.38-8.866l-269.298-269.298q-8.866-8.866-8.866-22.164t8.866-22.164 21.61-8.866 22.718 8.866l249.352 250.46 250.46-250.46q8.866-8.866 22.164-8.866t22.164 8.866 8.866 22.164-8.866 22.164z" horiz-adv-x="1136" />
<glyph unicode="&#xe012;" d="M986.32 449.108q-8.866 8.866-22.164 8.866t-22.164-8.866l-250.458-250.46-249.35 250.46q-9.974 8.866-22.718 8.866t-21.61-8.866-8.866-21.61 8.866-21.61l269.298-270.408q9.974-9.974 24.38-8.866 14.408-1.108 25.49 8.866l269.298 270.406q8.866 8.866 8.866 21.61t-8.866 21.61z" horiz-adv-x="1136" />
<glyph unicode="&#xe013;" d="M598.442 292.848l250.46 250.46q8.866 8.866 8.866 21.61t-8.866 21.61-22.164 8.866-22.164-8.866l-269.298-269.298q-9.974-9.974-8.866-24.38-1.108-14.408 8.866-24.38l269.298-270.406q8.866-8.866 22.164-8.866t22.164 8.866 8.866 22.164-8.866 22.164z" horiz-adv-x="1136" />
<glyph unicode="&#xe014;" d="M454.926 686.822q-9.42 9.42-22.166 9.42t-21.61-9.974l-269.298-269.298q-11.082-9.974-9.974-24.38-1.108-14.408 9.974-24.38l269.298-269.298q8.866-9.974 21.61-9.974t22.166 9.42 9.42 22.164-9.974 21.61l-249.35 250.458 249.35 250.46q9.974 8.866 9.974 21.61t-9.42 22.166zM992.97 416.97l-269.298 269.298q-8.866 9.974-21.61 9.974t-22.164-9.42-9.42-22.166 9.974-21.61l249.35-250.46-249.35-250.46q-9.974-8.866-9.974-21.61t9.42-22.164 22.164-9.42 21.61 9.974l269.298 269.298q11.082 9.974 9.974 24.38 1.108 14.408-9.974 24.38z" horiz-adv-x="1136" />
<glyph unicode="&#xe015;" d="M564.086 828.12q-12.19-1.108-21.056-9.974l-269.298-269.298q-9.974-8.866-9.974-21.61t9.42-22.166 22.166-9.42 21.61 9.974l250.46 249.352 250.46-249.352q8.866-9.974 21.61-9.974t22.164 9.42 9.42 22.166-9.974 21.61l-269.298 269.298q-9.974 11.082-24.38 9.974h-3.326zM295.342 289.524q-12.746 0-22.166-9.42t-9.42-22.164 9.974-21.61l269.3-269.298q9.974-11.082 24.38-9.974 14.408-1.108 24.38 9.974l269.298 269.298q9.974 8.866 9.974 21.61t-9.42 22.164-22.164 9.42-21.61-9.974l-250.458-249.35-250.46 249.35q-8.866 9.974-21.61 9.974z" horiz-adv-x="1136" />
<glyph unicode="&#xe016;" d="M567.41 889.074l-195.048-211.67h124.12v-212.778h-212.778v124.12l-212.778-196.156 212.778-196.156v126.338h212.778v-214.996h-124.12l195.048-211.67 197.264 211.672h-126.338v214.996h214.996v-126.338l210.562 196.156-210.562 196.156v-124.12h-214.996v212.78h126.338z" horiz-adv-x="1136" />
<glyph unicode="&#xe017;" d="M141.854 818.146v-354.632l127.446 127.446 198.372-199.48-197.264-198.372-128.554 128.554v-354.632h354.632l-126.338 126.338 198.372 197.264 197.264-196.156-127.446-127.446h354.632v354.632l-127.446-127.446-196.156 197.264 197.264 198.372 126.338-126.338v354.632h-354.632l128.554-128.554-198.372-197.264-199.48 198.372 127.446 127.446h-354.632z" horiz-adv-x="1136" />
<glyph unicode="&#xe018;" d="M638.338 818.146l127.446-127.446-496.486-496.486-127.446 127.446v-354.632h354.632l-127.446 127.446 496.486 496.486 127.446-127.446v354.632h-354.632z" horiz-adv-x="1136" />
<glyph unicode="&#xe019;" d="M141.854 818.146v-354.632l127.446 127.446 496.486-496.486-127.446-127.446h354.632v354.632l-127.446-127.446-496.486 496.486 127.446 127.446h-354.632z" horiz-adv-x="1136" />
<glyph unicode="&#xe01a;" d="M283.706 588.746l-212.778-196.156 212.778-196.156v126.338h569.628v-126.338l210.562 196.156-210.562 196.156v-124.12h-569.628v124.12z" horiz-adv-x="1136" />
<glyph unicode="&#xe01b;" d="M567.41 889.074l-195.048-211.67h124.12v-569.628h-124.12l195.048-211.67 197.264 211.672h-126.338v569.628h126.338z" horiz-adv-x="1136" />
<glyph unicode="&#xe01c;" d="M496.486 941.16v-128.554q-118.58-16.624-216.104-85.332t-153.49-175.654-55.966-229.956q0-135.202 66.494-249.35t180.64-180.64 249.352-66.494 249.35 66.494 180.64 180.64 66.494 249.35q0 175.1-110.822 312.52l-115.254-67.602q94.198-104.174 94.198-244.918 0-98.632-48.762-182.856t-132.986-132.986-182.856-48.762-182.856 48.762-132.986 132.986-48.762 182.856q0 131.88 83.672 232.174t210.010 125.784v-128.554l338.010 195.048z" horiz-adv-x="1136" />
<glyph unicode="&#xe01d;" d="M638.338 941.16l-338.010-195.048 338.010-195.048v128.554q126.338-25.49 210.010-125.784t83.672-232.174q0-98.632-48.762-182.856t-132.986-132.986-182.856-48.762-182.856 48.762-132.986 132.986-48.762 182.856q0 140.746 94.198 244.918l-115.254 67.602q-110.822-137.42-110.822-312.52 0-135.202 66.494-249.35t180.64-180.642 249.35-66.494 249.35 66.494 180.64 180.64 66.494 249.35q0 123.014-55.966 229.956t-153.49 175.654-216.104 85.332v128.554z" horiz-adv-x="1136" />
<glyph unicode="&#xe01e;" d="M497.594 783.792v-116.364q-121.906-24.38-202.806-121.904t-80.9-224.97q0-146.286 103.618-249.904t249.906-103.62 249.904 103.62 103.62 249.904q0 121.904-74.25 217.212l-83.116-47.654q63.168-73.144 63.168-169.558 0-107.498-75.914-183.41t-183.412-75.914-183.412 75.914-75.914 183.412q0 88.658 53.194 157.922t136.312 92.538v-109.714l279.274 161.8z" horiz-adv-x="1136" />
<glyph unicode="&#xe01f;" d="M637.23 783.792l-279.274-160.694 279.274-161.8v109.714q83.116-23.272 136.312-92.536t53.196-157.922q0-107.498-75.914-183.41t-183.412-75.914-183.412 75.914-75.914 183.412q0 96.416 63.168 169.558l-83.118 47.654q-74.252-95.308-74.252-217.212 0-146.286 103.618-249.904t249.906-103.62 249.904 103.62 103.62 249.904q0 127.446-80.9 224.97t-202.806 121.904v116.364z" horiz-adv-x="1136" />
<glyph unicode="&#xe020;" d="M462.13 671.86l-160.692-279.274h116.364q24.38-121.904 121.904-202.806t224.97-80.9h86.442v94.198h-86.442q-88.658 0-157.922 53.196t-92.538 136.312h109.714z" horiz-adv-x="1136" />
<glyph unicode="&#xe021;" d="M764.674 676.294q-127.446 0-224.97-80.9t-121.904-202.806h-116.364l160.692-279.274 161.8 279.274h-109.714q23.274 83.118 92.538 136.312t157.922 53.196v0h86.442v94.198h-86.442z" horiz-adv-x="1136" />
<glyph unicode="&#xe022;" d="M283.706 676.294v-86.442q0-127.446 80.9-224.97t202.806-121.904v-116.364l279.274 160.692-279.274 161.8v-109.714q-83.118 23.274-136.312 92.538t-53.194 157.922v0 86.442h-94.2z" horiz-adv-x="1136" />
<glyph unicode="&#xe023;" d="M756.918 676.294v-86.442q0-88.658-53.196-157.922t-136.312-92.538v109.714l-279.274-161.8 279.274-160.692v116.364q121.904 24.38 202.804 121.904t80.9 224.97v86.442h-94.198z" horiz-adv-x="1136" />
<glyph unicode="&#xe024;" d="M567.41 658.562v-116.364q-121.904-24.38-202.806-121.904t-80.9-224.97v-86.442h94.2v86.442q0 88.658 53.194 157.922t136.312 92.538v-109.714l279.274 161.8z" horiz-adv-x="1136" />
<glyph unicode="&#xe025;" d="M567.41 658.562l-279.274-160.692 279.274-161.802v109.714q83.116-23.274 136.312-92.538t53.196-157.922v0-86.442h94.198v86.442q0 127.446-80.9 224.97t-202.804 121.904v116.364z" horiz-adv-x="1136" />
<glyph unicode="&#xe026;" d="M672.692 671.86l-161.8-279.274h109.714q-23.274-83.116-92.538-136.312t-157.922-53.196v0h-86.442v-94.198h86.442q127.446 0 224.97 80.9t121.904 202.806h116.364z" horiz-adv-x="1136" />
<glyph unicode="&#xe027;" d="M283.706 676.294v-94.198h86.442q88.658 0 157.922-53.196t92.538-136.312h-109.714l161.8-279.274 160.692 279.274h-116.364q-24.38 121.904-121.904 202.806t-224.97 80.9h-86.442z" horiz-adv-x="1136" />
<glyph unicode="&#xe028;" d="M568.52 854.72v-116.364q-121.904-24.382-202.806-121.904t-80.9-224.97q0-146.286 103.62-249.904t249.904-103.62q35.462 0 70.926 6.65v97.524q-34.356-9.974-70.926-9.974-107.498 0-183.412 75.914t-75.914 183.412q0 88.658 53.194 157.922t136.312 92.538v-109.714l279.274 161.8z" horiz-adv-x="1136" />
<glyph unicode="&#xe029;" d="M638.338 747.222q-146.286 0-249.904-103.62t-103.62-249.904q0-127.446 80.9-224.97t202.806-121.904v-116.364l279.274 160.692-279.274 161.8v-109.714q-83.118 23.274-136.312 92.538t-53.194 157.922q0 107.498 75.914 183.412t183.412 75.914q35.462 0 70.926-9.974v97.524q-35.462 6.65-70.926 6.65z" horiz-adv-x="1136" />
<glyph unicode="&#xe02a;" d="M265.974 672.97l-160.694-279.274h116.364q24.382-121.904 121.904-202.804t224.97-80.9q146.286 0 249.904 103.62t103.62 249.904q0 35.464-6.65 70.926h-97.524q9.974-34.354 9.974-70.926 0-107.498-75.914-183.412t-183.412-75.914q-88.658 0-157.922 53.196t-92.538 136.312h109.714z" horiz-adv-x="1136" />
<glyph unicode="&#xe02b;" d="M868.848 672.97l-161.8-279.274h109.714q-23.274-83.116-92.538-136.312t-157.922-53.196q-107.498 0-183.412 75.914t-75.914 183.412q0 35.464 9.974 70.926h-97.524q-6.65-35.464-6.65-70.926 0-146.286 103.62-249.906t249.904-103.62q127.446 0 224.97 80.9t121.904 202.806h116.364z" horiz-adv-x="1136" />
<glyph unicode="&#xe02c;" d="M568.52 675.186q-127.446 0-224.97-80.9t-121.906-202.804h-116.364l160.692-279.274 161.8 279.274h-109.714q23.274 83.118 92.538 136.312t157.922 53.196q107.498 0 183.412-75.914t75.914-183.412q0-35.462-9.974-70.926h97.524q6.65 35.462 6.65 70.926 0 146.286-103.62 249.904t-249.904 103.62z" horiz-adv-x="1136" />
<glyph unicode="&#xe02d;" d="M566.302 675.186q-146.286 0-249.904-103.618t-103.618-249.904q0-35.462 6.65-70.926h97.524q-9.974 35.462-9.974 70.926 0 107.498 75.914 183.412t183.412 75.914q88.658 0 157.922-53.196t92.538-136.312h-109.714l161.8-279.274 160.692 279.274h-116.364q-24.38 121.904-121.904 202.806t-224.97 80.9z" horiz-adv-x="1136" />
<glyph unicode="&#xe02e;" d="M566.302 854.72l-279.274-160.694 279.274-161.802v109.714q83.116-23.274 136.312-92.538t53.196-157.922q0-107.498-75.914-183.41t-183.412-75.914q-35.464 0-70.926 9.974v-97.524q35.464-6.65 70.926-6.65 146.286 0 249.906 103.62t103.62 249.904q0 127.446-80.9 224.97t-202.806 121.904v116.364z" horiz-adv-x="1136" />
<glyph unicode="&#xe02f;" d="M496.486 747.222q-35.464 0-70.926-6.65v-97.524q35.464 9.974 70.926 9.974 107.498 0 183.41-75.914t75.914-183.41q0-88.658-53.196-157.922t-136.312-92.538v109.714l-279.274-161.8 279.274-160.692v116.364q121.904 24.38 202.806 121.904t80.9 224.97q0 146.286-103.62 249.904t-249.904 103.62z" horiz-adv-x="1136" />
<glyph unicode="&#xe030;" d="M568.52 818.146q-176.208 0-301.438-125.228t-125.228-301.438 125.228-301.438 301.438-125.23 301.438 125.23 125.23 301.438-125.23 301.438-301.438 125.228zM791.274 594.286l86.442-86.442-381.228-381.228-237.16 239.376 86.442 86.442 150.718-152.934z" horiz-adv-x="1136" />
<glyph unicode="&#xe031;" d="M568.52 818.146q-176.208 0-301.438-125.228t-125.228-301.438 125.228-301.438 301.438-125.23 301.438 125.23 125.23 301.438-125.23 301.438-301.438 125.228zM394.528 643.048l173.99-175.1 173.99 175.1 77.576-77.576-175.1-173.99 175.1-173.99-77.576-77.576-173.99 175.1-173.99-175.1-77.576 77.576 175.1 173.99-175.1 173.99z" horiz-adv-x="1136" />
<glyph unicode="&#xe032;" d="M567.41 818.146q-176.208 0-300.882-124.674t-124.676-300.884 124.676-300.884 300.882-124.674 300.882 124.674 124.674 300.884-124.674 300.884-300.884 124.674zM496.486 676.294h141.852v-212.778h212.778v-141.852h-212.778v-212.778h-141.854v212.778h-212.778v141.854h212.778v212.78z" horiz-adv-x="1136" />
<glyph unicode="&#xe033;" d="M567.41 818.146q-176.208 0-300.882-124.674t-124.676-300.884 124.676-300.884 300.882-124.674 300.882 124.674 124.674 300.884-124.674 300.884-300.884 124.674zM283.706 463.514h567.41v-141.852h-567.41v141.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe034;" d="M567.41 818.146q-176.208 0-300.882-124.674t-124.676-300.884 124.676-300.884 300.882-124.674 300.882 124.674 124.674 300.884-124.674 300.884-300.884 124.674zM496.486 605.368h141.852v-141.852h141.854v-141.852h-141.854v-141.854h-141.854v141.854h-141.854v141.854h141.854v141.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe035;" d="M567.41 818.146q-176.208 0-300.882-124.674t-124.676-300.884 124.676-300.884 300.882-124.674 300.882 124.674 124.674 300.884-124.674 300.884-300.884 124.674zM354.632 463.514h425.558v-141.852h-425.558v141.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe036;" d="M567.41 889.074q-135.202 0-249.35-66.494t-180.64-180.64-66.494-249.35 66.494-249.35 180.64-180.64 249.35-66.494 249.35 66.494 180.64 180.64 66.494 249.35-66.494 249.35-180.64 180.64-249.35 66.494zM567.41 746.114q146.286 0 249.904-103.62t103.62-249.904q0-104.174-56.52-190.616l-487.62 487.62q86.442 56.52 190.616 56.52zM270.406 583.202l487.62-487.62q-86.442-56.52-190.616-56.52-146.286 0-249.904 103.62t-103.618 249.904q0 104.174 56.518 190.616z" horiz-adv-x="1136" />
<glyph unicode="&#xe037;" d="M857.766 700.674l-370.146-521.974-275.948 213.886-29.922-132.986 321.384-243.81 434.424 569.628z" horiz-adv-x="1136" />
<glyph unicode="&#xe038;" d="M285.922 676.294l-2.216-2.216v-66.494l214.996-214.996-214.996-214.996v-66.494l2.216-2.216h70.926l212.778 212.778 212.778-212.778h68.71v73.144l-210.562 210.562 210.562 210.562v73.144h-68.71l-212.778-212.778-212.778 212.778h-70.926z" horiz-adv-x="1136" />
<glyph unicode="&#xe039;" d="M496.486 747.222v-283.706h-283.706v-141.852h283.706v-283.706h141.852v283.706h283.706v141.854h-283.706v283.706h-141.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe03a;" d="M212.778 463.514v-141.852h709.264v141.854h-709.264z" horiz-adv-x="1136" />
<glyph unicode="&#xe03b;" d="M496.486 605.368v-141.852h-141.854v-141.852h141.854v-141.854h141.852v141.854h141.854v141.854h-141.854v141.854h-141.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe03c;" d="M354.632 463.514v-141.852h425.558v141.854h-425.558z" horiz-adv-x="1136" />
<glyph unicode="&#xe03d;" d="M354.632 676.294q-29.922 0-50.424-20.502t-20.502-50.424v-425.558q0-29.922 20.502-50.424t50.424-20.502h425.558q29.922 0 50.424 20.502t20.502 50.424v425.558q0 29.922-20.502 50.424t-50.424 20.502h-425.558z" horiz-adv-x="1136" />
<glyph unicode="&#xe03e;" d="M354.632 676.294v-567.41h141.854v567.41h-141.854zM638.338 676.294v-567.41h141.854v567.41h-141.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe03f;" d="M567.41 676.294l-246.026-425.558h492.052zM319.168 108.884q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h496.486q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-496.486z" horiz-adv-x="1136" />
<glyph unicode="&#xe040;" d="M766.892 747.222l-212.778-212.778h-128.554q-29.922 0-50.424-20.502t-20.502-50.424v-141.854q0-29.922 20.502-50.424t50.424-20.502h128.554l212.778-212.778h84.226v709.264h-84.226z" horiz-adv-x="1136" />
<glyph unicode="&#xe041;" d="M851.116 463.514q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502 50.424 20.502 20.502 50.424-20.502 50.424-50.424 20.502zM412.26 534.442h-128.554q-29.922 0-50.424-20.502t-20.502-50.424v-141.854q0-29.922 20.502-50.424t50.424-20.502h128.554l212.778-212.778h84.226v709.264h-84.226z" horiz-adv-x="1136" />
<glyph unicode="&#xe042;" d="M780.19 676.294v-75.36q75.36-13.298 125.784-72.034t50.424-136.866-50.424-137.42-125.784-71.48v-74.25q117.472 0 200.588 83.116t83.116 200.588-83.116 200.588-200.588 83.118zM851.116 392.59q0 29.922-20.502 50.424t-50.424 20.502-50.424-20.502-20.502-50.424 20.502-50.424 50.424-20.502 50.424 20.502 20.502 50.424zM341.334 534.442h-128.554q-29.922 0-50.424-20.502t-20.502-50.424v-141.854q0-29.922 20.502-50.424t50.424-20.502h128.554l212.78-212.778h84.226v709.264h-84.226z" horiz-adv-x="1136" />
<glyph unicode="&#xe043;" d="M567.41 889.074q-135.202 0-249.35-66.494t-180.64-180.64-66.494-249.35q0-99.74 37.126-189.506t104.728-157.368v-149.61q0-29.922 20.502-50.424t50.424-20.502h70.926q29.922 0 50.424 20.502t20.502 50.424v354.632q0 29.922-20.502 50.424t-50.424 20.502h-70.926q-29.922 0-50.424-20.502t-20.502-50.424v-12.19q-32.14 73.144-32.14 154.044 0 160.692 113.040 273.732t273.732 113.038 273.732-113.038 113.038-273.732q0-80.9-32.14-154.044v12.19q0 29.922-20.502 50.424t-50.424 20.502h-70.926q-29.922 0-50.424-20.502t-20.502-50.424v-354.632q0-29.922 20.502-50.424t50.424-20.502h70.926q29.922 0 50.424 20.502t20.502 50.424v149.61q67.602 67.602 104.726 157.368t37.126 189.506q0 135.202-66.494 249.35t-180.64 180.64-249.35 66.494z" horiz-adv-x="1136" />
<glyph unicode="&#xe044;" d="M353.524 747.222q-86.442 0-148.502-70.926t-63.168-192.832q0-38.788 12.19-73.698t28.814-58.736 47.1-49.87 50.978-39.342 57.628-36.018 52.642-32.692q67.602-44.328 117.472-100.294t58.736-86.996q7.758 28.814 59.844 86.442t116.364 103.064q17.732 12.19 52.086 33.802t57.628 36.018 52.086 39.342 45.99 48.762 29.368 58.736 12.19 73.698q0 72.034-24.934 128t-63.168 86.442-86.442 39.896-94.754-3.878-88.658-52.086-67.602-98.632q-34.356 79.792-91.984 120.798t-121.906 41.004z" horiz-adv-x="1136" />
<glyph unicode="&#xe045;" d="M353.524 747.222q-86.442 0-148.502-70.926t-63.168-192.832q0-38.788 12.19-73.698t28.814-58.736 47.1-49.87 50.978-39.342 57.628-36.018 52.642-32.692q67.602-44.328 117.472-100.294t58.736-86.996q7.758 28.814 59.844 86.442t116.364 103.064q17.732 12.19 52.086 33.802t57.628 36.018 52.086 39.342 45.99 48.762 29.368 58.736 12.19 73.698q0 72.034-24.934 128t-63.168 86.442-86.442 39.896-94.754-3.878-88.658-52.086-67.602-98.632q-34.356 79.792-91.984 120.798t-121.906 41.004zM363.498 614.234q57.628 0 114.7-43.774t89.212-118.026q16.624 38.788 43.222 71.48t56.52 52.086 61.506 29.922 60.398 6.096 52.086-20.502 37.126-50.424 13.852-80.9q0-36.572-11.082-65.938t-34.908-52.64-43.222-37.68-53.196-35.462-47.1-31.030q-49.87-34.356-89.766-78.13t-45.438-65.938q-6.65 24.38-44.884 67.048t-90.32 75.914q-11.082 7.758-39.342 24.934t-44.33 27.706-39.342 29.922-35.464 37.68-21.61 44.884-9.42 56.52q0 77.576 34.354 117.472t86.442 38.788z" horiz-adv-x="1136" />
<glyph unicode="&#xe046;" d="M353.524 747.222q-86.442 0-148.502-70.926t-63.168-192.832q0-38.788 12.19-73.698t28.814-58.736 47.1-49.87 50.978-39.342 57.628-36.018 52.642-32.692q67.602-44.328 117.472-100.294t58.736-86.996q7.758 28.814 59.844 86.442t116.364 103.064q17.732 12.19 52.086 33.802t57.628 36.018 52.086 39.342 45.99 48.762 29.368 58.736 12.19 73.698q0 72.034-24.934 128t-63.168 86.442-86.442 39.896-94.754-3.878-88.658-52.086-67.602-98.632q-34.356 79.792-91.984 120.798t-121.906 41.004zM772.432 613.126q52.086 0 85.886-38.234t33.802-114.702q0-36.572-11.082-65.938t-34.908-52.64-43.222-37.68-53.196-35.462-47.1-31.030q-49.87-34.356-89.766-78.13t-45.438-65.938v359.064q31.030 72.036 89.212 116.364t115.81 44.328z" horiz-adv-x="1136" />
<glyph unicode="&#xe047;" d="M567.41 960l-161.8-344.658-377.904-47.654 278.166-260.432-72.034-373.472 333.576 183.966 333.576-183.966-72.034 373.472 278.166 260.432-377.904 47.654z" horiz-adv-x="1136" />
<glyph unicode="&#xe048;" d="M567.41 960l-161.8-344.658-377.904-47.654 278.166-260.432-72.034-373.472 333.576 183.966 333.576-183.966-72.034 373.472 278.166 260.432-377.904 47.654zM567.41 746.114l98.632-209.456 230.51-28.814-169.558-159.584 43.222-228.294-202.806 113.038-202.806-113.038 43.222 228.294-169.558 159.584 230.512 28.814z" horiz-adv-x="1136" />
<glyph unicode="&#xe049;" d="M567.41 960l-161.8-344.658-377.904-47.654 278.166-260.432-72.034-373.472 333.576 182.856v843.36z" horiz-adv-x="1136" />
<glyph unicode="&#xe04a;" d="M567.41 960l-161.8-344.658-377.904-47.654 278.166-260.432-72.034-373.472 333.576 182.856v115.254l-203.914-111.932 44.33 228.294-169.558 158.476 230.512 29.922 98.632 209.456v213.886z" horiz-adv-x="1136" />
<glyph unicode="&#xe04b;" d="M922.044 747.222q-29.922 0-50.424-20.502t-20.502-50.424v-567.412q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v567.41q0 29.922-20.502 50.424t-50.424 20.502zM709.264 534.442q-29.922 0-50.424-20.502t-20.502-50.424v-354.632q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v354.632q0 29.922-20.502 50.424t-50.424 20.502zM283.706 463.514q-29.922 0-50.424-20.502t-20.502-50.424v-283.706q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v283.706q0 29.922-20.502 50.424t-50.424 20.502zM496.486 321.662q-29.922 0-50.424-20.502t-20.502-50.424v-141.854q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v141.854q0 29.922-20.502 50.424t-50.424 20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe04c;" d="M283.706 747.222q-29.922 0-50.424-20.502t-20.502-49.87 20.502-50.424 50.424-21.056h567.41q29.922 0 50.424 21.056t20.502 50.424-20.502 49.87-50.424 20.502h-567.41zM283.706 534.442q-29.922 0-50.424-20.502t-20.502-49.87 20.502-50.424 50.424-21.056h354.632q29.922 0 50.424 21.056t20.502 50.424-20.502 49.87-50.424 20.502h-354.632zM283.706 321.662q-29.922 0-50.424-20.502t-20.502-49.87 20.502-50.424 50.424-21.056h141.854q29.922 0 50.424 21.056t20.502 50.424-20.502 49.87-50.424 20.502h-141.854zM283.706 108.884q-29.922 0-50.424-20.502t-20.502-49.87 20.502-50.424 50.424-21.056h283.706q29.922 0 50.424 21.056t20.502 50.424-20.502 49.87-50.424 20.502h-283.706z" horiz-adv-x="1136" />
<glyph unicode="&#xe04d;" d="M769.108 855.826l-110.822-392.312 387.88 116.364q-15.516 36.572-38.234 74.804t-57.074 80.346-81.456 74.806-100.294 45.99zM567.41 820.364q-177.316 0-302.546-125.23t-125.228-302.546q0-69.818 22.164-136.312l343.55 146.286 99.74 415.584q-19.948 2.216-37.68 2.216zM994.078 414.754l-397.854-80.9-392.312-167.342q57.628-93.092 154.044-147.394t209.456-54.302q177.316 0 302.544 125.23t125.23 302.546q0 9.974-1.108 22.164z" horiz-adv-x="1136" />
<glyph unicode="&#xe04e;" d="M769.108 855.826l-49.87-176.208q53.196-17.732 92.538-58.736t54.856-95.308l179.532 54.302q-15.516 36.572-38.234 74.804t-57.074 80.346-81.456 74.806-100.294 45.99zM567.41 820.364q-177.316 0-302.546-125.23t-125.228-302.546q0-69.818 22.164-136.312l179.532 76.468q-7.758 29.922-7.758 59.844 0 94.2 65.384 162.356t159.584 71.48l46.544 191.722q-19.948 2.216-37.68 2.216zM994.078 414.754l-193.938-38.788q-5.542-91.984-73.144-154.596t-159.584-62.616q-53.196 0-100.848 22.72t-79.792 62.616l-182.856-77.576q57.628-93.092 154.044-147.394t209.456-54.302q177.316 0 302.544 125.23t125.23 302.546q0 9.974-1.108 22.164z" horiz-adv-x="1136" />
<glyph unicode="&#xe04f;" d="M425.558 676.294q-29.922 0-50.424-20.502t-20.502-50.424q0-8.866 2.216-18.84l-178.424-132.986q-16.622 9.974-36.57 9.974-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502 50.424 20.502 20.502 50.424q0 8.866-2.216 17.732l178.424 134.096q16.622-9.974 36.57-9.974 5.54 0 11.082 1.108l212.778-318.062q-11.082-17.732-11.082-37.68 0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424q0 17.732-7.758 33.246l201.698 252.676q9.974-2.216 18.84-2.216 29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502-50.424-20.502-20.502-50.424q0-17.732 7.758-33.248l-202.806-252.676q-8.866 2.216-17.732 2.216-7.758 0-14.408-1.108l-210.562 315.844q12.19 17.732 12.19 39.896 0 29.922-20.502 50.424t-50.424 20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe050;" d="M705.938 150.996l-341.334 424.45-294.788-273.732 1.108-263.758q0-29.922 20.502-50.424t50.424-20.502h851.116q29.922 0 50.424 20.502t20.502 50.424v496.486zM366.822 810.39l-313.628-313.628 49.87-49.87 259.324 258.216 344.658-428.882h1.108l353.524 377.904-52.086 48.762-298.114-320.276z" horiz-adv-x="1136" />
<glyph unicode="&#xe051;" d="M496.486 605.368q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502-50.424-20.502-20.502-50.424 20.502-50.424 50.424-20.502zM283.706 392.59q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502-50.424-20.502-20.502-50.424 20.502-50.424 50.424-20.502zM1028.432 37.956h-886.58v744.726q0 14.408-10.528 24.934t-24.936 10.528-24.936-10.528-10.528-24.934v-780.19q0-14.408 10.528-24.934t24.936-10.528h922.044q14.406 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528zM709.264 250.736q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502-50.424-20.502-20.502-50.424 20.502-50.424 50.424-20.502zM922.044 534.442q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502-50.424-20.502-20.502-50.424 20.502-50.424 50.424-20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe052;" d="M177.316 747.222q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h780.19q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-780.19zM177.316 605.368q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h567.41q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-567.41zM177.316 463.514q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h780.19q14.408 0 24.934 10.528t10.528 24.934-10.528 24.936-24.934 10.528h-780.19zM177.316 321.662q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h567.41q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-567.41zM177.316 179.81q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h780.19q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-780.19zM177.316 37.956q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h567.41q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-567.41z" horiz-adv-x="1136" />
<glyph unicode="&#xe053;" d="M957.506 676.294h-780.19q-14.408 0-24.936 10.528t-10.528 24.936 10.528 24.934 24.936 10.528h780.19q14.408 0 24.934-10.528t10.528-24.934-10.528-24.936-24.934-10.528zM815.654 534.442h-496.486q-14.406 0-24.936 10.528t-10.528 24.934 10.528 24.936 24.936 10.528h496.486q14.408 0 24.934-10.528t10.528-24.936-10.528-24.934-24.934-10.528zM957.506 392.59h-780.19q-14.408 0-24.936 10.528t-10.528 24.934 10.528 24.936 24.936 10.528h780.19q14.408 0 24.934-10.528t10.528-24.936-10.528-24.934-24.934-10.528zM815.654 250.736h-496.486q-14.406 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528h496.486q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528zM957.506 108.884h-780.19q-14.408 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528h780.19q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528zM815.654-32.97h-496.486q-14.406 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528h496.486q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe054;" d="M177.316 747.222q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h780.19q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-780.19zM390.096 605.368q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h567.41q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-567.41zM177.316 463.514q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h780.19q14.408 0 24.934 10.528t10.528 24.934-10.528 24.936-24.934 10.528h-780.19zM390.096 321.662q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h567.41q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-567.41zM177.316 179.81q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h780.19q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-780.19zM390.096 37.956q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h567.41q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-567.41z" horiz-adv-x="1136" />
<glyph unicode="&#xe055;" d="M177.316 747.222q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h780.19q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-780.19zM177.316 605.368q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h780.19q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-780.19zM177.316 463.514q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h780.19q14.408 0 24.934 10.528t10.528 24.934-10.528 24.936-24.934 10.528h-780.19zM177.316 321.662q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h780.19q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-780.19zM177.316 179.81q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h780.19q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-780.19zM177.316 37.956q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h780.19q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-780.19z" horiz-adv-x="1136" />
<glyph unicode="&#xe056;" d="M955.29 179.81q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528h-65.384l72.034-72.034q23.274-4.432 27.706-27.706l93.090-91.982-74.25-74.25-922.044 922.044 74.252 74.25 90.874-91.982h703.722q14.408 0 24.934-10.528t10.528-24.936-10.528-24.934-24.934-10.528h-632.798l70.926-70.926h561.87q14.408 0 24.934-10.528t10.528-24.936-10.528-24.936-24.934-10.528h-490.944l70.926-70.926h420.018q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528h-349.092l70.926-70.926h278.164q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528h-207.238l70.926-70.926h136.312zM160.694 602.044l67.602-67.602h-53.194q-14.408 0-24.936 10.528t-10.528 24.934q0 23.274 21.056 32.14zM175.1 463.514h124.122l70.926-70.926h-195.048q-14.408 0-24.936 10.528t-10.528 24.934 10.528 24.936 24.936 10.528zM175.1 321.662h265.974l70.926-70.926h-336.9q-14.408 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528zM175.1 179.81h407.826l70.926-70.926h-478.752q-14.408 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528zM175.1 37.956h549.68l70.926-70.926h-620.606q-14.408 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe057;" d="M667.152 413.644q100.848-23.274 141.854-56.52 57.628-47.654 57.628-124.12 0-79.792-64.278-131.88-78.684-63.168-229.404-63.168h-360.174v18.84q48.762 0 66.494 9.974 17.732 8.866 24.936 23.274t7.202 72.034v461.022q0 57.628-7.202 72.034t-24.936 23.274-66.494 8.866v19.948h340.226q121.904 0 172.328-21.61t79.792-64.83 29.368-91.984q0-50.978-36.572-90.874-37.68-39.896-130.77-64.278zM476.536 387.048v-227.186l-1.108-26.596q0-27.706 14.406-42.112t43.22-14.408q41.004 0 76.468 18.84 36.572 18.84 54.302 53.196 18.84 35.462 18.84 78.684 0 49.87-22.164 89.766-23.274 38.788-64.278 55.412-39.896 15.514-119.688 14.408zM476.536 428.052q74.252 0 109.714 16.624t54.302 47.1 18.84 77.576-18.84 77.022-53.196 45.438q-34.356 16.622-110.822 15.514v-279.272z" horiz-adv-x="1136" />
<glyph unicode="&#xe058;" d="M283.706 747.222h283.706q84.226 0 125.23-6.65 41.004-7.758 74.25-29.922 32.14-22.164 54.302-59.29t22.164-82.562q0-49.87-27.706-91.984-26.596-41.004-72.034-62.060 64.278-18.84 99.186-64.278t34.908-106.39q0-48.762-22.164-94.198-22.164-46.544-61.506-73.698t-95.86-33.802q-34.356-3.326-172.884-4.432h-241.592v709.264zM426.666 628.642v-164.018h94.2q84.226 0 104.174 3.324 36.572 4.432 57.628 25.488t21.056 55.41q0 32.14-18.286 52.642t-53.75 24.934q-21.056 2.216-123.014 2.216h-82.010zM426.666 347.152v-189.506h132.988q77.576 0 98.632 4.432 31.030 5.542 51.532 28.26t20.502 60.398q0 31.030-15.514 53.75t-45.438 32.692q-28.814 9.974-126.338 9.974h-116.364z" horiz-adv-x="1136" />
<glyph unicode="&#xe059;" d="M469.888 728.38l5.54 18.84h345.766l-6.65-18.84q-46.544 0-72.034-21.056-24.38-21.056-43.222-87.55l-129.662-454.372q-14.408-47.654-14.408-64.278 0-18.84 14.408-28.814 18.84-14.408 70.926-15.514l-4.432-18.84h-352.416l5.54 18.84q53.194 0 77.576 20.502t44.33 88.104l130.772 454.372q12.19 42.112 12.19 63.168 0 18.84-14.408 29.922t-69.818 15.516z" horiz-adv-x="1136" />
<glyph unicode="&#xe05a;" d="M562.978 747.222l-148.502-709.264h146.286l148.502 709.264h-146.286z" horiz-adv-x="1136" />
<glyph unicode="&#xe05b;" d="M212.778-103.896v70.926h709.264v-70.926h-709.264zM213.888 747.222h357.958v-18.84h-17.732q-41.004 0-55.966-8.312t-21.056-23.272-6.096-74.806v-339.116q0-93.092 13.854-123.014t45.99-49.87 82.010-19.948q55.41 0 95.308 25.49 39.896 24.38 59.29 69.264t19.394 154.596v282.596q0 46.546-8.866 66.494-9.974 19.948-25.49 27.706-22.164 12.19-64.278 12.19v18.84h239.378v-18.84h-14.408q-28.814 0-48.208-11.636t-28.26-36.016q-6.65-16.624-6.65-58.736v-262.648q0-123.014-16.624-176.208-15.514-54.302-78.13-99.74t-170.114-45.438q-89.766 0-138.528 23.274-67.602 33.246-95.308 84.226t-27.706 137.42v339.118q0 59.844-6.65 74.804t-22.718 23.274-60.398 8.312v18.84z" horiz-adv-x="1136" />
<glyph unicode="&#xe05c;" d="M283.706-103.896v70.926h567.41v-70.926h-567.41zM282.596 747.222h140.746v-376.798q0-89.766 4.432-116.364 8.866-43.222 43.222-68.71t93.092-25.49q59.844 0 90.32 24.38t36.572 59.844 6.096 118.58v384.554h140.746v-365.714q0-125.23-12.19-177.316-11.082-52.086-42.114-87.55-29.922-35.462-82.010-56.52-50.978-21.056-132.986-21.056-99.74 0-151.826 23.274-50.978 23.274-80.9 59.844t-39.896 77.576q-13.298 59.844-13.298 176.208v371.254z" horiz-adv-x="1136" />
<glyph unicode="&#xe05d;" d="M70.926 332.746v34.356h992.97v-34.356h-992.97zM1040.624 310.58q-13.298-63.168-50.978-96.97t-83.116-33.802q-54.302 0-95.308 45.99t-39.896 123.568q0 75.36 44.328 122.46t107.498 47.1q47.654 0 78.13-24.934t30.476-51.532q0-13.298-8.866-21.61t-24.38-8.312q-19.948 0-31.030 13.298-5.542 7.758-7.758 28.26t-14.408 31.584q-12.19 9.974-33.246 9.974-35.462 0-56.52-25.488-27.706-34.354-27.706-90.874 0-57.628 27.706-101.404t75.36-43.774q34.356 0 62.062 23.274 18.84 16.624 37.68 58.736zM498.702 454.65q46.544 64.276 99.74 64.276 49.87 0 86.442-42.112t36.572-115.254q0-85.332-56.52-137.42-48.762-44.328-108.606-44.328-27.706 0-56.52 9.974t-58.736 31.030v331.358q0 54.304-2.216 66.494-3.324 13.298-8.866 17.732t-13.298 4.432q-9.974 0-25.488-5.542l-4.432 12.19 96.416 38.788h15.514v-231.62zM498.702 432.486v-191.724q17.732-17.732 36.572-26.596t38.788-8.866q32.14 0 59.844 34.908t27.706 101.404q0 62.062-27.706 94.754t-63.168 32.692q-17.732 0-36.572-8.866-14.408-6.65-35.464-27.706zM274.84 235.222q-48.762-37.68-62.062-43.222-18.84-8.866-39.896-8.866-33.248 0-54.856 22.72t-21.61 59.29q0 23.274 9.974 41.004 14.406 23.274 49.87 44.328t118.58 50.978v13.298q0 47.654-15.514 65.384t-44.33 17.732q-22.164 0-34.354-12.19-13.3-12.19-13.3-26.596v-21.056q0-15.514-7.758-24.38t-21.056-8.866-21.61 8.866-8.312 25.49q0 29.922 31.030 54.856t86.442 24.934q42.112 0 69.818-14.406 19.948-11.082 29.922-33.248 6.65-15.514 6.65-62.060v-108.606q0-45.438 1.108-55.412 2.216-11.082 6.096-14.408t9.42-3.326 9.974 2.216q6.65 4.432 27.706 25.49v-19.948q-38.788-52.086-74.252-52.086-17.732 0-27.706 12.19t-9.974 39.896zM274.84 258.494v121.904q-53.194-21.056-68.71-29.922-27.706-15.514-39.342-32.14t-11.636-36.572q0-25.49 14.962-42.112t34.908-16.624q26.598 0 69.818 35.462z" horiz-adv-x="1136" />
<glyph unicode="&#xe05e;" d="M70.926 323.88v45.438h992.97v-45.438h-992.97zM1005.16 303.932l53.196-6.65q-8.866-55.41-44.884-86.442t-88.104-31.030q-65.384 0-105.28 42.668t-39.896 123.568q0 50.978 17.178 89.766t51.532 58.736q35.462 18.84 76.468 18.84 52.086 0 85.332-26.042t42.114-74.806l-52.086-7.758q-7.758 32.14-26.596 48.208t-46.544 16.070q-41.004 0-66.494-29.368t-25.49-92.538q0-64.278 24.934-93.644t63.722-29.368q32.14 0 53.75 19.394t27.152 60.398zM504.242 186.458h-50.978v441.074h54.302v-157.368q34.356 43.222 87.55 43.222 29.922 0 55.966-11.636t43.222-33.248 26.596-52.086 9.42-64.832q0-82.010-40.45-126.892t-96.97-44.884-88.658 47.654v-41.004zM503.134 349.368q0-57.628 15.514-83.116 25.49-42.112 69.818-42.112 35.462 0 60.952 31.030t25.49 91.982q0 62.062-24.38 91.982t-59.844 29.922-61.506-31.030-26.044-88.658zM320.276 226.356q-29.922-25.49-58.736-36.572-26.598-9.974-58.736-9.974-53.194 0-81.454 25.49t-28.26 65.384q0 24.38 10.528 43.774t27.706 31.030 39.342 17.178q15.514 4.432 48.762 8.866 65.384 7.758 96.416 17.732v14.408q0 33.246-15.514 46.546-21.056 18.84-62.062 18.84-37.68 0-55.966-13.298t-27.152-47.654l-53.194 6.65q7.758 34.356 24.382 55.412t47.654 32.14 72.034 11.082 66.494-9.42 37.68-23.826 17.732-37.68q2.216-13.298 2.216-49.87v-72.034q0-75.36 3.324-95.308t13.298-38.788h-56.52q-7.758 17.732-9.974 39.896zM315.844 347.152q-29.922-12.19-88.658-19.948-33.248-5.542-47.654-11.082-13.3-6.65-21.056-17.732t-7.758-25.49q0-22.164 16.622-36.572t47.654-14.408 55.412 13.852 36.572 37.126q8.866 18.84 8.866 54.302v19.948z" horiz-adv-x="1136" />
<glyph unicode="&#xe05f;" d="M641.662 235.222h-246.026l-28.814-67.602q-14.406-33.246-14.406-55.41 0-28.814 23.274-43.222 14.406-7.758 68.71-12.19v-18.84h-231.618v18.84q37.68 5.542 61.506 31.030t59.29 105.28l248.242 554.114h9.974l250.458-569.628q36.572-80.9 59.844-101.956 16.624-16.624 48.762-18.84v-18.84h-335.792v18.84h13.298q41.004 0 56.52 11.082 11.082 8.866 11.082 24.38 0 8.866-2.216 18.84-1.108 4.432-15.514 37.68zM623.932 274.010l-104.174 239.376-106.39-239.376h210.562z" horiz-adv-x="1136" />
<glyph unicode="&#xe060;" d="M923.152 37.956h-156.26l-60.952 160.692h-283.706l-58.736-160.692h-151.826l275.948 709.264h151.826zM659.394 318.338l-97.524 263.758-95.308-263.758h192.832z" horiz-adv-x="1136" />
<glyph unicode="&#xe061;" d="M885.472 747.222v-191.722h-18.84q-16.624 66.494-36.572 95.308t-56.52 46.544q-19.948 8.866-68.71 8.866h-53.196v-546.356q0-54.302 5.542-68.71 6.65-13.298 24.38-23.274 16.624-9.974 47.654-9.974h23.274v-19.948h-371.254v19.948h23.274q31.030 0 49.87 9.974 13.298 7.758 21.056 25.49 6.65 13.298 6.65 66.494v546.356h-52.086q-70.926 0-104.174-29.922-45.438-42.112-57.628-120.798h-18.84v191.724h636.12z" horiz-adv-x="1136" />
<glyph unicode="&#xe062;" d="M496.486 37.956v589.576h-210.562v119.688h562.978v-119.688h-209.456v-589.576h-142.962z" horiz-adv-x="1136" />
<glyph unicode="&#xe063;" d="M992.97 321.662h-150.72q8.866 34.356 8.866 70.926t-8.866 70.926h150.72q29.922 0 50.424-20.502t20.502-50.424-20.502-50.424-50.424-20.502zM812.328 536.658q-37.68 63.168-100.848 100.848l106.39 106.39q21.056 21.056 50.424 21.056t50.424-21.056 21.056-50.424-21.056-50.424zM496.486 667.428v150.718q0 29.922 20.502 50.424t50.424 20.502 50.424-20.502 20.502-50.424v-150.718q-34.356 8.866-70.926 8.866t-70.926-8.866zM322.494 536.658l-106.39 106.39q-21.056 21.056-21.056 50.424t21.056 50.424 50.424 21.056 50.424-21.056l106.39-106.39q-63.168-37.68-100.848-100.848zM283.706 392.59q0-36.572 8.866-70.926h-150.718q-29.922 0-50.424 20.502t-20.502 50.424 20.502 50.424 50.424 20.502h150.718q-8.866-34.354-8.866-70.926zM322.494 248.52q37.68-63.168 100.848-100.848l-106.39-106.39q-21.056-21.056-50.424-21.056t-50.424 21.056-21.056 50.424 21.056 50.424zM638.338 117.75v-150.72q0-29.922-20.502-50.424t-50.424-20.502-50.424 20.502-20.502 50.424v150.72q34.354-8.866 70.926-8.866t70.926 8.866zM567.41 179.81q-88.658 0-150.718 62.062t-62.060 150.718 62.060 150.72 150.718 62.060 150.718-62.060 62.062-150.72-62.062-150.72-150.72-62.062zM812.328 248.52l106.39-106.39q21.056-21.056 21.056-50.424t-21.056-50.424-50.424-21.056-50.424 21.056l-106.39 106.39q63.168 37.68 100.848 100.848z" horiz-adv-x="1136" />
<glyph unicode="&#xe064;" d="M992.97 321.662h-150.72q8.866 34.356 8.866 70.926t-8.866 70.926h150.72q29.922 0 50.424-20.502t20.502-50.424-20.502-50.424-50.424-20.502zM812.328 536.658q-37.68 63.168-100.848 100.848l106.39 106.39q21.056 21.056 50.424 21.056t50.424-21.056 21.056-50.424-21.056-50.424zM567.41-103.896q-29.922 0-50.424 20.502t-20.502 50.424v150.72q34.354-8.866 70.926-8.866t70.926 8.866v-150.72q0-29.922-20.502-50.424t-50.424-20.502zM496.486 667.428v150.718q0 29.922 20.502 50.424t50.424 20.502 50.424-20.502 20.502-50.424v-150.718q-34.356 8.866-70.926 8.866t-70.926-8.866zM322.494 536.658l-106.39 106.39q-21.056 21.056-21.056 50.424t21.056 50.424 50.424 21.056 50.424-21.056l106.39-106.39q-63.168-37.68-100.848-100.848zM283.706 392.59q0-36.572 8.866-70.926h-150.718q-29.922 0-50.424 20.502t-20.502 50.424 20.502 50.424 50.424 20.502h150.718q-8.866-34.354-8.866-70.926zM567.41 605.368v-425.558q-88.658 0-150.718 62.062t-62.060 150.718 62.060 150.72 150.718 62.060zM322.494 248.52q37.68-63.168 100.848-100.848l-106.39-106.39q-21.056-21.056-50.424-21.056t-50.424 21.056-21.056 50.424 21.056 50.424zM812.328 248.52l106.39-106.39q21.056-21.056 21.056-50.424t-21.056-50.424-50.424-21.056-50.424 21.056l-106.39 106.39q63.168 37.68 100.848 100.848z" horiz-adv-x="1136" />
<glyph unicode="&#xe065;" d="M567.41-103.896q-100.848 0-192.832 39.342t-158.476 105.836-105.834 158.476-39.342 192.832 39.342 192.832 105.834 158.476 158.476 105.836 192.832 39.342 192.832-39.342 158.476-105.836 105.834-158.476 39.342-192.832-39.342-192.832-105.836-158.476-158.476-105.836-192.832-39.342zM567.41 779.36q-105.282 0-194.494-51.532t-140.746-140.746-51.532-194.494 51.532-194.494 140.746-140.746 194.494-51.532v773.542z" horiz-adv-x="1136" />
<glyph unicode="&#xe066;" d="M992.97 179.81h-70.926v283.706q0 29.922-20.502 50.424t-50.424 20.502-50.424-20.502-20.502-50.424v-283.706h-283.706q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h283.706v-70.926q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v70.926h70.926q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502zM851.116 605.368q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502h-496.486v70.926q0 29.922-20.502 50.424t-50.424 20.502-50.424-20.502-20.502-50.424v-70.926h-70.926q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h70.926v-496.486q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v496.486h496.486z" horiz-adv-x="1136" />
<glyph unicode="&#xe067;" d="M851.116 37.956h-141.854q-29.922 0-50.424 20.502t-20.502 50.424v496.486q0 29.922 20.502 50.424t50.424 20.502h141.854q29.922 0 50.424-20.502t20.502-50.424v-496.486q0-29.922-20.502-50.424t-50.424-20.502zM531.948-32.97q-14.408 0-24.936 10.528t-10.528 24.934v709.264q0 14.408 10.528 24.936t24.936 10.528 24.934-10.528 10.528-24.936v-709.264q0-14.408-10.528-24.934t-24.934-10.528zM354.632 37.956h-141.854q-29.922 0-50.424 20.502t-20.502 50.424v496.486q0 29.922 20.502 50.424t50.424 20.502h141.854q29.922 0 50.424-20.502t20.502-50.424v-496.486q0-29.922-20.502-50.424t-50.424-20.502zM354.632 534.442q0 29.922-20.502 50.424t-50.424 20.502-50.424-20.502-20.502-50.424v-354.632q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v354.632z" horiz-adv-x="1136" />
<glyph unicode="&#xe068;" d="M709.264 37.956q-29.922 0-50.424 20.502t-20.502 50.424v638.338h1.108l353.524-709.264h-283.706zM425.558 37.956h-283.706l354.632 709.264v-638.338q0-29.922-20.502-50.424t-50.424-20.502zM425.558 394.804l-141.854-285.922h70.926q29.922 0 50.424 20.502t20.502 50.424v214.996z" horiz-adv-x="1136" />
<glyph unicode="&#xe069;" d="M212.778-32.97v283.706q0 29.922 20.502 50.424t50.424 20.502h638.338l1.108-1.108zM212.778 534.442v283.706l709.264-354.632h-638.338q-29.922 0-50.424 20.502t-20.502 50.424zM354.632 534.442h214.996l-285.922 141.854v-70.926q0-29.922 20.502-50.424t50.424-20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe06a;" d="M851.116 37.956q-29.922 0-50.424 20.502t-20.502 50.424v638.338l354.632-709.264h-283.706zM638.338 37.956h-567.41l638.338 354.632v-283.706q0-29.922-20.502-50.424t-50.424-20.502zM638.338 250.736l-283.706-141.852h212.778q29.922 0 50.424 20.502t20.502 50.424v70.926zM496.486 605.368h-70.926q-27.706 0-49.316-19.394t-21.61-51.532v-141.854h-70.926v172.884q0 35.462 33.8 73.144t68.156 37.68h110.822v70.926l197.264-104.174-197.264-108.606v70.926z" horiz-adv-x="1136" />
<glyph unicode="&#xe06b;" d="M851.116 534.442q0 32.14-21.61 51.532t-49.316 19.394h-70.926v-70.926l-197.264 108.606 197.264 104.174v-70.926h110.822q34.356 0 68.156-37.68t33.802-73.144v-172.884h-70.926v141.854zM567.41 37.956q-29.922 0-50.424 20.502t-20.502 50.424v283.706l638.338-354.632h-567.41zM567.41 179.81q0-29.922 20.502-50.424t50.424-20.502h212.778l-283.706 141.854v-70.926zM354.632 37.956h-283.706l354.632 709.264v-638.338q0-29.922-20.502-50.424t-50.424-20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe06c;" d="M922.044 818.146h-709.264v-84.224l283.706-283.706v-483.186l141.852 195.048v288.14l283.706 283.706v84.226z" horiz-adv-x="1136" />
<glyph unicode="&#xe06d;" d="M935.342 264.034l-46.544-46.544-638.338 638.338 46.546 46.544 226.078-226.078h398.962v-84.226l-157.368-157.368zM667.152 337.178l-28.814-28.814v-288.14l-141.854-195.048v483.186l-283.706 283.706v84.226h115.254z" horiz-adv-x="1136" />
<glyph unicode="&#xe06e;" d="M1063.896 108.884h-496.486q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h496.486q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502zM567.41 179.81h354.632q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502h-354.632q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502zM212.778 711.758q0 14.406-10.528 24.934t-24.936 10.528-24.936-10.528-10.528-24.934v-461.022h-141.854l177.316-283.706 177.316 283.706h-141.854v461.022zM567.41 392.59h212.778q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502h-212.778q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502zM567.41 605.368h70.926q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502h-70.926q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe06f;" d="M780.19 321.662h-212.778q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h212.778q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502zM1063.896 747.222h-496.486q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h496.486q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502zM922.044 534.442h-354.632q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h354.632q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502zM638.338 108.884h-70.926q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h70.926q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502zM212.778 711.758q0 14.406-10.528 24.934t-24.936 10.528-24.936-10.528-10.528-24.934v-461.022h-141.854l177.316-283.706 177.316 283.706h-141.854v461.022z" horiz-adv-x="1136" />
<glyph unicode="&#xe070;" d="M425.558 605.368h-70.926q-29.922 0-50.424 20.502t-20.502 50.424 20.502 50.424 50.424 20.502h70.926q29.922 0 50.424-20.502t20.502-50.424-20.502-50.424-50.424-20.502zM709.264 392.59h-354.632q-29.922 0-50.424 20.502t-20.502 50.424 20.502 50.424 50.424 20.502h354.632q29.922 0 50.424-20.502t20.502-50.424-20.502-50.424-50.424-20.502zM567.41 179.81h-212.778q-29.922 0-50.424 20.502t-20.502 50.424 20.502 50.424 50.424 20.502h212.778q29.922 0 50.424-20.502t20.502-50.424-20.502-50.424-50.424-20.502zM851.116-32.97h-496.486q-29.922 0-50.424 20.502t-20.502 50.424 20.502 50.424 50.424 20.502h496.486q29.922 0 50.424-20.502t20.502-50.424-20.502-50.424-50.424-20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe071;" d="M780.19 250.736q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502h-141.854q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h141.854zM992.97 605.368h-354.632q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h354.632q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502zM1028.432 179.81h-638.338q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h638.338q14.406 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528zM390.096 676.294h638.338q14.406 0 24.934 10.528t10.528 24.936-10.528 24.934-24.934 10.528h-638.338q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.936 24.936-10.528zM447.724 425.836l-234.944 201.698v-164.016h-106.39q-14.406 0-24.936-10.528t-10.528-24.936 10.528-24.934 24.936-10.528h106.39v-164.016zM1028.432 37.956h-638.338q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h638.338q14.406 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe072;" d="M1028.432 179.81h-638.338q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h638.338q14.406 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528zM780.19 250.736q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502h-141.854q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h141.854zM992.97 605.368h-354.632q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h354.632q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502zM390.096 676.294h638.338q14.406 0 24.934 10.528t10.528 24.936-10.528 24.934-24.934 10.528h-638.338q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.936 24.936-10.528zM1028.432 37.956h-638.338q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h638.338q14.406 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528zM390.096 392.59q14.406 0 24.936 10.528t10.528 24.934-10.528 24.936-24.936 10.528h-106.39v164.016l-234.944-201.698 234.944-197.264v164.016h106.39z" horiz-adv-x="1136" />
<glyph unicode="&#xe073;" d="M851.116 108.884q-77.576 0-142.962 38.788t-103.066 103.066h246.026q58.736 0 100.294 41.558t41.558 100.294-41.558 100.294-100.294 41.558h-246.026q37.68 64.278 103.066 103.066t142.962 38.788q117.472 0 200.588-83.118t83.116-200.59-83.116-200.588-200.588-83.116zM283.706 392.59q0 29.922 20.502 50.424t50.424 20.502h425.558q29.922 0 50.424-20.502t20.502-50.424-20.502-50.424-50.424-20.502h-425.558q-29.922 0-50.424 20.502t-20.502 50.424zM141.854 392.59q0-58.736 41.558-100.294t100.294-41.558h246.026q-37.68-64.278-103.064-103.066t-142.962-38.788q-117.472 0-200.588 83.116t-83.118 200.588 83.118 200.588 200.588 83.118q77.576 0 142.962-38.788t103.064-103.064h-246.026q-58.736 0-100.294-41.558t-41.558-100.294z" horiz-adv-x="1136" />
<glyph unicode="&#xe074;" d="M567.41 37.956h70.926v-175.1h-70.926v175.1zM567.41 922.32h70.926v-175.1h-70.926v175.1zM179.532 534.442h354.632v119.688q-52.086 22.166-108.606 22.166-77.576 0-142.962-38.788t-103.064-103.066zM671.584 250.736v-119.688q52.086-22.164 108.606-22.164 77.576 0 142.962 38.788t103.064 103.066h-354.632zM1063.896 463.514h-141.854q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h141.854q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502zM867.74-14.13l73.144-73.142 39.896 39.896-73.144 73.144zM179.532 250.736q37.68-64.278 103.064-103.064t142.962-38.788q56.52 0 108.606 22.164v119.688h-354.632zM976.346 836.986l-39.896 39.896-73.144-73.144 39.896-39.896zM1026.216 534.442q-37.68 64.278-103.066 103.066t-142.962 38.788q-56.52 0-108.606-22.166v-119.688h354.632zM224.97-47.376l39.896-39.896 73.144 73.144-39.896 39.896zM342.442 803.74l-73.144 73.144-39.896-39.896 73.142-73.142zM354.632 392.59q0 29.922-20.502 50.424t-50.424 20.502h-141.854q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h141.854q29.922 0 50.424 20.502t20.502 50.424z" horiz-adv-x="1136" />
<glyph unicode="&#xe075;" d="M141.854-32.97v851.116h354.632v-141.854h-212.778v-567.41h567.41v212.778h141.854v-354.632h-851.116zM618.39 341.61l-99.74 99.74 248.242 248.242-128.554 128.554h354.632v-354.632l-126.338 126.338z" horiz-adv-x="1136" />
<glyph unicode="&#xe076;" d="M795.706 518.926l-196.156-197.264h-103.064v98.632l199.48 198.372-128.554 128.554h354.632v-354.632zM283.706 321.662v-212.778h496.486v212.778h70.926v-283.706h-638.338v638.338h283.706v-70.926h-212.778v-283.706z" horiz-adv-x="1136" />
<glyph unicode="&#xe077;" d="M141.854 605.368v141.854h141.854v-141.854h-141.854zM354.632 605.368v141.854h638.338v-141.854h-638.338zM141.854 392.59v141.852h141.854v-141.852h-141.854zM354.632 392.59v141.852h638.338v-141.852h-638.338zM141.854 179.81v141.854h141.854v-141.854h-141.854zM354.632 179.81v141.854h638.338v-141.854h-638.338zM141.854-32.97v141.854h141.854v-141.854h-141.854zM354.632-32.97v141.854h638.338v-141.854h-638.338z" horiz-adv-x="1136" />
<glyph unicode="&#xe078;" d="M957.506 108.884h-496.486q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h496.486q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528zM319.168 676.294h-35.464v35.462q0 14.408-10.528 24.936t-24.936 10.528-24.936-10.528-10.528-24.936v-35.462h-35.462q-14.408 0-24.936-10.528t-10.528-24.936 10.528-24.934 24.936-10.528h35.462v-35.462q0-14.408 10.528-24.936t24.936-10.528 24.936 10.528 10.528 24.936v35.462h35.464q14.406 0 24.936 10.528t10.528 24.934-10.528 24.936-24.936 10.528zM957.506 392.59h-496.486q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h496.486q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528zM461.022 605.368h496.486q14.408 0 24.934 10.528t10.528 24.936-10.528 24.936-24.934 10.528h-496.486q-14.406 0-24.936-10.528t-10.528-24.936 10.528-24.936 24.936-10.528zM319.168 392.59h-35.464v35.462q0 14.408-10.528 24.936t-24.936 10.528-24.936-10.528-10.528-24.936v-35.462h-35.462q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h35.462v-35.462q0-14.408 10.528-24.934t24.936-10.528 24.936 10.528 10.528 24.934v35.462h35.464q14.406 0 24.936 10.528t10.528 24.934-10.528 24.934-24.936 10.528zM319.168 108.884h-35.464v35.462q0 14.408-10.528 24.934t-24.936 10.528-24.936-10.528-10.528-24.934v-35.462h-35.462q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h35.462v-35.462q0-14.408 10.528-24.934t24.936-10.528 24.936 10.528 10.528 24.934v35.462h35.464q14.406 0 24.936 10.528t10.528 24.934-10.528 24.934-24.936 10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe079;" d="M837.818 101.126q-21.056 59.844 78.684 345.766l5.542 16.622-270.408 270.406q8.866-3.326 23.826-9.42t57.628-26.044 81.456-39.896 86.442-49.316 82.010-57.074 57.628-60.398 23.272-61.506q-70.926-439.964-154.044-428.884-36.572 5.542-72.034 99.74zM802.356 347.152l-291.464-291.462q-32.14-32.14-60.398-45.99t-53.194-8.312-43.774 18.286-43.222 36.018l-149.61 150.72q-100.848 100.848 0 200.588l292.572 292.572q23.274 23.274 33.8 32.14t24.382 8.866 24.38-8.866 33.802-32.14l232.726-231.62q41.004-42.114 41.004-60.952t-41.004-59.844zM627.254 412.538l-95.308 95.308q-21.056 19.948-50.424 19.948t-49.316-19.948l-50.978-50.978q-19.948-19.948-19.948-49.316t19.948-50.424l95.308-95.308q21.056-21.056 50.424-21.056t50.424 21.056l49.87 49.87q21.056 21.056 21.056 50.424t-21.056 50.424z" horiz-adv-x="1136" />
<glyph unicode="&#xe07a;" d="M780.19-103.896h-425.558q-58.736 0-100.294 41.558t-41.558 100.294v567.41q0 58.736 41.558 100.294t100.294 41.558h25.488q33.248 54.302 89.212 98.078t98.078 43.774 98.078-43.774 89.212-98.078h25.49q58.736 0 100.294-41.558t41.558-100.294v-567.41q0-58.736-41.558-100.294t-100.294-41.558zM567.41 818.146q-29.922 0-50.424-20.502t-20.502-50.424h141.854q0 29.922-20.502 50.424t-50.424 20.502zM851.116 605.368q0 29.922-20.502 50.424t-50.424 20.502h-70.926q0-29.922-20.502-50.424t-50.424-20.502h-141.854q-29.922 0-50.424 20.502t-20.502 50.424h-70.926q-29.922 0-50.424-20.502t-20.502-50.424v-496.484q0-29.922 20.502-50.424t50.424-20.502h141.854q5.54 0 15.514 0.554t37.68 5.542 51.532 13.298 50.978 27.152 43.774 44.328q98.632-101.956 136.312 75.36 18.84 85.332 18.84 188.398v212.778z" horiz-adv-x="1136" />
<glyph unicode="&#xe07b;" d="M713.698 738.356h-1.108l-508.676-508.676-132.986-333.576 333.576 134.096h1.108l507.568 507.568v1.108zM283.706 108.884l-49.87 49.87v1.108l478.752 477.644q0 1.108 1.108 0l48.762-48.762v-1.108zM863.308 889.074l-99.74-99.74q-1.108-1.108 0-1.108l199.48-199.48q0-1.108 1.108 0l99.74 99.74z" horiz-adv-x="1136" />
<glyph unicode="&#xe07c;" d="M992.97-32.97h-851.116q-29.922 0-50.424 20.502t-20.502 50.424v709.264q0 29.922 20.502 50.424t50.424 20.502h851.116q29.922 0 50.424-20.502t20.502-50.424v-709.264q0-29.922-20.502-50.424t-50.424-20.502zM992.97 676.294q0 29.922-20.502 50.424t-50.424 20.502h-709.264q-29.922 0-50.424-20.502t-20.502-50.424v-425.558l249.35 212.778 282.596-247.134 152.936 176.208 166.234-141.854v425.558zM673.802 463.514q-44.328 0-75.36 31.030t-31.030 75.36 31.030 75.358 75.36 31.030 75.36-31.030 31.030-75.358-31.030-75.36-75.36-31.030z" horiz-adv-x="1136" />
<glyph unicode="&#xe07d;" d="M780.19 569.904q0-44.328-31.030-75.358t-75.36-31.030-75.36 31.030-31.030 75.36 31.030 75.358 75.36 31.030 75.36-31.030 31.030-75.358zM992.97-32.97h-673.802q44.33 0 75.358 31.030t31.030 75.36-31.030 75.36-75.358 31.030h-35.464v35.462q0 33.246-18.84 60.398t-48.762 38.234l175.1 149.61 282.596-247.134 152.936 176.208 166.234-141.854v425.558q0 29.922-20.502 50.424t-50.424 20.502h-709.264q-29.922 0-50.424-20.502t-20.502-50.424v-361.28q-31.030-11.082-50.978-38.234t-19.948-61.506v531.948q0 29.922 20.502 50.424t50.424 20.502h851.116q29.922 0 50.424-20.502t20.502-50.424v-709.264q0-28.814-20.502-49.87t-50.424-21.056zM141.854 215.274q0 14.408 10.528 24.934t24.936 10.528 24.936-10.528 10.528-24.934v-106.39h106.39q14.406 0 24.936-10.528t10.528-24.934-10.528-24.934-24.936-10.528h-106.39v-106.39q0-14.406-10.528-24.934t-24.936-10.528-24.936 10.528-10.528 24.934v106.39h-106.39q-14.408 0-24.934 10.528t-10.528 24.934 10.528 24.934 24.934 10.528h106.39v106.39z" horiz-adv-x="1136" />
<glyph unicode="&#xe07e;" d="M1063.896-103.896h-992.97q-29.922 0-50.424 20.502t-20.502 50.424v283.706q0 29.922 20.502 50.424t50.424 20.502h141.854v425.558q0 29.922 20.502 50.424t50.424 20.502h425.558q120.798 0 166.788-45.99t45.99-166.788v-283.706h141.854q29.922 0 50.424-20.502t20.502-50.424v-283.706q0-29.922-20.502-50.424t-50.424-20.502zM709.264 605.368v141.854h-354.632q-29.922 0-50.424-20.502t-20.502-50.424v-354.632h567.41v283.706h-141.854zM496.486 215.274q0-14.408 10.528-24.934t24.934-10.528h70.926q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-70.926q-14.408 0-24.936-10.528t-10.528-24.934zM851.116 108.884h-567.41q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h567.41q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe07f;" d="M892.12-32.97l-231.62 232.726 99.74 99.74 232.726-231.62v-100.848h-100.848zM425.558 179.81q-96.416 0-177.87 47.654t-129.108 129.108-47.654 177.87 47.654 177.87 129.108 129.108 177.87 47.654 177.87-47.654 129.108-129.108 47.654-177.87-47.654-177.87-129.108-129.108-177.87-47.654zM425.558 747.222q-88.658 0-150.718-62.060t-62.062-150.72 62.062-150.72 150.718-62.062 150.72 62.062 62.062 150.72-62.062 150.718-150.718 62.062z" horiz-adv-x="1136" />
<glyph unicode="&#xe080;" d="M780.19 534.442q0 96.416-47.654 177.87t-129.108 129.108-177.87 47.654-177.87-47.654-129.108-129.108-47.654-177.87 47.654-177.87 129.108-129.108 177.87-47.654 177.87 47.654 129.108 129.108 47.654 177.87zM638.338 463.514h-141.854v-141.852h-141.854v141.854h-141.854v141.854h141.854v141.852h141.854v-141.852h141.854v-141.854zM992.97 67.88l-232.726 231.62-99.74-99.74 231.62-232.726h100.848v100.848z" horiz-adv-x="1136" />
<glyph unicode="&#xe081;" d="M992.97 67.88l-232.726 231.62-99.74-99.74 231.62-232.726h100.848v100.848zM780.19 534.442q0 96.416-47.654 177.87t-129.108 129.108-177.87 47.654-177.87-47.654-129.108-129.108-47.654-177.87 47.654-177.87 129.108-129.108 177.87-47.654 177.87 47.654 129.108 129.108 47.654 177.87zM638.338 463.514h-425.558v141.852h425.558v-141.852z" horiz-adv-x="1136" />
<glyph unicode="&#xe082;" d="M909.852 276.226l-200.59 116.364 200.588 116.364q25.49 14.408 33.246 42.668t-7.202 53.75-43.222 33.248-53.75-7.758l-200.59-115.254v231.62q0 29.922-20.502 50.424t-50.424 20.502-50.424-20.502-20.502-50.424v-231.62l-200.588 115.254q-25.488 15.514-53.748 7.758t-43.222-33.248-7.204-53.75 33.248-42.668l200.588-116.364-200.588-116.364q-25.49-14.408-33.248-42.668t7.204-53.75 43.222-33.246 53.748 7.758l200.588 115.254v-231.62q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v231.62l200.588-115.254q25.49-15.514 53.75-7.758t43.222 33.246 7.202 53.75-33.246 42.668z" horiz-adv-x="1136" />
<glyph unicode="&#xe083;" d="M566.302 960q-117.472 0-200.588-83.116t-83.118-200.59v-638.338q0-87.55 62.616-150.166t150.164-62.616 150.164 62.616 62.616 150.164v638.338q0 58.736-41.558 100.294t-100.294 41.558-100.294-41.558-41.558-100.294v-567.41h70.926v567.41q0 28.814 21.056 49.87t49.87 21.056 49.87-21.056 21.056-49.87v-638.338q0-58.736-41.558-100.294t-100.294-41.558-100.294 41.558-41.558 100.294v638.338q0 87.55 62.616 150.164t150.164 62.616 150.164-62.616 62.616-150.164v-567.41h70.926v567.41q0 117.472-83.116 200.59t-200.59 83.116z" horiz-adv-x="1136" />
<glyph unicode="&#xe084;" d="M165.126 793.766q-83.118-83.116-83.118-200.588t83.118-200.59l451.048-451.048q62.062-62.060 150.72-62.060t150.72 62.062 62.062 150.164-62.062 150.164l-150.72 150.718-100.848 99.74-200.588 201.698q-41.004 41.004-99.74 41.004t-100.294-41.558-41.558-100.294 41.004-100.848l401.176-401.178 50.978 50.978-401.178 401.178q-21.056 19.948-21.056 49.87t20.502 50.424 49.87 20.502 50.424-21.056l200.588-200.59 100.848-99.74 149.61-150.72q42.112-41.004 42.112-100.294t-41.558-100.294-100.294-41.004-100.848 41.004l-451.048 451.048q-62.062 62.060-62.062 150.72t62.062 150.718 150.718 62.062 150.718-62.062l401.178-401.178 49.87 49.87-401.178 401.178q-83.118 83.116-200.588 83.116t-200.588-83.116z" horiz-adv-x="1136" />
<glyph unicode="&#xe085;" d="M638.338 250.736h141.854v70.926h-70.926v70.926h-70.926v-70.926h-141.854v-141.854h141.854v70.926zM709.264 108.884v70.926h-70.926v-70.926h-141.854v-70.926h141.854v-141.852h141.854v212.778h-70.926zM992.97-32.97h-70.926v-70.926h141.852v354.632h-70.926v-283.706zM1063.896 321.662v70.926h-141.854v70.926h-141.854v-70.926h70.926v-354.632h70.926v283.706h141.854zM709.264 889.074v-354.632h354.632v354.632h-354.632zM992.97 605.368h-212.778v212.778h212.778v-212.778zM851.116 747.222h70.926v-70.926h-70.926v70.926zM70.926-103.896h354.632v354.632h-354.632v-354.632zM141.854 179.81h212.778v-212.778h-212.778v212.778zM496.486-32.97h70.926v-70.926h-70.926v70.926zM567.41 818.146h70.926v70.926h-141.854v-283.706h70.926v212.778zM212.778 747.222h70.926v-70.926h-70.926v70.926zM425.558 889.074h-354.632v-354.632h354.632v354.632zM354.632 605.368h-212.778v212.778h212.778v-212.778zM496.486 534.442v-70.926h-425.558v-70.926h70.926v-70.926h70.926v70.926h354.632v70.926h70.926v70.926h-141.854zM212.778 108.884h70.926v-70.926h-70.926v70.926z" horiz-adv-x="1136" />
<glyph unicode="&#xe086;" d="M920.934 764.952q1.108-8.866 1.108-17.732v-638.338q0-58.736-41.558-100.294t-100.294-41.558h-390.096q-14.406 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528h319.168q58.736 0 100.294 41.558t41.558 100.294v567.41q0 58.736-41.558 100.294t-100.294 41.558h-354.632q-58.736 0-100.294-41.558t-41.558-100.294v-638.338q0-88.658 62.060-150.718t150.718-62.060h354.632q88.658 0 150.718 62.062t62.062 150.718v496.486q0 96.416-72.034 159.584zM390.096 676.294h283.706q14.408 0 24.934-10.528t10.528-24.936-10.528-24.934-24.934-10.528h-283.706q-14.406 0-24.936 10.528t-10.528 24.934 10.528 24.936 24.936 10.528zM390.096 534.442h283.706q14.408 0 24.934-10.528t10.528-24.936-10.528-24.936-24.934-10.528h-283.706q-14.406 0-24.936 10.528t-10.528 24.936 10.528 24.936 24.936 10.528zM390.096 392.59h141.854q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528h-141.854q-14.406 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe087;" d="M851.116 818.146h-496.486v-848.9q5.54 7.758 22.166 28.814t24.936 32.14 23.826 31.030 25.488 31.030 24.936 27.152 25.488 24.934 22.718 18.286 23.274 13.298 19.948 3.88q28.814 0 75.36-44.328t85.886-97.524 75.36-97.524 47.1-44.33q27.706 0 49.316 21.056t21.61 49.87v780.19q0 29.922-20.502 50.424t-50.424 20.502zM212.778 747.222v-780.19q0-28.814 21.056-49.87t49.87-21.056v922.044q-29.922 0-50.424-20.502t-20.502-50.424z" horiz-adv-x="1136" />
<glyph unicode="&#xe088;" d="M922.044 534.442h-141.852v141.854q0 29.922-20.502 50.424t-50.424 20.502h-283.706q-29.922 0-50.424-20.502t-20.502-50.424v-141.854h-141.854q-29.922 0-50.424-20.502t-20.502-50.424v-141.854h851.116v141.854q0 29.922-20.502 50.424t-50.424 20.502zM709.264 534.442h-283.706v106.39q0 14.408 10.528 24.936t24.936 10.528h212.778q14.408 0 24.934-10.528t10.528-24.936v-106.39zM602.874 179.81q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-70.926q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h70.926zM709.264 179.81q0-29.922-20.502-50.424t-50.424-20.502h-141.854q-29.922 0-50.424 20.502t-20.502 50.424v70.926h-283.706v-212.778q0-29.922 20.502-50.424t50.424-20.502h709.264q29.922 0 50.424 20.502t20.502 50.424v212.778h-283.706v-70.926z" horiz-adv-x="1136" />
<glyph unicode="&#xe089;" d="M780.19 108.884q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502 50.424 20.502 20.502 50.424-20.502 50.424-50.424 20.502zM567.41 321.662q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502 50.424 20.502 20.502 50.424-20.502 50.424-50.424 20.502zM780.19 534.442q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502 50.424 20.502 20.502 50.424-20.502 50.424-50.424 20.502zM992.97 818.146h-141.854v-70.926q0-29.922-20.502-50.424t-50.424-20.502-50.424 20.502-20.502 50.424v70.926h-283.706v-70.926q0-29.922-20.502-50.424t-50.424-20.502-50.424 20.502-20.502 50.424v70.926h-141.854q-29.922 0-50.424-20.502t-20.502-50.424v-851.118q0-29.922 20.502-50.424t50.424-20.502h851.116q29.922 0 50.424 20.502t20.502 50.424v851.116q0 29.922-20.502 50.424t-50.424 20.502zM992.97-32.97q0-29.922-20.502-50.424t-50.424-20.502h-709.264q-29.922 0-50.424 20.502t-20.502 50.424v567.41q0 29.922 20.502 50.424t50.424 20.502h709.264q29.922 0 50.424-20.502t20.502-50.424v-567.41zM780.19 321.662q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502 50.424 20.502 20.502 50.424-20.502 50.424-50.424 20.502zM567.41 108.884q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502 50.424 20.502 20.502 50.424-20.502 50.424-50.424 20.502zM638.338 463.514q0-29.922-20.502-50.424t-50.424-20.502-50.424 20.502-20.502 50.424 20.502 50.424 50.424 20.502 50.424-20.502 20.502-50.424zM354.632 534.442q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502 50.424 20.502 20.502 50.424-20.502 50.424-50.424 20.502zM780.19 747.222q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502-50.424-20.502-20.502-50.424 20.502-50.424 50.424-20.502zM354.632 747.222q29.922 0 50.424 20.502t20.502 50.424-20.502 50.424-50.424 20.502-50.424-20.502-20.502-50.424 20.502-50.424 50.424-20.502zM354.632 108.884q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502 50.424 20.502 20.502 50.424-20.502 50.424-50.424 20.502zM354.632 321.662q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502 50.424 20.502 20.502 50.424-20.502 50.424-50.424 20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe08a;" d="M922.044 37.956h-709.264q-29.922 0-50.424 20.502t-20.502 50.424v425.558q0 29.922 20.502 50.424t50.424 20.502h108.606q37.68 64.276 103.064 103.064t142.962 38.788 142.962-38.788 103.066-103.064h108.606q29.922 0 50.424-20.502t20.502-50.424v-425.558q0-29.922-20.502-50.424t-50.424-20.502zM567.41 605.368q-88.658 0-150.718-62.060t-62.060-150.72 62.060-150.72 150.718-62.062 150.718 62.062 62.062 150.72-62.062 150.72-150.72 62.060zM886.58 179.81q-14.408 0-24.934-10.528t-10.528-24.934 10.528-24.934 24.934-10.528 24.934 10.528 10.528 24.934-10.528 24.934-24.934 10.528zM567.41 282.874q-45.438 0-77.576 32.14t-32.14 77.576 32.14 77.576 77.576 32.14 77.576-32.14 32.14-77.576-32.14-77.576-77.576-32.14z" horiz-adv-x="1136" />
<glyph unicode="&#xe08b;" d="M1063.896 638.616l-354.632-205.022v171.774q0 29.922-20.502 50.424t-50.424 20.502h-496.486q-29.922 0-50.424-20.502t-20.502-50.424v-425.558q0-29.922 20.502-50.424t50.424-20.502h496.486q29.922 0 50.424 20.502t20.502 50.424v171.774l354.632-205.022v492.052z" horiz-adv-x="1136" />
<glyph unicode="&#xe08c;" d="M868.848 210.84q-108.606-39.896-60.398-145.178t-56.52-56.52-144.622-59.844-79.792 0-144.622 59.844-56.52 56.52-60.398 145.178q-54.302 19.948-54.302 39.896t54.302 39.896q108.606 39.896 60.398 144.622t55.964 55.966q41.004-18.84 72.034-13.298-28.814 21.056-28.814 56.52v283.706q0 29.922 20.502 50.424t50.424 20.502v-390.096q0-14.406 10.528-24.936t24.934-10.528 24.934 10.528 10.528 24.936v390.094h70.926q28.814 0 49.87-20.502t21.056-50.424v-283.706q0-35.464-28.814-56.52 31.030-5.54 72.034 13.298 104.174 48.762 55.966-55.966t60.398-144.624 0-79.792z" horiz-adv-x="1136" />
<glyph unicode="&#xe08d;" d="M567.41 889.074q-100.848 0-192.832-39.342t-158.476-105.836-105.834-158.476-39.342-192.832 39.342-192.832 105.834-158.476 158.476-105.834 192.832-39.342 192.832 39.342 158.476 105.836 105.834 158.476 39.342 192.832-39.342 192.832-105.836 158.476-158.476 105.836-192.832 39.342zM567.41 5.818q-105.282 0-194.494 51.532t-140.746 140.746-51.532 194.494 51.532 194.494 140.746 140.746 194.494 51.532 194.494-51.532 140.746-140.746 51.532-194.494-51.532-194.494-140.746-140.746-194.494-51.532zM567.41 605.368h-70.926v-283.706h283.706v70.926h-212.778v212.778z" horiz-adv-x="1136" />
<glyph unicode="&#xe08e;" d="M979.672 420.294q13.298 37.68 13.298 78.684 0 103.064-72.588 175.654t-175.654 72.59q-62.062 0-115.254-28.26t-87.55-77.022q-53.194 34.356-116.364 34.356-87.55 0-149.61-62.062t-62.062-150.718v-12.19q-63.17-21.056-103.064-76.468t-39.896-124.12q0-88.658 62.060-150.718t150.718-62.062h567.41q88.658 0 150.72 62.062t62.060 150.72q0 50.978-22.164 95.308t-62.062 74.25z" horiz-adv-x="1136" />
<glyph unicode="&#xe08f;" d="M909.852 121.074q12.19 27.706 12.19 58.736v283.706q0 58.736-41.558 100.294t-100.294 41.558h-354.632q-31.030 0-58.736-12.19 17.732 37.68 52.642 60.398t77.022 22.718h354.632q58.736 0 100.294-41.558t41.558-100.294v-283.706q0-42.112-22.72-77.022t-60.398-52.64zM851.116 392.59v-212.778q0-58.736-41.558-100.294t-100.294-41.558h-354.632q-58.736 0-100.294 41.558t-41.558 100.294v212.778q0 58.736 41.558 100.294t100.294 41.558h354.632q58.736 0 100.294-41.558t41.558-100.294zM283.706 250.736v-70.926q0-29.922 20.502-50.424t50.424-20.502h354.632q29.922 0 50.424 20.502t20.502 50.424v70.926q0 29.922-20.502 50.424t-50.424 20.502h-354.632q-29.922 0-50.424-20.502t-20.502-50.424z" horiz-adv-x="1136" />
<glyph unicode="&#xe090;" d="M212.778-32.97v780.19h212.778v-780.19h-212.778zM496.486-32.97v780.19h212.778v-780.19h-212.778zM780.19-32.97v780.19h212.778v-780.19h-212.778z" horiz-adv-x="1136" />
<glyph unicode="&#xe091;" d="M567.41 747.222q-115.254 0-213.332-43.774t-155.152-118.58-57.074-162.354q0-76.468 42.668-142.408t118.026-111.376q3.324-31.030-4.988-62.616t-21.61-55.412-28.26-43.222-24.382-29.922-10.528-10.528q7.758 2.216 21.61 5.542t52.086 16.624 70.372 27.706 67.048 38.234 52.642 49.316q46.546-7.758 90.874-7.758 115.254 0 213.332 43.774t155.152 118.58 57.074 162.908-57.074 162.908-155.152 118.58-213.332 43.774z" horiz-adv-x="1136" />
<glyph unicode="&#xe092;" d="M567.41 747.222q-115.254 0-213.332-43.774t-155.152-118.58-57.074-162.354q0-76.468 42.668-142.408t118.026-111.376q3.324-31.030-4.988-62.616t-21.61-55.412-28.26-43.222-24.382-29.922-10.528-10.528q7.758 2.216 21.61 5.542t52.086 16.624 70.372 27.706 67.048 38.234 52.642 49.316q46.546-7.758 90.874-7.758 115.254 0 213.332 43.774t155.152 118.58 57.074 162.908-57.074 162.908-155.152 118.58-213.332 43.774zM570.736 162.078q-45.438 0-119.688 12.19-23.274-33.246-50.978-59.29t-44.33-36.018l-15.514-9.974q4.432 5.542 9.974 16.624t13.298 47.1 3.324 74.806q-63.168 37.68-105.282 96.97t-42.112 119.134q0 108.606 102.51 185.074t248.242 76.468 248.242-76.468 102.51-185.074-102.51-185.074-247.688-76.468z" horiz-adv-x="1136" />
<glyph unicode="&#xe093;" d="M425.558 747.222q-96.416 0-177.87-36.018t-129.108-98.632-47.654-135.758q0-63.168 35.462-118.58t98.632-93.092q2.216-25.49-4.432-52.086t-17.732-46.544-23.272-36.018-20.502-24.934-9.42-8.866q6.65 2.216 18.286 4.986t43.222 13.852 58.736 23.274 55.966 32.14 44.33 41.004q38.788-6.65 75.358-6.65 96.416 0 177.87 36.572t129.108 98.632 47.654 135.758-47.654 136.312-129.108 98.632-177.87 36.018zM933.126 131.048q60.952 37.68 95.862 91.982t34.91 116.364q0 82.010-60.398 149.056t-156.814 96.97q34.356-60.952 34.356-127.446 0-126.338-110.822-218.874t-273.732-104.726q97.524-60.952 219.43-60.952 36.572 0 74.25 6.65 23.274-33.246 77.022-61.506t95.86-40.45l43.222-11.082-8.866 8.866t-19.394 23.274-23.826 36.572-17.178 44.884-3.88 50.424z" horiz-adv-x="1136" />
<glyph unicode="&#xe094;" d="M425.558 747.222q-96.416 0-177.87-36.018t-129.108-98.632-47.654-135.758q0-63.168 35.462-118.58t98.632-93.092q2.216-25.49-4.432-52.086t-17.732-46.544-23.272-36.018-20.502-24.934-9.42-8.866q6.65 2.216 18.286 4.986t43.222 13.852 58.736 23.274 55.966 32.14 44.33 41.004q38.788-6.65 75.358-6.65 96.416 0 177.87 36.572t129.108 98.632 47.654 135.758-47.654 136.312-129.108 98.632-177.87 36.018zM425.558 264.034q-28.814 0-79.792 7.758-18.84-26.596-44.33-47.1t-42.112-27.152l-16.622-7.758q4.432 4.432 9.974 12.19t13.854 36.018 4.988 59.29q-50.978 31.030-86.996 80.9t-36.016 97.524q0 87.55 80.9 149.61t196.156 62.062 196.156-62.062 80.9-149.61-80.9-149.61-196.156-62.062zM933.126 131.048q60.952 37.68 95.862 91.982t34.91 116.364q0 82.010-60.398 149.056t-156.814 96.97q34.356-60.952 34.356-127.446 0-126.338-110.822-218.874t-273.732-104.726q97.524-60.952 219.43-60.952 36.572 0 74.25 6.65 23.274-33.246 77.022-61.506t95.86-40.45l43.222-11.082-8.866 8.866t-19.394 23.274-23.826 36.572-17.178 44.884-3.88 50.424z" horiz-adv-x="1136" />
<glyph unicode="&#xe095;" d="M922.044 676.294h-709.264q-29.922 0-50.424-20.502t-20.502-50.424v-70.926h851.116v70.926q0 29.922-20.502 50.424t-50.424 20.502zM141.854 179.81q0-28.814 20.502-49.87t50.424-21.056h709.264q29.922 0 50.424 21.056t20.502 49.87v212.778h-851.116v-212.778zM461.022 321.662h212.778q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528h-212.778q-14.406 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528zM248.242 321.662h70.926q14.406 0 24.936-10.528t10.528-24.934-10.528-24.934-24.936-10.528h-70.926q-14.408 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe096;" d="M992.97 392.59q-29.922 0-50.424-20.502t-20.502-50.424v-283.706h-709.264v283.706q0 29.922-20.502 50.424t-50.424 20.502-50.424-20.502-20.502-50.424v-354.632q0-29.922 20.502-50.424t50.424-20.502h851.116q29.922 0 50.424 20.502t20.502 50.424v354.632q0 29.922-20.502 50.424t-50.424 20.502zM567.41 179.81l246.026 354.632h-175.1v283.706q0 29.922-20.502 50.424t-50.424 20.502-50.424-20.502-20.502-50.424v-283.706h-175.1z" horiz-adv-x="1136" />
<glyph unicode="&#xe097;" d="M425.558 534.442v212.778h141.854v-212.778h-141.854zM638.338 534.442v212.778h141.854v-212.778h-141.854zM425.558 250.736v212.778h141.854v-212.778h-141.854zM638.338 250.736v212.778h141.854v-212.778h-141.854zM425.558-32.97v212.778h141.854v-212.778h-141.854zM638.338-32.97v212.778h141.854v-212.778h-141.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe098;" d="M425.558 605.368v141.854h141.854v-141.854h-141.854zM638.338 605.368v141.854h141.854v-141.854h-141.854zM425.558 392.59v141.852h141.854v-141.852h-141.854zM638.338 392.59v141.852h141.854v-141.852h-141.854zM425.558 179.81v141.854h141.854v-141.854h-141.854zM638.338 179.81v141.854h141.854v-141.854h-141.854zM425.558-32.97v141.854h141.854v-141.854h-141.854zM638.338-32.97v141.854h141.854v-141.854h-141.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe099;" d="M567.41 300.606l-373.472 373.472q9.974 2.216 18.84 2.216h709.264q8.866 0 18.84-2.216zM617.28 250.736l373.472 373.472q2.216-9.974 2.216-18.84v-425.558q0-8.866-2.216-18.84l-221.644 221.644-49.87-49.87 221.644-221.644q-9.974-2.216-18.84-2.216h-709.264q-8.866 0-18.84 2.216l221.646 221.644-49.87 49.87-221.646-221.644q-2.216 9.974-2.216 18.84v425.558q0 8.866 2.216 18.84l423.342-423.342z" horiz-adv-x="1136" />
<glyph unicode="&#xe09a;" d="M567.41 821.472l357.956-357.956q5.542 0 15.514-2.216l-373.472-373.472-373.472 373.472q9.974 2.216 15.514 2.216zM567.41-7.48l2.216-2.216 421.126 421.126q2.216-9.974 2.216-18.84v-425.558q0-8.866-2.216-18.84l-221.644 221.644-49.87-49.87 221.644-221.644q-9.974-2.216-18.84-2.216h-709.264q-8.866 0-18.84 2.216l221.646 221.644-49.87 49.87-221.646-221.644q-2.216 9.974-2.216 18.84v425.558q0 8.866 2.216 18.84l421.126-421.126z" horiz-adv-x="1136" />
<glyph unicode="&#xe09b;" d="M567.41 498.978q-44.328 0-75.358-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.358-75.36 31.030zM567.41 747.222q-176.208 0-319.168-98.078t-206.13-256.554q63.168-158.476 206.13-256.554t319.168-98.078 319.168 98.078 206.13 256.554q-63.17 158.476-206.13 256.554t-319.168 98.078zM567.41 179.81q-88.658 0-150.718 62.062t-62.060 150.718 62.060 150.72 150.718 62.060 150.718-62.060 62.062-150.72-62.062-150.72-150.72-62.062z" horiz-adv-x="1136" />
<glyph unicode="&#xe09c;" d="M851.116-32.97h-567.41q-29.922 0-50.424 20.502t-20.502 50.424v709.264q0 29.922 20.502 50.424t50.424 20.502h425.558q34.356 0 85.332-38.788t89.212-89.766 38.234-84.224v-567.41q0-29.922-20.502-50.424t-50.424-20.502zM709.264 605.368v141.854h-354.632q-29.922 0-50.424-20.502t-20.502-50.424v-567.412q0-29.922 20.502-50.424t50.424-20.502h425.558q29.922 0 50.424 20.502t20.502 50.424v496.486h-141.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe09d;" d="M957.506 37.956h-106.39v-106.39q0-14.406-10.528-24.934t-24.934-10.528-24.934 10.528-10.528 24.934v106.39h-106.39q-14.408 0-24.934 10.528t-10.528 24.934 10.528 24.934 24.934 10.528h106.39v106.39q0 14.408 10.528 24.934t24.934 10.528 24.934-10.528 10.528-24.934v-106.39h106.39q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528zM851.116 315.014v290.356h-141.854v141.852h-354.632q-29.922 0-50.424-20.502t-20.502-50.424v-567.41q0-29.922 20.502-50.424t50.424-20.502h219.43q11.082-31.030 38.234-50.978t61.506-19.948h-390.096q-29.922 0-50.424 20.502t-20.502 50.424v709.264q0 29.922 20.502 50.424t50.424 20.502h425.558q34.356 0 85.332-38.234t89.212-89.212 38.234-85.332v-390.096q0 34.356-19.948 61.506t-50.978 38.234z" horiz-adv-x="1136" />
<glyph unicode="&#xe09e;" d="M851.116 818.146h-567.41q-29.922 0-50.424-20.502t-20.502-50.424v-780.19q0-29.922 20.502-50.424t50.424-20.502h567.41q29.922 0 50.424 20.502t20.502 50.424v780.19q0 29.922-20.502 50.424t-50.424 20.502zM319.168-32.97q-14.406 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528 24.936-10.528 10.528-24.934-10.528-24.934-24.936-10.528zM319.168 108.884q-14.406 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528 24.936-10.528 10.528-24.934-10.528-24.934-24.936-10.528zM319.168 250.736q-14.406 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528 24.936-10.528 10.528-24.934-10.528-24.934-24.936-10.528zM319.168 392.59q-14.406 0-24.936 10.528t-10.528 24.934 10.528 24.936 24.936 10.528 24.936-10.528 10.528-24.936-10.528-24.934-24.936-10.528zM319.168 534.442q-14.406 0-24.936 10.528t-10.528 24.934 10.528 24.936 24.936 10.528 24.936-10.528 10.528-24.936-10.528-24.934-24.936-10.528zM319.168 676.294q-14.406 0-24.936 10.528t-10.528 24.936 10.528 24.934 24.936 10.528 24.936-10.528 10.528-24.934-10.528-24.936-24.936-10.528zM709.264 37.956q0-29.922-20.502-50.424t-50.424-20.502h-141.854q-29.922 0-50.424 20.502t-20.502 50.424v70.926q0 29.922 20.502 50.424t50.424 20.502h141.854q29.922 0 50.424-20.502t20.502-50.424v-70.926zM709.264 321.662q0-29.922-20.502-50.424t-50.424-20.502h-141.854q-29.922 0-50.424 20.502t-20.502 50.424v70.926q0 29.922 20.502 50.424t50.424 20.502h141.854q29.922 0 50.424-20.502t20.502-50.424v-70.926zM709.264 605.368q0-29.922-20.502-50.424t-50.424-20.502h-141.854q-29.922 0-50.424 20.502t-20.502 50.424v70.926q0 29.922 20.502 50.424t50.424 20.502h141.854q29.922 0 50.424-20.502t20.502-50.424v-70.926zM815.654-32.97q-14.408 0-24.934 10.528t-10.528 24.934 10.528 24.934 24.934 10.528 24.934-10.528 10.528-24.934-10.528-24.934-24.934-10.528zM815.654 108.884q-14.408 0-24.934 10.528t-10.528 24.934 10.528 24.934 24.934 10.528 24.934-10.528 10.528-24.934-10.528-24.934-24.934-10.528zM815.654 250.736q-14.408 0-24.934 10.528t-10.528 24.934 10.528 24.934 24.934 10.528 24.934-10.528 10.528-24.934-10.528-24.934-24.934-10.528zM815.654 392.59q-14.408 0-24.934 10.528t-10.528 24.934 10.528 24.936 24.934 10.528 24.934-10.528 10.528-24.936-10.528-24.934-24.934-10.528zM815.654 534.442q-14.408 0-24.934 10.528t-10.528 24.934 10.528 24.936 24.934 10.528 24.934-10.528 10.528-24.936-10.528-24.934-24.934-10.528zM815.654 676.294q-14.408 0-24.934 10.528t-10.528 24.936 10.528 24.934 24.934 10.528 24.934-10.528 10.528-24.934-10.528-24.936-24.934-10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe09f;" d="M922.044 676.294h-144.068q-34.356 0-106.39-35.464t-106.39-35.462h-139.636q-29.922 0-50.424-20.502t-20.502-50.424v-283.706q0-29.922 20.502-50.424t50.424-20.502h137.42q34.356 0 108.052 35.462t109.16 35.462h141.854q29.922 0 50.424 20.502t20.502 50.424v283.706q0 29.922-20.502 50.424t-50.424 20.502zM248.242 784.9q-29.922 0-51.532-21.61t-21.61-51.532q0-43.222 37.68-64.278v-644.986q0-14.408 10.528-24.934t24.936-10.528 24.934 10.528 10.528 24.934v644.986q37.68 21.056 37.68 64.276 0 29.922-21.61 51.532t-51.532 21.61z" horiz-adv-x="1136" />
<glyph unicode="&#xe0a0;" d="M957.506 108.884h-106.39v-106.39q0-14.408-10.528-24.934t-24.934-10.528-24.934 10.528-10.528 24.934v106.39h-106.39q-14.408 0-24.934 10.528t-10.528 24.934 10.528 24.934 24.934 10.528h106.39v106.39q0 14.408 10.528 24.934t24.934 10.528 24.934-10.528 10.528-24.934v-106.39h106.39q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528zM709.264 286.198v-35.462h-35.462q-44.328 0-75.36-31.030t-31.030-75.36q0-17.732 6.65-35.462h-361.282q-29.922 0-50.424 20.502t-20.502 50.424v354.632q0 29.922 20.502 50.424t50.424 20.502h567.412q29.922 0 50.424-20.502t20.502-50.424v-148.502q-17.732 6.65-35.462 6.65-44.328 0-75.36-31.030t-31.030-75.36zM141.854 657.454v18.84q0 29.922 20.502 50.424t50.424 20.502h212.778q29.922 0 50.424-20.502t20.502-50.424h-283.706q-37.68 0-70.926-18.84z" horiz-adv-x="1136" />
<glyph unicode="&#xe0a1;" d="M851.116 104.45h-567.41q-29.922 0-50.424 20.502t-20.502 49.316v354.632q0 29.922 20.502 50.978t50.424 21.056h567.41q29.922 0 50.424-21.056t20.502-50.978v-354.632q0-28.814-20.502-49.316t-50.424-20.502zM212.778 651.914v18.84q0 29.922 20.502 50.424t50.424 20.502h212.778q29.922 0 50.424-20.502t20.502-50.424h-283.706q-37.68 0-70.926-18.84z" horiz-adv-x="1136" />
<glyph unicode="&#xe0a2;" d="M997.404 392.59l-207.238-217.212q-21.056-31.030-50.424-50.978t-57.074-19.948h-473.212q-37.68 0-67.602 21.056t-3.324 49.87l240.484 217.212q37.68 34.356 65.938 52.64t54.856 18.286h459.914q31.030 0 43.774-21.056t-6.096-49.87zM744.726 534.442h-390.096v70.926q0 28.814-20.502 49.87t-50.424 21.056h-70.926q-29.922 0-50.424-21.056t-20.502-49.87v-283.706q0-25.49 16.622-45.438l-70.926-70.926q-16.624 19.948-16.624 45.438v354.632q2.216 65.384 39.896 103.62t101.958 38.234h70.926q64.276-2.216 103.064-39.896t38.788-101.958h319.168q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe0a3;" d="M851.116 459.082v-177.316q0-15.514-10.528-25.49t-24.934-9.974-24.934 9.974-10.528 25.49v177.316h-164.018l197.264 234.944 201.698-234.944h-164.018zM567.41 401.456h141.852v-84.226q0-59.844 41.558-100.848t100.294-41.004q0-29.922-20.502-50.424t-50.424-20.502h-567.41q-29.922 0-50.424 20.502t-20.502 50.424v354.632q0 28.814 20.502 49.87t50.424 21.056h435.532l-79.792-101.956zM141.854 651.914v19.948q0 28.814 20.502 49.87t50.424 21.056h212.778q29.922 0 50.424-21.056t20.502-49.87h-283.706q-37.68 0-70.926-19.948z" horiz-adv-x="1136" />
<glyph unicode="&#xe0a4;" d="M1074.978 381.506q28.814-4.432 45.99-28.814t11.636-53.196l-12.19-69.818q-4.432-28.814-28.814-45.438t-53.194-12.19l-85.332 15.514q-18.84-41.004-46.544-75.36l54.302-78.684q17.732-24.38 12.19-53.196t-28.814-45.438l-58.736-41.004q-24.38-16.624-53.196-11.636t-45.438 29.368l-54.302 77.576q-44.328-15.514-89.766-19.948l-15.514-84.226q-4.432-28.814-28.814-45.99t-53.196-11.636l-69.818 12.19q-28.814 4.432-45.438 28.814t-12.19 53.194l15.514 84.226q-42.112 19.948-78.684 49.87l-77.576-54.302q-23.272-16.624-52.64-11.636t-45.992 29.368l-39.896 57.628q-17.732 24.38-12.19 53.196t28.814 45.438l78.684 55.41q-15.514 42.114-19.948 86.442l-83.116 15.514q-28.814 4.432-45.99 28.814t-11.636 53.196l12.19 69.818q4.434 28.814 28.814 45.438t53.194 12.19l84.224-15.516q19.948 42.114 49.87 78.684l-56.52 79.792q-16.622 24.38-11.636 53.194t29.368 45.438l57.628 41.004q24.38 16.624 53.194 11.636t46.546-29.368l56.52-80.9q42.114 14.408 86.442 18.84l15.514 84.224q4.432 28.814 28.814 45.99t53.196 11.636l69.818-12.19q28.814-4.432 45.438-28.814t12.19-53.196l-15.514-84.226q39.896-19.948 75.36-47.654l80.9 56.52q24.38 16.624 53.196 11.636t45.436-29.368l41.004-57.628q16.624-24.382 11.636-53.196t-29.368-45.438l-79.792-56.52q14.408-44.328 19.948-89.766zM640 568.798q-86.996 15.514-159.030-34.908t-87.55-137.42 35.464-159.030 137.42-87.55 159.030 34.908 87.55 137.42-35.462 159.030-137.42 87.55z" horiz-adv-x="1136" />
<glyph unicode="&#xe0a5;" d="M932.018 344.38q-131.88-48.208-72.588-175.654t-68.156-68.156-175.654-72.588-96.416 0-175.654 72.588-68.156 68.156-72.588 175.654 0 96.416 72.588 175.654 68.156 68.156 175.654 72.59 96.416 0 175.654-72.59 68.156-68.156 72.588-175.654 0-96.416zM567.41 534.442q-58.736 0-100.294-41.558t-41.558-100.294 41.558-100.294 100.294-41.558 100.294 41.558 41.558 100.294-41.558 100.294-100.294 41.558z" horiz-adv-x="1136" />
<glyph unicode="&#xe0a6;" d="M1084.952 478.476q-76.468-28.26-42.114-101.956t-39.342-39.342-101.956-42.112-55.966 0-101.956 42.114-39.896 39.342-42.114 101.956 0 55.966 42.114 101.404 39.896 39.896 101.956 42.666 55.966 0 101.956-42.666 39.342-39.896 42.114-101.404 0-55.966zM873.28 588.746q-34.356 0-58.182-24.38t-23.826-58.182 23.826-58.182 58.182-24.38 58.182 24.38 23.826 58.182-23.826 58.182-58.182 24.38zM706.494 723.394q-64.832-23.826-35.462-86.442t-33.246-33.248-86.442-35.462-47.654 0-86.442 35.462-33.8 33.248-35.464 86.442 0 47.654 35.464 86.442 33.8 33.8 86.442 35.464 47.654 0 86.442-35.464 33.246-33.8 35.462-86.442 0-47.654zM527.514 817.038q-28.814 0-49.316-20.502t-20.502-49.316 20.502-49.316 49.316-20.502 49.316 20.502 20.502 49.316-20.502 49.316-49.316 20.502zM384 480.14q39.342 108.606 79.238 0t144.622-60.398 56.52-56.52 60.398-144.624q54.302-19.948 54.302-39.896t-54.302-38.788q-108.606-39.896-59.844-145.178t-56.52-56.52-145.178-59.844-79.238 0-144.622 59.844-56.52 56.52-59.844 145.178q-54.302 18.84-54.302 38.788t54.302 39.896q108.606 39.896 59.844 144.622t56.52 56.52 144.622 60.398zM306.978 179.254q0-48.208 34.356-82.562t82.562-34.356 82.562 34.356 34.354 82.562-34.356 82.562-82.562 34.356-82.562-34.356-34.356-82.562z" horiz-adv-x="1136" />
<glyph unicode="&#xe0a7;" d="M992.97 179.81h-141.854v-212.778q0-29.922-20.502-50.424t-50.424-20.502h-567.41q-29.922 0-50.424 20.502t-20.502 50.424v780.19q0 29.922 20.502 50.424t50.424 20.502h567.41q29.922 0 50.424-20.502t20.502-50.424v-70.926h141.854q29.922 0 50.424-20.502t20.502-50.424v-354.632q0-29.922-20.502-50.424t-50.424-20.502zM780.19 250.736v425.558q0 29.922-20.502 50.424t-50.424 20.502h-425.558q-29.922 0-50.424-20.502t-20.502-50.424v-567.41q0-29.922 20.502-50.424t50.424-20.502v531.948q0 14.408 10.528 24.936t24.936 10.528 24.936-10.528 10.528-24.936v-531.948h70.926v496.486q0 29.922 20.502 50.424t50.424 20.502 50.424-20.502 20.502-50.424v-496.486h70.926v531.948q0 14.408 10.528 24.936t24.934 10.528 24.934-10.528 10.528-24.936v-531.948q29.922 0 50.424 20.502t20.502 50.424v141.854zM992.97 569.904q0 14.406-10.528 24.934t-24.934 10.528h-106.39v-354.632h106.39q14.408 0 24.934 10.528t10.528 24.934v283.706z" horiz-adv-x="1136" />
<glyph unicode="&#xe0a8;" d="M922.044 804.848v13.3h-709.264v-13.3l283.706-283.706v-483.186h-141.854q-29.922 0-50.424-20.502t-20.502-50.424h567.41q0 29.922-20.502 50.424t-50.424 20.502h-141.854v483.186z" horiz-adv-x="1136" />
<glyph unicode="&#xe0a9;" d="M851.116 179.81h-70.926q0-88.658-62.062-150.72t-150.72-62.062h-141.854q-88.658 0-150.718 62.062t-62.062 150.72v354.632h567.41v-70.926h70.926q29.922 0 50.424-20.502t20.502-50.424v-141.852q0-29.922-20.502-50.424t-50.424-20.502zM851.116 357.126q0 14.408-10.528 24.934t-24.934 10.528h-35.462v-141.854h35.462q14.408 0 24.934 10.528t10.528 24.934v70.926zM673.802 747.222q-14.408 0-24.934 10.528t-10.528 24.934 10.528 24.936 24.934 10.528 24.934-10.528 10.528-24.936-10.528-24.934-24.934-10.528zM531.948 605.368q-14.408 0-24.936 10.528t-10.528 24.936v141.852q0 14.408 10.528 24.936t24.936 10.528 24.934-10.528 10.528-24.936v-141.852q0-14.408-10.528-24.936t-24.934-10.528zM390.096 605.368q-14.406 0-24.936 10.528t-10.528 24.936 10.528 24.936 24.936 10.528 24.936-10.528 10.528-24.936-10.528-24.936-24.936-10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe0aa;" d="M638.338 250.736q88.658 0 150.72 62.062t62.062 150.718v354.632h-567.41v-354.632q0-88.658 62.060-150.718t150.718-62.062v-212.778h-141.854q-29.922 0-50.424-20.502t-20.502-50.424h567.41q0 29.922-20.502 50.424t-50.424 20.502h-141.852v212.778z" horiz-adv-x="1136" />
<glyph unicode="&#xe0ab;" d="M780.19 179.81h212.778v-212.778h-212.778v212.778zM780.19 463.514h212.778v-212.778h-212.778v212.778zM496.486 747.222h212.778v-212.778h-212.778v212.778zM780.19 747.222h212.778v-212.778h-212.778v212.778zM212.778 747.222h212.778v-212.778h-212.778v212.778zM496.486 463.514h212.778v-212.778h-212.778v212.778zM212.778 179.81h212.778v-212.778h-212.778v212.778zM212.778 463.514h212.778v-212.778h-212.778v212.778zM496.486 179.81h212.778v-212.778h-212.778v212.778z" horiz-adv-x="1136" />
<glyph unicode="&#xe0ac;" d="M638.338 321.662h354.632v-354.632h-354.632v354.632zM638.338 747.222h354.632v-354.632h-354.632v354.632zM212.778 747.222h354.632v-354.632h-354.632v354.632zM212.778 321.662h354.632v-354.632h-354.632v354.632z" horiz-adv-x="1136" />
<glyph unicode="&#xe0ad;" d="M1029.54 463.514h-919.826q-44.33 0-75.358-31.584t-31.030-75.36 31.030-74.804 75.358-31.030h919.826q43.222 0 74.25 31.030t31.030 74.806-31.030 75.36-74.25 31.584z" horiz-adv-x="1136" />
<glyph unicode="&#xe0ae;" d="M602.874 960q44.328 0 75.36-31.030t31.030-75.36v-922.044q0-44.328-31.030-75.358t-75.36-31.030-75.36 31.030-31.030 75.358v922.044q0 44.328 31.030 75.36t75.36 31.030z" horiz-adv-x="1136" />
<glyph unicode="&#xe0af;" d="M1081.628 373.75l-159.584 159.584v249.35q0 14.408-20.502 24.936t-49.87 10.528-50.424-10.528-21.056-24.936v-107.498l-161.802 161.802q-19.948 19.948-51.532 19.948t-52.64-19.948l-463.238-463.238q-22.164-22.164-14.96-39.342t38.234-17.178h69.818q27.706 0 47.654-19.394t19.948-47.1v-280.38q0-31.030 21.61-52.642t51.532-21.61h211.67v283.706q0 29.922 21.056 50.424t50.424 20.502 49.87-20.502 20.502-50.424v-283.706h209.456q31.030 0 52.64 21.61t21.61 52.64v280.38q0 27.706 19.394 47.1t47.1 19.394h70.926q31.030 0 37.68 16.624t-15.516 39.896z" horiz-adv-x="1136" />
<glyph unicode="&#xe0b0;" d="M1048.382 331.636l-103.066 466.562q-8.866 38.788-41.558 64.832t-71.48 26.044h-529.732q-38.788 0-71.48-26.044t-41.558-64.832l-103.064-466.562q-15.516-67.602-15.516-137.42v-198.372q0-41.004 29.368-70.372t70.372-29.368h793.49q41.004 0 70.372 29.368t29.368 70.372v198.372q0 69.818-15.516 137.42zM982.996 259.048q-8.866-11.636-25.49-11.636h-212.778q-13.298 0-22.72-9.42t-9.42-22.72v-70.926q0-16.624-11.082-27.706t-27.706-11.082h-212.778q-16.622 0-27.706 11.082t-11.082 27.706v70.926q0 13.298-9.42 22.72t-22.718 9.42h-212.778q-16.622 0-25.49 11.636t-5.54 27.152l106.39 477.644q3.324 15.514 16.622 26.596t29.922 11.082h536.38q16.624 0 29.922-11.082t16.624-26.596l106.39-477.644q3.326-15.514-5.542-27.152z" horiz-adv-x="1136" />
<glyph unicode="&#xe0b1;" d="M780.19 320.554q-37.68 0-74.25 9.974l-329.142-329.144q-38.788-38.788-94.752-41.004t-98.078 34.356v211.67q54.302 31.030 106.39 84.226 15.514 14.408 63.168 98.078t65.384 102.51q6.65 5.54 28.814-24.936t28.814-23.828q22.166 22.166 43.222 47.654-24.38 54.302-24.38 115.254 0 117.472 83.116 200.59t201.144 83.116 201.144-83.116 83.116-201.144-83.116-201.144-200.588-83.116zM540.814 487.896l-354.632-354.632 50.978-50.978 354.632 354.632zM815.654 747.222q-44.328 0-75.36-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.358-31.030 75.36-75.36 31.030z" horiz-adv-x="1136" />
<glyph unicode="&#xe0b2;" d="M992.97 889.074h-567.41q-29.922 0-50.424-20.502t-20.502-50.424v-177.316q0-14.408 10.528-24.936t24.936-10.528 24.936 10.528 10.528 24.936v106.39q0 29.922 20.502 50.424t50.424 20.502h425.558q29.922 0 50.424-20.502t20.502-50.424v-709.264q0-29.922-20.502-50.424t-50.424-20.502h-425.558q-29.922 0-50.424 20.502t-20.502 50.424v106.39q0 14.408-10.528 24.934t-24.936 10.528-24.936-10.528-10.528-24.934v-177.316q0-29.922 20.502-50.424t50.424-20.502h567.41q29.922 0 50.424 20.502t20.502 50.424v851.116q0 29.922-20.502 50.424t-50.424 20.502zM496.486 189.784l352.416 203.914-352.416 203.914v-134.096h-354.632q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502h354.632v-131.88z" horiz-adv-x="1136" />
<glyph unicode="&#xe0b3;" d="M673.802 179.81q-14.408 0-24.934-10.528t-10.528-24.934v-106.39q0-29.922-20.502-50.424t-50.424-20.502h-425.558q-29.922 0-50.424 20.502t-20.502 50.424v709.264q0 28.814 20.502 49.87t50.424 21.056h425.558q29.922 0 50.424-21.056t20.502-49.87v-106.39q0-14.408 10.528-24.936t24.934-10.528 24.934 10.528 10.528 24.936v177.316q0 28.814-20.502 49.87t-50.424 21.056h-567.41q-29.922 0-50.424-21.056t-20.502-49.87v-851.116q0-29.922 20.502-50.424t50.424-20.502h567.41q29.922 0 50.424 20.502t20.502 50.424v177.316q0 14.408-10.528 24.934t-24.934 10.528zM1132.606 393.698l-352.416 203.914v-134.096h-354.632q-29.922 0-50.424-21.056t-20.502-50.424 20.502-49.87 50.424-20.502h354.632v-131.88z" horiz-adv-x="1136" />
<glyph unicode="&#xe0b4;" d="M567.41-103.896q-14.408 17.732-38.234 48.762t-85.332 118.026-108.052 163.462-84.778 165.126-38.234 142.962q0 96.416 47.654 177.87t129.108 129.108 177.87 47.654 177.87-47.654 129.108-129.108 47.654-177.87q0-54.302-36.572-140.19t-88.658-170.114-104.174-159.030-88.658-122.46-36.572-46.546zM567.41 748.328q-88.658 0-151.274-62.616t-62.616-151.272 62.616-151.274 151.274-62.616 151.274 62.616 62.616 151.274-62.616 151.274-151.274 62.616z" horiz-adv-x="1136" />
<glyph unicode="&#xe0b5;" d="M922.044 747.222l-275.948-212.778h-433.316q-29.922 0-50.424-20.502t-20.502-50.424v-141.854q0-29.922 20.502-50.424t50.424-20.502h70.926v-141.854q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v141.854h220.538l275.948-212.778q29.922 0 50.424 20.502t20.502 50.424v567.41q0 28.814-21.056 49.87t-49.87 21.056z" horiz-adv-x="1136" />
<glyph unicode="&#xe0b6;" d="M354.632 747.222v-515.326q-33.248 18.84-70.926 18.84-58.736 0-100.294-41.558t-41.558-100.294 41.558-100.294 100.294-41.558 100.294 41.558 41.558 100.294v505.35l425.558 53.196v-364.606q-33.246 18.84-70.926 18.84-58.736 0-100.294-41.558t-41.558-100.294 41.558-100.294 100.294-41.558 100.294 41.558 41.558 100.294v638.338z" horiz-adv-x="1136" />
<glyph unicode="&#xe0b7;" d="M780.19 179.81h-80.346t-80.346 1.108q-6.65-2.216-36.572 12.19-15.514 4.432-15.514-4.432-1.108-6.65 0-20.502t0-24.38-5.542-19.394q-13.298-22.164-39.896-13.852t-25.488 33.802v177.316h-251.568q-16.622 1.108-26.044 15.514t-4.986 30.476 21.056 21.61q2.216 4.432 35.464 3.88t36.57-0.554h189.506v92.538t1.108 91.428q2.216 17.732 17.176 24.936t31.030 1.108 20.502-21.61q1.108-4.432 1.108-33.246v-32.14q15.514 8.866 34.908 13.298t33.246 4.988 38.234 0.554h106.944t33.246-4.432 33.802-12.19q37.68-19.948 57.628-58.736t16.624-82.008v-25.49t-0.554-28.814-2.216-24.934-6.096-26.596-12.19-22.72q-17.732-32.14-50.978-50.424t-69.818-18.286zM780.19 463.514h-76.468t-76.468-1.108q-35.462-3.324-52.64-38.234t1.662-65.938q9.974-19.948 31.584-29.368t45.99-7.202h68.71t68.71 1.108q35.462 3.326 52.64 38.234t-1.662 65.938q-8.866 16.624-26.044 26.596t-36.018 9.974z" horiz-adv-x="1136" />
<glyph unicode="&#xe0b8;" d="M815.654 321.662h-177.316v-248.242q0-14.408-10.528-24.934t-24.934-10.528-24.934 10.528-10.528 24.934v248.242h-177.316q-14.406 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528h54.302q-18.84 33.246-18.84 70.926v141.854q0 58.736 41.558 100.294t100.294 41.558h70.926q58.736 0 100.294-41.558t41.558-100.294v-141.854q0-37.68-18.84-70.926h54.302q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528zM638.338 605.368q0 29.922-20.502 50.424t-50.424 20.502-50.424-20.502-20.502-50.424v-141.852q0-28.814 20.502-49.87t50.424-21.056 50.424 21.056 20.502 49.87v141.852z" horiz-adv-x="1136" />
<glyph unicode="&#xe0b9;" d="M780.19 770.494v-126.338q79.792-52.086 126.892-137.42t47.1-185.074q0-105.28-51.532-194.494t-140.746-140.746-194.494-51.532-194.494 51.532-140.746 140.746-51.532 194.494q0 99.74 47.1 185.074t126.892 137.42v126.338q-127.446-60.952-205.576-181.75t-78.13-267.082q0-100.848 39.342-192.832t105.834-158.476 158.476-105.836 192.832-39.342 192.832 39.342 158.476 105.836 105.836 158.476 39.342 192.832q0 146.286-78.13 267.082t-205.576 181.75zM567.41 321.662q29.922 0 50.424 20.502t20.502 50.424v496.486q0 29.922-20.502 50.424t-50.424 20.502-50.424-20.502-20.502-50.424v-496.486q0-29.922 20.502-50.424t50.424-20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe0ba;" d="M1029.54 250.736h-919.826q-44.33 0-75.358 31.030t-31.030 75.36 31.030 75.36 75.358 31.030h919.826q43.222 0 74.25-31.030t31.030-75.36-31.030-75.36-74.25-31.030zM1026.216 392.59h-318.060v-70.926h318.060q14.406 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528zM1029.54 604.26h-919.826q-44.33 0-75.358 31.030t-31.030 75.358 31.030 75.36 75.358 31.030h919.826q43.222 0 74.25-31.030t31.030-75.36-31.030-75.358-74.25-31.030zM1026.216 746.114h-530.84v-70.926h530.84q14.406 0 24.934 10.528t10.528 24.936-10.528 24.934-24.934 10.528zM109.714 109.99h919.826q43.222 0 74.25-31.584t31.030-75.36-31.030-74.806-74.25-31.030h-919.826q-44.33 0-75.358 31.030t-31.030 74.806 31.030 75.36 75.358 31.584zM354.632-31.86h671.584q14.406 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-671.584v-70.926z" horiz-adv-x="1136" />
<glyph unicode="&#xe0bb;" d="M638.338-32.97v212.778q0 29.922-20.502 50.424t-50.424 20.502-50.424-20.502-20.502-50.424v-212.778h-354.632l212.778 851.116h141.854v-70.926q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v70.926h141.854l212.778-851.116h-354.632zM638.338 534.442q0 29.922-20.502 50.424t-50.424 20.502-50.424-20.502-20.502-50.424v-141.854q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v141.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe0bc;" d="M230.51 190.892v-135.202h135.204q0 56.52-39.342 95.86t-95.86 39.342zM230.51 462.406v-136.312q111.932 0 191.17-79.238t79.238-191.168h136.312q0 110.822-54.856 203.914t-147.948 147.948-203.914 54.856zM230.51 732.814v-135.202q109.714 0 210.008-43.222t172.884-115.81 115.81-172.884 43.222-210.010h135.202q0 137.42-53.75 263.202t-144.068 216.104-216.104 144.068-263.202 53.75z" horiz-adv-x="1136" />
<glyph unicode="&#xe0bd;" d="M922.044-32.97h-709.264q-29.922 0-50.424 20.502t-20.502 50.424v709.264q0 29.922 20.502 50.424t50.424 20.502h70.926v-283.706q0-29.922 20.502-50.424t50.424-20.502h283.706q29.922 0 50.424 20.502t20.502 50.424v283.706h70.926q88.658 0 150.718-62.616t62.062-150.164v-567.41q0-29.922-20.502-50.424t-50.424-20.502zM851.116 250.736q0 29.922-20.502 50.424t-50.424 20.502h-425.558q-29.922 0-50.424-20.502t-20.502-50.424v-70.926q0-29.922 20.502-50.424t50.424-20.502h425.558q29.922 0 50.424 20.502t20.502 50.424v70.926zM496.486 676.294v-141.852h-70.926q-29.922 0-50.424 20.502t-20.502 50.424v141.854q0 29.922 20.502 50.424t50.424 20.502h141.854q29.922 0 50.424-20.502t20.502-50.424h-70.926q-29.922 0-50.424-20.502t-20.502-50.424z" horiz-adv-x="1136" />
<glyph unicode="&#xe0be;" d="M283.706-32.97h-141.854q-29.922 0-50.424 20.502t-20.502 50.424v141.854q0 29.922 20.502 50.424t50.424 20.502h141.854q29.922 0 50.424-20.502t20.502-50.424v-141.854q0-29.922-20.502-50.424t-50.424-20.502zM638.338-32.97h-141.854q-29.922 0-50.424 20.502t-20.502 50.424v141.854q0 29.922 20.502 50.424t50.424 20.502h141.854q29.922 0 50.424-20.502t20.502-50.424v-141.854q0-29.922-20.502-50.424t-50.424-20.502zM992.97-32.97h-141.854q-29.922 0-50.424 20.502t-20.502 50.424v141.854q0 29.922 20.502 50.424t50.424 20.502h141.854q29.922 0 50.424-20.502t20.502-50.424v-141.854q0-29.922-20.502-50.424t-50.424-20.502zM957.506 321.662h-780.19q-14.408 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528h780.19q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528zM638.338 463.514h-141.854q-29.922 0-50.424 20.502t-20.502 50.424v141.852q0 29.922 20.502 50.424t50.424 20.502h141.854q29.922 0 50.424-20.502t20.502-50.424v-141.852q0-29.922-20.502-50.424t-50.424-20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe0bf;" d="M868.848 392.59l-402.286-401.178q-41.004-42.114-99.74-42.114t-100.848 42.114l-99.74 99.74q-42.112 42.114-42.112 100.848t42.112 100.848l401.178 401.178q19.948 19.948 70.372 38.234t105.28 28.26 105.28 6.65 70.372-23.274 23.274-70.372-6.65-105.28-28.26-105.282-38.234-70.372zM718.13 442.458l-100.848 100.848q-19.948 21.056-49.87 21.056t-49.87-21.056l-301.438-301.438q-21.056-21.056-21.056-50.424t21.056-49.316l100.848-100.848q19.948-21.056 49.87-21.056t49.87 21.056l301.438 301.438q21.056 19.948 21.056 49.87t-21.056 49.87zM868.294 693.472q-20.502 20.502-49.87 20.502t-50.424-20.502-21.056-49.87 21.056-50.424 50.424-21.056 49.87 21.056 20.502 50.424-20.502 49.87z" horiz-adv-x="1136" />
<glyph unicode="&#xe0c0;" d="M780.19 605.368h-567.41q-58.736 0-100.294-41.558t-41.558-100.294v-141.854q0-58.736 41.558-100.294t100.294-41.558h567.41q38.788 0 106.944 36.572t122.46 88.104 54.304 88.104-54.302 88.104-122.458 88.104-106.944 36.572zM709.264 321.662q0-29.922-20.502-50.424t-50.424-20.502h-425.558q-29.922 0-50.424 20.502t-20.502 50.424v141.854q0 29.922 20.502 50.424t50.424 20.502h425.558q29.922 0 50.424-20.502t20.502-50.424v-141.854zM922.044 321.662q-29.922 0-50.424 20.502t-20.502 50.424 20.502 50.424 50.424 20.502 50.424-20.502 20.502-50.424-20.502-50.424-50.424-20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe0c1;" d="M425.558 889.074l-141.854-496.486h212.778v-496.486l354.632 709.264h-283.706l141.852 283.706h-283.706z" horiz-adv-x="1136" />
<glyph unicode="&#xe0c2;" d="M851.116 179.81h-70.926l-212.778-212.778-212.778 212.778h-70.926q-88.658 0-150.718 62.062t-62.062 150.718v141.854q0 88.658 62.062 150.718t150.718 62.062h567.412q88.658 0 150.72-62.062t62.060-150.718v-141.854q0-88.658-62.062-150.72t-150.718-62.062zM922.044 534.442q0 29.922-20.502 50.424t-50.424 20.502h-567.41q-29.922 0-50.424-20.502t-20.502-50.424v-141.854q0-29.922 20.502-50.424t50.424-20.502h567.41q29.922 0 50.424 20.502t20.502 50.424v141.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe0c3;" d="M922.044 605.368h-709.264q-29.922 0-50.424 20.502t-20.502 50.424 20.502 50.424 50.424 20.502h212.778v70.926q0 29.922 20.502 50.424t50.424 20.502h141.854q29.922 0 50.424-20.502t20.502-50.424v-70.926h212.778q29.922 0 50.424-20.502t20.502-50.424-20.502-50.424-50.424-20.502zM283.706 534.442h567.41q29.922 0 50.424-20.502t20.502-50.424v-496.486q0-29.922-20.502-50.424t-50.424-20.502h-567.41q-29.922 0-50.424 20.502t-20.502 50.424v496.486q0 29.922 20.502 50.424t50.424 20.502zM780.19-32.97q29.922 0 50.424 20.502t20.502 50.424v354.632q0 29.922-20.502 50.424t-50.424 20.502v-496.484zM638.338-32.97h70.926v496.486h-70.926v-496.486zM425.558-32.97h70.926v496.486h-70.926v-496.486zM283.706 37.956q0-29.922 20.502-50.424t50.424-20.502v496.486q-29.922 0-50.424-20.502t-20.502-50.424v-354.632z" horiz-adv-x="1136" />
<glyph unicode="&#xe0c4;" d="M922.044 747.222h-70.926v70.926h-567.41v-70.926h-70.926q-29.922 0-50.424-20.502t-20.502-50.424v-212.78q0-29.922 20.502-50.424t50.424-20.502h70.926q0-72.034 67.602-178.424t145.178-152.936v-94.198h-70.926q-29.922 0-50.424-20.502t-20.502-50.424h425.558q0 29.922-20.502 50.424t-50.424 20.502h-70.926v94.198q77.576 46.544 145.178 152.936t67.602 178.424h70.926q29.922 0 50.424 20.502t20.502 50.424v212.778q0 29.922-20.502 50.424t-50.424 20.502zM283.706 640.832v-177.316h-35.462q-14.408 0-24.936 10.528t-10.528 24.936v141.854q0 14.408 10.528 24.936t24.936 10.528h35.462v-35.464zM922.044 498.978q0-14.406-10.528-24.936t-24.934-10.528h-35.462v212.778h35.462q14.408 0 24.934-10.528t10.528-24.936v-141.852z" horiz-adv-x="1136" />
<glyph unicode="&#xe0c5;" d="M283.706 463.514v212.778h212.778v-212.778h-212.778zM638.338 392.59v354.632h354.632v-354.632h-354.632zM709.264 37.956v212.778h212.778v-212.778h-212.778zM212.778-32.97v354.632h354.632v-354.632h-354.632z" horiz-adv-x="1136" />
<glyph unicode="&#xe0c6;" d="M992.97 392.59q-29.922 0-50.424-20.502t-20.502-50.424v-283.706h-709.264v283.706q0 29.922-20.502 50.424t-50.424 20.502-50.424-20.502-20.502-50.424v-354.632q0-29.922 20.502-50.424t50.424-20.502h851.116q29.922 0 50.424 20.502t20.502 50.424v354.632q0 29.922-20.502 50.424t-50.424 20.502zM496.486 250.736q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v283.706h175.1l-246.026 354.632-246.026-354.632h175.1v-283.706z" horiz-adv-x="1136" />
<glyph unicode="&#xe0c7;" d="M780.19 108.884h-425.558q-58.736 0-100.294 41.558t-41.558 100.294v283.706q0 58.736 41.558 100.294t100.294 41.558h425.558q58.736 0 100.294-41.558t41.558-100.294v-283.706q0-58.736-41.558-100.294t-100.294-41.558zM851.116 392.59q0 29.922-20.502 50.424t-50.424 20.502h-425.558q-29.922 0-50.424-20.502t-20.502-50.424v-141.852q0-29.922 20.502-50.424t50.424-20.502h425.558q29.922 0 50.424 20.502t20.502 50.424v141.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe0c8;" d="M851.116 676.294h-354.632q-58.736 0-100.294-41.558t-41.558-100.294v-212.778q0-58.736 41.558-100.294t100.294-41.558h354.632q58.736 0 100.294 41.558t41.558 100.294v212.778q0 58.736-41.558 100.294t-100.294 41.558zM922.044 321.662q0-29.922-20.502-50.424t-50.424-20.502h-354.632q-29.922 0-50.424 20.502t-20.502 50.424v70.926q0 29.922 20.502 50.424t50.424 20.502h354.632q29.922 0 50.424-20.502t20.502-50.424v-70.926zM425.558 108.884q-58.736 0-100.294 41.558t-41.558 100.294v283.706q0 31.030 12.19 58.736-37.68-17.732-60.398-52.64t-22.718-77.022v-283.706q0-58.736 41.558-100.294t100.294-41.558h354.632q42.112 0 77.022 22.72t52.64 60.398q-27.706-12.19-58.736-12.19h-354.632z" horiz-adv-x="1136" />
<glyph unicode="&#xe0c9;" d="M986.32 169.836l-328.034 329.142q9.974 36.57 9.974 74.252 0 117.472-83.672 200.588t-201.144 83.118q-100.848 0-179.532-64.278l208.346-34.354 76.468-202.806-137.42-166.234-209.456 34.356q38.788-62.062 102.51-98.632t139.082-36.572q37.68 0 74.252 9.974l328.034-329.144q42.114-41.004 100.848-41.004t100.294 41.558 41.558 100.294-42.114 99.74zM879.376 5.818q-29.368 0-49.87 21.056t-20.502 50.424 20.502 49.87 49.87 20.502 50.424-20.502 21.056-49.87-21.056-50.424-50.424-21.056z" horiz-adv-x="1136" />
<glyph unicode="&#xe0ca;" d="M664.934 756.086q-19.948 0-32.14-16.624t-12.19-45.436v-115.256q-53.196-9.974-100.294-24.934t-100.294-43.222-90.874-64.832-62.616-92.538-24.936-122.458q24.382 47.654 68.156 80.9t98.632 48.762 105.834 21.056 106.39 4.432v-117.472q0-43.222 25.49-57.074t62.062 11.636l285.922 198.372q36.57 24.38 36.57 59.844t-36.572 60.952l-285.922 197.264q-23.274 16.624-43.222 16.624zM301.438 527.792q-103.064 0-175.654-72.588t-72.588-175.654 72.588-175.654 175.654-72.588 175.654 72.588 72.59 175.654q0 17.732-3.326 37.68-39.896-1.108-74.25-6.65 3.324-15.514 3.324-31.030 0-72.034-50.978-123.014t-123.014-50.978-123.014 50.978-50.978 123.014q0 50.978 27.706 93.644t73.144 63.722q32.138 49.87 83.116 90.874h-9.974z" horiz-adv-x="1136" />
<glyph unicode="&#xe0cb;" d="M567.41 835.88q-50.978 0-87.55-36.572t-36.57-87.55v-177.316h-177.316q-50.978 0-87.55-36.572t-36.57-87.55 36.57-87.55 87.55-36.572h177.316v-177.316q0-50.978 36.572-87.55t87.55-36.572 87.55 36.572 36.572 87.55v177.316h177.316q50.978 0 87.55 36.572t36.572 87.55-36.572 87.55-87.55 36.57h-177.316v177.316q0 50.978-36.572 87.55t-87.55 36.572z" horiz-adv-x="1136" />
<glyph unicode="&#xe0cc;" d="M859.982 800.416h-585.144q-39.896 0-68.71-28.814t-28.814-68.71v-585.144q0-39.896 28.814-68.71t68.71-28.814h585.144q39.896 0 68.71 28.814t28.814 68.71v585.144q0 39.896-28.814 68.71t-68.71 28.814zM780.19 339.394h-141.854v-136.312q0-33.246-20.502-54.856t-50.424-21.61-50.424 21.61-20.502 54.856v136.312h-141.854q-29.922 0-50.424 21.056t-20.502 49.87q0 29.922 20.502 50.424t50.424 20.502h141.854v147.394q0 25.488 21.056 45.436t49.87 19.948 49.87-19.948 21.056-45.436v-147.394h141.852q29.922 0 50.424-20.502t20.502-49.87-21.056-50.424-49.87-21.056z" horiz-adv-x="1136" />
<glyph unicode="&#xe0cd;" d="M390.096 764.952q-36.572 0-62.616-26.044t-26.044-62.616v-100.848q32.14-15.514 51.532-45.436t19.394-66.494v-53.196h390.096v53.194q0 36.57 19.394 66.494t51.532 45.438v100.848q0 36.572-26.044 62.616t-62.616 26.044h-354.632zM248.242 552.174q-36.57 0-62.616-26.044t-26.044-62.616 26.044-62.616 62.616-26.044q8.866 0 17.732 2.216v-214.996q0-14.408 10.528-24.934t24.936-10.528 24.936 10.528 10.528 24.934v303.654q-1.108 35.464-26.596 60.952t-62.062 25.49zM886.58 552.174q-36.572 0-62.062-25.49t-26.596-60.952v-303.654q0-14.408 10.528-24.934t24.934-10.528 24.934 10.528 10.528 24.934v214.996q8.866-2.216 17.732-2.216 36.572 0 62.616 26.044t26.044 62.616-26.044 62.616-62.616 26.044zM372.364 374.856v-88.658h390.096v88.658h-390.096zM372.364 250.736v-88.658q0-14.408 9.42-24.934t22.718-10.528h325.818q13.298 0 22.72 10.528t9.42 24.934v88.658h-390.096zM301.438 91.152q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528 24.936 10.528 10.528 24.934-10.528 24.934-24.936 10.528zM833.384 91.152q-14.408 0-24.934-10.528t-10.528-24.934 10.528-24.934 24.934-10.528 24.934 10.528 10.528 24.934-10.528 24.934-24.934 10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe0ce;" d="M319.168 640.832q-22.166 0-37.68-15.514t-15.514-37.68v-35.462q0-22.164-15.514-37.68t-37.68-15.514h-35.462q-22.164 0-37.68-15.514t-15.516-37.68v-106.39q0-22.164 15.516-37.68t37.68-15.514h35.462q22.164 0 37.68-15.514t15.514-37.68v-35.462q0-22.164 15.514-37.68t37.68-15.514h119.688q22.166 0 45.99 12.746t36.018 31.030 5.542 31.584-28.814 13.298h-89.766q-22.166 0-37.68 15.514t-15.514 37.68v212.778q0 22.164 15.514 37.68t37.68 15.514h300.328q22.164 0 45.99 13.298t36.018 31.030 4.986 31.030-28.26 13.298h-447.724zM957.506 640.832q-22.164 0-46.544-13.298t-36.572-31.030l-268.19-407.826q-12.19-17.732-5.542-31.030t28.814-13.298h345.766q22.164 0 37.68 15.514t15.514 37.68v390.096q0 22.166-15.514 37.68t-37.68 15.516h-17.732z" horiz-adv-x="1136" />
<glyph unicode="&#xe0cf;" d="M313.628 741.68q-117.472 0-224.97-49.87v-653.852q105.282 60.952 224.97 60.952t223.862-60.952h59.844q104.174 60.952 223.86 60.952t224.97-60.952v653.852q-107.498 49.87-224.97 49.87-110.822 0-213.886-44.328h-79.792q-103.064 44.328-213.888 44.328zM313.628 657.454q104.174 0 197.264-45.436v-466.564q-95.308 37.68-197.264 37.68-70.926 0-140.746-18.84v470.996q68.71 22.166 140.746 22.166zM821.196 657.454q72.034 0 140.746-22.164v-470.996q-69.818 18.84-140.746 18.84-101.956 0-197.264-37.68v466.562q93.092 45.438 197.264 45.438z" horiz-adv-x="1136" />
<glyph unicode="&#xe0d0;" d="M567.41 756.086q-37.68 0-69.818-4.986t-44.33-10.528l-13.298-4.432q-38.788-18.84-68.71-51.532t-39.896-65.938h-136.312q-44.33 0-75.358-31.030t-31.030-75.36v-385.662q0-44.328 31.030-75.36t75.358-31.030h744.726q44.328 0 75.36 31.030t31.030 75.36v385.662q0 44.33-31.030 75.36t-75.36 31.030h-136.312q-9.974 33.246-39.896 65.938t-68.71 51.532q-42.114 19.948-127.446 19.948zM567.41 569.904q88.658 0 150.718-62.060t62.062-150.718-62.062-150.72-150.72-62.062-150.718 62.062-62.060 150.72 62.060 150.718 150.718 62.060zM567.41 481.248q-50.978 0-87.55-36.57t-36.57-87.55 36.572-87.55 87.55-36.572 87.55 36.572 36.572 87.55-36.572 87.55-87.55 36.572z" horiz-adv-x="1136" />
<glyph unicode="&#xe0d1;" d="M162.354 835.88q-30.476 0-52.088-21.61t-21.61-52.086 21.61-52.086 52.088-21.61 52.088 21.61 21.61 52.086-21.61 52.086-52.086 21.61zM272.622 651.914q-29.922 0-51.532-21.61t-21.61-51.532l36.57-258.216q0-29.922 21.61-51.532t51.532-21.61h405.61q87.55 0 147.394 73.144l183.966 258.216q0 29.922-21.61 51.532t-51.532 21.61h-700.398zM420.016 541.092h331.358q12.19 0 21.056-0.554t19.948-2.77 17.732-7.202 11.082-12.746 3.326-20.502-7.758-29.368q-29.922-54.304-67.602-82.564t-70.926-28.26h-258.216q-29.922 0-51.532 21.61t-21.61 52.64v36.572q0 31.030 21.61 52.086t51.532 21.056zM289.248 173.16q-37.68-1.108-63.724-27.706t-26.044-64.278 26.598-64.832 64.83-27.152 65.384 27.152 27.152 65.384-27.152 64.832-64.832 26.596h-2.216zM841.144 173.16q-37.68-1.108-63.722-27.706t-26.044-64.278 27.152-64.832 65.384-27.152 64.832 27.152 26.596 65.384-26.596 64.832-65.384 26.596h-2.216z" horiz-adv-x="1136" />
<glyph unicode="&#xe0d2;" d="M567.41 853.61q-190.616 0-325.818-135.204t-135.204-325.818 135.204-325.818 325.818-135.202 325.818 135.202 135.204 325.818-135.202 325.818-325.818 135.202zM567.41 757.194q98.632 0 182.856-48.762t132.986-132.986 48.762-182.856-48.762-182.856-132.986-132.986-182.856-48.762-182.856 48.762-132.986 132.986-48.762 182.856 48.762 182.856 132.986 132.986 182.856 48.762zM549.68 658.562q-22.164 0-37.68-15.514t-15.514-37.68v-230.51q0-22.164 15.514-37.68t37.68-15.514h195.048q22.164 0 37.68 15.514t15.514 37.68-15.514 37.68-37.68 15.514h-88.658q-22.164 0-37.68 15.514t-15.514 37.68v124.122q0 22.164-15.514 37.68t-37.68 15.514z" horiz-adv-x="1136" />
<glyph unicode="&#xe0d3;" d="M691.532 818.146q-22.164 0-32.692-14.962t-3.88-36.016l2.216-4.432q6.65-21.056 19.394-36.016t23.826-14.962 23.826 14.962 19.394 36.016l2.216 4.432q6.65 21.056-3.88 36.016t-32.692 14.962h-17.732zM585.144 676.294q-22.164 0-32.692-14.962t-3.88-36.016l2.216-4.432q6.65-21.056 19.394-36.018t23.826-14.962 23.826 14.962 19.394 36.018l2.216 4.432q6.65 21.056-3.88 36.016t-32.692 14.962h-17.732zM354.632 534.442q-22.166 0-34.908-15.514t-8.312-36.572l86.442-463.238q4.432-21.056 22.718-36.572t40.45-15.514h212.778q22.164 0 40.45 15.514t22.72 36.572l86.442 463.238q4.432 21.056-8.312 36.57t-34.908 15.514h-425.558z" horiz-adv-x="1136" />
<glyph unicode="&#xe0d4;" d="M567.41 853.61q-50.978 0-87.55-36.572t-36.57-87.55v-265.974h-106.39q-50.978 0-67.602-30.476t12.19-72.588l217.212-325.818q27.706-42.114 68.156-42.114t69.264 42.114l217.212 325.818q27.706 42.114 11.636 72.588t-67.048 30.476h-106.39v265.974q0 50.978-36.572 87.55t-87.55 36.572z" horiz-adv-x="1136" />
<glyph unicode="&#xe0d5;" d="M838.926 796.538q-28.814 0.554-48.762-19.394t-19.394-49.316 20.502-49.316l72.034-72.034q21.056-21.056 49.87-21.61t48.762 19.948 19.394 49.316-20.502 48.762l-72.034 72.034q-21.056 21.056-49.87 21.61zM700.952 658.562q-29.368 0-49.316-21.056l-366.822-365.714q-19.948-21.056-19.948-50.424t19.948-50.424l72.034-70.926q21.056-21.056 50.424-21.056t49.316 21.056l366.822 365.714q21.056 21.056 21.056 50.424t-21.056 50.424l-72.034 70.926q-21.056 21.056-50.424 21.056zM190.616 163.186q-24.382-1.108-31.030-35.462l-21.056-108.606q-6.65-28.814 9.974-45.438t45.438-9.974l108.606 21.056q28.814 5.542 34.356 24.38t-14.406 39.896l-98.632 98.632q-16.622 16.624-33.248 15.514z" horiz-adv-x="1136" />
<glyph unicode="&#xe0d6;" d="M720.346 854.72q-18.84 0-39.896-5.542l-411.152-115.254q-42.112-11.082-72.034-50.978t-29.922-84.224v-476.538q0-43.222 15.514-70.372t38.234-21.056 38.234 42.112 15.514 79.238v346.874q0 43.222 29.922 83.116t73.144 52.086l302.544 84.226q42.114 12.19 72.034 39.896t29.922 54.302q0 19.948-17.178 31.584t-44.884 10.528zM891.014 699.568q-13.298-1.108-25.49-4.432l-411.152-115.254q-42.112-11.082-72.036-50.978t-29.922-84.226v-433.316q0-43.222 29.922-66.494t72.034-11.082l411.152 115.254q42.114 12.19 72.034 51.532t29.922 83.672v433.316q0 36.57-21.61 59.29t-54.856 22.72zM668.26 508.952q13.298 0 22.164-25.488 11.082-31.030 45.438-43.776t70.926 0.554 41.558-0.554-24.934-45.99-42.668-76.468-1.662-75.36-1.662-44.884-42.668-2.77-72.034-3.88-71.48-47.1-42.112-27.152-1.662 43.774-2.216 74.25-42.668 45.99-24.38 27.706 41.558 30.476 70.926 49.87 45.438 75.358q13.298 45.438 32.14 45.438z" horiz-adv-x="1136" />
<glyph unicode="&#xe0d7;" d="M567.41 822.58q-15.514 0-27.152-8.866t-17.178-23.272l-87.55-269.298h-282.596q-15.514 0-27.706-8.866t-16.624-23.274q-9.974-32.14 16.624-52.086l229.404-166.234-87.55-269.298q-4.432-14.408 0-28.814t16.622-23.274 27.152-8.866 27.152 8.866l229.402 167.342 229.404-167.342q12.19-8.866 27.152-8.866t27.152 8.866q26.596 19.948 16.624 52.086l-87.55 269.298 229.404 166.234q26.596 19.948 16.624 52.086-4.432 14.406-16.624 23.274t-27.706 8.866h-282.596l-87.55 269.298q-5.542 14.408-17.178 23.274t-27.152 8.866z" horiz-adv-x="1136" />
<glyph unicode="&#xe0d8;" d="M216.104 742.788q-74.252 0-117.472-21.056-41.004-21.056-40.45-64.83t41.558-84.778l441.074-441.074q42.114-41.004 82.010-63.168t55.412-12.19 11.636 55.966-23.826 101.404l-123.014 325.818q-19.948 55.412-74.25 107.498t-109.714 70.926l-26.596 8.866q-52.086 16.624-116.364 16.624zM932.572 600.934q-62.616 0-108.606-14.962t-90.32-43.222-59.844-52.086-14.962-72.036 16.624-91.984 60.952-48.762 90.32 30.476l196.156 152.936q46.546 36.57 49.87 73.142t-37.126 51.532-103.066 14.962zM456.588 126.616q-21.056-1.108-33.248-19.948t-11.082-37.68 14.406-27.706 32.692-7.202 33.8 13.298 13.298 30.476-16.622 34.356q-14.406 14.408-33.248 14.408z" horiz-adv-x="1136" />
<glyph unicode="&#xe0d9;" d="M210.562 710.65q-17.732 0-28.26-13.852t-10.528-38.234v-490.944q0-36.572 21.61-48.208t52.64 8.312l227.186 151.826v-111.932q0-36.572 21.61-48.208t52.64 8.312l353.524 236.052q31.030 19.948 31.030 48.762t-31.030 49.87l-353.524 236.052q-31.030 19.948-52.642 8.312t-21.61-48.208v-111.932l-227.186 151.826q-18.84 12.19-35.462 12.19z" horiz-adv-x="1136" />
<glyph unicode="&#xe0da;" d="M549.68 835.88q-22.164 0-37.68-15.514t-15.514-37.68v-69.818q-56.52-12.19-105.282-43.222l-49.87 48.762q-15.514 15.516-37.68 15.516t-37.68-15.516l-24.382-24.38q-15.516-15.514-15.516-37.68t15.514-37.68l48.762-49.87q-31.030-48.762-43.222-105.282h-69.818q-22.164 0-37.68-15.516t-15.516-37.68v-35.462q0-22.164 15.516-37.68t37.68-15.514h69.818q12.19-56.52 43.222-105.28l-48.762-49.87q-15.514-15.514-15.514-37.68t15.514-37.68l24.382-24.38q15.514-15.514 37.68-15.514t37.68 15.514l49.87 48.762q48.762-31.030 105.282-43.222v-69.818q0-22.164 15.514-37.68t37.68-15.514h35.462q22.164 0 37.68 15.514t15.514 37.68v69.818q56.52 12.19 105.282 43.222l49.87-48.762q15.514-15.514 37.68-15.514t37.68 15.514l24.38 24.38q15.514 15.514 15.514 37.68t-15.514 37.68l-48.762 49.87q31.030 48.762 43.222 105.28h69.818q22.164 0 37.68 15.514t15.514 37.68v35.462q0 22.164-15.514 37.68t-37.68 15.514h-69.818q-12.19 56.52-43.222 105.28l48.762 49.87q15.514 15.514 15.514 37.68t-15.514 37.68l-24.38 24.382q-15.514 15.514-37.68 15.514t-37.68-15.514l-49.87-48.762q-48.762 31.030-105.28 43.222v69.818q0 22.164-15.514 37.68t-37.68 15.514h-35.462zM567.41 544.416q63.168 0 107.498-44.328t44.328-107.498-44.328-107.498-107.498-44.328-107.498 44.328-44.33 107.498 44.33 107.498 107.498 44.33z" horiz-adv-x="1136" />
<glyph unicode="&#xe0db;" d="M567.41 853.61q-190.616 0-325.818-135.204t-135.204-325.818 135.204-325.818 325.818-135.202 325.818 135.202 135.204 325.818-135.202 325.818-325.818 135.202zM711.48 728.38q98.632-42.112 159.584-133.54t60.952-202.25q0-137.42-89.212-239.378t-222.2-121.904q19.948 60.952 62.616 118.026t88.104 70.372q24.38 18.84 34.908 39.342t9.974 36.572-2.77 34.908q-6.65 11.082-29.922 25.49t-59.29 37.126-63.722 45.99q-21.056 5.542-40.45 1.108t-38.788-3.88-27.152 11.636q-5.542 5.54-18.84 15.514t-25.488 18.286-23.274 19.948-11.082 21.61 9.974 22.166q12.19 13.298 31.584 18.286t34.356 6.096 30.476 14.408 23.274 41.004q8.866 27.706 22.72 40.45t24.934 12.744 28.26-3.324 21.61-3.324q13.298 0 16.624 18.84t-7.758 37.68zM311.412 651.914q89.766-161.8 165.126-183.966 28.814-7.758 47.654-17.178t24.38-14.962 12.19-14.962 8.866-12.746q3.326-3.326 1.662-14.962t-5.542-22.72-0.554-31.584 15.514-42.668q6.65-9.974 17.732-14.962t17.732-12.746 11.082-26.596q3.326-17.732-12.746-103.066t-8.312-109.714q-19.948-1.108-38.788-1.108-98.632 0-182.856 48.762t-132.986 132.986-48.762 182.856q0 75.358 28.26 142.408t80.346 116.918z" horiz-adv-x="1136" />
<glyph unicode="&#xe0dc;" d="M567.41 853.61q-190.616 0-325.818-135.204t-135.204-325.818 135.204-325.818 325.818-135.202 325.818 135.202 135.204 325.818-135.202 325.818-325.818 135.202zM521.974 784.9q88.658 0 162.908-35.462 21.056-8.866 29.922-28.26t4.432-34.356-16.624-14.962q-4.432 0-21.61 3.324t-28.26 3.326-24.934-12.746-22.72-40.45q-7.758-27.706-23.274-41.004t-30.476-14.406-34.356-6.096-31.584-18.286q-9.974-12.19-9.974-22.164t11.082-21.61 23.274-19.948 25.49-18.286 18.84-15.516q7.758-11.082 27.152-11.636t38.788 3.88 40.45-1.108q27.706-23.274 63.722-45.99t59.29-37.126 29.922-25.49q2.216-18.84 2.77-34.908t-9.974-36.572-34.908-39.342q-48.762-14.408-93.644-77.576t-61.506-126.338q-13.298 5.542-12.746 37.68t7.202 65.938 12.746 70.926 3.88 51.532q-4.432 18.84-11.082 26.596t-17.732 12.746-17.732 14.962q-12.19 22.164-15.514 42.668t0.554 31.584 5.542 22.72-1.662 14.962q-2.216 3.326-8.866 12.746t-12.19 14.962-24.38 14.962-47.654 17.178q-77.576 22.166-175.1 201.698-2.216 4.432-4.432 6.65-17.732 34.356 32.692 65.938t133.54 40.45q31.030 2.216 58.736 2.216z" horiz-adv-x="1136" />
<glyph unicode="&#xe0dd;" d="M565.196 802.632q-13.298 0-23.274-8.866l-445.506-446.616q-9.974-9.974-9.974-23.274t9.974-23.274l45.438-45.438q9.974-9.974 23.272-9.974t23.272 9.974l83.118 82.010v-304.762q0-26.596 18.84-45.99t46.546-19.394h32.14q27.706 0 46.546 19.394t18.84 45.99v196.156q0 26.596 19.394 45.99t45.99 19.394h130.77q26.596 0 45.99-19.394t19.394-45.99v-196.156q0-26.596 18.84-45.99t46.544-19.394h32.14q27.706 0 46.544 19.394t18.84 45.99v304.762l83.116-82.010q9.974-9.974 23.274-9.974t23.274 9.974l45.436 45.438q9.974 9.974 9.974 23.274t-9.974 23.274l-272.624 273.732-172.884 172.882q-9.974 8.866-23.274 8.866z" horiz-adv-x="1136" />
<glyph unicode="&#xe0de;" d="M567.41 853.61q-50.978 0-87.55-36.572t-36.57-87.55 36.572-87.55 87.55-36.572 87.55 36.572 36.572 87.55-36.572 87.55-87.55 36.572zM567.41 534.442q-50.978 0-87.55-36.572t-36.57-87.55v-354.632q0-50.978 36.572-87.55t87.55-36.57 87.55 36.572 36.572 87.55v354.632q0 50.978-36.572 87.55t-87.55 36.57z" horiz-adv-x="1136" />
<glyph unicode="&#xe0df;" d="M797.922 764.952q-50.978 0-87.55-36.572t-36.572-87.55q0-12.19 2.216-25.488l-251.568-135.204q-36.572 36.572-87.55 36.572t-87.55-36.572-36.57-87.55 36.57-87.55 87.55-36.572 87.55 36.572l251.568-135.202q-2.216-13.298-2.216-25.49 0-50.978 36.572-87.55t87.55-36.572 87.55 36.572 36.572 87.55-36.572 87.55-87.55 36.572-87.55-36.572l-251.568 135.202q2.216 13.298 2.216 25.49t-2.216 25.49l251.568 135.202q36.572-36.572 87.55-36.572t87.55 36.572 36.572 87.55-36.572 87.55-87.55 36.572z" horiz-adv-x="1136" />
<glyph unicode="&#xe0e0;" d="M248.242 498.978q-44.33 0-75.36-31.030t-31.030-75.36 31.030-75.36 75.358-31.030 75.358 31.030 31.030 75.36-31.030 75.358-75.358 31.030zM567.41 498.978q-44.328 0-75.358-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.358-75.36 31.030zM886.58 498.978q-44.328 0-75.36-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.358-75.36 31.030z" horiz-adv-x="1136" />
<glyph unicode="&#xe0e1;" d="M567.41 818.146q-44.328 0-75.358-31.030t-31.030-75.358 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.358-75.36 31.030zM567.41 498.978q-44.328 0-75.358-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.358-75.36 31.030zM567.41 179.81q-44.328 0-75.358-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.36-75.36 31.030z" horiz-adv-x="1136" />
<glyph unicode="&#xe0e2;" d="M342.442 828.12q-33.248 0-55.412-25.488-17.732-22.166-15.514-51.532t24.382-48.208l315.844-264.866q23.274-18.84 23.274-45.438t-23.274-45.438l-315.844-264.866q-22.166-18.84-24.936-48.208t16.070-52.086 48.208-24.934 52.642 16.624l334.684 280.38q34.356 28.814 108.606 91.982l1.108 1.108q22.164 18.84 22.164 45.438t-22.164 45.438l-1.108 1.108q-75.36 63.168-108.606 91.982l-334.684 280.382q-19.948 16.622-45.438 16.622z" horiz-adv-x="1136" />
<glyph unicode="&#xe0e3;" d="M336.9 764.952q-50.978 0-87.55-36.572t-36.57-87.55v-496.486q0-50.978 36.57-87.55t87.55-36.572h17.732q50.978 0 87.55 36.572t36.57 87.55v496.486q0 50.978-36.572 87.55t-87.55 36.57h-17.732zM780.19 764.952q-50.978 0-87.55-36.572t-36.572-87.55v-496.486q0-50.978 36.572-87.55t87.55-36.572h17.732q50.978 0 87.55 36.572t36.572 87.55v496.486q0 50.978-36.572 87.55t-87.55 36.57h-17.732z" horiz-adv-x="1136" />
<glyph unicode="&#xe0e4;" d="M569.628 853.61q-58.736 0-100.294-41.558t-41.558-99.74 41.558-100.294 100.294-42.114 100.294 42.114 41.558 100.294-41.558 99.74-100.294 41.558zM569.628 504.52q-70.926 0-139.636-54.302t-94.2-130.77l-23.274-72.034q-25.488-76.468 3.324-148.502t94.2-97.524 159.584-25.49 159.584 25.49 94.198 97.524 3.326 148.502l-23.274 72.034q-25.49 76.468-94.198 130.77t-139.636 54.302z" horiz-adv-x="1136" />
<glyph unicode="&#xe0e5;" d="M282.596 802.078q-23.274-0.554-37.68-19.394t-14.408-53.194v-673.802q0-50.978 30.476-67.602t72.588 12.19l485.404 323.602q42.114 28.814 42.114 69.264t-42.114 68.156l-485.404 323.602q-27.706 17.732-50.978 17.176z" horiz-adv-x="1136" />
<glyph unicode="&#xe0e6;" d="M578.494 800.416q-21.056 1.108-33.802-15.514t-12.746-46.546v-82.010q-135.202-13.298-227.186-114.146t-91.984-238.268q0-147.394 103.618-251.014t251.014-103.62 251.014 103.62 103.62 251.014h-106.39q0-103.066-72.588-175.654t-175.654-72.588-175.654 72.588-72.588 175.654q0 93.092 60.952 162.908t151.828 83.118v-77.576q0-44.328 26.044-58.182t62.616 10.528l181.75 121.904q36.572 24.38 36.572 58.736t-36.572 58.736l-181.75 121.904q-22.164 14.408-42.112 14.408z" horiz-adv-x="1136" />
<glyph unicode="&#xe0e7;" d="M656.068 747.222q-137.42 0-238.268-91.982t-114.146-227.186h-82.010q-43.222 0-57.628-26.044t9.974-62.616l121.906-181.75q24.38-36.572 58.736-36.572t58.736 36.572l121.904 181.75q24.38 36.572 10.528 62.616t-58.182 26.044h-76.468q12.19 90.874 82.010 151.826t162.91 60.952q103.066 0 175.654-72.59t72.588-175.654-72.588-175.654-175.654-72.588v-106.39q96.416 0 178.424 47.654t129.108 129.108 47.1 177.87-47.1 177.87-129.108 129.108-178.424 47.654z" horiz-adv-x="1136" />
<glyph unicode="&#xe0e8;" d="M936.45 692.918q-16.624 0-35.462-12.19l-230.51-155.152v115.254q0 24.38-11.082 38.234t-27.706 13.852-35.462-12.19l-354.632-236.052q-29.922-21.056-29.922-49.87t29.922-48.762l354.632-236.052q29.922-19.948 52.086-8.312t22.164 48.208v114.148l230.51-154.044q31.030-19.948 52.64-8.312t21.61 48.208v490.944q0 24.38-10.528 38.234t-28.26 13.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe0e9;" d="M443.29 889.074q-96.416 0-177.87-47.654t-129.108-129.108-47.654-177.87 47.654-178.424 129.108-129.108 177.87-47.1q93.090 0 173.992 45.438l231.62-231.62q25.49-25.49 62.062-25.49t63.168 25.49l8.866 9.974q26.596 25.49 26.596 62.616t-26.596 62.616l-230.51 231.62q45.438 80.9 45.438 173.99 0 96.416-47.654 177.87t-129.108 129.108-177.87 47.654zM443.29 747.222q88.658 0 150.718-62.616t62.062-150.72-62.062-150.164-150.718-62.062-150.718 62.062-62.062 150.164 62.062 150.72 150.718 62.616z" horiz-adv-x="1136" />
<glyph unicode="&#xe0ea;" d="M336.9 747.222q-50.978 0-87.55-36.572t-36.57-87.55v-461.022q0-50.978 36.57-87.55t87.55-36.572h461.022q50.978 0 87.55 36.572t36.572 87.55v461.022q0 50.978-36.572 87.55t-87.55 36.572h-461.022z" horiz-adv-x="1136" />
<glyph unicode="&#xe0eb;" d="M711.48 858.044q-18.84 0-39.896-5.542l-392.312-109.714q-42.112-12.19-72.034-52.086t-29.922-83.116v-456.59q0-43.222 15.514-70.372t37.126-21.056 36.57 41.558 14.962 79.792v329.142q0 43.22 30.476 83.118t72.588 52.086l287.030 79.792q43.222 12.19 73.144 39.342t29.922 53.75q0 18.84-17.178 29.922t-45.99 9.974zM876.606 707.326q-12.19-1.108-25.49-4.432l-392.312-109.714q-42.112-12.19-72.034-51.532t-29.922-83.67v-455.48q0-44.328 29.922-67.048t72.034-11.636l392.312 110.822q42.114 11.082 72.588 50.978t30.476 83.116v456.588q0 36.572-22.164 59.29t-55.41 22.718z" horiz-adv-x="1136" />
<glyph unicode="&#xe0ec;" d="M774.65 820.364q-11.082 0-22.164-2.216l-465.454-125.23q-35.462-8.866-53.748-41.004t-8.866-67.602 41.558-53.75 67.602-8.312l464.346 124.12q35.462 9.974 53.75 41.558t9.42 67.048q-7.758 29.922-32.14 47.654t-54.302 17.732zM395.636 476.814q-36.57 0-59.29-27.706t-16.070-63.17l76.468-392.312q4.432-26.596 25.488-44.328t48.762-17.732h304.762q27.706 0 48.762 17.732t26.596 44.328l75.36 392.312q6.65 35.462-16.068 63.168t-58.182 27.706h-456.588z" horiz-adv-x="1136" />
<glyph unicode="&#xe0ed;" d="M570.736 710.65q-16.624 0-35.462-13.298l-354.632-236.052q-29.922-19.948-29.922-48.762t29.922-48.762l354.632-236.052q29.922-21.056 52.086-9.42t22.164 48.208v126.338q64.278 0 122.458-8.312t119.688-27.706 110.268-58.182 75.36-94.198q0 78.684-27.152 143.514t-69.264 108.052-100.848 77.576-113.592 53.75-116.918 32.692v138.528q0 24.38-11.082 38.234t-27.706 13.854z" horiz-adv-x="1136" />
<glyph unicode="&#xe0ee;" d="M618.39 710.65q-17.732 0-28.26-13.852t-10.528-38.234v-138.528q-62.062-13.298-116.918-32.692t-114.146-53.75-101.404-77.576-69.264-108.052-27.152-143.514q27.706 55.41 76.468 94.198t109.714 58.182 119.134 27.706 123.568 8.312v-126.338q0-36.572 21.61-48.208t51.532 9.42l354.632 236.052q29.922 19.948 29.922 48.762t-29.922 48.762l-354.632 236.052q-18.84 13.298-34.356 13.298z" horiz-adv-x="1136" />
<glyph unicode="&#xe0ef;" d="M541.922 863.584q-9.974 0-18.84-4.432-25.488-12.19-57.074-43.222t-51.532-60.952l-38.788-60.952q-47.654-74.252-77.576-104.174-12.19-12.19-45.99-29.368t-68.156-28.26l-11.082-4.432q-34.354-11.082-59.29-45.438t-24.936-70.926v-2.216q0-36.572 24.936-70.926t59.29-45.438l11.082-4.432q34.354-11.082 68.156-28.26t45.99-29.368q29.922-29.922 77.576-104.174l38.788-60.952q19.948-31.030 51.532-61.506t56.518-42.668 42.668 4.986 17.732 53.75v780.19q0 28.814-11.636 45.99t-29.368 17.178zM866.632 688.486q-9.974 0-16.624-6.65l-50.978-50.978q-6.65-6.648-6.65-16.622t6.65-17.732q77.576-76.468 77.576-186.182t-77.576-187.29q-7.758-6.65-7.758-16.624t7.758-16.624l50.978-50.978q6.65-6.65 16.624-6.65t16.624 6.65q74.25 73.144 100.294 172.328t0 198.372-100.294 172.33q-6.65 6.65-16.624 6.65zM717.022 531.116q-6.65 0-11.082-4.432l-35.462-34.354q-12.19-12.19 0-23.274 24.38-24.382 24.38-58.736t-24.38-58.736q-4.432-4.432-4.432-11.082t4.432-12.19l35.462-34.356q4.432-5.542 11.082-5.542t11.082 5.542q48.762 47.654 48.762 116.364t-48.762 116.364q-4.432 4.432-11.082 4.432z" horiz-adv-x="1136" />
<glyph unicode="&#xe0f0;" d="M565.196 686.268q-132.986 0-257.108-50.424t-221.646-147.948l95.306-95.308q104.174 103.064 243.81 140.19t279.274 0 243.81-140.19l95.308 95.308q-97.524 97.524-221.644 147.948t-257.108 50.424zM565.196 415.86q-79.792 0-154.044-30.476t-132.986-89.212l95.308-95.308q79.792 78.684 191.724 78.684t191.722-78.684l95.308 95.308q-58.736 58.736-132.986 89.212t-154.044 30.476zM565.196 144.346q-56.52 0-95.308-39.896l95.308-95.308 95.308 95.308q-38.788 39.896-95.308 39.896z" horiz-adv-x="1136" />
<glyph unicode="&#xe0f1;" d="M336.9 800.416q-28.814 0-49.87-21.056t-21.056-49.87v-35.462q0-28.814 21.056-49.87t49.87-21.056h496.486q28.814 0 49.87 21.056t21.056 49.87v35.462q0 28.814-21.056 49.87t-49.87 21.056h-496.486zM336.9 481.248q-28.814 0-49.87-21.056t-21.056-49.87v-35.462q0-28.814 21.056-49.87t49.87-21.056h496.486q28.814 0 49.87 21.056t21.056 49.87v35.462q0 28.814-21.056 49.87t-49.87 21.056h-496.486zM336.9 162.078q-28.814 0-49.87-21.056t-21.056-49.87v-35.462q0-28.814 21.056-49.87t49.87-21.056h496.486q28.814 0 49.87 21.056t21.056 49.87v35.462q0 28.814-21.056 49.87t-49.87 21.056h-496.486z" horiz-adv-x="1136" />
<glyph unicode="&#xe0f2;" d="M443.29 853.61v-17.732h248.242v17.732h-248.242zM443.29 800.416v-35.462h248.242v35.462h-248.242zM443.29 729.49v-88.658h248.242v88.658h-248.242zM443.29 605.368v-159.584h248.242v159.584h-248.242zM443.29 392.59v-159.584h-110.822l234.944-407.826 234.944 407.826h-110.822v159.584h-248.242z" horiz-adv-x="1136" />
<glyph unicode="&#xe0f3;" d="M567.41 960q-154.044 0-284.814-75.914t-206.684-206.684-75.912-284.814q0-114.148 44.33-218.874t119.688-180.64 178.978-121.35 217.766-46.546q-128.554 2.216-237.16 66.494t-171.776 173.99-63.168 238.268q0 198.372 140.19 338.562t338.562 140.19q36.572 0 62.616 26.044t26.044 62.616-26.044 62.614-62.616 26.044z" horiz-adv-x="1136" />
<glyph unicode="&#xe0f4;" d="M567.41 960q-154.044 0-284.814-75.914t-206.684-206.684-75.912-284.814q0-114.148 44.33-218.874t119.688-180.64 178.978-121.35 217.766-46.546q-128.554 2.216-237.16 66.494t-171.776 173.99-63.168 238.268q0 198.372 140.19 338.562t338.562 140.19 338.562-140.19 140.19-338.562q0-128.554-63.168-238.268t-171.774-173.99-237.16-66.494q114.148 1.108 217.766 46.546t178.978 121.35 119.688 180.64 44.328 218.874q0 154.044-75.914 284.814t-206.684 206.684-284.814 75.914z" horiz-adv-x="1136" />
<glyph unicode="&#xe0f5;" d="M567.41 960q-154.044 0-284.814-75.914t-206.684-206.684-75.912-284.814q0-15.514 1.108-31.030v-8.866q1.108-19.948 4.432-38.788v-1.108q15.516-113.038 73.698-210.010t147.948-164.572h1.108q1.108-2.216 2.216-2.216l3.324-2.216 15.514-11.082q1.108 0 1.108-0.554t0.554-0.554 0.554-1.108q5.54-3.326 9.974-5.54l1.108-1.108q5.54-3.326 9.974-6.648h1.108q62.060-37.68 131.88-58.736h1.108q49.87-14.406 101.956-19.948 9.974-1.108 18.84-2.216 19.948-1.108 39.896-1.108 115.254 0 220.538 44.884t181.194 120.798 120.798 181.194 44.884 220.538q0 154.044-75.914 284.814t-206.684 206.684-284.814 75.914zM613.956 946.702q88.658-6.65 169.558-41.004 99.74-43.222 176.762-120.242t120.242-176.762q43.222-103.064 43.222-216.104t-43.222-216.104q-43.222-99.74-120.242-176.762t-176.762-120.242q-103.066-43.222-216.104-43.222t-216.104 43.222l-33.248 15.516q-105.282 64.278-167.342 172.884t-62.062 236.052q0 198.372 140.19 338.562t338.562 140.19q36.572 0 62.616 26.042t26.044 62.616q0 49.87-42.114 75.36z" horiz-adv-x="1136" />
<glyph unicode="&#xe0f6;" d="M567.41 960q-154.044 0-284.814-75.914t-206.684-206.684-75.912-284.814q0-114.148 43.774-217.766t118.026-179.532 177.316-121.904 216.104-48.208q-127.446 3.326-234.944 68.156t-169.558 173.99-62.062 236.606q0 198.372 140.19 338.562t338.562 140.19q36.572 0 62.616 26.044t26.044 62.616-26.044 62.614-62.616 26.044zM579.602 960q127.446-3.326 234.944-68.156t169.558-173.992 62.062-236.606q0-198.372-140.19-338.562t-338.562-140.19q-36.572 0-62.616-26.044t-26.044-62.614 26.044-62.616 62.616-26.042q154.044 0 284.814 75.914t206.684 206.684 75.914 284.814q0 114.146-43.776 217.766t-118.026 179.532-176.762 121.904-216.658 48.208z" horiz-adv-x="1136" />
<glyph unicode="&#xe0f7;" d="M567.41 960q-22.164 0-37.68-15.514t-15.514-37.68v-230.51q0-22.166 15.514-37.68t37.68-15.516 37.68 15.516 15.514 37.68v230.51q0 22.166-15.514 37.68t-37.68 15.514zM310.302 891.29q-14.406 0-26.596-7.758-18.84-11.082-24.936-32.14t4.988-39.896l115.254-199.48q15.514-26.596 46.546-26.596 14.406 0 26.596 6.648 18.84 11.082 24.936 32.14t-4.988 41.004l-115.254 199.48q-15.514 26.598-46.546 26.598zM824.52 891.29q-31.030 0-46.544-26.596l-115.254-199.48q-11.082-19.948-4.986-41.004t24.934-32.14q12.19-6.65 26.596-6.65 31.030 0 46.544 26.596l115.254 199.48q11.082 18.84 4.986 39.896t-24.934 32.14q-12.19 7.758-26.596 7.758zM824.52 886.856q13.298 0 24.38-6.65 17.732-9.974 22.72-29.368t-4.986-37.126l-115.254-199.48q-14.408-24.38-42.112-24.38-13.298 0-24.38 6.65-17.732 9.974-22.72 29.368t4.986 37.126l115.254 199.48q14.408 24.382 42.112 24.382zM310.302 846.962q5.54 0 7.758-4.432l115.254-199.48q4.432-7.758-3.324-12.19-2.216-1.108-4.432-1.108-5.54 0-7.758 4.432l-115.254 199.48q-2.216 3.326-1.108 6.65t4.432 5.542q2.216 1.108 4.432 1.108zM121.906 702.892q-31.030 0-45.436-26.596-11.082-18.84-5.54-40.45t24.382-32.692l199.48-115.254q12.19-6.65 26.596-6.65 31.030 0 46.546 26.596 11.082 18.84 5.54 40.45t-25.488 32.692l-199.48 115.254q-12.19 6.65-26.598 6.65zM1012.918 702.892q-14.408 0-26.596-6.65l-199.48-115.254q-18.84-11.082-24.934-32.692t4.986-40.45q15.514-26.596 46.544-26.596 14.408 0 26.596 6.65l199.48 115.254q18.84 11.082 24.382 32.692t-5.54 40.45q-14.406 26.596-45.438 26.596zM1012.918 698.46q27.706 0 42.112-24.382 9.974-17.732 4.988-37.126t-22.72-29.368l-199.48-115.256q-12.19-6.65-24.38-6.65-28.814 0-42.112 24.382-11.082 17.732-5.542 37.126t23.274 29.368l199.48 115.254q11.082 6.65 24.38 6.65zM121.906 662.996q3.326 0 6.65-2.216l199.48-115.254q5.54-2.216 6.65-7.758t-1.108-9.974q-4.432-6.65-12.19-6.65-3.324 0-6.65 2.216l-199.48 115.254q-11.082 6.65-4.432 17.732 3.326 6.65 11.082 6.65zM53.196 445.784q-22.164 0-37.68-15.514t-15.516-37.68 15.516-37.68 37.68-15.514h230.512q22.166 0 37.68 15.514t15.514 37.68-15.514 37.68-37.68 15.514h-230.51zM851.116 445.784q-22.164 0-37.68-15.514t-15.514-37.68 15.514-37.68 37.68-15.514h230.51q22.164 0 37.68 15.514t15.516 37.68-15.516 37.68-37.68 15.514h-230.51zM851.116 436.918h230.51q18.84 0 31.584-12.746t12.744-31.584-12.744-31.584-31.584-12.746h-230.51q-18.84 0-31.584 12.746t-12.746 31.584 12.746 31.584 31.584 12.746zM53.196 410.32h230.512q7.758 0 12.746-4.986t4.988-12.746-4.988-12.746-12.746-4.986h-230.51q-7.758 0-12.744 4.986t-4.988 12.746 4.988 12.746 12.744 4.986zM321.384 303.932q-14.406 0-26.596-6.65l-199.48-115.254q-18.84-11.082-24.382-32.692t5.54-40.45q14.406-26.596 45.436-26.596 14.406 0 26.596 6.65l199.48 115.254q19.948 11.082 25.488 32.692t-5.54 40.45q-15.514 26.596-46.546 26.596zM813.438 303.932q-31.030 0-46.544-26.596-11.082-18.84-4.986-40.45t24.934-32.692l199.48-115.254q12.19-6.65 26.596-6.65 31.030 0 45.438 26.596 11.082 18.84 5.54 40.45t-24.382 32.692l-199.48 115.254q-12.19 6.65-26.596 6.65zM813.438 290.632q9.974 0 19.948-5.542l199.48-115.254q14.406-7.758 18.286-23.826t-3.878-30.476q-11.082-19.948-34.356-19.948-11.082 0-19.948 5.542l-199.48 115.254q-14.408 7.758-18.84 23.826t4.432 30.476q11.082 19.948 34.356 19.948zM321.384 272.9q13.298 0 19.948-11.082 4.432-7.758 1.662-16.624t-10.528-13.298l-199.48-115.254q-5.54-3.326-11.082-3.326-12.19 0-18.84 11.082-4.432 7.758-2.216 16.624t9.974 13.298l199.48 115.254q5.54 3.326 11.082 3.326zM425.558 199.758q-31.030 0-46.546-26.596l-115.254-199.48q-11.082-18.84-4.988-39.896t24.936-32.138q12.19-7.758 26.596-7.758 31.030 0 46.546 26.596l115.254 199.48q11.082 19.948 4.988 41.004t-24.936 32.14q-12.19 6.65-26.596 6.65zM709.264 199.758q-14.408 0-26.596-6.65-18.84-11.082-24.38-32.14t4.432-41.004l115.254-199.48q15.514-26.596 46.544-26.596 14.408 0 26.596 7.758 18.84 11.082 24.934 32.138t-4.986 39.896l-115.254 199.48q-15.514 26.596-46.544 26.596zM709.264 182.026q19.948 0 31.030-17.732l115.254-199.48q6.65-12.19 2.77-26.596t-16.068-22.166q-7.758-4.432-17.732-4.432-19.948 0-31.030 17.732l-115.254 199.48q-6.65 13.298-2.77 27.152t16.068 21.61q7.758 4.432 17.732 4.432zM425.558 173.16q6.65 0 13.298-3.326 9.974-5.542 12.746-16.068t-2.772-20.502l-115.254-199.482q-7.758-13.298-23.274-13.298-6.65 0-13.298 3.326-9.974 5.54-12.746 16.624t2.772 19.948l115.254 199.48q7.758 13.298 23.274 13.298zM567.41 162.078q-22.164 0-37.68-15.514t-15.514-37.68v-230.51q0-22.164 15.514-37.68t37.68-15.516 37.68 15.516 15.514 37.68v230.51q0 22.164-15.514 37.68t-37.68 15.514zM567.41 139.914q13.298 0 22.164-8.866t8.866-22.164v-230.51q0-13.298-8.866-22.164t-22.164-8.866-22.164 8.866-8.866 22.164v230.51q0 13.298 8.866 22.164t22.164 8.866z" horiz-adv-x="1136" />
<glyph unicode="&#xe0f8;" d="M567.41 889.074q-58.736 0-108.052-67.048t-78.13-178.978q87.55-37.68 186.182-37.68t186.182 37.68q-28.814 111.932-78.13 178.978t-108.052 67.048zM970.804 605.368q-8.866 0-17.732-4.432l-115.254-66.494q-1.108 4.432-2.216 13.298t-2.216 16.624-3.326 13.298q-120.798-43.222-262.65-43.222t-262.65 43.222q-2.216-5.542-3.324-13.298t-2.216-16.624-2.216-14.406l-116.364 67.602q-7.758 4.432-17.732 4.432-19.948 0-29.922-17.732-7.758-13.298-3.878-27.152t16.068-21.61l141.854-82.008q-3.324-47.654-3.324-64.276 0-32.14 3.324-70.926h-109.714q-14.408 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h118.58q13.298-79.792 41.004-147.394l-120.796-69.818q-12.19-7.758-16.068-22.164t3.324-26.596 21.61-16.068 26.598 2.77l116.364 67.602q39.896-67.602 90.874-105.282t108.606-37.68 108.606 37.68 90.874 105.28l116.364-67.602q12.19-6.65 26.596-2.77t21.61 16.068 3.326 26.596-16.068 22.164l-120.798 69.818q27.706 67.602 41.004 147.394h118.58q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-109.714q3.326 39.896 3.326 70.926 0 16.624-3.326 64.276l140.746 82.010q13.298 7.758 17.178 22.164t-3.88 26.596q-9.974 17.732-31.030 17.732zM390.096 463.514q14.406 0 24.936-10.528t10.528-24.934-10.528-24.934-24.936-10.528-24.936 10.528-10.528 24.934 10.528 24.936 24.936 10.528zM567.41 463.514q29.922 0 50.424-20.502t20.502-50.424-20.502-50.424-50.424-20.502-50.424 20.502-20.502 50.424 20.502 50.424 50.424 20.502zM744.726 463.514q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528-24.934 10.528-10.528 24.934 10.528 24.936 24.934 10.528zM425.558 321.662q29.922 0 50.424-20.502t20.502-50.424-20.502-50.424-50.424-20.502-50.424 20.502-20.502 50.424 20.502 50.424 50.424 20.502zM709.264 321.662q29.922 0 50.424-20.502t20.502-50.424-20.502-50.424-50.424-20.502-50.424 20.502-20.502 50.424 20.502 50.424 50.424 20.502zM461.022 108.884q14.406 0 24.936-10.528t10.528-24.934-10.528-24.934-24.936-10.528-24.936 10.528-10.528 24.934 10.528 24.934 24.936 10.528zM673.802 108.884q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528-24.934 10.528-10.528 24.934 10.528 24.934 24.934 10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe0f9;" d="M567.41 889.074q-135.202 0-249.35-66.494t-180.64-180.64-66.494-249.35 66.494-249.35 180.64-180.64 249.35-66.494 249.35 66.494 180.64 180.64 66.494 249.35-66.494 249.35-180.64 180.64-249.35 66.494zM567.41 818.146q176.208 0 300.882-124.674t124.674-300.884-124.674-300.884-300.884-124.674-300.882 124.674-124.676 300.884 124.676 300.884 300.882 124.674zM567.41 747.222q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502 50.424 20.502 20.502 50.424-20.502 50.424-50.424 20.502zM567.41 534.442q-29.922 0-50.424-20.502t-20.502-50.424v-354.632q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v354.632q0 29.922-20.502 50.424t-50.424 20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe0fa;" d="M567.41 889.074q-135.202 0-249.35-66.494t-180.64-180.64-66.494-249.35 66.494-249.35 180.64-180.64 249.35-66.494 249.35 66.494 180.64 180.64 66.494 249.35-66.494 249.35-180.64 180.64-249.35 66.494zM567.41 818.146q176.208 0 300.882-124.674t124.674-300.884-124.674-300.884-300.884-124.674-300.882 124.674-124.676 300.884 124.676 300.884 300.882 124.674zM567.41 747.222q-29.922 0-50.424-20.502t-20.502-50.424v-354.632q0-29.922 20.502-50.424t50.424-20.502 50.424 20.502 20.502 50.424v354.632q0 29.922-20.502 50.424t-50.424 20.502zM567.41 179.81q-29.922 0-50.424-20.502t-20.502-50.424 20.502-50.424 50.424-20.502 50.424 20.502 20.502 50.424-20.502 50.424-50.424 20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe0fb;" d="M567.41 889.074q-135.202 0-249.35-66.494t-180.64-180.64-66.494-249.35 66.494-249.35 180.64-180.64 249.35-66.494 249.35 66.494 180.64 180.64 66.494 249.35-66.494 249.35-180.64 180.64-249.35 66.494zM567.41 818.146q176.208 0 300.882-124.674t124.674-300.884-124.674-300.884-300.884-124.674-300.882 124.674-124.676 300.884 124.676 300.884 300.882 124.674zM572.952 733.922q-69.818 0-123.014-28.814t-80.346-73.142-27.152-86.442q0-21.056 17.178-38.788t42.666-17.732q42.112 0 57.628 50.978 16.622 48.762 39.896 73.698t73.144 24.934q42.114 0 68.71-24.934t26.596-60.398q0-18.84-8.866-34.356t-21.056-28.814q-13.298-13.298-42.114-37.68-32.14-28.814-52.086-49.87-18.84-21.056-30.476-48.762t-11.636-65.384q0-29.922 16.070-45.438t39.342-15.514q44.328 0 53.196 46.544 5.542 23.274 7.758 31.030 2.216 8.866 6.65 17.732t13.852 19.394 24.934 23.826q55.41 50.978 76.468 70.926 21.056 21.056 36.572 49.87t15.514 66.494q0 48.762-27.152 90.32t-77.022 65.94-115.254 24.38zM561.87 186.458q-28.814 0-48.762-19.394t-19.948-48.208q0-31.030 20.502-49.316t48.208-18.286q26.596 0 47.1 18.286t20.502 49.316q0 28.814-19.394 48.208t-48.208 19.394z" horiz-adv-x="1136" />
<glyph unicode="&#xe0fc;" d="M1134.824 700.674l-234.944-201.696 234.944-197.264v398.962zM106.39 534.442q-14.406 0-24.936-10.528t-10.528-24.936 10.528-24.936 24.936-10.528h709.264q14.408 0 24.934 10.528t10.528 24.936-10.528 24.936-24.934 10.528h-709.264zM319.168 321.662q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h496.486q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-496.486zM319.168 179.81q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h496.486q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-496.486z" horiz-adv-x="1136" />
<glyph unicode="&#xe0fd;" d="M319.168 605.368q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h496.486q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-496.486zM1134.824 556.606l-234.944-201.698 234.944-197.264v398.962zM106.39 392.59q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h709.264q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-709.264zM319.168 179.81q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h496.486q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-496.486z" horiz-adv-x="1136" />
<glyph unicode="&#xe0fe;" d="M319.168 605.368q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h496.486q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-496.486zM319.168 463.514q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h496.486q14.408 0 24.934 10.528t10.528 24.934-10.528 24.936-24.934 10.528h-496.486zM1134.824 414.754l-234.944-201.698 234.944-197.264v398.962zM106.39 250.736q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h709.264q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-709.264z" horiz-adv-x="1136" />
<glyph unicode="&#xe0ff;" d="M567.41 818.146q-88.658 0-150.718-62.060t-62.060-150.72v-141.854q-29.922 0-50.424-20.502t-20.502-50.424v-354.632q0-29.922 20.502-50.424t50.424-20.502h425.558q29.922 0 50.424 20.502t20.502 50.424v354.632q0 29.922-20.502 50.424t-50.424 20.502v141.854q0 88.658-62.062 150.72t-150.72 62.060zM567.41 747.222q58.736 0 100.294-41.558t41.558-100.294v-141.854h-283.706v141.854q0 58.736 41.558 100.294t100.294 41.558zM567.41 392.59q29.922 0 50.424-20.502t20.502-50.424v-141.852q0-29.922-20.502-50.424t-50.424-20.502-50.424 20.502-20.502 50.424v141.854q0 29.922 20.502 50.424t50.424 20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe100;" d="M354.632 818.146q-88.658 0-150.718-62.060t-62.062-150.72v-212.778h70.926v212.778q0 58.736 41.558 100.294t100.294 41.558 100.294-41.558 41.558-100.294v-141.854q-29.922 0-50.424-20.502t-20.502-50.424v-354.632q0-29.922 20.502-50.424t50.424-20.502h425.558q29.922 0 50.424 20.502t20.502 50.424v354.632q0 29.922-20.502 50.424t-50.424 20.502h-354.632v141.854q0 88.658-62.060 150.72t-150.718 62.060zM709.264 392.59q29.922 0 50.424-20.502t20.502-50.424v-141.852q0-29.922-20.502-50.424t-50.424-20.502-50.424 20.502-20.502 50.424v141.854q0 29.922 20.502 50.424t50.424 20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe101;" d="M354.632 960q-29.922 0-50.424-20.502t-20.502-50.424v-992.97q0-29.922 20.502-50.424t50.424-20.502h425.558q29.922 0 50.424 20.502t20.502 50.424v992.97q0 29.922-20.502 50.424t-50.424 20.502h-425.558zM531.948 924.538h70.926q14.408 0 24.934-10.528t10.528-24.936-10.528-24.934-24.934-10.528h-70.926q-14.408 0-24.936 10.528t-10.528 24.934 10.528 24.936 24.936 10.528zM354.632 818.146h425.558v-709.264h-425.558v709.264zM567.41 37.956q29.922 0 50.424-20.502t20.502-50.424-20.502-50.424-50.424-20.502-50.424 20.502-20.502 50.424 20.502 50.424 50.424 20.502z" horiz-adv-x="1136" />
<glyph unicode="&#xe102;" d="M212.778 960q-29.922 0-50.424-20.502t-20.502-50.424v-992.97q0-29.922 20.502-50.424t50.424-20.502h709.264q29.922 0 50.424 20.502t20.502 50.424v992.97q0 29.922-20.502 50.424t-50.424 20.502h-709.264zM283.706 818.146h567.41v-851.116h-567.41v851.116zM531.948-68.432h70.926q14.408 0 24.934-10.528t10.528-24.934-10.528-24.934-24.934-10.528h-70.926q-14.408 0-24.936 10.528t-10.528 24.934 10.528 24.934 24.936 10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe103;" d="M263.758 743.896q-6.65 0-8.866-2.216t-9.974-13.298-17.732-19.394-26.598-17.178q-11.082-4.432-15.514-7.758t-4.432-11.082q0-5.542 4.432-9.974t9.974-4.432q12.19 0 47.654 26.596v-126.338q0-11.082 4.986-16.622t13.852-5.542q18.84 0 18.84 27.706v158.476q0 9.974-4.432 15.514t-12.19 5.54zM461.022 676.294q-14.406 0-24.936-10.528t-10.528-24.936 10.528-24.934 24.936-10.528h496.486q14.408 0 24.934 10.528t10.528 24.934-10.528 24.936-24.934 10.528h-496.486zM248.242 460.19q-17.732 0-31.030-4.988t-21.61-13.298-12.746-18.84-4.432-20.502q0-7.758 4.432-12.19t12.19-4.432 11.636 4.986 7.204 14.408 4.432 11.636q11.082 15.514 28.814 15.514 8.866 0 16.068-3.88t11.636-11.082 4.432-16.068q0-7.758-4.432-16.068t-11.636-16.624-18.286-16.068q-6.65-4.432-21.61-17.732t-33.8-33.246q-4.432-4.432-7.758-12.746t-3.324-13.852q0-7.758 5.54-13.298t16.622-5.542h101.956q8.866 0 13.298 4.986t4.432 11.636q0 7.758-5.54 11.636t-16.622 3.88h-72.034q3.324 6.65 6.65 9.974 7.758 8.866 28.814 25.49 21.056 17.732 28.814 25.49 8.866 7.758 17.732 22.164t8.866 31.030q0 11.082-4.432 21.056t-11.636 17.732-17.178 12.19q-14.406 6.65-35.462 6.65zM461.022 392.59q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h496.486q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-496.486zM248.242 176.486q-15.516 0-28.26-4.432t-21.056-11.636-12.746-14.962-4.432-15.514q0-6.65 4.986-11.636t10.528-4.986q4.432 0 8.312 2.216t4.986 4.432l4.432 11.082q3.324 6.65 6.65 10.528t8.866 6.096 13.3 2.216q13.3 0 20.502-7.758t7.202-17.732q0-14.408-9.42-21.61t-21.61-7.202h-5.54q-9.974 0-14.962-4.432t-4.986-11.082 3.878-10.528 11.636-3.88q1.108 0 7.204 0.554t9.42 0.554q15.516 0 24.382-8.866t8.866-25.49q0-11.082-5.54-19.394t-13.298-12.746-16.622-4.432q-14.408 0-22.718 9.42t-16.068 29.368q-1.108 3.326-4.432 5.542t-7.758 2.216q-7.758 0-12.746-4.986t-4.986-12.746q0-6.65 4.432-16.068t12.746-18.286 21.61-14.962 29.922-6.096 29.922 4.986 23.274 14.408 14.962 21.056 4.988 23.826q0 11.082-3.88 19.948t-11.082 16.624-18.286 13.298q11.082 9.974 17.178 19.394t6.096 23.826q0 11.082-3.88 19.948t-12.19 16.068-19.394 10.528-24.382 3.326zM461.022 108.884q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528h496.486q14.408 0 24.934 10.528t10.528 24.934-10.528 24.934-24.934 10.528h-496.486z" horiz-adv-x="1136" />
<glyph unicode="&#xe104;" d="M141.854 747.222q-28.814 0-49.87-20.502t-21.056-50.424v-567.412q0-29.922 21.056-50.424t49.87-20.502q29.922 0 50.424 20.502t20.502 50.424v567.41q0 29.922-20.502 50.424t-50.424 20.502zM319.168 747.222q-14.406 0-24.936-10.528t-10.528-24.934v-495.378q0-15.514 10.528-25.49t24.936-9.974 24.936 9.974 10.528 25.49v495.378q0 14.406-10.528 24.934t-24.936 10.528zM496.486 747.222q-28.814 0-49.87-20.502t-21.056-50.424v-425.558q0-28.814 21.056-49.87t50.424-21.056 49.87 20.502 20.502 50.424v425.558q0 29.922-20.502 50.424t-50.424 20.502zM673.802 747.222q-14.408 0-24.934-10.528t-10.528-24.934v-637.23q0-14.408 10.528-24.934t24.934-10.528 24.934 9.974 10.528 25.49v637.23q0 14.408-10.528 24.936t-24.934 10.528zM851.116 747.222q-29.922 0-50.424-20.502t-20.502-50.424v-425.558q0-28.814 20.502-49.87t50.424-21.056 50.424 20.502 20.502 50.424v425.558q0 29.922-20.502 50.424t-50.424 20.502zM1028.432 747.222q-14.408 0-24.934-10.528t-10.528-24.934v-637.23q0-15.514 10.528-25.49t24.934-9.974 24.934 9.974 10.528 25.49v637.23q0 14.408-10.528 24.934t-24.934 10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe105;" d="M0 832h1024v-128h-1024v128zM0 192h1024v-128h-1024v128zM0 512h1024v-128h-1024v128z" />
<glyph unicode="&#xe106;" d="M192 576h-128v128h128v-128zM384 576h-128v128h128v-128zM576 576h-128v128h128v-128zM768 576h-128v128h128v-128zM960 576h-128v128h128v-128zM192 384h-128v128h128v-128zM384 384h-128v128h128v-128zM576 384h-128v128h128v-128zM768 384h-128v128h128v-128zM960 384h-128v128h128v-128zM192 768h-128v128h128v-128zM384 768h-128v128h128v-128zM576 768h-128v128h128v-128zM768 768h-128v128h128v-128zM960 768h-128v128h128v-128zM192 192h-128v128h128v-128zM384 192h-128v128h128v-128zM576 192h-128v128h128v-128zM192 0h-128v128h128v-128zM384 0h-128v128h128v-128zM576 0h-128v128h128v-128zM960 192h-128v128h-64v-128h-128v-64h128v-128h64v128h128v64z" />
<glyph unicode="&#xe107;" d="M832 320h128v-128h-128v128zM640 320h128v-128h-128v128zM448 320h128v-128h-128v128zM256 320h128v-128h-128v128zM64 320h128v-128h-128v128zM832 512h128v-128h-128v128zM640 512h128v-128h-128v128zM448 512h128v-128h-128v128zM256 512h128v-128h-128v128zM64 512h128v-128h-128v128zM832 128h128v-128h-128v128zM640 128h128v-128h-128v128zM448 128h128v-128h-128v128zM256 128h128v-128h-128v128zM64 128h128v-128h-128v128zM448 576h512v192h-512v-128h-128v-64h128zM64 704h128v-128h64v128h128v64h-128v128h-64v-128h-128v-64z" />
<glyph unicode="&#xe108;" d="M832 704h128v-128h-128v128zM640 704h128v-128h-128v128zM448 704h128v-128h-128v128zM256 704h128v-128h-128v128zM64 704h128v-128h-128v128zM832 512h128v-128h-128v128zM640 512h128v-128h-128v128zM448 512h128v-128h-128v128zM256 512h128v-128h-128v128zM64 512h128v-128h-128v128zM832 896h128v-128h-128v128zM640 896h128v-128h-128v128zM448 896h128v-128h-128v128zM256 896h128v-128h-128v128zM64 896h128v-128h-128v128zM320 320v-64h128v-128h512v192h-640zM64 128h128v-128h64v128h128v64h-128v128h-64v-128h-128v-64z" />
<glyph unicode="&#xe109;" d="M768 128v-128h-128v128h128zM768 320v-128h-128v128h128zM768 512v-128h-128v128h128zM768 704v-128h-128v128h128zM768 896v-128h-128v128h128zM576 128v-128h-128v128h128zM576 320v-128h-128v128h128zM576 512v-128h-128v128h128zM576 704v-128h-128v128h128zM576 896v-128h-128v128h128zM960 128v-128h-128v128h128zM960 320v-128h-128v128h128zM960 512v-128h-128v128h128zM960 704v-128h-128v128h128zM960 896v-128h-128v128h128zM384 640h-64v-128h-128v-512h192v640zM192 896v-128h-128v-64h128v-128h64v128h128v64h-128v128h-64z" />
<glyph unicode="&#xe10a;" d="M384 128v-128h-128v128h128zM384 320v-128h-128v128h128zM384 512v-128h-128v128h128zM384 704v-128h-128v128h128zM384 896v-128h-128v128h128zM576 128v-128h-128v128h128zM576 320v-128h-128v128h128zM576 512v-128h-128v128h128zM576 704v-128h-128v128h128zM576 896v-128h-128v128h128zM192 128v-128h-128v128h128zM192 320v-128h-128v128h128zM192 512v-128h-128v128h128zM192 704v-128h-128v128h128zM192 896v-128h-128v128h128zM640 512v-512h192v512h-128v128h-64v-128zM768 896v-128h-128v-64h128v-128h64v128h128v64h-128v128h-64z" />
<glyph unicode="&#xe10b;" d="M192 576h-128v128h128v-128zM384 576h-128v128h128v-128zM576 576h-128v128h128v-128zM768 576h-128v128h128v-128zM960 576h-128v128h128v-128zM192 0h-128v128h128v-128zM384 0h-128v128h128v-128zM576 0h-128v128h128v-128zM768 0h-128v128h128v-128zM960 0h-128v128h128v-128zM192 768h-128v128h128v-128zM384 768h-128v128h128v-128zM576 768h-128v128h128v-128zM768 768h-128v128h128v-128zM960 768h-128v128h128v-128zM895.808 256h64.192v192h-64.192l-96-96 96-96zM544 352l-96 96h-384v-192h384l96 96zM785.152 193.6l45.248 45.248-113.152 113.152 113.152 113.088-45.248 45.248-113.152-113.088-113.152 113.088-45.248-45.248 113.152-113.088-113.152-113.152 45.248-45.248 113.152 113.152 113.152-113.152z" />
<glyph unicode="&#xe10c;" d="M384 128v-128h-128v128h128zM384 320v-128h-128v128h128zM384 512v-128h-128v128h128zM384 704v-128h-128v128h128zM384 896v-128h-128v128h128zM960 128v-128h-128v128h128zM960 320v-128h-128v128h128zM960 512v-128h-128v128h128zM960 704v-128h-128v128h128zM960 896v-128h-128v128h128zM192 128v-128h-128v128h128zM192 320v-128h-128v128h128zM192 512v-128h-128v128h128zM192 704v-128h-128v128h128zM192 896v-128h-128v128h128zM704 832v64.192h-192v-64.192l96-96 96 96zM608 480l-96-96v-384h192v384l-96 96zM766.4 721.152l-45.248 45.248-113.152-113.152-113.152 113.152-45.248-45.248 113.152-113.152-113.152-113.152 45.248-45.248 113.152 113.152 113.152-113.152 45.248 45.248-113.152 113.152 113.152 113.152z" />
<glyph unicode="&#xe10d;" d="M192 576h-128v128h128v-128zM256 704v-512h64v448h448v64h-512zM768 192v512h-64v-448h-448v-64h512zM960 576h-128v128h128v-128zM192 0h-128v128h128v-128zM384 0h-128v128h128v-128zM576 0h-128v128h128v-128zM768 0h-128v128h128v-128zM960 0h-128v128h128v-128zM192 768h-128v128h128v-128zM384 768h-128v128h128v-128zM576 768h-128v128h128v-128zM768 768h-128v128h128v-128zM960 768h-128v128h128v-128zM192 192h-128v128h128v-128zM960 192h-128v128h128v-128zM192 384h-128v128h128v-128zM960 384h-128v128h128v-128z" />
<glyph unicode="&#xe1ff;" d="M664.934 756.086q-19.948 0-32.14-16.624t-12.19-45.436v-115.256q-53.196-9.974-100.294-24.934t-100.294-43.222-90.874-64.832-62.616-92.538-24.936-122.458q24.382 47.654 68.156 80.9t98.632 48.762 105.834 21.056 106.39 4.432v-117.472q0-43.222 25.49-57.074t62.062 11.636l285.922 198.372q36.57 24.38 36.57 59.844t-36.572 60.952l-285.922 197.264q-23.274 16.624-43.222 16.624zM301.438 527.792q-103.064 0-175.654-72.588t-72.588-175.654 72.588-175.654 175.654-72.588 175.654 72.588 72.59 175.654q0 17.732-3.326 37.68-39.896-1.108-74.25-6.65 3.324-15.514 3.324-31.030 0-72.034-50.978-123.014t-123.014-50.978-123.014 50.978-50.978 123.014q0 50.978 27.706 93.644t73.144 63.722q32.138 49.87 83.116 90.874h-9.974z" horiz-adv-x="1136" />
<glyph unicode="&#xe200;" d="M520.866 960v-520.866h-520.866v-93.092h520.866v-520.866h93.092v520.866h520.866v93.092h-520.866v520.866h-93.092z" horiz-adv-x="1136" />
<glyph unicode="&#xe201;" d="M859.982 800.416h-585.144q-39.896 0-68.71-28.814t-28.814-68.71v-585.144q0-39.896 28.814-68.71t68.71-28.814h585.144q39.896 0 68.71 28.814t28.814 68.71v585.144q0 39.896-28.814 68.71t-68.71 28.814zM780.19 339.394h-141.854v-136.312q0-33.246-20.502-54.856t-50.424-21.61-50.424 21.61-20.502 54.856v136.312h-141.854q-29.922 0-50.424 21.056t-20.502 49.87q0 29.922 20.502 50.424t50.424 20.502h141.854v147.394q0 25.488 21.056 45.436t49.87 19.948 49.87-19.948 21.056-45.436v-147.394h141.852q29.922 0 50.424-20.502t20.502-49.87-21.056-50.424-49.87-21.056z" horiz-adv-x="1136" />
<glyph unicode="&#xe202;" d="M390.096 764.952q-36.572 0-62.616-26.044t-26.044-62.616v-100.848q32.14-15.514 51.532-45.436t19.394-66.494v-53.196h390.096v53.194q0 36.57 19.394 66.494t51.532 45.438v100.848q0 36.572-26.044 62.616t-62.616 26.044h-354.632zM248.242 552.174q-36.57 0-62.616-26.044t-26.044-62.616 26.044-62.616 62.616-26.044q8.866 0 17.732 2.216v-214.996q0-14.408 10.528-24.934t24.936-10.528 24.936 10.528 10.528 24.934v303.654q-1.108 35.464-26.596 60.952t-62.062 25.49zM886.58 552.174q-36.572 0-62.062-25.49t-26.596-60.952v-303.654q0-14.408 10.528-24.934t24.934-10.528 24.934 10.528 10.528 24.934v214.996q8.866-2.216 17.732-2.216 36.572 0 62.616 26.044t26.044 62.616-26.044 62.616-62.616 26.044zM372.364 374.856v-88.658h390.096v88.658h-390.096zM372.364 250.736v-88.658q0-14.408 9.42-24.934t22.718-10.528h325.818q13.298 0 22.72 10.528t9.42 24.934v88.658h-390.096zM301.438 91.152q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528 24.936 10.528 10.528 24.934-10.528 24.934-24.936 10.528zM833.384 91.152q-14.408 0-24.934-10.528t-10.528-24.934 10.528-24.934 24.934-10.528 24.934 10.528 10.528 24.934-10.528 24.934-24.934 10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe203;" d="M195.048 640.832c-29.254 0-53.194-23.94-53.194-53.196v-35.462c0-29.254-23.942-53.194-53.194-53.194h-35.464c-29.254 0-53.196-23.94-53.196-53.194v-106.39c0-29.264 23.94-53.196 53.196-53.196h35.464c29.254 0 53.194-23.932 53.194-53.196v-35.462c0-29.264 23.94-53.196 53.194-53.196h886.58c29.262 0 53.194 23.932 53.194 53.196v390.096c0 29.254-23.932 53.194-53.194 53.194h-886.58zM195.152 587.636h886.372c0.032-0.026 0.076-0.072 0.104-0.104v-389.888c-0.026-0.030-0.074-0.078-0.104-0.104h-886.372c-0.032 0.028-0.076 0.072-0.104 0.104v35.36c0 58.664-47.726 106.39-106.39 106.39h-35.36c-0.032 0.028-0.076 0.072-0.104 0.104v106.182c0.028 0.034 0.070 0.076 0.104 0.104h35.36c58.664 0 106.39 47.726 106.39 106.39v35.36c0.028 0.032 0.070 0.076 0.104 0.104z" horiz-adv-x="1136" />
<glyph unicode="&#xe204;" d="M141.854 960q-58.736 0-100.294-41.558t-41.558-100.294v-709.264q0-58.736 41.558-100.294t100.294-41.558h248.242q58.736 0 100.294-41.558t41.558-100.294h70.926q0 58.736 41.558 100.294t100.294 41.558h248.242q58.736 0 100.294 41.558t41.558 100.294v709.264q0 58.736-41.558 100.294t-100.294 41.558h-319.168q-64.278 0-106.39-47.654-42.112 47.654-106.39 47.654h-319.168zM141.854 906.804h319.168q39.896 0 66.494-29.922l13.298-15.516v-912.068q-58.736 70.926-150.718 70.926h-248.242q-36.57 0-62.616 26.044t-26.042 62.616v709.264q0 36.572 26.042 62.616t62.616 26.044zM673.802 906.804h319.168q36.57 0 62.616-26.044t26.042-62.616v-709.264q0-36.572-26.042-62.616t-62.616-26.044h-248.242q-91.982 0-150.72-70.926v912.068l13.298 15.514q26.596 29.922 66.494 29.922z" horiz-adv-x="1136" />
<glyph unicode="&#xe205;" d="M567.41 576.554q-106.39 0-181.75-75.358t-75.358-181.748 75.358-181.75 181.75-75.36 181.75 75.36 75.36 181.75-75.36 181.75-181.75 75.36zM711.48 175.376q-59.844-59.844-144.068-59.844t-144.068 59.844-59.844 144.068 59.844 144.068 144.068 59.844 144.068-59.844 59.844-144.068-59.844-144.068zM1063.896 640.832h-165.126q-28.814 0-56.52 19.948t-36.572 47.654l-26.596 77.576q-8.866 27.706-36.572 47.654t-56.52 19.948h-237.16q-28.814 0-56.52-19.948t-36.572-47.654l-26.596-77.576q-8.866-27.706-36.572-47.654t-56.52-19.948h-165.126q-28.814 0-49.87-21.056t-21.056-49.87v-567.41q0-28.814 21.056-49.87t49.87-21.056h992.97q28.814 0 49.87 21.056t21.056 49.87v567.41q0 28.814-21.056 49.87t-49.87 21.056zM1081.628 2.494q0-7.758-4.988-12.746t-12.744-4.986h-992.97q-7.758 0-12.744 4.986t-4.988 12.746v567.41q0 7.758 4.988 12.746t12.744 4.986h165.126q46.544 0 87.55 29.922t56.52 74.252l25.488 77.576q4.432 11.082 17.732 21.056t25.488 9.974h237.16q12.19 0 25.49-9.974t17.732-21.056l25.49-77.576q15.514-44.33 56.52-74.25t87.55-29.922h165.126q7.758 0 12.744-4.986t4.988-12.746v-567.41z" horiz-adv-x="1136" />
<glyph unicode="&#xe206;" d="M1017.35 726.164h-752.486q-28.814 0-46.546-20.502t-13.3-49.316l62.062-418.908q4.432-28.814 28.814-49.316t53.194-20.502h387.88q28.814 0 59.29 18.84t42.668 44.328l217.212 432.208q13.298 26.596 1.662 44.882t-40.45 18.286zM792.38 255.168q-6.65-13.298-24.38-23.826t-31.030-10.528h-387.88q-9.974 0-18.84 7.758t-9.974 17.732l-63.168 417.802q0 4.432 1.662 6.648t6.096 2.216h736.97zM130.216 870.234q-34.908 0-59.29-24.382t-24.382-58.736 24.382-59.29 59.29-24.934 59.29 24.934 24.382 59.29-24.382 58.736-59.29 24.38zM130.216 756.086q-12.746 0-21.61 8.866t-8.866 21.61 8.866 21.61 21.61 8.866 21.61-8.866 8.866-21.61-8.866-21.61-21.61-8.866zM807.342 127.722q-43.774 0-74.804-31.584t-31.030-75.36 31.030-74.806 74.806-31.030 75.36 31.030 31.584 74.806-31.584 75.36-75.36 31.584zM807.896-31.86q-22.164 0-37.68 15.514t-15.514 37.126 15.514 37.68 37.68 16.068 37.68-16.068 15.514-37.68-15.514-37.126-37.68-15.514zM360.726 127.722q-43.774 0-75.358-31.584t-31.584-75.36 31.584-74.806 75.358-31.030 74.806 31.030 31.030 74.806-31.030 75.36-74.806 31.584zM360.726-31.86q-21.61 0-37.68 15.514t-16.070 37.126 16.070 37.68 37.68 16.068 37.126-16.068 15.514-37.68-15.514-37.126-37.126-15.514z" horiz-adv-x="1136" />
<glyph unicode="&#xe207;" d="M567.41 960q-154.044 0-284.814-75.914t-206.684-206.684-75.912-284.814 75.912-284.814 206.684-206.684 284.814-75.914 284.814 75.914 206.684 206.684 75.914 284.814-75.914 284.814-206.684 206.684-284.814 75.914zM567.41 906.804q104.174 0 200.59-39.896 91.982-39.896 162.908-110.822t110.822-162.908q39.896-96.416 39.896-200.59t-39.896-200.588q-39.896-91.982-110.822-162.908t-162.908-110.822q-96.416-39.896-200.588-39.896t-200.588 39.896q-91.984 39.896-162.908 110.822t-110.822 162.908q-39.896 96.416-39.896 200.588t39.896 200.588q39.896 91.984 110.822 162.91t162.908 110.822q96.416 39.896 200.588 39.896zM585.144 782.684q-7.758 0-12.746-4.986t-4.986-12.746v-354.632q0-7.758-4.986-12.746t-12.746-4.986h-265.974q-7.758 0-12.746-4.986t-4.988-12.746v-17.732q0-7.758 4.988-12.746t12.746-4.986h319.168q7.758 0 12.746 4.986t4.986 12.746v407.826q0 7.758-4.986 12.746t-12.746 4.986h-17.732z" horiz-adv-x="1136" />
<glyph unicode="&#xe208;" d="M691.532 818.146q-22.164 0-32.692-14.962t-3.88-36.016l2.216-4.432q6.65-21.056 19.394-36.016t23.826-14.962 23.826 14.962 19.394 36.016l2.216 4.432q6.65 21.056-3.88 36.016t-32.692 14.962h-17.732zM585.144 676.294q-22.164 0-32.692-14.962t-3.88-36.016l2.216-4.432q6.65-21.056 19.394-36.018t23.826-14.962 23.826 14.962 19.394 36.018l2.216 4.432q6.65 21.056-3.88 36.016t-32.692 14.962h-17.732zM354.632 534.442q-22.166 0-34.908-15.514t-8.312-36.572l86.442-463.238q4.432-21.056 22.718-36.572t40.45-15.514h212.778q22.164 0 40.45 15.514t22.72 36.572l86.442 463.238q4.432 21.056-8.312 36.57t-34.908 15.514h-425.558z" horiz-adv-x="1136" />
<glyph unicode="&#xe209;" d="M558.544 960q-7.758 0-12.746-4.986t-4.986-12.746v-697.074q0-8.866-5.542-8.866-3.326 0-6.65 3.326l-111.93 111.932q-4.432 5.542-12.19 5.542t-12.19-5.542l-13.298-12.19q-12.19-13.298 0-25.49l176.208-175.1q4.432-5.542 12.19-5.542t12.19 5.542l176.208 175.1q12.19 12.19 0 25.49l-13.298 12.19q-4.432 5.542-12.19 5.542t-12.19-5.542l-111.932-111.932q-3.326-3.326-6.65-3.326-5.542 0-5.542 8.866v697.074q0 7.758-4.986 12.746t-12.746 4.986h-17.732zM181.748 733.922q-7.758 0-12.746-4.988t-4.986-12.744v-873.28q0-7.758 4.986-12.744t12.746-4.988h771.326q7.758 0 12.746 4.988t4.986 12.744v873.28q0 7.758-4.986 12.746t-12.746 4.986h-234.944q-7.758 0-12.746-4.986t-4.986-12.746v-17.732q0-7.758 4.986-12.746t12.746-4.986h181.75q7.758 0 12.746-4.988t4.986-12.746v-766.892q0-7.758-4.986-12.744t-12.746-4.988h-664.934q-7.758 0-12.746 4.988t-4.986 12.744v766.892q0 7.758 4.986 12.746t12.746 4.986h181.75q7.758 0 12.746 4.988t4.988 12.746v17.732q0 7.758-4.988 12.746t-12.746 4.988h-234.944z" horiz-adv-x="1136" />
<glyph unicode="&#xe20a;" d="M1018.458 914.562l-47.654-47.654 70.926-70.926 47.654 47.654zM941.99 838.096l-485.404-485.404-31.030-101.956 101.956 31.030 485.404 485.404zM17.732 676.294q-7.758 0-12.744-4.986t-4.988-12.746v-815.654q0-7.758 4.988-12.744t12.744-4.988h815.654q7.758 0 12.746 4.988t4.986 12.744v683.774l-53.196-53.194v-595.116h-744.726v744.726h595.116l53.196 53.196h-683.774z" horiz-adv-x="1136" />
<glyph unicode="&#xe20b;" d="M1117.090 960h-886.58q-7.758 0-12.746-4.986t-4.986-12.746v-141.854h53.196v106.39h815.654v-815.654h-106.39v-53.196h141.852q7.758 0 12.744 4.986t4.988 12.746v886.58q0 7.758-4.988 12.746t-12.744 4.986zM904.312 747.222h-886.58q-7.758 0-12.744-4.986t-4.988-12.746v-886.58q0-7.758 4.988-12.744t12.744-4.988h886.58q7.758 0 12.746 4.988t4.986 12.744v886.58q0 7.758-4.986 12.746t-12.746 4.986zM868.848-121.628h-815.654v815.654h815.654v-815.654zM248.242-40.726l212.778 154.044 212.778-154.044-80.9 249.35 211.67 155.152h-262.65l-80.9 249.35-80.9-249.35h-262.65l211.67-155.152zM280.38 310.58h138.528l11.082 36.572 31.030 94.198 31.030-94.198 11.082-36.572h138.528l-80.9-58.736-31.030-22.164 12.19-36.572 31.030-95.308-80.9 58.736-31.030 22.164-31.030-22.164-80.9-58.736 31.030 95.308 12.19 36.572-31.030 22.164z" horiz-adv-x="1136" />
<glyph unicode="&#xe20c;" d="M567.41 932.294l-134.096-412.26h-433.316l350.2-254.892-132.986-412.26 350.198 253.784 350.198-253.784-132.986 412.26 350.198 254.892h-433.316zM567.41 760.52l84.226-257.108 11.082-36.57h309.196l-218.32-158.476-31.030-23.274 11.082-36.572 83.116-257.108-218.32 158.476-31.030 23.274-31.030-23.274-218.32-158.476 83.118 257.108 11.082 36.572-31.030 23.274-218.32 158.476h309.194l11.082 36.572z" horiz-adv-x="1136" />
<glyph unicode="&#xe20d;" d="M219.498 755.982c-45.218 0-88.362-7.326-117.194-21.748-54.28-27.134-53.558-94.476 1.628-149.646l440.798-440.83c46.972-46.966 98.784-78.616 125.68-78.616 4.688 0 8.62 0.968 11.636 2.978 20.346 13.576 14.582 84.45-12.814 157.506l-122.39 326.442c-27.394 73.056-110.38 153.004-184.416 177.662l-26.874 8.97c-34.694 11.564-76.172 17.28-116.052 17.28zM219.498 702.788c35.878 0 71.102-5.174 99.222-14.546l26.908-8.97c58.858-19.602 129.588-87.762 151.378-145.87l122.424-326.442c9.142-24.38 15.994-49.932 19.326-71.932 0.010-0.072 0.024-0.134 0.034-0.208-18.566 12.1-38.072 28.202-56.45 46.58l-440.798 440.798c-21.9 21.894-27.696 41.79-26.010 52.19 0.4 2.458 1.224 7.592 10.564 12.26 20.192 10.1 55.112 16.138 93.402 16.138zM936.208 613.818c-38.326 0-77.524-5.096-108.398-15.274-61.766-20.356-129.35-63.196-150.234-95.202-20.848-32-20.086-105.758 1.698-163.88 12.254-32.684 39.158-49.628 71.308-49.628 25.010 0 53.198 10.254 80.104 31.274l195.982 153.108c61.506 48.036 67.154 103.974 12.606 124.33-27.28 10.178-64.738 15.274-103.066 15.274zM936.208 560.624c33.376 0 64.182-4.346 84.468-11.914 0.606-0.226 1.138-0.448 1.628-0.658-2.726-6.244-10.434-17.866-28.398-31.896l-195.982-153.144c-16.252-12.696-33.51-19.982-47.342-19.982-11.266 0-17.49 4.386-21.506 15.1-8.294 22.134-13.216 48.974-13.472 73.628-0.272 26.162 4.754 39.83 6.51 42.528 3.472 5.322 16.582 18.896 43.706 36.086 24.506 15.532 53.154 29.254 78.616 37.644 24.278 8 57.726 12.606 91.774 12.606zM461.888 139.222c-13.338 0-26.256-6.822-34.908-20.086-15.766-24.174-14.382-53.472 3.048-65.108 7.294-4.848 16.776-7.202 26.736-7.202 13.872 0 28.678 4.544 39.826 13.264 19.142 14.978 17.81 44.26-3.048 65.108-9.4 9.408-20.686 14.026-31.654 14.026z" horiz-adv-x="1136" />
<glyph unicode="&#xe20e;" d="M567.41 64.554l567.41 328.034-567.41 328.036v-656.068zM567.41 392.59l-567.41 328.034v-656.068z" horiz-adv-x="1136" />
<glyph unicode="&#xe20f;" d="M567.41 631.964q-98.632 0-169.004-70.372t-70.372-169.004 70.372-169.004 169.004-70.372 169.004 70.372 70.372 169.004-70.372 169.004-169.004 70.372zM567.41 206.408q-76.468 0-131.324 54.856t-54.858 131.324 54.856 131.326 131.324 54.856 131.326-54.856 54.856-131.326-54.856-131.326-131.326-54.856zM1125.958 290.632q8.866 49.87 8.866 101.956t-8.866 101.956h-108.606q-17.732 76.468-59.844 144.068l76.468 76.468q-28.814 42.114-65.384 78.684t-78.684 65.384l-76.468-76.468q-67.602 42.112-144.068 59.844v108.606q-49.87 8.866-101.956 8.866t-101.956-8.866v-108.606q-76.468-17.732-144.068-59.844l-76.468 76.468q-42.112-28.814-78.684-65.384t-65.386-78.684l76.468-76.468q-42.112-67.602-59.844-144.068h-108.606q-8.866-49.87-8.866-101.956t8.866-101.956h108.606q17.732-76.468 59.844-144.068l-76.468-76.468q28.814-42.114 65.386-78.684t78.684-65.384l76.468 76.468q67.602-42.112 144.068-59.844v-108.606q49.87-8.866 101.956-8.866t101.956 8.866v108.606q76.468 17.732 144.068 59.844l76.468-76.468q42.114 28.814 78.684 65.384t65.384 78.684l-76.468 76.468q42.112 67.602 59.844 144.068h108.606zM965.264 302.822q-15.514-68.71-53.196-127.446l-22.164-36.572 74.25-74.25q-15.514-18.84-32.692-36.018t-36.018-32.692l-74.25 74.25-36.572-22.164q-58.736-37.68-127.446-53.196l-41.004-8.866v-105.28q-24.38-2.216-48.762-2.216t-48.762 2.216v105.28l-41.004 8.866q-68.71 15.514-127.446 53.196l-36.572 22.164-74.252-74.25q-18.84 15.514-36.016 32.692t-32.694 36.018l74.252 74.25-22.164 36.572q-37.68 58.736-53.194 127.446l-8.866 41.004h-105.282q-2.216 24.38-2.216 48.762t2.216 48.762h105.282l8.866 41.004q15.514 68.71 53.194 127.446l22.164 36.572-74.252 74.25q15.514 18.84 32.692 36.018t36.016 32.692l74.252-74.25 36.572 22.164q58.736 37.68 127.446 53.196l41.004 8.866v105.28q24.38 2.216 48.762 2.216t48.762-2.216v-105.28l41.004-8.866q68.71-15.516 127.446-53.196l36.572-22.164 74.25 74.25q18.84-15.514 36.018-32.692t32.692-36.016l-74.25-74.252 22.164-36.572q37.68-58.736 53.196-127.446l8.866-41.004h105.28q2.216-24.38 2.216-48.762t-2.216-48.762h-105.28z" horiz-adv-x="1136" />
<glyph unicode="&#xe210;" d="M567.41 853.61q-190.616 0-325.818-135.204t-135.204-325.818 135.204-325.818 325.818-135.202 325.818 135.202 135.204 325.818-135.202 325.818-325.818 135.202zM711.48 728.38q98.632-42.112 159.584-133.54t60.952-202.25q0-137.42-89.212-239.378t-222.2-121.904q19.948 60.952 62.616 118.026t88.104 70.372q24.38 18.84 34.908 39.342t9.974 36.572-2.77 34.908q-6.65 11.082-29.922 25.49t-59.29 37.126-63.722 45.99q-21.056 5.542-40.45 1.108t-38.788-3.88-27.152 11.636q-5.542 5.54-18.84 15.514t-25.488 18.286-23.274 19.948-11.082 21.61 9.974 22.166q12.19 13.298 31.584 18.286t34.356 6.096 30.476 14.408 23.274 41.004q8.866 27.706 22.72 40.45t24.934 12.744 28.26-3.324 21.61-3.324q13.298 0 16.624 18.84t-7.758 37.68zM311.412 651.914q89.766-161.8 165.126-183.966 28.814-7.758 47.654-17.178t24.38-14.962 12.19-14.962 8.866-12.746q3.326-3.326 1.662-14.962t-5.542-22.72-0.554-31.584 15.514-42.668q6.65-9.974 17.732-14.962t17.732-12.746 11.082-26.596q3.326-17.732-12.746-103.066t-8.312-109.714q-19.948-1.108-38.788-1.108-98.632 0-182.856 48.762t-132.986 132.986-48.762 182.856q0 75.358 28.26 142.408t80.346 116.918z" horiz-adv-x="1136" />
<glyph unicode="&#xe211;" d="M567.41 853.61q-190.616 0-325.818-135.204t-135.204-325.818 135.204-325.818 325.818-135.202 325.818 135.202 135.204 325.818-135.202 325.818-325.818 135.202zM521.974 784.9q88.658 0 162.908-35.462 21.056-8.866 29.922-28.26t4.432-34.356-16.624-14.962q-4.432 0-21.61 3.324t-28.26 3.326-24.934-12.746-22.72-40.45q-7.758-27.706-23.274-41.004t-30.476-14.406-34.356-6.096-31.584-18.286q-9.974-12.19-9.974-22.164t11.082-21.61 23.274-19.948 25.49-18.286 18.84-15.516q7.758-11.082 27.152-11.636t38.788 3.88 40.45-1.108q27.706-23.274 63.722-45.99t59.29-37.126 29.922-25.49q2.216-18.84 2.77-34.908t-9.974-36.572-34.908-39.342q-48.762-14.408-93.644-77.576t-61.506-126.338q-13.298 5.542-12.746 37.68t7.202 65.938 12.746 70.926 3.88 51.532q-4.432 18.84-11.082 26.596t-17.732 12.746-17.732 14.962q-12.19 22.164-15.514 42.668t0.554 31.584 5.542 22.72-1.662 14.962q-2.216 3.326-8.866 12.746t-12.19 14.962-24.38 14.962-47.654 17.178q-77.576 22.166-175.1 201.698-2.216 4.432-4.432 6.65-17.732 34.356 32.692 65.938t133.54 40.45q31.030 2.216 58.736 2.216z" horiz-adv-x="1136" />
<glyph unicode="&#xe212;" d="M975.238-121.628h-265.974v405.61q0 6.65-4.986 12.19t-12.746 5.542h-248.242q-7.758 0-12.746-5.542t-4.988-12.19v-405.61h-265.974v521.974l-53.194-53.196v-504.242q0-7.758 4.986-12.744t12.746-4.988h886.58q7.758 0 12.746 4.988t4.986 12.744v504.242l-53.196 53.196v-521.974zM656.068-121.628h-177.316v370.146h177.316v-370.146zM1122.632 404.778l-543.030 543.030q-4.432 4.432-12.19 4.432t-12.19-4.432l-543.030-543.030q-12.19-12.19 0-24.38l13.298-13.298q4.432-4.432 12.19-4.432t12.19 4.432l505.35 505.35q4.432 4.432 12.19 4.432t12.19-4.432l505.35-505.35q4.432-4.432 12.19-4.432t12.19 4.432l13.298 13.298q12.19 12.19 0 24.38z" horiz-adv-x="1136" />
<glyph unicode="&#xe213;" d="M567.966 654.13q22.72 0 38.788 16.070t16.068 38.234q0 23.274-16.624 39.896t-38.788 16.624-38.788-16.624-16.622-38.788 16.622-38.788 39.342-16.622zM622.822 73.42q-7.758 6.65-7.758 23.274v446.616l-183.966-5.54v-36.572h37.68q31.030 0 47.1-14.406t16.068-42.112v-339.118q0-21.056-10.528-31.584t-31.584-10.528h-48.762v-36.572h262.65v36.572h-52.086q-17.732 0-28.814 9.974zM567.41 960q-115.254 0-220.538-44.884t-181.194-120.798-120.796-181.194-44.884-220.538 44.884-220.538 120.796-181.194 181.194-120.798 220.538-44.884 220.538 44.884 181.196 120.798 120.798 181.194 44.884 220.538-44.884 220.538-120.798 181.194-181.194 120.798-220.538 44.884zM930.908 29.092q-70.926-70.926-162.908-110.822-96.416-39.896-200.588-39.896t-200.588 39.896q-91.984 39.896-162.908 110.822t-110.822 162.908q-39.896 96.416-39.896 200.588t39.896 200.588q39.896 91.984 110.822 162.91t162.908 110.822q96.416 39.896 200.588 39.896t200.588-39.896q91.982-39.896 162.908-110.822t110.822-162.91q39.896-96.416 39.896-200.588t-39.896-200.588q-39.896-91.982-110.822-162.908z" horiz-adv-x="1136" />
<glyph unicode="&#xe214;" d="M910.408 960q-71.48 0-121.35-50.424t-49.87-121.35q0-32.14 11.082-60.952l-392.312-227.186q-52.086 64.278-132.986 64.278-70.926 0-121.35-50.424t-50.424-121.352 50.424-121.35 121.35-50.424q80.9 0 132.986 64.278l392.312-227.186q-11.082-28.814-11.082-60.952 0-70.926 49.87-121.352t121.35-50.424 121.35 50.424 49.87 121.35-49.87 120.798-121.904 49.87q-80.9 0-132.986-63.168l-392.312 226.078q11.082 29.922 11.082 62.062t-11.082 62.060l392.312 226.078q52.086-63.168 132.986-63.168 72.034 0 121.904 49.87t49.87 120.798-49.87 121.35-121.35 50.424zM910.408 906.804q49.316 0 83.672-34.908t34.354-83.67-34.356-83.118-83.672-34.356-83.672 34.356-34.356 83.672 34.356 83.672 83.672 34.354zM224.416 511.168q49.316 0 83.67-34.908t34.356-83.672-34.356-83.672-83.67-34.908-83.67 34.908-34.354 83.672 34.354 83.67 83.67 34.908zM910.408 114.424q49.316 0 83.672-34.356t34.354-83.116-34.356-83.672-83.672-34.91-83.672 34.91-34.356 83.672 34.356 83.116 83.672 34.356z" horiz-adv-x="1136" />
<glyph unicode="&#xe215;" d="M283.706 498.978q-44.33 0-75.358-31.030t-31.030-75.36 31.030-75.36 75.358-31.030 75.358 31.030 31.030 75.36-31.030 75.358-75.358 31.030zM283.706 339.394q-22.166 0-37.68 15.514t-15.514 37.68 15.514 37.68 37.68 15.514 37.68-15.514 15.514-37.68-15.514-37.68-37.68-15.514zM567.41 498.978q-44.328 0-75.358-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.358-75.36 31.030zM567.41 339.394q-22.164 0-37.68 15.514t-15.514 37.68 15.514 37.68 37.68 15.514 37.68-15.514 15.514-37.68-15.514-37.68-37.68-15.514zM851.116 498.978q-44.328 0-75.36-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.358-75.36 31.030zM851.116 339.394q-22.164 0-37.68 15.514t-15.514 37.68 15.514 37.68 37.68 15.514 37.68-15.514 15.514-37.68-15.514-37.68-37.68-15.514z" horiz-adv-x="1136" />
<glyph unicode="&#xe216;" d="M567.41 818.146q-44.328 0-75.358-31.030t-31.030-75.358 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.358-75.36 31.030zM567.41 498.978q-44.328 0-75.358-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.358-75.36 31.030zM567.41 179.81q-44.328 0-75.358-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.36-75.36 31.030z" horiz-adv-x="1136" />
<glyph unicode="&#xe217;" d="M349.092 960q-14.406 0-24.38-9.974l-96.416-96.416q-9.974-11.082-9.974-24.936t9.974-23.826l387.878-387.878q9.974-9.974 9.974-24.38t-9.974-24.38l-387.88-387.88q-9.974-9.974-9.974-23.826t9.974-24.936l96.416-96.416q9.974-9.974 24.382-9.974t24.38 9.974l533.056 533.056q9.974 9.974 9.974 24.38t-9.974 24.38l-533.056 533.056q-9.974 9.974-24.38 9.974z" horiz-adv-x="1136" />
<glyph unicode="&#xe218;" d="M638.338 818.146h212.778v-851.116h-212.778v851.116zM283.706 818.146h212.778v-851.116h-212.778v851.116z" horiz-adv-x="1136" />
<glyph unicode="&#xe219;" d="M571.982 875.948c-14.986 0-30.33-1.49-45.714-1.49-118.692 0-215.274-92.148-215.274-210.84 0-30.314-1.342-60.222 10.908-87.688-6.39-7.758-11.354-17.64-14.512-29.264-5.392-19.848-5.536-44.084-0.346-68.26 4.818-22.43 13.988-43.348 25.766-58.874 7.118-9.388 15.082-16.686 23.55-21.714 12.726-67.434 37.406-126.4 69.99-170.39v-17.836c0-46.178-30.714-64.954-79.342-83.74s-159.88-50.726-237.092-114.702c-51.772-42.894-89.236-113.6-109.922-185.974h1134.13c-20.666 72.49-58.176 143.36-110.026 186.32-77.21 63.976-177.382 95.88-226.010 114.668-48.626 18.786-90.424 37.564-90.424 83.74v17.384c32.744 44.15 57.5 103.4 70.198 171.186 8.048 4.998 15.64 12.092 22.442 21.056 11.778 15.528 20.916 36.442 25.732 58.874 5.168 24.064 5.084 48.22-0.242 68.018-4.082 15.164-11.25 27.434-20.64 35.844 16.662 28.254 17.662 60.322 17.662 93.404 0 101.588-82.654 193.108-184.242 193.108-7.064 0-14.176-0.436-21.23-1.248-14.482 6.76-29.714 8.416-45.368 8.416zM571.982 822.752c10.762 0 17.826-1.028 22.892-3.394l13.61-6.372 14.962 1.698c5.040 0.58 10.126 0.9 15.134 0.9 33.764 0 66.246-14.806 91.428-41.662 25.188-26.86 39.62-62.664 39.62-98.252 0-27.734-0.756-50.232-10.286-66.39l-22.164-37.576 32.486-29.092c0.934-0.836 3.158-3.988 4.778-10.010 3.126-11.622 2.96-27.32-0.416-43.048-3.168-14.758-9.038-28.572-16.104-37.888-3.682-4.854-6.65-7.098-8.104-8l-19.914-12.364-4.328-23.030c-5.604-29.912-13.846-58.158-24.486-83.982-10.182-24.722-22.318-46.702-36.12-65.316l-10.494-14.13v-34.944c0-85.298 77.9-115.39 124.432-133.368 6.586-2.544 13.99-5.272 21.818-8.174 51.416-19.052 129.11-47.85 189.438-97.836 25.566-21.182 48.804-53.27 67.358-92.156h-980.884c18.53 38.738 41.734 70.726 67.222 91.844 56.772 47.040 137.586 75.692 191.064 94.65 11.954 4.236 22.284 7.886 31.274 11.36 36.788 14.212 113.35 43.788 113.35 133.368v35.394l-10.46 14.096c-13.738 18.548-25.87 40.442-36.016 65.038-10.6 25.694-18.8 53.78-24.416 83.532l-4.468 23.62-20.676 12.26c-1.484 0.88-4.536 3.116-8.346 8.14-7.064 9.318-12.934 23.132-16.104 37.888-3.39 15.792-3.508 31.512-0.346 43.152 1.56 5.744 3.47 8.504 4.226 9.42l20.952 25.42-13.438 30.060c-6.478 14.524-6.396 34.444-6.302 57.524 0.012 2.82 0.036 5.656 0.036 8.484 0 42.634 16.692 82.316 46.996 111.758 30.44 29.572 71.318 45.886 115.082 45.886 9.062 0 17.538 0.422 25.766 0.832 7.096 0.35 13.824 0.658 19.948 0.658z" horiz-adv-x="1136" />
<glyph unicode="&#xe21a;" d="M141.854 883.532v-981.888l851.116 490.944z" horiz-adv-x="1136" />
<glyph unicode="&#xe21b;" d="M567.41 958.892v-169.558q-98.632 0-187.844-38.234t-153.49-102.512-102.51-153.488-38.234-187.29 38.234-187.844 102.51-154.044 153.49-102.512 187.844-38.234 187.844 38.234 153.49 102.51 102.51 154.044 38.234 187.29q0 54.302-12.19 106.39l-47.654-27.706q6.65-38.788 6.65-78.684 0-87.55-33.246-167.342-33.246-76.468-92.538-135.758t-135.758-92.538q-79.792-33.248-167.342-33.248t-167.342 33.248q-76.468 33.246-135.758 92.538t-92.538 135.758q-33.246 79.792-33.246 167.342t33.248 167.342q33.248 76.468 92.536 135.758t135.758 92.538q79.792 33.248 167.342 33.248v-175.1l344.658 198.372z" horiz-adv-x="1136" />
<glyph unicode="&#xe21c;" d="M651.082 874.668q-98.078 0-187.29-38.234t-154.044-102.51-102.51-153.49-37.68-187.844h-169.558l199.48-344.658 198.372 344.658h-175.1q0 87.55 33.246 167.342 32.14 76.468 91.984 135.758t136.312 92.538q79.792 33.246 166.788 33.246t166.788-33.248q77.576-33.246 136.866-92.536t91.43-135.758q34.356-79.792 34.356-167.342t-34.356-167.342q-32.14-76.468-91.428-135.758t-136.866-92.538q-79.792-33.246-166.234-33.246-39.896 0-78.684 6.65l-27.706-47.654q52.086-12.19 106.39-12.19 97.524 0 186.736 38.234t154.044 102.51 103.066 153.49 38.234 187.844-38.234 187.844-103.066 153.488-154.044 102.512-187.29 38.234z" horiz-adv-x="1136" />
<glyph unicode="&#xe21d;" d="M567.41 64.554l-567.41 328.034 567.41 328.036v-656.068zM567.41 392.59l567.41 328.034v-656.068z" horiz-adv-x="1136" />
<glyph unicode="&#xe21e;" d="M425.558 960q-176.208 0-300.882-124.674t-124.674-300.884 124.674-300.884 300.882-124.674q149.61 0 265.974 93.092l377.904-376.798 65.384 65.384-376.798 377.904q93.092 116.364 93.092 265.974 0 176.208-124.674 300.884t-300.882 124.674zM425.558 906.804q75.358 0 145.178-28.814 66.494-28.814 118.026-80.346t80.346-118.026q28.814-69.818 28.814-145.176 0-65.384-22.164-125.23-21.056-58.736-59.844-107.498l-25.49-32.14-32.14-25.49q-48.762-38.788-107.498-59.844-59.844-22.164-125.228-22.164-75.358 0-145.176 28.814-66.494 28.814-118.026 80.346t-80.346 118.026q-28.814 69.818-28.814 145.178t28.814 145.178q28.814 66.494 80.346 118.026t118.026 80.346q69.818 28.814 145.178 28.814z" horiz-adv-x="1136" />
<glyph unicode="&#xe21f;" d="M141.854 818.146v-851.116h851.116v851.116h-851.116z" horiz-adv-x="1136" />
<glyph unicode="&#xe220;" d="M1117.090 960h-886.58q-7.758 0-12.746-4.986t-4.986-12.746v-141.854h53.196v106.39h815.654v-815.654h-106.39v-53.196h141.852q7.758 0 12.744 4.986t4.988 12.746v886.58q0 7.758-4.988 12.746t-12.744 4.986zM904.312 747.222h-886.58q-7.758 0-12.744-4.986t-4.988-12.746v-886.58q0-7.758 4.988-12.744t12.744-4.988h886.58q7.758 0 12.746 4.988t4.986 12.744v886.58q0 7.758-4.986 12.746t-12.746 4.986zM868.848-121.628h-815.654v815.654h815.654v-815.654z" horiz-adv-x="1136" />
<glyph unicode="&#xe221;" d="M457.698 909.022q-28.814 0-49.87-21.056t-21.056-49.87v-70.926h-244.918v-53.196h75.358l60.952-817.87q2.216-29.922 24.936-50.424t51.532-20.502h425.558q28.814 0 51.532 20.502t24.934 50.424l52.086 714.804 7.758 85.332 1.108 17.732h75.36v53.196h-246.026v70.926q0 28.814-21.056 49.87t-49.87 21.056h-218.32zM457.698 855.826h218.32q7.758 0 12.746-4.986t4.986-12.746v-70.926h-253.784v70.926q0 7.758 4.988 12.746t12.746 4.986zM270.406 713.974h594.010l-60.952-813.436q0-8.866-7.202-15.516t-16.068-6.648h-425.558q-8.866 0-16.070 6.648t-7.202 15.516zM424.45 625.316h-17.732q-7.758-1.108-12.746-6.096t-3.88-12.746l17.732-622.822q1.108-6.65 6.096-11.636t11.636-4.986h18.84q7.758 1.108 12.746 6.096t3.88 12.746l-17.732 622.822q-1.108 6.65-6.096 11.636t-11.636 4.986h-1.108zM709.264 625.316q-6.65 0-11.636-4.988t-6.096-11.636l-17.732-622.824q-1.108-7.758 3.88-12.746t12.746-6.096h18.84q6.65 0 11.636 4.986t6.096 11.636l17.732 622.822q1.108 7.758-3.88 12.746t-12.746 6.096h-18.84zM558.544 625.316q-7.758 0-12.746-4.988t-4.986-12.746v-622.822q0-7.758 4.986-12.746t12.746-4.986h17.732q7.758 0 12.746 4.986t4.986 12.746v622.822q0 7.758-4.986 12.746t-12.746 4.988h-17.732z" horiz-adv-x="1136" />
<glyph unicode="&#xe222;" d="M567.41 843.636l-567.41-328.034 567.41-326.926v169.558q193.938 0 345.212-117.472t201.142-299.222h19.948v170.668q0 115.254-44.884 219.984t-120.798 180.64-180.64 121.35-219.984 45.438v164.016zM514.216 751.654v-125.23h52.086q104.174 0 200.59-41.004 91.982-38.788 162.908-109.714t110.822-164.016q34.356-82.010 38.788-171.774-85.332 125.23-221.092 198.372t-290.908 73.144h-53.196v-130.77l-407.826 234.944z" horiz-adv-x="1136" />
<glyph unicode="&#xe223;" d="M566.302 843.636l567.41-328.034-567.41-326.926v169.558q-193.938 0-345.212-117.472t-201.144-299.222h-19.948v170.668q0 115.254 44.884 219.984t120.796 180.64 180.642 121.35 219.984 45.438v164.016zM619.498 751.654v-125.23h-52.086q-104.174 0-200.588-41.004-91.984-38.788-162.908-109.714t-110.822-164.016q-34.354-82.010-38.788-171.774 85.332 125.23 221.092 198.372t290.91 73.144h53.196v-130.77l407.826 234.944z" horiz-adv-x="1136" />
<glyph unicode="&#xe224;" d="M964.156 767.168l-53.196-29.922q50.978-60.952 82.010-134.096 42.112-100.848 42.112-210.562t-42.114-210.562q-31.030-73.144-82.010-134.096l53.196-29.922q130.772 164.018 130.772 374.58t-130.77 374.58zM536.38 720.624l-321.384-186.182h-175.1v-283.706h175.1l321.384-186.182v656.068zM804.572 676.294l-53.196-31.030q103.066-105.282 103.066-252.676t-103.066-252.674l53.196-31.030q110.822 120.798 110.822 283.706t-110.822 283.706zM642.77 582.096l-58.736-33.248q42.112-24.38 66.494-65.938t24.38-90.32-24.38-90.32-66.494-65.938l58.736-33.246q42.114 33.246 67.048 83.116t24.934 106.39-24.934 106.39-67.048 83.116z" horiz-adv-x="1136" />
<glyph unicode="&#xe225;" d="M0 562.146l103.064-103.064q94.2 94.198 217.212 143.514t247.134 49.316 247.134-49.316 217.212-143.514l103.066 103.064q-115.254 115.256-265.42 175.1t-301.99 59.844-301.99-59.844-265.42-175.1zM205.022 356.018l103.064-101.956q53.194 52.086 121.35 79.792t137.974 27.706 137.974-27.706 121.35-79.792l103.064 101.956q-74.25 74.25-170.114 112.486t-192.278 38.234-192.276-38.234-170.112-112.486zM411.152 150.996l156.26-156.26 156.26 156.26q-64.278 64.278-156.26 64.278t-156.26-64.278z" horiz-adv-x="1136" />
<glyph unicode="&#xe226;" d="M951.966 906.804l118.58-160.692-208.346-140.746-130.77 65.384q-18.84 8.866-41.004 8.866-27.706 0-49.87-13.298-72.034-46.546-185.628-160.14t-160.14-186.736q-12.19-18.84-13.854-44.328t8.312-45.438l65.384-130.77-140.746-208.346-160.694 118.58q2.216 147.394 162.908 367.93 84.224 115.254 168.45 198.372v0q82.010 83.116 196.156 166.234 221.644 162.908 369.038 164.018 1.108 0 2.216 1.108zM955.29 960q-1.108 0-3.326-0.554l-2.216-0.554q-73.144 0-162.356-36.018t-164.016-86.996-139.082-101.404-100.848-85.888l-36.57-35.462q-7.758-7.758-19.948-20.502t-48.208-53.196-68.156-81.454-72.034-100.294-68.71-114.148-48.762-117.472-21.056-116.918q0-26.596 8.866-33.246l201.698-149.61q3.324-1.108 7.758-1.108 13.3 0 22.164 9.974 1.108 1.108 2.216 3.326l161.8 238.268q12.19 17.732 2.216 37.68l-69.818 138.528q-8.866 19.948 2.216 37.68 42.112 66.494 152.936 177.316 49.87 49.87 94.2 88.104t63.168 51.532l19.948 13.298q8.866 5.54 21.056 5.54 9.974 0 16.624-3.324l139.636-69.818q6.65-3.324 15.514-3.324 13.298 0 22.164 6.648l238.268 160.694 3.326 3.324q13.298 13.298 7.758 29.922l-149.61 200.588q-5.542 8.866-28.814 8.866z" horiz-adv-x="1136" />
<glyph unicode="&#xe227;" d="M918.476 743.654l-501.506-501.506-200.622 200.59-100.294-100.294 300.918-300.918 601.802 601.836-100.294 100.294z" />
<glyph unicode="&#xe2ff;" d="M664.934 756.086q-19.948 0-32.14-16.624t-12.19-45.436v-115.256q-53.196-9.974-100.294-24.934t-100.294-43.222-90.874-64.832-62.616-92.538-24.936-122.458q24.382 47.654 68.156 80.9t98.632 48.762 105.834 21.056 106.39 4.432v-117.472q0-43.222 25.49-57.074t62.062 11.636l285.922 198.372q36.57 24.38 36.57 59.844t-36.572 60.952l-285.922 197.264q-23.274 16.624-43.222 16.624zM301.438 527.792q-103.064 0-175.654-72.588t-72.588-175.654 72.588-175.654 175.654-72.588 175.654 72.588 72.59 175.654q0 17.732-3.326 37.68-39.896-1.108-74.25-6.65 3.324-15.514 3.324-31.030 0-72.034-50.978-123.014t-123.014-50.978-123.014 50.978-50.978 123.014q0 50.978 27.706 93.644t73.144 63.722q32.138 49.87 83.116 90.874h-9.974z" horiz-adv-x="1136" />
<glyph unicode="&#xe300;" d="M567.41 960q-154.044 0-284.814-75.914t-206.684-206.684-75.912-284.814 75.912-284.814 206.684-206.684 284.814-75.914 284.814 75.914 206.684 206.684 75.914 284.814-75.914 284.814-206.684 206.684-284.814 75.914zM520.866 889.074h93.092v-449.938h449.938v-93.092h-449.94v-449.938h-93.092v449.94h-449.94v93.092h449.94v449.938z" horiz-adv-x="1136" />
<glyph unicode="&#xe301;" d="M859.982 800.416h-585.144q-39.896 0-68.71-28.814t-28.814-68.71v-585.144q0-39.896 28.814-68.71t68.71-28.814h585.144q39.896 0 68.71 28.814t28.814 68.71v585.144q0 39.896-28.814 68.71t-68.71 28.814zM780.19 339.394h-141.854v-136.312q0-33.246-20.502-54.856t-50.424-21.61-50.424 21.61-20.502 54.856v136.312h-141.854q-29.922 0-50.424 21.056t-20.502 49.87q0 29.922 20.502 50.424t50.424 20.502h141.854v147.394q0 25.488 21.056 45.436t49.87 19.948 49.87-19.948 21.056-45.436v-147.394h141.852q29.922 0 50.424-20.502t20.502-49.87-21.056-50.424-49.87-21.056z" horiz-adv-x="1136" />
<glyph unicode="&#xe302;" d="M390.096 764.952q-36.572 0-62.616-26.044t-26.044-62.616v-100.848q32.14-15.514 51.532-45.436t19.394-66.494v-53.196h390.096v53.194q0 36.57 19.394 66.494t51.532 45.438v100.848q0 36.572-26.044 62.616t-62.616 26.044h-354.632zM248.242 552.174q-36.57 0-62.616-26.044t-26.044-62.616 26.044-62.616 62.616-26.044q8.866 0 17.732 2.216v-214.996q0-14.408 10.528-24.934t24.936-10.528 24.936 10.528 10.528 24.934v303.654q-1.108 35.464-26.596 60.952t-62.062 25.49zM886.58 552.174q-36.572 0-62.062-25.49t-26.596-60.952v-303.654q0-14.408 10.528-24.934t24.934-10.528 24.934 10.528 10.528 24.934v214.996q8.866-2.216 17.732-2.216 36.572 0 62.616 26.044t26.044 62.616-26.044 62.616-62.616 26.044zM372.364 374.856v-88.658h390.096v88.658h-390.096zM372.364 250.736v-88.658q0-14.408 9.42-24.934t22.718-10.528h325.818q13.298 0 22.72 10.528t9.42 24.934v88.658h-390.096zM301.438 91.152q-14.406 0-24.936-10.528t-10.528-24.934 10.528-24.934 24.936-10.528 24.936 10.528 10.528 24.934-10.528 24.934-24.936 10.528zM833.384 91.152q-14.408 0-24.934-10.528t-10.528-24.934 10.528-24.934 24.934-10.528 24.934 10.528 10.528 24.934-10.528 24.934-24.934 10.528z" horiz-adv-x="1136" />
<glyph unicode="&#xe303;" d="M195.048 640.832c-29.254 0-53.194-23.94-53.194-53.196v-35.462c0-29.254-23.942-53.194-53.194-53.194h-35.464c-29.254 0-53.196-23.94-53.196-53.194v-106.39c0-29.264 23.94-53.196 53.196-53.196h35.464c29.254 0 53.194-23.932 53.194-53.196v-35.462c0-29.264 23.94-53.196 53.194-53.196h886.58c29.262 0 53.194 23.932 53.194 53.196v390.096c0 29.254-23.932 53.194-53.194 53.194h-877.16z" horiz-adv-x="1136" />
<glyph unicode="&#xe304;" d="M992.97 852.502h-319.168q-15.514 0-26.596-12.19l-39.896-44.33-13.298-15.514v-759.134q66.494 50.978 150.718 50.978h248.242q14.408 0 24.934 10.528t10.528 24.934v709.264q0 15.514-10.528 25.49t-24.934 9.974zM487.62 840.312q-11.082 12.19-26.596 12.19h-319.168q-14.406 0-24.936-9.974t-10.528-25.49v-709.264q0-14.408 10.528-24.934t24.936-10.528h248.242q84.226 0 150.72-50.978v759.134l-13.298 15.514zM992.97 960h-319.168q-64.278 0-106.39-47.654-42.114 47.654-106.39 47.654h-319.168q-58.736 0-100.294-41.558t-41.558-100.294v-709.264q0-58.736 41.558-100.294t100.294-41.558h248.242q58.736 0 100.294-41.558t41.558-100.294h70.926q0 58.736 41.558 100.294t100.294 41.558h248.242q58.736 0 100.294 41.558t41.558 100.294v709.264q0 58.736-41.558 100.294t-100.294 41.558zM1081.628 107.774q0-36.572-26.042-62.616t-62.616-26.044h-248.242q-57.628 0-105.836-31.030t-71.48-82.010q-23.274 50.978-71.48 82.010t-105.834 31.030h-248.242q-36.57 0-62.616 26.044t-26.042 62.616v709.264q0 36.572 26.042 62.616t62.616 26.044h319.168q39.896 0 66.494-29.922l39.896-45.438 39.896 45.438q26.596 29.922 66.494 29.922h319.168q36.57 0 62.616-26.044t26.042-62.616v-709.264z" horiz-adv-x="1136" />
<glyph unicode="&#xe305;" d="M567.41 523.358q-84.226 0-144.068-59.844t-59.844-144.068 59.844-144.068 144.068-59.844 144.068 59.844 59.844 144.068-59.844 144.068-144.068 59.844zM1063.896 640.832h-165.126q-28.814 0-56.52 19.948t-36.572 47.654l-26.596 77.576q-8.866 27.706-36.572 47.654t-56.52 19.948h-237.16q-28.814 0-56.52-19.948t-36.572-47.654l-26.596-77.576q-8.866-27.706-36.572-47.654t-56.52-19.948h-165.126q-28.814 0-49.87-21.056t-21.056-49.87v-567.41q0-28.814 21.056-49.87t49.87-21.056h992.97q28.814 0 49.87 21.056t21.056 49.87v567.41q0 28.814-21.056 49.87t-49.87 21.056zM567.41 62.338q-106.39 0-181.75 75.36t-75.358 181.75 75.358 181.75 181.75 75.36 181.75-75.36 75.36-181.75-75.36-181.75-181.75-75.36z" horiz-adv-x="1136" />
<glyph unicode="&#xe306;" d="M1017.35 726.164h-752.486q-28.814 0-46.546-20.502t-13.3-49.316l62.062-418.908q4.432-28.814 28.814-49.316t53.194-20.502h387.88q28.814 0 59.29 18.84t42.668 44.328l217.212 432.208q13.298 26.596 1.662 44.882t-40.45 18.286zM130.216 870.234q-34.908 0-59.29-24.382t-24.382-58.736 24.382-59.29 59.29-24.934 59.29 24.934 24.382 59.29-24.382 58.736-59.29 24.38zM807.342 127.722q-43.774 0-74.804-31.584t-31.030-75.36 31.030-74.806 74.806-31.030 75.36 31.030 31.584 74.806-31.584 75.36-75.36 31.584zM360.726 127.722q-43.774 0-75.358-31.584t-31.584-75.36 31.584-74.806 75.358-31.030 74.806 31.030 31.030 74.806-31.030 75.36-74.806 31.584z" horiz-adv-x="1136" />
<glyph unicode="&#xe307;" d="M567.41 960q-154.044 0-284.814-75.914t-206.684-206.684-75.912-284.814 75.912-284.814 206.684-206.684 284.814-75.914 284.814 75.914 206.684 206.684 75.914 284.814-75.914 284.814-206.684 206.684-284.814 75.914zM585.144 782.684h17.732q7.758 0 12.746-4.986t4.986-12.746v-407.826q0-7.758-4.986-12.746t-12.746-4.986h-319.168q-7.758 0-12.746 4.986t-4.988 12.746v17.732q0 7.758 4.988 12.746t12.746 4.986h265.974q7.758 0 12.746 4.986t4.986 12.746v354.632q0 7.758 4.986 12.744t12.746 4.988z" horiz-adv-x="1136" />
<glyph unicode="&#xe308;" d="M691.532 818.146q-22.164 0-32.692-14.962t-3.88-36.016l2.216-4.432q6.65-21.056 19.394-36.016t23.826-14.962 23.826 14.962 19.394 36.016l2.216 4.432q6.65 21.056-3.88 36.016t-32.692 14.962h-17.732zM585.144 676.294q-22.164 0-32.692-14.962t-3.88-36.016l2.216-4.432q6.65-21.056 19.394-36.018t23.826-14.962 23.826 14.962 19.394 36.018l2.216 4.432q6.65 21.056-3.88 36.016t-32.692 14.962h-17.732zM354.632 534.442q-22.166 0-34.908-15.514t-8.312-36.572l86.442-463.238q4.432-21.056 22.718-36.572t40.45-15.514h212.778q22.164 0 40.45 15.514t22.72 36.572l86.442 463.238q4.432 21.056-8.312 36.57t-34.908 15.514h-425.558z" horiz-adv-x="1136" />
<glyph unicode="&#xe309;" d="M594.010 751.654v190.616q0 7.758-4.986 12.746t-12.746 4.986h-17.732q-7.758 0-12.746-4.986t-4.986-12.746v-208.346h53.196v17.732zM953.074 733.922h-359.064v-488.726q0-8.866 5.542-8.866 3.326 0 6.65 3.326l111.932 111.932q4.432 5.542 12.19 5.542t12.19-5.542l13.298-12.19q12.19-13.298 0-25.49l-176.208-175.1q-4.432-5.542-12.19-5.542t-12.19 5.542l-176.208 175.1q-12.19 12.19 0 25.49l13.298 12.19q4.432 5.542 12.19 5.542t12.19-5.542l111.932-111.932q3.326-3.326 6.65-3.326 5.542 0 5.542 8.866v488.726h-359.064q-7.758 0-12.746-4.986t-4.986-12.746v-873.28q0-7.758 4.986-12.744t12.746-4.988h771.326q7.758 0 12.746 4.988t4.986 12.744v873.28q0 7.758-4.986 12.746t-12.746 4.986z" horiz-adv-x="1136" />
<glyph unicode="&#xe30a;" d="M1018.458 914.562l-47.654-47.654 70.926-70.926 47.654 47.654zM941.99 838.096l-161.8-161.802h53.196q7.758 0 12.746-4.986t4.986-12.746v-53.194l161.802 161.8zM851.116 605.368l-323.602-323.602-101.956-31.030 31.030 101.956 323.602 323.602h-762.458q-7.758 0-12.744-4.988t-4.988-12.744v-815.654q0-7.758 4.988-12.744t12.744-4.988h815.654q7.758 0 12.746 4.988t4.986 12.744v762.458z" horiz-adv-x="1136" />
<glyph unicode="&#xe30b;" d="M230.51 960q-7.758 0-12.746-4.986t-4.986-12.746v-141.854h762.458v-762.458h141.852q7.758 0 12.744 4.986t4.988 12.746v886.58q0 7.758-4.988 12.746t-12.744 4.986h-886.58zM17.732 747.222q-7.758 0-12.744-4.986t-4.988-12.746v-886.58q0-7.758 4.988-12.744t12.744-4.988h886.58q7.758 0 12.746 4.988t4.986 12.744v886.58q0 7.758-4.986 12.746t-12.746 4.986h-886.58zM461.022 613.126l80.9-249.35h262.65l-211.67-155.152 80.9-249.35-212.778 154.044-212.778-154.044 80.9 249.35-211.67 155.152h262.65z" horiz-adv-x="1136" />
<glyph unicode="&#xe30c;" d="M567.41 932.294l-134.096-412.26h-433.316l350.2-254.892-132.986-412.26 350.198 253.784 350.198-253.784-132.986 412.26 350.198 254.892h-433.316z" horiz-adv-x="1136" />
<glyph unicode="&#xe30d;" d="M216.104 742.788q-74.252 0-117.472-21.056-41.004-21.056-40.45-64.83t41.558-84.778l441.074-441.074q42.114-41.004 82.010-63.168t55.412-12.19 11.636 55.966-23.826 101.404l-123.014 325.818q-19.948 55.412-74.25 107.498t-109.714 70.926l-26.596 8.866q-52.086 16.624-116.364 16.624zM932.572 600.934q-62.616 0-108.606-14.962t-90.32-43.222-59.844-52.086-14.962-72.036 16.624-91.984 60.952-48.762 90.32 30.476l196.156 152.936q46.546 36.57 49.87 73.142t-37.126 51.532-103.066 14.962zM456.588 126.616q-21.056-1.108-33.248-19.948t-11.082-37.68 14.406-27.706 32.692-7.202 33.8 13.298 13.298 30.476-16.622 34.356q-14.406 14.408-33.248 14.408z" horiz-adv-x="1136" />
<glyph unicode="&#xe30e;" d="M567.41 64.554l567.41 328.034-567.41 328.036v-656.068zM567.41 392.59l-567.41 328.034v-656.068z" horiz-adv-x="1136" />
<glyph unicode="&#xe30f;" d="M567.41 960q-52.086 0-101.956-8.866v-108.606q-76.468-17.732-144.068-59.844l-76.468 76.468q-42.112-28.814-78.684-65.384t-65.386-78.684l76.468-76.468q-42.112-67.602-59.844-144.068h-108.606q-8.866-49.87-8.866-101.956t8.866-101.956h108.606q17.732-76.468 59.844-144.068l-76.468-76.468q28.814-42.112 65.386-78.684t78.684-65.386l76.468 76.468q67.602-42.112 144.068-59.844v-108.606q49.87-8.866 101.956-8.866t101.956 8.866v108.606q76.468 17.732 144.068 59.844l76.468-76.468q42.112 28.814 78.684 65.384t65.386 78.684l-76.468 76.468q42.112 67.602 59.844 144.068h108.606q8.866 49.87 8.866 101.956t-8.866 101.956h-108.606q-17.732 76.468-59.844 144.068l76.468 76.468q-28.814 42.114-65.384 78.684t-78.684 65.384l-76.468-76.468q-67.602 42.112-144.068 59.844v108.606q-49.87 8.866-101.956 8.866zM567.41 578.77q76.468 0 131.324-54.856t54.856-131.326-54.856-131.326-131.326-54.856-131.324 54.856-54.858 131.326 54.856 131.326 131.326 54.856z" horiz-adv-x="1136" />
<glyph unicode="&#xe310;" d="M567.41 853.61q-190.616 0-325.818-135.204t-135.204-325.818 135.204-325.818 325.818-135.202 325.818 135.202 135.204 325.818-135.202 325.818-325.818 135.202zM711.48 728.38q98.632-42.112 159.584-133.54t60.952-202.25q0-137.42-89.212-239.378t-222.2-121.904q19.948 60.952 62.616 118.026t88.104 70.372q24.38 18.84 34.908 39.342t9.974 36.572-2.77 34.908q-6.65 11.082-29.922 25.49t-59.29 37.126-63.722 45.99q-21.056 5.542-40.45 1.108t-38.788-3.88-27.152 11.636q-5.542 5.54-18.84 15.514t-25.488 18.286-23.274 19.948-11.082 21.61 9.974 22.166q12.19 13.298 31.584 18.286t34.356 6.096 30.476 14.408 23.274 41.004q8.866 27.706 22.72 40.45t24.934 12.744 28.26-3.324 21.61-3.324q13.298 0 16.624 18.84t-7.758 37.68zM311.412 651.914q89.766-161.8 165.126-183.966 28.814-7.758 47.654-17.178t24.38-14.962 12.19-14.962 8.866-12.746q3.326-3.326 1.662-14.962t-5.542-22.72-0.554-31.584 15.514-42.668q6.65-9.974 17.732-14.962t17.732-12.746 11.082-26.596q3.326-17.732-12.746-103.066t-8.312-109.714q-19.948-1.108-38.788-1.108-98.632 0-182.856 48.762t-132.986 132.986-48.762 182.856q0 75.358 28.26 142.408t80.346 116.918z" horiz-adv-x="1136" />
<glyph unicode="&#xe311;" d="M567.41 853.61q-190.616 0-325.818-135.204t-135.204-325.818 135.204-325.818 325.818-135.202 325.818 135.202 135.204 325.818-135.202 325.818-325.818 135.202zM521.974 784.9q88.658 0 162.908-35.462 21.056-8.866 29.922-28.26t4.432-34.356-16.624-14.962q-4.432 0-21.61 3.324t-28.26 3.326-24.934-12.746-22.72-40.45q-7.758-27.706-23.274-41.004t-30.476-14.406-34.356-6.096-31.584-18.286q-9.974-12.19-9.974-22.164t11.082-21.61 23.274-19.948 25.49-18.286 18.84-15.516q7.758-11.082 27.152-11.636t38.788 3.88 40.45-1.108q27.706-23.274 63.722-45.99t59.29-37.126 29.922-25.49q2.216-18.84 2.77-34.908t-9.974-36.572-34.908-39.342q-48.762-14.408-93.644-77.576t-61.506-126.338q-13.298 5.542-12.746 37.68t7.202 65.938 12.746 70.926 3.88 51.532q-4.432 18.84-11.082 26.596t-17.732 12.746-17.732 14.962q-12.19 22.164-15.514 42.668t0.554 31.584 5.542 22.72-1.662 14.962q-2.216 3.326-8.866 12.746t-12.19 14.962-24.38 14.962-47.654 17.178q-77.576 22.166-175.1 201.698-2.216 4.432-4.432 6.65-17.732 34.356 32.692 65.938t133.54 40.45q31.030 2.216 58.736 2.216z" horiz-adv-x="1136" />
<glyph unicode="&#xe312;" d="M567.41 952.242q-7.758 0-12.19-4.432l-543.030-543.030q-12.19-12.19 0-24.38l13.298-13.298q4.432-4.432 12.19-4.432t12.19 4.432l56.518 56.52v-580.71q0-7.758 4.986-12.744t12.746-4.988h886.58q7.758 0 12.746 4.988t4.988 12.744v580.71l56.52-56.52q4.432-4.432 12.19-4.432t12.19 4.432l13.298 13.298q12.19 12.19 0 24.38l-543.030 543.030q-4.432 4.432-12.19 4.432zM443.29 301.714h248.242q7.758 0 12.746-5.542t4.986-12.19v-405.61h-283.706v405.61q0 6.65 4.988 12.19t12.746 5.542z" horiz-adv-x="1136" />
<glyph unicode="&#xe313;" d="M567.41 960q-154.044 0-284.814-75.914t-206.684-206.684-75.912-284.814 75.912-284.814 206.684-206.684 284.814-75.914 284.814 75.914 206.684 206.684 75.914 284.814-75.914 284.814-206.684 206.684-284.814 75.914zM567.41 764.952q22.164 0 38.788-16.624t16.624-39.896q0-22.164-16.068-38.234t-38.788-16.070-39.342 16.622-16.624 38.788 16.624 38.788 38.788 16.624zM615.066 543.308v-446.616q0-16.624 7.758-23.274 11.082-9.974 28.814-9.974h52.086v-36.572h-262.65v36.572h48.762q21.056 0 31.584 10.528t10.528 31.584v339.118q0 27.706-16.068 42.112t-47.1 14.406h-37.68v36.572z" horiz-adv-x="1136" />
<glyph unicode="&#xe314;" d="M910.408 960q-71.48 0-121.35-50.424t-49.87-121.35q0-32.14 11.082-60.952l-392.312-227.186q-52.086 64.278-132.986 64.278-70.926 0-121.35-50.424t-50.424-121.352 50.424-121.35 121.35-50.424q80.9 0 132.986 64.278l392.312-227.186q-11.082-28.814-11.082-60.952 0-70.926 49.87-121.352t121.35-50.424 121.35 50.424 49.87 121.35-49.87 120.798-121.904 49.87q-80.9 0-132.986-63.168l-392.312 226.078q11.082 29.922 11.082 62.062t-11.082 62.060l392.312 226.078q52.086-63.168 132.986-63.168 72.034 0 121.904 49.87t49.87 120.798-49.87 121.35-121.35 50.424z" horiz-adv-x="1136" />
<glyph unicode="&#xe315;" d="M283.706 498.978q-44.33 0-75.358-31.030t-31.030-75.36 31.030-75.36 75.358-31.030 75.358 31.030 31.030 75.36-31.030 75.358-75.358 31.030zM567.41 498.978q-44.328 0-75.358-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.358-75.36 31.030zM851.116 498.978q-44.328 0-75.36-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.358-75.36 31.030z" horiz-adv-x="1136" />
<glyph unicode="&#xe316;" d="M567.41 818.146q-44.328 0-75.358-31.030t-31.030-75.358 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.358-75.36 31.030zM567.41 498.978q-44.328 0-75.358-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.358-75.36 31.030zM567.41 179.81q-44.328 0-75.358-31.030t-31.030-75.36 31.030-75.36 75.36-31.030 75.36 31.030 31.030 75.36-31.030 75.36-75.36 31.030z" horiz-adv-x="1136" />
<glyph unicode="&#xe317;" d="M349.092 960q-14.406 0-24.38-9.974l-96.416-96.416q-9.974-11.082-9.974-24.936t9.974-23.826l387.878-387.878q9.974-9.974 9.974-24.38t-9.974-24.38l-387.88-387.88q-9.974-9.974-9.974-23.826t9.974-24.936l96.416-96.416q9.974-9.974 24.382-9.974t24.38 9.974l533.056 533.056q9.974 9.974 9.974 24.38t-9.974 24.38l-533.056 533.056q-9.974 9.974-24.38 9.974z" horiz-adv-x="1136" />
<glyph unicode="&#xe318;" d="M638.338 818.146h212.778v-851.116h-212.778v851.116zM283.706 818.146h212.778v-851.116h-212.778v851.116z" horiz-adv-x="1136" />
<glyph unicode="&#xe319;" d="M571.982 875.948c-14.986 0-30.33-1.49-45.714-1.49-118.692 0-215.274-92.148-215.274-210.84 0-30.314-1.342-60.222 10.908-87.688-6.39-7.758-11.354-17.64-14.512-29.264-5.392-19.848-5.536-44.084-0.346-68.26 4.818-22.43 13.988-43.348 25.766-58.874 7.118-9.388 15.082-16.686 23.55-21.714 12.726-67.434 37.406-126.4 69.99-170.39v-17.836c0-46.178-30.714-64.954-79.342-83.74s-159.88-50.726-237.092-114.702c-51.772-42.894-89.236-113.6-109.922-185.974h1134.13c-20.666 72.49-58.176 143.36-110.026 186.32-77.21 63.976-177.382 95.88-226.010 114.668-48.626 18.786-90.424 37.564-90.424 83.74v17.384c32.744 44.15 57.5 103.4 70.198 171.186 8.048 4.998 15.64 12.092 22.442 21.056 11.778 15.528 20.916 36.442 25.732 58.874 5.168 24.064 5.084 48.22-0.242 68.018-4.082 15.164-11.25 27.434-20.64 35.844 16.662 28.254 17.662 60.322 17.662 93.404 0 101.588-82.654 193.108-184.242 193.108-7.064 0-14.176-0.436-21.23-1.248-14.482 6.76-29.714 8.416-45.368 8.416z" horiz-adv-x="1136" />
<glyph unicode="&#xe31a;" d="M141.854 883.532v-981.888l851.116 490.944z" horiz-adv-x="1136" />
<glyph unicode="&#xe31b;" d="M567.41 958.892v-169.558q-98.632 0-187.844-38.234t-153.49-102.512-102.51-153.488-38.234-187.29 38.234-187.844 102.51-154.044 153.49-102.512 187.844-38.234 187.844 38.234 153.49 102.51 102.51 154.044 38.234 187.29q0 54.302-12.19 106.39l-47.654-27.706q6.65-38.788 6.65-78.684 0-87.55-33.246-167.342-33.246-76.468-92.538-135.758t-135.758-92.538q-79.792-33.248-167.342-33.248t-167.342 33.248q-76.468 33.246-135.758 92.538t-92.538 135.758q-33.246 79.792-33.246 167.342t33.248 167.342q33.248 76.468 92.536 135.758t135.758 92.538q79.792 33.248 167.342 33.248v-175.1l344.658 198.372z" horiz-adv-x="1136" />
<glyph unicode="&#xe31c;" d="M651.082 874.668q-98.078 0-187.29-38.234t-154.044-102.51-102.51-153.49-37.68-187.844h-169.558l199.48-344.658 198.372 344.658h-175.1q0 87.55 33.246 167.342 32.14 76.468 91.984 135.758t136.312 92.538q79.792 33.246 166.788 33.246t166.788-33.248q77.576-33.246 136.866-92.536t91.43-135.758q34.356-79.792 34.356-167.342t-34.356-167.342q-32.14-76.468-91.428-135.758t-136.866-92.538q-79.792-33.246-166.234-33.246-39.896 0-78.684 6.65l-27.706-47.654q52.086-12.19 106.39-12.19 97.524 0 186.736 38.234t154.044 102.51 103.066 153.49 38.234 187.844-38.234 187.844-103.066 153.488-154.044 102.512-187.29 38.234z" horiz-adv-x="1136" />
<glyph unicode="&#xe31d;" d="M567.41 64.554l-567.41 328.034 567.41 328.036v-656.068zM567.41 392.59l567.41 328.034v-656.068z" horiz-adv-x="1136" />
<glyph unicode="&#xe31e;" d="M425.558 960q-176.208 0-300.882-124.674t-124.674-300.884 124.674-300.884 300.882-124.674 300.884 124.674 124.674 300.884-124.674 300.882-300.882 124.674zM812.328 213.056l-65.384-65.384 322.494-322.494 65.384 65.384z" horiz-adv-x="1136" />
<glyph unicode="&#xe31f;" d="M141.854 818.146v-851.116h851.116v851.116h-851.116z" horiz-adv-x="1136" />
<glyph unicode="&#xe320;" d="M1117.090 960h-886.58q-7.758 0-12.746-4.986t-4.986-12.746v-141.854h762.458v-762.458h141.854q7.758 0 12.744 4.986t4.988 12.746v886.58q0 7.758-4.988 12.746t-12.744 4.986zM904.312 747.222h-886.58q-7.758 0-12.744-4.986t-4.988-12.746v-886.58q0-7.758 4.988-12.744t12.744-4.988h886.58q7.758 0 12.746 4.988t4.986 12.744v886.58q0 7.758-4.986 12.746t-12.746 4.986z" horiz-adv-x="1136" />
<glyph unicode="&#xe321;" d="M457.698 909.022q-28.814 0-49.87-21.056t-21.056-49.87v-70.926h-244.918v-53.196h75.358l60.952-817.87q2.216-29.922 24.936-50.424t51.532-20.502h425.558q28.814 0 51.532 20.502t24.934 50.424l52.086 714.804 7.758 85.332 1.108 17.732h75.36v53.196h-246.026v70.926q0 28.814-21.056 49.87t-49.87 21.056h-218.32zM424.45 625.316h1.108q6.65 0 11.636-4.988t6.096-11.636l17.732-622.824q1.108-7.758-3.88-12.746t-12.746-6.096h-18.84q-6.65 0-11.636 4.986t-6.096 11.636l-17.732 622.822q-1.108 7.758 3.88 12.746t12.746 6.096h17.732zM709.264 625.316h18.84q7.758-1.108 12.746-6.096t3.88-12.746l-17.732-622.822q-1.108-6.65-6.096-11.636t-11.636-4.986h-18.84q-7.758 1.108-12.746 6.096t-3.88 12.746l17.732 622.822q1.108 6.65 6.096 11.636t11.636 4.986zM558.544 625.316h17.732q7.758 0 12.746-4.988t4.986-12.746v-622.822q0-7.758-4.986-12.746t-12.746-4.986h-17.732q-7.758 0-12.746 4.986t-4.986 12.746v622.822q0 7.758 4.986 12.746t12.746 4.988z" horiz-adv-x="1136" />
<glyph unicode="&#xe322;" d="M568.52 843.636l-567.41-328.034 567.41-326.926v169.558q193.938 0 345.212-117.472t201.144-299.222h19.948v170.668q0 115.254-44.884 219.984t-120.798 180.64-180.64 121.35-219.984 45.438v164.016z" horiz-adv-x="1136" />
<glyph unicode="&#xe323;" d="M567.41 843.636l567.41-328.034-567.41-326.926v169.558q-193.938 0-345.212-117.472t-201.144-299.222h-19.948v170.668q0 115.254 44.884 219.984t120.796 180.64 180.642 121.35 219.984 45.438v164.016z" horiz-adv-x="1136" />
<glyph unicode="&#xe324;" d="M964.156 767.168l-53.196-29.922q50.978-60.952 82.010-134.096 42.112-100.848 42.112-210.562t-42.114-210.562q-31.030-73.144-82.010-134.096l53.196-29.922q130.772 164.018 130.772 374.58t-130.77 374.58zM536.38 720.624l-321.384-186.182h-175.1v-283.706h175.1l321.384-186.182v656.068zM804.572 676.294l-53.196-31.030q103.066-105.282 103.066-252.676t-103.066-252.674l53.196-31.030q110.822 120.798 110.822 283.706t-110.822 283.706zM642.77 582.096l-58.736-33.248q42.112-24.38 66.494-65.938t24.38-90.32-24.38-90.32-66.494-65.938l58.736-33.246q42.114 33.246 67.048 83.116t24.934 106.39-24.934 106.39-67.048 83.116z" horiz-adv-x="1136" />
<glyph unicode="&#xe325;" d="M0 562.146l103.064-103.064q94.2 94.198 217.212 143.514t247.134 49.316 247.134-49.316 217.212-143.514l103.066 103.064q-115.254 115.256-265.42 175.1t-301.99 59.844-301.99-59.844-265.42-175.1zM205.022 356.018l103.064-101.956q53.194 52.086 121.35 79.792t137.974 27.706 137.974-27.706 121.35-79.792l103.064 101.956q-74.25 74.25-170.114 112.486t-192.278 38.234-192.276-38.234-170.112-112.486zM411.152 150.996l156.26-156.26 156.26 156.26q-64.278 64.278-156.26 64.278t-156.26-64.278z" horiz-adv-x="1136" />
<glyph unicode="&#xe326;" d="M955.29 958.892h-5.542q-73.144-1.108-162.356-37.126t-164.016-86.442-139.082-101.404-100.848-86.442l-36.57-35.464q-7.758-6.65-19.948-19.394t-48.208-53.196-68.156-82.008-72.034-100.294-68.71-113.592-48.762-118.026-21.056-116.364q-1.108-26.596 8.866-33.246l201.698-149.61q3.324-1.108 7.758-1.108 13.3 0 22.164 8.866 1.108 2.216 2.216 3.326l161.8 238.268q12.19 18.84 2.216 37.68l-69.818 139.636q-8.866 18.84 2.216 37.68 42.112 66.494 152.936 177.316 49.87 48.762 94.2 86.996t63.168 52.64l19.948 13.298q8.866 5.542 21.056 5.542 9.974 0 16.624-3.324l139.636-69.818q6.65-3.326 15.514-3.326 13.298 0 22.164 5.54l238.268 161.802q1.108 1.108 3.326 2.216 13.298 13.298 7.758 29.922l-149.61 201.698q-5.542 7.758-28.814 7.758z" horiz-adv-x="1136" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 365 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 382 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 360 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 390 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 B

View File

@@ -0,0 +1,55 @@
const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
entry: [
path.resolve(__dirname, 'app/main.js'),
path.resolve(__dirname, 'app/stylesheets/main.scss'),
],
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'dist.js'
},
module: {
rules: [
{
test: /\.s[ac]ss$/i,
exclude: /node_modules/,
use: [
MiniCssExtractPlugin.loader,
"css-loader",
{
loader: "sass-loader"
},
],
},
{
test: /\.js[x]?$/,
include: [
path.resolve(__dirname, 'app'),
path.resolve(__dirname, 'node_modules/@standardnotes/component-relay/dist/dist.js')
],
exclude: /node_modules/,
use: ['babel-loader']
}
]
},
resolve: {
extensions: ['.js', '.jsx', '.css', '.scss'],
alias: {
stylekit: path.join(__dirname, 'node_modules/sn-stylekit/dist/stylekit.css')
}
},
plugins: [
new MiniCssExtractPlugin({
filename: './dist.css'
}),
new CopyWebpackPlugin({
patterns: [
{ from: './app/index.html', to: 'index.html' },
{ from: 'vendor', to: 'vendor' },
]
})
]
};

View File

@@ -0,0 +1,20 @@
const path = require('path');
const { merge } = require('webpack-merge');
const config = require('./webpack.config.js');
module.exports = merge(config, {
mode: 'development',
devtool: 'cheap-source-map',
devServer: {
port: 8001,
contentBase: path.resolve(__dirname, 'dist'),
disableHostCheck: true,
historyApiFallback: true,
watchOptions: { aggregateTimeout: 300, poll: 1000 },
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, PATCH, OPTIONS',
'Access-Control-Allow-Headers': 'X-Requested-With, content-type, Authorization'
}
},
});

View File

@@ -0,0 +1,19 @@
const { merge } = require('webpack-merge');
const config = require('./webpack.config.js');
const TerserPlugin = require("terser-webpack-plugin");
module.exports = merge(config, {
mode: 'production',
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
compress: {
warnings: false
}
}
})
]
}
});