Version Description
Download this release
Release Info
Developer | justinbusa |
Plugin | WordPress Page Builder – Beaver Builder |
Version | 1.4.3 |
Comparing to | |
See all releases |
Code changes from version 1.4.2 to 1.4.3
- changelog.txt +21 -0
- classes/FLBuilder.php +14 -0
- classes/FLBuilderIcons.php +102 -0
- classes/FLBuilderModel.php +23 -0
- classes/FLBuilderModule.php +12 -1
- css/fl-builder-layout.css +3 -1
- css/fl-builder-rtl.css +61 -0
- css/fl-builder.css +8 -1
- css/fl-icon-selector.css +2 -1
- css/foundation-icons.css +594 -0
- fl-builder.php +3 -2
- fonts/foundation-icons.eot +0 -0
- fonts/foundation-icons.svg +970 -0
- fonts/foundation-icons.ttf +0 -0
- fonts/foundation-icons.woff +0 -0
- includes/field-form.php +1 -1
- includes/icon-selector.php +13 -34
- includes/js-config.php +1 -0
- includes/updater-config.php +1 -1
- includes/updater/classes/FLUpdater.php +2 -1
- js/fl-builder.js +46 -30
- js/fl-lightbox.js +13 -13
- json/dashicons.json +1 -0
- json/font-awesome.json +1 -4171
- json/foundation-icons.json +1 -0
changelog.txt
CHANGED
@@ -1,3 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<h4>1.4.1</h4>
|
2 |
<p><strong>Enhancements</strong></p>
|
3 |
<ul>
|
1 |
+
<h4>1.4.3</h4>
|
2 |
+
<p><strong>Enhancements</strong></p>
|
3 |
+
<ul>
|
4 |
+
<li>Added Foundation Icons and WordPress Dashicons to the icon selector.</li>
|
5 |
+
<li>Added icons for buttons in the Callout, Call To Action, and Content Slider modules.</li>
|
6 |
+
<li>Added support for right-to-left languages.</li>
|
7 |
+
<li>Read more text can now be customized in posts module.</li>
|
8 |
+
<li>Module ids are now accessible in frontend.php using the $id variable.</li>
|
9 |
+
</ul>
|
10 |
+
<p><strong>Bug Fixes</strong></p>
|
11 |
+
<ul>
|
12 |
+
<li>Fixed a bug with WordPress installs where core files are installed in a subdirectoy and the index file is in the root.</li>
|
13 |
+
</ul>
|
14 |
+
|
15 |
+
<h4>1.4.2</h4>
|
16 |
+
<p><strong>Bug Fixes</strong></p>
|
17 |
+
<ul>
|
18 |
+
<li>Fixes for widgets that load in JavaScripts or forget to reset the loop.</li>
|
19 |
+
<li>Minor adjustments to how data is passed to the server to prevent 406 errors.</li>
|
20 |
+
</ul>
|
21 |
+
|
22 |
<h4>1.4.1</h4>
|
23 |
<p><strong>Enhancements</strong></p>
|
24 |
<ul>
|
classes/FLBuilder.php
CHANGED
@@ -203,6 +203,7 @@ final class FLBuilder {
|
|
203 |
|
204 |
// Register additional CSS
|
205 |
wp_register_style('font-awesome', $css_url . 'font-awesome.min.css', array(), $ver);
|
|
|
206 |
wp_register_style('fl-slideshow', $css_url . 'fl-slideshow.css', array(), $ver);
|
207 |
wp_register_style('jquery-bxslider', $css_url . 'jquery.bxslider.css', array(), $ver);
|
208 |
wp_register_style('jquery-magnificpopup', $css_url . 'jquery.magnificpopup.css', array(), $ver);
|
@@ -274,6 +275,7 @@ final class FLBuilder {
|
|
274 |
// Enqueue required module CSS and JS
|
275 |
foreach($modules as $module) {
|
276 |
|
|
|
277 |
$module->enqueue_scripts();
|
278 |
|
279 |
foreach($module->css as $handle => $props) {
|
@@ -318,7 +320,9 @@ final class FLBuilder {
|
|
318 |
wp_deregister_script('jquery-ui-sortable');
|
319 |
|
320 |
/* Frontend builder styles */
|
|
|
321 |
wp_enqueue_style('font-awesome');
|
|
|
322 |
wp_enqueue_style('jquery-nanoscroller', $css_url . 'jquery.nanoscroller.css', array(), $ver);
|
323 |
wp_enqueue_style('jquery-autosuggest', $css_url . 'jquery.autoSuggest.min.css', array(), $ver);
|
324 |
wp_enqueue_style('jquery-tiptip', $css_url . 'jquery.tiptip.css', array(), $ver);
|
@@ -326,6 +330,11 @@ final class FLBuilder {
|
|
326 |
wp_enqueue_style('fl-lightbox', $css_url . 'fl-lightbox.css', array(), $ver);
|
327 |
wp_enqueue_style('fl-icon-selector', $css_url . 'fl-icon-selector.css', array(), $ver);
|
328 |
wp_enqueue_style('fl-builder', $css_url . 'fl-builder.css', array(), $ver);
|
|
|
|
|
|
|
|
|
|
|
329 |
|
330 |
/* Frontend builder scripts */
|
331 |
wp_enqueue_media();
|
@@ -809,6 +818,8 @@ final class FLBuilder {
|
|
809 |
*/
|
810 |
static public function render_icon_selector()
|
811 |
{
|
|
|
|
|
812 |
include FL_BUILDER_DIR . 'includes/icon-selector.php';
|
813 |
|
814 |
if(defined('DOING_AJAX')) {
|
@@ -1096,6 +1107,9 @@ final class FLBuilder {
|
|
1096 |
$class = get_class(FLBuilderModel::$modules[$type]);
|
1097 |
$module = new $class();
|
1098 |
$module->settings = $settings;
|
|
|
|
|
|
|
1099 |
|
1100 |
include $module->dir .'includes/frontend.php';
|
1101 |
}
|
203 |
|
204 |
// Register additional CSS
|
205 |
wp_register_style('font-awesome', $css_url . 'font-awesome.min.css', array(), $ver);
|
206 |
+
wp_register_style('foundation-icons', $css_url . 'foundation-icons.css', array(), $ver);
|
207 |
wp_register_style('fl-slideshow', $css_url . 'fl-slideshow.css', array(), $ver);
|
208 |
wp_register_style('jquery-bxslider', $css_url . 'jquery.bxslider.css', array(), $ver);
|
209 |
wp_register_style('jquery-magnificpopup', $css_url . 'jquery.magnificpopup.css', array(), $ver);
|
275 |
// Enqueue required module CSS and JS
|
276 |
foreach($modules as $module) {
|
277 |
|
278 |
+
$module->enqueue_icon_styles();
|
279 |
$module->enqueue_scripts();
|
280 |
|
281 |
foreach($module->css as $handle => $props) {
|
320 |
wp_deregister_script('jquery-ui-sortable');
|
321 |
|
322 |
/* Frontend builder styles */
|
323 |
+
wp_enqueue_style('dashicons');
|
324 |
wp_enqueue_style('font-awesome');
|
325 |
+
wp_enqueue_style('foundation-icons');
|
326 |
wp_enqueue_style('jquery-nanoscroller', $css_url . 'jquery.nanoscroller.css', array(), $ver);
|
327 |
wp_enqueue_style('jquery-autosuggest', $css_url . 'jquery.autoSuggest.min.css', array(), $ver);
|
328 |
wp_enqueue_style('jquery-tiptip', $css_url . 'jquery.tiptip.css', array(), $ver);
|
330 |
wp_enqueue_style('fl-lightbox', $css_url . 'fl-lightbox.css', array(), $ver);
|
331 |
wp_enqueue_style('fl-icon-selector', $css_url . 'fl-icon-selector.css', array(), $ver);
|
332 |
wp_enqueue_style('fl-builder', $css_url . 'fl-builder.css', array(), $ver);
|
333 |
+
|
334 |
+
/* RTL Support */
|
335 |
+
if(is_rtl()) {
|
336 |
+
wp_enqueue_style('fl-builder-rtl', $css_url . 'fl-builder-rtl.css', array(), $ver);
|
337 |
+
}
|
338 |
|
339 |
/* Frontend builder scripts */
|
340 |
wp_enqueue_media();
|
818 |
*/
|
819 |
static public function render_icon_selector()
|
820 |
{
|
821 |
+
$icon_sets = FLBuilderIcons::get_sets();
|
822 |
+
|
823 |
include FL_BUILDER_DIR . 'includes/icon-selector.php';
|
824 |
|
825 |
if(defined('DOING_AJAX')) {
|
1107 |
$class = get_class(FLBuilderModel::$modules[$type]);
|
1108 |
$module = new $class();
|
1109 |
$module->settings = $settings;
|
1110 |
+
|
1111 |
+
// Shorthand reference to the module's id.
|
1112 |
+
$id = $module->node;
|
1113 |
|
1114 |
include $module->dir .'includes/frontend.php';
|
1115 |
}
|
classes/FLBuilderIcons.php
ADDED
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Helper class for working with icons.
|
5 |
+
*
|
6 |
+
* @class FLBuilderIcons
|
7 |
+
*/
|
8 |
+
|
9 |
+
final class FLBuilderIcons {
|
10 |
+
|
11 |
+
/**
|
12 |
+
* @property $sets
|
13 |
+
* @private
|
14 |
+
*/
|
15 |
+
static private $sets = null;
|
16 |
+
|
17 |
+
/**
|
18 |
+
* @method get_sets
|
19 |
+
*/
|
20 |
+
static public function get_sets()
|
21 |
+
{
|
22 |
+
if ( self::$sets ) {
|
23 |
+
return self::$sets;
|
24 |
+
}
|
25 |
+
|
26 |
+
self::$sets = array(
|
27 |
+
'font-awesome' => array(
|
28 |
+
'name' => 'Font Awesome',
|
29 |
+
'prefix' => 'fa'
|
30 |
+
),
|
31 |
+
'foundation-icons' => array(
|
32 |
+
'name' => 'Foundation Icons',
|
33 |
+
'prefix' => ''
|
34 |
+
),
|
35 |
+
'dashicons' => array(
|
36 |
+
'name' => 'WordPress Dashicons',
|
37 |
+
'prefix' => 'dashicons dashicons-before'
|
38 |
+
)
|
39 |
+
);
|
40 |
+
|
41 |
+
foreach ( self::$sets as $set_key => $set_data ) {
|
42 |
+
$icons = json_decode( file_get_contents( FL_BUILDER_DIR . 'json/' . $set_key . '.json' ) );
|
43 |
+
self::$sets[ $set_key ]['icons'] = $icons;
|
44 |
+
}
|
45 |
+
|
46 |
+
return self::$sets;
|
47 |
+
}
|
48 |
+
|
49 |
+
/**
|
50 |
+
* @method enqueue_styles_for_module
|
51 |
+
*/
|
52 |
+
static public function enqueue_styles_for_module( $module )
|
53 |
+
{
|
54 |
+
$fields = FLBuilderModel::get_settings_form_fields( $module->form );
|
55 |
+
|
56 |
+
foreach ( $fields as $name => $field ) {
|
57 |
+
if ( isset( $field['multiple'] ) && true === $field['multiple'] ) {
|
58 |
+
$form = FLBuilderModel::$settings_forms[ $field['form'] ];
|
59 |
+
self::enqueue_styles_for_module_multiple( $module, $form['tabs'], $name );
|
60 |
+
}
|
61 |
+
else if ( $field['type'] == 'icon' && isset( $module->settings->$name ) ) {
|
62 |
+
self::enqueue_styles_for_icon( $module->settings->$name );
|
63 |
+
}
|
64 |
+
}
|
65 |
+
}
|
66 |
+
|
67 |
+
/**
|
68 |
+
* @method enqueue_styles_for_module_multiple
|
69 |
+
* @private
|
70 |
+
*/
|
71 |
+
static private function enqueue_styles_for_module_multiple( $module, $form, $setting )
|
72 |
+
{
|
73 |
+
$fields = FLBuilderModel::get_settings_form_fields( $form );
|
74 |
+
|
75 |
+
foreach ( $fields as $name => $field ) {
|
76 |
+
if ( $field['type'] == 'icon' ) {
|
77 |
+
foreach ( $module->settings->$setting as $key => $val ) {
|
78 |
+
if ( isset( $val->$name ) ) {
|
79 |
+
self::enqueue_styles_for_icon( $val->$name );
|
80 |
+
}
|
81 |
+
}
|
82 |
+
}
|
83 |
+
}
|
84 |
+
}
|
85 |
+
|
86 |
+
/**
|
87 |
+
* @method enqueue_styles_for_icon
|
88 |
+
* @private
|
89 |
+
*/
|
90 |
+
static private function enqueue_styles_for_icon( $icon )
|
91 |
+
{
|
92 |
+
if ( stristr( $icon, 'fa-' ) ) {
|
93 |
+
wp_enqueue_style( 'font-awesome' );
|
94 |
+
}
|
95 |
+
else if ( stristr( $icon, 'fi-' ) ) {
|
96 |
+
wp_enqueue_style( 'foundation-icons' );
|
97 |
+
}
|
98 |
+
else if ( stristr( $icon, 'dashicon' ) ) {
|
99 |
+
wp_enqueue_style( 'dashicons' );
|
100 |
+
}
|
101 |
+
}
|
102 |
+
}
|
classes/FLBuilderModel.php
CHANGED
@@ -1435,6 +1435,7 @@ final class FLBuilderModel {
|
|
1435 |
$instances[$i]->position = $module->position;
|
1436 |
$instances[$i]->settings = $module->settings;
|
1437 |
$instances[$i]->type = 'module';
|
|
|
1438 |
$i++;
|
1439 |
}
|
1440 |
}
|
@@ -1654,6 +1655,28 @@ final class FLBuilderModel {
|
|
1654 |
self::$settings_forms[$id] = $form;
|
1655 |
}
|
1656 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1657 |
/**
|
1658 |
* @method get_settings_form_defaults
|
1659 |
*/
|
1435 |
$instances[$i]->position = $module->position;
|
1436 |
$instances[$i]->settings = $module->settings;
|
1437 |
$instances[$i]->type = 'module';
|
1438 |
+
$instances[$i]->form = self::$modules[$module->settings->type]->form;
|
1439 |
$i++;
|
1440 |
}
|
1441 |
}
|
1655 |
self::$settings_forms[$id] = $form;
|
1656 |
}
|
1657 |
|
1658 |
+
/**
|
1659 |
+
* @method get_settings_form_fields
|
1660 |
+
*/
|
1661 |
+
static public function get_settings_form_fields($form)
|
1662 |
+
{
|
1663 |
+
$fields = array();
|
1664 |
+
|
1665 |
+
foreach ( $form as $tab ) {
|
1666 |
+
if ( isset( $tab['sections'] ) ) {
|
1667 |
+
foreach ( $tab['sections'] as $section ) {
|
1668 |
+
if ( isset( $section['fields'] ) ) {
|
1669 |
+
foreach ( $section['fields'] as $name => $field ) {
|
1670 |
+
$fields[ $name ] = $field;
|
1671 |
+
}
|
1672 |
+
}
|
1673 |
+
}
|
1674 |
+
}
|
1675 |
+
}
|
1676 |
+
|
1677 |
+
return $fields;
|
1678 |
+
}
|
1679 |
+
|
1680 |
/**
|
1681 |
* @method get_settings_form_defaults
|
1682 |
*/
|
classes/FLBuilderModule.php
CHANGED
@@ -147,7 +147,7 @@ class FLBuilderModule {
|
|
147 |
if(stristr($dir_path, 'wp-content/themes')) {
|
148 |
$parts = explode('/wp-content', str_ireplace($_SERVER['DOCUMENT_ROOT'], '', $dir_path));
|
149 |
$folder = array_shift($parts);
|
150 |
-
$this->url = str_ireplace($_SERVER['DOCUMENT_ROOT'] . $folder,
|
151 |
$this->dir = $dir_path . '/';
|
152 |
}
|
153 |
else {
|
@@ -179,6 +179,17 @@ class FLBuilderModule {
|
|
179 |
$this->js[$handle] = array($src, $deps, $ver, $in_footer);
|
180 |
}
|
181 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
/**
|
183 |
* Should be overridden by child classes to enqueue
|
184 |
* additional css/js using the add_css and add_js methods.
|
147 |
if(stristr($dir_path, 'wp-content/themes')) {
|
148 |
$parts = explode('/wp-content', str_ireplace($_SERVER['DOCUMENT_ROOT'], '', $dir_path));
|
149 |
$folder = array_shift($parts);
|
150 |
+
$this->url = str_ireplace($_SERVER['DOCUMENT_ROOT'] . $folder, site_url(), $dir_path) . '/';
|
151 |
$this->dir = $dir_path . '/';
|
152 |
}
|
153 |
else {
|
179 |
$this->js[$handle] = array($src, $deps, $ver, $in_footer);
|
180 |
}
|
181 |
|
182 |
+
/**
|
183 |
+
* Enqueues the needed styles for any icon fields
|
184 |
+
* in this module.
|
185 |
+
*
|
186 |
+
* @method enqueue_icon_styles
|
187 |
+
*/
|
188 |
+
public function enqueue_icon_styles()
|
189 |
+
{
|
190 |
+
FLBuilderIcons::enqueue_styles_for_module( $this );
|
191 |
+
}
|
192 |
+
|
193 |
/**
|
194 |
* Should be overridden by child classes to enqueue
|
195 |
* additional css/js using the add_css and add_js methods.
|
css/fl-builder-layout.css
CHANGED
@@ -188,10 +188,12 @@
|
|
188 |
.fl-builder-content .fl-button-right {
|
189 |
text-align: right;
|
190 |
}
|
191 |
-
.fl-builder-content .fl-button i
|
192 |
font-size: 1.3em;
|
|
|
193 |
margin-right:8px;
|
194 |
vertical-align: middle;
|
|
|
195 |
}
|
196 |
.fl-builder-content .fl-button-has-icon .fl-button-text {
|
197 |
vertical-align: middle;
|
188 |
.fl-builder-content .fl-button-right {
|
189 |
text-align: right;
|
190 |
}
|
191 |
+
.fl-builder-content .fl-button i {
|
192 |
font-size: 1.3em;
|
193 |
+
height: auto;
|
194 |
margin-right:8px;
|
195 |
vertical-align: middle;
|
196 |
+
width: auto;
|
197 |
}
|
198 |
.fl-builder-content .fl-button-has-icon .fl-button-text {
|
199 |
vertical-align: middle;
|
css/fl-builder-rtl.css
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Wrappers
|
2 |
+
------------------------------------------------------ */
|
3 |
+
|
4 |
+
.fl-builder-bar,
|
5 |
+
.fl-builder-panel,
|
6 |
+
.fl-lightbox {
|
7 |
+
direction: rtl;
|
8 |
+
unicode-bidi: embed;
|
9 |
+
}
|
10 |
+
|
11 |
+
/* Panel
|
12 |
+
------------------------------------------------------ */
|
13 |
+
|
14 |
+
.fl-builder-blocks-section > span i {
|
15 |
+
float: left;
|
16 |
+
}
|
17 |
+
|
18 |
+
/* Template Selector
|
19 |
+
------------------------------------------------------ */
|
20 |
+
|
21 |
+
.fl-user-template-actions {
|
22 |
+
left: 0;
|
23 |
+
right: auto;
|
24 |
+
}
|
25 |
+
|
26 |
+
/* Settings Forms
|
27 |
+
------------------------------------------------------ */
|
28 |
+
|
29 |
+
.fl-lightbox-header .fl-builder-preview-loader {
|
30 |
+
left: 15px;
|
31 |
+
right: auto;
|
32 |
+
}
|
33 |
+
.fl-form-table th {
|
34 |
+
text-align: right !important;
|
35 |
+
}
|
36 |
+
|
37 |
+
/* Icon Fields
|
38 |
+
------------------------------------------------------ */
|
39 |
+
|
40 |
+
.fl-icon-field .fl-icon-preview i {
|
41 |
+
margin: 10px 2px 9px 10px;
|
42 |
+
}
|
43 |
+
|
44 |
+
/* Icon Selector
|
45 |
+
------------------------------------------------------ */
|
46 |
+
|
47 |
+
.fl-icons-filter {
|
48 |
+
left: 10px;
|
49 |
+
right: auto;
|
50 |
+
}
|
51 |
+
.fl-icons-section h2 {
|
52 |
+
text-align: right;
|
53 |
+
}
|
54 |
+
|
55 |
+
/* Tooltips
|
56 |
+
------------------------------------------------------ */
|
57 |
+
|
58 |
+
.fl-help-tooltip-text {
|
59 |
+
left: auto;
|
60 |
+
right: 23px;
|
61 |
+
}
|
css/fl-builder.css
CHANGED
@@ -27,6 +27,14 @@ html.fl-builder-edit {
|
|
27 |
#tiptip_holder {
|
28 |
z-index: 200000;
|
29 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
/* Simple UI
|
32 |
------------------------------------------------------ */
|
@@ -942,7 +950,6 @@ form.fl-builder-settings {
|
|
942 |
}
|
943 |
.fl-icon-field .fl-icon-preview i {
|
944 |
display: inline-block;
|
945 |
-
font-family: FontAwesome;
|
946 |
font-size: 28px;
|
947 |
margin: 10px 10px 9px 2px;
|
948 |
vertical-align: middle;
|
27 |
#tiptip_holder {
|
28 |
z-index: 200000;
|
29 |
}
|
30 |
+
.screen-reader-text{
|
31 |
+
position: absolute;
|
32 |
+
left: -1000em;
|
33 |
+
top: -1000em;
|
34 |
+
height: 1px;
|
35 |
+
width: 1px;
|
36 |
+
overflow: hidden;
|
37 |
+
}
|
38 |
|
39 |
/* Simple UI
|
40 |
------------------------------------------------------ */
|
950 |
}
|
951 |
.fl-icon-field .fl-icon-preview i {
|
952 |
display: inline-block;
|
|
|
953 |
font-size: 28px;
|
954 |
margin: 10px 10px 9px 2px;
|
955 |
vertical-align: middle;
|
css/fl-icon-selector.css
CHANGED
@@ -37,7 +37,8 @@
|
|
37 |
padding: 0 0 10px 0 !important;
|
38 |
text-align: left;
|
39 |
}
|
40 |
-
.fl-icons-list i
|
|
|
41 |
cursor: pointer;
|
42 |
display: inline-block;
|
43 |
font-size: 32px;
|
37 |
padding: 0 0 10px 0 !important;
|
38 |
text-align: left;
|
39 |
}
|
40 |
+
.fl-icons-list i,
|
41 |
+
.fl-icons-list i:before {
|
42 |
cursor: pointer;
|
43 |
display: inline-block;
|
44 |
font-size: 32px;
|
css/foundation-icons.css
ADDED
@@ -0,0 +1,594 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* Foundation Icons v 3.0
|
3 |
+
* Made by ZURB 2013 http://zurb.com/playground/foundation-icon-fonts-3
|
4 |
+
* MIT License
|
5 |
+
*/
|
6 |
+
|
7 |
+
@font-face {
|
8 |
+
font-family: "foundation-icons";
|
9 |
+
src: url("../fonts/foundation-icons.eot");
|
10 |
+
src: url("../fonts/foundation-icons.eot?#iefix") format("embedded-opentype"),
|
11 |
+
url("../fonts/foundation-icons.woff") format("woff"),
|
12 |
+
url("../fonts/foundation-icons.ttf") format("truetype"),
|
13 |
+
url("../fonts/foundation-icons.svg#fontcustom") format("svg");
|
14 |
+
font-weight: normal;
|
15 |
+
font-style: normal;
|
16 |
+
}
|
17 |
+
|
18 |
+
.fi-address-book:before,
|
19 |
+
.fi-alert:before,
|
20 |
+
.fi-align-center:before,
|
21 |
+
.fi-align-justify:before,
|
22 |
+
.fi-align-left:before,
|
23 |
+
.fi-align-right:before,
|
24 |
+
.fi-anchor:before,
|
25 |
+
.fi-annotate:before,
|
26 |
+
.fi-archive:before,
|
27 |
+
.fi-arrow-down:before,
|
28 |
+
.fi-arrow-left:before,
|
29 |
+
.fi-arrow-right:before,
|
30 |
+
.fi-arrow-up:before,
|
31 |
+
.fi-arrows-compress:before,
|
32 |
+
.fi-arrows-expand:before,
|
33 |
+
.fi-arrows-in:before,
|
34 |
+
.fi-arrows-out:before,
|
35 |
+
.fi-asl:before,
|
36 |
+
.fi-asterisk:before,
|
37 |
+
.fi-at-sign:before,
|
38 |
+
.fi-background-color:before,
|
39 |
+
.fi-battery-empty:before,
|
40 |
+
.fi-battery-full:before,
|
41 |
+
.fi-battery-half:before,
|
42 |
+
.fi-bitcoin-circle:before,
|
43 |
+
.fi-bitcoin:before,
|
44 |
+
.fi-blind:before,
|
45 |
+
.fi-bluetooth:before,
|
46 |
+
.fi-bold:before,
|
47 |
+
.fi-book-bookmark:before,
|
48 |
+
.fi-book:before,
|
49 |
+
.fi-bookmark:before,
|
50 |
+
.fi-braille:before,
|
51 |
+
.fi-burst-new:before,
|
52 |
+
.fi-burst-sale:before,
|
53 |
+
.fi-burst:before,
|
54 |
+
.fi-calendar:before,
|
55 |
+
.fi-camera:before,
|
56 |
+
.fi-check:before,
|
57 |
+
.fi-checkbox:before,
|
58 |
+
.fi-clipboard-notes:before,
|
59 |
+
.fi-clipboard-pencil:before,
|
60 |
+
.fi-clipboard:before,
|
61 |
+
.fi-clock:before,
|
62 |
+
.fi-closed-caption:before,
|
63 |
+
.fi-cloud:before,
|
64 |
+
.fi-comment-minus:before,
|
65 |
+
.fi-comment-quotes:before,
|
66 |
+
.fi-comment-video:before,
|
67 |
+
.fi-comment:before,
|
68 |
+
.fi-comments:before,
|
69 |
+
.fi-compass:before,
|
70 |
+
.fi-contrast:before,
|
71 |
+
.fi-credit-card:before,
|
72 |
+
.fi-crop:before,
|
73 |
+
.fi-crown:before,
|
74 |
+
.fi-css3:before,
|
75 |
+
.fi-database:before,
|
76 |
+
.fi-die-five:before,
|
77 |
+
.fi-die-four:before,
|
78 |
+
.fi-die-one:before,
|
79 |
+
.fi-die-six:before,
|
80 |
+
.fi-die-three:before,
|
81 |
+
.fi-die-two:before,
|
82 |
+
.fi-dislike:before,
|
83 |
+
.fi-dollar-bill:before,
|
84 |
+
.fi-dollar:before,
|
85 |
+
.fi-download:before,
|
86 |
+
.fi-eject:before,
|
87 |
+
.fi-elevator:before,
|
88 |
+
.fi-euro:before,
|
89 |
+
.fi-eye:before,
|
90 |
+
.fi-fast-forward:before,
|
91 |
+
.fi-female-symbol:before,
|
92 |
+
.fi-female:before,
|
93 |
+
.fi-filter:before,
|
94 |
+
.fi-first-aid:before,
|
95 |
+
.fi-flag:before,
|
96 |
+
.fi-folder-add:before,
|
97 |
+
.fi-folder-lock:before,
|
98 |
+
.fi-folder:before,
|
99 |
+
.fi-foot:before,
|
100 |
+
.fi-foundation:before,
|
101 |
+
.fi-graph-bar:before,
|
102 |
+
.fi-graph-horizontal:before,
|
103 |
+
.fi-graph-pie:before,
|
104 |
+
.fi-graph-trend:before,
|
105 |
+
.fi-guide-dog:before,
|
106 |
+
.fi-hearing-aid:before,
|
107 |
+
.fi-heart:before,
|
108 |
+
.fi-home:before,
|
109 |
+
.fi-html5:before,
|
110 |
+
.fi-indent-less:before,
|
111 |
+
.fi-indent-more:before,
|
112 |
+
.fi-info:before,
|
113 |
+
.fi-italic:before,
|
114 |
+
.fi-key:before,
|
115 |
+
.fi-laptop:before,
|
116 |
+
.fi-layout:before,
|
117 |
+
.fi-lightbulb:before,
|
118 |
+
.fi-like:before,
|
119 |
+
.fi-link:before,
|
120 |
+
.fi-list-bullet:before,
|
121 |
+
.fi-list-number:before,
|
122 |
+
.fi-list-thumbnails:before,
|
123 |
+
.fi-list:before,
|
124 |
+
.fi-lock:before,
|
125 |
+
.fi-loop:before,
|
126 |
+
.fi-magnifying-glass:before,
|
127 |
+
.fi-mail:before,
|
128 |
+
.fi-male-female:before,
|
129 |
+
.fi-male-symbol:before,
|
130 |
+
.fi-male:before,
|
131 |
+
.fi-map:before,
|
132 |
+
.fi-marker:before,
|
133 |
+
.fi-megaphone:before,
|
134 |
+
.fi-microphone:before,
|
135 |
+
.fi-minus-circle:before,
|
136 |
+
.fi-minus:before,
|
137 |
+
.fi-mobile-signal:before,
|
138 |
+
.fi-mobile:before,
|
139 |
+
.fi-monitor:before,
|
140 |
+
.fi-mountains:before,
|
141 |
+
.fi-music:before,
|
142 |
+
.fi-next:before,
|
143 |
+
.fi-no-dogs:before,
|
144 |
+
.fi-no-smoking:before,
|
145 |
+
.fi-page-add:before,
|
146 |
+
.fi-page-copy:before,
|
147 |
+
.fi-page-csv:before,
|
148 |
+
.fi-page-delete:before,
|
149 |
+
.fi-page-doc:before,
|
150 |
+
.fi-page-edit:before,
|
151 |
+
.fi-page-export-csv:before,
|
152 |
+
.fi-page-export-doc:before,
|
153 |
+
.fi-page-export-pdf:before,
|
154 |
+
.fi-page-export:before,
|
155 |
+
.fi-page-filled:before,
|
156 |
+
.fi-page-multiple:before,
|
157 |
+
.fi-page-pdf:before,
|
158 |
+
.fi-page-remove:before,
|
159 |
+
.fi-page-search:before,
|
160 |
+
.fi-page:before,
|
161 |
+
.fi-paint-bucket:before,
|
162 |
+
.fi-paperclip:before,
|
163 |
+
.fi-pause:before,
|
164 |
+
.fi-paw:before,
|
165 |
+
.fi-paypal:before,
|
166 |
+
.fi-pencil:before,
|
167 |
+
.fi-photo:before,
|
168 |
+
.fi-play-circle:before,
|
169 |
+
.fi-play-video:before,
|
170 |
+
.fi-play:before,
|
171 |
+
.fi-plus:before,
|
172 |
+
.fi-pound:before,
|
173 |
+
.fi-power:before,
|
174 |
+
.fi-previous:before,
|
175 |
+
.fi-price-tag:before,
|
176 |
+
.fi-pricetag-multiple:before,
|
177 |
+
.fi-print:before,
|
178 |
+
.fi-prohibited:before,
|
179 |
+
.fi-projection-screen:before,
|
180 |
+
.fi-puzzle:before,
|
181 |
+
.fi-quote:before,
|
182 |
+
.fi-record:before,
|
183 |
+
.fi-refresh:before,
|
184 |
+
.fi-results-demographics:before,
|
185 |
+
.fi-results:before,
|
186 |
+
.fi-rewind-ten:before,
|
187 |
+
.fi-rewind:before,
|
188 |
+
.fi-rss:before,
|
189 |
+
.fi-safety-cone:before,
|
190 |
+
.fi-save:before,
|
191 |
+
.fi-share:before,
|
192 |
+
.fi-sheriff-badge:before,
|
193 |
+
.fi-shield:before,
|
194 |
+
.fi-shopping-bag:before,
|
195 |
+
.fi-shopping-cart:before,
|
196 |
+
.fi-shuffle:before,
|
197 |
+
.fi-skull:before,
|
198 |
+
.fi-social-500px:before,
|
199 |
+
.fi-social-adobe:before,
|
200 |
+
.fi-social-amazon:before,
|
201 |
+
.fi-social-android:before,
|
202 |
+
.fi-social-apple:before,
|
203 |
+
.fi-social-behance:before,
|
204 |
+
.fi-social-bing:before,
|
205 |
+
.fi-social-blogger:before,
|
206 |
+
.fi-social-delicious:before,
|
207 |
+
.fi-social-designer-news:before,
|
208 |
+
.fi-social-deviant-art:before,
|
209 |
+
.fi-social-digg:before,
|
210 |
+
.fi-social-dribbble:before,
|
211 |
+
.fi-social-drive:before,
|
212 |
+
.fi-social-dropbox:before,
|
213 |
+
.fi-social-evernote:before,
|
214 |
+
.fi-social-facebook:before,
|
215 |
+
.fi-social-flickr:before,
|
216 |
+
.fi-social-forrst:before,
|
217 |
+
.fi-social-foursquare:before,
|
218 |
+
.fi-social-game-center:before,
|
219 |
+
.fi-social-github:before,
|
220 |
+
.fi-social-google-plus:before,
|
221 |
+
.fi-social-hacker-news:before,
|
222 |
+
.fi-social-hi5:before,
|
223 |
+
.fi-social-instagram:before,
|
224 |
+
.fi-social-joomla:before,
|
225 |
+
.fi-social-lastfm:before,
|
226 |
+
.fi-social-linkedin:before,
|
227 |
+
.fi-social-medium:before,
|
228 |
+
.fi-social-myspace:before,
|
229 |
+
.fi-social-orkut:before,
|
230 |
+
.fi-social-path:before,
|
231 |
+
.fi-social-picasa:before,
|
232 |
+
.fi-social-pinterest:before,
|
233 |
+
.fi-social-rdio:before,
|
234 |
+
.fi-social-reddit:before,
|
235 |
+
.fi-social-skillshare:before,
|
236 |
+
.fi-social-skype:before,
|
237 |
+
.fi-social-smashing-mag:before,
|
238 |
+
.fi-social-snapchat:before,
|
239 |
+
.fi-social-spotify:before,
|
240 |
+
.fi-social-squidoo:before,
|
241 |
+
.fi-social-stack-overflow:before,
|
242 |
+
.fi-social-steam:before,
|
243 |
+
.fi-social-stumbleupon:before,
|
244 |
+
.fi-social-treehouse:before,
|
245 |
+
.fi-social-tumblr:before,
|
246 |
+
.fi-social-twitter:before,
|
247 |
+
.fi-social-vimeo:before,
|
248 |
+
.fi-social-windows:before,
|
249 |
+
.fi-social-xbox:before,
|
250 |
+
.fi-social-yahoo:before,
|
251 |
+
.fi-social-yelp:before,
|
252 |
+
.fi-social-youtube:before,
|
253 |
+
.fi-social-zerply:before,
|
254 |
+
.fi-social-zurb:before,
|
255 |
+
.fi-sound:before,
|
256 |
+
.fi-star:before,
|
257 |
+
.fi-stop:before,
|
258 |
+
.fi-strikethrough:before,
|
259 |
+
.fi-subscript:before,
|
260 |
+
.fi-superscript:before,
|
261 |
+
.fi-tablet-landscape:before,
|
262 |
+
.fi-tablet-portrait:before,
|
263 |
+
.fi-target-two:before,
|
264 |
+
.fi-target:before,
|
265 |
+
.fi-telephone-accessible:before,
|
266 |
+
.fi-telephone:before,
|
267 |
+
.fi-text-color:before,
|
268 |
+
.fi-thumbnails:before,
|
269 |
+
.fi-ticket:before,
|
270 |
+
.fi-torso-business:before,
|
271 |
+
.fi-torso-female:before,
|
272 |
+
.fi-torso:before,
|
273 |
+
.fi-torsos-all-female:before,
|
274 |
+
.fi-torsos-all:before,
|
275 |
+
.fi-torsos-female-male:before,
|
276 |
+
.fi-torsos-male-female:before,
|
277 |
+
.fi-torsos:before,
|
278 |
+
.fi-trash:before,
|
279 |
+
.fi-trees:before,
|
280 |
+
.fi-trophy:before,
|
281 |
+
.fi-underline:before,
|
282 |
+
.fi-universal-access:before,
|
283 |
+
.fi-unlink:before,
|
284 |
+
.fi-unlock:before,
|
285 |
+
.fi-upload-cloud:before,
|
286 |
+
.fi-upload:before,
|
287 |
+
.fi-usb:before,
|
288 |
+
.fi-video:before,
|
289 |
+
.fi-volume-none:before,
|
290 |
+
.fi-volume-strike:before,
|
291 |
+
.fi-volume:before,
|
292 |
+
.fi-web:before,
|
293 |
+
.fi-wheelchair:before,
|
294 |
+
.fi-widget:before,
|
295 |
+
.fi-wrench:before,
|
296 |
+
.fi-x-circle:before,
|
297 |
+
.fi-x:before,
|
298 |
+
.fi-yen:before,
|
299 |
+
.fi-zoom-in:before,
|
300 |
+
.fi-zoom-out:before {
|
301 |
+
font-family: "foundation-icons";
|
302 |
+
font-style: normal;
|
303 |
+
font-weight: normal;
|
304 |
+
font-variant: normal;
|
305 |
+
text-transform: none;
|
306 |
+
line-height: 1;
|
307 |
+
-webkit-font-smoothing: antialiased;
|
308 |
+
display: inline-block;
|
309 |
+
text-decoration: inherit;
|
310 |
+
}
|
311 |
+
|
312 |
+
.fi-address-book:before { content: "\f100"; }
|
313 |
+
.fi-alert:before { content: "\f101"; }
|
314 |
+
.fi-align-center:before { content: "\f102"; }
|
315 |
+
.fi-align-justify:before { content: "\f103"; }
|
316 |
+
.fi-align-left:before { content: "\f104"; }
|
317 |
+
.fi-align-right:before { content: "\f105"; }
|
318 |
+
.fi-anchor:before { content: "\f106"; }
|
319 |
+
.fi-annotate:before { content: "\f107"; }
|
320 |
+
.fi-archive:before { content: "\f108"; }
|
321 |
+
.fi-arrow-down:before { content: "\f109"; }
|
322 |
+
.fi-arrow-left:before { content: "\f10a"; }
|
323 |
+
.fi-arrow-right:before { content: "\f10b"; }
|
324 |
+
.fi-arrow-up:before { content: "\f10c"; }
|
325 |
+
.fi-arrows-compress:before { content: "\f10d"; }
|
326 |
+
.fi-arrows-expand:before { content: "\f10e"; }
|
327 |
+
.fi-arrows-in:before { content: "\f10f"; }
|
328 |
+
.fi-arrows-out:before { content: "\f110"; }
|
329 |
+
.fi-asl:before { content: "\f111"; }
|
330 |
+
.fi-asterisk:before { content: "\f112"; }
|
331 |
+
.fi-at-sign:before { content: "\f113"; }
|
332 |
+
.fi-background-color:before { content: "\f114"; }
|
333 |
+
.fi-battery-empty:before { content: "\f115"; }
|
334 |
+
.fi-battery-full:before { content: "\f116"; }
|
335 |
+
.fi-battery-half:before { content: "\f117"; }
|
336 |
+
.fi-bitcoin-circle:before { content: "\f118"; }
|
337 |
+
.fi-bitcoin:before { content: "\f119"; }
|
338 |
+
.fi-blind:before { content: "\f11a"; }
|
339 |
+
.fi-bluetooth:before { content: "\f11b"; }
|
340 |
+
.fi-bold:before { content: "\f11c"; }
|
341 |
+
.fi-book-bookmark:before { content: "\f11d"; }
|
342 |
+
.fi-book:before { content: "\f11e"; }
|
343 |
+
.fi-bookmark:before { content: "\f11f"; }
|
344 |
+
.fi-braille:before { content: "\f120"; }
|
345 |
+
.fi-burst-new:before { content: "\f121"; }
|
346 |
+
.fi-burst-sale:before { content: "\f122"; }
|
347 |
+
.fi-burst:before { content: "\f123"; }
|
348 |
+
.fi-calendar:before { content: "\f124"; }
|
349 |
+
.fi-camera:before { content: "\f125"; }
|
350 |
+
.fi-check:before { content: "\f126"; }
|
351 |
+
.fi-checkbox:before { content: "\f127"; }
|
352 |
+
.fi-clipboard-notes:before { content: "\f128"; }
|
353 |
+
.fi-clipboard-pencil:before { content: "\f129"; }
|
354 |
+
.fi-clipboard:before { content: "\f12a"; }
|
355 |
+
.fi-clock:before { content: "\f12b"; }
|
356 |
+
.fi-closed-caption:before { content: "\f12c"; }
|
357 |
+
.fi-cloud:before { content: "\f12d"; }
|
358 |
+
.fi-comment-minus:before { content: "\f12e"; }
|
359 |
+
.fi-comment-quotes:before { content: "\f12f"; }
|
360 |
+
.fi-comment-video:before { content: "\f130"; }
|
361 |
+
.fi-comment:before { content: "\f131"; }
|
362 |
+
.fi-comments:before { content: "\f132"; }
|
363 |
+
.fi-compass:before { content: "\f133"; }
|
364 |
+
.fi-contrast:before { content: "\f134"; }
|
365 |
+
.fi-credit-card:before { content: "\f135"; }
|
366 |
+
.fi-crop:before { content: "\f136"; }
|
367 |
+
.fi-crown:before { content: "\f137"; }
|
368 |
+
.fi-css3:before { content: "\f138"; }
|
369 |
+
.fi-database:before { content: "\f139"; }
|
370 |
+
.fi-die-five:before { content: "\f13a"; }
|
371 |
+
.fi-die-four:before { content: "\f13b"; }
|
372 |
+
.fi-die-one:before { content: "\f13c"; }
|
373 |
+
.fi-die-six:before { content: "\f13d"; }
|
374 |
+
.fi-die-three:before { content: "\f13e"; }
|
375 |
+
.fi-die-two:before { content: "\f13f"; }
|
376 |
+
.fi-dislike:before { content: "\f140"; }
|
377 |
+
.fi-dollar-bill:before { content: "\f141"; }
|
378 |
+
.fi-dollar:before { content: "\f142"; }
|
379 |
+
.fi-download:before { content: "\f143"; }
|
380 |
+
.fi-eject:before { content: "\f144"; }
|
381 |
+
.fi-elevator:before { content: "\f145"; }
|
382 |
+
.fi-euro:before { content: "\f146"; }
|
383 |
+
.fi-eye:before { content: "\f147"; }
|
384 |
+
.fi-fast-forward:before { content: "\f148"; }
|
385 |
+
.fi-female-symbol:before { content: "\f149"; }
|
386 |
+
.fi-female:before { content: "\f14a"; }
|
387 |
+
.fi-filter:before { content: "\f14b"; }
|
388 |
+
.fi-first-aid:before { content: "\f14c"; }
|
389 |
+
.fi-flag:before { content: "\f14d"; }
|
390 |
+
.fi-folder-add:before { content: "\f14e"; }
|
391 |
+
.fi-folder-lock:before { content: "\f14f"; }
|
392 |
+
.fi-folder:before { content: "\f150"; }
|
393 |
+
.fi-foot:before { content: "\f151"; }
|
394 |
+
.fi-foundation:before { content: "\f152"; }
|
395 |
+
.fi-graph-bar:before { content: "\f153"; }
|
396 |
+
.fi-graph-horizontal:before { content: "\f154"; }
|
397 |
+
.fi-graph-pie:before { content: "\f155"; }
|
398 |
+
.fi-graph-trend:before { content: "\f156"; }
|
399 |
+
.fi-guide-dog:before { content: "\f157"; }
|
400 |
+
.fi-hearing-aid:before { content: "\f158"; }
|
401 |
+
.fi-heart:before { content: "\f159"; }
|
402 |
+
.fi-home:before { content: "\f15a"; }
|
403 |
+
.fi-html5:before { content: "\f15b"; }
|
404 |
+
.fi-indent-less:before { content: "\f15c"; }
|
405 |
+
.fi-indent-more:before { content: "\f15d"; }
|
406 |
+
.fi-info:before { content: "\f15e"; }
|
407 |
+
.fi-italic:before { content: "\f15f"; }
|
408 |
+
.fi-key:before { content: "\f160"; }
|
409 |
+
.fi-laptop:before { content: "\f161"; }
|
410 |
+
.fi-layout:before { content: "\f162"; }
|
411 |
+
.fi-lightbulb:before { content: "\f163"; }
|
412 |
+
.fi-like:before { content: "\f164"; }
|
413 |
+
.fi-link:before { content: "\f165"; }
|
414 |
+
.fi-list-bullet:before { content: "\f166"; }
|
415 |
+
.fi-list-number:before { content: "\f167"; }
|
416 |
+
.fi-list-thumbnails:before { content: "\f168"; }
|
417 |
+
.fi-list:before { content: "\f169"; }
|
418 |
+
.fi-lock:before { content: "\f16a"; }
|
419 |
+
.fi-loop:before { content: "\f16b"; }
|
420 |
+
.fi-magnifying-glass:before { content: "\f16c"; }
|
421 |
+
.fi-mail:before { content: "\f16d"; }
|
422 |
+
.fi-male-female:before { content: "\f16e"; }
|
423 |
+
.fi-male-symbol:before { content: "\f16f"; }
|
424 |
+
.fi-male:before { content: "\f170"; }
|
425 |
+
.fi-map:before { content: "\f171"; }
|
426 |
+
.fi-marker:before { content: "\f172"; }
|
427 |
+
.fi-megaphone:before { content: "\f173"; }
|
428 |
+
.fi-microphone:before { content: "\f174"; }
|
429 |
+
.fi-minus-circle:before { content: "\f175"; }
|
430 |
+
.fi-minus:before { content: "\f176"; }
|
431 |
+
.fi-mobile-signal:before { content: "\f177"; }
|
432 |
+
.fi-mobile:before { content: "\f178"; }
|
433 |
+
.fi-monitor:before { content: "\f179"; }
|
434 |
+
.fi-mountains:before { content: "\f17a"; }
|
435 |
+
.fi-music:before { content: "\f17b"; }
|
436 |
+
.fi-next:before { content: "\f17c"; }
|
437 |
+
.fi-no-dogs:before { content: "\f17d"; }
|
438 |
+
.fi-no-smoking:before { content: "\f17e"; }
|
439 |
+
.fi-page-add:before { content: "\f17f"; }
|
440 |
+
.fi-page-copy:before { content: "\f180"; }
|
441 |
+
.fi-page-csv:before { content: "\f181"; }
|
442 |
+
.fi-page-delete:before { content: "\f182"; }
|
443 |
+
.fi-page-doc:before { content: "\f183"; }
|
444 |
+
.fi-page-edit:before { content: "\f184"; }
|
445 |
+
.fi-page-export-csv:before { content: "\f185"; }
|
446 |
+
.fi-page-export-doc:before { content: "\f186"; }
|
447 |
+
.fi-page-export-pdf:before { content: "\f187"; }
|
448 |
+
.fi-page-export:before { content: "\f188"; }
|
449 |
+
.fi-page-filled:before { content: "\f189"; }
|
450 |
+
.fi-page-multiple:before { content: "\f18a"; }
|
451 |
+
.fi-page-pdf:before { content: "\f18b"; }
|
452 |
+
.fi-page-remove:before { content: "\f18c"; }
|
453 |
+
.fi-page-search:before { content: "\f18d"; }
|
454 |
+
.fi-page:before { content: "\f18e"; }
|
455 |
+
.fi-paint-bucket:before { content: "\f18f"; }
|
456 |
+
.fi-paperclip:before { content: "\f190"; }
|
457 |
+
.fi-pause:before { content: "\f191"; }
|
458 |
+
.fi-paw:before { content: "\f192"; }
|
459 |
+
.fi-paypal:before { content: "\f193"; }
|
460 |
+
.fi-pencil:before { content: "\f194"; }
|
461 |
+
.fi-photo:before { content: "\f195"; }
|
462 |
+
.fi-play-circle:before { content: "\f196"; }
|
463 |
+
.fi-play-video:before { content: "\f197"; }
|
464 |
+
.fi-play:before { content: "\f198"; }
|
465 |
+
.fi-plus:before { content: "\f199"; }
|
466 |
+
.fi-pound:before { content: "\f19a"; }
|
467 |
+
.fi-power:before { content: "\f19b"; }
|
468 |
+
.fi-previous:before { content: "\f19c"; }
|
469 |
+
.fi-price-tag:before { content: "\f19d"; }
|
470 |
+
.fi-pricetag-multiple:before { content: "\f19e"; }
|
471 |
+
.fi-print:before { content: "\f19f"; }
|
472 |
+
.fi-prohibited:before { content: "\f1a0"; }
|
473 |
+
.fi-projection-screen:before { content: "\f1a1"; }
|
474 |
+
.fi-puzzle:before { content: "\f1a2"; }
|
475 |
+
.fi-quote:before { content: "\f1a3"; }
|
476 |
+
.fi-record:before { content: "\f1a4"; }
|
477 |
+
.fi-refresh:before { content: "\f1a5"; }
|
478 |
+
.fi-results-demographics:before { content: "\f1a6"; }
|
479 |
+
.fi-results:before { content: "\f1a7"; }
|
480 |
+
.fi-rewind-ten:before { content: "\f1a8"; }
|
481 |
+
.fi-rewind:before { content: "\f1a9"; }
|
482 |
+
.fi-rss:before { content: "\f1aa"; }
|
483 |
+
.fi-safety-cone:before { content: "\f1ab"; }
|
484 |
+
.fi-save:before { content: "\f1ac"; }
|
485 |
+
.fi-share:before { content: "\f1ad"; }
|
486 |
+
.fi-sheriff-badge:before { content: "\f1ae"; }
|
487 |
+
.fi-shield:before { content: "\f1af"; }
|
488 |
+
.fi-shopping-bag:before { content: "\f1b0"; }
|
489 |
+
.fi-shopping-cart:before { content: "\f1b1"; }
|
490 |
+
.fi-shuffle:before { content: "\f1b2"; }
|
491 |
+
.fi-skull:before { content: "\f1b3"; }
|
492 |
+
.fi-social-500px:before { content: "\f1b4"; }
|
493 |
+
.fi-social-adobe:before { content: "\f1b5"; }
|
494 |
+
.fi-social-amazon:before { content: "\f1b6"; }
|
495 |
+
.fi-social-android:before { content: "\f1b7"; }
|
496 |
+
.fi-social-apple:before { content: "\f1b8"; }
|
497 |
+
.fi-social-behance:before { content: "\f1b9"; }
|
498 |
+
.fi-social-bing:before { content: "\f1ba"; }
|
499 |
+
.fi-social-blogger:before { content: "\f1bb"; }
|
500 |
+
.fi-social-delicious:before { content: "\f1bc"; }
|
501 |
+
.fi-social-designer-news:before { content: "\f1bd"; }
|
502 |
+
.fi-social-deviant-art:before { content: "\f1be"; }
|
503 |
+
.fi-social-digg:before { content: "\f1bf"; }
|
504 |
+
.fi-social-dribbble:before { content: "\f1c0"; }
|
505 |
+
.fi-social-drive:before { content: "\f1c1"; }
|
506 |
+
.fi-social-dropbox:before { content: "\f1c2"; }
|
507 |
+
.fi-social-evernote:before { content: "\f1c3"; }
|
508 |
+
.fi-social-facebook:before { content: "\f1c4"; }
|
509 |
+
.fi-social-flickr:before { content: "\f1c5"; }
|
510 |
+
.fi-social-forrst:before { content: "\f1c6"; }
|
511 |
+
.fi-social-foursquare:before { content: "\f1c7"; }
|
512 |
+
.fi-social-game-center:before { content: "\f1c8"; }
|
513 |
+
.fi-social-github:before { content: "\f1c9"; }
|
514 |
+
.fi-social-google-plus:before { content: "\f1ca"; }
|
515 |
+
.fi-social-hacker-news:before { content: "\f1cb"; }
|
516 |
+
.fi-social-hi5:before { content: "\f1cc"; }
|
517 |
+
.fi-social-instagram:before { content: "\f1cd"; }
|
518 |
+
.fi-social-joomla:before { content: "\f1ce"; }
|
519 |
+
.fi-social-lastfm:before { content: "\f1cf"; }
|
520 |
+
.fi-social-linkedin:before { content: "\f1d0"; }
|
521 |
+
.fi-social-medium:before { content: "\f1d1"; }
|
522 |
+
.fi-social-myspace:before { content: "\f1d2"; }
|
523 |
+
.fi-social-orkut:before { content: "\f1d3"; }
|
524 |
+
.fi-social-path:before { content: "\f1d4"; }
|
525 |
+
.fi-social-picasa:before { content: "\f1d5"; }
|
526 |
+
.fi-social-pinterest:before { content: "\f1d6"; }
|
527 |
+
.fi-social-rdio:before { content: "\f1d7"; }
|
528 |
+
.fi-social-reddit:before { content: "\f1d8"; }
|
529 |
+
.fi-social-skillshare:before { content: "\f1d9"; }
|
530 |
+
.fi-social-skype:before { content: "\f1da"; }
|
531 |
+
.fi-social-smashing-mag:before { content: "\f1db"; }
|
532 |
+
.fi-social-snapchat:before { content: "\f1dc"; }
|
533 |
+
.fi-social-spotify:before { content: "\f1dd"; }
|
534 |
+
.fi-social-squidoo:before { content: "\f1de"; }
|
535 |
+
.fi-social-stack-overflow:before { content: "\f1df"; }
|
536 |
+
.fi-social-steam:before { content: "\f1e0"; }
|
537 |
+
.fi-social-stumbleupon:before { content: "\f1e1"; }
|
538 |
+
.fi-social-treehouse:before { content: "\f1e2"; }
|
539 |
+
.fi-social-tumblr:before { content: "\f1e3"; }
|
540 |
+
.fi-social-twitter:before { content: "\f1e4"; }
|
541 |
+
.fi-social-vimeo:before { content: "\f1e5"; }
|
542 |
+
.fi-social-windows:before { content: "\f1e6"; }
|
543 |
+
.fi-social-xbox:before { content: "\f1e7"; }
|
544 |
+
.fi-social-yahoo:before { content: "\f1e8"; }
|
545 |
+
.fi-social-yelp:before { content: "\f1e9"; }
|
546 |
+
.fi-social-youtube:before { content: "\f1ea"; }
|
547 |
+
.fi-social-zerply:before { content: "\f1eb"; }
|
548 |
+
.fi-social-zurb:before { content: "\f1ec"; }
|
549 |
+
.fi-sound:before { content: "\f1ed"; }
|
550 |
+
.fi-star:before { content: "\f1ee"; }
|
551 |
+
.fi-stop:before { content: "\f1ef"; }
|
552 |
+
.fi-strikethrough:before { content: "\f1f0"; }
|
553 |
+
.fi-subscript:before { content: "\f1f1"; }
|
554 |
+
.fi-superscript:before { content: "\f1f2"; }
|
555 |
+
.fi-tablet-landscape:before { content: "\f1f3"; }
|
556 |
+
.fi-tablet-portrait:before { content: "\f1f4"; }
|
557 |
+
.fi-target-two:before { content: "\f1f5"; }
|
558 |
+
.fi-target:before { content: "\f1f6"; }
|
559 |
+
.fi-telephone-accessible:before { content: "\f1f7"; }
|
560 |
+
.fi-telephone:before { content: "\f1f8"; }
|
561 |
+
.fi-text-color:before { content: "\f1f9"; }
|
562 |
+
.fi-thumbnails:before { content: "\f1fa"; }
|
563 |
+
.fi-ticket:before { content: "\f1fb"; }
|
564 |
+
.fi-torso-business:before { content: "\f1fc"; }
|
565 |
+
.fi-torso-female:before { content: "\f1fd"; }
|
566 |
+
.fi-torso:before { content: "\f1fe"; }
|
567 |
+
.fi-torsos-all-female:before { content: "\f1ff"; }
|
568 |
+
.fi-torsos-all:before { content: "\f200"; }
|
569 |
+
.fi-torsos-female-male:before { content: "\f201"; }
|
570 |
+
.fi-torsos-male-female:before { content: "\f202"; }
|
571 |
+
.fi-torsos:before { content: "\f203"; }
|
572 |
+
.fi-trash:before { content: "\f204"; }
|
573 |
+
.fi-trees:before { content: "\f205"; }
|
574 |
+
.fi-trophy:before { content: "\f206"; }
|
575 |
+
.fi-underline:before { content: "\f207"; }
|
576 |
+
.fi-universal-access:before { content: "\f208"; }
|
577 |
+
.fi-unlink:before { content: "\f209"; }
|
578 |
+
.fi-unlock:before { content: "\f20a"; }
|
579 |
+
.fi-upload-cloud:before { content: "\f20b"; }
|
580 |
+
.fi-upload:before { content: "\f20c"; }
|
581 |
+
.fi-usb:before { content: "\f20d"; }
|
582 |
+
.fi-video:before { content: "\f20e"; }
|
583 |
+
.fi-volume-none:before { content: "\f20f"; }
|
584 |
+
.fi-volume-strike:before { content: "\f210"; }
|
585 |
+
.fi-volume:before { content: "\f211"; }
|
586 |
+
.fi-web:before { content: "\f212"; }
|
587 |
+
.fi-wheelchair:before { content: "\f213"; }
|
588 |
+
.fi-widget:before { content: "\f214"; }
|
589 |
+
.fi-wrench:before { content: "\f215"; }
|
590 |
+
.fi-x-circle:before { content: "\f216"; }
|
591 |
+
.fi-x:before { content: "\f217"; }
|
592 |
+
.fi-yen:before { content: "\f218"; }
|
593 |
+
.fi-zoom-in:before { content: "\f219"; }
|
594 |
+
.fi-zoom-out:before { content: "\f21a"; }
|
fl-builder.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Beaver Builder Plugin (Lite Version)
|
4 |
* Plugin URI: http://www.wpbeaverbuilder.com
|
5 |
* Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
|
6 |
-
* Version: 1.4.
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: http://www.wpbeaverbuilder.com
|
9 |
* Copyright: (c) 2014 Beaver Builder
|
@@ -11,7 +11,7 @@
|
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
* Text Domain: fl-builder
|
13 |
*/
|
14 |
-
define('FL_BUILDER_VERSION', '1.4.
|
15 |
define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
|
16 |
define('FL_BUILDER_URL', plugins_url('/', __FILE__));
|
17 |
define('FL_BUILDER_LITE', true);
|
@@ -27,6 +27,7 @@ require_once 'classes/FLBuilderAdmin.php';
|
|
27 |
require_once 'classes/FLBuilderAdminPosts.php';
|
28 |
require_once 'classes/FLBuilderAutoSuggest.php';
|
29 |
require_once 'classes/FLBuilderColor.php';
|
|
|
30 |
require_once 'classes/FLBuilderLoop.php';
|
31 |
require_once 'classes/FLBuilderModel.php';
|
32 |
require_once 'classes/FLBuilderModule.php';
|
3 |
* Plugin Name: Beaver Builder Plugin (Lite Version)
|
4 |
* Plugin URI: http://www.wpbeaverbuilder.com
|
5 |
* Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
|
6 |
+
* Version: 1.4.3
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: http://www.wpbeaverbuilder.com
|
9 |
* Copyright: (c) 2014 Beaver Builder
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
* Text Domain: fl-builder
|
13 |
*/
|
14 |
+
define('FL_BUILDER_VERSION', '1.4.3');
|
15 |
define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
|
16 |
define('FL_BUILDER_URL', plugins_url('/', __FILE__));
|
17 |
define('FL_BUILDER_LITE', true);
|
27 |
require_once 'classes/FLBuilderAdminPosts.php';
|
28 |
require_once 'classes/FLBuilderAutoSuggest.php';
|
29 |
require_once 'classes/FLBuilderColor.php';
|
30 |
+
require_once 'classes/FLBuilderIcons.php';
|
31 |
require_once 'classes/FLBuilderLoop.php';
|
32 |
require_once 'classes/FLBuilderModel.php';
|
33 |
require_once 'classes/FLBuilderModule.php';
|
fonts/foundation-icons.eot
ADDED
Binary file
|
fonts/foundation-icons.svg
ADDED
@@ -0,0 +1,970 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" standalone="no"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
+
<!--
|
4 |
+
2013-8-23: Created.
|
5 |
+
-->
|
6 |
+
<svg xmlns="http://www.w3.org/2000/svg">
|
7 |
+
<metadata>
|
8 |
+
Created by FontForge 20120731 at Fri Aug 23 09:25:55 2013
|
9 |
+
By Jordan Humphreys
|
10 |
+
Created by Jordan Humphreys with FontForge 2.0 (http://fontforge.sf.net)
|
11 |
+
</metadata>
|
12 |
+
<defs>
|
13 |
+
<font id="fontcustom" horiz-adv-x="369" >
|
14 |
+
<font-face
|
15 |
+
font-family="fontcustom"
|
16 |
+
font-weight="500"
|
17 |
+
font-stretch="normal"
|
18 |
+
units-per-em="512"
|
19 |
+
panose-1="2 0 6 3 0 0 0 0 0 0"
|
20 |
+
ascent="448"
|
21 |
+
descent="-64"
|
22 |
+
bbox="-0.584459 -64.25 512.25 448.25"
|
23 |
+
underline-thickness="25.6"
|
24 |
+
underline-position="-51.2"
|
25 |
+
unicode-range="U+F100-F21A"
|
26 |
+
/>
|
27 |
+
<missing-glyph />
|
28 |
+
<glyph glyph-name="uniF100" unicode="" horiz-adv-x="340"
|
29 |
+
d="M330 287v0h-24v-30h24c6 0 10 -4 10 -10v-30c0 -6 -4 -10 -10 -10h-24v-29h24c6 0 10 -5 10 -11v-30c0 -6 -4 -10 -10 -10h-24v-29h24c6 0 10 -5 10 -11v-30c0 -6 -4 -10 -10 -10h-24v-9c0 -9 -7 -16 -16 -16h-274c-9 0 -16 7 -16 16v308c0 9 7 16 16 16h274
|
30 |
+
c9 0 16 -7 16 -16v-9h24c6 0 10 -4 10 -10v-30c0 -6 -4 -10 -10 -10zM234 122v0v44c0 4 -3 8 -6 10l-55 26c13 8 21 24 21 42c0 26 -18 48 -41 48s-41 -22 -41 -48c0 -19 9 -34 22 -42l-56 -26c-3 -2 -5 -6 -5 -10v-44c0 -6 4 -11 9 -11h142c5 0 10 5 10 11z" />
|
31 |
+
<glyph glyph-name="uniF101" unicode="" horiz-adv-x="425"
|
32 |
+
d="M423 31c1 -2 2 -4 2 -7c0 -10 -9 -18 -19 -18v0h-388v0c-10 0 -18 8 -18 18c0 4 1 9 4 12v0l191 331h1c3 6 8 11 16 11c7 0 13 -3 16 -9l193 -334c0 -1 1 -1 1 -2l1 -2v0zM213 40c14 0 26 12 26 27s-12 26 -26 26c-15 0 -27 -11 -27 -26s12 -27 27 -27zM239 273v0v0v0v0
|
33 |
+
c0 6 -5 10 -11 10v0h-32v0c-5 0 -10 -4 -10 -10v-1v-144v0v0c0 -6 5 -11 11 -11h31v0v0c6 0 11 5 11 11v0v0v145z" />
|
34 |
+
<glyph glyph-name="uniF102" unicode="" horiz-adv-x="355"
|
35 |
+
d="M337 370c10 0 18 -7 18 -17v-16c0 -10 -8 -17 -18 -17h-320c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h320zM312 235c0 -10 -8 -17 -18 -17v0h-233c-10 0 -18 7 -18 17v16c0 10 8 17 18 17h233v0c10 0 18 -7 18 -17v0v-16v0zM320 64c10 0 17 -7 17 -17v0v-16v0
|
36 |
+
c0 -10 -7 -17 -17 -17v0h-285c-10 0 -18 7 -18 17v16c0 10 8 17 18 17h285v0zM294 149v0v-16v0c0 -10 -7 -17 -17 -17v0v0h-199c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h199v0v0c10 0 17 -7 17 -17z" />
|
37 |
+
<glyph glyph-name="uniF103" unicode="" horiz-adv-x="355"
|
38 |
+
d="M337 369c10 0 18 -7 18 -17v-16c0 -10 -8 -18 -18 -18h-320c-10 0 -17 8 -17 18v16c0 10 7 17 17 17h320zM337 268c10 0 18 -7 18 -17v-16c0 -10 -8 -18 -18 -18h-320c-10 0 -17 8 -17 18v16c0 10 7 17 17 17h320zM337 167c10 0 18 -8 18 -18v-16c0 -10 -8 -17 -18 -17
|
39 |
+
h-320c-10 0 -17 7 -17 17v16c0 10 7 18 17 18h320zM337 66c10 0 18 -8 18 -18v-16c0 -10 -8 -17 -18 -17h-320c-10 0 -17 7 -17 17v16c0 10 7 18 17 18h320z" />
|
40 |
+
<glyph glyph-name="uniF104" unicode="" horiz-adv-x="355"
|
41 |
+
d="M337 370c10 0 18 -7 18 -17v-16c0 -10 -8 -17 -18 -17h-320c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h320zM17 218c-10 0 -17 7 -17 17v16c0 10 7 18 17 18h234v0c10 0 18 -8 18 -18v0v-16v0c0 -10 -8 -17 -18 -17v0h-234zM302 64c10 0 18 -7 18 -17v0v-16v0
|
42 |
+
c0 -10 -8 -17 -18 -17v0h-285c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h285v0zM17 116c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h199v0v0c10 0 18 -7 18 -17v0v-16v0c0 -10 -8 -17 -18 -17v0v0h-199z" />
|
43 |
+
<glyph glyph-name="uniF105" unicode="" horiz-adv-x="355"
|
44 |
+
d="M337 370c10 0 18 -7 18 -17v-16c0 -10 -8 -17 -18 -17h-320c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h320zM337 268c10 0 18 -7 18 -17v0v-16v0c0 -10 -8 -17 -18 -17v0h-233c-10 0 -18 7 -18 17v16c0 10 8 17 18 17h233v0zM337 64c10 0 18 -7 18 -17v0v-16v0
|
45 |
+
c0 -10 -8 -17 -18 -17v0h-285c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h285v0v0zM355 149v0v-16v0c0 -10 -8 -17 -18 -17v0v0h-199c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h199v0v0c10 0 18 -7 18 -17z" />
|
46 |
+
<glyph glyph-name="uniF106" unicode="" horiz-adv-x="393"
|
47 |
+
d="M392 104c1 -1 1 -3 1 -4c0 -4 -4 -8 -8 -8h-21c-33 -58 -95 -97 -167 -97s-134 39 -167 97h-22c-4 0 -8 4 -8 8c0 2 1 4 2 5l47 82c1 3 4 5 7 5s6 -2 7 -4v0l48 -84v0c1 -1 2 -3 2 -4c0 -4 -5 -8 -9 -8h-12c20 -22 48 -38 79 -44v150h-46c-4 0 -8 4 -8 8v0v35v0
|
48 |
+
c0 4 4 8 8 8v0h46v27c-20 10 -34 30 -34 54c0 33 27 59 60 59s59 -26 59 -59c0 -24 -14 -44 -34 -54v-27h47v0c4 0 8 -4 8 -8v0v-35v0c0 -4 -4 -8 -8 -8h-47v-150c31 6 59 22 79 44h-12c-4 0 -8 4 -8 8c0 2 1 4 2 5l46 82c1 3 5 5 8 5s6 -2 7 -4v0l48 -84v0zM197 296
|
49 |
+
c18 0 33 16 33 34s-15 33 -33 33s-34 -15 -34 -33s16 -34 34 -34z" />
|
50 |
+
<glyph glyph-name="uniF107" unicode="" horiz-adv-x="388"
|
51 |
+
d="M360 98c17 -9 28 -27 28 -47c0 -29 -24 -54 -53 -54c-22 0 -42 14 -50 34h-182c-8 -20 -28 -34 -50 -34c-29 0 -53 25 -53 54c0 20 11 38 28 47v188c-17 9 -28 27 -28 47c0 29 24 54 53 54c18 0 34 -10 44 -24h194c10 14 26 24 44 24c29 0 53 -25 53 -54
|
52 |
+
c0 -20 -11 -38 -28 -47v-188zM79 98c7 -4 13 -10 18 -16h195c5 6 10 12 17 16v188c-11 6 -18 15 -23 26h-184c-5 -11 -12 -20 -23 -26v-188z" />
|
53 |
+
<glyph glyph-name="uniF108" unicode="" horiz-adv-x="401"
|
54 |
+
d="M401 279v0v-247v0c0 -12 -9 -21 -21 -21h-1h-357h-1c-12 0 -21 9 -21 21v0v247v1c0 5 2 10 5 14v0l42 72v0c2 4 6 7 11 7v0v0h284v0h1c6 0 12 -4 13 -10l40 -69v-1c3 -4 5 -8 5 -13v-1zM269 154c1 2 2 4 1 6s-4 3 -6 3h-30v81c0 3 -3 6 -6 6h-55c-3 0 -6 -3 -6 -6v-81
|
55 |
+
h-30c-2 0 -5 -1 -6 -3s0 -4 1 -6l64 -90c1 -2 3 -2 5 -2v0c2 0 4 0 5 2zM39 301h323l-27 47h-269z" />
|
56 |
+
<glyph glyph-name="uniF109" unicode="" horiz-adv-x="292"
|
57 |
+
d="M2 188c-3 4 -3 9 -1 13s7 7 12 7h62v167c0 7 6 13 13 13h116c7 0 12 -6 12 -13v-167h63c5 0 9 -3 11 -7s2 -9 -1 -13l-132 -187c-2 -3 -7 -5 -11 -5v0c-4 0 -8 2 -10 5z" />
|
58 |
+
<glyph glyph-name="uniF10A" unicode="" horiz-adv-x="393"
|
59 |
+
d="M192 335c4 3 9 3 13 1s7 -6 7 -11v-62h168c7 0 13 -6 13 -13v-116c0 -7 -6 -13 -13 -13h-168v-62c0 -5 -3 -9 -7 -11s-9 -2 -13 1l-187 132c-3 2 -5 7 -5 11v0c0 4 2 8 5 10z" />
|
60 |
+
<glyph glyph-name="uniF10B" unicode="" horiz-adv-x="393"
|
61 |
+
d="M201 49c-4 -3 -10 -3 -14 -1s-7 6 -7 11v62h-167c-7 0 -13 6 -13 13v116c0 7 6 13 13 13h167v62c0 5 3 9 7 11s10 2 14 -1l186 -132c3 -2 6 -7 6 -11v0c0 -4 -3 -8 -6 -10z" />
|
62 |
+
<glyph glyph-name="uniF10C" unicode="" horiz-adv-x="292"
|
63 |
+
d="M289 196c3 -4 3 -9 1 -13s-6 -7 -11 -7h-63v-167c0 -7 -5 -13 -12 -13h-116c-7 0 -13 6 -13 13v167h-62c-5 0 -10 3 -12 7s-2 9 1 13l133 187c2 3 6 5 10 5v0c4 0 9 -2 11 -5z" />
|
64 |
+
<glyph glyph-name="uniF10D" unicode="" horiz-adv-x="512"
|
65 |
+
d="M201 -5c-1 -3 -4 -6 -7 -7s-7 0 -9 2l-30 31l-83 -82c-4 -4 -9 -4 -13 0l-56 56c-4 4 -4 9 0 13l82 83l-31 30c-2 2 -3 6 -2 9s4 6 7 7l157 26c3 0 6 0 8 -2v0c2 -2 3 -5 3 -8zM311 389c1 3 4 6 7 7s7 0 9 -2l30 -31l83 82c4 4 9 4 13 0l56 -56c4 -4 4 -9 0 -13l-82 -83
|
66 |
+
l31 -30c2 -2 3 -6 2 -9s-4 -6 -7 -7l-157 -26c-3 0 -6 0 -8 2v0c-2 2 -3 5 -3 8z" />
|
67 |
+
<glyph glyph-name="uniF10E" unicode="" horiz-adv-x="512"
|
68 |
+
d="M26 104c1 3 3 6 6 7s7 0 9 -2l31 -31l83 83c4 4 8 4 12 0l57 -57c4 -4 4 -9 0 -13l-82 -82l30 -31c2 -2 4 -6 3 -9s-4 -5 -7 -6l-158 -27c-3 0 -5 1 -7 3v0c-2 2 -3 4 -3 7zM486 280c-1 -3 -3 -6 -6 -7s-7 0 -9 2l-31 31l-83 -83c-4 -4 -8 -4 -12 0l-57 57
|
69 |
+
c-4 4 -4 9 0 13l82 82l-30 31c-2 2 -4 6 -3 9s4 5 7 6l158 27c3 0 5 -1 7 -3v0c2 -2 3 -4 3 -7z" />
|
70 |
+
<glyph glyph-name="uniF10F" unicode="" horiz-adv-x="512"
|
71 |
+
d="M184 -10c-1 -3 -2 -5 -5 -6s-7 0 -9 2l-28 28l-76 -76c-3 -3 -8 -3 -11 0l-53 53c-3 3 -3 8 0 11l76 76l-28 28c-2 2 -3 6 -2 9s3 4 6 5l145 25c3 0 5 -1 7 -3v0c2 -2 2 -4 2 -7zM328 394c1 3 2 5 5 6s7 0 9 -2l28 -28l76 76c3 3 8 3 11 0l53 -53c3 -3 3 -8 0 -11
|
72 |
+
l-76 -76l28 -28c2 -2 3 -6 2 -9s-3 -4 -6 -5l-145 -25c-3 0 -5 1 -7 3v0c-2 2 -2 4 -2 7zM458 120c3 -1 5 -2 6 -5s0 -7 -2 -9l-28 -28l76 -76c3 -3 3 -8 0 -11l-53 -53c-3 -3 -8 -3 -11 0l-76 76l-28 -28c-2 -2 -6 -3 -9 -2s-4 3 -5 6l-25 145c0 3 1 5 3 7v0c2 2 4 2 7 2z
|
73 |
+
M54 264c-3 1 -5 2 -6 5s0 7 2 9l28 28l-76 76c-3 3 -3 8 0 11l53 53c3 3 8 3 11 0l76 -76l28 28c2 2 6 3 9 2s4 -3 5 -6l25 -145c0 -3 -1 -5 -3 -7v0c-2 -2 -4 -2 -7 -2z" />
|
74 |
+
<glyph glyph-name="uniF110" unicode="" horiz-adv-x="512"
|
75 |
+
d="M24 90c1 3 3 6 6 7s6 0 8 -2l28 -28l76 75c3 3 9 3 12 0l52 -52c3 -3 3 -9 0 -12l-76 -75l28 -29c2 -2 3 -5 2 -8s-3 -4 -6 -5l-144 -25c-3 0 -6 0 -8 2v0c-2 2 -2 5 -2 8zM488 294c-1 -3 -3 -6 -6 -7s-6 0 -8 2l-28 28l-76 -75c-3 -3 -9 -3 -12 0l-52 52c-3 3 -3 9 0 12
|
76 |
+
l76 75l-28 29c-2 2 -3 5 -2 8s3 4 6 5l144 25c3 0 6 0 8 -2v0c2 -2 2 -5 2 -8zM358 -40c-3 1 -6 3 -7 6s0 6 2 8l28 28l-75 76c-3 3 -3 9 0 12l52 52c3 3 9 3 12 0l75 -76l29 28c2 2 5 3 8 2s4 -3 5 -6l25 -144c0 -3 0 -6 -2 -8v0c-2 -2 -5 -2 -8 -2zM154 424
|
77 |
+
c3 -1 6 -3 7 -6s0 -6 -2 -8l-28 -28l75 -76c3 -3 3 -9 0 -12l-52 -52c-3 -3 -9 -3 -12 0l-75 76l-29 -28c-2 -2 -5 -3 -8 -2s-4 3 -5 6l-25 144c0 3 0 6 2 8v0c2 2 5 2 8 2z" />
|
78 |
+
<glyph glyph-name="uniF111" unicode="" horiz-adv-x="440"
|
79 |
+
d="M94 315c2 1 3 2 5 3c17 15 37 27 59 34c11 3 23 4 35 5c2 0 6 -2 7 -4s0 -6 -2 -8c-3 -3 -6 -5 -10 -6c-15 -5 -29 -9 -44 -14c-3 -1 -6 -6 -9 -8c-7 -6 -14 -10 -21 -16l-3 -3v-1c4 2 7 3 11 4c12 4 23 9 35 11c10 2 21 -1 32 -2c2 0 5 -2 7 -4c8 -6 15 -13 23 -19
|
80 |
+
c3 -2 3 -4 1 -7c-5 -7 -11 -8 -18 -4c-6 3 -10 7 -15 11c-3 2 -5 4 -9 3c-7 -1 -15 -1 -22 -2c-3 0 -5 -1 -7 -2c-10 -7 -20 -15 -30 -22c-2 -1 -3 -4 -3 -7c1 0 2 0 3 1c8 5 17 6 26 7c3 0 6 1 9 1c12 2 20 -3 29 -10c7 -5 14 -10 21 -16c4 -3 6 -8 6 -13
|
81 |
+
c0 -9 0 -18 -3 -27c0 -1 -1 -3 0 -3c6 -4 2 -9 1 -13c-3 -9 -7 -18 -10 -27c-3 -8 -9 -13 -18 -16c-21 -6 -41 -13 -62 -20c-8 -3 -17 -4 -26 -2c-17 4 -33 2 -49 -5c-7 -3 -15 -7 -23 -11c-9 13 -14 27 -17 41c-4 17 -4 35 -2 52c0 1 2 3 3 4c17 7 25 21 31 37
|
82 |
+
c7 19 9 40 21 57c13 19 23 39 40 55c8 8 16 18 23 27c3 4 5 4 8 -1s3 -11 -1 -16c-10 -13 -21 -26 -31 -39c-1 -1 -1 -2 -2 -4zM167 170c4 0 8 -1 10 3c4 9 11 16 18 22c2 2 2 3 1 5c-4 7 -6 14 -10 21c-1 2 -3 4 -5 5c-6 4 -12 8 -19 12c-2 1 -4 2 -6 1
|
83 |
+
c-5 -2 -10 -5 -15 -7c-4 -2 -9 -3 -13 -5c-11 -4 -14 -13 -17 -23c-2 -6 -1 -11 4 -16c6 -6 12 -13 17 -20c2 -2 3 -2 6 -1c10 3 19 5 29 3zM346 69c-3 -3 -7 -4 -10 -7c-15 -14 -34 -24 -53 -30c-11 -4 -23 -5 -35 -6c-7 -1 -10 7 -6 12c3 3 7 7 11 8c12 4 25 7 37 11
|
84 |
+
c5 2 9 5 13 8c8 6 16 13 24 19c1 1 2 2 2 4c-4 -2 -9 -4 -13 -6c-11 -4 -21 -9 -32 -10s-22 1 -33 2c-2 0 -5 2 -7 4c-7 5 -13 11 -20 16s-6 12 3 15c3 1 8 1 11 -1c6 -3 11 -8 17 -12c2 -1 4 -2 6 -2c8 0 15 1 22 2c3 0 7 1 10 3c9 7 19 14 28 21c2 1 2 4 3 7
|
85 |
+
c-12 -8 -26 -8 -39 -9c-9 -1 -16 1 -23 7c-9 7 -19 14 -28 21c-2 2 -4 5 -4 8c0 9 1 18 2 27c0 3 2 6 -1 9c-1 1 0 3 0 4c1 4 3 7 4 11c3 7 5 13 7 20c3 9 9 15 19 18c21 6 42 13 62 20c9 3 17 4 26 2c18 -5 35 -2 52 6c6 3 12 7 19 10c8 -9 12 -21 15 -32
|
86 |
+
c6 -20 6 -40 4 -61c0 -5 -4 -5 -7 -6c-10 -4 -17 -13 -21 -22c-5 -10 -8 -21 -11 -32c-5 -15 -10 -30 -19 -43c-7 -10 -13 -20 -20 -30c-6 -8 -13 -15 -19 -23l-21 -24c-4 -4 -5 -4 -8 1s-2 10 2 16c10 13 20 25 30 38c1 1 1 3 2 5c-1 0 -1 1 -1 1zM245 186
|
87 |
+
c3 -8 6 -16 10 -24c1 -2 2 -3 4 -4c6 -4 13 -8 19 -12c2 -1 4 -2 7 -1c8 3 15 7 23 10s14 6 17 14c2 4 3 9 4 13c1 5 1 9 -3 13c-7 7 -13 14 -19 21c-1 1 -3 1 -4 1c-11 -3 -22 -5 -33 -3c-2 0 -6 -1 -7 -3c-7 -8 -12 -17 -18 -25z" />
|
88 |
+
<glyph glyph-name="uniF112" unicode="" horiz-adv-x="343"
|
89 |
+
d="M338 140c4 -3 6 -7 4 -12v0v-2v0h-1l-28 -49v0c-3 -5 -9 -6 -14 -3c-1 0 -1 0 -2 1l-87 50v-103v0v0c0 -5 -4 -9 -9 -10v0h-58v0c-6 0 -10 4 -10 10v3v100l-89 -51v0v0c-4 -3 -10 -2 -13 2v0l-30 51v0c-3 5 -1 11 4 14c1 0 1 1 2 1l88 50l-90 51v1v0v0v0c-5 3 -7 8 -4 13
|
90 |
+
v0l29 49v0v1c3 5 9 7 14 4v0l89 -52v103v0c0 5 5 10 10 10v0h57v0v0c6 0 10 -4 10 -10v0v-103l90 51v0c5 3 10 2 13 -3v0l28 -49v0l1 -1c3 -5 1 -11 -4 -14v0l-89 -51l89 -51v0v-1z" />
|
91 |
+
<glyph glyph-name="uniF113" unicode="" horiz-adv-x="384"
|
92 |
+
d="M384 192v-9v0c0 -76 -46 -102 -85 -102c-27 0 -75 22 -78 39v3c-16 -22 -41 -36 -65 -36c-44 0 -70 31 -70 75c0 60 50 111 102 111c27 0 47 -13 56 -30l4 18v0c1 3 4 5 7 5h37c4 0 7 -2 7 -6l-1 -2h1l-22 -101c0 -2 -1 -8 -1 -11c0 -14 8 -21 17 -21c18 0 39 29 39 80
|
93 |
+
c-7 72 -67 128 -140 128c-78 0 -141 -63 -141 -141s63 -141 141 -141c19 0 37 3 53 10v0c1 0 2 1 3 1c2 0 4 -1 5 -2v0l34 -21v0c3 -1 4 -4 4 -7c0 -4 -2 -6 -5 -7c-28 -16 -60 -25 -94 -25c-106 0 -192 86 -192 192s86 192 192 192s192 -86 192 -192zM226 157l11 52
|
94 |
+
c-5 10 -16 23 -36 23c-36 0 -62 -32 -62 -65c0 -23 14 -40 37 -40c24 0 40 16 50 30z" />
|
95 |
+
<glyph glyph-name="uniF114" unicode=""
|
96 |
+
d="M122 53h133l17 -45h-167zM136 98l52 138l53 -138h-105zM333 376c20 0 36 -16 36 -36v-296c0 -20 -16 -36 -36 -36h-3l-106 270v0c-2 5 -7 9 -13 9h-45c-6 0 -11 -4 -13 -9v0l-106 -270h-11c-20 0 -36 16 -36 36v296c0 20 16 36 36 36h297z" />
|
97 |
+
<glyph glyph-name="uniF115" unicode="" horiz-adv-x="484"
|
98 |
+
d="M476 236c5 0 8 -4 8 -9v-62c0 -5 -3 -9 -8 -9h-40v-95v0v0c0 -5 -4 -9 -9 -9h-418c-5 0 -9 4 -9 9v0v0v262v0v0c0 5 4 9 9 9h418c5 0 9 -4 9 -9v0v0v-87h40zM385 103v177h-333v-177h333z" />
|
99 |
+
<glyph glyph-name="uniF116" unicode="" horiz-adv-x="484"
|
100 |
+
d="M476 236c5 0 8 -4 8 -9v-62c0 -5 -3 -9 -8 -9h-40v-95v0v0c0 -5 -4 -9 -9 -9h-418c-5 0 -9 4 -9 9v0v0v262v0v0c0 5 4 9 9 9h418c5 0 9 -4 9 -9v0v0v-87h40zM385 103v177h-333v-177h333zM78 128v129h281v-129h-281z" />
|
101 |
+
<glyph glyph-name="uniF117" unicode="" horiz-adv-x="484"
|
102 |
+
d="M476 236c5 0 8 -4 8 -9v-62c0 -5 -3 -9 -8 -9h-40v-95v0v0c0 -5 -4 -9 -9 -9h-418c-5 0 -9 4 -9 9v0v0v262v0v0c0 5 4 9 9 9h418c5 0 9 -4 9 -9v0v0v-87h40zM385 103v177h-333v-177h333zM276 255l-50 -126h-149v126h199z" />
|
103 |
+
<glyph glyph-name="uniF118" unicode="" horiz-adv-x="384"
|
104 |
+
d="M191 253c12 -3 50 -8 44 -33c-6 -24 -43 -12 -55 -9zM175 190c14 -4 60 -11 53 -38c-7 -26 -50 -13 -64 -9zM238 378c103 -26 166 -129 140 -232s-129 -166 -232 -140s-166 129 -140 232s129 166 232 140zM277 219c4 26 -16 40 -43 49l9 34l-21 6l-8 -34
|
105 |
+
c-6 1 -11 3 -17 4l8 34l-21 5l-9 -34c-5 1 -9 2 -13 3v0l-29 7l-6 -22l16 -4c9 -2 9 -9 9 -13l-9 -39c1 0 1 -1 2 -1c-1 0 -1 1 -2 1l-14 -55c-1 -3 -4 -6 -10 -5l-15 3l-11 -24l28 -6c5 -1 10 -3 15 -4l-9 -35l21 -6l9 35c6 -2 12 -3 17 -4l-9 -35l21 -5l9 35
|
106 |
+
c36 -7 63 -4 74 28c9 26 0 41 -19 51c14 3 24 12 27 31z" />
|
107 |
+
<glyph glyph-name="uniF119" unicode="" horiz-adv-x="260"
|
108 |
+
d="M213 205c31 -7 51 -26 47 -67c-5 -51 -44 -65 -98 -68v-47v0v0c0 -4 -2 -7 -6 -7v0v0v0h-20v0v0c-4 0 -6 3 -6 7v0v46c-8 0 -17 1 -26 1v-47v0v0c0 -4 -2 -7 -6 -7v0v0v0h-20v0v0c-4 0 -6 3 -6 7v0v47h-23h-42v0c-3 0 -6 4 -6 7v0v0l5 27h1c1 3 3 5 6 5v0v0h23
|
109 |
+
c9 0 12 7 13 11v85v0v61c-1 7 -6 14 -19 14h-24v0v0c-4 0 -6 2 -6 6v22c0 4 2 6 6 6v0h45v0h21v47v0v0c0 4 2 7 6 7v0v0v0v0h20v0v0c4 0 6 -3 6 -7v0v-46c9 0 17 1 26 1v45v0v0c0 4 2 7 6 7v0v0v0v0h20v0v0c4 0 6 -3 6 -7v0v-47c42 -4 75 -16 79 -54c3 -28 -9 -45 -28 -55z
|
110 |
+
M105 277v-64c18 0 76 -5 76 32c0 38 -58 32 -76 32zM105 109c22 0 91 -5 91 35c0 42 -69 36 -91 36v-71z" />
|
111 |
+
<glyph glyph-name="uniF11A" unicode="" horiz-adv-x="342"
|
112 |
+
d="M91 347c0 24 12 36 36 36s37 -12 37 -36s-13 -37 -37 -37s-36 13 -36 37zM341 15c1 -1 1 -2 1 -3c0 -4 -2 -6 -6 -6c-2 0 -4 1 -5 3v0v0v1l-107 184h-3c-3 0 -6 1 -8 2v0v0v1h-1l-35 20v0v0v0v0l-23 23v-76l45 -44v0l49 -85c3 -4 4 -8 4 -13c0 -6 -2 -11 -6 -15
|
113 |
+
s-9 -6 -15 -6c-8 0 -15 4 -19 11v0l-47 81l-37 37l-41 -72v0l-49 -49c-4 -5 -10 -8 -17 -8c-6 0 -11 2 -15 6s-6 9 -6 15s2 12 7 16v0l45 45l36 62v0v96l-19 -18v-52v0c0 -4 -1 -8 -4 -11s-7 -4 -11 -4c-3 0 -6 1 -8 2s-5 4 -6 6s-2 4 -2 7v0v62h1h-1c0 1 1 2 2 3v0l54 55
|
114 |
+
c7 8 17 11 27 11c12 0 21 -4 28 -13l47 -47l31 -18c6 -3 9 -7 9 -14c0 -3 0 -6 -2 -9l107 -186v0z" />
|
115 |
+
<glyph glyph-name="uniF11B" unicode="" horiz-adv-x="239"
|
116 |
+
d="M231 120c5 -4 8 -10 8 -17c0 -5 -3 -10 -6 -14v0l-1 -1v0l-102 -102v0c-4 -4 -10 -7 -16 -7c-12 0 -21 9 -21 21v0v0v1v0v124l-55 -55c-4 -5 -9 -7 -16 -7c-12 0 -22 10 -22 22c0 6 2 11 6 15v0v0v0l87 86v11l-86 86c-4 4 -7 9 -7 15c0 12 10 22 22 22c6 0 12 -3 16 -7
|
117 |
+
l55 -55v119c-1 2 -1 4 -1 6c0 12 9 22 21 22c7 0 13 -3 17 -8l101 -101c5 -4 8 -9 8 -16c0 -5 -3 -10 -6 -14v0v0c-1 -1 -1 -2 -2 -3l-72 -71zM186 103l-50 51v-101zM136 230l50 50l-50 50v-100z" />
|
118 |
+
<glyph glyph-name="uniF11C" unicode="" horiz-adv-x="242"
|
119 |
+
d="M186 197c31 -5 56 -35 56 -71c0 -44 -29 -79 -85 -79h-144c-7 0 -13 6 -13 13v264c0 7 6 13 13 13h140c55 0 83 -35 83 -74c0 -36 -23 -60 -50 -66zM62 283v-61h77c21 0 34 11 34 30c0 18 -13 31 -34 31h-77zM142 101c23 0 37 12 37 33c0 18 -13 33 -37 33h-80v-66h80z
|
120 |
+
" />
|
121 |
+
<glyph glyph-name="uniF11D" unicode="" horiz-adv-x="328"
|
122 |
+
d="M328 334v-327v0c0 -5 -3 -8 -8 -8v0v0h-312v0c-4 0 -8 4 -8 8v0v0v0v1v65v303v1c0 5 3 8 8 8h153v-66v-84v-29c0 -2 2 -4 4 -4c1 0 2 0 3 1v0l29 30h1c1 1 1 1 2 1s2 0 3 -1v0l29 -29c1 -1 2 -2 3 -2c2 0 4 2 4 4v29v84v66h29v0h1c5 0 8 -3 8 -8v-319v0c0 -5 -3 -8 -8 -8
|
123 |
+
h-1v0h-242v-19c1 -4 4 -7 8 -7h261v0c5 0 8 4 8 9v0v309h17v0c4 0 8 -4 8 -8v0z" />
|
124 |
+
<glyph glyph-name="uniF11E" unicode="" horiz-adv-x="328"
|
125 |
+
d="M328 334v-327v0c0 -5 -3 -8 -8 -8v0v0h-312v0c-4 0 -8 4 -8 8v0v0v0v1v65v303v1c0 5 3 8 8 8h260v0h1c5 0 8 -3 8 -8v-319v0c0 -5 -3 -8 -8 -8h-1v0h-242v-19c1 -4 4 -7 8 -7h261v0c5 0 8 4 8 9v0v309h17v0c4 0 8 -4 8 -8v0zM25 326v0v-64c0 -5 4 -8 9 -8h209v0
|
126 |
+
c5 0 8 3 8 8v0v64v0c0 5 -3 8 -8 8h-209c-5 0 -9 -3 -9 -8z" />
|
127 |
+
<glyph glyph-name="uniF11F" unicode="" horiz-adv-x="218"
|
128 |
+
d="M203 381c9 0 15 -7 15 -16v-34v-235v-82c0 -6 -5 -11 -11 -11c-3 0 -7 2 -9 4l-81 82v0c-2 2 -5 3 -8 3s-5 -1 -7 -3v0l-83 -83v0c-2 -2 -5 -3 -8 -3c-6 0 -11 5 -11 11v82v235v34c0 9 6 16 15 16h188z" />
|
129 |
+
<glyph glyph-name="uniF120" unicode="" horiz-adv-x="265"
|
130 |
+
d="M0 325c0 24 12 36 36 36s35 -12 35 -36s-11 -35 -35 -35s-36 11 -36 35zM194 325c0 24 11 36 35 36s36 -12 36 -36s-12 -35 -36 -35s-35 11 -35 35zM0 192c0 24 12 36 36 36s35 -12 35 -36s-11 -36 -35 -36s-36 12 -36 36zM194 192c0 24 11 36 35 36s36 -12 36 -36
|
131 |
+
s-12 -36 -36 -36s-35 12 -35 36zM0 59c0 24 12 36 36 36s35 -12 35 -36s-11 -36 -35 -36s-36 12 -36 36zM194 59c0 24 11 36 35 36s36 -12 36 -36s-12 -36 -36 -36s-35 12 -35 36z" />
|
132 |
+
<glyph glyph-name="uniF121" unicode="" horiz-adv-x="395"
|
133 |
+
d="M395 192c0 -5 -3 -9 -6 -11v0l-48 -28l27 -46v0c2 -4 1 -9 -1 -13s-6 -6 -10 -6v0h-54v-55h-1c0 -4 -2 -8 -6 -10s-9 -3 -13 -1v0l-47 27l-27 -47v0c-2 -3 -6 -6 -11 -6s-9 3 -11 6v0l-27 46l-49 -28v0c-4 -2 -8 -1 -12 1s-7 6 -7 10v0v55h-55v0c-4 0 -8 3 -10 7
|
134 |
+
s-3 8 -1 12v0l27 48l-47 28v0c-3 2 -6 6 -6 11s3 9 6 11v0l48 28l-27 46v0c-2 4 -1 9 1 13s6 6 10 6v0h54v55v0c0 4 3 8 7 10s8 3 12 1v0l48 -27l27 47v0c2 3 6 6 11 6s9 -3 11 -6v0l27 -46l49 28v0c4 2 8 1 12 -1s7 -6 7 -10v0v-55h55v0c4 0 8 -3 10 -7s3 -8 1 -12v-1
|
135 |
+
l-27 -47l47 -28v0c3 -2 6 -6 6 -11zM165 134l12 7l-34 59l-12 -7l21 -37l-49 21l-13 -8l34 -59l13 8l-22 38zM189 148l42 24l-7 11l-29 -17l-8 13l29 17l-6 11l-29 -17l-7 13l29 17l-6 11l-42 -24zM286 204l13 7l-17 69l-14 -8l14 -49l-36 36l-9 -5l13 -49l-35 36l-14 -8
|
136 |
+
l51 -49l13 8l-13 46z" />
|
137 |
+
<glyph glyph-name="uniF122" unicode="" horiz-adv-x="395"
|
138 |
+
d="M167 163l-5 31l24 -20zM395 192c0 -5 -3 -9 -6 -11v0l-48 -28l27 -46v0c2 -4 1 -9 -1 -13s-6 -6 -10 -6v0h-54v-55h-1c0 -4 -2 -8 -6 -10s-9 -3 -13 -1v0l-47 27l-27 -47v0c-2 -3 -6 -6 -11 -6s-9 3 -11 6v0l-27 46l-49 -28v0c-4 -2 -8 -1 -12 1s-7 6 -7 10v0v55h-55v0
|
139 |
+
c-4 0 -8 3 -10 7s-3 8 -1 12v0l27 48l-47 28v0c-3 2 -6 6 -6 11s3 9 6 11v0l48 28l-27 46v0c-2 4 -1 9 1 13s6 6 10 6v0h54v55v0c0 4 3 8 7 10s8 3 12 1v0l48 -27l27 47v0c2 3 6 6 11 6s9 -3 11 -6v0l27 -46l49 28v0c4 2 8 1 12 -1s7 -6 7 -10v0v-55h55v0c4 0 8 -3 10 -7
|
140 |
+
s3 -8 1 -12v-1l-27 -47l47 -28v0c3 -2 6 -6 6 -11zM134 114c16 9 18 22 12 33c-13 22 -43 -4 -48 5c-2 4 0 8 5 11c6 3 14 5 21 3l1 14c-9 2 -18 0 -27 -5c-14 -8 -18 -21 -12 -31c13 -22 42 4 48 -6c2 -3 1 -8 -6 -12c-8 -5 -17 -5 -24 -3l-1 -14c9 -2 20 -2 31 5zM205 157
|
141 |
+
l14 8l-57 46l-15 -9l11 -72l14 8l-2 12l25 15zM224 168l38 22l-7 11l-25 -15l-27 48l-13 -7zM270 195l42 24l-6 11l-29 -17l-8 13l28 17l-6 11l-29 -17l-7 13l29 17l-6 11l-42 -24z" />
|
142 |
+
<glyph glyph-name="uniF123" unicode="" horiz-adv-x="395"
|
143 |
+
d="M395 192c0 -5 -3 -9 -6 -11v0l-48 -28l27 -46v0c2 -4 1 -9 -1 -13s-6 -6 -10 -6v0h-54v-55h-1c0 -4 -2 -8 -6 -10s-9 -3 -13 -1v0l-47 27l-27 -47v0c-2 -3 -6 -6 -11 -6s-9 3 -11 6v0l-27 46l-49 -28v0c-4 -2 -8 -1 -12 1s-7 6 -7 10v0v55h-55v0c-4 0 -8 3 -10 7
|
144 |
+
s-3 8 -1 12v0l27 48l-47 28v0c-3 2 -6 6 -6 11s3 9 6 11v0l48 28l-27 46v0c-2 4 -1 9 1 13s6 6 10 6v0h54v55v0c0 4 3 8 7 10s8 3 12 1v0l48 -27l27 47v0c2 3 6 6 11 6s9 -3 11 -6v0l27 -46l49 28v0c4 2 8 1 12 -1s7 -6 7 -10v0v-55h55v0c4 0 8 -3 10 -7s3 -8 1 -12v-1
|
145 |
+
l-27 -47l47 -28v0c3 -2 6 -6 6 -11z" />
|
146 |
+
<glyph glyph-name="uniF124" unicode="" horiz-adv-x="326"
|
147 |
+
d="M320 246c4 0 6 -3 6 -7v-225c0 -4 -2 -6 -6 -6h-314c-4 0 -6 2 -6 6v225c0 4 2 7 6 7h314zM109 55c34 0 56 18 56 44c0 18 -13 26 -25 31c14 7 21 17 21 31c0 18 -18 30 -44 30c-15 0 -27 -2 -37 -7c-1 -1 -2 -2 -2 -3l3 -22c0 -1 1 -2 2 -2h3c8 4 16 6 24 6
|
148 |
+
c15 0 15 -6 15 -9c0 -5 -3 -11 -24 -13c-2 0 -3 -1 -3 -3v-22c0 -2 1 -3 3 -3c25 -1 30 -7 30 -16c0 -8 -9 -13 -20 -13s-19 1 -29 5c-1 0 -2 1 -3 0s-1 -1 -1 -2l-3 -22c0 -1 1 -3 2 -4c9 -4 21 -6 32 -6zM245 61v0v125c0 2 -1 3 -3 3h-13h-2l-38 -19c-1 -1 -2 -2 -2 -3
|
149 |
+
l3 -22c0 -1 1 -3 2 -3c1 -1 2 0 3 0l17 7v-88c0 -2 1 -4 3 -4h27c2 0 3 2 3 4zM320 347c4 0 6 -2 6 -6v-66c0 -4 -2 -7 -6 -7h-314c-4 0 -6 3 -6 7v66c0 4 2 6 6 6h34v-16c0 -17 9 -34 36 -34s36 17 36 34v16h102v-16c0 -17 9 -34 36 -34s36 17 36 34v16h34zM76 318
|
150 |
+
c-11 0 -15 4 -15 13v16v16c0 9 4 13 15 13s15 -4 15 -13v-16v-16c0 -9 -4 -13 -15 -13zM250 318c-11 0 -15 4 -15 13v16v16c0 9 4 13 15 13s15 -4 15 -13v-16v-16c0 -9 -4 -13 -15 -13z" />
|
151 |
+
<glyph glyph-name="uniF125" unicode="" horiz-adv-x="415"
|
152 |
+
d="M159 175c0 32 17 49 49 49s48 -17 48 -49s-16 -48 -48 -48s-49 16 -49 48zM396 324c5 0 9 -1 13 -5s6 -9 6 -14v-259c0 -5 -2 -10 -6 -14s-8 -5 -13 -5v-1h-377v1c-5 0 -9 1 -13 5s-6 9 -6 14v259c0 5 2 10 6 14s8 5 13 5v0h85v15c0 5 2 9 6 13s8 6 13 6h168
|
153 |
+
c5 0 10 -2 14 -6s5 -8 5 -13v-15h86v0zM209 77c18 0 34 4 49 13s27 21 36 36s13 31 13 49c0 27 -10 51 -29 70s-42 29 -69 29s-51 -10 -70 -29s-29 -43 -29 -70s10 -50 29 -69s43 -29 70 -29zM389 248v0v51h-75v-51h75z" />
|
154 |
+
<glyph glyph-name="uniF126" unicode="" horiz-adv-x="397"
|
155 |
+
d="M393 293c5 -5 5 -13 0 -18l-250 -250c-2 -2 -6 -4 -9 -4v1l-1 -1c-3 0 -6 2 -8 4l-121 121c-2 2 -4 6 -4 9s2 7 4 9l66 66c5 5 12 5 17 0l47 -47l176 176c2 2 5 4 8 4s7 -2 9 -4z" />
|
156 |
+
<glyph glyph-name="uniF127" unicode="" horiz-adv-x="381"
|
157 |
+
d="M379 323c3 -3 3 -8 0 -11l-209 -209c-2 -2 -4 -3 -6 -3v0v0c-2 0 -4 1 -6 3l-81 80c-2 2 -3 4 -3 6s1 4 3 6l44 44c3 3 9 3 12 0l31 -31l159 160c2 2 4 2 6 2s4 0 6 -2zM277 173l51 52v-185v0c0 -14 -12 -26 -26 -26v0h-1v0v0h-275v0v0v0v0c-14 0 -26 12 -26 26v0v276v0
|
158 |
+
c0 14 12 26 26 26h1v0h234l-51 -51h-159v-226h226v108z" />
|
159 |
+
<glyph glyph-name="uniF128" unicode="" horiz-adv-x="315"
|
160 |
+
d="M315 360v0v-362v0v0c0 -15 -12 -27 -27 -27h-1h-259v0h-1c-15 0 -27 12 -27 27v0v0v362v0v0c0 15 12 27 27 27v0h75v17v1c0 5 3 8 8 8v0v0h95v0c5 0 8 -3 8 -8v0v0v-18h75v0c15 0 27 -12 27 -27v0v0zM264 22v0v314h-25v-16v0c0 -5 -5 -9 -10 -9h-143v0v0
|
161 |
+
c-5 0 -10 4 -10 9v1v15h-25v-314h213zM102 237v0v0v-13v0v0c0 -3 -3 -6 -6 -6h-1v0h-12v0c-3 0 -7 3 -7 6v0v0v13c0 3 4 7 7 7h12v-1l1 1c3 0 6 -4 6 -7zM239 237v0v0v-13v0v0c0 -3 -4 -6 -7 -6h-98v0c-3 0 -7 3 -7 6v0v0v13c0 3 4 7 7 7h98v0c3 0 7 -4 7 -7zM102 186v0v0
|
162 |
+
v-13v0v0c0 -3 -3 -6 -6 -6h-1v0h-12v0c-3 0 -7 3 -7 6v0v0v13c0 3 4 7 7 7h12v-1l1 1c3 0 6 -4 6 -7zM239 186v0v0v-13v0v0c0 -3 -4 -6 -7 -6h-98v0c-3 0 -7 3 -7 6v0v0v13c0 3 4 7 7 7h98v0c3 0 7 -4 7 -7zM102 135v0v0v-13v0v0c0 -3 -3 -6 -6 -6h-1v0h-12v0
|
163 |
+
c-3 0 -7 3 -7 6v0v0v13c0 3 4 6 7 6h12v0h1c3 0 6 -3 6 -6zM239 135v0v0v-13v0v0c0 -3 -4 -6 -7 -6h-98v0c-3 0 -7 3 -7 6v0v0v13c0 3 4 6 7 6h98v0c3 0 7 -3 7 -6z" />
|
164 |
+
<glyph glyph-name="uniF129" unicode="" horiz-adv-x="392"
|
165 |
+
d="M391 228c2 -2 2 -7 0 -9l-116 -116v0v0l-59 -16v0c-2 -1 -5 0 -7 2s-2 4 -1 6v0l16 59v0v0l115 116c2 2 7 2 9 0zM227 107l35 9l-25 26zM309 73c3 0 6 -3 6 -6v0v0v-69v0v0c0 -15 -12 -27 -27 -27h-1h-259v0h-1c-15 0 -27 12 -27 27v0v0v362v0v0c0 15 12 27 27 27v0h75
|
166 |
+
v17v1c0 5 3 8 8 8v0v0h95v0c4 0 8 -3 8 -8v0v0v-18h75v0c15 0 27 -12 27 -27v0v0v-68v0c0 -3 -3 -7 -6 -7v0h-39c-3 0 -6 4 -6 7v0v44h-25v-16v0c0 -5 -5 -9 -10 -9h-143v0v0c-5 0 -10 4 -10 9v1v15h-25v-314h213v45v0c0 3 3 6 6 6v0v0h39v0z" />
|
167 |
+
<glyph glyph-name="uniF12A" unicode="" horiz-adv-x="315"
|
168 |
+
d="M315 360v0v-362v0v0c0 -15 -12 -27 -27 -27h-1h-259v0h-1c-15 0 -27 12 -27 27v0v0v362v0v0c0 15 12 27 27 27v0h75v17v1c0 5 3 8 8 8v0v0h95v0c5 0 8 -3 8 -8v0v0v-18h75v0c15 0 27 -12 27 -27v0v0zM264 22v0v314h-25v-16v0c0 -5 -5 -9 -10 -9h-143v0v0
|
169 |
+
c-5 0 -10 4 -10 9v1v15h-25v-314h213z" />
|
170 |
+
<glyph glyph-name="uniF12B" unicode="" horiz-adv-x="384"
|
171 |
+
d="M192 333c-78 0 -141 -63 -141 -141s63 -141 141 -141s141 63 141 141s-63 141 -141 141zM192 384v0c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM290 263c4 -4 4 -10 0 -14l-91 -91c-2 -2 -4 -3 -7 -3v0c-3 0 -5 1 -7 3l-62 62
|
172 |
+
c-2 2 -3 4 -3 7s1 6 3 8l20 20c4 4 10 4 14 0l35 -36l64 64c4 4 10 4 14 0z" />
|
173 |
+
<glyph glyph-name="uniF12C" unicode="" horiz-adv-x="342"
|
174 |
+
d="M333 300c5 -1 9 -6 9 -11v-94v-6v-94c0 -5 -4 -10 -9 -11l-160 -32h-4l-160 32c-5 1 -9 6 -9 11v94v6v94c0 5 4 10 9 11l160 32h4zM149 150c1 2 1 5 0 7s-3 4 -5 5l-19 8c-2 1 -4 1 -6 0s-4 -3 -5 -5c-2 -4 -7 -14 -17 -14c-14 0 -24 17 -24 41s10 41 24 41
|
175 |
+
c9 0 14 -7 17 -13c2 -4 8 -6 12 -4l18 8c2 1 4 3 5 5s0 4 -1 6c-11 23 -28 35 -51 35c-38 0 -64 -31 -64 -78s26 -78 64 -78c23 0 41 12 52 36zM308 150c1 2 1 5 0 7s-3 4 -5 5l-18 8c-2 1 -5 1 -7 0s-4 -3 -5 -5c-2 -4 -6 -14 -16 -14c-14 0 -25 17 -25 41s11 41 25 41
|
176 |
+
c9 0 14 -7 17 -13c2 -4 7 -6 11 -4l18 8c2 1 4 3 5 5s0 4 -1 6c-11 23 -27 35 -50 35c-38 0 -65 -31 -65 -78s27 -78 65 -78c23 0 40 12 51 36z" />
|
177 |
+
<glyph glyph-name="uniF12D" unicode="" horiz-adv-x="473"
|
178 |
+
d="M387 206c46 6 86 -35 86 -84c0 -18 -6 -35 -16 -50c-3 -4 -7 -7 -12 -7h-414c-5 0 -10 3 -13 8c-12 20 -18 42 -18 66c0 66 49 121 110 121c8 0 15 -1 23 -3c27 39 70 62 115 62c65 0 121 -47 139 -113z" />
|
179 |
+
<glyph glyph-name="uniF12E" unicode="" horiz-adv-x="470"
|
180 |
+
d="M302 166h92v-93v0c-2 -8 -9 -14 -17 -14h-225l-44 -44c-3 -5 -9 -8 -15 -8c-10 0 -17 7 -17 17v35h-59v0c-8 0 -15 6 -17 14v0v288v0c1 9 8 16 17 16v0h360c9 0 16 -7 17 -16v0v-91h-92c-5 0 -9 -4 -9 -9v0v-86v0c0 -5 4 -9 9 -9zM461 245c5 0 9 -4 9 -9v-36
|
181 |
+
c0 -5 -4 -8 -9 -8h-133c-5 0 -9 3 -9 8v36c0 5 4 9 9 9h133z" />
|
182 |
+
<glyph glyph-name="uniF12F" unicode="" horiz-adv-x="394"
|
183 |
+
d="M394 361v0v-288v0c-2 -8 -9 -14 -17 -14h-225l-44 -44c-3 -5 -9 -8 -15 -8c-10 0 -17 7 -17 17v35h-59v0c-8 0 -15 6 -17 14v0v288v0c1 9 8 16 17 16v0h360c9 0 16 -7 17 -16zM87 189c14 0 26 12 26 26s-10 24 -23 24c-3 0 -5 0 -6 -1c3 12 13 25 24 31v0h1v0
|
184 |
+
c1 1 2 2 2 3s-1 2 -2 3v0l-14 9v0c-1 0 -1 1 -2 1s-1 -1 -2 -1v0c-21 -15 -34 -36 -34 -61c0 -22 14 -34 30 -34zM154 189c14 0 27 12 27 26s-10 24 -23 24c-3 0 -6 0 -7 -1c3 12 14 25 25 31v0v0v0c1 1 2 2 2 3s0 2 -1 3v0l-14 9v0c-1 0 -1 1 -2 1s-1 -1 -2 -1v0
|
185 |
+
c-21 -15 -34 -36 -34 -61c0 -22 13 -34 29 -34zM235 152c21 15 35 37 35 62c0 22 -14 34 -30 34c-14 0 -26 -13 -26 -27s9 -24 22 -24c3 0 6 0 7 1c-3 -12 -14 -25 -25 -31v0v0v0c-1 -1 -2 -2 -2 -3s1 -2 2 -3h-1l14 -9v0c1 0 2 -1 3 -1s0 1 1 1v0zM303 152
|
186 |
+
c21 15 34 37 34 62c0 22 -13 34 -29 34c-14 0 -27 -13 -27 -27s10 -24 23 -24c3 0 6 0 7 1c-3 -12 -14 -25 -25 -31v0v0v0c-1 -1 -2 -2 -2 -3s0 -2 1 -3v0l14 -9v0c1 0 1 -1 2 -1s1 1 2 1v0z" />
|
187 |
+
<glyph glyph-name="uniF130" unicode="" horiz-adv-x="394"
|
188 |
+
d="M394 361v0v-288v0c-2 -8 -9 -14 -17 -14h-225l-44 -44c-3 -5 -9 -8 -15 -8c-10 0 -17 7 -17 17v35h-59v0c-8 0 -15 6 -17 14v0v288v0c1 9 8 16 17 16v0h360c9 0 16 -7 17 -16zM305 155v124l-65 -30v28c0 7 -6 12 -13 12h-110c-7 0 -12 -5 -12 -12v-120c0 -7 5 -12 12 -12
|
189 |
+
h110c7 0 13 5 13 12v29z" />
|
190 |
+
<glyph glyph-name="uniF131" unicode="" horiz-adv-x="394"
|
191 |
+
d="M394 361v0v-288v0c-2 -8 -9 -14 -17 -14h-225l-44 -44c-3 -5 -9 -8 -15 -8c-10 0 -17 7 -17 17v35h-59v0c-8 0 -15 6 -17 14v0v288v0c1 9 8 16 17 16v0h360c9 0 16 -7 17 -16z" />
|
192 |
+
<glyph glyph-name="uniF132" unicode="" horiz-adv-x="461"
|
193 |
+
d="M461 357v0v-217v0c-1 -6 -7 -11 -13 -11v0h-44v-26c0 -7 -6 -13 -13 -13c-4 0 -9 3 -11 6l-33 33h-57v150v0c-1 6 -5 10 -11 10h-115v68v0c1 7 6 11 13 11h271v0c7 0 12 -5 13 -11zM253 264c6 0 11 -5 12 -11v0v-193h-1c-1 -5 -5 -10 -11 -10h-151l-30 -29
|
194 |
+
c-2 -3 -5 -5 -9 -5c-6 0 -12 5 -12 11v23h-40v0c-5 0 -10 5 -11 10v0v193v0c1 6 5 11 11 11v0h242z" />
|
195 |
+
<glyph glyph-name="uniF133" unicode="" horiz-adv-x="384"
|
196 |
+
d="M192 384c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM192 51c78 0 141 63 141 141s-63 141 -141 141s-141 -63 -141 -141s63 -141 141 -141zM267 281c4 2 9 1 12 -2s4 -8 2 -12l-60 -100l-3 -3l-101 -61c-2 -1 -3 -1 -5 -1s-5 1 -7 3v0
|
197 |
+
c-3 3 -4 8 -2 12l61 101l3 3z" />
|
198 |
+
<glyph glyph-name="uniF134" unicode="" horiz-adv-x="384"
|
199 |
+
d="M192 384c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM193 333v-282c78 0 140 63 140 141s-62 141 -140 141z" />
|
200 |
+
<glyph glyph-name="uniF135" unicode="" horiz-adv-x="378"
|
201 |
+
d="M378 314v-1v0v-37h-378v36v2c0 8 6 13 14 13h1h349h1c8 0 13 -5 13 -13zM0 70v155h378v-155v0c0 -7 -6 -13 -13 -13v0h-350v0h-1c-8 0 -14 5 -14 13v0v0z" />
|
202 |
+
<glyph glyph-name="uniF136" unicode="" horiz-adv-x="419"
|
203 |
+
d="M405 84c8 0 14 -6 14 -14v-23c0 -8 -6 -14 -14 -14v0h-37v-36c0 -8 -6 -14 -14 -14h-23c-8 0 -14 6 -14 14v36h-241v0c-13 0 -25 12 -25 25v1v0v241h-37v0c-8 0 -14 6 -14 14v23c0 8 6 14 14 14v0h37v36v0c0 8 6 14 14 14h23c8 0 14 -6 14 -14v0v-36h241v0
|
204 |
+
c13 0 25 -12 25 -25v-1v0v-241h37v0zM102 84v0h215v216h-215v-216z" />
|
205 |
+
<glyph glyph-name="uniF137" unicode="" horiz-adv-x="348"
|
206 |
+
d="M348 38v-19v0v0c0 -9 -6 -16 -15 -16h-317v0c-9 0 -16 7 -16 16v0v0v19v0c0 9 7 16 16 16v0h317c9 0 15 -7 15 -16v0zM44 251c1 -1 1 0 2 -1l34 -35l82 81v0c3 3 7 5 12 5s9 -2 12 -5v0l82 -81l35 35c0 1 0 2 1 2h1v0c3 2 6 4 10 4c9 0 17 -8 17 -17v-3v-145v0v0v-2v0
|
207 |
+
c-1 -8 -8 -14 -17 -14v0v-1h-282v0v0c-9 0 -15 7 -16 15h-1v150h1c0 9 7 16 16 16c4 0 8 -1 11 -4v0v0zM292 208v0h-1h1zM2 309c0 21 10 31 31 31s30 -10 30 -31s-9 -31 -30 -31s-31 10 -31 31zM283 309c0 21 10 31 31 31s31 -10 31 -31s-10 -31 -31 -31s-31 10 -31 31z
|
208 |
+
M145 350c0 21 10 31 31 31s31 -10 31 -31s-10 -31 -31 -31s-31 10 -31 31z" />
|
209 |
+
<glyph glyph-name="uniF138" unicode="" horiz-adv-x="325"
|
210 |
+
d="M0 375h325l-30 -330l-132 -36l-133 36zM260 268l4 40h-102h-103l5 -40h98h6l-6 -2l-94 -40l3 -39h91h49l-3 -52l-46 -13v0v0l-44 11l-3 32v0h-41v0l5 -62l83 -25v0h1l82 25l11 123h-94v0v0z" />
|
211 |
+
<glyph glyph-name="uniF139" unicode="" horiz-adv-x="422"
|
212 |
+
d="M124 323v-262v0v0c0 -12 -11 -22 -23 -22v0h-80v1c-12 0 -21 9 -21 21v0v262v0c0 12 9 22 21 22v0h80v0c12 0 22 -10 22 -22h1zM62 65c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM98 180v139h-72v-139h72zM273 323v-262v0v0c0 -12 -10 -22 -22 -22
|
213 |
+
v0h-81v1c-12 0 -21 9 -21 21v0v262v0c0 12 9 22 21 22v0h81v0c12 0 22 -10 22 -22v0zM211 65c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM247 180v0v139h-72v-139h72zM422 323v-262v0v0c0 -12 -10 -22 -22 -22v0h-81v1c-12 0 -21 9 -21 21v0v262v0
|
214 |
+
c0 12 9 22 21 22v0h81v0c12 0 22 -10 22 -22v0zM360 65c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM396 180v139h-72v-139h72z" />
|
215 |
+
<glyph glyph-name="uniF13A" unicode="" horiz-adv-x="348"
|
216 |
+
d="M348 329v0v-274v0c0 -20 -17 -37 -37 -37v0h-274v0c-20 0 -37 17 -37 37v0v274v0c0 20 17 37 37 37v0h274v0c20 -1 37 -17 37 -37zM87 71c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36zM87 243c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36
|
217 |
+
s16 -36 36 -36zM174 156c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36zM261 69c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36zM261 243c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36z" />
|
218 |
+
<glyph glyph-name="uniF13B" unicode="" horiz-adv-x="348"
|
219 |
+
d="M348 329v0v-274v0c0 -20 -17 -37 -37 -37v0h-274v0c-20 0 -37 17 -37 37v0v274v0c0 20 17 37 37 37v0h274v0c20 -1 37 -17 37 -37zM87 71c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36zM87 243c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36
|
220 |
+
s16 -36 36 -36zM261 69c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36zM261 243c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36z" />
|
221 |
+
<glyph glyph-name="uniF13C" unicode="" horiz-adv-x="348"
|
222 |
+
d="M348 329v0v-274v0c0 -20 -17 -37 -37 -37v0h-274v0c-20 0 -37 17 -37 37v0v274v0c0 20 17 37 37 37v0h274v0c20 -1 37 -17 37 -37zM174 153c22 0 39 17 39 39s-17 39 -39 39s-39 -17 -39 -39s17 -39 39 -39z" />
|
223 |
+
<glyph glyph-name="uniF13D" unicode="" horiz-adv-x="348"
|
224 |
+
d="M348 329v0v-274v0c0 -20 -17 -37 -37 -37v0h-274v0c-20 0 -37 17 -37 37v0v274v0c0 20 17 37 37 37v0h274v0c20 -1 37 -17 37 -37zM87 71c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36zM87 156c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36
|
225 |
+
s16 -36 36 -36zM87 243c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36zM261 69c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36zM261 156c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36zM261 243c20 0 36 16 36 36
|
226 |
+
s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36z" />
|
227 |
+
<glyph glyph-name="uniF13E" unicode="" horiz-adv-x="348"
|
228 |
+
d="M348 329v0v-274v0c0 -20 -17 -37 -37 -37v0h-274v0c-20 0 -37 17 -37 37v0v274v0c0 20 17 37 37 37v0h274v0c20 -1 37 -17 37 -37zM87 243c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36zM174 156c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36
|
229 |
+
s16 -36 36 -36zM261 69c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36z" />
|
230 |
+
<glyph glyph-name="uniF13F" unicode="" horiz-adv-x="348"
|
231 |
+
d="M348 329v0v-274v0c0 -20 -17 -37 -37 -37v0h-274v0c-20 0 -37 17 -37 37v0v274v0c0 20 17 37 37 37v0h274v0c20 -1 37 -17 37 -37zM87 243c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36zM261 69c20 0 36 16 36 36s-16 36 -36 36s-36 -16 -36 -36
|
232 |
+
s16 -36 36 -36z" />
|
233 |
+
<glyph glyph-name="uniF140" unicode="" horiz-adv-x="333"
|
234 |
+
d="M333 295v0v-144v0c0 -7 -5 -13 -12 -13v0h-71v-58v-1v-17v0c0 -16 -13 -29 -29 -29c-11 0 -21 6 -26 15v0l-50 86v0v0v1l-3 3h-51h-1c-7 0 -13 6 -13 13v0v0v144v0v43v0v1v0v0c0 7 6 12 13 12h1h185c2 0 4 0 5 -1v0l50 -50v0c1 -1 2 -3 2 -5v0zM51 316v-138v-2
|
235 |
+
c0 -7 -6 -13 -13 -13v0v0v0v0h-25v0c-7 0 -12 6 -13 12v0v141v0c0 7 6 12 13 12v0h24l1 1c7 0 13 -6 13 -13v0v0z" />
|
236 |
+
<glyph glyph-name="uniF141" unicode="" horiz-adv-x="447"
|
237 |
+
d="M447 294v-204v0v0c0 -11 -9 -20 -20 -20v0v0h-407c-11 0 -20 9 -20 20v0v0v204v0c0 11 9 20 20 20h407v0v0c11 0 20 -9 20 -20v0zM371 266v0v0c0 -2 2 -4 4 -4v0v0h21v-21v0c0 -2 2 -4 4 -4v0h17v0h1c2 0 4 2 4 4v0v43c0 2 -2 4 -4 4h-1v0h-42v0v0c-2 0 -4 -2 -4 -4v-18z
|
238 |
+
M77 118v0v0c0 2 -2 4 -4 4h-1v0h-21v21v0c0 2 -2 4 -4 4v0h-17v0v0c-2 0 -4 -2 -4 -4v0v-43c0 -2 2 -4 4 -4v0v0h42v0h1c2 0 4 2 4 4v18zM77 284v0v0c0 2 -2 4 -4 4h-43c-2 0 -4 -2 -4 -4v0v0v-43v0v0c0 -2 2 -4 4 -4h17v0v0c2 0 4 2 4 4v0v0v21h22v0c2 0 4 3 4 5v0v17z
|
239 |
+
M224 96c53 0 96 43 96 96s-43 96 -96 96s-96 -43 -96 -96s43 -96 96 -96zM422 143v0v0c0 2 -2 4 -4 4h-18v0c-2 0 -4 -2 -4 -4v0v0v-21h-21v0c-2 0 -4 -3 -4 -5v0v-17v0v0c0 -2 2 -4 4 -4h43c2 0 4 2 4 4v0v0v43zM224 263c39 0 70 -32 70 -71c0 -15 -4 -29 -12 -40v0
|
240 |
+
c0 3 -2 7 -4 8l-28 13l-12 6c5 3 9 8 12 14c2 5 3 10 3 16c0 3 0 6 -1 9c-4 14 -14 25 -28 25c-13 0 -25 -10 -29 -24c-1 -3 -1 -6 -1 -10c0 -6 2 -12 4 -17c3 -6 7 -11 12 -14l-11 -5l-29 -13c-3 -1 -4 -5 -4 -8v0c-8 11 -13 25 -13 40c0 39 32 71 71 71z" />
|
241 |
+
<glyph glyph-name="uniF142" unicode="" horiz-adv-x="209"
|
242 |
+
d="M126 219c39 -10 83 -26 83 -77c0 -42 -28 -73 -83 -79v-28v0c0 -3 -3 -6 -6 -6h-23v0c-3 0 -6 3 -6 6v28c-39 3 -68 18 -89 39v0c-1 1 -2 3 -2 5c0 1 0 2 1 3v0l22 32v0c1 2 3 3 5 3c1 0 2 0 3 -1v0l1 -1v0c14 -14 34 -28 59 -32v58c-39 9 -81 25 -81 76
|
243 |
+
c0 38 30 70 81 75v29c0 3 3 6 6 6h23c3 0 6 -3 6 -6v0v-30c30 -3 57 -14 77 -33c1 -1 2 -2 2 -4c0 -1 -1 -3 -2 -4v0l-21 -31h-1c-1 -1 -2 -2 -4 -2c-1 0 -3 0 -4 1v0c-14 12 -30 20 -47 24v-51zM91 227v46c-17 -2 -26 -11 -26 -24c0 -11 11 -17 26 -22zM126 111
|
244 |
+
c19 4 29 14 29 26s-12 19 -29 24v-50z" />
|
245 |
+
<glyph glyph-name="uniF143" unicode="" horiz-adv-x="404"
|
246 |
+
d="M379 194c14 0 25 -11 25 -25v-144c0 -14 -11 -25 -25 -25h-354c-14 0 -25 11 -25 25v144c0 14 11 25 25 25h90c11 0 21 -7 24 -17c9 -28 34 -46 63 -46s54 18 63 46c3 10 13 17 24 17h90zM197 181l-70 98c-1 2 -2 5 -1 7s3 3 6 3h33v88c0 4 3 7 7 7h60c4 0 7 -3 7 -7v-88
|
247 |
+
h33c3 0 5 -1 6 -3s0 -5 -1 -7l-69 -98c-1 -2 -4 -3 -6 -3v0c-2 0 -4 1 -5 3z" />
|
248 |
+
<glyph glyph-name="uniF144" unicode="" horiz-adv-x="382"
|
249 |
+
d="M13 141c-7 0 -13 6 -13 13c0 4 2 7 4 9l176 177c2 3 7 5 11 5s7 -2 9 -5v0l178 -177c3 -2 4 -5 4 -9c0 -7 -5 -13 -12 -13v0h-357v0zM382 52v0c0 -7 -6 -13 -13 -13v0h-357v0c-7 1 -12 6 -12 13v1v49v0c0 7 5 12 12 13v0l357 1v0c7 0 13 -6 13 -13v0v0v-51z" />
|
250 |
+
<glyph glyph-name="uniF145" unicode="" horiz-adv-x="493"
|
251 |
+
d="M389 393c7 0 13 -6 13 -13v-376c0 -7 -6 -13 -13 -13v0v0h-376v0v0v0v0c-7 0 -13 6 -13 13v376c0 7 6 13 13 13v0h376v0v0zM51 341v-298h299v298h-299zM490 120c1 0 2 0 3 -1s0 -2 -1 -3l-31 -44c-1 -1 -1 -2 -2 -2v0c-1 0 -2 1 -3 2l-31 44c-1 1 -2 2 -1 3s2 1 3 1h15
|
252 |
+
v40c0 2 1 3 3 3h27c2 0 3 -1 3 -3v-40h15zM427 264c-1 0 -2 0 -3 1s0 2 1 3l31 44c1 1 2 2 3 2v0c1 0 1 -1 2 -2l32 -44c1 -1 1 -2 0 -3s-2 -1 -3 -1h-15v-40c0 -2 -1 -3 -3 -3h-27c-2 0 -3 1 -3 3v40h-15zM109 284c0 17 8 26 25 26s25 -9 25 -26s-8 -25 -25 -25
|
253 |
+
s-25 8 -25 25zM182 252c6 -1 11 -6 11 -12v-72v0c0 -3 -1 -5 -3 -7c-4 -4 -12 -4 -16 0c-2 2 -3 4 -3 7v0v50v0c0 2 -1 4 -3 4s-4 -2 -4 -4v0v-32v-33v-66c0 -7 -5 -13 -12 -13s-13 6 -13 13v66v0c0 2 -1 4 -3 4s-4 -2 -4 -4v0v-66c0 -7 -5 -13 -12 -13s-13 6 -13 13v99v32
|
254 |
+
v0v0c0 2 -1 4 -3 4s-3 -2 -3 -4v0v0v-50v0c0 -3 -2 -5 -4 -7c-4 -4 -11 -4 -15 0c-2 2 -3 4 -3 7v0v72v0c0 7 5 12 12 12v0h91v0zM238 284c0 17 9 26 26 26s25 -9 25 -26s-8 -25 -25 -25s-26 8 -26 25zM312 252c6 -1 10 -6 10 -12v-72v0c0 -3 -1 -5 -3 -7
|
255 |
+
c-4 -4 -11 -4 -15 0c-2 2 -3 4 -3 7v0v50v0c0 2 -1 4 -3 4s-4 -2 -4 -4v0v-32v-33v-66c0 -7 -5 -13 -12 -13s-13 6 -13 13v66v0c0 2 -1 4 -3 4s-4 -2 -4 -4v0v-66c0 -7 -5 -13 -12 -13s-13 6 -13 13v99v32v0v0c0 2 -1 4 -3 4s-4 -2 -4 -4v0v0v-50v0c0 -3 -1 -5 -3 -7
|
256 |
+
c-4 -4 -11 -4 -15 0c-2 2 -3 4 -3 7v0v72v0c0 7 5 12 12 12v0h91v0z" />
|
257 |
+
<glyph glyph-name="uniF146" unicode="" horiz-adv-x="283"
|
258 |
+
d="M280 125c3 -2 3 -5 2 -8v0v0v0v0c-19 -34 -55 -67 -115 -67c-68 0 -122 38 -140 98h-21v-1c-3 0 -6 3 -6 6v21c0 3 3 6 6 6v0h15v12v13h-15v0c-3 0 -6 3 -6 6v21c0 3 3 6 6 6v0h21c19 59 73 96 140 96c60 0 96 -33 115 -67v0v0v0v0c1 -3 1 -6 -2 -8h-1v0l-40 -19v0
|
259 |
+
c-3 -1 -5 -1 -7 2v0c-12 22 -37 40 -65 40c-34 0 -61 -17 -75 -44h100v0c3 0 6 -3 6 -6v-21c0 -3 -3 -6 -6 -6v0v0v0v0h-110c-1 -5 -1 -8 -1 -13v-12h111v0c3 0 6 -3 6 -6v-21c0 -3 -3 -6 -6 -6v0h-101c14 -28 41 -45 76 -45c28 0 52 17 64 39l1 1c2 3 4 3 7 2v0l40 -19v0h1
|
260 |
+
z" />
|
261 |
+
<glyph glyph-name="uniF147" unicode="" horiz-adv-x="365"
|
262 |
+
d="M359 204c4 -2 6 -6 6 -11c0 -4 -2 -8 -4 -10v0v0l-1 -1l-79 -79v0c-24 -27 -60 -44 -99 -44c-35 0 -66 14 -90 36v-1l-87 87c-3 3 -5 7 -5 11c0 3 1 7 3 9v0l80 79c24 27 60 45 99 45c35 0 67 -14 91 -36v1zM182 102c50 0 90 40 90 90s-40 90 -90 90s-90 -40 -90 -90
|
263 |
+
s40 -90 90 -90zM139 192c0 29 14 43 43 43s44 -14 44 -43s-15 -44 -44 -44s-43 15 -43 44z" />
|
264 |
+
<glyph glyph-name="uniF148" unicode="" horiz-adv-x="372"
|
265 |
+
d="M372 192c0 -3 -1 -5 -4 -7v-1l-192 -111c-2 -2 -5 -2 -7 -2c-5 0 -8 3 -8 8v78l-146 -84c-2 -2 -4 -2 -6 -2c-5 0 -9 3 -9 8v226v0c0 5 4 8 9 8c2 0 4 0 6 -2l146 -84v78v0c0 5 3 8 8 8c2 0 5 0 7 -2l191 -111v0c3 -1 5 -4 5 -8z" />
|
266 |
+
<glyph glyph-name="uniF149" unicode="" horiz-adv-x="268"
|
267 |
+
d="M229 163c-20 -20 -44 -32 -70 -37v-41h28v0c2 0 4 0 6 -2s2 -4 2 -6v-35c0 -4 -4 -8 -8 -8v0h-28v-34v0c0 -4 -4 -8 -8 -8v0h-35v0v0h-2v0c-4 1 -6 4 -6 8v0v34h-27v0c-4 0 -8 4 -8 8v0v35v0c0 2 0 4 2 6s4 2 6 2v0h27v41c-25 5 -50 18 -69 37c-52 52 -52 138 0 190
|
268 |
+
s138 52 190 0s52 -138 0 -190zM134 175c46 0 83 37 83 83s-37 83 -83 83s-83 -37 -83 -83s37 -83 83 -83z" />
|
269 |
+
<glyph glyph-name="uniF14A" unicode="" horiz-adv-x="227"
|
270 |
+
d="M68 345c0 28 14 42 42 42s42 -14 42 -42s-14 -42 -42 -42s-42 14 -42 42zM227 171v0v-3c0 -3 -1 -6 -3 -9s-3 -4 -6 -6s-6 -3 -9 -3c-8 0 -14 4 -17 12v0l-20 76v0c-1 3 -3 5 -6 5c-4 0 -5 -2 -5 -6v-2v0l32 -122c1 -1 1 -2 1 -3l1 -1h-1h1c0 -6 -4 -10 -10 -10h-24v-81
|
271 |
+
c0 -4 -1 -7 -3 -10s-5 -6 -8 -8s-6 -3 -10 -3c-6 0 -11 3 -15 7s-6 8 -6 14v81h-12v-81c0 -6 -2 -10 -6 -14s-8 -7 -14 -7s-11 3 -15 7s-6 8 -6 14v81h-24c-6 0 -10 4 -10 10v0v0v1c0 1 0 2 1 3l33 123v1v0v0v1v0c-1 3 -2 5 -5 5s-5 -2 -6 -5v0v0l-20 -76h-1
|
272 |
+
c-3 -8 -8 -12 -16 -12c-5 0 -10 3 -13 6s-5 7 -5 12v3v0l28 105v0l1 2v0c3 9 8 13 18 13v1h132v-1v0c10 0 16 -4 19 -13v0l1 -2v0z" />
|
273 |
+
<glyph glyph-name="uniF14B" unicode="" horiz-adv-x="410"
|
274 |
+
d="M410 334c0 -10 -4 -19 -11 -25v0l-156 -155v-118v0v-2c0 -10 -7 -17 -17 -17c-3 0 -6 1 -9 2v0v0l-1 1l-40 23v0c-5 3 -9 9 -9 15v0v0v96l-155 154c-8 6 -12 16 -12 26c0 18 15 33 33 33h2v0h343v0c18 -1 32 -15 32 -33zM114 301v0v0v0z" />
|
275 |
+
<glyph glyph-name="uniF14C" unicode="" horiz-adv-x="411"
|
276 |
+
d="M100 308v45v1c0 7 6 12 13 12v0v0h185v0c7 0 12 -5 12 -12v0v-47h-31v27h-148v-26h-31zM76 18v262h259v-262h-259zM128 167v-37c0 -1 0 -1 1 -2s2 -1 3 -1h52v-53c0 -1 0 -2 1 -3s2 -1 3 -1h37c1 0 1 0 2 1s2 2 2 3v53h52c1 0 2 0 3 1s1 1 1 2v37c0 2 -2 4 -4 4h-52v52
|
277 |
+
c0 2 -2 4 -4 4h-37c-2 0 -4 -2 -4 -4v-52h-52c-2 0 -4 -2 -4 -4zM20 280v0h31v-262h-31v0c-11 0 -20 9 -20 20v1v220v0c0 11 9 21 20 21zM411 38v0c0 -11 -9 -20 -20 -20v0v0h-31v262h31c11 0 20 -9 20 -20v0v-222z" />
|
278 |
+
<glyph glyph-name="uniF14D" unicode="" horiz-adv-x="372"
|
279 |
+
d="M364 325c4 0 8 -4 8 -8v-169c0 -2 -1 -5 -3 -6c-21 -22 -51 -36 -84 -36c-31 0 -58 11 -79 31c-23 27 -57 45 -96 45c-20 0 -39 -4 -56 -13v-145c0 -15 -12 -27 -27 -27s-27 12 -27 27v322c0 15 12 27 27 27c11 0 20 -6 24 -15c20 18 47 29 77 29c31 0 59 -11 80 -31
|
280 |
+
c23 -27 56 -45 95 -45c21 0 41 5 58 14v0h3z" />
|
281 |
+
<glyph glyph-name="uniF14E" unicode="" horiz-adv-x="425"
|
282 |
+
d="M397 325c15 0 28 -13 28 -28v-248c0 -15 -13 -28 -28 -28h-369c-15 0 -28 13 -28 28v248c0 15 13 28 28 28h30l26 32c3 4 8 6 13 6h74c6 0 12 -5 15 -10c3 -4 13 -16 23 -28h188zM374 124v31c0 2 -1 4 -3 4h-45v45c0 2 -2 3 -4 3h-31c-2 0 -4 -1 -4 -3v-45h-45
|
283 |
+
c-2 0 -3 -2 -3 -4v-31c0 -1 0 -1 1 -2s1 -1 2 -1h45v-45c0 -1 0 -2 1 -3s2 -1 3 -1h31c1 0 2 0 3 1s1 2 1 3v45h45c1 0 1 0 2 1s1 1 1 2z" />
|
284 |
+
<glyph glyph-name="uniF14F" unicode="" horiz-adv-x="425"
|
285 |
+
d="M312 181c9 0 17 -8 17 -17v0v0v0v-15h-34v15c0 9 8 17 17 17zM397 325c15 0 28 -13 28 -28v-248c0 -15 -13 -28 -28 -28h-369c-15 0 -28 13 -28 28v248c0 15 13 28 28 28h30l26 32c3 4 8 6 13 6h74c6 0 12 -5 15 -10c3 -4 13 -16 23 -28h188zM374 77v0v67c0 3 -2 5 -5 5
|
286 |
+
h-6h-9v15v0c0 23 -19 42 -42 42s-41 -19 -41 -42v-15h-8h-6c-3 0 -5 -2 -5 -5v-67c0 -3 2 -5 5 -5h112c3 0 5 2 5 5z" />
|
287 |
+
<glyph glyph-name="uniF150" unicode="" horiz-adv-x="425"
|
288 |
+
d="M397 325c15 0 28 -13 28 -28v-248c0 -15 -13 -28 -28 -28h-369c-15 0 -28 13 -28 28v248c0 15 13 28 28 28h30l26 32c3 4 8 6 13 6h74c6 0 12 -5 15 -10c3 -4 13 -16 23 -28h188z" />
|
289 |
+
<glyph glyph-name="uniF151" unicode="" horiz-adv-x="264"
|
290 |
+
d="M0 264c0 15 7 22 22 22s22 -7 22 -22s-7 -22 -22 -22s-22 7 -22 22zM168 368c0 30 15 45 45 45s45 -15 45 -45s-15 -44 -45 -44s-45 14 -45 44zM92 354c0 19 9 28 28 28s28 -9 28 -28s-9 -28 -28 -28s-28 9 -28 28zM249 69v0c9 -11 13 -24 13 -38c0 -17 -5 -31 -17 -43
|
291 |
+
s-26 -17 -43 -17c-13 0 -25 3 -35 11s-18 18 -22 30l-76 131l1 1c-5 8 -9 16 -11 25c-3 11 -5 22 -5 33c0 29 10 53 31 74s45 31 74 31c19 0 37 -5 53 -14s29 -23 38 -39s14 -33 14 -52c0 -21 -5 -41 -17 -59v0c-6 -11 -9 -23 -9 -35c0 -14 3 -27 11 -39zM39 311
|
292 |
+
c0 15 7 23 22 23s22 -8 22 -23s-7 -22 -22 -22s-22 7 -22 22z" />
|
293 |
+
<glyph glyph-name="uniF152" unicode="" horiz-adv-x="356"
|
294 |
+
d="M325 59c1 0 1 -1 1 -2v-1l-6 -12c0 -1 -1 -1 -2 -1h-1l-16 8c-1 0 -1 1 -1 2s1 0 1 1l6 12c1 1 2 2 3 1zM325 328c1 0 1 -1 1 -2v-1l-7 -11c0 -1 0 -2 -1 -2l-2 1l-15 9c-1 0 -1 0 -1 1v2l7 11c1 1 2 2 3 1zM295 75c1 -1 2 -2 1 -3l-7 -12c0 -1 -1 -1 -2 -1h-1l-4 3l-5 2
|
295 |
+
l-62 -34v0v0c-1 -1 -4 -1 -5 -1s-3 0 -4 1v0v0l-63 34l-62 -34v0h-1c-1 -1 -3 -1 -4 -1s-3 0 -4 1h-1v0l-67 37c-3 1 -4 3 -4 6v274c0 3 2 6 5 7s6 0 9 -1l62 -34l62 34h1v1h2h2h2h2l1 -1v0l62 -34l62 34c2 2 6 3 9 1l7 -5l7 -3c1 0 1 -1 1 -2s-1 0 -1 -1l-6 -12
|
296 |
+
c0 -1 -1 -1 -2 -1l-1 1l-9 5v-252zM76 46v256l-58 31v-256zM210 46v256l-67 36v-256zM354 160c1 0 2 -2 2 -3v-27c0 -1 -1 -2 -2 -2h-13c-1 0 -3 1 -3 2v27c0 1 2 3 3 3h13zM354 52c1 0 2 -1 2 -2v-10c0 -8 -5 -11 -10 -11c-2 0 -4 1 -6 2l-8 4c-1 0 -1 1 -1 2v1l6 12l1 1
|
297 |
+
l2 1h1h13zM349 314c0 0 7 -4 7 -12v-10c0 -1 -1 -2 -2 -2h-13c-1 0 -3 1 -3 2v8l-6 4c-1 0 -1 0 -1 1v2l6 11c1 1 2 2 3 1zM354 267c1 0 2 -1 2 -2v-27c0 -1 -1 -2 -2 -2h-13c-1 0 -3 1 -3 2v27c0 1 2 2 3 2h13zM354 106c1 0 2 -1 2 -2v-27c0 -1 -1 -3 -2 -3h-13
|
298 |
+
c-1 0 -3 2 -3 3v27c0 1 2 2 3 2h13zM354 213c1 0 2 -1 2 -2v-27c0 -1 -1 -2 -2 -2h-13c-1 0 -3 1 -3 2v27c0 1 2 2 3 2h13z" />
|
299 |
+
<glyph glyph-name="uniF153" unicode="" horiz-adv-x="427"
|
300 |
+
d="M193 140c4 0 8 -4 8 -8v-112c0 -4 -4 -8 -8 -8h-72c-4 0 -8 4 -8 8v112c0 4 4 8 8 8h72zM306 372c4 0 8 -4 8 -8v-344c0 -4 -4 -8 -8 -8h-72c-4 0 -8 4 -8 8v344c0 4 4 8 8 8h72zM420 267c4 0 7 -3 7 -7v-240c0 -4 -3 -8 -7 -8h-73c-4 0 -8 4 -8 8v240c0 4 4 7 8 7h73z
|
301 |
+
M80 267c4 0 8 -3 8 -7v-240c0 -4 -4 -8 -8 -8h-72c-4 0 -8 4 -8 8v240c0 4 4 7 8 7h72z" />
|
302 |
+
<glyph glyph-name="uniF154" unicode="" horiz-adv-x="387"
|
303 |
+
d="M380 238c4 0 7 -4 7 -8v-77c0 -4 -3 -8 -7 -8h-372c-4 0 -8 4 -8 8v77c0 4 4 8 8 8h372zM226 357c3 -1 5 -4 5 -8v-77c0 -4 -2 -7 -5 -8v0h-218c-4 0 -8 4 -8 8v77c0 4 4 8 8 8h218v0zM275 120c4 0 8 -4 8 -8v-77c0 -4 -4 -8 -8 -8h-267c-4 0 -8 4 -8 8v77c0 4 4 8 8 8
|
304 |
+
h267z" />
|
305 |
+
<glyph glyph-name="uniF155" unicode="" horiz-adv-x="380"
|
306 |
+
d="M212 382c93 -1 167 -76 168 -169c0 -4 -2 -6 -6 -6h-1v0h-161c-4 0 -7 2 -7 6v161v0v1c0 4 3 7 7 7zM341 174v0v-2c0 -94 -76 -170 -170 -170s-171 76 -171 170s77 171 171 171h1v0h1c4 0 7 -3 7 -7l-1 -1h1v-147c0 -4 2 -7 6 -7h148c4 0 7 -3 7 -7z" />
|
307 |
+
<glyph glyph-name="uniF156" unicode="" horiz-adv-x="410"
|
308 |
+
d="M384 37h-359c-14 0 -25 11 -25 25v260c0 14 11 25 25 25h359c14 0 26 -11 26 -25v-260c0 -14 -12 -25 -26 -25zM359 87v210h-309v-210h309zM162 111c-5 0 -10 2 -13 5l-25 25l-31 -25c-8 -6 -19 -6 -25 2s-6 19 2 25l44 36c7 6 17 6 24 -1l21 -21l46 72c4 5 9 8 16 8
|
309 |
+
s12 -4 15 -10l27 -58l52 92c5 9 16 12 25 7s12 -15 7 -24l-70 -123c-3 -6 -9 -9 -16 -9s-13 5 -16 11l-28 59l-40 -63c-3 -5 -8 -7 -13 -8h-2z" />
|
310 |
+
<glyph glyph-name="uniF157" unicode="" horiz-adv-x="399"
|
311 |
+
d="M148 320c-3 2 -5 5 -5 9c0 6 4 10 10 10c3 0 6 -1 8 -3l60 -60c3 -2 5 -5 5 -9c0 -6 -5 -10 -11 -10c-2 0 -4 1 -6 2v0h-1v1zM215 111h-25c-14 0 -28 0 -41 1l24 -42c2 -3 4 -7 4 -11c0 -10 -8 -18 -18 -18c-6 0 -11 3 -14 7v0l-38 65l-37 -65h-1c-3 -4 -8 -7 -14 -7
|
312 |
+
c-10 0 -18 8 -18 18c0 4 2 8 4 11l32 56c-8 6 -14 29 -14 56c0 13 2 24 4 34l-57 33v0c-4 2 -6 6 -6 11c0 7 6 13 13 13c2 0 4 0 6 -1v0l56 -33c1 0 2 1 3 1h137v-129zM306 125l31 -55c2 -3 4 -7 4 -11c0 -10 -8 -18 -18 -18c-6 0 -11 3 -14 7h-1l-37 65l-38 -65v0
|
313 |
+
c-3 -4 -8 -7 -14 -7c-10 0 -18 8 -18 18c0 4 2 8 4 11l31 54v116l83 -83c-2 -17 -7 -29 -13 -32zM399 235c0 -4 -2 -8 -4 -10v0l-11 -11v0h-10h-40l-14 -14c1 -5 1 -11 1 -16l-72 72l42 42l26 45l13 -22c3 0 5 -2 7 -3v1l26 -15c7 -3 11 -10 11 -18v-21l20 -20
|
314 |
+
c3 -2 5 -6 5 -10z" />
|
315 |
+
<glyph glyph-name="uniF158" unicode="" horiz-adv-x="321"
|
316 |
+
d="M148 302c58 0 104 -48 104 -106c0 -13 -2 -24 -6 -36c0 -1 -1 -2 -1 -3c0 0 -15 -26 -25 -38c-1 -2 -3 -3 -4 -5c-7 -8 -10 -11 -10 -24c1 -27 1 -37 -1 -45c-4 -26 -23 -39 -55 -40v0v0c-9 0 -17 7 -17 16c0 5 1 10 4 13s7 5 12 5c21 1 22 7 23 11v2c1 5 0 21 0 37
|
317 |
+
c-1 26 10 38 18 48l4 4c6 7 17 24 21 32c2 7 3 15 3 23c0 39 -31 72 -70 72s-71 -33 -71 -72c0 -9 -8 -17 -17 -17s-17 8 -17 17c0 58 47 106 105 106zM172 194c0 13 -11 24 -24 24s-24 -11 -24 -24c0 -8 -7 -15 -15 -15s-14 7 -14 15c0 29 24 52 53 52s52 -23 52 -52
|
318 |
+
c0 -8 -6 -15 -14 -15s-14 7 -14 15zM75 142c6 6 16 6 22 0c3 -3 5 -8 5 -12s-2 -8 -5 -11l-70 -71c-3 -3 -7 -4 -11 -4s-8 1 -11 4s-5 8 -5 12s2 8 5 11zM207 334c38 0 69 -30 69 -68v0v-7v0c0 -3 -3 -6 -6 -6v0h-12v0c-3 0 -6 3 -6 6v0v7v0c0 24 -21 44 -45 44v0v0h-7v0
|
319 |
+
c-3 0 -5 3 -5 6v0v11v0c0 3 2 7 5 7v0h7v0v0zM321 266v0v-7v0c0 -3 -3 -6 -6 -6v0h-11v0c-3 0 -7 3 -7 6v0v7v0c0 49 -41 89 -90 89v0v0h-7v0c-3 0 -5 3 -5 6v0v12v0c0 3 2 6 5 6v0h7v0v0c63 0 114 -50 114 -113z" />
|
320 |
+
<glyph glyph-name="uniF159" unicode="" horiz-adv-x="409"
|
321 |
+
d="M295 379c63 0 114 -51 114 -114c0 -68 -33 -108 -59 -140l-6 -7c-31 -38 -128 -108 -132 -111c-2 -2 -5 -2 -8 -2s-5 0 -7 2c-4 3 -101 73 -132 111l-6 7c-26 32 -59 72 -59 140c0 63 51 114 114 114c36 0 69 -16 90 -44c21 28 55 44 91 44z" />
|
322 |
+
<glyph glyph-name="uniF15A" unicode="" horiz-adv-x="353"
|
323 |
+
d="M348 254c3 -2 5 -6 5 -10v-233c0 -7 -6 -13 -13 -13h-96c-7 0 -12 6 -12 13v143h-111v-143c0 -7 -5 -13 -12 -13h-96c-7 0 -13 6 -13 13v233c0 4 2 8 5 10l161 129c5 4 11 4 16 0z" />
|
324 |
+
<glyph glyph-name="uniF15B" unicode="" horiz-adv-x="300"
|
325 |
+
d="M0 362v0h300l-27 -306l-123 -34l-123 34zM243 289l1 11h-94v0h-94l1 -11l9 -103h84v0h46l-4 -49l-42 -11v0v0l-42 11l-3 30h-20h-17l5 -59l77 -21v0v0l77 21v7l9 98l1 11h-10h-77v0h-50l-3 38h53v0h90h1v8z" />
|
326 |
+
<glyph glyph-name="uniF15C" unicode="" horiz-adv-x="355"
|
327 |
+
d="M337 370c10 0 18 -7 18 -17v-16c0 -10 -8 -17 -18 -17h-320c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h320zM337 64c10 0 18 -7 18 -17v-16c0 -10 -8 -17 -18 -17h-320c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h320zM355 149v0v-16v0c0 -10 -8 -17 -18 -17v0h-198
|
328 |
+
c-10 0 -18 7 -18 17v16c0 10 8 17 18 17h198v0v0c10 0 18 -7 18 -17zM355 250v0v-16v0c0 -10 -8 -17 -18 -17v0h-198c-10 0 -18 7 -18 17v16c0 10 8 18 18 18h198v0v0c10 0 18 -8 18 -18zM0 192c0 1 0 1 1 2v1l64 36c1 1 1 1 2 1c2 0 3 -1 3 -3v-74v0c0 -2 -1 -3 -3 -3
|
329 |
+
c-1 0 -1 0 -2 1l-63 36v0c-1 0 -2 2 -2 3z" />
|
330 |
+
<glyph glyph-name="uniF15D" unicode="" horiz-adv-x="355"
|
331 |
+
d="M337 370c10 0 18 -7 18 -17v-16c0 -10 -8 -17 -18 -17h-320c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h320zM337 64c10 0 18 -7 18 -17v-16c0 -10 -8 -17 -18 -17h-320c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h320zM355 149v0v-16v0c0 -10 -8 -17 -18 -17v0h-199
|
332 |
+
c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h199v0c10 0 18 -7 18 -17zM355 250v0v-16v0c0 -10 -8 -17 -18 -17v0h-199c-10 0 -17 7 -17 17v16c0 10 7 18 17 18h199v0c10 0 18 -8 18 -18zM3 152c-2 0 -3 1 -3 3v74v0c0 2 1 3 3 3c1 0 1 0 2 -1l63 -36v0c1 0 2 -2 2 -3
|
333 |
+
s0 -1 -1 -2v-1l-64 -36c-1 -1 -1 -1 -2 -1z" />
|
334 |
+
<glyph glyph-name="uniF15E" unicode="" horiz-adv-x="384"
|
335 |
+
d="M192 384c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM212 85v124c0 4 -3 7 -7 7h-26c-4 0 -7 -3 -7 -7v-124c0 -4 3 -6 7 -6h26c4 0 7 2 7 6zM192 244c13 0 23 10 23 23s-10 23 -23 23s-23 -10 -23 -23s10 -23 23 -23z" />
|
336 |
+
<glyph glyph-name="uniF15F" unicode="" horiz-adv-x="108"
|
337 |
+
d="M108 324v-4v0l-58 -261v0c-1 -7 -6 -12 -13 -12h-25v0c-7 1 -12 6 -12 13v3v0v0v0l58 261v0c0 7 6 13 13 13h24c7 0 13 -6 13 -13z" />
|
338 |
+
<glyph glyph-name="uniF160" unicode="" horiz-adv-x="445"
|
339 |
+
d="M445 218v0v0v-32v0c0 -2 0 -5 -2 -7s-5 -2 -7 -2v0h-27h-1v-61v0v-39v0c0 -5 -4 -9 -9 -9h-1h-31v0c-5 0 -10 4 -10 9v0v21v0v79h-25v-26v0v-39v0c0 -5 -5 -9 -10 -9v0h-31v0h-1c-5 0 -9 4 -9 9v0v16v23v26h-45c-10 -56 -58 -99 -117 -99c-66 0 -119 53 -119 119
|
340 |
+
s53 119 119 119c55 0 102 -38 115 -89h163h12h27c2 0 5 -1 7 -3s2 -4 2 -6zM119 128c38 0 68 30 68 68s-30 68 -68 68s-68 -30 -68 -68s30 -68 68 -68z" />
|
341 |
+
<glyph glyph-name="uniF161" unicode="" horiz-adv-x="488"
|
342 |
+
d="M60 101c-14 0 -26 12 -26 26v226c0 14 12 25 26 25h368c14 0 25 -11 25 -25v-226c0 -14 -11 -26 -25 -26h-368zM85 327v-175h318v175h-318zM476 76c6 0 12 -6 12 -12v-28c0 -3 -2 -7 -4 -9l-18 -18c-2 -2 -5 -3 -8 -3h-430c-3 0 -6 2 -8 4l-17 18c-2 2 -3 5 -3 8v28
|
343 |
+
c0 6 6 12 12 12h464zM288 35v12c0 1 -1 2 -2 2h-84c-1 0 -3 -1 -3 -2v-12c0 -1 2 -3 3 -3h84c1 0 2 2 2 3z" />
|
344 |
+
<glyph glyph-name="uniF162" unicode="" horiz-adv-x="381"
|
345 |
+
d="M76 173v119h229v-119h-229zM82 92v56h57v-56h-57zM246 92v56h57v-56h-57zM164 92v56h57v-56h-57zM358 368c13 0 23 -10 23 -23v-307v0c-1 -12 -11 -22 -23 -22h-335v0v0c-12 0 -22 10 -23 22v0v307v0c0 13 10 23 23 23v0h335v0zM330 67v0v250h-279v-250h279z" />
|
346 |
+
<glyph glyph-name="uniF163" unicode="" horiz-adv-x="426"
|
347 |
+
d="M368 351v0l-45 -45c-3 -3 -7 -3 -10 0v0l-11 11v0c-3 3 -3 7 0 10l45 45v0c3 3 8 3 11 0v0v0l10 -10v0c3 -3 3 -8 0 -11v0v0v0zM206 349c-4 0 -8 3 -8 7v0v64c0 4 4 8 8 8v0h14v0c4 0 8 -4 8 -8v-64v0c0 -4 -4 -7 -8 -7v0h-14v0zM426 243v0v-15v0c0 -4 -3 -7 -7 -7v0h-64
|
348 |
+
c-4 0 -7 3 -7 7v0v15v0c0 4 3 8 7 8h64v0c4 0 7 -4 7 -8zM213 324c60 0 109 -49 109 -109c0 -22 -7 -42 -18 -59c-18 -26 -28 -60 -29 -99c-1 -2 -4 -5 -7 -5h-1v0h-108v0h-1c-3 0 -5 2 -6 4c-1 37 -12 71 -28 96v0c-13 18 -20 39 -20 63c0 60 49 109 109 109zM268 -12
|
349 |
+
c4 0 7 -3 7 -7v-17c0 -4 -3 -8 -7 -8h-1v0h-108v0h-1c-4 0 -8 4 -8 8v17c0 4 4 7 8 7h1v0h108v0h1zM268 37c4 0 7 -4 7 -8v-17c0 -4 -3 -8 -7 -8l-1 1v-1h-108v1l-1 -1c-4 0 -8 4 -8 8v17v0c0 4 4 8 8 8h1v0h108v0h1zM71 245c4 0 8 -4 8 -8v0v-14v0c0 -4 -4 -8 -8 -8v0h-64
|
350 |
+
c-4 0 -7 4 -7 8v14c0 4 3 8 7 8h64v0zM60 354c-3 3 -3 7 0 10v0l11 11v0v0c3 3 8 3 11 0l45 -46v0c3 -3 3 -7 0 -10v0l-11 -10v0c-3 -3 -7 -4 -10 -1v0z" />
|
351 |
+
<glyph glyph-name="uniF164" unicode="" horiz-adv-x="333"
|
352 |
+
d="M333 67c0 -7 -6 -13 -13 -13v0v0v0v0h-26v1c-7 0 -11 5 -12 11v0v141v0c0 7 5 13 12 13v0h25h1c7 0 12 -6 12 -13v0v0v-138c0 -1 1 -1 1 -2zM256 46v0v-1v0v0c0 -7 -6 -12 -13 -12h-1h-185c-2 0 -4 0 -5 1v0l-50 50v0c-1 1 -2 3 -2 5v0v144v0c0 7 6 13 13 13v0h70v58v1
|
353 |
+
v17v0v0c0 16 13 29 29 29c11 0 21 -6 26 -15v0l51 -87c1 -1 1 -2 2 -3h51h1c7 0 13 -6 13 -13v0v0v-144v0v-43zM15 89l1 -1l-1 1v0z" />
|
354 |
+
<glyph glyph-name="uniF165" unicode="" horiz-adv-x="353"
|
355 |
+
d="M323 339c39 -39 40 -101 4 -141v0l-52 -52c-9 -9 -20 -16 -31 -21c-4 -10 -10 -20 -18 -28v0l-51 -52c-40 -40 -105 -40 -145 0s-40 105 0 145l52 52v-1c8 8 17 14 27 18c5 11 13 23 22 32l52 51v0c40 36 101 36 140 -3zM140 82l37 38c-17 4 -33 13 -46 26s-23 30 -27 47
|
356 |
+
l-37 -38v0c-20 -20 -20 -53 0 -73s53 -20 73 0v0zM168 183c9 -9 21 -14 33 -15c-1 12 -6 24 -15 33s-21 14 -33 15c1 -12 6 -24 15 -33zM290 232v0c17 20 16 51 -3 70s-50 20 -70 3v0l-3 -3v0v0l-38 -38c17 -4 33 -13 46 -26s23 -30 27 -47l38 38v0v0z" />
|
357 |
+
<glyph glyph-name="uniF166" unicode="" horiz-adv-x="431"
|
358 |
+
d="M414 345c10 0 17 -8 17 -18v-16c0 -10 -7 -17 -17 -17h-320c-10 0 -17 7 -17 17v16c0 10 7 18 17 18h320zM414 217c10 0 17 -7 17 -17v-16c0 -10 -7 -17 -17 -17h-320c-10 0 -17 7 -17 17v16c0 10 7 17 17 17h320zM414 90c10 0 17 -7 17 -17v-16c0 -10 -7 -18 -17 -18
|
359 |
+
h-320c-10 0 -17 8 -17 18v16c0 10 7 17 17 17h320zM0 319c0 17 9 26 26 26s25 -9 25 -26s-8 -25 -25 -25s-26 8 -26 25zM0 197c0 17 9 26 26 26s25 -9 25 -26s-8 -25 -25 -25s-26 8 -26 25zM0 65c0 17 9 25 26 25s25 -8 25 -25s-8 -26 -25 -26s-26 9 -26 26z" />
|
360 |
+
<glyph glyph-name="uniF167" unicode="" horiz-adv-x="423"
|
361 |
+
d="M29 333l-9 -9l-6 7l17 17h10v-55h-12v40zM21 210c-6 0 -10 -2 -14 -6l-7 8c5 6 13 9 21 9c12 0 21 -7 21 -18c0 -9 -8 -18 -22 -28h22v-10h-41v9c22 17 29 22 29 29c0 5 -4 7 -9 7zM30 65c6 -1 13 -5 13 -13c0 -9 -8 -16 -21 -16c-10 0 -18 4 -22 9l6 8c4 -4 10 -7 15 -7
|
362 |
+
c7 0 11 3 11 7s-3 7 -11 7h-7v10h7c6 0 10 2 10 6s-4 6 -10 6c-5 0 -10 -1 -14 -5l-6 7c4 5 11 9 21 9c13 0 20 -6 20 -15c0 -7 -6 -12 -12 -13zM406 346c10 0 17 -7 17 -17v-16c0 -10 -7 -18 -17 -18h-320c-10 0 -17 8 -17 18v16c0 10 7 17 17 17h320zM406 219
|
363 |
+
c10 0 17 -8 17 -18v-16c0 -10 -7 -17 -17 -17h-320c-10 0 -17 7 -17 17v16c0 10 7 18 17 18h320zM406 91c10 0 17 -7 17 -17v-16c0 -10 -7 -18 -17 -18h-320c-10 0 -17 8 -17 18v16c0 10 7 17 17 17h320z" />
|
364 |
+
<glyph glyph-name="uniF168" unicode="" horiz-adv-x="332"
|
365 |
+
d="M321 103c6 0 11 -6 11 -12v-1v-53c0 -6 -5 -11 -11 -11v0h-182v0c-6 0 -11 5 -11 11v0v53v1c0 6 5 12 11 12v0v0h182v0zM65 103c6 0 12 -6 12 -12v0v0v-54v0c0 -6 -6 -11 -12 -11v0h-53v0v0c-6 0 -12 5 -12 11v0v54v0v0c0 6 6 12 12 12v0v0h53v0zM321 231
|
366 |
+
c6 0 11 -6 11 -12v-1v-53c0 -6 -5 -11 -11 -11v0h-182v0c-6 0 -11 5 -11 11v0v53v1c0 6 5 12 11 12v0v0h182v0zM65 231c6 0 12 -6 12 -12v0v0v-54v0c0 -6 -6 -11 -12 -11v0h-53v0v0c-6 0 -12 5 -12 11v0v54v0v0c0 6 6 12 12 12v0v0h53v0zM128 293v0v53v1c0 6 5 11 11 11v0v0
|
367 |
+
h182v0c6 0 11 -5 11 -11v-1v-53c0 -6 -5 -12 -11 -12v0h-182v0c-6 0 -11 6 -11 12v0zM65 358c6 0 12 -5 12 -11v0v0v-54v0c0 -6 -6 -12 -12 -12v0h-53v0v0c-6 0 -12 6 -12 12v0v54v0v0c0 6 6 11 12 11v0v0h53v0z" />
|
368 |
+
<glyph glyph-name="uniF169" unicode="" horiz-adv-x="332"
|
369 |
+
d="M0 293v53v1c0 6 6 11 12 11v0v0h309v0c6 0 11 -5 11 -11v0v-54v0c0 -6 -5 -12 -11 -12v0h-309v0c-6 0 -12 6 -12 12v0zM321 230c6 0 11 -5 11 -11v0v-54v0c0 -6 -5 -11 -11 -11v0h-309v0c-6 0 -12 5 -12 11v0v53v1c0 6 6 11 12 11v0v0h309v0zM321 103c6 0 11 -6 11 -12v0
|
370 |
+
v-54v0c0 -6 -5 -11 -11 -11v0h-309v0c-6 0 -12 5 -12 11v0v53v1c0 6 6 12 12 12v0v0h309v0z" />
|
371 |
+
<glyph glyph-name="uniF16A" unicode="" horiz-adv-x="356"
|
372 |
+
d="M342 222c7 0 14 -7 14 -14v-197c0 -7 -7 -14 -14 -14h-329c-7 0 -13 7 -13 14v197c0 7 6 14 13 14h19h22v43c0 67 54 122 121 122s122 -55 122 -122v0v-43h26h19zM126 265v-43h99v43v1v0v0c0 27 -23 49 -50 49c-28 0 -49 -22 -49 -50z" />
|
373 |
+
<glyph glyph-name="uniF16B" unicode="" horiz-adv-x="346"
|
374 |
+
d="M346 327v-137c0 -2 -1 -5 -3 -6s-5 -2 -7 -1l-130 44c-3 1 -5 3 -5 6s1 6 3 8l30 21l5 4c-18 14 -41 23 -66 23c-40 0 -75 -22 -93 -55v0c-4 -6 -12 -9 -18 -5l-42 24v0c-6 3 -8 11 -5 17v0c31 56 90 93 158 93c50 0 95 -20 128 -53l2 2l31 22c2 2 5 1 8 0s4 -4 4 -7z
|
375 |
+
M326 131c6 -3 9 -11 6 -17v0c-31 -56 -91 -93 -159 -93c-50 0 -94 20 -127 53l-3 -2l-30 -22c-2 -2 -5 -1 -8 0s-5 4 -5 7v137c0 2 1 5 3 6s5 2 7 1l130 -44c3 -1 6 -3 6 -6s-1 -6 -3 -8l-31 -21l-5 -4c18 -14 41 -23 66 -23c40 0 76 22 94 55v0c4 6 12 9 18 5l41 -24v0z
|
376 |
+
" />
|
377 |
+
<glyph glyph-name="uniF16C" unicode="" horiz-adv-x="397"
|
378 |
+
d="M233 395c91 0 164 -74 164 -164s-73 -164 -164 -164c-26 0 -51 6 -73 17l-82 -82v1c-8 -8 -20 -14 -33 -14c-25 0 -45 20 -45 45c0 13 6 25 14 33h-1l80 79c-15 25 -24 54 -24 85c0 90 73 164 164 164zM234 132c57 0 103 45 103 102s-46 102 -103 102s-102 -45 -102 -102
|
379 |
+
s45 -102 102 -102z" />
|
380 |
+
<glyph glyph-name="uniF16D" unicode="" horiz-adv-x="394"
|
381 |
+
d="M381 345c7 0 13 -6 13 -13v-24c0 -2 -1 -2 -2 -3s-4 -2 -5 -3l-188 -110c-1 0 -1 -1 -2 -1s0 1 -1 1l-194 110c-1 1 -2 2 -2 3v27c0 7 6 13 13 13h368zM393 265c1 -1 1 -1 1 -2v-177c0 -1 -1 -3 -2 -3l-1 -1c-1 0 -1 0 -2 1l-107 115c-1 1 0 2 0 3s0 2 1 2l106 62
|
382 |
+
c1 1 3 1 4 0zM253 182l127 -137c1 -1 1 -3 0 -4s-2 -2 -3 -2h-364c-2 0 -4 1 -6 2c-1 1 -2 2 -2 3s0 2 1 3l142 131c1 1 3 2 4 1l38 -22c5 -3 11 -2 16 1l42 25c1 1 4 0 5 -1zM117 194l-112 -103c-1 -1 -1 -1 -2 -1h-1c-1 1 -2 2 -2 3v167c0 1 1 2 2 3s2 1 3 0l111 -64
|
383 |
+
c1 -1 2 -1 2 -2s0 -2 -1 -3z" />
|
384 |
+
<glyph glyph-name="uniF16E" unicode="" horiz-adv-x="466"
|
385 |
+
d="M49 347c0 28 14 42 42 42s43 -14 43 -42s-15 -42 -43 -42s-42 14 -42 42zM172 293c5 -1 9 -2 12 -6s6 -8 6 -13v-120v0c0 -5 -3 -10 -6 -13s-7 -5 -12 -5s-10 2 -13 5s-5 8 -5 13v0v82v1c0 4 -2 6 -6 6s-6 -2 -6 -6v-1v-53v-55v-110c0 -6 -2 -11 -6 -15s-8 -6 -14 -6
|
386 |
+
s-11 2 -15 6s-6 9 -6 15v110v0c0 4 -2 6 -6 6s-6 -2 -6 -6v0v-110c0 -6 -2 -11 -6 -15s-9 -6 -15 -6s-11 2 -15 6s-6 9 -6 15v165v53v1v0c0 4 -1 6 -5 6s-6 -2 -6 -6v0v-1v-82v0c0 -5 -2 -10 -5 -13s-8 -5 -13 -5s-10 2 -13 5s-5 8 -5 13v0v120v0c0 5 2 10 6 14s9 5 14 5v0
|
387 |
+
h152v0zM305 347c0 28 14 42 42 42s43 -14 43 -42s-15 -43 -43 -43s-42 15 -42 43zM466 171v0v-3c0 -3 0 -6 -2 -9s-4 -5 -7 -7s-6 -2 -9 -2c-8 0 -14 3 -17 11v0l-21 78v0c-1 3 -2 4 -5 4c-4 0 -6 -1 -6 -5v-2v0l33 -124c1 -1 1 -3 1 -4h1h-1h1c0 -6 -4 -10 -10 -10h-25v-82
|
388 |
+
c0 -6 -2 -11 -6 -15s-9 -6 -15 -6s-11 2 -15 6s-6 9 -6 15v82h-12v-82c0 -4 -1 -8 -3 -11s-4 -6 -7 -8s-7 -2 -11 -2c-6 0 -11 2 -15 6s-6 9 -6 15v82h-24c-6 0 -10 4 -10 10v0v0v0c0 1 0 3 1 4l33 124v1v1v0v1v0c-1 3 -2 4 -5 4s-5 -1 -6 -4v0v0l-21 -78v0
|
389 |
+
c-3 -8 -9 -11 -17 -11c-5 0 -9 1 -13 5s-5 8 -5 13v3v0l29 106v0v2v0c3 9 9 14 19 14v0h134v0v0c10 0 16 -5 19 -14v0l1 -2v0z" />
|
390 |
+
<glyph glyph-name="uniF16F" unicode="" horiz-adv-x="342"
|
391 |
+
d="M342 354v0v-106v0c0 -4 -4 -8 -8 -8h-35c-4 0 -8 4 -8 8v28l-46 -46c14 -21 23 -46 23 -74c0 -74 -60 -134 -134 -134s-134 60 -134 134s60 134 134 134c28 0 54 -9 76 -24l44 45h-26v0c-4 0 -8 4 -8 8v0v0v35c0 4 4 8 8 8v0h106v0c4 0 8 -4 8 -8v0zM134 73
|
392 |
+
c46 0 83 37 83 83s-37 83 -83 83s-83 -37 -83 -83s37 -83 83 -83z" />
|
393 |
+
<glyph glyph-name="uniF170" unicode="" horiz-adv-x="190"
|
394 |
+
d="M49 346c0 28 14 42 42 42s43 -14 43 -42s-15 -42 -43 -42s-42 14 -42 42zM172 292c5 -1 9 -2 12 -6s6 -9 6 -14v-120v0c0 -5 -3 -9 -6 -12s-7 -5 -12 -5s-10 2 -13 5s-5 7 -5 12v0v83v1c0 4 -2 6 -6 6s-6 -2 -6 -6v-1v-53v-55v-110c0 -6 -2 -11 -6 -15s-8 -6 -14 -6
|
395 |
+
s-11 2 -15 6s-6 9 -6 15v110v0c0 4 -2 6 -6 6s-6 -2 -6 -6v0v-110c0 -6 -2 -11 -6 -15s-9 -6 -15 -6s-11 2 -15 6s-6 9 -6 15v165v53v1v0c0 4 -1 6 -5 6s-6 -2 -6 -6v0v-1v-83v0c0 -5 -2 -9 -5 -12s-8 -5 -13 -5s-10 2 -13 5s-5 7 -5 12v0v120v0c0 4 1 7 3 10s4 6 7 8
|
396 |
+
s6 2 10 2v0h152v0z" />
|
397 |
+
<glyph glyph-name="uniF171" unicode="" horiz-adv-x="430"
|
398 |
+
d="M430 407v-430v0v-1v-2h-1c-1 -6 -6 -11 -13 -11v0h-402v0c-8 0 -14 6 -14 14v0v0v283v0l161 161v0v0v0v0h255v0v0v0v0c8 0 14 -6 14 -14v0zM305 370l-19 -33l93 -92v125h-74zM161 246h-110v-31l86 -85l139 240h-101v-110v0v0c0 -8 -6 -14 -14 -14v0zM51 14h19l53 93
|
399 |
+
l-72 72v-165zM99 14h280v194l-106 106zM276 215c34 0 62 -28 62 -62c0 -14 -4 -27 -12 -37l-39 -67c0 -1 -1 -2 -2 -3v0v0c-2 -2 -5 -4 -8 -4c-4 0 -8 1 -10 4v0v1v1l-40 69c-7 10 -12 22 -12 36c0 34 27 62 61 62zM276 122c17 0 30 13 30 30s-13 31 -30 31s-30 -14 -30 -31
|
400 |
+
s13 -30 30 -30z" />
|
401 |
+
<glyph glyph-name="uniF172" unicode="" horiz-adv-x="289"
|
402 |
+
d="M144 395c80 0 145 -65 145 -145c0 -33 -12 -63 -30 -87l-90 -157c-1 -2 -3 -4 -4 -6l-1 -2v1c-5 -6 -12 -10 -20 -10c-9 0 -16 4 -21 11v0v0c-1 1 -1 2 -2 3l-92 161c-18 24 -29 54 -29 86c0 80 64 145 144 145zM143 177c39 0 71 32 71 71s-32 71 -71 71s-71 -32 -71 -71
|
403 |
+
s32 -71 71 -71z" />
|
404 |
+
<glyph glyph-name="uniF173" unicode="" horiz-adv-x="385"
|
405 |
+
d="M76 302c8 0 14 -6 14 -14v-127v0c-1 -7 -7 -12 -14 -12c-42 0 -76 35 -76 77s34 76 76 76zM385 364v0v0v-24v-236v-23v0v-2c0 -8 -6 -14 -14 -14c-4 0 -7 2 -9 4l-134 77h-98c-7 0 -13 6 -14 13v0v132c0 8 6 14 14 14h110l123 70c2 2 5 3 8 3c8 0 14 -6 14 -14zM224 41v0
|
406 |
+
c3 -6 2 -13 -3 -17v-1l-26 -14v0c-1 -1 -1 -2 -2 -2c-6 -4 -14 -1 -18 5v0l-1 1v0v0l-49 85v1s-1 0 -1 1c-4 7 -2 15 5 19c2 1 4 2 6 2v0h37v0c4 0 7 -3 9 -6v0l43 -73v-1v0v0z" />
|
407 |
+
<glyph glyph-name="uniF174" unicode="" horiz-adv-x="261"
|
408 |
+
d="M261 196c0 -65 -48 -119 -111 -128v-28h68v0c11 0 19 -8 19 -19s-8 -20 -19 -20v0h-175v0c-11 0 -20 9 -20 20s9 19 20 19v0h68v28c-63 9 -111 63 -111 128v0v74c0 11 8 19 19 19s20 -8 20 -19v-73v0c0 -51 40 -92 91 -92s92 41 92 92v73c0 11 8 19 19 19s20 -8 20 -19
|
409 |
+
v-73v0v0v-1v0zM65 197v2v0v119v0c1 36 29 65 65 65s65 -29 66 -65v0v-119v0v-2c0 -36 -30 -65 -66 -65s-65 29 -65 65z" />
|
410 |
+
<glyph glyph-name="uniF175" unicode="" horiz-adv-x="384"
|
411 |
+
d="M281 219c3 0 5 -2 5 -5v-44c0 -3 -2 -5 -5 -5h-178c-3 0 -5 2 -5 5v44c0 3 2 5 5 5h178zM192 333c-78 0 -141 -63 -141 -141s63 -141 141 -141s141 63 141 141s-63 141 -141 141zM192 384v0c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192z
|
412 |
+
" />
|
413 |
+
<glyph glyph-name="uniF176" unicode="" horiz-adv-x="414"
|
414 |
+
d="M404 251c6 0 10 -5 10 -11v-96c0 -6 -4 -11 -10 -11h-394c-6 0 -10 5 -10 11v96c0 6 4 11 10 11h394z" />
|
415 |
+
<glyph glyph-name="uniF177" unicode="" horiz-adv-x="224"
|
416 |
+
d="M211 295c7 0 13 -6 13 -13v-307c0 -7 -6 -13 -13 -13h-199v0c-7 0 -12 6 -12 13v307c0 7 5 13 12 13v0h199zM112 -24c7 0 13 5 13 12s-6 13 -13 13s-12 -6 -12 -13s5 -12 12 -12zM173 13v0v231h-122v-231h122zM212 368v0v-1v0v0l-9 -9v0v0h-1v0c-3 -3 -7 -3 -10 -1v0v1v0
|
417 |
+
v0l-5 5v0c-41 41 -109 40 -150 -1v0v0l-6 -5v0c-3 -2 -6 -2 -9 0v0l-10 9v0c-3 3 -3 7 -1 10v1h1v0v0l5 5v0v0c52 52 138 53 190 1v0v-1v0v0l5 -5v0c2 -3 2 -6 0 -9zM174 339c2 -3 2 -6 0 -9v0l-9 -10v0v0v0v0c-3 -3 -8 -3 -11 -1v0v1v0v0l-5 5v0c-21 20 -54 20 -74 0v-1v0
|
418 |
+
l-6 -5v0c-3 -2 -6 -2 -9 0v0l-10 9v1c-3 3 -3 7 -1 10v0l6 5v0v1c31 31 82 31 114 0v0l5 -6v0z" />
|
419 |
+
<glyph glyph-name="uniF178" unicode="" horiz-adv-x="224"
|
420 |
+
d="M211 358c7 0 13 -5 13 -12v-308c0 -7 -6 -12 -13 -12h-199v0c-7 0 -12 5 -12 12v308c0 7 5 12 12 12v0h199zM112 39c7 0 13 5 13 12s-6 13 -13 13s-12 -6 -12 -13s5 -12 12 -12zM173 77v0v230h-122v-230h122z" />
|
421 |
+
<glyph glyph-name="uniF179" unicode="" horiz-adv-x="471"
|
422 |
+
d="M442 381c16 0 29 -12 29 -28v-252c0 -16 -13 -29 -29 -29h-156v-44h44c5 0 9 -3 9 -8v-9c0 -5 -4 -8 -9 -8h-194c-5 0 -8 3 -8 8v9c0 5 3 8 8 8h48v44h-155c-16 0 -29 13 -29 29v252c0 16 13 28 29 28h413zM51 123h368v208h-368v-208z" />
|
423 |
+
<glyph glyph-name="uniF17A" unicode="" horiz-adv-x="467"
|
424 |
+
d="M465 48c1 -2 2 -4 2 -6c0 -7 -5 -13 -12 -14v0h-256h-103h-87v1c-1 0 -1 -1 -2 -1c-4 0 -7 3 -7 7c0 2 0 4 1 5l8 13v1h1l81 140c2 4 6 7 11 7s9 -3 11 -7v0l27 -48l114 196c4 8 12 14 21 14s16 -5 20 -13v0l171 -295h-1z" />
|
425 |
+
<glyph glyph-name="uniF17B" unicode="" horiz-adv-x="382"
|
426 |
+
d="M366 378c9 0 16 -7 16 -16v-253c0 -31 -31 -56 -69 -56s-69 25 -69 56s31 56 69 56c6 0 12 -1 18 -2v135h-193v-236c0 -31 -31 -56 -69 -56s-69 25 -69 56s31 56 69 56c6 0 12 -1 18 -2v246c0 9 8 16 17 16v0h262v0z" />
|
427 |
+
<glyph glyph-name="uniF17C" unicode="" horiz-adv-x="397"
|
428 |
+
d="M397 52v0c0 -7 -6 -13 -13 -13v-1h-25v0c-7 0 -13 6 -13 13v1v0v120l-170 -99c-2 -2 -5 -2 -7 -2c-5 0 -8 3 -8 8v78l-146 -84c-2 -2 -4 -2 -6 -2c-5 0 -9 3 -9 8v226v0c0 5 4 8 9 8c2 0 4 0 6 -2l146 -84v78v0c0 5 3 8 8 8c2 0 5 0 7 -2l170 -99v119v2c0 7 6 13 13 13
|
429 |
+
l1 -1h24v0c7 0 12 -4 13 -11v0v-2v0v0v-280z" />
|
430 |
+
<glyph glyph-name="uniF17D" unicode="" horiz-adv-x="384"
|
431 |
+
d="M192 384c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM192 51c34 0 66 13 90 33l-24 24c-3 0 -4 1 -6 3v0l-4 7l-21 21l-16 -28h-1c-2 -2 -4 -4 -7 -4c-5 0 -10 5 -10 10c0 2 1 4 2 6l13 23h-21h-23l13 -23c1 -2 3 -4 3 -6
|
432 |
+
c0 -5 -5 -10 -10 -10c-3 0 -6 2 -8 4v0l-21 36l-21 -36v0c-2 -2 -5 -4 -8 -4c-5 0 -10 5 -10 10c0 2 2 4 3 6l17 31c-4 4 -7 16 -7 31c0 7 1 14 2 19l-32 18v0c-2 1 -3 3 -3 6c0 4 3 7 7 7c1 0 3 0 4 -1v0l31 -18v1v0h25l-65 65c-20 -24 -33 -56 -33 -90
|
433 |
+
c0 -78 63 -141 141 -141zM300 102c20 24 33 56 33 90c0 78 -63 141 -141 141c-34 0 -66 -13 -90 -33l83 -83h26l30 30h-1l17 30l10 -17h1v0l14 -8c4 -2 6 -6 6 -10v-11l11 -11c2 -1 3 -4 3 -6s-1 -4 -2 -5v0l-6 -6v0h-6h-22l-8 -8c0 -3 1 -6 1 -10c0 -16 -4 -29 -9 -32l3 -4
|
434 |
+
z" />
|
435 |
+
<glyph glyph-name="uniF17E" unicode="" horiz-adv-x="384"
|
436 |
+
d="M272 213c3 0 5 -3 5 -6v-31v0c0 -3 -2 -5 -5 -5v0v0h-4v0c-3 0 -6 2 -6 5v0v1v0v0v30v0c0 3 3 6 6 6v0h4v0zM293 213c3 0 6 -3 6 -6v0v-30v-1v0c0 -3 -3 -5 -6 -5v0v0h-3v0c-3 0 -6 2 -6 5v0v31v0c0 3 3 6 6 6v0h3v0zM192 384c106 0 192 -86 192 -192s-86 -192 -192 -192
|
437 |
+
s-192 86 -192 192s86 192 192 192zM192 51c34 0 66 13 90 33l-87 87h-104c-3 0 -6 3 -6 6v0v30v0v0c0 3 3 6 6 6v0h62l-69 69c-20 -24 -33 -56 -33 -90c0 -78 63 -141 141 -141zM300 102c20 24 33 56 33 90c0 78 -63 141 -141 141c-34 0 -66 -13 -90 -33l87 -87h60v0
|
438 |
+
c3 0 6 -3 6 -6v0v-30v0c0 -3 -3 -6 -6 -6h-18z" />
|
439 |
+
<glyph glyph-name="uniF17F" unicode="" horiz-adv-x="360"
|
440 |
+
d="M301 46c5 0 9 -4 9 -9v0v-45v0v-13c0 -5 -4 -8 -9 -8h-8h-276h-8c-5 0 -9 3 -9 8v13v271v5v13l133 132h9v0h147v0h12c5 0 9 -3 9 -8v-21v0v-127v0v0v0v0c0 -5 -4 -9 -9 -9h-33c-5 0 -9 4 -9 9v0v105h-108v-90c0 -5 -4 -9 -9 -9h-91v-241h208v15v0c0 5 4 9 9 9v0h33z
|
441 |
+
M351 174c5 0 9 -4 9 -9v-36c0 -5 -4 -8 -9 -8h-40v-40c0 -5 -4 -9 -9 -9h-35c-5 0 -9 4 -9 9v40h-40c-5 0 -9 3 -9 8v36c0 5 4 9 9 9h40v40c0 5 4 8 9 8h35c5 0 9 -3 9 -8v-40h40z" />
|
442 |
+
<glyph glyph-name="uniF180" unicode="" horiz-adv-x="361"
|
443 |
+
d="M310 410v-392v0v-13c0 -5 -4 -9 -9 -9h-8h-276h-8c-5 0 -9 4 -9 9v13v271v5v12l133 133h9v0h147v0h12c5 0 9 -4 9 -9v-20v0zM51 47h208v341h-108v-91c0 -5 -4 -8 -9 -8h-91v-242zM354 321c4 0 7 -4 7 -8v-360c0 -4 -3 -8 -7 -8h-272v0v0c-4 0 -7 4 -7 8v17h253
|
444 |
+
c4 0 8 4 8 8v343h18z" />
|
445 |
+
<glyph glyph-name="uniF181" unicode="" horiz-adv-x="310"
|
446 |
+
d="M106 119c-7 0 -12 -4 -12 -11s5 -12 12 -12c4 0 8 3 9 7l12 -6c-3 -6 -9 -14 -21 -14c-15 0 -26 10 -26 25s11 24 26 24c12 0 18 -7 21 -14l-12 -5c-1 4 -5 6 -9 6zM148 118c0 -4 26 0 26 -18c0 -10 -7 -17 -20 -17c-10 0 -17 3 -22 8l7 10c4 -3 9 -6 15 -6c3 0 6 1 6 3
|
447 |
+
c0 5 -27 -1 -27 18c0 8 7 16 20 16c8 0 15 -3 20 -7l-8 -10c-4 3 -10 5 -14 5c-3 0 -3 -1 -3 -2zM204 99l10 32h16l-17 -47h-18l-18 47h16zM310 384v-392v0v-13c0 -5 -4 -8 -9 -8h-8h-276h-8c-5 0 -9 3 -9 8v13v271v5v13l133 132h9v0h147v0h12c5 0 9 -3 9 -8v-21v0zM51 22
|
448 |
+
h208v340h-108v-90c0 -5 -4 -9 -9 -9h-91v-241z" />
|
449 |
+
<glyph glyph-name="uniF182" unicode="" horiz-adv-x="361"
|
450 |
+
d="M301 46c5 0 9 -4 9 -9v0v-45v0v-13c0 -5 -4 -8 -9 -8h-8h-276h-8c-5 0 -9 3 -9 8v13v271v5v13l133 132h9v0h147v0h12c5 0 9 -3 9 -8v-21v0v-127v0v0v0v0c0 -5 -4 -9 -9 -9h-33c-5 0 -9 4 -9 9v0v105h-108v-90c0 -5 -4 -9 -9 -9h-91v-241h208v15v0c0 5 4 9 9 9v0h33z
|
451 |
+
M330 147l28 -28c3 -3 3 -10 0 -13l-25 -25c-3 -3 -9 -3 -12 0l-29 29l-28 -29c-3 -3 -9 -3 -12 0l-25 25c-3 3 -3 10 0 13l28 28l-28 28c-3 3 -3 10 0 13l25 25c3 3 9 3 12 0l28 -28l28 28c3 3 10 3 13 0l25 -25c3 -3 3 -10 0 -13z" />
|
452 |
+
<glyph glyph-name="uniF183" unicode="" horiz-adv-x="310"
|
453 |
+
d="M310 384v-392v0v-13c0 -5 -4 -8 -9 -8h-8h-276h-8c-5 0 -9 3 -9 8v13v271v5v13l133 132h9v0h147v0h12c5 0 9 -3 9 -8v-21v0zM51 22h208v340h-108v-90c0 -5 -4 -9 -9 -9h-91v-241zM97 131c15 0 26 -8 26 -23s-11 -24 -26 -24h-21v47h21zM97 96c7 0 11 6 11 12
|
454 |
+
s-3 11 -11 11h-7v-23h7zM155 132c15 0 26 -9 26 -24s-11 -25 -26 -25s-26 10 -26 25s11 24 26 24zM155 96c7 0 11 5 11 12s-4 11 -11 11s-12 -4 -12 -11s5 -12 12 -12zM213 119c-7 0 -12 -4 -12 -11s5 -12 12 -12c4 0 8 3 9 7l12 -6c-3 -6 -9 -14 -21 -14
|
455 |
+
c-15 0 -26 10 -26 25s11 24 26 24c12 0 18 -7 21 -14l-12 -5c-1 4 -5 6 -9 6z" />
|
456 |
+
<glyph glyph-name="uniF184" unicode="" horiz-adv-x="428"
|
457 |
+
d="M301 46c5 0 9 -4 9 -9v0v-45v0v-13c0 -5 -4 -8 -9 -8h-8h-276h-8c-5 0 -9 3 -9 8v13v271v5v13l133 132h9v0h147v0h12c5 0 9 -3 9 -8v-21v0v-84v0v0v-1v0c0 -5 -4 -8 -9 -8h-33c-5 0 -9 3 -9 8v0v63h-108v-90c0 -5 -4 -9 -9 -9h-91v-241h208v15v0c0 5 4 9 9 9v0h33z
|
458 |
+
M425 248c3 -3 3 -9 0 -12l-163 -163v0v0l-82 -22v0c-3 -2 -7 -2 -10 1c-2 2 -3 6 -2 9v0l22 84l1 -1l-1 1l163 163c3 3 10 3 13 0zM195 78l49 13l-36 36z" />
|
459 |
+
<glyph glyph-name="uniF185" unicode="" horiz-adv-x="458"
|
460 |
+
d="M456 112c2 -1 2 -3 2 -5v0c0 -2 0 -4 -2 -5l-94 -68c-2 -1 -5 -2 -7 -1s-3 4 -3 6v32h-86c-4 0 -7 3 -7 7v58c0 4 3 6 7 6h85v32c0 2 2 5 4 6s4 1 6 0zM301 46c5 0 9 -4 9 -9v0v-45v0v-13c0 -5 -4 -8 -9 -8h-8h-276h-8c-5 0 -9 3 -9 8v13v271v5v13l133 132h9v0h147v0h12
|
461 |
+
c5 0 9 -3 9 -8v-21v0v-207v0v0v-1v0c0 -5 -4 -8 -9 -8h-33c-5 0 -9 3 -9 8v0v186h-108v-90c0 -5 -4 -9 -9 -9h-91v-241h208v15v0c0 5 4 9 9 9v0h33zM107 119c-7 0 -11 -4 -11 -11s4 -12 11 -12c4 0 8 3 9 7l13 -6c-3 -6 -10 -14 -22 -14c-15 0 -26 10 -26 25s11 24 26 24
|
462 |
+
c12 0 19 -7 22 -14l-13 -5c-1 4 -5 6 -9 6zM156 95c3 0 5 1 5 3c0 5 -26 -1 -26 18c0 8 6 16 19 16c8 0 15 -3 20 -7l-7 -10c-4 3 -10 5 -14 5c-3 0 -4 -1 -4 -2c0 -4 26 0 26 -18c0 -10 -7 -17 -20 -17c-10 0 -17 3 -22 8l8 10c4 -3 9 -6 15 -6zM195 131l10 -32l10 32h16
|
463 |
+
l-17 -47h-18l-17 47h16z" />
|
464 |
+
<glyph glyph-name="uniF186" unicode="" horiz-adv-x="458"
|
465 |
+
d="M456 112c2 -1 2 -3 2 -5v0c0 -2 0 -4 -2 -5l-94 -68c-2 -1 -5 -2 -7 -1s-3 4 -3 6v32h-86c-4 0 -7 3 -7 7v58c0 4 3 6 7 6h85v32c0 2 2 5 4 6s4 1 6 0zM301 46c5 0 9 -4 9 -9v0v-45v0v-13c0 -5 -4 -8 -9 -8h-8h-276h-8c-5 0 -9 3 -9 8v13v271v5v13l133 132h9v0h147v0h12
|
466 |
+
c5 0 9 -3 9 -8v-21v0v-207v0v0v-1v0c0 -5 -4 -8 -9 -8h-33c-5 0 -9 3 -9 8v0v186h-108v-90c0 -5 -4 -9 -9 -9h-91v-241h208v15v0c0 5 4 9 9 9v0h33zM77 131h22c15 0 26 -8 26 -23s-11 -24 -26 -24h-22v47zM110 108c0 6 -3 11 -11 11h-7v-23h7c7 0 11 6 11 12zM131 108
|
467 |
+
c0 15 10 24 25 24s26 -9 26 -24s-11 -25 -26 -25s-25 10 -25 25zM168 108c0 7 -5 11 -12 11s-11 -4 -11 -11s4 -12 11 -12s12 5 12 12zM214 119c-7 0 -11 -4 -11 -11s4 -12 11 -12c4 0 8 3 9 7l13 -6c-3 -6 -10 -14 -22 -14c-15 0 -26 10 -26 25s11 24 26 24
|
468 |
+
c12 0 19 -7 22 -14l-13 -5c-1 4 -5 6 -9 6z" />
|
469 |
+
<glyph glyph-name="uniF187" unicode="" horiz-adv-x="458"
|
470 |
+
d="M456 112c2 -1 2 -3 2 -5v0c0 -2 0 -4 -2 -5l-94 -68c-2 -1 -5 -2 -7 -1s-3 4 -3 6v32h-86c-4 0 -7 3 -7 7v58c0 4 3 6 7 6h85v32c0 2 2 5 4 6s4 1 6 0zM301 46c5 0 9 -4 9 -9v0v-45v0v-13c0 -5 -4 -8 -9 -8h-8h-276h-8c-5 0 -9 3 -9 8v13v271v5v13l133 132h9v0h147v0h12
|
471 |
+
c5 0 9 -3 9 -8v-21v0v-207v0v0v-1v0c0 -5 -4 -8 -9 -8h-33c-5 0 -9 3 -9 8v0v186h-108v-90c0 -5 -4 -9 -9 -9h-91v-241h208v15v0c0 5 4 9 9 9v0h33zM83 131h26c11 0 17 -7 17 -16s-6 -16 -17 -16h-11v-15h-15v47zM111 115c0 3 -2 4 -4 4h-9v-8h9c2 0 4 2 4 4zM133 131h21
|
472 |
+
c15 0 26 -8 26 -23s-11 -24 -26 -24h-21v47zM166 108c0 6 -4 11 -12 11h-7v-23h7c7 0 12 6 12 12zM225 119h-22v-5h21v-12h-21v-18h-14v47h36v-12z" />
|
473 |
+
<glyph glyph-name="uniF188" unicode="" horiz-adv-x="458"
|
474 |
+
d="M456 112c2 -1 2 -3 2 -5v0c0 -2 0 -4 -2 -5l-94 -68c-2 -1 -5 -2 -7 -1s-3 4 -3 6v32h-86c-4 0 -7 3 -7 7v58c0 4 3 6 7 6h85v32c0 2 2 5 4 6s4 1 6 0zM301 46c5 0 9 -4 9 -9v0v-45v0v-13c0 -5 -4 -8 -9 -8h-8h-276h-8c-5 0 -9 3 -9 8v13v271v5v13l133 132h9v0h147v0h12
|
475 |
+
c5 0 9 -3 9 -8v-21v0v-207v0v0v-1v0c0 -5 -4 -8 -9 -8h-33c-5 0 -9 3 -9 8v0v186h-108v-90c0 -5 -4 -9 -9 -9h-91v-241h208v15v0c0 5 4 9 9 9v0h33z" />
|
476 |
+
<glyph glyph-name="uniF189" unicode="" horiz-adv-x="310"
|
477 |
+
d="M9 263c-5 0 -9 4 -9 9v9l133 132h9c5 0 9 -3 9 -8v-133c0 -5 -4 -9 -9 -9h-133zM301 413c5 0 9 -3 9 -8v-426c0 -5 -4 -8 -9 -8h-292c-5 0 -9 3 -9 8v224v0c1 4 5 8 9 8h184v0v0c5 0 9 4 9 9v0v0v187v0c1 4 4 6 8 6h91z" />
|
478 |
+
<glyph glyph-name="uniF18A" unicode="" horiz-adv-x="389"
|
479 |
+
d="M381 329c4 0 8 -4 8 -8v-360c0 -4 -4 -8 -8 -8h-271v0v0c-4 0 -8 4 -8 8v18h253c4 0 8 3 8 7v343h18zM338 12c0 -4 -4 -8 -8 -8h-271v0c-4 0 -8 4 -8 8v18h253c4 0 8 3 8 7v343h18c4 0 8 -4 8 -8v-360zM287 63c0 -4 -4 -8 -8 -8h-271c-4 0 -8 4 -8 8v360c0 4 4 8 8 8h271
|
480 |
+
c4 0 8 -4 8 -8v-360z" />
|
481 |
+
<glyph glyph-name="uniF18B" unicode="" horiz-adv-x="310"
|
482 |
+
d="M110 131c11 0 17 -7 17 -16s-6 -16 -17 -16h-11v-15h-15v47h26zM108 111c2 0 4 2 4 4c0 3 -2 4 -4 4h-9v-8h9zM155 131c15 0 26 -8 26 -23s-11 -24 -26 -24h-21v47h21zM155 96c7 0 12 6 12 12s-4 11 -12 11h-7v-23h7zM190 84v47h36v-12h-22v-5h21v-12h-21v-18h-14z
|
483 |
+
M310 384v-392v0v-13c0 -5 -4 -8 -9 -8h-8h-276h-8c-5 0 -9 3 -9 8v13v271v5v13l133 132h9v0h147v0h12c5 0 9 -3 9 -8v-21v0zM51 22h208v340h-108v-90c0 -5 -4 -9 -9 -9h-91v-241z" />
|
484 |
+
<glyph glyph-name="uniF18C" unicode="" horiz-adv-x="360"
|
485 |
+
d="M310 86v0v0v-94v0v-13c0 -5 -4 -8 -9 -8h-8h-276h-8c-5 0 -9 3 -9 8v13v271v5v13l133 132h9v0h147v0h12c5 0 9 -3 9 -8v-21v0v-176v0v0v0v0c0 -5 -4 -9 -9 -9h-33c-5 0 -9 4 -9 9v0v154h-108v-90c0 -5 -4 -9 -9 -9h-91v-241h208v64v0c0 5 4 9 9 9v0h33c5 0 9 -4 9 -9v0v0
|
486 |
+
zM351 174c5 0 9 -4 9 -9v-36c0 -5 -4 -8 -9 -8h-133c-5 0 -9 3 -9 8v36c0 5 4 9 9 9h133z" />
|
487 |
+
<glyph glyph-name="uniF18D" unicode="" horiz-adv-x="403"
|
488 |
+
d="M403 384l-1 -392v0v-13c0 -5 -3 -8 -8 -8h-8h-277h-8c-5 0 -9 3 -9 8v13v45v0c0 5 4 9 9 9v0h34c5 0 8 -4 8 -9v0v-15h209v340h-109v-90c0 -5 -4 -9 -9 -9h-91v-9v0c0 -5 -3 -8 -8 -8v0h-34c-5 0 -8 3 -8 8h-1v9v5v13l133 132h9v0h147v0h13c5 0 8 -3 8 -8v-21h1zM199 146
|
489 |
+
c0 -45 -37 -82 -82 -82c-13 0 -26 3 -37 9l-41 -41v0c-4 -4 -10 -7 -16 -7c-13 0 -23 9 -23 22c0 7 3 13 7 17v0l40 40c-7 12 -12 27 -12 42c0 45 37 82 82 82s82 -37 82 -82zM70 146c0 -26 21 -48 47 -48s48 22 48 48s-22 47 -48 47s-47 -21 -47 -47z" />
|
490 |
+
<glyph glyph-name="uniF18E" unicode="" horiz-adv-x="310"
|
491 |
+
d="M310 384v-392v0v-13c0 -5 -4 -8 -9 -8h-8h-276h-8c-5 0 -9 3 -9 8v13v271v5v13l133 132h9v0h147v0h12c5 0 9 -3 9 -8v-21v0zM51 22h208v340h-108v-90c0 -5 -4 -9 -9 -9h-91v-241z" />
|
492 |
+
<glyph glyph-name="uniF18F" unicode="" horiz-adv-x="439"
|
493 |
+
d="M389 203c5 -5 5 -13 0 -18l-203 -203v0c-5 -5 -13 -5 -18 0l-164 164c-5 5 -5 14 0 19v0l139 139l-57 58c-5 5 -8 11 -8 18c0 14 12 26 26 26c7 0 13 -3 18 -8l57 -58l27 27c5 5 14 5 19 0v0v0l164 -164v0zM288 156l38 38l-110 110l-149 -148h221zM430 70
|
494 |
+
c6 -8 9 -17 9 -27c0 -26 -21 -48 -47 -48s-48 22 -48 48c0 11 4 20 10 28l30 52c0 1 1 0 1 1v1v0c2 2 4 3 7 3s5 -2 7 -4v0v0v-1z" />
|
495 |
+
<glyph glyph-name="uniF190" unicode="" horiz-adv-x="356"
|
496 |
+
d="M77 -5c-14 0 -32 5 -50 23c-24 24 -27 47 -25 62c2 18 11 34 27 50l150 151c42 42 70 26 83 13c16 -16 26 -42 -14 -82l-138 -139l-27 27l138 139c21 21 16 26 14 28s-8 8 -29 -13l-150 -151c-7 -7 -15 -17 -16 -28c-1 -10 3 -19 14 -30c13 -13 23 -11 26 -11
|
497 |
+
c9 1 20 8 30 18l178 178c15 15 24 29 28 42c5 19 -1 38 -20 57c-20 20 -50 40 -98 -8l-165 -165c-7 -7 -20 -7 -27 0s-7 20 0 27l165 165c51 51 106 54 152 8c36 -36 36 -71 30 -94c-6 -20 -18 -39 -38 -59l-178 -178c-16 -16 -34 -27 -51 -29c-3 0 -6 -1 -9 -1z" />
|
498 |
+
<glyph glyph-name="uniF191" unicode="" horiz-adv-x="228"
|
499 |
+
d="M65 346c6 0 12 -5 12 -11v0v0v-286v0v0c0 -6 -6 -11 -12 -11v0h-54v0v0c-6 0 -11 5 -11 11v0v0v286v0v0c0 6 5 11 11 11v0h53v0h1zM228 49v0v0c0 -6 -5 -11 -11 -11v0h-55v0v0c-6 0 -11 5 -11 11v0v0v286v0v0c0 6 5 11 11 11v0h53v0h2c6 0 11 -5 11 -11v0v0v-286z" />
|
500 |
+
<glyph glyph-name="uniF192" unicode="" horiz-adv-x="363"
|
501 |
+
d="M104 240c0 -29 -23 -52 -52 -52s-52 23 -52 52s23 51 52 51s52 -22 52 -51zM311 281c29 0 52 -23 52 -52s-23 -51 -52 -51s-52 22 -52 51s23 52 52 52zM264 172l3 -4c16 -19 35 -44 35 -84c0 -37 -31 -68 -68 -68c-21 0 -40 10 -53 27c-13 -17 -33 -27 -54 -27
|
502 |
+
c-37 0 -68 31 -68 68c0 40 19 65 35 84l3 4c5 6 13 13 22 21c16 17 37 27 62 27c28 0 52 -13 68 -33c6 -5 11 -11 15 -15zM128 310c0 38 19 58 57 58s57 -20 57 -58s-19 -57 -57 -57s-57 19 -57 57z" />
|
503 |
+
<glyph glyph-name="uniF193" unicode="" horiz-adv-x="315"
|
504 |
+
d="M73 88c-2 -9 -11 -16 -20 -16h-40c-9 0 -15 8 -13 16l58 248c2 8 10 16 19 16h85c18 0 34 -2 48 -4c14 -3 25 -7 35 -13s17 -14 22 -24s8 -22 8 -37c0 -33 -13 -60 -41 -80s-66 -31 -116 -31h-12c-9 0 -17 -7 -19 -15zM106 232c-2 -9 3 -16 12 -16h10c22 0 40 5 52 14
|
505 |
+
s18 22 18 38c0 11 -4 19 -12 24s-19 8 -35 8h-13c-9 0 -18 -7 -20 -15zM307 271c5 -10 8 -21 8 -36c0 -33 -14 -61 -42 -81s-65 -30 -115 -30h-12c-9 0 -17 -8 -19 -16l-14 -60c-2 -9 -11 -16 -20 -16h-40c-9 0 -15 8 -13 16l2 8h28c9 0 17 6 19 15l14 61c2 8 10 15 19 15
|
506 |
+
h12c50 0 88 11 116 31s41 47 41 80c0 15 -3 27 -8 37v1c1 0 1 -1 2 -1c10 -6 17 -14 22 -24z" />
|
507 |
+
<glyph glyph-name="uniF194" unicode="" horiz-adv-x="405"
|
508 |
+
d="M401 298c5 -5 5 -14 0 -19l-253 -254v0v0l-128 -34v0c-5 -2 -12 -2 -16 2s-5 9 -3 14v0l34 130h1v0l253 254c5 5 15 5 20 0zM43 33l77 20l-57 56z" />
|
509 |
+
<glyph glyph-name="uniF195" unicode="" horiz-adv-x="443"
|
510 |
+
d="M442 356h1v-330h-1c-1 -11 -10 -21 -22 -21c-1 0 -3 1 -4 1v-1h-393v0c-12 0 -22 10 -23 21v0v2v0v0v328v0c0 13 10 23 23 23v0h393v-1c1 0 3 1 4 1c13 0 22 -10 22 -23zM392 56v272h-341v-218l28 48c1 3 5 5 8 5s6 -2 7 -5v0l19 -33l77 134c2 5 9 10 15 10s11 -4 14 -9
|
511 |
+
v0l116 -202v0c0 -1 1 -1 1 -2h56zM262 250c0 34 18 52 52 52s52 -18 52 -52s-18 -51 -52 -51s-52 17 -52 51z" />
|
512 |
+
<glyph glyph-name="uniF196" unicode="" horiz-adv-x="384"
|
513 |
+
d="M192 384c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM192 51c78 0 141 63 141 141s-63 141 -141 141s-141 -63 -141 -141s63 -141 141 -141zM276 197c2 -1 2 -3 2 -5s0 -4 -2 -5v0l-120 -69v0h-3c-3 0 -5 1 -5 4v0v138v0v1c0 3 2 6 5 6
|
514 |
+
c1 0 2 -1 3 -1v0l120 -69v0z" />
|
515 |
+
<glyph glyph-name="uniF197" unicode="" horiz-adv-x="415"
|
516 |
+
d="M389 35h-364c-14 0 -25 12 -25 26v262c0 14 11 26 25 26h364c14 0 26 -12 26 -26v-262c0 -14 -12 -26 -26 -26zM364 86v212h-313v-212h313zM283 191l-61 -36l-61 -35v71v70l61 -35z" />
|
517 |
+
<glyph glyph-name="uniF198" unicode="" horiz-adv-x="276"
|
518 |
+
d="M276 192c0 -4 -2 -8 -5 -10v0l-254 -146v0c-2 -1 -4 -2 -6 -2c-6 0 -10 4 -11 10v0v293v0v1c0 6 5 12 11 12c2 0 5 -1 7 -2l252 -146c4 -2 6 -6 6 -10z" />
|
519 |
+
<glyph glyph-name="uniF199" unicode="" horiz-adv-x="371"
|
520 |
+
d="M362 245c5 0 9 -5 9 -10v-86c0 -3 -1 -5 -3 -7s-3 -3 -6 -3h-124v-123c0 -2 -1 -5 -3 -7s-4 -3 -6 -3h-87c-2 0 -4 1 -6 3s-3 5 -3 7v123h-124c-2 0 -4 1 -6 3s-3 5 -3 7v86c0 5 4 10 9 10h124v123c0 5 4 10 9 10h87c5 0 9 -5 9 -10v-123h124z" />
|
521 |
+
<glyph glyph-name="uniF19A" unicode="" horiz-adv-x="221"
|
522 |
+
d="M221 75c0 -2 -1 -4 -2 -5v0c-12 -12 -31 -20 -61 -20c-36 0 -50 18 -75 18c-14 0 -32 -7 -48 -16v0h-2c-2 0 -4 1 -5 3v0h-1v0l-14 30v0v0v0v2c0 2 1 4 3 5v0v1v0c26 12 45 30 45 51c0 8 -2 15 -5 22h-50v0v0c-3 0 -6 2 -6 5v0v22v0c0 3 3 6 6 6v0v0h28
|
523 |
+
c-10 14 -19 30 -19 50c0 52 51 85 100 85c46 0 79 -16 96 -50v0c1 -1 1 -2 1 -3c0 -2 -1 -4 -3 -5v0l-37 -22v0v0h-2c-2 0 -5 1 -6 3c-7 17 -23 29 -42 29c-24 0 -43 -15 -43 -38c0 -21 11 -34 20 -49h60v0c3 0 5 -2 5 -5v0v-22v0c0 -3 -2 -6 -5 -6v0h-47c0 -2 1 -6 1 -8
|
524 |
+
c0 -19 -12 -37 -27 -46c6 2 14 4 20 4c24 0 34 -14 54 -14c18 0 30 8 35 15v0c1 1 3 2 5 2s4 -2 5 -4v0v0v0l15 -37v0c0 -1 1 -2 1 -3z" />
|
525 |
+
<glyph glyph-name="uniF19B" unicode="" horiz-adv-x="384"
|
526 |
+
d="M328 332c35 -35 56 -82 56 -135c0 -106 -86 -192 -192 -192s-192 86 -192 192c0 51 20 98 53 132c2 3 6 6 10 6c3 0 5 -1 7 -3v0h1v0l21 -19v-1v0v0c2 -2 4 -4 4 -7s-2 -7 -4 -9v0c-25 -26 -41 -60 -41 -99c0 -78 63 -141 141 -141s141 63 141 141c0 38 -15 73 -40 98
|
527 |
+
c-3 2 -5 6 -5 10c0 3 1 5 3 7v0v0v1l21 19v0h1v0c2 2 4 3 7 3s6 -1 8 -3v0zM178 127c-6 0 -11 5 -11 11v0v0v230v0v0c0 6 5 11 11 11v0h28v0v0c6 0 11 -5 11 -11v0v0v-230v0v0c0 -6 -5 -11 -11 -11v0v0h-28v0v0v0v0z" />
|
528 |
+
<glyph glyph-name="uniF19C" unicode="" horiz-adv-x="397"
|
529 |
+
d="M388 313c5 0 9 -3 9 -8v-226v0c0 -5 -4 -8 -9 -8c-2 0 -4 0 -6 2l-146 84v-78v0c0 -5 -3 -8 -8 -8c-2 0 -4 0 -6 2l-171 99v-119v-2c0 -7 -6 -13 -13 -13l-1 1h-23h-1c-7 0 -12 4 -13 11v0v2v0v0v280v0c0 7 6 13 13 13v1h25v0c7 0 13 -6 13 -13v-1v0v-120l170 99
|
530 |
+
c2 2 5 2 7 2c5 0 8 -3 8 -8v-78l146 84c2 2 4 2 6 2z" />
|
531 |
+
<glyph glyph-name="uniF19D" unicode="" horiz-adv-x="325"
|
532 |
+
d="M324 109c3 -5 1 -11 -4 -14v0l-166 -96v0c-5 -3 -12 -1 -15 4v1l-137 238v0h-1c-1 2 -1 4 -1 6v0v65v0c0 4 2 7 5 9l109 63v0v0l1 1v0c3 1 6 1 9 -1v0l57 -32v0c2 -1 3 -2 4 -4h1l137 -239v0zM93 298c9 5 12 18 7 27s-18 12 -27 7s-12 -18 -7 -27s18 -12 27 -7z" />
|
533 |
+
<glyph glyph-name="uniF19E" unicode="" horiz-adv-x="395"
|
534 |
+
d="M393 100c3 -5 2 -12 -3 -15v0l-167 -96v0c-5 -3 -11 -1 -14 4v1l-7 12l153 88v0c5 3 7 10 4 15v0v0l-104 179l-45 79l41 -24v0c2 -1 3 -2 4 -4v0l138 -238v0v-1zM320 104v0l-166 -96v0c-5 -3 -12 -1 -15 4v1l-137 238v0h-1c-1 2 -1 5 -1 7v0v65v0c0 4 2 7 5 9l109 62v0v1
|
535 |
+
h1v0c3 1 6 1 9 -1v1l57 -33v0c2 -1 3 -2 4 -4h1l137 -239v0h1c3 -5 1 -12 -4 -15zM93 307c9 5 12 18 7 27s-18 12 -27 7s-12 -18 -7 -27s18 -12 27 -7z" />
|
536 |
+
<glyph glyph-name="uniF19F" unicode="" horiz-adv-x="414"
|
537 |
+
d="M414 268v0v-188c0 -5 -4 -10 -9 -10h-67v79v0h-26h-210h-25v0v-79h-68v0c-5 0 -9 5 -9 10v188v0c0 5 4 9 9 9v0h68v0v110c0 5 4 10 9 10h242c5 0 10 -5 10 -10v-110v0v0h67c5 0 9 -4 9 -9zM312 235v0v127c0 5 -4 9 -9 9h-192v0c-5 0 -9 -4 -9 -9v-127h210zM103 -3v126
|
538 |
+
h209v-126c0 -5 -5 -10 -10 -10h-190c-5 0 -9 5 -9 10z" />
|
539 |
+
<glyph glyph-name="uniF1A0" unicode="" horiz-adv-x="384"
|
540 |
+
d="M192 384c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM192 51c34 0 66 13 90 33l-198 198c-20 -24 -33 -56 -33 -90c0 -78 63 -141 141 -141zM300 102c20 24 33 56 33 90c0 78 -63 141 -141 141c-34 0 -66 -13 -90 -33z" />
|
541 |
+
<glyph glyph-name="uniF1A1" unicode="" horiz-adv-x="391"
|
542 |
+
d="M391 363v0v-32v0c0 -5 -4 -9 -9 -9h-373v0c-5 0 -9 4 -9 9v0v32v0c0 5 4 10 9 10v0h373c5 0 9 -5 9 -10v0zM359 296c5 0 9 -4 9 -9v0v-190c0 -11 -9 -21 -21 -21h-139v-27c5 -4 8 -10 8 -17c0 -12 -9 -21 -21 -21s-21 9 -21 21c0 7 4 13 9 17v27h-139
|
543 |
+
c-12 0 -22 10 -22 21v190v0v0c0 5 4 9 9 9h328z" />
|
544 |
+
<glyph glyph-name="uniF1A2" unicode="" horiz-adv-x="293"
|
545 |
+
d="M293 198v0v0v-3h-1c-1 -5 -6 -8 -11 -8v0v-1c-4 1 -8 2 -13 2c-28 0 -50 -22 -50 -50s22 -50 50 -50c5 0 9 1 13 2v-1c6 0 11 -4 12 -10v0v-67v0c0 -11 -10 -20 -21 -20h-65v0c-6 0 -12 6 -12 12c0 2 0 3 1 4v0c1 4 2 9 2 14c0 28 -22 50 -50 50s-50 -22 -50 -50
|
546 |
+
c0 -5 1 -10 2 -14v0v-1v0c0 -1 1 -2 1 -3c0 -6 -5 -12 -11 -12h-68h-2c-11 0 -20 9 -20 20v1v66v0v2c0 6 6 12 12 12c1 0 3 -1 4 -1v0c6 -3 12 -4 19 -4c28 0 50 22 50 50s-22 50 -50 50c-7 0 -14 -1 -20 -4c-1 0 -2 -1 -3 -1c-6 0 -12 6 -12 12v0v68v1c0 11 9 21 20 21v0
|
547 |
+
h75v0c14 1 25 12 25 27c0 6 -1 12 -5 17v0c-4 6 -6 13 -6 21c0 23 20 42 43 42s42 -19 42 -42c0 -8 -2 -15 -6 -21h1c-4 -5 -6 -11 -6 -17c0 -15 11 -26 25 -27v0h1h1h1h62v-1c11 0 20 -9 20 -20v0v-66z" />
|
548 |
+
<glyph glyph-name="uniF1A3" unicode="" horiz-adv-x="435"
|
549 |
+
d="M52 224c20 0 35 -15 35 -37s-19 -41 -41 -41c-24 0 -46 19 -46 53c0 39 21 73 53 96v0c1 0 2 1 3 1s2 -1 3 -2v0l22 -13v0c2 -1 2 -3 2 -5s-1 -4 -3 -5v0v0v0c-16 -9 -34 -30 -39 -48c2 1 7 1 11 1zM157 224c20 0 35 -15 35 -37s-19 -41 -41 -41c-24 0 -46 19 -46 53
|
550 |
+
c0 39 21 73 53 96h1c1 0 1 1 2 1s3 -1 4 -2v0l21 -13v0c2 -1 3 -3 3 -5s-2 -4 -4 -5v0v0v0c-16 -9 -33 -30 -38 -48c2 1 6 1 10 1zM284 238c24 0 46 -19 46 -53c0 -39 -21 -73 -53 -96v0c-1 0 -2 -1 -3 -1s-2 1 -3 2v0l-22 13v0c-2 1 -2 3 -2 5s1 4 3 5v0v0v0
|
551 |
+
c16 9 34 30 39 48c-2 -1 -6 -1 -10 -1c-20 0 -36 15 -36 37s19 41 41 41zM389 238c24 0 46 -19 46 -53c0 -39 -21 -73 -53 -96v0c-1 0 -1 -1 -2 -1s-3 1 -4 2v0l-21 13v0c-2 1 -3 3 -3 5s1 4 3 5v0h1v0c16 9 33 30 38 48c-2 -1 -6 -1 -10 -1c-20 0 -35 15 -35 37
|
552 |
+
s18 41 40 41z" />
|
553 |
+
<glyph glyph-name="uniF1A4" unicode="" horiz-adv-x="380"
|
554 |
+
d="M190 382c105 0 190 -85 190 -190s-85 -190 -190 -190s-190 85 -190 190s85 190 190 190zM190 130c34 0 62 28 62 62s-28 62 -62 62s-63 -28 -63 -62s29 -62 63 -62z" />
|
555 |
+
<glyph glyph-name="uniF1A5" unicode="" horiz-adv-x="355"
|
556 |
+
d="M354 337l1 -137c0 -2 -2 -5 -4 -6s-5 -2 -7 -1l-130 44c-3 1 -5 3 -5 6s1 6 3 8l31 22l5 3c-18 14 -41 23 -66 23c-59 0 -108 -48 -108 -107s49 -107 108 -107c36 0 69 17 89 47c3 4 9 6 13 3l45 -32c2 -1 4 -4 4 -6s0 -4 -1 -6c-34 -50 -91 -80 -151 -80
|
557 |
+
c-100 0 -181 81 -181 181s81 181 181 181c50 0 95 -20 128 -53l2 2l31 22c2 2 5 1 8 0s4 -4 4 -7z" />
|
558 |
+
<glyph glyph-name="uniF1A6" unicode="" horiz-adv-x="471"
|
559 |
+
d="M123 210c2 -3 3 -7 5 -10l-53 -24c-14 -7 -23 -22 -23 -39v-56h-41c-6 0 -11 6 -11 13v54c0 5 3 10 7 12l69 32c-16 10 -28 29 -28 52c0 33 23 59 51 59c8 0 15 -2 21 -5c-2 -4 -3 -9 -4 -13c-3 -10 -4 -19 -4 -28c0 -16 4 -33 11 -47zM287 270c-1 4 -1 8 -2 13
|
560 |
+
c-3 14 -10 27 -18 38h195v0v0c5 0 9 -4 9 -9v0v-33v0c0 -5 -4 -9 -9 -9v0v0h-175zM471 108v0v-33v0c0 -5 -4 -9 -9 -9v0v0h-114v4v11v36h114v0v0c5 0 9 -4 9 -9zM462 219c5 0 9 -4 9 -9v0v-33v0c0 -5 -4 -9 -9 -9v0v0h-126c-3 3 -7 6 -11 8l-53 25c2 4 5 7 7 11c1 2 1 5 2 7
|
561 |
+
h181v0v0zM314 153c5 -3 9 -9 9 -16v-56v-11c0 -9 -6 -16 -14 -16h-218c-8 0 -14 7 -14 16v11v56c0 7 4 14 9 16l61 28l24 11c-11 7 -19 17 -25 29c-5 11 -9 23 -9 36c0 8 1 14 3 21c8 30 32 52 60 52c29 0 53 -22 60 -53c2 -6 3 -13 3 -20c0 -12 -3 -24 -8 -34
|
562 |
+
c-6 -13 -14 -23 -25 -30l25 -12z" />
|
563 |
+
<glyph glyph-name="uniF1A7" unicode="" horiz-adv-x="431"
|
564 |
+
d="M431 336v-33v0c0 -5 -4 -9 -9 -9v0v0h-235v0c-5 0 -9 4 -9 9v0v33v0v0v0v0c0 5 4 9 9 9v0h235v0v0c5 0 9 -4 9 -9v0zM431 259v-32v0c0 -5 -4 -10 -9 -10v0v0h-235v0c-5 0 -9 5 -9 10v0v32v0v0v0v0c0 5 4 9 9 9v0h235v0v0c5 0 9 -4 9 -9v0zM127 336v-109v0v0
|
565 |
+
c0 -5 -4 -10 -9 -10v0v0h-109v0c-5 0 -9 5 -9 10v0v0v109v0c0 5 4 9 9 9h1h108v0c5 0 9 -4 9 -9v0zM431 157v-32v0c0 -5 -4 -9 -9 -9v0v0h-235v0c-5 0 -9 4 -9 9v0v32v0v0v0v0c0 5 4 9 9 9v1h235v-1v0c5 0 9 -4 9 -9v0zM431 81v-33v0c0 -5 -4 -9 -9 -9v0v0h-235v0
|
566 |
+
c-5 0 -9 4 -9 9v1v32v0v0v0v0c0 5 4 9 9 9v0h235v0v0c5 0 9 -4 9 -9v0zM127 157v-109v0v0c0 -5 -4 -9 -9 -9v0h-109v0c-5 0 -9 4 -9 9v0v0v109v0c0 5 4 10 9 10l1 -1h108v1c5 0 9 -5 9 -10v0z" />
|
567 |
+
<glyph glyph-name="uniF1A8" unicode="" horiz-adv-x="406"
|
568 |
+
d="M351 197c-2 -2 -5 -2 -7 -1l-131 42c-3 1 -5 3 -5 6s1 5 3 7l30 23l5 4c-19 14 -42 21 -67 21c-59 -1 -106 -50 -105 -109s51 -106 110 -105h10v0v0c7 0 14 -6 14 -13v0v0l1 -47v0c0 -3 -2 -7 -4 -9v0v0v-1l-2 -1v0c-1 0 -1 -1 -2 -1v0c-3 -1 -5 -2 -5 -2h-11
|
569 |
+
c-100 -2 -183 78 -185 178s78 182 178 184c50 1 96 -18 129 -50l2 1l30 23c2 2 5 2 8 1s4 -4 4 -7l3 -138c0 -2 -1 -4 -3 -6zM291 142h18l2 -99h-21l-1 72l-16 -17l-13 12zM365 145c28 1 41 -25 41 -50s-11 -51 -39 -52s-42 25 -42 50s12 51 40 52zM366 61c14 0 19 15 19 33
|
570 |
+
s-6 32 -20 32s-19 -15 -19 -33s6 -32 20 -32z" />
|
571 |
+
<glyph glyph-name="uniF1A9" unicode="" horiz-adv-x="372"
|
572 |
+
d="M363 313c5 0 9 -3 9 -8v-226v0c0 -5 -4 -8 -9 -8c-2 0 -4 0 -6 2l-145 84v-78v0c0 -5 -4 -8 -9 -8c-2 0 -4 0 -6 2l-192 111v0c-3 1 -5 4 -5 8c0 3 1 5 4 7v1l192 111c2 2 5 2 7 2c5 0 9 -3 9 -8v-78l145 84c2 2 4 2 6 2z" />
|
573 |
+
<glyph glyph-name="uniF1AA" unicode="" horiz-adv-x="339"
|
574 |
+
d="M48 115c25 0 45 -20 45 -45s-20 -44 -45 -44s-45 19 -45 44s20 45 45 45zM34 239c101 0 183 -81 184 -182v0v-18v0c-1 -8 -8 -14 -16 -15v-1h-31v0c-9 0 -17 7 -18 16v0v18v0c-1 65 -54 118 -119 118h-1v0h-17v0c-8 1 -15 7 -16 15v0v32v0c0 9 7 16 16 17v0h17v0h1z
|
575 |
+
M339 57v0v0v-18v0c-1 -8 -7 -14 -15 -15v-1h-32v0c-9 0 -16 7 -17 16v0v18v0c-1 132 -109 239 -241 239h-1v0h-17v0c-8 1 -15 8 -16 16v0v31v0c0 9 7 16 16 17v1h17v0h1c168 0 304 -136 305 -304z" />
|
576 |
+
<glyph glyph-name="uniF1AB" unicode="" horiz-adv-x="482"
|
577 |
+
d="M482 28v-2c0 -7 -6 -12 -13 -12v0v0h-457c-7 0 -12 5 -12 12v1v0v25c0 7 5 12 12 12h39l169 293c4 8 12 13 21 13s17 -5 21 -13v0l169 -293h38v0c7 0 13 -5 13 -12v0v0v-24zM228 319l-29 -51h84l-29 51h-26zM169 217l-29 -51h202l-29 51h-144zM81 64h320l-30 51h-261z
|
578 |
+
" />
|
579 |
+
<glyph glyph-name="uniF1AC" unicode="" horiz-adv-x="379"
|
580 |
+
d="M204 251v110h53v-110h-53zM375 350c2 -2 4 -5 4 -9v-1v-324v0v0c0 -7 -5 -12 -12 -12v0h-39v169v0c0 6 -6 11 -12 11v0v0v0v0h-253v0h-1h-1v0c-5 -1 -10 -5 -10 -11v0v-1v0v0v0v-156v0v-12h-39v0c-7 0 -12 5 -12 12v0v168v49v135v0c0 7 5 12 12 12v0v0h67v0c2 0 3 0 5 -2
|
581 |
+
c1 -1 2 -2 2 -3v0v-130v0c0 -6 6 -12 12 -12v0h175h1c7 0 13 5 13 12v0v130v0c0 1 1 3 2 4s3 1 4 1v0v0v0h46v0c4 0 7 -2 9 -4l27 -26v0z" />
|
582 |
+
<glyph glyph-name="uniF1AD" unicode="" horiz-adv-x="358"
|
583 |
+
d="M298 252c33 0 60 -27 60 -60s-27 -60 -60 -60c-7 0 -14 2 -21 4l-157 -91v-3c0 -33 -27 -61 -60 -61s-60 28 -60 61s27 60 60 60c13 0 26 -5 36 -12l144 84c-2 6 -2 12 -2 18s0 12 2 18l-145 84c-10 -7 -22 -12 -35 -12c-33 0 -60 27 -60 60s27 61 60 61s60 -28 60 -61
|
584 |
+
v-4l156 -90c7 3 14 4 22 4z" />
|
585 |
+
<glyph glyph-name="uniF1AE" unicode="" horiz-adv-x="384"
|
586 |
+
d="M356 130c15 0 28 -12 28 -27s-13 -28 -28 -28c-10 0 -19 6 -24 15h-80l-35 -61c2 -4 3 -7 3 -12c0 -15 -12 -28 -27 -28s-28 13 -28 28c0 5 1 9 3 13l-34 60h-78c-5 -7 -14 -12 -23 -12c-15 0 -27 12 -27 27s12 28 27 28c2 0 5 0 7 -1l35 60l-35 60c-4 -2 -8 -3 -12 -3
|
587 |
+
c-15 0 -28 13 -28 28s13 27 28 27c10 0 19 -5 24 -14h79l37 63c-3 4 -5 9 -5 14c0 15 13 28 28 28s27 -13 27 -28c0 -6 -1 -11 -4 -15l36 -62h78c5 7 13 12 22 12c15 0 28 -13 28 -28s-13 -27 -28 -27c-2 0 -5 0 -7 1l-34 -60l35 -60c4 2 8 2 12 2z" />
|
588 |
+
<glyph glyph-name="uniF1AF" unicode="" horiz-adv-x="344"
|
589 |
+
d="M172 394l172 -99v0v-118c-1 -98 -76 -178 -172 -188c-96 10 -171 90 -172 188v0v118v0l172 100v-1zM172 41c67 10 120 66 121 136v0v6h-121v152l-121 -70v-82h121v-142z" />
|
590 |
+
<glyph glyph-name="uniF1B0" unicode="" horiz-adv-x="441"
|
591 |
+
d="M441 250v0v-216c0 -11 -9 -20 -20 -20v0v0h-401v0c-11 0 -20 9 -20 20v0v216v0c1 10 10 18 20 18h31c32 61 97 102 170 102s137 -41 169 -102h31v0c10 0 19 -8 20 -18zM112 268h217c-26 31 -64 51 -108 51s-83 -20 -109 -51z" />
|
592 |
+
<glyph glyph-name="uniF1B1" unicode="" horiz-adv-x="425"
|
593 |
+
d="M95 33c0 20 10 30 30 30s31 -10 31 -30s-11 -30 -31 -30s-30 10 -30 30zM307 33c0 20 10 30 30 30s30 -10 30 -30s-10 -30 -30 -30s-30 10 -30 30zM333 165v0h-200v-25h270v0c5 0 9 -3 12 -6s5 -7 5 -12v0v-15v0v-1v-2v0c-1 -9 -8 -14 -17 -15v0h-303v0v0
|
594 |
+
c-5 0 -9 2 -12 5s-6 7 -6 12v0v224h-63v0v0h-1c-5 0 -10 2 -13 5s-5 8 -5 13v0v17v0c1 4 3 9 6 12s8 4 12 4v0h1v0h97v0v0c5 0 9 -2 12 -5s5 -8 5 -13v0v-33h54h146h75v0c5 0 9 -2 12 -5s5 -8 5 -13c0 -3 0 -5 -1 -7v0l-75 -130v0c-3 -7 -9 -10 -16 -10z" />
|
595 |
+
<glyph glyph-name="uniF1B2" unicode="" horiz-adv-x="462"
|
596 |
+
d="M74 129l44 45l55 -55l-54 -54c-4 -7 -12 -12 -21 -12v0h-87v0c-5 1 -9 5 -10 10h-1v56h1c1 6 6 11 12 11c1 0 2 -1 3 -1h58zM460 290c2 -1 2 -3 2 -5v0c0 -2 0 -4 -2 -5l-95 -69c-2 -1 -5 -1 -7 0s-4 4 -4 6v30h-53l-38 -37l-54 54l54 54v0c4 3 10 6 15 6v0h76v29
|
597 |
+
c0 2 2 5 4 6s4 0 6 -1zM459 104c2 -1 3 -3 3 -5v0c0 -2 -1 -4 -3 -5l-95 -68c-2 -1 -5 -2 -7 -1s-3 4 -3 6v29h-77v0c-5 0 -10 3 -14 6v0l-189 189h-58c-1 0 -2 -1 -3 -1c-6 0 -12 5 -13 11v0v56v0c1 5 6 9 11 10v0h87v0c9 0 17 -5 21 -12l182 -182h53v30c0 2 1 5 3 6
|
598 |
+
s5 1 7 0z" />
|
599 |
+
<glyph glyph-name="uniF1B3" unicode="" horiz-adv-x="399"
|
600 |
+
d="M390 78c12 -12 13 -31 1 -43c-7 -7 -18 -10 -27 -8c2 -9 -1 -19 -8 -26c-12 -12 -30 -11 -42 1s-12 29 -1 41l-45 45v-31c-19 -15 -42 -24 -68 -24s-50 9 -69 24v31l-45 -45c11 -12 11 -30 -1 -42s-30 -12 -42 0c-7 7 -10 17 -8 26c-9 -2 -19 2 -26 9c-12 12 -12 30 0 42
|
601 |
+
c12 11 30 12 42 1l46 46c-13 19 -20 42 -20 67s7 48 20 67l-46 46c-12 -11 -30 -11 -42 1s-12 31 0 43c7 7 17 10 26 8c-2 9 1 19 8 26c12 12 31 11 43 -1s12 -29 1 -41l46 -46c19 13 42 20 67 20s48 -7 67 -20l46 46c-11 12 -10 30 1 42c12 12 30 12 42 0
|
602 |
+
c7 -7 11 -17 9 -26c9 2 18 -2 25 -9c12 -12 12 -30 0 -42s-29 -12 -41 -1l-46 -46c13 -19 20 -42 20 -67s-7 -48 -20 -67l46 -46c12 11 29 10 41 -1zM166 146c13 0 24 10 24 23s-11 24 -24 24s-23 -11 -23 -24s10 -23 23 -23zM233 146c13 0 24 10 24 23s-11 24 -24 24
|
603 |
+
s-23 -11 -23 -24s10 -23 23 -23z" />
|
604 |
+
<glyph glyph-name="uniF1B4" unicode=""
|
605 |
+
d="M262 227c10 0 17 -3 23 -10s9 -14 9 -23s-3 -18 -8 -24s-13 -9 -23 -9c-6 0 -10 1 -15 3s-10 4 -14 7s-9 6 -13 10s-8 8 -11 12l11 11s8 8 12 11s9 7 14 9s10 3 15 3zM151 204l11 -11c-3 -4 -6 -8 -10 -12s-9 -7 -13 -10s-9 -5 -14 -7s-10 -3 -15 -3c-10 0 -17 3 -23 9
|
606 |
+
s-8 14 -8 23s3 17 8 24s13 10 22 10c5 0 10 -1 15 -3s9 -6 14 -9s9 -7 13 -11zM333 376c20 0 36 -16 36 -36v-296c0 -20 -16 -36 -36 -36h-297c-20 0 -36 16 -36 36v296c0 20 16 36 36 36h297zM326 166c3 9 5 19 5 29s-2 19 -5 28s-7 17 -13 23s-14 11 -22 15s-17 6 -28 6
|
607 |
+
c-8 0 -17 -1 -24 -4s-14 -7 -20 -11s-12 -9 -17 -15s-11 -12 -16 -18c-5 6 -11 12 -16 18s-11 11 -17 15s-13 8 -20 11s-15 4 -24 4c-11 0 -21 -2 -29 -6s-15 -9 -21 -15s-10 -14 -13 -23s-5 -19 -5 -29s2 -20 5 -29s8 -17 14 -23s13 -11 21 -15s18 -6 29 -6c9 0 17 1 24 4
|
608 |
+
s13 5 19 9s12 10 17 15l16 16c5 -6 10 -11 16 -16s12 -11 18 -15s13 -6 20 -9s15 -4 23 -4c11 0 19 2 28 6s16 8 22 15s10 15 13 24z" />
|
609 |
+
<glyph glyph-name="uniF1B5" unicode=""
|
610 |
+
d="M232 355h137v-326zM0 355h136l-136 -326v326zM125 94l59 141l87 -206h-57l-26 65h-63z" />
|
611 |
+
<glyph glyph-name="uniF1B6" unicode="" horiz-adv-x="377"
|
612 |
+
d="M199 264h7c1 0 1 1 3 1c-1 10 0 21 -2 31c-2 12 -11 20 -24 22c-20 3 -41 -8 -46 -29c-2 -7 -6 -9 -13 -8c-13 2 -26 3 -39 5c-9 1 -11 4 -9 13c6 27 22 47 47 58c38 17 75 18 113 1c25 -11 38 -31 39 -58c1 -35 2 -69 1 -104c0 -19 4 -36 17 -51c5 -6 5 -10 -1 -15
|
613 |
+
c-11 -9 -22 -20 -33 -29c-6 -5 -12 -5 -17 1c-9 9 -16 18 -25 27c-5 -5 -11 -9 -17 -14c-21 -17 -45 -22 -70 -19c-39 4 -62 30 -63 70c-1 44 22 74 66 87c21 6 44 9 66 11zM198 163c13 20 10 41 10 64c-11 -1 -22 -2 -33 -4c-26 -5 -40 -23 -38 -50c1 -20 15 -32 34 -29
|
614 |
+
c12 2 21 9 27 19zM318 85c6 2 11 0 14 -5s2 -10 -3 -14c-7 -5 -15 -10 -22 -14c-41 -24 -85 -37 -126 -38c-50 0 -88 14 -123 38c-19 13 -35 28 -53 42c-5 4 -6 9 -3 13s7 5 13 2c18 -9 36 -19 54 -28c28 -14 57 -25 89 -28c26 -2 52 0 77 5c27 5 53 14 78 25c2 1 3 1 5 2z
|
615 |
+
M357 124c18 -2 21 -6 19 -24c-2 -19 -9 -35 -22 -49c-2 -2 -3 -4 -5 -4c-3 0 -7 -1 -9 1s-3 6 -2 9c2 8 5 15 7 23c1 4 2 9 3 13s0 6 -4 6h-10v0c-9 -1 -17 -2 -26 -3c-5 -1 -8 0 -10 4c-2 5 0 9 4 12c17 12 35 14 55 12z" />
|
616 |
+
<glyph glyph-name="uniF1B7" unicode="" horiz-adv-x="338"
|
617 |
+
d="M223 355c34 -17 57 -51 57 -89h-222c0 38 23 72 57 89l-18 32c-1 2 0 3 2 4s3 1 4 -1l18 -32c15 6 31 10 48 10s33 -4 48 -10l18 32c1 2 2 2 4 1s3 -2 2 -4zM118 307c5 0 10 4 10 9s-5 9 -10 9s-9 -4 -9 -9s4 -9 9 -9zM220 307c5 0 9 4 9 9s-4 9 -9 9s-10 -4 -10 -9
|
618 |
+
s5 -9 10 -9zM338 238v-103c0 -14 -11 -25 -25 -25s-24 11 -24 25v103c0 14 10 25 24 25s25 -11 25 -25zM279 258v0v-160c0 -10 -5 -18 -13 -23c-4 -2 -8 -3 -13 -3h-18v-55c0 -14 -11 -25 -25 -25c-2 0 -3 1 -5 1c-11 2 -19 12 -19 24v55h-34v-55c0 -12 -8 -22 -19 -24
|
619 |
+
c-2 0 -3 -1 -5 -1c-12 0 -22 9 -24 20c0 2 -1 3 -1 5v55h-18c-10 0 -19 5 -23 14c-2 4 -3 8 -3 12v160h220v0zM25 263c14 0 24 -11 24 -25v-103v-5c-2 -11 -12 -20 -24 -20c-5 0 -10 1 -14 4c-7 4 -11 12 -11 21v103c0 14 11 25 25 25z" />
|
620 |
+
<glyph glyph-name="uniF1B8" unicode="" horiz-adv-x="352"
|
621 |
+
d="M340 259c-69 -38 -58 -137 12 -163c-10 -21 -15 -30 -27 -49c-17 -26 -41 -60 -71 -60c-27 0 -35 18 -71 18s-43 -18 -70 -18c-30 0 -54 30 -71 56c-48 74 -53 160 -23 206c21 33 55 52 86 52c32 0 52 -18 78 -18s41 18 78 18c28 0 58 -16 79 -42zM233 330
|
622 |
+
c-14 -18 -39 -33 -63 -32c-4 24 7 48 21 65c15 18 40 32 62 34c4 -25 -7 -50 -20 -67z" />
|
623 |
+
<glyph glyph-name="uniF1B9" unicode="" horiz-adv-x="365"
|
624 |
+
d="M255 160c6 0 11 -1 15 -5s6 -11 6 -14h-45c2 6 7 19 24 19zM140 136c1 0 14 0 14 -18c0 -15 -9 -18 -16 -18h-41v36h43v0zM331 376c16 0 29 -10 34 -24v-320c-4 -12 -14 -21 -26 -24h-312c-13 3 -23 13 -27 25v318c4 15 18 25 34 25h297zM220 220v-19c0 -1 1 -2 2 -2h64
|
625 |
+
c1 0 3 1 3 2v19c0 1 -2 3 -3 3h-64c-1 0 -2 -2 -2 -3zM193 115c0 1 0 20 -11 32c-3 3 -6 6 -10 7c7 4 15 12 15 29c0 27 -17 43 -46 43h-80c-1 0 -3 -1 -3 -2v-155c0 -1 2 -2 3 -2h81c3 0 15 0 27 6c11 6 24 18 24 42zM312 117c0 1 4 33 -14 53c-10 11 -24 17 -42 17
|
626 |
+
c-32 0 -48 -17 -55 -31c-8 -15 -7 -31 -7 -31c0 -1 -2 -26 15 -44c11 -12 26 -18 46 -18v0h3c9 0 53 2 53 44c0 1 -1 3 -2 3h-28c-1 0 -2 0 -2 -1c-1 -1 0 -1 0 -2c0 0 0 -4 -4 -8s-10 -6 -19 -6v0c-2 0 -9 1 -14 4c-6 4 -9 10 -10 18h77c1 0 3 1 3 2zM148 181
|
627 |
+
c0 -15 -5 -16 -11 -16h-40v30h37h6s8 -1 8 -14z" />
|
628 |
+
<glyph glyph-name="uniF1BA" unicode="" horiz-adv-x="388"
|
629 |
+
d="M95 160c0 46 34 69 100 69s99 -23 99 -69s-33 -70 -99 -70s-100 24 -100 70zM333 252c42 -29 60 -64 54 -105c0 -16 -5 -31 -15 -45s-23 -26 -40 -36c-20 -12 -40 -20 -61 -25c-24 -6 -49 -9 -77 -9c-29 0 -55 3 -79 9c-37 14 -66 30 -86 50s-29 47 -29 82v179h58v-99
|
630 |
+
c38 26 87 40 149 39c49 -3 91 -16 126 -40zM211 64c32 1 60 12 84 34s35 43 33 66c-1 14 -6 27 -13 38s-16 20 -26 27s-21 12 -33 17s-24 7 -34 9s-20 2 -28 2c-44 -2 -78 -13 -101 -33s-33 -42 -31 -66s12 -43 28 -58s34 -25 54 -30s43 -7 67 -6z" />
|
631 |
+
<glyph glyph-name="uniF1BB" unicode=""
|
632 |
+
d="M308 376c33 0 61 -28 61 -61v-246c0 -33 -28 -61 -61 -61h-247c-33 0 -61 28 -61 61v246c0 33 28 61 61 61h247zM296 151v58v3l-2 4l-3 2c-4 3 -25 0 -31 5c-4 4 -5 11 -6 20c-2 17 -3 18 -6 24c-10 21 -37 37 -55 39h-50c-39 0 -72 -33 -72 -72v-83c0 -39 33 -71 72 -71
|
633 |
+
h82c39 0 71 32 71 71zM144 220c-8 0 -14 7 -14 14s6 13 14 13h39c8 0 14 -6 14 -13s-6 -14 -14 -14h-39zM224 166c7 0 14 -7 14 -14s-7 -13 -14 -13h-80c-8 0 -14 6 -14 13s6 14 14 14h80z" />
|
634 |
+
<glyph glyph-name="uniF1BC" unicode="" horiz-adv-x="348"
|
635 |
+
d="M174 192h174v-174h-174v174h-174v174h174v-174z" />
|
636 |
+
<glyph glyph-name="uniF1BD" unicode=""
|
637 |
+
d="M270 254h31v-57v-71h-28l-50 78l2 -78h-32v84v44h1h4h23l3 -5l47 -76zM333 376c20 0 36 -16 36 -36v-131l-63 50v0h-5h-31h-5v-5v-29l-39 31v1l-2 2h-3h-28h-5v-5v-40l-13 11c-1 3 -4 5 -6 8c-5 7 -11 12 -17 16c-12 7 -23 10 -43 10h-43h-3h-2h-5v-2v-10v-124l143 -115
|
638 |
+
h-163c-20 0 -36 16 -36 36v296c0 20 16 36 36 36h297zM137 251v0c1 0 4 -1 5 -2v0v0c1 -1 3 -1 4 -2s3 -1 4 -2s3 -2 4 -3c1 0 0 -1 1 -1l2 -2l2 -2l1 -1l2 -2v0v0c1 -1 2 -3 3 -4c8 -11 12 -24 12 -40c0 -39 -24 -64 -60 -64h-51v123v5h20h5h18h3c11 0 18 -1 25 -3z
|
639 |
+
M144 189c0 23 -11 36 -31 36h-14v-70h14c20 0 31 12 31 34z" />
|
640 |
+
<glyph glyph-name="uniF1BE" unicode=""
|
641 |
+
d="M166 219c9 -19 45 -93 45 -93l129 35v-118c0 -1 -1 -1 -2 -2s-2 -2 -3 -2h-303c-1 0 -2 1 -3 2s-1 1 -1 2v31l169 48l-48 101c82 18 123 11 165 -23c5 -5 3 -8 0 -9l-67 -16l-25 50c-19 3 -46 -2 -56 -6zM335 348c1 0 2 -1 3 -1c1 -1 2 -2 2 -3v-105l-1 1
|
642 |
+
c-87 38 -186 21 -206 15c0 1 -15 33 -15 33h-56l20 -46c-23 -7 -48 -25 -54 -30v132c0 1 1 2 2 3c1 0 1 1 2 1h303zM68 131c-13 -3 -12 6 -12 6c-3 55 33 71 41 73l31 -63s-47 -13 -60 -16zM338 376c17 0 31 -14 31 -31v-306c0 -17 -14 -31 -31 -31h-307
|
643 |
+
c-17 0 -31 14 -31 31v306c0 17 14 31 31 31h307zM350 43v301c0 8 -7 14 -15 14h-303c-8 0 -14 -6 -14 -14v-301c0 -8 6 -14 14 -14h303c8 0 15 6 15 14z" />
|
644 |
+
<glyph glyph-name="uniF1BF" unicode="" horiz-adv-x="436"
|
645 |
+
d="M436 253v-173c0 -4 -1 -6 -6 -6h-106c-4 0 -5 1 -5 5v23c0 4 1 5 5 5h62c4 0 5 1 5 5v16h-5h-62c-4 0 -5 2 -5 6v120c0 4 1 5 5 5h107h4c0 -2 1 -4 1 -6zM387 161c3 0 4 2 4 5v49v11h-25c-1 0 -2 -3 -2 -4v-57c0 -3 1 -4 4 -4h19zM300 259c4 0 5 -1 5 -5v-175v-5h-5h-106
|
646 |
+
c-4 0 -5 1 -5 5v28h5h62c4 0 5 1 5 5v11s-1 6 -6 6c-20 0 -40 -1 -61 -1c-4 0 -5 2 -5 6v120c0 4 1 5 5 5h106zM261 164v59c0 1 -2 3 -3 3h-25c0 -21 1 -41 1 -62c0 -1 1 -3 2 -3h22c1 0 3 2 3 3zM72 305v5h44v-193h-4h-107c-4 0 -5 1 -5 5v132c0 4 1 5 5 5h61c7 0 6 -1 6 6
|
647 |
+
v40zM67 150c4 0 5 1 5 5v66v5h-27v-74c0 -1 2 -2 3 -2h19zM171 259c3 0 4 0 4 -3v-137v-2h-26h-14c-4 0 -4 1 -4 5v94v38c0 4 0 5 4 5h36zM134 276c-1 0 -3 2 -3 3v31h44v-17v-13c0 -3 0 -4 -3 -4h-38z" />
|
648 |
+
<glyph glyph-name="uniF1C0" unicode="" horiz-adv-x="371"
|
649 |
+
d="M186 378c102 0 185 -84 185 -186s-83 -186 -185 -186s-186 84 -186 186s84 186 186 186zM308 292c-3 -5 -29 -39 -88 -63c4 -8 7 -14 10 -22c1 -3 3 -6 4 -9c53 7 105 -4 110 -5c0 37 -14 72 -36 99zM186 350c-13 0 -26 -1 -38 -4c4 -6 34 -45 60 -93c56 21 80 53 83 57
|
650 |
+
c-28 25 -65 40 -105 40zM118 335c-44 -21 -78 -62 -88 -111c7 0 73 0 147 20c-26 47 -55 85 -59 91zM27 192c0 -41 16 -78 41 -106c4 6 47 78 129 104c2 1 4 1 6 2c-4 9 -8 18 -13 27c-79 -24 -156 -22 -163 -22v-5zM186 33c22 0 42 5 61 13c-2 14 -11 62 -33 120h-1
|
651 |
+
c-89 -31 -122 -93 -125 -99c27 -21 61 -34 98 -34zM274 60c36 24 61 63 68 107c-5 2 -49 14 -99 6c21 -57 29 -103 31 -113z" />
|
652 |
+
<glyph glyph-name="uniF1C1" unicode="" horiz-adv-x="384"
|
653 |
+
d="M144 143h240l-67 -115h-240zM376 149l-132 1l-121 208l133 -1zM120 349l66 -115l-120 -208l-66 115z" />
|
654 |
+
<glyph glyph-name="uniF1C2" unicode="" horiz-adv-x="396"
|
655 |
+
d="M117 376l81 -68l-117 -72l-81 64zM0 171l81 65l117 -73l-81 -68zM198 163l118 73l80 -65l-116 -76zM396 300l-80 -64l-118 72l82 68zM198 148l82 -68l35 23v-25l-117 -70l-116 70v25l35 -23z" />
|
656 |
+
<glyph glyph-name="uniF1C3" unicode="" horiz-adv-x="335"
|
657 |
+
d="M33 315c-9 0 -17 -2 -23 -5l-4 -2l1 1l73 72v0l-1 -2c-3 -5 -5 -12 -5 -19v0c0 -9 1 -42 1 -42c0 -2 -2 -3 -4 -3h-38v0zM325 322c5 -27 12 -135 9 -171c-5 -57 -14 -90 -18 -101c-18 -56 -33 -58 -77 -58c-56 0 -73 8 -73 53c0 49 24 50 63 49c6 0 -1 -5 -1 -15
|
658 |
+
s4 -13 -1 -13c-11 0 -27 2 -27 -14c0 -19 10 -19 34 -19c30 0 35 4 35 31c0 45 -13 51 -30 53c-19 2 -38 6 -47 9c-23 8 -22 38 -22 47c0 1 -2 1 -2 0c0 -12 -1 -29 -7 -48c-2 -5 -3 -9 -3 -9c-7 -15 -20 -10 -39 -8s-61 11 -79 19c-8 4 -11 7 -15 16c-11 22 -22 95 -23 105
|
659 |
+
c-2 13 -2 20 -2 20c0 8 1 17 6 24c3 3 5 6 10 8s11 4 19 4h38c8 0 15 6 15 14c0 0 -1 9 -1 18v24c0 8 2 13 5 17c4 6 13 11 20 13c9 3 45 4 68 -5c9 -4 16 -13 18 -24c13 0 36 0 55 -2c24 -3 42 -7 51 -10s18 -11 21 -27zM249 203c10 0 19 -3 27 -6c0 11 -2 28 -20 29
|
660 |
+
c-16 1 -21 -13 -22 -24c5 1 10 1 15 1z" />
|
661 |
+
<glyph glyph-name="uniF1C4" unicode=""
|
662 |
+
d="M348 376c11 0 21 -9 21 -20v-328c0 -11 -10 -20 -21 -20h-94v142h48l7 56h-55v36c0 16 5 27 28 27h29v49c-5 1 -23 3 -43 3c-42 0 -71 -26 -71 -74v-41h-48v-56h48v-142h-177c-11 0 -20 9 -20 20v328c0 11 9 20 20 20h328z" />
|
663 |
+
<glyph glyph-name="uniF1C5" unicode=""
|
664 |
+
d="M333 376c20 0 36 -16 36 -36v-296c0 -20 -16 -36 -36 -36h-297c-20 0 -36 16 -36 36v296c0 20 16 36 36 36h297zM110 133c33 0 60 27 60 60s-27 60 -60 60s-60 -27 -60 -60s27 -60 60 -60zM261 133c33 0 60 27 60 60s-27 60 -60 60s-59 -27 -59 -60s26 -60 59 -60z" />
|
665 |
+
<glyph glyph-name="uniF1C6" unicode="" horiz-adv-x="350"
|
666 |
+
d="M350 -18h-65v1h-92v66l73 36l-9 18l-64 -33v25l43 22l-10 18l-33 -18v43h-46v-67l-33 23l-11 -16l44 -31v-73v-13h-147l175 419z" />
|
667 |
+
<glyph glyph-name="uniF1C7" unicode="" horiz-adv-x="415"
|
668 |
+
d="M137 239l67 -67l155 154c3 3 6 4 10 4s6 -1 9 -4l33 -32c5 -5 5 -14 0 -19l-197 -197c-3 -3 -6 -4 -10 -4v0v0h-1c-3 0 -6 2 -8 4l-110 110c-5 5 -5 14 0 19l33 32c3 3 5 4 9 4s7 -1 10 -4zM399 227v-1c19 -19 19 -49 0 -68l-158 -159c-19 -19 -50 -19 -69 0l-158 159
|
669 |
+
c-19 19 -19 49 0 68l158 159c19 19 50 19 69 0l72 -72l-108 -107l-50 50c-7 7 -17 12 -27 12s-20 -5 -27 -12l-32 -32c-7 -7 -11 -17 -11 -27s4 -20 11 -27l109 -109c5 -5 11 -8 18 -10l2 -1h7c10 0 20 4 27 11z" />
|
670 |
+
<glyph glyph-name="uniF1C8" unicode=""
|
671 |
+
d="M333 376c20 0 36 -16 36 -36v-296c0 -20 -16 -36 -36 -36h-297c-20 0 -36 16 -36 36v296c0 20 16 36 36 36h297zM215 350c-55 0 -99 -44 -99 -99c0 -36 20 -68 49 -85c14 28 43 47 77 47c20 0 39 -7 54 -19c11 16 18 36 18 57c0 55 -44 99 -99 99zM30 208
|
672 |
+
c0 -41 22 -77 54 -98c9 22 31 36 56 36c6 0 11 0 17 -2c1 4 3 7 4 11c-33 19 -56 55 -56 96c0 28 11 53 28 72c-58 -7 -103 -55 -103 -115zM140 33c29 0 52 23 52 52s-23 52 -52 52s-52 -23 -52 -52s23 -52 52 -52zM242 50c42 0 77 34 77 76s-35 77 -77 77
|
673 |
+
c-38 0 -69 -27 -75 -63c20 -10 34 -31 34 -55c0 -7 -2 -14 -4 -21c13 -9 28 -14 45 -14z" />
|
674 |
+
<glyph glyph-name="uniF1C9" unicode="" horiz-adv-x="399"
|
675 |
+
d="M200 387c110 0 199 -90 199 -200c0 -88 -57 -163 -136 -189c-10 -2 -14 4 -14 9v55c0 19 -6 31 -13 37c44 5 91 22 91 99c0 22 -7 39 -20 53c2 5 9 25 -2 53c0 0 -17 5 -55 -21c-16 4 -33 7 -50 7s-34 -3 -50 -7c-38 26 -55 21 -55 21c-11 -28 -4 -48 -2 -53
|
676 |
+
c-13 -14 -21 -31 -21 -53c0 -77 47 -94 91 -99c-6 -5 -10 -14 -12 -27c-11 -5 -41 -14 -59 17c0 0 -10 19 -30 20c0 0 -20 0 -2 -12c0 0 14 -6 23 -29c0 0 11 -39 67 -27v-34s-3 -11 -13 -9c-79 26 -137 101 -137 189c0 110 90 200 200 200z" />
|
677 |
+
<glyph glyph-name="uniF1CA" unicode=""
|
678 |
+
d="M57 184c-9 7 -16 16 -22 26c-12 22 -17 42 -17 62c0 15 4 30 12 42c10 12 22 18 37 18c11 0 21 -4 30 -10c9 -7 16 -15 21 -26c11 -22 17 -45 17 -67c0 -5 0 -11 -1 -18s-4 -15 -9 -22c-10 -10 -22 -15 -37 -16c-12 0 -22 4 -31 11zM91 100c-13 0 -29 -2 -49 -5
|
679 |
+
c-15 -3 -28 -7 -42 -13v99c15 -15 36 -23 62 -23c6 0 12 0 18 1l-3 -9s-2 -8 -2 -13c0 -8 1 -15 5 -21c3 -6 7 -11 11 -16zM106 84c21 -14 36 -27 46 -37c9 -10 14 -23 14 -37v-1h-140c-14 0 -26 12 -26 26v15c3 4 6 8 9 11c5 4 11 8 16 10s9 4 12 5c12 4 24 5 35 7
|
680 |
+
c12 1 19 1 22 1h12zM343 375c14 0 26 -12 26 -26v-28v-286c0 -14 -12 -26 -26 -26h-145c2 7 3 15 3 23c0 19 -5 34 -13 46c-9 12 -18 22 -30 32l-19 15c-3 3 -6 6 -9 10s-5 8 -5 14s2 11 5 16c3 4 6 9 9 12c6 5 12 9 17 14s9 10 13 16c8 12 13 28 13 48c0 11 -2 21 -4 29
|
681 |
+
c-3 8 -6 15 -10 21s-8 12 -12 16s-9 7 -12 9h34l35 20h-111c-15 0 -31 -2 -48 -5c-17 -4 -33 -12 -49 -25c-2 -2 -3 -4 -5 -6v7v28c0 14 12 26 26 26h65h93h93h66zM363 261v29h-58v58h-28v-58h-59v-29h59v-58h28v58h58z" />
|
682 |
+
<glyph glyph-name="uniF1CB" unicode=""
|
683 |
+
d="M333 376c20 0 36 -16 36 -36v-296c0 -20 -16 -36 -36 -36h-297c-20 0 -36 16 -36 36v296c0 20 16 36 36 36h297zM200 178l70 119h-31l-29 -57c-8 -16 -15 -30 -21 -43h-1c-6 14 -12 27 -20 43l-30 57h-30l65 -119v-88h27v88z" />
|
684 |
+
<glyph glyph-name="uniF1CC" unicode="" horiz-adv-x="476"
|
685 |
+
d="M459 222c13 -16 18 -36 16 -57c-2 -24 -12 -47 -30 -62c-17 -14 -41 -23 -71 -23c-22 0 -45 4 -64 15v-10h-310v76h15v66h-15v77h116v-55c19 7 45 7 62 -6v9h29v40h88v-31l8 43h160c-1 -27 -3 -55 -4 -82zM227 272v-32h48v32h-48zM195 105v0v36h-16v54c0 11 -5 39 -37 39
|
686 |
+
c-22 0 -36 -12 -46 -28v78h-76v-37h15v-106h-15v-36h83v36h-7v23c0 34 24 42 24 21v-44h-8v-36h83zM290 105v36h-15v90h-76v-36h15v-54h-15v-36h91zM374 100c53 0 81 33 81 67c2 45 -26 62 -60 62c-13 0 -26 -4 -38 -9l2 16h81l2 48h-122l-17 -92l44 -6c6 7 13 9 18 9
|
687 |
+
c13 0 19 -14 18 -28c-1 -15 -10 -29 -23 -29c-8 0 -18 4 -13 17c4 19 -7 28 -24 28c-26 0 -35 -31 -24 -51c10 -19 40 -32 75 -32z" />
|
688 |
+
<glyph glyph-name="uniF1CD" unicode=""
|
689 |
+
d="M276 216c0 14 -3 28 -9 40h102v-215c0 -20 -16 -36 -36 -36h-297c-20 0 -36 16 -36 36v215h102c-6 -12 -10 -26 -10 -40c0 -51 41 -92 92 -92s92 41 92 92zM333 379c20 0 36 -16 36 -36v-72h-111c-17 22 -44 37 -74 37s-56 -15 -73 -37h-111v72c0 20 16 36 36 36h297z
|
690 |
+
M29 288v0v72c-8 -3 -13 -11 -13 -20v-52h13zM51 288v74h-12v-74h12zM73 288v74h-12v-74h12zM95 340v22h-13v-74h13v22v30zM350 310v30c0 12 -10 22 -22 22h-35c-12 0 -22 -10 -22 -22v-30c0 -12 10 -22 22 -22h35c12 0 22 10 22 22zM184 135c-45 0 -81 36 -81 81
|
691 |
+
s36 81 81 81s81 -36 81 -81s-36 -81 -81 -81zM184 280c-36 0 -64 -28 -64 -64s28 -65 64 -65s65 29 65 65s-29 64 -65 64z" />
|
692 |
+
<glyph glyph-name="uniF1CE" unicode="" horiz-adv-x="357"
|
693 |
+
d="M340 98c29 -24 22 -67 -13 -81c-2 -1 -3 -2 -5 -3h-24c-17 7 -31 18 -35 38c-31 -7 -59 -1 -81 22c12 12 23 22 33 32c9 -3 18 -7 27 -7c12 0 21 8 25 19c4 12 1 22 -8 31c-24 24 -46 47 -70 71c-2 2 -6 4 -8 6c12 13 23 25 36 39c12 -13 22 -25 33 -36
|
694 |
+
c12 -12 22 -25 35 -36c25 -23 38 -49 32 -82c8 -4 17 -8 23 -13zM212 186c14 -12 25 -23 36 -33c-28 -28 -54 -56 -80 -82c-17 -17 -39 -24 -63 -21c-8 1 -11 -1 -14 -8c-5 -15 -17 -22 -31 -28h-22c-21 7 -33 21 -38 42v10c4 21 15 36 37 42c-5 30 1 56 23 77l35 -35
|
695 |
+
c-1 -1 -3 -3 -4 -5c-9 -13 -8 -29 4 -39s27 -11 39 1c24 23 48 47 72 71c3 3 5 6 6 8zM107 228c29 29 56 59 85 87c17 16 40 20 63 15h6c4 15 11 29 27 35c10 3 21 5 31 4c20 -2 36 -21 38 -43c2 -23 -10 -39 -41 -52c6 -30 -1 -56 -23 -78l-34 34c3 5 7 11 9 17
|
696 |
+
c3 12 -3 25 -14 31c-11 7 -24 6 -35 -4c-12 -11 -23 -23 -35 -35c-15 -14 -29 -29 -44 -44zM38 275c-28 10 -41 30 -35 60c4 19 22 33 41 35c25 2 39 -9 53 -40c29 5 53 -2 73 -22l-35 -35c0 0 -1 2 -3 3c-13 10 -29 8 -40 -4c-10 -12 -9 -27 2 -39c23 -24 47 -48 70 -72
|
697 |
+
c3 -3 4 -5 7 -8c-12 -11 -22 -22 -35 -35c-11 12 -23 24 -34 36c-12 12 -23 24 -35 35c-25 23 -37 51 -29 86z" />
|
698 |
+
<glyph glyph-name="uniF1CF" unicode="" horiz-adv-x="417"
|
699 |
+
d="M354 210c41 -10 63 -29 63 -68c0 -48 -40 -66 -99 -66c-83 0 -112 38 -127 84l-15 48c-11 35 -25 62 -67 62c-29 0 -59 -21 -59 -80c0 -46 24 -75 57 -75c37 0 62 28 62 28l15 -42s-26 -25 -80 -25c-67 0 -104 39 -104 112c0 75 37 120 107 120c64 0 96 -23 116 -85
|
700 |
+
l16 -48c11 -35 32 -60 80 -60c32 0 49 7 49 25c0 14 -8 23 -32 29l-33 8c-40 10 -55 31 -55 63c0 52 42 68 85 68c49 0 78 -18 82 -61l-48 -6c-2 21 -14 30 -37 30c-21 0 -34 -10 -34 -26c0 -14 6 -23 27 -28z" />
|
701 |
+
<glyph glyph-name="uniF1D0" unicode=""
|
702 |
+
d="M341 376c15 0 28 -11 28 -26v-316c0 -15 -13 -26 -28 -26h-314c-15 0 -27 11 -27 26v316c0 15 12 26 27 26h314zM109 62v176h-54v-176h54zM82 262c17 0 32 14 32 32c0 17 -15 32 -32 32c-18 0 -32 -15 -32 -32c0 -18 14 -32 32 -32zM314 62v0v97c0 47 -10 83 -65 83
|
703 |
+
c-27 0 -45 -14 -52 -28h-1v24h-52v-176h54v87c0 23 5 45 33 45s28 -26 28 -46v-86h55z" />
|
704 |
+
<glyph glyph-name="uniF1D1" unicode=""
|
705 |
+
d="M346 376c13 -5 23 -18 23 -33v-299c0 -20 -16 -36 -36 -36h-299c-16 0 -29 11 -34 25v321c3 10 10 18 20 22h326zM276 241v22h-68l-22 -84h-1l-22 84h-68v-22h7c3 0 6 -4 6 -6v-89c0 -2 -3 -6 -6 -6h-7v-21h54v21h-13v94v0l32 -115h24l32 115v0v-94h-12v-21h64v21h-7
|
706 |
+
c-3 0 -6 4 -6 6v89c0 2 3 6 6 6h7z" />
|
707 |
+
<glyph glyph-name="uniF1D2" unicode="" horiz-adv-x="454"
|
708 |
+
d="M375 187c-40 0 -73 32 -73 72s33 72 73 72s72 -32 72 -72s-32 -72 -72 -72zM147 238c0 43 22 65 65 65s65 -22 65 -65s-22 -65 -65 -65s-65 22 -65 65zM64 161c-32 0 -58 27 -58 59s26 58 58 58s59 -26 59 -58s-27 -59 -59 -59zM64 148c37 0 65 -32 65 -66v-23
|
709 |
+
c0 -3 -3 -6 -6 -6h-2h-113h-2c-3 0 -6 3 -6 6v23c0 34 27 66 64 66zM212 159c41 0 71 -37 71 -74v-25c0 -4 -2 -7 -6 -7h-2h-126h-2c-4 0 -7 3 -7 7v25c0 37 31 74 72 74zM375 170c46 0 79 -40 79 -82v-27c0 -4 -3 -8 -7 -8h-3h-139h-2c-4 0 -8 4 -8 8v27c0 42 34 82 80 82z
|
710 |
+
" />
|
711 |
+
<glyph glyph-name="uniF1D3" unicode=""
|
712 |
+
d="M185 272c45 0 82 -37 82 -82s-37 -82 -82 -82s-82 37 -82 82s37 82 82 82zM333 376c20 0 36 -16 36 -36v-296c0 -20 -16 -36 -36 -36h-297c-20 0 -36 16 -36 36v296c0 20 16 36 36 36h297zM185 66c69 0 124 55 124 124s-55 124 -124 124s-125 -55 -125 -124
|
713 |
+
s56 -124 125 -124z" />
|
714 |
+
<glyph glyph-name="uniF1D4" unicode="" horiz-adv-x="348"
|
715 |
+
d="M348 235c0 -83 -67 -136 -171 -137v-23c0 -28 -16 -54 -41 -65c-6 -3 -17 -5 -28 -5c-10 0 -22 2 -35 8v65c21 -15 41 -7 41 11v181h63v-113c30 0 112 8 112 78c0 62 -60 85 -115 85c-57 0 -114 -27 -114 -85c0 -18 9 -45 18 -53l-41 -43c-24 22 -37 66 -37 96
|
716 |
+
c0 85 72 144 174 144c104 0 174 -58 174 -144z" />
|
717 |
+
<glyph glyph-name="uniF1D5" unicode="" horiz-adv-x="399"
|
718 |
+
d="M282 373v0v-133c-7 6 -147 133 -152 138c23 8 46 13 70 13c29 0 56 -6 82 -18zM97 21v0c-37 23 -67 57 -83 97c2 2 76 69 83 75v-172zM0 192v0c0 75 42 143 109 177c2 -2 72 -65 75 -68c-3 -3 -172 -156 -177 -161c-5 17 -7 35 -7 52zM118 105v0h261
|
719 |
+
c-31 -63 -92 -106 -161 -112h-37c-22 2 -43 8 -63 17v95zM303 362v0c59 -36 96 -101 96 -170c0 -22 -4 -45 -11 -66h-85v236z" />
|
720 |
+
<glyph glyph-name="uniF1D6" unicode="" horiz-adv-x="399"
|
721 |
+
d="M200 392c110 0 199 -90 199 -200s-89 -200 -199 -200c-20 0 -39 3 -57 8c8 12 16 28 20 43c2 9 14 55 14 55c7 -13 27 -25 49 -25c64 0 108 59 108 137c0 59 -51 115 -127 115c-95 0 -142 -68 -142 -125c0 -34 13 -66 41 -77c5 -2 9 0 10 5c1 4 3 13 4 17c1 5 1 7 -3 11
|
722 |
+
c-8 9 -13 22 -13 39c0 50 37 95 98 95c54 0 83 -32 83 -76c0 -58 -25 -106 -63 -106c-21 0 -37 17 -32 38c6 25 18 53 18 71c0 16 -9 30 -27 30c-21 0 -39 -22 -39 -52c0 -19 7 -31 7 -31s-22 -93 -26 -109c-4 -15 -4 -32 -3 -46c-70 31 -120 101 -120 183
|
723 |
+
c0 110 90 200 200 200z" />
|
724 |
+
<glyph glyph-name="uniF1D7" unicode="" horiz-adv-x="435"
|
725 |
+
d="M424 291c27 -2 4 -60 -52 -75c1 -7 1 -15 1 -23v-1c0 -99 -80 -179 -187 -179s-186 79 -186 178v1c0 99 80 179 187 179c19 0 36 -3 53 -7v-105c-3 2 -6 4 -10 5c-46 16 -96 -7 -119 -45l-1 -1c-24 -39 -12 -83 33 -98c46 -16 95 7 119 45l1 1c8 13 12 27 12 40v0v145
|
726 |
+
c3 -1 6 -3 8 -4s4 -3 6 -4c24 -15 85 -53 135 -52z" />
|
727 |
+
<glyph glyph-name="uniF1D8" unicode="" horiz-adv-x="458"
|
728 |
+
d="M458 197c0 -18 -10 -35 -25 -45c1 -5 2 -10 2 -15c0 -76 -92 -138 -206 -138s-206 62 -206 138c0 5 0 11 1 16c-15 10 -24 26 -24 44c0 29 24 53 53 53c13 0 24 -5 34 -13c36 23 83 37 136 38l37 105l89 -22c6 16 22 27 40 27c24 0 43 -19 43 -43s-19 -43 -43 -43
|
729 |
+
s-43 19 -43 43l-75 18l-31 -85c50 -2 97 -16 131 -38h1c10 8 21 13 34 13c29 0 52 -24 52 -53zM299 129c18 0 32 14 32 32s-14 33 -32 33s-33 -15 -33 -33s15 -32 33 -32zM305 73c3 3 3 9 0 12s-9 3 -12 0c0 0 -20 -20 -65 -20c-44 0 -62 19 -62 20c-3 3 -9 4 -12 1
|
730 |
+
s-4 -9 -1 -12c1 -1 22 -25 75 -25s76 23 77 24zM131 161c0 -18 14 -32 32 -32s33 14 33 32s-15 33 -33 33s-32 -15 -32 -33z" />
|
731 |
+
<glyph glyph-name="uniF1D9" unicode="" horiz-adv-x="390"
|
732 |
+
d="M103 162c0 0 -20 3 -44 14l275 3c-25 -12 -48 -16 -48 -16h-74s-6 -1 -8 -4s-2 -9 -2 -9v-9c-11 8 -18 21 -24 21h-75zM25 166c-2 1 -4 2 -5 4c2 -1 3 -2 5 -4zM39 368v-182c-11 6 -17 11 -21 13v180c0 6 4 10 10 10h332c6 0 10 -4 10 -10v-180c-4 -3 -9 -7 -20 -13v182
|
733 |
+
h-311zM388 202c3 -2 1 -6 0 -8s-7 -17 -33 -34s-51 -27 -51 -27s16 -51 1 -89s-48 -48 -64 -48s-39 12 -39 34v77c6 -1 13 -2 21 -2c18 0 31 8 42 19s19 32 10 35s-12 -3 -20 -14c-7 -9 -22 -17 -44 -9c-3 1 -6 3 -9 5v9s0 6 2 9s7 4 8 4h74s23 3 48 15c1 1 3 1 4 2
|
734 |
+
c4 2 9 4 12 6c11 6 16 10 20 13l6 3c6 2 9 2 12 0zM265 124c-11 -11 -24 -19 -42 -19c-8 0 -15 1 -21 2c-8 2 -14 4 -14 4v-83s-24 -33 -40 -33s-48 9 -63 47s1 89 1 89s-25 11 -51 28c-4 2 -7 5 -10 7c-2 2 -3 3 -5 4c-14 12 -19 21 -19 23c-1 2 -3 6 0 8s7 2 13 0
|
735 |
+
c1 -1 2 -1 4 -2c4 -2 10 -7 21 -13c4 -2 7 -5 12 -7c2 -1 6 -2 8 -3c24 -11 44 -14 44 -14h75c6 0 13 -13 24 -21c3 -2 6 -4 9 -5c22 -8 37 0 44 9c8 11 11 17 20 14s1 -24 -10 -35zM251 272c26 0 47 -20 47 -46s-21 -47 -47 -47s-46 21 -46 47s20 46 46 46zM141 272
|
736 |
+
c26 0 47 -20 47 -46s-21 -47 -47 -47s-46 21 -46 47s20 46 46 46z" />
|
737 |
+
<glyph glyph-name="uniF1DA" unicode="" horiz-adv-x="394"
|
738 |
+
d="M383 150c7 -15 11 -32 11 -49c0 -60 -49 -109 -109 -109c-19 0 -36 5 -51 13c-11 -2 -23 -3 -35 -3c-104 0 -188 84 -188 188c0 13 2 26 4 38c-10 16 -15 35 -15 55c0 60 49 109 109 109c21 0 41 -6 58 -17c10 2 21 3 32 3c104 0 188 -84 188 -188c0 -14 -1 -27 -4 -40z
|
739 |
+
M296 100c9 12 13 27 13 42c0 13 -3 24 -8 33s-12 16 -21 22s-19 11 -32 15c-12 4 -27 8 -42 11c-12 3 -21 5 -26 6s-10 4 -15 6s-8 6 -11 9s-4 7 -4 11c0 7 4 13 12 18s19 8 32 8c14 0 26 -2 32 -7c7 -5 12 -12 17 -21c4 -7 7 -12 11 -15s9 -5 16 -5c8 0 14 3 19 8
|
740 |
+
s8 11 8 18s-2 14 -6 21s-10 15 -18 21s-19 11 -31 15s-27 6 -44 6c-21 0 -39 -2 -55 -8s-29 -15 -37 -26s-12 -24 -12 -38c0 -15 4 -28 12 -38s19 -17 32 -23s29 -11 49 -15c14 -3 26 -5 35 -8c8 -3 15 -7 20 -12s7 -10 7 -17c0 -9 -5 -18 -14 -24c-10 -7 -22 -10 -38 -10
|
741 |
+
c-11 0 -20 2 -27 5s-12 7 -16 12s-8 11 -11 19c-3 7 -7 13 -11 17c-5 4 -10 5 -16 5c-8 0 -15 -2 -20 -7s-8 -11 -8 -18c0 -11 4 -22 12 -34c8 -11 18 -20 31 -27c18 -9 41 -14 68 -14c23 0 41 3 58 10s30 17 39 29z" />
|
742 |
+
<glyph glyph-name="uniF1DB" unicode="" horiz-adv-x="390"
|
743 |
+
d="M173 165c98 -37 75 -98 23 -98s-89 32 -89 32l-30 -70c21 -11 43 -19 56 -23l-33 -8c-15 -4 -31 6 -35 21l-64 268c-4 16 6 31 21 35l77 19c-7 -8 -12 -17 -16 -26c0 -1 -1 -1 -1 -2c-1 -2 -1 -4 -2 -6c0 -1 -1 -2 -1 -3c-1 -2 -2 -4 -2 -6v-4c0 -2 -1 -4 -1 -6
|
744 |
+
c0 -1 -1 -2 -1 -3v-7v-3v-10s1 -6 1 -8v-1c0 -2 1 -6 2 -8v0c1 -2 1 -5 2 -7c0 -1 1 0 1 -1c1 -2 2 -5 3 -7v-1c1 -2 3 -4 4 -6c0 -1 1 0 1 -1c1 -2 3 -4 5 -6v-1c1 -2 3 -4 5 -6c0 -1 1 0 1 -1l6 -6v-1c2 -2 4 -2 6 -4c1 0 0 -2 1 -2c2 -2 5 -3 7 -5l1 -1
|
745 |
+
c15 -11 33 -20 52 -27zM390 97c4 -15 -7 -31 -22 -35l-56 -14c9 14 17 33 18 56c1 29 -10 60 -39 85v0c-2 1 -3 3 -5 4l-1 1c-2 1 -3 3 -5 4l-1 1c-2 1 -4 3 -6 4h-1c-2 1 -4 3 -6 4c-1 0 -1 1 -2 1l-6 3h-1c-2 1 -5 3 -8 4h-2l-6 3c-1 0 -1 1 -2 1l-9 3
|
746 |
+
c-100 33 -71 88 -20 85c54 -3 74 -25 74 -25l24 67c-2 1 -5 2 -7 3c-1 0 -1 1 -2 1c-2 1 -3 1 -5 2c-1 0 -1 1 -2 1c-2 1 -5 2 -7 3c-1 0 -1 1 -2 1c-1 1 -3 1 -4 2h-3c-1 1 -3 2 -4 2s-1 1 -2 1c-2 1 -3 0 -5 1c-1 0 -1 1 -2 1s-3 1 -4 1h-2c-2 0 -3 2 -5 2
|
747 |
+
c-7 2 -13 2 -17 3l56 13c16 4 30 -5 34 -21z" />
|
748 |
+
<glyph glyph-name="uniF1DC" unicode="" horiz-adv-x="379"
|
749 |
+
d="M302 224c4 1 8 4 12 4c7 0 14 0 20 -3c10 -5 11 -16 2 -22c-7 -5 -16 -8 -24 -11c-18 -7 -21 -13 -12 -30c15 -29 37 -51 70 -59c3 -1 9 -4 9 -6c0 -5 -3 -11 -6 -13c-11 -5 -23 -9 -35 -12c-7 -2 -10 -4 -12 -11c-3 -15 -6 -17 -20 -14c-23 5 -44 0 -63 -14
|
750 |
+
c-39 -28 -69 -27 -108 1c-19 14 -38 18 -61 13c-15 -3 -17 -1 -21 14c-1 6 -4 10 -11 11c-11 2 -24 6 -34 11c-4 2 -7 8 -8 13c0 2 7 7 11 8c36 10 57 34 72 66c3 8 0 13 -6 17c-6 3 -12 4 -18 7c-4 2 -8 4 -11 6c-7 4 -13 10 -9 19c3 8 14 12 23 9c5 -2 10 -4 15 -5
|
751 |
+
c7 -1 10 1 10 9c-1 18 -1 36 0 54c3 38 26 65 60 78c50 19 109 4 136 -44c9 -17 10 -35 11 -54c-1 -12 -1 -23 -2 -35c-1 -8 4 -9 10 -7z" />
|
752 |
+
<glyph glyph-name="uniF1DD" unicode="" horiz-adv-x="399"
|
753 |
+
d="M200 392c110 0 199 -90 199 -200c0 -71 -37 -133 -92 -168c-8 17 -19 32 -33 45c-29 26 -66 41 -105 41c-25 0 -48 -6 -70 -17c-18 -9 -34 -21 -47 -36c-33 36 -52 83 -52 135c0 110 90 200 200 200zM294 114c4 6 3 15 -3 19c-36 25 -77 38 -121 38c-25 0 -51 -4 -74 -13
|
754 |
+
c-7 -3 -11 -10 -8 -17s11 -11 18 -8c20 8 42 11 64 11c38 0 75 -11 106 -33c2 -2 4 -2 7 -2c4 0 8 1 11 5zM323 176c4 7 3 16 -4 20c-45 28 -96 43 -149 43c-29 0 -58 -4 -86 -13c-8 -3 -13 -11 -10 -19s11 -13 19 -10c25 8 51 12 77 12c47 0 93 -13 133 -38c2 -2 5 -2 8 -2
|
755 |
+
c5 0 9 2 12 7zM338 229c6 0 11 3 14 8c5 8 2 18 -6 23c-53 31 -114 48 -176 48c-34 0 -67 -5 -99 -14c-9 -3 -15 -12 -12 -21s12 -14 21 -11c29 9 60 13 90 13c56 0 112 -16 160 -44c3 -2 5 -2 8 -2zM225 16c6 -6 11 -13 15 -20c-13 -3 -26 -4 -40 -4c-32 0 -63 7 -90 21
|
756 |
+
c6 6 13 12 21 16c12 6 25 9 38 9c21 0 41 -8 56 -22z" />
|
757 |
+
<glyph glyph-name="uniF1DE" unicode="" horiz-adv-x="425"
|
758 |
+
d="M420 109c6 -21 7 -44 0 -65c-15 -44 -45 -72 -92 -78c-30 -4 -56 5 -77 28c-17 19 -26 41 -28 66c0 4 0 8 -1 12c-4 21 -18 30 -39 27c-24 -3 -47 -8 -71 -7c-13 0 -26 4 -38 10c-19 10 -28 27 -31 48s0 42 4 63c2 8 3 16 4 25c1 17 -8 29 -21 39c1 1 3 0 4 0
|
759 |
+
c23 -3 39 -23 38 -46c-1 -22 -2 -43 3 -65c1 -4 2 -8 3 -11c4 -12 15 -14 26 -15c20 -1 40 3 60 6c10 2 18 3 29 5c-9 6 -17 11 -25 16c-40 24 -65 57 -73 104c-1 9 -4 17 -6 26c-5 26 -21 41 -47 45c-13 2 -25 1 -38 -1c-1 0 -3 -1 -4 0c-1 2 1 2 2 3c24 12 49 15 75 8
|
760 |
+
c14 -4 22 -15 28 -27c6 -13 9 -27 13 -41c1 -4 3 -8 4 -12c6 -20 19 -35 38 -44s39 -15 60 -18c2 0 4 -2 4 2c-1 11 -1 22 -2 33c-2 21 -14 35 -32 45c-13 8 -26 17 -38 27c-30 27 -42 60 -35 100v2h3c-1 -24 5 -45 23 -63c10 -10 22 -15 34 -21c32 -14 58 -35 77 -64
|
761 |
+
c9 -14 13 -29 16 -44c0 -1 1 -2 1 -4c7 13 18 23 26 34c14 20 12 37 -4 55c-12 13 -28 21 -44 28c-2 1 -5 2 -7 3c-21 8 -31 25 -29 48c0 3 0 5 2 8c1 -5 2 -9 3 -14c4 -17 13 -27 30 -31c25 -6 50 -16 69 -34c12 -11 20 -23 23 -39c2 -14 0 -26 -6 -38
|
762 |
+
c-4 -9 -10 -18 -14 -27c-5 -10 -4 -20 0 -30c3 -6 7 -9 14 -9c41 -2 75 -28 86 -68z" />
|
763 |
+
<glyph glyph-name="uniF1DF" unicode="" horiz-adv-x="337"
|
764 |
+
d="M247 12v144h34v-179h-281v179h33l-2 -144h216zM53 35v36h169v-36h-169zM53 99l4 37l169 -17l-4 -36zM62 173l10 36l164 -46l-10 -36zM93 260l19 31l145 -87l-19 -32zM293 232l-30 -22l-98 138l29 22zM301 234l-28 167l36 6l28 -167z" />
|
765 |
+
<glyph glyph-name="uniF1E0" unicode="" horiz-adv-x="497"
|
766 |
+
d="M466 238c0 -20 -16 -36 -36 -36s-37 16 -37 36s17 36 37 36s36 -16 36 -36zM429 306c37 0 68 -31 68 -68s-31 -67 -68 -67l-64 -47c-2 -25 -24 -46 -50 -46c-24 0 -44 17 -49 40l-190 76c-8 -4 -17 -7 -26 -7c-28 0 -50 23 -50 51s22 50 50 50c24 0 44 -17 49 -40
|
767 |
+
l190 -76c8 4 17 7 26 7h5l42 60c0 37 30 67 67 67zM429 283c-25 0 -45 -20 -45 -45s20 -45 45 -45s45 20 45 45s-20 45 -45 45zM50 275c-20 0 -37 -17 -37 -37s17 -37 37 -37c3 0 5 -1 8 0l-15 7v0c-14 6 -22 23 -16 38s23 21 38 16v0l18 -7c-6 12 -19 20 -33 20zM315 166
|
768 |
+
c-3 0 -5 0 -8 -1l15 -6c15 -6 23 -24 17 -39s-24 -22 -39 -16c-6 2 -12 5 -18 7c6 -12 19 -19 33 -19c20 0 37 17 37 37s-17 37 -37 37z" />
|
769 |
+
<glyph glyph-name="uniF1E1" unicode="" horiz-adv-x="399"
|
770 |
+
d="M357 314c26 -34 42 -76 42 -122c0 -110 -89 -200 -199 -200c-78 0 -145 44 -178 109h87c41 0 70 22 70 58c0 76 -87 45 -87 72c0 13 10 18 29 18h32h29c17 0 36 -4 36 -22v-60c0 -44 35 -66 70 -66c36 0 69 22 69 66v147v0zM200 392c42 0 80 -13 112 -35v-191
|
771 |
+
c0 -13 -11 -24 -24 -24v0c-13 0 -24 11 -24 24v57c0 46 -24 65 -54 65h-98c-36 0 -65 -23 -65 -59c0 -18 8 -45 45 -52c30 -5 42 -4 42 -20s-17 -15 -40 -15h-88c-4 16 -6 33 -6 50c0 110 90 200 200 200v0z" />
|
772 |
+
<glyph glyph-name="uniF1E2" unicode="" horiz-adv-x="394"
|
773 |
+
d="M193 244c-24 -18 -47 -38 -74 -52c-4 -2 -8 -4 -13 -5c-12 -3 -20 -14 -20 -27c0 -12 9 -24 21 -27s25 2 31 13c7 15 20 25 33 34c5 4 7 3 11 -2c4 9 9 18 13 27c1 -1 1 -1 1 -2c-7 -25 -14 -52 -22 -77c-2 -6 -5 -10 -10 -13c-14 -9 -18 -28 -9 -43c9 -14 27 -19 42 -11
|
774 |
+
s21 26 14 41c-3 5 -3 11 -2 16c4 14 6 28 14 41c3 6 7 11 13 15c7 4 11 3 16 -3c6 -7 9 -15 8 -25c-1 -13 7 -25 19 -29s25 1 32 11c7 11 7 24 -2 34c-10 12 -21 23 -30 35c-16 21 -17 43 -4 66c7 12 15 25 22 38c6 11 15 21 26 27c10 5 19 6 29 0c6 -4 12 -7 19 -11
|
775 |
+
c15 -9 23 -22 23 -39v-168c0 -17 -8 -30 -22 -38c-51 -29 -101 -58 -152 -86c-15 -8 -30 -8 -45 0c-51 29 -102 57 -153 86c-14 8 -22 21 -22 37v170c0 16 7 29 21 37c51 29 103 58 155 87c13 7 28 7 42 0c8 -4 15 -8 23 -12c6 -3 8 -9 9 -16c1 -12 -1 -23 -7 -33
|
776 |
+
c-7 -12 -14 -25 -21 -37c-14 -22 -33 -36 -59 -40c-16 -3 -33 -1 -49 1c-12 1 -23 -5 -27 -16s0 -24 10 -30s23 -4 31 5c5 6 13 5 20 6c5 1 10 2 15 2c2 0 3 0 5 1c8 4 16 9 24 13z" />
|
777 |
+
<glyph glyph-name="uniF1E3" unicode=""
|
778 |
+
d="M333 376c20 0 36 -16 36 -36v-296c0 -20 -16 -36 -36 -36h-297c-20 0 -36 16 -36 36v296c0 20 16 36 36 36h297zM270 68v0v44c-14 -9 -28 -14 -42 -14c-8 0 -15 2 -21 6c-5 3 -8 6 -10 11s-2 15 -2 31v71h66v44h-66v70h-40c-2 -14 -4 -27 -9 -36s-11 -16 -19 -23
|
779 |
+
s-17 -12 -28 -16v-39h30v-97c0 -13 1 -22 4 -29s8 -13 15 -19s15 -11 25 -14s20 -5 33 -5c11 0 22 1 32 3s20 6 32 12z" />
|
780 |
+
<glyph glyph-name="uniF1E4" unicode="" horiz-adv-x="394"
|
781 |
+
d="M394 314c-11 -16 -24 -31 -40 -42v-10c0 -107 -81 -230 -230 -230c-46 0 -88 13 -124 36c6 -1 12 -1 19 -1c38 0 73 13 101 35c-35 1 -66 24 -76 56c5 -1 10 -2 15 -2c7 0 15 1 22 3c-37 7 -65 40 -65 79v2c11 -6 23 -11 36 -11c-22 15 -35 40 -35 68c0 15 3 28 10 40
|
782 |
+
c40 -49 100 -81 167 -84c-1 6 -2 12 -2 18c0 45 36 81 81 81c23 0 44 -9 59 -25c18 4 35 10 51 19c-6 -19 -18 -34 -35 -44c16 2 31 6 46 12z" />
|
783 |
+
<glyph glyph-name="uniF1E5" unicode=""
|
784 |
+
d="M333 376c20 0 36 -15 36 -35v-298c0 -20 -16 -35 -36 -35h-297c-20 0 -36 15 -36 35v298c0 20 16 35 36 35h297zM309 259c1 7 2 15 0 22c-1 3 -2 6 -4 8c-9 11 -29 11 -42 9c-11 -2 -48 -17 -60 -55h6c14 0 22 -2 25 -12c1 -4 2 -8 1 -14c-1 -10 -6 -20 -12 -31
|
785 |
+
c-7 -12 -19 -37 -35 -20c-2 2 -4 6 -5 6v0c-10 15 -9 42 -12 59c-2 11 -4 26 -8 37c0 1 0 5 -1 5v0c-4 10 -11 17 -18 19c-9 3 -22 -2 -29 -6c-22 -13 -39 -31 -59 -46v-1c5 -1 4 -2 5 -4c2 -3 4 -5 8 -6c13 -2 25 11 34 -3c1 -2 2 -3 3 -5h-1l1 -1v1v-1c3 -7 4 -15 7 -22
|
786 |
+
c5 -13 8 -26 12 -41c4 -16 8 -37 17 -52c5 -9 11 -16 19 -19c11 -5 28 2 36 7c23 13 40 32 55 52c35 46 54 99 57 114z" />
|
787 |
+
<glyph glyph-name="uniF1E6" unicode="" horiz-adv-x="368"
|
788 |
+
d="M368 203h-205v149l205 29v-178zM149 349v-146h-149v125zM0 183h149v-148l-149 22v126zM163 33v150h205v-180z" />
|
789 |
+
<glyph glyph-name="uniF1E7" unicode="" horiz-adv-x="399"
|
790 |
+
d="M147 277c-131 -136 -103 -210 -103 -210c-27 34 -44 78 -44 125c0 53 21 100 54 136c0 0 34 -15 93 -51zM200 315c-80 58 -130 29 -130 29c35 30 81 48 130 48s94 -18 129 -48c0 0 -49 29 -129 -29v0v0zM199 233c124 -92 145 -179 145 -179c-36 -38 -87 -62 -144 -62
|
791 |
+
s-109 24 -145 62c0 0 33 97 144 179zM399 192c0 -47 -16 -91 -43 -125c0 0 27 74 -104 210c59 36 94 51 94 51c33 -36 53 -83 53 -136z" />
|
792 |
+
<glyph glyph-name="uniF1E8" unicode="" horiz-adv-x="512"
|
793 |
+
d="M460 50l-53 6l6 46l53 -6zM512 328l-50 -202l-39 6l-1 207zM332 292c35 -27 53 -61 53 -103c0 -43 -18 -78 -53 -105c-30 -22 -67 -35 -111 -39h-56c-44 4 -82 17 -111 39c-36 27 -54 62 -54 105c0 42 18 76 54 103c35 27 82 41 139 41c56 0 103 -14 139 -41zM305 224
|
794 |
+
l7 10h-48h-50l2 -10l30 -5c-1 -6 -16 -20 -46 -43c-23 28 -39 51 -50 67l35 4l2 8c-16 1 -36 1 -60 0c-34 1 -52 1 -54 0v-10l33 -5c6 -5 18 -17 37 -40c18 -22 27 -36 28 -39l1 -15v-7c0 -12 -1 -20 -2 -21c-2 -2 -6 -2 -15 -3l-17 -1l-2 -10h52h59l1 11l-36 1l-3 22l1 9
|
795 |
+
l1 14c2 5 13 16 33 32c19 16 30 24 34 25z" />
|
796 |
+
<glyph glyph-name="uniF1E9" unicode="" horiz-adv-x="344"
|
797 |
+
d="M212 133c7 7 17 4 17 4l101 -32s14 -2 14 -12c0 -7 -4 -15 -4 -15l-43 -61s-7 -6 -15 -6s-17 12 -17 12l-54 90s-6 13 1 20zM207 179c-5 8 0 17 0 17l57 89s6 12 16 11c9 -1 13 -8 13 -8l48 -57s4 -9 2 -16s-16 -13 -16 -13l-100 -29s-15 -3 -20 6zM159 214
|
798 |
+
c-11 -3 -19 6 -19 6l-87 118s-12 14 -6 24c4 7 12 10 12 10l84 31c4 1 8 5 20 -3c8 -5 9 -23 9 -23l1 -143s-2 -17 -14 -20zM139 156c0 -15 -8 -15 -12 -18l-105 -23s-15 -6 -20 2c-3 6 -2 18 -2 18l6 73c0 5 5 9 10 12c6 4 20 -1 20 -1l90 -46s13 -6 13 -17zM165 117
|
799 |
+
c8 -4 9 -15 9 -15l-2 -105s1 -14 -8 -17c-6 -2 -15 0 -15 0l-70 23c-5 2 -9 5 -11 12s7 19 7 19l70 78s11 10 20 5z" />
|
800 |
+
<glyph glyph-name="uniF1EA" unicode=""
|
801 |
+
d="M160 88v67h16v-88h-16v9c-6 -7 -13 -11 -19 -11c-5 0 -8 3 -10 7c-1 3 -1 7 -1 13v70h16v-65v-6c0 -2 2 -4 4 -4c3 0 6 3 10 8zM71 169v17h56v-17h-19v-102h-18v102h-19zM181 247c-5 0 -8 4 -8 12v38c0 8 3 12 8 12s7 -4 7 -12v-38c0 -8 -2 -12 -7 -12zM222 156
|
802 |
+
c6 0 11 -3 13 -10c1 -4 2 -9 2 -17v-36c0 -8 -1 -14 -2 -18c-2 -7 -7 -10 -13 -10s-11 3 -16 10v-8h-16v119h16v-39c5 6 10 9 16 9zM221 92v38c0 8 -2 12 -7 12c-3 0 -5 -1 -8 -4v-54c3 -3 5 -4 8 -4c5 0 7 4 7 12zM274 156c8 0 15 -3 19 -9c3 -4 5 -11 5 -20v-19h-33v-16
|
803 |
+
c0 -8 3 -12 9 -12c4 0 6 3 7 7v10h17v-2c0 -5 -1 -8 -1 -10c-1 -4 -2 -7 -4 -10c-4 -6 -11 -10 -19 -10s-14 4 -19 10c-3 4 -6 11 -6 20v31c0 9 2 17 5 21c5 6 12 9 20 9zM281 122v8c0 8 -3 12 -8 12s-8 -4 -8 -12v-8h16zM333 376c20 0 36 -16 36 -36v-296
|
804 |
+
c0 -20 -16 -36 -36 -36h-297c-20 0 -36 16 -36 36v296c0 20 16 36 36 36h297zM218 323v-71c0 -6 0 -11 1 -14c2 -5 6 -6 11 -6c6 0 12 4 18 11v-10h17v90h-17v-69c-4 -5 -7 -7 -10 -7c-2 0 -4 0 -4 3v7v66h-16zM157 293v-31c0 -10 2 -17 5 -21c4 -6 11 -9 19 -9s14 3 19 9
|
805 |
+
c3 4 5 11 5 21v31c0 10 -2 17 -5 22c-5 6 -11 9 -19 9s-15 -3 -19 -9c-3 -5 -5 -12 -5 -22zM113 353h-19l12 -33c6 -17 9 -29 11 -38v-49h18v49l21 71h-18l-12 -47zM313 61c5 20 4 42 4 63s1 43 -4 63c-3 14 -15 24 -29 26c-33 4 -67 4 -100 4s-66 0 -99 -4
|
806 |
+
c-14 -2 -26 -12 -29 -26c-5 -20 -5 -42 -5 -63s0 -43 5 -63c3 -14 15 -24 29 -26c33 -4 66 -3 99 -3s67 -1 100 3c14 2 26 12 29 26z" />
|
807 |
+
<glyph glyph-name="uniF1EB" unicode="" horiz-adv-x="281"
|
808 |
+
d="M76 133c37 -3 66 -23 96 -41c21 -13 44 -20 69 -20c12 0 22 4 31 12c4 3 6 2 7 -3c9 -37 -21 -75 -59 -76c-19 -1 -35 6 -50 16c-17 11 -35 25 -52 36c-32 21 -67 28 -105 24c-11 -1 -12 -1 -13 11c-2 22 6 40 21 56c42 46 83 91 122 140c3 4 7 9 10 13c1 1 3 2 2 4
|
809 |
+
s-2 1 -4 1c-18 -1 -37 -2 -56 -2c-10 0 -18 2 -27 6c-15 7 -20 17 -14 32c5 12 11 23 19 34c2 3 4 4 7 2c17 -9 36 -11 55 -13c40 -3 80 0 119 8c5 1 6 -1 6 -5c2 -18 -4 -33 -16 -46c-42 -48 -82 -98 -127 -143c-14 -14 -29 -28 -41 -46z" />
|
810 |
+
<glyph glyph-name="uniF1EC" unicode=""
|
811 |
+
d="M333 376c20 0 36 -16 36 -36v-296c0 -20 -16 -36 -36 -36h-297c-20 0 -36 16 -36 36v296c0 20 16 36 36 36h297zM289 155h-165l135 39c9 3 16 7 21 13s9 15 9 23c0 10 -5 19 -13 26s-18 11 -29 11h-155c-5 -1 -9 -6 -9 -11v-27h164l-135 -38c-8 -3 -16 -7 -21 -14
|
812 |
+
s-8 -14 -8 -22c0 -10 4 -20 12 -27s18 -11 29 -11h154c5 1 10 6 11 11v27z" />
|
813 |
+
<glyph glyph-name="uniF1ED" unicode="" horiz-adv-x="394"
|
814 |
+
d="M175 214c12 12 32 12 44 0s12 -32 0 -44s-32 -12 -44 0s-12 32 0 44zM333 43v0v-1h-1v0l-8 -8v0c-4 -4 -11 -3 -15 0v0l-1 1v0v0l-7 7v0v0l-7 7v0v0v0v0c-4 4 -5 11 -1 16v1h1v1v0l7 7h1c64 65 64 171 -1 236v0v0l-8 7v0v0l-1 1v1c-4 4 -3 11 0 15v0l1 1v0v0l14 14v0v0v0
|
815 |
+
v0c4 4 11 5 16 1v0l9 -9v0v0c82 -82 83 -216 1 -298zM274 102v0h-1v0v0l-8 -9v1c-4 -4 -11 -3 -15 0v-1l-2 1v0v0l-14 15v0c-4 4 -5 11 -1 16v0l1 1v0v0l8 8v0c32 32 31 84 -1 116v0v0l-8 8v0v0l-1 1v0c-4 4 -3 11 0 15v0l1 1v0v0l14 14l1 1v0v0v0c4 4 11 4 16 0v0l9 -8v0
|
816 |
+
v-1c49 -49 50 -129 1 -179zM219 214c12 -12 12 -32 0 -44s-32 -12 -44 0s-12 32 0 44s32 12 44 0zM162 125c4 -4 3 -11 0 -15v0l-1 -1v0v0l-14 -14v0v-1v0v0c-4 -4 -12 -4 -17 0v0l-8 8v0l-1 1c-49 49 -49 129 0 179v0v0v0v0l7 8v0v0l1 1v-1c4 4 12 3 16 0v1l15 -16v0
|
817 |
+
c4 -4 5 -11 1 -16v0l-9 -9v0c-32 -32 -31 -84 1 -116v0v0l8 -8v0v0l1 -1v0zM102 65c4 -4 3 -11 0 -15v0l-1 -1v0v0l-14 -14v0v0v0v0c-4 -4 -11 -5 -16 -1v0l-9 9v0v0c-82 82 -83 216 -1 298v0l9 9v0c4 4 11 3 15 0v0l8 -8v0v0l8 -7v0c4 -4 4 -11 0 -16v-1h-1v-1v0l-7 -7v0
|
818 |
+
c-64 -65 -65 -171 0 -236h1v0l7 -7v0v0l1 -1v-1z" />
|
819 |
+
<glyph glyph-name="uniF1EE" unicode="" horiz-adv-x="426"
|
820 |
+
d="M426 244c1 -4 0 -8 -3 -11l-113 -90l50 -142c1 -4 0 -8 -3 -11c-2 -2 -4 -3 -6 -3s-4 1 -6 2l-132 79l-132 -79c-4 -2 -9 -2 -12 1s-4 7 -3 11l50 142l-112 90c-3 3 -4 7 -3 11s5 7 9 7h144l50 139c1 4 5 7 9 7s9 -3 10 -7l49 -139h144c4 0 9 -3 10 -7z" />
|
821 |
+
<glyph glyph-name="uniF1EF" unicode="" horiz-adv-x="308"
|
822 |
+
d="M308 335v0v-286v0c0 -6 -5 -11 -11 -11v0h-285v0h-1c-6 0 -11 5 -11 11v0v0v284v2c0 6 5 11 11 11h1h284v0h1c6 0 11 -5 11 -11z" />
|
823 |
+
<glyph glyph-name="uniF1F0" unicode="" horiz-adv-x="312"
|
824 |
+
d="M297 193c8 0 15 -7 15 -15s-7 -15 -15 -15h-1v0h-281v0c-8 0 -15 7 -15 15s7 15 15 15v0h281v0h1zM263 144c4 0 8 -4 8 -8v-1v-3c0 -48 -34 -90 -112 -90c-53 0 -91 19 -117 46c-2 1 -4 3 -4 6c0 2 1 4 2 5v0l18 27v0v0v0c1 2 4 4 7 4s5 -2 6 -4c20 -21 50 -39 90 -39
|
825 |
+
c42 0 58 20 58 40c0 2 -1 5 -1 7v0v2c0 4 4 8 8 8l1 -1v1h36zM63 214v0c-8 11 -12 25 -12 43c0 48 41 85 105 85c45 0 82 -15 108 -41v0c2 -1 3 -4 3 -6s-1 -4 -2 -5v0l-17 -25h-1v-1v0c-1 -2 -3 -3 -6 -3c-2 0 -4 1 -5 2v0c-23 23 -55 34 -85 34s-48 -15 -48 -36
|
826 |
+
c0 -28 45 -33 88 -46v0c1 0 2 -1 2 -2s-1 -3 -2 -3h-121c-3 0 -6 2 -7 4z" />
|
827 |
+
<glyph glyph-name="uniF1F1" unicode="" horiz-adv-x="315"
|
828 |
+
d="M313 54c1 -1 2 -3 2 -4v-11c0 -1 -1 -3 -2 -4s-2 -1 -3 -1h-67v0h-1c-1 0 -2 1 -2 2v13v0c0 1 1 2 2 3l1 1v0c37 26 41 30 41 36c0 4 -5 6 -10 6c-8 0 -15 -3 -21 -8v0v0v0v0c-2 -1 -5 -2 -7 0v0l-7 10v0c-1 2 -1 4 0 6v0v0l1 1v0c9 9 23 13 34 13c21 0 35 -12 35 -28
|
829 |
+
c0 -11 -6 -21 -26 -34h27v0c1 0 2 0 3 -1zM210 277c5 -5 5 -14 0 -19v0l-67 -66l67 -67v0c5 -5 5 -14 0 -19l-17 -17c-5 -5 -14 -5 -19 0v0v0l-67 66l-67 -66v0c-5 -5 -14 -5 -19 0l-17 17c-5 5 -5 14 0 19v0v0l67 67l-67 66v1c-5 5 -5 13 0 18l17 18c5 5 14 5 19 0l67 -67
|
830 |
+
l67 67v0c5 5 14 5 19 0z" />
|
831 |
+
<glyph glyph-name="uniF1F2" unicode="" horiz-adv-x="315"
|
832 |
+
d="M313 287c1 -1 2 -2 2 -3v-12c0 -1 -1 -2 -2 -3s-2 -2 -3 -2h-67v0h-1c-1 0 -2 1 -2 2v14v0c0 1 1 2 2 3h1v0c37 26 41 30 41 36c0 4 -5 6 -10 6c-8 0 -15 -3 -21 -8v0v0v0v0c-2 -1 -5 -2 -7 0v0l-7 11v0c-1 2 -1 3 0 5v0v1h1v1c9 9 23 12 34 12c21 0 35 -12 35 -28
|
833 |
+
c0 -11 -6 -20 -26 -33h27v0c1 0 2 -1 3 -2zM210 277c5 -5 5 -14 0 -19v0l-67 -67l67 -67v0c5 -5 5 -14 0 -19l-17 -17c-5 -5 -14 -5 -19 0v0v0l-67 67l-67 -67v0c-5 -5 -14 -5 -19 0l-17 17c-5 5 -5 14 0 19v0v0l67 67l-67 67v0c-5 5 -5 14 0 19l17 17c5 5 14 5 19 0l67 -67
|
834 |
+
l67 67v0c5 5 14 5 19 0z" />
|
835 |
+
<glyph glyph-name="uniF1F3" unicode="" horiz-adv-x="436"
|
836 |
+
d="M436 335v-1v0v-286v0c0 -8 -8 -14 -16 -14h-404c-8 0 -16 6 -16 14v0v286v0v1c0 9 7 15 16 15h404c9 0 16 -6 16 -15zM385 84v0v216h-334v-216h334zM410 179c7 0 13 5 13 12s-6 13 -13 13s-12 -6 -12 -13s5 -12 12 -12z" />
|
837 |
+
<glyph glyph-name="uniF1F4" unicode="" horiz-adv-x="317"
|
838 |
+
d="M301 410c9 0 16 -7 16 -16v-404c0 -9 -7 -16 -16 -16v0v0h-286v0c-8 0 -15 8 -15 16v404c0 8 7 16 15 16v0h286v0v0zM158 -13c7 0 13 6 13 13s-6 12 -13 12s-13 -5 -13 -12s6 -13 13 -13zM266 25v0v334h-215v-334h215z" />
|
839 |
+
<glyph glyph-name="uniF1F5" unicode="" horiz-adv-x="486"
|
840 |
+
d="M473 205c7 0 13 -6 13 -13s-6 -13 -13 -13h-38c-6 -96 -83 -173 -179 -179v-38c0 -7 -6 -13 -13 -13s-13 6 -13 13v38c-96 6 -172 83 -178 179h-39c-7 0 -13 6 -13 13s6 13 13 13h39c6 96 82 173 178 179v38c0 7 6 13 13 13s13 -6 13 -13v-38c96 -6 173 -83 179 -179h38z
|
841 |
+
M230 51v26c-54 6 -96 48 -102 102h-25c6 -68 59 -122 127 -128zM230 307v0v26c-68 -6 -121 -60 -127 -128h25c6 54 48 96 102 102zM256 333v-26c54 -6 96 -48 102 -102h26c-6 68 -60 122 -128 128zM256 51c68 6 122 60 128 128h-26c-6 -54 -48 -96 -102 -102v-26z" />
|
842 |
+
<glyph glyph-name="uniF1F6" unicode="" horiz-adv-x="384"
|
843 |
+
d="M192 307c64 0 115 -51 115 -115s-51 -115 -115 -115s-116 51 -116 115s52 115 116 115zM192 127c36 0 64 29 64 65s-28 65 -64 65s-65 -29 -65 -65s29 -65 65 -65zM192 384c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM192 51
|
844 |
+
c78 0 141 63 141 141s-63 141 -141 141s-141 -63 -141 -141s63 -141 141 -141zM153 192c0 26 13 39 39 39s39 -13 39 -39s-13 -39 -39 -39s-39 13 -39 39z" />
|
845 |
+
<glyph glyph-name="uniF1F7" unicode="" horiz-adv-x="333"
|
846 |
+
d="M12 256c-3 3 -6 6 -6 11v56c0 5 3 12 6 16c0 0 1 3 3 5c11 11 54 45 153 45c117 0 154 -48 156 -50c3 -4 6 -11 6 -16v-56c0 -4 -1 -7 -4 -9c-4 -4 -9 -5 -14 -3l-65 20c-7 2 -12 9 -12 16v21c0 1 0 3 -1 4c0 0 -15 13 -66 13s-66 -13 -66 -13c0 -1 -1 -3 -1 -4v-24
|
847 |
+
c0 -5 -3 -10 -6 -13c-2 -2 -4 -3 -6 -4h-1l-65 -17c-4 -1 -8 0 -11 2zM35 148c0 6 5 11 11 11h35c6 0 11 -5 11 -11v-13c0 -6 -5 -11 -11 -11h-35c-6 0 -11 5 -11 11v13zM161 135c0 -6 -5 -11 -11 -11h-35c-6 0 -11 5 -11 11v13c0 6 5 11 11 11h35c6 0 11 -5 11 -11v-13z
|
848 |
+
M230 135c0 -6 -5 -11 -11 -11h-35c-6 0 -11 5 -11 11v13c0 6 5 11 11 11h35c6 0 11 -5 11 -11v-13zM299 135c0 -6 -5 -11 -11 -11h-35c-6 0 -11 5 -11 11v13c0 6 5 11 11 11h35c6 0 11 -5 11 -11v-13zM11 189c-6 0 -11 5 -11 11v13c0 6 5 11 11 11h35c6 0 11 -5 11 -11v-13
|
849 |
+
c0 -6 -5 -11 -11 -11h-35zM115 189h-35c-6 0 -11 5 -11 11v13c0 6 5 11 11 11h35c6 0 11 -5 11 -11v-13c0 -6 -5 -11 -11 -11zM184 189h-35c-6 0 -11 5 -11 11v13c0 6 5 11 11 11h35c6 0 11 -5 11 -11v-13c0 -6 -5 -11 -11 -11zM253 224c6 0 11 -5 11 -11v-13
|
850 |
+
c0 -6 -5 -11 -11 -11h-35c-6 0 -11 5 -11 11v13c0 6 5 11 11 11h35zM322 224c6 0 11 -5 11 -11v-13c0 -6 -5 -11 -11 -11h-35c-6 0 -11 5 -11 11v13c0 6 5 11 11 11h35zM57 70c0 -6 -5 -10 -11 -10h-35c-6 0 -11 4 -11 10v13c0 6 5 11 11 11h35c6 0 11 -5 11 -11v-13zM80 60
|
851 |
+
c-6 0 -11 4 -11 10v13c0 6 5 11 11 11h35c6 0 11 -5 11 -11v-13c0 -6 -5 -10 -11 -10h-35zM149 60c-6 0 -11 4 -11 10v13c0 6 5 11 11 11h35c6 0 11 -5 11 -11v-13c0 -6 -5 -10 -11 -10h-35zM218 60c-6 0 -11 4 -11 10v13c0 6 5 11 11 11h35c6 0 11 -5 11 -11v-13
|
852 |
+
c0 -6 -5 -10 -11 -10h-35zM322 94c6 0 11 -5 11 -11v-13c0 -6 -5 -10 -11 -10h-35c-6 0 -11 4 -11 10v13c0 6 5 11 11 11h35zM281 30c6 0 11 -5 11 -11v-13c0 -6 -5 -11 -11 -11h-233c-6 0 -10 5 -10 11v13c0 6 4 11 10 11h233z" />
|
853 |
+
<glyph glyph-name="uniF1F8" unicode="" horiz-adv-x="358"
|
854 |
+
d="M358 88c1 -5 -1 -11 -5 -15l-50 -50c-5 -5 -13 -9 -20 -10h-7v0c-19 0 -89 7 -179 97c-106 106 -97 183 -97 186c1 7 5 15 10 20l51 50c3 3 7 5 12 5c6 0 12 -4 15 -10l41 -76c4 -8 2 -19 -5 -26l-18 -19c-1 -1 -2 -4 -2 -5c0 0 1 -25 47 -71s72 -48 72 -48c1 0 3 2 4 3
|
855 |
+
l22 21c4 4 10 7 16 7c4 0 7 -1 10 -3h1l73 -43c5 -3 8 -8 9 -13z" />
|
856 |
+
<glyph glyph-name="uniF1F9" unicode="" horiz-adv-x="379"
|
857 |
+
d="M364 45c8 0 15 -8 15 -16s-7 -15 -15 -15h-1v0h-348v0c-8 0 -15 7 -15 15s7 16 15 16v0h348v0h1zM63 80c-7 0 -13 6 -13 13c0 2 1 4 1 5v0l103 263v0c2 5 7 9 13 9h45c6 0 11 -4 13 -9v0l103 -262v-1v-1v0c0 -1 1 -3 1 -4c0 -7 -7 -13 -14 -13h-1v0h-29v0
|
858 |
+
c-5 0 -9 4 -11 8v0l-18 48h-133l-18 -47c-2 -5 -7 -9 -13 -9h-29zM189 319l-52 -138h104z" />
|
859 |
+
<glyph glyph-name="uniF1FA" unicode="" horiz-adv-x="332"
|
860 |
+
d="M65 358c6 0 12 -5 12 -11v0v0v-54v0c0 -6 -6 -12 -12 -12v0h-53v0v0c-6 0 -12 6 -12 12v0v54v0v0c0 6 6 11 12 11v0v0h53v0zM193 358c6 0 12 -5 12 -11v0v0v-54v0c0 -6 -6 -12 -12 -12v0h-54v0v0c-6 0 -11 6 -11 12v0v54v0v0c0 6 5 11 11 11v0v0h54v0zM332 347v0v0v-54v0
|
861 |
+
c0 -6 -5 -12 -11 -12v0h-54v0v0c-6 0 -12 6 -12 12v0v54v0c0 6 6 11 12 11v0v0h54v0c6 0 11 -5 11 -11zM65 230c6 0 12 -5 12 -11v0v0v-54v0c0 -6 -6 -11 -12 -11v0h-53v0v0c-6 0 -12 5 -12 11v0v54v0v0c0 6 6 11 12 11v0v0h53v0zM193 230c6 0 12 -5 12 -11v0v0v-54v0
|
862 |
+
c0 -6 -6 -11 -12 -11v0h-54v0v0c-6 0 -11 5 -11 11v0v54v0v0c0 6 5 11 11 11v0v0h54v0zM321 230c6 0 11 -5 11 -11v0v0v-54v0c0 -6 -5 -11 -11 -11v0h-54v0v0c-6 0 -12 5 -12 11v0v54v0c0 6 6 11 12 11v0v0h54v0zM65 103c6 0 12 -6 12 -12v0v0v-54v0c0 -6 -6 -11 -12 -11v0
|
863 |
+
h-53v0v0c-6 0 -12 5 -12 11v0v54v0v0c0 6 6 12 12 12v0v0h53v0zM193 103c6 0 12 -6 12 -12v0v0v-54v0c0 -6 -6 -11 -12 -11v0h-54v0v0c-6 0 -11 5 -11 11v0v54v0v0c0 6 5 12 11 12v0v0h54v0zM321 103c6 0 11 -6 11 -12v0v0v-54v0c0 -6 -5 -11 -11 -11v0h-54v0v0
|
864 |
+
c-6 0 -12 5 -12 11v0v54v0c0 6 6 12 12 12v0v0h54v0z" />
|
865 |
+
<glyph glyph-name="uniF1FB" unicode="" horiz-adv-x="512"
|
866 |
+
d="M509 276c4 -4 4 -9 0 -13v0l-324 -324v0c-4 -4 -9 -4 -13 0v1l-63 62c8 12 7 28 -4 39s-27 12 -39 4l-63 63v0v0c-4 4 -4 9 0 13v0l324 324v0c4 4 9 4 13 0l63 -63c-8 -12 -7 -28 4 -39s27 -12 39 -4l63 -63v0zM438 263c4 4 4 9 0 13l-98 98v0c-4 4 -9 4 -13 0v0
|
867 |
+
l-253 -253v0c-4 -4 -4 -9 0 -13v0l98 -98v0v0c4 -4 9 -4 13 0v0v0zM317 184c1 0 2 -1 2 -2s-1 -2 -1 -2l-1 -1l-39 -9l-9 -39c0 -1 -2 -2 -3 -2s-2 1 -2 2l-17 35l-36 -4c-1 0 -3 0 -3 1s-1 2 0 3l27 26l-17 34c0 1 0 2 1 3s2 1 3 1l34 -17l26 27c1 1 2 0 3 0s1 -2 1 -3
|
868 |
+
l-4 -36z" />
|
869 |
+
<glyph glyph-name="uniF1FC" unicode="" horiz-adv-x="332"
|
870 |
+
d="M321 139c7 -3 11 -12 11 -21v-77v-14c0 -12 -9 -22 -19 -22h-123v70v2v0l-20 34v0v1v0c-1 1 -2 2 -4 2s-2 -1 -3 -2v0l-21 -35h1c0 -1 -1 -1 -1 -2v-70h-123c-10 0 -19 10 -19 22v14v77c0 9 5 18 12 21l83 38l32 15c-15 9 -27 22 -35 39c-7 14 -11 31 -11 49
|
871 |
+
c0 10 2 20 4 29c11 40 43 70 81 70c39 0 72 -30 82 -72c2 -9 3 -18 3 -27c0 -17 -4 -32 -10 -46c-8 -17 -19 -32 -34 -41l33 -16zM190 162v2c0 2 -2 4 -4 4h-40c-2 0 -4 -2 -4 -4c0 -1 1 -1 1 -2v0l19 -35v0h1v0c1 -1 1 -2 3 -2s3 1 4 2v0l20 35v0z" />
|
872 |
+
<glyph glyph-name="uniF1FD" unicode="" horiz-adv-x="332"
|
873 |
+
d="M321 139c7 -3 11 -12 11 -21v-77v-14c0 -12 -9 -22 -19 -22h-294c-10 0 -19 10 -19 22v14v77c0 9 5 18 12 21l83 38l32 15c-1 1 -3 2 -4 3h-44c-7 0 -13 5 -13 12v33v0c1 46 18 87 42 112c13 14 29 23 47 26h2s2 1 3 1h6v0v0v0h6c1 0 2 -1 3 -1h3c18 -3 34 -13 47 -27
|
874 |
+
c24 -25 40 -65 41 -111v0v-33c0 -7 -5 -12 -12 -12h-45l-2 -2l33 -16z" />
|
875 |
+
<glyph glyph-name="uniF1FE" unicode="" horiz-adv-x="332"
|
876 |
+
d="M321 139c7 -3 11 -12 11 -21v-77v-14c0 -12 -9 -22 -19 -22h-294c-10 0 -19 10 -19 22v14v77c0 9 5 18 12 21l83 38l32 15c-15 9 -27 22 -35 39c-7 14 -11 31 -11 49c0 10 2 20 4 29c11 40 43 70 81 70c39 0 72 -30 82 -72c2 -9 3 -18 3 -27c0 -17 -4 -32 -10 -46
|
877 |
+
c-8 -17 -19 -32 -34 -41l33 -16z" />
|
878 |
+
<glyph glyph-name="uniF1FF" unicode="" horiz-adv-x="488"
|
879 |
+
d="M382 145c4 -2 7 -5 9 -9c2 -3 3 -7 3 -11v-69v-13c0 -11 -8 -20 -17 -20h-266c-9 0 -17 9 -17 20v13v69v3c1 7 5 14 11 17l74 34l29 14c-1 1 -2 0 -3 1h-40c-6 0 -11 5 -11 11v30v0c1 37 12 69 30 92c14 21 36 34 60 34c22 0 42 -11 56 -29c20 -23 33 -58 34 -97v0v-30
|
880 |
+
c0 -6 -5 -11 -11 -11h-40c-1 0 -1 -1 -2 -1l29 -14zM119 179l-25 -11c-15 -7 -25 -24 -25 -42v-69h-55c-8 0 -14 7 -14 16v66c0 7 4 13 9 15l83 39c-20 12 -33 36 -33 64c0 40 28 71 62 71c10 0 20 -3 28 -8c-17 -30 -29 -68 -30 -110v0v-31zM479 153c5 -2 9 -8 9 -15v-66
|
881 |
+
c0 -9 -6 -16 -14 -16h-55v69c0 18 -11 35 -26 42l-24 11v31h-1c-1 42 -12 80 -29 110c8 5 18 9 28 9c34 0 62 -32 62 -72c0 -28 -14 -52 -34 -64z" />
|
882 |
+
<glyph glyph-name="uniF200" unicode="" horiz-adv-x="489"
|
883 |
+
d="M481 153c5 -3 8 -8 8 -15v-66c0 -9 -5 -16 -13 -16h-58v70c0 18 -9 34 -24 41l-54 25v0c-5 3 -10 7 -14 12c12 19 19 43 19 67c0 16 -2 32 -8 46c9 7 20 11 32 11c34 0 61 -32 61 -72c0 -27 -13 -51 -32 -63zM150 193l-56 -26c-15 -7 -25 -23 -25 -41v-70h-55
|
884 |
+
c-8 0 -14 7 -14 16v66c0 7 4 13 9 15l83 39c-20 12 -33 36 -33 64c0 40 28 72 62 72c11 0 21 -4 30 -10c-6 -14 -9 -30 -9 -47c0 -25 7 -49 20 -68c-4 -4 -8 -7 -12 -10zM383 144c6 -3 10 -10 10 -18v-70v-12c0 -11 -8 -20 -17 -20h-265c-9 0 -17 9 -17 20v12v70
|
885 |
+
c0 8 5 15 11 18l75 35l29 13c-13 8 -25 20 -32 35c-6 13 -10 28 -10 44c0 9 2 18 4 26c10 36 39 63 73 63c35 0 64 -28 73 -65c2 -8 3 -16 3 -24c0 -15 -3 -29 -9 -41c-7 -16 -18 -29 -31 -37l31 -15z" />
|
886 |
+
<glyph glyph-name="uniF201" unicode="" horiz-adv-x="442"
|
887 |
+
d="M140 207v0v-24l-39 -18c-16 -8 -27 -25 -27 -44v-74h-59c-8 0 -15 8 -15 17v71c0 7 3 13 9 16l90 41c-21 13 -36 38 -36 68c0 42 30 77 66 77c12 0 22 -4 32 -10c-1 -4 -3 -7 -4 -11c-10 -22 -16 -48 -17 -76v0v-28v-5zM430 139c7 -3 12 -12 12 -21v-77v-14
|
888 |
+
c0 -12 -9 -22 -19 -22h-295c-10 0 -19 10 -19 22v14v77c0 9 5 18 12 21l83 38l33 15c-1 1 -3 2 -4 3h-45c-7 0 -12 5 -12 12v33v0c1 46 18 87 42 112c13 14 28 23 46 26h3s2 1 3 1h6h6c1 0 2 -1 3 -1h2c18 -3 34 -13 47 -27c24 -25 40 -65 41 -111h1v-33
|
889 |
+
c0 -7 -6 -12 -13 -12h-44c-1 -1 -2 -1 -3 -2l34 -16z" />
|
890 |
+
<glyph glyph-name="uniF202" unicode="" horiz-adv-x="420"
|
891 |
+
d="M419 124c0 -1 1 -2 1 -3v-74v-13c0 -12 -9 -21 -19 -21h-282c-10 0 -18 9 -18 21v13v74c0 2 0 4 1 6c2 6 5 12 10 14l80 37l31 14c-14 8 -26 22 -34 38c-6 12 -9 25 -10 40v6v8c1 7 2 13 4 20c1 4 2 8 3 11c13 33 41 56 74 56v0v0c37 0 68 -29 78 -69c2 -8 4 -17 4 -26
|
892 |
+
c0 -16 -4 -31 -10 -44c-8 -17 -19 -30 -33 -39l32 -16l77 -36c6 -3 10 -10 11 -17zM155 190l-54 -25c-16 -8 -27 -25 -27 -44v-74h-59c-8 0 -15 8 -15 17v71c0 7 3 13 9 16l90 41l-2 1h-36c-5 0 -10 5 -10 10v26v0c2 62 37 111 80 111c9 0 17 -2 25 -6
|
893 |
+
c-8 -17 -13 -37 -13 -58c0 -30 10 -56 26 -78z" />
|
894 |
+
<glyph glyph-name="uniF203" unicode="" horiz-adv-x="420"
|
895 |
+
d="M160 193l-59 -28c-16 -8 -27 -25 -27 -44v-74h-59c-8 0 -15 8 -15 17v71c0 7 3 13 9 16l90 41c-21 13 -36 38 -36 68c0 42 30 77 66 77c12 0 22 -4 32 -10c-6 -15 -9 -33 -9 -51c0 -27 7 -51 21 -72c-4 -4 -8 -8 -13 -11zM408 141c7 -3 12 -11 12 -20v-74v-13
|
896 |
+
c0 -12 -9 -21 -19 -21h-282c-10 0 -18 9 -18 21v13v74c0 9 4 17 11 20l80 37l31 14c-14 8 -26 22 -34 38c-7 14 -10 29 -10 46c0 10 2 19 4 28c10 39 40 67 77 67s68 -29 78 -69c2 -8 4 -17 4 -26c0 -16 -4 -31 -10 -44c-8 -17 -19 -30 -33 -39l32 -16z" />
|
897 |
+
<glyph glyph-name="uniF204" unicode="" horiz-adv-x="321"
|
898 |
+
d="M293 277c7 0 12 -5 12 -12v-256c0 -7 -5 -12 -12 -12h-265c-7 0 -12 5 -12 12v256c0 7 5 12 12 12h265zM309 359c7 0 12 -5 12 -12v-35c0 -7 -5 -13 -12 -13h-297c-7 0 -12 6 -12 13v35c0 7 5 12 12 12h101v16c0 7 5 12 12 12h72c7 0 12 -5 12 -12v-16h100z" />
|
899 |
+
<glyph glyph-name="uniF205" unicode="" horiz-adv-x="431"
|
900 |
+
d="M431 33c1 -1 0 -2 0 -3c0 -4 -2 -7 -6 -7v0h-72v-20c0 -3 -3 -5 -6 -5h-26c-3 0 -6 2 -6 5v20h-72v0c-4 0 -6 3 -6 7c0 1 0 2 1 3v0l8 16h-82v-44c0 -4 -4 -7 -8 -7h-38c-4 0 -7 3 -7 7v44h-101v0c-5 0 -10 4 -10 9c0 2 1 4 2 6l52 90h-21v0c-4 0 -8 4 -8 8c0 2 1 4 2 5
|
901 |
+
l48 83h-12v0c-3 0 -6 2 -6 5c0 1 1 2 1 3v0l71 123c2 3 4 5 8 5s7 -2 9 -5v0l71 -123v0c0 -1 1 -2 1 -3c0 -3 -3 -5 -6 -5v0h-12l49 -84v-1c1 -1 1 -2 1 -3c0 -4 -4 -8 -8 -8v0h-21l43 -75l11 19h-15v0c-3 0 -5 3 -5 6v2v0l35 60h-9v0c-2 0 -4 2 -4 4c0 1 1 1 1 2v0l50 87v0
|
902 |
+
c1 2 3 4 6 4s5 -2 6 -4v0l50 -87v0c0 -1 1 -1 1 -2c0 -2 -2 -4 -4 -4v0h-8l34 -60v0c0 -1 1 -1 1 -2c0 -3 -3 -6 -6 -6v0h-15l38 -65v0z" />
|
903 |
+
<glyph glyph-name="uniF206" unicode="" horiz-adv-x="331"
|
904 |
+
d="M331 325v0v-133v0c0 -5 -5 -10 -10 -10v0h-43c-7 -47 -42 -84 -87 -94v-65h51v0c7 0 13 -6 13 -13s-6 -13 -13 -13v0v0h-153v0c-7 0 -13 6 -13 13s6 13 13 13h51v65c-45 10 -81 47 -88 94h-42v0c-5 0 -10 5 -10 10v0v0v0v0v133v0v1v0v0c0 5 5 9 10 9h41v36v1
|
905 |
+
c0 8 6 14 14 15v0h199v0h1c8 0 15 -7 15 -15v-1v-36h41v0c5 0 10 -5 10 -10zM51 208v102h-25v-102h25zM305 208v102h-25v-102h25z" />
|
906 |
+
<glyph glyph-name="uniF207" unicode="" horiz-adv-x="312"
|
907 |
+
d="M297 61c8 0 15 -7 15 -15s-7 -16 -15 -16l-1 1v-1h-281v1c-8 0 -15 7 -15 15s7 15 15 15v0h281v0h1zM156 79c-81 0 -121 46 -121 115v145c0 8 7 15 15 15h20c8 0 15 -7 15 -15v-1v-143c0 -44 25 -73 71 -73s71 29 71 73v143v1c0 8 7 15 15 15h20c8 0 15 -7 15 -15v-145
|
908 |
+
c0 -69 -40 -115 -121 -115z" />
|
909 |
+
<glyph glyph-name="uniF208" unicode="" horiz-adv-x="384"
|
910 |
+
d="M192 384c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM192 51c78 0 141 63 141 141s-63 141 -141 141s-141 -63 -141 -141s63 -141 141 -141zM166 281c0 16 8 25 24 25s24 -9 24 -25s-8 -24 -24 -24s-24 8 -24 24zM273 201v0
|
911 |
+
c2 -2 3 -4 3 -7c0 -6 -4 -10 -10 -10c-3 0 -5 1 -7 3v0l-34 34v0h-1v0c-1 0 -1 1 -2 1c-2 0 -3 -1 -3 -3v-1v0v-30v-32v-63c0 -7 -5 -12 -12 -12s-12 5 -12 12v63v0c0 2 -1 4 -3 4s-3 -2 -3 -4v0v-63c0 -7 -5 -12 -12 -12s-12 5 -12 12v63v32v31v0c0 2 -1 3 -3 3
|
912 |
+
c-1 0 -2 0 -3 -1v0l-34 -34v0c-2 -2 -4 -3 -7 -3c-6 0 -10 4 -10 10c0 3 1 5 3 7v0l46 46v1v0v0c2 2 5 3 8 3v0h53h1c3 0 6 -1 8 -3v0v0v-1z" />
|
913 |
+
<glyph glyph-name="uniF209" unicode="" horiz-adv-x="463"
|
914 |
+
d="M59 344v0c-6 6 -6 14 0 20s14 6 20 0v0v0v0h1l49 -49c6 -6 6 -15 0 -21s-15 -6 -21 0zM144 363v0c-2 8 2 16 10 18s16 -2 18 -10v0v0v0v0l19 -68c2 -8 -3 -16 -11 -18s-16 2 -18 10zM58 246c-8 2 -12 10 -10 18s9 12 17 10v0h1v0v0l67 -18c8 -2 13 -10 11 -18
|
915 |
+
s-10 -12 -18 -10l-68 18v0v0v0v0zM405 40v0c6 -6 5 -14 -1 -20s-14 -6 -20 0v0v0v0v0l-50 49c-6 6 -6 15 0 21s15 6 21 0zM319 21v0c2 -8 -2 -16 -10 -18s-16 2 -18 10v0v0v0v0l-18 68c-2 8 2 16 10 18s16 -2 18 -10zM405 138c8 -2 13 -10 11 -18s-10 -12 -18 -10v0v0v0v0
|
916 |
+
l-68 18c-8 2 -13 10 -11 18s10 12 18 10l68 -18v0v0v0v0zM222 183c39 -39 40 -101 4 -141v0l-51 -52c-40 -40 -105 -40 -145 0s-40 105 0 145l52 52v0c40 36 101 35 140 -4zM189 77v0c17 20 16 50 -3 69s-50 20 -70 3v0l-3 -3v0v0l-46 -46v0c-20 -20 -20 -53 0 -73
|
917 |
+
s53 -20 73 0v0l46 46v0v0zM433 394c39 -39 40 -101 4 -141v0l-52 -52c-40 -40 -104 -40 -144 0s-40 105 0 145l51 51h1c40 36 101 36 140 -3zM400 287v0c17 20 16 51 -3 70s-50 20 -70 3v0l-3 -3v0v0l-46 -46h-1c-20 -20 -20 -53 0 -73s53 -20 73 0v0l47 46v0v0z" />
|
918 |
+
<glyph glyph-name="uniF20A" unicode="" horiz-adv-x="356"
|
919 |
+
d="M342 215c7 0 14 -6 14 -13v-192c0 -7 -7 -13 -14 -13h-329c-7 0 -13 6 -13 13v192c0 7 6 13 13 13h19h29v54c0 65 55 118 122 118c66 0 120 -52 121 -116v-2c0 -5 -4 -10 -10 -10v0h-51c-6 0 -10 5 -10 10c0 27 -22 48 -50 48s-50 -21 -50 -48v-54h123h67h19z" />
|
920 |
+
<glyph glyph-name="uniF20B" unicode="" horiz-adv-x="473"
|
921 |
+
d="M387 259c46 6 86 -34 86 -83c0 -18 -6 -35 -16 -50c-3 -4 -7 -7 -12 -7h-138c-1 47 -39 86 -87 86s-86 -39 -87 -86h-102c-5 0 -10 3 -13 8c-12 20 -18 42 -18 66c0 66 49 121 110 121c8 0 15 -1 23 -3c27 39 70 61 115 61c65 0 121 -47 139 -113zM274 88c1 -2 1 -3 0 -5
|
922 |
+
s-2 -3 -4 -3h-24v-64c0 -3 -2 -4 -5 -4h-44c-3 0 -4 1 -4 4v64h-24c-2 0 -4 1 -5 3s0 4 1 5l50 71c1 1 2 2 4 2v0c2 0 3 -1 4 -2z" />
|
923 |
+
<glyph glyph-name="uniF20C" unicode="" horiz-adv-x="420"
|
924 |
+
d="M394 194c14 0 26 -11 26 -25v-144c0 -14 -12 -25 -26 -25h-368c-14 0 -26 11 -26 25v144c0 14 12 25 26 25h93c11 0 22 -7 25 -17c9 -28 36 -46 66 -46s57 18 66 46c3 10 13 17 24 17h94zM137 273c-3 0 -5 1 -6 3s-1 5 1 7l72 98c1 2 4 3 6 3v0c2 0 4 -1 5 -3l73 -98
|
925 |
+
c2 -2 2 -5 1 -7s-3 -3 -6 -3h-35v-88c0 -4 -3 -7 -7 -7h-63c-4 0 -7 3 -7 7v88h-34z" />
|
926 |
+
<glyph glyph-name="uniF20D" unicode="" horiz-adv-x="150"
|
927 |
+
d="M150 266v0v-233v0c0 -8 -7 -15 -15 -15v0h-121v0c-8 0 -14 7 -14 15v0v233v0c0 8 6 14 14 14h1h11v77v0c0 4 3 7 7 8v1h83c5 0 8 -4 8 -9v0v0v-77h11v0c8 0 15 -6 15 -14zM99 280v60h-48v-60h48zM62 294v11h26v-11h-26z" />
|
928 |
+
<glyph glyph-name="uniF20E" unicode="" horiz-adv-x="410"
|
929 |
+
d="M288 134v-54c0 -13 -10 -23 -23 -23h-242c-13 0 -23 10 -23 23v224c0 13 10 23 23 23h242c13 0 23 -10 23 -23v-53v0l122 57v-232z" />
|
930 |
+
<glyph glyph-name="uniF20F" unicode="" horiz-adv-x="243"
|
931 |
+
d="M243 328v-270h-1l1 -1c0 -6 -5 -11 -11 -11c-2 0 -4 1 -6 2l-85 49v0l-59 34h-74v0v0c-4 0 -8 4 -8 8v106c0 4 4 8 8 8v0v0h74l40 23v0l105 60v0c2 1 3 2 5 2c5 0 9 -5 10 -10h1z" />
|
932 |
+
<glyph glyph-name="uniF210" unicode="" horiz-adv-x="436"
|
933 |
+
d="M271 268c-4 5 -4 12 0 17v0l1 1v0v0l16 16v0v0v0v0c5 5 14 5 19 1v0l10 -10v0v0c43 -43 53 -106 31 -159l-41 41c5 29 -4 60 -26 82v1v0l-10 10v0zM366 361c77 -77 90 -194 40 -285l-37 37c31 70 18 155 -39 212v0h-1l-8 9v0v0l-1 1v0c-4 5 -4 12 0 17v0l17 18v0
|
934 |
+
c5 5 13 5 18 1v0l10 -10v0h1zM243 316v0v-77l-60 60l44 25v0c2 1 3 2 5 2c5 0 9 -5 10 -10h1zM82 241l9 5l152 -151v-49h-1l1 -1c0 -6 -5 -10 -11 -10c-2 0 -4 0 -6 1l-85 49v0l-59 34h-74v0v0c-4 0 -8 4 -8 8v106c0 4 4 8 8 8v0v0h74zM401 45v0c5 -5 5 -13 0 -18l-1 -1
|
935 |
+
l-17 -18v0c-5 -5 -13 -5 -18 0v0l-331 331c-5 5 -5 13 0 18v0l18 18v1c5 5 13 5 18 0v0v0z" />
|
936 |
+
<glyph glyph-name="uniF211" unicode="" horiz-adv-x="436"
|
937 |
+
d="M366 361c93 -93 93 -245 0 -338v0l-8 -9v0v0l-1 -1h-1c-5 -4 -12 -4 -17 0v0l-17 17v0c-5 5 -5 14 -1 19v0l1 1v0v0l9 9v-1c73 74 73 193 -1 267v1l-1 -1l-8 9v0v0l-1 1v0c-4 5 -4 13 0 18v0l17 17v0c5 5 13 5 18 1v0l10 -10v0h1zM317 293c56 -56 56 -147 1 -203v0
|
938 |
+
l-10 -10v0c-5 -4 -12 -4 -17 0v0l-18 18v0c-5 5 -5 13 -1 18v0l1 1v0v0l9 9v0c36 37 35 96 -1 132v0v0l-10 10v0c-4 5 -4 12 0 17v0l1 1v0v0l16 16v1v0v0v0c5 5 14 5 19 1v0l10 -10v0v-1zM232 326c5 0 9 -4 10 -9h1v-270h-1l1 -1c0 -6 -5 -11 -11 -11c-2 0 -4 1 -6 2l-85 49
|
939 |
+
v0l-59 34h-74v0v0c-4 0 -8 4 -8 8v105c0 4 4 8 8 8v0v0h74l40 23v0l105 61v0c2 1 3 1 5 1z" />
|
940 |
+
<glyph glyph-name="uniF212" unicode="" horiz-adv-x="384"
|
941 |
+
d="M192 384c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM53 167c8 -44 37 -81 75 -101c-24 28 -40 63 -45 101h-30zM83 217c5 38 21 73 45 101c-38 -20 -67 -57 -75 -101h30zM167 100v67h-33c5 -25 17 -48 33 -67zM167 217v67
|
942 |
+
c-16 -19 -28 -42 -33 -67h33zM331 217c-8 44 -37 81 -75 101c24 -28 40 -63 45 -101h30zM217 100c16 19 28 42 33 67h-33v-67zM217 217h33c-5 25 -17 48 -33 67v-67zM256 66c38 20 67 57 75 101h-30c-5 -38 -21 -73 -45 -101z" />
|
943 |
+
<glyph glyph-name="uniF213" unicode="" horiz-adv-x="285"
|
944 |
+
d="M152 62l29 -29c-19 -15 -44 -25 -70 -25c-61 0 -111 50 -111 111c0 26 10 51 25 70l27 -28c-8 -12 -13 -25 -13 -40c0 -39 33 -72 72 -72c15 0 29 5 41 13zM202 340c0 24 13 36 37 36s37 -12 37 -36s-13 -37 -37 -37s-37 13 -37 37zM262 215c13 0 23 -10 23 -23v-117
|
945 |
+
c0 -13 -10 -23 -23 -23s-23 10 -23 23v94h-29c8 -15 12 -32 12 -50c0 -26 -8 -49 -23 -68l-29 29c8 12 12 26 12 41c0 39 -32 71 -71 71c-15 0 -29 -5 -41 -13l-27 27c10 8 22 15 35 19l67 66l-28 17l-33 -33h-1v-1v0c-4 -4 -10 -6 -16 -6c-13 0 -23 10 -23 23
|
946 |
+
c0 6 3 12 7 16v0l45 45l1 1v1v-1c4 4 10 6 16 6c3 0 6 -1 9 -2v1l103 -60v0c7 -4 11 -11 11 -19c0 -5 -1 -10 -4 -14v0l-1 -1c-1 -1 -3 -2 -4 -3l-46 -46h81z" />
|
947 |
+
<glyph glyph-name="uniF214" unicode="" horiz-adv-x="415"
|
948 |
+
d="M405 226c6 -1 10 -5 10 -11v-46c0 -6 -4 -10 -10 -11l-53 -5c-3 -13 -8 -25 -15 -36l34 -41c4 -4 3 -11 -1 -15l-32 -32c-2 -2 -5 -3 -8 -3c-2 0 -5 1 -7 3l-41 33c-11 -7 -23 -12 -36 -15l-5 -52c-1 -6 -5 -10 -11 -10h-45c-6 0 -10 4 -11 10l-5 52c-13 3 -26 8 -37 15
|
949 |
+
l-40 -33c-2 -2 -5 -3 -7 -3c-3 0 -6 1 -8 3l-32 32c-4 4 -5 11 -1 15l34 41c-7 11 -12 23 -15 36l-53 5c-6 1 -10 5 -10 11v46c0 6 4 10 10 11l53 5c3 13 8 25 15 36l-34 41c-4 4 -3 11 1 15l32 32c2 2 5 3 8 3c2 0 5 -1 7 -3l40 -33c11 7 24 12 37 15l5 52c1 6 5 10 11 10
|
950 |
+
h45c6 0 10 -4 11 -10l5 -52c13 -3 25 -8 36 -15l41 33c2 2 5 3 7 3c3 0 6 -1 8 -3l32 -32c4 -4 5 -11 1 -15l-34 -41c7 -11 12 -23 15 -36zM207 131c34 0 62 27 62 61s-28 61 -62 61s-61 -27 -61 -61s27 -61 61 -61z" />
|
951 |
+
<glyph glyph-name="uniF215" unicode="" horiz-adv-x="401"
|
952 |
+
d="M386 328c1 1 4 1 5 0v0v0l1 -1v0c6 -14 9 -29 9 -45c0 -61 -49 -111 -110 -111c-12 0 -23 3 -34 6l-115 -116c-1 -39 -32 -70 -71 -70s-71 32 -71 71s31 70 70 71l115 116c-3 11 -5 21 -5 33c0 61 50 111 111 111c16 0 30 -4 44 -10h1v0v0l1 -1c1 -1 1 -3 0 -4l-20 -20
|
953 |
+
l-19 -19l-24 -25c-1 -13 3 -26 13 -36s23 -14 36 -13l24 24l20 19zM100 62c0 16 -13 30 -29 30s-29 -14 -29 -30s13 -29 29 -29s29 13 29 29z" />
|
954 |
+
<glyph glyph-name="uniF216" unicode="" horiz-adv-x="384"
|
955 |
+
d="M284 142c2 -2 2 -5 0 -7l-35 -35c-1 -1 -2 -2 -3 -2s-3 1 -4 2l-50 50l-50 -50c-1 -1 -3 -2 -4 -2s-2 1 -3 2l-35 35c-1 1 -2 2 -2 3s1 3 2 4l50 50l-50 50c-1 1 -2 3 -2 4s1 2 2 3l35 35c2 2 5 2 7 0l50 -50l50 50c2 2 5 2 7 0l35 -35c2 -2 2 -5 0 -7l-50 -50zM192 333
|
956 |
+
c-78 0 -141 -63 -141 -141s63 -141 141 -141s141 63 141 141s-63 141 -141 141zM192 384v0c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192z" />
|
957 |
+
<glyph glyph-name="uniF217" unicode="" horiz-adv-x="361"
|
958 |
+
d="M358 96c4 -4 4 -10 0 -14l-67 -68c-2 -2 -4 -3 -7 -3s-5 1 -7 3l-96 96l-96 -96c-2 -2 -5 -3 -8 -3s-5 1 -7 3l-67 68c-2 2 -3 4 -3 7s1 5 3 7l96 96l-96 96c-2 2 -3 4 -3 7s1 5 3 7l67 68c4 4 11 4 15 0l96 -96l96 96c4 4 10 4 14 0l67 -68c4 -4 4 -10 0 -14l-96 -96z
|
959 |
+
" />
|
960 |
+
<glyph glyph-name="uniF218" unicode="" horiz-adv-x="270"
|
961 |
+
d="M269 331h1l-85 -130h74v0v0c3 0 6 -2 6 -5v0v-21c0 -3 -3 -6 -6 -6v0v0h-95v-33h95v0v0c3 0 6 -3 6 -6v-20c0 -3 -3 -6 -6 -6v0v0h-95v-48v0c0 -3 -2 -6 -5 -6v0h-47v0v0c-3 0 -6 3 -6 6v1v47h-94v0v0c-3 0 -6 3 -6 6v20c0 3 3 6 6 6v0v0h94v33h-94v0v0c-3 0 -6 2 -6 5v0
|
962 |
+
v1v0v0v20v0c0 3 3 6 6 6v0v0h72l-84 130v0v1c0 1 0 2 1 2h3h2h57c2 0 3 -2 4 -3v0l68 -110l68 110v0c1 1 2 3 4 3h57h2h3v-1c1 0 1 0 1 -1z" />
|
963 |
+
<glyph glyph-name="uniF219" unicode="" horiz-adv-x="397"
|
964 |
+
d="M233 395c91 0 164 -74 164 -164s-73 -164 -164 -164c-26 0 -51 6 -73 17l-82 -82v1c-8 -8 -20 -14 -33 -14c-25 0 -45 20 -45 45c0 13 6 25 14 33h-1l80 79c-15 25 -24 54 -24 85c0 90 73 164 164 164zM234 132c57 0 103 45 103 102s-46 102 -103 102s-102 -45 -102 -102
|
965 |
+
s45 -102 102 -102zM295 258c4 0 7 -4 7 -8v-32c0 -4 -4 -8 -8 -8v0v0h-36v-36v0c0 -4 -4 -8 -8 -8v0h-32v0v0c-4 0 -8 4 -8 8v0v0v36h-35h-1c-4 0 -8 4 -8 8v32c0 4 4 8 8 8h36v35v1c0 4 4 8 8 8h1h31v0c4 0 8 -4 8 -8v-36h37v0z" />
|
966 |
+
<glyph glyph-name="uniF21A" unicode="" horiz-adv-x="397"
|
967 |
+
d="M233 395c91 0 164 -74 164 -164s-73 -164 -164 -164c-26 0 -51 6 -73 17l-82 -82v1c-8 -8 -20 -14 -33 -14c-25 0 -45 20 -45 45c0 13 6 25 14 33h-1l80 79c-15 25 -24 54 -24 85c0 90 73 164 164 164zM234 132c57 0 103 45 103 102s-46 102 -103 102s-102 -45 -102 -102
|
968 |
+
s45 -102 102 -102zM294 258c4 0 9 -4 9 -8v0v-32c0 -4 -5 -8 -9 -8h-120c-4 0 -8 4 -8 8v32v0c0 4 4 8 8 8h120z" />
|
969 |
+
</font>
|
970 |
+
</defs></svg>
|
fonts/foundation-icons.ttf
ADDED
Binary file
|
fonts/foundation-icons.woff
ADDED
Binary file
|
includes/field-form.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
if(isset($field['preview_text']) && is_object($value)) {
|
6 |
|
7 |
-
if(
|
8 |
echo '<i class="' . $value->$field['preview_text'] . '"></i>';
|
9 |
}
|
10 |
else if(isset($value->$field['preview_text']) && !empty($value->$field['preview_text'])) {
|
4 |
|
5 |
if(isset($field['preview_text']) && is_object($value)) {
|
6 |
|
7 |
+
if('icon' == $field['preview_text']) {
|
8 |
echo '<i class="' . $value->$field['preview_text'] . '"></i>';
|
9 |
}
|
10 |
else if(isset($value->$field['preview_text']) && !empty($value->$field['preview_text'])) {
|
includes/icon-selector.php
CHANGED
@@ -1,46 +1,25 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
$icons = json_decode(file_get_contents(FL_BUILDER_DIR . 'json/font-awesome.json'));
|
4 |
-
$categories = array();
|
5 |
-
|
6 |
-
foreach($icons->icons as $icon) {
|
7 |
-
|
8 |
-
$name = $icon->categories[0];
|
9 |
-
$id = strtolower(str_replace(' ', '-', $name));
|
10 |
-
|
11 |
-
if(!isset($categories[$id])) {
|
12 |
-
$categories[$id] = new stdClass();
|
13 |
-
$categories[$id]->id = $id;
|
14 |
-
$categories[$id]->name = $name;
|
15 |
-
$categories[$id]->icons = array();
|
16 |
-
}
|
17 |
-
|
18 |
-
$categories[$id]->icons[] = $icon->id;
|
19 |
-
}
|
20 |
-
|
21 |
-
?>
|
22 |
<div class="fl-lightbox-header">
|
23 |
-
<h1><?php _e('Select Icon', 'fl-builder'); ?></h1>
|
24 |
<div class="fl-icons-filter">
|
25 |
-
<?php _e('Filter: ', 'fl-builder'); ?>
|
26 |
<select>
|
27 |
-
|
28 |
-
<?php
|
29 |
-
<option value="<?php echo $cat->id; ?>"><?php echo $cat->name; ?></option>
|
30 |
<?php endforeach; ?>
|
31 |
</select>
|
32 |
</div>
|
33 |
</div>
|
34 |
<div class="fl-icons-list">
|
35 |
-
<?php foreach($
|
36 |
-
<div class="fl-icons-section fl-<?php echo $
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
|
|
|
|
42 |
<?php endforeach; ?>
|
43 |
-
|
44 |
</div>
|
45 |
<?php endforeach; ?>
|
46 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<div class="fl-lightbox-header">
|
2 |
+
<h1><?php _e( 'Select Icon', 'fl-builder' ); ?></h1>
|
3 |
<div class="fl-icons-filter">
|
4 |
+
<?php _e( 'Filter: ', 'fl-builder' ); ?>
|
5 |
<select>
|
6 |
+
<?php foreach ( $icon_sets as $set_key => $set_data ) : ?>
|
7 |
+
<option value="<?php echo $set_key; ?>"><?php echo $set_data['name']; ?></option>
|
|
|
8 |
<?php endforeach; ?>
|
9 |
</select>
|
10 |
</div>
|
11 |
</div>
|
12 |
<div class="fl-icons-list">
|
13 |
+
<?php foreach ( $icon_sets as $set_key => $set_data ) : ?>
|
14 |
+
<div class="fl-icons-section fl-<?php echo $set_key; ?>">
|
15 |
+
<h2><?php echo $set_data['name']; ?></h2>
|
16 |
+
<?php foreach( $set_data['icons'] as $icon ) : ?>
|
17 |
+
<?php if ( ! empty( $set_data['prefix'] ) ) : ?>
|
18 |
+
<i class="<?php echo $set_data['prefix'] . ' ' . $icon; ?>"></i>
|
19 |
+
<?php else : ?>
|
20 |
+
<i class="<?php echo $icon; ?>"></i>
|
21 |
+
<?php endif; ?>
|
22 |
<?php endforeach; ?>
|
|
|
23 |
</div>
|
24 |
<?php endforeach; ?>
|
25 |
</div>
|
includes/js-config.php
CHANGED
@@ -4,6 +4,7 @@ var FLBuilderConfig = {
|
|
4 |
ajaxUrl: '<?php echo get_permalink( $post_id ); ?>',
|
5 |
enabledTemplates: '<?php echo $enabled_templates; ?>',
|
6 |
homeUrl: '<?php echo home_url(); ?>',
|
|
|
7 |
lite: <?php if(FL_BUILDER_LITE === true) echo 'true'; else echo 'false'; ?>,
|
8 |
postId: <?php echo $post_id; ?>,
|
9 |
postType: '<?php echo get_post_type(); ?>',
|
4 |
ajaxUrl: '<?php echo get_permalink( $post_id ); ?>',
|
5 |
enabledTemplates: '<?php echo $enabled_templates; ?>',
|
6 |
homeUrl: '<?php echo home_url(); ?>',
|
7 |
+
isRtl: <?php if(is_rtl()) echo 'true'; else echo 'false'; ?>,
|
8 |
lite: <?php if(FL_BUILDER_LITE === true) echo 'true'; else echo 'false'; ?>,
|
9 |
postId: <?php echo $post_id; ?>,
|
10 |
postType: '<?php echo get_post_type(); ?>',
|
includes/updater-config.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
if(class_exists('FLUpdater')) {
|
4 |
FLUpdater::add_product(array(
|
5 |
'name' => 'Beaver Builder Plugin (Lite Version)',
|
6 |
-
'version' => '1.4.
|
7 |
'slug' => 'bb-plugin',
|
8 |
'type' => 'plugin'
|
9 |
));
|
3 |
if(class_exists('FLUpdater')) {
|
4 |
FLUpdater::add_product(array(
|
5 |
'name' => 'Beaver Builder Plugin (Lite Version)',
|
6 |
+
'version' => '1.4.3',
|
7 |
'slug' => 'bb-plugin',
|
8 |
'type' => 'plugin'
|
9 |
));
|
includes/updater/classes/FLUpdater.php
CHANGED
@@ -121,7 +121,8 @@ final class FLUpdater {
|
|
121 |
'email' => FLUpdater::get_subscription_email(),
|
122 |
'domain' => network_home_url(),
|
123 |
'product' => $this->settings['name'],
|
124 |
-
'slug' => $this->settings['slug']
|
|
|
125 |
));
|
126 |
|
127 |
if(isset($response) && is_object($response) && $response !== false) {
|
121 |
'email' => FLUpdater::get_subscription_email(),
|
122 |
'domain' => network_home_url(),
|
123 |
'product' => $this->settings['name'],
|
124 |
+
'slug' => $this->settings['slug'],
|
125 |
+
'version' => $this->settings['version']
|
126 |
));
|
127 |
|
128 |
if(isset($response) && is_object($response) && $response !== false) {
|
js/fl-builder.js
CHANGED
@@ -656,7 +656,7 @@ var FLBuilder;
|
|
656 |
*/
|
657 |
_publishButtonClicked: function()
|
658 |
{
|
659 |
-
|
660 |
|
661 |
FLBuilder.ajax({
|
662 |
action: 'fl_builder_save',
|
@@ -673,7 +673,7 @@ var FLBuilder;
|
|
673 |
*/
|
674 |
_draftButtonClicked: function()
|
675 |
{
|
676 |
-
|
677 |
FLBuilder._actionsLightbox.close();
|
678 |
FLBuilder._exit();
|
679 |
},
|
@@ -688,7 +688,7 @@ var FLBuilder;
|
|
688 |
|
689 |
if(result) {
|
690 |
|
691 |
-
|
692 |
|
693 |
FLBuilder.ajax({
|
694 |
action: 'fl_builder_save',
|
@@ -731,7 +731,7 @@ var FLBuilder;
|
|
731 |
_duplicatePageClicked: function()
|
732 |
{
|
733 |
FLBuilder._actionsLightbox.close();
|
734 |
-
|
735 |
|
736 |
FLBuilder.ajax({
|
737 |
action: 'fl_builder_save',
|
@@ -838,7 +838,7 @@ var FLBuilder;
|
|
838 |
settings[data[i].name] = data[i].value;
|
839 |
}
|
840 |
|
841 |
-
|
842 |
|
843 |
FLBuilder.ajax({
|
844 |
action: 'fl_builder_save',
|
@@ -1050,7 +1050,7 @@ var FLBuilder;
|
|
1050 |
type = typeof type === 'undefined' ? 'core' : type;
|
1051 |
|
1052 |
FLBuilder._lightbox.close();
|
1053 |
-
|
1054 |
|
1055 |
if(type == 'core') {
|
1056 |
|
@@ -1102,7 +1102,7 @@ var FLBuilder;
|
|
1102 |
|
1103 |
if(valid) {
|
1104 |
|
1105 |
-
|
1106 |
|
1107 |
FLBuilder.ajax({
|
1108 |
action: 'fl_builder_save',
|
@@ -1136,7 +1136,7 @@ var FLBuilder;
|
|
1136 |
|
1137 |
if(result) {
|
1138 |
|
1139 |
-
|
1140 |
|
1141 |
FLBuilder.ajax({
|
1142 |
action: 'fl_builder_save',
|
@@ -1161,7 +1161,7 @@ var FLBuilder;
|
|
1161 |
*/
|
1162 |
_saveEditUserTemplate: function()
|
1163 |
{
|
1164 |
-
|
1165 |
|
1166 |
FLBuilder.ajax({
|
1167 |
action: 'fl_builder_save',
|
@@ -1220,7 +1220,7 @@ var FLBuilder;
|
|
1220 |
*/
|
1221 |
_updateLayout: function()
|
1222 |
{
|
1223 |
-
|
1224 |
|
1225 |
FLBuilder.ajax({
|
1226 |
action: 'fl_builder_render_layout',
|
@@ -1283,7 +1283,7 @@ var FLBuilder;
|
|
1283 |
FLBuilder._removeAllOverlays();
|
1284 |
|
1285 |
// Hide the loader.
|
1286 |
-
|
1287 |
|
1288 |
// Run the callback.
|
1289 |
if(typeof callback != 'undefined') {
|
@@ -1725,7 +1725,7 @@ var FLBuilder;
|
|
1725 |
*/
|
1726 |
_addRow: function(cols, position)
|
1727 |
{
|
1728 |
-
|
1729 |
|
1730 |
FLBuilder._newRowPosition = position;
|
1731 |
|
@@ -1826,7 +1826,7 @@ var FLBuilder;
|
|
1826 |
{
|
1827 |
var nodeId = $(this).closest('.fl-row-overlay').attr('data-node');
|
1828 |
|
1829 |
-
|
1830 |
|
1831 |
FLBuilder._removeAllOverlays();
|
1832 |
|
@@ -2005,7 +2005,7 @@ var FLBuilder;
|
|
2005 |
*/
|
2006 |
_addColGroup: function(nodeId, cols, position)
|
2007 |
{
|
2008 |
-
|
2009 |
|
2010 |
FLBuilder._newColGroupParent = $('.fl-node-' + nodeId + ' .fl-row-content');
|
2011 |
FLBuilder._newColGroupPosition = position;
|
@@ -2258,8 +2258,7 @@ var FLBuilder;
|
|
2258 |
{
|
2259 |
var module = $(this).closest('.fl-module');
|
2260 |
|
2261 |
-
|
2262 |
-
|
2263 |
FLBuilder._removeAllOverlays();
|
2264 |
|
2265 |
FLBuilder.ajax({
|
@@ -2384,7 +2383,7 @@ var FLBuilder;
|
|
2384 |
*/
|
2385 |
_addModule: function(parentId, type, position, widget)
|
2386 |
{
|
2387 |
-
|
2388 |
|
2389 |
FLBuilder.ajax({
|
2390 |
action : 'fl_builder_render_new_module_settings',
|
@@ -2633,7 +2632,7 @@ var FLBuilder;
|
|
2633 |
settings = FLBuilder._getSettings(form);
|
2634 |
|
2635 |
// Show the loader.
|
2636 |
-
|
2637 |
|
2638 |
// Make the AJAX call.
|
2639 |
FLBuilder.ajax({
|
@@ -2741,7 +2740,8 @@ var FLBuilder;
|
|
2741 |
var multiples = $('.fl-builder-field-multiples'),
|
2742 |
multiple = null,
|
2743 |
fields = null,
|
2744 |
-
i = 0
|
|
|
2745 |
|
2746 |
for( ; i < multiples.length; i++) {
|
2747 |
|
@@ -2759,9 +2759,7 @@ var FLBuilder;
|
|
2759 |
$('.fl-builder-field-multiples').sortable({
|
2760 |
items: '.fl-builder-field-multiple',
|
2761 |
cursor: 'move',
|
2762 |
-
cursorAt:
|
2763 |
-
right: 10
|
2764 |
-
},
|
2765 |
distance: 5,
|
2766 |
opacity: 0.5,
|
2767 |
helper: FLBuilder._fieldDragHelper,
|
@@ -2877,11 +2875,11 @@ var FLBuilder;
|
|
2877 |
*/
|
2878 |
_settingsSelectChanged: function()
|
2879 |
{
|
2880 |
-
var
|
2881 |
-
toggle =
|
2882 |
-
hide =
|
2883 |
-
trigger =
|
2884 |
-
val =
|
2885 |
i = 0,
|
2886 |
k = 0;
|
2887 |
|
@@ -3621,7 +3619,7 @@ var FLBuilder;
|
|
3621 |
// Show the loader and save the data for
|
3622 |
// later if a silent update is running.
|
3623 |
if(FLBuilder._silentUpdate) {
|
3624 |
-
|
3625 |
FLBuilder._silentUpdateCallbackData = [data, callback];
|
3626 |
return;
|
3627 |
}
|
@@ -3671,16 +3669,16 @@ var FLBuilder;
|
|
3671 |
// Do an ajax request that was stopped
|
3672 |
// by a silent ajax request.
|
3673 |
if(FLBuilder._silentUpdateCallbackData !== null) {
|
|
|
3674 |
data = FLBuilder._silentUpdateCallbackData[0];
|
3675 |
callback = FLBuilder._silentUpdateCallbackData[1];
|
3676 |
FLBuilder._silentUpdateCallbackData = null;
|
3677 |
FLBuilder.ajax(data, callback);
|
3678 |
-
$('.fl-builder-loading').show();
|
3679 |
}
|
3680 |
|
3681 |
// We're done, hide the loader incase it's showing.
|
3682 |
else {
|
3683 |
-
|
3684 |
}
|
3685 |
},
|
3686 |
|
@@ -3703,6 +3701,24 @@ var FLBuilder;
|
|
3703 |
|
3704 |
return url;
|
3705 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3706 |
|
3707 |
/* Lightboxes
|
3708 |
----------------------------------------------------------*/
|
656 |
*/
|
657 |
_publishButtonClicked: function()
|
658 |
{
|
659 |
+
FLBuilder.showAjaxLoader();
|
660 |
|
661 |
FLBuilder.ajax({
|
662 |
action: 'fl_builder_save',
|
673 |
*/
|
674 |
_draftButtonClicked: function()
|
675 |
{
|
676 |
+
FLBuilder.showAjaxLoader();
|
677 |
FLBuilder._actionsLightbox.close();
|
678 |
FLBuilder._exit();
|
679 |
},
|
688 |
|
689 |
if(result) {
|
690 |
|
691 |
+
FLBuilder.showAjaxLoader();
|
692 |
|
693 |
FLBuilder.ajax({
|
694 |
action: 'fl_builder_save',
|
731 |
_duplicatePageClicked: function()
|
732 |
{
|
733 |
FLBuilder._actionsLightbox.close();
|
734 |
+
FLBuilder.showAjaxLoader();
|
735 |
|
736 |
FLBuilder.ajax({
|
737 |
action: 'fl_builder_save',
|
838 |
settings[data[i].name] = data[i].value;
|
839 |
}
|
840 |
|
841 |
+
FLBuilder.showAjaxLoader();
|
842 |
|
843 |
FLBuilder.ajax({
|
844 |
action: 'fl_builder_save',
|
1050 |
type = typeof type === 'undefined' ? 'core' : type;
|
1051 |
|
1052 |
FLBuilder._lightbox.close();
|
1053 |
+
FLBuilder.showAjaxLoader();
|
1054 |
|
1055 |
if(type == 'core') {
|
1056 |
|
1102 |
|
1103 |
if(valid) {
|
1104 |
|
1105 |
+
FLBuilder.showAjaxLoader();
|
1106 |
|
1107 |
FLBuilder.ajax({
|
1108 |
action: 'fl_builder_save',
|
1136 |
|
1137 |
if(result) {
|
1138 |
|
1139 |
+
FLBuilder.showAjaxLoader();
|
1140 |
|
1141 |
FLBuilder.ajax({
|
1142 |
action: 'fl_builder_save',
|
1161 |
*/
|
1162 |
_saveEditUserTemplate: function()
|
1163 |
{
|
1164 |
+
FLBuilder.showAjaxLoader();
|
1165 |
|
1166 |
FLBuilder.ajax({
|
1167 |
action: 'fl_builder_save',
|
1220 |
*/
|
1221 |
_updateLayout: function()
|
1222 |
{
|
1223 |
+
FLBuilder.showAjaxLoader();
|
1224 |
|
1225 |
FLBuilder.ajax({
|
1226 |
action: 'fl_builder_render_layout',
|
1283 |
FLBuilder._removeAllOverlays();
|
1284 |
|
1285 |
// Hide the loader.
|
1286 |
+
FLBuilder.hideAjaxLoader();
|
1287 |
|
1288 |
// Run the callback.
|
1289 |
if(typeof callback != 'undefined') {
|
1725 |
*/
|
1726 |
_addRow: function(cols, position)
|
1727 |
{
|
1728 |
+
FLBuilder.showAjaxLoader();
|
1729 |
|
1730 |
FLBuilder._newRowPosition = position;
|
1731 |
|
1826 |
{
|
1827 |
var nodeId = $(this).closest('.fl-row-overlay').attr('data-node');
|
1828 |
|
1829 |
+
FLBuilder.showAjaxLoader();
|
1830 |
|
1831 |
FLBuilder._removeAllOverlays();
|
1832 |
|
2005 |
*/
|
2006 |
_addColGroup: function(nodeId, cols, position)
|
2007 |
{
|
2008 |
+
FLBuilder.showAjaxLoader();
|
2009 |
|
2010 |
FLBuilder._newColGroupParent = $('.fl-node-' + nodeId + ' .fl-row-content');
|
2011 |
FLBuilder._newColGroupPosition = position;
|
2258 |
{
|
2259 |
var module = $(this).closest('.fl-module');
|
2260 |
|
2261 |
+
FLBuilder.showAjaxLoader();
|
|
|
2262 |
FLBuilder._removeAllOverlays();
|
2263 |
|
2264 |
FLBuilder.ajax({
|
2383 |
*/
|
2384 |
_addModule: function(parentId, type, position, widget)
|
2385 |
{
|
2386 |
+
FLBuilder.showAjaxLoader();
|
2387 |
|
2388 |
FLBuilder.ajax({
|
2389 |
action : 'fl_builder_render_new_module_settings',
|
2632 |
settings = FLBuilder._getSettings(form);
|
2633 |
|
2634 |
// Show the loader.
|
2635 |
+
FLBuilder.showAjaxLoader();
|
2636 |
|
2637 |
// Make the AJAX call.
|
2638 |
FLBuilder.ajax({
|
2740 |
var multiples = $('.fl-builder-field-multiples'),
|
2741 |
multiple = null,
|
2742 |
fields = null,
|
2743 |
+
i = 0,
|
2744 |
+
cursorAt = FLBuilderConfig.isRtl ? { left: 10 } : { right: 10 };
|
2745 |
|
2746 |
for( ; i < multiples.length; i++) {
|
2747 |
|
2759 |
$('.fl-builder-field-multiples').sortable({
|
2760 |
items: '.fl-builder-field-multiple',
|
2761 |
cursor: 'move',
|
2762 |
+
cursorAt: cursorAt,
|
|
|
|
|
2763 |
distance: 5,
|
2764 |
opacity: 0.5,
|
2765 |
helper: FLBuilder._fieldDragHelper,
|
2875 |
*/
|
2876 |
_settingsSelectChanged: function()
|
2877 |
{
|
2878 |
+
var select = $(this),
|
2879 |
+
toggle = select.attr('data-toggle'),
|
2880 |
+
hide = select.attr('data-hide'),
|
2881 |
+
trigger = select.attr('data-trigger'),
|
2882 |
+
val = select.val(),
|
2883 |
i = 0,
|
2884 |
k = 0;
|
2885 |
|
3619 |
// Show the loader and save the data for
|
3620 |
// later if a silent update is running.
|
3621 |
if(FLBuilder._silentUpdate) {
|
3622 |
+
FLBuilder.showAjaxLoader();
|
3623 |
FLBuilder._silentUpdateCallbackData = [data, callback];
|
3624 |
return;
|
3625 |
}
|
3669 |
// Do an ajax request that was stopped
|
3670 |
// by a silent ajax request.
|
3671 |
if(FLBuilder._silentUpdateCallbackData !== null) {
|
3672 |
+
FLBuilder.showAjaxLoader();
|
3673 |
data = FLBuilder._silentUpdateCallbackData[0];
|
3674 |
callback = FLBuilder._silentUpdateCallbackData[1];
|
3675 |
FLBuilder._silentUpdateCallbackData = null;
|
3676 |
FLBuilder.ajax(data, callback);
|
|
|
3677 |
}
|
3678 |
|
3679 |
// We're done, hide the loader incase it's showing.
|
3680 |
else {
|
3681 |
+
FLBuilder.hideAjaxLoader();
|
3682 |
}
|
3683 |
},
|
3684 |
|
3701 |
|
3702 |
return url;
|
3703 |
},
|
3704 |
+
|
3705 |
+
/**
|
3706 |
+
* @method showAjaxLoader
|
3707 |
+
*/
|
3708 |
+
showAjaxLoader: function()
|
3709 |
+
{
|
3710 |
+
if( 0 === $( '.fl-builder-lightbox-loading' ).length ) {
|
3711 |
+
$( '.fl-builder-loading' ).show();
|
3712 |
+
}
|
3713 |
+
},
|
3714 |
+
|
3715 |
+
/**
|
3716 |
+
* @method hideAjaxLoader
|
3717 |
+
*/
|
3718 |
+
hideAjaxLoader: function()
|
3719 |
+
{
|
3720 |
+
$( '.fl-builder-loading' ).hide();
|
3721 |
+
},
|
3722 |
|
3723 |
/* Lightboxes
|
3724 |
----------------------------------------------------------*/
|
js/fl-lightbox.js
CHANGED
@@ -173,28 +173,28 @@ var FLLightbox;
|
|
173 |
win = $(window),
|
174 |
winHeight = win.height(),
|
175 |
winWidth = win.width(),
|
176 |
-
top =
|
177 |
-
left =
|
178 |
|
179 |
// Zero out margins and position.
|
180 |
-
lightbox.css(
|
181 |
-
|
182 |
-
|
|
|
|
|
183 |
|
184 |
-
//
|
185 |
if(winHeight - 80 > boxHeight) {
|
186 |
-
|
187 |
-
}
|
188 |
-
else {
|
189 |
-
lightbox.css(top, '0px');
|
190 |
}
|
191 |
|
192 |
-
// Set the
|
193 |
if(this._draggable) {
|
194 |
-
lightbox.css('
|
195 |
-
lightbox.css('left',
|
196 |
}
|
197 |
else {
|
|
|
198 |
lightbox.css('margin-left', 'auto');
|
199 |
lightbox.css('margin-right', 'auto');
|
200 |
}
|
173 |
win = $(window),
|
174 |
winHeight = win.height(),
|
175 |
winWidth = win.width(),
|
176 |
+
top = '0px',
|
177 |
+
left = ((winWidth - boxWidth)/2 - 30) + 'px';
|
178 |
|
179 |
// Zero out margins and position.
|
180 |
+
lightbox.css({
|
181 |
+
'margin' : '0px',
|
182 |
+
'top' : 'auto',
|
183 |
+
'left' : 'auto'
|
184 |
+
});
|
185 |
|
186 |
+
// Get the top position.
|
187 |
if(winHeight - 80 > boxHeight) {
|
188 |
+
top = ((winHeight - boxHeight)/2 - 40) + 'px';
|
|
|
|
|
|
|
189 |
}
|
190 |
|
191 |
+
// Set the positions.
|
192 |
if(this._draggable) {
|
193 |
+
lightbox.css('top', top);
|
194 |
+
lightbox.css('left', FLBuilderConfig.isRtl ? '-' + left : left);
|
195 |
}
|
196 |
else {
|
197 |
+
lightbox.css('margin-top', top);
|
198 |
lightbox.css('margin-left', 'auto');
|
199 |
lightbox.css('margin-right', 'auto');
|
200 |
}
|
json/dashicons.json
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
["dashicons-admin-appearance","dashicons-admin-collapse","dashicons-admin-comments","dashicons-admin-generic","dashicons-admin-home","dashicons-admin-links","dashicons-admin-media","dashicons-admin-network","dashicons-admin-page","dashicons-admin-plugins","dashicons-admin-post","dashicons-admin-settings","dashicons-admin-site","dashicons-admin-tools","dashicons-admin-users","dashicons-album","dashicons-align-center","dashicons-align-left","dashicons-align-none","dashicons-align-right","dashicons-analytics","dashicons-archive","dashicons-arrow-down","dashicons-arrow-down-alt","dashicons-arrow-down-alt2","dashicons-arrow-left","dashicons-arrow-left-alt","dashicons-arrow-left-alt2","dashicons-arrow-right","dashicons-arrow-right-alt","dashicons-arrow-right-alt2","dashicons-arrow-up","dashicons-arrow-up-alt","dashicons-arrow-up-alt2","dashicons-art","dashicons-awards","dashicons-backup","dashicons-book","dashicons-book-alt","dashicons-building","dashicons-businessman","dashicons-calendar","dashicons-calendar-alt","dashicons-camera","dashicons-carrot","dashicons-cart","dashicons-category","dashicons-chart-area","dashicons-chart-bar","dashicons-chart-line","dashicons-chart-pie","dashicons-clipboard","dashicons-clock","dashicons-cloud","dashicons-controls-back","dashicons-controls-forward","dashicons-controls-pause","dashicons-controls-play","dashicons-controls-repeat","dashicons-controls-skipback","dashicons-controls-skipforward","dashicons-controls-volumeoff","dashicons-controls-volumeon","dashicons-dashboard","dashicons-desktop","dashicons-dismiss","dashicons-download","dashicons-edit","dashicons-editor-aligncenter","dashicons-editor-alignleft","dashicons-editor-alignright","dashicons-editor-bold","dashicons-editor-break","dashicons-editor-code","dashicons-editor-contract","dashicons-editor-customchar","dashicons-editor-distractionfree","dashicons-editor-expand","dashicons-editor-help","dashicons-editor-indent","dashicons-editor-insertmore","dashicons-editor-italic","dashicons-editor-justify","dashicons-editor-kitchensink","dashicons-editor-ol","dashicons-editor-outdent","dashicons-editor-paragraph","dashicons-editor-paste-text","dashicons-editor-paste-word","dashicons-editor-quote","dashicons-editor-removeformatting","dashicons-editor-rtl","dashicons-editor-spellcheck","dashicons-editor-strikethrough","dashicons-editor-textcolor","dashicons-editor-ul","dashicons-editor-underline","dashicons-editor-unlink","dashicons-editor-video","dashicons-email","dashicons-email-alt","dashicons-exerpt-view","dashicons-external","dashicons-facebook","dashicons-facebook-alt","dashicons-feedback","dashicons-flag","dashicons-format-aside","dashicons-format-audio","dashicons-format-chat","dashicons-format-gallery","dashicons-format-image","dashicons-format-links","dashicons-format-quote","dashicons-format-standard","dashicons-format-status","dashicons-format-video","dashicons-forms","dashicons-googleplus","dashicons-grid-view","dashicons-groups","dashicons-hammer","dashicons-heart","dashicons-id","dashicons-id-alt","dashicons-image-crop","dashicons-image-flip-horizontal","dashicons-image-flip-vertical","dashicons-image-rotate-left","dashicons-image-rotate-right","dashicons-images-alt","dashicons-images-alt2","dashicons-index-card","dashicons-info","dashicons-leftright","dashicons-lightbulb","dashicons-list-view","dashicons-location","dashicons-location-alt","dashicons-lock","dashicons-marker","dashicons-media-archive","dashicons-media-audio","dashicons-media-code","dashicons-media-default","dashicons-media-document","dashicons-media-interactive","dashicons-media-spreadsheet","dashicons-media-text","dashicons-media-video","dashicons-megaphone","dashicons-menu","dashicons-microphone","dashicons-migrate","dashicons-minus","dashicons-money","dashicons-nametag","dashicons-networking","dashicons-no","dashicons-no-alt","dashicons-palmtree","dashicons-performance","dashicons-phone","dashicons-playlist-audio","dashicons-playlist-video","dashicons-plus","dashicons-plus-alt","dashicons-portfolio","dashicons-post-status","dashicons-post-trash","dashicons-pressthis","dashicons-products","dashicons-randomize","dashicons-redo","dashicons-rss","dashicons-schedule","dashicons-screenoptions","dashicons-search","dashicons-share","dashicons-share-alt","dashicons-share-alt2","dashicons-share1","dashicons-shield","dashicons-shield-alt","dashicons-slides","dashicons-smartphone","dashicons-smiley","dashicons-sort","dashicons-sos","dashicons-star-empty","dashicons-star-filled","dashicons-star-half","dashicons-store","dashicons-tablet","dashicons-tag","dashicons-tagcloud","dashicons-testimonial","dashicons-text","dashicons-tickets","dashicons-tickets-alt","dashicons-translation","dashicons-trash","dashicons-twitter","dashicons-undo","dashicons-universal-access","dashicons-universal-access-alt","dashicons-update","dashicons-upload","dashicons-vault","dashicons-video-alt","dashicons-video-alt2","dashicons-video-alt3","dashicons-visibility","dashicons-welcome-add-page","dashicons-welcome-comments","dashicons-welcome-edit-page","dashicons-welcome-learn-more","dashicons-welcome-view-site","dashicons-welcome-widgets-menus","dashicons-welcome-write-blog","dashicons-wordpress","dashicons-wordpress-alt","dashicons-yes"]
|
json/font-awesome.json
CHANGED
@@ -1,4171 +1 @@
|
|
1 |
-
|
2 |
-
"icons": [
|
3 |
-
{
|
4 |
-
"name": "Glass",
|
5 |
-
"id": "glass",
|
6 |
-
"unicode": "f000",
|
7 |
-
"created": 1,
|
8 |
-
"categories": [
|
9 |
-
"Web Application Icons"
|
10 |
-
]
|
11 |
-
},
|
12 |
-
{
|
13 |
-
"name": "Music",
|
14 |
-
"id": "music",
|
15 |
-
"unicode": "f001",
|
16 |
-
"created": 1,
|
17 |
-
"categories": [
|
18 |
-
"Web Application Icons"
|
19 |
-
]
|
20 |
-
},
|
21 |
-
{
|
22 |
-
"name": "Search",
|
23 |
-
"id": "search",
|
24 |
-
"unicode": "f002",
|
25 |
-
"created": 1,
|
26 |
-
"categories": [
|
27 |
-
"Web Application Icons"
|
28 |
-
]
|
29 |
-
},
|
30 |
-
{
|
31 |
-
"name": "Envelope Outlined",
|
32 |
-
"id": "envelope-o",
|
33 |
-
"unicode": "f003",
|
34 |
-
"created": 1,
|
35 |
-
"categories": [
|
36 |
-
"Web Application Icons"
|
37 |
-
]
|
38 |
-
},
|
39 |
-
{
|
40 |
-
"name": "Heart",
|
41 |
-
"id": "heart",
|
42 |
-
"unicode": "f004",
|
43 |
-
"created": 1,
|
44 |
-
"categories": [
|
45 |
-
"Web Application Icons"
|
46 |
-
]
|
47 |
-
},
|
48 |
-
{
|
49 |
-
"name": "Star",
|
50 |
-
"id": "star",
|
51 |
-
"unicode": "f005",
|
52 |
-
"created": 1,
|
53 |
-
"categories": [
|
54 |
-
"Web Application Icons"
|
55 |
-
]
|
56 |
-
},
|
57 |
-
{
|
58 |
-
"name": "Star Outlined",
|
59 |
-
"id": "star-o",
|
60 |
-
"unicode": "f006",
|
61 |
-
"created": 1,
|
62 |
-
"categories": [
|
63 |
-
"Web Application Icons"
|
64 |
-
]
|
65 |
-
},
|
66 |
-
{
|
67 |
-
"name": "User",
|
68 |
-
"id": "user",
|
69 |
-
"unicode": "f007",
|
70 |
-
"created": 1,
|
71 |
-
"categories": [
|
72 |
-
"Web Application Icons"
|
73 |
-
]
|
74 |
-
},
|
75 |
-
{
|
76 |
-
"name": "Film",
|
77 |
-
"id": "film",
|
78 |
-
"unicode": "f008",
|
79 |
-
"created": 1,
|
80 |
-
"categories": [
|
81 |
-
"Web Application Icons"
|
82 |
-
]
|
83 |
-
},
|
84 |
-
{
|
85 |
-
"name": "th-large",
|
86 |
-
"id": "th-large",
|
87 |
-
"unicode": "f009",
|
88 |
-
"created": 1,
|
89 |
-
"categories": [
|
90 |
-
"Text Editor Icons"
|
91 |
-
]
|
92 |
-
},
|
93 |
-
{
|
94 |
-
"name": "th",
|
95 |
-
"id": "th",
|
96 |
-
"unicode": "f00a",
|
97 |
-
"created": 1,
|
98 |
-
"categories": [
|
99 |
-
"Text Editor Icons"
|
100 |
-
]
|
101 |
-
},
|
102 |
-
{
|
103 |
-
"name": "th-list",
|
104 |
-
"id": "th-list",
|
105 |
-
"unicode": "f00b",
|
106 |
-
"created": 1,
|
107 |
-
"categories": [
|
108 |
-
"Text Editor Icons"
|
109 |
-
]
|
110 |
-
},
|
111 |
-
{
|
112 |
-
"name": "Check",
|
113 |
-
"id": "check",
|
114 |
-
"unicode": "f00c",
|
115 |
-
"created": 1,
|
116 |
-
"categories": [
|
117 |
-
"Web Application Icons"
|
118 |
-
]
|
119 |
-
},
|
120 |
-
{
|
121 |
-
"name": "Times",
|
122 |
-
"id": "times",
|
123 |
-
"unicode": "f00d",
|
124 |
-
"created": 1,
|
125 |
-
"categories": [
|
126 |
-
"Web Application Icons"
|
127 |
-
]
|
128 |
-
},
|
129 |
-
{
|
130 |
-
"name": "Search Plus",
|
131 |
-
"id": "search-plus",
|
132 |
-
"unicode": "f00e",
|
133 |
-
"created": 1,
|
134 |
-
"categories": [
|
135 |
-
"Web Application Icons"
|
136 |
-
]
|
137 |
-
},
|
138 |
-
{
|
139 |
-
"name": "Search Minus",
|
140 |
-
"id": "search-minus",
|
141 |
-
"unicode": "f010",
|
142 |
-
"created": 1,
|
143 |
-
"categories": [
|
144 |
-
"Web Application Icons"
|
145 |
-
]
|
146 |
-
},
|
147 |
-
{
|
148 |
-
"name": "Power Off",
|
149 |
-
"id": "power-off",
|
150 |
-
"unicode": "f011",
|
151 |
-
"created": 1,
|
152 |
-
"categories": [
|
153 |
-
"Web Application Icons"
|
154 |
-
]
|
155 |
-
},
|
156 |
-
{
|
157 |
-
"name": "signal",
|
158 |
-
"id": "signal",
|
159 |
-
"unicode": "f012",
|
160 |
-
"created": 1,
|
161 |
-
"categories": [
|
162 |
-
"Web Application Icons"
|
163 |
-
]
|
164 |
-
},
|
165 |
-
{
|
166 |
-
"name": "cog",
|
167 |
-
"id": "cog",
|
168 |
-
"unicode": "f013",
|
169 |
-
"created": 1,
|
170 |
-
"aliases": [
|
171 |
-
"gear"
|
172 |
-
],
|
173 |
-
"categories": [
|
174 |
-
"Web Application Icons",
|
175 |
-
"Spinner Icons"
|
176 |
-
]
|
177 |
-
},
|
178 |
-
{
|
179 |
-
"name": "Trash Outlined",
|
180 |
-
"id": "trash-o",
|
181 |
-
"unicode": "f014",
|
182 |
-
"created": 1,
|
183 |
-
"categories": [
|
184 |
-
"Web Application Icons"
|
185 |
-
]
|
186 |
-
},
|
187 |
-
{
|
188 |
-
"name": "home",
|
189 |
-
"id": "home",
|
190 |
-
"unicode": "f015",
|
191 |
-
"created": 1,
|
192 |
-
"categories": [
|
193 |
-
"Web Application Icons"
|
194 |
-
]
|
195 |
-
},
|
196 |
-
{
|
197 |
-
"name": "File Outlined",
|
198 |
-
"id": "file-o",
|
199 |
-
"unicode": "f016",
|
200 |
-
"created": 1,
|
201 |
-
"categories": [
|
202 |
-
"Text Editor Icons",
|
203 |
-
"File Type Icons"
|
204 |
-
]
|
205 |
-
},
|
206 |
-
{
|
207 |
-
"name": "Clock Outlined",
|
208 |
-
"id": "clock-o",
|
209 |
-
"unicode": "f017",
|
210 |
-
"created": 1,
|
211 |
-
"categories": [
|
212 |
-
"Web Application Icons"
|
213 |
-
]
|
214 |
-
},
|
215 |
-
{
|
216 |
-
"name": "road",
|
217 |
-
"id": "road",
|
218 |
-
"unicode": "f018",
|
219 |
-
"created": 1,
|
220 |
-
"categories": [
|
221 |
-
"Web Application Icons"
|
222 |
-
]
|
223 |
-
},
|
224 |
-
{
|
225 |
-
"name": "Download",
|
226 |
-
"id": "download",
|
227 |
-
"unicode": "f019",
|
228 |
-
"created": 1,
|
229 |
-
"categories": [
|
230 |
-
"Web Application Icons"
|
231 |
-
]
|
232 |
-
},
|
233 |
-
{
|
234 |
-
"name": "Arrow Circle Outlined Down",
|
235 |
-
"id": "arrow-circle-o-down",
|
236 |
-
"unicode": "f01a",
|
237 |
-
"created": 1,
|
238 |
-
"categories": [
|
239 |
-
"Directional Icons"
|
240 |
-
]
|
241 |
-
},
|
242 |
-
{
|
243 |
-
"name": "Arrow Circle Outlined Up",
|
244 |
-
"id": "arrow-circle-o-up",
|
245 |
-
"unicode": "f01b",
|
246 |
-
"created": 1,
|
247 |
-
"categories": [
|
248 |
-
"Directional Icons"
|
249 |
-
]
|
250 |
-
},
|
251 |
-
{
|
252 |
-
"name": "inbox",
|
253 |
-
"id": "inbox",
|
254 |
-
"unicode": "f01c",
|
255 |
-
"created": 1,
|
256 |
-
"categories": [
|
257 |
-
"Web Application Icons"
|
258 |
-
]
|
259 |
-
},
|
260 |
-
{
|
261 |
-
"name": "Play Circle Outlined",
|
262 |
-
"id": "play-circle-o",
|
263 |
-
"unicode": "f01d",
|
264 |
-
"created": 1,
|
265 |
-
"categories": [
|
266 |
-
"Video Player Icons"
|
267 |
-
]
|
268 |
-
},
|
269 |
-
{
|
270 |
-
"name": "Repeat",
|
271 |
-
"id": "repeat",
|
272 |
-
"unicode": "f01e",
|
273 |
-
"created": 1,
|
274 |
-
"aliases": [
|
275 |
-
"rotate-right"
|
276 |
-
],
|
277 |
-
"categories": [
|
278 |
-
"Text Editor Icons"
|
279 |
-
]
|
280 |
-
},
|
281 |
-
{
|
282 |
-
"name": "refresh",
|
283 |
-
"id": "refresh",
|
284 |
-
"unicode": "f021",
|
285 |
-
"created": 1,
|
286 |
-
"categories": [
|
287 |
-
"Web Application Icons",
|
288 |
-
"Spinner Icons"
|
289 |
-
]
|
290 |
-
},
|
291 |
-
{
|
292 |
-
"name": "list-alt",
|
293 |
-
"id": "list-alt",
|
294 |
-
"unicode": "f022",
|
295 |
-
"created": 1,
|
296 |
-
"categories": [
|
297 |
-
"Text Editor Icons"
|
298 |
-
]
|
299 |
-
},
|
300 |
-
{
|
301 |
-
"name": "lock",
|
302 |
-
"id": "lock",
|
303 |
-
"unicode": "f023",
|
304 |
-
"created": 1,
|
305 |
-
"categories": [
|
306 |
-
"Web Application Icons"
|
307 |
-
]
|
308 |
-
},
|
309 |
-
{
|
310 |
-
"name": "flag",
|
311 |
-
"id": "flag",
|
312 |
-
"unicode": "f024",
|
313 |
-
"created": 1,
|
314 |
-
"categories": [
|
315 |
-
"Web Application Icons"
|
316 |
-
]
|
317 |
-
},
|
318 |
-
{
|
319 |
-
"name": "headphones",
|
320 |
-
"id": "headphones",
|
321 |
-
"unicode": "f025",
|
322 |
-
"created": 1,
|
323 |
-
"categories": [
|
324 |
-
"Web Application Icons"
|
325 |
-
]
|
326 |
-
},
|
327 |
-
{
|
328 |
-
"name": "volume-off",
|
329 |
-
"id": "volume-off",
|
330 |
-
"unicode": "f026",
|
331 |
-
"created": 1,
|
332 |
-
"categories": [
|
333 |
-
"Web Application Icons"
|
334 |
-
]
|
335 |
-
},
|
336 |
-
{
|
337 |
-
"name": "volume-down",
|
338 |
-
"id": "volume-down",
|
339 |
-
"unicode": "f027",
|
340 |
-
"created": 1,
|
341 |
-
"categories": [
|
342 |
-
"Web Application Icons"
|
343 |
-
]
|
344 |
-
},
|
345 |
-
{
|
346 |
-
"name": "volume-up",
|
347 |
-
"id": "volume-up",
|
348 |
-
"unicode": "f028",
|
349 |
-
"created": 1,
|
350 |
-
"categories": [
|
351 |
-
"Web Application Icons"
|
352 |
-
]
|
353 |
-
},
|
354 |
-
{
|
355 |
-
"name": "qrcode",
|
356 |
-
"id": "qrcode",
|
357 |
-
"unicode": "f029",
|
358 |
-
"created": 1,
|
359 |
-
"categories": [
|
360 |
-
"Web Application Icons"
|
361 |
-
]
|
362 |
-
},
|
363 |
-
{
|
364 |
-
"name": "barcode",
|
365 |
-
"id": "barcode",
|
366 |
-
"unicode": "f02a",
|
367 |
-
"created": 1,
|
368 |
-
"categories": [
|
369 |
-
"Web Application Icons"
|
370 |
-
]
|
371 |
-
},
|
372 |
-
{
|
373 |
-
"name": "tag",
|
374 |
-
"id": "tag",
|
375 |
-
"unicode": "f02b",
|
376 |
-
"created": 1,
|
377 |
-
"categories": [
|
378 |
-
"Web Application Icons"
|
379 |
-
]
|
380 |
-
},
|
381 |
-
{
|
382 |
-
"name": "tags",
|
383 |
-
"id": "tags",
|
384 |
-
"unicode": "f02c",
|
385 |
-
"created": 1,
|
386 |
-
"categories": [
|
387 |
-
"Web Application Icons"
|
388 |
-
]
|
389 |
-
},
|
390 |
-
{
|
391 |
-
"name": "book",
|
392 |
-
"id": "book",
|
393 |
-
"unicode": "f02d",
|
394 |
-
"created": 1,
|
395 |
-
"categories": [
|
396 |
-
"Web Application Icons"
|
397 |
-
]
|
398 |
-
},
|
399 |
-
{
|
400 |
-
"name": "bookmark",
|
401 |
-
"id": "bookmark",
|
402 |
-
"unicode": "f02e",
|
403 |
-
"created": 1,
|
404 |
-
"categories": [
|
405 |
-
"Web Application Icons"
|
406 |
-
]
|
407 |
-
},
|
408 |
-
{
|
409 |
-
"name": "print",
|
410 |
-
"id": "print",
|
411 |
-
"unicode": "f02f",
|
412 |
-
"created": 1,
|
413 |
-
"categories": [
|
414 |
-
"Web Application Icons"
|
415 |
-
]
|
416 |
-
},
|
417 |
-
{
|
418 |
-
"name": "camera",
|
419 |
-
"id": "camera",
|
420 |
-
"unicode": "f030",
|
421 |
-
"created": 1,
|
422 |
-
"categories": [
|
423 |
-
"Web Application Icons"
|
424 |
-
]
|
425 |
-
},
|
426 |
-
{
|
427 |
-
"name": "font",
|
428 |
-
"id": "font",
|
429 |
-
"unicode": "f031",
|
430 |
-
"created": 1,
|
431 |
-
"categories": [
|
432 |
-
"Text Editor Icons"
|
433 |
-
]
|
434 |
-
},
|
435 |
-
{
|
436 |
-
"name": "bold",
|
437 |
-
"id": "bold",
|
438 |
-
"unicode": "f032",
|
439 |
-
"created": 1,
|
440 |
-
"categories": [
|
441 |
-
"Text Editor Icons"
|
442 |
-
]
|
443 |
-
},
|
444 |
-
{
|
445 |
-
"name": "italic",
|
446 |
-
"id": "italic",
|
447 |
-
"unicode": "f033",
|
448 |
-
"created": 1,
|
449 |
-
"categories": [
|
450 |
-
"Text Editor Icons"
|
451 |
-
]
|
452 |
-
},
|
453 |
-
{
|
454 |
-
"name": "text-height",
|
455 |
-
"id": "text-height",
|
456 |
-
"unicode": "f034",
|
457 |
-
"created": 1,
|
458 |
-
"categories": [
|
459 |
-
"Text Editor Icons"
|
460 |
-
]
|
461 |
-
},
|
462 |
-
{
|
463 |
-
"name": "text-width",
|
464 |
-
"id": "text-width",
|
465 |
-
"unicode": "f035",
|
466 |
-
"created": 1,
|
467 |
-
"categories": [
|
468 |
-
"Text Editor Icons"
|
469 |
-
]
|
470 |
-
},
|
471 |
-
{
|
472 |
-
"name": "align-left",
|
473 |
-
"id": "align-left",
|
474 |
-
"unicode": "f036",
|
475 |
-
"created": 1,
|
476 |
-
"categories": [
|
477 |
-
"Text Editor Icons"
|
478 |
-
]
|
479 |
-
},
|
480 |
-
{
|
481 |
-
"name": "align-center",
|
482 |
-
"id": "align-center",
|
483 |
-
"unicode": "f037",
|
484 |
-
"created": 1,
|
485 |
-
"categories": [
|
486 |
-
"Text Editor Icons"
|
487 |
-
]
|
488 |
-
},
|
489 |
-
{
|
490 |
-
"name": "align-right",
|
491 |
-
"id": "align-right",
|
492 |
-
"unicode": "f038",
|
493 |
-
"created": 1,
|
494 |
-
"categories": [
|
495 |
-
"Text Editor Icons"
|
496 |
-
]
|
497 |
-
},
|
498 |
-
{
|
499 |
-
"name": "align-justify",
|
500 |
-
"id": "align-justify",
|
501 |
-
"unicode": "f039",
|
502 |
-
"created": 1,
|
503 |
-
"categories": [
|
504 |
-
"Text Editor Icons"
|
505 |
-
]
|
506 |
-
},
|
507 |
-
{
|
508 |
-
"name": "list",
|
509 |
-
"id": "list",
|
510 |
-
"unicode": "f03a",
|
511 |
-
"created": 1,
|
512 |
-
"categories": [
|
513 |
-
"Text Editor Icons"
|
514 |
-
]
|
515 |
-
},
|
516 |
-
{
|
517 |
-
"name": "Outdent",
|
518 |
-
"id": "outdent",
|
519 |
-
"unicode": "f03b",
|
520 |
-
"created": 1,
|
521 |
-
"aliases": [
|
522 |
-
"dedent"
|
523 |
-
],
|
524 |
-
"categories": [
|
525 |
-
"Text Editor Icons"
|
526 |
-
]
|
527 |
-
},
|
528 |
-
{
|
529 |
-
"name": "Indent",
|
530 |
-
"id": "indent",
|
531 |
-
"unicode": "f03c",
|
532 |
-
"created": 1,
|
533 |
-
"categories": [
|
534 |
-
"Text Editor Icons"
|
535 |
-
]
|
536 |
-
},
|
537 |
-
{
|
538 |
-
"name": "Video Camera",
|
539 |
-
"id": "video-camera",
|
540 |
-
"unicode": "f03d",
|
541 |
-
"created": 1,
|
542 |
-
"categories": [
|
543 |
-
"Web Application Icons"
|
544 |
-
]
|
545 |
-
},
|
546 |
-
{
|
547 |
-
"name": "Picture Outlined",
|
548 |
-
"id": "picture-o",
|
549 |
-
"unicode": "f03e",
|
550 |
-
"created": 1,
|
551 |
-
"aliases": [
|
552 |
-
"photo",
|
553 |
-
"image"
|
554 |
-
],
|
555 |
-
"categories": [
|
556 |
-
"Web Application Icons"
|
557 |
-
]
|
558 |
-
},
|
559 |
-
{
|
560 |
-
"name": "pencil",
|
561 |
-
"id": "pencil",
|
562 |
-
"unicode": "f040",
|
563 |
-
"created": 1,
|
564 |
-
"categories": [
|
565 |
-
"Web Application Icons"
|
566 |
-
]
|
567 |
-
},
|
568 |
-
{
|
569 |
-
"name": "map-marker",
|
570 |
-
"id": "map-marker",
|
571 |
-
"unicode": "f041",
|
572 |
-
"created": 1,
|
573 |
-
"categories": [
|
574 |
-
"Web Application Icons"
|
575 |
-
]
|
576 |
-
},
|
577 |
-
{
|
578 |
-
"name": "adjust",
|
579 |
-
"id": "adjust",
|
580 |
-
"unicode": "f042",
|
581 |
-
"created": 1,
|
582 |
-
"categories": [
|
583 |
-
"Web Application Icons"
|
584 |
-
]
|
585 |
-
},
|
586 |
-
{
|
587 |
-
"name": "tint",
|
588 |
-
"id": "tint",
|
589 |
-
"unicode": "f043",
|
590 |
-
"created": 1,
|
591 |
-
"categories": [
|
592 |
-
"Web Application Icons"
|
593 |
-
]
|
594 |
-
},
|
595 |
-
{
|
596 |
-
"name": "Pencil Square Outlined",
|
597 |
-
"id": "pencil-square-o",
|
598 |
-
"unicode": "f044",
|
599 |
-
"created": 1,
|
600 |
-
"aliases": [
|
601 |
-
"edit"
|
602 |
-
],
|
603 |
-
"categories": [
|
604 |
-
"Web Application Icons"
|
605 |
-
]
|
606 |
-
},
|
607 |
-
{
|
608 |
-
"name": "Share Square Outlined",
|
609 |
-
"id": "share-square-o",
|
610 |
-
"unicode": "f045",
|
611 |
-
"created": 1,
|
612 |
-
"categories": [
|
613 |
-
"Web Application Icons"
|
614 |
-
]
|
615 |
-
},
|
616 |
-
{
|
617 |
-
"name": "Check Square Outlined",
|
618 |
-
"id": "check-square-o",
|
619 |
-
"unicode": "f046",
|
620 |
-
"created": 1,
|
621 |
-
"categories": [
|
622 |
-
"Web Application Icons",
|
623 |
-
"Form Control Icons"
|
624 |
-
]
|
625 |
-
},
|
626 |
-
{
|
627 |
-
"name": "Arrows",
|
628 |
-
"id": "arrows",
|
629 |
-
"unicode": "f047",
|
630 |
-
"created": 1,
|
631 |
-
"categories": [
|
632 |
-
"Web Application Icons",
|
633 |
-
"Directional Icons"
|
634 |
-
]
|
635 |
-
},
|
636 |
-
{
|
637 |
-
"name": "step-backward",
|
638 |
-
"id": "step-backward",
|
639 |
-
"unicode": "f048",
|
640 |
-
"created": 1,
|
641 |
-
"categories": [
|
642 |
-
"Video Player Icons"
|
643 |
-
]
|
644 |
-
},
|
645 |
-
{
|
646 |
-
"name": "fast-backward",
|
647 |
-
"id": "fast-backward",
|
648 |
-
"unicode": "f049",
|
649 |
-
"created": 1,
|
650 |
-
"categories": [
|
651 |
-
"Video Player Icons"
|
652 |
-
]
|
653 |
-
},
|
654 |
-
{
|
655 |
-
"name": "backward",
|
656 |
-
"id": "backward",
|
657 |
-
"unicode": "f04a",
|
658 |
-
"created": 1,
|
659 |
-
"categories": [
|
660 |
-
"Video Player Icons"
|
661 |
-
]
|
662 |
-
},
|
663 |
-
{
|
664 |
-
"name": "play",
|
665 |
-
"id": "play",
|
666 |
-
"unicode": "f04b",
|
667 |
-
"created": 1,
|
668 |
-
"categories": [
|
669 |
-
"Video Player Icons"
|
670 |
-
]
|
671 |
-
},
|
672 |
-
{
|
673 |
-
"name": "pause",
|
674 |
-
"id": "pause",
|
675 |
-
"unicode": "f04c",
|
676 |
-
"created": 1,
|
677 |
-
"categories": [
|
678 |
-
"Video Player Icons"
|
679 |
-
]
|
680 |
-
},
|
681 |
-
{
|
682 |
-
"name": "stop",
|
683 |
-
"id": "stop",
|
684 |
-
"unicode": "f04d",
|
685 |
-
"created": 1,
|
686 |
-
"categories": [
|
687 |
-
"Video Player Icons"
|
688 |
-
]
|
689 |
-
},
|
690 |
-
{
|
691 |
-
"name": "forward",
|
692 |
-
"id": "forward",
|
693 |
-
"unicode": "f04e",
|
694 |
-
"created": 1,
|
695 |
-
"categories": [
|
696 |
-
"Video Player Icons"
|
697 |
-
]
|
698 |
-
},
|
699 |
-
{
|
700 |
-
"name": "fast-forward",
|
701 |
-
"id": "fast-forward",
|
702 |
-
"unicode": "f050",
|
703 |
-
"created": 1,
|
704 |
-
"categories": [
|
705 |
-
"Video Player Icons"
|
706 |
-
]
|
707 |
-
},
|
708 |
-
{
|
709 |
-
"name": "step-forward",
|
710 |
-
"id": "step-forward",
|
711 |
-
"unicode": "f051",
|
712 |
-
"created": 1,
|
713 |
-
"categories": [
|
714 |
-
"Video Player Icons"
|
715 |
-
]
|
716 |
-
},
|
717 |
-
{
|
718 |
-
"name": "eject",
|
719 |
-
"id": "eject",
|
720 |
-
"unicode": "f052",
|
721 |
-
"created": 1,
|
722 |
-
"categories": [
|
723 |
-
"Video Player Icons"
|
724 |
-
]
|
725 |
-
},
|
726 |
-
{
|
727 |
-
"name": "chevron-left",
|
728 |
-
"id": "chevron-left",
|
729 |
-
"unicode": "f053",
|
730 |
-
"created": 1,
|
731 |
-
"categories": [
|
732 |
-
"Directional Icons"
|
733 |
-
]
|
734 |
-
},
|
735 |
-
{
|
736 |
-
"name": "chevron-right",
|
737 |
-
"id": "chevron-right",
|
738 |
-
"unicode": "f054",
|
739 |
-
"created": 1,
|
740 |
-
"categories": [
|
741 |
-
"Directional Icons"
|
742 |
-
]
|
743 |
-
},
|
744 |
-
{
|
745 |
-
"name": "Plus Circle",
|
746 |
-
"id": "plus-circle",
|
747 |
-
"unicode": "f055",
|
748 |
-
"created": 1,
|
749 |
-
"categories": [
|
750 |
-
"Web Application Icons"
|
751 |
-
]
|
752 |
-
},
|
753 |
-
{
|
754 |
-
"name": "Minus Circle",
|
755 |
-
"id": "minus-circle",
|
756 |
-
"unicode": "f056",
|
757 |
-
"created": 1,
|
758 |
-
"categories": [
|
759 |
-
"Web Application Icons"
|
760 |
-
]
|
761 |
-
},
|
762 |
-
{
|
763 |
-
"name": "Times Circle",
|
764 |
-
"id": "times-circle",
|
765 |
-
"unicode": "f057",
|
766 |
-
"created": 1,
|
767 |
-
"categories": [
|
768 |
-
"Web Application Icons"
|
769 |
-
]
|
770 |
-
},
|
771 |
-
{
|
772 |
-
"name": "Check Circle",
|
773 |
-
"id": "check-circle",
|
774 |
-
"unicode": "f058",
|
775 |
-
"created": 1,
|
776 |
-
"categories": [
|
777 |
-
"Web Application Icons"
|
778 |
-
]
|
779 |
-
},
|
780 |
-
{
|
781 |
-
"name": "Question Circle",
|
782 |
-
"id": "question-circle",
|
783 |
-
"unicode": "f059",
|
784 |
-
"created": 1,
|
785 |
-
"categories": [
|
786 |
-
"Web Application Icons"
|
787 |
-
]
|
788 |
-
},
|
789 |
-
{
|
790 |
-
"name": "Info Circle",
|
791 |
-
"id": "info-circle",
|
792 |
-
"unicode": "f05a",
|
793 |
-
"created": 1,
|
794 |
-
"categories": [
|
795 |
-
"Web Application Icons"
|
796 |
-
]
|
797 |
-
},
|
798 |
-
{
|
799 |
-
"name": "Crosshairs",
|
800 |
-
"id": "crosshairs",
|
801 |
-
"unicode": "f05b",
|
802 |
-
"created": 1,
|
803 |
-
"categories": [
|
804 |
-
"Web Application Icons"
|
805 |
-
]
|
806 |
-
},
|
807 |
-
{
|
808 |
-
"name": "Times Circle Outlined",
|
809 |
-
"id": "times-circle-o",
|
810 |
-
"unicode": "f05c",
|
811 |
-
"created": 1,
|
812 |
-
"categories": [
|
813 |
-
"Web Application Icons"
|
814 |
-
]
|
815 |
-
},
|
816 |
-
{
|
817 |
-
"name": "Check Circle Outlined",
|
818 |
-
"id": "check-circle-o",
|
819 |
-
"unicode": "f05d",
|
820 |
-
"created": 1,
|
821 |
-
"categories": [
|
822 |
-
"Web Application Icons"
|
823 |
-
]
|
824 |
-
},
|
825 |
-
{
|
826 |
-
"name": "ban",
|
827 |
-
"id": "ban",
|
828 |
-
"unicode": "f05e",
|
829 |
-
"created": 1,
|
830 |
-
"categories": [
|
831 |
-
"Web Application Icons"
|
832 |
-
]
|
833 |
-
},
|
834 |
-
{
|
835 |
-
"name": "arrow-left",
|
836 |
-
"id": "arrow-left",
|
837 |
-
"unicode": "f060",
|
838 |
-
"created": 1,
|
839 |
-
"categories": [
|
840 |
-
"Directional Icons"
|
841 |
-
]
|
842 |
-
},
|
843 |
-
{
|
844 |
-
"name": "arrow-right",
|
845 |
-
"id": "arrow-right",
|
846 |
-
"unicode": "f061",
|
847 |
-
"created": 1,
|
848 |
-
"categories": [
|
849 |
-
"Directional Icons"
|
850 |
-
]
|
851 |
-
},
|
852 |
-
{
|
853 |
-
"name": "arrow-up",
|
854 |
-
"id": "arrow-up",
|
855 |
-
"unicode": "f062",
|
856 |
-
"created": 1,
|
857 |
-
"categories": [
|
858 |
-
"Directional Icons"
|
859 |
-
]
|
860 |
-
},
|
861 |
-
{
|
862 |
-
"name": "arrow-down",
|
863 |
-
"id": "arrow-down",
|
864 |
-
"unicode": "f063",
|
865 |
-
"created": 1,
|
866 |
-
"categories": [
|
867 |
-
"Directional Icons"
|
868 |
-
]
|
869 |
-
},
|
870 |
-
{
|
871 |
-
"name": "Share",
|
872 |
-
"id": "share",
|
873 |
-
"unicode": "f064",
|
874 |
-
"created": 1,
|
875 |
-
"aliases": [
|
876 |
-
"mail-forward"
|
877 |
-
],
|
878 |
-
"categories": [
|
879 |
-
"Web Application Icons"
|
880 |
-
]
|
881 |
-
},
|
882 |
-
{
|
883 |
-
"name": "Expand",
|
884 |
-
"id": "expand",
|
885 |
-
"unicode": "f065",
|
886 |
-
"created": 1,
|
887 |
-
"categories": [
|
888 |
-
"Video Player Icons"
|
889 |
-
]
|
890 |
-
},
|
891 |
-
{
|
892 |
-
"name": "Compress",
|
893 |
-
"id": "compress",
|
894 |
-
"unicode": "f066",
|
895 |
-
"created": 1,
|
896 |
-
"categories": [
|
897 |
-
"Video Player Icons"
|
898 |
-
]
|
899 |
-
},
|
900 |
-
{
|
901 |
-
"name": "plus",
|
902 |
-
"id": "plus",
|
903 |
-
"unicode": "f067",
|
904 |
-
"created": 1,
|
905 |
-
"categories": [
|
906 |
-
"Web Application Icons"
|
907 |
-
]
|
908 |
-
},
|
909 |
-
{
|
910 |
-
"name": "minus",
|
911 |
-
"id": "minus",
|
912 |
-
"unicode": "f068",
|
913 |
-
"created": 1,
|
914 |
-
"categories": [
|
915 |
-
"Web Application Icons"
|
916 |
-
]
|
917 |
-
},
|
918 |
-
{
|
919 |
-
"name": "asterisk",
|
920 |
-
"id": "asterisk",
|
921 |
-
"unicode": "f069",
|
922 |
-
"created": 1,
|
923 |
-
"categories": [
|
924 |
-
"Web Application Icons"
|
925 |
-
]
|
926 |
-
},
|
927 |
-
{
|
928 |
-
"name": "Exclamation Circle",
|
929 |
-
"id": "exclamation-circle",
|
930 |
-
"unicode": "f06a",
|
931 |
-
"created": 1,
|
932 |
-
"categories": [
|
933 |
-
"Web Application Icons"
|
934 |
-
]
|
935 |
-
},
|
936 |
-
{
|
937 |
-
"name": "gift",
|
938 |
-
"id": "gift",
|
939 |
-
"unicode": "f06b",
|
940 |
-
"created": 1,
|
941 |
-
"categories": [
|
942 |
-
"Web Application Icons"
|
943 |
-
]
|
944 |
-
},
|
945 |
-
{
|
946 |
-
"name": "leaf",
|
947 |
-
"id": "leaf",
|
948 |
-
"unicode": "f06c",
|
949 |
-
"created": 1,
|
950 |
-
"categories": [
|
951 |
-
"Web Application Icons"
|
952 |
-
]
|
953 |
-
},
|
954 |
-
{
|
955 |
-
"name": "fire",
|
956 |
-
"id": "fire",
|
957 |
-
"unicode": "f06d",
|
958 |
-
"created": 1,
|
959 |
-
"categories": [
|
960 |
-
"Web Application Icons"
|
961 |
-
]
|
962 |
-
},
|
963 |
-
{
|
964 |
-
"name": "Eye",
|
965 |
-
"id": "eye",
|
966 |
-
"unicode": "f06e",
|
967 |
-
"created": 1,
|
968 |
-
"categories": [
|
969 |
-
"Web Application Icons"
|
970 |
-
]
|
971 |
-
},
|
972 |
-
{
|
973 |
-
"name": "Eye Slash",
|
974 |
-
"id": "eye-slash",
|
975 |
-
"unicode": "f070",
|
976 |
-
"created": 1,
|
977 |
-
"categories": [
|
978 |
-
"Web Application Icons"
|
979 |
-
]
|
980 |
-
},
|
981 |
-
{
|
982 |
-
"name": "Exclamation Triangle",
|
983 |
-
"id": "exclamation-triangle",
|
984 |
-
"unicode": "f071",
|
985 |
-
"created": 1,
|
986 |
-
"aliases": [
|
987 |
-
"warning"
|
988 |
-
],
|
989 |
-
"categories": [
|
990 |
-
"Web Application Icons"
|
991 |
-
]
|
992 |
-
},
|
993 |
-
{
|
994 |
-
"name": "plane",
|
995 |
-
"id": "plane",
|
996 |
-
"unicode": "f072",
|
997 |
-
"created": 1,
|
998 |
-
"categories": [
|
999 |
-
"Web Application Icons"
|
1000 |
-
]
|
1001 |
-
},
|
1002 |
-
{
|
1003 |
-
"name": "calendar",
|
1004 |
-
"id": "calendar",
|
1005 |
-
"unicode": "f073",
|
1006 |
-
"created": 1,
|
1007 |
-
"categories": [
|
1008 |
-
"Web Application Icons"
|
1009 |
-
]
|
1010 |
-
},
|
1011 |
-
{
|
1012 |
-
"name": "random",
|
1013 |
-
"id": "random",
|
1014 |
-
"unicode": "f074",
|
1015 |
-
"created": 1,
|
1016 |
-
"categories": [
|
1017 |
-
"Web Application Icons"
|
1018 |
-
]
|
1019 |
-
},
|
1020 |
-
{
|
1021 |
-
"name": "comment",
|
1022 |
-
"id": "comment",
|
1023 |
-
"unicode": "f075",
|
1024 |
-
"created": 1,
|
1025 |
-
"categories": [
|
1026 |
-
"Web Application Icons"
|
1027 |
-
]
|
1028 |
-
},
|
1029 |
-
{
|
1030 |
-
"name": "magnet",
|
1031 |
-
"id": "magnet",
|
1032 |
-
"unicode": "f076",
|
1033 |
-
"created": 1,
|
1034 |
-
"categories": [
|
1035 |
-
"Web Application Icons"
|
1036 |
-
]
|
1037 |
-
},
|
1038 |
-
{
|
1039 |
-
"name": "chevron-up",
|
1040 |
-
"id": "chevron-up",
|
1041 |
-
"unicode": "f077",
|
1042 |
-
"created": 1,
|
1043 |
-
"categories": [
|
1044 |
-
"Directional Icons"
|
1045 |
-
]
|
1046 |
-
},
|
1047 |
-
{
|
1048 |
-
"name": "chevron-down",
|
1049 |
-
"id": "chevron-down",
|
1050 |
-
"unicode": "f078",
|
1051 |
-
"created": 1,
|
1052 |
-
"categories": [
|
1053 |
-
"Directional Icons"
|
1054 |
-
]
|
1055 |
-
},
|
1056 |
-
{
|
1057 |
-
"name": "retweet",
|
1058 |
-
"id": "retweet",
|
1059 |
-
"unicode": "f079",
|
1060 |
-
"created": 1,
|
1061 |
-
"categories": [
|
1062 |
-
"Web Application Icons"
|
1063 |
-
]
|
1064 |
-
},
|
1065 |
-
{
|
1066 |
-
"name": "shopping-cart",
|
1067 |
-
"id": "shopping-cart",
|
1068 |
-
"unicode": "f07a",
|
1069 |
-
"created": 1,
|
1070 |
-
"categories": [
|
1071 |
-
"Web Application Icons"
|
1072 |
-
]
|
1073 |
-
},
|
1074 |
-
{
|
1075 |
-
"name": "Folder",
|
1076 |
-
"id": "folder",
|
1077 |
-
"unicode": "f07b",
|
1078 |
-
"created": 1,
|
1079 |
-
"categories": [
|
1080 |
-
"Web Application Icons"
|
1081 |
-
]
|
1082 |
-
},
|
1083 |
-
{
|
1084 |
-
"name": "Folder Open",
|
1085 |
-
"id": "folder-open",
|
1086 |
-
"unicode": "f07c",
|
1087 |
-
"created": 1,
|
1088 |
-
"categories": [
|
1089 |
-
"Web Application Icons"
|
1090 |
-
]
|
1091 |
-
},
|
1092 |
-
{
|
1093 |
-
"name": "Arrows Vertical",
|
1094 |
-
"id": "arrows-v",
|
1095 |
-
"unicode": "f07d",
|
1096 |
-
"created": 1,
|
1097 |
-
"categories": [
|
1098 |
-
"Web Application Icons",
|
1099 |
-
"Directional Icons"
|
1100 |
-
]
|
1101 |
-
},
|
1102 |
-
{
|
1103 |
-
"name": "Arrows Horizontal",
|
1104 |
-
"id": "arrows-h",
|
1105 |
-
"unicode": "f07e",
|
1106 |
-
"created": 1,
|
1107 |
-
"categories": [
|
1108 |
-
"Web Application Icons",
|
1109 |
-
"Directional Icons"
|
1110 |
-
]
|
1111 |
-
},
|
1112 |
-
{
|
1113 |
-
"name": "Bar Chart Outlined",
|
1114 |
-
"id": "bar-chart-o",
|
1115 |
-
"unicode": "f080",
|
1116 |
-
"created": 1,
|
1117 |
-
"categories": [
|
1118 |
-
"Web Application Icons"
|
1119 |
-
]
|
1120 |
-
},
|
1121 |
-
{
|
1122 |
-
"name": "Twitter Square",
|
1123 |
-
"id": "twitter-square",
|
1124 |
-
"unicode": "f081",
|
1125 |
-
"created": 1,
|
1126 |
-
"categories": [
|
1127 |
-
"Brand Icons"
|
1128 |
-
]
|
1129 |
-
},
|
1130 |
-
{
|
1131 |
-
"name": "Facebook Square",
|
1132 |
-
"id": "facebook-square",
|
1133 |
-
"unicode": "f082",
|
1134 |
-
"created": 1,
|
1135 |
-
"categories": [
|
1136 |
-
"Brand Icons"
|
1137 |
-
]
|
1138 |
-
},
|
1139 |
-
{
|
1140 |
-
"name": "camera-retro",
|
1141 |
-
"id": "camera-retro",
|
1142 |
-
"unicode": "f083",
|
1143 |
-
"created": 1,
|
1144 |
-
"categories": [
|
1145 |
-
"Web Application Icons"
|
1146 |
-
]
|
1147 |
-
},
|
1148 |
-
{
|
1149 |
-
"name": "key",
|
1150 |
-
"id": "key",
|
1151 |
-
"unicode": "f084",
|
1152 |
-
"created": 1,
|
1153 |
-
"categories": [
|
1154 |
-
"Web Application Icons"
|
1155 |
-
]
|
1156 |
-
},
|
1157 |
-
{
|
1158 |
-
"name": "cogs",
|
1159 |
-
"id": "cogs",
|
1160 |
-
"unicode": "f085",
|
1161 |
-
"created": 1,
|
1162 |
-
"aliases": [
|
1163 |
-
"gears"
|
1164 |
-
],
|
1165 |
-
"categories": [
|
1166 |
-
"Web Application Icons"
|
1167 |
-
]
|
1168 |
-
},
|
1169 |
-
{
|
1170 |
-
"name": "comments",
|
1171 |
-
"id": "comments",
|
1172 |
-
"unicode": "f086",
|
1173 |
-
"created": 1,
|
1174 |
-
"categories": [
|
1175 |
-
"Web Application Icons"
|
1176 |
-
]
|
1177 |
-
},
|
1178 |
-
{
|
1179 |
-
"name": "Thumbs Up Outlined",
|
1180 |
-
"id": "thumbs-o-up",
|
1181 |
-
"unicode": "f087",
|
1182 |
-
"created": 1,
|
1183 |
-
"categories": [
|
1184 |
-
"Web Application Icons"
|
1185 |
-
]
|
1186 |
-
},
|
1187 |
-
{
|
1188 |
-
"name": "Thumbs Down Outlined",
|
1189 |
-
"id": "thumbs-o-down",
|
1190 |
-
"unicode": "f088",
|
1191 |
-
"created": 1,
|
1192 |
-
"categories": [
|
1193 |
-
"Web Application Icons"
|
1194 |
-
]
|
1195 |
-
},
|
1196 |
-
{
|
1197 |
-
"name": "star-half",
|
1198 |
-
"id": "star-half",
|
1199 |
-
"unicode": "f089",
|
1200 |
-
"created": 1,
|
1201 |
-
"categories": [
|
1202 |
-
"Web Application Icons"
|
1203 |
-
]
|
1204 |
-
},
|
1205 |
-
{
|
1206 |
-
"name": "Heart Outlined",
|
1207 |
-
"id": "heart-o",
|
1208 |
-
"unicode": "f08a",
|
1209 |
-
"created": 1,
|
1210 |
-
"categories": [
|
1211 |
-
"Web Application Icons"
|
1212 |
-
]
|
1213 |
-
},
|
1214 |
-
{
|
1215 |
-
"name": "Sign Out",
|
1216 |
-
"id": "sign-out",
|
1217 |
-
"unicode": "f08b",
|
1218 |
-
"created": 1,
|
1219 |
-
"categories": [
|
1220 |
-
"Web Application Icons"
|
1221 |
-
]
|
1222 |
-
},
|
1223 |
-
{
|
1224 |
-
"name": "LinkedIn Square",
|
1225 |
-
"id": "linkedin-square",
|
1226 |
-
"unicode": "f08c",
|
1227 |
-
"created": 1,
|
1228 |
-
"categories": [
|
1229 |
-
"Brand Icons"
|
1230 |
-
]
|
1231 |
-
},
|
1232 |
-
{
|
1233 |
-
"name": "Thumb Tack",
|
1234 |
-
"id": "thumb-tack",
|
1235 |
-
"unicode": "f08d",
|
1236 |
-
"created": 1,
|
1237 |
-
"categories": [
|
1238 |
-
"Web Application Icons"
|
1239 |
-
]
|
1240 |
-
},
|
1241 |
-
{
|
1242 |
-
"name": "External Link",
|
1243 |
-
"id": "external-link",
|
1244 |
-
"unicode": "f08e",
|
1245 |
-
"created": 1,
|
1246 |
-
"categories": [
|
1247 |
-
"Web Application Icons"
|
1248 |
-
]
|
1249 |
-
},
|
1250 |
-
{
|
1251 |
-
"name": "Sign In",
|
1252 |
-
"id": "sign-in",
|
1253 |
-
"unicode": "f090",
|
1254 |
-
"created": 1,
|
1255 |
-
"categories": [
|
1256 |
-
"Web Application Icons"
|
1257 |
-
]
|
1258 |
-
},
|
1259 |
-
{
|
1260 |
-
"name": "trophy",
|
1261 |
-
"id": "trophy",
|
1262 |
-
"unicode": "f091",
|
1263 |
-
"created": 1,
|
1264 |
-
"categories": [
|
1265 |
-
"Web Application Icons"
|
1266 |
-
]
|
1267 |
-
},
|
1268 |
-
{
|
1269 |
-
"name": "GitHub Square",
|
1270 |
-
"id": "github-square",
|
1271 |
-
"unicode": "f092",
|
1272 |
-
"created": 1,
|
1273 |
-
"categories": [
|
1274 |
-
"Brand Icons"
|
1275 |
-
]
|
1276 |
-
},
|
1277 |
-
{
|
1278 |
-
"name": "Upload",
|
1279 |
-
"id": "upload",
|
1280 |
-
"unicode": "f093",
|
1281 |
-
"created": 1,
|
1282 |
-
"categories": [
|
1283 |
-
"Web Application Icons"
|
1284 |
-
]
|
1285 |
-
},
|
1286 |
-
{
|
1287 |
-
"name": "Lemon Outlined",
|
1288 |
-
"id": "lemon-o",
|
1289 |
-
"unicode": "f094",
|
1290 |
-
"created": 1,
|
1291 |
-
"categories": [
|
1292 |
-
"Web Application Icons"
|
1293 |
-
]
|
1294 |
-
},
|
1295 |
-
{
|
1296 |
-
"name": "Phone",
|
1297 |
-
"id": "phone",
|
1298 |
-
"unicode": "f095",
|
1299 |
-
"created": 2,
|
1300 |
-
"categories": [
|
1301 |
-
"Web Application Icons"
|
1302 |
-
]
|
1303 |
-
},
|
1304 |
-
{
|
1305 |
-
"name": "Square Outlined",
|
1306 |
-
"id": "square-o",
|
1307 |
-
"unicode": "f096",
|
1308 |
-
"created": 2,
|
1309 |
-
"categories": [
|
1310 |
-
"Web Application Icons",
|
1311 |
-
"Form Control Icons"
|
1312 |
-
]
|
1313 |
-
},
|
1314 |
-
{
|
1315 |
-
"name": "Bookmark Outlined",
|
1316 |
-
"id": "bookmark-o",
|
1317 |
-
"unicode": "f097",
|
1318 |
-
"created": 2,
|
1319 |
-
"categories": [
|
1320 |
-
"Web Application Icons"
|
1321 |
-
]
|
1322 |
-
},
|
1323 |
-
{
|
1324 |
-
"name": "Phone Square",
|
1325 |
-
"id": "phone-square",
|
1326 |
-
"unicode": "f098",
|
1327 |
-
"created": 2,
|
1328 |
-
"categories": [
|
1329 |
-
"Web Application Icons"
|
1330 |
-
]
|
1331 |
-
},
|
1332 |
-
{
|
1333 |
-
"name": "Twitter",
|
1334 |
-
"id": "twitter",
|
1335 |
-
"unicode": "f099",
|
1336 |
-
"created": 2,
|
1337 |
-
"categories": [
|
1338 |
-
"Brand Icons"
|
1339 |
-
]
|
1340 |
-
},
|
1341 |
-
{
|
1342 |
-
"name": "Facebook",
|
1343 |
-
"id": "facebook",
|
1344 |
-
"unicode": "f09a",
|
1345 |
-
"created": 2,
|
1346 |
-
"categories": [
|
1347 |
-
"Brand Icons"
|
1348 |
-
]
|
1349 |
-
},
|
1350 |
-
{
|
1351 |
-
"name": "GitHub",
|
1352 |
-
"id": "github",
|
1353 |
-
"unicode": "f09b",
|
1354 |
-
"created": 2,
|
1355 |
-
"categories": [
|
1356 |
-
"Brand Icons"
|
1357 |
-
]
|
1358 |
-
},
|
1359 |
-
{
|
1360 |
-
"name": "unlock",
|
1361 |
-
"id": "unlock",
|
1362 |
-
"unicode": "f09c",
|
1363 |
-
"created": 2,
|
1364 |
-
"categories": [
|
1365 |
-
"Web Application Icons"
|
1366 |
-
]
|
1367 |
-
},
|
1368 |
-
{
|
1369 |
-
"name": "credit-card",
|
1370 |
-
"id": "credit-card",
|
1371 |
-
"unicode": "f09d",
|
1372 |
-
"created": 2,
|
1373 |
-
"categories": [
|
1374 |
-
"Web Application Icons"
|
1375 |
-
]
|
1376 |
-
},
|
1377 |
-
{
|
1378 |
-
"name": "rss",
|
1379 |
-
"id": "rss",
|
1380 |
-
"unicode": "f09e",
|
1381 |
-
"created": 2,
|
1382 |
-
"categories": [
|
1383 |
-
"Web Application Icons"
|
1384 |
-
]
|
1385 |
-
},
|
1386 |
-
{
|
1387 |
-
"name": "HDD",
|
1388 |
-
"id": "hdd-o",
|
1389 |
-
"unicode": "f0a0",
|
1390 |
-
"created": 2,
|
1391 |
-
"categories": [
|
1392 |
-
"Web Application Icons"
|
1393 |
-
]
|
1394 |
-
},
|
1395 |
-
{
|
1396 |
-
"name": "bullhorn",
|
1397 |
-
"id": "bullhorn",
|
1398 |
-
"unicode": "f0a1",
|
1399 |
-
"created": 2,
|
1400 |
-
"categories": [
|
1401 |
-
"Web Application Icons"
|
1402 |
-
]
|
1403 |
-
},
|
1404 |
-
{
|
1405 |
-
"name": "bell",
|
1406 |
-
"id": "bell",
|
1407 |
-
"unicode": "f0f3",
|
1408 |
-
"created": 2,
|
1409 |
-
"categories": [
|
1410 |
-
"Web Application Icons"
|
1411 |
-
]
|
1412 |
-
},
|
1413 |
-
{
|
1414 |
-
"name": "certificate",
|
1415 |
-
"id": "certificate",
|
1416 |
-
"unicode": "f0a3",
|
1417 |
-
"created": 2,
|
1418 |
-
"categories": [
|
1419 |
-
"Web Application Icons"
|
1420 |
-
]
|
1421 |
-
},
|
1422 |
-
{
|
1423 |
-
"name": "Hand Outlined Right",
|
1424 |
-
"id": "hand-o-right",
|
1425 |
-
"unicode": "f0a4",
|
1426 |
-
"created": 2,
|
1427 |
-
"categories": [
|
1428 |
-
"Directional Icons"
|
1429 |
-
]
|
1430 |
-
},
|
1431 |
-
{
|
1432 |
-
"name": "Hand Outlined Left",
|
1433 |
-
"id": "hand-o-left",
|
1434 |
-
"unicode": "f0a5",
|
1435 |
-
"created": 2,
|
1436 |
-
"categories": [
|
1437 |
-
"Directional Icons"
|
1438 |
-
]
|
1439 |
-
},
|
1440 |
-
{
|
1441 |
-
"name": "Hand Outlined Up",
|
1442 |
-
"id": "hand-o-up",
|
1443 |
-
"unicode": "f0a6",
|
1444 |
-
"created": 2,
|
1445 |
-
"categories": [
|
1446 |
-
"Directional Icons"
|
1447 |
-
]
|
1448 |
-
},
|
1449 |
-
{
|
1450 |
-
"name": "Hand Outlined Down",
|
1451 |
-
"id": "hand-o-down",
|
1452 |
-
"unicode": "f0a7",
|
1453 |
-
"created": 2,
|
1454 |
-
"categories": [
|
1455 |
-
"Directional Icons"
|
1456 |
-
]
|
1457 |
-
},
|
1458 |
-
{
|
1459 |
-
"name": "Arrow Circle Left",
|
1460 |
-
"id": "arrow-circle-left",
|
1461 |
-
"unicode": "f0a8",
|
1462 |
-
"created": 2,
|
1463 |
-
"categories": [
|
1464 |
-
"Directional Icons"
|
1465 |
-
]
|
1466 |
-
},
|
1467 |
-
{
|
1468 |
-
"name": "Arrow Circle Right",
|
1469 |
-
"id": "arrow-circle-right",
|
1470 |
-
"unicode": "f0a9",
|
1471 |
-
"created": 2,
|
1472 |
-
"categories": [
|
1473 |
-
"Directional Icons"
|
1474 |
-
]
|
1475 |
-
},
|
1476 |
-
{
|
1477 |
-
"name": "Arrow Circle Up",
|
1478 |
-
"id": "arrow-circle-up",
|
1479 |
-
"unicode": "f0aa",
|
1480 |
-
"created": 2,
|
1481 |
-
"categories": [
|
1482 |
-
"Directional Icons"
|
1483 |
-
]
|
1484 |
-
},
|
1485 |
-
{
|
1486 |
-
"name": "Arrow Circle Down",
|
1487 |
-
"id": "arrow-circle-down",
|
1488 |
-
"unicode": "f0ab",
|
1489 |
-
"created": 2,
|
1490 |
-
"categories": [
|
1491 |
-
"Directional Icons"
|
1492 |
-
]
|
1493 |
-
},
|
1494 |
-
{
|
1495 |
-
"name": "Globe",
|
1496 |
-
"id": "globe",
|
1497 |
-
"unicode": "f0ac",
|
1498 |
-
"created": 2,
|
1499 |
-
"categories": [
|
1500 |
-
"Web Application Icons"
|
1501 |
-
]
|
1502 |
-
},
|
1503 |
-
{
|
1504 |
-
"name": "Wrench",
|
1505 |
-
"id": "wrench",
|
1506 |
-
"unicode": "f0ad",
|
1507 |
-
"created": 2,
|
1508 |
-
"categories": [
|
1509 |
-
"Web Application Icons"
|
1510 |
-
]
|
1511 |
-
},
|
1512 |
-
{
|
1513 |
-
"name": "Tasks",
|
1514 |
-
"id": "tasks",
|
1515 |
-
"unicode": "f0ae",
|
1516 |
-
"created": 2,
|
1517 |
-
"categories": [
|
1518 |
-
"Web Application Icons"
|
1519 |
-
]
|
1520 |
-
},
|
1521 |
-
{
|
1522 |
-
"name": "Filter",
|
1523 |
-
"id": "filter",
|
1524 |
-
"unicode": "f0b0",
|
1525 |
-
"created": 2,
|
1526 |
-
"categories": [
|
1527 |
-
"Web Application Icons"
|
1528 |
-
]
|
1529 |
-
},
|
1530 |
-
{
|
1531 |
-
"name": "Briefcase",
|
1532 |
-
"id": "briefcase",
|
1533 |
-
"unicode": "f0b1",
|
1534 |
-
"created": 2,
|
1535 |
-
"categories": [
|
1536 |
-
"Web Application Icons"
|
1537 |
-
]
|
1538 |
-
},
|
1539 |
-
{
|
1540 |
-
"name": "Arrows Alt",
|
1541 |
-
"id": "arrows-alt",
|
1542 |
-
"unicode": "f0b2",
|
1543 |
-
"created": 2,
|
1544 |
-
"categories": [
|
1545 |
-
"Video Player Icons",
|
1546 |
-
"Directional Icons"
|
1547 |
-
]
|
1548 |
-
},
|
1549 |
-
{
|
1550 |
-
"name": "Users",
|
1551 |
-
"id": "users",
|
1552 |
-
"unicode": "f0c0",
|
1553 |
-
"created": 2,
|
1554 |
-
"aliases": [
|
1555 |
-
"group"
|
1556 |
-
],
|
1557 |
-
"categories": [
|
1558 |
-
"Web Application Icons"
|
1559 |
-
]
|
1560 |
-
},
|
1561 |
-
{
|
1562 |
-
"name": "Link",
|
1563 |
-
"id": "link",
|
1564 |
-
"unicode": "f0c1",
|
1565 |
-
"created": 2,
|
1566 |
-
"aliases": [
|
1567 |
-
"chain"
|
1568 |
-
],
|
1569 |
-
"categories": [
|
1570 |
-
"Text Editor Icons"
|
1571 |
-
]
|
1572 |
-
},
|
1573 |
-
{
|
1574 |
-
"name": "Cloud",
|
1575 |
-
"id": "cloud",
|
1576 |
-
"unicode": "f0c2",
|
1577 |
-
"created": 2,
|
1578 |
-
"categories": [
|
1579 |
-
"Web Application Icons"
|
1580 |
-
]
|
1581 |
-
},
|
1582 |
-
{
|
1583 |
-
"name": "Flask",
|
1584 |
-
"id": "flask",
|
1585 |
-
"unicode": "f0c3",
|
1586 |
-
"created": 2,
|
1587 |
-
"categories": [
|
1588 |
-
"Web Application Icons"
|
1589 |
-
]
|
1590 |
-
},
|
1591 |
-
{
|
1592 |
-
"name": "Scissors",
|
1593 |
-
"id": "scissors",
|
1594 |
-
"unicode": "f0c4",
|
1595 |
-
"created": 2,
|
1596 |
-
"aliases": [
|
1597 |
-
"cut"
|
1598 |
-
],
|
1599 |
-
"categories": [
|
1600 |
-
"Text Editor Icons"
|
1601 |
-
]
|
1602 |
-
},
|
1603 |
-
{
|
1604 |
-
"name": "Files Outlined",
|
1605 |
-
"id": "files-o",
|
1606 |
-
"unicode": "f0c5",
|
1607 |
-
"created": 2,
|
1608 |
-
"aliases": [
|
1609 |
-
"copy"
|
1610 |
-
],
|
1611 |
-
"categories": [
|
1612 |
-
"Text Editor Icons"
|
1613 |
-
]
|
1614 |
-
},
|
1615 |
-
{
|
1616 |
-
"name": "Paperclip",
|
1617 |
-
"id": "paperclip",
|
1618 |
-
"unicode": "f0c6",
|
1619 |
-
"created": 2,
|
1620 |
-
"categories": [
|
1621 |
-
"Text Editor Icons"
|
1622 |
-
]
|
1623 |
-
},
|
1624 |
-
{
|
1625 |
-
"name": "Floppy Outlined",
|
1626 |
-
"id": "floppy-o",
|
1627 |
-
"unicode": "f0c7",
|
1628 |
-
"created": 2,
|
1629 |
-
"aliases": [
|
1630 |
-
"save"
|
1631 |
-
],
|
1632 |
-
"categories": [
|
1633 |
-
"Text Editor Icons"
|
1634 |
-
]
|
1635 |
-
},
|
1636 |
-
{
|
1637 |
-
"name": "Square",
|
1638 |
-
"id": "square",
|
1639 |
-
"unicode": "f0c8",
|
1640 |
-
"created": 2,
|
1641 |
-
"categories": [
|
1642 |
-
"Web Application Icons",
|
1643 |
-
"Form Control Icons"
|
1644 |
-
]
|
1645 |
-
},
|
1646 |
-
{
|
1647 |
-
"name": "Bars",
|
1648 |
-
"id": "bars",
|
1649 |
-
"unicode": "f0c9",
|
1650 |
-
"created": 2,
|
1651 |
-
"aliases": [
|
1652 |
-
"navicon",
|
1653 |
-
"reorder"
|
1654 |
-
],
|
1655 |
-
"categories": [
|
1656 |
-
"Web Application Icons"
|
1657 |
-
]
|
1658 |
-
},
|
1659 |
-
{
|
1660 |
-
"name": "list-ul",
|
1661 |
-
"id": "list-ul",
|
1662 |
-
"unicode": "f0ca",
|
1663 |
-
"created": 2,
|
1664 |
-
"categories": [
|
1665 |
-
"Text Editor Icons"
|
1666 |
-
]
|
1667 |
-
},
|
1668 |
-
{
|
1669 |
-
"name": "list-ol",
|
1670 |
-
"id": "list-ol",
|
1671 |
-
"unicode": "f0cb",
|
1672 |
-
"created": 2,
|
1673 |
-
"categories": [
|
1674 |
-
"Text Editor Icons"
|
1675 |
-
]
|
1676 |
-
},
|
1677 |
-
{
|
1678 |
-
"name": "Strikethrough",
|
1679 |
-
"id": "strikethrough",
|
1680 |
-
"unicode": "f0cc",
|
1681 |
-
"created": 2,
|
1682 |
-
"categories": [
|
1683 |
-
"Text Editor Icons"
|
1684 |
-
]
|
1685 |
-
},
|
1686 |
-
{
|
1687 |
-
"name": "Underline",
|
1688 |
-
"id": "underline",
|
1689 |
-
"unicode": "f0cd",
|
1690 |
-
"created": 2,
|
1691 |
-
"categories": [
|
1692 |
-
"Text Editor Icons"
|
1693 |
-
]
|
1694 |
-
},
|
1695 |
-
{
|
1696 |
-
"name": "table",
|
1697 |
-
"id": "table",
|
1698 |
-
"unicode": "f0ce",
|
1699 |
-
"created": 2,
|
1700 |
-
"categories": [
|
1701 |
-
"Text Editor Icons"
|
1702 |
-
]
|
1703 |
-
},
|
1704 |
-
{
|
1705 |
-
"name": "magic",
|
1706 |
-
"id": "magic",
|
1707 |
-
"unicode": "f0d0",
|
1708 |
-
"created": 2,
|
1709 |
-
"categories": [
|
1710 |
-
"Web Application Icons"
|
1711 |
-
]
|
1712 |
-
},
|
1713 |
-
{
|
1714 |
-
"name": "truck",
|
1715 |
-
"id": "truck",
|
1716 |
-
"unicode": "f0d1",
|
1717 |
-
"created": 2,
|
1718 |
-
"categories": [
|
1719 |
-
"Web Application Icons"
|
1720 |
-
]
|
1721 |
-
},
|
1722 |
-
{
|
1723 |
-
"name": "Pinterest",
|
1724 |
-
"id": "pinterest",
|
1725 |
-
"unicode": "f0d2",
|
1726 |
-
"created": 2,
|
1727 |
-
"categories": [
|
1728 |
-
"Brand Icons"
|
1729 |
-
]
|
1730 |
-
},
|
1731 |
-
{
|
1732 |
-
"name": "Pinterest Square",
|
1733 |
-
"id": "pinterest-square",
|
1734 |
-
"unicode": "f0d3",
|
1735 |
-
"created": 2,
|
1736 |
-
"categories": [
|
1737 |
-
"Brand Icons"
|
1738 |
-
]
|
1739 |
-
},
|
1740 |
-
{
|
1741 |
-
"name": "Google Plus Square",
|
1742 |
-
"id": "google-plus-square",
|
1743 |
-
"unicode": "f0d4",
|
1744 |
-
"created": 2,
|
1745 |
-
"categories": [
|
1746 |
-
"Brand Icons"
|
1747 |
-
]
|
1748 |
-
},
|
1749 |
-
{
|
1750 |
-
"name": "Google Plus",
|
1751 |
-
"id": "google-plus",
|
1752 |
-
"unicode": "f0d5",
|
1753 |
-
"created": 2,
|
1754 |
-
"categories": [
|
1755 |
-
"Brand Icons"
|
1756 |
-
]
|
1757 |
-
},
|
1758 |
-
{
|
1759 |
-
"name": "Money",
|
1760 |
-
"id": "money",
|
1761 |
-
"unicode": "f0d6",
|
1762 |
-
"created": 2,
|
1763 |
-
"categories": [
|
1764 |
-
"Web Application Icons",
|
1765 |
-
"Currency Icons"
|
1766 |
-
]
|
1767 |
-
},
|
1768 |
-
{
|
1769 |
-
"name": "Caret Down",
|
1770 |
-
"id": "caret-down",
|
1771 |
-
"unicode": "f0d7",
|
1772 |
-
"created": 2,
|
1773 |
-
"categories": [
|
1774 |
-
"Directional Icons"
|
1775 |
-
]
|
1776 |
-
},
|
1777 |
-
{
|
1778 |
-
"name": "Caret Up",
|
1779 |
-
"id": "caret-up",
|
1780 |
-
"unicode": "f0d8",
|
1781 |
-
"created": 2,
|
1782 |
-
"categories": [
|
1783 |
-
"Directional Icons"
|
1784 |
-
]
|
1785 |
-
},
|
1786 |
-
{
|
1787 |
-
"name": "Caret Left",
|
1788 |
-
"id": "caret-left",
|
1789 |
-
"unicode": "f0d9",
|
1790 |
-
"created": 2,
|
1791 |
-
"categories": [
|
1792 |
-
"Directional Icons"
|
1793 |
-
]
|
1794 |
-
},
|
1795 |
-
{
|
1796 |
-
"name": "Caret Right",
|
1797 |
-
"id": "caret-right",
|
1798 |
-
"unicode": "f0da",
|
1799 |
-
"created": 2,
|
1800 |
-
"categories": [
|
1801 |
-
"Directional Icons"
|
1802 |
-
]
|
1803 |
-
},
|
1804 |
-
{
|
1805 |
-
"name": "Columns",
|
1806 |
-
"id": "columns",
|
1807 |
-
"unicode": "f0db",
|
1808 |
-
"created": 2,
|
1809 |
-
"categories": [
|
1810 |
-
"Text Editor Icons"
|
1811 |
-
]
|
1812 |
-
},
|
1813 |
-
{
|
1814 |
-
"name": "Sort",
|
1815 |
-
"id": "sort",
|
1816 |
-
"unicode": "f0dc",
|
1817 |
-
"created": 2,
|
1818 |
-
"aliases": [
|
1819 |
-
"unsorted"
|
1820 |
-
],
|
1821 |
-
"categories": [
|
1822 |
-
"Web Application Icons"
|
1823 |
-
]
|
1824 |
-
},
|
1825 |
-
{
|
1826 |
-
"name": "Sort Descending",
|
1827 |
-
"id": "sort-desc",
|
1828 |
-
"unicode": "f0dd",
|
1829 |
-
"created": 2,
|
1830 |
-
"aliases": [
|
1831 |
-
"sort-down"
|
1832 |
-
],
|
1833 |
-
"categories": [
|
1834 |
-
"Web Application Icons"
|
1835 |
-
]
|
1836 |
-
},
|
1837 |
-
{
|
1838 |
-
"name": "Sort Ascending",
|
1839 |
-
"id": "sort-asc",
|
1840 |
-
"unicode": "f0de",
|
1841 |
-
"created": 2,
|
1842 |
-
"aliases": [
|
1843 |
-
"sort-up"
|
1844 |
-
],
|
1845 |
-
"categories": [
|
1846 |
-
"Web Application Icons"
|
1847 |
-
]
|
1848 |
-
},
|
1849 |
-
{
|
1850 |
-
"name": "Envelope",
|
1851 |
-
"id": "envelope",
|
1852 |
-
"unicode": "f0e0",
|
1853 |
-
"created": 2,
|
1854 |
-
"categories": [
|
1855 |
-
"Web Application Icons"
|
1856 |
-
]
|
1857 |
-
},
|
1858 |
-
{
|
1859 |
-
"name": "LinkedIn",
|
1860 |
-
"id": "linkedin",
|
1861 |
-
"unicode": "f0e1",
|
1862 |
-
"created": 2,
|
1863 |
-
"categories": [
|
1864 |
-
"Brand Icons"
|
1865 |
-
]
|
1866 |
-
},
|
1867 |
-
{
|
1868 |
-
"name": "Undo",
|
1869 |
-
"id": "undo",
|
1870 |
-
"unicode": "f0e2",
|
1871 |
-
"created": 2,
|
1872 |
-
"aliases": [
|
1873 |
-
"rotate-left"
|
1874 |
-
],
|
1875 |
-
"categories": [
|
1876 |
-
"Text Editor Icons"
|
1877 |
-
]
|
1878 |
-
},
|
1879 |
-
{
|
1880 |
-
"name": "Gavel",
|
1881 |
-
"id": "gavel",
|
1882 |
-
"unicode": "f0e3",
|
1883 |
-
"created": 2,
|
1884 |
-
"aliases": [
|
1885 |
-
"legal"
|
1886 |
-
],
|
1887 |
-
"categories": [
|
1888 |
-
"Web Application Icons"
|
1889 |
-
]
|
1890 |
-
},
|
1891 |
-
{
|
1892 |
-
"name": "Tachometer",
|
1893 |
-
"id": "tachometer",
|
1894 |
-
"unicode": "f0e4",
|
1895 |
-
"created": 2,
|
1896 |
-
"aliases": [
|
1897 |
-
"dashboard"
|
1898 |
-
],
|
1899 |
-
"categories": [
|
1900 |
-
"Web Application Icons"
|
1901 |
-
]
|
1902 |
-
},
|
1903 |
-
{
|
1904 |
-
"name": "comment-o",
|
1905 |
-
"id": "comment-o",
|
1906 |
-
"unicode": "f0e5",
|
1907 |
-
"created": 2,
|
1908 |
-
"categories": [
|
1909 |
-
"Web Application Icons"
|
1910 |
-
]
|
1911 |
-
},
|
1912 |
-
{
|
1913 |
-
"name": "comments-o",
|
1914 |
-
"id": "comments-o",
|
1915 |
-
"unicode": "f0e6",
|
1916 |
-
"created": 2,
|
1917 |
-
"categories": [
|
1918 |
-
"Web Application Icons"
|
1919 |
-
]
|
1920 |
-
},
|
1921 |
-
{
|
1922 |
-
"name": "Lightning Bolt",
|
1923 |
-
"id": "bolt",
|
1924 |
-
"unicode": "f0e7",
|
1925 |
-
"created": 2,
|
1926 |
-
"aliases": [
|
1927 |
-
"flash"
|
1928 |
-
],
|
1929 |
-
"categories": [
|
1930 |
-
"Web Application Icons"
|
1931 |
-
]
|
1932 |
-
},
|
1933 |
-
{
|
1934 |
-
"name": "Sitemap",
|
1935 |
-
"id": "sitemap",
|
1936 |
-
"unicode": "f0e8",
|
1937 |
-
"created": 2,
|
1938 |
-
"categories": [
|
1939 |
-
"Web Application Icons"
|
1940 |
-
]
|
1941 |
-
},
|
1942 |
-
{
|
1943 |
-
"name": "Umbrella",
|
1944 |
-
"id": "umbrella",
|
1945 |
-
"unicode": "f0e9",
|
1946 |
-
"created": 2,
|
1947 |
-
"categories": [
|
1948 |
-
"Web Application Icons"
|
1949 |
-
]
|
1950 |
-
},
|
1951 |
-
{
|
1952 |
-
"name": "Clipboard",
|
1953 |
-
"id": "clipboard",
|
1954 |
-
"unicode": "f0ea",
|
1955 |
-
"created": 2,
|
1956 |
-
"aliases": [
|
1957 |
-
"paste"
|
1958 |
-
],
|
1959 |
-
"categories": [
|
1960 |
-
"Text Editor Icons"
|
1961 |
-
]
|
1962 |
-
},
|
1963 |
-
{
|
1964 |
-
"name": "Lightbulb Outlined",
|
1965 |
-
"id": "lightbulb-o",
|
1966 |
-
"unicode": "f0eb",
|
1967 |
-
"created": 3,
|
1968 |
-
"categories": [
|
1969 |
-
"Web Application Icons"
|
1970 |
-
]
|
1971 |
-
},
|
1972 |
-
{
|
1973 |
-
"name": "Exchange",
|
1974 |
-
"id": "exchange",
|
1975 |
-
"unicode": "f0ec",
|
1976 |
-
"created": 3,
|
1977 |
-
"categories": [
|
1978 |
-
"Web Application Icons"
|
1979 |
-
]
|
1980 |
-
},
|
1981 |
-
{
|
1982 |
-
"name": "Cloud Download",
|
1983 |
-
"id": "cloud-download",
|
1984 |
-
"unicode": "f0ed",
|
1985 |
-
"created": 3,
|
1986 |
-
"categories": [
|
1987 |
-
"Web Application Icons"
|
1988 |
-
]
|
1989 |
-
},
|
1990 |
-
{
|
1991 |
-
"name": "Cloud Upload",
|
1992 |
-
"id": "cloud-upload",
|
1993 |
-
"unicode": "f0ee",
|
1994 |
-
"created": 3,
|
1995 |
-
"categories": [
|
1996 |
-
"Web Application Icons"
|
1997 |
-
]
|
1998 |
-
},
|
1999 |
-
{
|
2000 |
-
"name": "user-md",
|
2001 |
-
"id": "user-md",
|
2002 |
-
"unicode": "f0f0",
|
2003 |
-
"created": 2,
|
2004 |
-
"categories": [
|
2005 |
-
"Medical Icons"
|
2006 |
-
]
|
2007 |
-
},
|
2008 |
-
{
|
2009 |
-
"name": "Stethoscope",
|
2010 |
-
"id": "stethoscope",
|
2011 |
-
"unicode": "f0f1",
|
2012 |
-
"created": 3,
|
2013 |
-
"categories": [
|
2014 |
-
"Medical Icons"
|
2015 |
-
]
|
2016 |
-
},
|
2017 |
-
{
|
2018 |
-
"name": "Suitcase",
|
2019 |
-
"id": "suitcase",
|
2020 |
-
"unicode": "f0f2",
|
2021 |
-
"created": 3,
|
2022 |
-
"categories": [
|
2023 |
-
"Web Application Icons"
|
2024 |
-
]
|
2025 |
-
},
|
2026 |
-
{
|
2027 |
-
"name": "Bell Outlined",
|
2028 |
-
"id": "bell-o",
|
2029 |
-
"unicode": "f0a2",
|
2030 |
-
"created": 3,
|
2031 |
-
"categories": [
|
2032 |
-
"Web Application Icons"
|
2033 |
-
]
|
2034 |
-
},
|
2035 |
-
{
|
2036 |
-
"name": "Coffee",
|
2037 |
-
"id": "coffee",
|
2038 |
-
"unicode": "f0f4",
|
2039 |
-
"created": 3,
|
2040 |
-
"categories": [
|
2041 |
-
"Web Application Icons"
|
2042 |
-
]
|
2043 |
-
},
|
2044 |
-
{
|
2045 |
-
"name": "Cutlery",
|
2046 |
-
"id": "cutlery",
|
2047 |
-
"unicode": "f0f5",
|
2048 |
-
"created": 3,
|
2049 |
-
"categories": [
|
2050 |
-
"Web Application Icons"
|
2051 |
-
]
|
2052 |
-
},
|
2053 |
-
{
|
2054 |
-
"name": "File Text Outlined",
|
2055 |
-
"id": "file-text-o",
|
2056 |
-
"unicode": "f0f6",
|
2057 |
-
"created": 3,
|
2058 |
-
"categories": [
|
2059 |
-
"Text Editor Icons",
|
2060 |
-
"File Type Icons"
|
2061 |
-
]
|
2062 |
-
},
|
2063 |
-
{
|
2064 |
-
"name": "Building Outlined",
|
2065 |
-
"id": "building-o",
|
2066 |
-
"unicode": "f0f7",
|
2067 |
-
"created": 3,
|
2068 |
-
"categories": [
|
2069 |
-
"Web Application Icons"
|
2070 |
-
]
|
2071 |
-
},
|
2072 |
-
{
|
2073 |
-
"name": "hospital Outlined",
|
2074 |
-
"id": "hospital-o",
|
2075 |
-
"unicode": "f0f8",
|
2076 |
-
"created": 3,
|
2077 |
-
"categories": [
|
2078 |
-
"Medical Icons"
|
2079 |
-
]
|
2080 |
-
},
|
2081 |
-
{
|
2082 |
-
"name": "ambulance",
|
2083 |
-
"id": "ambulance",
|
2084 |
-
"unicode": "f0f9",
|
2085 |
-
"created": 3,
|
2086 |
-
"categories": [
|
2087 |
-
"Medical Icons"
|
2088 |
-
]
|
2089 |
-
},
|
2090 |
-
{
|
2091 |
-
"name": "medkit",
|
2092 |
-
"id": "medkit",
|
2093 |
-
"unicode": "f0fa",
|
2094 |
-
"created": 3,
|
2095 |
-
"categories": [
|
2096 |
-
"Medical Icons"
|
2097 |
-
]
|
2098 |
-
},
|
2099 |
-
{
|
2100 |
-
"name": "fighter-jet",
|
2101 |
-
"id": "fighter-jet",
|
2102 |
-
"unicode": "f0fb",
|
2103 |
-
"created": 3,
|
2104 |
-
"categories": [
|
2105 |
-
"Web Application Icons"
|
2106 |
-
]
|
2107 |
-
},
|
2108 |
-
{
|
2109 |
-
"name": "beer",
|
2110 |
-
"id": "beer",
|
2111 |
-
"unicode": "f0fc",
|
2112 |
-
"created": 3,
|
2113 |
-
"categories": [
|
2114 |
-
"Web Application Icons"
|
2115 |
-
]
|
2116 |
-
},
|
2117 |
-
{
|
2118 |
-
"name": "H Square",
|
2119 |
-
"id": "h-square",
|
2120 |
-
"unicode": "f0fd",
|
2121 |
-
"created": 3,
|
2122 |
-
"categories": [
|
2123 |
-
"Medical Icons"
|
2124 |
-
]
|
2125 |
-
},
|
2126 |
-
{
|
2127 |
-
"name": "Plus Square",
|
2128 |
-
"id": "plus-square",
|
2129 |
-
"unicode": "f0fe",
|
2130 |
-
"created": 3,
|
2131 |
-
"categories": [
|
2132 |
-
"Medical Icons",
|
2133 |
-
"Web Application Icons",
|
2134 |
-
"Form Control Icons"
|
2135 |
-
]
|
2136 |
-
},
|
2137 |
-
{
|
2138 |
-
"name": "Angle Double Left",
|
2139 |
-
"id": "angle-double-left",
|
2140 |
-
"unicode": "f100",
|
2141 |
-
"created": 3,
|
2142 |
-
"categories": [
|
2143 |
-
"Directional Icons"
|
2144 |
-
]
|
2145 |
-
},
|
2146 |
-
{
|
2147 |
-
"name": "Angle Double Right",
|
2148 |
-
"id": "angle-double-right",
|
2149 |
-
"unicode": "f101",
|
2150 |
-
"created": 3,
|
2151 |
-
"categories": [
|
2152 |
-
"Directional Icons"
|
2153 |
-
]
|
2154 |
-
},
|
2155 |
-
{
|
2156 |
-
"name": "Angle Double Up",
|
2157 |
-
"id": "angle-double-up",
|
2158 |
-
"unicode": "f102",
|
2159 |
-
"created": 3,
|
2160 |
-
"categories": [
|
2161 |
-
"Directional Icons"
|
2162 |
-
]
|
2163 |
-
},
|
2164 |
-
{
|
2165 |
-
"name": "Angle Double Down",
|
2166 |
-
"id": "angle-double-down",
|
2167 |
-
"unicode": "f103",
|
2168 |
-
"created": 3,
|
2169 |
-
"categories": [
|
2170 |
-
"Directional Icons"
|
2171 |
-
]
|
2172 |
-
},
|
2173 |
-
{
|
2174 |
-
"name": "angle-left",
|
2175 |
-
"id": "angle-left",
|
2176 |
-
"unicode": "f104",
|
2177 |
-
"created": 3,
|
2178 |
-
"categories": [
|
2179 |
-
"Directional Icons"
|
2180 |
-
]
|
2181 |
-
},
|
2182 |
-
{
|
2183 |
-
"name": "angle-right",
|
2184 |
-
"id": "angle-right",
|
2185 |
-
"unicode": "f105",
|
2186 |
-
"created": 3,
|
2187 |
-
"categories": [
|
2188 |
-
"Directional Icons"
|
2189 |
-
]
|
2190 |
-
},
|
2191 |
-
{
|
2192 |
-
"name": "angle-up",
|
2193 |
-
"id": "angle-up",
|
2194 |
-
"unicode": "f106",
|
2195 |
-
"created": 3,
|
2196 |
-
"categories": [
|
2197 |
-
"Directional Icons"
|
2198 |
-
]
|
2199 |
-
},
|
2200 |
-
{
|
2201 |
-
"name": "angle-down",
|
2202 |
-
"id": "angle-down",
|
2203 |
-
"unicode": "f107",
|
2204 |
-
"created": 3,
|
2205 |
-
"categories": [
|
2206 |
-
"Directional Icons"
|
2207 |
-
]
|
2208 |
-
},
|
2209 |
-
{
|
2210 |
-
"name": "Desktop",
|
2211 |
-
"id": "desktop",
|
2212 |
-
"unicode": "f108",
|
2213 |
-
"created": 3,
|
2214 |
-
"categories": [
|
2215 |
-
"Web Application Icons"
|
2216 |
-
]
|
2217 |
-
},
|
2218 |
-
{
|
2219 |
-
"name": "Laptop",
|
2220 |
-
"id": "laptop",
|
2221 |
-
"unicode": "f109",
|
2222 |
-
"created": 3,
|
2223 |
-
"categories": [
|
2224 |
-
"Web Application Icons"
|
2225 |
-
]
|
2226 |
-
},
|
2227 |
-
{
|
2228 |
-
"name": "tablet",
|
2229 |
-
"id": "tablet",
|
2230 |
-
"unicode": "f10a",
|
2231 |
-
"created": 3,
|
2232 |
-
"categories": [
|
2233 |
-
"Web Application Icons"
|
2234 |
-
]
|
2235 |
-
},
|
2236 |
-
{
|
2237 |
-
"name": "Mobile Phone",
|
2238 |
-
"id": "mobile",
|
2239 |
-
"unicode": "f10b",
|
2240 |
-
"created": 3,
|
2241 |
-
"aliases": [
|
2242 |
-
"mobile-phone"
|
2243 |
-
],
|
2244 |
-
"categories": [
|
2245 |
-
"Web Application Icons"
|
2246 |
-
]
|
2247 |
-
},
|
2248 |
-
{
|
2249 |
-
"name": "Circle Outlined",
|
2250 |
-
"id": "circle-o",
|
2251 |
-
"unicode": "f10c",
|
2252 |
-
"created": 3,
|
2253 |
-
"categories": [
|
2254 |
-
"Web Application Icons",
|
2255 |
-
"Form Control Icons"
|
2256 |
-
]
|
2257 |
-
},
|
2258 |
-
{
|
2259 |
-
"name": "quote-left",
|
2260 |
-
"id": "quote-left",
|
2261 |
-
"unicode": "f10d",
|
2262 |
-
"created": 3,
|
2263 |
-
"categories": [
|
2264 |
-
"Web Application Icons"
|
2265 |
-
]
|
2266 |
-
},
|
2267 |
-
{
|
2268 |
-
"name": "quote-right",
|
2269 |
-
"id": "quote-right",
|
2270 |
-
"unicode": "f10e",
|
2271 |
-
"created": 3,
|
2272 |
-
"categories": [
|
2273 |
-
"Web Application Icons"
|
2274 |
-
]
|
2275 |
-
},
|
2276 |
-
{
|
2277 |
-
"name": "Spinner",
|
2278 |
-
"id": "spinner",
|
2279 |
-
"unicode": "f110",
|
2280 |
-
"created": 3,
|
2281 |
-
"categories": [
|
2282 |
-
"Web Application Icons",
|
2283 |
-
"Spinner Icons"
|
2284 |
-
]
|
2285 |
-
},
|
2286 |
-
{
|
2287 |
-
"name": "Circle",
|
2288 |
-
"id": "circle",
|
2289 |
-
"unicode": "f111",
|
2290 |
-
"created": 3,
|
2291 |
-
"categories": [
|
2292 |
-
"Web Application Icons",
|
2293 |
-
"Form Control Icons"
|
2294 |
-
]
|
2295 |
-
},
|
2296 |
-
{
|
2297 |
-
"name": "Reply",
|
2298 |
-
"id": "reply",
|
2299 |
-
"unicode": "f112",
|
2300 |
-
"created": 3,
|
2301 |
-
"aliases": [
|
2302 |
-
"mail-reply"
|
2303 |
-
],
|
2304 |
-
"categories": [
|
2305 |
-
"Web Application Icons"
|
2306 |
-
]
|
2307 |
-
},
|
2308 |
-
{
|
2309 |
-
"name": "GitHub Alt",
|
2310 |
-
"id": "github-alt",
|
2311 |
-
"unicode": "f113",
|
2312 |
-
"created": 3,
|
2313 |
-
"categories": [
|
2314 |
-
"Brand Icons"
|
2315 |
-
]
|
2316 |
-
},
|
2317 |
-
{
|
2318 |
-
"name": "Folder Outlined",
|
2319 |
-
"id": "folder-o",
|
2320 |
-
"unicode": "f114",
|
2321 |
-
"created": 3,
|
2322 |
-
"categories": [
|
2323 |
-
"Web Application Icons"
|
2324 |
-
]
|
2325 |
-
},
|
2326 |
-
{
|
2327 |
-
"name": "Folder Open Outlined",
|
2328 |
-
"id": "folder-open-o",
|
2329 |
-
"unicode": "f115",
|
2330 |
-
"created": 3,
|
2331 |
-
"categories": [
|
2332 |
-
"Web Application Icons"
|
2333 |
-
]
|
2334 |
-
},
|
2335 |
-
{
|
2336 |
-
"name": "Smile Outlined",
|
2337 |
-
"id": "smile-o",
|
2338 |
-
"unicode": "f118",
|
2339 |
-
"created": 3.1,
|
2340 |
-
"categories": [
|
2341 |
-
"Web Application Icons"
|
2342 |
-
]
|
2343 |
-
},
|
2344 |
-
{
|
2345 |
-
"name": "Frown Outlined",
|
2346 |
-
"id": "frown-o",
|
2347 |
-
"unicode": "f119",
|
2348 |
-
"created": 3.1,
|
2349 |
-
"categories": [
|
2350 |
-
"Web Application Icons"
|
2351 |
-
]
|
2352 |
-
},
|
2353 |
-
{
|
2354 |
-
"name": "Meh Outlined",
|
2355 |
-
"id": "meh-o",
|
2356 |
-
"unicode": "f11a",
|
2357 |
-
"created": 3.1,
|
2358 |
-
"categories": [
|
2359 |
-
"Web Application Icons"
|
2360 |
-
]
|
2361 |
-
},
|
2362 |
-
{
|
2363 |
-
"name": "Gamepad",
|
2364 |
-
"id": "gamepad",
|
2365 |
-
"unicode": "f11b",
|
2366 |
-
"created": 3.1,
|
2367 |
-
"categories": [
|
2368 |
-
"Web Application Icons"
|
2369 |
-
]
|
2370 |
-
},
|
2371 |
-
{
|
2372 |
-
"name": "Keyboard Outlined",
|
2373 |
-
"id": "keyboard-o",
|
2374 |
-
"unicode": "f11c",
|
2375 |
-
"created": 3.1,
|
2376 |
-
"categories": [
|
2377 |
-
"Web Application Icons"
|
2378 |
-
]
|
2379 |
-
},
|
2380 |
-
{
|
2381 |
-
"name": "Flag Outlined",
|
2382 |
-
"id": "flag-o",
|
2383 |
-
"unicode": "f11d",
|
2384 |
-
"created": 3.1,
|
2385 |
-
"categories": [
|
2386 |
-
"Web Application Icons"
|
2387 |
-
]
|
2388 |
-
},
|
2389 |
-
{
|
2390 |
-
"name": "flag-checkered",
|
2391 |
-
"id": "flag-checkered",
|
2392 |
-
"unicode": "f11e",
|
2393 |
-
"created": 3.1,
|
2394 |
-
"categories": [
|
2395 |
-
"Web Application Icons"
|
2396 |
-
]
|
2397 |
-
},
|
2398 |
-
{
|
2399 |
-
"name": "Terminal",
|
2400 |
-
"id": "terminal",
|
2401 |
-
"unicode": "f120",
|
2402 |
-
"created": 3.1,
|
2403 |
-
"categories": [
|
2404 |
-
"Web Application Icons"
|
2405 |
-
]
|
2406 |
-
},
|
2407 |
-
{
|
2408 |
-
"name": "Code",
|
2409 |
-
"id": "code",
|
2410 |
-
"unicode": "f121",
|
2411 |
-
"created": 3.1,
|
2412 |
-
"categories": [
|
2413 |
-
"Web Application Icons"
|
2414 |
-
]
|
2415 |
-
},
|
2416 |
-
{
|
2417 |
-
"name": "reply-all",
|
2418 |
-
"id": "reply-all",
|
2419 |
-
"unicode": "f122",
|
2420 |
-
"created": 3.1,
|
2421 |
-
"aliases": [
|
2422 |
-
"mail-reply-all"
|
2423 |
-
],
|
2424 |
-
"categories": [
|
2425 |
-
"Web Application Icons"
|
2426 |
-
]
|
2427 |
-
},
|
2428 |
-
{
|
2429 |
-
"name": "Star Half Outlined",
|
2430 |
-
"id": "star-half-o",
|
2431 |
-
"unicode": "f123",
|
2432 |
-
"created": 3.1,
|
2433 |
-
"aliases": [
|
2434 |
-
"star-half-empty",
|
2435 |
-
"star-half-full"
|
2436 |
-
],
|
2437 |
-
"categories": [
|
2438 |
-
"Web Application Icons"
|
2439 |
-
]
|
2440 |
-
},
|
2441 |
-
{
|
2442 |
-
"name": "location-arrow",
|
2443 |
-
"id": "location-arrow",
|
2444 |
-
"unicode": "f124",
|
2445 |
-
"created": 3.1,
|
2446 |
-
"categories": [
|
2447 |
-
"Web Application Icons"
|
2448 |
-
]
|
2449 |
-
},
|
2450 |
-
{
|
2451 |
-
"name": "crop",
|
2452 |
-
"id": "crop",
|
2453 |
-
"unicode": "f125",
|
2454 |
-
"created": 3.1,
|
2455 |
-
"categories": [
|
2456 |
-
"Web Application Icons"
|
2457 |
-
]
|
2458 |
-
},
|
2459 |
-
{
|
2460 |
-
"name": "code-fork",
|
2461 |
-
"id": "code-fork",
|
2462 |
-
"unicode": "f126",
|
2463 |
-
"created": 3.1,
|
2464 |
-
"categories": [
|
2465 |
-
"Web Application Icons"
|
2466 |
-
]
|
2467 |
-
},
|
2468 |
-
{
|
2469 |
-
"name": "Chain Broken",
|
2470 |
-
"id": "chain-broken",
|
2471 |
-
"unicode": "f127",
|
2472 |
-
"created": 3.1,
|
2473 |
-
"aliases": [
|
2474 |
-
"unlink"
|
2475 |
-
],
|
2476 |
-
"categories": [
|
2477 |
-
"Text Editor Icons"
|
2478 |
-
]
|
2479 |
-
},
|
2480 |
-
{
|
2481 |
-
"name": "Question",
|
2482 |
-
"id": "question",
|
2483 |
-
"unicode": "f128",
|
2484 |
-
"created": 3.1,
|
2485 |
-
"categories": [
|
2486 |
-
"Web Application Icons"
|
2487 |
-
]
|
2488 |
-
},
|
2489 |
-
{
|
2490 |
-
"name": "Info",
|
2491 |
-
"id": "info",
|
2492 |
-
"unicode": "f129",
|
2493 |
-
"created": 3.1,
|
2494 |
-
"categories": [
|
2495 |
-
"Web Application Icons"
|
2496 |
-
]
|
2497 |
-
},
|
2498 |
-
{
|
2499 |
-
"name": "exclamation",
|
2500 |
-
"id": "exclamation",
|
2501 |
-
"unicode": "f12a",
|
2502 |
-
"created": 3.1,
|
2503 |
-
"categories": [
|
2504 |
-
"Web Application Icons"
|
2505 |
-
]
|
2506 |
-
},
|
2507 |
-
{
|
2508 |
-
"name": "superscript",
|
2509 |
-
"id": "superscript",
|
2510 |
-
"unicode": "f12b",
|
2511 |
-
"created": 3.1,
|
2512 |
-
"categories": [
|
2513 |
-
"Text Editor Icons"
|
2514 |
-
]
|
2515 |
-
},
|
2516 |
-
{
|
2517 |
-
"name": "subscript",
|
2518 |
-
"id": "subscript",
|
2519 |
-
"unicode": "f12c",
|
2520 |
-
"created": 3.1,
|
2521 |
-
"categories": [
|
2522 |
-
"Text Editor Icons"
|
2523 |
-
]
|
2524 |
-
},
|
2525 |
-
{
|
2526 |
-
"name": "eraser",
|
2527 |
-
"id": "eraser",
|
2528 |
-
"unicode": "f12d",
|
2529 |
-
"created": 3.1,
|
2530 |
-
"categories": [
|
2531 |
-
"Text Editor Icons",
|
2532 |
-
"Web Application Icons"
|
2533 |
-
]
|
2534 |
-
},
|
2535 |
-
{
|
2536 |
-
"name": "Puzzle Piece",
|
2537 |
-
"id": "puzzle-piece",
|
2538 |
-
"unicode": "f12e",
|
2539 |
-
"created": 3.1,
|
2540 |
-
"categories": [
|
2541 |
-
"Web Application Icons"
|
2542 |
-
]
|
2543 |
-
},
|
2544 |
-
{
|
2545 |
-
"name": "microphone",
|
2546 |
-
"id": "microphone",
|
2547 |
-
"unicode": "f130",
|
2548 |
-
"created": 3.1,
|
2549 |
-
"categories": [
|
2550 |
-
"Web Application Icons"
|
2551 |
-
]
|
2552 |
-
},
|
2553 |
-
{
|
2554 |
-
"name": "Microphone Slash",
|
2555 |
-
"id": "microphone-slash",
|
2556 |
-
"unicode": "f131",
|
2557 |
-
"created": 3.1,
|
2558 |
-
"categories": [
|
2559 |
-
"Web Application Icons"
|
2560 |
-
]
|
2561 |
-
},
|
2562 |
-
{
|
2563 |
-
"name": "shield",
|
2564 |
-
"id": "shield",
|
2565 |
-
"unicode": "f132",
|
2566 |
-
"created": 3.1,
|
2567 |
-
"categories": [
|
2568 |
-
"Web Application Icons"
|
2569 |
-
]
|
2570 |
-
},
|
2571 |
-
{
|
2572 |
-
"name": "calendar-o",
|
2573 |
-
"id": "calendar-o",
|
2574 |
-
"unicode": "f133",
|
2575 |
-
"created": 3.1,
|
2576 |
-
"categories": [
|
2577 |
-
"Web Application Icons"
|
2578 |
-
]
|
2579 |
-
},
|
2580 |
-
{
|
2581 |
-
"name": "fire-extinguisher",
|
2582 |
-
"id": "fire-extinguisher",
|
2583 |
-
"unicode": "f134",
|
2584 |
-
"created": 3.1,
|
2585 |
-
"categories": [
|
2586 |
-
"Web Application Icons"
|
2587 |
-
]
|
2588 |
-
},
|
2589 |
-
{
|
2590 |
-
"name": "rocket",
|
2591 |
-
"id": "rocket",
|
2592 |
-
"unicode": "f135",
|
2593 |
-
"created": 3.1,
|
2594 |
-
"categories": [
|
2595 |
-
"Web Application Icons"
|
2596 |
-
]
|
2597 |
-
},
|
2598 |
-
{
|
2599 |
-
"name": "MaxCDN",
|
2600 |
-
"id": "maxcdn",
|
2601 |
-
"unicode": "f136",
|
2602 |
-
"created": 3.1,
|
2603 |
-
"categories": [
|
2604 |
-
"Brand Icons"
|
2605 |
-
]
|
2606 |
-
},
|
2607 |
-
{
|
2608 |
-
"name": "Chevron Circle Left",
|
2609 |
-
"id": "chevron-circle-left",
|
2610 |
-
"unicode": "f137",
|
2611 |
-
"created": 3.1,
|
2612 |
-
"categories": [
|
2613 |
-
"Directional Icons"
|
2614 |
-
]
|
2615 |
-
},
|
2616 |
-
{
|
2617 |
-
"name": "Chevron Circle Right",
|
2618 |
-
"id": "chevron-circle-right",
|
2619 |
-
"unicode": "f138",
|
2620 |
-
"created": 3.1,
|
2621 |
-
"categories": [
|
2622 |
-
"Directional Icons"
|
2623 |
-
]
|
2624 |
-
},
|
2625 |
-
{
|
2626 |
-
"name": "Chevron Circle Up",
|
2627 |
-
"id": "chevron-circle-up",
|
2628 |
-
"unicode": "f139",
|
2629 |
-
"created": 3.1,
|
2630 |
-
"categories": [
|
2631 |
-
"Directional Icons"
|
2632 |
-
]
|
2633 |
-
},
|
2634 |
-
{
|
2635 |
-
"name": "Chevron Circle Down",
|
2636 |
-
"id": "chevron-circle-down",
|
2637 |
-
"unicode": "f13a",
|
2638 |
-
"created": 3.1,
|
2639 |
-
"categories": [
|
2640 |
-
"Directional Icons"
|
2641 |
-
]
|
2642 |
-
},
|
2643 |
-
{
|
2644 |
-
"name": "HTML 5 Logo",
|
2645 |
-
"id": "html5",
|
2646 |
-
"unicode": "f13b",
|
2647 |
-
"created": 3.1,
|
2648 |
-
"categories": [
|
2649 |
-
"Brand Icons"
|
2650 |
-
]
|
2651 |
-
},
|
2652 |
-
{
|
2653 |
-
"name": "CSS 3 Logo",
|
2654 |
-
"id": "css3",
|
2655 |
-
"unicode": "f13c",
|
2656 |
-
"created": 3.1,
|
2657 |
-
"categories": [
|
2658 |
-
"Brand Icons"
|
2659 |
-
]
|
2660 |
-
},
|
2661 |
-
{
|
2662 |
-
"name": "Anchor",
|
2663 |
-
"id": "anchor",
|
2664 |
-
"unicode": "f13d",
|
2665 |
-
"created": 3.1,
|
2666 |
-
"categories": [
|
2667 |
-
"Web Application Icons"
|
2668 |
-
]
|
2669 |
-
},
|
2670 |
-
{
|
2671 |
-
"name": "Unlock Alt",
|
2672 |
-
"id": "unlock-alt",
|
2673 |
-
"unicode": "f13e",
|
2674 |
-
"created": 3.1,
|
2675 |
-
"categories": [
|
2676 |
-
"Web Application Icons"
|
2677 |
-
]
|
2678 |
-
},
|
2679 |
-
{
|
2680 |
-
"name": "Bullseye",
|
2681 |
-
"id": "bullseye",
|
2682 |
-
"unicode": "f140",
|
2683 |
-
"created": 3.1,
|
2684 |
-
"categories": [
|
2685 |
-
"Web Application Icons"
|
2686 |
-
]
|
2687 |
-
},
|
2688 |
-
{
|
2689 |
-
"name": "Ellipsis Horizontal",
|
2690 |
-
"id": "ellipsis-h",
|
2691 |
-
"unicode": "f141",
|
2692 |
-
"created": 3.1,
|
2693 |
-
"categories": [
|
2694 |
-
"Web Application Icons"
|
2695 |
-
]
|
2696 |
-
},
|
2697 |
-
{
|
2698 |
-
"name": "Ellipsis Vertical",
|
2699 |
-
"id": "ellipsis-v",
|
2700 |
-
"unicode": "f142",
|
2701 |
-
"created": 3.1,
|
2702 |
-
"categories": [
|
2703 |
-
"Web Application Icons"
|
2704 |
-
]
|
2705 |
-
},
|
2706 |
-
{
|
2707 |
-
"name": "RSS Square",
|
2708 |
-
"id": "rss-square",
|
2709 |
-
"unicode": "f143",
|
2710 |
-
"created": 3.1,
|
2711 |
-
"categories": [
|
2712 |
-
"Web Application Icons"
|
2713 |
-
]
|
2714 |
-
},
|
2715 |
-
{
|
2716 |
-
"name": "Play Circle",
|
2717 |
-
"id": "play-circle",
|
2718 |
-
"unicode": "f144",
|
2719 |
-
"created": 3.1,
|
2720 |
-
"categories": [
|
2721 |
-
"Video Player Icons"
|
2722 |
-
]
|
2723 |
-
},
|
2724 |
-
{
|
2725 |
-
"name": "Ticket",
|
2726 |
-
"id": "ticket",
|
2727 |
-
"unicode": "f145",
|
2728 |
-
"created": 3.1,
|
2729 |
-
"categories": [
|
2730 |
-
"Web Application Icons"
|
2731 |
-
]
|
2732 |
-
},
|
2733 |
-
{
|
2734 |
-
"name": "Minus Square",
|
2735 |
-
"id": "minus-square",
|
2736 |
-
"unicode": "f146",
|
2737 |
-
"created": 3.1,
|
2738 |
-
"categories": [
|
2739 |
-
"Web Application Icons",
|
2740 |
-
"Form Control Icons"
|
2741 |
-
]
|
2742 |
-
},
|
2743 |
-
{
|
2744 |
-
"name": "Minus Square Outlined",
|
2745 |
-
"id": "minus-square-o",
|
2746 |
-
"unicode": "f147",
|
2747 |
-
"created": 3.1,
|
2748 |
-
"categories": [
|
2749 |
-
"Web Application Icons",
|
2750 |
-
"Form Control Icons"
|
2751 |
-
]
|
2752 |
-
},
|
2753 |
-
{
|
2754 |
-
"name": "Level Up",
|
2755 |
-
"id": "level-up",
|
2756 |
-
"unicode": "f148",
|
2757 |
-
"created": 3.1,
|
2758 |
-
"categories": [
|
2759 |
-
"Web Application Icons"
|
2760 |
-
]
|
2761 |
-
},
|
2762 |
-
{
|
2763 |
-
"name": "Level Down",
|
2764 |
-
"id": "level-down",
|
2765 |
-
"unicode": "f149",
|
2766 |
-
"created": 3.1,
|
2767 |
-
"categories": [
|
2768 |
-
"Web Application Icons"
|
2769 |
-
]
|
2770 |
-
},
|
2771 |
-
{
|
2772 |
-
"name": "Check Square",
|
2773 |
-
"id": "check-square",
|
2774 |
-
"unicode": "f14a",
|
2775 |
-
"created": 3.1,
|
2776 |
-
"categories": [
|
2777 |
-
"Web Application Icons",
|
2778 |
-
"Form Control Icons"
|
2779 |
-
]
|
2780 |
-
},
|
2781 |
-
{
|
2782 |
-
"name": "Pencil Square",
|
2783 |
-
"id": "pencil-square",
|
2784 |
-
"unicode": "f14b",
|
2785 |
-
"created": 3.1,
|
2786 |
-
"categories": [
|
2787 |
-
"Web Application Icons"
|
2788 |
-
]
|
2789 |
-
},
|
2790 |
-
{
|
2791 |
-
"name": "External Link Square",
|
2792 |
-
"id": "external-link-square",
|
2793 |
-
"unicode": "f14c",
|
2794 |
-
"created": 3.1,
|
2795 |
-
"categories": [
|
2796 |
-
"Web Application Icons"
|
2797 |
-
]
|
2798 |
-
},
|
2799 |
-
{
|
2800 |
-
"name": "Share Square",
|
2801 |
-
"id": "share-square",
|
2802 |
-
"unicode": "f14d",
|
2803 |
-
"created": 3.1,
|
2804 |
-
"categories": [
|
2805 |
-
"Web Application Icons"
|
2806 |
-
]
|
2807 |
-
},
|
2808 |
-
{
|
2809 |
-
"name": "Compass",
|
2810 |
-
"id": "compass",
|
2811 |
-
"unicode": "f14e",
|
2812 |
-
"created": 3.2,
|
2813 |
-
"categories": [
|
2814 |
-
"Web Application Icons"
|
2815 |
-
]
|
2816 |
-
},
|
2817 |
-
{
|
2818 |
-
"name": "Caret Square Outlined Down",
|
2819 |
-
"id": "caret-square-o-down",
|
2820 |
-
"unicode": "f150",
|
2821 |
-
"created": 3.2,
|
2822 |
-
"aliases": [
|
2823 |
-
"toggle-down"
|
2824 |
-
],
|
2825 |
-
"categories": [
|
2826 |
-
"Web Application Icons",
|
2827 |
-
"Directional Icons"
|
2828 |
-
]
|
2829 |
-
},
|
2830 |
-
{
|
2831 |
-
"name": "Caret Square Outlined Up",
|
2832 |
-
"id": "caret-square-o-up",
|
2833 |
-
"unicode": "f151",
|
2834 |
-
"created": 3.2,
|
2835 |
-
"aliases": [
|
2836 |
-
"toggle-up"
|
2837 |
-
],
|
2838 |
-
"categories": [
|
2839 |
-
"Web Application Icons",
|
2840 |
-
"Directional Icons"
|
2841 |
-
]
|
2842 |
-
},
|
2843 |
-
{
|
2844 |
-
"name": "Caret Square Outlined Right",
|
2845 |
-
"id": "caret-square-o-right",
|
2846 |
-
"unicode": "f152",
|
2847 |
-
"created": 3.2,
|
2848 |
-
"aliases": [
|
2849 |
-
"toggle-right"
|
2850 |
-
],
|
2851 |
-
"categories": [
|
2852 |
-
"Web Application Icons",
|
2853 |
-
"Directional Icons"
|
2854 |
-
]
|
2855 |
-
},
|
2856 |
-
{
|
2857 |
-
"name": "Euro (EUR)",
|
2858 |
-
"id": "eur",
|
2859 |
-
"unicode": "f153",
|
2860 |
-
"created": 3.2,
|
2861 |
-
"aliases": [
|
2862 |
-
"euro"
|
2863 |
-
],
|
2864 |
-
"categories": [
|
2865 |
-
"Currency Icons"
|
2866 |
-
]
|
2867 |
-
},
|
2868 |
-
{
|
2869 |
-
"name": "GBP",
|
2870 |
-
"id": "gbp",
|
2871 |
-
"unicode": "f154",
|
2872 |
-
"created": 3.2,
|
2873 |
-
"categories": [
|
2874 |
-
"Currency Icons"
|
2875 |
-
]
|
2876 |
-
},
|
2877 |
-
{
|
2878 |
-
"name": "US Dollar",
|
2879 |
-
"id": "usd",
|
2880 |
-
"unicode": "f155",
|
2881 |
-
"created": 3.2,
|
2882 |
-
"aliases": [
|
2883 |
-
"dollar"
|
2884 |
-
],
|
2885 |
-
"categories": [
|
2886 |
-
"Currency Icons"
|
2887 |
-
]
|
2888 |
-
},
|
2889 |
-
{
|
2890 |
-
"name": "Indian Rupee (INR)",
|
2891 |
-
"id": "inr",
|
2892 |
-
"unicode": "f156",
|
2893 |
-
"created": 3.2,
|
2894 |
-
"aliases": [
|
2895 |
-
"rupee"
|
2896 |
-
],
|
2897 |
-
"categories": [
|
2898 |
-
"Currency Icons"
|
2899 |
-
]
|
2900 |
-
},
|
2901 |
-
{
|
2902 |
-
"name": "Japanese Yen (JPY)",
|
2903 |
-
"id": "jpy",
|
2904 |
-
"unicode": "f157",
|
2905 |
-
"created": 3.2,
|
2906 |
-
"aliases": [
|
2907 |
-
"cny",
|
2908 |
-
"rmb",
|
2909 |
-
"yen"
|
2910 |
-
],
|
2911 |
-
"categories": [
|
2912 |
-
"Currency Icons"
|
2913 |
-
]
|
2914 |
-
},
|
2915 |
-
{
|
2916 |
-
"name": "Russian Ruble (RUB)",
|
2917 |
-
"id": "rub",
|
2918 |
-
"unicode": "f158",
|
2919 |
-
"created": 4,
|
2920 |
-
"aliases": [
|
2921 |
-
"ruble",
|
2922 |
-
"rouble"
|
2923 |
-
],
|
2924 |
-
"categories": [
|
2925 |
-
"Currency Icons"
|
2926 |
-
]
|
2927 |
-
},
|
2928 |
-
{
|
2929 |
-
"name": "Korean Won (KRW)",
|
2930 |
-
"id": "krw",
|
2931 |
-
"unicode": "f159",
|
2932 |
-
"created": 3.2,
|
2933 |
-
"aliases": [
|
2934 |
-
"won"
|
2935 |
-
],
|
2936 |
-
"categories": [
|
2937 |
-
"Currency Icons"
|
2938 |
-
]
|
2939 |
-
},
|
2940 |
-
{
|
2941 |
-
"name": "Bitcoin (BTC)",
|
2942 |
-
"id": "btc",
|
2943 |
-
"unicode": "f15a",
|
2944 |
-
"created": 3.2,
|
2945 |
-
"aliases": [
|
2946 |
-
"bitcoin"
|
2947 |
-
],
|
2948 |
-
"categories": [
|
2949 |
-
"Currency Icons",
|
2950 |
-
"Brand Icons"
|
2951 |
-
]
|
2952 |
-
},
|
2953 |
-
{
|
2954 |
-
"name": "File",
|
2955 |
-
"id": "file",
|
2956 |
-
"unicode": "f15b",
|
2957 |
-
"created": 3.2,
|
2958 |
-
"categories": [
|
2959 |
-
"Text Editor Icons",
|
2960 |
-
"File Type Icons"
|
2961 |
-
]
|
2962 |
-
},
|
2963 |
-
{
|
2964 |
-
"name": "File Text",
|
2965 |
-
"id": "file-text",
|
2966 |
-
"unicode": "f15c",
|
2967 |
-
"created": 3.2,
|
2968 |
-
"categories": [
|
2969 |
-
"Text Editor Icons",
|
2970 |
-
"File Type Icons"
|
2971 |
-
]
|
2972 |
-
},
|
2973 |
-
{
|
2974 |
-
"name": "Sort Alpha Ascending",
|
2975 |
-
"id": "sort-alpha-asc",
|
2976 |
-
"unicode": "f15d",
|
2977 |
-
"created": 3.2,
|
2978 |
-
"categories": [
|
2979 |
-
"Web Application Icons"
|
2980 |
-
]
|
2981 |
-
},
|
2982 |
-
{
|
2983 |
-
"name": "Sort Alpha Descending",
|
2984 |
-
"id": "sort-alpha-desc",
|
2985 |
-
"unicode": "f15e",
|
2986 |
-
"created": 3.2,
|
2987 |
-
"categories": [
|
2988 |
-
"Web Application Icons"
|
2989 |
-
]
|
2990 |
-
},
|
2991 |
-
{
|
2992 |
-
"name": "Sort Amount Ascending",
|
2993 |
-
"id": "sort-amount-asc",
|
2994 |
-
"unicode": "f160",
|
2995 |
-
"created": 3.2,
|
2996 |
-
"categories": [
|
2997 |
-
"Web Application Icons"
|
2998 |
-
]
|
2999 |
-
},
|
3000 |
-
{
|
3001 |
-
"name": "Sort Amount Descending",
|
3002 |
-
"id": "sort-amount-desc",
|
3003 |
-
"unicode": "f161",
|
3004 |
-
"created": 3.2,
|
3005 |
-
"categories": [
|
3006 |
-
"Web Application Icons"
|
3007 |
-
]
|
3008 |
-
},
|
3009 |
-
{
|
3010 |
-
"name": "Sort Numeric Ascending",
|
3011 |
-
"id": "sort-numeric-asc",
|
3012 |
-
"unicode": "f162",
|
3013 |
-
"created": 3.2,
|
3014 |
-
"categories": [
|
3015 |
-
"Web Application Icons"
|
3016 |
-
]
|
3017 |
-
},
|
3018 |
-
{
|
3019 |
-
"name": "Sort Numeric Descending",
|
3020 |
-
"id": "sort-numeric-desc",
|
3021 |
-
"unicode": "f163",
|
3022 |
-
"created": 3.2,
|
3023 |
-
"categories": [
|
3024 |
-
"Web Application Icons"
|
3025 |
-
]
|
3026 |
-
},
|
3027 |
-
{
|
3028 |
-
"name": "thumbs-up",
|
3029 |
-
"id": "thumbs-up",
|
3030 |
-
"unicode": "f164",
|
3031 |
-
"created": 3.2,
|
3032 |
-
"categories": [
|
3033 |
-
"Web Application Icons"
|
3034 |
-
]
|
3035 |
-
},
|
3036 |
-
{
|
3037 |
-
"name": "thumbs-down",
|
3038 |
-
"id": "thumbs-down",
|
3039 |
-
"unicode": "f165",
|
3040 |
-
"created": 3.2,
|
3041 |
-
"categories": [
|
3042 |
-
"Web Application Icons"
|
3043 |
-
]
|
3044 |
-
},
|
3045 |
-
{
|
3046 |
-
"name": "YouTube Square",
|
3047 |
-
"id": "youtube-square",
|
3048 |
-
"unicode": "f166",
|
3049 |
-
"created": 3.2,
|
3050 |
-
"categories": [
|
3051 |
-
"Brand Icons"
|
3052 |
-
]
|
3053 |
-
},
|
3054 |
-
{
|
3055 |
-
"name": "YouTube",
|
3056 |
-
"id": "youtube",
|
3057 |
-
"unicode": "f167",
|
3058 |
-
"created": 3.2,
|
3059 |
-
"categories": [
|
3060 |
-
"Brand Icons"
|
3061 |
-
]
|
3062 |
-
},
|
3063 |
-
{
|
3064 |
-
"name": "Xing",
|
3065 |
-
"id": "xing",
|
3066 |
-
"unicode": "f168",
|
3067 |
-
"created": 3.2,
|
3068 |
-
"categories": [
|
3069 |
-
"Brand Icons"
|
3070 |
-
]
|
3071 |
-
},
|
3072 |
-
{
|
3073 |
-
"name": "Xing Square",
|
3074 |
-
"id": "xing-square",
|
3075 |
-
"unicode": "f169",
|
3076 |
-
"created": 3.2,
|
3077 |
-
"categories": [
|
3078 |
-
"Brand Icons"
|
3079 |
-
]
|
3080 |
-
},
|
3081 |
-
{
|
3082 |
-
"name": "YouTube Play",
|
3083 |
-
"id": "youtube-play",
|
3084 |
-
"unicode": "f16a",
|
3085 |
-
"created": 3.2,
|
3086 |
-
"categories": [
|
3087 |
-
"Brand Icons",
|
3088 |
-
"Video Player Icons"
|
3089 |
-
]
|
3090 |
-
},
|
3091 |
-
{
|
3092 |
-
"name": "Dropbox",
|
3093 |
-
"id": "dropbox",
|
3094 |
-
"unicode": "f16b",
|
3095 |
-
"created": 3.2,
|
3096 |
-
"categories": [
|
3097 |
-
"Brand Icons"
|
3098 |
-
]
|
3099 |
-
},
|
3100 |
-
{
|
3101 |
-
"name": "Stack Overflow",
|
3102 |
-
"id": "stack-overflow",
|
3103 |
-
"unicode": "f16c",
|
3104 |
-
"created": 3.2,
|
3105 |
-
"categories": [
|
3106 |
-
"Brand Icons"
|
3107 |
-
]
|
3108 |
-
},
|
3109 |
-
{
|
3110 |
-
"name": "Instagram",
|
3111 |
-
"id": "instagram",
|
3112 |
-
"unicode": "f16d",
|
3113 |
-
"created": 3.2,
|
3114 |
-
"categories": [
|
3115 |
-
"Brand Icons"
|
3116 |
-
]
|
3117 |
-
},
|
3118 |
-
{
|
3119 |
-
"name": "Flickr",
|
3120 |
-
"id": "flickr",
|
3121 |
-
"unicode": "f16e",
|
3122 |
-
"created": 3.2,
|
3123 |
-
"categories": [
|
3124 |
-
"Brand Icons"
|
3125 |
-
]
|
3126 |
-
},
|
3127 |
-
{
|
3128 |
-
"name": "App.net",
|
3129 |
-
"id": "adn",
|
3130 |
-
"unicode": "f170",
|
3131 |
-
"created": 3.2,
|
3132 |
-
"categories": [
|
3133 |
-
"Brand Icons"
|
3134 |
-
]
|
3135 |
-
},
|
3136 |
-
{
|
3137 |
-
"name": "Bitbucket",
|
3138 |
-
"id": "bitbucket",
|
3139 |
-
"unicode": "f171",
|
3140 |
-
"created": 3.2,
|
3141 |
-
"categories": [
|
3142 |
-
"Brand Icons"
|
3143 |
-
]
|
3144 |
-
},
|
3145 |
-
{
|
3146 |
-
"name": "Bitbucket Square",
|
3147 |
-
"id": "bitbucket-square",
|
3148 |
-
"unicode": "f172",
|
3149 |
-
"created": 3.2,
|
3150 |
-
"categories": [
|
3151 |
-
"Brand Icons"
|
3152 |
-
]
|
3153 |
-
},
|
3154 |
-
{
|
3155 |
-
"name": "Tumblr",
|
3156 |
-
"id": "tumblr",
|
3157 |
-
"unicode": "f173",
|
3158 |
-
"created": 3.2,
|
3159 |
-
"categories": [
|
3160 |
-
"Brand Icons"
|
3161 |
-
]
|
3162 |
-
},
|
3163 |
-
{
|
3164 |
-
"name": "Tumblr Square",
|
3165 |
-
"id": "tumblr-square",
|
3166 |
-
"unicode": "f174",
|
3167 |
-
"created": 3.2,
|
3168 |
-
"categories": [
|
3169 |
-
"Brand Icons"
|
3170 |
-
]
|
3171 |
-
},
|
3172 |
-
{
|
3173 |
-
"name": "Long Arrow Down",
|
3174 |
-
"id": "long-arrow-down",
|
3175 |
-
"unicode": "f175",
|
3176 |
-
"created": 3.2,
|
3177 |
-
"categories": [
|
3178 |
-
"Directional Icons"
|
3179 |
-
]
|
3180 |
-
},
|
3181 |
-
{
|
3182 |
-
"name": "Long Arrow Up",
|
3183 |
-
"id": "long-arrow-up",
|
3184 |
-
"unicode": "f176",
|
3185 |
-
"created": 3.2,
|
3186 |
-
"categories": [
|
3187 |
-
"Directional Icons"
|
3188 |
-
]
|
3189 |
-
},
|
3190 |
-
{
|
3191 |
-
"name": "Long Arrow Left",
|
3192 |
-
"id": "long-arrow-left",
|
3193 |
-
"unicode": "f177",
|
3194 |
-
"created": 3.2,
|
3195 |
-
"categories": [
|
3196 |
-
"Directional Icons"
|
3197 |
-
]
|
3198 |
-
},
|
3199 |
-
{
|
3200 |
-
"name": "Long Arrow Right",
|
3201 |
-
"id": "long-arrow-right",
|
3202 |
-
"unicode": "f178",
|
3203 |
-
"created": 3.2,
|
3204 |
-
"categories": [
|
3205 |
-
"Directional Icons"
|
3206 |
-
]
|
3207 |
-
},
|
3208 |
-
{
|
3209 |
-
"name": "Apple",
|
3210 |
-
"id": "apple",
|
3211 |
-
"unicode": "f179",
|
3212 |
-
"created": 3.2,
|
3213 |
-
"categories": [
|
3214 |
-
"Brand Icons"
|
3215 |
-
]
|
3216 |
-
},
|
3217 |
-
{
|
3218 |
-
"name": "Windows",
|
3219 |
-
"id": "windows",
|
3220 |
-
"unicode": "f17a",
|
3221 |
-
"created": 3.2,
|
3222 |
-
"categories": [
|
3223 |
-
"Brand Icons"
|
3224 |
-
]
|
3225 |
-
},
|
3226 |
-
{
|
3227 |
-
"name": "Android",
|
3228 |
-
"id": "android",
|
3229 |
-
"unicode": "f17b",
|
3230 |
-
"created": 3.2,
|
3231 |
-
"categories": [
|
3232 |
-
"Brand Icons"
|
3233 |
-
]
|
3234 |
-
},
|
3235 |
-
{
|
3236 |
-
"name": "Linux",
|
3237 |
-
"id": "linux",
|
3238 |
-
"unicode": "f17c",
|
3239 |
-
"created": 3.2,
|
3240 |
-
"categories": [
|
3241 |
-
"Brand Icons"
|
3242 |
-
]
|
3243 |
-
},
|
3244 |
-
{
|
3245 |
-
"name": "Dribbble",
|
3246 |
-
"id": "dribbble",
|
3247 |
-
"unicode": "f17d",
|
3248 |
-
"created": 3.2,
|
3249 |
-
"categories": [
|
3250 |
-
"Brand Icons"
|
3251 |
-
]
|
3252 |
-
},
|
3253 |
-
{
|
3254 |
-
"name": "Skype",
|
3255 |
-
"id": "skype",
|
3256 |
-
"unicode": "f17e",
|
3257 |
-
"created": 3.2,
|
3258 |
-
"categories": [
|
3259 |
-
"Brand Icons"
|
3260 |
-
]
|
3261 |
-
},
|
3262 |
-
{
|
3263 |
-
"name": "Foursquare",
|
3264 |
-
"id": "foursquare",
|
3265 |
-
"unicode": "f180",
|
3266 |
-
"created": 3.2,
|
3267 |
-
"categories": [
|
3268 |
-
"Brand Icons"
|
3269 |
-
]
|
3270 |
-
},
|
3271 |
-
{
|
3272 |
-
"name": "Trello",
|
3273 |
-
"id": "trello",
|
3274 |
-
"unicode": "f181",
|
3275 |
-
"created": 3.2,
|
3276 |
-
"categories": [
|
3277 |
-
"Brand Icons"
|
3278 |
-
]
|
3279 |
-
},
|
3280 |
-
{
|
3281 |
-
"name": "Female",
|
3282 |
-
"id": "female",
|
3283 |
-
"unicode": "f182",
|
3284 |
-
"created": 3.2,
|
3285 |
-
"categories": [
|
3286 |
-
"Web Application Icons"
|
3287 |
-
]
|
3288 |
-
},
|
3289 |
-
{
|
3290 |
-
"name": "Male",
|
3291 |
-
"id": "male",
|
3292 |
-
"unicode": "f183",
|
3293 |
-
"created": 3.2,
|
3294 |
-
"categories": [
|
3295 |
-
"Web Application Icons"
|
3296 |
-
]
|
3297 |
-
},
|
3298 |
-
{
|
3299 |
-
"name": "Gittip",
|
3300 |
-
"id": "gittip",
|
3301 |
-
"unicode": "f184",
|
3302 |
-
"created": 3.2,
|
3303 |
-
"categories": [
|
3304 |
-
"Brand Icons"
|
3305 |
-
]
|
3306 |
-
},
|
3307 |
-
{
|
3308 |
-
"name": "Sun Outlined",
|
3309 |
-
"id": "sun-o",
|
3310 |
-
"unicode": "f185",
|
3311 |
-
"created": 3.2,
|
3312 |
-
"categories": [
|
3313 |
-
"Web Application Icons"
|
3314 |
-
]
|
3315 |
-
},
|
3316 |
-
{
|
3317 |
-
"name": "Moon Outlined",
|
3318 |
-
"id": "moon-o",
|
3319 |
-
"unicode": "f186",
|
3320 |
-
"created": 3.2,
|
3321 |
-
"categories": [
|
3322 |
-
"Web Application Icons"
|
3323 |
-
]
|
3324 |
-
},
|
3325 |
-
{
|
3326 |
-
"name": "Archive",
|
3327 |
-
"id": "archive",
|
3328 |
-
"unicode": "f187",
|
3329 |
-
"created": 3.2,
|
3330 |
-
"categories": [
|
3331 |
-
"Web Application Icons"
|
3332 |
-
]
|
3333 |
-
},
|
3334 |
-
{
|
3335 |
-
"name": "Bug",
|
3336 |
-
"id": "bug",
|
3337 |
-
"unicode": "f188",
|
3338 |
-
"created": 3.2,
|
3339 |
-
"categories": [
|
3340 |
-
"Web Application Icons"
|
3341 |
-
]
|
3342 |
-
},
|
3343 |
-
{
|
3344 |
-
"name": "VK",
|
3345 |
-
"id": "vk",
|
3346 |
-
"unicode": "f189",
|
3347 |
-
"created": 3.2,
|
3348 |
-
"categories": [
|
3349 |
-
"Brand Icons"
|
3350 |
-
]
|
3351 |
-
},
|
3352 |
-
{
|
3353 |
-
"name": "Weibo",
|
3354 |
-
"id": "weibo",
|
3355 |
-
"unicode": "f18a",
|
3356 |
-
"created": 3.2,
|
3357 |
-
"categories": [
|
3358 |
-
"Brand Icons"
|
3359 |
-
]
|
3360 |
-
},
|
3361 |
-
{
|
3362 |
-
"name": "Renren",
|
3363 |
-
"id": "renren",
|
3364 |
-
"unicode": "f18b",
|
3365 |
-
"created": 3.2,
|
3366 |
-
"categories": [
|
3367 |
-
"Brand Icons"
|
3368 |
-
]
|
3369 |
-
},
|
3370 |
-
{
|
3371 |
-
"name": "Pagelines",
|
3372 |
-
"id": "pagelines",
|
3373 |
-
"unicode": "f18c",
|
3374 |
-
"created": 4,
|
3375 |
-
"categories": [
|
3376 |
-
"Brand Icons"
|
3377 |
-
]
|
3378 |
-
},
|
3379 |
-
{
|
3380 |
-
"name": "Stack Exchange",
|
3381 |
-
"id": "stack-exchange",
|
3382 |
-
"unicode": "f18d",
|
3383 |
-
"created": 4,
|
3384 |
-
"categories": [
|
3385 |
-
"Brand Icons"
|
3386 |
-
]
|
3387 |
-
},
|
3388 |
-
{
|
3389 |
-
"name": "Arrow Circle Outlined Right",
|
3390 |
-
"id": "arrow-circle-o-right",
|
3391 |
-
"unicode": "f18e",
|
3392 |
-
"created": 4,
|
3393 |
-
"categories": [
|
3394 |
-
"Directional Icons"
|
3395 |
-
]
|
3396 |
-
},
|
3397 |
-
{
|
3398 |
-
"name": "Arrow Circle Outlined Left",
|
3399 |
-
"id": "arrow-circle-o-left",
|
3400 |
-
"unicode": "f190",
|
3401 |
-
"created": 4,
|
3402 |
-
"categories": [
|
3403 |
-
"Directional Icons"
|
3404 |
-
]
|
3405 |
-
},
|
3406 |
-
{
|
3407 |
-
"name": "Caret Square Outlined Left",
|
3408 |
-
"id": "caret-square-o-left",
|
3409 |
-
"unicode": "f191",
|
3410 |
-
"created": 4,
|
3411 |
-
"aliases": [
|
3412 |
-
"toggle-left"
|
3413 |
-
],
|
3414 |
-
"categories": [
|
3415 |
-
"Web Application Icons",
|
3416 |
-
"Directional Icons"
|
3417 |
-
]
|
3418 |
-
},
|
3419 |
-
{
|
3420 |
-
"name": "Dot Circle O",
|
3421 |
-
"id": "dot-circle-o",
|
3422 |
-
"unicode": "f192",
|
3423 |
-
"created": 4,
|
3424 |
-
"categories": [
|
3425 |
-
"Web Application Icons",
|
3426 |
-
"Form Control Icons"
|
3427 |
-
]
|
3428 |
-
},
|
3429 |
-
{
|
3430 |
-
"name": "Wheelchair",
|
3431 |
-
"id": "wheelchair",
|
3432 |
-
"unicode": "f193",
|
3433 |
-
"created": 4,
|
3434 |
-
"categories": [
|
3435 |
-
"Web Application Icons",
|
3436 |
-
"Medical Icons"
|
3437 |
-
]
|
3438 |
-
},
|
3439 |
-
{
|
3440 |
-
"name": "Vimeo Square",
|
3441 |
-
"id": "vimeo-square",
|
3442 |
-
"unicode": "f194",
|
3443 |
-
"created": 4,
|
3444 |
-
"categories": [
|
3445 |
-
"Brand Icons"
|
3446 |
-
]
|
3447 |
-
},
|
3448 |
-
{
|
3449 |
-
"name": "Turkish Lira (TRY)",
|
3450 |
-
"id": "try",
|
3451 |
-
"unicode": "f195",
|
3452 |
-
"created": 4,
|
3453 |
-
"aliases": [
|
3454 |
-
"turkish-lira"
|
3455 |
-
],
|
3456 |
-
"categories": [
|
3457 |
-
"Currency Icons"
|
3458 |
-
]
|
3459 |
-
},
|
3460 |
-
{
|
3461 |
-
"name": "Plus Square Outlined",
|
3462 |
-
"id": "plus-square-o",
|
3463 |
-
"unicode": "f196",
|
3464 |
-
"created": 4,
|
3465 |
-
"categories": [
|
3466 |
-
"Web Application Icons",
|
3467 |
-
"Form Control Icons"
|
3468 |
-
]
|
3469 |
-
},
|
3470 |
-
{
|
3471 |
-
"name": "Space Shuttle",
|
3472 |
-
"id": "space-shuttle",
|
3473 |
-
"unicode": "f197",
|
3474 |
-
"created": 4.1,
|
3475 |
-
"categories": [
|
3476 |
-
"Web Application Icons"
|
3477 |
-
]
|
3478 |
-
},
|
3479 |
-
{
|
3480 |
-
"name": "Slack Logo",
|
3481 |
-
"id": "slack",
|
3482 |
-
"unicode": "f198",
|
3483 |
-
"created": 4.1,
|
3484 |
-
"categories": [
|
3485 |
-
"Brand Icons"
|
3486 |
-
]
|
3487 |
-
},
|
3488 |
-
{
|
3489 |
-
"name": "Envelope Square",
|
3490 |
-
"id": "envelope-square",
|
3491 |
-
"unicode": "f199",
|
3492 |
-
"created": 4.1,
|
3493 |
-
"categories": [
|
3494 |
-
"Web Application Icons"
|
3495 |
-
]
|
3496 |
-
},
|
3497 |
-
{
|
3498 |
-
"name": "Wordpress Logo",
|
3499 |
-
"id": "wordpress",
|
3500 |
-
"unicode": "f19a",
|
3501 |
-
"created": 4.1,
|
3502 |
-
"categories": [
|
3503 |
-
"Brand Icons"
|
3504 |
-
]
|
3505 |
-
},
|
3506 |
-
{
|
3507 |
-
"name": "OpenID",
|
3508 |
-
"id": "openid",
|
3509 |
-
"unicode": "f19b",
|
3510 |
-
"created": 4.1,
|
3511 |
-
"categories": [
|
3512 |
-
"Brand Icons"
|
3513 |
-
]
|
3514 |
-
},
|
3515 |
-
{
|
3516 |
-
"name": "University",
|
3517 |
-
"id": "university",
|
3518 |
-
"unicode": "f19c",
|
3519 |
-
"created": 4.1,
|
3520 |
-
"aliases": [
|
3521 |
-
"institution",
|
3522 |
-
"bank"
|
3523 |
-
],
|
3524 |
-
"categories": [
|
3525 |
-
"Web Application Icons"
|
3526 |
-
]
|
3527 |
-
},
|
3528 |
-
{
|
3529 |
-
"name": "Graduation Cap",
|
3530 |
-
"id": "graduation-cap",
|
3531 |
-
"unicode": "f19d",
|
3532 |
-
"created": 4.1,
|
3533 |
-
"aliases": [
|
3534 |
-
"mortar-board"
|
3535 |
-
],
|
3536 |
-
"categories": [
|
3537 |
-
"Web Application Icons"
|
3538 |
-
]
|
3539 |
-
},
|
3540 |
-
{
|
3541 |
-
"name": "Yahoo Logo",
|
3542 |
-
"id": "yahoo",
|
3543 |
-
"unicode": "f19e",
|
3544 |
-
"created": 4.1,
|
3545 |
-
"categories": [
|
3546 |
-
"Brand Icons"
|
3547 |
-
]
|
3548 |
-
},
|
3549 |
-
{
|
3550 |
-
"name": "Google Logo",
|
3551 |
-
"id": "google",
|
3552 |
-
"unicode": "f1a0",
|
3553 |
-
"created": 4.1,
|
3554 |
-
"categories": [
|
3555 |
-
"Brand Icons"
|
3556 |
-
]
|
3557 |
-
},
|
3558 |
-
{
|
3559 |
-
"name": "reddit Logo",
|
3560 |
-
"id": "reddit",
|
3561 |
-
"unicode": "f1a1",
|
3562 |
-
"created": 4.1,
|
3563 |
-
"categories": [
|
3564 |
-
"Brand Icons"
|
3565 |
-
]
|
3566 |
-
},
|
3567 |
-
{
|
3568 |
-
"name": "reddit Square",
|
3569 |
-
"id": "reddit-square",
|
3570 |
-
"unicode": "f1a2",
|
3571 |
-
"created": 4.1,
|
3572 |
-
"categories": [
|
3573 |
-
"Brand Icons"
|
3574 |
-
]
|
3575 |
-
},
|
3576 |
-
{
|
3577 |
-
"name": "StumbleUpon Circle",
|
3578 |
-
"id": "stumbleupon-circle",
|
3579 |
-
"unicode": "f1a3",
|
3580 |
-
"created": 4.1,
|
3581 |
-
"categories": [
|
3582 |
-
"Brand Icons"
|
3583 |
-
]
|
3584 |
-
},
|
3585 |
-
{
|
3586 |
-
"name": "StumbleUpon Logo",
|
3587 |
-
"id": "stumbleupon",
|
3588 |
-
"unicode": "f1a4",
|
3589 |
-
"created": 4.1,
|
3590 |
-
"categories": [
|
3591 |
-
"Brand Icons"
|
3592 |
-
]
|
3593 |
-
},
|
3594 |
-
{
|
3595 |
-
"name": "Delicious Logo",
|
3596 |
-
"id": "delicious",
|
3597 |
-
"unicode": "f1a5",
|
3598 |
-
"created": 4.1,
|
3599 |
-
"categories": [
|
3600 |
-
"Brand Icons"
|
3601 |
-
]
|
3602 |
-
},
|
3603 |
-
{
|
3604 |
-
"name": "Digg Logo",
|
3605 |
-
"id": "digg",
|
3606 |
-
"unicode": "f1a6",
|
3607 |
-
"created": 4.1,
|
3608 |
-
"categories": [
|
3609 |
-
"Brand Icons"
|
3610 |
-
]
|
3611 |
-
},
|
3612 |
-
{
|
3613 |
-
"name": "Pied Piper Logo",
|
3614 |
-
"id": "pied-piper",
|
3615 |
-
"unicode": "f1a7",
|
3616 |
-
"created": 4.1,
|
3617 |
-
"categories": [
|
3618 |
-
"Brand Icons"
|
3619 |
-
],
|
3620 |
-
"aliases": [
|
3621 |
-
"pied-piper-square"
|
3622 |
-
]
|
3623 |
-
},
|
3624 |
-
{
|
3625 |
-
"name": "Pied Piper Alternate Logo",
|
3626 |
-
"id": "pied-piper-alt",
|
3627 |
-
"unicode": "f1a8",
|
3628 |
-
"created": 4.1,
|
3629 |
-
"categories": [
|
3630 |
-
"Brand Icons"
|
3631 |
-
]
|
3632 |
-
},
|
3633 |
-
{
|
3634 |
-
"name": "Drupal Logo",
|
3635 |
-
"id": "drupal",
|
3636 |
-
"unicode": "f1a9",
|
3637 |
-
"created": 4.1,
|
3638 |
-
"categories": [
|
3639 |
-
"Brand Icons"
|
3640 |
-
]
|
3641 |
-
},
|
3642 |
-
{
|
3643 |
-
"name": "Joomla Logo",
|
3644 |
-
"id": "joomla",
|
3645 |
-
"unicode": "f1aa",
|
3646 |
-
"created": 4.1,
|
3647 |
-
"categories": [
|
3648 |
-
"Brand Icons"
|
3649 |
-
]
|
3650 |
-
},
|
3651 |
-
{
|
3652 |
-
"name": "Language",
|
3653 |
-
"id": "language",
|
3654 |
-
"unicode": "f1ab",
|
3655 |
-
"created": 4.1,
|
3656 |
-
"categories": [
|
3657 |
-
"Web Application Icons"
|
3658 |
-
]
|
3659 |
-
},
|
3660 |
-
{
|
3661 |
-
"name": "Fax",
|
3662 |
-
"id": "fax",
|
3663 |
-
"unicode": "f1ac",
|
3664 |
-
"created": 4.1,
|
3665 |
-
"categories": [
|
3666 |
-
"Web Application Icons"
|
3667 |
-
]
|
3668 |
-
},
|
3669 |
-
{
|
3670 |
-
"name": "Building",
|
3671 |
-
"id": "building",
|
3672 |
-
"unicode": "f1ad",
|
3673 |
-
"created": 4.1,
|
3674 |
-
"categories": [
|
3675 |
-
"Web Application Icons"
|
3676 |
-
]
|
3677 |
-
},
|
3678 |
-
{
|
3679 |
-
"name": "Child",
|
3680 |
-
"id": "child",
|
3681 |
-
"unicode": "f1ae",
|
3682 |
-
"created": 4.1,
|
3683 |
-
"categories": [
|
3684 |
-
"Web Application Icons"
|
3685 |
-
]
|
3686 |
-
},
|
3687 |
-
{
|
3688 |
-
"name": "Paw",
|
3689 |
-
"id": "paw",
|
3690 |
-
"unicode": "f1b0",
|
3691 |
-
"created": 4.1,
|
3692 |
-
"categories": [
|
3693 |
-
"Web Application Icons"
|
3694 |
-
]
|
3695 |
-
},
|
3696 |
-
{
|
3697 |
-
"name": "spoon",
|
3698 |
-
"id": "spoon",
|
3699 |
-
"unicode": "f1b1",
|
3700 |
-
"created": 4.1,
|
3701 |
-
"categories": [
|
3702 |
-
"Web Application Icons"
|
3703 |
-
]
|
3704 |
-
},
|
3705 |
-
{
|
3706 |
-
"name": "Cube",
|
3707 |
-
"id": "cube",
|
3708 |
-
"unicode": "f1b2",
|
3709 |
-
"created": 4.1,
|
3710 |
-
"categories": [
|
3711 |
-
"Web Application Icons"
|
3712 |
-
]
|
3713 |
-
},
|
3714 |
-
{
|
3715 |
-
"name": "Cubes",
|
3716 |
-
"id": "cubes",
|
3717 |
-
"unicode": "f1b3",
|
3718 |
-
"created": 4.1,
|
3719 |
-
"categories": [
|
3720 |
-
"Web Application Icons"
|
3721 |
-
]
|
3722 |
-
},
|
3723 |
-
{
|
3724 |
-
"name": "Behance",
|
3725 |
-
"id": "behance",
|
3726 |
-
"unicode": "f1b4",
|
3727 |
-
"created": 4.1,
|
3728 |
-
"categories": [
|
3729 |
-
"Brand Icons"
|
3730 |
-
]
|
3731 |
-
},
|
3732 |
-
{
|
3733 |
-
"name": "Behance Square",
|
3734 |
-
"id": "behance-square",
|
3735 |
-
"unicode": "f1b5",
|
3736 |
-
"created": 4.1,
|
3737 |
-
"categories": [
|
3738 |
-
"Brand Icons"
|
3739 |
-
]
|
3740 |
-
},
|
3741 |
-
{
|
3742 |
-
"name": "Steam",
|
3743 |
-
"id": "steam",
|
3744 |
-
"unicode": "f1b6",
|
3745 |
-
"created": 4.1,
|
3746 |
-
"categories": [
|
3747 |
-
"Brand Icons"
|
3748 |
-
]
|
3749 |
-
},
|
3750 |
-
{
|
3751 |
-
"name": "Steam Square",
|
3752 |
-
"id": "steam-square",
|
3753 |
-
"unicode": "f1b7",
|
3754 |
-
"created": 4.1,
|
3755 |
-
"categories": [
|
3756 |
-
"Brand Icons"
|
3757 |
-
]
|
3758 |
-
},
|
3759 |
-
{
|
3760 |
-
"name": "Recycle",
|
3761 |
-
"id": "recycle",
|
3762 |
-
"unicode": "f1b8",
|
3763 |
-
"created": 4.1,
|
3764 |
-
"categories": [
|
3765 |
-
"Web Application Icons"
|
3766 |
-
]
|
3767 |
-
},
|
3768 |
-
{
|
3769 |
-
"name": "Car",
|
3770 |
-
"id": "car",
|
3771 |
-
"unicode": "f1b9",
|
3772 |
-
"created": 4.1,
|
3773 |
-
"categories": [
|
3774 |
-
"Web Application Icons"
|
3775 |
-
],
|
3776 |
-
"aliases": [
|
3777 |
-
"automobile"
|
3778 |
-
]
|
3779 |
-
},
|
3780 |
-
{
|
3781 |
-
"name": "Taxi",
|
3782 |
-
"id": "taxi",
|
3783 |
-
"unicode": "f1ba",
|
3784 |
-
"created": 4.1,
|
3785 |
-
"categories": [
|
3786 |
-
"Web Application Icons"
|
3787 |
-
],
|
3788 |
-
"aliases": [
|
3789 |
-
"cab"
|
3790 |
-
]
|
3791 |
-
},
|
3792 |
-
{
|
3793 |
-
"name": "Tree",
|
3794 |
-
"id": "tree",
|
3795 |
-
"unicode": "f1bb",
|
3796 |
-
"created": 4.1,
|
3797 |
-
"categories": [
|
3798 |
-
"Web Application Icons"
|
3799 |
-
]
|
3800 |
-
},
|
3801 |
-
{
|
3802 |
-
"name": "Spotify",
|
3803 |
-
"id": "spotify",
|
3804 |
-
"unicode": "f1bc",
|
3805 |
-
"created": 4.1,
|
3806 |
-
"categories": [
|
3807 |
-
"Brand Icons"
|
3808 |
-
]
|
3809 |
-
},
|
3810 |
-
{
|
3811 |
-
"name": "deviantART",
|
3812 |
-
"id": "deviantart",
|
3813 |
-
"unicode": "f1bd",
|
3814 |
-
"created": 4.1,
|
3815 |
-
"categories": [
|
3816 |
-
"Brand Icons"
|
3817 |
-
]
|
3818 |
-
},
|
3819 |
-
{
|
3820 |
-
"name": "SoundCloud",
|
3821 |
-
"id": "soundcloud",
|
3822 |
-
"unicode": "f1be",
|
3823 |
-
"created": 4.1,
|
3824 |
-
"categories": [
|
3825 |
-
"Brand Icons"
|
3826 |
-
]
|
3827 |
-
},
|
3828 |
-
{
|
3829 |
-
"name": "Database",
|
3830 |
-
"id": "database",
|
3831 |
-
"unicode": "f1c0",
|
3832 |
-
"created": 4.1,
|
3833 |
-
"categories": [
|
3834 |
-
"Web Application Icons"
|
3835 |
-
]
|
3836 |
-
},
|
3837 |
-
{
|
3838 |
-
"name": "PDF File Outlined",
|
3839 |
-
"id": "file-pdf-o",
|
3840 |
-
"unicode": "f1c1",
|
3841 |
-
"created": 4.1,
|
3842 |
-
"categories": [
|
3843 |
-
"Web Application Icons",
|
3844 |
-
"File Type Icons"
|
3845 |
-
]
|
3846 |
-
},
|
3847 |
-
{
|
3848 |
-
"name": "Word File Outlined",
|
3849 |
-
"id": "file-word-o",
|
3850 |
-
"unicode": "f1c2",
|
3851 |
-
"created": 4.1,
|
3852 |
-
"categories": [
|
3853 |
-
"Web Application Icons",
|
3854 |
-
"File Type Icons"
|
3855 |
-
]
|
3856 |
-
},
|
3857 |
-
{
|
3858 |
-
"name": "Excel File Outlined",
|
3859 |
-
"id": "file-excel-o",
|
3860 |
-
"unicode": "f1c3",
|
3861 |
-
"created": 4.1,
|
3862 |
-
"categories": [
|
3863 |
-
"Web Application Icons",
|
3864 |
-
"File Type Icons"
|
3865 |
-
]
|
3866 |
-
},
|
3867 |
-
{
|
3868 |
-
"name": "Powerpoint File Outlined",
|
3869 |
-
"id": "file-powerpoint-o",
|
3870 |
-
"unicode": "f1c4",
|
3871 |
-
"created": 4.1,
|
3872 |
-
"categories": [
|
3873 |
-
"Web Application Icons",
|
3874 |
-
"File Type Icons"
|
3875 |
-
]
|
3876 |
-
},
|
3877 |
-
{
|
3878 |
-
"name": "Image File Outlined",
|
3879 |
-
"id": "file-image-o",
|
3880 |
-
"unicode": "f1c5",
|
3881 |
-
"created": 4.1,
|
3882 |
-
"aliases": [
|
3883 |
-
"file-photo-o",
|
3884 |
-
"file-picture-o"
|
3885 |
-
],
|
3886 |
-
"categories": [
|
3887 |
-
"Web Application Icons",
|
3888 |
-
"File Type Icons"
|
3889 |
-
]
|
3890 |
-
},
|
3891 |
-
{
|
3892 |
-
"name": "Archive File Outlined",
|
3893 |
-
"id": "file-archive-o",
|
3894 |
-
"unicode": "f1c6",
|
3895 |
-
"created": 4.1,
|
3896 |
-
"aliases": [
|
3897 |
-
"file-zip-o"
|
3898 |
-
],
|
3899 |
-
"categories": [
|
3900 |
-
"Web Application Icons",
|
3901 |
-
"File Type Icons"
|
3902 |
-
]
|
3903 |
-
},
|
3904 |
-
{
|
3905 |
-
"name": "Audio File Outlined",
|
3906 |
-
"id": "file-audio-o",
|
3907 |
-
"unicode": "f1c7",
|
3908 |
-
"created": 4.1,
|
3909 |
-
"aliases": [
|
3910 |
-
"file-sound-o"
|
3911 |
-
],
|
3912 |
-
"categories": [
|
3913 |
-
"Web Application Icons",
|
3914 |
-
"File Type Icons"
|
3915 |
-
]
|
3916 |
-
},
|
3917 |
-
{
|
3918 |
-
"name": "Video File Outlined",
|
3919 |
-
"id": "file-video-o",
|
3920 |
-
"unicode": "f1c8",
|
3921 |
-
"created": 4.1,
|
3922 |
-
"aliases": [
|
3923 |
-
"file-movie-o"
|
3924 |
-
],
|
3925 |
-
"categories": [
|
3926 |
-
"Web Application Icons",
|
3927 |
-
"File Type Icons"
|
3928 |
-
]
|
3929 |
-
},
|
3930 |
-
{
|
3931 |
-
"name": "Code File Outlined",
|
3932 |
-
"id": "file-code-o",
|
3933 |
-
"unicode": "f1c9",
|
3934 |
-
"created": 4.1,
|
3935 |
-
"categories": [
|
3936 |
-
"Web Application Icons",
|
3937 |
-
"File Type Icons"
|
3938 |
-
]
|
3939 |
-
},
|
3940 |
-
{
|
3941 |
-
"name": "Vine",
|
3942 |
-
"id": "vine",
|
3943 |
-
"unicode": "f1ca",
|
3944 |
-
"created": 4.1,
|
3945 |
-
"categories": [
|
3946 |
-
"Brand Icons"
|
3947 |
-
]
|
3948 |
-
},
|
3949 |
-
{
|
3950 |
-
"name": "Codepen",
|
3951 |
-
"id": "codepen",
|
3952 |
-
"unicode": "f1cb",
|
3953 |
-
"created": 4.1,
|
3954 |
-
"categories": [
|
3955 |
-
"Brand Icons"
|
3956 |
-
]
|
3957 |
-
},
|
3958 |
-
{
|
3959 |
-
"name": "jsFiddle",
|
3960 |
-
"id": "jsfiddle",
|
3961 |
-
"unicode": "f1cc",
|
3962 |
-
"created": 4.1,
|
3963 |
-
"categories": [
|
3964 |
-
"Brand Icons"
|
3965 |
-
]
|
3966 |
-
},
|
3967 |
-
{
|
3968 |
-
"name": "Life Ring",
|
3969 |
-
"id": "life-ring",
|
3970 |
-
"unicode": "f1cd",
|
3971 |
-
"created": 4.1,
|
3972 |
-
"aliases": [
|
3973 |
-
"life-bouy",
|
3974 |
-
"life-saver",
|
3975 |
-
"support"
|
3976 |
-
],
|
3977 |
-
"categories": [
|
3978 |
-
"Web Application Icons"
|
3979 |
-
]
|
3980 |
-
},
|
3981 |
-
{
|
3982 |
-
"name": "Circle Outlined Notched",
|
3983 |
-
"id": "circle-o-notch",
|
3984 |
-
"unicode": "f1ce",
|
3985 |
-
"created": 4.1,
|
3986 |
-
"categories": [
|
3987 |
-
"Web Application Icons",
|
3988 |
-
"Spinner Icons"
|
3989 |
-
]
|
3990 |
-
},
|
3991 |
-
{
|
3992 |
-
"name": "Rebel Alliance",
|
3993 |
-
"id": "rebel",
|
3994 |
-
"unicode": "f1d0",
|
3995 |
-
"created": 4.1,
|
3996 |
-
"aliases": [
|
3997 |
-
"ra"
|
3998 |
-
],
|
3999 |
-
"categories": [
|
4000 |
-
"Brand Icons"
|
4001 |
-
]
|
4002 |
-
},
|
4003 |
-
{
|
4004 |
-
"name": "Galactic Empire",
|
4005 |
-
"id": "empire",
|
4006 |
-
"unicode": "f1d1",
|
4007 |
-
"created": 4.1,
|
4008 |
-
"aliases": [
|
4009 |
-
"ge"
|
4010 |
-
],
|
4011 |
-
"categories": [
|
4012 |
-
"Brand Icons"
|
4013 |
-
]
|
4014 |
-
},
|
4015 |
-
{
|
4016 |
-
"name": "Git Square",
|
4017 |
-
"id": "git-square",
|
4018 |
-
"unicode": "f1d2",
|
4019 |
-
"created": 4.1,
|
4020 |
-
"categories": [
|
4021 |
-
"Brand Icons"
|
4022 |
-
]
|
4023 |
-
},
|
4024 |
-
{
|
4025 |
-
"name": "Git",
|
4026 |
-
"id": "git",
|
4027 |
-
"unicode": "f1d3",
|
4028 |
-
"created": 4.1,
|
4029 |
-
"categories": [
|
4030 |
-
"Brand Icons"
|
4031 |
-
]
|
4032 |
-
},
|
4033 |
-
{
|
4034 |
-
"name": "Hacker News",
|
4035 |
-
"id": "hacker-news",
|
4036 |
-
"unicode": "f1d4",
|
4037 |
-
"created": 4.1,
|
4038 |
-
"categories": [
|
4039 |
-
"Brand Icons"
|
4040 |
-
]
|
4041 |
-
},
|
4042 |
-
{
|
4043 |
-
"name": "Tencent Weibo",
|
4044 |
-
"id": "tencent-weibo",
|
4045 |
-
"unicode": "f1d5",
|
4046 |
-
"created": 4.1,
|
4047 |
-
"categories": [
|
4048 |
-
"Brand Icons"
|
4049 |
-
]
|
4050 |
-
},
|
4051 |
-
{
|
4052 |
-
"name": "QQ",
|
4053 |
-
"id": "qq",
|
4054 |
-
"unicode": "f1d6",
|
4055 |
-
"created": 4.1,
|
4056 |
-
"categories": [
|
4057 |
-
"Brand Icons"
|
4058 |
-
]
|
4059 |
-
},
|
4060 |
-
{
|
4061 |
-
"name": "Weixin (WeChat)",
|
4062 |
-
"id": "weixin",
|
4063 |
-
"unicode": "f1d7",
|
4064 |
-
"created": 4.1,
|
4065 |
-
"aliases": [
|
4066 |
-
"wechat"
|
4067 |
-
],
|
4068 |
-
"categories": [
|
4069 |
-
"Brand Icons"
|
4070 |
-
]
|
4071 |
-
},
|
4072 |
-
{
|
4073 |
-
"name": "Paper Plane",
|
4074 |
-
"id": "paper-plane",
|
4075 |
-
"unicode": "f1d8",
|
4076 |
-
"created": 4.1,
|
4077 |
-
"aliases": [
|
4078 |
-
"send"
|
4079 |
-
],
|
4080 |
-
"categories": [
|
4081 |
-
"Web Application Icons"
|
4082 |
-
]
|
4083 |
-
},
|
4084 |
-
{
|
4085 |
-
"name": "Paper Plane Outlined",
|
4086 |
-
"id": "paper-plane-o",
|
4087 |
-
"unicode": "f1d9",
|
4088 |
-
"created": 4.1,
|
4089 |
-
"aliases": [
|
4090 |
-
"send-o"
|
4091 |
-
],
|
4092 |
-
"categories": [
|
4093 |
-
"Web Application Icons"
|
4094 |
-
]
|
4095 |
-
},
|
4096 |
-
{
|
4097 |
-
"name": "History",
|
4098 |
-
"id": "history",
|
4099 |
-
"unicode": "f1da",
|
4100 |
-
"created": 4.1,
|
4101 |
-
"categories": [
|
4102 |
-
"Web Application Icons"
|
4103 |
-
]
|
4104 |
-
},
|
4105 |
-
{
|
4106 |
-
"name": "Circle Outlined Thin",
|
4107 |
-
"id": "circle-thin",
|
4108 |
-
"unicode": "f1db",
|
4109 |
-
"created": 4.1,
|
4110 |
-
"categories": [
|
4111 |
-
"Web Application Icons"
|
4112 |
-
]
|
4113 |
-
},
|
4114 |
-
{
|
4115 |
-
"name": "header",
|
4116 |
-
"id": "header",
|
4117 |
-
"unicode": "f1dc",
|
4118 |
-
"created": 4.1,
|
4119 |
-
"categories": [
|
4120 |
-
"Text Editor Icons"
|
4121 |
-
]
|
4122 |
-
},
|
4123 |
-
{
|
4124 |
-
"name": "paragraph",
|
4125 |
-
"id": "paragraph",
|
4126 |
-
"unicode": "f1dd",
|
4127 |
-
"created": 4.1,
|
4128 |
-
"categories": [
|
4129 |
-
"Text Editor Icons"
|
4130 |
-
]
|
4131 |
-
},
|
4132 |
-
{
|
4133 |
-
"name": "Sliders",
|
4134 |
-
"id": "sliders",
|
4135 |
-
"unicode": "f1de",
|
4136 |
-
"created": 4.1,
|
4137 |
-
"categories": [
|
4138 |
-
"Web Application Icons"
|
4139 |
-
]
|
4140 |
-
},
|
4141 |
-
{
|
4142 |
-
"name": "Share Alt",
|
4143 |
-
"id": "share-alt",
|
4144 |
-
"unicode": "f1e0",
|
4145 |
-
"created": 4.1,
|
4146 |
-
"categories": [
|
4147 |
-
"Web Application Icons",
|
4148 |
-
"Brand Icons"
|
4149 |
-
]
|
4150 |
-
},
|
4151 |
-
{
|
4152 |
-
"name": "Share Alt Square",
|
4153 |
-
"id": "share-alt-square",
|
4154 |
-
"unicode": "f1e1",
|
4155 |
-
"created": 4.1,
|
4156 |
-
"categories": [
|
4157 |
-
"Web Application Icons",
|
4158 |
-
"Brand Icons"
|
4159 |
-
]
|
4160 |
-
},
|
4161 |
-
{
|
4162 |
-
"name": "Bomb",
|
4163 |
-
"id": "bomb",
|
4164 |
-
"unicode": "f1e2",
|
4165 |
-
"created": 4.1,
|
4166 |
-
"categories": [
|
4167 |
-
"Web Application Icons"
|
4168 |
-
]
|
4169 |
-
}
|
4170 |
-
]
|
4171 |
-
}
|
1 |
+
["fa-adjust","fa-adn","fa-align-center","fa-align-justify","fa-align-left","fa-align-right","fa-ambulance","fa-anchor","fa-android","fa-angellist","fa-angle-double-down","fa-angle-double-left","fa-angle-double-right","fa-angle-double-up","fa-angle-down","fa-angle-left","fa-angle-right","fa-angle-up","fa-apple","fa-archive","fa-area-chart","fa-arrow-circle-down","fa-arrow-circle-left","fa-arrow-circle-o-down","fa-arrow-circle-o-left","fa-arrow-circle-o-right","fa-arrow-circle-o-up","fa-arrow-circle-right","fa-arrow-circle-up","fa-arrow-down","fa-arrow-left","fa-arrow-right","fa-arrow-up","fa-arrows","fa-arrows-alt","fa-arrows-h","fa-arrows-v","fa-asterisk","fa-at","fa-automobile","fa-backward","fa-ban","fa-bank","fa-bar-chart","fa-bar-chart-o","fa-barcode","fa-bars","fa-beer","fa-behance","fa-behance-square","fa-bell","fa-bell-o","fa-bell-slash","fa-bell-slash-o","fa-bicycle","fa-binoculars","fa-birthday-cake","fa-bitbucket","fa-bitbucket-square","fa-bitcoin","fa-bold","fa-bolt","fa-bomb","fa-book","fa-bookmark","fa-bookmark-o","fa-briefcase","fa-btc","fa-bug","fa-building","fa-building-o","fa-bullhorn","fa-bullseye","fa-bus","fa-cab","fa-calculator","fa-calendar","fa-calendar-o","fa-camera","fa-camera-retro","fa-car","fa-caret-down","fa-caret-left","fa-caret-right","fa-caret-square-o-down","fa-caret-square-o-left","fa-caret-square-o-right","fa-caret-square-o-up","fa-caret-up","fa-cc","fa-cc-amex","fa-cc-discover","fa-cc-mastercard","fa-cc-paypal","fa-cc-stripe","fa-cc-visa","fa-certificate","fa-chain","fa-chain-broken","fa-check","fa-check-circle","fa-check-circle-o","fa-check-square","fa-check-square-o","fa-chevron-circle-down","fa-chevron-circle-left","fa-chevron-circle-right","fa-chevron-circle-up","fa-chevron-down","fa-chevron-left","fa-chevron-right","fa-chevron-up","fa-child","fa-circle","fa-circle-o","fa-circle-o-notch","fa-circle-thin","fa-clipboard","fa-clock-o","fa-close","fa-cloud","fa-cloud-download","fa-cloud-upload","fa-cny","fa-code","fa-code-fork","fa-codepen","fa-coffee","fa-cog","fa-cogs","fa-columns","fa-comment","fa-comment-o","fa-comments","fa-comments-o","fa-compass","fa-compress","fa-copy","fa-copyright","fa-credit-card","fa-crop","fa-crosshairs","fa-css3","fa-cube","fa-cubes","fa-cut","fa-cutlery","fa-dashboard","fa-database","fa-dedent","fa-delicious","fa-desktop","fa-deviantart","fa-digg","fa-dollar","fa-dot-circle-o","fa-download","fa-dribbble","fa-dropbox","fa-drupal","fa-edit","fa-eject","fa-ellipsis-h","fa-ellipsis-v","fa-empire","fa-envelope","fa-envelope-o","fa-envelope-square","fa-eraser","fa-eur","fa-euro","fa-exchange","fa-exclamation","fa-exclamation-circle","fa-exclamation-triangle","fa-expand","fa-external-link","fa-external-link-square","fa-eye","fa-eye-slash","fa-eyedropper","fa-facebook","fa-facebook-square","fa-fast-backward","fa-fast-forward","fa-fax","fa-female","fa-fighter-jet","fa-file","fa-file-archive-o","fa-file-audio-o","fa-file-code-o","fa-file-excel-o","fa-file-image-o","fa-file-movie-o","fa-file-o","fa-file-pdf-o","fa-file-photo-o","fa-file-picture-o","fa-file-powerpoint-o","fa-file-sound-o","fa-file-text","fa-file-text-o","fa-file-video-o","fa-file-word-o","fa-file-zip-o","fa-files-o","fa-film","fa-filter","fa-fire","fa-fire-extinguisher","fa-flag","fa-flag-checkered","fa-flag-o","fa-flash","fa-flask","fa-flickr","fa-floppy-o","fa-folder","fa-folder-o","fa-folder-open","fa-folder-open-o","fa-font","fa-forward","fa-foursquare","fa-frown-o","fa-futbol-o","fa-gamepad","fa-gavel","fa-gbp","fa-ge","fa-gear","fa-gears","fa-gift","fa-git","fa-git-square","fa-github","fa-github-alt","fa-github-square","fa-gittip","fa-glass","fa-globe","fa-google","fa-google-plus","fa-google-plus-square","fa-google-wallet","fa-graduation-cap","fa-group","fa-h-square","fa-hacker-news","fa-hand-o-down","fa-hand-o-left","fa-hand-o-right","fa-hand-o-up","fa-hdd-o","fa-header","fa-headphones","fa-heart","fa-heart-o","fa-history","fa-home","fa-hospital-o","fa-html5","fa-ils","fa-image","fa-inbox","fa-indent","fa-info","fa-info-circle","fa-inr","fa-instagram","fa-institution","fa-ioxhost","fa-italic","fa-joomla","fa-jpy","fa-jsfiddle","fa-key","fa-keyboard-o","fa-krw","fa-language","fa-laptop","fa-lastfm","fa-lastfm-square","fa-leaf","fa-legal","fa-lemon-o","fa-level-down","fa-level-up","fa-life-bouy","fa-life-buoy","fa-life-ring","fa-life-saver","fa-lightbulb-o","fa-line-chart","fa-link","fa-linkedin","fa-linkedin-square","fa-linux","fa-list","fa-list-alt","fa-list-ol","fa-list-ul","fa-location-arrow","fa-lock","fa-long-arrow-down","fa-long-arrow-left","fa-long-arrow-right","fa-long-arrow-up","fa-magic","fa-magnet","fa-mail-forward","fa-mail-reply","fa-mail-reply-all","fa-male","fa-map-marker","fa-maxcdn","fa-meanpath","fa-medkit","fa-meh-o","fa-microphone","fa-microphone-slash","fa-minus","fa-minus-circle","fa-minus-square","fa-minus-square-o","fa-mobile","fa-mobile-phone","fa-money","fa-moon-o","fa-mortar-board","fa-music","fa-navicon","fa-newspaper-o","fa-openid","fa-outdent","fa-pagelines","fa-paint-brush","fa-paper-plane","fa-paper-plane-o","fa-paperclip","fa-paragraph","fa-paste","fa-pause","fa-paw","fa-paypal","fa-pencil","fa-pencil-square","fa-pencil-square-o","fa-phone","fa-phone-square","fa-photo","fa-picture-o","fa-pie-chart","fa-pied-piper","fa-pied-piper-alt","fa-pinterest","fa-pinterest-square","fa-plane","fa-play","fa-play-circle","fa-play-circle-o","fa-plug","fa-plus","fa-plus-circle","fa-plus-square","fa-plus-square-o","fa-power-off","fa-print","fa-puzzle-piece","fa-qq","fa-qrcode","fa-question","fa-question-circle","fa-quote-left","fa-quote-right","fa-ra","fa-random","fa-rebel","fa-recycle","fa-reddit","fa-reddit-square","fa-refresh","fa-remove","fa-renren","fa-reorder","fa-repeat","fa-reply","fa-reply-all","fa-retweet","fa-rmb","fa-road","fa-rocket","fa-rotate-left","fa-rotate-right","fa-rouble","fa-rss","fa-rss-square","fa-rub","fa-ruble","fa-rupee","fa-save","fa-scissors","fa-search","fa-search-minus","fa-search-plus","fa-send","fa-send-o","fa-share","fa-share-alt","fa-share-alt-square","fa-share-square","fa-share-square-o","fa-shekel","fa-sheqel","fa-shield","fa-shopping-cart","fa-sign-in","fa-sign-out","fa-signal","fa-sitemap","fa-skype","fa-slack","fa-sliders","fa-slideshare","fa-smile-o","fa-soccer-ball-o","fa-sort","fa-sort-alpha-asc","fa-sort-alpha-desc","fa-sort-amount-asc","fa-sort-amount-desc","fa-sort-asc","fa-sort-desc","fa-sort-down","fa-sort-numeric-asc","fa-sort-numeric-desc","fa-sort-up","fa-soundcloud","fa-space-shuttle","fa-spinner","fa-spoon","fa-spotify","fa-square","fa-square-o","fa-stack-exchange","fa-stack-overflow","fa-star","fa-star-half","fa-star-half-empty","fa-star-half-full","fa-star-half-o","fa-star-o","fa-steam","fa-steam-square","fa-step-backward","fa-step-forward","fa-stethoscope","fa-stop","fa-strikethrough","fa-stumbleupon","fa-stumbleupon-circle","fa-subscript","fa-suitcase","fa-sun-o","fa-superscript","fa-support","fa-table","fa-tablet","fa-tachometer","fa-tag","fa-tags","fa-tasks","fa-taxi","fa-tencent-weibo","fa-terminal","fa-text-height","fa-text-width","fa-th","fa-th-large","fa-th-list","fa-thumb-tack","fa-thumbs-down","fa-thumbs-o-down","fa-thumbs-o-up","fa-thumbs-up","fa-ticket","fa-times","fa-times-circle","fa-times-circle-o","fa-tint","fa-toggle-down","fa-toggle-left","fa-toggle-off","fa-toggle-on","fa-toggle-right","fa-toggle-up","fa-trash","fa-trash-o","fa-tree","fa-trello","fa-trophy","fa-truck","fa-try","fa-tty","fa-tumblr","fa-tumblr-square","fa-turkish-lira","fa-twitch","fa-twitter","fa-twitter-square","fa-umbrella","fa-underline","fa-undo","fa-university","fa-unlink","fa-unlock","fa-unlock-alt","fa-unsorted","fa-upload","fa-usd","fa-user","fa-user-md","fa-users","fa-video-camera","fa-vimeo-square","fa-vine","fa-vk","fa-volume-down","fa-volume-off","fa-volume-up","fa-warning","fa-wechat","fa-weibo","fa-weixin","fa-wheelchair","fa-wifi","fa-windows","fa-won","fa-wordpress","fa-wrench","fa-xing","fa-xing-square","fa-yahoo","fa-yelp","fa-yen","fa-youtube","fa-youtube-play","fa-youtube-square"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
json/foundation-icons.json
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
["fi-address-book","fi-alert","fi-align-center","fi-align-justify","fi-align-left","fi-align-right","fi-anchor","fi-annotate","fi-archive","fi-arrow-down","fi-arrow-left","fi-arrow-right","fi-arrow-up","fi-arrows-compress","fi-arrows-expand","fi-arrows-in","fi-arrows-out","fi-asl","fi-asterisk","fi-at-sign","fi-background-color","fi-battery-empty","fi-battery-full","fi-battery-half","fi-bitcoin","fi-bitcoin-circle","fi-blind","fi-bluetooth","fi-bold","fi-book","fi-book-bookmark","fi-bookmark","fi-braille","fi-burst","fi-burst-new","fi-burst-sale","fi-calendar","fi-camera","fi-check","fi-checkbox","fi-clipboard","fi-clipboard-notes","fi-clipboard-pencil","fi-clock","fi-closed-caption","fi-cloud","fi-comment","fi-comment-minus","fi-comment-quotes","fi-comment-video","fi-comments","fi-compass","fi-contrast","fi-credit-card","fi-crop","fi-crown","fi-css3","fi-database","fi-die-five","fi-die-four","fi-die-one","fi-die-six","fi-die-three","fi-die-two","fi-dislike","fi-dollar","fi-dollar-bill","fi-download","fi-eject","fi-elevator","fi-euro","fi-eye","fi-fast-forward","fi-female","fi-female-symbol","fi-filter","fi-first-aid","fi-flag","fi-folder","fi-folder-add","fi-folder-lock","fi-foot","fi-foundation","fi-graph-bar","fi-graph-horizontal","fi-graph-pie","fi-graph-trend","fi-guide-dog","fi-hearing-aid","fi-heart","fi-home","fi-html5","fi-indent-less","fi-indent-more","fi-info","fi-italic","fi-key","fi-laptop","fi-layout","fi-lightbulb","fi-like","fi-link","fi-list","fi-list-bullet","fi-list-number","fi-list-thumbnails","fi-lock","fi-loop","fi-magnifying-glass","fi-mail","fi-male","fi-male-female","fi-male-symbol","fi-map","fi-marker","fi-megaphone","fi-microphone","fi-minus","fi-minus-circle","fi-mobile","fi-mobile-signal","fi-monitor","fi-mountains","fi-music","fi-next","fi-no-dogs","fi-no-smoking","fi-page","fi-page-add","fi-page-copy","fi-page-csv","fi-page-delete","fi-page-doc","fi-page-edit","fi-page-export","fi-page-export-csv","fi-page-export-doc","fi-page-export-pdf","fi-page-filled","fi-page-multiple","fi-page-pdf","fi-page-remove","fi-page-search","fi-paint-bucket","fi-paperclip","fi-pause","fi-paw","fi-paypal","fi-pencil","fi-photo","fi-play","fi-play-circle","fi-play-video","fi-plus","fi-pound","fi-power","fi-previous","fi-price-tag","fi-pricetag-multiple","fi-print","fi-prohibited","fi-projection-screen","fi-puzzle","fi-quote","fi-record","fi-refresh","fi-results","fi-results-demographics","fi-rewind","fi-rewind-ten","fi-rss","fi-safety-cone","fi-save","fi-share","fi-sheriff-badge","fi-shield","fi-shopping-bag","fi-shopping-cart","fi-shuffle","fi-skull","fi-social-500px","fi-social-adobe","fi-social-amazon","fi-social-android","fi-social-apple","fi-social-behance","fi-social-bing","fi-social-blogger","fi-social-delicious","fi-social-designer-news","fi-social-deviant-art","fi-social-digg","fi-social-dribbble","fi-social-drive","fi-social-dropbox","fi-social-evernote","fi-social-facebook","fi-social-flickr","fi-social-forrst","fi-social-foursquare","fi-social-game-center","fi-social-github","fi-social-google-plus","fi-social-hacker-news","fi-social-hi5","fi-social-instagram","fi-social-joomla","fi-social-lastfm","fi-social-linkedin","fi-social-medium","fi-social-myspace","fi-social-orkut","fi-social-path","fi-social-picasa","fi-social-pinterest","fi-social-rdio","fi-social-reddit","fi-social-skillshare","fi-social-skype","fi-social-smashing-mag","fi-social-snapchat","fi-social-spotify","fi-social-squidoo","fi-social-stack-overflow","fi-social-steam","fi-social-stumbleupon","fi-social-treehouse","fi-social-tumblr","fi-social-twitter","fi-social-vimeo","fi-social-windows","fi-social-xbox","fi-social-yahoo","fi-social-yelp","fi-social-youtube","fi-social-zerply","fi-social-zurb","fi-sound","fi-star","fi-stop","fi-strikethrough","fi-subscript","fi-superscript","fi-tablet-landscape","fi-tablet-portrait","fi-target","fi-target-two","fi-telephone","fi-telephone-accessible","fi-text-color","fi-thumbnails","fi-ticket","fi-torso","fi-torso-business","fi-torso-female","fi-torsos","fi-torsos-all","fi-torsos-all-female","fi-torsos-female-male","fi-torsos-male-female","fi-trash","fi-trees","fi-trophy","fi-underline","fi-universal-access","fi-unlink","fi-unlock","fi-upload","fi-upload-cloud","fi-usb","fi-video","fi-volume","fi-volume-none","fi-volume-strike","fi-web","fi-wheelchair","fi-widget","fi-wrench","fi-x","fi-x-circle","fi-yen","fi-zoom-in","fi-zoom-out"]
|