Initial commit

This commit is contained in:
Alexander Agnarson 2016-02-03 11:28:05 +01:00
commit 1559ebf611
149 changed files with 49510 additions and 0 deletions

23
404.php Normal file
View file

@ -0,0 +1,23 @@
<?php get_header(); ?>
<section class="content">
<?php get_template_part('inc/page-title'); ?>
<div class="pad group">
<div class="notebox">
<?php get_search_form(); ?>
</div>
<div class="entry">
<p><?php _e( 'The page you are trying to reach does not exist, or has been moved. Please use the menus or the search box to find what you are looking for.', 'blogline' ); ?></p>
</div>
</div><!--/.pad-->
</section><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>

47
archive.php Normal file
View file

@ -0,0 +1,47 @@
<?php get_header(); ?>
<section class="content">
<?php get_template_part('inc/page-title'); ?>
<?php if ((category_description() != '') && !is_paged()) : ?>
<div class="pad pad-top group">
<div class="notebox">
<?php echo category_description(); ?>
</div>
</div><!--/.pad-->
<?php endif; ?>
<?php if ( have_posts() ) : ?>
<?php if ( ot_get_option('blog-layout') == 'blog-grid' ) : ?>
<div class="post-grid group">
<?php $i = 1; echo '<div class="post-row">'; while ( have_posts() ): the_post(); ?>
<?php get_template_part('content-grid'); ?>
<?php if($i % 2 == 0) { echo '</div><div class="post-row">'; } $i++; endwhile; echo '</div>'; ?>
</div><!--/.post-list-->
<?php elseif ( ot_get_option('blog-layout') == 'blog-list' ) : ?>
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content-list'); ?>
<?php endwhile; ?>
<?php else: ?>
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php get_template_part('inc/pagination'); ?>
<?php endif; ?>
</section><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>

7
changelog.txt Normal file
View file

@ -0,0 +1,7 @@
Theme : Blogline
Version : 1.0.0
Author : Alexander "Alx" Agnarson - http://alxmedia.se
February 3 2016 - 1.0.0
===========================================================
- Theme released

61
comments.php Normal file
View file

@ -0,0 +1,61 @@
<?php if ( post_password_required() ) { return; } ?>
<section id="comments" class="themeform">
<?php if ( have_comments() ) : global $wp_query; ?>
<h3 class="heading"><?php comments_number( __( 'No Responses', 'blogline' ), __( '1 Response', 'blogline' ), __( '% Responses', 'blogline' ) ); ?></h3>
<ul class="comment-tabs group">
<li class="active"><a href="#commentlist-container"><i class="fa fa-comments-o"></i><?php _e( 'Comments', 'blogline' ); ?><span><?php echo count($wp_query->comments_by_type['comment']); ?></span></a></li>
<li><a href="#pinglist-container"><i class="fa fa-share"></i><?php _e( 'Pingbacks', 'blogline' ); ?><span><?php echo count($wp_query->comments_by_type['pings']); ?></span></a></li>
</ul>
<?php if ( ! empty( $comments_by_type['comment'] ) ) { ?>
<div id="commentlist-container" class="comment-tab">
<ol class="commentlist">
<?php wp_list_comments( 'avatar_size=96&type=comment' ); ?>
</ol><!--/.commentlist-->
<?php if ( get_comment_pages_count() > 1 && get_option('page_comments') ) : ?>
<nav class="comments-nav group">
<div class="nav-previous"><?php previous_comments_link(); ?></div>
<div class="nav-next"><?php next_comments_link(); ?></div>
</nav><!--/.comments-nav-->
<?php endif; ?>
</div>
<?php } ?>
<?php if ( ! empty( $comments_by_type['pings'] ) ) { ?>
<div id="pinglist-container" class="comment-tab">
<ol class="pinglist">
<?php // not calling wp_list_comments twice, as it breaks pagination
$pings = $comments_by_type['pings'];
foreach ($pings as $comment) { ?>
<li class="ping">
<div class="ping-link"><?php comment_author_link($comment); ?></div>
<div class="ping-meta"><?php comment_date( get_option( 'date_format' ), $comment ); ?></div>
<div class="ping-content"><?php comment_text($comment); ?></div>
</li>
<?php } ?>
</ol><!--/.pinglist-->
</div>
<?php } ?>
<?php else: // if there are no comments yet ?>
<?php if (comments_open()) : ?>
<!-- comments open, no comments -->
<?php else : ?>
<!-- comments closed, no comments -->
<?php endif; ?>
<?php endif; ?>
<?php if ( comments_open() ) { comment_form(); } ?>
</section><!--/#comments-->

30
content-featured.php Normal file
View file

@ -0,0 +1,30 @@
<article id="post-<?php the_ID(); ?>" <?php post_class('group'); ?>>
<div class="post-inner post-hover">
<div class="post-thumbnail">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php if ( has_post_thumbnail() ): ?>
<?php the_post_thumbnail('thumb-medium'); ?>
<?php elseif ( ot_get_option('placeholder') != 'off' ): ?>
<img src="<?php echo get_template_directory_uri(); ?>/img/thumb-medium.png" alt="<?php the_title(); ?>" />
<?php endif; ?>
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-play"></i></span>'; ?>
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-volume-up"></i></span>'; ?>
<?php if ( is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-star"></i></span>'; ?>
</a>
<?php if ( comments_open() && ( ot_get_option( 'comment-count' ) != 'off' ) ): ?>
<a class="post-comments" href="<?php comments_link(); ?>"><span><i class="fa fa-comments-o"></i><?php comments_number( '0', '1', '%' ); ?></span></a>
<?php endif; ?>
</div><!--/.post-thumbnail-->
<h3 class="post-title">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</h3><!--/.post-title-->
<ul class="post-meta group">
<li><?php the_time('j M, Y'); ?></li>
</ul><!--/.post-meta-->
</div><!--/.post-inner-->
</article><!--/.post-->

40
content-grid.php Normal file
View file

@ -0,0 +1,40 @@
<article id="post-<?php the_ID(); ?>" <?php post_class('group post-grid'); ?>>
<div class="post-inner post-hover">
<div class="post-thumbnail">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php if ( has_post_thumbnail() ): ?>
<?php the_post_thumbnail('thumb-medium'); ?>
<?php elseif ( ot_get_option('placeholder') != 'off' ): ?>
<img src="<?php echo get_template_directory_uri(); ?>/img/thumb-medium.png" alt="<?php the_title(); ?>" />
<?php endif; ?>
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-play"></i></span>'; ?>
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-volume-up"></i></span>'; ?>
<?php if ( is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-star"></i></span>'; ?>
</a>
<?php if ( comments_open() && ( ot_get_option( 'comment-count' ) != 'off' ) ): ?>
<a class="post-comments" href="<?php comments_link(); ?>"><span><i class="fa fa-comments-o"></i><?php comments_number( '0', '1', '%' ); ?></span></a>
<?php endif; ?>
</div><!--/.post-thumbnail-->
<div class="post-content">
<h2 class="post-title">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</h2><!--/.post-title-->
<ul class="post-meta group">
<li><?php the_category(' / '); ?></li>
<li><i class="fa fa-clock-o"></i><?php the_time('j M, Y'); ?></li>
</ul><!--/.post-meta-->
<?php if (ot_get_option('excerpt-length') != '0'): ?>
<div class="entry excerpt">
<?php the_excerpt(); ?>
</div><!--/.entry-->
<?php endif; ?>
</div><!--/.post-content-->
</div><!--/.post-inner-->
</article><!--/.post-->

40
content-list.php Normal file
View file

@ -0,0 +1,40 @@
<article id="post-<?php the_ID(); ?>" <?php post_class('group post-list'); ?>>
<div class="post-inner post-hover">
<div class="post-thumbnail">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php if ( has_post_thumbnail() ): ?>
<?php the_post_thumbnail('thumb-list'); ?>
<?php elseif ( ot_get_option('placeholder') != 'off' ): ?>
<img src="<?php echo get_template_directory_uri(); ?>/img/thumb-list.png" alt="<?php the_title(); ?>" />
<?php endif; ?>
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-play"></i></span>'; ?>
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-volume-up"></i></span>'; ?>
<?php if ( is_sticky() ) echo'<span class="thumb-icon"><i class="fa fa-star"></i></span>'; ?>
</a>
<?php if ( comments_open() && ( ot_get_option( 'comment-count' ) != 'off' ) ): ?>
<a class="post-comments" href="<?php comments_link(); ?>"><span><i class="fa fa-comments-o"></i><?php comments_number( '0', '1', '%' ); ?></span></a>
<?php endif; ?>
</div><!--/.post-thumbnail-->
<div class="post-content">
<h2 class="post-title">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</h2><!--/.post-title-->
<ul class="post-meta group">
<li><?php the_category(' / '); ?></li>
<li><i class="fa fa-clock-o"></i><?php the_time('j M, Y'); ?></li>
</ul><!--/.post-meta-->
<?php if (ot_get_option('excerpt-length') != '0'): ?>
<div class="entry excerpt">
<?php the_excerpt(); ?>
</div><!--/.entry-->
<?php endif; ?>
</div><!--/.post-content-->
</div><!--/.post-inner-->
</article><!--/.post-->

32
content.php Normal file
View file

@ -0,0 +1,32 @@
<?php $format = get_post_format(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('group'); ?>>
<div class="pad group">
<?php if ( ot_get_option('format-icon') != 'off' ): ?>
<div class="format-circle"><a href="<?php echo get_post_format_link($format); ?>"><i class="fa"></i></a></div>
<?php endif; ?>
<h2 class="post-title">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</h2><!--/.post-title-->
<ul class="post-meta group">
<li><?php the_category(' / '); ?></li>
<li><i class="fa fa-clock-o"></i><?php the_time('j M, Y'); ?></li>
<?php if ( comments_open() ): ?><li><a href="<?php comments_link(); ?>"><i class="fa fa-comment"></i><?php comments_number( '0', '1', '%' ); ?></a></li><?php endif; ?>
</ul><!--/.post-meta-->
<?php get_template_part('inc/post-formats'); ?>
<div class="entry">
<?php
if ( is_search() ) { the_excerpt(); }
else the_content(__('Continue reading...','blogline'));
?>
</div><!--/.entry-->
</div><!--/.pad-->
</article><!--/.post-->

28
custom.css Normal file
View file

@ -0,0 +1,28 @@
/*
Add your custom styles in this file instead of style.css so it
is easier to update the theme. Simply copy an existing style
from style.css to this file, and modify it to your liking.
When you update your theme, backup this file and re-add it after.
*/
/* Global */
.mystyle {}
/* Tablet - 800px, 768px & 720px */
@media only screen and (min-width: 720px) and (max-width: 800px) {
.mystyle {}
}
/* Mobile - 480px & 320px */
@media only screen and (max-width: 719px) {
.mystyle {}
}
/* Mobile - 320px */
@media only screen and (max-width: 479px) {
.mystyle {}
}

BIN
fonts/FontAwesome.otf Normal file

Binary file not shown.

4
fonts/font-awesome.min.css vendored Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

View file

@ -0,0 +1,655 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="fontawesomeregular" horiz-adv-x="1536" >
<font-face units-per-em="1792" ascent="1536" descent="-256" />
<missing-glyph horiz-adv-x="448" />
<glyph unicode=" " horiz-adv-x="448" />
<glyph unicode="&#x09;" horiz-adv-x="448" />
<glyph unicode="&#xa0;" horiz-adv-x="448" />
<glyph unicode="&#xa8;" horiz-adv-x="1792" />
<glyph unicode="&#xa9;" horiz-adv-x="1792" />
<glyph unicode="&#xae;" horiz-adv-x="1792" />
<glyph unicode="&#xb4;" horiz-adv-x="1792" />
<glyph unicode="&#xc6;" horiz-adv-x="1792" />
<glyph unicode="&#xd8;" horiz-adv-x="1792" />
<glyph unicode="&#x2000;" horiz-adv-x="768" />
<glyph unicode="&#x2001;" horiz-adv-x="1537" />
<glyph unicode="&#x2002;" horiz-adv-x="768" />
<glyph unicode="&#x2003;" horiz-adv-x="1537" />
<glyph unicode="&#x2004;" horiz-adv-x="512" />
<glyph unicode="&#x2005;" horiz-adv-x="384" />
<glyph unicode="&#x2006;" horiz-adv-x="256" />
<glyph unicode="&#x2007;" horiz-adv-x="256" />
<glyph unicode="&#x2008;" horiz-adv-x="192" />
<glyph unicode="&#x2009;" horiz-adv-x="307" />
<glyph unicode="&#x200a;" horiz-adv-x="85" />
<glyph unicode="&#x202f;" horiz-adv-x="307" />
<glyph unicode="&#x205f;" horiz-adv-x="384" />
<glyph unicode="&#x2122;" horiz-adv-x="1792" />
<glyph unicode="&#x221e;" horiz-adv-x="1792" />
<glyph unicode="&#x2260;" horiz-adv-x="1792" />
<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
<glyph unicode="&#xf000;" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
<glyph unicode="&#xf001;" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf002;" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
<glyph unicode="&#xf003;" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf004;" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
<glyph unicode="&#xf005;" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
<glyph unicode="&#xf006;" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
<glyph unicode="&#xf007;" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf008;" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf009;" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf00a;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf00b;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf00c;" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
<glyph unicode="&#xf00d;" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
<glyph unicode="&#xf00e;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
<glyph unicode="&#xf010;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
<glyph unicode="&#xf011;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
<glyph unicode="&#xf012;" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf013;" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
<glyph unicode="&#xf014;" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf015;" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
<glyph unicode="&#xf016;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z " />
<glyph unicode="&#xf017;" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf018;" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
<glyph unicode="&#xf019;" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
<glyph unicode="&#xf01a;" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01b;" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01c;" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
<glyph unicode="&#xf01d;" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01e;" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
<glyph unicode="&#xf021;" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf022;" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
<glyph unicode="&#xf023;" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf024;" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf025;" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
<glyph unicode="&#xf026;" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf027;" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
<glyph unicode="&#xf028;" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
<glyph unicode="&#xf029;" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
<glyph unicode="&#xf02a;" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
<glyph unicode="&#xf02b;" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
<glyph unicode="&#xf02c;" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
<glyph unicode="&#xf02d;" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
<glyph unicode="&#xf02e;" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
<glyph unicode="&#xf02f;" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
<glyph unicode="&#xf030;" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf031;" horiz-adv-x="1664" d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -4 -0.5 -13t-0.5 -13q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
<glyph unicode="&#xf032;" horiz-adv-x="1408" d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68.5 -0.5t67.5 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
<glyph unicode="&#xf033;" horiz-adv-x="1024" d="M0 -126l17 85q6 2 81.5 21.5t111.5 37.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
<glyph unicode="&#xf034;" horiz-adv-x="1792" d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
<glyph unicode="&#xf035;" d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
<glyph unicode="&#xf036;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf037;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf038;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf039;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf03a;" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03b;" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03c;" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03d;" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" />
<glyph unicode="&#xf03e;" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf040;" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
<glyph unicode="&#xf041;" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
<glyph unicode="&#xf042;" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf043;" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
<glyph unicode="&#xf044;" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
<glyph unicode="&#xf045;" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
<glyph unicode="&#xf046;" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
<glyph unicode="&#xf047;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf048;" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
<glyph unicode="&#xf049;" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
<glyph unicode="&#xf04a;" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
<glyph unicode="&#xf04b;" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
<glyph unicode="&#xf04c;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf04d;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf04e;" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
<glyph unicode="&#xf050;" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
<glyph unicode="&#xf051;" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
<glyph unicode="&#xf052;" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
<glyph unicode="&#xf053;" horiz-adv-x="1280" d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
<glyph unicode="&#xf054;" horiz-adv-x="1280" d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
<glyph unicode="&#xf055;" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf056;" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
<glyph unicode="&#xf057;" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf058;" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf059;" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05a;" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05b;" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf05c;" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05d;" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05e;" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
<glyph unicode="&#xf060;" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
<glyph unicode="&#xf061;" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
<glyph unicode="&#xf062;" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
<glyph unicode="&#xf063;" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
<glyph unicode="&#xf064;" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
<glyph unicode="&#xf065;" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf066;" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
<glyph unicode="&#xf067;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf068;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf069;" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
<glyph unicode="&#xf06a;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
<glyph unicode="&#xf06b;" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf06c;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
<glyph unicode="&#xf06d;" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
<glyph unicode="&#xf06e;" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
<glyph unicode="&#xf070;" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
<glyph unicode="&#xf071;" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
<glyph unicode="&#xf072;" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
<glyph unicode="&#xf073;" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf074;" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
<glyph unicode="&#xf075;" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf076;" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf077;" horiz-adv-x="1792" d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
<glyph unicode="&#xf078;" horiz-adv-x="1792" d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
<glyph unicode="&#xf079;" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
<glyph unicode="&#xf07a;" horiz-adv-x="1664" d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45 t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf07b;" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf07c;" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf07d;" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf07e;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf080;" horiz-adv-x="2048" d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
<glyph unicode="&#xf081;" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf082;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960z" />
<glyph unicode="&#xf083;" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf084;" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
<glyph unicode="&#xf085;" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
<glyph unicode="&#xf086;" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
<glyph unicode="&#xf087;" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
<glyph unicode="&#xf088;" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
<glyph unicode="&#xf089;" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
<glyph unicode="&#xf08a;" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
<glyph unicode="&#xf08b;" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
<glyph unicode="&#xf08c;" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf08d;" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
<glyph unicode="&#xf08e;" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf090;" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf091;" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf092;" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf093;" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
<glyph unicode="&#xf094;" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
<glyph unicode="&#xf095;" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
<glyph unicode="&#xf096;" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf097;" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
<glyph unicode="&#xf098;" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf099;" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
<glyph unicode="&#xf09a;" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
<glyph unicode="&#xf09b;" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf09c;" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
<glyph unicode="&#xf09d;" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
<glyph unicode="&#xf09e;" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
<glyph unicode="&#xf0a0;" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
<glyph unicode="&#xf0a1;" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
<glyph unicode="&#xf0a2;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
<glyph unicode="&#xf0a3;" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
<glyph unicode="&#xf0a4;" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
<glyph unicode="&#xf0a5;" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf0a6;" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
<glyph unicode="&#xf0a7;" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
<glyph unicode="&#xf0a8;" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0a9;" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0aa;" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0ab;" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0ac;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
<glyph unicode="&#xf0ad;" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
<glyph unicode="&#xf0ae;" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0b0;" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
<glyph unicode="&#xf0b1;" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf0b2;" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
<glyph unicode="&#xf0c0;" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
<glyph unicode="&#xf0c1;" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
<glyph unicode="&#xf0c2;" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
<glyph unicode="&#xf0c3;" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
<glyph unicode="&#xf0c4;" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
<glyph unicode="&#xf0c5;" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
<glyph unicode="&#xf0c6;" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
<glyph unicode="&#xf0c7;" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
<glyph unicode="&#xf0c8;" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0c9;" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0ca;" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf0cb;" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf0cc;" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
<glyph unicode="&#xf0cd;" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
<glyph unicode="&#xf0ce;" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
<glyph unicode="&#xf0d0;" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
<glyph unicode="&#xf0d1;" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d2;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0d3;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
<glyph unicode="&#xf0d4;" d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585 h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0d5;" horiz-adv-x="2304" d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62 q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" />
<glyph unicode="&#xf0d6;" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d7;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d8;" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0d9;" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf0da;" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0db;" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf0dc;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0dd;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0de;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0e0;" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
<glyph unicode="&#xf0e1;" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
<glyph unicode="&#xf0e2;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
<glyph unicode="&#xf0e3;" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
<glyph unicode="&#xf0e4;" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf0e5;" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf0e6;" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
<glyph unicode="&#xf0e7;" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
<glyph unicode="&#xf0e8;" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
<glyph unicode="&#xf0e9;" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
<glyph unicode="&#xf0ea;" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
<glyph unicode="&#xf0eb;" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
<glyph unicode="&#xf0ec;" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
<glyph unicode="&#xf0ed;" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
<glyph unicode="&#xf0ee;" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
<glyph unicode="&#xf0f0;" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf0f1;" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
<glyph unicode="&#xf0f2;" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
<glyph unicode="&#xf0f3;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
<glyph unicode="&#xf0f4;" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf0f5;" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f6;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
<glyph unicode="&#xf0f7;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f8;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f9;" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0fa;" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf0fb;" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" />
<glyph unicode="&#xf0fc;" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
<glyph unicode="&#xf0fd;" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0fe;" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf100;" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
<glyph unicode="&#xf101;" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf102;" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf103;" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf104;" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf105;" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf106;" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf107;" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf108;" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf109;" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
<glyph unicode="&#xf10a;" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf10b;" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf10c;" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf10d;" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
<glyph unicode="&#xf10e;" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
<glyph unicode="&#xf110;" horiz-adv-x="1792" d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5 q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf111;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf112;" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
<glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
<glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
<glyph unicode="&#xf116;" horiz-adv-x="1792" />
<glyph unicode="&#xf117;" horiz-adv-x="1792" />
<glyph unicode="&#xf118;" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf119;" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf11a;" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf11b;" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
<glyph unicode="&#xf11c;" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf11d;" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
<glyph unicode="&#xf11e;" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
<glyph unicode="&#xf120;" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" />
<glyph unicode="&#xf121;" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
<glyph unicode="&#xf122;" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
<glyph unicode="&#xf123;" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
<glyph unicode="&#xf124;" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
<glyph unicode="&#xf125;" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf126;" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
<glyph unicode="&#xf127;" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
<glyph unicode="&#xf128;" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
<glyph unicode="&#xf129;" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf12a;" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
<glyph unicode="&#xf12b;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" />
<glyph unicode="&#xf12c;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" />
<glyph unicode="&#xf12d;" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
<glyph unicode="&#xf12e;" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
<glyph unicode="&#xf130;" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
<glyph unicode="&#xf131;" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
<glyph unicode="&#xf132;" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
<glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
<glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
<glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf13a;" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf13b;" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
<glyph unicode="&#xf13c;" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
<glyph unicode="&#xf13d;" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf13e;" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" />
<glyph unicode="&#xf140;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf141;" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf142;" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf143;" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf144;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" />
<glyph unicode="&#xf145;" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
<glyph unicode="&#xf146;" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
<glyph unicode="&#xf147;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf148;" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
<glyph unicode="&#xf149;" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
<glyph unicode="&#xf14a;" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14b;" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14c;" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14d;" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14e;" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf150;" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf151;" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf152;" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf153;" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
<glyph unicode="&#xf154;" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
<glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
<glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
<glyph unicode="&#xf158;" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
<glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
<glyph unicode="&#xf15b;" d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
<glyph unicode="&#xf15c;" d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
<glyph unicode="&#xf15d;" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" />
<glyph unicode="&#xf15e;" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" />
<glyph unicode="&#xf160;" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf161;" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf162;" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
<glyph unicode="&#xf163;" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
<glyph unicode="&#xf164;" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
<glyph unicode="&#xf165;" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
<glyph unicode="&#xf166;" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf167;" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
<glyph unicode="&#xf168;" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" />
<glyph unicode="&#xf169;" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf16a;" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
<glyph unicode="&#xf16b;" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
<glyph unicode="&#xf16c;" d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" />
<glyph unicode="&#xf16d;" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
<glyph unicode="&#xf16e;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
<glyph unicode="&#xf170;" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf171;" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
<glyph unicode="&#xf172;" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf173;" horiz-adv-x="1024" d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 q78 2 134 29z" />
<glyph unicode="&#xf174;" d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf175;" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
<glyph unicode="&#xf176;" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
<glyph unicode="&#xf177;" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf178;" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
<glyph unicode="&#xf179;" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
<glyph unicode="&#xf17a;" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
<glyph unicode="&#xf17b;" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
<glyph unicode="&#xf17c;" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
<glyph unicode="&#xf17d;" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf17e;" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
<glyph unicode="&#xf180;" horiz-adv-x="1280" d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
<glyph unicode="&#xf181;" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf182;" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf183;" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf184;" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf185;" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
<glyph unicode="&#xf186;" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
<glyph unicode="&#xf187;" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
<glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
<glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
<glyph unicode="&#xf18b;" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
<glyph unicode="&#xf18c;" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
<glyph unicode="&#xf18d;" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
<glyph unicode="&#xf18e;" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf190;" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf191;" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf192;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf193;" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
<glyph unicode="&#xf194;" d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179 q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf195;" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf196;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf197;" horiz-adv-x="2176" d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
<glyph unicode="&#xf198;" horiz-adv-x="1664" d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
<glyph unicode="&#xf199;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 q-46 32 -141.5 92.5t-142.5 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
<glyph unicode="&#xf19a;" horiz-adv-x="1792" d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 t273 -182.5t331.5 -68z" />
<glyph unicode="&#xf19b;" horiz-adv-x="1792" d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
<glyph unicode="&#xf19c;" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
<glyph unicode="&#xf19d;" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
<glyph unicode="&#xf19e;" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
<glyph unicode="&#xf1a0;" d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5 t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" />
<glyph unicode="&#xf1a1;" horiz-adv-x="1792" d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26 t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37 q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191 t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf1a2;" d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54 q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83 q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1a3;" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1a4;" horiz-adv-x="1920" d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
<glyph unicode="&#xf1a5;" d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
<glyph unicode="&#xf1a6;" horiz-adv-x="2048" d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 v-369h123z" />
<glyph unicode="&#xf1a7;" d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1a8;" horiz-adv-x="2038" d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
<glyph unicode="&#xf1a9;" d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
<glyph unicode="&#xf1aa;" d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 t135.5 51q85 0 145 -60.5t60 -145.5z" />
<glyph unicode="&#xf1ab;" d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q106 35 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 q20 0 20 -21v-418z" />
<glyph unicode="&#xf1ac;" horiz-adv-x="1792" d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
<glyph unicode="&#xf1ad;" d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
<glyph unicode="&#xf1ae;" horiz-adv-x="1280" d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68t68 28t68 -28l228 -228h368l228 228q28 28 68 28t68 -28t28 -68t-28 -68zM864 1152q0 -93 -65.5 -158.5 t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf1b0;" horiz-adv-x="1664" d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 t100.5 134t141.5 55.5z" />
<glyph unicode="&#xf1b1;" horiz-adv-x="768" d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
<glyph unicode="&#xf1b2;" horiz-adv-x="1792" d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z " />
<glyph unicode="&#xf1b3;" horiz-adv-x="2304" d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-5 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 v-400l434 -186q36 -16 57 -48t21 -70z" />
<glyph unicode="&#xf1b4;" horiz-adv-x="2048" d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
<glyph unicode="&#xf1b5;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
<glyph unicode="&#xf1b6;" horiz-adv-x="1792" d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
<glyph unicode="&#xf1b7;" d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z " />
<glyph unicode="&#xf1b8;" horiz-adv-x="1792" d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
<glyph unicode="&#xf1b9;" horiz-adv-x="2048" d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf1ba;" horiz-adv-x="2048" d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
<glyph unicode="&#xf1bb;" d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
<glyph unicode="&#xf1bc;" d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1bd;" horiz-adv-x="1024" d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" />
<glyph unicode="&#xf1be;" horiz-adv-x="2304" d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236q0 -11 -8 -19 t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786q-13 2 -22 11t-9 22v899 q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
<glyph unicode="&#xf1c0;" d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
<glyph unicode="&#xf1c1;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 q-1 1 -1 2t-0.5 1.5t-0.5 1.5q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
<glyph unicode="&#xf1c2;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4l-3 21q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5t-3.5 -21.5l-4 -21h-4l-2 21 q-2 26 -7 46l-99 438h90v107h-300z" />
<glyph unicode="&#xf1c3;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 h-290v-107h68l189 -272l-194 -283h-68z" />
<glyph unicode="&#xf1c4;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
<glyph unicode="&#xf1c5;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
<glyph unicode="&#xf1c6;" d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
<glyph unicode="&#xf1c7;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
<glyph unicode="&#xf1c8;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
<glyph unicode="&#xf1c9;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
<glyph unicode="&#xf1ca;" d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
<glyph unicode="&#xf1cb;" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
<glyph unicode="&#xf1cc;" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" />
<glyph unicode="&#xf1cd;" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
<glyph unicode="&#xf1ce;" horiz-adv-x="1792" d="M1760 640q0 -176 -68.5 -336t-184 -275.5t-275.5 -184t-336 -68.5t-336 68.5t-275.5 184t-184 275.5t-68.5 336q0 213 97 398.5t265 305.5t374 151v-228q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5 t136.5 204t51 248.5q0 230 -145.5 406t-366.5 221v228q206 -31 374 -151t265 -305.5t97 -398.5z" />
<glyph unicode="&#xf1d0;" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
<glyph unicode="&#xf1d1;" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf1d2;" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1d3;" horiz-adv-x="1792" d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
<glyph unicode="&#xf1d4;" d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1d5;" horiz-adv-x="1280" d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
<glyph unicode="&#xf1d6;" horiz-adv-x="1792" d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
<glyph unicode="&#xf1d7;" horiz-adv-x="2048" d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
<glyph unicode="&#xf1d8;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
<glyph unicode="&#xf1d9;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 l863 639l-478 -797z" />
<glyph unicode="&#xf1da;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf1db;" d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1dc;" horiz-adv-x="1792" d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 q0 -26 -12 -48t-36 -22z" />
<glyph unicode="&#xf1dd;" horiz-adv-x="1280" d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
<glyph unicode="&#xf1de;" d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
<glyph unicode="&#xf1e0;" d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
<glyph unicode="&#xf1e1;" d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1e2;" horiz-adv-x="1792" d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
<glyph unicode="&#xf1e3;" horiz-adv-x="1792" d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
<glyph unicode="&#xf1e4;" horiz-adv-x="1792" d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
<glyph unicode="&#xf1e5;" horiz-adv-x="1792" d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf1e6;" horiz-adv-x="1792" d="M1755 1083q37 -37 37 -90t-37 -91l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234l401 400 q38 37 91 37t90 -37z" />
<glyph unicode="&#xf1e7;" horiz-adv-x="1792" d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q3 -2 11 -7 t11 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
<glyph unicode="&#xf1e8;" horiz-adv-x="1792" d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
<glyph unicode="&#xf1e9;" d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q70 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
<glyph unicode="&#xf1ea;" horiz-adv-x="2048" d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
<glyph unicode="&#xf1eb;" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
<glyph unicode="&#xf1ec;" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1ed;" d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246 q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598 q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" />
<glyph unicode="&#xf1ee;" horiz-adv-x="1792" d="M602 949q19 -61 31 -123.5t17 -141.5t-14 -159t-62 -145q-21 81 -67 157t-95.5 127t-99 90.5t-78.5 57.5t-33 19q-62 34 -81.5 100t14.5 128t101 81.5t129 -14.5q138 -83 238 -177zM927 1236q11 -25 20.5 -46t36.5 -100.5t42.5 -150.5t25.5 -179.5t0 -205.5t-47.5 -209.5 t-105.5 -208.5q-51 -72 -138 -72q-54 0 -98 31q-57 40 -69 109t28 127q60 85 81 195t13 199.5t-32 180.5t-39 128t-22 52q-31 63 -8.5 129.5t85.5 97.5q34 17 75 17q47 0 88.5 -25t63.5 -69zM1248 567q-17 -160 -72 -311q-17 131 -63 246q25 174 -5 361q-27 178 -94 342 q114 -90 212 -211q9 -37 15 -80q26 -179 7 -347zM1520 1440q9 -17 23.5 -49.5t43.5 -117.5t50.5 -178t34 -227.5t5 -269t-47 -300t-112.5 -323.5q-22 -48 -66 -75.5t-95 -27.5q-39 0 -74 16q-67 31 -92.5 100t4.5 136q58 126 90 257.5t37.5 239.5t-3.5 213.5t-26.5 180.5 t-38.5 138.5t-32.5 90t-15.5 32.5q-34 65 -11.5 135.5t87.5 104.5q37 20 81 20q49 0 91.5 -25.5t66.5 -70.5z" />
<glyph unicode="&#xf1f0;" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f1;" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f2;" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
<glyph unicode="&#xf1f3;" horiz-adv-x="2304" d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
<glyph unicode="&#xf1f4;" horiz-adv-x="2304" d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16 t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76 q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59 t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489 l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66 q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f5;" horiz-adv-x="2304" d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f6;" horiz-adv-x="2048" d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 l418 363q10 8 23.5 7t21.5 -11z" />
<glyph unicode="&#xf1f7;" horiz-adv-x="2048" d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
<glyph unicode="&#xf1f8;" horiz-adv-x="1408" d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf1f9;" d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1fa;" d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
<glyph unicode="&#xf1fb;" horiz-adv-x="1792" d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
<glyph unicode="&#xf1fc;" horiz-adv-x="1792" d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
<glyph unicode="&#xf1fd;" horiz-adv-x="1792" d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11t55.5 -11t52.5 -38q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5t47 37.5 q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-35 0 -55.5 11t-52.5 38q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38t-58 27 t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448h256v448 h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51 t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
<glyph unicode="&#xf1fe;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
<glyph unicode="&#xf200;" horiz-adv-x="1792" d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf201;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 t9 -23z" />
<glyph unicode="&#xf202;" horiz-adv-x="1792" d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
<glyph unicode="&#xf203;" d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf204;" horiz-adv-x="2048" d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
<glyph unicode="&#xf205;" horiz-adv-x="2048" d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
<glyph unicode="&#xf206;" horiz-adv-x="2304" d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
<glyph unicode="&#xf207;" d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
<glyph unicode="&#xf208;" horiz-adv-x="2048" d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
<glyph unicode="&#xf209;" horiz-adv-x="1280" d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q18 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
<glyph unicode="&#xf20a;" horiz-adv-x="2048" d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
<glyph unicode="&#xf20b;" d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf20c;" d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
<glyph unicode="&#xf20d;" d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" />
<glyph unicode="&#xf20e;" horiz-adv-x="2048" d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335 q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5 q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360q2 0 4.5 -1t5.5 -2.5l5 -2.5l188 199v347l-187 194 q-13 -8 -29 -10zM986 1438h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13 zM552 226h402l64 66l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224 l213 -225zM1023 946l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196 l-48 -227l130 227h-82zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" />
<glyph unicode="&#xf210;" d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" />
<glyph unicode="&#xf211;" d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384 q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" />
<glyph unicode="&#xf212;" horiz-adv-x="2048" d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021 q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25 q209 0 374 -102q172 107 374 102z" />
<glyph unicode="&#xf213;" horiz-adv-x="2048" d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101 q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284 q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" />
<glyph unicode="&#xf214;" d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34 l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114 v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378 v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51 h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5 t-43 -34t-16.5 -53.5z" />
<glyph unicode="&#xf215;" horiz-adv-x="2048" d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832 q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" />
<glyph unicode="&#xf216;" horiz-adv-x="2048" d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126.5t-103.5 132.5t-108.5 126t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5 t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113 t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5 q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" />
<glyph unicode="&#xf217;" horiz-adv-x="1664" d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf218;" horiz-adv-x="1664" d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf219;" horiz-adv-x="2048" d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20 l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" />
<glyph unicode="&#xf21a;" horiz-adv-x="2048" d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83 q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314 v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" />
<glyph unicode="&#xf21b;" d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14 t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5 q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31 t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" />
<glyph unicode="&#xf21c;" horiz-adv-x="2304" d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5 t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105 l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226 t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" />
<glyph unicode="&#xf21d;" d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12 q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384 q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5 t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf21e;" horiz-adv-x="1792" d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221 q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124 t127 -344z" />
<glyph unicode="&#xf221;" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292 q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" />
<glyph unicode="&#xf222;" d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5 q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf223;" horiz-adv-x="1280" d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5 t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf224;" d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf225;" horiz-adv-x="1792" d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9 t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf226;" horiz-adv-x="1792" d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23 t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391 q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391 q0 -226 -154 -391q103 -57 218 -57z" />
<glyph unicode="&#xf227;" horiz-adv-x="1920" d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230 q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9 t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128 q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -29 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" />
<glyph unicode="&#xf228;" horiz-adv-x="2048" d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23 t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9 t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5 t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" />
<glyph unicode="&#xf229;" d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5 t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22a;" horiz-adv-x="1280" d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22 t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5 t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22b;" horiz-adv-x="2048" d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5 t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5 t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22c;" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22d;" horiz-adv-x="1280" d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123 t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" />
<glyph unicode="&#xf22e;" horiz-adv-x="1792" />
<glyph unicode="&#xf22f;" horiz-adv-x="1792" />
<glyph unicode="&#xf230;" d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" />
<glyph unicode="&#xf231;" horiz-adv-x="1280" d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5 l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5 q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" />
<glyph unicode="&#xf232;" d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5 t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233 l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" />
<glyph unicode="&#xf233;" horiz-adv-x="1792" d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216 q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" />
<glyph unicode="&#xf234;" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5 t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" />
<glyph unicode="&#xf235;" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136 q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69 t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" />
<glyph unicode="&#xf236;" horiz-adv-x="2048" d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704 q-26 0 -45 -19t-19 -45v-384h1152z" />
<glyph unicode="&#xf237;" d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
<glyph unicode="&#xf238;" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56 t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
<glyph unicode="&#xf239;" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47 t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
<glyph unicode="&#xf23a;" horiz-adv-x="1792" d="M597 1115v-1173q0 -25 -12.5 -42.5t-36.5 -17.5q-17 0 -33 8l-465 233q-21 10 -35.5 33.5t-14.5 46.5v1140q0 20 10 34t29 14q14 0 44 -15l511 -256q3 -3 3 -5zM661 1014l534 -866l-534 266v600zM1792 996v-1054q0 -25 -14 -40.5t-38 -15.5t-47 13l-441 220zM1789 1116 q0 -3 -256.5 -419.5t-300.5 -487.5l-390 634l324 527q17 28 52 28q14 0 26 -6l541 -270q4 -2 4 -6z" />
<glyph unicode="&#xf23b;" d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" />
<glyph unicode="&#xf23c;" horiz-adv-x="2296" d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5 q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5 q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42 q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37 q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5 q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139 q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 4 5 8q16 18 60 23h13q5 18 19 30t33 8 t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132 q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132 q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-106 2 -211 0v1q-1 -27 2.5 -86 t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103 q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34l3 9v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4l-10 -2.5t-12 -2 l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-2 0 -3 -0.5t-3 -0.5h-3q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130t-73 70 q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -2 -1 -5t-1 -4q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150 q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12 q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" />
<glyph unicode="&#xf23d;" horiz-adv-x="2304" d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5 t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5 t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" />
<glyph unicode="&#xf23e;" horiz-adv-x="1792" d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348 t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23 t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512 q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" />
<glyph unicode="&#xf240;" horiz-adv-x="2304" d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113 v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf241;" horiz-adv-x="2304" d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf242;" horiz-adv-x="2304" d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf243;" horiz-adv-x="2304" d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf244;" horiz-adv-x="2304" d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23 v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf245;" horiz-adv-x="1280" d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" />
<glyph unicode="&#xf246;" horiz-adv-x="1024" d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" />
<glyph unicode="&#xf247;" horiz-adv-x="2048" d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128 h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" />
<glyph unicode="&#xf248;" horiz-adv-x="2304" d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256 v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" />
<glyph unicode="&#xf249;" d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" />
<glyph unicode="&#xf24a;" d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68 z" />
<glyph unicode="&#xf24b;" horiz-adv-x="2304" d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5 t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88 t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90 t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf24c;" horiz-adv-x="2304" d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294 t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf24d;" horiz-adv-x="1792" d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113 zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf24e;" horiz-adv-x="2304" d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64 q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91 t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81zM896 384q0 -73 -46.5 -131t-117.5 -91t-144.5 -49.5t-139.5 -16.5 t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81z" />
<glyph unicode="&#xf250;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-77 -29 -149 -92.5 t-129.5 -152.5t-92.5 -210t-35 -253h1024q0 132 -35 253t-92.5 210t-129.5 152.5t-149 92.5q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
<glyph unicode="&#xf251;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -66 9 -128h1006q9 61 9 128zM1280 -128q0 130 -34 249.5t-90.5 208t-126.5 152t-146 94.5h-230q-76 -31 -146 -94.5t-126.5 -152t-90.5 -208t-34 -249.5h1024z" />
<glyph unicode="&#xf252;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -206 85 -384h854q85 178 85 384zM1223 192q-54 141 -145.5 241.5t-194.5 142.5h-230q-103 -42 -194.5 -142.5t-145.5 -241.5h910z" />
<glyph unicode="&#xf253;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-137 -51 -244 -196 h700q-107 145 -244 196q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
<glyph unicode="&#xf254;" d="M1504 -64q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472zM130 0q3 55 16 107t30 95t46 87t53.5 76t64.5 69.5t66 60t70.5 55t66.5 47.5t65 43q-43 28 -65 43t-66.5 47.5t-70.5 55t-66 60t-64.5 69.5t-53.5 76t-46 87 t-30 95t-16 107h1276q-3 -55 -16 -107t-30 -95t-46 -87t-53.5 -76t-64.5 -69.5t-66 -60t-70.5 -55t-66.5 -47.5t-65 -43q43 -28 65 -43t66.5 -47.5t70.5 -55t66 -60t64.5 -69.5t53.5 -76t46 -87t30 -95t16 -107h-1276zM1504 1536q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9 h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472z" />
<glyph unicode="&#xf255;" d="M768 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-128h-32v93q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-429l-32 30v172q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-224q0 -47 35 -82l310 -296q39 -39 39 -102q0 -26 19 -45t45 -19h640q26 0 45 19t19 45v25 q0 41 10 77l108 436q10 36 10 77v246q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-32h-32v125q0 40 -25 72.5t-64 40.5q-14 2 -23 2q-46 0 -79 -33t-33 -79v-128h-32v122q0 51 -32.5 89.5t-82.5 43.5q-5 1 -13 1zM768 1280q84 0 149 -50q57 34 123 34q59 0 111 -27 t86 -76q27 7 59 7q100 0 170 -71.5t70 -171.5v-246q0 -51 -13 -108l-109 -436q-6 -24 -6 -71q0 -80 -56 -136t-136 -56h-640q-84 0 -138 58.5t-54 142.5l-308 296q-76 73 -76 175v224q0 99 70.5 169.5t169.5 70.5q11 0 16 -1q6 95 75.5 160t164.5 65q52 0 98 -21 q72 69 174 69z" />
<glyph unicode="&#xf256;" horiz-adv-x="1792" d="M880 1408q-46 0 -79 -33t-33 -79v-656h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528v-256l-154 205q-38 51 -102 51q-53 0 -90.5 -37.5t-37.5 -90.5q0 -43 26 -77l384 -512q38 -51 102 -51h688q34 0 61 22t34 56l76 405q5 32 5 59v498q0 46 -33 79t-79 33t-79 -33 t-33 -79v-272h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528h-32v656q0 46 -33 79t-79 33zM880 1536q68 0 125.5 -35.5t88.5 -96.5q19 4 42 4q99 0 169.5 -70.5t70.5 -169.5v-17q105 6 180.5 -64t75.5 -175v-498q0 -40 -8 -83l-76 -404q-14 -79 -76.5 -131t-143.5 -52 h-688q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 106 75 181t181 75q78 0 128 -34v434q0 99 70.5 169.5t169.5 70.5q23 0 42 -4q31 61 88.5 96.5t125.5 35.5z" />
<glyph unicode="&#xf257;" horiz-adv-x="1792" d="M1073 -128h-177q-163 0 -226 141q-23 49 -23 102v5q-62 30 -98.5 88.5t-36.5 127.5q0 38 5 48h-261q-106 0 -181 75t-75 181t75 181t181 75h113l-44 17q-74 28 -119.5 93.5t-45.5 145.5q0 106 75 181t181 75q46 0 91 -17l628 -239h401q106 0 181 -75t75 -181v-668 q0 -88 -54 -157.5t-140 -90.5l-339 -85q-92 -23 -186 -23zM1024 583l-155 -71l-163 -74q-30 -14 -48 -41.5t-18 -60.5q0 -46 33 -79t79 -33q26 0 46 10l338 154q-49 10 -80.5 50t-31.5 90v55zM1344 272q0 46 -33 79t-79 33q-26 0 -46 -10l-290 -132q-28 -13 -37 -17 t-30.5 -17t-29.5 -23.5t-16 -29t-8 -40.5q0 -50 31.5 -82t81.5 -32q20 0 38 9l352 160q30 14 48 41.5t18 60.5zM1112 1024l-650 248q-24 8 -46 8q-53 0 -90.5 -37.5t-37.5 -90.5q0 -40 22.5 -73t59.5 -47l526 -200v-64h-640q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5 t90.5 -37.5h535l233 106v198q0 63 46 106l111 102h-69zM1073 0q82 0 155 19l339 85q43 11 70 45.5t27 78.5v668q0 53 -37.5 90.5t-90.5 37.5h-308l-136 -126q-36 -33 -36 -82v-296q0 -46 33 -77t79 -31t79 35t33 81v208h32v-208q0 -70 -57 -114q52 -8 86.5 -48.5t34.5 -93.5 q0 -42 -23 -78t-61 -53l-310 -141h91z" />
<glyph unicode="&#xf258;" horiz-adv-x="2048" d="M1151 1536q61 0 116 -28t91 -77l572 -781q118 -159 118 -359v-355q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v177l-286 143h-546q-80 0 -136 56t-56 136v32q0 119 84.5 203.5t203.5 84.5h420l42 128h-686q-100 0 -173.5 67.5t-81.5 166.5q-65 79 -65 182v32 q0 80 56 136t136 56h959zM1920 -64v355q0 157 -93 284l-573 781q-39 52 -103 52h-959q-26 0 -45 -19t-19 -45q0 -32 1.5 -49.5t9.5 -40.5t25 -43q10 31 35.5 50t56.5 19h832v-32h-832q-26 0 -45 -19t-19 -45q0 -44 3 -58q8 -44 44 -73t81 -29h640h91q40 0 68 -28t28 -68 q0 -15 -5 -30l-64 -192q-10 -29 -35 -47.5t-56 -18.5h-443q-66 0 -113 -47t-47 -113v-32q0 -26 19 -45t45 -19h561q16 0 29 -7l317 -158q24 -13 38.5 -36t14.5 -50v-197q0 -26 19 -45t45 -19h384q26 0 45 19t19 45z" />
<glyph unicode="&#xf259;" horiz-adv-x="2048" d="M816 1408q-48 0 -79.5 -34t-31.5 -82q0 -14 3 -28l150 -624h-26l-116 482q-9 38 -39.5 62t-69.5 24q-47 0 -79 -34t-32 -81q0 -11 4 -29q3 -13 39 -161t68 -282t32 -138v-227l-307 230q-34 26 -77 26q-52 0 -89.5 -36.5t-37.5 -88.5q0 -67 56 -110l507 -379 q34 -26 76 -26h694q33 0 59 20.5t34 52.5l100 401q8 30 10 88t9 86l116 478q3 12 3 26q0 46 -33 79t-80 33q-38 0 -69 -25.5t-40 -62.5l-99 -408h-26l132 547q3 14 3 28q0 47 -32 80t-80 33q-38 0 -68.5 -24t-39.5 -62l-145 -602h-127l-164 682q-9 38 -39.5 62t-68.5 24z M1461 -256h-694q-85 0 -153 51l-507 380q-50 38 -78.5 94t-28.5 118q0 105 75 179t180 74q25 0 49.5 -5.5t41.5 -11t41 -20.5t35 -23t38.5 -29.5t37.5 -28.5l-123 512q-7 35 -7 59q0 93 60 162t152 79q14 87 80.5 144.5t155.5 57.5q83 0 148 -51.5t85 -132.5l103 -428 l83 348q20 81 85 132.5t148 51.5q87 0 152.5 -54t82.5 -139q93 -10 155 -78t62 -161q0 -30 -7 -57l-116 -477q-5 -22 -5 -67q0 -51 -13 -108l-101 -401q-19 -75 -79.5 -122.5t-137.5 -47.5z" />
<glyph unicode="&#xf25a;" horiz-adv-x="1792" d="M640 1408q-53 0 -90.5 -37.5t-37.5 -90.5v-512v-384l-151 202q-41 54 -107 54q-52 0 -89 -38t-37 -90q0 -43 26 -77l384 -512q38 -51 102 -51h718q22 0 39.5 13.5t22.5 34.5l92 368q24 96 24 194v217q0 41 -28 71t-68 30t-68 -28t-28 -68h-32v61q0 48 -32 81.5t-80 33.5 q-46 0 -79 -33t-33 -79v-64h-32v90q0 55 -37 94.5t-91 39.5q-53 0 -90.5 -37.5t-37.5 -90.5v-96h-32v570q0 55 -37 94.5t-91 39.5zM640 1536q107 0 181.5 -77.5t74.5 -184.5v-220q22 2 32 2q99 0 173 -69q47 21 99 21q113 0 184 -87q27 7 56 7q94 0 159 -67.5t65 -161.5 v-217q0 -116 -28 -225l-92 -368q-16 -64 -68 -104.5t-118 -40.5h-718q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 105 74.5 180.5t179.5 75.5q71 0 130 -35v547q0 106 75 181t181 75zM768 128v384h-32v-384h32zM1024 128v384h-32v-384h32zM1280 128v384h-32 v-384h32z" />
<glyph unicode="&#xf25b;" d="M1288 889q60 0 107 -23q141 -63 141 -226v-177q0 -94 -23 -186l-85 -339q-21 -86 -90.5 -140t-157.5 -54h-668q-106 0 -181 75t-75 181v401l-239 628q-17 45 -17 91q0 106 75 181t181 75q80 0 145.5 -45.5t93.5 -119.5l17 -44v113q0 106 75 181t181 75t181 -75t75 -181 v-261q27 5 48 5q69 0 127.5 -36.5t88.5 -98.5zM1072 896q-33 0 -60.5 -18t-41.5 -48l-74 -163l-71 -155h55q50 0 90 -31.5t50 -80.5l154 338q10 20 10 46q0 46 -33 79t-79 33zM1293 761q-22 0 -40.5 -8t-29 -16t-23.5 -29.5t-17 -30.5t-17 -37l-132 -290q-10 -20 -10 -46 q0 -46 33 -79t79 -33q33 0 60.5 18t41.5 48l160 352q9 18 9 38q0 50 -32 81.5t-82 31.5zM128 1120q0 -22 8 -46l248 -650v-69l102 111q43 46 106 46h198l106 233v535q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-640h-64l-200 526q-14 37 -47 59.5t-73 22.5 q-53 0 -90.5 -37.5t-37.5 -90.5zM1180 -128q44 0 78.5 27t45.5 70l85 339q19 73 19 155v91l-141 -310q-17 -38 -53 -61t-78 -23q-53 0 -93.5 34.5t-48.5 86.5q-44 -57 -114 -57h-208v32h208q46 0 81 33t35 79t-31 79t-77 33h-296q-49 0 -82 -36l-126 -136v-308 q0 -53 37.5 -90.5t90.5 -37.5h668z" />
<glyph unicode="&#xf25c;" horiz-adv-x="1973" d="M857 992v-117q0 -13 -9.5 -22t-22.5 -9h-298v-812q0 -13 -9 -22.5t-22 -9.5h-135q-13 0 -22.5 9t-9.5 23v812h-297q-13 0 -22.5 9t-9.5 22v117q0 14 9 23t23 9h793q13 0 22.5 -9.5t9.5 -22.5zM1895 995l77 -961q1 -13 -8 -24q-10 -10 -23 -10h-134q-12 0 -21 8.5 t-10 20.5l-46 588l-189 -425q-8 -19 -29 -19h-120q-20 0 -29 19l-188 427l-45 -590q-1 -12 -10 -20.5t-21 -8.5h-135q-13 0 -23 10q-9 10 -9 24l78 961q1 12 10 20.5t21 8.5h142q20 0 29 -19l220 -520q10 -24 20 -51q3 7 9.5 24.5t10.5 26.5l221 520q9 19 29 19h141 q13 0 22 -8.5t10 -20.5z" />
<glyph unicode="&#xf25d;" horiz-adv-x="1792" d="M1042 833q0 88 -60 121q-33 18 -117 18h-123v-281h162q66 0 102 37t36 105zM1094 548l205 -373q8 -17 -1 -31q-8 -16 -27 -16h-152q-20 0 -28 17l-194 365h-155v-350q0 -14 -9 -23t-23 -9h-134q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h294q128 0 190 -24q85 -31 134 -109 t49 -180q0 -92 -42.5 -165.5t-115.5 -109.5q6 -10 9 -16zM896 1376q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM1792 640 q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf25e;" horiz-adv-x="1792" d="M605 303q153 0 257 104q14 18 3 36l-45 82q-6 13 -24 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13t-23.5 -14.5t-28.5 -13.5t-33.5 -9.5t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78 q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-148 0 -246 -96.5t-98 -240.5q0 -146 97 -241.5t247 -95.5zM1235 303q153 0 257 104q14 18 4 36l-45 82q-8 14 -25 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13t-23.5 -14.5t-28.5 -13.5t-33.5 -9.5 t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-147 0 -245.5 -96.5t-98.5 -240.5q0 -146 97 -241.5t247 -95.5zM896 1376 q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191 t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71z" />
<glyph unicode="&#xf260;" horiz-adv-x="2048" d="M736 736l384 -384l-384 -384l-672 672l672 672l168 -168l-96 -96l-72 72l-480 -480l480 -480l193 193l-289 287zM1312 1312l672 -672l-672 -672l-168 168l96 96l72 -72l480 480l-480 480l-193 -193l289 -287l-96 -96l-384 384z" />
<glyph unicode="&#xf261;" horiz-adv-x="1792" d="M717 182l271 271l-279 279l-88 -88l192 -191l-96 -96l-279 279l279 279l40 -40l87 87l-127 128l-454 -454zM1075 190l454 454l-454 454l-271 -271l279 -279l88 88l-192 191l96 96l279 -279l-279 -279l-40 40l-87 -88zM1792 640q0 -182 -71 -348t-191 -286t-286 -191 t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf262;" horiz-adv-x="2304" d="M651 539q0 -39 -27.5 -66.5t-65.5 -27.5q-39 0 -66.5 27.5t-27.5 66.5q0 38 27.5 65.5t66.5 27.5q38 0 65.5 -27.5t27.5 -65.5zM1805 540q0 -39 -27.5 -66.5t-66.5 -27.5t-66.5 27.5t-27.5 66.5t27.5 66t66.5 27t66.5 -27t27.5 -66zM765 539q0 79 -56.5 136t-136.5 57 t-136.5 -56.5t-56.5 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM1918 540q0 80 -56.5 136.5t-136.5 56.5q-79 0 -136 -56.5t-57 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM850 539q0 -116 -81.5 -197.5t-196.5 -81.5q-116 0 -197.5 82t-81.5 197 t82 196.5t197 81.5t196.5 -81.5t81.5 -196.5zM2004 540q0 -115 -81.5 -196.5t-197.5 -81.5q-115 0 -196.5 81.5t-81.5 196.5t81.5 196.5t196.5 81.5q116 0 197.5 -81.5t81.5 -196.5zM1040 537q0 191 -135.5 326.5t-326.5 135.5q-125 0 -231 -62t-168 -168.5t-62 -231.5 t62 -231.5t168 -168.5t231 -62q191 0 326.5 135.5t135.5 326.5zM1708 1110q-254 111 -556 111q-319 0 -573 -110q117 0 223 -45.5t182.5 -122.5t122 -183t45.5 -223q0 115 43.5 219.5t118 180.5t177.5 123t217 50zM2187 537q0 191 -135 326.5t-326 135.5t-326.5 -135.5 t-135.5 -326.5t135.5 -326.5t326.5 -135.5t326 135.5t135 326.5zM1921 1103h383q-44 -51 -75 -114.5t-40 -114.5q110 -151 110 -337q0 -156 -77 -288t-209 -208.5t-287 -76.5q-133 0 -249 56t-196 155q-47 -56 -129 -179q-11 22 -53.5 82.5t-74.5 97.5 q-80 -99 -196.5 -155.5t-249.5 -56.5q-155 0 -287 76.5t-209 208.5t-77 288q0 186 110 337q-9 51 -40 114.5t-75 114.5h365q149 100 355 156.5t432 56.5q224 0 421 -56t348 -157z" />
<glyph unicode="&#xf263;" horiz-adv-x="1280" d="M640 629q-188 0 -321 133t-133 320q0 188 133 321t321 133t321 -133t133 -321q0 -187 -133 -320t-321 -133zM640 1306q-92 0 -157.5 -65.5t-65.5 -158.5q0 -92 65.5 -157.5t157.5 -65.5t157.5 65.5t65.5 157.5q0 93 -65.5 158.5t-157.5 65.5zM1163 574q13 -27 15 -49.5 t-4.5 -40.5t-26.5 -38.5t-42.5 -37t-61.5 -41.5q-115 -73 -315 -94l73 -72l267 -267q30 -31 30 -74t-30 -73l-12 -13q-31 -30 -74 -30t-74 30q-67 68 -267 268l-267 -268q-31 -30 -74 -30t-73 30l-12 13q-31 30 -31 73t31 74l267 267l72 72q-203 21 -317 94 q-39 25 -61.5 41.5t-42.5 37t-26.5 38.5t-4.5 40.5t15 49.5q10 20 28 35t42 22t56 -2t65 -35q5 -4 15 -11t43 -24.5t69 -30.5t92 -24t113 -11q91 0 174 25.5t120 50.5l38 25q33 26 65 35t56 2t42 -22t28 -35z" />
<glyph unicode="&#xf264;" d="M927 956q0 -66 -46.5 -112.5t-112.5 -46.5t-112.5 46.5t-46.5 112.5t46.5 112.5t112.5 46.5t112.5 -46.5t46.5 -112.5zM1141 593q-10 20 -28 32t-47.5 9.5t-60.5 -27.5q-10 -8 -29 -20t-81 -32t-127 -20t-124 18t-86 36l-27 18q-31 25 -60.5 27.5t-47.5 -9.5t-28 -32 q-22 -45 -2 -74.5t87 -73.5q83 -53 226 -67l-51 -52q-142 -142 -191 -190q-22 -22 -22 -52.5t22 -52.5l9 -9q22 -22 52.5 -22t52.5 22l191 191q114 -115 191 -191q22 -22 52.5 -22t52.5 22l9 9q22 22 22 52.5t-22 52.5l-191 190l-52 52q141 14 225 67q67 44 87 73.5t-2 74.5 zM1092 956q0 134 -95 229t-229 95t-229 -95t-95 -229t95 -229t229 -95t229 95t95 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf265;" horiz-adv-x="1720" d="M1565 1408q65 0 110 -45.5t45 -110.5v-519q0 -176 -68 -336t-182.5 -275t-274 -182.5t-334.5 -67.5q-176 0 -335.5 67.5t-274.5 182.5t-183 275t-68 336v519q0 64 46 110t110 46h1409zM861 344q47 0 82 33l404 388q37 35 37 85q0 49 -34.5 83.5t-83.5 34.5q-47 0 -82 -33 l-323 -310l-323 310q-35 33 -81 33q-49 0 -83.5 -34.5t-34.5 -83.5q0 -51 36 -85l405 -388q33 -33 81 -33z" />
<glyph unicode="&#xf266;" horiz-adv-x="2304" d="M1494 -103l-295 695q-25 -49 -158.5 -305.5t-198.5 -389.5q-1 -1 -27.5 -0.5t-26.5 1.5q-82 193 -255.5 587t-259.5 596q-21 50 -66.5 107.5t-103.5 100.5t-102 43q0 5 -0.5 24t-0.5 27h583v-50q-39 -2 -79.5 -16t-66.5 -43t-10 -64q26 -59 216.5 -499t235.5 -540 q31 61 140 266.5t131 247.5q-19 39 -126 281t-136 295q-38 69 -201 71v50l513 -1v-47q-60 -2 -93.5 -25t-12.5 -69q33 -70 87 -189.5t86 -187.5q110 214 173 363q24 55 -10 79.5t-129 26.5q1 7 1 25v24q64 0 170.5 0.5t180 1t92.5 0.5v-49q-62 -2 -119 -33t-90 -81 l-213 -442q13 -33 127.5 -290t121.5 -274l441 1017q-14 38 -49.5 62.5t-65 31.5t-55.5 8v50l460 -4l1 -2l-1 -44q-139 -4 -201 -145q-526 -1216 -559 -1291h-49z" />
<glyph unicode="&#xf267;" horiz-adv-x="1792" d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640 q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5 t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5 t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5 t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191 t191 -286t71 -348z" />
<glyph unicode="&#xf268;" horiz-adv-x="1792" d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962 q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" />
<glyph unicode="&#xf269;" horiz-adv-x="1792" d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5 q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5 q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" />
<glyph unicode="&#xf26a;" horiz-adv-x="1792" d="M1493 1308q-165 110 -359 110q-155 0 -293 -73t-240 -200q-75 -93 -119.5 -218t-48.5 -266v-42q4 -141 48.5 -266t119.5 -218q102 -127 240 -200t293 -73q194 0 359 110q-121 -108 -274.5 -168t-322.5 -60q-29 0 -43 1q-175 8 -333 82t-272 193t-181 281t-67 339 q0 182 71 348t191 286t286 191t348 71h3q168 -1 320.5 -60.5t273.5 -167.5zM1792 640q0 -192 -77 -362.5t-213 -296.5q-104 -63 -222 -63q-137 0 -255 84q154 56 253.5 233t99.5 405q0 227 -99 404t-253 234q119 83 254 83q119 0 226 -65q135 -125 210.5 -295t75.5 -361z " />
<glyph unicode="&#xf26b;" horiz-adv-x="1792" d="M1792 599q0 -56 -7 -104h-1151q0 -146 109.5 -244.5t257.5 -98.5q99 0 185.5 46.5t136.5 130.5h423q-56 -159 -170.5 -281t-267.5 -188.5t-321 -66.5q-187 0 -356 83q-228 -116 -394 -116q-237 0 -237 263q0 115 45 275q17 60 109 229q199 360 475 606 q-184 -79 -427 -354q63 274 283.5 449.5t501.5 175.5q30 0 45 -1q255 117 433 117q64 0 116 -13t94.5 -40.5t66.5 -76.5t24 -115q0 -116 -75 -286q101 -182 101 -390zM1722 1239q0 83 -53 132t-137 49q-108 0 -254 -70q121 -47 222.5 -131.5t170.5 -195.5q51 135 51 216z M128 2q0 -86 48.5 -132.5t134.5 -46.5q115 0 266 83q-122 72 -213.5 183t-137.5 245q-98 -205 -98 -332zM632 715h728q-5 142 -113 237t-251 95q-144 0 -251.5 -95t-112.5 -237z" />
<glyph unicode="&#xf26c;" horiz-adv-x="2048" d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23 v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf26d;" horiz-adv-x="1792" d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34 h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100 q-68 175 -180 287z" />
<glyph unicode="&#xf26e;" d="M1401 -11l-6 -6q-113 -114 -259 -175q-154 -64 -317 -64q-165 0 -317 64q-148 63 -259 175q-113 112 -175 258q-42 103 -54 189q-4 28 48 36q51 8 56 -20q1 -1 1 -4q18 -90 46 -159q50 -124 152 -226q98 -98 226 -152q132 -56 276 -56q143 0 276 56q128 55 225 152l6 6 q10 10 25 6q12 -3 33 -22q36 -37 17 -58zM929 604l-66 -66l63 -63q21 -21 -7 -49q-17 -17 -32 -17q-10 0 -19 10l-62 61l-66 -66q-5 -5 -15 -5q-15 0 -31 16l-2 2q-18 15 -18 29q0 7 8 17l66 65l-66 66q-16 16 14 45q18 18 31 18q6 0 13 -5l65 -66l65 65q18 17 48 -13 q27 -27 11 -44zM1400 547q0 -118 -46 -228q-45 -105 -126 -186q-80 -80 -187 -126t-228 -46t-228 46t-187 126q-82 82 -125 186q-15 32 -15 40h-1q-9 27 43 44q50 16 60 -12q37 -99 97 -167h1v339v2q3 136 102 232q105 103 253 103q147 0 251 -103t104 -249 q0 -147 -104.5 -251t-250.5 -104q-58 0 -112 16q-28 11 -13 61q16 51 44 43l14 -3q14 -3 32.5 -6t30.5 -3q104 0 176 71.5t72 174.5q0 101 -72 171q-71 71 -175 71q-107 0 -178 -80q-64 -72 -64 -160v-413q110 -67 242 -67q96 0 185 36.5t156 103.5t103.5 155t36.5 183 q0 198 -141 339q-140 140 -339 140q-200 0 -340 -140q-53 -53 -77 -87l-2 -2q-8 -11 -13 -15.5t-21.5 -9.5t-38.5 3q-21 5 -36.5 16.5t-15.5 26.5v680q0 15 10.5 26.5t27.5 11.5h877q30 0 30 -55t-30 -55h-811v-483h1q40 42 102 84t108 61q109 46 231 46q121 0 228 -46 t187 -126q81 -81 126 -186q46 -112 46 -229zM1369 1128q9 -8 9 -18t-5.5 -18t-16.5 -21q-26 -26 -39 -26q-9 0 -16 7q-106 91 -207 133q-128 56 -276 56q-133 0 -262 -49q-27 -10 -45 37q-9 25 -8 38q3 16 16 20q130 57 299 57q164 0 316 -64q137 -58 235 -152z" />
<glyph unicode="&#xf270;" horiz-adv-x="1792" d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30 q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57 t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133 q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" />
<glyph unicode="&#xf271;" horiz-adv-x="1792" d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9 h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224 v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" />
<glyph unicode="&#xf272;" horiz-adv-x="1792" d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23 t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47 t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf273;" horiz-adv-x="1792" d="M1111 151l-46 -46q-9 -9 -22 -9t-23 9l-188 189l-188 -189q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22t9 23l189 188l-189 188q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l188 -188l188 188q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23l-188 -188l188 -188q9 -10 9 -23t-9 -22z M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf274;" horiz-adv-x="1792" d="M1303 572l-512 -512q-10 -9 -23 -9t-23 9l-288 288q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l220 -220l444 444q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23 t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47 t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf275;" horiz-adv-x="1792" d="M448 1536q26 0 45 -19t19 -45v-891l536 429q17 14 40 14q26 0 45 -19t19 -45v-379l536 429q17 14 40 14q26 0 45 -19t19 -45v-1152q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h384z" />
<glyph unicode="&#xf276;" horiz-adv-x="1024" d="M512 448q66 0 128 15v-655q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v655q61 -15 128 -15zM512 1536q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM512 1312q14 0 23 9t9 23t-9 23t-23 9q-146 0 -249 -103t-103 -249 q0 -14 9 -23t23 -9t23 9t9 23q0 119 84.5 203.5t203.5 84.5z" />
<glyph unicode="&#xf277;" horiz-adv-x="1792" d="M1745 1239q10 -10 10 -23t-10 -23l-141 -141q-28 -28 -68 -28h-1344q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h576v64q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-64h512q40 0 68 -28zM768 320h256v-512q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v512zM1600 768 q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-1344q-40 0 -68 28l-141 141q-10 10 -10 23t10 23l141 141q28 28 68 28h512v192h256v-192h576z" />
<glyph unicode="&#xf278;" horiz-adv-x="2048" d="M2020 1525q28 -20 28 -53v-1408q0 -20 -11 -36t-29 -23l-640 -256q-24 -11 -48 0l-616 246l-616 -246q-10 -5 -24 -5q-19 0 -36 11q-28 20 -28 53v1408q0 20 11 36t29 23l640 256q24 11 48 0l616 -246l616 246q32 13 60 -6zM736 1390v-1270l576 -230v1270zM128 1173 v-1270l544 217v1270zM1920 107v1270l-544 -217v-1270z" />
<glyph unicode="&#xf279;" horiz-adv-x="1792" d="M512 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472q0 20 17 28l480 256q7 4 15 4zM1760 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472 q0 20 17 28l480 256q7 4 15 4zM640 1536q8 0 14 -3l512 -256q18 -10 18 -29v-1472q0 -13 -9.5 -22.5t-22.5 -9.5q-8 0 -14 3l-512 256q-18 10 -18 29v1472q0 13 9.5 22.5t22.5 9.5z" />
<glyph unicode="&#xf27a;" horiz-adv-x="1792" d="M640 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 640q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-110 0 -211 18q-173 -173 -435 -229q-52 -10 -86 -13q-12 -1 -22 6t-13 18q-4 15 20 37q5 5 23.5 21.5t25.5 23.5t23.5 25.5t24 31.5t20.5 37 t20 48t14.5 57.5t12.5 72.5q-146 90 -229.5 216.5t-83.5 269.5q0 174 120 321.5t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf27b;" horiz-adv-x="1792" d="M640 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5 t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51 t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 130 71 248.5t191 204.5t286 136.5t348 50.5t348 -50.5t286 -136.5t191 -204.5t71 -248.5z" />
<glyph unicode="&#xf27c;" horiz-adv-x="1024" d="M512 345l512 295v-591l-512 -296v592zM0 640v-591l512 296zM512 1527v-591l-512 -296v591zM512 936l512 295v-591z" />
<glyph unicode="&#xf27d;" horiz-adv-x="1792" d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246 q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" />
<glyph unicode="&#xf27e;" d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" />
<glyph unicode="&#xf280;" d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72 h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275 l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" />
<glyph unicode="&#xf281;" horiz-adv-x="1792" d="M1792 690q0 -58 -29.5 -105.5t-79.5 -72.5q12 -46 12 -96q0 -155 -106.5 -287t-290.5 -208.5t-400 -76.5t-399.5 76.5t-290 208.5t-106.5 287q0 47 11 94q-51 25 -82 73.5t-31 106.5q0 82 58 140.5t141 58.5q85 0 145 -63q218 152 515 162l116 521q3 13 15 21t26 5 l369 -81q18 37 54 59.5t79 22.5q62 0 106 -43.5t44 -105.5t-44 -106t-106 -44t-105.5 43.5t-43.5 105.5l-334 74l-104 -472q300 -9 519 -160q58 61 143 61q83 0 141 -58.5t58 -140.5zM418 491q0 -62 43.5 -106t105.5 -44t106 44t44 106t-44 105.5t-106 43.5q-61 0 -105 -44 t-44 -105zM1228 136q11 11 11 26t-11 26q-10 10 -25 10t-26 -10q-41 -42 -121 -62t-160 -20t-160 20t-121 62q-11 10 -26 10t-25 -10q-11 -10 -11 -25.5t11 -26.5q43 -43 118.5 -68t122.5 -29.5t91 -4.5t91 4.5t122.5 29.5t118.5 68zM1225 341q62 0 105.5 44t43.5 106 q0 61 -44 105t-105 44q-62 0 -106 -43.5t-44 -105.5t44 -106t106 -44z" />
<glyph unicode="&#xf282;" horiz-adv-x="1792" d="M69 741h1q16 126 58.5 241.5t115 217t167.5 176t223.5 117.5t276.5 43q231 0 414 -105.5t294 -303.5q104 -187 104 -442v-188h-1125q1 -111 53.5 -192.5t136.5 -122.5t189.5 -57t213 -3t208 46.5t173.5 84.5v-377q-92 -55 -229.5 -92t-312.5 -38t-316 53 q-189 73 -311.5 249t-124.5 372q-3 242 111 412t325 268q-48 -60 -78 -125.5t-46 -159.5h635q8 77 -8 140t-47 101.5t-70.5 66.5t-80.5 41t-75 20.5t-56 8.5l-22 1q-135 -5 -259.5 -44.5t-223.5 -104.5t-176 -140.5t-138 -163.5z" />
<glyph unicode="&#xf283;" horiz-adv-x="2304" d="M0 32v608h2304v-608q0 -66 -47 -113t-113 -47h-1984q-66 0 -113 47t-47 113zM640 256v-128h384v128h-384zM256 256v-128h256v128h-256zM2144 1408q66 0 113 -47t47 -113v-224h-2304v224q0 66 47 113t113 47h1984z" />
<glyph unicode="&#xf284;" horiz-adv-x="1792" d="M1549 857q55 0 85.5 -28.5t30.5 -83.5t-34 -82t-91 -27h-136v-177h-25v398h170zM1710 267l-4 -11l-5 -10q-113 -230 -330.5 -366t-474.5 -136q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71q244 0 454.5 -124t329.5 -338l2 -4l8 -16 q-30 -15 -136.5 -68.5t-163.5 -84.5q-6 -3 -479 -268q384 -183 799 -366zM896 -234q250 0 462.5 132.5t322.5 357.5l-287 129q-72 -140 -206 -222t-292 -82q-151 0 -280 75t-204 204t-75 280t75 280t204 204t280 75t280 -73.5t204 -204.5l280 143q-116 208 -321 329 t-443 121q-119 0 -232.5 -31.5t-209 -87.5t-176.5 -137t-137 -176.5t-87.5 -209t-31.5 -232.5t31.5 -232.5t87.5 -209t137 -176.5t176.5 -137t209 -87.5t232.5 -31.5z" />
<glyph unicode="&#xf285;" horiz-adv-x="1792" d="M1427 827l-614 386l92 151h855zM405 562l-184 116v858l1183 -743zM1424 697l147 -95v-858l-532 335zM1387 718l-500 -802h-855l356 571z" />
<glyph unicode="&#xf286;" horiz-adv-x="1792" d="M640 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1152 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1664 496v-752h-640v320q0 80 -56 136t-136 56t-136 -56t-56 -136v-320h-640v752q0 16 16 16h96 q16 0 16 -16v-112h128v624q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h16v393q-32 19 -32 55q0 26 19 45t45 19t45 -19t19 -45q0 -36 -32 -55v-9h272q16 0 16 -16v-224q0 -16 -16 -16h-272v-128h16q16 0 16 -16v-112h128 v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-624h128v112q0 16 16 16h96q16 0 16 -16z" />
<glyph unicode="&#xf287;" horiz-adv-x="2304" d="M2288 731q16 -8 16 -27t-16 -27l-320 -192q-8 -5 -16 -5q-9 0 -16 4q-16 10 -16 28v128h-858q37 -58 83 -165q16 -37 24.5 -55t24 -49t27 -47t27 -34t31.5 -26t33 -8h96v96q0 14 9 23t23 9h320q14 0 23 -9t9 -23v-320q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v96h-96 q-32 0 -61 10t-51 23.5t-45 40.5t-37 46t-33.5 57t-28.5 57.5t-28 60.5q-23 53 -37 81.5t-36 65t-44.5 53.5t-46.5 17h-360q-22 -84 -91 -138t-157 -54q-106 0 -181 75t-75 181t75 181t181 75q88 0 157 -54t91 -138h104q24 0 46.5 17t44.5 53.5t36 65t37 81.5q19 41 28 60.5 t28.5 57.5t33.5 57t37 46t45 40.5t51 23.5t61 10h107q21 57 70 92.5t111 35.5q80 0 136 -56t56 -136t-56 -136t-136 -56q-62 0 -111 35.5t-70 92.5h-107q-17 0 -33 -8t-31.5 -26t-27 -34t-27 -47t-24 -49t-24.5 -55q-46 -107 -83 -165h1114v128q0 18 16 28t32 -1z" />
<glyph unicode="&#xf288;" horiz-adv-x="1792" d="M1150 774q0 -56 -39.5 -95t-95.5 -39h-253v269h253q56 0 95.5 -39.5t39.5 -95.5zM1329 774q0 130 -91.5 222t-222.5 92h-433v-896h180v269h253q130 0 222 91.5t92 221.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348 t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf289;" horiz-adv-x="2304" d="M1645 438q0 59 -34 106.5t-87 68.5q-7 -45 -23 -92q-7 -24 -27.5 -38t-44.5 -14q-12 0 -24 3q-31 10 -45 38.5t-4 58.5q23 71 23 143q0 123 -61 227.5t-166 165.5t-228 61q-134 0 -247 -73t-167 -194q108 -28 188 -106q22 -23 22 -55t-22 -54t-54 -22t-55 22 q-75 75 -180 75q-106 0 -181 -74.5t-75 -180.5t75 -180.5t181 -74.5h1046q79 0 134.5 55.5t55.5 133.5zM1798 438q0 -142 -100.5 -242t-242.5 -100h-1046q-169 0 -289 119.5t-120 288.5q0 153 100 267t249 136q62 184 221 298t354 114q235 0 408.5 -158.5t196.5 -389.5 q116 -25 192.5 -118.5t76.5 -214.5zM2048 438q0 -175 -97 -319q-23 -33 -64 -33q-24 0 -43 13q-26 17 -32 48.5t12 57.5q71 104 71 233t-71 233q-18 26 -12 57t32 49t57.5 11.5t49.5 -32.5q97 -142 97 -318zM2304 438q0 -244 -134 -443q-23 -34 -64 -34q-23 0 -42 13 q-26 18 -32.5 49t11.5 57q108 164 108 358q0 195 -108 357q-18 26 -11.5 57.5t32.5 48.5q26 18 57 12t49 -33q134 -198 134 -442z" />
<glyph unicode="&#xf28a;" d="M1500 -13q0 -89 -63 -152.5t-153 -63.5t-153.5 63.5t-63.5 152.5q0 90 63.5 153.5t153.5 63.5t153 -63.5t63 -153.5zM1267 268q-115 -15 -192.5 -102.5t-77.5 -205.5q0 -74 33 -138q-146 -78 -379 -78q-109 0 -201 21t-153.5 54.5t-110.5 76.5t-76 85t-44.5 83 t-23.5 66.5t-6 39.5q0 19 4.5 42.5t18.5 56t36.5 58t64 43.5t94.5 18t94 -17.5t63 -41t35.5 -53t17.5 -49t4 -33.5q0 -34 -23 -81q28 -27 82 -42t93 -17l40 -1q115 0 190 51t75 133q0 26 -9 48.5t-31.5 44.5t-49.5 41t-74 44t-93.5 47.5t-119.5 56.5q-28 13 -43 20 q-116 55 -187 100t-122.5 102t-72 125.5t-20.5 162.5q0 78 20.5 150t66 137.5t112.5 114t166.5 77t221.5 28.5q120 0 220 -26t164.5 -67t109.5 -94t64 -105.5t19 -103.5q0 -46 -15 -82.5t-36.5 -58t-48.5 -36t-49 -19.5t-39 -5h-8h-32t-39 5t-44 14t-41 28t-37 46t-24 70.5 t-10 97.5q-15 16 -59 25.5t-81 10.5l-37 1q-68 0 -117.5 -31t-70.5 -70t-21 -76q0 -24 5 -43t24 -46t53 -51t97 -53.5t150 -58.5q76 -25 138.5 -53.5t109 -55.5t83 -59t60.5 -59.5t41 -62.5t26.5 -62t14.5 -63.5t6 -62t1 -62.5z" />
<glyph unicode="&#xf28b;" d="M704 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1152 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103 t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf28c;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273 t73 -273t198 -198t273 -73zM864 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192z" />
<glyph unicode="&#xf28d;" d="M1088 352v576q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
<glyph unicode="&#xf28e;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273 t73 -273t198 -198t273 -73zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-576z" />
<glyph unicode="&#xf290;" horiz-adv-x="1792" d="M1757 128l35 -313q3 -28 -16 -50q-19 -21 -48 -21h-1664q-29 0 -48 21q-19 22 -16 50l35 313h1722zM1664 967l86 -775h-1708l86 775q3 24 21 40.5t43 16.5h256v-128q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v128h384v-128q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5v128h256q25 0 43 -16.5t21 -40.5zM1280 1152v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf291;" horiz-adv-x="2048" d="M1920 768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-15l-115 -662q-8 -46 -44 -76t-82 -30h-1280q-46 0 -82 30t-44 76l-115 662h-15q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1792zM485 -32q26 2 43.5 22.5t15.5 46.5l-32 416q-2 26 -22.5 43.5 t-46.5 15.5t-43.5 -22.5t-15.5 -46.5l32 -416q2 -25 20.5 -42t43.5 -17h5zM896 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1280 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1632 27l32 416 q2 26 -15.5 46.5t-43.5 22.5t-46.5 -15.5t-22.5 -43.5l-32 -416q-2 -26 15.5 -46.5t43.5 -22.5h5q25 0 43.5 17t20.5 42zM476 1244l-93 -412h-132l101 441q19 88 89 143.5t160 55.5h167q0 26 19 45t45 19h384q26 0 45 -19t19 -45h167q90 0 160 -55.5t89 -143.5l101 -441 h-132l-93 412q-11 44 -45.5 72t-79.5 28h-167q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45h-167q-45 0 -79.5 -28t-45.5 -72z" />
<glyph unicode="&#xf292;" horiz-adv-x="1792" d="M991 512l64 256h-254l-64 -256h254zM1759 1016l-56 -224q-7 -24 -31 -24h-327l-64 -256h311q15 0 25 -12q10 -14 6 -28l-56 -224q-5 -24 -31 -24h-327l-81 -328q-7 -24 -31 -24h-224q-16 0 -26 12q-9 12 -6 28l78 312h-254l-81 -328q-7 -24 -31 -24h-225q-15 0 -25 12 q-9 12 -6 28l78 312h-311q-15 0 -25 12q-9 12 -6 28l56 224q7 24 31 24h327l64 256h-311q-15 0 -25 12q-10 14 -6 28l56 224q5 24 31 24h327l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h254l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h311 q15 0 25 -12q9 -12 6 -28z" />
<glyph unicode="&#xf293;" d="M841 483l148 -148l-149 -149zM840 1094l149 -149l-148 -148zM710 -130l464 464l-306 306l306 306l-464 464v-611l-255 255l-93 -93l320 -321l-320 -321l93 -93l255 255v-611zM1429 640q0 -209 -32 -365.5t-87.5 -257t-140.5 -162.5t-181.5 -86.5t-219.5 -24.5 t-219.5 24.5t-181.5 86.5t-140.5 162.5t-87.5 257t-32 365.5t32 365.5t87.5 257t140.5 162.5t181.5 86.5t219.5 24.5t219.5 -24.5t181.5 -86.5t140.5 -162.5t87.5 -257t32 -365.5z" />
<glyph unicode="&#xf294;" horiz-adv-x="1024" d="M596 113l173 172l-173 172v-344zM596 823l173 172l-173 172v-344zM628 640l356 -356l-539 -540v711l-297 -296l-108 108l372 373l-372 373l108 108l297 -296v711l539 -540z" />
<glyph unicode="&#xf295;" d="M1280 256q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM512 1024q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5 t112.5 -271.5zM1440 1344q0 -20 -13 -38l-1056 -1408q-19 -26 -51 -26h-160q-26 0 -45 19t-19 45q0 20 13 38l1056 1408q19 26 51 26h160q26 0 45 -19t19 -45zM768 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf296;" horiz-adv-x="1792" />
<glyph unicode="&#xf297;" horiz-adv-x="1792" />
<glyph unicode="&#xf298;" horiz-adv-x="1792" />
<glyph unicode="&#xf299;" horiz-adv-x="1792" />
<glyph unicode="&#xf29a;" horiz-adv-x="1792" />
<glyph unicode="&#xf29b;" horiz-adv-x="1792" />
<glyph unicode="&#xf29c;" horiz-adv-x="1792" />
<glyph unicode="&#xf29d;" horiz-adv-x="1792" />
<glyph unicode="&#xf29e;" horiz-adv-x="1792" />
<glyph unicode="&#xf500;" horiz-adv-x="1792" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 357 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,240 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="TitilliumLtBold" horiz-adv-x="1146" >
<font-face units-per-em="2048" ascent="1536" descent="-512" />
<missing-glyph horiz-adv-x="450" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="2048" />
<glyph unicode=" " horiz-adv-x="450" />
<glyph unicode="&#x09;" horiz-adv-x="450" />
<glyph unicode="&#xa0;" horiz-adv-x="450" />
<glyph unicode="!" horiz-adv-x="489" d="M178 0v205h135v-205h-135zM180 1423h129l-8 -966h-115z" />
<glyph unicode="&#x22;" horiz-adv-x="745" d="M141 1423h127l-8 -446h-110zM477 1423h127l-8 -446h-113z" />
<glyph unicode="#" d="M53 369v106h234v412h-234v106h234v373h114v-373h342v373h115v-373h234v-106h-234v-412h234v-106h-234v-369h-115v369h-342v-369h-114v369h-234zM401 475h342v412h-342v-412z" />
<glyph unicode="$" d="M147 1018q0 354 428 354q36 0 56 -2l33 258h92l-35 -264q57 -4 120 -11.5t97 -12.5l35 -5l-8 -104q-139 16 -258 26l-66 -514q98 -20 161 -44t111 -63.5t69.5 -98t21.5 -142.5q0 -218 -108 -314.5t-316 -96.5h-35l-31 -236q-92 6 -92 14l29 228q-63 4 -136 11.5 t-115 12.5l-42 6l14 105q158 -21 293 -29l72 549q-69 14 -117.5 27.5t-96 34t-77.5 47.5t-54 64t-34.5 86.5t-10.5 113.5zM270 1026q0 -68 15 -112t53 -73t85 -45.5t128 -33.5l65 502h-32q-314 0 -314 -238zM559 92h16q155 0 230.5 70.5t75.5 224.5q0 110 -56 160t-198 80z " />
<glyph unicode="%" d="M66 1094q0 278 219 278q104 0 161.5 -68.5t57.5 -211.5t-58.5 -215t-160.5 -72q-103 0 -161 72t-58 217zM170 1094q0 -100 27 -149.5t88 -49.5q63 0 89.5 48.5t26.5 148.5q0 98 -26.5 144t-89.5 46q-62 0 -88.5 -46t-26.5 -142zM332 -6l405 1390l86 -26l-405 -1389z M643 268q0 142 57.5 210.5t161.5 68.5t162.5 -69t58.5 -212t-59 -214.5t-162 -71.5t-161 71.5t-58 216.5zM748 268q0 -100 26.5 -149t87.5 -49q63 0 90 48.5t27 147.5t-27 145t-90 46q-62 0 -88 -45.5t-26 -143.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1402" d="M90 420q0 92 19 159t61 114.5t99.5 79t144.5 58.5q-70 80 -91.5 143t-21.5 159q0 135 89 216t251 81q170 0 255 -81.5t85 -224.5q0 -98 -35.5 -167.5t-103 -118t-185.5 -97.5l336 -333q20 54 39.5 162t24.5 188l121 -2q-11 -108 -37.5 -232.5t-55.5 -195.5l273 -260 l-76 -84l-256 243q-137 -247 -444 -247q-138 0 -234.5 30t-152.5 89t-80.5 137t-24.5 184zM213 426q0 -167 85 -250.5t277 -83.5q260 0 365 211l-453 449q-151 -44 -212.5 -115t-61.5 -211zM424 1116q0 -68 19.5 -124t72.5 -109l64 -66q155 61 215.5 123.5t60.5 177.5 q0 205 -215 205q-105 0 -161 -52.5t-56 -154.5z" />
<glyph unicode="'" horiz-adv-x="409" d="M141 1423h129l-12 -446h-111z" />
<glyph unicode="(" horiz-adv-x="516" d="M111 616q0 120 21 259t51.5 251.5t61 208t51.5 148.5l21 53h119q-8 -22 -21 -60t-46.5 -150t-59 -218.5t-46.5 -244.5t-21 -247q0 -108 20 -238t48.5 -237.5t57 -199.5t48.5 -145l20 -52h-119q-8 18 -22 50.5t-49.5 132t-62.5 198t-49.5 235t-22.5 256.5z" />
<glyph unicode=")" horiz-adv-x="516" d="M82 -256q8 20 21 55t46.5 139.5t59 204.5t46.5 232.5t21 240.5q0 109 -20 244.5t-48.5 250t-57 213t-48.5 155.5l-20 57h119q8 -20 22 -55.5t50 -143.5t63 -213t49.5 -246.5t22.5 -261.5t-21.5 -254.5t-52 -239.5t-60.5 -193.5t-52 -136.5l-21 -48h-119z" />
<glyph unicode="*" horiz-adv-x="858" d="M119 938l223 162l-221 162l55 73l221 -161l84 260l88 -29l-84 -262h271v-90h-275l84 -260l-86 -27l-86 262l-221 -162z" />
<glyph unicode="+" d="M117 457v114h395v412h117v-412h401v-114h-401v-416h-117v416h-395z" />
<glyph unicode="," horiz-adv-x="436" d="M78 -252l90 455h137l-125 -455h-102z" />
<glyph unicode="-" horiz-adv-x="911" d="M145 510v115h623v-115h-623z" />
<glyph unicode="." horiz-adv-x="421" d="M143 0v207h136v-207h-136z" />
<glyph unicode="/" horiz-adv-x="815" d="M66 23l573 1423l111 -43l-572 -1421z" />
<glyph unicode="0" d="M88 651q0 168 21.5 292.5t60.5 206.5t100 131.5t133.5 70t167.5 20.5q98 0 172 -20.5t135 -70t99 -131.5t59 -206.5t21 -292.5q0 -191 -32.5 -323t-97.5 -207.5t-150.5 -108t-203.5 -32.5q-95 0 -167.5 19.5t-133.5 66t-100.5 122.5t-61.5 192t-22 271zM219 649 q0 -132 15.5 -229t44 -159.5t73.5 -99.5t97.5 -52t123.5 -15t123.5 15t97.5 52.5t73 100.5t43.5 160t15.5 229q0 179 -21 297.5t-66.5 187.5t-109 96.5t-158.5 27.5q-93 0 -155.5 -27t-108.5 -95t-67 -187.5t-21 -301.5z" />
<glyph unicode="1" d="M236 1069l426 283h118v-1352h-125v1212l-360 -241z" />
<glyph unicode="2" d="M143 0v106l422 447q63 66 93.5 99.5t72 85t59.5 88t32 84t14 96.5q0 137 -77 194t-237 57q-68 0 -157 -12.5t-144 -24.5l-55 -12l-10 109q22 6 59 15t139 24.5t189 15.5q214 0 319 -84.5t105 -271.5q0 -75 -16.5 -137.5t-55.5 -123.5t-84 -112.5t-121 -126.5l-393 -405 h709v-111h-863z" />
<glyph unicode="3" d="M131 33l12 106q219 -45 420 -45q161 0 237.5 70t76.5 211q0 76 -23 130t-65.5 84t-93 44.5t-115.5 17.5h-275v111h273q41 0 86 17.5t85.5 48.5t66.5 83t26 113q0 127 -67 181.5t-228 54.5q-86 0 -181 -11t-148 -21l-52 -11l-12 104q22 6 59.5 14.5t142 22.5t195.5 14 q228 0 325 -82t97 -264q0 -46 -10 -87t-28 -71t-37 -53.5t-43 -41t-40.5 -27.5t-35 -19t-19.5 -10q61 -19 100.5 -40t76 -58t54 -96t17.5 -142q0 -202 -106 -301.5t-329 -99.5q-96 0 -206.5 13t-172.5 27z" />
<glyph unicode="4" d="M82 274v99l397 979h139l-399 -965h539v432h127v-432h182v-113h-182v-274h-127v274h-676z" />
<glyph unicode="5" d="M135 39l17 104q231 -47 415 -47q152 0 241 90.5t89 257.5q0 158 -81.5 224.5t-229.5 66.5q-77 0 -161.5 -23.5t-130.5 -47.5l-46 -23l-94 16l39 695h776v-117h-670l-37 -477q18 10 50 25t121 40t165 25q207 0 318.5 -94t111.5 -303q0 -229 -118.5 -348t-331.5 -119 q-92 0 -203 14t-175 28z" />
<glyph unicode="6" d="M111 684q0 352 136 520t382 168q76 0 166.5 -8t142.5 -16l53 -7l-12 -104q-178 20 -350 20q-186 0 -286.5 -129.5t-100.5 -373.5l22 8q21 9 58.5 21.5t81.5 25.5t97.5 22t98.5 9q451 0 451 -414q0 -213 -121 -329.5t-346 -116.5q-241 0 -357 182.5t-116 521.5zM240 639 q2 -122 21 -218t58.5 -171t106.5 -115.5t158 -40.5q164 0 250 85t86 247q0 151 -85.5 226t-242.5 75q-75 0 -163 -22t-139 -44z" />
<glyph unicode="7" d="M162 1237v115h833v-181l-530 -1191l-121 40l522 1164v53h-704z" />
<glyph unicode="8" d="M66 344q0 79 17.5 137.5t54 100.5t76 69t101.5 58q-118 53 -172.5 124t-54.5 195q0 171 127 257.5t354 86.5t357.5 -86.5t130.5 -259.5q0 -128 -57.5 -198t-188.5 -119q63 -24 108 -51t82.5 -66.5t56.5 -95.5t19 -129q0 -387 -508 -387q-85 0 -156.5 11t-137 37t-111 67 t-72 104.5t-26.5 144.5zM203 362q0 -266 366 -266q85 0 150 13.5t117.5 44.5t80 86.5t27.5 134.5q0 53 -14.5 94.5t-37 68.5t-59.5 49t-72.5 34.5t-86.5 25.5h-225q-123 -33 -184.5 -98t-61.5 -187zM223 1016q0 -102 54.5 -161t171.5 -97h225q124 35 186 95.5t62 160.5 q0 243 -353 243q-169 0 -257.5 -56.5t-88.5 -184.5z" />
<glyph unicode="9" d="M90 924q0 205 126 326.5t337 121.5q244 0 362.5 -185t118.5 -519q0 -192 -35 -326.5t-105 -213t-164.5 -113.5t-223.5 -35q-76 0 -167 8t-143 16l-53 8l13 105q178 -23 350 -23q198 0 296 122.5t101 381.5l-23 -8q-23 -8 -63.5 -20t-87 -24.5t-101.5 -21t-100 -8.5 q-438 0 -438 408zM221 924q0 -152 79.5 -223.5t236.5 -71.5q67 0 159 20.5t150 40.5l59 21q-10 546 -352 546q-154 0 -243 -89.5t-89 -243.5z" />
<glyph unicode=":" horiz-adv-x="423" d="M143 0v207h136v-207h-136zM143 676v209h136v-209h-136z" />
<glyph unicode=";" horiz-adv-x="493" d="M109 -252h102l127 455h-141zM188 676v209h136v-209h-136z" />
<glyph unicode="&#x3c;" d="M121 459v110l860 426v-129l-735 -350l735 -356v-131z" />
<glyph unicode="=" d="M133 272v115h879v-115h-879zM133 639v115h879v-115h-879z" />
<glyph unicode="&#x3e;" d="M164 29v131l735 356l-735 350v129l860 -426v-110z" />
<glyph unicode="?" horiz-adv-x="919" d="M78 1384q217 60 342 60q207 0 309 -76.5t102 -251.5q0 -129 -36.5 -198t-159.5 -173q-99 -83 -144 -141t-45 -127v-74h-106q-18 52 -18 109q0 41 15 79t47 77t60.5 67t77.5 72q79 68 115 108.5t53 85t17 107.5q0 121 -71.5 172t-225.5 51q-47 0 -127 -12.5t-137 -25.5 l-56 -13zM324 2v205h135v-205h-135z" />
<glyph unicode="@" horiz-adv-x="2000" d="M111 535q0 253 59.5 434.5t178.5 293t287 163t396 51.5q458 0 665.5 -207.5t207.5 -644.5v-31q0 -116 -9 -207t-23.5 -155t-39.5 -109.5t-52 -72t-65.5 -41.5t-75 -20t-86.5 -5q-56 0 -100.5 13t-68 32t-38.5 37.5t-19 31.5l-5 13q-24 -14 -63.5 -35t-138 -55.5 t-169.5 -34.5q-38 0 -69.5 4t-69.5 17t-67 35t-58 61t-48 92t-30.5 131.5t-11.5 175.5q0 135 20 230.5t67.5 166.5t129.5 105t203 34q47 0 109.5 -14t101.5 -28l39 -13v35h123v-400q0 -80 0.5 -132t2 -107t4 -87.5t7.5 -66.5t11 -52t16.5 -36t21.5 -25.5t28 -14t35 -8 t44 -1.5q46 0 74 7t58.5 35t46.5 81.5t27 148.5t11 234v33q0 196 -40.5 333.5t-130 229.5t-231 135t-344.5 43q-205 0 -351.5 -45.5t-246.5 -145t-148 -258.5t-48 -384q0 -238 45.5 -399t145.5 -258.5t245.5 -139t357.5 -41.5q38 0 111.5 5t127.5 10l54 5l6 -110 q-197 -21 -299 -21q-156 0 -279 19t-228.5 62.5t-180.5 116t-128.5 177t-79 247.5t-25.5 327zM721 498q0 -101 14.5 -176.5t37 -117.5t55.5 -67.5t63 -33t67 -7.5q120 0 330 105q-2 8 -7 64.5t-9 149t-4 173.5v293q-134 47 -234 47q-76 0 -131 -18.5t-90 -51.5t-55.5 -88 t-28.5 -119t-8 -153z" />
<glyph unicode="A" horiz-adv-x="1216" d="M51 0l410 1423h297l407 -1423h-125l-114 393h-635l-113 -393h-127zM322 506h573l-231 807h-111z" />
<glyph unicode="B" horiz-adv-x="1263" d="M178 0v1423h506q210 0 315 -87t105 -271q0 -136 -48.5 -214.5t-140.5 -117.5q236 -74 236 -338q0 -111 -30.5 -189t-89.5 -122.5t-136 -64t-180 -19.5h-537zM305 113h408q150 0 229.5 63.5t79.5 222.5q0 71 -24 123t-58 79.5t-82 44t-83 20.5t-75 4h-395v-557zM305 780 h393q144 0 210.5 68.5t66.5 208.5q0 131 -72.5 192.5t-222.5 61.5h-375v-531z" />
<glyph unicode="C" horiz-adv-x="1114" d="M127 707q0 150 12 257.5t45 202.5t90.5 153t149 91t219.5 33q165 0 385 -43l-6 -111q-219 39 -369 39q-73 0 -130 -13.5t-98.5 -38t-71 -66t-48 -89t-29 -115.5t-14.5 -137.5t-4 -162.5q0 -92 4 -160.5t14.5 -135.5t29.5 -114t48.5 -87.5t71.5 -64.5t99 -37.5t130 -13.5 q150 0 367 39l6 -110q-215 -43 -385 -43q-125 0 -216 32t-149 89.5t-91.5 150.5t-46.5 200.5t-13 254.5z" />
<glyph unicode="D" horiz-adv-x="1323" d="M178 0v1423h518q506 0 506 -692q0 -123 -14.5 -226t-50.5 -198.5t-92 -161.5t-145 -105.5t-204 -39.5h-518zM305 113h391q73 0 131.5 24t99 68t69 100.5t45 128t23.5 144t7 153.5q0 578 -375 578h-391v-1196z" />
<glyph unicode="E" horiz-adv-x="1130" d="M178 0v1423h854v-114h-727v-529h604v-112h-604v-555h727v-113h-854z" />
<glyph unicode="F" horiz-adv-x="1075" d="M178 0v1423h840v-114h-713v-588h606v-113h-606v-608h-127z" />
<glyph unicode="G" horiz-adv-x="1263" d="M123 707q0 145 15 255t52.5 203.5t98.5 153t155.5 92.5t221.5 33q96 0 210.5 -13t181.5 -27l66 -13l-6 -109q-256 47 -442 47q-103 0 -177.5 -27t-121.5 -75t-74.5 -127.5t-38 -172t-10.5 -220.5q0 -127 10.5 -218t38 -169.5t74.5 -125.5t120.5 -73.5t176.5 -26.5 q138 0 325 33v479h-262v113h387v-688q-60 -13 -209.5 -32t-246.5 -19q-127 0 -221.5 32.5t-156 91t-99 150.5t-53 201t-15.5 252z" />
<glyph unicode="H" horiz-adv-x="1382" d="M178 0v1423h127v-653h772v653h125v-1423h-125v657h-772v-657h-127z" />
<glyph unicode="I" horiz-adv-x="483" d="M178 0v1423h127v-1423h-127z" />
<glyph unicode="J" horiz-adv-x="583" d="M37 -35q59 0 90.5 1.5t64.5 10t47.5 23t27.5 43t16.5 67.5t3.5 99v1214h125v-1241q0 -58 -5 -102.5t-17 -78.5t-27 -58t-41 -40.5t-51 -26.5t-65.5 -15t-77 -6.5t-91.5 -1.5v112z" />
<glyph unicode="K" horiz-adv-x="1153" d="M178 0v1423h127v-671l246 6l395 665h146l-430 -714l456 -709h-151l-414 643l-248 -4v-639h-127z" />
<glyph unicode="L" horiz-adv-x="983" d="M178 0v1423h127v-1308h651v-115h-778z" />
<glyph unicode="M" horiz-adv-x="1710" d="M178 0v1423h238l440 -1245l438 1245h238v-1423h-127v1292h-29l-446 -1245h-150l-446 1245h-29v-1292h-127z" />
<glyph unicode="N" horiz-adv-x="1376" d="M178 0v1423h250l596 -1310h47v1310h125v-1423h-246l-600 1309h-45v-1309h-127z" />
<glyph unicode="O" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-163 0 -272 45.5t-171 141t-87 224t-25 314.5zM254 705q0 -129 10 -219.5 t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5z" />
<glyph unicode="P" horiz-adv-x="1214" d="M178 0v1423h520q227 0 335 -110.5t108 -339.5q0 -477 -443 -477h-393v-496h-127zM305 608h393q312 0 312 365q0 174 -74 256t-238 82h-393v-703z" />
<glyph unicode="Q" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -268 -54 -426t-186 -232l174 -283l-120 -57l-179 295q-80 -22 -192 -22q-131 0 -226.5 30.5t-159 87t-101 147.5t-53 201t-15.5 259zM254 705 q0 -129 10 -219.5t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q88 0 154.5 15.5t113.5 50t77.5 82t48.5 119t25 152.5t7 192q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5z" />
<glyph unicode="R" horiz-adv-x="1259" d="M178 0v1423h522q223 0 333 -102t110 -320q0 -341 -275 -415l293 -586h-141l-281 561h-434v-561h-127zM305 674h395q312 0 312 325q0 160 -76 236t-236 76h-395v-637z" />
<glyph unicode="S" horiz-adv-x="1107" d="M104 1073q0 373 451 373q74 0 179 -10t173 -20l68 -9l-10 -109q-283 35 -402 35q-330 0 -330 -252q0 -40 4.5 -71t17 -56.5t26 -44t39 -34.5t48.5 -26.5t63.5 -21.5t74 -18t88.5 -18q90 -18 151 -36t114 -47t83 -67.5t47 -94t17 -130.5q0 -228 -113.5 -330t-333.5 -102 q-72 0 -183 9.5t-186 19.5l-75 10l14 108q281 -35 426 -35q162 0 242 75t80 237q0 67 -17 110.5t-60 73.5t-100 47.5t-153 34.5q-96 18 -158 35.5t-121.5 47t-92 70t-52 101.5t-19.5 145z" />
<glyph unicode="T" horiz-adv-x="1077" d="M27 1309v114h1024v-114h-447v-1309h-127v1309h-450z" />
<glyph unicode="U" horiz-adv-x="1314" d="M170 418v1005h125v-1005q0 -171 90.5 -247.5t263.5 -76.5q184 0 276.5 75.5t92.5 248.5v1005h127v-1005q0 -231 -125 -334.5t-371 -103.5q-235 0 -357 104t-122 334z" />
<glyph unicode="V" horiz-adv-x="1181" d="M53 1423h131l346 -1310h121l346 1310h129l-381 -1423h-309z" />
<glyph unicode="W" horiz-adv-x="1789" d="M68 1423h129l258 -1310h67l299 1294h150l297 -1294h67l258 1310h129l-292 -1423h-254l-281 1249l-281 -1249h-254z" />
<glyph unicode="X" horiz-adv-x="1136" d="M43 0l446 700l-446 723h143l385 -628l383 628h140l-443 -721l443 -702h-144l-381 614l-387 -614h-139z" />
<glyph unicode="Y" horiz-adv-x="1093" d="M27 1423h141l379 -690l377 690h143l-457 -821v-602h-127v602z" />
<glyph unicode="Z" horiz-adv-x="1099" d="M88 -2v168l780 1098v45h-780v114h922v-170l-781 -1097v-43h781v-115h-922z" />
<glyph unicode="[" horiz-adv-x="659" d="M166 -252v1786h409v-111h-284v-1564h284v-111h-409z" />
<glyph unicode="\" horiz-adv-x="862" d="M61 1395l111 49l627 -1415l-113 -47z" />
<glyph unicode="]" horiz-adv-x="659" d="M84 -141h285v1564h-285v111h410v-1786h-410v111z" />
<glyph unicode="^" d="M137 655l375 697h115l389 -697h-133l-314 574l-299 -574h-133z" />
<glyph unicode="_" horiz-adv-x="1300" d="M211 -197h876v-110h-876v110z" />
<glyph unicode="`" horiz-adv-x="466" d="M6 1403l45 106l424 -198l-39 -86z" />
<glyph unicode="a" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM215 291q0 -99 43 -153t127 -54q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5z" />
<glyph unicode="b" horiz-adv-x="1067" d="M152 0v1479h122v-510q18 8 49 20.5t115.5 33.5t155.5 21q205 0 284.5 -119t79.5 -397q0 -154 -21.5 -254t-76.5 -168t-147 -97t-234 -29q-57 0 -139 5t-135 10zM274 102q144 -12 205 -12q91 0 153 17.5t101.5 48.5t61 87.5t29 121.5t7.5 163q0 219 -52 312.5t-195 93.5 q-70 0 -147.5 -17.5t-120.5 -34.5l-42 -18v-762z" />
<glyph unicode="c" horiz-adv-x="886" d="M111 530q0 280 97 397t327 117q39 0 105.5 -6.5t113.5 -13.5l47 -6l-6 -105q-162 21 -240 21q-182 0 -249.5 -89.5t-67.5 -314.5q0 -103 7.5 -170.5t27 -123t55.5 -85.5t91 -45.5t136 -15.5q35 0 96 5t105 9l43 5l4 -105q-183 -24 -271 -24q-101 0 -171.5 19t-120 58 t-77.5 106t-40 154.5t-12 212.5z" />
<glyph unicode="d" horiz-adv-x="1071" d="M109 500q0 278 98 411t332 133q89 0 258 -26v461h123v-1479h-123v76q-7 -4 -18.5 -10.5t-48.5 -23t-74 -29t-89 -23t-98 -10.5q-59 0 -104.5 9t-96 41t-83.5 86.5t-54.5 152t-21.5 231.5zM236 500q0 -105 14.5 -181.5t37 -119.5t56.5 -68.5t65.5 -33t71.5 -7.5 q69 0 148 22t123 44l45 22v733q-171 25 -254 25q-90 0 -150.5 -27.5t-94.5 -86t-48 -135t-14 -187.5z" />
<glyph unicode="e" horiz-adv-x="1032" d="M109 508q0 536 421 536q202 0 303 -116t101 -369l-4 -98h-697q0 -189 64.5 -280t220.5 -91q67 0 160.5 5t153.5 9l61 5l4 -101q-231 -28 -391 -28q-113 1 -190.5 34.5t-122.5 102.5t-64.5 163.5t-19.5 227.5zM233 563h578q0 203 -67 289t-214 86q-145 0 -221 -89 t-76 -286z" />
<glyph unicode="f" horiz-adv-x="663" d="M61 915v109h134v104q0 148 27.5 228t84 111.5t158.5 31.5q31 0 81 -2.5t84 -4.5l34 -3v-105q-122 5 -181 5q-95 0 -130.5 -53.5t-35.5 -209.5v-102h310v-109h-310v-915h-122v915h-134z" />
<glyph unicode="g" horiz-adv-x="1042" d="M109 -170q0 46 9.5 81t33 65.5t50 54t72.5 57.5q-51 34 -51 139q0 16 16.5 56t32.5 72l17 32q-168 71 -168 309q0 180 97.5 264t273.5 84q47 0 101 -6.5t84 -13.5l30 -6l297 6v-109l-205 5q73 -73 73 -224q0 -189 -93 -265.5t-294 -76.5q-58 0 -104 8q-41 -99 -41 -126 q0 -25 2 -38.5t11.5 -26.5t24.5 -18.5t47 -10t71 -5.5t104 -2q111 0 178.5 -11.5t116.5 -44t68.5 -90.5t19.5 -151q0 -169 -111 -246t-337 -77q-101 0 -171.5 10t-121 32t-79 59.5t-41.5 89t-13 124.5zM231 -162q0 -84 24.5 -128.5t90.5 -66.5t191 -22q170 0 245.5 50 t75.5 163q0 52 -10 87t-27.5 56t-52.5 32t-73.5 14.5t-102.5 3.5l-232 8q-76 -54 -102.5 -93.5t-26.5 -103.5zM246 696q0 -130 57.5 -184.5t188.5 -54.5q141 0 198.5 53.5t57.5 185.5q0 134 -58 190t-198 56q-130 0 -188 -57t-58 -189z" />
<glyph unicode="h" horiz-adv-x="1091" d="M154 0v1479h120v-514q19 9 52 22t121 35t159 22q85 0 143.5 -17t98 -52t61 -97t30.5 -141.5t9 -197.5v-539h-123v532q0 97 -5 158.5t-19 112.5t-40.5 77t-67.5 40t-103 14q-71 0 -150 -17.5t-122 -34.5l-44 -18v-864h-120z" />
<glyph unicode="i" horiz-adv-x="428" d="M154 0v1024h120v-1024h-120zM154 1280v154h120v-154h-120z" />
<glyph unicode="j" horiz-adv-x="428" d="M-109 -354q71 40 111.5 67.5t74 58t48 65t22 77.5t7.5 106v1004h122v-1006q0 -181 -66.5 -274.5t-268.5 -196.5zM154 1280v154h122v-154h-122z" />
<glyph unicode="k" horiz-adv-x="962" d="M154 0v1479h120v-881l175 4l315 422h141l-350 -469l367 -555h-144l-327 494l-177 -5v-489h-120z" />
<glyph unicode="l" horiz-adv-x="452" d="M166 0v1479h121v-1479h-121z" />
<glyph unicode="m" horiz-adv-x="1710" d="M154 0v1024h120v-76q18 11 48 27t113 42.5t153 26.5q105 0 167.5 -25.5t100.5 -82.5q7 4 20.5 11.5t55 26t83 33t99.5 26t111 11.5q106 0 171.5 -24.5t104 -87t52.5 -153.5t14 -240v-539h-121v532q0 97 -5 158.5t-19 112t-41 77.5t-68 40.5t-103 13.5q-75 0 -152.5 -21.5 t-117.5 -42.5l-41 -22q31 -77 31 -316v-532h-123v528q0 98 -5 161t-19 114t-41 77.5t-67.5 40t-101.5 13.5q-71 0 -146 -21.5t-114 -42.5l-39 -22v-848h-120z" />
<glyph unicode="n" horiz-adv-x="1091" d="M154 0v1024h120v-76q7 4 19.5 10.5t51 23t76.5 29t90 23t97 10.5q85 0 143.5 -17t98 -52t61 -97t30.5 -141.5t9 -197.5v-539h-123v532q0 80 -3.5 134.5t-12.5 103t-25.5 77t-43 49.5t-63.5 29.5t-89 8.5q-71 0 -150 -21.5t-122 -42.5l-44 -22v-848h-120z" />
<glyph unicode="o" horiz-adv-x="1079" d="M111 526q0 275 97.5 396.5t332.5 121.5q233 0 330.5 -121.5t97.5 -396.5q0 -151 -19 -249.5t-67 -167.5t-131 -99t-211 -30q-129 0 -212.5 30t-131.5 99t-67 167t-19 250zM238 526q0 -102 6 -167t24 -121.5t51.5 -86.5t87.5 -46.5t134 -16.5q66 0 114 10t82 34.5 t54.5 56.5t32.5 85t16 110.5t4 141.5q0 232 -64.5 321t-238.5 89q-175 0 -239 -88.5t-64 -321.5z" />
<glyph unicode="p" horiz-adv-x="1071" d="M154 -461v1485h120v-78q7 4 18.5 10.5t48 23.5t73 30t87.5 23.5t97 10.5q191 0 278 -125t87 -393q0 -295 -102.5 -420.5t-340.5 -125.5q-126 0 -246 26v-467h-120zM274 113q146 -25 242 -25q177 0 248.5 100t71.5 338q0 217 -62.5 312.5t-187.5 95.5q-68 0 -146 -23 t-122 -46l-44 -23v-729z" />
<glyph unicode="q" horiz-adv-x="1067" d="M109 496q0 299 105 423.5t372 124.5q45 0 127 -5t141 -10l59 -5v-1485h-120v512q-16 -8 -45 -20t-109.5 -31.5t-151.5 -19.5q-206 0 -292 122.5t-86 393.5zM233 496q0 -208 60 -307t205 -99q69 0 143 17t113 34l39 17v766q-139 12 -205 12q-107 0 -177 -25.5t-109 -83 t-54 -135.5t-15 -196z" />
<glyph unicode="r" horiz-adv-x="694" d="M154 0v1024h120v-147q20 14 55.5 36.5t137.5 68t195 62.5v-122q-88 -18 -185 -56.5t-150 -67.5l-53 -30v-768h-120z" />
<glyph unicode="s" horiz-adv-x="950" d="M96 754q0 65 21 115.5t55.5 82.5t82.5 52.5t98 29t106 8.5q68 0 158.5 -8.5t146.5 -17.5l57 -8l-4 -109q-219 33 -354 33q-242 0 -242 -174q0 -79 53.5 -112.5t221.5 -61.5q84 -14 138.5 -28t100.5 -35t70.5 -50.5t37.5 -72t13 -101.5q0 -172 -100 -244.5t-295 -72.5 q-56 0 -143.5 9t-147.5 18l-59 9l8 109q230 -35 334 -35q141 0 209.5 43.5t68.5 157.5q0 90 -56.5 123.5t-234.5 60.5q-77 12 -127 24t-95 32.5t-69.5 49t-38.5 71.5t-14 102z" />
<glyph unicode="t" horiz-adv-x="710" d="M55 915v109h152v322h123v-322h342v-109h-342v-505q0 -70 2 -113.5t8 -83t16.5 -61t29.5 -37.5t44.5 -21.5t63.5 -5.5q25 0 72 3.5t82 6.5l34 4l8 -104q-135 -21 -207 -21q-105 0 -163 31.5t-85.5 111.5t-27.5 228v567h-152z" />
<glyph unicode="u" horiz-adv-x="1075" d="M143 489v535h121v-532q0 -98 5 -159.5t19 -112.5t40.5 -77t68 -39.5t103.5 -13.5q72 0 147 21.5t115 42.5l39 22v848h121v-1024h-121v76q-18 -11 -48.5 -27t-114 -42.5t-153.5 -26.5q-72 0 -124.5 10.5t-91 36.5t-62.5 63t-38.5 97t-20 131t-5.5 171z" />
<glyph unicode="v" horiz-adv-x="976" d="M55 1024h135l256 -918h82l267 918h127l-299 -1024h-269z" />
<glyph unicode="w" horiz-adv-x="1556" d="M68 1024h125l225 -918h28l267 898h129l266 -898h31l225 918h125l-256 -1024h-213l-242 844l-243 -844h-211z" />
<glyph unicode="x" horiz-adv-x="913" d="M49 0l330 512l-330 512h137l271 -422l270 422h137l-334 -510l332 -514h-135l-270 420l-271 -420h-137z" />
<glyph unicode="y" horiz-adv-x="978" d="M55 1024h125l273 -918h73l275 918h125l-443 -1485h-123l138 461h-142z" />
<glyph unicode="z" horiz-adv-x="931" d="M86 0v111l608 802h-608v111h760v-111l-608 -802h608v-111h-760z" />
<glyph unicode="{" horiz-adv-x="716" d="M53 586v102q116 27 166.5 82.5t50.5 149.5q0 26 -7 124t-7 138q0 187 86 270t289 90l2 -106q-148 -7 -203 -69.5t-55 -190.5q0 -35 7 -127.5t7 -120.5q0 -132 -44 -192t-167 -97q122 -36 167.5 -99t45.5 -192q-1 -14 -7.5 -103.5t-6.5 -135.5q0 -62 11 -106t39 -79 t79 -53.5t127 -22.5l-4 -108q-202 7 -287.5 91t-85.5 269q0 44 7 137t7 115q0 91 -50.5 145.5t-166.5 88.5z" />
<glyph unicode="|" horiz-adv-x="452" d="M164 -461v1940h123v-1940h-123z" />
<glyph unicode="}" horiz-adv-x="716" d="M84 -152q76 4 127 22.5t79 53.5t39 79t11 106q0 46 -6.5 135.5t-7.5 103.5q0 129 45.5 192t167.5 99q-123 37 -167 97t-44 192q0 28 7 120.5t7 127.5q0 128 -55 190.5t-203 69.5l2 106q203 -7 289 -90t86 -270q0 -40 -7.5 -138t-7.5 -124q0 -94 50.5 -149.5t167.5 -82.5 v-102q-117 -34 -167.5 -88.5t-50.5 -145.5q0 -22 7.5 -115t7.5 -137q0 -185 -85.5 -269t-287.5 -91z" />
<glyph unicode="~" d="M139 551q5 5 14.5 12t37.5 26.5t55.5 34t63 26.5t65.5 12q49 0 131 -34t160 -68t116 -34q33 0 85 25t88 49l36 25l21 -103q-14 -12 -37.5 -30.5t-84.5 -49t-108 -30.5q-50 0 -133.5 34t-161 67.5t-112.5 33.5q-36 0 -89 -25.5t-88 -50.5l-36 -25z" />
<glyph unicode="&#xa1;" horiz-adv-x="448" d="M154 819v205h135v-205h-135zM158 -399l8 966h115l6 -966h-129z" />
<glyph unicode="&#xa2;" d="M213 508q0 225 86.5 328.5t273.5 111.5v252h109v-256q40 -1 94.5 -7t89.5 -11l35 -6l-4 -103q-163 19 -272 19q-155 0 -218 -74.5t-63 -253.5q0 -183 62 -250.5t235 -67.5q48 0 112.5 4t104.5 8l41 3l6 -105q-135 -16 -221 -20v-250h-111v248q-128 5 -204 43.5t-116 132 t-40 254.5z" />
<glyph unicode="&#xa3;" d="M166 0v111h178v626h-137v109h137v108q0 128 16 209t54 127t91 63t136 17q43 0 108.5 -8t109.5 -16l44 -7l-2 -102q-168 23 -252 23q-74 0 -111.5 -26.5t-54 -92.5t-16.5 -195v-100h356v-109h-356v-626h330l161 32l21 -106l-166 -37h-647z" />
<glyph unicode="&#xa4;" d="M133 164l143 141q-65 94 -65 211q0 115 65 209l-143 143l88 88l141 -145q98 68 211 68q111 0 209 -68l144 145l88 -88l-146 -143q68 -98 68 -209q0 -113 -68 -211l146 -141l-88 -88l-144 143q-94 -65 -209 -65q-117 0 -211 65l-141 -143zM324 516q0 -103 73 -176.5 t176 -73.5q102 0 176 74t74 176q0 101 -74.5 175.5t-175.5 74.5q-102 0 -175.5 -74t-73.5 -176z" />
<glyph unicode="&#xa5;" d="M55 1352h142l378 -584l373 584h144l-367 -586h303v-109h-369l-20 -41v-159h391v-109h-391v-348h-127v348h-393v109h393v159l-18 41h-377v109h309z" />
<glyph unicode="&#xa6;" horiz-adv-x="460" d="M168 311h123v-772h-123v772zM168 711v768h123v-768h-123z" />
<glyph unicode="&#xa7;" horiz-adv-x="1011" d="M115 543q0 83 44 158.5t70 95.5q-46 35 -68 88t-22 141q0 157 98.5 235t282.5 78q59 0 141.5 -7.5t135.5 -15.5l53 -7l-6 -105q-222 27 -320 27q-134 0 -199 -48.5t-65 -152.5q0 -48 12.5 -81.5t32.5 -55.5t61 -38.5t81.5 -26t109.5 -21.5q89 -16 144.5 -34t101.5 -50.5 t66 -83t20 -125.5q0 -79 -30.5 -156t-53.5 -110q74 -59 74 -199q0 -336 -377 -336q-56 0 -144 8.5t-148 16.5l-60 8l10 104q225 -30 338 -30q262 0 262 223q0 37 -7 63.5t-26 46.5t-38 32.5t-59 23.5t-72 17t-93 16q-186 31 -268 94.5t-82 206.5zM238 559q0 -97 58.5 -140.5 t199.5 -66.5q148 -24 215 -55q5 5 17 32.5t25 77t13 93.5q0 43 -11.5 74t-30 51t-53 35t-69 23.5t-90.5 18.5q-143 26 -199 50q-75 -112 -75 -193z" />
<glyph unicode="&#xa8;" horiz-adv-x="466" d="M-16 1284v164h120v-164h-120zM387 1284v164h119v-164h-119z" />
<glyph unicode="&#xa9;" horiz-adv-x="1323" d="M127 889q0 153 68.5 279.5t191.5 200t275 73.5t274.5 -74.5t190 -200.5t67.5 -278q0 -153 -68 -279.5t-191 -200t-276 -73.5q-150 0 -272.5 74t-191 200.5t-68.5 278.5zM209 889q0 -129 57.5 -237t161.5 -172t231 -64q195 0 325 137.5t130 335.5q0 197 -130.5 335 t-324.5 138q-127 0 -231 -64t-161.5 -172t-57.5 -237zM432 889q0 162 51.5 240.5t184.5 78.5q36 0 74.5 -4.5t58.5 -9.5l20 -4l-4 -94q-81 14 -147 14q-36 0 -60.5 -10t-39 -26t-22.5 -46t-10.5 -60.5t-2.5 -78.5q0 -115 28 -168t107 -53q26 0 63 3.5t61 6.5l23 4l4 -92 q-79 -21 -155 -21q-130 0 -182 78t-52 242z" />
<glyph unicode="&#xaa;" horiz-adv-x="774" d="M117 932q0 82 44 123t136 47l190 12v45q0 53 -24 74.5t-78 21.5q-33 0 -89.5 -3.5t-97.5 -7.5l-40 -3l-4 82q141 27 235 27q105 0 155 -44.5t50 -150.5v-278q19 -27 65 -39l-4 -84q-62 0 -91 11t-56 38q-118 -49 -227 -49q-75 0 -119.5 48t-44.5 130zM225 932 q0 -86 78 -86q36 0 82 9t74 19l28 9v149l-172 -10q-47 -3 -68.5 -24.5t-21.5 -65.5z" />
<glyph unicode="&#xab;" horiz-adv-x="1071" d="M94 459v104l371 283v-129l-264 -203l264 -223v-131zM557 459v104l371 283v-129l-264 -203l264 -223v-131z" />
<glyph unicode="&#xac;" d="M137 580v112h873v-446h-117v334h-756z" />
<glyph unicode="&#xad;" horiz-adv-x="911" d="M145 510v115h623v-115h-623z" />
<glyph unicode="&#xae;" horiz-adv-x="1323" d="M127 889q0 153 68.5 279.5t190.5 200t273 73.5q153 0 276.5 -74.5t191 -200.5t67.5 -278q0 -153 -68 -279.5t-191 -200t-276 -73.5q-150 0 -272.5 74t-191 200.5t-68.5 278.5zM209 889q0 -129 58 -237t162 -172t230 -64q195 0 325 137.5t130 335.5q0 197 -130.5 335 t-324.5 138q-127 0 -231 -64t-161.5 -172t-57.5 -237zM442 580v614h213q117 0 174.5 -43t57.5 -147q0 -75 -25.5 -119.5t-85.5 -65.5l121 -239h-104l-117 227h-135v-227h-99zM541 891h137q60 0 86.5 25t26.5 85q0 59 -34.5 84t-107.5 25h-108v-219z" />
<glyph unicode="&#xaf;" horiz-adv-x="466" d="M-33 1292v101h557v-101h-557z" />
<glyph unicode="&#xb0;" d="M287 1157q0 128 79.5 207.5t206.5 79.5t206 -79.5t79 -207.5q0 -127 -78.5 -205t-206.5 -78t-207 78t-79 205zM379 1157q0 -89 52.5 -142.5t141.5 -53.5q90 0 144.5 53.5t54.5 142.5t-55 144t-144 55t-141.5 -54.5t-52.5 -144.5z" />
<glyph unicode="&#xb1;" d="M117 86v115h913v-115h-913zM117 610v115h395v266h117v-266h401v-115h-401v-272h-117v272h-395z" />
<glyph unicode="&#xb2;" horiz-adv-x="573" d="M66 979v94l188 195q55 55 80.5 93.5t25.5 86.5q0 44 -29 66t-77 22q-28 0 -72.5 -4.5t-75.5 -9.5l-30 -4l-4 94q114 24 202 24q101 0 149 -44t48 -136q0 -69 -28.5 -118.5t-98.5 -116.5l-141 -144h278v-98h-415z" />
<glyph unicode="&#xb3;" horiz-adv-x="573" d="M68 981l6 94q115 -16 209 -16q56 0 83 26.5t27 71.5q0 103 -104 103h-133v94h131q33 0 61.5 31t28.5 73q0 80 -105 80q-39 0 -86.5 -4t-75.5 -8l-28 -4l-6 94q115 20 205 20q106 0 156 -40.5t50 -127.5q0 -37 -11 -67t-27.5 -47t-27.5 -25t-20 -12q54 -16 78.5 -50.5 t24.5 -111.5q0 -197 -211 -197q-44 0 -100.5 6t-90.5 12z" />
<glyph unicode="&#xb4;" horiz-adv-x="548" d="M63 1311l424 198l45 -106l-430 -178z" />
<glyph unicode="&#xb5;" d="M182 -461v1485h121v-532q0 -98 5 -159.5t19 -112.5t40.5 -77t68 -39.5t103.5 -13.5q72 0 147.5 21.5t114.5 42.5l39 22v848h121v-1024h-121v76q-18 -11 -48.5 -27t-114 -42.5t-153.5 -26.5q-147 0 -221 51v-492h-121z" />
<glyph unicode="&#xb6;" horiz-adv-x="1210" d="M76 1051q0 164 109 268t272 104h673v-108h-167v-1315h-113v1315h-266v-1315h-113v684h-14q-165 0 -273 102t-108 265z" />
<glyph unicode="&#xb7;" horiz-adv-x="423" d="M145 500v207h136v-207h-136z" />
<glyph unicode="&#xb8;" horiz-adv-x="538" d="M92 -420l4 82q85 -6 146 -6q92 0 92 84q0 76 -92 76h-97v186h78v-108q119 0 171 -32t52 -122q0 -88 -48.5 -130t-133.5 -42q-40 0 -83 3t-66 6z" />
<glyph unicode="&#xb9;" horiz-adv-x="573" d="M76 1477l207 141h102v-639h-109v518l-149 -102z" />
<glyph unicode="&#xba;" horiz-adv-x="757" d="M115 1055q0 152 66 223.5t198 71.5t196 -71.5t64 -223.5q0 -153 -64.5 -227t-195.5 -74q-264 0 -264 301zM229 1055q0 -106 35 -152.5t115 -46.5q81 0 114 46t33 153q0 105 -33 148.5t-114 43.5q-80 0 -115 -44t-35 -148z" />
<glyph unicode="&#xbb;" horiz-adv-x="1071" d="M143 160v131l263 223l-263 203v129l371 -283v-104zM606 160v131l262 223l-262 203v129l371 -283v-104z" />
<glyph unicode="&#xbc;" horiz-adv-x="1087" d="M74 57l803 1293l73 -47l-803 -1291zM84 1477l207 141h102v-639h-108v518l-150 -102zM553 -6l156 440h118l-159 -434h176l8 180h100v-180h64v-100h-64v-105h-108v105h-291v94z" />
<glyph unicode="&#xbd;" horiz-adv-x="1075" d="M70 57l802 1293l74 -47l-803 -1291zM94 1477l207 141h102v-639h-108v518l-150 -102zM565 -111l189 195q55 55 80.5 93.5t25.5 86.5q0 44 -29 66t-77 22q-28 0 -73 -4.5t-75 -9.5l-31 -4l-4 94q115 25 203 25q101 0 149 -44.5t48 -136.5q0 -69 -28.5 -118.5t-98.5 -116.5 l-142 -143h279v-99h-416v94z" />
<glyph unicode="&#xbe;" horiz-adv-x="1120" d="M109 981l6 94q115 -16 209 -16q56 0 83 26.5t27 71.5q0 103 -104 103h-133v94h131q33 0 61.5 31t28.5 73q0 80 -105 80q-39 0 -86.5 -4t-75.5 -8l-28 -4l-6 94q115 20 205 20q106 0 156 -40.5t50 -127.5q0 -37 -11 -67t-27.5 -47t-27.5 -25t-20 -12q54 -16 78.5 -50.5 t24.5 -111.5q0 -197 -211 -197q-44 0 -100.5 6t-90.5 12zM111 57l802 1293l74 -47l-803 -1291zM590 -6l155 440h119l-159 -434h176l8 180h100v-180h64v-100h-64v-105h-108v105h-291v94z" />
<glyph unicode="&#xbf;" horiz-adv-x="907" d="M82 -90q0 89 16 144t56 105t125 122q99 82 143.5 140.5t44.5 127.5v74h106q19 -52 19 -109q0 -41 -15 -79t-47.5 -77.5t-60.5 -67t-78 -71.5q-114 -98 -149 -154t-35 -147q0 -121 71.5 -172t225.5 -51q47 0 127 12.5t136 25.5l56 13l13 -104q-217 -60 -342 -60 q-208 0 -310 76.5t-102 251.5zM455 819v205h135v-205h-135z" />
<glyph unicode="&#xc0;" horiz-adv-x="1216" d="M51 0l410 1423h297l407 -1423h-125l-114 393h-635l-113 -393h-127zM322 506h573l-231 807h-111zM344 1790l45 111l424 -203l-41 -88z" />
<glyph unicode="&#xc1;" horiz-adv-x="1216" d="M51 0l410 1423h297l407 -1423h-125l-114 393h-635l-113 -393h-127zM322 506h573l-231 807h-111zM393 1698l424 203l45 -111l-428 -180z" />
<glyph unicode="&#xc2;" horiz-adv-x="1216" d="M51 0l410 1423h297l407 -1423h-125l-114 393h-635l-113 -393h-127zM279 1634l274 269h106l275 -269h-141l-185 176l-186 -176h-143zM322 506h573l-231 807h-111z" />
<glyph unicode="&#xc3;" horiz-adv-x="1216" d="M51 0l410 1423h297l407 -1423h-125l-114 393h-635l-113 -393h-127zM266 1776q11 13 29 32t64 50.5t81 31.5q41 0 110 -28t132 -56t88 -28q18 0 51.5 23.5t57.5 46.5l24 24l31 -92q-10 -13 -26 -31.5t-59 -50t-77 -31.5q-49 0 -175 58.5t-157 58.5q-20 0 -56 -26t-62 -52 l-25 -25zM322 506h573l-231 807h-111z" />
<glyph unicode="&#xc4;" horiz-adv-x="1216" d="M51 0l410 1423h297l407 -1423h-125l-114 393h-635l-113 -393h-127zM322 506h573l-231 807h-111zM342 1677v164h121v-164h-121zM754 1677v164h118v-164h-118z" />
<glyph unicode="&#xc5;" horiz-adv-x="1216" d="M51 0l395 1378q-67 55 -67 158q0 95 62.5 150t162.5 55t162.5 -55t62.5 -150q0 -97 -61 -152l397 -1384h-125l-114 393h-635l-113 -393h-127zM322 506h573l-231 807h-111zM475 1536q0 -47 23.5 -76t66.5 -37h78q42 8 66 37t24 76q0 55 -34 85t-95 30t-95 -30t-34 -85z " />
<glyph unicode="&#xc6;" horiz-adv-x="1796" d="M45 0l479 1427h1172v-118h-727v-516h604v-119h-604v-555h727v-119h-852v389h-533l-135 -389h-131zM346 510h498v799h-228z" />
<glyph unicode="&#xc7;" horiz-adv-x="1114" d="M127 707q0 150 12 257.5t45 202.5t90.5 153t149 91t219.5 33q165 0 385 -43l-6 -111q-219 39 -369 39q-73 0 -130 -13.5t-98.5 -38t-71 -66t-48 -89t-29 -115.5t-14.5 -137.5t-4 -162.5q0 -92 4 -160.5t14.5 -135.5t29.5 -114t48.5 -87.5t71.5 -64.5t99 -37.5t130 -13.5 q150 0 367 39l6 -110q-194 -40 -366 -43v-86q119 0 171 -32t52 -122q0 -87 -48.5 -129.5t-134.5 -42.5q-40 0 -83 3t-66 6l-23 3l5 82q84 -6 145 -6q92 0 92 84q0 76 -92 76h-96v166q-111 7 -191.5 43.5t-131.5 95t-81 149.5t-41.5 194t-11.5 243z" />
<glyph unicode="&#xc8;" horiz-adv-x="1130" d="M178 0v1423h854v-114h-727v-529h604v-112h-604v-555h727v-113h-854zM362 1790l46 111l423 -203l-40 -88z" />
<glyph unicode="&#xc9;" horiz-adv-x="1130" d="M178 0v1423h854v-114h-727v-529h604v-112h-604v-555h727v-113h-854zM373 1698l424 203l45 -111l-428 -180z" />
<glyph unicode="&#xca;" horiz-adv-x="1130" d="M178 0v1423h854v-114h-727v-529h604v-112h-604v-555h727v-113h-854zM270 1634l275 269h106l275 -269h-142l-184 176l-186 -176h-144z" />
<glyph unicode="&#xcb;" horiz-adv-x="1130" d="M178 0v1423h854v-114h-727v-529h604v-112h-604v-555h727v-113h-854zM338 1677v164h121v-164h-121zM750 1677v164h118v-164h-118z" />
<glyph unicode="&#xcc;" horiz-adv-x="483" d="M-39 1790l45 111l424 -203l-41 -88zM178 0v1423h127v-1423h-127z" />
<glyph unicode="&#xcd;" horiz-adv-x="483" d="M29 1698l424 203l45 -111l-428 -180zM178 0v1423h127v-1423h-127z" />
<glyph unicode="&#xce;" horiz-adv-x="483" d="M-96 1634l274 269h107l274 -269h-141l-185 176l-186 -176h-143zM178 0v1423h127v-1423h-127z" />
<glyph unicode="&#xcf;" horiz-adv-x="483" d="M-25 1677v164h121v-164h-121zM178 0v1423h127v-1423h-127zM387 1677v164h119v-164h-119z" />
<glyph unicode="&#xd0;" horiz-adv-x="1329" d="M39 655v119h145v653h516q508 0 508 -692q0 -123 -14.5 -226.5t-51 -199.5t-93 -163t-145.5 -106.5t-204 -39.5h-516v655h-145zM309 119h391q87 0 154 35.5t108.5 93.5t68 140t36.5 166t10 181q0 574 -377 574h-391v-535h338v-119h-338v-536z" />
<glyph unicode="&#xd1;" horiz-adv-x="1376" d="M178 0v1423h250l596 -1310h47v1310h125v-1423h-246l-600 1309h-45v-1309h-127zM350 1776q11 13 29 32t64 50.5t81 31.5q41 0 110 -28t132 -56t88 -28q18 0 51.5 23.5t57.5 46.5l24 24l31 -92q-10 -13 -26 -31.5t-59 -50t-77 -31.5q-49 0 -175 58.5t-157 58.5 q-20 0 -56 -26t-62 -52l-25 -25z" />
<glyph unicode="&#xd2;" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-163 0 -272 45.5t-171 141t-87 224t-25 314.5zM254 705q0 -129 10 -219.5 t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5zM430 1790l45 111l424 -203 l-41 -88z" />
<glyph unicode="&#xd3;" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-163 0 -272 45.5t-171 141t-87 224t-25 314.5zM254 705q0 -129 10 -219.5 t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5zM422 1698l424 203l45 -111 l-428 -180z" />
<glyph unicode="&#xd4;" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-163 0 -272 45.5t-171 141t-87 224t-25 314.5zM254 705q0 -129 10 -219.5 t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5zM350 1634l275 269h106l275 -269 h-142l-184 176l-186 -176h-144z" />
<glyph unicode="&#xd5;" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-163 0 -272 45.5t-171 141t-87 224t-25 314.5zM254 705q0 -129 10 -219.5 t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5zM338 1776q11 13 29 32t64 50.5 t81 31.5q41 0 110 -28t132 -56t88 -28q18 0 51.5 23.5t57.5 46.5l24 24l31 -92q-10 -13 -26 -31.5t-59 -50t-77 -31.5q-49 0 -175 58.5t-157 58.5q-20 0 -56 -26t-62 -52l-25 -25z" />
<glyph unicode="&#xd6;" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5t226 -32.5t159.5 -91.5t101.5 -152t54 -204.5t16 -258.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-163 0 -272 45.5t-171 141t-87 224t-25 314.5zM254 705q0 -129 10 -219.5 t37 -168.5t74.5 -124.5t122.5 -72.5t180 -26q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 126 -11 219t-39.5 172.5t-76 128.5t-122.5 76.5t-177 27.5q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5zM414 1677v164h121v-164h-121z M825 1677v164h119v-164h-119z" />
<glyph unicode="&#xd7;" d="M154 174l342 340l-342 338l79 82l340 -344l340 344l80 -80l-344 -340l344 -340l-80 -82l-340 344l-340 -342z" />
<glyph unicode="&#xd8;" horiz-adv-x="1355" d="M123 705q0 147 15.5 258t54 204t101 152.5t158.5 92t226 32.5q162 0 272 -49l111 235l96 -39l-119 -252q106 -86 151.5 -242.5t45.5 -391.5q0 -152 -15.5 -263.5t-53.5 -202t-102 -146t-159.5 -84.5t-226.5 -29q-150 0 -256 38l-117 -251l-96 43l121 258 q-114 81 -160.5 236.5t-46.5 400.5zM254 705q0 -201 28 -326t101 -195l516 1100q-88 45 -221 45q-103 0 -177.5 -27t-122 -76t-75.5 -129t-38.5 -172.5t-10.5 -219.5zM473 127q79 -33 205 -33q106 0 180.5 24.5t122.5 69.5t75 122.5t37.5 169.5t10.5 225q0 186 -27.5 313 t-93.5 201z" />
<glyph unicode="&#xd9;" horiz-adv-x="1314" d="M170 418v1005h125v-1005q0 -171 90.5 -247.5t263.5 -76.5q184 0 276.5 75.5t92.5 248.5v1005h127v-1005q0 -231 -125 -334.5t-371 -103.5q-235 0 -357 104t-122 334zM412 1790l45 111l424 -203l-41 -88z" />
<glyph unicode="&#xda;" horiz-adv-x="1314" d="M170 418v1005h125v-1005q0 -171 90.5 -247.5t263.5 -76.5q184 0 276.5 75.5t92.5 248.5v1005h127v-1005q0 -231 -125 -334.5t-371 -103.5q-235 0 -357 104t-122 334zM420 1698l424 203l45 -111l-428 -180z" />
<glyph unicode="&#xdb;" horiz-adv-x="1314" d="M170 418v1005h125v-1005q0 -171 90.5 -247.5t263.5 -76.5q184 0 276.5 75.5t92.5 248.5v1005h127v-1005q0 -231 -125 -334.5t-371 -103.5q-235 0 -357 104t-122 334zM328 1634l274 269h107l274 -269h-141l-185 176l-186 -176h-143z" />
<glyph unicode="&#xdc;" horiz-adv-x="1314" d="M170 418v1005h125v-1005q0 -171 90.5 -247.5t263.5 -76.5q184 0 276.5 75.5t92.5 248.5v1005h127v-1005q0 -231 -125 -334.5t-371 -103.5q-235 0 -357 104t-122 334zM391 1677v164h121v-164h-121zM803 1677v164h119v-164h-119z" />
<glyph unicode="&#xdd;" horiz-adv-x="1093" d="M27 1423h141l379 -690l377 690h143l-457 -821v-602h-127v602zM358 1698l424 203l45 -111l-428 -180z" />
<glyph unicode="&#xde;" horiz-adv-x="1228" d="M178 0v1427h127v-237h393q228 0 335.5 -109t107.5 -338q0 -233 -109.5 -359t-333.5 -126h-393v-258h-127zM305 379h393q161 0 237.5 95t76.5 269q0 170 -74.5 249t-239.5 79h-393v-692z" />
<glyph unicode="&#xdf;" horiz-adv-x="1155" d="M154 0v1128q0 207 88 289t293 82t291.5 -67.5t86.5 -221.5q0 -108 -36.5 -167.5t-122.5 -96.5q-76 -36 -99.5 -54.5t-23.5 -47.5q0 -33 34.5 -59.5t143.5 -82.5q155 -77 211.5 -143.5t56.5 -189.5q0 -209 -93 -299t-316 -90q-43 0 -107 6.5t-107 13.5l-42 6l6 107 q167 -21 241 -21q161 0 225 62.5t64 197.5q0 93 -45 141.5t-186 118.5q-127 63 -170 107.5t-43 116.5q0 67 37 104.5t121 75.5q71 33 96.5 74t25.5 114q0 101 -54 141.5t-195 40.5q-73 0 -119 -11.5t-79.5 -42.5t-48 -85t-14.5 -139v-1108h-120z" />
<glyph unicode="&#xe0;" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM215 291q0 -99 43 -153t127 -54q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5zM256 1403l45 106l424 -198l-39 -86z" />
<glyph unicode="&#xe1;" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM215 291q0 -99 43 -153t127 -54q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5zM252 1311l424 198l45 -106l-430 -178z" />
<glyph unicode="&#xe2;" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM201 1219l250 280h86l251 -280h-129l-163 188l-166 -188h-129zM215 291q0 -99 43 -153t127 -54q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM168 1366q4 4 11.5 11t29 24.5t42.5 31t48 24.5t49 11q43 0 152.5 -49t138.5 -49q18 0 52 20t59 40l24 20l29 -86q-10 -11 -27.5 -27t-61.5 -42.5t-77 -26.5q-43 0 -151.5 50t-139.5 50q-21 0 -57.5 -21t-62.5 -42l-27 -21zM215 291q0 -99 43 -153t127 -54 q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM215 291q0 -99 43 -153t127 -54q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5zM236 1284v164h120v-164h-120zM639 1284v164h119v-164h-119z" />
<glyph unicode="&#xe5;" horiz-adv-x="1021" d="M88 289q0 141 72.5 212.5t228.5 86.5l348 35v96q0 114 -49.5 164.5t-150.5 50.5q-65 0 -162 -8t-161 -16l-64 -7l-7 98q226 43 398 43q165 0 241 -80t76 -245v-549q7 -75 133 -90l-6 -98q-158 0 -231 81q-22 -9 -59 -23t-138.5 -37t-187.5 -23q-136 0 -208.5 78.5 t-72.5 230.5zM215 291q0 -99 43 -153t127 -54q74 0 162 18t139 36l51 18v370l-334 -34q-101 -9 -144.5 -57.5t-43.5 -143.5zM311 1325q0 86 59.5 145.5t147.5 59.5q86 0 145.5 -59.5t59.5 -145.5q0 -88 -59.5 -147.5t-145.5 -59.5q-88 0 -147.5 59.5t-59.5 147.5zM399 1325 q0 -51 34 -87t85 -36q49 0 83 36t34 87q0 50 -34 84.5t-83 34.5q-51 0 -85 -34.5t-34 -84.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1656" d="M88 289q0 68 15 117t41.5 81.5t74.5 54t103.5 33.5t138.5 21l276 27v92q0 211 -196 211q-68 0 -165 -5t-160 -11l-64 -5l-5 111q238 26 398 26q221 0 278 -165q101 165 334 165q203 0 303.5 -115t100.5 -368l-7 -98h-696q2 -189 66.5 -279t220.5 -90q67 0 160 5t153 9 l60 5l4 -103q-229 -28 -389 -28q-205 0 -299 114l-70 -31q-27 -12 -67 -26.5t-141.5 -35.5t-195.5 -21q-134 0 -203 78.5t-69 230.5zM215 291q0 -99 42 -151t118 -52q74 0 174 21t149 37t82 28q-47 112 -47 346l-330 -31q-99 -9 -143.5 -55.5t-44.5 -142.5zM858 563h578 q0 199 -67 285t-212 86q-299 0 -299 -371z" />
<glyph unicode="&#xe7;" horiz-adv-x="886" d="M111 530q0 280 97 397t327 117q39 0 105.5 -6.5t113.5 -13.5l47 -6l-6 -105q-162 21 -240 21q-182 0 -249.5 -89.5t-67.5 -314.5q0 -103 7.5 -170.5t27 -123t55.5 -85.5t91 -45.5t136 -15.5q35 0 96 5t105 9l43 5l4 -105q-183 -24 -271 -24h-28v-86q119 0 171 -32 t52 -122q0 -88 -48.5 -130t-133.5 -42q-40 0 -83 3t-66 6l-23 3l4 82q84 -6 145 -6q92 0 92 84q0 76 -92 76h-96v170q-180 23 -247.5 146t-67.5 398z" />
<glyph unicode="&#xe8;" horiz-adv-x="1032" d="M109 508q0 536 421 536q202 0 303 -116t101 -369l-4 -98h-697q0 -189 64.5 -280t220.5 -91q67 0 160.5 5t153.5 9l61 5l4 -101q-231 -28 -391 -28q-113 1 -190.5 34.5t-122.5 102.5t-64.5 163.5t-19.5 227.5zM233 563h578q0 203 -67 289t-214 86q-145 0 -221 -89 t-76 -286zM252 1405l45 106l424 -198l-39 -86z" />
<glyph unicode="&#xe9;" horiz-adv-x="1032" d="M109 508q0 536 421 536q202 0 303 -116t101 -369l-4 -98h-697q0 -189 64.5 -280t220.5 -91q67 0 160.5 5t153.5 9l61 5l4 -101q-231 -28 -391 -28q-113 1 -190.5 34.5t-122.5 102.5t-64.5 163.5t-19.5 227.5zM233 563h578q0 203 -67 289t-214 86q-145 0 -221 -89 t-76 -286zM315 1311l424 198l45 -106l-430 -178z" />
<glyph unicode="&#xea;" horiz-adv-x="1032" d="M109 508q0 536 421 536q202 0 303 -116t101 -369l-4 -98h-697q0 -189 64.5 -280t220.5 -91q67 0 160.5 5t153.5 9l61 5l4 -101q-231 -28 -391 -28q-113 1 -190.5 34.5t-122.5 102.5t-64.5 163.5t-19.5 227.5zM233 563h578q0 203 -67 289t-214 86q-145 0 -221 -89 t-76 -286zM242 1219l250 280h86l251 -280h-129l-163 188l-166 -188h-129z" />
<glyph unicode="&#xeb;" horiz-adv-x="1032" d="M109 508q0 536 421 536q202 0 303 -116t101 -369l-4 -98h-697q0 -189 64.5 -280t220.5 -91q67 0 160.5 5t153.5 9l61 5l4 -101q-231 -28 -391 -28q-113 1 -190.5 34.5t-122.5 102.5t-64.5 163.5t-19.5 227.5zM233 563h578q0 203 -67 289t-214 86q-145 0 -221 -89 t-76 -286zM262 1284v164h121v-164h-121zM666 1284v164h118v-164h-118z" />
<glyph unicode="&#xec;" horiz-adv-x="428" d="M-123 1403l45 106l424 -198l-39 -86zM154 0v1024h120v-1024h-120z" />
<glyph unicode="&#xed;" horiz-adv-x="428" d="M82 1311l424 198l45 -106l-430 -178zM154 0h120v1024h-120v-1024z" />
<glyph unicode="&#xee;" horiz-adv-x="428" d="M-82 1219l250 280h86l252 -280h-129l-164 188l-166 -188h-129zM154 0h120v1024h-120v-1024z" />
<glyph unicode="&#xef;" horiz-adv-x="428" d="M-55 1284v164h121v-164h-121zM154 0h120v1024h-120v-1024zM348 1284v164h119v-164h-119z" />
<glyph unicode="&#xf0;" horiz-adv-x="1112" d="M88 438q0 199 113 319t313 120q68 0 157 -20t144 -40l55 -20q-13 287 -305 460l-246 -163l-59 80l205 137q-112 51 -262 92l28 96q194 -47 338 -117l209 140l60 -80l-170 -115q331 -207 331 -604q0 -272 -47.5 -433.5t-147 -234.5t-265.5 -73q-214 0 -332.5 117.5 t-118.5 338.5zM217 438q0 -165 82.5 -254.5t239.5 -89.5q122 0 192.5 54.5t104.5 182t36 353.5q-23 9 -61 22.5t-132 35.5t-159 22q-142 0 -222.5 -91t-80.5 -235z" />
<glyph unicode="&#xf1;" horiz-adv-x="1091" d="M154 0h120v848q18 10 48 24t113.5 38t154.5 24q52 0 89 -8.5t63.5 -29.5t43 -49.5t25.5 -77t12.5 -103t3.5 -134.5v-532h123v539q0 118 -9 197.5t-30.5 141.5t-61 97t-98 52t-143.5 17q-72 0 -155.5 -24t-130.5 -48l-48 -24v76h-120v-1024zM248 1366q4 4 11.5 11t29 24.5 t42.5 31t48 24.5t49 11q43 0 152.5 -49t138.5 -49q18 0 52 20t59 40l24 20l29 -86q-10 -11 -27.5 -27t-61.5 -42.5t-77 -26.5q-43 0 -151.5 50t-139.5 50q-21 0 -57.5 -21t-62.5 -42l-27 -21z" />
<glyph unicode="&#xf2;" horiz-adv-x="1079" d="M111 526q0 275 97.5 396.5t332.5 121.5q233 0 330.5 -121.5t97.5 -396.5q0 -151 -19 -249.5t-67 -167.5t-131 -99t-211 -30q-129 0 -212.5 30t-131.5 99t-67 167t-19 250zM238 526q0 -102 6 -167t24 -121.5t51.5 -86.5t87.5 -46.5t134 -16.5q66 0 114 10t82 34.5 t54.5 56.5t32.5 85t16 110.5t4 141.5q0 232 -64.5 321t-238.5 89q-175 0 -239 -88.5t-64 -321.5zM299 1403l45 106l424 -198l-39 -86z" />
<glyph unicode="&#xf3;" horiz-adv-x="1079" d="M111 526q0 -152 19 -250t67 -167t131.5 -99t212.5 -30q128 0 211 30t131 99t67 167.5t19 249.5q0 275 -97.5 396.5t-330.5 121.5q-235 0 -332.5 -121.5t-97.5 -396.5zM238 526q0 233 64 321.5t239 88.5q174 0 238.5 -89t64.5 -321q0 -84 -4 -141.5t-16 -110.5t-32.5 -85 t-54.5 -56.5t-82 -34.5t-114 -10q-80 0 -134 16.5t-87.5 46.5t-51.5 86.5t-24 121.5t-6 167zM334 1311l424 198l45 -106l-430 -178z" />
<glyph unicode="&#xf4;" horiz-adv-x="1079" d="M111 526q0 -152 19 -250t67 -167t131.5 -99t212.5 -30q128 0 211 30t131 99t67 167.5t19 249.5q0 275 -97.5 396.5t-330.5 121.5q-235 0 -332.5 -121.5t-97.5 -396.5zM238 526q0 233 64 321.5t239 88.5q174 0 238.5 -89t64.5 -321q0 -84 -4 -141.5t-16 -110.5t-32.5 -85 t-54.5 -56.5t-82 -34.5t-114 -10q-80 0 -134 16.5t-87.5 46.5t-51.5 86.5t-24 121.5t-6 167zM244 1219l250 280h86l251 -280h-129l-163 188l-166 -188h-129z" />
<glyph unicode="&#xf5;" horiz-adv-x="1079" d="M111 526q0 -152 19 -250t67 -167t131.5 -99t212.5 -30q128 0 211 30t131 99t67 167.5t19 249.5q0 275 -97.5 396.5t-330.5 121.5q-235 0 -332.5 -121.5t-97.5 -396.5zM221 1366q4 4 11.5 11t29 24.5t42.5 31t48 24.5t49 11q43 0 152.5 -49t138.5 -49q18 0 52 20t58 40 l25 20l29 -86q-10 -11 -27.5 -27t-61.5 -42.5t-77 -26.5q-43 0 -151.5 50t-139.5 50q-21 0 -57.5 -21t-63.5 -42l-26 -21zM238 526q0 233 64 321.5t239 88.5q174 0 238.5 -89t64.5 -321q0 -84 -4 -141.5t-16 -110.5t-32.5 -85t-54.5 -56.5t-82 -34.5t-114 -10 q-80 0 -134 16.5t-87.5 46.5t-51.5 86.5t-24 121.5t-6 167z" />
<glyph unicode="&#xf6;" horiz-adv-x="1079" d="M111 526q0 -152 19 -250t67 -167t131.5 -99t212.5 -30q128 0 211 30t131 99t67 167.5t19 249.5q0 275 -97.5 396.5t-330.5 121.5q-235 0 -332.5 -121.5t-97.5 -396.5zM238 526q0 233 64 321.5t239 88.5q174 0 238.5 -89t64.5 -321q0 -84 -4 -141.5t-16 -110.5t-32.5 -85 t-54.5 -56.5t-82 -34.5t-114 -10q-80 0 -134 16.5t-87.5 46.5t-51.5 86.5t-24 121.5t-6 167zM270 1284v164h121v-164h-121zM674 1284v164h119v-164h-119z" />
<glyph unicode="&#xf7;" d="M199 539v120h749v-120h-749zM426 686v184h295v-184h-295zM510 68v190h125v-190h-125z" />
<glyph unicode="&#xf8;" horiz-adv-x="1079" d="M111 526q0 275 97.5 396.5t332.5 121.5q91 0 159 -18l88 213l89 -31l-91 -215q97 -53 140 -166.5t43 -300.5q0 -151 -19 -249.5t-67 -167.5t-131 -99t-211 -30q-90 0 -162 16l-92 -227l-86 30l90 228q-100 52 -140 170.5t-40 328.5zM238 526q0 -171 20 -261.5t82 -131.5 l319 789q-46 14 -118 14q-175 0 -239 -88.5t-64 -321.5zM420 100q49 -12 121 -12q66 0 114 10t82 34.5t54.5 56.5t32.5 85t16 110.5t4 141.5q0 145 -23.5 231t-79.5 128z" />
<glyph unicode="&#xf9;" horiz-adv-x="1075" d="M143 489v535h121v-532q0 -98 5 -159.5t19 -112.5t40.5 -77t68 -39.5t103.5 -13.5q72 0 147 21.5t115 42.5l39 22v848h121v-1024h-121v76q-18 -11 -48.5 -27t-114 -42.5t-153.5 -26.5q-72 0 -124.5 10.5t-91 36.5t-62.5 63t-38.5 97t-20 131t-5.5 171zM242 1403l45 106 l424 -198l-39 -86z" />
<glyph unicode="&#xfa;" horiz-adv-x="1075" d="M143 489q0 -100 5.5 -171t20 -131t38.5 -97t62.5 -63t91 -36.5t124.5 -10.5q70 0 149 24t123 48l44 24v-76h121v1024h-121v-848q-6 -3 -16 -9t-43 -21t-66.5 -26t-82 -20.5t-93.5 -9.5q-62 0 -103.5 13.5t-68 39.5t-40.5 77t-19 112.5t-5 159.5v532h-121v-535zM330 1311 l424 198l45 -106l-430 -178z" />
<glyph unicode="&#xfb;" horiz-adv-x="1075" d="M143 489q0 -100 5.5 -171t20 -131t38.5 -97t62.5 -63t91 -36.5t124.5 -10.5q70 0 149 24t123 48l44 24v-76h121v1024h-121v-848q-6 -3 -16 -9t-43 -21t-66.5 -26t-82 -20.5t-93.5 -9.5q-62 0 -103.5 13.5t-68 39.5t-40.5 77t-19 112.5t-5 159.5v532h-121v-535zM227 1219 l250 280h86l252 -280h-129l-164 188l-166 -188h-129z" />
<glyph unicode="&#xfc;" horiz-adv-x="1075" d="M143 489q0 -100 5.5 -171t20 -131t38.5 -97t62.5 -63t91 -36.5t124.5 -10.5q70 0 149 24t123 48l44 24v-76h121v1024h-121v-848q-6 -3 -16 -9t-43 -21t-66.5 -26t-82 -20.5t-93.5 -9.5q-62 0 -103.5 13.5t-68 39.5t-40.5 77t-19 112.5t-5 159.5v532h-121v-535zM283 1284 v164h120v-164h-120zM686 1284v164h119v-164h-119z" />
<glyph unicode="&#xfd;" horiz-adv-x="978" d="M55 1024h125l273 -918h73l275 918h125l-443 -1485h-123l138 461h-142zM330 1311l424 198l45 -106l-430 -178z" />
<glyph unicode="&#xfe;" horiz-adv-x="1069" d="M154 -461v1940h120v-510q18 8 49.5 20.5t116 33.5t154.5 21q205 0 284.5 -117t79.5 -397q0 -153 -21.5 -253.5t-75 -169t-142.5 -98t-225 -29.5q-36 0 -91 3.5t-92 6.5l-37 4v-455h-120zM274 100q143 -12 211 -12q89 0 151 18t101 50t60.5 89t29 122t7.5 161 q0 219 -52.5 312.5t-195.5 93.5q-70 0 -148 -17.5t-121 -34.5l-43 -18v-764z" />
<glyph unicode="&#xff;" horiz-adv-x="978" d="M55 1024h125l273 -918h73l275 918h125l-443 -1485h-123l138 461h-142zM225 1284v164h121v-164h-121zM629 1284v164h119v-164h-119z" />
<glyph unicode="&#x152;" horiz-adv-x="1904" d="M123 707q0 190 25.5 322t87 229t168 143.5t264.5 46.5q168 0 301 -21h837v-122h-712v-512h589v-123h-589v-547h712v-125h-835q-189 -18 -303 -18q-130 0 -224.5 30.5t-156.5 87t-98.5 148.5t-51 201.5t-14.5 259.5zM254 709q0 -108 7 -188t24.5 -151t48 -118.5 t77.5 -82.5t113.5 -51t155.5 -16q85 0 289 17v1186q-264 22 -291 22q-103 0 -177 -25.5t-122 -72t-75.5 -125t-38.5 -171.5t-11 -224z" />
<glyph unicode="&#x153;" horiz-adv-x="1767" d="M111 528q0 274 99 394t333 120q143 0 232 -53t134 -172q50 121 140 173t217 52q202 0 302.5 -115t100.5 -368l-4 -98h-696q0 -189 64 -279t220 -90q67 0 160.5 5t154.5 9l60 5l4 -103q-231 -28 -391 -28q-131 0 -212.5 49t-125.5 149q-41 -104 -126 -151t-234 -47 q-129 0 -212.5 30t-132.5 99.5t-68 168.5t-19 250zM238 528q0 -100 6.5 -165.5t25 -122t52.5 -87t88 -47t133 -16.5t133 18t87 50t51 89t24 120t6 159q0 218 -71.5 312t-229.5 94q-174 0 -239.5 -87.5t-65.5 -316.5zM969 563h577q0 200 -66.5 285.5t-213.5 85.5 q-297 0 -297 -371z" />
<glyph unicode="&#x178;" horiz-adv-x="1093" d="M27 1423h141l379 -690l377 690h143l-457 -821v-602h-127v602zM279 1677v164h120v-164h-120zM690 1677v164h119v-164h-119z" />
<glyph unicode="&#x2c6;" horiz-adv-x="466" d="M-35 1219l250 280h86l252 -280h-129l-164 188l-166 -188h-129z" />
<glyph unicode="&#x2dc;" horiz-adv-x="466" d="M-66 1366q12 11 31 28t67 45.5t83 28.5q43 0 152.5 -49t138.5 -49q18 0 52 20t58 40l25 20l28 -86q-10 -11 -27.5 -27t-61.5 -42.5t-77 -26.5q-43 0 -151 50t-139 50q-21 0 -58 -21t-63 -42l-27 -21z" />
<glyph unicode="&#x2000;" horiz-adv-x="951" />
<glyph unicode="&#x2001;" horiz-adv-x="1903" />
<glyph unicode="&#x2002;" horiz-adv-x="951" />
<glyph unicode="&#x2003;" horiz-adv-x="1903" />
<glyph unicode="&#x2004;" horiz-adv-x="634" />
<glyph unicode="&#x2005;" horiz-adv-x="475" />
<glyph unicode="&#x2006;" horiz-adv-x="317" />
<glyph unicode="&#x2007;" horiz-adv-x="317" />
<glyph unicode="&#x2008;" horiz-adv-x="237" />
<glyph unicode="&#x2009;" horiz-adv-x="380" />
<glyph unicode="&#x200a;" horiz-adv-x="105" />
<glyph unicode="&#x2010;" horiz-adv-x="911" d="M145 510v115h623v-115h-623z" />
<glyph unicode="&#x2011;" horiz-adv-x="911" d="M145 510v115h623v-115h-623z" />
<glyph unicode="&#x2012;" horiz-adv-x="911" d="M145 510v115h623v-115h-623z" />
<glyph unicode="&#x2013;" horiz-adv-x="1302" d="M139 494v110h1024v-110h-1024z" />
<glyph unicode="&#x2014;" horiz-adv-x="2326" d="M139 494v110h2048v-110h-2048z" />
<glyph unicode="&#x2018;" horiz-adv-x="428" d="M113 1032l118 432h99l-86 -432h-131z" />
<glyph unicode="&#x2019;" horiz-adv-x="423" d="M117 1030l86 432h131l-119 -432h-98z" />
<glyph unicode="&#x201a;" horiz-adv-x="425" d="M106 -100l60 215h49l-43 -215h-66z" />
<glyph unicode="&#x201c;" horiz-adv-x="727" d="M113 1032l118 432h99l-86 -432h-131zM412 1032l118 432h99l-86 -432h-131z" />
<glyph unicode="&#x201d;" horiz-adv-x="739" d="M117 1032l86 432h131l-119 -432h-98zM432 1032l86 432h131l-119 -432h-98z" />
<glyph unicode="&#x201e;" horiz-adv-x="702" d="M59 -205l119 432h98l-86 -432h-131zM352 -205l119 432h98l-86 -432h-131z" />
<glyph unicode="&#x2022;" horiz-adv-x="978" d="M233 219v590h512v-590h-512z" />
<glyph unicode="&#x2026;" horiz-adv-x="1464" d="M143 0v207h136v-207h-136zM664 0v207h135v-207h-135zM1186 0v207h135v-207h-135z" />
<glyph unicode="&#x202f;" horiz-adv-x="380" />
<glyph unicode="&#x2039;" horiz-adv-x="608" d="M94 459v104l371 283v-129l-264 -203l264 -223v-131z" />
<glyph unicode="&#x203a;" horiz-adv-x="608" d="M143 164v133l263 223l-263 201v129l371 -283v-104z" />
<glyph unicode="&#x205f;" horiz-adv-x="475" />
<glyph unicode="&#x20ac;" d="M61 471v104h129q-2 31 -2 97q0 75 2 112h-129v105h136q11 121 40 206.5t84.5 150t144 95.5t214.5 31q164 0 364 -41l-6 -104q-194 37 -350 37q-95 0 -162 -23.5t-108.5 -73t-63.5 -116t-32 -162.5h612v-105h-619q-2 -37 -2 -112q0 -66 2 -97h619v-104h-615 q9 -98 31 -166.5t64.5 -118t110.5 -73t165 -23.5q155 0 348 37l6 -107q-209 -40 -364 -40q-125 0 -213.5 31.5t-144 96.5t-85 152.5t-40.5 210.5h-136z" />
<glyph unicode="&#x2122;" horiz-adv-x="1396" d="M193 1196v88h409v-88h-147v-516h-97v516h-165zM670 678v606h129l149 -453l158 453h129v-606h-92v485l-152 -458h-82l-149 458v-485h-90z" />
<glyph unicode="&#xe000;" horiz-adv-x="1024" d="M0 0v1024h1024v-1024h-1024z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,240 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="TitilliumLtBoldItalic" horiz-adv-x="1146" >
<font-face units-per-em="2048" ascent="1536" descent="-512" />
<missing-glyph horiz-adv-x="450" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="2048" />
<glyph unicode=" " horiz-adv-x="450" />
<glyph unicode="&#x09;" horiz-adv-x="450" />
<glyph unicode="&#xa0;" horiz-adv-x="450" />
<glyph unicode="!" horiz-adv-x="401" d="M143 0l47 205h125l-47 -205h-125zM246 457l223 977h123l-238 -977h-108z" />
<glyph unicode="&#x22;" horiz-adv-x="643" d="M424 971l104 452h117l-110 -452h-111zM551 971l104 452h117l-110 -452h-111z" />
<glyph unicode="#" d="M135 377l27 106h233l99 402h-234l27 106h233l96 375h115l-96 -375h342l96 375h115l-96 -375h233l-27 -106h-233l-98 -402h233l-26 -106h-234l-92 -377h-115l92 377h-342l-92 -377h-115l93 377h-234zM510 483h342l98 402h-342z" />
<glyph unicode="$" d="M197 25l22 98q121 -19 242 -29l215 568q-143 48 -205.5 108t-62.5 178q0 202 130 315t349 113q9 0 29 -1t30 -1l88 234h96l-92 -244q49 -6 99.5 -16t76.5 -16l25 -7l-22 -92q-109 19 -220 29l-196 -519q74 -26 119 -48.5t80.5 -56.5t50 -79t14.5 -110q0 -218 -129 -343.5 t-350 -125.5q-24 0 -78 4l-86 -230h-90l88 236q-55 5 -110.5 14t-83.5 15zM530 956q0 -73 41 -111t146 -75l188 498h-26q-163 0 -256 -79.5t-93 -232.5zM549 88h45q164 0 256 93.5t92 258.5q0 81 -38 119t-146 76z" />
<glyph unicode="%" d="M340 12l704 1434l91 -25l-705 -1431zM342 1159q-36 -145 4 -217t143 -72t179 71.5t112 215.5q36 143 -4.5 212t-144.5 69t-178.5 -68.5t-110.5 -210.5zM435 1011.5q-16 50.5 9 147.5t64 143t100 46q63 0 78.5 -48t-10.5 -143q-24 -100 -62.5 -148t-101.5 -48 q-61 0 -77 50.5zM700 289q70 278 289 278q104 0 145.5 -68.5t6.5 -211.5q-36 -143 -112.5 -215t-178.5 -72q-103 0 -144.5 72t-5.5 217zM794 140.5q15 -50.5 76 -50.5q63 0 101.5 48.5t64.5 148.5q25 95 9.5 142.5t-78.5 47.5q-62 0 -100 -46t-62 -142q-26 -98 -11 -148.5z " />
<glyph unicode="&#x26;" horiz-adv-x="1296" d="M160 301q0 207 99 330t327 209q-30 61 -42 101.5t-12 96.5q0 189 101.5 297.5t279.5 108.5q131 0 203 -58t72 -180q0 -160 -102.5 -270.5t-309.5 -187.5l244 -338q78 126 127 282h121q-29 -97 -77.5 -197t-98.5 -173l200 -256l-86 -78l-190 243q-100 -126 -216.5 -188.5 t-262.5 -62.5q-196 0 -286.5 79t-90.5 242zM289 309q0 -219 262 -219q115 0 218.5 59t178.5 168l-311 437q-192 -70 -270 -174.5t-78 -270.5zM659 1036q0 -112 66 -209q180 72 258 159t78 214q0 137 -154 137q-120 0 -184 -84t-64 -217z" />
<glyph unicode="'" horiz-adv-x="344" d="M338 971l104 452h117l-110 -452h-111z" />
<glyph unicode="(" horiz-adv-x="462" d="M180 223q0 136 25.5 282t66 270t89.5 243t97.5 210t89 160.5t66.5 106.5l25 37h119q-9 -14 -25.5 -40t-63.5 -109.5t-89.5 -169.5t-94.5 -212t-89.5 -246t-63 -262t-25.5 -270q0 -129 7.5 -248.5t14.5 -174.5l7 -54h-115q-5 19 -11.5 56t-18 161t-11.5 260z" />
<glyph unicode=")" horiz-adv-x="460" d="M0 -242q9 14 25.5 40t63.5 109.5t89.5 169.5t94.5 212t89.5 246t63 262t25.5 270q0 129 -7.5 248.5t-14.5 174.5l-7 54h115q5 -19 11.5 -56t18 -161t11.5 -260t-25.5 -282t-66 -270t-89.5 -243t-97.5 -210t-89 -160.5t-66.5 -106.5l-25 -37h-119z" />
<glyph unicode="*" horiz-adv-x="841" d="M362 938l224 162l-221 162l55 73l221 -161l84 260l88 -29l-84 -262h270v-90h-274l84 -260l-86 -27l-86 262l-221 -162z" />
<glyph unicode="+" d="M233 457v114h398v412h117v-412h401v-114h-401v-416h-117v416h-398z" />
<glyph unicode="," horiz-adv-x="378" d="M-4 -264l192 469h136l-228 -469h-100z" />
<glyph unicode="-" horiz-adv-x="724" d="M223 492l29 114h504l-29 -114h-504z" />
<glyph unicode="." horiz-adv-x="352" d="M115 0l47 205h125l-47 -205h-125z" />
<glyph unicode="/" horiz-adv-x="831" d="M88 29l873 1413l116 -43l-874 -1413z" />
<glyph unicode="0" d="M211 362q0 118 18.5 237t53.5 232t89.5 211t123 171.5t158 116t190.5 42.5q199 0 301 -99.5t102 -291.5q0 -188 -44 -366t-123.5 -320t-202.5 -228.5t-269 -86.5q-193 0 -295 97.5t-102 284.5zM338 377q0 -145 70 -216t200 -71q97 0 181.5 55t143.5 145t101.5 205.5 t63 237t20.5 238.5q0 143 -69.5 217t-206.5 74q-98 0 -183 -59t-142.5 -153t-99 -212t-60.5 -236t-19 -225z" />
<glyph unicode="1" d="M492 1083l483 271h110l-311 -1354h-125l275 1198l-400 -219z" />
<glyph unicode="2" d="M139 0l25 102l553 463q76 63 126 107.5t103 99t84 99t50.5 94.5t19.5 98q0 107 -68 154t-205 47q-71 0 -167 -12t-156 -24l-60 -11l13 100q23 6 62.5 15.5t143 25.5t185.5 16q379 0 379 -295q0 -79 -28 -152.5t-85 -143t-117 -125t-149 -126.5l-524 -421h706l-26 -111 h-865z" />
<glyph unicode="3" d="M154 49l28 96q217 -55 379 -55q171 0 289.5 95.5t118.5 250.5q0 212 -252 215h-266l26 103l266 4q41 0 87.5 14.5t91.5 42.5t81 65t58 86.5t22 102.5q0 101 -59 147t-188 46q-83 0 -181 -10t-155 -20l-56 -11l13 96q22 6 60.5 15t144 24.5t194.5 15.5q182 0 269 -68.5 t87 -205.5q0 -140 -78 -235t-208 -144q83 -35 126.5 -98.5t43.5 -176.5q0 -142 -73 -248.5t-196 -161t-276 -54.5q-87 0 -186 17t-155 35z" />
<glyph unicode="4" d="M162 260l22 96l664 996h139l-665 -983h518l106 460h125l-106 -460h172l-25 -109h-172l-61 -262h-125l61 262h-653z" />
<glyph unicode="5" d="M147 47l33 103q225 -56 389 -56q183 0 311 130t128 315q0 95 -64 144.5t-188 49.5q-68 0 -154.5 -23.5t-139.5 -47.5l-52 -23l-103 18l215 695h762l-24 -111h-660l-158 -489q22 11 59 26.5t128.5 41.5t156.5 26q168 0 259.5 -71.5t91.5 -219.5q0 -158 -75.5 -289.5 t-206 -206.5t-286.5 -75q-88 0 -193.5 15.5t-167.5 31.5z" />
<glyph unicode="6" d="M236 440q0 82 13.5 169.5t42.5 178.5t70.5 175.5t102 159t132.5 130t166.5 87.5t199.5 32q71 0 153.5 -10t129.5 -20l46 -9l-37 -104q-165 33 -323 33q-89 0 -166.5 -32.5t-132 -82.5t-100 -120.5t-73.5 -136.5t-50 -140q22 10 60 25.5t141 41t190 25.5 q179 0 268.5 -84.5t89.5 -235.5q0 -245 -144.5 -393.5t-398.5 -148.5q-184 0 -282 118t-98 342zM365 438q0 -164 63 -256t190 -92q198 0 305 114.5t107 289.5q0 121 -62 178t-204 57q-79 0 -173.5 -22t-148.5 -44l-55 -22q-22 -68 -22 -203z" />
<glyph unicode="7" d="M315 16l801 1149l17 74h-680l26 113h807l-47 -205l-811 -1170z" />
<glyph unicode="8" d="M135 260q0 303 354 449q-95 48 -128 99t-33 136q0 62 19 121.5t63 116t108.5 98.5t163 68t219.5 26q208 0 308 -72t100 -200q0 -130 -90 -239.5t-250 -153.5q60 -22 100.5 -51t61 -63.5t28.5 -68.5t8 -77q0 -47 -14 -101t-55.5 -121.5t-106 -120.5t-178.5 -89.5 t-260 -36.5q-418 0 -418 280zM270 279q0 -90 79.5 -139.5t232.5 -49.5q96 0 175 23.5t129.5 60.5t85.5 83.5t49.5 90t14.5 82.5q0 96 -50.5 140.5t-166.5 76.5h-213q-50 -14 -95 -33.5t-90.5 -51t-77.5 -70.5t-52.5 -94t-20.5 -119zM455 952q0 -68 40 -115t138 -81h213 q48 12 99.5 35t104.5 60t87 93t34 121q0 101 -70.5 149t-228.5 48q-112 0 -195.5 -27t-130 -73t-69 -99t-22.5 -111z" />
<glyph unicode="9" d="M160 23l43 110q155 -37 315 -37q188 0 321.5 123.5t198.5 374.5q-28 -9 -74.5 -22t-153.5 -34.5t-171 -21.5q-192 0 -277.5 99t-48.5 300q39 199 194.5 328t371.5 129q222 0 297.5 -170t9.5 -489q-28 -157 -77.5 -280.5t-114 -207.5t-146 -139.5t-170.5 -80.5t-191 -25 q-68 0 -149.5 10.5t-129.5 21.5zM440 922q-62 -291 238 -291q62 0 159 18.5t163 36.5l67 19q37 170 32 292.5t-68 191t-181 68.5q-149 0 -263.5 -90.5t-146.5 -244.5z" />
<glyph unicode=":" horiz-adv-x="356" d="M115 0l47 205h125l-47 -205h-125zM274 692l48 205h124l-47 -205h-125z" />
<glyph unicode=";" horiz-adv-x="423" d="M20 -264h101l227 469h-135zM315 692l47 205h125l-47 -205h-125z" />
<glyph unicode="&#x3c;" d="M213 459v110l860 426v-129l-735 -350l735 -356v-131z" />
<glyph unicode="=" d="M252 272v115h878v-115h-878zM252 639v115h878v-115h-878z" />
<glyph unicode="&#x3e;" d="M305 29v131l735 356l-735 350v129l860 -426v-110z" />
<glyph unicode="?" horiz-adv-x="839" d="M299 2l45 211h127l-47 -211h-125zM375 1290l6 103q180 51 313 51q150 0 239 -62.5t89 -193.5q0 -53 -6 -93.5t-24.5 -80.5t-40.5 -71t-66 -73.5t-87.5 -78.5t-117.5 -95q-147 -118 -168 -221l-16 -80h-117q4 60 14 113q26 134 211 276q73 59 114 94.5t79.5 75t56 72 t27.5 71t10 85.5q0 79 -56.5 113t-164.5 34q-53 0 -126.5 -9.5t-121.5 -19.5z" />
<glyph unicode="@" horiz-adv-x="1898" d="M184.5 159.5q-5.5 96.5 5 188.5t33.5 191q61 258 153 436t226.5 289t306 160t400.5 49q138 0 247.5 -23.5t186 -65.5t129.5 -104t80.5 -134.5t35.5 -161t-1.5 -180.5t-34.5 -196q-38 -161 -80 -274.5t-84.5 -182t-95.5 -107t-103.5 -51.5t-118.5 -13q-86 0 -135 27.5 t-59 92.5q-87 -44 -197 -82t-194 -38q-59 0 -103.5 15.5t-71.5 41t-43.5 63.5t-22.5 75.5t-5 86t5.5 85t12.5 81.5q110 616 521 616q116 0 374 -49q-36 -138 -102.5 -436.5t-67.5 -372.5q-1 -56 25 -73t88 -17q44 0 77.5 11t70 43.5t67.5 90.5t64 155t65 233q21 92 30 169 t4.5 153.5t-26 136.5t-65 113t-110 87.5t-164 54t-222.5 19.5q-391 0 -611.5 -191t-328.5 -632q-206 -836 574 -836q34 0 103.5 4.5t122.5 8.5l52 5l-20 -110q-195 -21 -287 -21q-150 0 -268.5 30t-197 81t-131.5 124.5t-78.5 155.5t-31 178.5zM763.5 306q-2.5 -55 8.5 -105 t46.5 -78.5t94.5 -28.5q133 -2 347 113q4 49 52.5 271.5t96.5 426.5q-117 31 -240 31q-157 0 -246.5 -128t-142.5 -382q-14 -65 -16.5 -120z" />
<glyph unicode="A" horiz-adv-x="1136" d="M55 0l727 1423h258l47 -1423h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66z" />
<glyph unicode="B" horiz-adv-x="1183" d="M166 0l328 1423h450q168 0 251 -63.5t83 -208.5q0 -154 -77.5 -261t-196.5 -153q91 -32 135.5 -89.5t44.5 -155.5q0 -227 -140.5 -359.5t-398.5 -132.5h-479zM317 111h355q181 0 281 101.5t100 276.5q0 53 -19.5 90t-57 57t-82 28t-103.5 8h-345zM471 782h340 q149 0 243.5 102t94.5 251q0 100 -53 139t-174 39h-330z" />
<glyph unicode="C" horiz-adv-x="1036" d="M236 387q0 111 18.5 229t55.5 237.5t97 225t136 187.5t181.5 130t225.5 48q71 0 155.5 -11t133.5 -23l49 -11l-28 -103q-166 33 -318 33q-92 0 -174.5 -41.5t-144 -112.5t-111.5 -164.5t-81 -198.5t-47.5 -212t-16.5 -209q0 -152 66 -224.5t210 -72.5q72 0 155 9t130 17 l47 9l-6 -104q-182 -45 -344 -45q-194 0 -291.5 103t-97.5 304z" />
<glyph unicode="D" horiz-adv-x="1243" d="M166 0l328 1423h460q190 0 282.5 -101.5t92.5 -320.5q0 -132 -25 -268t-79.5 -268.5t-131.5 -235t-191 -166t-249 -63.5h-487zM319 113h355q84 0 159.5 41.5t131.5 111.5t101 160t73.5 189.5t43.5 198t15 187.5q0 163 -62.5 236.5t-205.5 73.5h-336z" />
<glyph unicode="E" horiz-adv-x="1038" d="M166 0l328 1423h784l-27 -112h-657l-123 -529h545l-27 -112h-543l-129 -557h658l-27 -113h-782z" />
<glyph unicode="F" horiz-adv-x="989" d="M166 0l328 1423h766l-27 -112h-639l-137 -594h549l-27 -111h-549l-139 -606h-125z" />
<glyph unicode="G" horiz-adv-x="1173" d="M238 373q0 153 26.5 302t84.5 289t141 246t204.5 170t266.5 64q90 0 191.5 -15t157.5 -30l56 -15l-33 -98q-207 45 -389 45q-115 0 -213 -61.5t-163 -161t-111.5 -226.5t-67 -257t-20.5 -254q0 -279 299 -279q56 0 125.5 9t110.5 19l42 9l115 487h-236l25 109h362 l-161 -688q-21 -6 -58.5 -15.5t-142 -25.5t-195.5 -16q-417 0 -417 393z" />
<glyph unicode="H" horiz-adv-x="1277" d="M166 0l328 1423h127l-152 -651h696l152 651h125l-328 -1423h-127l152 659h-697l-151 -659h-125z" />
<glyph unicode="I" horiz-adv-x="456" d="M166 0l328 1423h127l-330 -1423h-125z" />
<glyph unicode="J" horiz-adv-x="532" d="M14 -145l21 112q49 1 80.5 4.5t59 16t44 29.5t33 51.5t27.5 74.5t26 105l273 1175h124l-274 -1190q-20 -87 -34.5 -138t-38 -99t-48.5 -71t-68 -41t-95 -23.5t-130 -5.5z" />
<glyph unicode="K" horiz-adv-x="1056" d="M166 0l328 1423h127l-156 -669l201 4l536 665h144l-580 -718l252 -705h-133l-230 645l-217 -4l-147 -641h-125z" />
<glyph unicode="L" horiz-adv-x="892" d="M166 0l328 1423h127l-304 -1310h586l-24 -113h-713z" />
<glyph unicode="M" horiz-adv-x="1593" d="M166 0l328 1423h223l110 -1245l705 1245h225l-330 -1423h-127l306 1311h-23l-711 -1264h-137l-119 1264h-22l-303 -1311h-125z" />
<glyph unicode="N" horiz-adv-x="1280" d="M166 0l328 1423h237l248 -1298h43l299 1298h123l-328 -1423h-229l-254 1303h-45l-301 -1303h-121z" />
<glyph unicode="O" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 165 -75.5 241 t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5z" />
<glyph unicode="P" horiz-adv-x="1120" d="M166 0l328 1423h458q172 0 251 -79.5t79 -241.5q0 -174 -59 -309.5t-181 -217t-292 -81.5h-344l-115 -494h-125zM432 606h338q126 0 214 70t127.5 179.5t39.5 246.5q0 105 -50.5 156t-164.5 51h-342z" />
<glyph unicode="Q" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-44 -38 -98 -66l96 -297l-119 -39l-92 293q-78 -20 -151 -20q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5 t105 301.5t32 309q0 165 -75.5 241t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5z" />
<glyph unicode="R" horiz-adv-x="1159" d="M166 0l328 1423h442q178 0 265 -76t87 -251q0 -120 -35.5 -218.5t-93.5 -159.5t-120 -97.5t-128 -51.5l166 -569h-127l-157 553h-373l-129 -553h-125zM444 664h332q172 0 276.5 119t104.5 309q0 121 -56 171t-181 50h-326z" />
<glyph unicode="S" horiz-adv-x="1024" d="M117 27l22 102q239 -37 393 -37q173 0 270 98.5t97 272.5q0 92 -47 132.5t-190 86.5q-87 28 -139.5 51t-98.5 59t-66 85t-20 118q0 213 137 331t367 118q79 0 171 -13t145 -27l52 -13l-22 -97q-214 37 -357 37q-170 0 -267 -83t-97 -244q0 -31 6 -55t22 -44t34 -34 t53 -30t67 -27.5t88 -29.5q82 -28 132 -52t88.5 -60t54.5 -84t16 -117q0 -228 -136.5 -359.5t-367.5 -131.5q-84 0 -185.5 12t-161.5 24z" />
<glyph unicode="T" horiz-adv-x="966" d="M322 1311l26 112h922l-27 -112h-397l-303 -1311h-125l301 1311h-397z" />
<glyph unicode="U" horiz-adv-x="1214" d="M236 270q0 93 22 176l225 977h125l-227 -987q-21 -86 -21 -151q0 -191 285 -191q171 0 259 79.5t126 248.5l232 1001h127l-232 -1003q-53 -225 -173.5 -332.5t-346.5 -107.5q-188 0 -294.5 72t-106.5 218z" />
<glyph unicode="V" horiz-adv-x="1110" d="M377 1423h127l18 -1310h99l630 1310h127l-686 -1423h-286z" />
<glyph unicode="W" horiz-adv-x="1679" d="M336 0l53 1423h125l-59 -1308h61l574 1288h135l-31 -1288h57l557 1308h127l-612 -1423h-240l33 1206l-534 -1206h-246z" />
<glyph unicode="X" horiz-adv-x="1048" d="M31 0l583 713l-235 710h129l205 -616l489 616h141l-579 -721l240 -702h-130l-206 610l-496 -610h-141z" />
<glyph unicode="Y" horiz-adv-x="1003" d="M354 1423h127l183 -690l501 690h135l-604 -813l-143 -610h-121l143 623z" />
<glyph unicode="Z" horiz-adv-x="1015" d="M78 0l43 184l964 1069l15 58h-715l27 112h852l-45 -190l-967 -1071l-12 -49h716l-26 -113h-852z" />
<glyph unicode="[" horiz-adv-x="579" d="M70 -250l417 1780h383l-24 -109h-260l-367 -1562h260l-28 -109h-381z" />
<glyph unicode="\" horiz-adv-x="841" d="M387 1415l129 21l268 -1416l-129 -20z" />
<glyph unicode="]" horiz-adv-x="579" d="M6 -248l25 109h260l366 1562h-260l29 109h381l-418 -1780h-383z" />
<glyph unicode="^" d="M268 655l377 697h113l391 -697h-133l-314 574l-301 -574h-133z" />
<glyph unicode="_" horiz-adv-x="1232" d="M92 -285l27 123h919l-30 -123h-916z" />
<glyph unicode="`" horiz-adv-x="1060" d="M592 1407l59 96l361 -192l-58 -84z" />
<glyph unicode="a" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5z" />
<glyph unicode="b" horiz-adv-x="1007" d="M145 29l336 1450h123l-141 -605l18.5 18.5t48.5 40.5t74 51.5t89 41t98 18.5q79 0 132.5 -22.5t82 -66t40 -96t11.5 -124.5q0 -56 -9 -121t-28.5 -138.5t-48 -143.5t-71.5 -134t-94 -112.5t-120 -77t-147 -28.5q-69 0 -167.5 12t-162.5 24zM289 117q154 -29 248 -29 q85 0 155 52.5t113 129t72.5 168.5t41 165.5t11.5 125.5q0 49 -6 82t-23 63.5t-53 45t-92 14.5q-39 0 -86.5 -20t-88 -48t-75 -56.5t-54.5 -48.5l-20 -20z" />
<glyph unicode="c" horiz-adv-x="827" d="M195 281q0 119 20 229.5t63.5 208t105.5 169.5t151.5 114t197.5 42q49 0 110 -8t97 -16l37 -8l-31 -99q-127 23 -217 23q-82 0 -151 -36.5t-116 -97.5t-80 -143t-48 -172.5t-15 -185.5q0 -106 53 -159.5t173 -53.5q36 0 93.5 8t97.5 16l40 9l-6 -98q-139 -43 -262 -43 q-157 0 -235 77t-78 224z" />
<glyph unicode="d" horiz-adv-x="1009" d="M186 264q0 105 21.5 214t65 210t103.5 180t143 126.5t177 47.5q57 0 127.5 -8.5t112.5 -17.5l41 -8l110 471h123l-344 -1479h-118l45 201q-7 -9 -19.5 -24t-51.5 -53t-78.5 -67t-97 -53t-110.5 -24q-250 0 -250 284zM313 264q0 -176 160 -176q43 0 95 27t96 66t82 78 t60 66l21 27l127 553q-137 31 -258 31q-71 0 -134.5 -43.5t-108 -114.5t-77 -160t-48 -180t-15.5 -174z" />
<glyph unicode="e" horiz-adv-x="937" d="M190 283q0 107 20 212.5t64.5 205t107.5 175t156 121t203 45.5q137 0 213 -56.5t76 -176.5q0 -180 -139 -253t-436 -73h-115q-25 -105 -25 -188q0 -98 56.5 -151.5t152.5 -53.5q68 0 152 13t134 25l50 13l-8 -100q-20 -7 -54.5 -17t-129.5 -27t-176 -17q-143 0 -222.5 77 t-79.5 226zM358 584h121q226 0 327 48t101 175q0 70 -43 100.5t-129 30.5q-270 0 -377 -354z" />
<glyph unicode="f" horiz-adv-x="624" d="M70 -461l319 1376h-123l27 109h119l24 100q50 206 126.5 290.5t215.5 84.5q33 0 75 -6t67 -12l26 -6l-24 -97q-84 15 -152 15q-84 0 -129 -62t-82 -211l-24 -96h290l-28 -109h-285l-213 -915l-123 -461h-106z" />
<glyph unicode="g" horiz-adv-x="950" d="M41 -219q0 56 25 106.5t70 91t86 68t95 55.5q-30 30 -30 84q0 40 27 90t54 80l27 31q-141 63 -141 242q0 57 16.5 115t51.5 112t82.5 96t115 67t144.5 25q47 0 93 -8t69 -16l22 -8l303 12l-25 -109h-198q39 -59 39 -149q0 -55 -16 -111.5t-51 -110.5t-84.5 -96t-122 -68 t-158.5 -26l-62 4q-8 -10 -20 -26.5t-32 -56.5t-20 -66q0 -37 39 -52.5t150 -29.5q171 -21 242 -73.5t71 -166.5q0 -152 -141.5 -262t-374.5 -110q-159 0 -252.5 72t-93.5 194zM160 -193q0 -83 60.5 -134.5t176.5 -51.5q102 0 189.5 31t141.5 91t54 136q0 69 -47.5 99 t-167.5 42q-129 16 -180 35q-92 -47 -159.5 -113t-67.5 -135zM373 635q0 -176 178 -176q75 0 135 30.5t94 77t52 94.5t18 91q0 95 -45 140.5t-150 45.5q-87 0 -153.5 -50t-97.5 -118t-31 -135z" />
<glyph unicode="h" horiz-adv-x="1013" d="M141 0l342 1479h123l-151 -656q7 9 19 24t50.5 53t78 67t95 53t107.5 24q115 0 176 -67.5t61 -183.5q0 -91 -41 -273l-120 -520h-121l121 516q37 162 37 256q0 162 -152 162q-43 0 -94 -26.5t-94 -64.5t-79.5 -76t-57.5 -65l-21 -26l-156 -676h-123z" />
<glyph unicode="i" horiz-adv-x="403" d="M139 0l238 1024h123l-238 -1024h-123zM430 1262l39 163h123l-37 -163h-125z" />
<glyph unicode="j" horiz-adv-x="403" d="M-188 -385q70 36 109 57t76.5 49t54 48t35 57.5t28 73t24.5 100.5l238 1024h123l-238 -1024q-20 -85 -33 -133t-36.5 -97t-45.5 -74.5t-67.5 -59t-93.5 -58t-133 -63.5zM434 1264l37 159h123l-37 -159h-123z" />
<glyph unicode="k" horiz-adv-x="901" d="M141 0l342 1479h123l-200 -871l145 4l399 412h146l-453 -471l209 -553h-131l-193 506l-149 -2l-115 -504h-123z" />
<glyph unicode="l" horiz-adv-x="423" d="M152 0l342 1479h120l-342 -1479h-120z" />
<glyph unicode="m" horiz-adv-x="1585" d="M139 0l238 1024h119l-41 -199q7 9 19 23.5t50 52.5t77 67t95 52.5t109 23.5q59 0 104 -20t67 -48t35.5 -56t16.5 -48l2 -20q7 8 19.5 21t51.5 46t78 58t93.5 46t103.5 21q116 0 178 -67.5t62 -183.5q0 -78 -41 -273l-121 -520h-123l121 516q39 171 39 254 q0 77 -39.5 120.5t-112.5 43.5q-39 0 -84.5 -20.5t-83 -50t-69.5 -59.5t-50 -50l-18 -21q-4 -88 -35 -213l-120 -520h-123l121 516q38 166 38 256q0 77 -38.5 119.5t-112.5 42.5q-43 0 -94.5 -26.5t-94 -64t-78.5 -75t-57 -64.5l-20 -26l-158 -678h-123z" />
<glyph unicode="n" horiz-adv-x="1011" d="M139 0l238 1024h119l-43 -199q7 9 19 23.5t50.5 52.5t78 67t95 52.5t107.5 23.5q116 0 177.5 -67t61.5 -184q0 -91 -41 -269l-122 -524h-121l121 516q39 171 39 256q0 78 -38.5 120t-115.5 42q-43 0 -94.5 -26.5t-94 -64t-78.5 -75t-57 -64.5l-20 -26l-158 -678h-123z " />
<glyph unicode="o" horiz-adv-x="1011" d="M193 303q0 198 65 366.5t183.5 270.5t265.5 102q170 0 257 -84.5t87 -252.5q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-167 0 -251 78.5t-84 244.5zM315 303q0 -215 213 -215q117 0 209.5 86t140.5 226.5t48 306.5q0 105 -55 167t-164 62q-113 0 -204 -89.5 t-139.5 -233.5t-48.5 -310z" />
<glyph unicode="p" horiz-adv-x="1007" d="M35 -461l342 1485h119l-45 -203q7 9 19.5 24t51.5 53.5t78 68t94 53.5t105 24q258 0 258 -290q0 -101 -21 -208t-64 -208t-102.5 -181t-143.5 -128.5t-179 -48.5q-57 0 -127.5 9t-111.5 18l-42 9l-110 -477h-121zM289 119q137 -31 258 -31q72 0 136 44.5t108.5 115.5 t77 159t48 176.5t15.5 166.5q0 94 -39.5 139t-126.5 45q-40 0 -90.5 -27t-94 -66t-81.5 -78t-60 -66l-22 -27z" />
<glyph unicode="q" horiz-adv-x="1005" d="M184 266q0 102 21.5 209.5t65 209t103 181t143 128t177.5 48.5q67 0 167.5 -12t167.5 -24l67 -11l-334 -1441h-121l150 647q-7 -9 -19 -24t-50.5 -53t-77.5 -67t-94.5 -53t-107.5 -24q-128 0 -193 75t-65 211zM311 272q0 -92 39.5 -138t126.5 -46q41 0 91.5 27t94 66 t81 78t59.5 66l22 27l127 553q-133 31 -258 31q-87 0 -162 -65t-121.5 -165.5t-73 -214.5t-26.5 -219z" />
<glyph unicode="r" horiz-adv-x="636" d="M139 0l240 1024h121l-37 -154q22 15 60 38.5t139 71t184 64.5l-31 -124q-62 -15 -155.5 -55.5t-156.5 -73.5l-63 -33l-176 -758h-125z" />
<glyph unicode="s" horiz-adv-x="876" d="M106 23l23 98q188 -33 309 -33q133 0 217 60t84 176q0 65 -43 90.5t-170 54.5q-143 34 -204.5 78t-61.5 139q0 155 112 255.5t285 100.5q68 0 151 -9t132 -18l49 -9l-26 -99q-191 29 -322 29q-115 0 -186.5 -65.5t-71.5 -157.5q0 -55 39.5 -81.5t161.5 -56.5 q63 -15 100 -26t76 -29t59 -40t32.5 -55t12.5 -77q0 -178 -123.5 -273t-316.5 -95q-67 0 -146.5 10.5t-125.5 21.5z" />
<glyph unicode="t" horiz-adv-x="645" d="M238 168q0 73 34 213l125 534h-139l27 109h139l76 313h123l-78 -313h305l-27 -109h-303l-127 -540q-26 -113 -26 -182q0 -105 112 -105q24 0 65 3t70 6l29 3l-8 -96q-107 -24 -193 -24q-97 0 -150.5 49t-53.5 139z" />
<glyph unicode="u" horiz-adv-x="1011" d="M205 229q0 93 41 271l123 524h120l-120 -516q-39 -171 -39 -256q0 -77 39.5 -119.5t113.5 -42.5q43 0 94.5 26t94 63.5t78.5 75t56 63.5l21 26l158 680h123l-238 -1024h-118l43 199q-7 -9 -19.5 -23.5t-51 -52.5t-78 -67t-95 -52.5t-107.5 -23.5q-115 0 -177 67t-62 182z " />
<glyph unicode="v" horiz-adv-x="925" d="M291 1024h121l28 -918h72l467 918h129l-530 -1024h-252z" />
<glyph unicode="w" horiz-adv-x="1480" d="M295 0l4 1024h123l-6 -918h35l444 898h147l21 -898h37l426 918h125l-475 -1024h-228l-16 846l-414 -846h-223z" />
<glyph unicode="x" horiz-adv-x="851" d="M45 0l426 512l-184 512h127l151 -428l346 428h136l-433 -522l185 -502h-129l-148 418l-340 -418h-137z" />
<glyph unicode="y" horiz-adv-x="925" d="M217 -459l242 459h-133l-35 1024h121l28 -918h70l469 918h129l-766 -1483h-125z" />
<glyph unicode="z" horiz-adv-x="856" d="M80 0l18 106l742 809h-551l28 109h697l-23 -106l-743 -812h555l-25 -106h-698z" />
<glyph unicode="{" horiz-adv-x="653" d="M180 590l25 102q70 18 114 39.5t72 52.5t42 66.5t26 91.5q5 24 17 90.5t22 117t18 75.5q51 161 148.5 233.5t279.5 79.5l-20 -113q-97 -5 -160 -37t-96.5 -85t-51.5 -138q-3 -16 -12.5 -71t-18.5 -101.5t-14 -68.5q-29 -128 -82.5 -188.5t-164.5 -98.5q62 -24 95.5 -65.5 t33.5 -114.5q0 -38 -49.5 -212t-49.5 -237q0 -151 197 -151l-31 -115q-289 9 -289 231q0 68 49.5 243t49.5 208q0 65 -35 102t-115 64z" />
<glyph unicode="|" horiz-adv-x="626" d="M369 -461v1940h123v-1940h-123z" />
<glyph unicode="}" horiz-adv-x="651" d="M2 -262l21 112q142 7 210.5 70t96.5 191q3 16 12.5 71t18.5 101.5t14 68.5q29 128 83 188.5t165 98.5q-62 24 -95.5 65.5t-33.5 114.5q0 38 49 212t49 237q0 151 -197 151l31 115q289 -9 289 -231q0 -68 -49.5 -243t-49.5 -208q0 -65 35 -102t115 -64l-25 -102 q-70 -18 -114 -39.5t-72 -52.5t-42 -66.5t-26 -91.5q-5 -24 -17 -90.5t-22 -117t-18 -75.5q-51 -161 -148.5 -233.5t-279.5 -79.5z" />
<glyph unicode="~" d="M262 551q5 5 14.5 12t37 26.5t54.5 34t63 26.5t67 12q49 0 130.5 -34t159 -68t115.5 -34q34 0 86 25t87 49l36 25l23 -103q-5 -4 -14 -11.5t-36 -26.5t-53.5 -33.5t-62 -26.5t-66.5 -12q-49 0 -132 34t-160.5 67.5t-112.5 33.5q-36 0 -89 -25.5t-89 -50.5l-35 -25z" />
<glyph unicode="&#xa1;" horiz-adv-x="372" d="M31 -410l237 977h109l-223 -977h-123zM307 819l47 205h125l-47 -205h-125z" />
<glyph unicode="&#xa2;" d="M325.5 381.5q5.5 58.5 22.5 126.5q55 211 169 321t274 115l59 254h106l-61 -254q38 -2 88.5 -7t81.5 -9l31 -4l-33 -111q-172 16 -246 16q-136 0 -222 -83.5t-124 -237.5q-14 -59 -19.5 -101t1 -84.5t29 -68.5t69 -42.5t117.5 -16.5q39 0 104.5 3.5t111.5 7.5l46 3 l-25 -109q-129 -16 -211 -16l-59 -252h-107l60 246q-80 1 -135.5 26t-83.5 65t-38.5 97t-5 115.5z" />
<glyph unicode="&#xa3;" d="M166 0l24 109h197l143 632h-151l27 109h151l25 115q21 88 40 146.5t49.5 116t68.5 90.5t94.5 53t130.5 20q49 0 116.5 -7.5t110.5 -15.5l43 -8l-27 -96q-146 16 -252 16q-50 0 -87 -17.5t-59.5 -38.5t-43 -72t-30 -84.5t-27.5 -109.5q-1 -5 -2 -8l-25 -100h416l-25 -109 h-418l-141 -632h307l158 34v-106l-164 -37h-649z" />
<glyph unicode="&#xa4;" d="M252 164l143 141q-67 94 -67 210t67 210l-143 143l86 88l143 -145q94 66 209 66t209 -66l145 145l86 -88l-145 -145q66 -94 66 -209t-66 -207l145 -143l-86 -88l-145 145q-94 -67 -209 -67t-209 67l-143 -145zM448 516q0 -102 70 -174q70 -69 173 -69t173 69 q69 72 69 174t-69 172q-70 70 -173 70t-173 -70t-70 -172z" />
<glyph unicode="&#xa5;" d="M219 344l27 113h368l37 161l-8 33h-352l24 111h285l-235 592h135l237 -596l500 596h162l-502 -592h277l-25 -111h-340l-31 -37l-37 -157h363l-27 -113h-362l-82 -344h-123l80 344h-371z" />
<glyph unicode="&#xa6;" horiz-adv-x="641" d="M377 311h123v-772h-123v772zM377 711v768h123v-768h-123z" />
<glyph unicode="&#xa7;" horiz-adv-x="954" d="M78 -252l35 111q209 -29 313 -29q70 0 128.5 25.5t94.5 65.5t56 85.5t20 89.5q0 64 -44.5 92t-186.5 54q-149 25 -210 81.5t-61 147.5q0 58 23.5 118t57.5 104t57 69t36 35q-41 49 -41 149q0 71 29 139.5t83.5 125.5t142 91.5t194.5 34.5q55 0 130.5 -7.5t124.5 -15.5 l48 -7l-31 -113q-203 29 -295 29q-144 0 -220.5 -70t-76.5 -188q0 -33 10 -56.5t25.5 -38.5t48 -26.5t61.5 -18t83 -16.5q260 -47 260 -219q0 -51 -20.5 -109.5t-53.5 -111t-49 -75.5t-33 -44q22 -29 28.5 -54.5t6.5 -64.5q0 -31 -8.5 -69t-26.5 -87t-53 -93.5t-82 -82.5 t-119.5 -61t-159.5 -23q-54 0 -135 8.5t-136 16.5zM350 508q0 -63 43 -96.5t156 -53.5q131 -24 186 -55q7 7 32 46t53 102.5t28 107.5q0 55 -46 87t-155 52q-57 9 -109.5 24t-64.5 26q-12 -12 -36 -42t-55.5 -91t-31.5 -107z" />
<glyph unicode="&#xa8;" horiz-adv-x="1478" d="M510 1280l39 168h100l-39 -168h-100zM877 1280l36 168h101l-39 -168h-98z" />
<glyph unicode="&#xa9;" horiz-adv-x="1320" d="M332 889q0 153 68.5 279.5t190.5 200t273 73.5q153 0 276.5 -74.5t191 -200.5t67.5 -278q0 -153 -68 -279.5t-191 -200t-276 -73.5q-151 0 -273 74t-190.5 200.5t-68.5 278.5zM414 889q0 -129 57.5 -237t161.5 -172t231 -64q195 0 325 137.5t130 335.5q0 197 -131 335 t-324 138q-127 0 -231 -64t-161.5 -172t-57.5 -237zM637 889q0 162 51 240.5t182 78.5q37 0 76 -4.5t60 -9.5l20 -4l-6 -94q-80 14 -146 14q-85 0 -111 -51t-26 -170q0 -115 29 -168t108 -53q26 0 62.5 3.5t59.5 6.5l24 4l6 -92q-80 -21 -158 -21q-130 0 -180.5 77.5 t-50.5 242.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="712" d="M303 932q21 84 71 124t148 46l189 12l12 45q12 53 -6 74.5t-70 21.5q-34 0 -91 -3.5t-98 -7.5l-40 -3l12 82q150 27 242 27q105 0 144.5 -44.5t14.5 -150.5l-65 -283q12 -25 55 -36l-22 -82q-62 0 -88 11t-47 38q-131 -49 -242 -49q-74 0 -106.5 48.5t-12.5 129.5z M414 932q-20 -86 55 -86q36 0 83 9t76 19l29 9l35 149l-168 -10q-49 -3 -74 -24t-36 -66z" />
<glyph unicode="&#xab;" horiz-adv-x="894" d="M178 479l23 64l420 280l-39 -129l-279 -188l186 -209l-34 -115zM537 479l22 64l420 280l-39 -129l-278 -188l186 -209l-35 -115z" />
<glyph unicode="&#xac;" d="M258 580v112h870v-446h-116v334h-754z" />
<glyph unicode="&#xad;" horiz-adv-x="724" d="M223 492l29 114h504l-29 -114h-504z" />
<glyph unicode="&#xae;" horiz-adv-x="1320" d="M332 889q0 153 68.5 279.5t190.5 200t273 73.5q153 0 276.5 -74.5t191 -200.5t67.5 -278q0 -153 -68 -279.5t-191 -200t-276 -73.5q-151 0 -273 74t-190.5 200.5t-68.5 278.5zM414 889q0 -129 58 -237t162 -172t230 -64q195 0 325 137.5t130 335.5q0 197 -131 335 t-324 138q-127 0 -231 -64t-161.5 -172t-57.5 -237zM647 580v614h211q119 0 176.5 -43t57.5 -147q0 -75 -25.5 -119.5t-85.5 -65.5l121 -239h-107l-110 227h-140v-227h-98zM743 891h138q61 0 86.5 24.5t25.5 85.5q0 59 -33.5 84t-105.5 25h-111v-219z" />
<glyph unicode="&#xaf;" horiz-adv-x="886" d="M475 1315l23 96h546l-24 -96h-545z" />
<glyph unicode="&#xb0;" d="M553 1157q0 128 79 207.5t206 79.5t206.5 -79.5t79.5 -207.5q0 -127 -79 -205t-207 -78t-206.5 78t-78.5 205zM643 1157q0 -89 53.5 -142.5t141.5 -53.5q90 0 145 53.5t55 142.5t-55.5 144t-144.5 55q-88 0 -141.5 -55t-53.5 -144z" />
<glyph unicode="&#xb1;" d="M211 86v115h915v-115h-915zM211 610v115h397v266h117v-266h401v-115h-401v-272h-117v272h-397z" />
<glyph unicode="&#xb2;" horiz-adv-x="573" d="M293 979l24 98l236 191q70 55 105.5 93.5t46.5 86.5q11 43 -13.5 63.5t-73.5 20.5q-28 0 -73.5 -5t-76.5 -11l-32 -5l21 101q123 24 209 24q101 0 138.5 -44t14.5 -136q-18 -68 -62 -120.5t-126 -116.5l-170 -140h274l-24 -100h-418z" />
<glyph unicode="&#xb3;" horiz-adv-x="573" d="M289 981l30 96q111 -16 205 -16q111 0 135 96q14 55 -7.5 77.5t-71.5 22.5h-134l23 97h133q33 0 69 31t46 73q9 40 -10 59t-74 19q-40 0 -88.5 -4t-77.5 -8l-29 -4l17 96q123 20 211 20q107 0 148.5 -40.5t19.5 -127.5q-4 -18 -11 -34t-15 -29t-16.5 -24.5t-18 -20.5 t-18 -16t-17 -12.5t-14 -9t-11.5 -6.5l-6 -3q50 -17 67 -49t-2 -109q-48 -197 -264 -197q-44 0 -99 6t-87 12z" />
<glyph unicode="&#xb4;" horiz-adv-x="1110" d="M571 1325l447 193l14 -109l-448 -178z" />
<glyph unicode="&#xb5;" d="M94 -461l238 1024l108 461h121l-108 -461h2l-37 -153q-17 -90 -17 -158q0 -77 40 -119.5t114 -42.5q43 0 94.5 26t94 63.5t78.5 75t56 63.5l21 26l158 680h123l-238 -1024h-119l43 199q-7 -9 -19 -23.5t-50.5 -52.5t-78 -67t-95 -52.5t-107.5 -23.5q-117 0 -180 69 l-119 -510h-123z" />
<glyph unicode="&#xb6;" horiz-adv-x="1134" d="M301 975q0 108 56.5 212.5t163.5 175.5t235 71h635l-23 -111h-160l-315 -1323h-107l316 1323h-250l-317 -1323h-107l168 692q-77 1 -135.5 24.5t-92.5 64t-50.5 89t-16.5 105.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="356" d="M233 520l48 215h129l-48 -215h-129z" />
<glyph unicode="&#xb8;" horiz-adv-x="1619" d="M649 -412l23 90q80 -8 137 -8q86 0 106 80q17 74 -69 74h-90l45 186h76l-29 -108h10q90 0 136.5 -36.5t27.5 -119.5q-20 -88 -72 -129t-141 -41q-37 0 -77 3t-62 6z" />
<glyph unicode="&#xb9;" horiz-adv-x="573" d="M420 1477l242 141h104l-158 -639h-110l129 518l-176 -102z" />
<glyph unicode="&#xba;" horiz-adv-x="696" d="M317 940q0 42 17 115q38 157 114 225t209 68q89 0 143 -38t58 -116q4 -60 -14 -150q-35 -154 -113.5 -224t-214.5 -70q-96 0 -148 49t-51 141zM430 954q0 -52 27 -76t84 -24q77 0 120.5 45t71.5 154q10 49 10 98q0 52 -25 73t-81 21q-78 0 -122.5 -42.5t-68.5 -145.5 q-16 -66 -16 -103z" />
<glyph unicode="&#xbb;" horiz-adv-x="985" d="M150 182l38 129l279 189l-186 209l34 114l277 -297l-23 -63zM598 182l39 129l278 189l-186 209l35 114l276 -297l-22 -63z" />
<glyph unicode="&#xbc;" horiz-adv-x="1196" d="M223 29l873 1413l116 -43l-874 -1413zM373 1477l241 141h105l-158 -639h-110l129 518l-177 -102zM707 104l24 95l266 440h121l-266 -432h172l53 178h103l-45 -178h61l-25 -103h-61l-27 -104h-108l24 104h-292z" />
<glyph unicode="&#xbd;" horiz-adv-x="1247" d="M223 29l873 1413l116 -43l-874 -1413zM373 1477l241 141h105l-158 -639h-110l129 518l-177 -102zM762 0l24 98l236 191q70 55 105.5 93.5t46.5 86.5q11 43 -13.5 63.5t-73.5 20.5q-28 0 -73.5 -5.5t-77.5 -10.5l-31 -5l21 101q123 24 209 24q101 0 138.5 -44t14.5 -136 q-18 -68 -62 -120.5t-126 -116.5l-170 -140h274l-24 -100h-418z" />
<glyph unicode="&#xbe;" horiz-adv-x="1234" d="M266 29l873 1413l116 -43l-874 -1413zM289 981l30 96q111 -16 205 -16q111 0 135 96q14 55 -7.5 77.5t-71.5 22.5h-134l23 97h133q33 0 69 31t46 73q9 40 -10 59t-74 19q-40 0 -88.5 -4t-77.5 -8l-29 -4l17 96q123 20 211 20q107 0 148.5 -40.5t19.5 -127.5 q-4 -18 -11 -34t-15 -29t-16.5 -24.5t-18 -20.5t-18 -16t-17 -12.5t-14 -9t-11.5 -6.5l-6 -3q50 -17 67 -49t-2 -109q-48 -197 -264 -197q-44 0 -99 6t-87 12zM750 104l24 95l266 440h121l-266 -432h172l53 178h103l-45 -178h61l-25 -103h-61l-27 -104h-108l24 104h-292z " />
<glyph unicode="&#xbf;" horiz-adv-x="821" d="M47 -162q0 53 6 93.5t24.5 80.5t40.5 71t66 73.5t87.5 78.5t117.5 95q147 118 168 221l16 80h117q-4 -60 -14 -113q-26 -134 -211 -276q-73 -59 -114 -94.5t-79.5 -75t-56 -72t-27.5 -71t-10 -85.5q0 -79 56.5 -113t164.5 -34q53 0 126.5 9.5t120.5 19.5l48 10l-6 -103 q-180 -51 -313 -51q-150 0 -239 62.5t-89 193.5zM598 813l47 211h125l-45 -211h-127z" />
<glyph unicode="&#xc0;" horiz-adv-x="1136" d="M55 0l727 1423h258l47 -1423h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66zM674 1792l59 102l359 -194l-54 -88z" />
<glyph unicode="&#xc1;" horiz-adv-x="1136" d="M55 0l727 1423h258l47 -1423h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66zM795 1710l448 195l19 -107l-451 -180z" />
<glyph unicode="&#xc2;" horiz-adv-x="1136" d="M55 0l727 1423h258l47 -1423h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66zM637 1632l330 275h61l199 -275h-115l-125 176l-215 -176h-135z" />
<glyph unicode="&#xc3;" horiz-adv-x="1136" d="M55 0l727 1423h258l47 -1423h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66zM623 1763q15 14 39.5 34t80.5 53.5t88 33.5q41 0 99.5 -30t110 -59.5t75.5 -29.5q17 0 58.5 24.5t74.5 49.5l33 25l6 -86q-14 -14 -37.5 -34t-76 -53.5t-82.5 -33.5 q-37 0 -95 30.5t-111 60.5t-79 30q-19 0 -64 -26t-81 -52l-35 -27z" />
<glyph unicode="&#xc4;" horiz-adv-x="1136" d="M55 0l727 1423h258l47 -1423h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66zM715 1679l37 170h102l-41 -170h-98zM1092 1679l41 170h100l-41 -170h-100z" />
<glyph unicode="&#xc5;" horiz-adv-x="1136" d="M55 0l703 1374q-50 53 -23 152q26 96 90.5 146t157.5 50q91 0 133.5 -48.5t18.5 -147.5q-24 -96 -95 -148l47 -1378h-124l-17 391h-561l-203 -391h-127zM440 502h506l-26 809h-66zM819 1526q-9 -38 3.5 -66t47.5 -37h78q81 18 103 103q10 51 -14.5 79.5t-75.5 28.5 q-55 0 -92.5 -28t-49.5 -80z" />
<glyph unicode="&#xc6;" horiz-adv-x="1609" d="M55 0l727 1427h1071l-24 -116l-668 4l-129 -533h553l-24 -114h-553l-131 -551h665l-24 -117h-787l90 391h-442l-203 -391h-121zM434 506h414l194 805h-198z" />
<glyph unicode="&#xc7;" horiz-adv-x="1036" d="M236 387q0 111 18.5 229t55.5 237.5t97 225t136 187.5t181.5 130t225.5 48q71 0 155.5 -11t133.5 -23l49 -11l-28 -103q-166 33 -318 33q-92 0 -174.5 -41.5t-144 -112.5t-111.5 -164.5t-81 -198.5t-47.5 -212t-16.5 -209q0 -152 66 -224.5t210 -72.5q72 0 155 9t130 17 l47 9l-6 -104q-182 -45 -344 -45h-7l-20 -78h10q90 0 136.5 -36.5t27.5 -119.5q-20 -88 -72 -129t-141 -41q-37 0 -77 3t-62 6l-21 3l23 90q80 -8 137 -8q87 0 107 80q17 74 -70 74h-90l39 162q-309 40 -309 401z" />
<glyph unicode="&#xc8;" horiz-adv-x="1038" d="M166 0l328 1423h784l-27 -112h-657l-123 -529h545l-27 -112h-543l-129 -557h658l-27 -113h-782zM713 1792l59 102l358 -194l-53 -88z" />
<glyph unicode="&#xc9;" horiz-adv-x="1038" d="M166 0l328 1423h784l-27 -112h-657l-123 -529h545l-27 -112h-543l-129 -557h658l-27 -113h-782zM768 1710l449 195l18 -107l-451 -180z" />
<glyph unicode="&#xca;" horiz-adv-x="1038" d="M166 0l328 1423h784l-27 -112h-657l-123 -529h545l-27 -112h-543l-129 -557h658l-27 -113h-782zM743 1626l330 275h62l198 -275h-114l-125 176l-215 -176h-136z" />
<glyph unicode="&#xcb;" horiz-adv-x="1038" d="M166 0l328 1423h784l-27 -112h-657l-123 -529h545l-27 -112h-543l-129 -557h658l-27 -113h-782zM702 1679l37 170h103l-41 -170h-99zM1079 1679l41 170h101l-41 -170h-101z" />
<glyph unicode="&#xcc;" horiz-adv-x="456" d="M166 0l328 1423h127l-330 -1423h-125zM309 1792l60 102l358 -194l-53 -88z" />
<glyph unicode="&#xcd;" horiz-adv-x="456" d="M166 0l328 1423h127l-330 -1423h-125zM477 1710l449 195l18 -107l-450 -180z" />
<glyph unicode="&#xce;" horiz-adv-x="456" d="M166 0l328 1423h127l-330 -1423h-125zM299 1626l330 275h61l199 -275h-115l-125 176l-215 -176h-135z" />
<glyph unicode="&#xcf;" horiz-adv-x="456" d="M166 0l328 1423h127l-330 -1423h-125zM362 1686l37 169h103l-41 -169h-99zM739 1686l41 169h101l-41 -169h-101z" />
<glyph unicode="&#xd0;" horiz-adv-x="1251" d="M172 0l150 651h-144l27 127h145l150 645h461q190 0 282 -101.5t92 -320.5q0 -132 -25 -268t-79.5 -268.5t-131.5 -235t-191 -166t-249 -63.5h-487zM326 113h354q84 0 159.5 41.5t131.5 111.5t101 160t73.5 189.5t43.5 198t15 187.5q0 163 -62.5 236.5t-205.5 73.5h-336 l-123 -533h307l-30 -127h-305z" />
<glyph unicode="&#xd1;" horiz-adv-x="1280" d="M166 0l328 1423h237l248 -1298h43l299 1298h123l-328 -1423h-229l-254 1303h-45l-301 -1303h-121zM700 1759q15 14 40 34t81 53.5t88 33.5q41 0 99.5 -30t110 -59.5t75.5 -29.5q17 0 58.5 24.5t74.5 49.5l33 25l6 -86q-14 -14 -37.5 -34t-76.5 -53.5t-83 -33.5 q-37 0 -95 30.5t-110.5 60.5t-78.5 30q-19 0 -64 -26t-81 -52l-35 -27z" />
<glyph unicode="&#xd2;" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 165 -75.5 241 t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5zM795 1792l59 102l358 -194l-53 -88z" />
<glyph unicode="&#xd3;" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 165 -75.5 241 t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5zM870 1710l449 195l18 -107l-450 -180z" />
<glyph unicode="&#xd4;" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 165 -75.5 241 t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5zM729 1632l330 275h61l199 -275h-115l-125 176l-215 -176h-135z" />
<glyph unicode="&#xd5;" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 165 -75.5 241 t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5zM729 1759q15 14 40 34t81 53.5t88 33.5q41 0 99.5 -30t110 -59.5t75.5 -29.5q17 0 58.5 24.5t74.5 49.5l33 25l6 -86q-14 -14 -37.5 -34t-76.5 -53.5t-83 -33.5q-37 0 -95 30.5t-111 60.5t-79 30 q-19 0 -64 -26t-81 -52l-35 -27z" />
<glyph unicode="&#xd6;" horiz-adv-x="1292" d="M240 403q0 260 85 504t240 387q166 150 375 150q218 0 328 -103.5t110 -320.5q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-228 0 -330 97.5t-102 325.5zM369 408q0 -172 71.5 -244t243.5 -72q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 165 -75.5 241 t-239.5 76q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5zM784 1679l39 168h115l-39 -168h-115zM1165 1679l37 168h113l-39 -168h-111z" />
<glyph unicode="&#xd7;" d="M270 174l342 340l-342 338l80 82l340 -344l340 344l80 -80l-342 -340l342 -340l-80 -82l-340 344l-340 -342z" />
<glyph unicode="&#xd8;" horiz-adv-x="1292" d="M147 -186l185 272q-92 99 -92 317q0 260 85 504t240 387q166 150 375 150q170 0 274 -64l168 246l84 -37l-182 -266q94 -104 94 -303q0 -276 -88 -525t-254 -386q-154 -129 -364 -129q-173 0 -269 51l-180 -262zM369 408q0 -138 41 -207l354 520l381 557q-73 53 -213 53 q-131 0 -236 -82q-104 -81 -180.5 -230.5t-111.5 -307t-35 -303.5zM475 135q68 -43 209 -43q143 0 252 86q101 80 174 225.5t105 301.5t32 309q0 120 -41 194l-362 -532z" />
<glyph unicode="&#xd9;" horiz-adv-x="1214" d="M236 270q0 93 22 176l225 977h125l-227 -987q-21 -86 -21 -151q0 -191 285 -191q171 0 259 79.5t126 248.5l232 1001h127l-232 -1003q-53 -225 -173.5 -332.5t-346.5 -107.5q-188 0 -294.5 72t-106.5 218zM745 1792l60 102l358 -194l-53 -88z" />
<glyph unicode="&#xda;" horiz-adv-x="1214" d="M236 270q0 93 22 176l225 977h125l-227 -987q-21 -86 -21 -151q0 -191 285 -191q171 0 259 79.5t126 248.5l232 1001h127l-232 -1003q-53 -225 -173.5 -332.5t-346.5 -107.5q-188 0 -294.5 72t-106.5 218zM784 1710l449 195l18 -107l-450 -180z" />
<glyph unicode="&#xdb;" horiz-adv-x="1214" d="M236 270q0 93 22 176l225 977h125l-227 -987q-21 -86 -21 -151q0 -191 285 -191q171 0 259 79.5t126 248.5l232 1001h127l-232 -1003q-53 -225 -173.5 -332.5t-346.5 -107.5q-188 0 -294.5 72t-106.5 218zM674 1632l330 275h61l199 -275h-115l-125 176l-215 -176h-135z " />
<glyph unicode="&#xdc;" horiz-adv-x="1214" d="M236 270q0 93 22 176l225 977h125l-227 -987q-21 -86 -21 -151q0 -191 285 -191q171 0 259 79.5t126 248.5l232 1001h127l-232 -1003q-53 -225 -173.5 -332.5t-346.5 -107.5q-188 0 -294.5 72t-106.5 218zM725 1679l39 168h115l-39 -168h-115zM1106 1679l37 168h114 l-40 -168h-111z" />
<glyph unicode="&#xdd;" horiz-adv-x="1003" d="M354 1423h127l183 -690l501 690h135l-604 -813l-143 -610h-121l143 623zM688 1710l449 195l18 -107l-450 -180z" />
<glyph unicode="&#xde;" horiz-adv-x="1128" d="M162 0l336 1427h123l-56 -235h348q87 0 151 -23.5t102 -64.5t56 -98.5t17.5 -123t-16.5 -141.5q-48 -222 -181.5 -353.5t-339.5 -131.5h-358l-59 -256h-123zM373 375h356q276 0 371 366q19 65 17 125t-21.5 106t-73.5 73.5t-137 27.5l-346 2z" />
<glyph unicode="&#xdf;" horiz-adv-x="1089" d="M139 0l256 1087q54 227 154.5 319.5t286.5 92.5q160 0 238.5 -60t78.5 -173q0 -119 -50.5 -194t-148.5 -122q-95 -46 -130.5 -75.5t-35.5 -67.5q0 -39 23.5 -65.5t101.5 -75.5q50 -31 74.5 -47.5t52 -41t38.5 -46.5t18.5 -54t7.5 -74q0 -194 -120.5 -308.5t-334.5 -114.5 q-47 0 -107.5 9t-97.5 18l-36 9l22 99q133 -27 217 -27q156 0 244 83t88 222q0 64 -30.5 100.5t-133.5 98.5q-87 54 -119 95.5t-32 98.5q0 81 43 128.5t163 109.5q85 44 121.5 94.5t36.5 132.5q0 71 -47.5 106.5t-153.5 35.5q-139 0 -209.5 -73t-109.5 -247l-252 -1073h-117 z" />
<glyph unicode="&#xe0;" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5zM627 1407l59 96l361 -192l-58 -84z" />
<glyph unicode="&#xe1;" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5zM686 1325l447 193l14 -109l-449 -178z" />
<glyph unicode="&#xe2;" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5zM508 1208l309 297h86l178 -297h-127l-110 189l-199 -189h-137z" />
<glyph unicode="&#xe3;" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5zM563 1376q14 12 36 29t74 45.5t83 28.5q45 0 139 -50.5t117 -50.5q17 0 54.5 21t65.5 42 l29 21l8 -94q-12 -11 -32.5 -27.5t-68.5 -43.5t-79 -27q-40 0 -137.5 50t-124.5 50q-19 0 -59 -22.5t-70 -45.5l-31 -22z" />
<glyph unicode="&#xe4;" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5zM557 1280l39 168h115l-41 -168h-113zM938 1280l35 168h114l-38 -168h-111z" />
<glyph unicode="&#xe5;" horiz-adv-x="1009" d="M186 268q0 101 20.5 207.5t63.5 208.5t102.5 182t144.5 129t183 49q56 0 155.5 -12t170.5 -24l72 -13l-156 -665q-14 -57 -28 -139t-22 -135l-7 -54l-119 -4q31 190 39 233q-7 -10 -20.5 -27t-54.5 -60.5t-82 -76.5t-98 -60t-108 -27q-129 0 -192.5 75t-63.5 213z M313 268q0 -90 37.5 -135t126.5 -45q39 0 90 30t96 72t83.5 84.5t61.5 72.5l23 30l125 528q-148 31 -254 31q-74 0 -138.5 -43.5t-109.5 -113.5t-77.5 -158.5t-48 -179t-15.5 -173.5zM690 1360q16 80 79.5 137t152.5 57q72 0 107.5 -43t29.5 -118q-6 -99 -73.5 -163.5 t-160.5 -64.5q-87 0 -119 53t-16 142zM770 1360q-10 -42 12 -76.5t66 -34.5q45 0 81.5 32t47.5 79q11 41 -11 73.5t-65 32.5q-45 0 -82.5 -30.5t-48.5 -75.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1550" d="M132.5 175q-6.5 56 8.5 116q27 141 119.5 208t247.5 91q163 24 317 33q101 299 -104 299q-63 0 -154.5 -6t-152.5 -12l-60 -5l19 117q229 26 379 26q92 0 152.5 -42.5t70.5 -122.5q126 165 354 165q285 0 291 -276q0 -104 -29 -211l-26 -98l-643 4q-27 -117 -25 -180 q2 -92 47 -138.5t148 -46.5q62 0 151 5t147 9l58 5l-23 -107q-212 -28 -366 -28q-193 0 -256 114q-101 -42 -237.5 -78t-227.5 -36q-65 0 -111.5 26t-67 69.5t-27 99.5zM261 225.5q0 -33.5 9.5 -64t36.5 -49t68 -18.5q75 0 189 28t210 62q-4 20 -6 42t-2.5 39t2 42.5t4 39.5 t7 43.5t7.5 39.5t9.5 44t9.5 42q-200 -20 -311 -35q-91 -14 -147 -58.5t-77 -129.5q-9 -34 -9 -67.5zM944 565l529 -4q29 118 26 187q-1 94 -49.5 138t-146.5 44q-136 0 -225 -87.5t-134 -277.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="829" d="M195 281q0 119 20 229.5t63.5 208t105.5 169.5t151.5 114t197.5 42q49 0 110 -8t97 -16l37 -8l-31 -99q-127 23 -217 23q-82 0 -151 -36.5t-116 -97.5t-80 -143t-48 -172.5t-15 -185.5q0 -106 53 -159.5t173 -53.5q36 0 93.5 8t97.5 16l40 9l-6 -98q-139 -43 -262 -43h-6 l-21 -78h11q90 0 136 -36t27 -120q-20 -88 -72 -129t-141 -41q-37 0 -77 3t-61 6l-21 3l22 90q80 -8 137 -8q87 0 107 80q17 74 -70 74h-90l39 162q-233 36 -233 295z" />
<glyph unicode="&#xe8;" horiz-adv-x="937" d="M190 283q0 107 20 212.5t64.5 205t107.5 175t156 121t203 45.5q137 0 213 -56.5t76 -176.5q0 -180 -139 -253t-436 -73h-115q-25 -105 -25 -188q0 -98 56.5 -151.5t152.5 -53.5q68 0 152 13t134 25l50 13l-8 -100q-20 -7 -54.5 -17t-129.5 -27t-176 -17q-143 0 -222.5 77 t-79.5 226zM358 584h121q226 0 327 48t101 175q0 70 -43 100.5t-129 30.5q-270 0 -377 -354zM467 1407l59 96l361 -192l-58 -84z" />
<glyph unicode="&#xe9;" horiz-adv-x="937" d="M190 283q0 107 20 212.5t64.5 205t107.5 175t156 121t203 45.5q137 0 213 -56.5t76 -176.5q0 -180 -139 -253t-436 -73h-115q-25 -105 -25 -188q0 -98 56.5 -151.5t152.5 -53.5q68 0 152 13t134 25l50 13l-8 -100q-20 -7 -54.5 -17t-129.5 -27t-176 -17q-143 0 -222.5 77 t-79.5 226zM358 584h121q226 0 327 48t101 175q0 70 -43 100.5t-129 30.5q-270 0 -377 -354zM612 1325l447 193l14 -109l-448 -178z" />
<glyph unicode="&#xea;" horiz-adv-x="937" d="M190 283q0 107 20 212.5t64.5 205t107.5 175t156 121t203 45.5q137 0 213 -56.5t76 -176.5q0 -180 -139 -253t-436 -73h-115q-25 -105 -25 -188q0 -98 56.5 -151.5t152.5 -53.5q68 0 152 13t134 25l50 13l-8 -100q-20 -7 -54.5 -17t-129.5 -27t-176 -17q-143 0 -222.5 77 t-79.5 226zM358 584h121q226 0 327 48t101 175q0 70 -43 100.5t-129 30.5q-270 0 -377 -354zM467 1208l311 297h84l178 -297h-125l-110 189l-199 -189h-139z" />
<glyph unicode="&#xeb;" horiz-adv-x="937" d="M190 283q0 107 20 212.5t64.5 205t107.5 175t156 121t203 45.5q137 0 213 -56.5t76 -176.5q0 -180 -139 -253t-436 -73h-115q-25 -105 -25 -188q0 -98 56.5 -151.5t152.5 -53.5q68 0 152 13t134 25l50 13l-8 -100q-20 -7 -54.5 -17t-129.5 -27t-176 -17q-143 0 -222.5 77 t-79.5 226zM358 584h121q226 0 327 48t101 175q0 70 -43 100.5t-129 30.5q-270 0 -377 -354zM539 1280l39 168h114l-39 -168h-114zM920 1280l36 168h115l-41 -168h-110z" />
<glyph unicode="&#xec;" horiz-adv-x="403" d="M139 0l238 1024h123l-238 -1024h-123zM160 1407l59 96l361 -192l-58 -84z" />
<glyph unicode="&#xed;" horiz-adv-x="403" d="M139 0l238 1024h123l-238 -1024h-123zM389 1325l447 193l14 -109l-449 -178z" />
<glyph unicode="&#xee;" horiz-adv-x="403" d="M139 0l238 1024h123l-238 -1024h-123zM180 1208l309 297h86l177 -297h-125l-111 189l-199 -189h-137z" />
<glyph unicode="&#xef;" horiz-adv-x="403" d="M139 0l238 1024h123l-238 -1024h-123zM219 1280l39 168h115l-41 -168h-113zM600 1280l35 168h115l-39 -168h-111z" />
<glyph unicode="&#xf0;" horiz-adv-x="1052" d="M168 319q7 125 51.5 231t116 177.5t163.5 111.5t193 40q65 0 144.5 -20t126.5 -40l47 -20q47 282 -193 444l-244 -151l-49 79l201 125q-68 36 -203 80l51 111q161 -40 281 -109l221 140l47 -82l-182 -115q269 -209 180 -588q-94 -396 -242.5 -573.5t-371.5 -177.5 q-94 0 -164 27.5t-109 75.5t-55 107t-10 127zM301 328q-8 -103 49.5 -163.5t184.5 -60.5q83 0 153 41t124.5 119t96 180t74.5 234q-8 6 -52 23.5t-120.5 37t-136.5 19.5q-154 0 -261.5 -123.5t-111.5 -306.5z" />
<glyph unicode="&#xf1;" horiz-adv-x="1011" d="M139 0h123l158 678q8 10 21.5 27.5t54.5 61.5t80.5 78t92 61.5t95.5 27.5q77 0 115.5 -42t38.5 -120q0 -85 -39 -256l-121 -516h121l122 524q41 178 41 269q0 117 -61.5 184t-177.5 67q-52 0 -107 -22.5t-96.5 -55t-76 -64.5t-52.5 -54l-18 -23l43 199h-119zM522 1376 q14 12 36 29t74 45.5t83 28.5q45 0 139 -50.5t117 -50.5q17 0 54.5 21t66.5 42l28 21l8 -94q-12 -11 -32.5 -27.5t-68.5 -43.5t-79 -27q-40 0 -137.5 50t-124.5 50q-19 0 -59 -22.5t-71 -45.5l-30 -22z" />
<glyph unicode="&#xf2;" horiz-adv-x="1011" d="M193 303q0 198 65 366.5t183.5 270.5t265.5 102q170 0 257 -84.5t87 -252.5q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-167 0 -251 78.5t-84 244.5zM315 303q0 -215 213 -215q117 0 209.5 86t140.5 226.5t48 306.5q0 105 -55 167t-164 62q-113 0 -204 -89.5 t-139.5 -233.5t-48.5 -310zM522 1407l60 96l360 -192l-57 -84z" />
<glyph unicode="&#xf3;" horiz-adv-x="1011" d="M193 303q0 198 65 366.5t183.5 270.5t265.5 102q170 0 257 -84.5t87 -252.5q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-167 0 -251 78.5t-84 244.5zM315 303q0 -215 213 -215q117 0 209.5 86t140.5 226.5t48 306.5q0 105 -55 167t-164 62q-113 0 -204 -89.5 t-139.5 -233.5t-48.5 -310zM614 1325l447 193l14 -109l-448 -178z" />
<glyph unicode="&#xf4;" horiz-adv-x="1011" d="M193 303q0 198 65 366.5t183.5 270.5t265.5 102q170 0 257 -84.5t87 -252.5q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-167 0 -251 78.5t-84 244.5zM315 303q0 -215 213 -215q117 0 209.5 86t140.5 226.5t48 306.5q0 105 -55 167t-164 62q-113 0 -204 -89.5 t-139.5 -233.5t-48.5 -310zM500 1208l311 297h84l178 -297h-127l-110 189l-199 -189h-137z" />
<glyph unicode="&#xf5;" horiz-adv-x="1011" d="M193 303q0 198 65 366.5t183.5 270.5t265.5 102q170 0 257 -84.5t87 -252.5q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-167 0 -251 78.5t-84 244.5zM315 303q0 -215 213 -215q117 0 209.5 86t140.5 226.5t48 306.5q0 105 -55 167t-164 62q-113 0 -204 -89.5 t-139.5 -233.5t-48.5 -310zM496 1376q14 12 36 29t73.5 45.5t82.5 28.5q45 0 139 -50.5t117 -50.5q17 0 54.5 21t66.5 42l29 21l8 -94q-12 -11 -32.5 -27.5t-68.5 -43.5t-79 -27q-40 0 -138 50t-125 50q-19 0 -59 -22.5t-70 -45.5l-30 -22z" />
<glyph unicode="&#xf6;" horiz-adv-x="1011" d="M193 303q0 198 65 366.5t183.5 270.5t265.5 102q170 0 257 -84.5t87 -252.5q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-167 0 -251 78.5t-84 244.5zM315 303q0 -215 213 -215q117 0 209.5 86t140.5 226.5t48 306.5q0 105 -55 167t-164 62q-113 0 -204 -89.5 t-139.5 -233.5t-48.5 -310zM555 1280l39 168h100l-39 -168h-100zM922 1280l36 168h101l-39 -168h-98z" />
<glyph unicode="&#xf7;" d="M317 539v120h750v-120h-750zM545 686v184h295v-184h-295zM629 68v190h125v-190h-125z" />
<glyph unicode="&#xf8;" horiz-adv-x="1009" d="M125 -197l160 252q-90 81 -90 252q0 198 65 367t183.5 271t265.5 102q95 0 176 -33l137 223l78 -33l-148 -231q101 -87 101 -264q0 -196 -62.5 -360t-183.5 -264.5t-277 -100.5q-104 0 -178 30l-149 -243zM317 307q0 -89 37 -141l230 362l239 387q-48 25 -114 25 q-113 0 -204 -89.5t-139.5 -233.5t-48.5 -310zM416 115q45 -23 114 -23q117 0 209.5 86t140.5 226.5t48 306.5q0 93 -43 151l-236 -370z" />
<glyph unicode="&#xf9;" horiz-adv-x="1011" d="M205 229q0 93 41 271l123 524h120l-120 -516q-39 -171 -39 -256q0 -77 39.5 -119.5t113.5 -42.5q43 0 94.5 26t94 63.5t78.5 75t56 63.5l21 26l158 680h123l-238 -1024h-118l43 199q-7 -9 -19.5 -23.5t-51 -52.5t-78 -67t-95 -52.5t-107.5 -23.5q-115 0 -177 67t-62 182z M526 1407l60 96l360 -192l-57 -84z" />
<glyph unicode="&#xfa;" horiz-adv-x="1011" d="M205 229q0 93 41 271l123 524h120l-120 -516q-39 -171 -39 -256q0 -77 39.5 -119.5t113.5 -42.5q43 0 94.5 26t94 63.5t78.5 75t56 63.5l21 26l158 680h123l-238 -1024h-118l43 199q-7 -9 -19.5 -23.5t-51 -52.5t-78 -67t-95 -52.5t-107.5 -23.5q-115 0 -177 67t-62 182z M641 1325l446 193l15 -109l-449 -178z" />
<glyph unicode="&#xfb;" horiz-adv-x="1011" d="M205 229q0 93 41 271l123 524h120l-120 -516q-39 -171 -39 -256q0 -77 39.5 -119.5t113.5 -42.5q43 0 94.5 26t94 63.5t78.5 75t56 63.5l21 26l158 680h123l-238 -1024h-118l43 199q-7 -9 -19.5 -23.5t-51 -52.5t-78 -67t-95 -52.5t-107.5 -23.5q-115 0 -177 67t-62 182z M461 1208l311 297h84l178 -297h-125l-110 189l-199 -189h-139z" />
<glyph unicode="&#xfc;" horiz-adv-x="1011" d="M205 229q0 93 41 271l123 524h120l-120 -516q-39 -171 -39 -256q0 -77 39.5 -119.5t113.5 -42.5q43 0 94.5 26t94 63.5t78.5 75t56 63.5l21 26l158 680h123l-238 -1024h-118l43 199q-7 -9 -19.5 -23.5t-51 -52.5t-78 -67t-95 -52.5t-107.5 -23.5q-115 0 -177 67t-62 182z M524 1280l39 168h115l-39 -168h-115zM905 1280l37 168h115l-41 -168h-111z" />
<glyph unicode="&#xfd;" horiz-adv-x="925" d="M217 -459l242 459h-133l-35 1024h121l28 -918h70l469 918h129l-766 -1483h-125zM588 1325l446 193l15 -109l-449 -178z" />
<glyph unicode="&#xfe;" horiz-adv-x="983" d="M31 -457l456 1932h117l-135 -562q1 0 10.5 7t17 12.5t23 15.5t28.5 17.5t32 18t36.5 18t39 15.5t41.5 13t42 8.5t43 3.5q81 0 137 -34t81.5 -87t33.5 -122.5t0 -136t-26 -132.5q-77 -287 -202 -418.5t-339 -131.5q-47 0 -99 4t-83 9t-31 7l-109 -457h-114zM281 117 l206 -21q158 0 248.5 103.5t153.5 330.5q13 46 19.5 97t2.5 105t-20 96.5t-52.5 70t-90.5 27.5q-41 0 -87.5 -15t-84.5 -35.5t-70 -42t-50 -35t-18 -12.5z" />
<glyph unicode="&#xff;" horiz-adv-x="925" d="M217 -459l242 459h-133l-35 1024h121l28 -918h70l469 918h129l-766 -1483h-125zM481 1280l39 168h115l-39 -168h-115zM862 1280l37 168h115l-41 -168h-111z" />
<glyph unicode="&#x152;" horiz-adv-x="1771" d="M225 340q-3 143 49 367q44 186 102.5 320t140 230t190.5 143.5t249 47.5q26 0 134.5 -8t146.5 -13h778l-26 -124h-662l-125 -515h545l-27 -122l-542 4l-129 -545h659l-31 -127h-774q-211 -18 -293 -18q-198 0 -290 90.5t-95 269.5zM352 383q0 -142 69 -209.5t228 -67.5 q107 0 277 17l282 1186q-114 14 -270 14q-115 0 -201 -38t-149 -118t-106.5 -189.5t-80.5 -268.5q-49 -192 -49 -326z" />
<glyph unicode="&#x153;" horiz-adv-x="1656" d="M186 227q-6 129 37 301q32 134 73.5 227t104 159t149.5 97t204 31q130 0 201.5 -51.5t88.5 -159.5q124 211 388 211q288 0 294 -272q3 -93 -26 -213l-29 -100l-651 4q-29 -127 -27 -182q2 -92 50.5 -137.5t152.5 -45.5q60 0 148.5 5t147.5 9l58 5l-18 -107 q-213 -28 -371 -28q-235 0 -274 190q-62 -99 -152.5 -144.5t-230.5 -45.5q-161 0 -237.5 59t-80.5 188zM307 262q3 -88 53.5 -127t167.5 -39q54 0 99 11.5t78 29t61.5 50.5t47.5 64t37.5 81.5t30.5 91t29 104.5q10 45 14 65.5t9.5 59.5t4.5 71.5t-7 63.5q-15 72 -64.5 106 t-138.5 34q-159 0 -245 -92t-136 -308q-43 -179 -41 -266zM1044 565l535 -4q27 114 27 189q-1 93 -50.5 134.5t-148.5 41.5q-136 0 -227.5 -86.5t-135.5 -274.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1003" d="M354 1423h127l183 -690l501 690h135l-604 -813l-143 -610h-121l143 623zM623 1677l36 170h103l-41 -170h-98zM999 1677l41 170h101l-41 -170h-101z" />
<glyph unicode="&#x2c6;" horiz-adv-x="1619" d="M803 1208l309 297h64l178 -297h-115l-111 189l-198 -189h-127z" />
<glyph unicode="&#x2dc;" horiz-adv-x="864" d="M461 1376q14 12 36 29t73.5 45.5t82.5 28.5q45 0 139 -50.5t117 -50.5q17 0 54.5 21t66.5 42l29 21l8 -94q-12 -11 -32.5 -27.5t-68.5 -43.5t-79 -27q-40 0 -137.5 50t-124.5 50q-19 0 -59 -22.5t-70 -45.5l-31 -22z" />
<glyph unicode="&#x2000;" horiz-adv-x="953" />
<glyph unicode="&#x2001;" horiz-adv-x="1907" />
<glyph unicode="&#x2002;" horiz-adv-x="953" />
<glyph unicode="&#x2003;" horiz-adv-x="1907" />
<glyph unicode="&#x2004;" horiz-adv-x="635" />
<glyph unicode="&#x2005;" horiz-adv-x="476" />
<glyph unicode="&#x2006;" horiz-adv-x="317" />
<glyph unicode="&#x2007;" horiz-adv-x="317" />
<glyph unicode="&#x2008;" horiz-adv-x="238" />
<glyph unicode="&#x2009;" horiz-adv-x="381" />
<glyph unicode="&#x200a;" horiz-adv-x="105" />
<glyph unicode="&#x2010;" horiz-adv-x="724" d="M223 492l29 114h504l-29 -114h-504z" />
<glyph unicode="&#x2011;" horiz-adv-x="724" d="M223 492l29 114h504l-29 -114h-504z" />
<glyph unicode="&#x2012;" horiz-adv-x="724" d="M223 492l29 114h504l-29 -114h-504z" />
<glyph unicode="&#x2013;" horiz-adv-x="1251" d="M242 494v110h1024v-110h-1024z" />
<glyph unicode="&#x2014;" horiz-adv-x="2275" d="M242 494v110h2048v-110h-2048z" />
<glyph unicode="&#x2018;" horiz-adv-x="372" d="M311 981l213 440h94l-180 -440h-127z" />
<glyph unicode="&#x2019;" horiz-adv-x="372" d="M315 983l181 440h127l-213 -440h-95z" />
<glyph unicode="&#x201a;" horiz-adv-x="364" d="M-4 -260l180 440h127l-213 -440h-94z" />
<glyph unicode="&#x201c;" horiz-adv-x="679" d="M309 983l213 440h94l-180 -440h-127zM618 983l213 440h95l-181 -440h-127z" />
<glyph unicode="&#x201d;" horiz-adv-x="679" d="M315 983l181 440h127l-213 -440h-95zM623 983l180 440h127l-213 -440h-94z" />
<glyph unicode="&#x201e;" horiz-adv-x="653" d="M-27 -260l213 440h95l-181 -440h-127zM285 -260l213 440h94l-180 -440h-127z" />
<glyph unicode="&#x2022;" horiz-adv-x="1007" d="M367 219v590h512v-590h-512z" />
<glyph unicode="&#x2026;" horiz-adv-x="1325" d="M117 0l47 205h125l-47 -205h-125zM604 0l47 205h125l-47 -205h-125zM1085 0l48 205h124l-47 -205h-125z" />
<glyph unicode="&#x202f;" horiz-adv-x="381" />
<glyph unicode="&#x2039;" horiz-adv-x="536" d="M178 479l23 64l420 280l-39 -129l-279 -188l186 -209l-34 -115z" />
<glyph unicode="&#x203a;" horiz-adv-x="536" d="M150 182l38 129l279 189l-186 209l34 114l277 -297l-23 -63z" />
<glyph unicode="&#x205f;" horiz-adv-x="476" />
<glyph unicode="&#x20ac;" d="M209 442l24 103h89q18 137 49 235h-84l24 103h95q40 104 94 190t125.5 155t164.5 107.5t199 38.5q68 0 148.5 -11t126.5 -21l47 -11l-27 -98q-158 33 -301 33q-148 0 -261.5 -104.5t-186.5 -278.5h579l-22 -103h-594q-40 -124 -54 -235h594l-22 -103h-580q-2 -25 -2 -69 q0 -146 63.5 -214.5t200.5 -68.5q68 0 147 8t124 16l45 9l-6 -100q-174 -43 -328 -43q-185 0 -278 98.5t-93 290.5q0 48 2 73h-102z" />
<glyph unicode="&#x2122;" horiz-adv-x="1437" d="M451 1196v88h409v-88h-149v-516h-95v516h-165zM926 678v606h131l149 -453l156 453h129v-606h-90v485l-154 -458h-82l-147 458v-485h-92z" />
<glyph unicode="&#xe000;" horiz-adv-x="1024" d="M0 0v1024h1024v-1024h-1024z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,240 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="TitilliumRegular" horiz-adv-x="1146" >
<font-face units-per-em="2048" ascent="1536" descent="-512" />
<missing-glyph horiz-adv-x="450" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="2048" />
<glyph unicode=" " horiz-adv-x="450" />
<glyph unicode="&#x09;" horiz-adv-x="450" />
<glyph unicode="&#xa0;" horiz-adv-x="450" />
<glyph unicode="!" horiz-adv-x="505" d="M170 0v229h168v-229h-168zM172 1417h162l-10 -950h-142z" />
<glyph unicode="&#x22;" horiz-adv-x="763" d="M135 1417h154l-8 -454h-138zM475 1417h154l-8 -454h-138z" />
<glyph unicode="#" d="M49 356v131h227v381h-227v131h227v365h140v-365h315v365h139v-365h228v-131h-228v-381h228v-131h-228v-356h-139v356h-315v-356h-140v356h-227zM416 487h315v381h-315v-381z" />
<glyph unicode="$" d="M141 1010q0 362 434 362q32 0 48 -2l34 264h105l-35 -270q57 -5 121 -13t100 -13l35 -5l-12 -127q-141 17 -260 27l-62 -477q100 -24 163 -49.5t111 -66t68.5 -99.5t20.5 -144q0 -415 -432 -415h-31l-29 -236q-104 6 -104 14l28 228q-64 5 -137 14.5t-114 15.5l-41 7 l16 125q158 -23 293 -31l67 512q-105 24 -171 50t-118 68.5t-75 105.5t-23 155zM293 1018q0 -110 55.5 -158t198.5 -82l59 461h-20q-293 0 -293 -221zM567 115h4q146 0 217.5 66t71.5 206q0 98 -51 145.5t-178 77.5z" />
<glyph unicode="%" d="M57 1090q0 143 59 212.5t167 69.5t166.5 -69t58.5 -213q0 -145 -59.5 -217t-165.5 -72t-166 72t-60 217zM182 1090q0 -94 23.5 -139.5t77.5 -45.5q55 0 78.5 45.5t23.5 139.5q0 93 -23 135.5t-79 42.5q-54 0 -77.5 -42.5t-23.5 -135.5zM317 -8l420 1403l99 -33 l-420 -1399zM641 270q0 143 58 212t165 69q108 0 167 -69.5t59 -213.5t-60 -216t-166 -72t-164.5 72.5t-58.5 217.5zM764 270q0 -95 23 -140.5t77 -45.5q57 0 80 45t23 139t-23 136t-80 42q-54 0 -77 -42.5t-23 -133.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1409" d="M86 416q0 120 35.5 200.5t102 128t179.5 84.5q-72 83 -94 146t-22 160q0 137 94 219t262 82q176 0 265 -82.5t89 -229.5q0 -141 -71 -224t-244 -163l311 -307q17 49 35 153.5t23 178.5l149 -2q-11 -108 -38 -231t-56 -195l264 -250l-92 -102l-248 231 q-140 -233 -440 -233q-141 0 -240 29.5t-156 88t-82.5 136t-25.5 182.5zM242 426q0 -155 79.5 -231t256.5 -76q250 0 346 184l-432 430q-136 -42 -193 -110.5t-57 -196.5zM440 1110q0 -126 92 -223l60 -58q141 61 196.5 120.5t55.5 164.5q0 94 -48.5 141.5t-152.5 47.5 q-98 0 -150.5 -48t-52.5 -145z" />
<glyph unicode="'" horiz-adv-x="425" d="M137 1417h154l-10 -454h-138z" />
<glyph unicode="(" horiz-adv-x="540" d="M104 616q0 124 22 264t53 252t62.5 206t53.5 146l22 52h148q-8 -21 -21 -59t-46.5 -150t-59.5 -218t-47 -244t-21 -249q0 -109 20 -239.5t49 -238t57.5 -199t48.5 -143.5l20 -52h-148q-9 18 -23 49.5t-51 129.5t-65 196t-51 235.5t-23 261.5z" />
<glyph unicode=")" horiz-adv-x="540" d="M76 -256q8 20 21 54.5t46.5 138.5t59 204t46.5 233t21 242q0 111 -20 246t-48.5 249.5t-57 213t-48.5 155.5l-20 56h147q9 -19 23 -54t51 -141.5t65 -211t51 -247t23 -266.5t-22 -259t-53 -240t-62.5 -192t-53.5 -134l-22 -47h-147z" />
<glyph unicode="*" horiz-adv-x="860" d="M111 938l221 162l-217 157l63 86l217 -159l84 258l101 -33l-82 -260h266v-102h-270l84 -256l-101 -31l-84 258l-219 -162z" />
<glyph unicode="+" d="M113 444v140h387v399h143v-399h391v-140h-391v-403h-143v403h-387z" />
<glyph unicode="," horiz-adv-x="456" d="M70 -252l94 471h170l-137 -471h-127z" />
<glyph unicode="-" horiz-adv-x="897" d="M139 492v143h621v-143h-621z" />
<glyph unicode="." horiz-adv-x="442" d="M137 0v233h168v-233h-168z" />
<glyph unicode="/" horiz-adv-x="843" d="M66 20l577 1430l137 -51l-577 -1428z" />
<glyph unicode="0" d="M80 653q0 165 21.5 288.5t61.5 206t101.5 133t135.5 72t171 21.5q125 0 213 -34.5t153 -115.5t96.5 -222t31.5 -347q0 -191 -32.5 -323.5t-98.5 -209t-153 -109.5t-208 -33t-208.5 32.5t-153.5 108.5t-98.5 208t-32.5 324zM244 653q0 -157 21 -262t64.5 -164.5 t101.5 -83.5t142 -24q67 0 116.5 15t91 51.5t68 97.5t40.5 153.5t14 218.5q0 136 -13 235t-38 165t-66 105.5t-92 56t-121 16.5q-116 0 -185 -48t-106.5 -176.5t-37.5 -355.5z" />
<glyph unicode="1" d="M219 1065l430 287h148v-1352h-158v1176l-348 -230z" />
<glyph unicode="2" d="M141 0v133l396 416q63 65 94.5 99t72.5 84.5t59.5 86.5t32 81.5t13.5 92.5q0 131 -71.5 184.5t-223.5 53.5q-67 0 -154.5 -11.5t-141.5 -22.5l-54 -11l-12 131q22 6 59.5 15t140.5 24.5t191 15.5q217 0 322.5 -87t105.5 -275q0 -99 -33.5 -183t-89.5 -153t-160 -170 l-360 -367h678v-137h-865z" />
<glyph unicode="3" d="M127 35l14 129q221 -45 414 -45q150 1 221.5 66t71.5 196q0 243 -279 254h-272v135h272q86 0 166 69t80 177q0 116 -63 166.5t-213 50.5q-83 0 -177 -10.5t-147 -20.5l-53 -10l-15 125q22 6 59.5 15.5t142.5 25.5t196 16q235 0 333.5 -84t98.5 -268q0 -43 -8.5 -81.5 t-25 -68t-32.5 -51.5t-40 -41.5t-37.5 -29t-35 -22t-22.5 -13.5q58 -21 95.5 -42t72 -57.5t50.5 -93t16 -135.5q0 -206 -106 -306.5t-333 -100.5q-95 0 -206 14t-175 28z" />
<glyph unicode="4" d="M82 264v123l385 965h172l-391 -949h489v422h158v-422h172v-139h-172v-264h-158v264h-655z" />
<glyph unicode="5" d="M129 41l18 125q236 -45 416 -45q142 0 223.5 82.5t81.5 236.5q0 146 -74 208.5t-212 62.5q-75 0 -155.5 -20.5t-123.5 -40.5l-43 -21l-108 20l36 703h789v-144h-658l-36 -440q6 3 17.5 9t47.5 20.5t71.5 25.5t85.5 20t95 9q430 0 430 -399q0 -230 -118.5 -350.5 t-333.5 -120.5q-92 0 -204 15t-178 29z" />
<glyph unicode="6" d="M102 682q0 354 138.5 522t390.5 168q76 0 168.5 -9t146.5 -17l55 -9l-14 -129q-184 25 -356 25q-177 0 -271 -121t-94 -346l20 8l57 19t78 24t92 20.5t91 8.5q455 0 455 -420q0 -215 -123.5 -330.5t-349.5 -115.5q-246 0 -365 182t-119 520zM264 627q1 -112 19 -202 t55 -160t100 -108t148 -38q151 0 230 79t79 228q0 139 -78.5 209t-222.5 70q-70 0 -152.5 -19.5t-129.5 -39.5z" />
<glyph unicode="7" d="M158 1208v144h839v-207l-520 -1165l-149 47l510 1128v53h-680z" />
<glyph unicode="8" d="M66 344q0 62 11.5 112t30 85t50 66.5t63 53t78.5 46.5q-111 55 -161 125.5t-50 191.5q0 171 127.5 260.5t353.5 89.5t358 -89.5t132 -262.5q0 -86 -24.5 -144t-71 -96t-129.5 -75q60 -27 100.5 -54t75.5 -66.5t52 -94t17 -125.5q0 -387 -510 -387q-85 0 -157 10.5 t-137 37t-110.5 67t-72 104t-26.5 145.5zM233 371q0 -248 336 -248q163 0 252.5 59.5t89.5 200.5q0 57 -17.5 99t-52.5 70t-73.5 45.5t-95.5 33.5h-215q-112 -31 -168 -91t-56 -169zM256 1006q0 -91 49 -146.5t152 -91.5h215q110 35 164.5 90.5t54.5 145.5q0 227 -320 227 q-315 0 -315 -225z" />
<glyph unicode="9" d="M84 924q0 206 127.5 327t341.5 121q248 0 368.5 -183.5t120.5 -516.5q0 -193 -36 -328.5t-107.5 -214.5t-167 -114t-225.5 -35q-76 0 -169 9t-147 18l-55 9l15 127q184 -24 356 -24q186 0 279 116t94 355q-23 -9 -61.5 -22t-132.5 -34.5t-159 -21.5q-442 0 -442 412z M248 924q0 -273 291 -273q63 0 148.5 18.5t139.5 36.5l54 19q-7 508 -328 508q-142 0 -223.5 -83t-81.5 -226z" />
<glyph unicode=":" horiz-adv-x="444" d="M137 0v233h168v-233h-168zM137 659v234h168v-234h-168z" />
<glyph unicode=";" horiz-adv-x="507" d="M98 -252h127l137 471h-172zM180 659v234h166v-234h-166z" />
<glyph unicode="&#x3c;" d="M125 446v136l852 415v-159l-694 -322l694 -328v-161z" />
<glyph unicode="=" d="M131 254v141h885v-141h-885zM131 633v141h885v-141h-885z" />
<glyph unicode="&#x3e;" d="M168 27v161l694 328l-694 322v159l852 -415v-136z" />
<glyph unicode="?" horiz-adv-x="915" d="M76 1376q207 62 342 62q211 0 312 -76.5t101 -251.5q0 -133 -35.5 -202.5t-154.5 -168.5q-99 -82 -140.5 -136.5t-41.5 -119.5v-71h-129q-27 55 -27 125q0 69 47.5 130t143.5 142q113 98 147.5 151.5t34.5 137.5q0 107 -66 153.5t-207 46.5q-51 0 -130.5 -12t-132.5 -24 l-54 -11zM307 2v229h168v-229h-168z" />
<glyph unicode="@" horiz-adv-x="2000" d="M104 535q0 250 61.5 432.5t182 294.5t290 165.5t394.5 53.5q457 0 668 -210.5t211 -645.5v-27q0 -155 -17 -265.5t-45.5 -177t-76 -104.5t-98.5 -50.5t-122 -12.5q-42 0 -78 7t-60 17.5t-43 23.5t-30 26.5t-18 24t-9 17.5l-3 7q-23 -14 -60.5 -34t-132.5 -53.5 t-164 -33.5q-59 0 -105.5 10t-96.5 42t-83 86.5t-54 150t-21 225.5q0 134 20.5 229t67.5 164.5t128.5 103t199.5 33.5q44 0 103 -13t95 -27l37 -13v33h154v-391q0 -76 0.5 -126t2 -102.5t3.5 -83.5t7 -64t10.5 -49.5t15 -34t19.5 -24.5t26 -13t32.5 -7.5t40.5 -1.5 q41 0 67.5 7.5t54 35t43 79t25 141t9.5 218.5v29q0 378 -168 548.5t-555 170.5q-393 0 -582.5 -194t-189.5 -617q0 -303 82 -482t248 -256.5t442 -77.5q40 0 113 5.5t127 10.5l53 5l6 -137q-193 -19 -299 -19q-156 0 -279.5 19t-230 63t-182.5 116.5t-130 177.5t-80 248 t-26 327zM750 500q0 -92 12.5 -160.5t32.5 -108.5t49.5 -65t58 -33t62.5 -8q20 0 43.5 4t46.5 9.5t48 14t45.5 16.5t42 17t34.5 15t25.5 12t13.5 6q-5 29 -12 140t-7 214v285q-123 41 -211 41q-86 0 -142.5 -24.5t-87 -78t-42.5 -123t-12 -173.5z" />
<glyph unicode="A" horiz-adv-x="1220" d="M49 0l389 1417h344l389 -1417h-155l-103 365h-606l-102 -365h-156zM342 506h537l-215 776h-107z" />
<glyph unicode="B" horiz-adv-x="1261" d="M174 0v1417h514q211 0 316.5 -87t105.5 -273q0 -132 -45.5 -208t-136.5 -118q105 -36 165 -113.5t60 -220.5q0 -214 -113 -305.5t-325 -91.5h-541zM332 139h377q140 0 212 58t72 206q0 63 -21 110t-51 72.5t-72.5 41t-77.5 20t-73 4.5h-366v-512zM332 788h364 q132 0 192 62.5t60 191.5q0 123 -65 179.5t-201 56.5h-350v-490z" />
<glyph unicode="C" horiz-adv-x="1114" d="M121 705q0 107 6.5 191.5t22 163t41.5 135.5t65.5 104.5t93.5 77t126 45.5t163 16q166 0 391 -45l-6 -133q-207 36 -369 36q-79 0 -137 -15t-99 -49t-67 -79.5t-41 -116t-20.5 -147.5t-5.5 -184q0 -90 3.5 -157t13.5 -131t28 -108t46 -82t67.5 -60t93 -34t122.5 -12 q164 0 365 37l6 -135q-215 -43 -391 -43q-105 0 -185.5 20.5t-137.5 64t-95 102t-60 143.5t-31 178.5t-9 216.5z" />
<glyph unicode="D" horiz-adv-x="1320" d="M174 0v1417h506q121 0 212.5 -33.5t150 -92.5t95.5 -147.5t51.5 -188.5t14.5 -226q0 -129 -14 -232.5t-50.5 -198.5t-94.5 -159t-150.5 -101.5t-214.5 -37.5h-506zM332 139h348q72 0 129 22t96 63.5t66.5 94t42.5 121.5t21.5 138.5t6.5 150.5q0 98 -9 175.5t-33.5 149.5 t-64.5 119.5t-104.5 76t-150.5 28.5h-348v-1139z" />
<glyph unicode="E" horiz-adv-x="1132" d="M174 0v1417h862v-139h-704v-490h581v-137h-581v-512h704v-139h-862z" />
<glyph unicode="F" horiz-adv-x="1077" d="M174 0v1417h848v-139h-690v-553h583v-139h-583v-586h-158z" />
<glyph unicode="G" horiz-adv-x="1261" d="M117 705q0 147 15.5 258t53.5 203t100 150.5t156 90t220 31.5q96 0 212 -13.5t184 -26.5l68 -14l-6 -131q-254 43 -440 43q-98 0 -167.5 -24t-114.5 -68t-71 -118.5t-36 -164t-10 -216.5q0 -125 10 -213t35.5 -162.5t70 -118.5t114 -68t167.5 -24q145 0 293 28v437h-236 v141h391v-696q-67 -12 -213.5 -30.5t-246.5 -18.5q-128 0 -223.5 32t-157.5 90t-99.5 150t-53 200.5t-15.5 252.5z" />
<glyph unicode="H" horiz-adv-x="1382" d="M174 0v1417h158v-635h721v635h155v-1417h-155v641h-721v-641h-158z" />
<glyph unicode="I" horiz-adv-x="503" d="M174 0v1417h158v-1417h-158z" />
<glyph unicode="J" horiz-adv-x="591" d="M37 -6q53 0 82.5 1.5t59.5 9.5t44 21.5t26 39t15.5 61.5t3.5 90v1200h156l2 -1222q0 -77 -9.5 -132t-32 -93t-51 -61t-76.5 -35.5t-97 -16.5t-123 -4v141z" />
<glyph unicode="K" horiz-adv-x="1165" d="M174 0v1417h158v-659l233 8l363 651h180l-406 -712l428 -705h-186l-377 627l-235 -9v-618h-158z" />
<glyph unicode="L" horiz-adv-x="980" d="M174 0v1417h158v-1276h622v-141h-780z" />
<glyph unicode="M" horiz-adv-x="1720" d="M174 0v1417h285l401 -1198l402 1198h284v-1417h-157v1249h-29l-412 -1198h-176l-412 1198h-28v-1249h-158z" />
<glyph unicode="N" horiz-adv-x="1384" d="M174 0v1417h295l543 -1278h43v1278h155v-1417h-288l-551 1278h-39v-1278h-158z" />
<glyph unicode="O" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702q0 -123 10 -210t35.5 -161.5 t70 -118.5t114 -68.5t167.5 -24.5q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5z" />
<glyph unicode="P" horiz-adv-x="1214" d="M174 0v1417h518q231 0 342 -112.5t111 -343.5q0 -236 -112.5 -360t-340.5 -124h-360v-477h-158zM332 616h358q293 0 293 345q0 164 -69.5 240.5t-223.5 76.5h-358v-662z" />
<glyph unicode="Q" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -261 -53.5 -417.5t-182.5 -231.5l175 -280l-148 -70l-180 295q-68 -18 -172 -18q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702 q0 -123 10 -210.5t35.5 -162t70 -118.5t114 -68t167.5 -24q99 0 168 23t114 66t70.5 116.5t35 162t9.5 215.5q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5z" />
<glyph unicode="R" horiz-adv-x="1261" d="M174 0v1417h524q226 0 339.5 -104.5t113.5 -325.5q0 -329 -260 -412l272 -575h-174l-256 543h-401v-543h-158zM332 682h368q289 0 289 305q0 147 -71.5 219t-219.5 72h-366v-596z" />
<glyph unicode="S" horiz-adv-x="1110" d="M98 1059q0 381 457 381q75 0 182 -10t177 -20l69 -11l-14 -133q-285 34 -404 34q-307 0 -307 -231q0 -46 7.5 -80t28 -60t43.5 -43t68 -33.5t86 -27t113 -26.5q114 -25 184.5 -51.5t124.5 -69.5t76.5 -105.5t22.5 -154.5q0 -436 -453 -436q-75 0 -187 11t-186 23l-75 11 l16 131q279 -37 424 -37q152 0 227.5 69.5t75.5 215.5q0 116 -67 165t-248 84q-79 17 -135 33t-109 39.5t-87 52t-60.5 68.5t-38 92t-11.5 119z" />
<glyph unicode="T" horiz-adv-x="1077" d="M27 1276v141h1024v-141h-433v-1276h-155v1276h-436z" />
<glyph unicode="U" horiz-adv-x="1318" d="M164 430v987h158v-991q0 -161 84.5 -234t246.5 -73q171 0 258.5 73t87.5 234v991h156v-987q0 -237 -126 -343.5t-376 -106.5q-242 0 -365.5 106.5t-123.5 343.5z" />
<glyph unicode="V" horiz-adv-x="1191" d="M49 1417h164l326 -1278h114l326 1278h164l-371 -1417h-352z" />
<glyph unicode="W" horiz-adv-x="1814" d="M61 1417h164l242 -1278h59l289 1266h184l289 -1266h60l241 1278h162l-287 -1417h-288l-269 1210l-268 -1210h-289z" />
<glyph unicode="X" horiz-adv-x="1142" d="M39 0l438 694l-438 723h178l358 -606l361 606h170l-436 -719l436 -698h-178l-357 588l-362 -588h-170z" />
<glyph unicode="Y" horiz-adv-x="1101" d="M20 1417h179l352 -663l352 663h178l-450 -821v-596h-158v596z" />
<glyph unicode="Z" horiz-adv-x="1097" d="M88 -2v182l739 1053v45h-739v139h922v-184l-742 -1053v-41h742v-141h-922z" />
<glyph unicode="[" horiz-adv-x="673" d="M162 -252v1786h430v-137h-275v-1512h275v-137h-430z" />
<glyph unicode="\" horiz-adv-x="892" d="M61 1389l138 59l630 -1419l-137 -58z" />
<glyph unicode="]" horiz-adv-x="673" d="M82 -115h274v1512h-274v137h430v-1786h-430v137z" />
<glyph unicode="^" d="M119 653l379 699h137l391 -699h-164l-293 547l-286 -547h-164z" />
<glyph unicode="_" horiz-adv-x="1294" d="M209 -188h876v-136h-876v136z" />
<glyph unicode="`" horiz-adv-x="483" d="M-2 1384l53 132l443 -201l-43 -105z" />
<glyph unicode="a" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5z" />
<glyph unicode="b" horiz-adv-x="1077" d="M147 2v1468h152v-497q18 8 47.5 20t109.5 31.5t144 19.5q207 0 290 -118t83 -398q0 -157 -23 -258.5t-79.5 -168t-148 -94t-233.5 -27.5q-55 0 -140.5 5.5t-143.5 10.5zM299 127q133 -10 188 -10q84 0 142 16t95.5 45.5t57.5 82t27.5 114t7.5 153.5q0 204 -50.5 291.5 t-182.5 87.5q-63 0 -134 -14.5t-111 -29.5l-40 -15v-721z" />
<glyph unicode="c" horiz-adv-x="892" d="M104 530q0 278 98.5 396t327.5 118q42 0 111.5 -7.5t118.5 -14.5l49 -8l-6 -125q-164 18 -242 18q-89 0 -146.5 -19.5t-91.5 -66.5t-47.5 -115.5t-13.5 -175.5q0 -96 7 -160t25.5 -115.5t53 -80t86.5 -43t129 -14.5q35 0 95.5 4.5t103.5 8.5l43 5l6 -127 q-191 -28 -285 -28q-123 0 -203.5 29t-129.5 96.5t-69 168.5t-20 256z" />
<glyph unicode="d" horiz-adv-x="1083" d="M102 504q0 276 100 408t328 132q118 0 252 -26v452h152v-1470h-152v70q-18 -10 -48 -25t-112.5 -40t-150.5 -25q-65 0 -116 11.5t-100 46t-81.5 91t-52 151.5t-19.5 224zM260 504q0 -120 18 -200t52 -119t71 -53.5t88 -14.5q64 0 137.5 19t114.5 38l41 19v694 q-132 24 -243 24q-155 0 -217 -99t-62 -308z" />
<glyph unicode="e" horiz-adv-x="1034" d="M102 506q0 538 428 538q207 0 309.5 -115.5t102.5 -363.5l-8 -116h-676q0 -171 61 -252.5t207 -81.5q68 0 162.5 4.5t154.5 8.5l60 5l4 -121q-233 -32 -399 -32q-222 0 -314 128t-92 398zM256 571h532q0 188 -60.5 266t-197.5 78q-135 0 -204 -81.5t-70 -262.5z" />
<glyph unicode="f" horiz-adv-x="677" d="M61 891v133h129v92q0 111 14.5 183t49 115t85 60t128.5 17q31 0 83 -3.5t88 -7.5l36 -3l-2 -127q-115 4 -176 4q-87 0 -119.5 -49.5t-32.5 -190.5v-90h297v-133h-297v-891h-154v891h-129z" />
<glyph unicode="g" horiz-adv-x="1052" d="M102 -172q0 83 36.5 135t125.5 119q-57 39 -57 141q0 17 17 57.5t34 72.5l18 32q-161 73 -161 309q0 181 101.5 265.5t281.5 84.5q45 0 98.5 -6.5t83.5 -13.5l31 -6l303 8v-131l-195 4q68 -68 68 -205q0 -193 -95 -269.5t-300 -76.5q-55 0 -101 8q-37 -89 -37 -116 q0 -45 15 -62.5t64 -25t169 -7.5q114 0 185.5 -12.5t120.5 -46.5t69 -92t20 -150q0 -169 -115.5 -247t-338.5 -78q-246 0 -343.5 66.5t-97.5 242.5zM254 -160q0 -108 60.5 -150t230.5 -42q155 0 226 44.5t71 145.5q0 47 -9 78t-25.5 50t-49.5 28.5t-69.5 12.5t-98.5 3 l-221 10q-67 -49 -91 -85.5t-24 -94.5zM268 694q0 -120 54.5 -171.5t175.5 -51.5q129 0 182 50.5t53 172.5t-53.5 174t-181.5 52q-121 0 -175.5 -52.5t-54.5 -173.5z" />
<glyph unicode="h" horiz-adv-x="1099" d="M147 0v1470h154v-503q18 9 49.5 21.5t114.5 34t151 21.5q85 0 144 -18t99 -53.5t62.5 -97.5t32 -141t9.5 -193v-541h-154v537q0 87 -5 143t-18 103t-38 72t-63 38.5t-95 13.5q-64 0 -136.5 -15.5t-112.5 -30.5l-40 -15v-846h-154z" />
<glyph unicode="i" horiz-adv-x="448" d="M147 0v1024h154v-1024h-154zM147 1255v179h154v-179h-154z" />
<glyph unicode="j" horiz-adv-x="448" d="M-100 -338q56 33 90.5 55.5t65.5 49t47 49.5t28 55.5t15.5 68.5t3.5 87v997h151v-999q0 -129 -29.5 -208.5t-99.5 -140.5t-211 -133zM150 1255v179h151v-179h-151z" />
<glyph unicode="k" horiz-adv-x="980" d="M147 0v1470h154v-868l160 8l293 414h174l-334 -471l348 -553h-174l-305 475l-162 -6v-469h-154z" />
<glyph unicode="l" horiz-adv-x="473" d="M160 0v1470h153v-1470h-153z" />
<glyph unicode="m" horiz-adv-x="1712" d="M147 0v1024h152v-72q17 10 46.5 25.5t109 41t143.5 25.5q103 0 164.5 -24t101.5 -80q7 4 20.5 11t55 25t82.5 32t98.5 25t108.5 11q106 0 172 -25.5t105.5 -88t54 -153.5t14.5 -236v-541h-154v537q0 109 -7.5 173t-31 112t-65.5 66.5t-111 18.5q-68 0 -140 -19t-110 -38 l-38 -19q26 -68 26 -299v-532h-153v528q0 91 -4.5 149t-17.5 106t-37.5 73t-62.5 38t-94 13q-64 0 -132.5 -19t-104.5 -38l-37 -19v-831h-154z" />
<glyph unicode="n" horiz-adv-x="1099" d="M147 0v1024h152v-72q19 10 50.5 25.5t115 41t151.5 25.5q86 0 145 -18t99 -53.5t62.5 -97.5t31.5 -140.5t9 -193.5v-541h-152v537q0 87 -5 143t-18 103t-38 72t-64 38.5t-96 13.5q-65 0 -137.5 -19t-112.5 -38l-39 -19v-831h-154z" />
<glyph unicode="o" horiz-adv-x="1081" d="M102 524q0 270 100.5 395t338.5 125q239 0 338.5 -124.5t99.5 -395.5q0 -146 -20 -243.5t-69.5 -167.5t-134.5 -101.5t-214 -31.5q-128 0 -213.5 31.5t-135 101.5t-70 168t-20.5 243zM260 524q0 -94 6 -155.5t23 -114t48.5 -81.5t81 -44.5t122.5 -15.5q61 0 105.5 9.5 t75.5 32.5t50.5 53.5t30 80t14.5 103.5t4 132q0 217 -59 302t-221 85q-161 0 -221 -85t-60 -302z" />
<glyph unicode="p" horiz-adv-x="1079" d="M147 -455v1479h152v-74q6 4 17.5 10t46.5 22.5t69.5 29t82.5 22.5t91 10q194 0 282.5 -124.5t88.5 -395.5q0 -297 -104 -420.5t-343 -123.5q-123 0 -229 22v-457h-154zM301 135q148 -22 221 -22q167 0 233 93.5t66 317.5q0 204 -60 293.5t-177 89.5q-62 0 -132.5 -20.5 t-110.5 -40.5l-40 -21v-690z" />
<glyph unicode="q" horiz-adv-x="1077" d="M102 496q0 303 107.5 425.5t376.5 122.5q47 0 132.5 -5t147.5 -10l62 -5v-1479h-152v502q-16 -8 -44 -19t-104.5 -29.5t-140.5 -18.5q-208 0 -296.5 121t-88.5 395zM258 496q0 -196 57 -287.5t189 -91.5q63 0 131 14.5t105 29.5l36 15v723q-127 12 -188 12 q-100 0 -164.5 -24t-101 -78t-50.5 -127.5t-14 -185.5z" />
<glyph unicode="r" horiz-adv-x="708" d="M147 0v1024h152v-139q20 14 55 35.5t133.5 65.5t186.5 61v-156q-86 -17 -179 -52t-143 -61l-51 -26v-752h-154z" />
<glyph unicode="s" horiz-adv-x="952" d="M92 745q0 81 31 141t84.5 93.5t116.5 49t137 15.5q68 0 160.5 -9.5t150.5 -18.5l59 -10l-4 -132q-227 33 -358 33q-105 0 -164 -35t-59 -120q0 -71 51 -101.5t215 -58.5q103 -17 164.5 -36t106.5 -52t63 -81.5t18 -123.5q0 -172 -101 -245.5t-296 -73.5q-58 0 -148.5 9.5 t-151.5 18.5l-61 10l9 134q234 -35 338 -35q133 0 195.5 38t62.5 138q0 78 -53.5 109.5t-223.5 58.5q-63 10 -106 19.5t-85 24.5t-67.5 35t-46 48.5t-29 67t-8.5 89.5z" />
<glyph unicode="t" horiz-adv-x="718" d="M55 891v133h146v313h151v-313h326v-133h-326v-490q0 -73 3 -116t11 -80t24.5 -54.5t42.5 -26.5t67 -9q25 0 70.5 3t78.5 6l33 3l10 -127q-137 -23 -209 -23q-109 0 -168 32.5t-86.5 113t-27.5 229.5v539h-146z" />
<glyph unicode="u" horiz-adv-x="1087" d="M137 489v535h154v-532q0 -76 2.5 -126.5t11 -96t23 -71.5t38.5 -46t58 -27.5t82 -7.5q68 0 138 19t106 38l36 19v831h154v-1024h-154v72q-17 -10 -46.5 -25.5t-109.5 -41t-147 -25.5q-87 0 -146.5 17.5t-99 52.5t-61.5 98t-30.5 142.5t-8.5 198.5z" />
<glyph unicode="v" horiz-adv-x="985" d="M51 1024h164l240 -891h75l248 891h158l-289 -1024h-307z" />
<glyph unicode="w" horiz-adv-x="1560" d="M63 1024h154l207 -891h33l243 871h160l244 -871h35l204 891h154l-244 -1024h-256l-217 801l-217 -801h-256z" />
<glyph unicode="x" horiz-adv-x="925" d="M45 0l322 512l-322 512h168l250 -401l250 401h168l-326 -508l324 -516h-168l-248 399l-250 -399h-168z" />
<glyph unicode="y" horiz-adv-x="989" d="M51 1024h154l256 -891h67l258 891h154l-426 -1479h-154l134 455h-152z" />
<glyph unicode="z" horiz-adv-x="931" d="M86 0v137l573 750h-573v137h760v-137l-574 -750h574v-137h-760z" />
<glyph unicode="{" horiz-adv-x="720" d="M49 575v125q117 27 168 81t51 143q0 26 -7 124t-7 138q0 189 87 271t296 89l2 -133q-134 -7 -185 -64t-51 -171q0 -35 7.5 -129.5t7.5 -122.5q0 -131 -44 -190.5t-171 -96.5q125 -36 170 -98.5t45 -192.5q-1 -31 -8 -114t-7 -123q0 -115 50.5 -174t185.5 -66l-4 -133 q-208 7 -294.5 90t-86.5 268q0 44 7 136t7 114q0 88 -51.5 142.5t-167.5 86.5z" />
<glyph unicode="|" horiz-adv-x="471" d="M160 -455v1925h151v-1925h-151z" />
<glyph unicode="}" horiz-adv-x="720" d="M82 -129q134 7 184.5 66t50.5 174q0 40 -6.5 123t-7.5 114q0 130 45 192.5t170 98.5q-127 37 -171 96.5t-44 190.5q0 28 7 122.5t7 129.5q0 115 -50.5 171.5t-184.5 63.5l2 133q209 -7 296 -89t87 -271q0 -40 -7 -138t-7 -124q0 -89 51 -143t168 -81v-125 q-116 -32 -167.5 -86.5t-51.5 -142.5q0 -22 7 -114t7 -136q0 -185 -86.5 -268t-294.5 -90z" />
<glyph unicode="~" d="M137 557q5 4 14.5 11.5t37 26.5t55 33t64 26t67.5 12q49 0 131.5 -31t160.5 -62.5t117 -31.5q34 0 86 23.5t88 47.5l35 23l21 -125q-5 -5 -14 -12t-35.5 -26.5t-53 -34t-62.5 -26.5t-67 -12q-49 0 -133 31.5t-162.5 63.5t-113.5 32q-36 0 -89.5 -24t-88.5 -48l-35 -24z " />
<glyph unicode="&#xa1;" horiz-adv-x="466" d="M147 795v229h168v-229h-168zM152 -393l10 950h141l10 -950h-161z" />
<glyph unicode="&#xa2;" d="M207 508q0 224 89 329.5t273 114.5v242h133v-248q39 -1 91 -7t84 -11l32 -6l-6 -123q-162 14 -264 14q-151 0 -211.5 -69t-60.5 -236q0 -169 60 -233t224 -64q45 0 108.5 3.5t104.5 7.5l41 3l6 -125q-123 -18 -209 -22v-244h-133v240q-190 9 -276 105.5t-86 328.5z" />
<glyph unicode="&#xa3;" d="M164 0v135h174v586h-137v133h137v113q0 124 17 203.5t56 124t92.5 61t137.5 16.5q48 0 116 -9t112 -17l44 -9l-2 -125q-164 23 -256 23q-97 0 -132.5 -58t-35.5 -221v-102h351v-133h-351v-586h316l158 33l26 -131l-168 -37h-655z" />
<glyph unicode="&#xa4;" d="M119 170l143 143q-59 91 -59 203q0 109 59 203l-143 143l108 109l144 -146q91 62 202 62q109 0 203 -62l144 146l108 -109l-145 -143q61 -92 61 -203q0 -114 -61 -203l145 -143l-108 -109l-144 146q-94 -62 -203 -62q-111 0 -202 62l-144 -146zM338 516q0 -97 69 -166 t166 -69t166.5 69t69.5 166t-69.5 166.5t-166.5 69.5t-166 -69.5t-69 -166.5z" />
<glyph unicode="&#xa5;" d="M47 1352h176l352 -553l349 553h176l-350 -574h278v-133h-356l-17 -39v-139h375v-133h-375v-334h-157v334h-379v133h379v139l-17 39h-364v133h286z" />
<glyph unicode="&#xa6;" horiz-adv-x="479" d="M164 319h151v-774h-151v774zM164 705v765h151v-765h-151z" />
<glyph unicode="&#xa7;" horiz-adv-x="1021" d="M106 522q0 80 43.5 156.5t75.5 101.5q-46 33 -68 86.5t-22 141.5q0 163 101 244t292 81q60 0 144 -8.5t138 -17.5l54 -9l-8 -129q-223 31 -321 31q-131 0 -190.5 -45t-59.5 -143q0 -35 7 -61.5t25 -46.5t38.5 -33.5t58 -25.5t72.5 -19.5t92 -18.5q91 -18 146 -36.5 t100 -51.5t64 -83.5t19 -125.5q0 -76 -30.5 -151.5t-59.5 -116.5q39 -34 57.5 -80t18.5 -125q0 -344 -391 -344q-58 0 -148 8.5t-150 17.5l-61 9l15 129q223 -31 336 -31q251 0 251 203q0 20 -2 36.5t-9.5 30.5t-13 24.5t-20.5 21t-24.5 17t-33 14t-37 11.5t-46 11t-50 10.5 t-58.5 11.5q-92 17 -151.5 38t-106 55t-67 86t-20.5 126zM260 545q0 -90 52 -129t180 -62q146 -27 208 -55q6 7 17.5 34t23 73t11.5 86q0 48 -13.5 79.5t-46.5 52t-71 32t-105 24.5q-127 21 -188 45l-4 -7q-5 -7 -9 -14t-11 -19t-12.5 -23.5t-11.5 -27t-10.5 -29.5t-7 -30 t-2.5 -30z" />
<glyph unicode="&#xa8;" horiz-adv-x="483" d="M-25 1272v184h148v-184h-148zM385 1272v184h150v-184h-150z" />
<glyph unicode="&#xa9;" horiz-adv-x="1320" d="M121 889q0 156 69.5 284t193.5 201.5t278 73.5q155 0 279 -75.5t191.5 -203t67.5 -280.5q0 -156 -68 -283t-192.5 -201.5t-280.5 -74.5q-152 0 -275.5 74.5t-193 202.5t-69.5 282zM211 889q0 -128 57.5 -235.5t161 -170.5t229.5 -63q193 0 322 136t129 333 q0 128 -58.5 236t-162.5 171.5t-230 63.5q-191 0 -319.5 -137.5t-128.5 -333.5zM428 891q0 166 54 242.5t188 76.5q38 0 77.5 -5t59.5 -10l20 -5l-8 -109q-77 13 -143 13q-77 0 -100 -46t-23 -157q0 -109 26 -159t97 -50q26 0 62 3.5t58 6.5l23 4l8 -106q-75 -25 -159 -25 q-132 0 -186 77t-54 249z" />
<glyph unicode="&#xaa;" horiz-adv-x="790" d="M111 920q0 84 48 127t148 49l180 12v45q0 45 -24 63.5t-76 18.5q-35 0 -93.5 -3.5t-99.5 -7.5l-42 -3l-5 98q142 31 246 31q116 0 170.5 -45t54.5 -158v-281q18 -24 62 -35l-4 -100q-79 0 -111.5 12t-58.5 41q-13 -6 -34.5 -15t-79.5 -23.5t-105 -14.5q-83 0 -129.5 51 t-46.5 138zM246 922q0 -80 73 -80q32 0 74 8.5t68 17.5l26 9v137l-157 -10q-45 -3 -64.5 -22t-19.5 -60z" />
<glyph unicode="&#xab;" horiz-adv-x="1103" d="M92 446v123l387 293v-157l-254 -193l254 -215v-160zM578 446v123l389 293v-157l-256 -193l256 -215v-160z" />
<glyph unicode="&#xac;" d="M133 561v139h877v-460h-144v321h-733z" />
<glyph unicode="&#xad;" horiz-adv-x="897" d="M139 492v143h621v-143h-621z" />
<glyph unicode="&#xae;" horiz-adv-x="1320" d="M121 889q0 156 69 284t192.5 201.5t276.5 73.5q156 0 280.5 -75.5t192.5 -203t68 -280.5q0 -156 -68 -283t-192.5 -201.5t-280.5 -74.5q-152 0 -275.5 74.5t-193 202.5t-69.5 282zM211 889q0 -195 129 -332t319 -137q193 0 322 136t129 333q0 128 -58.5 236t-162.5 171.5 t-230 63.5q-191 0 -319.5 -137.5t-128.5 -333.5zM436 578v620h226q116 0 174.5 -44.5t58.5 -149.5q0 -77 -23.5 -121t-80.5 -70l112 -235h-125l-102 219h-121v-219h-119zM553 893h121q56 0 80 24.5t24 79.5t-31 80t-96 25h-98v-209z" />
<glyph unicode="&#xaf;" horiz-adv-x="483" d="M-29 1278v121h564v-121h-564z" />
<glyph unicode="&#xb0;" d="M283 1149q0 129 80.5 209t209.5 80t210 -80t81 -209q0 -130 -80.5 -209.5t-210.5 -79.5q-129 0 -209.5 79.5t-80.5 209.5zM387 1149q0 -86 50.5 -138.5t135.5 -52.5t138 52.5t53 138.5q0 85 -53 137.5t-138 52.5q-84 0 -135 -52.5t-51 -137.5z" />
<glyph unicode="&#xb1;" d="M113 78v139h921v-139h-921zM113 600v139h387v258h143v-258h391v-139h-391v-260h-143v260h-387z" />
<glyph unicode="&#xb2;" horiz-adv-x="573" d="M61 979v113l181 178q54 52 79 90t25 80q0 76 -100 76q-26 0 -69.5 -5t-74.5 -9l-30 -5l-4 117q121 24 211 24q105 0 153.5 -45t48.5 -141q0 -68 -28.5 -118t-96.5 -111l-129 -125h262v-119h-428z" />
<glyph unicode="&#xb3;" horiz-adv-x="573" d="M61 979l9 115q116 -17 204 -17q52 0 77.5 23t25.5 63q0 88 -96 88h-134v109h134q29 0 53 26.5t24 63.5q0 36 -21.5 53t-70.5 17q-39 0 -86 -4t-74 -8l-28 -3l-8 113q121 20 209 20q109 0 162 -41.5t53 -130.5q0 -35 -10 -63.5t-25.5 -46t-25.5 -26t-19 -13.5 q50 -16 73 -50.5t23 -109.5q0 -100 -56 -149.5t-161 -49.5q-44 0 -102 5t-94 11z" />
<glyph unicode="&#xb4;" horiz-adv-x="548" d="M53 1315l443 201l53 -132l-453 -174z" />
<glyph unicode="&#xb5;" d="M172 -455v1479h154v-532q0 -76 2.5 -126.5t11 -96t23 -71.5t38.5 -46t58 -27.5t82 -7.5q68 0 138 19t106 38l36 19v831h154v-1024h-154v72q-17 -10 -46.5 -25.5t-109.5 -41t-147 -25.5q-123 0 -192 34v-469h-154z" />
<glyph unicode="&#xb6;" horiz-adv-x="1214" d="M72 1038q0 166 109 272.5t274 106.5h673v-133h-147v-1284h-139v1284h-238v-1284h-137v664h-14q-166 0 -273.5 104t-107.5 270z" />
<glyph unicode="&#xb7;" horiz-adv-x="444" d="M139 469v233h168v-233h-168z" />
<glyph unicode="&#xb8;" horiz-adv-x="538" d="M86 -430l6 98q80 -6 135 -6q90 0 90 78q0 70 -90 70h-86v192h84v-102q121 0 174.5 -33t53.5 -127q0 -93 -50.5 -138.5t-140.5 -45.5q-40 0 -84 3.5t-68 6.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="573" d="M66 1475l206 143h123v-639h-131v496l-139 -97z" />
<glyph unicode="&#xba;" horiz-adv-x="778" d="M109 1044q0 158 70.5 232t211.5 74q140 0 208.5 -74t68.5 -232q0 -313 -277 -313q-282 0 -282 313zM250 1044q0 -100 32 -144t109 -44q75 0 105 44t30 144q0 99 -29.5 140t-105.5 41q-78 0 -109.5 -41t-31.5 -140z" />
<glyph unicode="&#xbb;" horiz-adv-x="1103" d="M137 137v160l256 215l-256 193v157l387 -293v-123zM623 137v160l256 215l-256 193v157l389 -293v-123z" />
<glyph unicode="&#xbc;" horiz-adv-x="1093" d="M72 57l802 1295l82 -54l-804 -1292zM76 1475l207 143h123v-639h-132v496l-139 -97zM555 4l141 430h144l-150 -422h154l10 183h119v-183h55v-118h-55v-99h-129v99h-289v110z" />
<glyph unicode="&#xbd;" horiz-adv-x="1083" d="M68 57l802 1295l82 -54l-805 -1292zM84 1475l207 143h123v-639h-131v496l-140 -97zM567 -92l181 178q54 52 79 90t25 80q0 76 -100 76q-26 0 -69.5 -5t-74.5 -9l-30 -5l-5 117q121 25 211 25q105 0 154 -45.5t49 -141.5q0 -68 -28.5 -118t-96.5 -111l-129 -125h262v-119 h-428v113z" />
<glyph unicode="&#xbe;" horiz-adv-x="1126" d="M100 979l9 115q116 -17 204 -17q52 0 77.5 23t25.5 63q0 88 -97 88h-133v109h133q29 0 53.5 26.5t24.5 63.5q0 36 -21.5 53t-70.5 17q-39 0 -86 -4t-75 -8l-27 -3l-8 113q120 20 208 20q109 0 162 -41.5t53 -130.5q0 -45 -18.5 -81t-32.5 -48t-28 -20q50 -16 73 -50.5 t23 -109.5q0 -100 -56 -149.5t-161 -49.5q-44 0 -102 5t-94 11zM106 57l803 1295l82 -54l-805 -1292zM590 4l141 430h143l-149 -422h154l10 183h119v-183h55v-118h-55v-99h-129v99h-289v110z" />
<glyph unicode="&#xbf;" horiz-adv-x="903" d="M78 -84q0 133 35.5 202.5t154.5 168.5q100 82 141.5 136.5t41.5 119.5v71h129q26 -55 26 -125q0 -69 -47 -130t-143 -142q-113 -98 -148 -151.5t-35 -137.5q0 -107 66 -153.5t207 -46.5q51 0 130.5 11.5t133.5 23.5l53 12l11 -125q-207 -62 -342 -62q-211 0 -312.5 76.5 t-101.5 251.5zM434 795v229h168v-229h-168z" />
<glyph unicode="&#xc0;" horiz-adv-x="1220" d="M49 0l389 1417h344l389 -1417h-155l-103 365h-606l-102 -365h-156zM334 1772l53 135l442 -205l-47 -109zM342 506h537l-215 776h-107z" />
<glyph unicode="&#xc1;" horiz-adv-x="1220" d="M49 0l389 1417h344l389 -1417h-155l-103 365h-606l-102 -365h-156zM342 506h537l-215 776h-107zM381 1702l442 205l54 -135l-449 -179z" />
<glyph unicode="&#xc2;" horiz-adv-x="1220" d="M49 0l389 1417h344l389 -1417h-155l-103 365h-606l-102 -365h-156zM266 1620l275 276h133l274 -276h-172l-168 164l-170 -164h-172zM342 506h537l-215 776h-107z" />
<glyph unicode="&#xc3;" horiz-adv-x="1220" d="M49 0l389 1417h344l389 -1417h-155l-103 365h-606l-102 -365h-156zM256 1772q4 5 11 13t28.5 28t42.5 35.5t48.5 28.5t51.5 13q44 0 114 -27.5t132 -55t86 -27.5q19 0 54 23.5t60 46.5l25 24l37 -115q-4 -5 -10.5 -12.5t-26.5 -27t-39.5 -34.5t-46 -27.5t-49.5 -12.5 q-52 0 -178.5 55t-155.5 55q-22 0 -59 -24.5t-63 -48.5l-27 -25zM342 506h537l-215 776h-107z" />
<glyph unicode="&#xc4;" horiz-adv-x="1220" d="M49 0l389 1417h344l389 -1417h-155l-103 365h-606l-102 -365h-156zM326 1655v184h149v-184h-149zM342 506h537l-215 776h-107zM743 1655v184h148v-184h-148z" />
<glyph unicode="&#xc5;" horiz-adv-x="1220" d="M49 0l377 1370q-61 58 -61 154q0 100 68 157.5t175 57.5q106 0 174 -57.5t68 -157.5q0 -90 -57 -150l378 -1374h-155l-103 365h-606l-102 -365h-156zM342 506h537l-215 776h-107zM481 1524q0 -43 23 -71.5t65 -35.5h76q42 8 66 36.5t24 70.5q0 52 -34 80t-93 28 q-60 0 -93.5 -28t-33.5 -80z" />
<glyph unicode="&#xc6;" horiz-adv-x="1794" d="M41 0l459 1425h1198v-149h-707v-471h584v-150h-584v-505h707v-150h-862v358h-514l-119 -358h-162zM365 510h471l2 766h-224z" />
<glyph unicode="&#xc7;" horiz-adv-x="1114" d="M121 705q0 107 6.5 191.5t22 163t41.5 135.5t65.5 104.5t93.5 77t126 45.5t163 16q166 0 391 -45l-6 -133q-207 36 -369 36q-79 0 -137 -15t-99 -49t-67 -79.5t-41 -116t-20.5 -147.5t-5.5 -184q0 -90 3.5 -157t13.5 -131t28 -108t46 -82t67.5 -60t93 -34t122.5 -12 q164 0 365 37l6 -135q-193 -40 -371 -43v-80q121 0 174.5 -33t53.5 -127q0 -93 -50.5 -138.5t-140.5 -45.5q-40 0 -84 3.5t-68 6.5l-24 4l6 98q81 -6 136 -6q90 0 90 78q0 70 -90 70h-87v172q-110 7 -189.5 43t-130.5 94t-81 148.5t-41.5 194t-11.5 243.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="1132" d="M174 0v1417h862v-139h-704v-490h581v-137h-581v-512h704v-139h-862zM346 1772l53 135l443 -205l-47 -109z" />
<glyph unicode="&#xc9;" horiz-adv-x="1132" d="M174 0v1417h862v-139h-704v-490h581v-137h-581v-512h704v-139h-862zM360 1702l443 205l53 -135l-448 -179z" />
<glyph unicode="&#xca;" horiz-adv-x="1132" d="M174 0v1417h862v-139h-704v-490h581v-137h-581v-512h704v-139h-862zM260 1620l275 276h133l274 -276h-172l-168 164l-170 -164h-172z" />
<glyph unicode="&#xcb;" horiz-adv-x="1132" d="M174 0v1417h862v-139h-704v-490h581v-137h-581v-512h704v-139h-862zM322 1655v184h149v-184h-149zM739 1655v184h148v-184h-148z" />
<glyph unicode="&#xcc;" horiz-adv-x="503" d="M-41 1772l53 135l443 -205l-47 -109zM174 0v1417h158v-1417h-158z" />
<glyph unicode="&#xcd;" horiz-adv-x="503" d="M27 1702l442 205l53 -135l-448 -179zM174 0v1417h158v-1417h-158z" />
<glyph unicode="&#xce;" horiz-adv-x="503" d="M-96 1620l274 276h133l275 -276h-172l-168 164l-170 -164h-172zM174 0v1417h158v-1417h-158z" />
<glyph unicode="&#xcf;" horiz-adv-x="503" d="M-31 1655v184h150v-184h-150zM174 0v1417h158v-1417h-158zM387 1655v184h148v-184h-148z" />
<glyph unicode="&#xd0;" horiz-adv-x="1325" d="M41 637v149h139v639h506q120 0 211.5 -33.5t150.5 -92.5t95.5 -147.5t51.5 -189.5t15 -227q0 -129 -14.5 -234t-50.5 -200.5t-94.5 -160t-150.5 -102.5t-214 -38h-506v637h-139zM336 150h350q361 0 361 585q0 95 -9 171.5t-33.5 147.5t-64.5 118.5t-104 75.5t-150 28 h-350v-490h323v-149h-323v-487z" />
<glyph unicode="&#xd1;" horiz-adv-x="1384" d="M174 0v1417h295l543 -1278h43v1278h155v-1417h-288l-551 1278h-39v-1278h-158zM342 1772q4 5 11 13t28.5 28t42.5 35.5t48.5 28.5t51.5 13q44 0 114 -27.5t132 -55t86 -27.5q19 0 54 23.5t60 46.5l25 24l37 -115q-4 -5 -10.5 -12.5t-26.5 -27t-39.5 -34.5t-46 -27.5 t-49.5 -12.5q-52 0 -178.5 55t-155.5 55q-22 0 -59 -24.5t-63 -48.5l-27 -25z" />
<glyph unicode="&#xd2;" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702q0 -123 10 -210t35.5 -161.5 t70 -118.5t114 -68.5t167.5 -24.5q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5zM412 1772l53 135l442 -205l-47 -109z" />
<glyph unicode="&#xd3;" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702q0 -123 10 -210t35.5 -161.5 t70 -118.5t114 -68.5t167.5 -24.5q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5zM406 1702l442 205l53 -135l-448 -179z" />
<glyph unicode="&#xd4;" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702q0 -123 10 -210t35.5 -161.5 t70 -118.5t114 -68.5t167.5 -24.5q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5zM336 1620l274 276h133l275 -276h-172l-168 164 l-170 -164h-172z" />
<glyph unicode="&#xd5;" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702q0 -123 10 -210t35.5 -161.5 t70 -118.5t114 -68.5t167.5 -24.5q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5zM326 1772q4 5 11 13t28.5 28t42.5 35.5t48.5 28.5 t51.5 13q44 0 114 -27.5t132 -55t86 -27.5q19 0 54 23.5t60 46.5l25 24l37 -115q-4 -5 -10.5 -12.5t-26.5 -27t-39.5 -34.5t-46 -27.5t-49.5 -12.5q-52 0 -178.5 55t-155.5 55q-22 0 -59.5 -24.5t-64.5 -48.5l-26 -25z" />
<glyph unicode="&#xd6;" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q162 0 272 -47.5t173 -145t89.5 -228t26.5 -315.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-131 0 -227 30t-160 86.5t-102 147t-54 200.5t-16 258zM279 702q0 -123 10 -210t35.5 -161.5 t70 -118.5t114 -68.5t167.5 -24.5q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 121 -10 209.5t-36.5 165t-71 123t-114 72.5t-165.5 26q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5zM393 1655v184h150v-184h-150zM811 1655v184h147v-184 h-147z" />
<glyph unicode="&#xd7;" d="M145 184l332 330l-332 328l101 98l327 -332l330 334l98 -98l-333 -330l333 -330l-98 -98l-330 332l-329 -332z" />
<glyph unicode="&#xd8;" horiz-adv-x="1351" d="M117 702q0 146 16 256.5t55 203.5t102 152t159.5 91.5t226.5 32.5q154 0 258 -43l115 241l118 -49l-120 -260q102 -86 146 -240.5t44 -384.5q0 -190 -26 -319.5t-89.5 -223t-172.5 -136.5t-273 -43q-145 0 -246 34l-117 -252l-116 54l120 258q-109 81 -154.5 234 t-45.5 394zM279 702q0 -182 23 -298t83 -183l487 1039q-75 38 -196 38q-97 0 -166.5 -26t-114 -72.5t-70.5 -122.5t-36 -164.5t-10 -210.5zM494 147q69 -28 182 -28q82 0 144 15t106 48t72.5 78.5t45 114t23 145.5t6.5 182q0 170 -22 286.5t-76 187.5z" />
<glyph unicode="&#xd9;" horiz-adv-x="1318" d="M164 430v987h158v-991q0 -161 84.5 -234t246.5 -73q171 0 258.5 73t87.5 234v991h156v-987q0 -237 -126 -343.5t-376 -106.5q-242 0 -365.5 106.5t-123.5 343.5zM401 1772l54 135l442 -205l-47 -109z" />
<glyph unicode="&#xda;" horiz-adv-x="1318" d="M164 430v987h158v-991q0 -161 84.5 -234t246.5 -73q171 0 258.5 73t87.5 234v991h156v-987q0 -237 -126 -343.5t-376 -106.5q-242 0 -365.5 106.5t-123.5 343.5zM408 1702l442 205l53 -135l-448 -179z" />
<glyph unicode="&#xdb;" horiz-adv-x="1318" d="M164 430v987h158v-991q0 -161 84.5 -234t246.5 -73q171 0 258.5 73t87.5 234v991h156v-987q0 -237 -126 -343.5t-376 -106.5q-242 0 -365.5 106.5t-123.5 343.5zM317 1620l275 276h133l274 -276h-172l-168 164l-170 -164h-172z" />
<glyph unicode="&#xdc;" horiz-adv-x="1318" d="M164 430v987h158v-991q0 -161 84.5 -234t246.5 -73q171 0 258.5 73t87.5 234v991h156v-987q0 -237 -126 -343.5t-376 -106.5q-242 0 -365.5 106.5t-123.5 343.5zM377 1655v184h149v-184h-149zM795 1655v184h147v-184h-147z" />
<glyph unicode="&#xdd;" horiz-adv-x="1101" d="M20 1417h179l352 -663l352 663h178l-450 -821v-596h-158v596zM342 1702l442 205l54 -135l-449 -179z" />
<glyph unicode="&#xde;" horiz-adv-x="1226" d="M174 0v1425h158v-229h360q231 0 343 -112.5t112 -344.5q0 -236 -113.5 -363.5t-341.5 -127.5h-360v-248h-158zM332 399h358q151 0 223 89t72 251q0 159 -70 232t-225 73h-358v-645z" />
<glyph unicode="&#xdf;" horiz-adv-x="1175" d="M147 0v1116q0 207 93 291t309 84q211 0 304 -69t93 -226q0 -108 -39 -166.5t-129 -97.5q-74 -33 -97.5 -52t-23.5 -49q0 -32 34 -58.5t147 -82.5q78 -39 124 -68.5t80.5 -68t48 -83.5t13.5 -108q0 -209 -93.5 -295.5t-318.5 -86.5q-45 0 -112 7.5t-112 14.5l-44 8l6 129 q174 -22 250 -22q148 0 206 54t58 169q0 85 -42.5 129.5t-180.5 110.5q-129 61 -176 110.5t-47 128.5q0 73 37.5 116t119.5 79q77 33 104 71t27 103q0 92 -51.5 129t-185.5 37q-139 0 -193.5 -53t-54.5 -203v-1098h-154z" />
<glyph unicode="&#xe0;" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5zM248 1384l53 132l442 -201l-43 -105z" />
<glyph unicode="&#xe1;" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5zM242 1315l442 201l53 -132l-452 -174z" />
<glyph unicode="&#xe2;" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM195 1212l251 287h105l254 -287h-154l-149 179l-154 -179h-153zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM158 1366l11.5 11.5t29.5 26t43.5 32.5t49.5 25.5t52 11.5q44 0 150.5 -47.5t134.5 -47.5q19 0 54.5 19.5t60.5 38.5l26 20l35 -98q-11 -12 -28.5 -29.5t-64.5 -46.5t-83 -29q-43 0 -148.5 48.5t-136.5 48.5q-22 0 -59 -20.5t-63 -41.5 l-27 -20zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM215 1272v184h147v-184h-147zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5zM625 1272v184h149v-184h-149z" />
<glyph unicode="&#xe5;" horiz-adv-x="1026" d="M82 293q0 145 76 216.5t237 86.5l322 31v88q0 105 -45 149.5t-140 44.5q-64 0 -160.5 -6.5t-161.5 -12.5l-65 -7l-6 116q226 45 402 45q172 0 250.5 -80t78.5 -249v-525q5 -76 119 -90l-6 -120q-85 0 -142.5 18.5t-101.5 62.5q-21 -9 -56.5 -22.5t-132.5 -36t-179 -22.5 q-140 0 -214.5 79.5t-74.5 233.5zM240 297q0 -91 39 -139.5t116 -48.5q68 0 148.5 15.5t126.5 31.5l47 16v338l-303 -29q-92 -9 -133 -53.5t-41 -130.5zM309 1321q0 90 61.5 151.5t151.5 61.5q89 0 150 -62t61 -151q0 -91 -61 -152t-150 -61q-91 0 -152 61t-61 152z M410 1321q0 -49 32.5 -83t79.5 -34t80 34t33 83q0 47 -33 81t-80 34t-79.5 -33.5t-32.5 -81.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1646" d="M82 293q0 85 21.5 141t71 89.5t113 50.5t165.5 28l264 25v84q0 186 -178 186q-68 0 -165 -5t-160 -10l-64 -5l-7 137q244 30 404 30q209 0 276 -149q98 149 320 149q207 0 309 -115.5t102 -363.5l-8 -119h-676q0 -167 61.5 -247t207.5 -80q68 0 161.5 4.5t153.5 8.5l59 5 l5 -125q-232 -32 -398 -32q-205 0 -301 110l-65 -29q-28 -12 -70.5 -27t-138.5 -34.5t-185 -19.5q-136 0 -207 80t-71 233zM240 297q0 -90 37.5 -137t107.5 -47q94 0 215.5 30t151.5 45q-39 103 -39 314l-299 -25q-90 -8 -132 -50.5t-42 -129.5zM870 571h531 q0 182 -60.5 259t-197.5 77q-136 0 -204.5 -80t-68.5 -256z" />
<glyph unicode="&#xe7;" horiz-adv-x="892" d="M104 530q0 278 98.5 396t327.5 118q42 0 111.5 -7.5t118.5 -14.5l49 -8l-6 -125q-164 18 -242 18q-89 0 -146.5 -19.5t-91.5 -66.5t-47.5 -115.5t-13.5 -175.5q0 -96 7 -160t25.5 -115.5t53 -80t86.5 -43t129 -14.5q35 0 95.5 4.5t103.5 8.5l43 5l6 -127 q-191 -28 -285 -28h-16v-80q121 0 174 -33t53 -127t-50 -139t-140 -45q-40 0 -84 3.5t-68 6.5l-24 4l6 98q80 -6 135 -6q90 0 90 78q0 70 -90 70h-86v176q-181 21 -251.5 146t-70.5 398z" />
<glyph unicode="&#xe8;" horiz-adv-x="1034" d="M102 506q0 538 428 538q207 0 309.5 -115.5t102.5 -363.5l-8 -116h-676q0 -171 61 -252.5t207 -81.5q68 0 162.5 4.5t154.5 8.5l60 5l4 -121q-233 -32 -399 -32q-222 0 -314 128t-92 398zM248 1386l53 132l442 -201l-43 -105zM256 571h532q0 188 -60.5 266t-197.5 78 q-135 0 -204 -81.5t-70 -262.5z" />
<glyph unicode="&#xe9;" horiz-adv-x="1034" d="M102 506q0 538 428 538q207 0 309.5 -115.5t102.5 -363.5l-8 -116h-676q0 -171 61 -252.5t207 -81.5q68 0 162.5 4.5t154.5 8.5l60 5l4 -121q-233 -32 -399 -32q-222 0 -314 128t-92 398zM256 571h532q0 188 -60.5 266t-197.5 78q-135 0 -204 -81.5t-70 -262.5zM297 1315 l442 201l54 -132l-453 -174z" />
<glyph unicode="&#xea;" horiz-adv-x="1034" d="M102 506q0 538 428 538q207 0 309.5 -115.5t102.5 -363.5l-8 -116h-676q0 -171 61 -252.5t207 -81.5q68 0 162.5 4.5t154.5 8.5l60 5l4 -121q-233 -32 -399 -32q-222 0 -314 128t-92 398zM229 1212l252 287h105l254 -287h-154l-149 179l-154 -179h-154zM256 571h532 q0 188 -60.5 266t-197.5 78q-135 0 -204 -81.5t-70 -262.5z" />
<glyph unicode="&#xeb;" horiz-adv-x="1034" d="M102 506q0 538 428 538q207 0 309.5 -115.5t102.5 -363.5l-8 -116h-676q0 -171 61 -252.5t207 -81.5q68 0 162.5 4.5t154.5 8.5l60 5l4 -121q-233 -32 -399 -32q-222 0 -314 128t-92 398zM246 1272v184h147v-184h-147zM256 571h532q0 188 -60.5 266t-197.5 78 q-135 0 -204 -81.5t-70 -262.5zM655 1272v184h150v-184h-150z" />
<glyph unicode="&#xec;" horiz-adv-x="448" d="M-123 1384l53 132l443 -201l-43 -105zM147 0v1024h154v-1024h-154z" />
<glyph unicode="&#xed;" horiz-adv-x="448" d="M78 1315l442 201l53 -132l-452 -174zM147 0h154v1024h-154v-1024z" />
<glyph unicode="&#xee;" horiz-adv-x="448" d="M-86 1212l252 287h104l254 -287h-153l-150 179l-153 -179h-154zM147 0h154v1024h-154v-1024z" />
<glyph unicode="&#xef;" horiz-adv-x="448" d="M-63 1272v184h147v-184h-147zM147 0h154v1024h-154v-1024zM346 1272v184h150v-184h-150z" />
<glyph unicode="&#xf0;" horiz-adv-x="1122" d="M86 440q0 202 113 321.5t317 119.5q68 0 152.5 -18.5t135.5 -36.5l50 -19q-13 266 -281 424l-249 -166l-68 96l195 131q-105 45 -254 84l30 115q207 -41 355 -111l206 140l70 -97l-158 -106q316 -200 316 -596q0 -397 -110 -568t-363 -171q-219 0 -338 117t-119 341z M248 440q0 -154 74.5 -236.5t220.5 -82.5q112 0 178.5 50.5t100 170.5t34.5 328q-21 8 -55.5 20t-123 32.5t-153.5 20.5q-131 0 -203.5 -85t-72.5 -218z" />
<glyph unicode="&#xf1;" horiz-adv-x="1099" d="M147 0h154v831q16 9 43.5 21.5t104 33.5t141.5 21q57 0 96 -13.5t64 -38.5t38 -72t18 -103t5 -143v-537h152v541q0 115 -9 193.5t-31.5 140.5t-62.5 97.5t-99 53.5t-145 18q-68 0 -147 -23t-125 -46l-45 -23v72h-152v-1024zM244 1366l11.5 11.5t29.5 26t43.5 32.5 t49.5 25.5t52 11.5q44 0 150.5 -47.5t134.5 -47.5q19 0 54.5 19.5t60.5 38.5l26 20l35 -98q-11 -12 -28.5 -29.5t-64.5 -46.5t-83 -29q-43 0 -148.5 48.5t-136.5 48.5q-22 0 -59 -20.5t-63 -41.5l-27 -20z" />
<glyph unicode="&#xf2;" horiz-adv-x="1081" d="M102 524q0 270 100.5 395t338.5 125q239 0 338.5 -124.5t99.5 -395.5q0 -146 -20 -243.5t-69.5 -167.5t-134.5 -101.5t-214 -31.5q-128 0 -213.5 31.5t-135 101.5t-70 168t-20.5 243zM260 524q0 -94 6 -155.5t23 -114t48.5 -81.5t81 -44.5t122.5 -15.5q61 0 105.5 9.5 t75.5 32.5t50.5 53.5t30 80t14.5 103.5t4 132q0 217 -59 302t-221 85q-161 0 -221 -85t-60 -302zM289 1384l53 132l442 -201l-43 -105z" />
<glyph unicode="&#xf3;" horiz-adv-x="1081" d="M102 524q0 -145 20.5 -243t70 -168t135 -101.5t213.5 -31.5q129 0 214 31.5t134.5 101.5t69.5 167.5t20 243.5q0 271 -99.5 395.5t-338.5 124.5q-238 0 -338.5 -125t-100.5 -395zM260 524q0 217 60 302t221 85q162 0 221 -85t59 -302q0 -78 -4 -132t-14.5 -103.5t-30 -80 t-50.5 -53.5t-75.5 -32.5t-105.5 -9.5q-73 0 -122.5 15.5t-81 44.5t-48.5 81.5t-23 114t-6 155.5zM315 1315l443 201l53 -132l-453 -174z" />
<glyph unicode="&#xf4;" horiz-adv-x="1081" d="M102 524q0 -145 20.5 -243t70 -168t135 -101.5t213.5 -31.5q129 0 214 31.5t134.5 101.5t69.5 167.5t20 243.5q0 271 -99.5 395.5t-338.5 124.5q-238 0 -338.5 -125t-100.5 -395zM231 1212l252 287h105l254 -287h-154l-149 179l-154 -179h-154zM260 524q0 217 60 302 t221 85q162 0 221 -85t59 -302q0 -78 -4 -132t-14.5 -103.5t-30 -80t-50.5 -53.5t-75.5 -32.5t-105.5 -9.5q-73 0 -122.5 15.5t-81 44.5t-48.5 81.5t-23 114t-6 155.5z" />
<glyph unicode="&#xf5;" horiz-adv-x="1081" d="M102 524q0 -145 20.5 -243t70 -168t135 -101.5t213.5 -31.5q129 0 214 31.5t134.5 101.5t69.5 167.5t20 243.5q0 271 -99.5 395.5t-338.5 124.5q-238 0 -338.5 -125t-100.5 -395zM215 1366l11.5 11.5t29.5 26t43.5 32.5t49.5 25.5t52 11.5q44 0 150.5 -47.5t134.5 -47.5 q19 0 54.5 19.5t61.5 38.5l25 20l35 -98q-11 -12 -28.5 -29.5t-64.5 -46.5t-83 -29q-43 0 -148.5 48.5t-136.5 48.5q-22 0 -59 -20.5t-64 -41.5l-26 -20zM260 524q0 217 60 302t221 85q162 0 221 -85t59 -302q0 -78 -4 -132t-14.5 -103.5t-30 -80t-50.5 -53.5t-75.5 -32.5 t-105.5 -9.5q-73 0 -122.5 15.5t-81 44.5t-48.5 81.5t-23 114t-6 155.5z" />
<glyph unicode="&#xf6;" horiz-adv-x="1081" d="M102 524q0 -145 20.5 -243t70 -168t135 -101.5t213.5 -31.5q129 0 214 31.5t134.5 101.5t69.5 167.5t20 243.5q0 271 -99.5 395.5t-338.5 124.5q-238 0 -338.5 -125t-100.5 -395zM256 1272v184h147v-184h-147zM260 524q0 217 60 302t221 85q162 0 221 -85t59 -302 q0 -78 -4 -132t-14.5 -103.5t-30 -80t-50.5 -53.5t-75.5 -32.5t-105.5 -9.5q-73 0 -122.5 15.5t-81 44.5t-48.5 81.5t-23 114t-6 155.5zM666 1272v184h149v-184h-149z" />
<glyph unicode="&#xf7;" d="M246 575v150h116v98h422v-98h115v-150h-653zM496 61v207h153v-207h-153z" />
<glyph unicode="&#xf8;" horiz-adv-x="1081" d="M102 524q0 270 100.5 395t338.5 125q79 0 151 -16l88 213l103 -39l-88 -213q97 -54 140.5 -168t43.5 -297q0 -146 -20 -243.5t-69.5 -167.5t-134.5 -101.5t-214 -31.5q-84 0 -156 16l-88 -225l-102 36l90 224q-101 55 -142 173.5t-41 319.5zM260 524q0 -149 17.5 -233 t68.5 -127l297 735q-43 12 -102 12q-161 0 -221 -85t-60 -302zM436 123q36 -10 105 -10q61 0 105.5 9.5t75.5 32.5t50.5 53.5t30 80t14.5 103.5t4 132q0 129 -20 208.5t-66 121.5z" />
<glyph unicode="&#xf9;" horiz-adv-x="1087" d="M137 489v535h154v-532q0 -76 2.5 -126.5t11 -96t23 -71.5t38.5 -46t58 -27.5t82 -7.5q68 0 138 19t106 38l36 19v831h154v-1024h-154v72q-17 -10 -46.5 -25.5t-109.5 -41t-147 -25.5q-87 0 -146.5 17.5t-99 52.5t-61.5 98t-30.5 142.5t-8.5 198.5zM233 1384l54 132 l442 -201l-43 -105z" />
<glyph unicode="&#xfa;" horiz-adv-x="1087" d="M137 489q0 -119 8.5 -198.5t30.5 -142.5t61.5 -98t99 -52.5t146.5 -17.5q67 0 142.5 23t118.5 46l42 23v-72h154v1024h-154v-831q-5 -3 -14.5 -8t-40 -18.5t-61.5 -23.5t-76 -18t-88 -8q-48 0 -82 7.5t-58 27.5t-38.5 46t-23 71.5t-11 96t-2.5 126.5v532h-154v-535z M317 1315l443 201l53 -132l-453 -174z" />
<glyph unicode="&#xfb;" horiz-adv-x="1087" d="M137 489q0 -119 8.5 -198.5t30.5 -142.5t61.5 -98t99 -52.5t146.5 -17.5q67 0 142.5 23t118.5 46l42 23v-72h154v1024h-154v-831q-5 -3 -14.5 -8t-40 -18.5t-61.5 -23.5t-76 -18t-88 -8q-48 0 -82 7.5t-58 27.5t-38.5 46t-23 71.5t-11 96t-2.5 126.5v532h-154v-535z M215 1212l252 287h104l254 -287h-153l-150 179l-153 -179h-154z" />
<glyph unicode="&#xfc;" horiz-adv-x="1087" d="M137 489q0 -119 8.5 -198.5t30.5 -142.5t61.5 -98t99 -52.5t146.5 -17.5q67 0 142.5 23t118.5 46l42 23v-72h154v1024h-154v-831q-5 -3 -14.5 -8t-40 -18.5t-61.5 -23.5t-76 -18t-88 -8q-48 0 -82 7.5t-58 27.5t-38.5 46t-23 71.5t-11 96t-2.5 126.5v532h-154v-535z M270 1272v184h148v-184h-148zM680 1272v184h149v-184h-149z" />
<glyph unicode="&#xfd;" horiz-adv-x="989" d="M51 1024h154l256 -891h67l258 891h154l-426 -1479h-154l134 455h-152zM315 1315l443 201l53 -132l-453 -174z" />
<glyph unicode="&#xfe;" horiz-adv-x="1079" d="M147 -455v1925h154v-497q17 8 46.5 20t109 31.5t143.5 19.5q207 0 291 -117.5t84 -396.5q0 -307 -101.5 -428.5t-365.5 -121.5q-36 0 -87.5 3.5t-85.5 6.5l-34 4v-449h-154zM301 125q133 -12 199 -12q100 0 163 23.5t97 78.5t45.5 126t11.5 185q0 205 -50.5 293 t-180.5 88q-63 0 -134 -14.5t-111 -29.5l-40 -15v-723z" />
<glyph unicode="&#xff;" horiz-adv-x="989" d="M51 1024h154l256 -891h67l258 891h154l-426 -1479h-154l134 455h-152zM213 1272v184h147v-184h-147zM623 1272v184h149v-184h-149z" />
<glyph unicode="&#x152;" horiz-adv-x="1894" d="M117 707q0 193 26 326t87.5 228.5t167 140t261.5 44.5t289 -21h850v-151h-694v-469h571v-152h-571v-501h694v-154h-846q-189 -18 -293 -18q-130 0 -224 30.5t-155 86.5t-97.5 148t-51 201.5t-14.5 260.5zM281 709q0 -126 9.5 -213t34.5 -160t70 -115.5t115 -65t170 -22.5 q105 0 268 14v1127q-216 18 -272 18q-96 0 -164 -22.5t-113 -65t-71 -115.5t-36.5 -163t-10.5 -217z" />
<glyph unicode="&#x153;" horiz-adv-x="1755" d="M102 526q0 270 101.5 394t339.5 124q139 0 226.5 -50.5t133.5 -164.5q50 116 137.5 165.5t210.5 49.5q207 0 309.5 -115.5t102.5 -363.5l-8 -119h-676q0 -167 61 -247t207 -80q68 0 162 4.5t153 8.5l60 5l4 -125q-231 -32 -397 -32q-127 0 -207.5 45t-124.5 141 q-44 -99 -128 -142.5t-226 -43.5q-129 0 -214.5 31.5t-135.5 101.5t-70.5 168.5t-20.5 244.5zM260 526q0 -92 6.5 -153.5t24 -113.5t49.5 -81.5t81.5 -45t121.5 -15.5t122 17t80.5 47t47.5 83t22.5 111.5t5.5 146.5q0 204 -64.5 293.5t-213.5 89.5q-161 0 -222 -83t-61 -296 zM977 571h532q0 182 -60.5 259t-197.5 77q-135 0 -204.5 -81t-69.5 -255z" />
<glyph unicode="&#x178;" horiz-adv-x="1101" d="M20 1417h179l352 -663l352 663h178l-450 -821v-596h-158v596zM266 1655v184h150v-184h-150zM684 1655v184h147v-184h-147z" />
<glyph unicode="&#x2c6;" horiz-adv-x="483" d="M-39 1212l252 287h104l254 -287h-153l-150 179l-153 -179h-154z" />
<glyph unicode="&#x2dc;" horiz-adv-x="483" d="M-61 1366l11.5 11.5t29.5 26t43.5 32.5t49.5 25.5t52 11.5q44 0 150.5 -47.5t134.5 -47.5q19 0 54.5 19.5t61.5 38.5l25 20l35 -98q-11 -12 -28.5 -29.5t-64.5 -46.5t-83 -29q-43 0 -148.5 48.5t-136.5 48.5q-22 0 -59.5 -20.5t-63.5 -41.5l-27 -20z" />
<glyph unicode="&#x2000;" horiz-adv-x="953" />
<glyph unicode="&#x2001;" horiz-adv-x="1907" />
<glyph unicode="&#x2002;" horiz-adv-x="953" />
<glyph unicode="&#x2003;" horiz-adv-x="1907" />
<glyph unicode="&#x2004;" horiz-adv-x="635" />
<glyph unicode="&#x2005;" horiz-adv-x="476" />
<glyph unicode="&#x2006;" horiz-adv-x="317" />
<glyph unicode="&#x2007;" horiz-adv-x="317" />
<glyph unicode="&#x2008;" horiz-adv-x="238" />
<glyph unicode="&#x2009;" horiz-adv-x="381" />
<glyph unicode="&#x200a;" horiz-adv-x="105" />
<glyph unicode="&#x2010;" horiz-adv-x="897" d="M139 492v143h621v-143h-621z" />
<glyph unicode="&#x2011;" horiz-adv-x="897" d="M139 492v143h621v-143h-621z" />
<glyph unicode="&#x2012;" horiz-adv-x="897" d="M139 492v143h621v-143h-621z" />
<glyph unicode="&#x2013;" horiz-adv-x="1292" d="M135 481v135h1024v-135h-1024z" />
<glyph unicode="&#x2014;" horiz-adv-x="2316" d="M135 481v135h2048v-135h-2048z" />
<glyph unicode="&#x2018;" horiz-adv-x="448" d="M104 1001l132 449h120l-90 -449h-162z" />
<glyph unicode="&#x2019;" horiz-adv-x="442" d="M109 1001l90 449h161l-131 -449h-120z" />
<glyph unicode="&#x201a;" horiz-adv-x="446" d="M139 -43l27 88h24l-18 -88h-33z" />
<glyph unicode="&#x201c;" horiz-adv-x="763" d="M104 1001l132 449h120l-90 -449h-162zM418 1001l131 449h121l-90 -449h-162z" />
<glyph unicode="&#x201d;" horiz-adv-x="772" d="M109 1004l90 448h161l-131 -448h-120zM436 1004l90 448h162l-131 -448h-121z" />
<glyph unicode="&#x201e;" horiz-adv-x="735" d="M45 -219l131 448h121l-90 -448h-162zM356 -219l131 448h121l-90 -448h-162z" />
<glyph unicode="&#x2022;" horiz-adv-x="968" d="M227 217v586h512v-586h-512z" />
<glyph unicode="&#x2026;" horiz-adv-x="1484" d="M137 0v233h168v-233h-168zM659 0v233h166v-233h-166zM1180 0v233h168v-233h-168z" />
<glyph unicode="&#x202f;" horiz-adv-x="381" />
<glyph unicode="&#x2039;" horiz-adv-x="616" d="M92 446v123l387 293v-157l-254 -193l254 -215v-160z" />
<glyph unicode="&#x203a;" horiz-adv-x="616" d="M137 145v160l254 215l-254 193v157l387 -292v-123z" />
<glyph unicode="&#x205f;" horiz-adv-x="476" />
<glyph unicode="&#x20ac;" d="M61 455v125h123q-2 29 -2 92q0 69 2 102h-123v125h132q12 121 42 206t86.5 146.5t144.5 91t212 29.5q168 0 373 -43l-7 -127q-193 35 -350 35q-172 0 -248.5 -80t-95.5 -258h586v-125h-594q-2 -33 -2 -102v-92h596v-125h-588q10 -89 31 -150t61.5 -105t103 -64.5 t152.5 -20.5q159 0 348 37l7 -129q-206 -43 -373 -43q-124 0 -212.5 30.5t-145 92.5t-87 147.5t-43.5 204.5h-129z" />
<glyph unicode="&#x2122;" horiz-adv-x="1386" d="M186 1188v102h410v-102h-135v-508h-113v508h-162zM659 678v612h148l135 -426l145 426h144v-612h-107v459l-135 -428h-88l-135 428v-459h-107z" />
<glyph unicode="&#xe000;" horiz-adv-x="1024" d="M0 0v1024h1024v-1024h-1024z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,240 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="TitilliumItalic" horiz-adv-x="1146" >
<font-face units-per-em="2048" ascent="1536" descent="-512" />
<missing-glyph horiz-adv-x="450" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="2048" />
<glyph unicode=" " horiz-adv-x="450" />
<glyph unicode="&#x09;" horiz-adv-x="450" />
<glyph unicode="&#xa0;" horiz-adv-x="450" />
<glyph unicode="!" horiz-adv-x="387" d="M121 0l51 227h156l-52 -227h-155zM229 471l217 963h158l-237 -963h-138z" />
<glyph unicode="&#x22;" horiz-adv-x="641" d="M453 954l106 467h178l-116 -467h-168z" />
<glyph unicode="#" d="M129 369l33 131h225l90 364h-225l33 131h225l94 369h139l-94 -369h318l92 369h139l-92 -369h225l-33 -131h-225l-90 -364h225l-32 -131h-226l-90 -369h-139l90 369h-317l-91 -369h-139l90 369h-225zM526 500h318l90 364h-318z" />
<glyph unicode="$" d="M195 31l24 119q117 -19 236 -31l209 530q-69 25 -114 49t-80.5 58t-52 80.5t-16.5 109.5q0 201 128.5 315.5t344.5 114.5q49 0 74 -2l90 228h111l-96 -240q47 -7 93.5 -17.5t69.5 -16.5l23 -7l-25 -113q-104 17 -210 27l-191 -485q146 -53 203 -115.5t57 -185.5 q0 -218 -131.5 -343.5t-353.5 -125.5q-28 0 -78 4l-90 -230h-109l92 238q-52 6 -104 16t-78 16zM553 958q0 -66 35.5 -101.5t128.5 -72.5l180 459h-29q-148 0 -231.5 -73t-83.5 -212zM561 113h33q154 0 239 84t85 237q0 71 -33 107.5t-125 72.5z" />
<glyph unicode="%" d="M317 12l738 1440l102 -31l-735 -1439zM336 1155q-36 -146 5 -218.5t148 -72.5q104 0 181.5 72.5t113.5 216.5q70 285 -153 285q-108 0 -183.5 -69.5t-111.5 -213.5zM447 1016.5q-13 47.5 12 138.5q24 92 57.5 134t87.5 42q57 0 70 -43.5t-12 -134.5q-24 -95 -58 -139.5 t-90 -44.5q-54 0 -67 47.5zM696 291q70 282 295 282q107 0 149.5 -70t6.5 -214t-113.5 -216.5t-183.5 -72.5t-148 73t-6 218zM806.5 151.5q12.5 -47.5 67.5 -47.5t89.5 45t58.5 140q24 91 11.5 134.5t-68.5 43.5q-54 0 -88 -42.5t-58 -133.5q-25 -92 -12.5 -139.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1300" d="M154 307q0 201 99 324t322 207q-30 56 -42.5 100t-12.5 102q0 188 104 293t283 105q293 0 293 -252q0 -156 -97.5 -262t-305.5 -185l227 -311q32 51 66 128.5t55 148.5h147q-28 -97 -80 -204t-102 -179l190 -242l-106 -94l-180 231q-99 -118 -214.5 -177.5t-258.5 -59.5 q-205 0 -296 82.5t-91 244.5zM313 322q0 -207 250 -207q104 0 203 54.5t168 149.5l-299 418q-178 -68 -250 -166t-72 -249zM678 1036q0 -116 59 -202q168 70 236.5 148t68.5 196q0 129 -141 129q-110 0 -166.5 -75t-56.5 -196z" />
<glyph unicode="'" horiz-adv-x="331" d="M315 954l107 467h145l-116 -467h-136z" />
<glyph unicode="(" horiz-adv-x="464" d="M166 231q0 136 25.5 281t66.5 268.5t90 241.5t98.5 208.5t90.5 159.5t67 106l25 36h145q-18 -28 -48.5 -77.5t-108 -201t-137 -299.5t-108 -349t-48.5 -374q0 -128 7.5 -249.5t14.5 -178.5l8 -57h-145q-5 20 -12 58t-19 164.5t-12 262.5z" />
<glyph unicode=")" horiz-adv-x="464" d="M-12 -242q18 28 48.5 77.5t108 201t137 299.5t108 349t48.5 374q0 128 -7.5 249.5t-14.5 178.5l-8 57h145q5 -20 12 -58t19 -164.5t12 -262.5t-25.5 -281t-66.5 -268.5t-90 -241.5t-98.5 -208.5t-90.5 -159.5t-67 -106l-25 -36h-145z" />
<glyph unicode="*" horiz-adv-x="845" d="M356 938l222 162l-218 157l62 86l219 -159l82 258l102 -33l-84 -260h267v-102h-269l82 -256l-98 -31l-86 258l-219 -162z" />
<glyph unicode="+" d="M231 444v140h387v399h142v-399h391v-140h-391v-403h-142v403h-387z" />
<glyph unicode="," horiz-adv-x="374" d="M-25 -264l201 491h170l-246 -491h-125z" />
<glyph unicode="-" horiz-adv-x="690" d="M201 477l35 141h505l-34 -141h-506z" />
<glyph unicode="." horiz-adv-x="344" d="M94 0l53 227h156l-53 -227h-156z" />
<glyph unicode="/" horiz-adv-x="858" d="M86 31l875 1417l143 -53l-875 -1415z" />
<glyph unicode="0" d="M209 373q0 123 19 245t55 233.5t91 206.5t123 165.5t156.5 110.5t186.5 40q205 0 307 -102t102 -299q0 -154 -28 -300.5t-83 -271.5t-130.5 -219.5t-177 -148t-216.5 -53.5q-200 0 -302.5 100t-102.5 293zM369 391q0 -274 245 -274q90 0 168.5 52.5t134 138.5t95.5 196 t59 225.5t19 226.5q0 281 -252 281q-91 0 -170 -56t-132.5 -145.5t-92 -202.5t-56.5 -226t-18 -216z" />
<glyph unicode="1" d="M473 1077l492 277h135l-309 -1354h-156l266 1163l-387 -213z" />
<glyph unicode="2" d="M137 0l31 129l524 440q96 81 155.5 135.5t115 117t81 117.5t25.5 110q0 102 -62.5 145t-195.5 43q-69 0 -162 -10.5t-151 -21.5l-58 -11l17 121q23 7 62 16.5t141.5 26t183.5 16.5q193 0 289 -72.5t96 -224.5q0 -81 -27 -155t-83 -142.5t-114.5 -123.5t-148.5 -126 l-494 -393h674l-32 -137h-867z" />
<glyph unicode="3" d="M147 49l35 117q221 -49 377 -49q161 0 271 87.5t110 233.5q0 192 -238 195h-264l31 125l266 4q68 1 140.5 37.5t126 106.5t53.5 151q0 94 -56.5 137t-179.5 43q-80 0 -175 -9.5t-150 -19.5l-56 -10l15 115q22 7 60 17t143 27t194 17q187 0 275.5 -69t88.5 -209 q0 -264 -276 -377q81 -38 121.5 -99.5t40.5 -173.5q0 -142 -73 -249t-198 -162t-282 -55q-88 0 -188 17t-156 35z" />
<glyph unicode="4" d="M158 254l28 117l643 981h175l-650 -965h471l103 442h155l-102 -442h164l-33 -133h-162l-59 -258h-156l60 258h-637z" />
<glyph unicode="5" d="M143 51l39 125q229 -57 389 -57q170 0 289 118.5t119 286.5q0 187 -236 187q-64 0 -143 -21.5t-126 -43.5l-48 -21l-123 24l215 703h772l-30 -138h-644l-151 -454q21 10 55.5 24.5t120.5 39t147 24.5q168 0 259.5 -73.5t91.5 -225.5q0 -158 -74 -288.5t-203 -204.5 t-284 -74q-92 0 -200.5 17t-171.5 35z" />
<glyph unicode="6" d="M229 444q0 97 20 201t58.5 208.5t101 198t141 165.5t185.5 114.5t228 42.5q71 0 154.5 -10t130.5 -20l48 -11l-47 -129q-163 33 -323 33q-82 0 -153 -29t-122 -74.5t-94 -110.5t-70.5 -128t-48.5 -135q21 10 57.5 24.5t133.5 39t176 24.5q182 0 271 -86t89 -242 q0 -244 -144 -392t-400 -148q-187 0 -289.5 118.5t-102.5 345.5zM391 440q0 -148 59 -235.5t177 -87.5q182 0 280.5 105t98.5 270q0 113 -59 166t-187 53q-76 0 -163 -20.5t-136 -40.5l-49 -21q-21 -78 -21 -189z" />
<glyph unicode="7" d="M299 20l784 1119l17 73h-658l33 140h815l-55 -234l-793 -1145z" />
<glyph unicode="8" d="M135 270q0 84 28.5 155.5t79 124.5t106 90.5t122.5 66.5q-88 50 -117.5 100t-29.5 129q0 81 34 156.5t100.5 139.5t181 103t261.5 39q205 0 306.5 -72.5t101.5 -199.5q0 -133 -83.5 -239t-236.5 -156q55 -23 92 -52t55.5 -63.5t25.5 -68t7 -74.5q0 -37 -9 -78t-30 -87.5 t-53 -89.5t-81.5 -83t-111.5 -69.5t-147 -47t-184 -17.5q-418 0 -418 293zM305 297q0 -182 283 -182q86 0 158 21.5t119 55t79.5 76t47 84t14.5 78.5q0 88 -44 128.5t-149 72.5h-205q-58 -17 -108.5 -42.5t-96 -65t-72 -97.5t-26.5 -129zM483 948q0 -64 35 -107t123 -77h205 q35 10 71.5 26t77 42.5t72 57t52 73t20.5 88.5q0 94 -65.5 140t-207.5 46q-99 0 -175.5 -25.5t-120 -68t-65.5 -92t-22 -103.5z" />
<glyph unicode="9" d="M160 23l53 137q147 -35 307 -35q177 0 305 115.5t187 343.5q-244 -74 -379 -74q-190 0 -276 97t-56 296q22 128 95.5 233.5t198.5 171.5t279 66q216 0 296 -164.5t28 -468.5q-29 -198 -95.5 -346.5t-162 -238t-210 -133t-247.5 -43.5q-68 0 -148.5 10.5t-127.5 21.5z M459 911q-26 -135 30.5 -197.5t192.5 -62.5q59 0 151 16.5t154 32.5l62 17q33 156 27 270t-66 178t-170 64q-142 0 -249.5 -86t-131.5 -232z" />
<glyph unicode=":" horiz-adv-x="350" d="M96 0l54 227h155l-53 -227h-156zM252 676l53 227h156l-53 -227h-156z" />
<glyph unicode=";" horiz-adv-x="411" d="M-4 -264h125l246 491h-170zM291 676l53 227h156l-54 -227h-155z" />
<glyph unicode="&#x3c;" d="M217 446v136l854 415v-159l-694 -322l694 -328v-161z" />
<glyph unicode="=" d="M250 254v141h885v-141h-885zM250 633v141h885v-141h-885z" />
<glyph unicode="&#x3e;" d="M309 27v161l695 328l-695 322v159l854 -415v-136z" />
<glyph unicode="?" horiz-adv-x="847" d="M289 2l51 238h158l-54 -238h-155zM367 1262l12 124q180 52 315 52q157 0 247.5 -64.5t90.5 -204.5q0 -62 -11.5 -110t-32 -88.5t-65 -87t-93 -87.5t-134.5 -108q-140 -109 -159 -207l-17 -80h-145q2 68 14 127q22 126 207 267q86 68 130 106.5t80.5 82.5t49 83.5 t12.5 91.5q0 76 -52.5 107.5t-153.5 31.5q-55 0 -128.5 -9t-119.5 -18z" />
<glyph unicode="@" horiz-adv-x="1910" d="M182 156.5q-9 96.5 0 191.5t33 195q61 257 154.5 434.5t229 289t308.5 161t402 49.5q195 0 335.5 -46t219.5 -124t115 -190.5t32 -237t-39 -271.5q-38 -156 -79 -266.5t-84 -181t-95.5 -110.5t-106 -55t-124.5 -15q-177 0 -201 114q-80 -40 -193.5 -77t-197.5 -37 q-68 0 -118 20t-77 57.5t-42.5 81.5t-16.5 100t3 103t13 100q111 602 521 602q111 0 399 -51q-37 -146 -100 -430.5t-66 -351.5q-1 -52 25 -69t84 -17q50 0 88 19.5t77.5 72t76 154.5t73.5 258q21 89 30 163.5t5.5 149t-25 133t-64.5 109.5t-109 85t-163.5 53t-222.5 19 q-383 0 -598.5 -188t-318.5 -610q-33 -138 -38.5 -254t24 -223t97.5 -180.5t192.5 -117.5t299.5 -44q34 0 103.5 4.5t122.5 9.5l53 4l-27 -135q-197 -19 -289 -19q-147 0 -265 29.5t-198.5 80.5t-136.5 124t-84 155.5t-37 179zM790.5 320.5q-2.5 -54.5 8.5 -101.5t43.5 -74 t85.5 -28q135 0 327 106q4 49 50.5 262.5t91.5 397.5q-124 28 -230 28q-75 0 -133.5 -32.5t-101 -97t-72 -146.5t-53.5 -195q-14 -65 -16.5 -119.5z" />
<glyph unicode="A" horiz-adv-x="1134" d="M49 0l707 1417h305l29 -1417h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61z" />
<glyph unicode="B" horiz-adv-x="1181" d="M160 0l325 1417h457q171 0 255.5 -65.5t84.5 -212.5q0 -149 -73 -252t-191 -154q88 -34 130 -92t42 -152q0 -223 -141.5 -356t-401.5 -133h-487zM348 137h332q163 0 254.5 94t91.5 254q0 94 -62 132t-173 38h-324zM498 791h315q136 0 222.5 93t86.5 232q0 90 -48.5 127 t-158.5 37h-305z" />
<glyph unicode="C" horiz-adv-x="1032" d="M229 385q0 95 13 195t41 203.5t68.5 198.5t99.5 178.5t130.5 145t164.5 97t198 35.5q72 0 157 -12t134 -24l49 -11l-35 -123q-157 30 -313 30q-103 0 -192.5 -56t-152.5 -148t-108.5 -210t-67.5 -243.5t-22 -247.5q0 -138 61 -206t191 -68q73 0 156.5 8.5t130.5 17.5 l47 9l-10 -129q-182 -45 -344 -45q-198 0 -297 102.5t-99 302.5z" />
<glyph unicode="D" horiz-adv-x="1243" d="M160 0l327 1417h455q194 0 293.5 -100.5t99.5 -321.5q0 -110 -18.5 -224t-54 -226t-93.5 -210t-131.5 -173t-174 -118.5t-214.5 -43.5h-489zM350 139h322q97 0 181 57t141 148.5t98 206t60 228t19 216.5q0 150 -61.5 216.5t-198.5 66.5h-301z" />
<glyph unicode="E" horiz-adv-x="1034" d="M160 0l325 1417h791l-33 -139h-633l-112 -487h520l-33 -140h-518l-119 -512h633l-31 -139h-790z" />
<glyph unicode="F" horiz-adv-x="987" d="M160 0l327 1417h773l-33 -139h-617l-127 -559h525l-33 -137h-524l-136 -582h-155z" />
<glyph unicode="G" horiz-adv-x="1171" d="M231 381q0 128 19.5 253t57.5 244t99.5 220t140 177.5t185 119.5t228.5 43q92 0 193.5 -16t157.5 -32l56 -16l-39 -119q-205 43 -389 43q-110 0 -202.5 -59t-154.5 -153.5t-105.5 -216.5t-63 -246t-19.5 -244q0 -260 281 -260q51 0 113 7.5t99 15.5l36 8l106 450h-215 l31 135h373l-164 -700q-20 -6 -56 -15t-140 -24.5t-200 -15.5q-210 0 -319 99.5t-109 301.5z" />
<glyph unicode="H" horiz-adv-x="1277" d="M160 0l327 1417h156l-145 -633h645l145 633h158l-328 -1417h-157l149 647h-645l-150 -647h-155z" />
<glyph unicode="I" horiz-adv-x="475" d="M160 0l327 1417h156l-328 -1417h-155z" />
<glyph unicode="J" horiz-adv-x="542" d="M14 -143l25 139q45 0 74 3t55 14t41.5 27t31 47.5t26 69t24.5 97.5l270 1163h156l-271 -1175q-15 -67 -27.5 -111t-28.5 -87t-32 -68.5t-40 -48.5t-50.5 -35t-65.5 -21t-83 -11.5t-105 -2.5z" />
<glyph unicode="K" horiz-adv-x="1067" d="M160 0l327 1417h156l-151 -655l186 6l502 649h176l-551 -715l225 -702h-166l-200 629l-205 -6l-144 -623h-155z" />
<glyph unicode="L" horiz-adv-x="886" d="M160 0l327 1417h156l-295 -1278h557l-31 -139h-714z" />
<glyph unicode="M" horiz-adv-x="1597" d="M160 0l327 1417h265l90 -1200l655 1200h268l-327 -1417h-156l297 1278h-23l-667 -1227h-164l-94 1227h-21l-295 -1278h-155z" />
<glyph unicode="N" horiz-adv-x="1292" d="M160 0l327 1417h279l213 -1255h39l289 1255h153l-327 -1417h-269l-221 1264h-41l-293 -1264h-149z" />
<glyph unicode="O" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67q136 0 238 82q94 77 161 217t97 289.5t30 296.5 q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288z" />
<glyph unicode="P" horiz-adv-x="1120" d="M160 0l327 1417h447q182 0 266 -82.5t84 -253.5q0 -178 -62.5 -314t-188 -214t-298.5 -78h-309l-111 -475h-155zM459 614h301q118 0 201 64.5t121 167t38 233.5q0 101 -47.5 150t-157.5 49h-305z" />
<glyph unicode="Q" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-41 -35 -94 -61l98 -291l-149 -49l-92 291q-72 -14 -131 -14q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67 q136 0 238 82q94 77 161 217t97 289.5t30 296.5q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288z" />
<glyph unicode="R" horiz-adv-x="1155" d="M160 0l327 1417h433q187 0 277.5 -79.5t90.5 -262.5q0 -116 -33 -211t-88 -156.5t-116 -100t-127 -56.5l155 -551h-157l-146 530h-336l-125 -530h-155zM471 668h301q159 0 255.5 113t96.5 290q0 114 -51.5 161.5t-169.5 47.5h-291z" />
<glyph unicode="S" horiz-adv-x="1021" d="M115 33l26 123q237 -37 391 -37q162 0 251 87.5t89 248.5q0 85 -45 124.5t-186 88.5q-66 23 -110 42.5t-85 46.5t-64 58.5t-36.5 74.5t-13.5 99q0 210 134 329.5t361 119.5q84 0 179 -14.5t148 -29.5l54 -14l-26 -116q-218 36 -361 36q-155 0 -242 -77t-87 -222 q0 -29 5 -50.5t20 -40.5t30 -31.5t49.5 -28.5t63.5 -27.5t85 -31.5q163 -58 226 -123.5t63 -198.5q0 -228 -138 -358.5t-370 -130.5q-87 0 -189.5 13t-162.5 27z" />
<glyph unicode="T" horiz-adv-x="960" d="M315 1278l33 139h916l-33 -139h-381l-295 -1278h-156l295 1278h-379z" />
<glyph unicode="U" horiz-adv-x="1216" d="M231 274q0 97 23 187l221 956h158l-225 -973q-21 -86 -21 -149q0 -93 67.5 -134.5t194.5 -41.5q161 0 242.5 75.5t118.5 237.5l227 985h158l-228 -985q-54 -233 -178 -342.5t-352 -109.5q-191 0 -298.5 73t-107.5 221z" />
<glyph unicode="V" horiz-adv-x="1116" d="M371 1417h157l7 -1278h92l604 1278h158l-676 -1417h-324z" />
<glyph unicode="W" horiz-adv-x="1697" d="M328 0l55 1417h156l-64 -1272h53l551 1252h172l-39 -1252h54l536 1272h158l-610 -1417h-273l39 1167l-508 -1167h-280z" />
<glyph unicode="X" horiz-adv-x="1050" d="M25 0l573 711l-227 706h164l184 -590l459 590h172l-566 -715l230 -702h-162l-188 588l-465 -588h-174z" />
<glyph unicode="Y" horiz-adv-x="1009" d="M348 1417h160l166 -661l469 661h170l-600 -811l-142 -606h-149l143 618z" />
<glyph unicode="Z" horiz-adv-x="1013" d="M78 0l45 203l917 1020l13 55h-676l33 139h852l-50 -209l-917 -1020l-12 -49h680l-33 -139h-852z" />
<glyph unicode="[" horiz-adv-x="565" d="M51 -250l416 1780h399l-30 -133h-244l-354 -1514h243l-35 -133h-395z" />
<glyph unicode="\" horiz-adv-x="872" d="M385 1419l162 17l268 -1420l-160 -16z" />
<glyph unicode="]" horiz-adv-x="565" d="M-4 -248l31 133h243l355 1514h-244l35 133h395l-416 -1780h-399z" />
<glyph unicode="^" d="M238 653l380 699h138l391 -699h-164l-295 547l-287 -547h-163z" />
<glyph unicode="_" horiz-adv-x="1181" d="M61 -311l33 149h918l-35 -149h-916z" />
<glyph unicode="`" horiz-adv-x="1060" d="M573 1397l74 121l379 -191l-68 -106z" />
<glyph unicode="a" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5z" />
<glyph unicode="b" horiz-adv-x="1021" d="M141 31l332 1439h152l-133 -581q6 6 17 16.5t46 37.5t70 47t84 37t94 17q80 0 135 -23.5t84 -68t41 -97.5t12 -124q0 -74 -13.5 -155t-39.5 -166t-69.5 -161.5t-99 -137t-133 -96t-165.5 -35.5q-75 0 -178.5 12.5t-169.5 25.5zM317 139q144 -26 234 -26q79 0 144.5 49 t105.5 121t67.5 158.5t38.5 157.5t11 122q0 45 -5.5 75.5t-21.5 58.5t-49 42t-84 14q-37 0 -81.5 -18t-81.5 -44t-69 -52t-50 -44l-19 -18z" />
<glyph unicode="c" horiz-adv-x="829" d="M188 291q0 151 33.5 284t98 239t169.5 168t238 62q52 0 116 -9.5t102 -18.5l38 -10l-39 -119q-133 24 -221 24q-94 0 -168 -51.5t-118.5 -137.5t-67.5 -189t-23 -214q0 -103 49.5 -154.5t161.5 -51.5q36 0 93 7.5t96 15.5l40 7l-10 -120q-141 -43 -270 -43 q-156 0 -237 80.5t-81 230.5z" />
<glyph unicode="d" horiz-adv-x="1024" d="M182 279q0 87 15.5 177t44 175t73.5 160t100 131.5t127 89t152 32.5q53 0 121 -9t110 -18l42 -9l108 462h154l-342 -1470h-148l39 182q-6 -8 -18 -21.5t-48.5 -48.5t-74 -61.5t-92 -48.5t-105.5 -22q-258 0 -258 299zM340 281q0 -168 147 -168q38 0 86.5 25t89.5 60.5 t77 70.5t56 60l21 25l123 527q-135 30 -246 30q-67 0 -125.5 -41t-99.5 -107.5t-70.5 -150t-44 -168.5t-14.5 -163z" />
<glyph unicode="e" horiz-adv-x="946" d="M186 291q0 108 20 213.5t64 203.5t107 172.5t156 119t204 44.5q144 0 223.5 -60.5t79.5 -188.5q0 -183 -137 -255.5t-436 -72.5h-105q-22 -80 -22 -166q0 -90 53.5 -138t143.5 -48q68 0 152 11.5t135 22.5l50 11l-12 -121q-20 -7 -55.5 -16.5t-132 -26t-178.5 -16.5 q-150 0 -230 78t-80 233zM383 588h113q209 0 301 44.5t92 160.5q0 65 -40 93.5t-118 28.5q-253 0 -348 -327z" />
<glyph unicode="f" horiz-adv-x="632" d="M68 -455l311 1344h-117l33 135h113l22 88q48 208 125 293.5t223 85.5q35 0 78 -7.5t68 -14.5l26 -7l-28 -119q-82 15 -148 15q-77 0 -117 -57t-75 -191l-21 -86h275l-33 -133h-271l-206 -891l-125 -455h-133z" />
<glyph unicode="g" horiz-adv-x="958" d="M37 -213q0 55 24 104.5t67.5 88.5t84.5 66t94 54q-33 33 -33 88q0 25 11.5 55t28 54.5t33.5 45t29 32.5l11 12q-141 66 -141 246q0 75 27.5 147.5t78 131.5t130.5 95.5t175 36.5q47 0 96.5 -8t74.5 -16l26 -8l303 12l-31 -131h-182q35 -60 35 -141q0 -56 -17 -112 t-53 -108.5t-86 -93.5t-121.5 -65.5t-154.5 -24.5l-68 6q-63 -82 -63 -135q0 -34 39.5 -49t150.5 -29q162 -21 235.5 -75t73.5 -168q0 -158 -140 -268.5t-372 -110.5q-171 0 -268.5 70t-97.5 198zM182 -180q0 -76 58 -123t170 -47q94 0 174 26.5t131 81t51 127.5 q0 62 -45 88.5t-156 40.5q-120 13 -178 33q-81 -42 -143 -103t-62 -124zM391 639q0 -164 170 -164q67 0 121.5 27t86 68.5t48.5 86.5t17 86q0 87 -43.5 129.5t-141.5 42.5q-79 0 -140 -44.5t-89.5 -106t-28.5 -125.5z" />
<glyph unicode="h" horiz-adv-x="1021" d="M135 0l340 1470h154l-146 -626q6 8 18 21.5t48.5 48t73.5 61t90 48t102 21.5q120 0 181 -69.5t61 -188.5q0 -88 -43 -270l-119 -516h-152l119 510q37 174 37 246q0 153 -137 153q-38 0 -84.5 -24t-86 -57.5t-74 -67.5t-53.5 -58l-20 -24l-155 -678h-154z" />
<glyph unicode="i" horiz-adv-x="421" d="M135 0l236 1024h153l-237 -1024h-152zM418 1237l45 184h153l-43 -184h-155z" />
<glyph unicode="j" horiz-adv-x="421" d="M-178 -358q68 35 105 55.5t73 47t52 45t33.5 53t26.5 67t23 90.5l236 1024h153l-237 -1024q-19 -84 -32 -131t-37 -95.5t-45.5 -73.5t-69 -58.5t-96 -58t-136.5 -64.5zM420 1233l43 184h153l-41 -184h-155z" />
<glyph unicode="k" horiz-adv-x="911" d="M135 0l340 1470h154l-199 -856l131 7l371 403h178l-434 -475l194 -549h-161l-172 489l-138 -4l-110 -485h-154z" />
<glyph unicode="l" horiz-adv-x="440" d="M143 0l340 1470h152l-338 -1470h-154z" />
<glyph unicode="m" horiz-adv-x="1587" d="M135 0l236 1024h149l-37 -178q6 8 17.5 21.5t48 47.5t73.5 60t91 47.5t104 21.5q41 0 76 -10t57 -26t39.5 -35.5t26.5 -39t15 -35.5t7 -26l2 -10l19.5 19.5t51 44t77 55.5t92.5 43.5t102 19.5q118 0 179 -69.5t61 -188.5q0 -80 -41 -270l-119 -516h-153l118 510 q39 161 39 244q0 74 -34 114.5t-101 40.5q-36 0 -78 -19t-77 -46t-65 -54t-47 -46l-17 -19q-6 -96 -35 -209l-119 -516h-154l119 510q39 161 39 246q0 73 -35 113t-104 40q-38 0 -84 -23.5t-85 -57.5t-73 -67.5t-53 -56.5l-19 -24l-157 -680h-152z" />
<glyph unicode="n" horiz-adv-x="1019" d="M135 0l236 1024h149l-37 -178q6 8 17.5 21.5t48 47.5t73.5 60t89.5 47.5t101.5 21.5q120 0 181 -69.5t61 -188.5q0 -97 -41 -266l-121 -520h-152l119 510q39 161 39 246q0 153 -139 153q-38 0 -85 -23.5t-86 -57.5t-72.5 -67.5t-52.5 -56.5l-20 -24l-157 -680h-152z" />
<glyph unicode="o" horiz-adv-x="1011" d="M186 315q0 191 64 357t183.5 269t268.5 103q174 0 264.5 -86.5t90.5 -261.5q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-174 0 -262.5 81t-88.5 254zM340 313q0 -97 49.5 -148.5t147.5 -51.5q109 0 194 82.5t128.5 215t43.5 287.5 q0 99 -50.5 156t-150.5 57q-106 0 -190 -86t-128 -221.5t-44 -290.5z" />
<glyph unicode="p" horiz-adv-x="1021" d="M31 -455l340 1479h149l-39 -182q7 8 18.5 21.5t48.5 48.5t74 61.5t89 48.5t100 22q135 0 200.5 -78t65.5 -223q0 -85 -15 -173.5t-43.5 -173.5t-73 -160.5t-100 -132.5t-128 -90t-152.5 -33q-55 0 -123.5 9.5t-109.5 18.5l-41 10l-109 -473h-151zM319 143 q133 -30 246 -30q83 0 153 63t112.5 159t66 202t23.5 200q0 174 -152 174q-37 0 -84 -25t-88 -60.5t-76.5 -70.5t-56.5 -60l-21 -25z" />
<glyph unicode="q" horiz-adv-x="1019" d="M180 281q0 103 21.5 209t65 205.5t103 177t143.5 124.5t179 47q68 0 174 -13t178 -25l72 -13l-332 -1435h-151l143 624q-6 -8 -17.5 -21.5t-47.5 -48.5t-73.5 -61.5t-90.5 -48.5t-103 -22q-130 0 -197 79t-67 222zM338 287q0 -174 154 -174q37 0 84 24.5t87.5 59.5 t76 70.5t56.5 60.5l21 24l121 529q-131 30 -246 30q-80 0 -149 -61t-112.5 -155t-68 -201.5t-24.5 -206.5z" />
<glyph unicode="r" horiz-adv-x="647" d="M135 0l238 1024h151l-37 -152q21 15 58 39t135 72t178 64l-41 -158q-58 -15 -147.5 -53.5t-149.5 -69.5l-61 -31l-170 -735h-154z" />
<glyph unicode="s" horiz-adv-x="878" d="M104 27l29 118q188 -32 313 -32q122 0 196.5 53.5t74.5 155.5q0 25 -8 42.5t-19.5 29.5t-39.5 22.5t-53.5 17.5t-74.5 19q-144 36 -207 81.5t-63 141.5q0 164 114.5 266t288.5 102q73 0 157.5 -10.5t132.5 -21.5l48 -11l-30 -118q-195 28 -326 28q-104 0 -167.5 -57.5 t-63.5 -140.5q0 -50 36.5 -74.5t151.5 -54.5q62 -15 100 -27t76.5 -30.5t58.5 -41t32.5 -56t12.5 -77.5q0 -181 -125 -276.5t-321 -95.5q-70 0 -151 12t-127 24z" />
<glyph unicode="t" horiz-adv-x="651" d="M231 174q0 75 33 211l119 506h-135l35 133h133l71 303h154l-74 -303h287l-33 -133h-286l-119 -514q-25 -102 -25 -170q0 -94 103 -94q24 0 63 3t67 6l27 3l-10 -117q-107 -28 -199 -28q-101 0 -156 51.5t-55 142.5z" />
<glyph unicode="u" horiz-adv-x="1019" d="M201 238q0 97 41 266l120 520h152l-119 -510q-39 -161 -39 -246q0 -73 35.5 -113t104.5 -40q38 0 84.5 23.5t86 57.5t73 67.5t52.5 56.5l19 24l158 680h151l-235 -1024h-150l37 178q-6 -8 -17.5 -21.5t-48 -47.5t-73.5 -60t-89.5 -47.5t-101.5 -21.5q-118 0 -179.5 69.5 t-61.5 188.5z" />
<glyph unicode="v" horiz-adv-x="929" d="M285 1024h151l17 -893h63l445 893h157l-520 -1024h-287z" />
<glyph unicode="w" horiz-adv-x="1497" d="M281 0l14 1024h154l-19 -891h39l420 871h180l8 -871h39l402 891h155l-465 -1024h-272l-6 805l-383 -805h-266z" />
<glyph unicode="x" horiz-adv-x="858" d="M39 0l422 512l-180 512h157l137 -403l320 403h164l-428 -524l182 -500h-160l-133 395l-315 -395h-166z" />
<glyph unicode="y" horiz-adv-x="929" d="M215 -453l236 453h-140l-26 1024h151l17 -893h61l447 893h157l-747 -1477h-156z" />
<glyph unicode="z" horiz-adv-x="856" d="M78 0l24 131l697 760h-516l32 133h699l-29 -131l-698 -760h522l-31 -133h-700z" />
<glyph unicode="{" horiz-adv-x="641" d="M170 584l29 121q69 18 113 38.5t70.5 50.5t39.5 62t24 84q5 25 18 92.5t24 121t18 73.5q51 163 150.5 235.5t285.5 79.5l-24 -139q-130 -7 -193.5 -64.5t-89.5 -171.5q-3 -14 -13 -70.5t-19 -107t-13 -67.5q-29 -127 -83 -187t-165 -96q63 -29 96 -71t33 -113 q0 -38 -49 -208.5t-49 -226.5q0 -141 182 -141l-39 -139q-145 3 -220 62t-75 173q0 63 48 235.5t48 207.5q0 62 -34.5 100t-112.5 66z" />
<glyph unicode="|" horiz-adv-x="638" d="M360 -455v1925h152v-1925h-152z" />
<glyph unicode="}" horiz-adv-x="638" d="M-8 -266l24 139q130 7 193.5 64.5t89.5 171.5q3 14 13 70.5t19 107t13 67.5q29 127 83 187t165 96q-63 29 -96 71t-33 113q0 38 49 208t49 226q0 142 -182 142l39 139q145 -3 220 -62.5t75 -173.5q0 -63 -48.5 -235t-48.5 -207q0 -62 35 -100t113 -66l-29 -121 q-69 -18 -113 -38.5t-71 -50.5t-40 -62t-24 -84q-6 -26 -18 -93t-23 -120.5t-18 -73.5q-51 -163 -150.5 -235.5t-285.5 -79.5z" />
<glyph unicode="~" d="M260 557q5 4 14.5 11.5t37 26.5t55 33t64 26t67.5 12q60 0 212 -62.5t195 -62.5q35 0 87 23.5t87 47.5l35 23l21 -125q-5 -5 -13.5 -12t-35 -26.5t-52.5 -34t-62 -26.5t-67 -12q-49 0 -133 31.5t-162.5 63.5t-113.5 32q-37 0 -91 -24t-89 -48l-35 -24z" />
<glyph unicode="&#xa1;" horiz-adv-x="364" d="M8 -410l238 963h137l-217 -963h-158zM285 797l51 227h156l-52 -227h-155z" />
<glyph unicode="&#xa2;" d="M320 382q5 59 22 126q55 212 169.5 323t276.5 117l58 244h129l-60 -246l189 -20l-41 -135q-166 14 -240 14q-255 0 -329 -297q-17 -70 -19.5 -117t14 -89t65.5 -62.5t132 -20.5q37 0 100.5 3t108.5 6l45 3l-29 -133q-116 -14 -198 -16l-58 -246h-129l56 238 q-78 2 -133 27.5t-83.5 66.5t-39.5 98t-6 116z" />
<glyph unicode="&#xa3;" d="M164 0l31 133h196l133 594h-153l32 135h154l25 105q21 89 41 149.5t50.5 116.5t69.5 88t95.5 51t130.5 19q48 0 116.5 -8.5t112.5 -17.5l45 -9l-33 -119q-143 16 -243 16q-33 0 -60.5 -8.5t-47 -19.5t-37 -35.5t-28 -43.5t-23 -58t-19 -63.5t-19.5 -74.5l-20 -88h397 l-31 -135h-397l-135 -594h282l156 35l-2 -131l-160 -37h-659z" />
<glyph unicode="&#xa4;" d="M238 170l143 143q-60 92 -60 203t60 203l-143 143l106 109l143 -146q94 60 205 60t203 -60l143 146l109 -109l-146 -145q60 -92 60 -202t-60 -202l146 -143l-109 -109l-143 146q-92 -61 -203 -61t-205 61l-143 -146zM466 516q0 -94 66 -160q64 -64 159 -64t161 64 q64 66 64 160t-64 160q-66 64 -161 64t-159 -64q-66 -66 -66 -160z" />
<glyph unicode="&#xa5;" d="M217 328l33 137h354l33 137l-8 33h-340l33 137h256l-234 582h168l231 -572l474 572h202l-489 -582h250l-31 -137h-328l-28 -35l-31 -135h348l-33 -137h-348l-76 -328h-155l75 328h-356z" />
<glyph unicode="&#xa6;" horiz-adv-x="651" d="M367 319h151v-774h-151v774zM367 705v765h151v-765h-151z" />
<glyph unicode="&#xa7;" horiz-adv-x="962" d="M68 -270l45 135q207 -29 311 -29q127 0 205 75.5t78 162.5q0 62 -42 86.5t-190 56.5q-145 28 -204.5 85t-59.5 149q0 59 23 118.5t56 102.5t58.5 69t40.5 37q-41 48 -41 156q0 70 29.5 138.5t85 127t146.5 95t202 36.5q56 0 133 -8.5t126 -17.5l48 -9l-37 -135 q-203 29 -295 29q-136 0 -209 -63t-73 -169q0 -31 11.5 -54t26.5 -36.5t50.5 -25.5t60.5 -17.5t80 -15.5q256 -49 256 -229q0 -50 -20 -106.5t-51.5 -105t-52 -76t-38.5 -48.5q23 -29 29 -55t6 -66q0 -39 -10.5 -87.5t-42 -110t-80.5 -111t-135 -83.5t-195 -34 q-56 0 -138.5 8.5t-137.5 16.5zM369 496q0 -57 38.5 -87t139.5 -49q129 -28 178 -55q18 15 62 98.5t44 141.5q0 50 -42.5 80.5t-143.5 48.5q-137 27 -164 47q-112 -140 -112 -225z" />
<glyph unicode="&#xa8;" horiz-adv-x="1392" d="M496 1270l43 190h127l-45 -190h-125zM870 1270l41 190h127l-45 -190h-123z" />
<glyph unicode="&#xa9;" horiz-adv-x="1318" d="M326 889q0 156 69 284t192.5 201.5t276.5 73.5q156 0 280.5 -75.5t192.5 -203t68 -280.5q0 -156 -68 -283t-192.5 -201.5t-282.5 -74.5q-152 0 -275 74.5t-192 202.5t-69 282zM416 889q0 -196 127.5 -332.5t318.5 -136.5q128 0 232.5 63t162.5 170t58 236 q0 128 -58.5 236t-162.5 171.5t-230 63.5q-191 0 -319.5 -137.5t-128.5 -333.5zM633 891q0 167 53 243t188 76q38 0 77 -5t59 -10l20 -5l-6 -109q-79 13 -145 13q-75 0 -99 -46.5t-24 -156.5q0 -108 26.5 -158.5t96.5 -50.5q27 0 63.5 3.5t59.5 6.5l22 4l6 -106 q-76 -25 -160 -25q-132 0 -184.5 77t-52.5 249z" />
<glyph unicode="&#xaa;" horiz-adv-x="704" d="M283 920q22 86 76.5 128t158.5 48l178 12l13 45q10 45 -8 63.5t-70 18.5q-35 0 -94.5 -3.5t-101.5 -7.5l-42 -3l17 98q152 31 254 31q116 0 160.5 -45t19.5 -158l-66 -283q12 -26 51 -33l-26 -100q-79 0 -109 12t-49 41q-124 -53 -233 -53q-79 0 -114 51.5t-15 137.5z M418 922q-17 -80 55 -80q32 0 74.5 8.5t68.5 17.5l27 9l33 137l-154 -10q-46 -3 -70.5 -22t-33.5 -60z" />
<glyph unicode="&#xab;" horiz-adv-x="913" d="M164 469l29 78l436 291l-45 -158l-269 -178l181 -197l-41 -141zM553 469l29 78l436 291l-45 -158l-268 -178l180 -197l-41 -141z" />
<glyph unicode="&#xac;" d="M252 561v139h876v-460h-143v321h-733z" />
<glyph unicode="&#xad;" horiz-adv-x="690" d="M201 477l35 141h505l-34 -141h-506z" />
<glyph unicode="&#xae;" horiz-adv-x="1318" d="M326 889q0 156 69 284t192.5 201.5t276.5 73.5q156 0 280.5 -75.5t192.5 -203t68 -280.5q0 -156 -68 -283t-192.5 -201.5t-280.5 -74.5q-152 0 -276 74.5t-193 202.5t-69 282zM416 889q0 -195 129 -332t319 -137q193 0 322 136t129 333q0 128 -58.5 236t-162.5 171.5 t-230 63.5q-191 0 -319.5 -137.5t-128.5 -333.5zM641 578v620h225q114 0 173 -45t59 -149q0 -77 -23 -121t-80 -70l113 -235h-127l-100 219h-123v-219h-117zM758 893h121q54 0 79 24.5t25 79.5t-31 80t-96 25h-98v-209z" />
<glyph unicode="&#xaf;" horiz-adv-x="899" d="M469 1309l29 121h563l-31 -121h-561z" />
<glyph unicode="&#xb0;" d="M547 1149q0 129 80.5 209t210.5 80q129 0 208.5 -80t79.5 -209q0 -130 -79.5 -209.5t-208.5 -79.5q-131 0 -211 79.5t-80 209.5zM649 1149q0 -86 51.5 -138.5t137.5 -52.5q85 0 137.5 52.5t52.5 138.5q0 85 -52.5 137.5t-137.5 52.5q-86 0 -137.5 -52.5t-51.5 -137.5z " />
<glyph unicode="&#xb1;" d="M211 78v139h919v-139h-919zM211 600v139h385v258h143v-258h391v-139h-391v-260h-143v260h-385z" />
<glyph unicode="&#xb2;" horiz-adv-x="573" d="M289 979l28 115l226 176q65 51 99.5 89t45.5 81q10 38 -12.5 55.5t-69.5 17.5q-26 0 -70.5 -5t-75.5 -10l-32 -5l25 121q129 24 217 24q106 0 144 -45.5t13 -140.5q-18 -67 -61.5 -119.5t-122.5 -111.5l-156 -123h261l-29 -119h-430z" />
<glyph unicode="&#xb3;" horiz-adv-x="573" d="M283 979l36 115q115 -15 203 -15q101 0 121 84q23 86 -72 86h-135l27 111h133q29 0 60.5 26.5t41.5 63.5q8 36 -9.5 52t-67.5 16q-38 0 -86 -4t-77 -8l-28 -3l21 115q127 20 215 20q110 0 153 -41.5t21 -130.5q-24 -94 -118 -151q-2 -1 -3 -2q31 -11 46 -25.5t22 -47 t-9 -83.5q-26 -99 -95.5 -149t-174.5 -50q-44 0 -100.5 5t-90.5 11z" />
<glyph unicode="&#xb4;" horiz-adv-x="1118" d="M557 1339l467 193l14 -135l-467 -176z" />
<glyph unicode="&#xb5;" d="M88 -455l236 1024l106 455h152l-107 -455h2l-37 -159q-16 -78 -16 -142q0 -73 35 -113t104 -40q38 0 85 23.5t86 57.5t72.5 67.5t53.5 56.5l19 24l157 680h152l-236 -1024h-149l37 178q-6 -8 -17.5 -21.5t-48 -47.5t-73.5 -60t-89.5 -47.5t-101.5 -21.5q-96 0 -158 49 l-112 -484h-152z" />
<glyph unicode="&#xb6;" horiz-adv-x="1140" d="M297 969q0 82 34.5 165t93.5 149.5t146 108.5t185 42h635l-29 -131h-141l-310 -1303h-129l310 1303h-224l-311 -1303h-131l166 680q-78 1 -136.5 24.5t-92 64.5t-50 91t-16.5 109z" />
<glyph unicode="&#xb7;" horiz-adv-x="348" d="M211 502l53 239h158l-53 -239h-158z" />
<glyph unicode="&#xb8;" horiz-adv-x="1619" d="M639 -418l27 105q76 -6 127 -6q85 0 104 73q10 39 -10 53.5t-60 14.5h-79l43 188h81l-26 -102h10q94 0 141 -37t27 -125q-39 -178 -221 -178q-38 0 -79 3.5t-63 6.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="573" d="M414 1475l243 143h123l-157 -639h-131l122 496l-163 -97z" />
<glyph unicode="&#xba;" horiz-adv-x="698" d="M299 934q0 47 16 113q39 162 120.5 232.5t221.5 70.5q91 0 150 -38t65 -116q9 -67 -12 -158q-37 -164 -120 -237.5t-228 -73.5q-105 0 -160.5 54t-52.5 153zM436 948q0 -51 25 -74.5t80 -23.5q73 0 115 43.5t69 150.5q12 52 12 93q0 50 -24.5 71t-79.5 21 q-73 0 -114.5 -40t-65.5 -140q-17 -66 -17 -101z" />
<glyph unicode="&#xbb;" horiz-adv-x="983" d="M129 164l45 158l268 178l-180 196l41 142l291 -306l-29 -77zM586 164l45 158l268 178l-180 196l41 142l291 -306l-29 -77z" />
<glyph unicode="&#xbc;" horiz-adv-x="1216" d="M221 31l875 1417l143 -53l-874 -1415zM365 1475l243 143h123l-158 -639h-131l123 496l-164 -97zM725 98l27 113l249 428h148l-254 -420h149l58 180h119l-47 -180h55l-29 -121h-55l-25 -98h-129l23 98h-289z" />
<glyph unicode="&#xbd;" horiz-adv-x="1263" d="M221 31l875 1417l143 -53l-874 -1415zM365 1475l243 143h123l-158 -639h-131l123 496l-164 -97zM778 0l29 115l225 176q66 51 100.5 89.5t45.5 80.5q10 38 -12.5 56t-69.5 18q-26 0 -70.5 -5.5t-75.5 -10.5l-32 -5l24 121q129 24 217 24q106 0 144.5 -45.5t13.5 -140.5 q-18 -67 -61.5 -119.5t-122.5 -111.5l-156 -123h260l-29 -119h-430z" />
<glyph unicode="&#xbe;" horiz-adv-x="1247" d="M254 31l874 1417l144 -53l-875 -1415zM274 979l37 115q115 -15 203 -15q101 0 121 84q23 86 -72 86h-135l27 111h133q29 0 60.5 26.5t41.5 63.5q8 36 -10 52t-68 16q-38 0 -85.5 -4t-76.5 -8l-28 -3l20 115q127 20 215 20q110 0 153 -41.5t21 -130.5q-24 -94 -117 -151 l-1.5 -1.5t-1.5 -0.5q31 -11 46 -25.5t22 -47t-9 -83.5q-26 -99 -95.5 -149t-174.5 -50q-44 0 -100.5 5t-91.5 11zM760 98l26 113l250 428h148l-254 -420h149l58 180h118l-47 -180h56l-29 -121h-55l-25 -98h-129l23 98h-289z" />
<glyph unicode="&#xbf;" horiz-adv-x="833" d="M47 -143q0 62 11.5 110t32 88.5t65 87t93 87.5t134.5 108q141 110 160 207l16 80h146q-3 -68 -15 -127q-22 -126 -207 -267q-86 -68 -130 -106.5t-80.5 -82.5t-49 -83.5t-12.5 -91.5q0 -76 53 -107.5t154 -31.5q55 0 128.5 9t119.5 18l47 9l-13 -124q-180 -52 -315 -52 q-157 0 -247.5 64.5t-90.5 204.5zM582 786l53 238h156l-52 -238h-157z" />
<glyph unicode="&#xc0;" horiz-adv-x="1134" d="M49 0l707 1417h305l29 -1417h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61zM668 1774l75 131l379 -193l-69 -115z" />
<glyph unicode="&#xc1;" horiz-adv-x="1134" d="M49 0l707 1417h305l29 -1417h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61zM776 1724l467 193l19 -133l-467 -176z" />
<glyph unicode="&#xc2;" horiz-adv-x="1134" d="M49 0l707 1417h305l29 -1417h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61zM621 1624l335 283h84l197 -283h-141l-111 166l-197 -166h-167z" />
<glyph unicode="&#xc3;" horiz-adv-x="1134" d="M49 0l707 1417h305l29 -1417h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61zM614 1772q15 14 40 34t82.5 54t92.5 34q43 0 102 -28t110.5 -56t74.5 -28q18 0 60 23.5t75 46.5l33 24l6 -109q-14 -13 -37.5 -33t-78.5 -53.5t-89 -33.5q-38 0 -96 28.5 t-111.5 57t-80.5 28.5q-20 0 -64.5 -25t-79.5 -50l-35 -25z" />
<glyph unicode="&#xc4;" horiz-adv-x="1134" d="M49 0l707 1417h305l29 -1417h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61zM698 1667l43 191h127l-47 -191h-123zM1081 1667l45 191h127l-47 -191h-125z" />
<glyph unicode="&#xc5;" horiz-adv-x="1134" d="M49 0l684 1370q-41 53 -16 146q27 101 96.5 152.5t167.5 51.5q96 0 142.5 -51t21.5 -153q-26 -94 -84 -144l29 -1372h-156l-12 362h-531l-182 -362h-160zM457 500h467l-15 778h-61zM819 1516q-9 -41 10.5 -68.5t65.5 -30.5h20q49 1 81.5 27.5t43.5 71.5q10 48 -14 73 t-72 25q-53 0 -88 -25.5t-47 -72.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1597" d="M51 0l707 1425h1085l-31 -147l-649 4l-116 -491h532l-31 -142h-534l-119 -502h645l-31 -147h-796l84 362h-412l-184 -362h-150zM453 506h378l185 772h-180z" />
<glyph unicode="&#xc7;" horiz-adv-x="1032" d="M229 385q0 95 13 195t41 203.5t68.5 198.5t99.5 178.5t130.5 145t164.5 97t198 35.5q72 0 157 -12t134 -24l49 -11l-35 -123q-157 30 -313 30q-103 0 -192.5 -56t-152.5 -148t-108.5 -210t-67.5 -243.5t-22 -247.5q0 -138 61 -206t191 -68q73 0 156.5 8.5t130.5 17.5 l47 9l-10 -129q-182 -45 -344 -45h-11l-18 -72h10q94 0 141 -37t27 -125q-39 -178 -221 -178q-38 0 -79 3.5t-63 6.5l-22 4l27 105q76 -6 127 -6q85 0 104 73q10 39 -9.5 53.5t-59.5 14.5h-80l37 164q-306 43 -306 399z" />
<glyph unicode="&#xc8;" horiz-adv-x="1034" d="M160 0l325 1417h791l-33 -139h-633l-112 -487h520l-33 -140h-518l-119 -512h633l-31 -139h-790zM680 1774l76 131l379 -193l-70 -115z" />
<glyph unicode="&#xc9;" horiz-adv-x="1034" d="M160 0l325 1417h791l-33 -139h-633l-112 -487h520l-33 -140h-518l-119 -512h633l-31 -139h-790zM754 1724l467 193l18 -133l-467 -176z" />
<glyph unicode="&#xca;" horiz-adv-x="1034" d="M160 0l325 1417h791l-33 -139h-633l-112 -487h520l-33 -140h-518l-119 -512h633l-31 -139h-790zM700 1620l336 283h84l197 -283h-141l-111 166l-197 -166h-168z" />
<glyph unicode="&#xcb;" horiz-adv-x="1034" d="M160 0l325 1417h791l-33 -139h-633l-112 -487h520l-33 -140h-518l-119 -512h633l-31 -139h-790zM680 1667l43 191h127l-47 -191h-123zM1063 1667l45 191h127l-47 -191h-125z" />
<glyph unicode="&#xcc;" horiz-adv-x="475" d="M160 0l327 1417h156l-328 -1417h-155zM305 1774l76 131l379 -193l-70 -115z" />
<glyph unicode="&#xcd;" horiz-adv-x="475" d="M160 0l327 1417h156l-328 -1417h-155zM471 1724l467 193l18 -133l-467 -176z" />
<glyph unicode="&#xce;" horiz-adv-x="475" d="M160 0l327 1417h156l-328 -1417h-155zM293 1620l336 283h84l196 -283h-141l-111 166l-196 -166h-168z" />
<glyph unicode="&#xcf;" horiz-adv-x="475" d="M160 0l327 1417h156l-328 -1417h-155zM354 1677l43 191h127l-47 -191h-123zM737 1677l45 191h127l-47 -191h-125z" />
<glyph unicode="&#xd0;" horiz-adv-x="1251" d="M168 0l145 633h-135l31 158h141l146 626h454q194 0 293.5 -100.5t99.5 -321.5q0 -110 -18.5 -224t-54 -226t-93.5 -210t-131.5 -173t-174 -118.5t-214.5 -43.5h-489zM358 139h322q97 0 181 57t141.5 148.5t98.5 206t60 228t19 216.5q0 150 -61.5 216.5t-198.5 66.5h-302 l-112 -487h291l-35 -158h-291z" />
<glyph unicode="&#xd1;" horiz-adv-x="1292" d="M160 0l327 1417h279l213 -1255h39l289 1255h153l-327 -1417h-269l-221 1264h-41l-293 -1264h-149zM694 1767q15 14 40 34.5t82.5 54.5t92.5 34q43 0 102 -28t110.5 -56t74.5 -28q18 0 60 23.5t75 46.5l33 24l6 -109q-5 -5 -14.5 -13t-35.5 -29t-50.5 -37t-54 -29 t-50.5 -13q-38 0 -96 29t-111.5 57.5t-80.5 28.5q-20 0 -64.5 -25t-79.5 -50l-35 -25z" />
<glyph unicode="&#xd2;" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67q136 0 238 82q94 77 161 217t97 289.5t30 296.5 q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288zM770 1774l76 131l379 -193l-70 -115z" />
<glyph unicode="&#xd3;" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67q136 0 238 82q94 77 161 217t97 289.5t30 296.5 q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288zM852 1724l467 193l18 -133l-467 -176z" />
<glyph unicode="&#xd4;" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67q136 0 238 82q94 77 161 217t97 289.5t30 296.5 q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288zM711 1624l336 283h83l197 -283h-141l-111 166l-196 -166h-168z" />
<glyph unicode="&#xd5;" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67q136 0 238 82q94 77 161 217t97 289.5t30 296.5 q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288zM719 1767q15 14 40 34.5t82.5 54.5t92.5 34q43 0 102 -28t110.5 -56t74.5 -28q18 0 60 23.5t75 46.5l33 24l6 -109q-5 -5 -14.5 -13t-35.5 -29t-50.5 -37t-54 -29t-50.5 -13 q-38 0 -96.5 29t-112 57.5t-80.5 28.5q-20 0 -64.5 -25t-78.5 -50l-35 -25z" />
<glyph unicode="&#xd6;" horiz-adv-x="1286" d="M233 403q0 262 85 503.5t241 383.5q161 148 377 148q218 0 329 -103.5t111 -320.5q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-226 0 -330.5 98.5t-104.5 324.5zM395 414q0 -161 65.5 -228t225.5 -67q136 0 238 82q94 77 161 217t97 289.5t30 296.5 q0 154 -68 224t-220 70q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288zM760 1663l43 190h141l-45 -190h-139zM1147 1663l43 190h139l-43 -190h-139z" />
<glyph unicode="&#xd7;" d="M262 184l334 330l-332 328l98 98l328 -332l330 334l98 -98l-332 -330l332 -330l-98 -98l-330 332l-328 -332z" />
<glyph unicode="&#xd8;" horiz-adv-x="1286" d="M141 -182l185 272q-93 100 -93 313q0 262 85 503.5t241 383.5q161 148 377 148q162 0 266 -58l172 252l96 -43l-186 -274q92 -109 92 -301q0 -179 -36 -348t-114 -319.5t-190 -242.5q-152 -124 -368 -124q-162 0 -260 49l-181 -262zM395 414q0 -114 29 -176l332 487 l358 526q-64 47 -190 47q-131 0 -224 -75q-96 -79 -168 -224.5t-104.5 -296.5t-32.5 -288zM496 158q65 -39 190 -39q136 0 238 82q94 77 161 217t97 289.5t30 296.5q0 103 -28 163l-334 -493z" />
<glyph unicode="&#xd9;" horiz-adv-x="1216" d="M231 274q0 97 23 187l221 956h158l-225 -973q-21 -86 -21 -149q0 -93 67.5 -134.5t194.5 -41.5q161 0 242.5 75.5t118.5 237.5l227 985h158l-228 -985q-54 -233 -178 -342.5t-352 -109.5q-191 0 -298.5 73t-107.5 221zM729 1774l76 131l379 -193l-70 -115z" />
<glyph unicode="&#xda;" horiz-adv-x="1216" d="M231 274q0 97 23 187l221 956h158l-225 -973q-21 -86 -21 -149q0 -93 67.5 -134.5t194.5 -41.5q161 0 242.5 75.5t118.5 237.5l227 985h158l-228 -985q-54 -233 -178 -342.5t-352 -109.5q-191 0 -298.5 73t-107.5 221zM772 1724l467 193l18 -133l-466 -176z" />
<glyph unicode="&#xdb;" horiz-adv-x="1216" d="M231 274q0 97 23 187l221 956h158l-225 -973q-21 -86 -21 -149q0 -93 67.5 -134.5t194.5 -41.5q161 0 242.5 75.5t118.5 237.5l227 985h158l-228 -985q-54 -233 -178 -342.5t-352 -109.5q-191 0 -298.5 73t-107.5 221zM659 1624l336 283h84l197 -283h-141l-111 166 l-197 -166h-168z" />
<glyph unicode="&#xdc;" horiz-adv-x="1216" d="M231 274q0 97 23 187l221 956h158l-225 -973q-21 -86 -21 -149q0 -93 67.5 -134.5t194.5 -41.5q161 0 242.5 75.5t118.5 237.5l227 985h158l-228 -985q-54 -233 -178 -342.5t-352 -109.5q-191 0 -298.5 73t-107.5 221zM707 1663l43 190h141l-45 -190h-139zM1094 1663 l41 190h141l-45 -190h-137z" />
<glyph unicode="&#xdd;" horiz-adv-x="1009" d="M348 1417h160l166 -661l469 661h170l-600 -811l-142 -606h-149l143 618zM688 1724l467 193l19 -133l-467 -176z" />
<glyph unicode="&#xde;" horiz-adv-x="1124" d="M156 0l336 1425h151l-55 -227h317q86 0 151.5 -24t104 -66.5t60 -100.5t20 -127t-15.5 -145q-49 -224 -187.5 -357t-347.5 -132h-325l-58 -246h-151zM399 397h326q260 0 346 338q13 51 15.5 95t-7.5 84.5t-34 69t-68.5 45.5t-106.5 18l-317 2z" />
<glyph unicode="&#xdf;" horiz-adv-x="1103" d="M133 0l256 1083q53 226 157 317t296 91q168 0 252 -63.5t84 -182.5q0 -116 -49 -189.5t-148 -121.5q-98 -46 -134 -73.5t-36 -65.5t23.5 -64t103.5 -76q47 -29 71 -45.5t50 -40t37 -46t18.5 -53.5t7.5 -73q0 -193 -118 -305t-330 -112q-52 0 -116.5 9.5t-103.5 18.5 l-38 10l28 121q136 -26 222 -26q143 0 222 73.5t79 194.5q0 58 -29 91.5t-127 92.5q-88 54 -121 97.5t-33 105.5q0 88 45 139.5t162 110.5q87 45 122.5 90.5t35.5 118.5q0 66 -45.5 98.5t-147.5 32.5q-130 0 -197 -66.5t-104 -226.5l-249 -1065h-146z" />
<glyph unicode="&#xe0;" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5zM618 1397l74 121l379 -191l-67 -106z" />
<glyph unicode="&#xe1;" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5zM682 1339l467 193l14 -135l-467 -176z" />
<glyph unicode="&#xe2;" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5zM494 1202l317 309h109l176 -309h-154l-98 176l-182 -176h-168z" />
<glyph unicode="&#xe3;" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5zM563 1382q14 12 37.5 30t77.5 48.5t88 30.5q38 0 91 -24.5t99.5 -49t67.5 -24.5q18 0 56.5 21t67.5 42 l30 21l10 -115q-13 -12 -34.5 -29.5t-73 -46.5t-85.5 -29q-44 0 -139.5 49.5t-122.5 49.5q-21 0 -62 -22t-71 -44l-31 -22z" />
<glyph unicode="&#xe4;" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5zM545 1270l43 190h141l-45 -190h-139zM934 1270l41 190h141l-45 -190h-137z" />
<glyph unicode="&#xe5;" horiz-adv-x="1024" d="M182 285q0 98 20 201.5t62.5 203.5t102 178.5t145.5 127t186 48.5q57 0 162 -13t182 -25l76 -13l-155 -665q-14 -57 -28.5 -138t-22.5 -134l-7 -52l-149 -6q29 176 37 219q-7 -10 -19.5 -26t-51.5 -56.5t-78.5 -72t-94.5 -57t-105 -25.5q-133 0 -197.5 79.5t-64.5 225.5z M340 285q0 -86 34.5 -129t117.5 -43q36 0 83.5 27.5t89.5 67t78.5 79t58.5 67.5l21 27l117 502q-144 28 -240 28q-85 0 -156 -61.5t-114 -157t-66.5 -202t-23.5 -205.5zM690 1358q18 83 83 140.5t155 57.5q76 0 112 -47t27 -127q-9 -100 -77.5 -163.5t-162.5 -63.5 q-89 0 -123 56t-14 147zM782 1358q-9 -38 11.5 -70.5t60.5 -32.5q41 0 74.5 29.5t44.5 71.5q9 38 -11 67t-59 29q-42 0 -76 -27t-45 -67z" />
<glyph unicode="&#xe6;" horiz-adv-x="1533" d="M129 178.5q-7 56.5 8 116.5q14 73 46 127t80.5 88.5t103.5 54t127 31.5q146 22 309 29q9 27 15.5 51.5t12 58t1.5 60t-15 50t-38 37t-68 13.5q-64 0 -156 -5.5t-153 -11.5l-60 -6l25 142q233 30 383 30q89 0 148.5 -39t74.5 -112q125 151 340 151q289 0 295 -276 q0 -104 -29 -211l-31 -113l-624 5q-24 -100 -21 -162q3 -81 45.5 -122.5t138.5 -41.5q62 0 150.5 4.5t146.5 8.5l58 5l-27 -129q-206 -32 -368 -32q-196 0 -265 110q-90 -39 -223.5 -74.5t-218.5 -35.5q-65 0 -112.5 26.5t-69.5 71t-29 101zM284 238q2 -32 10.5 -59 t33 -44.5t61.5 -17.5q129 0 361 78q-7 36 -8 73.5t5.5 79.5t12.5 72.5t18 79.5q-126 -10 -282 -29q-167 -26 -205 -172q-9 -29 -7 -61zM950 573l486 -4q25 98 22 176q-3 83 -47.5 121.5t-132.5 38.5q-127 0 -207 -80t-121 -252z" />
<glyph unicode="&#xe7;" horiz-adv-x="831" d="M188 291q0 151 33.5 284t98 239t169.5 168t238 62q52 0 116 -9.5t102 -18.5l38 -10l-39 -119q-133 24 -221 24q-94 0 -168 -51.5t-118.5 -137.5t-67.5 -189t-23 -214q0 -103 49.5 -154.5t161.5 -51.5q36 0 93 7.5t96 15.5l40 7l-10 -120q-141 -43 -268 -43l-19 -72h11 q94 0 141 -37t27 -125q-39 -178 -222 -178q-38 0 -79 3.5t-63 6.5l-21 4l26 105q76 -6 127 -6q86 0 105 73q10 39 -10 53.5t-60 14.5h-80l37 164q-118 19 -179 97t-61 208z" />
<glyph unicode="&#xe8;" horiz-adv-x="946" d="M186 291q0 108 20 213.5t64 203.5t107 172.5t156 119t204 44.5q144 0 223.5 -60.5t79.5 -188.5q0 -183 -137 -255.5t-436 -72.5h-105q-22 -80 -22 -166q0 -90 53.5 -138t143.5 -48q68 0 152 11.5t135 22.5l50 11l-12 -121q-20 -7 -55.5 -16.5t-132 -26t-178.5 -16.5 q-150 0 -230 78t-80 233zM383 588h113q209 0 301 44.5t92 160.5q0 65 -40 93.5t-118 28.5q-253 0 -348 -327zM455 1397l73 121l379 -191l-67 -106z" />
<glyph unicode="&#xe9;" horiz-adv-x="946" d="M186 291q0 108 20 213.5t64 203.5t107 172.5t156 119t204 44.5q144 0 223.5 -60.5t79.5 -188.5q0 -183 -137 -255.5t-436 -72.5h-105q-22 -80 -22 -166q0 -90 53.5 -138t143.5 -48q68 0 152 11.5t135 22.5l50 11l-12 -121q-20 -7 -55.5 -16.5t-132 -26t-178.5 -16.5 q-150 0 -230 78t-80 233zM383 588h113q209 0 301 44.5t92 160.5q0 65 -40 93.5t-118 28.5q-253 0 -348 -327zM600 1339l467 193l14 -135l-467 -176z" />
<glyph unicode="&#xea;" horiz-adv-x="946" d="M186 291q0 108 20 213.5t64 203.5t107 172.5t156 119t204 44.5q144 0 223.5 -60.5t79.5 -188.5q0 -183 -137 -255.5t-436 -72.5h-105q-22 -80 -22 -166q0 -90 53.5 -138t143.5 -48q68 0 152 11.5t135 22.5l50 11l-12 -121q-20 -7 -55.5 -16.5t-132 -26t-178.5 -16.5 q-150 0 -230 78t-80 233zM383 588h113q209 0 301 44.5t92 160.5q0 65 -40 93.5t-118 28.5q-253 0 -348 -327zM451 1202l317 309h109l176 -309h-154l-98 176l-183 -176h-167z" />
<glyph unicode="&#xeb;" horiz-adv-x="946" d="M186 291q0 108 20 213.5t64 203.5t107 172.5t156 119t204 44.5q144 0 223.5 -60.5t79.5 -188.5q0 -183 -137 -255.5t-436 -72.5h-105q-22 -80 -22 -166q0 -90 53.5 -138t143.5 -48q68 0 152 11.5t135 22.5l50 11l-12 -121q-20 -7 -55.5 -16.5t-132 -26t-178.5 -16.5 q-150 0 -230 78t-80 233zM383 588h113q209 0 301 44.5t92 160.5q0 65 -40 93.5t-118 28.5q-253 0 -348 -327zM518 1270l43 190h141l-45 -190h-139zM907 1270l41 190h142l-46 -190h-137z" />
<glyph unicode="&#xec;" horiz-adv-x="421" d="M135 0l236 1024h153l-237 -1024h-152zM156 1397l73 121l379 -191l-67 -106z" />
<glyph unicode="&#xed;" horiz-adv-x="421" d="M135 0l236 1024h153l-237 -1024h-152zM383 1339l467 193l14 -135l-467 -176z" />
<glyph unicode="&#xee;" horiz-adv-x="421" d="M135 0l236 1024h153l-237 -1024h-152zM172 1202l317 309h109l178 -309h-155l-99 176l-182 -176h-168z" />
<glyph unicode="&#xef;" horiz-adv-x="421" d="M135 0l236 1024h153l-237 -1024h-152zM211 1270l45 190h141l-45 -190h-141zM600 1270l41 190h141l-45 -190h-137z" />
<glyph unicode="&#xf0;" horiz-adv-x="1058" d="M168 346q20 240 169 388.5t355 148.5q64 0 139.5 -18t118.5 -36l43 -18q44 260 -188 406l-234 -152l-57 94l178 115q-91 37 -188 65l59 138q180 -40 293 -99l215 140l55 -95l-168 -108q264 -202 175 -584q-95 -394 -244 -571.5t-381 -177.5q-97 0 -169.5 30t-111.5 81.5 t-54 116t-5 136.5zM330 352q-11 -102 40 -160.5t173 -58.5q285 0 420 531q-16 8 -50 21.5t-108.5 32.5t-134.5 19q-138 0 -234.5 -110t-105.5 -275z" />
<glyph unicode="&#xf1;" horiz-adv-x="1019" d="M135 0h152l157 680q7 9 20 24.5t51.5 55t75 69.5t84 55t85.5 25q139 0 139 -153q0 -85 -39 -246l-119 -510h152l121 520q41 169 41 266q0 119 -61 188.5t-181 69.5q-49 0 -101 -20.5t-91 -49.5t-71.5 -58t-49.5 -50l-17 -20l37 178h-149zM518 1382q14 12 37.5 30 t77.5 48.5t88 30.5q38 0 91 -24.5t99.5 -49t67.5 -24.5q18 0 56.5 21t68.5 42l29 21l10 -115q-13 -12 -34.5 -29.5t-73 -46.5t-85.5 -29q-44 0 -139.5 49.5t-122.5 49.5q-21 0 -62 -22t-72 -44l-30 -22z" />
<glyph unicode="&#xf2;" horiz-adv-x="1011" d="M186 315q0 191 64 357t183.5 269t268.5 103q174 0 264.5 -86.5t90.5 -261.5q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-174 0 -262.5 81t-88.5 254zM340 313q0 -97 49.5 -148.5t147.5 -51.5q109 0 194 82.5t128.5 215t43.5 287.5 q0 99 -50.5 156t-150.5 57q-106 0 -190 -86t-128 -221.5t-44 -290.5zM512 1397l74 121l379 -191l-68 -106z" />
<glyph unicode="&#xf3;" horiz-adv-x="1011" d="M186 315q0 191 64 357t183.5 269t268.5 103q174 0 264.5 -86.5t90.5 -261.5q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-174 0 -262.5 81t-88.5 254zM340 313q0 -97 49.5 -148.5t147.5 -51.5q109 0 194 82.5t128.5 215t43.5 287.5 q0 99 -50.5 156t-150.5 57q-106 0 -190 -86t-128 -221.5t-44 -290.5zM604 1339l467 193l14 -135l-467 -176z" />
<glyph unicode="&#xf4;" horiz-adv-x="1011" d="M186 315q0 191 64 357t183.5 269t268.5 103q174 0 264.5 -86.5t90.5 -261.5q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-174 0 -262.5 81t-88.5 254zM340 313q0 -97 49.5 -148.5t147.5 -51.5q109 0 194 82.5t128.5 215t43.5 287.5 q0 99 -50.5 156t-150.5 57q-106 0 -190 -86t-128 -221.5t-44 -290.5zM481 1202l318 309h108l178 -309h-155l-99 176l-182 -176h-168z" />
<glyph unicode="&#xf5;" horiz-adv-x="1011" d="M186 315q0 191 64 357t183.5 269t268.5 103q174 0 264.5 -86.5t90.5 -261.5q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-174 0 -262.5 81t-88.5 254zM340 313q0 -97 49.5 -148.5t147.5 -51.5q109 0 194 82.5t128.5 215t43.5 287.5 q0 99 -50.5 156t-150.5 57q-106 0 -190 -86t-128 -221.5t-44 -290.5zM487 1382q14 12 37.5 30t77.5 48.5t88 30.5q38 0 91 -24.5t99.5 -49t67.5 -24.5q18 0 56.5 21t67.5 42l30 21l10 -115q-13 -12 -34.5 -29.5t-72.5 -46.5t-85 -29q-44 0 -140 49.5t-123 49.5 q-21 0 -61.5 -22t-71.5 -44l-30 -22z" />
<glyph unicode="&#xf6;" horiz-adv-x="1011" d="M186 315q0 191 64 357t183.5 269t268.5 103q174 0 264.5 -86.5t90.5 -261.5q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-174 0 -262.5 81t-88.5 254zM340 313q0 -97 49.5 -148.5t147.5 -51.5q109 0 194 82.5t128.5 215t43.5 287.5 q0 99 -50.5 156t-150.5 57q-106 0 -190 -86t-128 -221.5t-44 -290.5zM537 1270l43 190h127l-45 -190h-125zM911 1270l41 190h127l-45 -190h-123z" />
<glyph unicode="&#xf7;" d="M365 575v150h116v98h422v-98h115v-150h-653zM614 61v207h154v-207h-154z" />
<glyph unicode="&#xf8;" horiz-adv-x="1011" d="M123 -188l158 249q-93 84 -93 258q0 191 64 357t184 269.5t269 103.5q98 0 174 -31l137 221l92 -41l-147 -231q98 -89 98 -267q0 -113 -22.5 -218.5t-67 -195.5t-106.5 -157.5t-145.5 -106t-178.5 -38.5q-103 0 -179 28l-147 -239zM342 317q0 -71 27 -118l211 331 l223 365q-39 20 -98 20q-106 0 -190.5 -86t-128.5 -221.5t-44 -290.5zM438 135q40 -18 101 -18q109 0 194 82.5t128.5 215t43.5 287.5q0 75 -31 129l-217 -342z" />
<glyph unicode="&#xf9;" horiz-adv-x="1019" d="M201 238q0 97 41 266l120 520h152l-119 -510q-39 -161 -39 -246q0 -73 35.5 -113t104.5 -40q38 0 84.5 23.5t86 57.5t73 67.5t52.5 56.5l19 24l158 680h151l-235 -1024h-150l37 178q-6 -8 -17.5 -21.5t-48 -47.5t-73.5 -60t-89.5 -47.5t-101.5 -21.5q-118 0 -179.5 69.5 t-61.5 188.5zM516 1397l74 121l379 -191l-68 -106z" />
<glyph unicode="&#xfa;" horiz-adv-x="1019" d="M201 238q0 97 41 266l120 520h152l-119 -510q-39 -161 -39 -246q0 -73 35.5 -113t104.5 -40q38 0 84.5 23.5t86 57.5t73 67.5t52.5 56.5l19 24l158 680h151l-235 -1024h-150l37 178q-6 -8 -17.5 -21.5t-48 -47.5t-73.5 -60t-89.5 -47.5t-101.5 -21.5q-118 0 -179.5 69.5 t-61.5 188.5zM627 1339l467 193l14 -135l-467 -176z" />
<glyph unicode="&#xfb;" horiz-adv-x="1019" d="M201 238q0 97 41 266l120 520h152l-119 -510q-39 -161 -39 -246q0 -73 35.5 -113t104.5 -40q38 0 84.5 23.5t86 57.5t73 67.5t52.5 56.5l19 24l158 680h151l-235 -1024h-150l37 178q-6 -8 -17.5 -21.5t-48 -47.5t-73.5 -60t-89.5 -47.5t-101.5 -21.5q-118 0 -179.5 69.5 t-61.5 188.5zM451 1202l317 309h109l176 -309h-154l-98 176l-183 -176h-167z" />
<glyph unicode="&#xfc;" horiz-adv-x="1019" d="M201 238q0 97 41 266l120 520h152l-119 -510q-39 -161 -39 -246q0 -73 35.5 -113t104.5 -40q38 0 84.5 23.5t86 57.5t73 67.5t52.5 56.5l19 24l158 680h151l-235 -1024h-150l37 178q-6 -8 -17.5 -21.5t-48 -47.5t-73.5 -60t-89.5 -47.5t-101.5 -21.5q-118 0 -179.5 69.5 t-61.5 188.5zM508 1270l45 190h141l-45 -190h-141zM897 1270l41 190h141l-45 -190h-137z" />
<glyph unicode="&#xfd;" horiz-adv-x="929" d="M215 -453l236 453h-140l-26 1024h151l17 -893h61l447 893h157l-747 -1477h-156zM578 1339l466 193l15 -135l-467 -176z" />
<glyph unicode="&#xfe;" horiz-adv-x="989" d="M27 -451l452 1917h146l-129 -544q157 122 290 122q84 0 141.5 -34t84 -87t35 -123t0.5 -137.5t-27 -134.5q-77 -291 -203 -419.5t-342 -128.5q-44 0 -92.5 3.5t-77.5 8t-29 6.5l-106 -449h-143zM309 141l193 -20q145 0 228.5 98.5t141.5 310.5q16 55 20.5 115t-4.5 119 t-46.5 97t-100.5 38q-36 0 -78.5 -13.5t-77 -32.5t-64 -38t-46 -31.5t-16.5 -11.5z" />
<glyph unicode="&#xff;" horiz-adv-x="929" d="M215 -453l236 453h-140l-26 1024h151l17 -893h61l447 893h157l-747 -1477h-156zM467 1270l43 190h141l-45 -190h-139zM856 1270l41 190h141l-45 -190h-137z" />
<glyph unicode="&#x152;" horiz-adv-x="1757" d="M219 334q-3 155 49 373q89 376 249.5 557.5t430.5 181.5q32 0 132 -7.5t137 -13.5h788l-33 -153h-643l-117 -477h527l-33 -150l-524 4l-117 -495h641l-37 -156h-784q-207 -18 -281 -18q-197 0 -288.5 88.5t-96.5 265.5zM377 395q0 -135 64 -198.5t212 -63.5q39 0 260 17 l269 1128q-105 14 -254 14q-105 0 -184.5 -35t-139.5 -110t-102 -180t-78 -258q-47 -193 -47 -314z" />
<glyph unicode="&#x153;" horiz-adv-x="1636" d="M182 225q-9 133 33 301q31 131 72 222.5t103.5 160.5t152 102t209.5 33q124 0 194.5 -47t93.5 -145q125 192 371 192q292 0 301 -268q4 -109 -26 -215l-35 -117l-631 5q-25 -114 -23 -164q5 -81 51 -121.5t142 -40.5q61 0 149.5 4.5t146.5 8.5l58 5l-24 -129 q-207 -32 -373 -32q-230 0 -275 172q-64 -89 -152 -130.5t-218 -41.5q-159 0 -236.5 60t-83.5 185zM332 270q3 -78 49.5 -113.5t150.5 -35.5q50 0 92 11t73 29t57.5 49t44.5 61t35 77t28 85t25 95q36 146 20 238q-12 71 -57 104t-131 33q-146 0 -225.5 -88.5t-126.5 -288.5 q-42 -178 -35 -256zM1049 573l489 -4q28 111 25 179q-1 80 -45.5 115.5t-135.5 35.5q-129 0 -210.5 -78t-122.5 -248z" />
<glyph unicode="&#x178;" horiz-adv-x="1009" d="M348 1417h160l166 -661l469 661h170l-600 -811l-142 -606h-149l143 618zM610 1665l43 190h127l-47 -190h-123zM993 1665l45 190h127l-47 -190h-125z" />
<glyph unicode="&#x2c6;" horiz-adv-x="1619" d="M786 1202l318 309h82l178 -309h-141l-99 176l-182 -176h-156z" />
<glyph unicode="&#x2dc;" horiz-adv-x="874" d="M449 1382q14 12 37 30t77 48.5t88 30.5q38 0 91 -24.5t99.5 -49t67.5 -24.5q18 0 56.5 21t68.5 42l29 21l10 -115q-13 -12 -34.5 -29.5t-72.5 -46.5t-85 -29q-44 0 -140 49.5t-123 49.5q-21 0 -61.5 -22t-70.5 -44l-31 -22z" />
<glyph unicode="&#x2000;" horiz-adv-x="958" />
<glyph unicode="&#x2001;" horiz-adv-x="1917" />
<glyph unicode="&#x2002;" horiz-adv-x="958" />
<glyph unicode="&#x2003;" horiz-adv-x="1917" />
<glyph unicode="&#x2004;" horiz-adv-x="639" />
<glyph unicode="&#x2005;" horiz-adv-x="479" />
<glyph unicode="&#x2006;" horiz-adv-x="319" />
<glyph unicode="&#x2007;" horiz-adv-x="319" />
<glyph unicode="&#x2008;" horiz-adv-x="239" />
<glyph unicode="&#x2009;" horiz-adv-x="383" />
<glyph unicode="&#x200a;" horiz-adv-x="106" />
<glyph unicode="&#x2010;" horiz-adv-x="690" d="M201 477l35 141h505l-34 -141h-506z" />
<glyph unicode="&#x2011;" horiz-adv-x="690" d="M201 477l35 141h505l-34 -141h-506z" />
<glyph unicode="&#x2012;" horiz-adv-x="690" d="M201 477l35 141h505l-34 -141h-506z" />
<glyph unicode="&#x2013;" horiz-adv-x="1216" d="M223 481v135h1024v-135h-1024z" />
<glyph unicode="&#x2014;" horiz-adv-x="2240" d="M223 481v135h2048v-135h-2048z" />
<glyph unicode="&#x2018;" horiz-adv-x="370" d="M289 958l227 457h115l-187 -457h-155z" />
<glyph unicode="&#x2019;" horiz-adv-x="370" d="M293 961l186 456h156l-227 -456h-115z" />
<glyph unicode="&#x201a;" horiz-adv-x="352" d="M-29 -274l187 456h155l-227 -456h-115z" />
<glyph unicode="&#x201c;" horiz-adv-x="692" d="M287 961l227 456h115l-187 -456h-155zM610 961l228 456h114l-186 -456h-156z" />
<glyph unicode="&#x201d;" horiz-adv-x="694" d="M293 961l186 456h156l-227 -456h-115zM616 961l187 456h155l-227 -456h-115z" />
<glyph unicode="&#x201e;" horiz-adv-x="665" d="M-59 -276l227 456h115l-187 -456h-155zM281 -276l227 456h115l-187 -456h-155z" />
<glyph unicode="&#x2022;" horiz-adv-x="993" d="M358 217v586h512v-586h-512z" />
<glyph unicode="&#x2026;" horiz-adv-x="1310" d="M96 0l54 227h155l-53 -227h-156zM580 0l53 227h155l-53 -227h-155zM1061 0l53 227h156l-53 -227h-156z" />
<glyph unicode="&#x202f;" horiz-adv-x="383" />
<glyph unicode="&#x2039;" horiz-adv-x="524" d="M164 469l29 78l436 291l-45 -158l-269 -178l181 -197l-41 -141z" />
<glyph unicode="&#x203a;" horiz-adv-x="526" d="M129 164l45 158l268 178l-180 196l41 142l291 -306l-29 -77z" />
<glyph unicode="&#x205f;" horiz-adv-x="479" />
<glyph unicode="&#x20ac;" d="M205 428l28 127h91q10 90 45 215h-86l30 125h97q41 102 95 186t125.5 151t164 104.5t198.5 37.5q69 0 150.5 -11t128.5 -23l47 -11l-33 -119q-152 31 -299 31q-136 0 -241.5 -94t-174.5 -252h549l-28 -125h-566q-30 -90 -47 -215h563l-28 -127h-547v-53q0 -132 58.5 -197 t183.5 -65q69 0 149 8.5t125 16.5l45 9l-10 -124q-174 -43 -330 -43q-377 0 -377 389v59h-106z" />
<glyph unicode="&#x2122;" horiz-adv-x="1431" d="M449 1188v102h409v-102h-135v-508h-113v508h-161zM922 678v612h145l137 -426l144 426h145v-612h-107v459l-137 -428h-88l-133 428v-459h-106z" />
<glyph unicode="&#xe000;" horiz-adv-x="1024" d="M0 0v1024h1024v-1024h-1024z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,240 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="TitilliumBold" horiz-adv-x="1146" >
<font-face units-per-em="2048" ascent="1536" descent="-512" />
<missing-glyph horiz-adv-x="450" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="2048" />
<glyph unicode=" " horiz-adv-x="450" />
<glyph unicode="&#x09;" horiz-adv-x="450" />
<glyph unicode="&#xa0;" horiz-adv-x="450" />
<glyph unicode="!" horiz-adv-x="544" d="M152 0v287h239v-287h-239zM154 1403h237l-20 -909h-197z" />
<glyph unicode="&#x22;" horiz-adv-x="808" d="M123 1403h217l-12 -475h-197zM471 1403h215l-12 -475h-195z" />
<glyph unicode="#" d="M41 328v186h209v311h-209v187h209v346h194v-346h258v346h195v-346h209v-187h-209v-311h209v-186h-209v-328h-195v328h-258v-328h-194v328h-209zM444 514h258v311h-258v-311z" />
<glyph unicode="$" d="M121 991q0 195 119 289t331 94h37l35 275h131l-37 -285q60 -6 125.5 -15.5t101.5 -15.5l35 -6l-18 -176q-145 17 -266 25l-51 -396q105 -30 170.5 -60t111.5 -73.5t65 -102t19 -143.5q0 -213 -121.5 -318.5t-330.5 -105.5h-17l-29 -237q-131 6 -131 14l29 232 q-65 6 -139 17.5t-115 19.5l-41 8l23 176q162 -23 297 -31l55 424q-106 29 -176 60.5t-119.5 77.5t-71.5 107t-22 146zM340 1006q0 -76 42 -115.5t155 -75.5l47 367q-244 -3 -244 -176zM586 172q223 9 223 217q0 70 -37.5 108.5t-134.5 67.5z" />
<glyph unicode="%" d="M41 1083q0 146 61.5 218.5t176.5 72.5q235 0 235 -291q0 -147 -61.5 -221t-173.5 -74q-114 0 -176 74t-62 221zM209 1083q0 -81 15.5 -118t54.5 -37t54 36.5t15 118.5t-15 118t-54 36t-54.5 -36t-15.5 -118zM283 -12l454 1427l127 -43l-454 -1425zM633 272 q0 146 60.5 218.5t174.5 72.5q115 0 176.5 -73t61.5 -218q0 -147 -62 -221t-176 -74q-112 0 -173.5 74t-61.5 221zM799 272q0 -82 15 -119.5t54 -37.5q40 0 55 37t15 120q0 81 -15 116.5t-55 35.5q-39 0 -54 -35.5t-15 -116.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1425" d="M78 408q0 169 72 262.5t231 152.5q-80 93 -104.5 156.5t-24.5 163.5q0 141 105.5 223t287.5 82q191 0 291 -83.5t100 -238.5q0 -94 -32 -162.5t-92.5 -121t-172.5 -117.5l250 -248q13 40 28.5 135t18.5 158l215 -4q-12 -108 -40.5 -228t-59.5 -192l244 -223l-127 -146 l-232 201q-68 -94 -180.5 -147.5t-247.5 -53.5q-148 0 -252 29t-164.5 86.5t-87 134.5t-26.5 181zM303 426q0 -125 68 -187.5t213 -62.5q98 0 180 33.5t121 93.5l-387 387q-102 -39 -148.5 -100.5t-46.5 -163.5zM477 1098q0 -101 92 -199l45 -47q109 61 153 114.5t44 137.5 q0 80 -40.5 118t-125.5 38q-80 0 -124 -40.5t-44 -121.5z" />
<glyph unicode="'" horiz-adv-x="460" d="M125 1403h217l-14 -475h-197z" />
<glyph unicode="(" horiz-adv-x="591" d="M88 616q0 131 23.5 274t57.5 253.5t67.5 202t57.5 140.5l23 50h211q-8 -21 -21 -58.5t-46.5 -148.5t-59 -217t-46.5 -245t-21 -251t20 -243.5t48.5 -238t57 -197.5t48.5 -142l20 -51h-211q-9 16 -24.5 46t-55 125t-69.5 192t-55 237.5t-25 271.5z" />
<glyph unicode=")" horiz-adv-x="591" d="M63 -256q8 19 21 53t46.5 137t59.5 203t47 233.5t21 245.5t-20 248t-48.5 250t-57.5 212t-49 154l-20 56h211q9 -18 24.5 -51.5t55.5 -136.5t70 -206.5t55 -249t25 -276.5t-23.5 -269.5t-57.5 -241.5t-68 -187.5t-57 -129.5l-24 -44h-211z" />
<glyph unicode="*" horiz-adv-x="866" d="M94 938l219 162l-213 151l80 111l211 -154l82 252l131 -43l-80 -254h258v-131h-260l80 -250l-127 -39l-84 252l-215 -161z" />
<glyph unicode="+" d="M106 414v200h365v367h201v-367h368v-200h-368v-371h-201v371h-365z" />
<glyph unicode="," horiz-adv-x="503" d="M53 -252l99 506h245l-164 -506h-180z" />
<glyph unicode="-" horiz-adv-x="862" d="M125 451v202h612v-202h-612z" />
<glyph unicode="." horiz-adv-x="489" d="M125 0v295h240v-295h-240z" />
<glyph unicode="/" horiz-adv-x="907" d="M66 18l583 1444l197 -71l-586 -1442z" />
<glyph unicode="0" d="M61 662q0 196 33.5 334.5t101 221t159.5 119.5t218 37q127 0 219 -37t158.5 -119t99.5 -220.5t33 -335.5q0 -190 -33.5 -323.5t-100.5 -212.5t-159 -114t-217 -35q-126 0 -217.5 35t-159 113.5t-101.5 212t-34 324.5zM297 662q0 -183 31.5 -291t91 -151.5t155.5 -43.5 q95 0 153.5 43.5t89 151.5t30.5 291q0 197 -30 310t-88.5 158.5t-156.5 45.5q-73 0 -123 -24.5t-85 -83t-51.5 -158t-16.5 -248.5z" />
<glyph unicode="1" d="M180 1059l441 293h208v-1352h-227v1094l-317 -205z" />
<glyph unicode="2" d="M137 0v195l334 344q77 79 118 124.5t82 101.5t57.5 104t16.5 100q0 113 -59.5 157.5t-193.5 44.5q-64 0 -147 -9t-134 -18l-51 -9l-15 180q22 7 61 16.5t144.5 26t194.5 16.5q223 0 329.5 -93t106.5 -284q0 -101 -32 -184t-91.5 -156.5t-171.5 -177.5l-289 -280h611v-199 h-871z" />
<glyph unicode="3" d="M121 41l14 176q225 -41 397 -41q125 2 185.5 54.5t60.5 162.5q0 99 -63 150t-168 53h-273v190h273q75 0 140 62.5t65 148.5q0 93 -56 136t-180 43q-76 0 -166.5 -10t-143.5 -20l-52 -9l-19 172q21 7 58.5 18t141.5 29t195 18q249 0 353 -86.5t104 -275.5q0 -50 -12 -94.5 t-29 -74.5t-43 -58.5t-46.5 -44t-47.5 -33.5q53 -25 85 -45.5t62.5 -55t44 -85t13.5 -122.5q0 -214 -107.5 -318t-343.5 -104q-92 0 -202.5 16t-174.5 32z" />
<glyph unicode="4" d="M82 242v174l356 936h252l-377 -912h377v398h230v-398h147v-198h-147v-242h-230v242h-608z" />
<glyph unicode="5" d="M115 47l24 172q242 -41 414 -41q119 0 184.5 65.5t65.5 186.5t-58 174t-172 53q-69 0 -140 -13.5t-107 -27.5l-37 -14l-144 31l37 719h809v-201h-626l-35 -356q16 7 42.5 17.5t99 28t132.5 17.5q434 0 434 -405q0 -229 -119.5 -352.5t-338.5 -123.5q-93 0 -209 17.5 t-186 35.5z" />
<glyph unicode="6" d="M84 676q0 698 549 698q76 0 174 -12t157 -24l60 -13l-20 -178q-199 29 -371 29q-153 0 -232.5 -100.5t-81.5 -280.5l47 15q47 15 120.5 31.5t127.5 16.5q228 0 343.5 -105.5t115.5 -324.5q0 -221 -127 -336t-358 -115q-256 0 -380 182t-124 517zM317 598 q1 -126 26 -216.5t87 -148t158 -57.5q121 0 185.5 65t64.5 187q0 114 -63.5 171.5t-180.5 57.5q-57 0 -126.5 -14.5t-109.5 -29.5z" />
<glyph unicode="7" d="M150 1147v205h851v-271l-497 -1104l-213 62l481 1046v62h-622z" />
<glyph unicode="8" d="M61 344q0 72 13 126t41.5 95.5t60 70t82.5 64.5q-97 64 -135.5 132.5t-38.5 183.5q0 172 130 265t355 93t359.5 -93t134.5 -267q0 -122 -38 -185.5t-142 -128.5q52 -33 85 -61t61 -67t41 -89t13 -116q0 -85 -26.5 -152t-72.5 -111t-112 -73t-140.5 -41.5t-162.5 -12.5 q-508 0 -508 367zM305 393q0 -211 264 -211q271 0 271 215q0 76 -44.5 122.5t-127.5 72.5h-197q-166 -53 -166 -199zM328 981q0 -67 35 -113t108 -82h197q75 35 113 81.5t38 113.5q0 94 -64 141t-184 47q-243 0 -243 -188z" />
<glyph unicode="9" d="M70 924q0 210 129.5 330t353.5 120q256 0 381 -182t125 -514q0 -195 -37.5 -332.5t-111.5 -217.5t-172 -115.5t-230 -35.5q-76 0 -174 12.5t-158 24.5l-59 13l20 178q199 -29 371 -29q312 0 315 393l-48 -17q-48 -16 -123 -34t-128 -18q-221 0 -337.5 105.5t-116.5 318.5 zM305 924q0 -224 238 -224q56 0 126.5 15t112.5 30l43 15q-4 416 -272 416q-117 0 -182.5 -67.5t-65.5 -184.5z" />
<glyph unicode=":" horiz-adv-x="489" d="M125 0v295h240v-295h-240zM125 621v294h240v-294h-240z" />
<glyph unicode=";" horiz-adv-x="544" d="M74 -252h180l164 506h-246zM158 621v294h239v-294h-239z" />
<glyph unicode="&#x3c;" d="M131 422v184l840 393v-227l-602 -254l602 -266v-229z" />
<glyph unicode="=" d="M125 211v201h897v-201h-897zM125 616v201h897v-201h-897z" />
<glyph unicode="&#x3e;" d="M176 23v229l602 266l-602 254v227l840 -393v-184z" />
<glyph unicode="?" horiz-adv-x="903" d="M68 1358q21 8 57 19t128 29.5t161 18.5q216 0 316.5 -78t100.5 -253q0 -137 -34 -208.5t-144 -160.5q-98 -76 -132 -123.5t-34 -103.5v-68h-180q-5 7 -13.5 20.5t-22 55t-13.5 84.5q0 52 39 102.5t127 124.5q113 92 145.5 138.5t32.5 115.5q0 79 -50.5 117.5t-166.5 38.5 q-56 0 -132.5 -9.5t-124.5 -19.5l-48 -10zM272 0v287h238v-287h-238z" />
<glyph unicode="@" horiz-adv-x="1996" d="M90 535q0 244 65.5 427t189.5 297.5t295 171t390 56.5q453 0 673 -216.5t220 -645.5v-21q0 -140 -16.5 -244.5t-47.5 -174t-78.5 -112.5t-104.5 -61t-132 -18q-59 0 -107 12.5t-74.5 30t-45 34.5t-25.5 29l-6 13q-7 -5 -20.5 -13t-52.5 -28t-76.5 -35.5t-87.5 -28 t-91 -12.5q-86 0 -150.5 23.5t-116 79.5t-78.5 159t-27 252q0 265 90 391.5t311 126.5q38 0 90.5 -13t85.5 -25l33 -13v29h221v-377q0 -67 0.5 -113t1.5 -91.5t3 -74.5t6 -57t8.5 -43.5t12.5 -30t16 -20.5t21 -11.5t26 -6.5t32 -1q26 0 45.5 6t38 22.5t31 46.5t22.5 76.5 t14.5 114.5t4.5 158v23q0 349 -158.5 507t-511.5 158q-357 0 -538 -190.5t-181 -566.5q0 -408 167 -585t552 -177q44 0 117 4.5t125 8.5l51 5l10 -194q-188 -19 -303 -19q-188 0 -331 28.5t-260.5 95.5t-192.5 176.5t-115.5 273.5t-40.5 383zM811 508q0 -318 166 -318 q80 0 233 70q-14 82 -14 277v266q-103 31 -164 31q-132 0 -176.5 -74.5t-44.5 -251.5z" />
<glyph unicode="A" horiz-adv-x="1226" d="M41 0l346 1403h453l348 -1403h-230l-75 301h-539l-76 -301h-227zM389 502h449l-172 710h-103z" />
<glyph unicode="B" horiz-adv-x="1253" d="M162 0v1403h532q214 0 321 -87t107 -278q0 -124 -39.5 -196t-126.5 -119q98 -38 149.5 -113.5t51.5 -212.5q0 -397 -446 -397h-549zM389 197h309q113 0 169.5 46.5t56.5 166.5q0 57 -20 98.5t-54 63t-72.5 31t-83.5 9.5h-305v-415zM389 805h301q103 0 152 51.5t49 155.5 q0 100 -52 147t-157 47h-293v-401z" />
<glyph unicode="C" horiz-adv-x="1114" d="M106 700q0 158 14.5 270.5t50 202.5t96 143.5t150.5 81t216 27.5q177 0 401 -51l-8 -184q-72 13 -181 23t-181 10q-79 0 -133 -17t-91.5 -52t-58.5 -99t-30 -148t-9 -207q0 -101 5 -172.5t18.5 -133t36.5 -99.5t60 -65t87.5 -38.5t120.5 -11.5q161 0 356 31l6 -188 q-221 -46 -399 -46q-127 0 -219 30t-151.5 85.5t-94.5 147t-48.5 200.5t-13.5 260z" />
<glyph unicode="D" horiz-adv-x="1312" d="M162 0v1403h485q134 0 232 -29.5t161 -83t100.5 -139.5t52.5 -187.5t15 -238.5q0 -142 -13.5 -247t-50.5 -199t-99 -152.5t-162 -92.5t-236 -34h-485zM389 201h258q83 0 142.5 26t94.5 69t55.5 113t27 142.5t6.5 173.5q0 83 -4.5 143t-17 117.5t-35.5 95t-58.5 67t-88 43 t-122.5 13.5h-258v-1003z" />
<glyph unicode="E" horiz-adv-x="1132" d="M162 0v1403h885v-199h-658v-397h535v-197h-535v-409h658v-201h-885z" />
<glyph unicode="F" horiz-adv-x="1083" d="M162 0v1403h870v-199h-643v-473h535v-199h-535v-532h-227z" />
<glyph unicode="G" horiz-adv-x="1255" d="M102 700q0 190 27.5 322t92 224.5t171 135.5t262.5 43q96 0 215.5 -13.5t191.5 -27.5l71 -14l-9 -180q-248 33 -434 33q-86 0 -145 -17t-100 -52.5t-64 -99t-33 -147.5t-10 -207q0 -120 8.5 -201.5t30.5 -147t61.5 -102t99 -55t146.5 -18.5q62 0 131 6.5t92 12.5v342 h-174v200h400v-712q-16 -4 -89.5 -14.5t-188.5 -22t-191 -11.5q-132 0 -229.5 31.5t-161 88.5t-102 148.5t-54 200t-15.5 254.5z" />
<glyph unicode="H" horiz-adv-x="1384" d="M162 0v1403h227v-598h606v598h230v-1403h-230v606h-606v-606h-227z" />
<glyph unicode="I" horiz-adv-x="550" d="M162 0v1403h227v-1403h-227z" />
<glyph unicode="J" horiz-adv-x="606" d="M39 55q56 0 88 6t56.5 24.5t34 53.5t9.5 94v1170h226l2 -1186q0 -92 -16 -155.5t-46 -104.5t-83 -63t-115.5 -30.5t-155.5 -8.5v200z" />
<glyph unicode="K" horiz-adv-x="1193" d="M162 0v1403h227v-633l209 16l287 617h260l-346 -705l360 -698h-264l-297 586l-209 -15v-571h-227z" />
<glyph unicode="L" horiz-adv-x="972" d="M162 0v1403h227v-1200h559v-203h-786z" />
<glyph unicode="M" horiz-adv-x="1740" d="M162 0v1403h395l313 -1096l314 1096h397v-1403h-229v1151h-31l-332 -1094h-237l-332 1094h-31v-1151h-227z" />
<glyph unicode="N" horiz-adv-x="1404" d="M162 0v1403h397l426 -1202h31v1202h227v-1403h-389l-436 1204h-29v-1204h-227z" />
<glyph unicode="O" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-131 0 -228.5 29.5t-163 86t-106 145.5t-57.5 199.5t-17 256.5zM336 694q0 -138 14.5 -229.5 t51.5 -159.5t103 -98.5t167 -30.5t166.5 29.5t102.5 97t51 159t14 232.5q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5z" />
<glyph unicode="P" horiz-adv-x="1210" d="M162 0v1403h514q477 0 477 -471q0 -241 -120 -368.5t-357 -127.5h-287v-436h-227zM389 633h285q246 0 246 299q0 144 -59 209t-187 65h-285v-573z" />
<glyph unicode="Q" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -245 -51.5 -396.5t-171.5 -231.5l172 -277l-211 -98l-182 299q-44 -13 -125 -13q-131 0 -228.5 29.5t-163 85.5t-106 145t-57.5 199.5t-17 257.5z M336 694q0 -111 9 -190t31 -144t60 -104t96.5 -59.5t139.5 -20.5q101 0 166.5 29.5t102.5 96.5t51 159t14 233q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5z" />
<glyph unicode="R" horiz-adv-x="1265" d="M162 0v1403h532q236 0 355.5 -108.5t119.5 -338.5q0 -298 -229 -405l231 -551h-249l-203 500h-330v-500h-227zM389 696h309q122 0 180 70.5t58 187.5q0 122 -60.5 187t-181.5 65h-305v-510z" />
<glyph unicode="S" horiz-adv-x="1112" d="M86 1028q0 205 123.5 302t343.5 97q79 0 190 -12.5t183 -24.5l71 -12l-18 -184q-287 33 -406 33q-260 0 -260 -183q0 -33 6 -57.5t23 -45t37.5 -35t60.5 -30.5t80 -28t107 -31q117 -33 188 -63.5t122 -76.5t71 -107t20 -152q0 -222 -126 -331.5t-343 -109.5 q-81 0 -195.5 14t-189.5 28l-74 14l23 182q277 -37 422 -37q254 0 254 225q0 88 -57.5 130t-221.5 81q-119 31 -196.5 63.5t-133 81t-80 113.5t-24.5 156z" />
<glyph unicode="T" horiz-adv-x="1077" d="M27 1200v203h1024v-203h-396v-1200h-229v1200h-399z" />
<glyph unicode="U" horiz-adv-x="1331" d="M150 453v950h229v-954q0 -140 71.5 -206.5t213.5 -66.5q288 0 288 273v954h230v-950q0 -248 -130 -362t-388 -114q-257 0 -385.5 114t-128.5 362z" />
<glyph unicode="V" horiz-adv-x="1216" d="M41 1403h238l278 -1202h102l279 1202h238l-345 -1403h-446z" />
<glyph unicode="W" horiz-adv-x="1865" d="M49 1403h240l200 -1206h43l267 1202h266l266 -1202h45l201 1206h240l-277 -1403h-366l-242 1124l-240 -1124h-368z" />
<glyph unicode="X" horiz-adv-x="1155" d="M27 0l417 678l-417 725h256l301 -553l305 553h239l-415 -713l415 -690h-254l-301 528l-307 -528h-239z" />
<glyph unicode="Y" horiz-adv-x="1124" d="M8 1403h256l297 -602l299 602h254l-436 -825v-578h-229v578z" />
<glyph unicode="Z" horiz-adv-x="1093" d="M86 0v217l649 946v41h-649v199h922v-219l-652 -946v-39h652v-199h-922z" />
<glyph unicode="[" horiz-adv-x="704" d="M150 -252v1786h477v-199h-252v-1388h252v-199h-477z" />
<glyph unicode="\" horiz-adv-x="964" d="M63 1372l193 86l645 -1431l-194 -82z" />
<glyph unicode="]" horiz-adv-x="704" d="M78 -53h252v1388h-252v199h477v-1786h-477v199z" />
<glyph unicode="^" d="M76 647l389 705h192l396 -705h-234l-254 488l-256 -488h-233z" />
<glyph unicode="_" horiz-adv-x="1280" d="M203 -166h876v-190h-876v190z" />
<glyph unicode="`" horiz-adv-x="520" d="M-20 1339l69 193l483 -207l-53 -145z" />
<glyph unicode="a" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146z" />
<glyph unicode="b" horiz-adv-x="1097" d="M135 2v1448h221v-465q16 7 42.5 17.5t94.5 27.5t119 17q212 0 305 -118.5t93 -402.5q0 -161 -26 -265t-87 -168t-153 -90t-234 -26q-48 0 -142 6.5t-164 12.5zM356 184q113 -8 154 -8q85 0 138 18.5t83 63.5t40.5 107t10.5 161q0 172 -46.5 247t-149.5 75 q-48 0 -105.5 -10t-90.5 -20l-34 -11v-623z" />
<glyph unicode="c" horiz-adv-x="905" d="M90 526q0 276 100 398.5t328 122.5q48 0 125 -9.5t129 -19.5l53 -10l-8 -177q-161 17 -239 17q-156 0 -209.5 -70t-53.5 -252q0 -104 10 -166.5t39.5 -106t80.5 -60.5t135 -17q35 0 94.5 4t101.5 8l43 5l6 -179q-207 -37 -311 -37q-234 0 -329 125.5t-95 423.5z" />
<glyph unicode="d" horiz-adv-x="1105" d="M88 510q0 278 103 407.5t323 129.5q72 0 234 -27v430h223v-1450h-221v53q-17 -9 -45.5 -21.5t-101 -33.5t-128.5 -21q-134 0 -217.5 50.5t-126.5 168.5t-43 314zM313 510q0 -128 24 -203t65.5 -103t107.5 -28q52 0 111.5 13t92.5 25l34 13v607q-120 20 -218 20 q-113 0 -165 -84t-52 -260z" />
<glyph unicode="e" horiz-adv-x="1040" d="M86 502q0 545 444 545q216 0 323.5 -115.5t107.5 -353.5l-15 -160h-635q2 -126 55.5 -186t178.5 -60q72 0 166.5 4.5t152.5 9.5l58 4l4 -165q-234 -48 -414 -48q-227 0 -326.5 125.5t-99.5 399.5zM309 590h432q0 151 -48.5 211.5t-162.5 60.5q-115 0 -167.5 -63 t-53.5 -209z" />
<glyph unicode="f" horiz-adv-x="708" d="M63 834v190h119v66q0 219 63.5 301t225.5 82q31 0 86.5 -5.5t94.5 -10.5l40 -5l-2 -182q-101 4 -164 4q-70 0 -96.5 -40.5t-26.5 -146.5v-63h271v-190h-271v-834h-221v834h-119z" />
<glyph unicode="g" horiz-adv-x="1075" d="M86 -180q0 74 36.5 129t119.5 119q-32 22 -50 61.5t-18 87.5q0 21 18.5 62t37.5 71l18 31q-43 26 -73 59t-52.5 97t-22.5 151q0 184 110.5 270t299.5 86q42 0 94 -6.5t84 -13.5l31 -6l317 8v-180l-170 10q56 -73 56 -168q0 -103 -26.5 -172.5t-81.5 -109t-129 -56 t-181 -16.5q-54 0 -90 8q-29 -69 -29 -96q0 -35 14.5 -50.5t59 -22t147.5 -7.5q125 -1 203.5 -15t129.5 -50t71 -93t20 -147q0 -89 -35 -154.5t-99.5 -104.5t-148.5 -58t-190 -19q-245 0 -358 64t-113 231zM305 -160q0 -71 58 -102t196 -31q126 0 187 33.5t61 107.5 q0 34 -7.5 55.5t-21 35.5t-42.5 21t-61 9.5t-87 3.5q-28 0 -78 3.5t-86 6.5l-37 3q-45 -37 -63.5 -68.5t-18.5 -77.5zM322 688q0 -94 45 -138t143 -44q102 0 146 43.5t44 138.5q0 94 -44.5 138t-145.5 44q-98 0 -143 -44.5t-45 -137.5z" />
<glyph unicode="h" horiz-adv-x="1118" d="M135 0v1450h223v-479q17 9 46 21.5t103.5 33.5t131.5 21q106 0 175.5 -29.5t108.5 -94.5t54.5 -153.5t15.5 -220.5v-549h-223v543q0 67 -4 111.5t-15 84t-31 62t-52.5 35t-79.5 12.5q-50 0 -107.5 -11t-90.5 -23l-32 -11v-803h-223z" />
<glyph unicode="i" horiz-adv-x="493" d="M135 0v1024h223v-1024h-223zM135 1198v236h223v-236h-223z" />
<glyph unicode="j" horiz-adv-x="495" d="M-84 -299q62 39 95.5 63.5t62 52.5t40 58.5t17.5 68t6 95.5v985h221v-987q0 -138 -31.5 -221.5t-103.5 -145t-219 -135.5zM137 1198v236h221v-236h-221z" />
<glyph unicode="k" horiz-adv-x="1021" d="M135 0v1450h223v-838l127 13l242 399h250l-295 -479l311 -545h-252l-249 432l-134 -14v-418h-223z" />
<glyph unicode="l" horiz-adv-x="518" d="M147 0v1450h224v-1450h-224z" />
<glyph unicode="m" horiz-adv-x="1716" d="M135 0v1024h221v-63q16 10 44 24t98.5 38t124.5 24q93 0 155 -24t105 -77q21 11 56.5 28t128.5 45t167 28q105 0 173 -28t108.5 -91.5t56.5 -153t16 -225.5v-549h-221v543q0 66 -3.5 111t-14.5 84.5t-30 62t-50 35t-76 12.5q-50 0 -108.5 -14t-91.5 -28l-33 -13 q6 -15 11 -100.5t5 -162.5v-530h-221v526q0 74 -3.5 121.5t-14 89t-30 64t-51 35t-77.5 12.5q-51 0 -106.5 -13t-85.5 -27l-30 -13v-795h-223z" />
<glyph unicode="n" horiz-adv-x="1118" d="M135 0v1024h221v-63q17 10 45.5 24t103.5 38t134 24q106 0 175.5 -29.5t108.5 -94.5t54.5 -153.5t15.5 -220.5v-549h-221v543q0 166 -35.5 235.5t-146.5 69.5q-53 0 -111 -13t-89 -27l-32 -13v-795h-223z" />
<glyph unicode="o" horiz-adv-x="1085" d="M86 518q0 262 105.5 395.5t351.5 133.5q126 0 215 -35.5t141.5 -105.5t76 -164.5t23.5 -223.5q0 -133 -22 -229t-73.5 -168t-141 -108t-219.5 -36q-129 0 -218.5 36t-141.5 108t-74.5 168t-22.5 229zM311 518q0 -94 9.5 -156t35 -108.5t71 -67t116.5 -20.5t116.5 20.5 t70.5 67t34.5 108t9.5 156.5q0 184 -50 262t-181 78q-132 0 -182 -78t-50 -262z" />
<glyph unicode="p" horiz-adv-x="1099" d="M135 -440v1464h221v-63q16 10 43 24t97 38t125 24q202 0 296.5 -124t94.5 -401q0 -158 -26.5 -263.5t-85.5 -167.5t-142 -88t-205 -26q-81 0 -195 19v-436h-223zM358 186q80 -16 181 -16q140 0 192.5 79.5t52.5 272.5q0 174 -51 250t-151 76q-48 0 -104 -14t-88 -28 l-32 -15v-605z" />
<glyph unicode="q" horiz-adv-x="1095" d="M88 498q0 160 26.5 265t88 168.5t153 89.5t230.5 26q50 0 144 -6.5t162 -12.5l69 -6v-1462h-222v479q-15 -7 -41 -17.5t-92.5 -27.5t-116.5 -17q-212 0 -306.5 119.5t-94.5 401.5zM311 498q0 -169 50.5 -245.5t154.5 -76.5q48 0 104 10t88 20l31 11v629q-98 8 -153 8 q-83 0 -137 -20t-84.5 -66t-42 -109t-11.5 -161z" />
<glyph unicode="r" horiz-adv-x="739" d="M135 0v1024h221v-123q20 13 53.5 32.5t126 59t169.5 54.5v-224q-83 -16 -169.5 -43t-131.5 -46l-46 -19v-715h-223z" />
<glyph unicode="s" horiz-adv-x="960" d="M82 727q0 84 31 146.5t85 99t121 54t146 17.5q67 0 163 -11.5t159 -22.5l63 -11l-4 -186q-242 33 -365 33q-94 0 -136 -25.5t-42 -87.5q0 -50 45.5 -72t198.5 -49q190 -33 262 -96t72 -213q0 -173 -103.5 -249.5t-302.5 -76.5q-63 0 -157.5 11.5t-157.5 23.5l-64 11 l8 186q247 -33 351 -33q111 0 157.5 27t46.5 94q0 38 -17.5 58.5t-66.5 36t-153 32.5q-74 12 -122.5 25t-93.5 35t-70 53.5t-39.5 78.5t-14.5 111z" />
<glyph unicode="t" horiz-adv-x="733" d="M51 834v190h131v297h221v-297h283v-190h-283v-451q0 -125 19 -166t94 -41l168 6l10 -178q-137 -27 -209 -27q-89 0 -145 17.5t-92.5 62.5t-51 116.5t-14.5 184.5v476h-131z" />
<glyph unicode="u" horiz-adv-x="1112" d="M125 489v535h223v-537q0 -76 3 -120.5t12.5 -86t28.5 -61.5t50.5 -31.5t79.5 -11.5q55 0 113.5 13t89.5 27l31 13v795h221v-1024h-221v63q-17 -10 -45.5 -24t-102 -38t-129.5 -24q-88 0 -149.5 19.5t-101.5 56.5t-62.5 101t-31.5 142.5t-9 192.5z" />
<glyph unicode="v" horiz-adv-x="1005" d="M39 1024h233l197 -834h66l204 834h228l-267 -1024h-397z" />
<glyph unicode="w" horiz-adv-x="1572" d="M55 1024h219l162 -834h41l195 814h229l195 -814h41l159 834h222l-218 -1024h-354l-160 702l-159 -702h-355z" />
<glyph unicode="x" horiz-adv-x="950" d="M37 0l297 514l-297 510h237l201 -354l203 354h237l-305 -504l305 -520h-237l-203 350l-201 -350h-237z" />
<glyph unicode="y" horiz-adv-x="1007" d="M41 1024h219l217 -834h55l218 834h221l-389 -1464h-220l123 440h-176z" />
<glyph unicode="z" horiz-adv-x="929" d="M84 0v199l494 626h-494v199h760v-199l-492 -626h492v-199h-760z" />
<glyph unicode="{" horiz-adv-x="731" d="M39 553v174q117 27 171 77.5t54 129.5q0 26 -7 123t-7 137q0 192 90.5 271t312.5 87l2 -188q-109 -7 -148.5 -52t-39.5 -134q0 -35 7 -131.5t7 -124.5q0 -130 -43.5 -187.5t-179.5 -93.5q70 -18 113.5 -42t68 -60.5t33 -79.5t8.5 -109q0 -30 -7 -116t-7 -123 q0 -89 38.5 -136.5t145.5 -54.5v-188q-219 7 -310 88.5t-91 265.5q0 44 7 135t7 113q0 79 -54.5 133t-170.5 86z" />
<glyph unicode="|" horiz-adv-x="516" d="M147 -440v1890h222v-1890h-222z" />
<glyph unicode="}" horiz-adv-x="731" d="M76 1364l2 188q222 -8 312.5 -87t90.5 -271q0 -40 -7 -137t-7 -123q0 -79 54 -129.5t171 -77.5v-174q-116 -32 -170.5 -86t-54.5 -133q0 -22 7 -113t7 -135q0 -184 -91 -265.5t-310 -88.5v188q107 7 145.5 54.5t38.5 136.5q0 37 -7 123t-7 116q0 66 8.5 109t33 79.5 t68 60.5t113.5 42q-136 36 -179.5 93.5t-43.5 187.5q0 28 7 124.5t7 131.5q0 89 -39.5 134t-148.5 52z" />
<glyph unicode="~" d="M131 569q5 4 14.5 11.5t37.5 26t56 32.5t66.5 25.5t71.5 11.5q59 0 212 -52.5t199 -52.5q35 0 87 21t87 42l35 21l19 -178q-5 -4 -13 -11.5t-34 -25.5t-52 -32t-63 -25.5t-70 -11.5q-60 0 -218 52t-195 52q-41 0 -95.5 -21.5t-89.5 -43.5l-34 -21z" />
<glyph unicode="&#xa1;" horiz-adv-x="507" d="M135 -379l21 909h196l21 -909h-238zM135 737v287h240v-287h-240z" />
<glyph unicode="&#xa2;" d="M190 510q0 220 94 328t275 120v222h186v-230q38 -3 83.5 -9t71.5 -11l26 -4l-6 -170q-162 10 -250 10q-138 0 -195 -59t-57 -197q0 -140 56 -196t202 -56q39 0 100.5 2.5t103.5 5.5l42 2l6 -170q-99 -20 -183 -24v-234h-184v226q-186 11 -278.5 115t-92.5 329z" />
<glyph unicode="&#xa3;" d="M158 0v190h161v492h-135v190h135v117q0 116 19.5 191.5t62.5 117.5t100 58t142 16q60 0 134 -10t119 -20l44 -11l-6 -176q-149 19 -262 19q-74 0 -103.5 -42.5t-29.5 -152.5v-107h327v-190h-327v-492h280l148 33l34 -186l-165 -37h-678z" />
<glyph unicode="&#xa4;" d="M86 182l147 146q-49 82 -49 188q0 99 49 186l-147 148l154 154l145 -148q87 49 188 49q100 0 187 -49l147 148l154 -154l-148 -148q50 -89 50 -186q0 -99 -50 -188l148 -146l-154 -153l-147 147q-87 -49 -187 -49q-101 0 -188 49l-145 -147zM373 516q0 -83 58.5 -142 t141.5 -59t142 59t59 142t-59 142t-142 59t-141.5 -59t-58.5 -142z" />
<glyph unicode="&#xa5;" d="M27 1352h254l294 -484l293 484h254l-319 -547h225v-189h-330l-8 -36v-93h338v-188h-338v-299h-227v299h-344v188h344v93l-6 36h-338v189h229z" />
<glyph unicode="&#xa6;" horiz-adv-x="524" d="M152 336h221v-776h-221v776zM152 686v764h221v-764h-221z" />
<glyph unicode="&#xa7;" horiz-adv-x="1042" d="M88 473q0 74 42.5 153.5t84.5 114.5q-46 34 -68 85t-22 139q0 354 422 354q63 0 150.5 -10.5t143.5 -21.5l56 -11l-10 -182q-228 32 -326 32q-124 0 -172.5 -35.5t-48.5 -121.5q0 -67 59.5 -98t225.5 -66q93 -21 147.5 -41t96.5 -54t58.5 -83.5t16.5 -124.5 q0 -72 -29.5 -150t-66.5 -129q40 -35 58 -81.5t18 -133.5q0 -188 -102 -275t-318 -87q-62 0 -155 11t-155 21l-63 11l23 180q220 -31 333 -31q114 0 169 37.5t55 116.5q0 31 -10 52.5t-28 36.5t-54.5 27.5t-78 23.5t-110.5 26q-7 1 -10 2q-92 20 -149.5 42t-101.5 57.5 t-62.5 87t-18.5 126.5zM311 512q0 -72 35.5 -101.5t134.5 -52.5q117 -26 195 -55q13 16 28 69t15 99q0 68 -41.5 98t-155.5 56q-16 4 -53.5 12.5t-62.5 15t-44 13.5q-14 -22 -32.5 -69t-18.5 -85z" />
<glyph unicode="&#xa8;" horiz-adv-x="520" d="M-45 1243v234h213v-234h-213zM383 1243v234h213v-234h-213z" />
<glyph unicode="&#xa9;" horiz-adv-x="1318" d="M106 889q0 246 157 408.5t396 162.5q122 0 226.5 -45.5t175.5 -123t111 -182t40 -220.5q0 -161 -68 -290.5t-195.5 -205.5t-291.5 -76q-156 0 -282.5 75.5t-197.5 206.5t-71 290zM217 889q0 -193 126 -328t314 -135q191 0 318 134.5t127 328.5q0 192 -128 328.5 t-315 136.5q-188 0 -315 -136t-127 -329zM420 895q0 175 59.5 249.5t198.5 74.5q42 0 82.5 -6.5t59.5 -13.5l20 -7l-13 -148q-73 15 -139 15q-56 0 -75 -36t-19 -128q0 -94 20 -135t74 -41q28 0 62.5 3t55.5 6l21 3l13 -141q-66 -33 -168 -33q-137 0 -194.5 75t-57.5 263z " />
<glyph unicode="&#xaa;" horiz-adv-x="825" d="M96 891q0 93 58 139.5t176 52.5l155 9v47q0 53 -94 53q-38 0 -101.5 -3.5t-107.5 -6.5l-45 -4l-6 129q143 43 270 43q139 0 207 -48.5t68 -173.5v-284q17 -21 47 -25l-4 -139q-79 0 -124 8t-62.5 19t-34.5 34q-11 -7 -30.5 -16.5t-72 -26t-96.5 -16.5q-97 0 -150 56 t-53 153zM289 895q0 -64 67 -64q24 0 56.5 8.5t52.5 16.5l20 8v107l-123 -8q-39 -3 -56 -19t-17 -49z" />
<glyph unicode="&#xab;" horiz-adv-x="1175" d="M86 418v166l428 317v-225l-238 -170l238 -193v-227zM625 418v166l428 317v-225l-238 -170l238 -193v-227z" />
<glyph unicode="&#xac;" d="M125 520v199h885v-494h-201v295h-684z" />
<glyph unicode="&#xad;" horiz-adv-x="862" d="M125 451v202h612v-202h-612z" />
<glyph unicode="&#xae;" horiz-adv-x="1318" d="M106 889q0 246 157 408.5t396 162.5q122 0 226.5 -45.5t175.5 -123t111 -182t40 -220.5q0 -161 -68 -290.5t-195 -205.5t-290 -76q-157 0 -284 75.5t-198 206.5t-71 290zM217 889q0 -192 128 -327.5t314 -135.5q190 0 316.5 134.5t126.5 328.5q0 192 -128 328.5 t-315 136.5q-188 0 -315 -136t-127 -329zM422 571v633h256q233 0 233 -205q0 -79 -19.5 -122.5t-70.5 -75.5l99 -230h-172l-76 203h-86v-203h-164zM584 897h84q86 0 86 90q0 92 -97 92h-73v-182z" />
<glyph unicode="&#xaf;" horiz-adv-x="520" d="M-18 1247v168h577v-168h-577z" />
<glyph unicode="&#xb0;" d="M274 1126q0 134 83 216.5t216 82.5t216 -82.5t83 -216.5q0 -133 -82.5 -215t-216.5 -82t-216.5 82t-82.5 215zM406 1126q0 -75 46 -122.5t121 -47.5t123.5 47.5t48.5 122.5t-48.5 123.5t-123.5 48.5q-74 0 -120.5 -48t-46.5 -124z" />
<glyph unicode="&#xb1;" d="M106 55v201h934v-201h-934zM106 573v201h365v236h201v-236h368v-201h-368v-229h-201v229h-365z" />
<glyph unicode="&#xb2;" horiz-adv-x="573" d="M51 979v154l162 145q52 44 75 75.5t23 63.5q0 51 -86 51q-23 0 -63.5 -3.5t-69.5 -6.5l-29 -4l-8 164q138 20 230 20q117 0 166 -45.5t49 -150.5q0 -67 -27 -115t-92 -100l-100 -86h223v-162h-453z" />
<glyph unicode="&#xb3;" horiz-adv-x="573" d="M49 975l12 158q121 -15 197 -15q78 0 78 58q0 29 -18 41t-54 12h-135v147h133q24 0 40.5 15t16.5 39q0 49 -71 49q-36 0 -80.5 -3.5t-71.5 -6.5l-26 -3l-13 154q133 18 217 18q118 0 176 -42.5t58 -133.5q0 -57 -21.5 -94.5t-48.5 -52.5q42 -16 63 -50.5t21 -103.5 q0 -102 -60.5 -152.5t-170.5 -50.5q-44 0 -104.5 4t-98.5 8z" />
<glyph unicode="&#xb4;" horiz-adv-x="548" d="M29 1325l483 207l70 -193l-500 -159z" />
<glyph unicode="&#xb5;" d="M147 -440v1464h224v-586q1 -77 7.5 -122t25 -79t52.5 -47.5t89 -13.5t113 13t89 27l31 13v795h221v-1024h-221v63q-17 -10 -45 -24t-101.5 -38t-129.5 -24q-76 0 -131 15v-432h-224z" />
<glyph unicode="&#xb6;" horiz-adv-x="1220" d="M63 1010q0 172 108 282.5t278 110.5h675v-191h-106v-1212h-193v1212h-174v-1212h-192v621h-15q-169 0 -275 108.5t-106 280.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="489" d="M125 397v295h240v-295h-240z" />
<glyph unicode="&#xb8;" horiz-adv-x="540" d="M72 -453l8 134q70 -5 113 -5t63 15t20 49q0 31 -19.5 43t-63.5 12h-64v207h96v-88q64 -1 105.5 -8t75 -26t48.5 -53t15 -87q0 -107 -56.5 -160t-156.5 -53q-39 0 -85 5t-73 10z" />
<glyph unicode="&#xb9;" horiz-adv-x="573" d="M39 1468l215 150h164v-639h-180v440l-115 -78z" />
<glyph unicode="&#xba;" horiz-adv-x="825" d="M94 1020q0 169 80.5 249.5t239.5 80.5t238 -80t79 -250q0 -338 -317 -338q-320 0 -320 338zM293 1018q0 -84 27.5 -122t93.5 -38t90 37t24 123q0 87 -23.5 122.5t-90.5 35.5t-94 -36.5t-27 -121.5z" />
<glyph unicode="&#xbb;" horiz-adv-x="1177" d="M123 86v227l237 193l-237 170v225l428 -317v-166zM662 86v227l237 193l-237 170v225l428 -317v-166z" />
<glyph unicode="&#xbc;" horiz-adv-x="1110" d="M53 1468l215 150h164v-639h-180v440l-115 -78zM66 59l804 1293l97 -62l-805 -1296zM561 29l107 405h200l-125 -393h97l20 182h158v-182h37v-162h-37v-84h-178v84h-279v150z" />
<glyph unicode="&#xbd;" horiz-adv-x="1097" d="M57 1468l215 150h164v-639h-180v440l-115 -78zM63 59l805 1293l97 -62l-805 -1296zM573 -51l162 145q53 44 76 76t23 63q0 52 -86 52q-23 0 -63.5 -3.5t-69.5 -7.5l-29 -4l-8 164q137 21 229 21q117 0 166 -46t49 -151q0 -67 -27 -115t-92 -100l-100 -86h223v-162h-453 v154z" />
<glyph unicode="&#xbe;" horiz-adv-x="1138" d="M84 975l12 158q121 -15 197 -15q78 0 78 58q0 29 -18 41t-54 12h-135v147h133q24 0 40.5 15t16.5 39q0 49 -71 49q-36 0 -81 -3.5t-72 -6.5l-26 -3l-12 154q133 18 217 18q118 0 176 -42.5t58 -133.5q0 -57 -21.5 -94.5t-48.5 -52.5q42 -16 63 -50.5t21 -103.5 q0 -102 -60.5 -152.5t-170.5 -50.5q-44 0 -104.5 4t-99.5 8zM96 59l805 1293l96 -62l-804 -1296zM594 29l106 405h201l-125 -393h96l21 182h158v-182h36v-162h-36v-84h-179v84h-278v150z" />
<glyph unicode="&#xbf;" horiz-adv-x="894" d="M66 -70q0 137 34 208.5t144 160.5q98 76 132 123.5t34 103.5v68h180q5 -7 13.5 -20.5t22 -55t13.5 -84.5q0 -52 -39 -102.5t-127 -124.5q-113 -92 -145.5 -138.5t-32.5 -115.5q0 -79 50.5 -117.5t166.5 -38.5q56 0 132.5 9.5t124.5 19.5l48 10l12 -170q-21 -8 -57 -19 t-128 -29.5t-161 -18.5q-216 0 -316.5 78t-100.5 253zM387 737v287h238v-287h-238z" />
<glyph unicode="&#xc0;" horiz-adv-x="1226" d="M41 0l346 1403h453l348 -1403h-230l-75 301h-539l-76 -301h-227zM309 1724l72 199l483 -211l-57 -156zM389 502h449l-172 710h-103z" />
<glyph unicode="&#xc1;" horiz-adv-x="1226" d="M41 0l346 1403h453l348 -1403h-230l-75 301h-539l-76 -301h-227zM352 1712l484 211l71 -199l-497 -168zM389 502h449l-172 710h-103z" />
<glyph unicode="&#xc2;" horiz-adv-x="1226" d="M41 0l346 1403h453l348 -1403h-230l-75 301h-539l-76 -301h-227zM240 1589l274 293h193l274 -293h-238l-131 137l-133 -137h-239zM389 502h449l-172 710h-103z" />
<glyph unicode="&#xc3;" horiz-adv-x="1226" d="M41 0l346 1403h453l348 -1403h-230l-75 301h-539l-76 -301h-227zM229 1763q4 5 12 13.5t31 30.5t46 39t55 30.5t59 13.5q49 0 121 -25.5t133 -51t84 -25.5q22 0 61 22.5t67 45.5l28 22l49 -162q-4 -5 -11.5 -13.5t-30 -30t-45 -38t-54 -30t-58.5 -13.5q-55 0 -183.5 51.5 t-158.5 51.5q-24 0 -62.5 -22.5t-65.5 -45.5l-27 -22zM389 502h449l-172 710h-103z" />
<glyph unicode="&#xc4;" horiz-adv-x="1226" d="M41 0l346 1403h453l348 -1403h-230l-75 301h-539l-76 -301h-227zM291 1604v233h213v-233h-213zM389 502h449l-172 710h-103zM719 1604v233h213v-233h-213z" />
<glyph unicode="&#xc5;" horiz-adv-x="1226" d="M41 0l336 1360q-43 59 -43 137q0 112 79 176t199 64t200.5 -64t80.5 -176q0 -78 -43 -137l338 -1360h-230l-75 301h-539l-76 -301h-227zM389 502h449l-172 710h-103zM489 1497q0 -44 33 -69t90 -25t91 25t34 69t-34 70t-91 26t-90 -26t-33 -70z" />
<glyph unicode="&#xc6;" horiz-adv-x="1787" d="M31 0l413 1419h1254v-219h-656v-371h533v-215h-533v-395h656v-219h-881v291h-469l-86 -291h-231zM406 510h411l2 690h-213z" />
<glyph unicode="&#xc7;" horiz-adv-x="1114" d="M106 700q0 158 14.5 270.5t50 202.5t96 143.5t150.5 81t216 27.5q177 0 401 -51l-8 -184q-72 13 -181 23t-181 10q-79 0 -133 -17t-91.5 -52t-58.5 -99t-30 -148t-9 -207q0 -101 5 -172.5t18.5 -133t36.5 -99.5t60 -65t87.5 -38.5t120.5 -11.5q161 0 356 31l6 -188 q-198 -43 -381 -46v-63q64 -1 105.5 -8t75 -26t48.5 -53t15 -87q0 -107 -56.5 -160t-156.5 -53q-39 0 -85 5t-73 10l-26 5l8 134q69 -5 112 -5q84 0 84 64q0 31 -19.5 43t-64.5 12h-63v187q-108 8 -186 42.5t-128.5 91.5t-80.5 146t-42 193t-12 245z" />
<glyph unicode="&#xc8;" horiz-adv-x="1132" d="M162 0v1403h885v-199h-658v-397h535v-197h-535v-409h658v-201h-885zM311 1724l72 199l483 -211l-57 -156z" />
<glyph unicode="&#xc9;" horiz-adv-x="1132" d="M162 0v1403h885v-199h-658v-397h535v-197h-535v-409h658v-201h-885zM336 1712l483 211l72 -199l-498 -168z" />
<glyph unicode="&#xca;" horiz-adv-x="1132" d="M162 0v1403h885v-199h-658v-397h535v-197h-535v-409h658v-201h-885zM236 1589l274 293h192l275 -293h-238l-131 137l-133 -137h-239z" />
<glyph unicode="&#xcb;" horiz-adv-x="1132" d="M162 0v1403h885v-199h-658v-397h535v-197h-535v-409h658v-201h-885zM283 1604v233h213v-233h-213zM711 1604v233h213v-233h-213z" />
<glyph unicode="&#xcc;" horiz-adv-x="550" d="M-47 1724l72 199l483 -211l-57 -156zM162 0v1403h227v-1403h-227z" />
<glyph unicode="&#xcd;" horiz-adv-x="550" d="M20 1712l484 211l71 -199l-497 -168zM162 0v1403h227v-1403h-227z" />
<glyph unicode="&#xce;" horiz-adv-x="550" d="M-100 1589l274 293h193l274 -293h-238l-131 137l-133 -137h-239zM162 0v1403h227v-1403h-227z" />
<glyph unicode="&#xcf;" horiz-adv-x="550" d="M-45 1604v233h213v-233h-213zM162 0v1403h227v-1403h-227zM383 1604v233h213v-233h-213z" />
<glyph unicode="&#xd0;" horiz-adv-x="1318" d="M47 598v217h123v604h481q135 0 233.5 -30t161.5 -84t100.5 -141t52.5 -189t15 -240q0 -101 -6.5 -182.5t-23.5 -159t-45 -136.5t-71.5 -109t-101.5 -81.5t-137.5 -49t-177.5 -17.5h-481v598h-123zM395 217h256q60 0 108 13.5t82 37t59 60.5t40 78t24 96.5t12 109.5t3 123 q0 95 -6.5 161t-27 128t-56 98.5t-95 58t-143.5 21.5h-256v-387h291v-217h-291v-381z" />
<glyph unicode="&#xd1;" horiz-adv-x="1404" d="M162 0v1403h397l426 -1202h31v1202h227v-1403h-389l-436 1204h-29v-1204h-227zM322 1763q4 5 11.5 13.5t31 30.5t46.5 39t54.5 30.5t58.5 13.5q49 0 121 -25.5t133 -51t84 -25.5q22 0 61 22.5t67 45.5l28 22l49 -162q-4 -5 -11.5 -13.5t-30 -30t-45 -38t-54 -30 t-58.5 -13.5q-55 0 -183.5 51.5t-158.5 51.5q-24 0 -62.5 -22.5t-65.5 -45.5l-27 -22z" />
<glyph unicode="&#xd2;" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-131 0 -228.5 29.5t-163 86t-106 145.5t-57.5 199.5t-17 256.5zM336 694q0 -138 14.5 -229.5 t51.5 -159.5t103 -98.5t167 -30.5t166.5 29.5t102.5 97t51 159t14 232.5q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5zM367 1724l71 199l484 -211l-58 -156z" />
<glyph unicode="&#xd3;" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-131 0 -228.5 29.5t-163 86t-106 145.5t-57.5 199.5t-17 256.5zM336 694q0 -138 14.5 -229.5 t51.5 -159.5t103 -98.5t167 -30.5t166.5 29.5t102.5 97t51 159t14 232.5q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5zM371 1712l483 211l72 -199l-498 -168z" />
<glyph unicode="&#xd4;" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-131 0 -228.5 29.5t-163 86t-106 145.5t-57.5 199.5t-17 256.5zM303 1589l275 293h192l274 -293 h-237l-131 137l-133 -137h-240zM336 694q0 -138 14.5 -229.5t51.5 -159.5t103 -98.5t167 -30.5t166.5 29.5t102.5 97t51 159t14 232.5q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5z" />
<glyph unicode="&#xd5;" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-131 0 -228.5 29.5t-163 86t-106 145.5t-57.5 199.5t-17 256.5zM295 1763q4 5 12 13.5t31 30.5 t46 39t55 30.5t59 13.5q49 0 121 -25.5t133 -51t84 -25.5q22 0 60.5 22.5t66.5 45.5l28 22l49 -162q-4 -5 -11.5 -13.5t-30 -30t-45 -38t-53.5 -30t-58 -13.5q-55 0 -183.5 51.5t-158.5 51.5q-24 0 -63 -22.5t-66 -45.5l-27 -22zM336 694q0 -138 14.5 -229.5t51.5 -159.5 t103 -98.5t167 -30.5t166.5 29.5t102.5 97t51 159t14 232.5q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5z" />
<glyph unicode="&#xd6;" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q162 0 273.5 -47t176 -143t92 -226.5t27.5 -314.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-131 0 -228.5 29.5t-163 86t-106 145.5t-57.5 199.5t-17 256.5zM336 694q0 -138 14.5 -229.5 t51.5 -159.5t103 -98.5t167 -30.5t166.5 29.5t102.5 97t51 159t14 232.5q0 110 -9 190t-31 147.5t-59.5 109t-96 64t-138.5 22.5t-138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5zM352 1604v233h213v-233h-213zM780 1604v233h213v-233h-213z" />
<glyph unicode="&#xd7;" d="M127 209l309 303l-307 303l141 141l303 -307l306 309l139 -141l-309 -305l309 -303l-141 -141l-304 309l-303 -309z" />
<glyph unicode="&#xd8;" horiz-adv-x="1343" d="M100 694q0 145 17.5 256.5t58 203t106 150t163 90t227.5 31.5q123 0 229 -32l119 256l168 -72l-127 -272q96 -88 138 -238.5t42 -372.5q0 -185 -27.5 -314t-92.5 -222t-175.5 -137t-273.5 -44q-121 0 -219 25l-117 -252l-164 80l119 254q-102 83 -146.5 233t-44.5 377z M336 694q0 -271 61 -383l416 893q-64 23 -141 23q-80 0 -138.5 -22.5t-96.5 -64t-60.5 -109t-31.5 -148t-9 -189.5zM543 193q63 -17 129 -17q101 0 166.5 29.5t102.5 97t51 159t14 232.5q0 252 -56 375z" />
<glyph unicode="&#xd9;" horiz-adv-x="1331" d="M150 453v950h229v-954q0 -140 71.5 -206.5t213.5 -66.5q288 0 288 273v954h230v-950q0 -248 -130 -362t-388 -114q-257 0 -385.5 114t-128.5 362zM377 1724l72 199l483 -211l-58 -156z" />
<glyph unicode="&#xda;" horiz-adv-x="1331" d="M150 453v950h229v-954q0 -140 71.5 -206.5t213.5 -66.5q288 0 288 273v954h230v-950q0 -248 -130 -362t-388 -114q-257 0 -385.5 114t-128.5 362zM379 1712l483 211l72 -199l-498 -168z" />
<glyph unicode="&#xdb;" horiz-adv-x="1331" d="M150 453v950h229v-954q0 -140 71.5 -206.5t213.5 -66.5q288 0 288 273v954h230v-950q0 -248 -130 -362t-388 -114q-257 0 -385.5 114t-128.5 362zM295 1589l274 293h193l274 -293h-237l-131 137l-133 -137h-240z" />
<glyph unicode="&#xdc;" horiz-adv-x="1331" d="M150 453v950h229v-954q0 -140 71.5 -206.5t213.5 -66.5q288 0 288 273v954h230v-950q0 -248 -130 -362t-388 -114q-257 0 -385.5 114t-128.5 362zM346 1604v233h213v-233h-213zM774 1604v233h213v-233h-213z" />
<glyph unicode="&#xdd;" horiz-adv-x="1124" d="M8 1403h256l297 -602l299 602h254l-436 -825v-578h-229v578zM303 1712l483 211l72 -199l-498 -168z" />
<glyph unicode="&#xde;" horiz-adv-x="1222" d="M162 0v1419h227v-215h287q479 0 479 -473q0 -243 -121.5 -376.5t-357.5 -133.5h-287v-221h-227zM389 442h285q125 0 187.5 76t62.5 213q0 132 -61 194t-189 62h-285v-545z" />
<glyph unicode="&#xdf;" horiz-adv-x="1218" d="M135 0v1090q0 209 103 296t340 87q226 0 332 -73.5t106 -238.5q0 -74 -21 -123.5t-57.5 -78.5t-101.5 -58q-76 -34 -98.5 -52t-22.5 -46q0 -31 33 -56t153 -83q100 -47 152 -85t80 -93.5t28 -137.5q0 -208 -93.5 -289.5t-319.5 -81.5q-54 0 -127.5 9.5t-120.5 19.5 l-47 10l8 181q188 -23 262 -23q118 0 163.5 35t45.5 106q0 62 -36 95t-167 94q-138 60 -191 120t-53 158q0 89 37 140t121 86q87 36 115 64.5t28 74.5q0 70 -45 99.5t-163 29.5q-124 0 -172 -43t-48 -154v-1079h-223z" />
<glyph unicode="&#xe0;" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM227 1339l70 193l483 -207l-53 -145zM293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146z" />
<glyph unicode="&#xe1;" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM215 1325l483 207l70 -193l-500 -159zM293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146z" />
<glyph unicode="&#xe2;" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM180 1198l256 299h142l260 -299h-209l-119 156l-119 -156h-211zM293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146z" />
<glyph unicode="&#xe3;" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM131 1364q4 5 12 12.5t31 27.5t46 35t54 27.5t58 12.5q45 0 144.5 -41t125.5 -41q22 0 60.5 18.5t65.5 36.5l28 18l49 -131q-12 -13 -31.5 -32.5t-71.5 -51.5t-94 -32q-45 0 -143.5 41t-130.5 41q-24 0 -62.5 -17.5t-65.5 -35.5l-26 -17z M293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146z" />
<glyph unicode="&#xe4;" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM170 1243v234h213v-234h-213zM293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146zM598 1243v234h213v-234h-213z" />
<glyph unicode="&#xe5;" horiz-adv-x="1038" d="M70 303q0 156 82.5 225.5t255.5 83.5l264 23v74q0 82 -36 114.5t-114 32.5q-61 0 -157 -5t-162 -10l-66 -5l-8 157q224 54 412 54q186 0 269 -81t83 -257v-467q3 -45 24 -67t66 -28l-6 -170q-96 0 -156 16.5t-116 59.5q-18 -9 -50 -21.5t-119 -33.5t-161 -21 q-152 0 -228.5 83t-76.5 243zM293 309q0 -149 125 -149q52 0 115.5 11t100.5 23l38 11v272l-238 -22q-141 -12 -141 -146zM305 1313q0 96 65.5 161.5t161.5 65.5t163 -66t67 -161q0 -97 -67 -162.5t-163 -65.5q-97 0 -162 65t-65 163zM432 1313q0 -44 29.5 -74.5t73.5 -30.5 q43 0 71.5 30.5t28.5 74.5q0 43 -28.5 72.5t-71.5 29.5q-44 0 -73.5 -29.5t-29.5 -72.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1624" d="M70 303q0 164 87 231.5t275 81.5l240 19v65q0 65 -36 99.5t-99 34.5q-68 0 -166.5 -6t-162.5 -12l-65 -5l-8 197q260 36 414 36q191 0 270 -106q100 106 293 106q217 0 323.5 -114t106.5 -352l-14 -162h-635q2 -123 55 -179.5t178 -56.5q72 0 167 5t153 9l59 5l4 -174 q-235 -48 -413 -48q-207 0 -310 103l-55 -25q-35 -16 -80.5 -31t-127.5 -31t-161 -16q-143 0 -217.5 85.5t-74.5 240.5zM293 309q0 -141 110 -141q51 0 120.5 12.5t112.5 24t50 14.5q-16 96 -16 244l-236 -17q-71 -5 -106 -37.5t-35 -99.5zM893 590h430q0 140 -49 199 t-162 59q-114 0 -166.5 -61.5t-52.5 -196.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="905" d="M90 526q0 276 100 398.5t328 122.5q48 0 125 -9.5t129 -19.5l53 -10l-8 -177q-161 17 -239 17q-156 0 -209.5 -70t-53.5 -252q0 -104 10 -166.5t39.5 -106t80.5 -60.5t135 -17q35 0 94.5 4t101.5 8l43 5l6 -179q-205 -37 -309 -37v-63q64 -1 105.5 -8t75 -26t48.5 -53 t15 -87q0 -107 -56.5 -160t-156.5 -53q-39 0 -85.5 5t-73.5 10l-26 5l9 134q69 -5 112 -5q84 0 84 64q0 31 -19.5 43t-64.5 12h-63v189q-181 23 -255.5 148.5t-74.5 393.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="1040" d="M86 502q0 545 444 545q216 0 323.5 -115.5t107.5 -353.5l-15 -160h-635q2 -126 55.5 -186t178.5 -60q72 0 166.5 4.5t152.5 9.5l58 4l4 -165q-234 -48 -414 -48q-227 0 -326.5 125.5t-99.5 399.5zM236 1339l69 193l483 -207l-53 -145zM309 590h432q0 151 -48.5 211.5 t-162.5 60.5q-115 0 -167.5 -63t-53.5 -209z" />
<glyph unicode="&#xe9;" horiz-adv-x="1040" d="M86 502q0 545 444 545q216 0 323.5 -115.5t107.5 -353.5l-15 -160h-635q2 -126 55.5 -186t178.5 -60q72 0 166.5 4.5t152.5 9.5l58 4l4 -165q-234 -48 -414 -48q-227 0 -326.5 125.5t-99.5 399.5zM250 1325l483 207l70 -193l-500 -159zM309 590h432q0 151 -48.5 211.5 t-162.5 60.5q-115 0 -167.5 -63t-53.5 -209z" />
<glyph unicode="&#xea;" horiz-adv-x="1040" d="M86 502q0 545 444 545q216 0 323.5 -115.5t107.5 -353.5l-15 -160h-635q2 -126 55.5 -186t178.5 -60q72 0 166.5 4.5t152.5 9.5l58 4l4 -165q-234 -48 -414 -48q-227 0 -326.5 125.5t-99.5 399.5zM203 1198l256 299h141l260 -299h-209l-119 156l-118 -156h-211zM309 590 h432q0 151 -48.5 211.5t-162.5 60.5q-115 0 -167.5 -63t-53.5 -209z" />
<glyph unicode="&#xeb;" horiz-adv-x="1040" d="M86 502q0 545 444 545q216 0 323.5 -115.5t107.5 -353.5l-15 -160h-635q2 -126 55.5 -186t178.5 -60q72 0 166.5 4.5t152.5 9.5l58 4l4 -165q-234 -48 -414 -48q-227 0 -326.5 125.5t-99.5 399.5zM205 1243v234h213v-234h-213zM309 590h432q0 151 -48.5 211.5 t-162.5 60.5q-115 0 -167.5 -63t-53.5 -209zM633 1243v234h213v-234h-213z" />
<glyph unicode="&#xec;" horiz-adv-x="493" d="M-121 1339l70 193l483 -207l-53 -145zM135 0v1024h223v-1024h-223z" />
<glyph unicode="&#xed;" horiz-adv-x="493" d="M70 1325l483 207l70 -193l-500 -159zM135 0h223v1024h-223v-1024z" />
<glyph unicode="&#xee;" horiz-adv-x="493" d="M-90 1198l256 299h141l260 -299h-209l-118 156l-119 -156h-211zM135 0h223v1024h-223v-1024z" />
<glyph unicode="&#xef;" horiz-adv-x="493" d="M-82 1243v234h213v-234h-213zM135 0h223v1024h-223v-1024zM346 1243v234h213v-234h-213z" />
<glyph unicode="&#xf0;" horiz-adv-x="1144" d="M82 440q0 208 112 329.5t326 121.5q65 0 140 -15.5t117 -31.5l42 -15q-10 112 -62 196.5t-167 148.5l-254 -170l-92 129l174 116q-96 32 -238 64l35 160q222 -29 395 -95l201 135l94 -129l-133 -88q281 -188 281 -581q0 -385 -117.5 -559t-382.5 -174q-229 0 -350 115.5 t-121 342.5zM315 440q0 -125 59 -191.5t179 -66.5q137 0 201 103.5t65 349.5q-15 6 -42 15.5t-102 25.5t-140 16q-105 0 -162.5 -72t-57.5 -180z" />
<glyph unicode="&#xf1;" horiz-adv-x="1118" d="M135 0h223v795q13 6 35 15t83 23.5t114 14.5q111 0 146.5 -69.5t35.5 -235.5v-543h221v549q0 132 -15.5 220.5t-54.5 153.5t-108.5 94.5t-175.5 29.5q-59 0 -130 -21.5t-112 -43.5l-41 -21v63h-221v-1024zM236 1364q12 13 31.5 32t72.5 51t96 32q45 0 145 -41t126 -41 q22 0 60 18.5t65 36.5l28 18l49 -131q-4 -5 -11.5 -12.5t-30 -27.5t-45 -35.5t-53 -28t-56.5 -12.5q-45 0 -144 41t-131 41q-24 0 -62 -17.5t-64 -35.5l-27 -17z" />
<glyph unicode="&#xf2;" horiz-adv-x="1085" d="M86 518q0 262 105.5 395.5t351.5 133.5q126 0 215 -35.5t141.5 -105.5t76 -164.5t23.5 -223.5q0 -133 -22 -229t-73.5 -168t-141 -108t-219.5 -36q-129 0 -218.5 36t-141.5 108t-74.5 168t-22.5 229zM268 1339l70 193l483 -207l-53 -145zM311 518q0 -94 9.5 -156 t35 -108.5t71 -67t116.5 -20.5t116.5 20.5t70.5 67t34.5 108t9.5 156.5q0 184 -50 262t-181 78q-132 0 -182 -78t-50 -262z" />
<glyph unicode="&#xf3;" horiz-adv-x="1085" d="M86 518q0 -133 22.5 -229t74.5 -168t141.5 -108t218.5 -36q130 0 219.5 36t141 108t73.5 168t22 229q0 129 -23.5 223.5t-76 164.5t-141.5 105.5t-215 35.5q-246 0 -351.5 -133.5t-105.5 -395.5zM270 1325l484 207l69 -193l-499 -159zM311 518q0 184 50 262t182 78 q131 0 181 -78t50 -262q0 -95 -9.5 -156.5t-34.5 -108t-70.5 -67t-116.5 -20.5t-116.5 20.5t-71 67t-35 108.5t-9.5 156z" />
<glyph unicode="&#xf4;" horiz-adv-x="1085" d="M86 518q0 -133 22.5 -229t74.5 -168t141.5 -108t218.5 -36q130 0 219.5 36t141 108t73.5 168t22 229q0 129 -23.5 223.5t-76 164.5t-141.5 105.5t-215 35.5q-246 0 -351.5 -133.5t-105.5 -395.5zM205 1198l256 299h141l260 -299h-209l-118 156l-119 -156h-211zM311 518 q0 184 50 262t182 78q131 0 181 -78t50 -262q0 -95 -9.5 -156.5t-34.5 -108t-70.5 -67t-116.5 -20.5t-116.5 20.5t-71 67t-35 108.5t-9.5 156z" />
<glyph unicode="&#xf5;" horiz-adv-x="1085" d="M86 518q0 -133 22.5 -229t74.5 -168t141.5 -108t218.5 -36q130 0 219.5 36t141 108t73.5 168t22 229q0 129 -23.5 223.5t-76 164.5t-141.5 105.5t-215 35.5q-246 0 -351.5 -133.5t-105.5 -395.5zM199 1364q12 13 31.5 32t72.5 51t96 32q45 0 145 -41t126 -41 q22 0 60 18.5t66 36.5l27 18l49 -131q-4 -5 -11.5 -12.5t-30 -27.5t-45 -35.5t-53 -28t-56.5 -12.5q-45 0 -144 41t-131 41q-24 0 -62 -17.5t-65 -35.5l-26 -17zM311 518q0 184 50 262t182 78q131 0 181 -78t50 -262q0 -95 -9.5 -156.5t-34.5 -108t-70.5 -67t-116.5 -20.5 t-116.5 20.5t-71 67t-35 108.5t-9.5 156z" />
<glyph unicode="&#xf6;" horiz-adv-x="1085" d="M86 518q0 -133 22.5 -229t74.5 -168t141.5 -108t218.5 -36q130 0 219.5 36t141 108t73.5 168t22 229q0 129 -23.5 223.5t-76 164.5t-141.5 105.5t-215 35.5q-246 0 -351.5 -133.5t-105.5 -395.5zM219 1243v234h213v-234h-213zM311 518q0 184 50 262t182 78q131 0 181 -78 t50 -262q0 -95 -9.5 -156.5t-34.5 -108t-70.5 -67t-116.5 -20.5t-116.5 20.5t-71 67t-35 108.5t-9.5 156zM647 1243v234h213v-234h-213z" />
<glyph unicode="&#xf7;" d="M215 494v225h139v158h437v-158h141v-225h-717zM461 47v242h221v-242h-221z" />
<glyph unicode="&#xf8;" horiz-adv-x="1085" d="M86 518q0 262 105.5 395.5t351.5 133.5q47 0 131 -13l84 207l139 -51l-86 -207q188 -113 188 -465q0 -133 -22 -229t-73.5 -168t-141 -108t-219.5 -36q-73 0 -140 13l-88 -215l-137 51l90 215q-97 62 -139.5 180.5t-42.5 296.5zM311 518q0 -202 49 -274l244 608 q-27 6 -61 6q-132 0 -182 -78t-50 -262zM473 172q30 -6 70 -6q71 0 116.5 20.5t70.5 67t34.5 108t9.5 156.5q0 189 -53 264z" />
<glyph unicode="&#xf9;" horiz-adv-x="1112" d="M125 489v535h223v-537q0 -76 3 -120.5t12.5 -86t28.5 -61.5t50.5 -31.5t79.5 -11.5q55 0 113.5 13t89.5 27l31 13v795h221v-1024h-221v63q-17 -10 -45.5 -24t-102 -38t-129.5 -24q-88 0 -149.5 19.5t-101.5 56.5t-62.5 101t-31.5 142.5t-9 192.5zM215 1339l70 193 l483 -207l-53 -145z" />
<glyph unicode="&#xfa;" horiz-adv-x="1112" d="M125 489q0 -114 9 -192.5t31.5 -142.5t62.5 -101t101.5 -56.5t149.5 -19.5q56 0 125.5 21.5t110.5 43.5l41 21v-63h221v1024h-221v-795q-12 -6 -34 -15t-83.5 -23.5t-116.5 -14.5q-48 0 -79.5 11.5t-50.5 31.5t-28.5 61.5t-12.5 86t-3 120.5v537h-223v-535zM289 1325 l483 207l70 -193l-500 -159z" />
<glyph unicode="&#xfb;" horiz-adv-x="1112" d="M125 489q0 -114 9 -192.5t31.5 -142.5t62.5 -101t101.5 -56.5t149.5 -19.5q56 0 125.5 21.5t110.5 43.5l41 21v-63h221v1024h-221v-795q-12 -6 -34 -15t-83.5 -23.5t-116.5 -14.5q-48 0 -79.5 11.5t-50.5 31.5t-28.5 61.5t-12.5 86t-3 120.5v537h-223v-535zM188 1198 l256 299h142l260 -299h-209l-119 156l-119 -156h-211z" />
<glyph unicode="&#xfc;" horiz-adv-x="1112" d="M125 489q0 -114 9 -192.5t31.5 -142.5t62.5 -101t101.5 -56.5t149.5 -19.5q56 0 125.5 21.5t110.5 43.5l41 21v-63h221v1024h-221v-795q-12 -6 -34 -15t-83.5 -23.5t-116.5 -14.5q-48 0 -79.5 11.5t-50.5 31.5t-28.5 61.5t-12.5 86t-3 120.5v537h-223v-535zM240 1243v234 h213v-234h-213zM668 1243v234h213v-234h-213z" />
<glyph unicode="&#xfd;" horiz-adv-x="1007" d="M41 1024h219l217 -834h55l218 834h221l-389 -1464h-220l123 440h-176zM279 1325l483 207l69 -193l-499 -159z" />
<glyph unicode="&#xfe;" horiz-adv-x="1097" d="M135 -440v1890h223v-465q16 7 42.5 17.5t94 27.5t117.5 17q212 0 305 -118t93 -403q0 -160 -25.5 -265t-84 -168.5t-143 -89.5t-212.5 -26q-35 0 -81.5 3.5t-75.5 7.5l-30 4v-432h-223zM358 182q109 -12 170 -12q79 0 129 20t78 66t38.5 108t10.5 160q0 172 -47 248 t-151 76q-48 0 -105 -10t-90 -20l-33 -11v-625z" />
<glyph unicode="&#xff;" horiz-adv-x="1007" d="M41 1024h219l217 -834h55l218 834h221l-389 -1464h-220l123 440h-176zM184 1243v234h213v-234h-213zM612 1243v234h213v-234h-213z" />
<glyph unicode="&#x152;" horiz-adv-x="1867" d="M104 707q0 199 27 333.5t89.5 226.5t165 133.5t255.5 41.5q114 0 260 -23h877v-219h-652v-371h529v-217h-529v-393h652v-219h-873q-153 -23 -264 -23q-129 0 -222.5 30t-154 86t-96.5 148t-50 202.5t-14 263.5zM340 709q0 -98 5.5 -167.5t19.5 -129.5t38 -97.5t62 -64.5 t90 -38t123 -11q60 0 223 14v987q-180 15 -229 15q-79 0 -134.5 -16.5t-94.5 -51t-61 -96t-32 -143.5t-10 -201z" />
<glyph unicode="&#x153;" horiz-adv-x="1728" d="M86 518q0 129 23.5 223t76.5 163.5t142.5 104.5t216.5 35t210 -42.5t132 -143.5q53 102 134.5 144t195.5 42q218 0 325 -114t107 -352l-17 -162h-635q2 -123 56 -179.5t180 -56.5q72 0 166 5t153 9l58 5l4 -174q-234 -48 -414 -48q-118 0 -195.5 37t-125.5 123 q-50 -86 -130 -123t-204 -37q-130 0 -220 36t-142 108t-74.5 168t-22.5 229zM311 518q0 -183 48.5 -261.5t185.5 -78.5q70 0 115.5 20.5t70.5 66t34 104t9 147.5q0 173 -52 251.5t-177 78.5q-132 0 -183 -76t-51 -252zM997 590h430q0 141 -48 199.5t-162 58.5 q-113 0 -166.5 -62.5t-53.5 -195.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1124" d="M8 1403h256l297 -602l299 602h254l-436 -825v-578h-229v578zM238 1604v233h213v-233h-213zM666 1604v233h213v-233h-213z" />
<glyph unicode="&#x2c6;" horiz-adv-x="520" d="M-45 1198l256 299h141l260 -299h-209l-118 156l-119 -156h-211z" />
<glyph unicode="&#x2dc;" horiz-adv-x="520" d="M-51 1364q4 5 12 12.5t31 27.5t46 35t54 27.5t58 12.5q45 0 144.5 -41t125.5 -41q22 0 60 18.5t66 36.5l27 18l50 -131q-12 -13 -31.5 -32.5t-71.5 -51.5t-94 -32q-45 0 -143.5 41t-130.5 41q-24 0 -62.5 -17.5t-65.5 -35.5l-26 -17z" />
<glyph unicode="&#x2000;" horiz-adv-x="961" />
<glyph unicode="&#x2001;" horiz-adv-x="1923" />
<glyph unicode="&#x2002;" horiz-adv-x="961" />
<glyph unicode="&#x2003;" horiz-adv-x="1923" />
<glyph unicode="&#x2004;" horiz-adv-x="641" />
<glyph unicode="&#x2005;" horiz-adv-x="480" />
<glyph unicode="&#x2006;" horiz-adv-x="320" />
<glyph unicode="&#x2007;" horiz-adv-x="320" />
<glyph unicode="&#x2008;" horiz-adv-x="240" />
<glyph unicode="&#x2009;" horiz-adv-x="384" />
<glyph unicode="&#x200a;" horiz-adv-x="106" />
<glyph unicode="&#x2010;" horiz-adv-x="862" d="M125 451v202h612v-202h-612z" />
<glyph unicode="&#x2011;" horiz-adv-x="862" d="M125 451v202h612v-202h-612z" />
<glyph unicode="&#x2012;" horiz-adv-x="862" d="M125 451v202h612v-202h-612z" />
<glyph unicode="&#x2013;" horiz-adv-x="1273" d="M125 451v190h1024v-190h-1024z" />
<glyph unicode="&#x2014;" horiz-adv-x="2297" d="M125 451v190h2048v-190h-2048z" />
<glyph unicode="&#x2018;" horiz-adv-x="495" d="M86 934l156 481h170l-93 -481h-233z" />
<glyph unicode="&#x2019;" horiz-adv-x="487" d="M96 936l92 481h234l-156 -481h-170z" />
<glyph unicode="&#x201a;" horiz-adv-x="489" d="M117 -117l45 232h110l-73 -232h-82z" />
<glyph unicode="&#x201c;" horiz-adv-x="845" d="M86 934l156 481h170l-93 -481h-233zM436 934l156 481h170l-92 -481h-234z" />
<glyph unicode="&#x201d;" horiz-adv-x="843" d="M96 938l92 481h234l-156 -481h-170zM451 938l92 481h233l-155 -481h-170z" />
<glyph unicode="&#x201e;" horiz-adv-x="806" d="M12 -246l156 482h170l-92 -482h-234zM369 -246l155 482h170l-92 -482h-233z" />
<glyph unicode="&#x2022;" horiz-adv-x="942" d="M215 211v577h512v-577h-512z" />
<glyph unicode="&#x2026;" horiz-adv-x="1531" d="M125 0v295h240v-295h-240zM647 0v295h240v-295h-240zM1167 0v295h240v-295h-240z" />
<glyph unicode="&#x202f;" horiz-adv-x="384" />
<glyph unicode="&#x2039;" horiz-adv-x="636" d="M86 418v166l428 317v-225l-238 -170l238 -193v-227z" />
<glyph unicode="&#x203a;" horiz-adv-x="636" d="M121 100v228l237 192l-237 170v225l428 -317v-164z" />
<glyph unicode="&#x205f;" horiz-adv-x="480" />
<glyph unicode="&#x20ac;" d="M57 414v172h117q-2 29 -2 90v72h-115v172h127q28 240 140.5 347t355.5 107q153 0 387 -49l-8 -178q-67 12 -172 21.5t-178 9.5q-139 0 -206 -58t-89 -200h528v-172h-543v-72v-90h543v-172h-528q23 -131 91 -185.5t210 -54.5q141 0 344 29l6 -180q-212 -46 -385 -46 q-238 0 -351 106t-143 331h-129z" />
<glyph unicode="&#x2122;" horiz-adv-x="1368" d="M174 1169v138h410v-138h-107v-489h-151v489h-152zM641 678v629h182l107 -369l114 369h181v-629h-142v401l-98 -364h-102l-101 364v-401h-141z" />
<glyph unicode="&#xe000;" horiz-adv-x="1024" d="M0 0v1024h1024v-1024h-1024z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Binary file not shown.

103
footer.php Normal file
View file

@ -0,0 +1,103 @@
</div><!--/.main-inner-->
</div><!--/.main-->
</div><!--/.container-inner-->
</div><!--/.container-->
<footer id="footer">
<?php if ( ot_get_option('footer-ads') == 'on' ): ?>
<section class="container" id="footer-ads">
<div class="container-inner">
<?php dynamic_sidebar( 'footer-ads' ); ?>
</div><!--/.container-inner-->
</section><!--/.container-->
<?php endif; ?>
<?php // footer widgets
$total = 4;
if ( ot_get_option( 'footer-widgets' ) != '' ) {
$total = ot_get_option( 'footer-widgets' );
if( $total == 1) $class = 'one-full';
if( $total == 2) $class = 'one-half';
if( $total == 3) $class = 'one-third';
if( $total == 4) $class = 'one-fourth';
}
if ( ( is_active_sidebar( 'footer-1' ) ||
is_active_sidebar( 'footer-2' ) ||
is_active_sidebar( 'footer-3' ) ||
is_active_sidebar( 'footer-4' ) ) && $total > 0 )
{ ?>
<section class="container" id="footer-widgets">
<div class="container-inner">
<div class="pad group">
<?php $i = 0; while ( $i < $total ) { $i++; ?>
<?php if ( is_active_sidebar( 'footer-' . $i ) ) { ?>
<div class="footer-widget-<?php echo $i; ?> grid <?php echo $class; ?> <?php if ( $i == $total ) { echo 'last'; } ?>">
<?php dynamic_sidebar( 'footer-' . $i ); ?>
</div>
<?php } ?>
<?php } ?>
</div><!--/.pad-->
</div><!--/.container-inner-->
</section><!--/.container-->
<?php } ?>
<?php if ( has_nav_menu( 'footer' ) ): ?>
<nav class="nav-container group" id="nav-footer">
<div class="nav-toggle"><i class="fa fa-bars"></i></div>
<div class="nav-text"><!-- put your mobile menu text here --></div>
<div class="nav-wrap"><?php wp_nav_menu( array('theme_location'=>'footer','menu_class'=>'nav container group','container'=>'','menu_id'=>'','fallback_cb'=>false) ); ?></div>
</nav><!--/#nav-footer-->
<?php endif; ?>
<section class="container" id="footer-bottom">
<div class="container-inner">
<a id="back-to-top" href="#"><i class="fa fa-angle-up"></i></a>
<div class="pad group">
<div class="grid one-half">
<?php if ( ot_get_option('footer-logo') ): ?>
<img id="footer-logo" src="<?php echo ot_get_option('footer-logo'); ?>" alt="<?php get_bloginfo('name'); ?>">
<?php endif; ?>
<div id="copyright">
<?php if ( ot_get_option( 'copyright' ) ): ?>
<p><?php echo ot_get_option( 'copyright' ); ?></p>
<?php else: ?>
<p><?php bloginfo(); ?> &copy; <?php echo date( 'Y' ); ?>. <?php _e( 'All Rights Reserved.', 'blogline' ); ?></p>
<?php endif; ?>
</div><!--/#copyright-->
<?php if ( ot_get_option( 'credit' ) != 'off' ): ?>
<div id="credit">
<p><?php _e('Powered by','blogline'); ?> <a href="http://wordpress.org" rel="nofollow">WordPress</a>. <?php _e('Theme by','blogline'); ?> <a href="http://alxmedia.se" rel="nofollow">Alx</a>.</p>
</div><!--/#credit-->
<?php endif; ?>
</div>
<div class="grid one-half last">
<?php alx_social_links() ; ?>
</div>
</div><!--/.pad-->
</div><!--/.container-inner-->
</section><!--/.container-->
</footer><!--/#footer-->
</div><!--/#wrapper-->
<?php wp_footer(); ?>
</body>
</html>

840
functions.php Normal file
View file

@ -0,0 +1,840 @@
<?php
/* ------------------------------------------------------------------------- *
* Custom functions
/* ------------------------------------------------------------------------- */
// Use a child theme instead of placing custom functions here
// http://codex.wordpress.org/Child_Themes
/* ------------------------------------------------------------------------- *
* OptionTree framework integration: Use in theme mode
/* ------------------------------------------------------------------------- */
add_filter( 'ot_show_pages', '__return_false' );
add_filter( 'ot_show_new_layout', '__return_false' );
add_filter( 'ot_theme_mode', '__return_true' );
load_template( get_template_directory() . '/option-tree/ot-loader.php' );
/* ------------------------------------------------------------------------- *
* Load theme files
/* ------------------------------------------------------------------------- */
if ( ! function_exists( 'alx_load' ) ) {
function alx_load() {
// Load theme languages
load_theme_textdomain( 'blogline', get_template_directory().'/languages' );
// Load theme options and meta boxes
load_template( get_template_directory() . '/functions/theme-options.php' );
load_template( get_template_directory() . '/functions/meta-boxes.php' );
// Load custom widgets
load_template( get_template_directory() . '/functions/widgets/alx-tabs.php' );
load_template( get_template_directory() . '/functions/widgets/alx-video.php' );
load_template( get_template_directory() . '/functions/widgets/alx-posts.php' );
// Load custom shortcodes
load_template( get_template_directory() . '/functions/shortcodes.php' );
// Load dynamic styles
load_template( get_template_directory() . '/functions/dynamic-styles.php' );
// Load TGM plugin activation
load_template( get_template_directory() . '/functions/class-tgm-plugin-activation.php' );
}
}
add_action( 'after_setup_theme', 'alx_load' );
/* ------------------------------------------------------------------------- *
* Base functionality
/* ------------------------------------------------------------------------- */
// Content width
if ( !isset( $content_width ) ) { $content_width = 620; }
/* Theme setup
/* ------------------------------------ */
if ( ! function_exists( 'alx_setup' ) ) {
function alx_setup() {
// Enable title tag
add_theme_support( 'title-tag' );
// Enable automatic feed links
add_theme_support( 'automatic-feed-links' );
// Enable featured image
add_theme_support( 'post-thumbnails' );
// Enable post format support
add_theme_support( 'post-formats', array( 'image', 'gallery', 'video', 'audio' ) );
// Declare WooCommerce support
add_theme_support( 'woocommerce' );
// Thumbnail sizes
add_image_size( 'thumb-small', 200, 200, true );
add_image_size( 'thumb-medium', 520, 292, true );
add_image_size( 'thumb-large', 720, 404, true );
add_image_size( 'thumb-list', 320, 320, true );
// Custom menu areas
register_nav_menus( array(
'topbar' => 'Topbar',
) );
}
}
add_action( 'after_setup_theme', 'alx_setup' );
/* Register sidebars
/* ------------------------------------ */
if ( ! function_exists( 'alx_sidebars' ) ) {
function alx_sidebars() {
register_sidebar(array( 'name' => 'Primary','id' => 'primary','description' => "Normal full width sidebar", 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>'));
if ( ot_get_option('footer-ads') == 'on' ) { register_sidebar(array( 'name' => 'Footer Ads','id' => 'footer-ads', 'description' => "Footer ads area", 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
if ( ot_get_option('frontpage-widgets-top') == 'on' ) { register_sidebar(array( 'name' => 'Frontpage Top 1','id' => 'frontpage-top-1', 'description' => "Frontpage area", 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
if ( ot_get_option('frontpage-widgets-top') == 'on' ) { register_sidebar(array( 'name' => 'Frontpage Top 2','id' => 'frontpage-top-2', 'description' => "Frontpage area", 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
if ( ot_get_option('frontpage-widgets-bottom') == 'on' ) { register_sidebar(array( 'name' => 'Frontpage Bottom 1','id' => 'frontpage-bottom-1', 'description' => "Frontpage area", 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
if ( ot_get_option('frontpage-widgets-bottom') == 'on' ) { register_sidebar(array( 'name' => 'Frontpage Bottom 2','id' => 'frontpage-bottom-2', 'description' => "Frontpage area", 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
if ( ot_get_option('footer-widgets') >= '1' ) { register_sidebar(array( 'name' => 'Footer 1','id' => 'footer-1', 'description' => "Widgetized footer", 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
if ( ot_get_option('footer-widgets') >= '2' ) { register_sidebar(array( 'name' => 'Footer 2','id' => 'footer-2', 'description' => "Widgetized footer", 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
if ( ot_get_option('footer-widgets') >= '3' ) { register_sidebar(array( 'name' => 'Footer 3','id' => 'footer-3', 'description' => "Widgetized footer", 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
if ( ot_get_option('footer-widgets') >= '4' ) { register_sidebar(array( 'name' => 'Footer 4','id' => 'footer-4', 'description' => "Widgetized footer", 'before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>')); }
}
}
add_action( 'widgets_init', 'alx_sidebars' );
/* Enqueue javascript
/* ------------------------------------ */
if ( ! function_exists( 'alx_scripts' ) ) {
function alx_scripts() {
wp_enqueue_script( 'flexslider', get_template_directory_uri() . '/js/jquery.flexslider.min.js', array( 'jquery' ),'', false );
wp_enqueue_script( 'fitvids', get_template_directory_uri() . '/js/jquery.fitvids.js', array( 'jquery' ),'', true );
wp_enqueue_script( 'owl-carousel', get_template_directory_uri() . '/js/owl.carousel.min.js', array( 'jquery' ),'', true );
wp_enqueue_script( 'scripts', get_template_directory_uri() . '/js/scripts.js', array( 'jquery' ),'', true );
if ( is_singular() ) { wp_enqueue_script( 'sharrre', get_template_directory_uri() . '/js/jquery.sharrre.min.js', array( 'jquery' ),'', true ); }
if ( is_singular() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); }
}
}
add_action( 'wp_enqueue_scripts', 'alx_scripts' );
/* Enqueue css
/* ------------------------------------ */
if ( ! function_exists( 'alx_styles' ) ) {
function alx_styles() {
wp_enqueue_style( 'style', get_stylesheet_uri() );
if ( ot_get_option('responsive') != 'off' ) { wp_enqueue_style( 'responsive', get_template_directory_uri().'/responsive.css' ); }
if ( ot_get_option('custom') == 'on' ) { wp_enqueue_style( 'custom', get_template_directory_uri().'/custom.css' ); }
wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/fonts/font-awesome.min.css' );
}
}
add_action( 'wp_enqueue_scripts', 'alx_styles' );
/* Register custom sidebars
/* ------------------------------------ */
if ( ! function_exists( 'alx_custom_sidebars' ) ) {
function alx_custom_sidebars() {
if ( !ot_get_option('sidebar-areas') =='' ) {
$sidebars = ot_get_option('sidebar-areas', array());
if ( !empty( $sidebars ) ) {
foreach( $sidebars as $sidebar ) {
if ( isset($sidebar['title']) && !empty($sidebar['title']) && isset($sidebar['id']) && !empty($sidebar['id']) && ($sidebar['id'] !='sidebar-') ) {
register_sidebar(array('name' => ''.esc_attr( $sidebar['title'] ).'','id' => ''.esc_attr( strtolower($sidebar['id']) ).'','before_widget' => '<div id="%1$s" class="widget %2$s">','after_widget' => '</div>','before_title' => '<h3 class="group"><span>','after_title' => '</span></h3>'));
}
}
}
}
}
}
add_action( 'widgets_init', 'alx_custom_sidebars' );
/* ------------------------------------------------------------------------- *
* Template functions
/* ------------------------------------------------------------------------- */
/* Layout class
/* ------------------------------------ */
if ( ! function_exists( 'alx_layout_class' ) ) {
function alx_layout_class() {
// Default layout
$layout = 'col-2cl';
$default = 'col-2cl';
// Check for page/post specific layout
if ( is_page() || is_single() ) {
// Reset post data
wp_reset_postdata();
global $post;
// Get meta
$meta = get_post_meta($post->ID,'_layout',true);
// Get if set and not set to inherit
if ( isset($meta) && !empty($meta) && $meta != 'inherit' ) { $layout = $meta; }
// Else check for page-global / single-global
elseif ( is_single() && ( ot_get_option('layout-single') !='inherit' ) ) $layout = ot_get_option('layout-single',''.$default.'');
elseif ( is_page() && ( ot_get_option('layout-page') !='inherit' ) ) $layout = ot_get_option('layout-page',''.$default.'');
// Else get global option
else $layout = ot_get_option('layout-global',''.$default.'');
}
// Set layout based on page
elseif ( is_home() && ( ot_get_option('layout-home') !='inherit' ) ) $layout = ot_get_option('layout-home',''.$default.'');
elseif ( is_category() && ( ot_get_option('layout-archive-category') !='inherit' ) ) $layout = ot_get_option('layout-archive-category',''.$default.'');
elseif ( is_archive() && ( ot_get_option('layout-archive') !='inherit' ) ) $layout = ot_get_option('layout-archive',''.$default.'');
elseif ( is_search() && ( ot_get_option('layout-search') !='inherit' ) ) $layout = ot_get_option('layout-search',''.$default.'');
elseif ( is_404() && ( ot_get_option('layout-404') !='inherit' ) ) $layout = ot_get_option('layout-404',''.$default.'');
// Global option
else $layout = ot_get_option('layout-global',''.$default.'');
// Return layout class
return $layout;
}
}
/* Dynamic sidebar primary
/* ------------------------------------ */
if ( ! function_exists( 'alx_sidebar_primary' ) ) {
function alx_sidebar_primary() {
// Default sidebar
$sidebar = 'primary';
// Set sidebar based on page
if ( is_home() && ot_get_option('s1-home') ) $sidebar = ot_get_option('s1-home');
if ( is_single() && ot_get_option('s1-single') ) $sidebar = ot_get_option('s1-single');
if ( is_archive() && ot_get_option('s1-archive') ) $sidebar = ot_get_option('s1-archive');
if ( is_category() && ot_get_option('s1-archive-category') ) $sidebar = ot_get_option('s1-archive-category');
if ( is_search() && ot_get_option('s1-search') ) $sidebar = ot_get_option('s1-search');
if ( is_404() && ot_get_option('s1-404') ) $sidebar = ot_get_option('s1-404');
if ( is_page() && ot_get_option('s1-page') ) $sidebar = ot_get_option('s1-page');
// Check for page/post specific sidebar
if ( is_page() || is_single() ) {
// Reset post data
wp_reset_postdata();
global $post;
// Get meta
$meta = get_post_meta($post->ID,'_sidebar_primary',true);
if ( $meta ) { $sidebar = $meta; }
}
// Return sidebar
return $sidebar;
}
}
/* Dynamic sidebar secondary
/* ------------------------------------ */
if ( ! function_exists( 'alx_sidebar_secondary' ) ) {
function alx_sidebar_secondary() {
// Default sidebar
$sidebar = 'secondary';
// Set sidebar based on page
if ( is_home() && ot_get_option('s2-home') ) $sidebar = ot_get_option('s2-home');
if ( is_single() && ot_get_option('s2-single') ) $sidebar = ot_get_option('s2-single');
if ( is_archive() && ot_get_option('s2-archive') ) $sidebar = ot_get_option('s2-archive');
if ( is_category() && ot_get_option('s2-archive-category') ) $sidebar = ot_get_option('s2-archive-category');
if ( is_search() && ot_get_option('s2-search') ) $sidebar = ot_get_option('s2-search');
if ( is_404() && ot_get_option('s2-404') ) $sidebar = ot_get_option('s2-404');
if ( is_page() && ot_get_option('s2-page') ) $sidebar = ot_get_option('s2-page');
// Check for page/post specific sidebar
if ( is_page() || is_single() ) {
// Reset post data
wp_reset_postdata();
global $post;
// Get meta
$meta = get_post_meta($post->ID,'_sidebar_secondary',true);
if ( $meta ) { $sidebar = $meta; }
}
// Return sidebar
return $sidebar;
}
}
/* Social links
/* ------------------------------------ */
if ( ! function_exists( 'alx_social_links' ) ) {
function alx_social_links() {
if ( !ot_get_option('social-links') =='' ) {
$links = ot_get_option('social-links', array());
if ( !empty( $links ) ) {
echo '<ul class="social-links">';
foreach( $links as $item ) {
// Build each separate html-section only if set
if ( isset($item['title']) && !empty($item['title']) )
{ $title = 'title="' .esc_attr( $item['title'] ). '"'; } else $title = '';
if ( isset($item['social-link']) && !empty($item['social-link']) )
{ $link = 'href="' .esc_attr( $item['social-link'] ). '"'; } else $link = '';
if ( isset($item['social-target']) && !empty($item['social-target']) )
{ $target = 'target="' .$item['social-target']. '"'; } else $target = '';
if ( isset($item['social-icon']) && !empty($item['social-icon']) )
{ $icon = 'class="fa ' .esc_attr( $item['social-icon'] ). '"'; } else $icon = '';
if ( isset($item['social-color']) && !empty($item['social-color']) )
{ $color = 'style="color: ' .$item['social-color']. ';"'; } else $color = '';
// Put them together
if ( isset($item['title']) && !empty($item['title']) && isset($item['social-icon']) && !empty($item['social-icon']) && ($item['social-icon'] !='fa-') ) {
echo '<li><a rel="nofollow" class="social-tooltip" '.$title.' '.$link.' '.$target.'><i '.$icon.' '.$color.'></i></a></li>';
}
}
echo '</ul>';
}
}
}
}
/* Site name/logo
/* ------------------------------------ */
if ( ! function_exists( 'alx_site_title' ) ) {
function alx_site_title() {
// Text or image?
if ( ot_get_option('custom-logo') ) {
$logo = '<img src="'.ot_get_option('custom-logo').'" alt="'.get_bloginfo('name').'">';
} else {
$logo = get_bloginfo('name');
}
$link = '<a href="'.home_url('/').'" rel="home">'.$logo.'</a>';
if ( is_front_page() || is_home() ) {
$sitename = '<h1 class="site-title">'.$link.'</h1>'."\n";
} else {
$sitename = '<p class="site-title">'.$link.'</p>'."\n";
}
return $sitename;
}
}
/* Page title
/* ------------------------------------ */
if ( ! function_exists( 'alx_page_title' ) ) {
function alx_page_title() {
global $post;
$heading = esc_attr( get_post_meta($post->ID,'_heading',true) );
$subheading = esc_attr( get_post_meta($post->ID,'_subheading',true) );
$title = $heading?$heading:the_title();
if($subheading) {
$title = $title.' <span>'.$subheading.'</span>';
}
return $title;
}
}
/* Blog title
/* ------------------------------------ */
if ( ! function_exists( 'alx_blog_title' ) ) {
function alx_blog_title() {
global $post;
$heading = esc_attr( ot_get_option('blog-heading') );
$subheading = esc_attr( ot_get_option('blog-subheading') );
if($heading) {
$title = $heading;
} else {
$title = get_bloginfo('name');
}
if($subheading) {
$title = $title.' <span>'.$subheading.'</span>';
}
return $title;
}
}
/* Related posts
/* ------------------------------------ */
if ( ! function_exists( 'alx_related_posts' ) ) {
function alx_related_posts() {
wp_reset_postdata();
global $post;
// Define shared post arguments
$args = array(
'no_found_rows' => true,
'update_post_meta_cache' => false,
'update_post_term_cache' => false,
'ignore_sticky_posts' => 1,
'orderby' => 'rand',
'post__not_in' => array($post->ID),
'posts_per_page' => 3
);
// Related by categories
if ( ot_get_option('related-posts') == 'categories' ) {
$cats = get_post_meta($post->ID, 'related-cat', true);
if ( !$cats ) {
$cats = wp_get_post_categories($post->ID, array('fields'=>'ids'));
$args['category__in'] = $cats;
} else {
$args['cat'] = $cats;
}
}
// Related by tags
if ( ot_get_option('related-posts') == 'tags' ) {
$tags = get_post_meta($post->ID, 'related-tag', true);
if ( !$tags ) {
$tags = wp_get_post_tags($post->ID, array('fields'=>'ids'));
$args['tag__in'] = $tags;
} else {
$args['tag_slug__in'] = explode(',', $tags);
}
if ( !$tags ) { $break = true; }
}
$query = !isset($break)?new WP_Query($args):new WP_Query;
return $query;
}
}
/* Get images attached to post
/* ------------------------------------ */
if ( ! function_exists( 'alx_post_images' ) ) {
function alx_post_images( $args=array() ) {
global $post;
$defaults = array(
'numberposts' => -1,
'order' => 'ASC',
'orderby' => 'menu_order',
'post_mime_type' => 'image',
'post_parent' => $post->ID,
'post_type' => 'attachment',
);
$args = wp_parse_args( $args, $defaults );
return get_posts( $args );
}
}
/* Get featured post ids
/* ------------------------------------ */
if ( ! function_exists( 'alx_get_featured_post_ids' ) ) {
function alx_get_featured_post_ids() {
$args = array(
'category' => ot_get_option('featured-category'),
'numberposts' => ot_get_option('featured-posts-count')
);
$posts = get_posts($args);
if ( !$posts ) return false;
foreach ( $posts as $post )
$ids[] = $post->ID;
return $ids;
}
}
/* ------------------------------------------------------------------------- *
* Admin panel functions
/* ------------------------------------------------------------------------- */
/* Post formats script
/* ------------------------------------ */
if ( ! function_exists( 'alx_post_formats_script' ) ) {
function alx_post_formats_script( $hook ) {
// Only load on posts, pages
if ( !in_array($hook, array('post.php','post-new.php')) )
return;
wp_enqueue_script('post-formats', get_template_directory_uri() . '/functions/js/post-formats.js', array( 'jquery' ));
}
}
add_action( 'admin_enqueue_scripts', 'alx_post_formats_script');
/* ------------------------------------------------------------------------- *
* Filters
/* ------------------------------------------------------------------------- */
/* Body class
/* ------------------------------------ */
if ( ! function_exists( 'alx_body_class' ) ) {
function alx_body_class( $classes ) {
$classes[] = alx_layout_class();
if ( ot_get_option( 'boxed' ) != 'on' ) { $classes[] = 'full-width'; }
if ( ot_get_option( 'boxed' ) == 'on' ) { $classes[] = 'boxed'; }
if ( has_nav_menu('topbar') ) { $classes[] = 'topbar-enabled'; }
if ( ot_get_option( 'mobile-sidebar-hide' ) == 's1' ) { $classes[] = 'mobile-sidebar-hide-s1'; }
if ( ot_get_option( 'mobile-sidebar-hide' ) == 's2' ) { $classes[] = 'mobile-sidebar-hide-s2'; }
if ( ot_get_option( 'mobile-sidebar-hide' ) == 's1-s2' ) { $classes[] = 'mobile-sidebar-hide'; }
return $classes;
}
}
add_filter( 'body_class', 'alx_body_class' );
/* Custom rss feed
/* ------------------------------------ */
if ( ! function_exists( 'alx_feed_link' ) ) {
function alx_feed_link( $output, $feed ) {
// Do not redirect comments feed
if ( strpos( $output, 'comments' ) )
return $output;
// Return feed url
return esc_attr( ot_get_option('rss-feed',$output) );
}
}
add_filter( 'feed_link', 'alx_feed_link', 10, 2 );
/* Custom favicon
/* ------------------------------------ */
if ( ! function_exists( 'alx_favicon' ) ) {
function alx_favicon() {
if ( ot_get_option('favicon') ) {
echo '<link rel="shortcut icon" href="'.ot_get_option('favicon').'" />'."\n";
}
}
}
add_filter( 'wp_head', 'alx_favicon' );
/* Excerpt ending
/* ------------------------------------ */
if ( ! function_exists( 'alx_excerpt_more' ) ) {
function alx_excerpt_more( $more ) {
return '&#46;&#46;&#46;';
}
}
add_filter( 'excerpt_more', 'alx_excerpt_more' );
/* Excerpt length
/* ------------------------------------ */
if ( ! function_exists( 'alx_excerpt_length' ) ) {
function alx_excerpt_length( $length ) {
return ot_get_option('excerpt-length',$length);
}
}
add_filter( 'excerpt_length', 'alx_excerpt_length', 999 );
/* Add wmode transparent to media embeds
/* ------------------------------------ */
if ( ! function_exists( 'alx_embed_wmode_transparent' ) ) {
function alx_embed_wmode_transparent( $html, $url, $attr ) {
if ( strpos( $html, "<embed src=" ) !== false )
{ return str_replace('</param><embed', '</param><param name="wmode" value="opaque"></param><embed wmode="opaque" ', $html); }
elseif ( strpos ( $html, 'feature=oembed' ) !== false )
{ return str_replace( 'feature=oembed', 'feature=oembed&wmode=opaque', $html ); }
else
{ return $html; }
}
}
add_filter( 'embed_oembed_html', 'alx_embed_wmode_transparent', 10, 3 );
/* Add responsive container to embeds
/* ------------------------------------ */
if ( ! function_exists( 'alx_embed_html' ) ) {
function alx_embed_html( $html, $url ) {
$pattern = '/^https?:\/\/(www\.)?twitter\.com/';
$is_twitter = preg_match( $pattern, $url );
if ( 1 === $is_twitter ) {
return $html;
}
return '<div class="video-container">' . $html . '</div>';
}
}
add_filter( 'embed_oembed_html', 'alx_embed_html', 10, 3 );
/* Add responsive container to jetpack embeds
/* ------------------------------------ */
if ( ! function_exists( 'alx_embed_html_jp' ) ) {
function alx_embed_html_jp( $html ) {
return '<div class="video-container">' . $html . '</div>';
}
}
add_filter( 'video_embed_html', 'alx_embed_html_jp' );
/* Upscale cropped thumbnails
/* ------------------------------------ */
if ( ! function_exists( 'alx_thumbnail_upscale' ) ) {
function alx_thumbnail_upscale( $default, $orig_w, $orig_h, $new_w, $new_h, $crop ){
if ( !$crop ) return null; // let the wordpress default function handle this
$aspect_ratio = $orig_w / $orig_h;
$size_ratio = max($new_w / $orig_w, $new_h / $orig_h);
$crop_w = round($new_w / $size_ratio);
$crop_h = round($new_h / $size_ratio);
$s_x = floor( ($orig_w - $crop_w) / 2 );
$s_y = floor( ($orig_h - $crop_h) / 2 );
return array( 0, 0, (int) $s_x, (int) $s_y, (int) $new_w, (int) $new_h, (int) $crop_w, (int) $crop_h );
}
}
add_filter( 'image_resize_dimensions', 'alx_thumbnail_upscale', 10, 6 );
/* Add shortcode support to text widget
/* ------------------------------------ */
add_filter( 'widget_text', 'do_shortcode' );
/* Browser detection body_class() output
/* ------------------------------------ */
if ( ! function_exists( 'alx_browser_body_class' ) ) {
function alx_browser_body_class( $classes ) {
global $is_lynx, $is_gecko, $is_IE, $is_opera, $is_NS4, $is_safari, $is_chrome, $is_iphone;
if($is_lynx) $classes[] = 'lynx';
elseif($is_gecko) $classes[] = 'gecko';
elseif($is_opera) $classes[] = 'opera';
elseif($is_NS4) $classes[] = 'ns4';
elseif($is_safari) $classes[] = 'safari';
elseif($is_chrome) $classes[] = 'chrome';
elseif($is_IE) {
$browser = $_SERVER['HTTP_USER_AGENT'];
$browser = substr( "$browser", 25, 8);
if ($browser == "MSIE 7.0" ) {
$classes[] = 'ie7';
$classes[] = 'ie';
} elseif ($browser == "MSIE 6.0" ) {
$classes[] = 'ie6';
$classes[] = 'ie';
} elseif ($browser == "MSIE 8.0" ) {
$classes[] = 'ie8';
$classes[] = 'ie';
} elseif ($browser == "MSIE 9.0" ) {
$classes[] = 'ie9';
$classes[] = 'ie';
} else {
$classes[] = 'ie';
}
}
else $classes[] = 'unknown';
if( $is_iphone ) $classes[] = 'iphone';
return $classes;
}
}
add_filter( 'body_class', 'alx_browser_body_class' );
/* ------------------------------------------------------------------------- *
* Actions
/* ------------------------------------------------------------------------- */
/* Include or exclude featured articles in loop
/* ------------------------------------ */
if ( ! function_exists( 'alx_pre_get_posts' ) ) {
function alx_pre_get_posts( $query ) {
// Are we on main query ?
if ( !$query->is_main_query() ) return;
if ( $query->is_home() ) {
// Featured posts enabled
if ( ot_get_option('featured-posts-count') != '0' ) {
// Get featured post ids
$featured_post_ids = alx_get_featured_post_ids();
// Exclude posts
if ( $featured_post_ids && !ot_get_option('featured-posts-include') )
$query->set('post__not_in', $featured_post_ids);
}
}
}
}
add_action( 'pre_get_posts', 'alx_pre_get_posts' );
/* Script for no-js / js class
/* ------------------------------------ */
if ( ! function_exists( 'alx_html_js_class' ) ) {
function alx_html_js_class () {
echo '<script>document.documentElement.className = document.documentElement.className.replace("no-js","js");</script>'. "\n";
}
}
add_action( 'wp_head', 'alx_html_js_class', 1 );
/* IE js header
/* ------------------------------------ */
if ( ! function_exists( 'alx_ie_js_header' ) ) {
function alx_ie_js_header () {
echo '<!--[if lt IE 9]>'. "\n";
echo '<script src="' . esc_url( get_template_directory_uri() . '/js/ie/html5.js' ) . '"></script>'. "\n";
echo '<script src="' . esc_url( get_template_directory_uri() . '/js/ie/selectivizr.js' ) . '"></script>'. "\n";
echo '<![endif]-->'. "\n";
}
}
add_action( 'wp_head', 'alx_ie_js_header' );
/* IE js footer
/* ------------------------------------ */
if ( ! function_exists( 'alx_ie_js_footer' ) ) {
function alx_ie_js_footer () {
echo '<!--[if lt IE 9]>'. "\n";
echo '<script src="' . esc_url( get_template_directory_uri() . '/js/ie/respond.js' ) . '"></script>'. "\n";
echo '<![endif]-->'. "\n";
}
}
add_action( 'wp_footer', 'alx_ie_js_footer', 20 );
/* TGM plugin activation
/* ------------------------------------ */
if ( ! function_exists( 'alx_plugins' ) ) {
function alx_plugins() {
if ( ot_get_option('recommended-plugins') != 'off' ) {
// Add the following plugins
$plugins = array(
array(
'name' => 'Regenerate Thumbnails',
'slug' => 'regenerate-thumbnails',
'required' => false,
'force_activation' => false,
'force_deactivation'=> false,
),
array(
'name' => 'WP-PageNavi',
'slug' => 'wp-pagenavi',
'required' => false,
'force_activation' => false,
'force_deactivation'=> false,
),
array(
'name' => 'Responsive Lightbox',
'slug' => 'responsive-lightbox',
'required' => false,
'force_activation' => false,
'force_deactivation'=> false,
),
array(
'name' => 'Contact Form 7',
'slug' => 'contact-form-7',
'required' => false,
'force_activation' => false,
'force_deactivation'=> false,
)
);
tgmpa( $plugins );
}
}
}
add_action( 'tgmpa_register', 'alx_plugins' );
/* WooCommerce basic support
/* ------------------------------------ */
function alx_wc_wrapper_start() {
echo '<section class="content">';
echo '<div class="pad">';
}
function alx_wc_wrapper_end() {
echo '</div>';
echo '</section>';
}
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
add_action('woocommerce_before_main_content', 'alx_wc_wrapper_start', 10);
add_action('woocommerce_after_main_content', 'alx_wc_wrapper_end', 10);
/* WP-PageNavi support
/* ------------------------------------ */
function alx_deregister_styles() {
wp_deregister_style( 'wp-pagenavi' );
}
add_action( 'wp_print_styles', 'alx_deregister_styles', 100 );

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,56 @@
/* sticky sidebar */
.sidebar { width: 180px; float: right; position: fixed; margin-left: 700px; margin-top: -1px; z-index: 9999; }
.sidebar .well { padding: 8px 0; -moz-border-radius: 0 0 4px 4px; -webkit-border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px; }
.nav span { float: left; margin-right: 6px; padding-top: 3px; }
.nav { color: #999; }
.nav > li { border-bottom: 1px solid #ddd; }
.nav > li > a { padding: 8px; }
.nav > li > ul { padding-bottom: 8px; padding-left: 38px; }
/* base */
.jumbotron { margin-bottom: 0; padding: 0; }
.jumbotron h1 { color: #000; font-weight: bold; letter-spacing: -1px; }
.container { width: 920px; }
header .container { padding: 40px 260px 50px 60px; }
footer .container { padding: 40px 60px 50px 60px; }
section .container { padding: 50px 260px 60px 60px; }
section { background: none!important; position: relative; border-bottom: 10px solid #f1f1f1; }
/* sections */
.color-01 { background-color: #35ae37; }
section.color-01 { border-left: 10px solid #35ae37; }
.color-02 { background-color: #308fbe; }
section.color-02 { border-left: 10px solid #308fbe; }
.color-03 { background-color: #c63f3d; }
section.color-03 { border-left: 10px solid #c63f3d; }
.color-04 { background-color: #f89406; }
section.color-04 { border-left: 10px solid #f89406; }
.color-05 { background-color: #32c2b3; }
section.color-05 { border-left: 10px solid #32c2b3; }
.color-06 { background-color: #c232c0; }
section.color-06 { border-left: 10px solid #c232c0; }
.color-07 { background-color: #6347aa; }
section.color-07 { border-left: 10px solid #6347aa; }
/* text */
h1 { font-weight: bold; }
h1 span { padding: 10px 12px; }
section .label { position: absolute; left: -6px; top: 78px; font-size: 17px; }
section p { margin-bottom: 20px; }
section p,
section li { font-size: 15px; line-height: 24px; }
section > ul,
section > ol { margin-bottom: 20px; }
section img { border: 1px solid #ddd; -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1); box-shadow: 0 0 10px rgba(0,0,0,0.1); }
section dt,
section dd { font-size: 15px; line-height: 24px; }
section dd { margin-left: 0; }
section h3 {}
section h5 { font-size: 15px; }
pre, code { overflow: auto; white-space: pre!important; }
hr { margin: 40px 0; }
/* elements */
.alert { margin-top: 20px; }
.alert ul { margin-top: 10px; }

View file

@ -0,0 +1,658 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Documentation</title>
<link href="assets/bootstrap.css" rel="stylesheet">
<link href="assets/docs.css" rel="stylesheet">
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
<body>
<!-- Sticky Sidebar
================================================== -->
<div class="container">
<div class="sidebar">
<div class="well">
<ul class="nav nav-list">
<li><a href="#start"><span class="label color-01">01</span>Getting Started</a></li>
<li><a href="#install"><span class="label color-02">02</span>Installation</a>
<ul>
<li><a href="#install-adapt">Adapt Old Content</a></li>
<li><a href="#install-import">Demo Content</a></li>
<li><a href="#install-updates">Theme Updates</a></li>
</ul>
</li>
<li><a href="#options"><span class="label color-03">03</span>Theme Options</a>
<ul>
<li><a href="#options-shortcodes">Shortcodes</a></li>
</ul>
</li>
<li><a href="#post-formats"><span class="label color-04">04</span>Post Formats</a></li>
<li><a href="#customization"><span class="label color-05">05</span>Customization</a>
<ul>
<li><a href="#customization-child-theme">Child Theme</a></li>
<li><a href="#customization-file-structure">File Structure</a></li>
<li><a href="#customization-css">CSS</a></li>
<li><a href="#customization-thumbnail">Thumbnail Size</a></li>
</ul>
</li>
<li><a href="#more"><span class="label color-06">06</span>More</a>
<ul>
<li><a href="#more-troubleshoot">Troubleshooting</a></li>
</ul>
</li>
<li><a href="#faq"><span class="label color-07">07</span>FAQ</a></li>
</ul>
</div>
</div><!--/sidebar-->
</div>
<!-- Header
================================================== -->
<header class="jumbotron" id="overview">
<div class="container">
<h1>Blogline</h1>
<p class="lead">Thank you for using this theme, you have good taste! ;-)</p>
<p><a href="http://alxmedia.se">AlxMedia</a> &middot; <a href="http://alxmedia.se/themes/">Themes</a></p>
</div>
</header><!--/header-->
<!-- Getting Started
================================================== -->
<section id="start" class="color-01">
<div class="container">
<h1><span class="label color-01">01</span>Getting Started</h1>
<p>Looks like you've found the documentation for the theme, we're off to a good start! On the right side you can see the table of contents of this documentation.</p>
<p>Jump to the section you want, or read it all through - your choice.</p>
<p>Let's move on!</p>
</div>
</section><!--/section-->
<!-- Installation
================================================== -->
<section id="install" class="color-02">
<div class="container">
<h1><span class="label color-02">02</span>Installation</h1>
<p>Installing your theme is pretty easy! After downloading you should have a <code>blogline.zip</code> file, found within the theme package zip. This is a compressed file containing all of the required templates and images required for the theme to function properly.</p>
<h3>Upload the theme</h3>
<ol>
<li>Go to <strong>Appearance > Themes</strong> in the WordPress menu</li>
<li>Click on the <strong>Add New</strong> button</li>
<li>Click on the <strong>Upload</strong> link</li>
<li>Select the <code>blogline.zip</code> file</li>
<li>Click <strong>Install Now</strong></li>
</ol>
<h3>Activate the theme</h3>
<ol>
<li>Go to <strong>Appearance > Themes</strong> in the WordPress menu</li>
<li>Hover over the theme thumbnail and press the <strong>Activate</strong> button</li>
</ol>
<div class="alert alert-info">Additional information: <a href="http://codex.wordpress.org/Using_Themes" target="_blank">WordPress Codex Using Themes</a></div>
</div>
</section><!--/section-->
<section id="install-adapt" class="color-02">
<div class="container">
<h1><span class="label color-02">02.1</span>Adapting Existing Content</h1>
<p>If you are changing theme from another one and have plenty of existing content, menus and widgets on the website already, you need to do the following after having activated the new theme:</p>
<ol>
<li>Go to <strong>Appearance > Menus</strong> and <a href="http://en.support.wordpress.com/menus/">add the menu areas</a> back to where you want them. The menus will be hidden until you add links to them. This way you can choose how many menu areas to show on the website.</li>
<li>Go to <strong>Appearance > Widgets</strong> and <a href="http://en.support.wordpress.com/widgets/">add the widgets</a> back to your sidebars, or use some of the new custom widgets to make the site look like the demo site.</li>
<li>Install the <a target="_blank" href="http://wordpress.org/plugins/regenerate-thumbnails/">Regenerate Thumbnails</a> plugin and activate it. Then go to <strong>Tools > Regenerate Thumbnails</strong> and run it once. This will crop existing thumbnails to the new sizes used in this theme.</li>
<li>If you have not used the Featured Image feature in your other theme, you can use the <a target="_blank" href="http://wordpress.org/plugins/easy-add-thumbnail/">Easy Add Thumbnail</a> plugin to automatically set featured images for old articles.</li>
</ol>
</div>
</section><!--/section-->
<section id="install-import" class="color-02">
<div class="container">
<h1><span class="label color-02">02.2</span>Importing Demo Content</h1>
<p>This step is optional and for new WordPress sites without any content. If you don't want to import any extra pages and sample data to your site, you can skip to the next section. If you want a base similar to the demo site to work on and edit, then this is for you.</p>
<div class="alert alert-warning">
<p><strong>Important:</strong> If your site is not a fresh install with no content, but has existing content and pages on it already, it is important to remember that this file will add a lot of pages, posts, categories and tags (and media if you choose to import that) to your site, that you will have to edit or remove after importing.</p>
</div>
<h3>Importing</h3>
<ol>
<li>Go to <strong>Tools > Import</strong> in the WordPress menu</li>
<li>Click on the <strong>WordPress</strong> link</li>
<li>Install the plugin it asks for and activate, if you haven't already installed it.</li>
<li>Now you should see a select file button on the <strong>Tools > Import > WordPress</strong> page.</li>
<li>Upload the .XML data file, located in the resources folder of your theme package zip file. Choose if you want to import media or not (images).</li>
<li>Wait for the import process to finish. When it's finished it will say so.</li>
<li>Go to <strong>Appearance > Menus</strong> and <a target="_blank" href="http://en.support.wordpress.com/menus/">add the menu areas</a> to for example header.</li>
<li>Go to <strong>Appearance > Widgets</strong> and <a target="_blank" href="http://en.support.wordpress.com/widgets/">add some widgets</a> to your sidebars. The custom AlxTabs and AlxPosts widgets are used on the demo site.</li>
</ol>
<p>Your page should now look similar to the demo page. Refer to the <a target="_blank" href="http://en.support.wordpress.com/pages/front-page/">Frontpage guide</a> if you want to use a static page / non-blog home page.</p>
</div>
</section><!--/section-->
<section id="install-updates" class="color-02">
<div class="container">
<h1><span class="label color-02">02.3</span>Theme Updates</h1>
<p>If this is your first-time install you can skip this step.</p>
<p>It is a good idea to keep your theme up to date with the latest version, as it often includes important bugfixes or new neat features. If a new version of the theme is available, do the following to update it:</p>
<ol>
<li>Download the latest version.</li>
<li>Locate the <code>blogline.zip</code> file to upload.</li>
<li>Go to <strong>Appearance > Themes</strong> in the WordPress menu</li>
<li>Activate a default theme temporarily, such as Twenty Twelve (to be able to delete your current theme)</li>
<li>Click on the theme you wish to update, and press the red delete link bottom right. Your admin panel options should remain saved.</li>
<li>Upload the new <code>blogline.zip</code>, as you did on <a href="#install">first-time install</a>, and activate it.</li>
</ol>
<p>You are now running the latest and best version of the theme!</p>
<div class="alert alert-warning">
<p><strong>Important:</strong> If you haven't used a <a href="#customization">child theme</a> for your theme customizations, you must do the following before each update:</p>
<ul>
<li>Backup your custom.css file if you have used it, it will be overwritten and needs to be re-added after the update.</li>
<li>Backup your additional language files if you have created/modified any, they will be removed and need to be re-added after the update.</li>
<li>Backup any other custom code.</li>
</ul>
</div>
</div>
</section><!--/section-->
<!-- Theme Options
================================================== -->
<section id="options" class="color-03">
<div class="container">
<h1><span class="label color-03">03</span>Theme Options</h1>
<p>Each option in the admin panel is pretty well described there and easy to use already, so we will just go through the sections in short so you can get an idea of the overall structure - and point out the important things.</p>
<h3>General</h3>
<p>This is where you will find general options for the whole theme. This typically includes favicon upload, custom RSS feed option, analytics tracking code field and so on.</p>
<ul>
<li><strong>Responsive Layout:</strong> If you choose to disable responsive.css, you may need to do further changes in style.css for the site to work completely as un-responsive, as there are some mediaqueries in this file as well - mainly for the menus.</li>
</ul>
<h3>Blog</h3>
<p>Here you will find all options that relates to posts - mainly the blog homepage, the single post pages as well as archive pages.</p>
<ul>
<li><strong>Featured Post Count:</strong> By adjusting this you turn the slider on / off.</li>
<li><strong>Single - Share Buttons:</strong> Disable the in-built article sharing buttons if you wish to use a plugin instead.
<div class="alert alert-warning">
<p><strong>Note:</strong> If your Google+ button is not appearing, you need to make sure that your server has urlCurl enabled. Ask your webhost to enable cURL, and make sure that safe_mode is not on. Otherwise it will not work.</p>
<p>If you wish to add more sharing icons, please refer to <a target="_blank" href="http://sharrre.com/">Sharrre documentation</a>. The file to modify via a child theme would be /inc/sharrre.php.</p>
</div>
</li>
<li><strong>Single - Author Bio:</strong> Note that this block will only appear if a description is set for the user writing the article.</li>
</ul>
<h3>Header</h3>
<ul>
<li><strong>Custom Logo:</strong> The max-height of the logo can be adjusted from styling options. The the uploaded image should always have the double height of the max-height in order to be high resolution - often preferably in PNG format with transparent background.</li>
</ul>
<h3>Footer</h3>
<ul>
<li><strong>Footer Widget Columns:</strong> This is where you enable footer widgets. Select the column count you wish to use, and then go to <strong>Appearance > Widgets</strong> and add your widgets to the Footer 1/2/3/4 boxes. Usually 3 columns are recommended in order for it to look best on all screen resolutions.</li>
</ul>
<h3>Layout</h3>
<p>Here you can set a specific layout for each one of the standard WordPress page sections. If a specific page or post has another layout set, the single and page options set here will be overridden by that option. If you just want one sidebar layout for the entire website, you only need to modify the Global option.</p>
<p>To set a layout for a specific page or post, you need to go to that page or post and select which layout to use below the large text field.</p>
<h3>Sidebars</h3>
<p>This is where you can create unlimited sidebar widget areas for your theme! The sidebar title is seen at the top of the widget box in <strong>Appearance > Widgets</strong>. The sidebar ID is used in template files.</p>
<p>To add a sidebar you have created for a specific page or post, you need to go to that page or post, and select sidebar from the dropdown menu below the large text field.</p>
<div class="alert alert-warning">
<p><strong>Important:</strong> Make sure that each sidebar area that you create has a unique ID, for example "sidebar-24" or "sidebar-about". Only use lowercase letters and no spaces for the IDs. </p><p>You must save options in order to be able to see the new widget area in the dropdowns below.</p>
</div>
<h3>Social Links</h3>
<p>Here you create and re-order your Social Links as you wish. These links will appear in the header and footer of your theme in most cases. </p>
<p>The icons can be given a specific color if you wish, or you can just leave that option blank and it will use the default setting.</p>
<p>The icon names can be found <a target="_blank" href="http://fortawesome.github.io/Font-Awesome/icons/">here</a> - FontAwesome gives you the option to choose between 370 unique icons to use. Example of names to fill in the admin panel would be "fa-facebook", "fa-twitter" and "fa-google-plus".</p>
<h3>Styling</h3>
<p>The dynamic styles in this theme gives you the ability to change color of large parts of theme in seconds.</p>
<div class="alert alert-warning">
<p><strong>Important:</strong> Make sure to tick the checkbox "Enable to use" at the top of the styling options in order to turn this feature on. You may also need to empty all caches if you use a cache plugin. And finally you may also need to force-refresh the page while viewing it by pressing F5.</p>
</div>
<p><strong>Advanced:</strong> The dynamic styles will be added directly to the head of your theme. This is according to WordPress best practices, but if you do not want it printed out there, simply inspect the code of your page with the styling options set. Copy the CSS from head into your <a href="#customization">child theme's</a> style.css file or this theme's custom.css (which you need to enable), and disable dynamic styling.</p>
</div>
</section><!--/section-->
<!-- Shortcodes
================================================== -->
<section id="options-shortcodes" class="color-03">
<div class="container">
<h1><span class="label color-03">03.1</span>Shortcodes</h1>
<p>This theme comes bundled with a few simple shortcodes mainly for content structure. If you want to add additional shortcodes, there are many <a target="_blank" href="http://wordpress.org/plugins/">plugins</a> out there to install.</p>
<p>Here is how to use them:</p>
<ul>
<li>Divider Line
<pre><code>[hr]</code></pre>
</li>
<li>Highlight Text
<pre><code>[highlight]My highlighted text[/highlight]</code></pre>
</li>
<li>Dropcap (large first letter)
<pre><code>[dropcap]A[/dropcap]nother dropcap here.</code></pre>
<div class="alert alert-warning">
<p><strong>Note:</strong> If you add the dropcap in the beginning of the article, it will disappear from the excerpt. To fix this, when editing the post, click Screen Options top right. Then enable Excerpt and you can write your own custom excerpt in the content box below the main text field.</p>
</div>
</li>
<li>Pullquote Left
<pre><code>[pullquote-left]Pullquote text[/pullquote-left]</code></pre>
</li>
<li>Pullquote Right
<pre><code>[pullquote-right]Pullquote text[/pullquote-right]</code></pre>
</li>
<li>Responsive Columns
<pre><code>[column size="one-half"]...[/column]
[column size="one-half" last="true"]...[/column]
[column size="one-third"]...[/column]
[column size="one-third"]...[/column]
[column size="one-third" last="true"]...[/column]
[column size="two-third"]...[/column]
[column size="one-third" last="true"]...[/column]
[column size="one-fourth"]...[/column]
[column size="one-fourth"]...[/column]
[column size="one-fourth"]...[/column]
[column size="one-fourth" last="true"]...[/column]
[column size="three-fourth"]...[/column]
[column size="one-fourth" last="true"]...[/column]
[column size="one-fifth"]...[/column]
[column size="one-fifth"]...[/column]
[column size="one-fifth"]...[/column]
[column size="one-fifth"]...[/column]
[column size="one-fifth" last="true"]...[/column]</code></pre>
</li>
</ul>
</div>
</section><!--/section-->
<!-- Post Formats
================================================== -->
<section id="post-formats" class="color-04">
<div class="container">
<h1><span class="label color-04">04</span>Post Formats</h1>
<p>This theme makes use of all of WordPress' 10 post formats to give you plenty of ways to show content in the top section of your articles. You choose type by selecting format in the "Format" box on the right side when you edit or add a new post. Depending on which format you select, new options will appear below the large text field.</p>
<p>Here is how to use each one of the formats, and what each one does:</p>
<ul>
<li><strong>Standard</strong> - This is the default option. It will not automatically include a featured image at the top of the post, like the image format does. It's simply a standard post that shows article text.</li>
<li><strong>Image</strong> - Same as Standard format except that it auto-includes the featured image at the top of the article.</li>
<li><strong>Gallery</strong> - Shows all images attached to the post as a slider at the top of the article. More details how to use will appear below once selected.
<div class="alert alert-warning">
<p><strong>Note:</strong> If you want to show an image in the article below the slider, but still not include it in the slider, you need to go to <strong>Media > Add New</strong> and upload it there. Then go back to the post and insert it. Make sure it's not attached to the post.</p>
</div>
</li>
<li><strong>Video</strong> - Shows an embed video at the top of the article. A field for link embed will appear once selected.</li>
<li><strong>Audio</strong> - Shows a SoundCloud audio player at the top of your post. A field for link embed will appear once selected.</li>
</ul>
</div>
</section><!--/section-->
<!-- Customization
================================================== -->
<section id="customization" class="color-05">
<div class="container">
<h1><span class="label color-05">05</span>Theme Customization</h1>
<p>This section is very important to read if you plan to <strong>edit any files within the theme</strong> - whether it is adding custom functions, custom styles, new language files or modifying other function-related files. Spending some extra minutes to read this and do it right from the very beginning can save a lot of time and headaches later on.</p>
<p>Most of the information below can be found and read more about elsewhere on the web a well if you wish to go more in-depth, as it's common practices. I've summarized the core parts of it, which you are likely to use the most. </p>
<p>Let us begin!</p>
</div>
</section><!--/section-->
<!-- Child Theme
================================================== -->
<section id="customization-child-theme" class="color-05">
<div class="container">
<h1><span class="label color-05">05.1</span>Using a Child Theme</h1>
<p>If you intend to edit the code of the theme, translate it or place any custom files in the theme folder it is highly recommended to use a <a target="_blank" href="http://codex.wordpress.org/Child_Themes">child theme</a>. Otherwise all of your modifications will disappear once you update the theme - unless you backup and re-add the files afterwards.</p>
<p>I would only recommend using the <code>custom.css</code> option instead if you are doing minor CSS modifications that can be easily backed up.</p>
<ul>
<li>Learn more how to use child themes <strong><a target="_blank" href="http://codex.wordpress.org/Child_Themes">here</a></strong>.</li>
</ul>
<p>This theme has been built with <strong>child themes in mind</strong>, and therefore all theme functions are pluggable - which means you can overwrite them by copying a function from the parent theme and pasting it into the child theme's functions.php, modify it as you wish - and it will use your modified function instead the original one.</p>
<h3>Load certain functionality from the child theme instead</h3>
<p>This only applies for files loaded from the parent theme's <strong>functions.php</strong>. Let's say we wish to load the responsive.css file from our child theme's directory instead. We then need to copy the alx_styles() function to functions.php of the child theme (not including add_action, add_filter or !function_exists - just the function).</p>
<p>Now we have this function in our child theme - but it makes absolutely no difference, and still loads all files from the parent theme.</p>
<pre><code>function alx_styles() {
wp_enqueue_style( 'style', get_stylesheet_uri() );
if ( !ot_get_option('responsive') ) { wp_enqueue_style( 'responsive', get_template_directory_uri().'/responsive.css' ); }
if ( ot_get_option('custom') ) { wp_enqueue_style( 'custom', get_template_directory_uri().'/custom.css' ); }
wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/fonts/font-awesome.min.css' );
}</code></pre>
<p>To load from the child theme instead, change <em>get_template_directory_uri</em> to <em>get_stylesheet_directory_uri</em> for the responsive.css file. The rest of the files will still load from the parent theme, as they use get_template_directory_uri. Like this:</p>
<pre><code>function alx_styles() {
wp_enqueue_style( 'style', get_stylesheet_uri() );
if ( !ot_get_option('responsive') ) { wp_enqueue_style( 'responsive', get_stylesheet_directory_uri().'/responsive.css' ); }
if ( ot_get_option('custom') ) { wp_enqueue_style( 'custom', get_template_directory_uri().'/custom.css' ); }
wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/fonts/font-awesome.min.css' );
}</code></pre>
<p>The same method would be used to change language files folder. You would then copy over the whole alx_load() function, but only modify this one line in it:</p>
<pre><code>// Load theme languages
load_theme_textdomain( 'themename', get_template_directory().'/languages' );</code></pre>
<p>To this:</p>
<pre><code>// Load theme languages
load_theme_textdomain( 'themename', get_stylesheet_directory().'/languages' );</code></pre>
<p>Now the language files will be loaded from the /language/ folder of your child theme instead. Simple, isn't it? This way your changes will always stay safe in your child theme folder, no matter how many updates you do to the parent theme. To summarize:</p>
<ul>
<li><strong>get_template_directory</strong> - file loads from parent theme</li>
<li><strong>get_template_directory_uri</strong> - file loads from parent theme</li>
<li><strong>get_stylesheet_directory</strong> - file loads from child theme</li>
<li><strong>get_stylesheet_directory_uri</strong> - file loads from child theme</li>
</ul>
<div class="alert alert-warning">
<p><strong>Important:</strong> Always copy over the entire function to your child theme, and only modify the part that you wish to change - leave the rest of the function as it is. </p><p>If you were to only include the lines you are changing in the function, and leave the rest of the functionality out, those parts would disappear and stop working.</p>
</div>
<h3>Disabling functions</h3>
<p>You can also completely disable functionality with the child theme replacement method. Let's say you don't want the plugin installation notice in your admin panel, or the "Install Plugins" item in your menu. All you would need to add is this to your child theme's functions.php:</p>
<pre><code>function alx_plugins() { }</code></pre>
<p>Simply emptying the function, disabling it completely.</p>
<h3>Replacing page templates</h3>
<p>Finally, we wish to modify the page.php template with some custom code. All we need to do then is just copy over page.php from the parent theme to the child theme, and now this file will be used instead - and you are free to modify it without having to fear losing it when updating the theme.</p>
</div>
</section><!--/section-->
<!-- File Structure
================================================== -->
<section id="customization-file-structure" class="color-05">
<div class="container">
<h1><span class="label color-05">05.2</span>Theme File Structure</h1>
<p>Here is a quick summary of how the files in this theme are structured. It will hopefully make things easier to find!</p>
<h3>Folders</h3>
<ul>
<li><strong>/fonts/</strong> - Includes any self-hosted font files and Font Awesome css (icons)</li>
<li><strong>/functions/</strong> - This folder contains everything that is admin-panel related</li>
<li><strong>/functions/img/</strong> - Admin panel images</li>
<li><strong>/functions/js/</strong> - Admin panel javascript</li>
<li><strong>/functions/plugins/</strong> - Plugins that are not available on wordpress.org but bundled with the theme for easy installation</li>
<li><strong>/functions/widgets/</strong> - The custom widgets included with the theme</li>
<li><strong>/img/</strong> - Theme images</li>
<li><strong>/img/ie/</strong> - Images used for Internet Explorer compatibility</li>
<li><strong>/inc/</strong> - Includes all template-parts (partials) that are non-standard to WordPress, but often are used in several files</li>
<li><strong>/js/</strong> - Theme javascript. All custom theme scripts are in scripts.js</li>
<li><strong>/js/ie/</strong> - Javascript used for Internet Explorer compatibility</li>
<li><strong>/languages/</strong> - Contains a language file that you can use to translate or change texts in the theme</li>
<li><strong>/option-tree/</strong> - This folder is the OptionTree framework plugin running in fully-integrated theme mode. It ties in with <i>/functions/meta-boxes.php</i> and <i>/functions/theme-options.php</i> and the <i>ot_get_option()</i> function used in template files. Relates to the admin panel, to create theme options. It's best to leave this folder alone.</li>
<li><strong>/page-templates/</strong> - Contains all page templates for the theme, such as Child Menu</li>
</ul>
<hr>
<h3>Files</h3>
<ul>
<li><strong>custom.css</strong> - Used for your custom styles
<li><strong>responsive.css</strong> - Contains almost all the CSS that creates the responsive layout
<li><strong>changelog.txt</strong> - Information about changes made in all updates
<li><strong>license.txt</strong> - The main theme license
<li><strong>readme.txt</strong> - Contains all additional license information
</ul>
<p>The rest of the files have a standard WordPress structure.</p>
</div>
</section><!--/section-->
<!-- CSS
================================================== -->
<section id="customization-css" class="color-05">
<div class="container">
<h1><span class="label color-05">05.3</span>CSS Styling</h1>
<h3>Theme related</h3>
<p>If you are not using Theme Options > Styling combined with your own custom css, you can skip this part.</p>
<p>If you have issues with your CSS styling changes not showing up or working correctly, remember that this is the order in which the styles are loaded in the theme:</p>
<ol>
<li>style.css</li>
<li>responsive.css</li>
<li>custom.css</li>
<li>Dynamic CSS output</li>
</ol>
<p>The dynamic CSS is added at the end of head tag. This means that <strong>the dynamic styles will override your custom.css / child theme styles</strong> - unless you specify the class/id more or use the <code>!important</code> CSS value.</p>
<h3>How to fix CSS override issues</h3>
<ol>
<li>Set your dynamic styles in theme options.</li>
<li>Visit the website, inspect the code, copy the dynamic styles from head of the theme into your child theme's style.css. Disable dynamic styles.</li>
<li>You now have no more overriding issues.</li>
</ol>
<p>If you think that responsive.css still overrides styles, use @import to import it at the top of style.css of the child theme and disable it in theme options so it doesn't load twice.</p>
<p>If you styling changes still do not appear:</p>
<ul>
<li>If you run any cache plugin, make sure to empty all caches.</li>
<li>When viewing the webpage, press F5 to force-refresh it.</li>
</ul>
<hr>
<h3>CSS basics</h3>
<p>This is for people who are pretty new to CSS and have never used or heard the word Firebug. It is not theme-related but deals with CSS+Firebug usage, which is essential for easy modification of any styles.</p>
<h4>Change styling</h4>
<p>You look at your page and say to yourself, "I would like to restyle that element right there on the my page". But how do you know what the CSS class or id you need to specify in your custom.css? Without tools this would be hard - thankfully both Firefox and Chrome makes it easier.</p>
<h4>Enter Firebug</h4>
<p>This addon that exist both for Firefox and for Chrome (as a lite version) will save you a lot of time. I use it my development all the time - it's incredibly useful.</p>
<ul>
<li><strong><a href="https://addons.mozilla.org/en-us/firefox/addon/firebug/">Download for Firefox</a></strong></li>
<li><strong><a href="https://chrome.google.com/webstore/detail/firebug-lite-for-google-c/bmagokdooijbeehmkpknfglimnifench">Download for Google Chrome</a></strong></li>
</ul>
<p>Installed it? Good. Now, go to your website and <strong>right click</strong> on any element you want. For example, let's say you want to recolor the dropcap shortcode text color, that you've just inserted on your page. To find out what class or ID this element uses, right click on it and select "<strong>Inspect Element with Firebug</strong>". This will open up a window at the bottom. To the left side you should see the HTML. On the right, the CSS.</p>
<p>Try hovering over the HTML-section for the button. You will see that the button will be highlighted so that you can easily see what element you are viewing. The HTML would look something like this: <code>&lt;span class="dropcap">L&lt;/span></code></p>
<p>The CSS should appear on the right side in the Firebug window (If it doesn't, click on the <code>&lt;span></code> part of the code, and it will appear). You should see something like this:</p>
<pre></code>.dropcap
{
color: #444444;
display: block;
float: left;
- etc -
}
</code></pre>
<p>And there we go! You've found the CSS class you are looking for, and all the CSS styling that is currently used for this element.</p>
<p>There are many good Firebug introduction videos out there on <a href="http://www.youtube.com/results?search_query=firebug+css">YouTube</a>. Here is one short and simple one I found useful: <strong><a target="_blank" href="http://www.youtube.com/watch?v=yOOk3T3_nZ8">View Video</a></strong></p>
<p>As shown here, Firebug also allows you to preview styling changes directly in your browser window. It's great when you want to see how something looks before adding it. It can also be used to test to remove HTML or CSS values, and many other things.
<h4>Adding CSS to custom.css</h4>
<ol>
<li>Go to your WordPress dashboard and then <strong>Theme Options &gt; General</strong>. Tick the checkbox to enable custom.css (this will load the css file in the theme).</li>
<li>Go to <strong>Appearance &gt; Editor</strong>. Click on custom.css on the right side in the list.</li>
<li>The code in this file will now appear (most likely empty). Just add your css here and save, and you're done.</li>
</ol>
<p>Thanks to Firebug, we now know that our dropcap element is called <code>.dropcap</code>. We want to change the text color to red, so all we need to do is to add this to our custom.css file:</p>
<pre></code>.dropcap { color: red; }</code></pre>
<p>Save it, and your dropcap text should now be red!</p>
<p>This method can be used to restyle any element on your website. It is also useful to use for troubleshooting, to see what CSS styling you may have added that breaks the page and so on.</p>
<p>Happy editing!</p>
</div>
</section><!--/section-->
<!-- Thumbnail Size
================================================== -->
<section id="customization-thumbnail" class="color-05">
<div class="container">
<h1><span class="label color-05">05.4</span>Change Thumbnail Size</h1>
<p>To modify the custom thumbnail sizes for your theme, you need to copy over the whole <code>function alx_setup() {}</code> to your child theme, using the methods explained above.</p>
<p>Within this function you will find the thumbnail sizes under where it says:</p>
<pre><code>// Thumbnail sizes</code></pre>
<p>Modify the height and width values as you want, using <a target="_blank" href="http://codex.wordpress.org/Function_Reference/add_image_size">add_image_size codex</a> as guideline to how it works. After that you've changed size and saved, you need to run the <a target="_blank" href="http://wordpress.org/plugins/regenerate-thumbnails/">regenerate thumbnails</a> plugin once before you will see any difference.</p>
<div class="alert alert-warning">
<p><strong>Important:</strong> If you have trouble with the way thumbnails are upscaling to fit the desired width or height before being cropped, you need to disable the alx_thumbnail_upscale function. You do so by adding <code>function alx_thumbnail_upscale() {}</code> to your child theme's functions.php, disabling the function completely.</p>
</div>
</div>
</section><!--/section-->
<!-- More
================================================== -->
<section id="more" class="color-06">
<div class="container">
<h1><span class="label color-06">06</span>Additional Information</h1>
<p>Extra information that you may find useful.</p>
<h3>Font Awesome (icon) issues?</h3>
<p>If you have trouble with Font Awesome showing strange characters instead of icons, you are most likely using a CDN or external host in some way for the font files. Certain browsers may have issues with that, as they follow certain web standards. (Also make sure that your font files were uploaded correctly, and empty caches)</p>
<p>This can be fixed with for example this sample <a target="_blank" href="http://support.maxcdn.com/tutorials/htaccess-examples/">.htaccess file</a> from MaxCDN. If you wish to read more about this, it relates to CORS headers.</p>
<h3>Wrong Facebook and Google+ thumbnails?</h3>
<p>If your shared posts show wrong thumbnails on social networks, see the Facebook Thumb Fixer plugin below.</p>
<h3>Useful plugins</h3>
<p>Many common problems or missing features can usually be solved with plugins. Here is a list of some great ones.</p>
<ul>
<li><strong><a target="_blank" href="http://wordpress.org/plugins/regenerate-thumbnails/">Regenerate Thumbnails</a></strong> - A must-have when changing theme or thumbnail sizes</li>
<li><strong><a target="_blank" href="http://wordpress.org/plugins/wordpress-importer/">WordPress Importer</a></strong> - Import XML file data for the website</li>
<li><strong><a target="_blank" href="http://wordpress.org/plugins/wp-pagenavi/">WP-PageNavi</a></strong> - Better pagination for your blog</li>
<li><strong><a target="_blank" href="http://wordpress.org/plugins/contact-form-7/">Contact Form 7</a></strong> - A simple and flexible contact form plugin</li>
<li><strong><a target="_blank" href="http://wordpress.org/plugins/w3-total-cache/">W3 Total Cache</a></strong> - Cache plugin to speed up your website</li>
<li><strong><a target="_blank" href="http://wordpress.org/plugins/easy-add-thumbnail/">Easy Add Thumbnail</a></strong> - Auto-set featured images for old as well as new posts</li>
<li><strong><a target="_blank" href="http://wordpress.org/plugins/facebook-thumb-fixer/">Facebook Thumb Fixer</a></strong> - Make sure articles shared on Facebook and Google+ shows the right thumbnail images</li>
<li><strong><a target="_blank" href="http://wordpress.org/plugins/responsive-lightbox/">Responsive Lightbox</a></strong> - Easily add responsive lightboxes to your website and gallery images</li>
<li><strong><a target="_blank" href="http://wordpress.org/plugins/syntaxhighlighter/">SyntaxHighlighter Evolved</a></strong> - Post code in your articles in a visually pleasing way</li>
<li><strong><a target="_blank" href="http://wordpress.org/plugins/woocommerce/">WooCommerce</a></strong> - Sell stuff</li>
</ul>
<h3>Recommended theme editing software</h3>
<ul>
<li><strong><a target="_blank" href="http://firefox.com">Firefox</a></strong> - The web browser of choice for me, although there are many good ones</li>
<li><strong><a target="_blank" href="https://getfirebug.com/">Firebug</a></strong> - Inspect code directly in the web browser. Lite version for Chrome <a target="_blank" href="https://getfirebug.com/releases/lite/chrome/">here</a>. Search on YouTube for video tutorials and you will quickly learn how to use it.</li>
<li><strong><a target="_blank" href="http://www.poedit.net/download.php">PoEdit</a></strong> - Translate your theme. Read how to translate <a target="_blank" href="http://www.appthemes.com/blog/how-to-translate-a-wordpress-theme/">here</a>.</li>
<li><strong><a target="_blank" href="http://notepad-plus-plus.org/download/">Notepad++</a></strong> - A great text editor to modify theme code</li>
<li><strong><a target="_blank" href="https://filezilla-project.org/download.php?type=client">FileZilla</a></strong> - Modify or upload theme files via FTP</li>
</ul>
<h3>Link Resources</h3>
<p>Learn more and ask about WordPress' standard features. WordPress is in itself an extremely well-documented open platform. It is recommended to search for answers via Google / DuckDuckGo first if you have questions it almost always give useful information or at least point you in the right direction.</p>
<ul>
<li><strong><a target="_blank" href="http://en.support.wordpress.com/">WordPress.com Documentation</a></strong> - Quick and simple guides to standard features</li>
<li><strong><a target="_blank" href="http://codex.wordpress.org/">WordPress.org Codex</a></strong> - Documentation and great code examples</li>
<li><strong><a target="_blank" href="http://wordpress.org/support/">WordPress.org Forums</a></strong> - Support for WordPress</li>
<li><strong><a target="_blank" href="http://wordpress.stackexchange.com/">WordPress Code Answers</a></strong> - Ask and find great answers to code questions</li>
<li><strong><a target="_blank" href="http://google.com">Google</a> / <a target="_blank" href="http://duckduckgo.com">DuckDuckGo</a></strong> - Find answers from all over the web. Always good.</li>
</ul>
</div>
</section><!--/section-->
<!-- Troubleshooting
================================================== -->
<section id="more-troubleshoot" class="color-06">
<div class="container">
<h1><span class="label color-06">06.1</span>Troubleshooting 101</h1>
<p>Do you have a problem with your theme? This quick troubleshooting guide should be the first thing to check through - it will help you find the <strong>root cause</strong> of the issue.</p>
<p>A WordPress website issue can come from mainly one of 4 areas:</p>
<ul>
<li>Conflicting plugins</li>
<li>Broken WordPress install</li>
<li>Incorrect server setup</li>
<li>The theme itself</li>
</ul>
<p>Lets find out where your issue is coming from!</p>
<h3>Step 1: Check your plugins</h3>
<p>The first thing to do is to see if you have any plugins installed. Do you? If so, go to your admin panel and disable all of them. Now, go back to your site and see if the issue remains. If the problem is gone, then re-activate your plugins one-by-one and check the site between each activation. This way you will directly find the plugin(s) that cause problems.</p>
<p>If your issue remains even with all plugins disabled, go on to the next step.</p>
<h3>Step 2: Check your customizations</h3>
<p>Have you customized your theme in any way before you noticed the issue? If so, go to the theme demo website of the theme and see if you find the same issue there. If you can not see the issue there, you need to take a look at your customized code and find what may be wrong.</p>
<h3>Step 3: Is the issue admin panel related?</h3>
<p>If you have problems with media uploads, errors in the WordPress dashboard or other access issues, the likely cause is either an incorrectly setup server or a broken WordPress install.</p>
<p>To see if your problem is related to a broken WordPress install or an incorrect server setup, simply activate a WordPress default theme such as Twenty Twelve. Does the issue remain? Then your issue is not theme related. If the issue goes away with a default theme active, then it's most likely theme related.</p>
<ul>
<li>Do you think your issue is WordPress related? <strong>Re-installing WordPress</strong> may be a good idea, or asking for help on the <a target="_blank" href="http://wordpress.org/support/">wordpress.org forums</a>.</li>
<li>Do you think your issue is server related? Try some <strong>Google-searching</strong> for the issue, or <strong>contact your server provider</strong> about it.</li>
<li>Do you think the issue is coming from the theme? Make sure to read this documentation through. If the issue remains and you are certain it's coming from the theme, feel free to report the bug on themeforest!</li>
</ul>
<h3>Note: Remember cache!</h3>
<p>If you apply/repair code to fix issues but see no changes on your website when you save it, check if your website has any cache plugin activated. If so, make sure to empty all caches. Also force-refresh the page when viewing it by pressing F5.</p>
</div>
</section><!--/section-->
<!-- FAQ
================================================== -->
<section id="faq" class="color-07">
<div class="container">
<h1><span class="label color-07">07</span>FAQ</h1>
<p><i>Q: Why are social sharing buttons missing Google Plus?</i> &mdash; A: You need to enable urlCurl with safe_mode off on your server for G+ to work. Ask your webhost to do so. If you are unable to, you can disable the buttons and use any other plugin instead.</p>
<p><i>Q: My old thumbnails have different sizes, why?</i> &mdash; A: Thumbnails uploaded before changing theme will not be automatically re-cropped. To fix this, you need to run the <a target="_blank" href="http://wordpress.org/plugins/regenerate-thumbnails/">Regenerate Thumbnails</a> plugin once.</p>
<p><i>Q: I did not use featured images before and have many posts, what do I do?</i> &mdash; A: Use the <a target="_blank" href="http://wordpress.org/plugins/easy-add-thumbnail/">Easy Add Thumbnail</a> plugin to automatically make the first image uploaded to each post a featured image.</p>
<p><i>Q: Why is my featured image not appearing on the single post page?</i> &mdash; A: You need to use the "Image" format option for it to show up, as not everyone wants to show the featured image at the top for the "Standard" post format.</p>
<p><i>Q: My gallery format post shows images twice, why?</i> &mdash; A: This is because you insert a standard gallery into the post itself. This is not needed, as the gallery format post will auto-display attached images in the slider above.</p>
<p><i>Q: My slider gallery includes images I only want to show in the content below</i> &mdash; A: The gallery format will always show all attached images. For it to not show up, go to Media > Add New and upload it there. Then go back to the post and add it.</p>
<h3>Thank you for reading!</h3>
</div>
</section><!--/section-->
<!-- Footer
================================================== -->
<footer class="footer">
<div class="container">
<p class="pull-right"><a href="#">Back to top</a></p>
<p>Written by <a href="http://alxmedia.se">Alexander Agnarson</a>. Re-use or edit this documentation as you wish (<a href="http://www.wtfpl.net/">WTFPL</a>).</p>
</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,203 @@
<?php
/* ------------------------------------------------------------------------- *
* Dynamic styles
/* ------------------------------------------------------------------------- */
/* Convert hexadecimal to rgb
/* ------------------------------------ */
if ( ! function_exists( 'alx_hex2rgb' ) ) {
function alx_hex2rgb( $hex, $array=false ) {
$hex = str_replace("#", "", $hex);
if ( strlen($hex) == 3 ) {
$r = hexdec(substr($hex,0,1).substr($hex,0,1));
$g = hexdec(substr($hex,1,1).substr($hex,1,1));
$b = hexdec(substr($hex,2,1).substr($hex,2,1));
} else {
$r = hexdec(substr($hex,0,2));
$g = hexdec(substr($hex,2,2));
$b = hexdec(substr($hex,4,2));
}
$rgb = array( $r, $g, $b );
if ( !$array ) { $rgb = implode(",", $rgb); }
return $rgb;
}
}
/* Google fonts
/* ------------------------------------ */
if ( ! function_exists( 'alx_google_fonts' ) ) {
function alx_google_fonts () {
if ( ot_get_option('dynamic-styles') != 'off' ) {
if ( ot_get_option( 'font' ) == 'titillium-web-ext' ) { echo '<link href="//fonts.googleapis.com/css?family=Titillium+Web:400,400italic,300italic,300,600&subset=latin,latin-ext" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'droid-serif' ) { echo '<link href="//fonts.googleapis.com/css?family=Droid+Serif:400,400italic,700" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'source-sans-pro' ) { echo '<link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:400,300italic,300,400italic,600&subset=latin,latin-ext" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'lato' ) { echo '<link href="//fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'raleway' ) { echo '<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'ubuntu' ) { echo '<link href="//fonts.googleapis.com/css?family=Ubuntu:400,400italic,300italic,300,700&subset=latin,latin-ext" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'ubuntu-cyr' ) { echo '<link href="//fonts.googleapis.com/css?family=Ubuntu:400,400italic,300italic,300,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'roboto-condensed' ) { echo '<link href="//fonts.googleapis.com/css?family=Roboto+Condensed:400,300italic,300,400italic,700&subset=latin,latin-ext" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'roboto-condensed-cyr' ) { echo '<link href="//fonts.googleapis.com/css?family=Roboto+Condensed:400,300italic,300,400italic,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'roboto-slab' ) { echo '<link href="//fonts.googleapis.com/css?family=Roboto+Slab:400,300italic,300,400italic,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'roboto-slab-cyr' ) { echo '<link href="//fonts.googleapis.com/css?family=Roboto+Slab:400,300italic,300,400italic,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'playfair-display' ) { echo '<link href="//fonts.googleapis.com/css?family=Playfair+Display:400,400italic,700&subset=latin,latin-ext" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'playfair-display-cyr' ) { echo '<link href="//fonts.googleapis.com/css?family=Playfair+Display:400,400italic,700&subset=latin,cyrillic" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'open-sans' ) { echo '<link href="//fonts.googleapis.com/css?family=Open+Sans:400,400italic,300italic,300,600&subset=latin,latin-ext" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'open-sans-cyr' ) { echo '<link href="//fonts.googleapis.com/css?family=Open+Sans:400,400italic,300italic,300,600&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'pt-serif' ) { echo '<link href="//fonts.googleapis.com/css?family=PT+Serif:400,700,400italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">'. "\n"; }
if ( ot_get_option( 'font' ) == 'pt-serif-cyr' ) { echo '<link href="//fonts.googleapis.com/css?family=PT+Serif:400,700,400italic&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">'. "\n"; }
}
}
}
add_action( 'wp_head', 'alx_google_fonts', 2 );
/* Dynamic css output
/* ------------------------------------ */
if ( ! function_exists( 'alx_dynamic_css' ) ) {
function alx_dynamic_css() {
if ( ot_get_option('dynamic-styles') != 'off' ) {
// rgb values
$color_1 = ot_get_option('color-1');
$color_1_rgb = alx_hex2rgb($color_1);
// start output
$styles = '<style type="text/css">'."\n";
$styles .= '/* Dynamic CSS: For no styles in head, copy and put the css below in your custom.css or child theme\'s style.css, disable dynamic styles */'."\n";
// google fonts
if ( ot_get_option( 'font' ) == 'titillium-web-ext' ) { $styles .= 'body { font-family: "Titillium Web", Arial, sans-serif; }'."\n"; }
if ( ot_get_option( 'font' ) == 'droid-serif' ) { $styles .= 'body { font-family: "Droid Serif", serif; }'."\n"; }
if ( ot_get_option( 'font' ) == 'source-sans-pro' ) { $styles .= 'body { font-family: "Source Sans Pro", Arial, sans-serif; }'."\n"; }
if ( ot_get_option( 'font' ) == 'lato' ) { $styles .= 'body { font-family: "Lato", Arial, sans-serif; }'."\n"; }
if ( ot_get_option( 'font' ) == 'raleway' ) { $styles .= 'body { font-family: "Raleway", Arial, sans-serif; }'."\n"; }
if ( ( ot_get_option( 'font' ) == 'ubuntu' ) || ( ot_get_option( 'font' ) == 'ubuntu-cyr' ) ) { $styles .= 'body { font-family: "Ubuntu", Arial, sans-serif; }'."\n"; }
if ( ( ot_get_option( 'font' ) == 'roboto-condensed' ) || ( ot_get_option( 'font' ) == 'roboto-condensed-cyr' ) ) { $styles .= 'body { font-family: "Roboto Condensed", Arial, sans-serif; }'."\n"; }
if ( ( ot_get_option( 'font' ) == 'roboto-slab' ) || ( ot_get_option( 'font' ) == 'roboto-slab-cyr' ) ) { $styles .= 'body { font-family: "Roboto Slab", Arial, sans-serif; }'."\n"; }
if ( ( ot_get_option( 'font' ) == 'playfair-display' ) || ( ot_get_option( 'font' ) == 'playfair-display-cyr' ) ) { $styles .= 'body { font-family: "Playfair Display", Arial, sans-serif; }'."\n"; }
if ( ( ot_get_option( 'font' ) == 'open-sans' ) || ( ot_get_option( 'font' ) == 'open-sans-cyr' ) ) { $styles .= 'body { font-family: "Open Sans", Arial, sans-serif; }'."\n"; }
if ( ( ot_get_option( 'font' ) == 'pt-serif' ) || ( ot_get_option( 'font' ) == 'pt-serif-cyr' ) ) { $styles .= 'body { font-family: "PT Serif", serif; }'."\n"; }
if ( ot_get_option( 'font' ) == 'arial' ) { $styles .= 'body { font-family: Arial, sans-serif; }'."\n"; }
if ( ot_get_option( 'font' ) == 'georgia' ) { $styles .= 'body { font-family: Georgia, serif; }'."\n"; }
if ( ot_get_option( 'font' ) == 'verdana' ) { $styles .= 'body { font-family: Verdana, sans-serif; }'."\n"; }
if ( ot_get_option( 'font' ) == 'tahoma' ) { $styles .= 'body { font-family: Tahoma, sans-serif; }'."\n"; }
// container width
if ( ot_get_option('container-width') != '1120' ) {
if ( ot_get_option( 'boxed' ) ) {
$styles .= '.boxed #wrapper, .container-inner { max-width: '.ot_get_option('container-width').'px; }'."\n";
}
else {
$styles .= '.container-inner { max-width: '.ot_get_option('container-width').'px; }'."\n";
}
}
// primary color
if ( ot_get_option('color-1') != '#55acee' ) {
$styles .= '
::selection { background-color: '.ot_get_option('color-1').'; }
::-moz-selection { background-color: '.ot_get_option('color-1').'; }
a,
.themeform label .required,
.toggle-search:hover,
.toggle-search.active,
#nav-topbar .nav li > a:hover,
#nav-topbar .nav li:hover > a,
#nav-topbar .nav li.current_page_item > a,
#nav-topbar .nav li.current-menu-item > a,
#nav-topbar .nav li.current-post-parent > a,
#nav-topbar .nav li.current-menu-ancestor > a,
.post-title a:hover,
.post-hover:hover .post-title a,
.post-nav li a:hover i,
.widget > h3:after,
.widget_rss ul li a,
.widget_calendar a,
.alx-tabs-nav li.active a,
.alx-tab .tab-item-category a,
.alx-posts .post-item-category a,
.alx-tab li:hover .tab-item-title a,
.alx-tab li:hover .tab-item-comment a,
.alx-posts li:hover .post-item-title a,
.comment-tabs li.active a,
.comment-awaiting-moderation,
.child-menu a:hover,
.child-menu .current_page_item > a,
.wp-pagenavi a { color: '.ot_get_option('color-1').'; }
.themeform input[type="submit"],
.themeform button[type="submit"],
.sidebar-toggle,
#profile .social-links .social-tooltip:hover,
.post-tags a:hover,
.widget_calendar caption,
.author-bio .bio-avatar:after,
.post-comments,
.commentlist li.bypostauthor > .comment-body:after,
.commentlist li.comment-author-admin > .comment-body:after { background-color: '.ot_get_option('color-1').'; }
.alx-tabs-nav li.active a { border-color: '.ot_get_option('color-1').'; }
#nav-topbar .nav li > a:hover,
#nav-topbar .nav li:hover > a,
#nav-topbar .nav li.current_page_item > a,
#nav-topbar .nav li.current-menu-item > a,
#nav-topbar .nav li.current-menu-ancestor > a,
#nav-topbar .nav li.current-post-parent > a,
#nav-topbar .nav > li.current_page_item > a:before,
#nav-topbar .nav > li.current-menu-item > a:before,
#nav-topbar .nav > li.current-menu-ancestor > a:before,
#nav-topbar .nav > li.current-post-parent > a:before { border-top-color: '.ot_get_option('color-1').'; }
#footer-bottom .container-inner,
.widget > h3 > span,
.alx-tabs-nav li.active a,
.comment-tabs li.active a,
.wp-pagenavi a:hover,
.wp-pagenavi a:active,
.wp-pagenavi span.current { border-bottom-color: '.ot_get_option('color-1').'!important; }
'."\n";
}
// image border radius
if ( ot_get_option('image-border-radius') != '0' ) {
$styles .= 'img { -webkit-border-radius: '.ot_get_option('image-border-radius').'px; border-radius: '.ot_get_option('image-border-radius').'px; }'."\n";
}
// body background
if ( ot_get_option('body-background') != '' ) {
$body_background = ot_get_option('body-background');
$body_color = $body_background['background-color'];
$body_image = $body_background['background-image'];
$body_position = $body_background['background-position'];
$body_attachment = $body_background['background-attachment'];
$body_repeat = $body_background['background-repeat'];
$body_size = $body_background['background-size'];
if ( $body_image && $body_size == "" ) {
$styles .= 'body { background: '.$body_color.' url('.$body_image.') '.$body_attachment.' '.$body_position.' '.$body_repeat.'; }'."\n";
} elseif ( $body_image && $body_size != "" ) {
$styles .= 'body { background: '.$body_color.' url('.$body_image.') '.$body_attachment.' '.$body_position.' '.$body_repeat.'; background-size: '.$body_size.'; }'."\n";
} elseif ( $body_background['background-color'] ) {
$styles .= 'body { background-color: '.$body_color.'; }'."\n";
} else {
$styles .= '';
}
}
$styles .= '</style>'."\n";
// end output
echo $styles;
}
}
}
add_action( 'wp_head', 'alx_dynamic_css', 100 );

BIN
functions/images/col-1c.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 630 B

View file

@ -0,0 +1,44 @@
/*
post-formats.js
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Copyright: (c) 2013 Jermaine Maree, http://jermainemaree.com
*/
jQuery(document).ready(function($) {
// Hide post format sections
function hide_statuses() {
$('#format-audio,#format-aside,#format-chat,#format-gallery,#format-image,#format-link,#format-quote,#format-status,#format-video').hide();
}
// Post Formats
if($("#post-formats-select").length) {
// Hide post format sections
hide_statuses();
// Supported post formats
var post_formats = ['audio','aside','chat','gallery','image','link','quote','status','video'];
// Get selected post format
var selected_post_format = $("input[name='post_format']:checked").val();
// Show post format meta box
if(jQuery.inArray(selected_post_format,post_formats) != '-1') {
$('#format-'+selected_post_format).show();
}
// Hide/show post format meta box when option changed
$("input[name='post_format']:radio").change(function() {
// Hide post format sections
hide_statuses();
// Shoe selected section
if(jQuery.inArray($(this).val(),post_formats) != '-1') {
$('#format-'+$(this).val()).show();
}
});
}
});

163
functions/meta-boxes.php Normal file
View file

@ -0,0 +1,163 @@
<?php
/* Initialize the meta boxes.
/* ------------------------------------ */
add_action( 'admin_init', '_custom_meta_boxes' );
function _custom_meta_boxes() {
/* Custom meta boxes
/* ------------------------------------ */
$page_options = array(
'id' => 'page-options',
'title' => 'Page Options',
'desc' => '',
'pages' => array( 'page' ),
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'label' => 'Heading',
'id' => '_heading',
'type' => 'text'
),
array(
'label' => 'Subheading',
'id' => '_subheading',
'type' => 'text'
),
array(
'label' => 'Primary Sidebar',
'id' => '_sidebar_primary',
'type' => 'sidebar-select',
'desc' => ''
),
array(
'label' => 'Layout',
'id' => '_layout',
'type' => 'radio-image',
'desc' => '',
'std' => 'inherit',
'choices' => array(
array(
'value' => 'inherit',
'label' => 'Inherit Layout',
'src' => get_template_directory_uri() . '/functions/images/layout-off.png'
),
array(
'value' => 'col-1c',
'label' => '1 Column',
'src' => get_template_directory_uri() . '/functions/images/col-1c.png'
),
array(
'value' => 'col-2cl',
'label' => '2 Column Left',
'src' => get_template_directory_uri() . '/functions/images/col-2cl.png'
),
array(
'value' => 'col-2cr',
'label' => '2 Column Right',
'src' => get_template_directory_uri() . '/functions/images/col-2cr.png'
)
)
)
)
);
$post_options = array(
'id' => 'post-options',
'title' => 'Post Options',
'desc' => '',
'pages' => array( 'post' ),
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'label' => 'Primary Sidebar',
'id' => '_sidebar_primary',
'type' => 'sidebar-select',
'desc' => 'Overrides default'
),
array(
'label' => 'Layout',
'id' => '_layout',
'type' => 'radio-image',
'desc' => 'Overrides the default layout option',
'std' => 'inherit',
'choices' => array(
array(
'value' => 'inherit',
'label' => 'Inherit Layout',
'src' => get_template_directory_uri() . '/functions/images/layout-off.png'
),
array(
'value' => 'col-1c',
'label' => '1 Column',
'src' => get_template_directory_uri() . '/functions/images/col-1c.png'
),
array(
'value' => 'col-2cl',
'label' => '2 Column Left',
'src' => get_template_directory_uri() . '/functions/images/col-2cl.png'
),
array(
'value' => 'col-2cr',
'label' => '2 Column Right',
'src' => get_template_directory_uri() . '/functions/images/col-2cr.png'
)
)
)
)
);
$post_format_gallery = array(
'id' => 'format-gallery',
'title' => 'Format: Gallery',
'desc' => '<a title="Add Media" data-editor="content" class="button insert-media add_media" id="insert-media-button" href="#">Add Media</a> <br /><br />
To create a gallery, upload your images and then select "<strong>Uploaded to this post</strong>" from the dropdown (in the media popup) to see images attached to this post. You can drag to re-order or delete them there. <br /><br /><i>Note: Do not click the "Insert into post" button. Only use the "Insert Media" section of the upload popup, not "Create Gallery" which is for standard post galleries.</i>',
'pages' => array( 'post' ),
'context' => 'normal',
'priority' => 'high',
'fields' => array()
);
$post_format_audio = array(
'id' => 'format-audio',
'title' => 'Format: Audio',
'desc' => 'These settings enable you to embed audio into your posts.',
'pages' => array( 'post' ),
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'label' => 'Audio URL',
'id' => '_audio_url',
'type' => 'text',
'desc' => ''
)
)
);
$post_format_video = array(
'id' => 'format-video',
'title' => 'Format: Video',
'desc' => 'These settings enable you to embed videos into your posts.',
'pages' => array( 'post' ),
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'label' => 'Video URL',
'id' => '_video_url',
'type' => 'text',
'desc' => ''
)
)
);
/* Register meta boxes
/* ------------------------------------ */
ot_register_meta_box( $page_options );
ot_register_meta_box( $post_format_gallery );
ot_register_meta_box( $post_format_audio );
ot_register_meta_box( $post_format_video );
ot_register_meta_box( $post_options );
}

60
functions/shortcodes.php Normal file
View file

@ -0,0 +1,60 @@
<?php
/* ------------------------------------------------------------------------- *
* Basic Shortcodes
/* ------------------------------------------------------------------------- */
/* Columns / Grid
/* ------------------------------------ */
function alx_column_shortcode($atts,$content=NULL) {
extract( shortcode_atts( array(
'size' => 'one-third',
'last' => false
), $atts) );
$lastclass=$last?' last':'';
$output='<div class="grid '.strip_tags($size).$lastclass.'">'.do_shortcode($content).'</div>';
if($last)
$output.='<div class="clear"></div>';
return $output;
}
add_shortcode('column','alx_column_shortcode');
/* Hr
/* ------------------------------------ */
function alx_hr_shortcode($atts,$content=NULL) {
$output = '<div class="hr"></div>';
return $output;
}
add_shortcode('hr','alx_hr_shortcode');
/* Highlight
/* ------------------------------------ */
function alx_highlight_shortcode($atts,$content=NULL) {
$output = '<span class="highlight">'.strip_tags($content).'</span>';
return $output;
}
add_shortcode('highlight','alx_highlight_shortcode');
/* Dropcap
/* ------------------------------------ */
function alx_dropcap_shortcode($atts,$content=NULL) {
$output = '<span class="dropcap">'.strip_tags($content).'</span>';
return $output;
}
add_shortcode('dropcap','alx_dropcap_shortcode');
/* Pullquote Left
/* ------------------------------------ */
function alx_pullquote_left_shortcode($atts,$content=NULL) {
$output = '<span class="pullquote-left">'.strip_tags($content).'</span>';
return $output;
}
add_shortcode('pullquote-left','alx_pullquote_left_shortcode');
/* Pullquote Right
/* ------------------------------------ */
function alx_pullquote_right_shortcode($atts,$content=NULL) {
$output = '<span class="pullquote-right">'.strip_tags($content).'</span>';
return $output;
}
add_shortcode('pullquote-right','alx_pullquote_right_shortcode');

953
functions/theme-options.php Normal file
View file

@ -0,0 +1,953 @@
<?php
/* Initialize the options before anything else.
/* ------------------------------------ */
add_action( 'admin_init', 'custom_theme_options', 1 );
/* Build the custom settings & update OptionTree.
/* ------------------------------------ */
function custom_theme_options() {
// Get a copy of the saved settings array.
$saved_settings = get_option( 'option_tree_settings', array() );
// Custom settings array that will eventually be passed to the OptionTree Settings API Class.
$custom_settings = array(
/* Help pages
/* ------------------------------------ */
'contextual_help' => array(
'content' => array(
array(
'id' => 'general_help',
'title' => 'Documentation',
'content' => '
<h1>Blogline</h1>
<p>Thanks for using this theme! Enjoy.</p>
<ul>
<li>Read the theme documentation <a target="_blank" href="'.get_template_directory_uri().'/functions/documentation/documentation.html">here</a></li>
</ul>
'
)
)
),
/* Admin panel sections
/* ------------------------------------ */
'sections' => array(
array(
'id' => 'general',
'title' => 'General'
),
array(
'id' => 'blog',
'title' => 'Blog'
),
array(
'id' => 'header',
'title' => 'Header'
),
array(
'id' => 'footer',
'title' => 'Footer'
),
array(
'id' => 'layout',
'title' => 'Layout'
),
array(
'id' => 'sidebars',
'title' => 'Sidebars'
),
array(
'id' => 'social-links',
'title' => 'Social Links'
),
array(
'id' => 'styling',
'title' => 'Styling'
),
),
/* Theme options
/* ------------------------------------ */
'settings' => array(
// General: Custom CSS
array(
'id' => 'custom',
'label' => 'Custom Stylesheet',
'desc' => 'Load custom stylesheet [ <strong>custom.css</strong> ]<br /><i>Note: You must backup this file before a theme update. Consider using a <a target="_blank" href="http://codex.wordpress.org/Child_Themes">child theme</a> instead. More info about child themes can be found in the documentation.</i>',
'std' => 'off',
'type' => 'on-off',
'section' => 'general'
),
// General: Responsive Layout
array(
'id' => 'responsive',
'label' => 'Responsive Layout',
'desc' => 'Mobile and tablet optimizations [ <strong>responsive.css</strong> ]',
'std' => 'on',
'type' => 'on-off',
'section' => 'general'
),
// General: Mobile Sidebar
array(
'id' => 'mobile-sidebar-hide',
'label' => 'Mobile Sidebar Content',
'desc' => 'Sidebar content on low-resolution mobile devices (320px)',
'std' => 'on',
'type' => 'on-off',
'section' => 'general'
),
// General: Favicon
array(
'id' => 'favicon',
'label' => 'Favicon',
'desc' => 'Upload a 16x16px Png/Gif image that will be your favicon',
'type' => 'upload',
'section' => 'general'
),
// General: RSS Feed
array(
'id' => 'rss-feed',
'label' => 'FeedBurner URL',
'desc' => 'Enter your full FeedBurner URL (or any other preferred feed URL) if you wish to use FeedBurner over the standard WordPress feed e.g. http://feeds.feedburner.com/yoururlhere ',
'type' => 'text',
'section' => 'general'
),
// General: Post Comments
array(
'id' => 'post-comments',
'label' => 'Post Comments',
'desc' => 'Comments on posts',
'std' => 'on',
'type' => 'on-off',
'section' => 'general'
),
// General: Page Comments
array(
'id' => 'page-comments',
'label' => 'Page Comments',
'desc' => 'Comments on pages',
'std' => 'off',
'type' => 'on-off',
'section' => 'general'
),
// General: Recommended Plugins
array(
'id' => 'recommended-plugins',
'label' => 'Recommended Plugins',
'desc' => 'Enable or disable the recommended plugins notice',
'std' => 'on',
'type' => 'on-off',
'section' => 'general'
),
// Blog: Blog Layout
array(
'id' => 'blog-layout',
'label' => 'Blog Layout',
'desc' => '',
'std' => 'blog-standard',
'type' => 'radio',
'section' => 'blog',
'choices' => array(
array(
'value' => 'blog-standard',
'label' => 'Standard'
),
array(
'value' => 'blog-grid',
'label' => 'Grid'
),
array(
'value' => 'blog-list',
'label' => 'List'
)
)
),
// Blog: Heading
array(
'id' => 'blog-heading',
'label' => 'Heading',
'desc' => 'Your blog heading',
'type' => 'text',
'section' => 'blog'
),
// Blog: Subheading
array(
'id' => 'blog-subheading',
'label' => 'Subheading',
'desc' => 'Your blog subheading',
'type' => 'text',
'section' => 'blog'
),
// Blog: Excerpt Length
array(
'id' => 'excerpt-length',
'label' => 'Excerpt Length',
'desc' => 'Max number of words',
'std' => '26',
'type' => 'numeric-slider',
'section' => 'blog',
'min_max_step' => '0,100,1'
),
// Blog: Featured Posts
array(
'id' => 'featured-posts-include',
'label' => 'Featured Posts',
'desc' => 'To show featured posts in the slider AND the content below<br /><i>Usually not recommended</i>',
'type' => 'checkbox',
'section' => 'blog',
'choices' => array(
array(
'value' => '1',
'label' => 'Include featured posts in content area'
)
)
),
// Blog: Featured Category
array(
'id' => 'featured-category',
'label' => 'Featured Category',
'desc' => 'By not selecting a category, it will show your latest post(s) from all categories',
'type' => 'category-select',
'section' => 'blog'
),
// Blog: Featured Category Count
array(
'id' => 'featured-posts-count',
'label' => 'Featured Post Count',
'desc' => 'Max number of featured posts to display. <br /><i>Set it to 0 to disable</i>',
'std' => '3',
'type' => 'numeric-slider',
'section' => 'blog',
'min_max_step' => '0,12,1'
),
// Blog: Frontpage Widgets Top
array(
'id' => 'frontpage-widgets-top',
'label' => 'Frontpage Widgets Top',
'desc' => '2 columns of widgets',
'std' => 'off',
'type' => 'on-off',
'section' => 'blog'
),
// Blog: Frontpage Widgets Bottom
array(
'id' => 'frontpage-widgets-bottom',
'label' => 'Frontpage Widgets Bottom',
'desc' => '2 columns of widgets',
'std' => 'off',
'type' => 'on-off',
'section' => 'blog'
),
// Blog: Comment Count
array(
'id' => 'comment-count',
'label' => 'Thumbnail Comment Count',
'desc' => 'Comment count on thumbnails',
'std' => 'on',
'type' => 'on-off',
'section' => 'blog'
),
// Blog: Post Format Icon
array(
'id' => 'format-icon',
'label' => 'Post Format Icons',
'desc' => 'Circle icons',
'std' => 'on',
'type' => 'on-off',
'section' => 'blog'
),
// Blog: Single - Sharrre
array(
'id' => 'sharrre',
'label' => 'Single &mdash; Share Bar',
'desc' => 'Social sharing buttons for each article',
'std' => 'on',
'type' => 'on-off',
'section' => 'blog'
),
// Blog: Twitter Username
array(
'id' => 'twitter-username',
'label' => 'Single &mdash; Share Bar &mdash; Twitter Username',
'desc' => 'Your @username will be added to share-tweets of your posts (optional)',
'type' => 'text',
'section' => 'blog'
),
// Blog: Single - Authorbox
array(
'id' => 'author-bio',
'label' => 'Single &mdash; Author Bio',
'desc' => 'Shows post author description, if it exists',
'std' => 'on',
'type' => 'on-off',
'section' => 'blog'
),
// Blog: Single - Related Posts
array(
'id' => 'related-posts',
'label' => 'Single &mdash; Related Posts',
'desc' => 'Shows randomized related articles below the post',
'std' => 'categories',
'type' => 'radio',
'section' => 'blog',
'choices' => array(
array(
'value' => '1',
'label' => 'Disable'
),
array(
'value' => 'categories',
'label' => 'Related by categories'
),
array(
'value' => 'tags',
'label' => 'Related by tags'
)
)
),
// Blog: Single - Post Navigation Location
array(
'id' => 'post-nav',
'label' => 'Single &mdash; Post Navigation',
'desc' => 'Shows links to the next and previous article',
'std' => 's1',
'type' => 'radio',
'section' => 'blog',
'choices' => array(
array(
'value' => '1',
'label' => 'Disable'
),
array(
'value' => 's1',
'label' => 'Sidebar Primary'
),
array(
'value' => 'content',
'label' => 'Below content'
)
)
),
// Header: Custom Logo
array(
'id' => 'custom-logo',
'label' => 'Custom Logo',
'desc' => 'Upload your custom logo image, 120px height recommended',
'type' => 'upload',
'section' => 'header'
),
// Header: Site Description
array(
'id' => 'site-description',
'label' => 'Site Description',
'desc' => 'The description that appears next to your logo',
'std' => 'on',
'type' => 'on-off',
'section' => 'header'
),
// Header: Profile Avatar
array(
'id' => 'profile-image',
'label' => 'Profile Image',
'desc' => 'Minimum width 400px.',
'type' => 'upload',
'section' => 'header'
),
// Header: Profile Name
array(
'id' => 'profile-name',
'label' => 'Profile Name',
'desc' => 'Your name appears below the image',
'type' => 'text',
'section' => 'header'
),
// Header: Profile Description
array(
'id' => 'profile-description',
'label' => 'Profile Description',
'desc' => 'A short description of you',
'type' => 'text',
'section' => 'header'
),
// Footer: Ads
array(
'id' => 'footer-ads',
'label' => 'Footer Ads',
'desc' => 'Footer widget ads area',
'std' => 'off',
'type' => 'on-off',
'section' => 'footer'
),
// Footer: Widget Columns
array(
'id' => 'footer-widgets',
'label' => 'Footer Widget Columns',
'desc' => 'Select columns to enable footer widgets<br /><i>Recommended number: 3</i>',
'std' => '0',
'type' => 'radio-image',
'section' => 'footer',
'class' => '',
'choices' => array(
array(
'value' => '0',
'label' => 'Disable',
'src' => get_template_directory_uri() . '/functions/images/layout-off.png'
),
array(
'value' => '1',
'label' => '1 Column',
'src' => get_template_directory_uri() . '/functions/images/footer-widgets-1.png'
),
array(
'value' => '2',
'label' => '2 Columns',
'src' => get_template_directory_uri() . '/functions/images/footer-widgets-2.png'
),
array(
'value' => '3',
'label' => '3 Columns',
'src' => get_template_directory_uri() . '/functions/images/footer-widgets-3.png'
),
array(
'value' => '4',
'label' => '4 Columns',
'src' => get_template_directory_uri() . '/functions/images/footer-widgets-4.png'
)
)
),
// Footer: Copyright
array(
'id' => 'copyright',
'label' => 'Footer Copyright',
'desc' => 'Replace the footer copyright text',
'type' => 'text',
'section' => 'footer'
),
// Footer: Credit
array(
'id' => 'credit',
'label' => 'Footer Credit',
'desc' => 'Footer credit text',
'std' => 'on',
'type' => 'on-off',
'section' => 'footer'
),
// Layout : Global
array(
'id' => 'layout-global',
'label' => 'Global Layout',
'desc' => 'Other layouts will override this option if they are set',
'std' => 'col-2cl',
'type' => 'radio-image',
'section' => 'layout',
'choices' => array(
array(
'value' => 'col-1c',
'label' => '1 Column',
'src' => get_template_directory_uri() . '/functions/images/col-1c.png'
),
array(
'value' => 'col-2cl',
'label' => '2 Column Left',
'src' => get_template_directory_uri() . '/functions/images/col-2cl.png'
),
array(
'value' => 'col-2cr',
'label' => '2 Column Right',
'src' => get_template_directory_uri() . '/functions/images/col-2cr.png'
)
)
),
// Layout : Home
array(
'id' => 'layout-home',
'label' => 'Home',
'desc' => '[ <strong>is_home</strong> ] Posts homepage layout',
'std' => 'inherit',
'type' => 'radio-image',
'section' => 'layout',
'choices' => array(
array(
'value' => 'inherit',
'label' => 'Inherit Global Layout',
'src' => get_template_directory_uri() . '/functions/images/layout-off.png'
),
array(
'value' => 'col-1c',
'label' => '1 Column',
'src' => get_template_directory_uri() . '/functions/images/col-1c.png'
),
array(
'value' => 'col-2cl',
'label' => '2 Column Left',
'src' => get_template_directory_uri() . '/functions/images/col-2cl.png'
),
array(
'value' => 'col-2cr',
'label' => '2 Column Right',
'src' => get_template_directory_uri() . '/functions/images/col-2cr.png'
)
)
),
// Layout : Single
array(
'id' => 'layout-single',
'label' => 'Single',
'desc' => '[ <strong>is_single</strong> ] Single post layout - If a post has a set layout, it will override this.',
'std' => 'inherit',
'type' => 'radio-image',
'section' => 'layout',
'choices' => array(
array(
'value' => 'inherit',
'label' => 'Inherit Global Layout',
'src' => get_template_directory_uri() . '/functions/images/layout-off.png'
),
array(
'value' => 'col-1c',
'label' => '1 Column',
'src' => get_template_directory_uri() . '/functions/images/col-1c.png'
),
array(
'value' => 'col-2cl',
'label' => '2 Column Left',
'src' => get_template_directory_uri() . '/functions/images/col-2cl.png'
),
array(
'value' => 'col-2cr',
'label' => '2 Column Right',
'src' => get_template_directory_uri() . '/functions/images/col-2cr.png'
)
)
),
// Layout : Archive
array(
'id' => 'layout-archive',
'label' => 'Archive',
'desc' => '[ <strong>is_archive</strong> ] Category, date, tag and author archive layout',
'std' => 'inherit',
'type' => 'radio-image',
'section' => 'layout',
'choices' => array(
array(
'value' => 'inherit',
'label' => 'Inherit Global Layout',
'src' => get_template_directory_uri() . '/functions/images/layout-off.png'
),
array(
'value' => 'col-1c',
'label' => '1 Column',
'src' => get_template_directory_uri() . '/functions/images/col-1c.png'
),
array(
'value' => 'col-2cl',
'label' => '2 Column Left',
'src' => get_template_directory_uri() . '/functions/images/col-2cl.png'
),
array(
'value' => 'col-2cr',
'label' => '2 Column Right',
'src' => get_template_directory_uri() . '/functions/images/col-2cr.png'
)
)
),
// Layout : Archive - Category
array(
'id' => 'layout-archive-category',
'label' => 'Archive &mdash; Category',
'desc' => '[ <strong>is_category</strong> ] Category archive layout',
'std' => 'inherit',
'type' => 'radio-image',
'section' => 'layout',
'choices' => array(
array(
'value' => 'inherit',
'label' => 'Inherit Global Layout',
'src' => get_template_directory_uri() . '/functions/images/layout-off.png'
),
array(
'value' => 'col-1c',
'label' => '1 Column',
'src' => get_template_directory_uri() . '/functions/images/col-1c.png'
),
array(
'value' => 'col-2cl',
'label' => '2 Column Left',
'src' => get_template_directory_uri() . '/functions/images/col-2cl.png'
),
array(
'value' => 'col-2cr',
'label' => '2 Column Right',
'src' => get_template_directory_uri() . '/functions/images/col-2cr.png'
)
)
),
// Layout : Search
array(
'id' => 'layout-search',
'label' => 'Search',
'desc' => '[ <strong>is_search</strong> ] Search page layout',
'std' => 'inherit',
'type' => 'radio-image',
'section' => 'layout',
'choices' => array(
array(
'value' => 'inherit',
'label' => 'Inherit Global Layout',
'src' => get_template_directory_uri() . '/functions/images/layout-off.png'
),
array(
'value' => 'col-1c',
'label' => '1 Column',
'src' => get_template_directory_uri() . '/functions/images/col-1c.png'
),
array(
'value' => 'col-2cl',
'label' => '2 Column Left',
'src' => get_template_directory_uri() . '/functions/images/col-2cl.png'
),
array(
'value' => 'col-2cr',
'label' => '2 Column Right',
'src' => get_template_directory_uri() . '/functions/images/col-2cr.png'
)
)
),
// Layout : Error 404
array(
'id' => 'layout-404',
'label' => 'Error 404',
'desc' => '[ <strong>is_404</strong> ] Error 404 page layout',
'std' => 'inherit',
'type' => 'radio-image',
'section' => 'layout',
'choices' => array(
array(
'value' => 'inherit',
'label' => 'Inherit Global Layout',
'src' => get_template_directory_uri() . '/functions/images/layout-off.png'
),
array(
'value' => 'col-1c',
'label' => '1 Column',
'src' => get_template_directory_uri() . '/functions/images/col-1c.png'
),
array(
'value' => 'col-2cl',
'label' => '2 Column Left',
'src' => get_template_directory_uri() . '/functions/images/col-2cl.png'
),
array(
'value' => 'col-2cr',
'label' => '2 Column Right',
'src' => get_template_directory_uri() . '/functions/images/col-2cr.png'
)
)
),
// Layout : Default Page
array(
'id' => 'layout-page',
'label' => 'Default Page',
'desc' => '[ <strong>is_page</strong> ] Default page layout - If a page has a set layout, it will override this.',
'std' => 'inherit',
'type' => 'radio-image',
'section' => 'layout',
'choices' => array(
array(
'value' => 'inherit',
'label' => 'Inherit Global Layout',
'src' => get_template_directory_uri() . '/functions/images/layout-off.png'
),
array(
'value' => 'col-1c',
'label' => '1 Column',
'src' => get_template_directory_uri() . '/functions/images/col-1c.png'
),
array(
'value' => 'col-2cl',
'label' => '2 Column Left',
'src' => get_template_directory_uri() . '/functions/images/col-2cl.png'
),
array(
'value' => 'col-2cr',
'label' => '2 Column Right',
'src' => get_template_directory_uri() . '/functions/images/col-2cr.png'
)
)
),
// Sidebars: Create Areas
array(
'id' => 'sidebar-areas',
'label' => 'Create Sidebars',
'desc' => 'You must save changes for the new areas to appear below. <br /><i>Warning: Make sure each area has a unique ID.</i>',
'type' => 'list-item',
'section' => 'sidebars',
'choices' => array(),
'settings' => array(
array(
'id' => 'id',
'label' => 'Sidebar ID',
'desc' => 'This ID must be unique, for example "sidebar-about"',
'std' => 'sidebar-',
'type' => 'text',
'choices' => array()
)
)
),
// Sidebar 1 & 2
array(
'id' => 's1-home',
'label' => 'Home',
'desc' => '[ <strong>is_home</strong> ] Primary',
'type' => 'sidebar-select',
'section' => 'sidebars'
),
array(
'id' => 's1-single',
'label' => 'Single',
'desc' => '[ <strong>is_single</strong> ] Primary - If a single post has a unique sidebar, it will override this.',
'type' => 'sidebar-select',
'section' => 'sidebars'
),
array(
'id' => 's1-archive',
'label' => 'Archive',
'desc' => '[ <strong>is_archive</strong> ] Primary',
'type' => 'sidebar-select',
'section' => 'sidebars'
),
array(
'id' => 's1-archive-category',
'label' => 'Archive &mdash; Category',
'desc' => '[ <strong>is_category</strong> ] Primary',
'type' => 'sidebar-select',
'section' => 'sidebars'
),
array(
'id' => 's1-search',
'label' => 'Search',
'desc' => '[ <strong>is_search</strong> ] Primary',
'type' => 'sidebar-select',
'section' => 'sidebars'
),
array(
'id' => 's1-404',
'label' => 'Error 404',
'desc' => '[ <strong>is_404</strong> ] Primary',
'type' => 'sidebar-select',
'section' => 'sidebars'
),
array(
'id' => 's1-page',
'label' => 'Default Page',
'desc' => '[ <strong>is_page</strong> ] Primary - If a page has a unique sidebar, it will override this.',
'type' => 'sidebar-select',
'section' => 'sidebars'
),
// Social Links : List
array(
'id' => 'social-links',
'label' => 'Social Links',
'desc' => 'Create and organize your social links',
'type' => 'list-item',
'section' => 'social-links',
'choices' => array(),
'settings' => array(
array(
'id' => 'social-icon',
'label' => 'Icon Name',
'desc' => 'Font Awesome icon names [<a href="http://fortawesome.github.io/Font-Awesome/icons/" target="_blank"><strong>View all</strong>]</a> ',
'std' => 'fa-',
'type' => 'text',
'choices' => array()
),
array(
'id' => 'social-link',
'label' => 'Link',
'desc' => 'Enter the full url for your icon button',
'std' => 'http://',
'type' => 'text',
'choices' => array()
),
array(
'id' => 'social-color',
'label' => 'Icon Color',
'desc' => 'Set a unique color for your icon (optional)',
'std' => '',
'type' => 'colorpicker',
'section' => 'styling'
),
array(
'id' => 'social-target',
'label' => 'Link Options',
'desc' => '',
'std' => '',
'type' => 'checkbox',
'choices' => array(
array(
'value' => '_blank',
'label' => 'Open in new window'
)
)
)
)
),
// Styling: Enable
array(
'id' => 'dynamic-styles',
'label' => 'Dynamic Styles',
'desc' => 'Turn on to use the styling options below',
'std' => 'on',
'type' => 'on-off',
'section' => 'styling'
),
// Styling: Font
array(
'id' => 'font',
'label' => 'Font',
'desc' => 'Select font for the theme',
'type' => 'select',
'std' => 'raleway',
'section' => 'styling',
'choices' => array(
array(
'value' => 'titillium-web',
'label' => 'Titillium Web, Latin (Self-hosted)'
),
array(
'value' => 'titillium-web-ext',
'label' => 'Titillium Web, Latin-Ext'
),
array(
'value' => 'droid-serif',
'label' => 'Droid Serif, Latin'
),
array(
'value' => 'source-sans-pro',
'label' => 'Source Sans Pro, Latin-Ext'
),
array(
'value' => 'lato',
'label' => 'Lato, Latin'
),
array(
'value' => 'raleway',
'label' => 'Raleway, Latin'
),
array(
'value' => 'ubuntu',
'label' => 'Ubuntu, Latin-Ext'
),
array(
'value' => 'ubuntu-cyr',
'label' => 'Ubuntu, Latin / Cyrillic-Ext'
),
array(
'value' => 'roboto-condensed',
'label' => 'Roboto Condensed, Latin-Ext'
),
array(
'value' => 'roboto-condensed-cyr',
'label' => 'Roboto Condensed, Latin / Cyrillic-Ext'
),
array(
'value' => 'roboto-slab',
'label' => 'Roboto Slab, Latin-Ext'
),
array(
'value' => 'roboto-slab-cyr',
'label' => 'Roboto Slab, Latin / Cyrillic-Ext'
),
array(
'value' => 'playfair-display',
'label' => 'Playfair Display, Latin-Ext'
),
array(
'value' => 'playfair-display-cyr',
'label' => 'Playfair Display, Latin / Cyrillic'
),
array(
'value' => 'open-sans',
'label' => 'Open Sans, Latin-Ext'
),
array(
'value' => 'open-sans-cyr',
'label' => 'Open Sans, Latin / Cyrillic-Ext'
),
array(
'value' => 'pt-serif',
'label' => 'PT Serif, Latin-Ext'
),
array(
'value' => 'pt-serif-cyr',
'label' => 'PT Serif, Latin / Cyrillic-Ext'
),
array(
'value' => 'arial',
'label' => 'Arial'
),
array(
'value' => 'georgia',
'label' => 'Georgia'
),
array(
'value' => 'verdana',
'label' => 'Verdana'
),
array(
'value' => 'tahoma',
'label' => 'Tahoma'
)
)
),
// Styling: Container Width
array(
'id' => 'container-width',
'label' => 'Website Max-width',
'desc' => 'Max-width of the container. <br /><i>Note: Set it to <strong>1120</strong> for default 620px content.</i>',
'std' => '1120',
'type' => 'numeric-slider',
'section' => 'styling',
'min_max_step' => '1024,1600,1'
),
// Styling: Primary Color
array(
'id' => 'color-1',
'label' => 'Primary Color',
'std' => '#55acee',
'type' => 'colorpicker',
'section' => 'styling',
'class' => ''
),
// Styling: Image Border Radius
array(
'id' => 'image-border-radius',
'label' => 'Image Border Radius',
'desc' => 'Give your thumbnails and layout images rounded corners',
'std' => '3',
'type' => 'numeric-slider',
'section' => 'styling',
'min_max_step' => '0,15,1'
),
// Styling: Body Background
array(
'id' => 'body-background',
'label' => 'Body Background',
'desc' => 'Set background color and/or upload your own background image',
'type' => 'background',
'section' => 'styling'
)
)
);
/* Settings are not the same? Update the DB
/* ------------------------------------ */
if ( $saved_settings !== $custom_settings ) {
update_option( 'option_tree_settings', $custom_settings );
}
}

View file

@ -0,0 +1,197 @@
<?php
/*
AlxPosts Widget
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Copyright: (c) 2013 Alexander "Alx" Agnarson - http://alxmedia.se
@package AlxPosts
@version 1.0
*/
class AlxPosts extends WP_Widget {
/* Constructor
/* ------------------------------------ */
function AlxPosts() {
parent::__construct( false, 'AlxPosts', array('description' => 'Display posts from a category', 'classname' => 'widget_alx_posts') );;
}
/* Widget
/* ------------------------------------ */
public function widget($args, $instance) {
extract( $args );
$instance['title']?NULL:$instance['title']='';
$title = apply_filters('widget_title',$instance['title']);
$output = $before_widget."\n";
if($title)
$output .= $before_title.$title.$after_title;
ob_start();
?>
<?php
$posts = new WP_Query( array(
'post_type' => array( 'post' ),
'showposts' => $instance['posts_num'],
'cat' => $instance['posts_cat_id'],
'ignore_sticky_posts' => true,
'orderby' => $instance['posts_orderby'],
'order' => 'dsc',
'date_query' => array(
array(
'after' => $instance['posts_time'],
),
),
) );
?>
<ul class="alx-posts group <?php if($instance['posts_thumb']) { echo 'thumbs-enabled'; } ?>">
<?php while ($posts->have_posts()): $posts->the_post(); ?>
<li>
<?php if($instance['posts_thumb']) { // Thumbnails enabled? ?>
<div class="post-item-thumbnail">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php if ( has_post_thumbnail() ): ?>
<?php the_post_thumbnail('thumb-medium'); ?>
<?php else: ?>
<img src="<?php echo get_template_directory_uri(); ?>/img/thumb-medium.png" alt="<?php the_title(); ?>" />
<?php endif; ?>
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-play"></i></span>'; ?>
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-volume-up"></i></span>'; ?>
<?php if ( is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-star"></i></span>'; ?>
</a>
</div>
<?php } ?>
<div class="post-item-inner group">
<?php if($instance['posts_category']) { ?><p class="post-item-category"><?php the_category(' / '); ?></p><?php } ?>
<p class="post-item-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></p>
<?php if($instance['posts_date']) { ?><p class="post-item-date"><?php the_time('j M, Y'); ?></p><?php } ?>
</div>
</li>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
</ul><!--/.alx-posts-->
<?php
$output .= ob_get_clean();
$output .= $after_widget."\n";
echo $output;
}
/* Widget update
/* ------------------------------------ */
public function update($new,$old) {
$instance = $old;
$instance['title'] = strip_tags($new['title']);
// Posts
$instance['posts_thumb'] = $new['posts_thumb']?1:0;
$instance['posts_category'] = $new['posts_category']?1:0;
$instance['posts_date'] = $new['posts_date']?1:0;
$instance['posts_num'] = strip_tags($new['posts_num']);
$instance['posts_cat_id'] = strip_tags($new['posts_cat_id']);
$instance['posts_orderby'] = strip_tags($new['posts_orderby']);
$instance['posts_time'] = strip_tags($new['posts_time']);
return $instance;
}
/* Widget form
/* ------------------------------------ */
public function form($instance) {
// Default widget settings
$defaults = array(
'title' => '',
// Posts
'posts_thumb' => 1,
'posts_category' => 1,
'posts_date' => 1,
'posts_num' => '4',
'posts_cat_id' => '0',
'posts_orderby' => 'date',
'posts_time' => '0',
);
$instance = wp_parse_args( (array) $instance, $defaults );
?>
<style>
.widget .widget-inside .alx-options-posts .postform { width: 100%; }
.widget .widget-inside .alx-options-posts p { margin: 3px 0; }
.widget .widget-inside .alx-options-posts hr { margin: 20px 0 10px; }
.widget .widget-inside .alx-options-posts h4 { margin-bottom: 10px; }
</style>
<div class="alx-options-posts">
<p>
<label for="<?php echo esc_attr( $this->get_field_id('title') ); ?>">Title:</label>
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id('title') ); ?>" name="<?php echo esc_attr( $this->get_field_name('title') ); ?>" type="text" value="<?php echo esc_attr( $instance["title"] ); ?>" />
</p>
<h4>List Posts</h4>
<p>
<input type="checkbox" class="checkbox" id="<?php echo esc_attr( $this->get_field_id('posts_thumb') ); ?>" name="<?php echo esc_attr( $this->get_field_name('posts_thumb') ); ?>" <?php checked( (bool) $instance["posts_thumb"], true ); ?>>
<label for="<?php echo esc_attr( $this->get_field_id('posts_thumb') ); ?>">Show thumbnails</label>
</p>
<p>
<label style="width: 55%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("posts_num") ); ?>">Items to show</label>
<input style="width:20%;" id="<?php echo esc_attr( $this->get_field_id("posts_num") ); ?>" name="<?php echo esc_attr( $this->get_field_name("posts_num") ); ?>" type="text" value="<?php echo absint($instance["posts_num"]); ?>" size='3' />
</p>
<p>
<label style="width: 100%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("posts_cat_id") ); ?>">Category:</label>
<?php wp_dropdown_categories( array( 'name' => $this->get_field_name("posts_cat_id"), 'selected' => $instance["posts_cat_id"], 'show_option_all' => 'All', 'show_count' => true ) ); ?>
</p>
<p style="padding-top: 0.3em;">
<label style="width: 100%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("posts_orderby") ); ?>">Order by:</label>
<select style="width: 100%;" id="<?php echo esc_attr( $this->get_field_id("posts_orderby") ); ?>" name="<?php echo esc_attr( $this->get_field_name("posts_orderby") ); ?>">
<option value="date"<?php selected( $instance["posts_orderby"], "date" ); ?>>Most recent</option>
<option value="comment_count"<?php selected( $instance["posts_orderby"], "comment_count" ); ?>>Most commented</option>
<option value="rand"<?php selected( $instance["posts_orderby"], "rand" ); ?>>Random</option>
</select>
</p>
<p style="padding-top: 0.3em;">
<label style="width: 100%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("posts_time") ); ?>">Posts from:</label>
<select style="width: 100%;" id="<?php echo esc_attr( $this->get_field_id("posts_time") ); ?>" name="<?php echo esc_attr( $this->get_field_name("posts_time") ); ?>">
<option value="0"<?php selected( $instance["posts_time"], "0" ); ?>>All time</option>
<option value="1 year ago"<?php selected( $instance["posts_time"], "1 year ago" ); ?>>This year</option>
<option value="1 month ago"<?php selected( $instance["posts_time"], "1 month ago" ); ?>>This month</option>
<option value="1 week ago"<?php selected( $instance["posts_time"], "1 week ago" ); ?>>This week</option>
<option value="1 day ago"<?php selected( $instance["posts_time"], "1 day ago" ); ?>>Past 24 hours</option>
</select>
</p>
<hr>
<h4>Post Info</h4>
<p>
<input type="checkbox" class="checkbox" id="<?php echo esc_attr( $this->get_field_id('posts_category') ); ?>" name="<?php echo esc_attr( $this->get_field_name('posts_category') ); ?>" <?php checked( (bool) $instance["posts_category"], true ); ?>>
<label for="<?php echo esc_attr( $this->get_field_id('posts_category') ); ?>">Show categories</label>
</p>
<p>
<input type="checkbox" class="checkbox" id="<?php echo esc_attr( $this->get_field_id('posts_date') ); ?>" name="<?php echo esc_attr( $this->get_field_name('posts_date') ); ?>" <?php checked( (bool) $instance["posts_date"], true ); ?>>
<label for="<?php echo esc_attr( $this->get_field_id('posts_date') ); ?>">Show dates</label>
</p>
<hr>
</div>
<?php
}
}
/* Register widget
/* ------------------------------------ */
if ( ! function_exists( 'alx_register_widget_posts' ) ) {
function alx_register_widget_posts() {
register_widget( 'AlxPosts' );
}
}
add_action( 'widgets_init', 'alx_register_widget_posts' );

View file

@ -0,0 +1,417 @@
<?php
/*
AlxTabs Widget
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Copyright: (c) 2013 Alexander "Alx" Agnarson - http://alxmedia.se
@package AlxTabs
@version 1.0
*/
class AlxTabs extends WP_Widget {
/* Constructor
/* ------------------------------------ */
function AlxTabs() {
parent::__construct( false, 'AlxTabs', array('description' => 'List posts, comments, and/or tags with or without tabs.', 'classname' => 'widget_alx_tabs') );;
}
/* Create tabs-nav
/* ------------------------------------ */
private function _create_tabs($tabs,$count) {
// Borrowed from Jermaine Maree, thanks mate!
$titles = array(
'recent' => __('Recent Posts','blogline'),
'popular' => __('Popular Posts','blogline'),
'comments' => __('Recent Comments','blogline'),
'tags' => __('Tags','blogline')
);
$icons = array(
'recent' => 'fa fa-clock-o',
'popular' => 'fa fa-star',
'comments' => 'fa fa-comments-o',
'tags' => 'fa fa-tags'
);
$output = sprintf('<ul class="alx-tabs-nav group tab-count-%s">', $count);
foreach ( $tabs as $tab ) {
$output .= sprintf('<li class="alx-tab tab-%1$s"><a href="#tab-%2$s" title="%4$s"><i class="%3$s"></i><span>%4$s</span></a></li>',$tab, $tab, $icons[$tab], $titles[$tab]);
}
$output .= '</ul>';
return $output;
}
/* Widget
/* ------------------------------------ */
public function widget($args, $instance) {
extract( $args );
$instance['title']?NULL:$instance['title']='';
$title = apply_filters('widget_title',$instance['title']);
$output = $before_widget."\n";
if($title)
$output .= $before_title.$title.$after_title;
ob_start();
/* Set tabs-nav order & output it
/* ------------------------------------ */
$tabs = array();
$count = 0;
$order = array(
'recent' => $instance['order_recent'],
'popular' => $instance['order_popular'],
'comments' => $instance['order_comments'],
'tags' => $instance['order_tags']
);
asort($order);
foreach ( $order as $key => $value ) {
if ( $instance[$key.'_enable'] ) {
$tabs[] = $key;
$count++;
}
}
if ( $tabs && ($count > 1) ) { $output .= $this->_create_tabs($tabs,$count); }
?>
<div class="alx-tabs-container">
<?php if($instance['recent_enable']) { // Recent posts enabled? ?>
<?php $recent=new WP_Query(); ?>
<?php $recent->query('showposts='.$instance["recent_num"].'&cat='.$instance["recent_cat_id"].'&ignore_sticky_posts=1');?>
<ul id="tab-recent" class="alx-tab group <?php if($instance['recent_thumbs']) { echo 'thumbs-enabled'; } ?>">
<?php while ($recent->have_posts()): $recent->the_post(); ?>
<li>
<?php if($instance['recent_thumbs']) { // Thumbnails enabled? ?>
<div class="tab-item-thumbnail">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php if ( has_post_thumbnail() ): ?>
<?php the_post_thumbnail('thumb-small'); ?>
<?php else: ?>
<img src="<?php echo get_template_directory_uri(); ?>/img/thumb-small.png" alt="<?php the_title(); ?>" />
<?php endif; ?>
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-play"></i></span>'; ?>
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-volume-up"></i></span>'; ?>
<?php if ( is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-star"></i></span>'; ?>
</a>
</div>
<?php } ?>
<div class="tab-item-inner group">
<?php if($instance['tabs_category']) { ?><p class="tab-item-category"><?php the_category(' / '); ?></p><?php } ?>
<p class="tab-item-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></p>
<?php if($instance['tabs_date']) { ?><p class="tab-item-date"><?php the_time('j M, Y'); ?></p><?php } ?>
</div>
</li>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
</ul><!--/.alx-tab-->
<?php } ?>
<?php if($instance['popular_enable']) { // Popular posts enabled? ?>
<?php
$popular = new WP_Query( array(
'post_type' => array( 'post' ),
'showposts' => $instance['popular_num'],
'cat' => $instance['popular_cat_id'],
'ignore_sticky_posts' => true,
'orderby' => 'comment_count',
'order' => 'dsc',
'date_query' => array(
array(
'after' => $instance['popular_time'],
),
),
) );
?>
<ul id="tab-popular" class="alx-tab group <?php if($instance['popular_thumbs']) { echo 'thumbs-enabled'; } ?>">
<?php while ( $popular->have_posts() ): $popular->the_post(); ?>
<li>
<?php if($instance['popular_thumbs']) { // Thumbnails enabled? ?>
<div class="tab-item-thumbnail">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php if ( has_post_thumbnail() ): ?>
<?php the_post_thumbnail('thumb-small'); ?>
<?php else: ?>
<img src="<?php echo get_template_directory_uri(); ?>/img/thumb-small.png" alt="<?php the_title(); ?>" />
<?php endif; ?>
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-play"></i></span>'; ?>
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-volume-up"></i></span>'; ?>
<?php if ( is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-star"></i></span>'; ?>
</a>
</div>
<?php } ?>
<div class="tab-item-inner group">
<?php if($instance['tabs_category']) { ?><p class="tab-item-category"><?php the_category(' / '); ?></p><?php } ?>
<p class="tab-item-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></p>
<?php if($instance['tabs_date']) { ?><p class="tab-item-date"><?php the_time('j M, Y'); ?></p><?php } ?>
</div>
</li>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
</ul><!--/.alx-tab-->
<?php } ?>
<?php if($instance['comments_enable']) { // Recent comments enabled? ?>
<?php $comments = get_comments(array('number'=>$instance["comments_num"],'status'=>'approve','post_status'=>'publish')); ?>
<ul id="tab-comments" class="alx-tab group <?php if($instance['comments_avatars']) { echo 'avatars-enabled'; } ?>">
<?php foreach ($comments as $comment): ?>
<li>
<?php if($instance['comments_avatars']) { // Avatars enabled? ?>
<div class="tab-item-avatar">
<a href="<?php echo esc_url(get_comment_link($comment->comment_ID)); ?>">
<?php echo get_avatar($comment->comment_author_email,$size='96'); ?>
</a>
</div>
<?php } ?>
<div class="tab-item-inner group">
<?php $str=explode(' ',get_comment_excerpt($comment->comment_ID)); $comment_excerpt=implode(' ',array_slice($str,0,11)); if(count($str) > 11 && substr($comment_excerpt,-1)!='.') $comment_excerpt.='...' ?>
<div class="tab-item-name"><?php echo esc_attr( $comment->comment_author ); ?> <?php _e('says:','blogline'); ?></div>
<div class="tab-item-comment"><a href="<?php echo esc_url(get_comment_link($comment->comment_ID)); ?>"><?php echo esc_attr( $comment_excerpt ); ?></a></div>
</div>
</li>
<?php endforeach; ?>
</ul><!--/.alx-tab-->
<?php } ?>
<?php if($instance['tags_enable']) { // Tags enabled? ?>
<ul id="tab-tags" class="alx-tab group">
<li>
<?php wp_tag_cloud(); ?>
</li>
</ul><!--/.alx-tab-->
<?php } ?>
</div>
<?php
$output .= ob_get_clean();
$output .= $after_widget."\n";
echo $output;
}
/* Widget update
/* ------------------------------------ */
public function update($new,$old) {
$instance = $old;
$instance['title'] = strip_tags($new['title']);
$instance['tabs_category'] = $new['tabs_category']?1:0;
$instance['tabs_date'] = $new['tabs_date']?1:0;
// Recent posts
$instance['recent_enable'] = $new['recent_enable']?1:0;
$instance['recent_thumbs'] = $new['recent_thumbs']?1:0;
$instance['recent_cat_id'] = strip_tags($new['recent_cat_id']);
$instance['recent_num'] = strip_tags($new['recent_num']);
// Popular posts
$instance['popular_enable'] = $new['popular_enable']?1:0;
$instance['popular_thumbs'] = $new['popular_thumbs']?1:0;
$instance['popular_cat_id'] = strip_tags($new['popular_cat_id']);
$instance['popular_time'] = strip_tags($new['popular_time']);
$instance['popular_num'] = strip_tags($new['popular_num']);
// Recent comments
$instance['comments_enable'] = $new['comments_enable']?1:0;
$instance['comments_avatars'] = $new['comments_avatars']?1:0;
$instance['comments_num'] = strip_tags($new['comments_num']);
// Tags
$instance['tags_enable'] = $new['tags_enable']?1:0;
// Order
$instance['order_recent'] = strip_tags($new['order_recent']);
$instance['order_popular'] = strip_tags($new['order_popular']);
$instance['order_comments'] = strip_tags($new['order_comments']);
$instance['order_tags'] = strip_tags($new['order_tags']);
return $instance;
}
/* Widget form
/* ------------------------------------ */
public function form($instance) {
// Default widget settings
$defaults = array(
'title' => '',
'tabs_category' => 1,
'tabs_date' => 1,
// Recent posts
'recent_enable' => 1,
'recent_thumbs' => 1,
'recent_cat_id' => '0',
'recent_num' => '5',
// Popular posts
'popular_enable' => 1,
'popular_thumbs' => 1,
'popular_cat_id' => '0',
'popular_time' => '0',
'popular_num' => '5',
// Recent comments
'comments_enable' => 1,
'comments_avatars' => 1,
'comments_num' => '5',
// Tags
'tags_enable' => 1,
// Order
'order_recent' => '1',
'order_popular' => '2',
'order_comments' => '3',
'order_tags' => '4',
);
$instance = wp_parse_args( (array) $instance, $defaults );
?>
<style>
.widget .widget-inside .alx-options-tabs .postform { width: 100%; }
.widget .widget-inside .alx-options-tabs p { margin: 3px 0; }
.widget .widget-inside .alx-options-tabs hr { margin: 20px 0 10px; }
.widget .widget-inside .alx-options-tabs h4 { margin-bottom: 10px; }
</style>
<div class="alx-options-tabs">
<p>
<label for="<?php echo esc_attr( $this->get_field_id('title') ); ?>">Title:</label>
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id('title') ); ?>" name="<?php echo esc_attr( $this->get_field_name('title') ); ?>" type="text" value="<?php echo esc_attr($instance["title"]); ?>" />
</p>
<h4>Recent Posts</h4>
<p>
<input type="checkbox" class="checkbox" id="<?php echo esc_attr( $this->get_field_id('recent_enable') ); ?>" name="<?php echo esc_attr( $this->get_field_name('recent_enable') ); ?>" <?php checked( (bool) $instance["recent_enable"], true ); ?>>
<label for="<?php echo esc_attr( $this->get_field_id('recent_enable') ); ?>">Enable recent posts</label>
</p>
<p>
<input type="checkbox" class="checkbox" id="<?php echo esc_attr( $this->get_field_id('recent_thumbs') ); ?>" name="<?php echo esc_attr( $this->get_field_name('recent_thumbs') ); ?>" <?php checked( (bool) $instance["recent_thumbs"], true ); ?>>
<label for="<?php echo esc_attr( $this->get_field_id('recent_thumbs') ); ?>">Show thumbnails</label>
</p>
<p>
<label style="width: 55%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("recent_num") ); ?>">Items to show</label>
<input style="width:20%;" id="<?php echo esc_attr( $this->get_field_id("recent_num") ); ?>" name="<?php echo esc_attr( $this->get_field_name("recent_num") ); ?>" type="text" value="<?php echo absint($instance["recent_num"]); ?>" size='3' />
</p>
<p>
<label style="width: 100%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("recent_cat_id") ); ?>">Category:</label>
<?php wp_dropdown_categories( array( 'name' => $this->get_field_name("recent_cat_id"), 'selected' => $instance["recent_cat_id"], 'show_option_all' => 'All', 'show_count' => true ) ); ?>
</p>
<hr>
<h4>Most Popular</h4>
<p>
<input type="checkbox" class="checkbox" id="<?php echo esc_attr( $this->get_field_id('popular_enable') ); ?>" name="<?php echo esc_attr( $this->get_field_name('popular_enable') ); ?>" <?php checked( (bool) $instance["popular_enable"], true ); ?>>
<label for="<?php echo esc_attr( $this->get_field_id('popular_enable') ); ?>">Enable most popular posts</label>
</p>
<p>
<input type="checkbox" class="checkbox" id="<?php echo esc_attr( $this->get_field_id('popular_thumbs') ); ?>" name="<?php echo esc_attr( $this->get_field_name('popular_thumbs') ); ?>" <?php checked( (bool) $instance["popular_thumbs"], true ); ?>>
<label for="<?php echo esc_attr( $this->get_field_id('popular_thumbs') ); ?>">Show thumbnails</label>
</p>
<p>
<label style="width: 55%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("popular_num") ); ?>">Items to show</label>
<input style="width:20%;" id="<?php echo esc_attr( $this->get_field_id("popular_num") ); ?>" name="<?php echo esc_attr( $this->get_field_name("popular_num") ); ?>" type="text" value="<?php echo absint($instance["popular_num"]); ?>" size='3' />
</p>
<p>
<label style="width: 100%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("popular_cat_id") ); ?>">Category:</label>
<?php wp_dropdown_categories( array( 'name' => $this->get_field_name("popular_cat_id"), 'selected' => $instance["popular_cat_id"], 'show_option_all' => 'All', 'show_count' => true ) ); ?>
</p>
<p style="padding-top: 0.3em;">
<label style="width: 100%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("popular_time") ); ?>">Post with most comments from:</label>
<select style="width: 100%;" id="<?php echo esc_attr( $this->get_field_id("popular_time") ); ?>" name="<?php echo esc_attr( $this->get_field_name("popular_time") ); ?>">
<option value="0"<?php selected( $instance["popular_time"], "0" ); ?>>All time</option>
<option value="1 year ago"<?php selected( $instance["popular_time"], "1 year ago" ); ?>>This year</option>
<option value="1 month ago"<?php selected( $instance["popular_time"], "1 month ago" ); ?>>This month</option>
<option value="1 week ago"<?php selected( $instance["popular_time"], "1 week ago" ); ?>>This week</option>
<option value="1 day ago"<?php selected( $instance["popular_time"], "1 day ago" ); ?>>Past 24 hours</option>
</select>
</p>
<hr>
<h4>Recent Comments</h4>
<p>
<input type="checkbox" class="checkbox" id="<?php echo esc_attr( $this->get_field_id('comments_enable') ); ?>" name="<?php echo esc_attr( $this->get_field_name('comments_enable') ); ?>" <?php checked( (bool) $instance["comments_enable"], true ); ?>>
<label for="<?php echo esc_attr( $this->get_field_id('comments_enable') ); ?>">Enable recent comments</label>
</p>
<p>
<input type="checkbox" class="checkbox" id="<?php echo esc_attr( $this->get_field_id('comments_avatars') ); ?>" name="<?php echo esc_attr( $this->get_field_name('comments_avatars') ); ?>" <?php checked( (bool) $instance["comments_avatars"], true ); ?>>
<label for="<?php echo esc_attr( $this->get_field_id('comments_avatars') ); ?>">Show avatars</label>
</p>
<p>
<label style="width: 55%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("comments_num") ); ?>">Items to show</label>
<input style="width:20%;" id="<?php echo esc_attr( $this->get_field_id("comments_num") ); ?>" name="<?php echo esc_attr( $this->get_field_name("comments_num") ); ?>" type="text" value="<?php echo absint($instance["comments_num"]); ?>" size='3' />
</p>
<hr>
<h4>Tags</h4>
<p>
<input type="checkbox" class="checkbox" id="<?php echo esc_attr( $this->get_field_id('tags_enable') ); ?>" name="<?php echo esc_attr( $this->get_field_name('tags_enable') ); ?>" <?php checked( (bool) $instance["tags_enable"], true ); ?>>
<label for="<?php echo esc_attr( $this->get_field_id('tags_enable') ); ?>">Enable tags</label>
</p>
<hr>
<h4>Tab Order</h4>
<p>
<label style="width: 55%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("order_recent") ); ?>">Recent posts</label>
<input class="widefat" style="width:20%;" type="text" id="<?php echo esc_attr( $this->get_field_id("order_recent") ); ?>" name="<?php echo esc_attr( $this->get_field_name("order_recent") ); ?>" value="<?php echo esc_attr( $instance["order_recent"] ); ?>" />
</p>
<p>
<label style="width: 55%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("order_popular") ); ?>">Most popular</label>
<input class="widefat" style="width:20%;" type="text" id="<?php echo esc_attr( $this->get_field_id("order_popular") ); ?>" name="<?php echo esc_attr( $this->get_field_name("order_popular") ); ?>" value="<?php echo esc_attr( $instance["order_popular"] ); ?>" />
</p>
<p>
<label style="width: 55%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("order_comments") ); ?>">Recent comments</label>
<input class="widefat" style="width:20%;" type="text" id="<?php echo esc_attr( $this->get_field_id("order_comments") ); ?>" name="<?php echo esc_attr( $this->get_field_name("order_comments") ); ?>" value="<?php echo esc_attr( $instance["order_comments"] ); ?>" />
</p>
<p>
<label style="width: 55%; display: inline-block;" for="<?php echo esc_attr( $this->get_field_id("order_tags") ); ?>">Tags</label>
<input class="widefat" style="width:20%;" type="text" id="<?php echo esc_attr( $this->get_field_id("order_tags") ); ?>" name="<?php echo esc_attr( $this->get_field_name("order_tags") ); ?>" value="<?php echo esc_attr( $instance["order_tags"] ); ?>" />
</p>
<hr>
<h4>Tab Info</h4>
<p>
<input type="checkbox" class="checkbox" id="<?php echo esc_attr( $this->get_field_id('tabs_category') ); ?>" name="<?php echo esc_attr( $this->get_field_name('tabs_category') ); ?>" <?php checked( (bool) $instance["tabs_category"], true ); ?>>
<label for="<?php echo esc_attr( $this->get_field_id('tabs_category') ); ?>">Show categories</label>
</p>
<p>
<input type="checkbox" class="checkbox" id="<?php echo esc_attr( $this->get_field_id('tabs_date') ); ?>" name="<?php echo esc_attr( $this->get_field_name('tabs_date') ); ?>" <?php checked( (bool) $instance["tabs_date"], true ); ?>>
<label for="<?php echo esc_attr( $this->get_field_id('tabs_date') ); ?>">Show dates</label>
</p>
<hr>
</div>
<?php
}
}
/* Register widget
/* ------------------------------------ */
if ( ! function_exists( 'alx_register_widget_tabs' ) ) {
function alx_register_widget_tabs() {
register_widget( 'AlxTabs' );
}
}
add_action( 'widgets_init', 'alx_register_widget_tabs' );

View file

@ -0,0 +1,107 @@
<?php
/*
AlxVideo Widget
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Copyright: (c) 2013 Alexander "Alx" Agnarson - http://alxmedia.se
@package AlxVideo
@version 1.0
*/
class AlxVideo extends WP_Widget {
/* Constructor
/* ------------------------------------ */
function AlxVideo() {
parent::__construct( false, 'AlxVideo', array('description' => 'Display a responsive video by adding a link.', 'classname' => 'widget_alx_video') );;
}
/* Widget
/* ------------------------------------ */
public function widget($args, $instance) {
extract( $args );
$instance['title']?NULL:$instance['title']='';
$title = apply_filters('widget_title',$instance['title']);
$output = $before_widget."\n";
if($title)
$output .= $before_title.$title.$after_title;
ob_start();
// The widget
if ( !empty($instance['video_url']) ) {
global $wp_embed;
$video = $wp_embed->run_shortcode('[embed]'.$instance['video_url'].'[/embed]');
}
else {
$video = '';
}
echo $video;
$output .= ob_get_clean();
$output .= $after_widget."\n";
echo $output;
}
/* Widget update
/* ------------------------------------ */
public function update($new,$old) {
$instance = $old;
$instance['title'] = esc_attr($new['title']);
// Video
$instance['video_url'] = esc_url($new['video_url']);
return $instance;
}
/* Widget form
/* ------------------------------------ */
public function form($instance) {
// Default widget settings
$defaults = array(
'title' => '',
// Video
'video_url' => '',
);
$instance = wp_parse_args( (array) $instance, $defaults );
?>
<style>
.widget .widget-inside .alx-options-video .postform { width: 100%; }
.widget .widget-inside .alx-options-video p { margin: 3px 0; }
.widget .widget-inside .alx-options-video hr { margin: 20px 0 10px; }
.widget .widget-inside .alx-options-video h4 { margin-bottom: 10px; }
</style>
<div class="alx-options-video">
<p>
<label for="<?php echo esc_attr( $this->get_field_id('title') ); ?>">Title:</label>
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id('title') ); ?>" name="<?php echo esc_attr( $this->get_field_name('title') ); ?>" type="text" value="<?php echo esc_attr($instance["title"]); ?>" />
</p>
<h4>Responsive Video</h4>
<p>
<label for="<?php echo esc_attr( $this->get_field_id("video_url") ); ?>">Video URL</label>
<input style="width:100%;" id="<?php echo esc_attr( $this->get_field_id("video_url") ); ?>" name="<?php echo esc_attr( $this->get_field_name("video_url") ); ?>" type="text" value="<?php echo esc_url( $instance["video_url"] ); ?>" />
</p>
</div>
<?php
}
}
/* Register widget
/* ------------------------------------ */
if ( ! function_exists( 'alx_register_widget_video' ) ) {
function alx_register_widget_video() {
register_widget( 'AlxVideo' );
}
}
add_action( 'widgets_init', 'alx_register_widget_video' );

61
header.php Normal file
View file

@ -0,0 +1,61 @@
<!DOCTYPE html>
<html class="no-js" <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="wrapper">
<header id="header">
<?php if ( has_nav_menu('topbar') ): ?>
<nav class="nav-container group" id="nav-topbar">
<div class="nav-toggle"><i class="fa fa-bars"></i></div>
<div class="nav-text"><!-- put your mobile menu text here --></div>
<div class="nav-wrap container"><?php wp_nav_menu(array('theme_location'=>'topbar','menu_class'=>'nav container-inner group','container'=>'','menu_id' => '','fallback_cb'=> false)); ?></div>
<div class="container">
<div class="container-inner">
<div class="toggle-search"><i class="fa fa-search"></i></div>
<div class="search-expand">
<div class="search-expand-inner">
<?php get_search_form(); ?>
</div>
</div>
</div><!--/.container-inner-->
</div><!--/.container-->
</nav><!--/#nav-topbar-->
<?php endif; ?>
<div class="container-inner group">
<div class="group pad">
<?php echo alx_site_title(); ?>
<?php if ( ot_get_option('site-description') != 'off' ): ?><p class="site-description"><?php bloginfo( 'description' ); ?></p><?php endif; ?>
</div>
<?php if ( has_nav_menu('header') ): ?>
<nav class="nav-container group" id="nav-header">
<div class="nav-toggle"><i class="fa fa-bars"></i></div>
<div class="nav-text"><!-- put your mobile menu text here --></div>
<div class="nav-wrap container"><?php wp_nav_menu(array('theme_location'=>'header','menu_class'=>'nav group','container'=>'','menu_id' => '','fallback_cb'=> false)); ?></div>
</nav><!--/#nav-header-->
<?php endif; ?>
</div><!--/.container-->
</header><!--/#header-->
<div class="container" id="page">
<div class="container-inner">
<div class="main">
<div class="main-inner group">

BIN
img/ie/opacity-70.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 B

BIN
img/ie/opacity-80-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 B

BIN
img/opacity-10.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 B

BIN
img/pattern.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
img/pre.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 B

BIN
img/profile-overlay.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
img/profile-overlay@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

BIN
img/sidebar/s-left.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 B

BIN
img/sidebar/s-right.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 B

BIN
img/thumb-list.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 937 B

BIN
img/thumb-medium.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 714 B

BIN
img/thumb-small.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 707 B

26
inc/featured.php Normal file
View file

@ -0,0 +1,26 @@
<?php
// Query featured entries
$featured = new WP_Query(
array(
'no_found_rows' => false,
'update_post_meta_cache' => false,
'update_post_term_cache' => false,
'ignore_sticky_posts' => 1,
'posts_per_page' => ot_get_option('featured-posts-count'),
'cat' => ot_get_option('featured-category')
)
);
?>
<?php if ( is_home() && !is_paged() && ( ot_get_option('featured-posts-count') !='0') ): ?>
<div class="pad pad-top">
<div id="owl-featured" class="owl-carousel owl-theme">
<?php while ( $featured->have_posts() ): $featured->the_post(); ?>
<?php get_template_part('content-featured'); ?>
<?php endwhile; ?>
</div>
</div>
<?php endif; ?>
<?php wp_reset_postdata(); ?>

View file

@ -0,0 +1,17 @@
<?php if ( is_home() && !is_paged() && ot_get_option('frontpage-widgets-bottom') == 'on' ): ?>
<div class="front-widgets group">
<div class="front-widget-col">
<div class="front-widget-inner">
<?php dynamic_sidebar( 'frontpage-bottom-1' ); ?>
</div>
</div>
<div class="front-widget-col">
<div class="front-widget-inner">
<?php dynamic_sidebar( 'frontpage-bottom-2' ); ?>
</div>
</div>
</div>
<?php endif; ?>

17
inc/front-widgets-top.php Normal file
View file

@ -0,0 +1,17 @@
<?php if ( is_home() && !is_paged() && ot_get_option('frontpage-widgets-top') == 'on' ): ?>
<div class="front-widgets group">
<div class="front-widget-col">
<div class="front-widget-inner">
<?php dynamic_sidebar( 'frontpage-top-1' ); ?>
</div>
</div>
<div class="front-widget-col">
<div class="front-widget-inner">
<?php dynamic_sidebar( 'frontpage-top-2' ); ?>
</div>
</div>
</div>
<?php endif; ?>

78
inc/page-title.php Normal file
View file

@ -0,0 +1,78 @@
<div class="page-title group">
<div class="pad group">
<?php if ( is_home() ) : ?>
<h2><?php echo alx_blog_title(); ?></h2>
<?php elseif ( is_single() ): ?>
<ul class="meta-single group">
<li class="category"><?php the_category(' <span>/</span> '); ?></li>
<?php if ( comments_open() && ( ot_get_option( 'comment-count' ) != 'off' ) ): ?>
<li class="comments"><a href="<?php comments_link(); ?>"><i class="fa fa-comments-o"></i><?php comments_number( '0', '1', '%' ); ?></a></li>
<?php endif; ?>
</ul>
<?php elseif ( is_page() ): ?>
<h2><?php echo alx_page_title(); ?></h2>
<?php elseif ( is_search() ): ?>
<h1>
<?php if ( have_posts() ): ?><i class="fa fa-search"></i><?php endif; ?>
<?php if ( !have_posts() ): ?><i class="fa fa-exclamation-circle"></i><?php endif; ?>
<?php $search_results=$wp_query->found_posts;
if ($search_results==1) {
echo $search_results.' '.__('Search result','blogline');
} else {
echo $search_results.' '.__('Search results','blogline');
}
?>
</h1>
<?php elseif ( is_404() ): ?>
<h1><i class="fa fa-exclamation-circle"></i><?php _e('Error 404.','blogline'); ?> <span><?php _e('Page not found!','blogline'); ?></span></h1>
<?php elseif ( is_author() ): ?>
<?php $author = get_userdata( get_query_var('author') );?>
<h1><i class="fa fa-user"></i><?php _e('Author:','blogline'); ?> <span><?php echo $author->display_name;?></span></h1>
<?php elseif ( is_category() ): ?>
<h1><i class="fa fa-folder-open"></i><?php _e('Category:','blogline'); ?> <span><?php echo single_cat_title('', false); ?></span></h1>
<?php elseif ( is_tag() ): ?>
<h1><i class="fa fa-tags"></i><?php _e('Tagged:','blogline'); ?> <span><?php echo single_tag_title('', false); ?></span></h1>
<?php elseif ( is_day() ): ?>
<h1><i class="fa fa-calendar"></i><?php _e('Daily Archive:','blogline'); ?> <span><?php echo get_the_time('F j, Y'); ?></span></h1>
<?php elseif ( is_month() ): ?>
<h1><i class="fa fa-calendar"></i><?php _e('Monthly Archive:','blogline'); ?> <span><?php echo get_the_time('F Y'); ?></span></h1>
<?php elseif ( is_year() ): ?>
<h1><i class="fa fa-calendar"></i><?php _e('Yearly Archive:','blogline'); ?> <span><?php echo get_the_time('Y'); ?></span></h1>
<?php elseif ( has_post_format('audio') ): ?>
<h1><i class="fa fa-volume-up"></i><?php _e('Type:','blogline'); ?> <span><?php _e('Audio','blogline'); ?></span></h1>
<?php elseif ( has_post_format('aside') ): ?>
<h1><i class="fa fa-pen"></i><?php _e('Type:','blogline'); ?> <span><?php _e('Aside','blogline'); ?></span></h1>
<?php elseif ( has_post_format('chat') ): ?>
<h1><i class="fa fa-comments-o"></i><?php _e('Type:','blogline'); ?> <span><?php _e('Chat','blogline'); ?></span></h1>
<?php elseif ( has_post_format('gallery') ): ?>
<h1><i class="fa fa-picture-o"></i><?php _e('Type:','blogline'); ?> <span><?php _e('Gallery','blogline'); ?></span></h1>
<?php elseif ( has_post_format('image') ): ?>
<h1><i class="fa fa-camera"></i><?php _e('Type:','blogline'); ?> <span><?php _e('Image','blogline'); ?></span></h1>
<?php elseif ( has_post_format('link') ): ?>
<h1><i class="fa fa-link"></i><?php _e('Type:','blogline'); ?> <span><?php _e('Link','blogline'); ?></span></h1>
<?php elseif ( has_post_format('quote') ): ?>
<h1><i class="fa fa-quote-left"></i><?php _e('Type:','blogline'); ?> <span><?php _e('Quote','blogline'); ?></span></h1>
<?php elseif ( has_post_format('status') ): ?>
<h1><i class="fa fa-bullhorn"></i><?php _e('Type:','blogline'); ?> <span><?php _e('Status','blogline'); ?></span></h1>
<?php elseif ( has_post_format('video') ): ?>
<h1><i class="fa fa-video-camera"></i><?php _e('Type:','blogline'); ?> <span><?php _e('Video','blogline'); ?></span></h1>
<?php else: ?>
<h2><?php the_title(); ?></h2>
<?php endif; ?>
</div><!--/.pad-->
</div><!--/.page-title-->

10
inc/pagination.php Normal file
View file

@ -0,0 +1,10 @@
<nav class="pagination group">
<?php if ( function_exists('wp_pagenavi') ): ?>
<?php wp_pagenavi(); ?>
<?php else: ?>
<ul class="group">
<li class="prev left"><?php previous_posts_link(); ?></li>
<li class="next right"><?php next_posts_link(); ?></li>
</ul>
<?php endif; ?>
</nav><!--/.pagination-->

103
inc/post-formats.php Normal file
View file

@ -0,0 +1,103 @@
<?php $meta = get_post_custom($post->ID); ?>
<?php if ( has_post_format( 'audio' ) ): // Audio ?>
<div class="post-format">
<?php
if ( isset($meta['_audio_url'][0]) && !empty($meta['_audio_url'][0]) ) {
global $wp_embed;
$audio = $wp_embed->run_shortcode('[embed]'.$meta['_audio_url'][0].'[/embed]');
echo $audio;
}
?>
</div>
<?php endif; ?>
<?php if ( has_post_format( 'gallery' ) ): // Gallery ?>
<div class="post-format">
<?php $images = alx_post_images(); if ( !empty($images) ): ?>
<script type="text/javascript">
// Check if first slider image is loaded, and load flexslider on document ready
jQuery(document).ready(function(){
var firstImage = jQuery('#flexslider-<?php echo the_ID(); ?>').find('img').filter(':first'),
checkforloaded = setInterval(function() {
var image = firstImage.get(0);
if (image.complete || image.readyState == 'complete' || image.readyState == 4) {
clearInterval(checkforloaded);
jQuery('#flexslider-<?php echo the_ID(); ?>').flexslider({
animation: "fade",
slideshow: false,
directionNav: true,
controlNav: false,
pauseOnHover: true,
slideshowSpeed: 7000,
animationSpeed: 600,
smoothHeight: true,
touch: false
});
}
}, 20);
});
</script>
<div class="flex-container">
<div class="flexslider" id="flexslider-<?php the_ID(); ?>">
<ul class="slides">
<?php foreach ( $images as $image ): ?>
<li>
<?php $imageid = wp_get_attachment_image_src($image->ID,'large'); ?>
<img src="<?php echo esc_attr( $imageid[0] ); ?>" alt="<?php echo esc_attr( $image->post_title ); ?>">
<?php if ( $image->post_excerpt ): ?>
<div class="image-caption"><?php echo $image->post_excerpt; ?></div>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
<?php if ( has_post_format( 'image' ) ): // Image ?>
<div class="post-format">
<div class="image-container">
<?php if ( has_post_thumbnail() ) {
the_post_thumbnail('thumb-large');
$caption = get_post(get_post_thumbnail_id())->post_excerpt;
if ( isset($caption) && $caption ) echo '<div class="image-caption">'.$caption.'</div>';
} ?>
</div>
</div>
<?php endif; ?>
<?php if ( has_post_format( 'video' ) ): // Video ?>
<div class="post-format">
<?php
if ( isset($meta['_video_url'][0]) && !empty($meta['_video_url'][0]) ) {
global $wp_embed;
$video = $wp_embed->run_shortcode('[embed]'.$meta['_video_url'][0].'[/embed]');
echo $video;
}
?>
</div>
<?php endif; ?>
<?php if ( has_post_format( 'quote' ) ): // Quote ?>
<?php endif; ?>
<?php if ( has_post_format( 'chat' ) ): // Chat ?>
<?php endif; ?>
<?php if ( has_post_format( 'link' ) ): // Link ?>
<?php endif; ?>

6
inc/post-nav.php Normal file
View file

@ -0,0 +1,6 @@
<?php if ( is_single() ): ?>
<ul class="post-nav group">
<li class="next"><?php next_post_link('%link', '<i class="fa fa-chevron-right"></i><strong>'.__('Next story', 'blogline').'</strong> <span>%title</span>'); ?></li>
<li class="previous"><?php previous_post_link('%link', '<i class="fa fa-chevron-left"></i><strong>'.__('Previous story', 'blogline').'</strong> <span>%title</span>'); ?></li>
</ul>
<?php endif; ?>

48
inc/related-posts.php Normal file
View file

@ -0,0 +1,48 @@
<?php $related = alx_related_posts(); ?>
<?php if ( $related->have_posts() ): ?>
<h4 class="heading">
<i class="fa fa-hand-o-right"></i><?php _e('You may also like...','blogline'); ?>
</h4>
<ul class="related-posts group">
<?php while ( $related->have_posts() ) : $related->the_post(); ?>
<li class="related post-hover">
<article <?php post_class(); ?>>
<div class="post-thumbnail">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php if ( has_post_thumbnail() ): ?>
<?php the_post_thumbnail('thumb-medium'); ?>
<?php elseif ( ot_get_option('placeholder') != 'off' ): ?>
<img src="<?php echo get_template_directory_uri(); ?>/img/thumb-medium.png" alt="<?php the_title(); ?>" />
<?php endif; ?>
<?php if ( has_post_format('video') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-play"></i></span>'; ?>
<?php if ( has_post_format('audio') && !is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-volume-up"></i></span>'; ?>
<?php if ( is_sticky() ) echo'<span class="thumb-icon small"><i class="fa fa-star"></i></span>'; ?>
</a>
</div><!--/.post-thumbnail-->
<div class="related-inner">
<h4 class="post-title">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</h4><!--/.post-title-->
<div class="post-meta group">
<p class="post-date"><?php the_time('j M, Y'); ?></p>
</div><!--/.post-meta-->
</div><!--/.related-inner-->
</article>
</li><!--/.related-->
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
</ul><!--/.post-related-->
<?php endif; ?>
<?php wp_reset_query(); ?>

67
inc/sharrre.php Normal file
View file

@ -0,0 +1,67 @@
<div class="sharrre-container group">
<div id="twitter" data-url="<?php echo the_permalink(); ?>" data-text="<?php echo the_title(); ?>" data-title="Tweet"><a class="box group" href="#"><div class="count" href="#"><i class="fa fa-plus"></i></div><div class="share"><i class="fa fa-twitter"></i></div></a></div>
<div id="facebook" data-url="<?php echo the_permalink(); ?>" data-text="<?php echo the_title(); ?>" data-title="Like"></div>
<div id="googleplus" data-url="<?php echo the_permalink(); ?>" data-text="<?php echo the_title(); ?>" data-title="+1"></div>
<div id="pinterest" data-url="<?php echo the_permalink(); ?>" data-text="<?php echo the_title(); ?>" data-title="Pin It"></div>
</div><!--/.sharrre-container-->
<script type="text/javascript">
// Sharrre
jQuery(document).ready(function(){
jQuery('#twitter').sharrre({
share: {
twitter: true
},
template: '<a class="box group" href="#"><div class="count" href="#">{total}</div><div class="share"><i class="fa fa-twitter"></i></div></a>',
enableHover: false,
enableTracking: true,
buttons: { twitter: {via: '<?php echo esc_attr( ot_get_option('twitter-username') ); ?>'}},
click: function(api, options){
api.simulateClick();
api.openPopup('twitter');
}
});
jQuery('#facebook').sharrre({
share: {
facebook: true
},
template: '<a class="box group" href="#"><div class="count" href="#">{total}</div><div class="share"><i class="fa fa-facebook-square"></i></div></a>',
enableHover: false,
enableTracking: true,
click: function(api, options){
api.simulateClick();
api.openPopup('facebook');
}
});
jQuery('#googleplus').sharrre({
share: {
googlePlus: true
},
template: '<a class="box group" href="#"><div class="count" href="#">{total}</div><div class="share"><i class="fa fa-google-plus-square"></i></div></a>',
enableHover: false,
enableTracking: true,
urlCurl: '<?php echo get_template_directory_uri() .'/js/sharrre.php'; ?>',
click: function(api, options){
api.simulateClick();
api.openPopup('googlePlus');
}
});
jQuery('#pinterest').sharrre({
share: {
pinterest: true
},
template: '<a class="box group" href="#" rel="nofollow"><div class="count" href="#">{total}</div><div class="share"><i class="fa fa-pinterest"></i></div></a>',
enableHover: false,
enableTracking: true,
buttons: {
pinterest: {
description: '<?php echo the_title(); ?>'<?php if( has_post_thumbnail() ){ ?>,media: '<?php echo wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); ?>'<?php } ?>
}
},
click: function(api, options){
api.simulateClick();
api.openPopup('pinterest');
}
});
});
</script>

42
index.php Normal file
View file

@ -0,0 +1,42 @@
<?php get_header(); ?>
<section class="content">
<?php get_template_part('inc/page-title'); ?>
<?php get_template_part('inc/featured'); ?>
<?php get_template_part('inc/front-widgets-top'); ?>
<?php if ( have_posts() ) : ?>
<?php if ( ot_get_option('blog-layout') == 'blog-grid' ) : ?>
<div class="post-grid group">
<?php $i = 1; echo '<div class="post-row">'; while ( have_posts() ): the_post(); ?>
<?php get_template_part('content-grid'); ?>
<?php if($i % 2 == 0) { echo '</div><div class="post-row">'; } $i++; endwhile; echo '</div>'; ?>
</div><!--/.post-list-->
<?php elseif ( ot_get_option('blog-layout') == 'blog-list' ) : ?>
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content-list'); ?>
<?php endwhile; ?>
<?php else: ?>
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php get_template_part('inc/front-widgets-bottom'); ?>
<?php get_template_part('inc/pagination'); ?>
<?php endif; ?>
</section><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>

8
js/ie/html5.js Normal file
View file

@ -0,0 +1,8 @@
/*
HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
*/
(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/[\w\-]+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x<style>article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}</style>";
c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="<xyz></xyz>";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:"3.7.0",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);
if(g)return a.createDocumentFragment();for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d<h;d++)c.createElement(e[d]);return c}};l.html5=e;q(f)})(this,document);

6
js/ie/respond.js Normal file
View file

@ -0,0 +1,6 @@
/*! matchMedia() polyfill - Test a CSS media type/query in JS. Authors & copyright (c) 2012: Scott Jehl, Paul Irish, Nicholas Zakas. Dual MIT/BSD license */
/*! NOTE: If you're already including a window.matchMedia polyfill via Modernizr or otherwise, you don't need this part */
window.matchMedia=window.matchMedia||(function(e,f){var c,a=e.documentElement,b=a.firstElementChild||a.firstChild,d=e.createElement("body"),g=e.createElement("div");g.id="mq-test-1";g.style.cssText="position:absolute;top:-100em";d.style.background="none";d.appendChild(g);return function(h){g.innerHTML='&shy;<style media="'+h+'"> #mq-test-1 { width: 42px; }</style>';a.insertBefore(d,b);c=g.offsetWidth==42;a.removeChild(d);return{matches:c,media:h}}})(document);
/*! Respond.js v1.1.0: min/max-width media query polyfill. (c) Scott Jehl. MIT/GPLv2 Lic. j.mp/respondjs */
(function(e){e.respond={};respond.update=function(){};respond.mediaQueriesSupported=e.matchMedia&&e.matchMedia("only all").matches;if(respond.mediaQueriesSupported){return}var w=e.document,s=w.documentElement,i=[],k=[],q=[],o={},h=30,f=w.getElementsByTagName("head")[0]||s,g=w.getElementsByTagName("base")[0],b=f.getElementsByTagName("link"),d=[],a=function(){var D=b,y=D.length,B=0,A,z,C,x;for(;B<y;B++){A=D[B],z=A.href,C=A.media,x=A.rel&&A.rel.toLowerCase()==="stylesheet";if(!!z&&x&&!o[z]){if(A.styleSheet&&A.styleSheet.rawCssText){m(A.styleSheet.rawCssText,z,C);o[z]=true}else{if((!/^([a-zA-Z:]*\/\/)/.test(z)&&!g)||z.replace(RegExp.$1,"").split("/")[0]===e.location.host){d.push({href:z,media:C})}}}}u()},u=function(){if(d.length){var x=d.shift();n(x.href,function(y){m(y,x.href,x.media);o[x.href]=true;u()})}},m=function(I,x,z){var G=I.match(/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi),J=G&&G.length||0,x=x.substring(0,x.lastIndexOf("/")),y=function(K){return K.replace(/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,"$1"+x+"$2$3")},A=!J&&z,D=0,C,E,F,B,H;if(x.length){x+="/"}if(A){J=1}for(;D<J;D++){C=0;if(A){E=z;k.push(y(I))}else{E=G[D].match(/@media *([^\{]+)\{([\S\s]+?)$/)&&RegExp.$1;k.push(RegExp.$2&&y(RegExp.$2))}B=E.split(",");H=B.length;for(;C<H;C++){F=B[C];i.push({media:F.split("(")[0].match(/(only\s+)?([a-zA-Z]+)\s?/)&&RegExp.$2||"all",rules:k.length-1,hasquery:F.indexOf("(")>-1,minw:F.match(/\(min\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:F.match(/\(max\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}}j()},l,r,v=function(){var z,A=w.createElement("div"),x=w.body,y=false;A.style.cssText="position:absolute;font-size:1em;width:1em";if(!x){x=y=w.createElement("body");x.style.background="none"}x.appendChild(A);s.insertBefore(x,s.firstChild);z=A.offsetWidth;if(y){s.removeChild(x)}else{x.removeChild(A)}z=p=parseFloat(z);return z},p,j=function(I){var x="clientWidth",B=s[x],H=w.compatMode==="CSS1Compat"&&B||w.body[x]||B,D={},G=b[b.length-1],z=(new Date()).getTime();if(I&&l&&z-l<h){clearTimeout(r);r=setTimeout(j,h);return}else{l=z}for(var E in i){var K=i[E],C=K.minw,J=K.maxw,A=C===null,L=J===null,y="em";if(!!C){C=parseFloat(C)*(C.indexOf(y)>-1?(p||v()):1)}if(!!J){J=parseFloat(J)*(J.indexOf(y)>-1?(p||v()):1)}if(!K.hasquery||(!A||!L)&&(A||H>=C)&&(L||H<=J)){if(!D[K.media]){D[K.media]=[]}D[K.media].push(k[K.rules])}}for(var E in q){if(q[E]&&q[E].parentNode===f){f.removeChild(q[E])}}for(var E in D){var M=w.createElement("style"),F=D[E].join("\n");M.type="text/css";M.media=E;f.insertBefore(M,G.nextSibling);if(M.styleSheet){M.styleSheet.cssText=F}else{M.appendChild(w.createTextNode(F))}q.push(M)}},n=function(x,z){var y=c();if(!y){return}y.open("GET",x,true);y.onreadystatechange=function(){if(y.readyState!=4||y.status!=200&&y.status!=304){return}z(y.responseText)};if(y.readyState==4){return}y.send(null)},c=(function(){var x=false;try{x=new XMLHttpRequest()}catch(y){x=new ActiveXObject("Microsoft.XMLHTTP")}return function(){return x}})();a();respond.update=a;function t(){j(true)}if(e.addEventListener){e.addEventListener("resize",t,false)}else{if(e.attachEvent){e.attachEvent("onresize",t)}}})(this);

561
js/ie/selectivizr.js Normal file
View file

@ -0,0 +1,561 @@
/*
selectivizr v1.0.2 - (c) Keith Clark, freely distributable under the terms
of the MIT license.
selectivizr.com
*/
/*
Notes about this source
-----------------------
* The #DEBUG_START and #DEBUG_END comments are used to mark blocks of code
that will be removed prior to building a final release version (using a
pre-compression script)
References:
-----------
* CSS Syntax : http://www.w3.org/TR/2003/WD-css3-syntax-20030813/#style
* Selectors : http://www.w3.org/TR/css3-selectors/#selectors
* IE Compatability : http://msdn.microsoft.com/en-us/library/cc351024(VS.85).aspx
* W3C Selector Tests : http://www.w3.org/Style/CSS/Test/CSS3/Selectors/current/html/tests/
*/
(function(win) {
// If browser isn't IE, then stop execution! This handles the script
// being loaded by non IE browsers because the developer didn't use
// conditional comments.
if (/*@cc_on!@*/true) return;
// =========================== Init Objects ============================
var doc = document;
var root = doc.documentElement;
var xhr = getXHRObject();
var ieVersion = /MSIE (\d+)/.exec(navigator.userAgent)[1];
// If were not in standards mode, IE is too old / new or we can't create
// an XMLHttpRequest object then we should get out now.
if (doc.compatMode != 'CSS1Compat' || ieVersion<6 || ieVersion>8 || !xhr) {
return;
}
// ========================= Common Objects ============================
// Compatiable selector engines in order of CSS3 support. Note: '*' is
// a placholder for the object key name. (basically, crude compression)
var selectorEngines = {
"NW" : "*.Dom.select",
"MooTools" : "$$",
"DOMAssistant" : "*.$",
"Prototype" : "$$",
"YAHOO" : "*.util.Selector.query",
"Sizzle" : "*",
"jQuery" : "*",
"dojo" : "*.query"
};
var selectorMethod;
var enabledWatchers = []; // array of :enabled/:disabled elements to poll
var ie6PatchID = 0; // used to solve ie6's multiple class bug
var patchIE6MultipleClasses = true; // if true adds class bloat to ie6
var namespace = "slvzr";
// Stylesheet parsing regexp's
var RE_COMMENT = /(\/\*[^*]*\*+([^\/][^*]*\*+)*\/)\s*/g;
var RE_IMPORT = /@import\s*(?:(?:(?:url\(\s*(['"]?)(.*)\1)\s*\))|(?:(['"])(.*)\3))[^;]*;/g;
var RE_ASSET_URL = /\burl\(\s*(["']?)(?!data:)([^"')]+)\1\s*\)/g;
var RE_PSEUDO_STRUCTURAL = /^:(empty|(first|last|only|nth(-last)?)-(child|of-type))$/;
var RE_PSEUDO_ELEMENTS = /:(:first-(?:line|letter))/g;
var RE_SELECTOR_GROUP = /(^|})\s*([^\{]*?[\[:][^{]+)/g;
var RE_SELECTOR_PARSE = /([ +~>])|(:[a-z-]+(?:\(.*?\)+)?)|(\[.*?\])/g;
var RE_LIBRARY_INCOMPATIBLE_PSEUDOS = /(:not\()?:(hover|enabled|disabled|focus|checked|target|active|visited|first-line|first-letter)\)?/g;
var RE_PATCH_CLASS_NAME_REPLACE = /[^\w-]/g;
// HTML UI element regexp's
var RE_INPUT_ELEMENTS = /^(INPUT|SELECT|TEXTAREA|BUTTON)$/;
var RE_INPUT_CHECKABLE_TYPES = /^(checkbox|radio)$/;
// Broken attribute selector implementations (IE7/8 native [^=""], [$=""] and [*=""])
var BROKEN_ATTR_IMPLEMENTATIONS = ieVersion>6 ? /[\$\^*]=(['"])\1/ : null;
// Whitespace normalization regexp's
var RE_TIDY_TRAILING_WHITESPACE = /([(\[+~])\s+/g;
var RE_TIDY_LEADING_WHITESPACE = /\s+([)\]+~])/g;
var RE_TIDY_CONSECUTIVE_WHITESPACE = /\s+/g;
var RE_TIDY_TRIM_WHITESPACE = /^\s*((?:[\S\s]*\S)?)\s*$/;
// String constants
var EMPTY_STRING = "";
var SPACE_STRING = " ";
var PLACEHOLDER_STRING = "$1";
// =========================== Patching ================================
// --[ patchStyleSheet() ]----------------------------------------------
// Scans the passed cssText for selectors that require emulation and
// creates one or more patches for each matched selector.
function patchStyleSheet( cssText ) {
return cssText.replace(RE_PSEUDO_ELEMENTS, PLACEHOLDER_STRING).
replace(RE_SELECTOR_GROUP, function(m, prefix, selectorText) {
var selectorGroups = selectorText.split(",");
for (var c = 0, cs = selectorGroups.length; c < cs; c++) {
var selector = normalizeSelectorWhitespace(selectorGroups[c]) + SPACE_STRING;
var patches = [];
selectorGroups[c] = selector.replace(RE_SELECTOR_PARSE,
function(match, combinator, pseudo, attribute, index) {
if (combinator) {
if (patches.length>0) {
applyPatches( selector.substring(0, index), patches );
patches = [];
}
return combinator;
}
else {
var patch = (pseudo) ? patchPseudoClass( pseudo ) : patchAttribute( attribute );
if (patch) {
patches.push(patch);
return "." + patch.className;
}
return match;
}
}
);
}
return prefix + selectorGroups.join(",");
});
};
// --[ patchAttribute() ]-----------------------------------------------
// returns a patch for an attribute selector.
function patchAttribute( attr ) {
return (!BROKEN_ATTR_IMPLEMENTATIONS || BROKEN_ATTR_IMPLEMENTATIONS.test(attr)) ?
{ className: createClassName(attr), applyClass: true } : null;
};
// --[ patchPseudoClass() ]---------------------------------------------
// returns a patch for a pseudo-class
function patchPseudoClass( pseudo ) {
var applyClass = true;
var className = createClassName(pseudo.slice(1));
var isNegated = pseudo.substring(0, 5) == ":not(";
var activateEventName;
var deactivateEventName;
// if negated, remove :not()
if (isNegated) {
pseudo = pseudo.slice(5, -1);
}
// bracket contents are irrelevant - remove them
var bracketIndex = pseudo.indexOf("(")
if (bracketIndex > -1) {
pseudo = pseudo.substring(0, bracketIndex);
}
// check we're still dealing with a pseudo-class
if (pseudo.charAt(0) == ":") {
switch (pseudo.slice(1)) {
case "root":
applyClass = function(e) {
return isNegated ? e != root : e == root;
}
break;
case "target":
// :target is only supported in IE8
if (ieVersion == 8) {
applyClass = function(e) {
var handler = function() {
var hash = location.hash;
var hashID = hash.slice(1);
return isNegated ? (hash == EMPTY_STRING || e.id != hashID) : (hash != EMPTY_STRING && e.id == hashID);
};
addEvent( win, "hashchange", function() {
toggleElementClass(e, className, handler());
})
return handler();
}
break;
}
return false;
case "checked":
applyClass = function(e) {
if (RE_INPUT_CHECKABLE_TYPES.test(e.type)) {
addEvent( e, "propertychange", function() {
if (event.propertyName == "checked") {
toggleElementClass( e, className, e.checked !== isNegated );
}
})
}
return e.checked !== isNegated;
}
break;
case "disabled":
isNegated = !isNegated;
case "enabled":
applyClass = function(e) {
if (RE_INPUT_ELEMENTS.test(e.tagName)) {
addEvent( e, "propertychange", function() {
if (event.propertyName == "$disabled") {
toggleElementClass( e, className, e.$disabled === isNegated );
}
});
enabledWatchers.push(e);
e.$disabled = e.disabled;
return e.disabled === isNegated;
}
return pseudo == ":enabled" ? isNegated : !isNegated;
}
break;
case "focus":
activateEventName = "focus";
deactivateEventName = "blur";
case "hover":
if (!activateEventName) {
activateEventName = "mouseenter";
deactivateEventName = "mouseleave";
}
applyClass = function(e) {
addEvent( e, isNegated ? deactivateEventName : activateEventName, function() {
toggleElementClass( e, className, true );
})
addEvent( e, isNegated ? activateEventName : deactivateEventName, function() {
toggleElementClass( e, className, false );
})
return isNegated;
}
break;
// everything else
default:
// If we don't support this pseudo-class don't create
// a patch for it
if (!RE_PSEUDO_STRUCTURAL.test(pseudo)) {
return false;
}
break;
}
}
return { className: className, applyClass: applyClass };
};
// --[ applyPatches() ]-------------------------------------------------
// uses the passed selector text to find DOM nodes and patch them
function applyPatches(selectorText, patches) {
var elms;
// Although some selector libraries can find :checked :enabled etc.
// we need to find all elements that could have that state because
// it can be changed by the user.
var domSelectorText = selectorText.replace(RE_LIBRARY_INCOMPATIBLE_PSEUDOS, EMPTY_STRING);
// If the dom selector equates to an empty string or ends with
// whitespace then we need to append a universal selector (*) to it.
if (domSelectorText == EMPTY_STRING || domSelectorText.charAt(domSelectorText.length - 1) == SPACE_STRING) {
domSelectorText += "*";
}
// Ensure we catch errors from the selector library
try {
elms = selectorMethod( domSelectorText );
} catch (ex) {
// #DEBUG_START
log( "Selector '" + selectorText + "' threw exception '" + ex + "'" );
// #DEBUG_END
}
if (elms) {
for (var d = 0, dl = elms.length; d < dl; d++) {
var elm = elms[d];
var cssClasses = elm.className;
for (var f = 0, fl = patches.length; f < fl; f++) {
var patch = patches[f];
if (!hasPatch(elm, patch)) {
if (patch.applyClass && (patch.applyClass === true || patch.applyClass(elm) === true)) {
cssClasses = toggleClass(cssClasses, patch.className, true );
}
}
}
elm.className = cssClasses;
}
}
};
// --[ hasPatch() ]-----------------------------------------------------
// checks for the exsistence of a patch on an element
function hasPatch( elm, patch ) {
return new RegExp("(^|\\s)" + patch.className + "(\\s|$)").test(elm.className);
};
// =========================== Utility =================================
function createClassName( className ) {
return namespace + "-" + ((ieVersion == 6 && patchIE6MultipleClasses) ?
ie6PatchID++
:
className.replace(RE_PATCH_CLASS_NAME_REPLACE, function(a) { return a.charCodeAt(0) }));
};
// --[ log() ]----------------------------------------------------------
// #DEBUG_START
function log( message ) {
if (win.console) {
win.console.log(message);
}
};
// #DEBUG_END
// --[ trim() ]---------------------------------------------------------
// removes leading, trailing whitespace from a string
function trim( text ) {
return text.replace(RE_TIDY_TRIM_WHITESPACE, PLACEHOLDER_STRING);
};
// --[ normalizeWhitespace() ]------------------------------------------
// removes leading, trailing and consecutive whitespace from a string
function normalizeWhitespace( text ) {
return trim(text).replace(RE_TIDY_CONSECUTIVE_WHITESPACE, SPACE_STRING);
};
// --[ normalizeSelectorWhitespace() ]----------------------------------
// tidies whitespace around selector brackets and combinators
function normalizeSelectorWhitespace( selectorText ) {
return normalizeWhitespace(selectorText.
replace(RE_TIDY_TRAILING_WHITESPACE, PLACEHOLDER_STRING).
replace(RE_TIDY_LEADING_WHITESPACE, PLACEHOLDER_STRING)
);
};
// --[ toggleElementClass() ]-------------------------------------------
// toggles a single className on an element
function toggleElementClass( elm, className, on ) {
var oldClassName = elm.className;
var newClassName = toggleClass(oldClassName, className, on);
if (newClassName != oldClassName) {
elm.className = newClassName;
elm.parentNode.className += EMPTY_STRING;
}
};
// --[ toggleClass() ]--------------------------------------------------
// adds / removes a className from a string of classNames. Used to
// manage multiple class changes without forcing a DOM redraw
function toggleClass( classList, className, on ) {
var re = RegExp("(^|\\s)" + className + "(\\s|$)");
var classExists = re.test(classList);
if (on) {
return classExists ? classList : classList + SPACE_STRING + className;
} else {
return classExists ? trim(classList.replace(re, PLACEHOLDER_STRING)) : classList;
}
};
// --[ addEvent() ]-----------------------------------------------------
function addEvent(elm, eventName, eventHandler) {
elm.attachEvent("on" + eventName, eventHandler);
};
// --[ getXHRObject() ]-------------------------------------------------
function getXHRObject()
{
if (win.XMLHttpRequest) {
return new XMLHttpRequest;
}
try {
return new ActiveXObject('Microsoft.XMLHTTP');
} catch(e) {
return null;
}
};
// --[ loadStyleSheet() ]-----------------------------------------------
function loadStyleSheet( url ) {
xhr.open("GET", url, false);
xhr.send();
return (xhr.status==200) ? xhr.responseText : EMPTY_STRING;
};
// --[ resolveUrl() ]---------------------------------------------------
// Converts a URL fragment to a fully qualified URL using the specified
// context URL. Returns null if same-origin policy is broken
function resolveUrl( url, contextUrl ) {
function getProtocolAndHost( url ) {
return url.substring(0, url.indexOf("/", 8));
};
// absolute path
if (/^https?:\/\//i.test(url)) {
return getProtocolAndHost(contextUrl) == getProtocolAndHost(url) ? url : null;
}
// root-relative path
if (url.charAt(0)=="/") {
return getProtocolAndHost(contextUrl) + url;
}
// relative path
var contextUrlPath = contextUrl.split(/[?#]/)[0]; // ignore query string in the contextUrl
if (url.charAt(0) != "?" && contextUrlPath.charAt(contextUrlPath.length - 1) != "/") {
contextUrlPath = contextUrlPath.substring(0, contextUrlPath.lastIndexOf("/") + 1);
}
return contextUrlPath + url;
};
// --[ parseStyleSheet() ]----------------------------------------------
// Downloads the stylesheet specified by the URL, removes it's comments
// and recursivly replaces @import rules with their contents, ultimately
// returning the full cssText.
function parseStyleSheet( url ) {
if (url) {
return loadStyleSheet(url).replace(RE_COMMENT, EMPTY_STRING).
replace(RE_IMPORT, function( match, quoteChar, importUrl, quoteChar2, importUrl2 ) {
return parseStyleSheet(resolveUrl(importUrl || importUrl2, url));
}).
replace(RE_ASSET_URL, function( match, quoteChar, assetUrl ) {
quoteChar = quoteChar || EMPTY_STRING;
return " url(" + quoteChar + resolveUrl(assetUrl, url) + quoteChar + ") ";
});
}
return EMPTY_STRING;
};
// --[ init() ]---------------------------------------------------------
function init() {
// honour the <base> tag
var url, stylesheet;
var baseTags = doc.getElementsByTagName("BASE");
var baseUrl = (baseTags.length > 0) ? baseTags[0].href : doc.location.href;
/* Note: This code prevents IE from freezing / crashing when using
@font-face .eot files but it modifies the <head> tag and could
trigger the IE stylesheet limit. It will also cause FOUC issues.
If you choose to use it, make sure you comment out the for loop
directly below this comment.
var head = doc.getElementsByTagName("head")[0];
for (var c=doc.styleSheets.length-1; c>=0; c--) {
stylesheet = doc.styleSheets[c]
head.appendChild(doc.createElement("style"))
var patchedStylesheet = doc.styleSheets[doc.styleSheets.length-1];
if (stylesheet.href != EMPTY_STRING) {
url = resolveUrl(stylesheet.href, baseUrl)
if (url) {
patchedStylesheet.cssText = patchStyleSheet( parseStyleSheet( url ) )
stylesheet.disabled = true
setTimeout( function () {
stylesheet.owningElement.parentNode.removeChild(stylesheet.owningElement)
})
}
}
}
*/
for (var c = 0; c < doc.styleSheets.length; c++) {
stylesheet = doc.styleSheets[c]
if (stylesheet.href != EMPTY_STRING) {
url = resolveUrl(stylesheet.href, baseUrl);
if (url) {
stylesheet.cssText = patchStyleSheet( parseStyleSheet( url ) );
}
}
}
// :enabled & :disabled polling script (since we can't hook
// onpropertychange event when an element is disabled)
if (enabledWatchers.length > 0) {
setInterval( function() {
for (var c = 0, cl = enabledWatchers.length; c < cl; c++) {
var e = enabledWatchers[c];
if (e.disabled !== e.$disabled) {
if (e.disabled) {
e.disabled = false;
e.$disabled = true;
e.disabled = true;
}
else {
e.$disabled = e.disabled;
}
}
}
},250)
}
};
// Bind selectivizr to the ContentLoaded event.
ContentLoaded(win, function() {
// Determine the "best fit" selector engine
for (var engine in selectorEngines) {
var members, member, context = win;
if (win[engine]) {
members = selectorEngines[engine].replace("*", engine).split(".");
while ((member = members.shift()) && (context = context[member])) {}
if (typeof context == "function") {
selectorMethod = context;
init();
return;
}
}
}
});
/*!
* ContentLoaded.js by Diego Perini, modified for IE<9 only (to save space)
*
* Author: Diego Perini (diego.perini at gmail.com)
* Summary: cross-browser wrapper for DOMContentLoaded
* Updated: 20101020
* License: MIT
* Version: 1.2
*
* URL:
* http://javascript.nwbox.com/ContentLoaded/
* http://javascript.nwbox.com/ContentLoaded/MIT-LICENSE
*
*/
// @w window reference
// @f function reference
function ContentLoaded(win, fn) {
var done = false, top = true,
init = function(e) {
if (e.type == "readystatechange" && doc.readyState != "complete") return;
(e.type == "load" ? win : doc).detachEvent("on" + e.type, init, false);
if (!done && (done = true)) fn.call(win, e.type || e);
},
poll = function() {
try { root.doScroll("left"); } catch(e) { setTimeout(poll, 50); return; }
init('poll');
};
if (doc.readyState == "complete") fn.call(win, EMPTY_STRING);
else {
if (doc.createEventObject && root.doScroll) {
try { top = !win.frameElement; } catch(e) { }
if (top) poll();
}
addEvent(doc,"readystatechange", init);
addEvent(win,"load", init);
}
};
})(this);

82
js/jquery.fitvids.js Normal file
View file

@ -0,0 +1,82 @@
/*jshint browser:true */
/*!
* FitVids 1.1
*
* Copyright 2013, Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com
* Credit to Thierry Koblentz - http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/
* Released under the WTFPL license - http://sam.zoy.org/wtfpl/
*
*/
;(function( $ ){
'use strict';
$.fn.fitVids = function( options ) {
var settings = {
customSelector: null,
ignore: null
};
if(!document.getElementById('fit-vids-style')) {
// appendStyles: https://github.com/toddmotto/fluidvids/blob/master/dist/fluidvids.js
var head = document.head || document.getElementsByTagName('head')[0];
var css = '.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}';
var div = document.createElement("div");
div.innerHTML = '<p>x</p><style id="fit-vids-style">' + css + '</style>';
head.appendChild(div.childNodes[1]);
}
if ( options ) {
$.extend( settings, options );
}
return this.each(function(){
var selectors = [
'iframe[src*="player.vimeo.com"]',
'iframe[src*="youtube.com"]',
'iframe[src*="youtube-nocookie.com"]',
'iframe[src*="kickstarter.com"][src*="video.html"]',
'object',
'embed'
];
if (settings.customSelector) {
selectors.push(settings.customSelector);
}
var ignoreList = '.fitvidsignore';
if(settings.ignore) {
ignoreList = ignoreList + ', ' + settings.ignore;
}
var $allVideos = $(this).find(selectors.join(','));
$allVideos = $allVideos.not('object object'); // SwfObj conflict patch
$allVideos = $allVideos.not(ignoreList); // Disable FitVids on this video.
$allVideos.each(function(count){
var $this = $(this);
if($this.parents(ignoreList).length > 0) {
return; // Disable FitVids on this video.
}
if (this.tagName.toLowerCase() === 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; }
if ((!$this.css('height') && !$this.css('width')) && (isNaN($this.attr('height')) || isNaN($this.attr('width'))))
{
$this.attr('height', 9);
$this.attr('width', 16);
}
var height = ( this.tagName.toLowerCase() === 'object' || ($this.attr('height') && !isNaN(parseInt($this.attr('height'), 10))) ) ? parseInt($this.attr('height'), 10) : $this.height(),
width = !isNaN(parseInt($this.attr('width'), 10)) ? parseInt($this.attr('width'), 10) : $this.width(),
aspectRatio = height / width;
if(!$this.attr('id')){
var videoID = 'fitvid' + count;
$this.attr('id', videoID);
}
$this.wrap('<div class="fluid-width-video-wrapper"></div>').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+'%');
$this.removeAttr('height').removeAttr('width');
});
});
};
// Works with either jQuery or Zepto
})( window.jQuery || window.Zepto );

43
js/jquery.flexslider.min.js vendored Normal file
View file

@ -0,0 +1,43 @@
/*
* jQuery FlexSlider v2.1
* http://www.woothemes.com/flexslider/
*
* Copyright 2012 WooThemes
* Free to use under the GPLv2 license.
* http://www.gnu.org/licenses/gpl-2.0.html
*
* Contributing author: Tyler Smith (@mbmufffin)
*/
(function(d){d.flexslider=function(j,l){var a=d(j),c=d.extend({},d.flexslider.defaults,l),e=c.namespace,q="ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch,u=q?"touchend":"click",m="vertical"===c.direction,n=c.reverse,h=0<c.itemWidth,s="fade"===c.animation,t=""!==c.asNavFor,f={};d.data(j,"flexslider",a);f={init:function(){a.animating=!1;a.currentSlide=c.startAt;a.animatingTo=a.currentSlide;a.atEnd=0===a.currentSlide||a.currentSlide===a.last;a.containerSelector=c.selector.substr(0,
c.selector.search(" "));a.slides=d(c.selector,a);a.container=d(a.containerSelector,a);a.count=a.slides.length;a.syncExists=0<d(c.sync).length;"slide"===c.animation&&(c.animation="swing");a.prop=m?"top":"marginLeft";a.args={};a.manualPause=!1;var b=a,g;if(g=!c.video)if(g=!s)if(g=c.useCSS)a:{g=document.createElement("div");var p=["perspectiveProperty","WebkitPerspective","MozPerspective","OPerspective","msPerspective"],e;for(e in p)if(void 0!==g.style[p[e]]){a.pfx=p[e].replace("Perspective","").toLowerCase();
a.prop="-"+a.pfx+"-transform";g=!0;break a}g=!1}b.transitions=g;""!==c.controlsContainer&&(a.controlsContainer=0<d(c.controlsContainer).length&&d(c.controlsContainer));""!==c.manualControls&&(a.manualControls=0<d(c.manualControls).length&&d(c.manualControls));c.randomize&&(a.slides.sort(function(){return Math.round(Math.random())-0.5}),a.container.empty().append(a.slides));a.doMath();t&&f.asNav.setup();a.setup("init");c.controlNav&&f.controlNav.setup();c.directionNav&&f.directionNav.setup();c.keyboard&&
(1===d(a.containerSelector).length||c.multipleKeyboard)&&d(document).bind("keyup",function(b){b=b.keyCode;if(!a.animating&&(39===b||37===b))b=39===b?a.getTarget("next"):37===b?a.getTarget("prev"):!1,a.flexAnimate(b,c.pauseOnAction)});c.mousewheel&&a.bind("mousewheel",function(b,g){b.preventDefault();var d=0>g?a.getTarget("next"):a.getTarget("prev");a.flexAnimate(d,c.pauseOnAction)});c.pausePlay&&f.pausePlay.setup();c.slideshow&&(c.pauseOnHover&&a.hover(function(){!a.manualPlay&&!a.manualPause&&a.pause()},
function(){!a.manualPause&&!a.manualPlay&&a.play()}),0<c.initDelay?setTimeout(a.play,c.initDelay):a.play());q&&c.touch&&f.touch();(!s||s&&c.smoothHeight)&&d(window).bind("resize focus",f.resize);setTimeout(function(){c.start(a)},200)},asNav:{setup:function(){a.asNav=!0;a.animatingTo=Math.floor(a.currentSlide/a.move);a.currentItem=a.currentSlide;a.slides.removeClass(e+"active-slide").eq(a.currentItem).addClass(e+"active-slide");a.slides.click(function(b){b.preventDefault();b=d(this);var g=b.index();
!d(c.asNavFor).data("flexslider").animating&&!b.hasClass("active")&&(a.direction=a.currentItem<g?"next":"prev",a.flexAnimate(g,c.pauseOnAction,!1,!0,!0))})}},controlNav:{setup:function(){a.manualControls?f.controlNav.setupManual():f.controlNav.setupPaging()},setupPaging:function(){var b=1,g;a.controlNavScaffold=d('<ol class="'+e+"control-nav "+e+("thumbnails"===c.controlNav?"control-thumbs":"control-paging")+'"></ol>');if(1<a.pagingCount)for(var p=0;p<a.pagingCount;p++)g="thumbnails"===c.controlNav?
'<img src="'+a.slides.eq(p).attr("data-thumb")+'"/>':"<a>"+b+"</a>",a.controlNavScaffold.append("<li>"+g+"</li>"),b++;a.controlsContainer?d(a.controlsContainer).append(a.controlNavScaffold):a.append(a.controlNavScaffold);f.controlNav.set();f.controlNav.active();a.controlNavScaffold.delegate("a, img",u,function(b){b.preventDefault();b=d(this);var g=a.controlNav.index(b);b.hasClass(e+"active")||(a.direction=g>a.currentSlide?"next":"prev",a.flexAnimate(g,c.pauseOnAction))});q&&a.controlNavScaffold.delegate("a",
"click touchstart",function(a){a.preventDefault()})},setupManual:function(){a.controlNav=a.manualControls;f.controlNav.active();a.controlNav.live(u,function(b){b.preventDefault();b=d(this);var g=a.controlNav.index(b);b.hasClass(e+"active")||(g>a.currentSlide?a.direction="next":a.direction="prev",a.flexAnimate(g,c.pauseOnAction))});q&&a.controlNav.live("click touchstart",function(a){a.preventDefault()})},set:function(){a.controlNav=d("."+e+"control-nav li "+("thumbnails"===c.controlNav?"img":"a"),
a.controlsContainer?a.controlsContainer:a)},active:function(){a.controlNav.removeClass(e+"active").eq(a.animatingTo).addClass(e+"active")},update:function(b,c){1<a.pagingCount&&"add"===b?a.controlNavScaffold.append(d("<li><a>"+a.count+"</a></li>")):1===a.pagingCount?a.controlNavScaffold.find("li").remove():a.controlNav.eq(c).closest("li").remove();f.controlNav.set();1<a.pagingCount&&a.pagingCount!==a.controlNav.length?a.update(c,b):f.controlNav.active()}},directionNav:{setup:function(){var b=d('<ul class="'+
e+'direction-nav"><li><a class="'+e+'prev" href="#">'+c.prevText+'</a></li><li><a class="'+e+'next" href="#">'+c.nextText+"</a></li></ul>");a.controlsContainer?(d(a.controlsContainer).append(b),a.directionNav=d("."+e+"direction-nav li a",a.controlsContainer)):(a.append(b),a.directionNav=d("."+e+"direction-nav li a",a));f.directionNav.update();a.directionNav.bind(u,function(b){b.preventDefault();b=d(this).hasClass(e+"next")?a.getTarget("next"):a.getTarget("prev");a.flexAnimate(b,c.pauseOnAction)});
q&&a.directionNav.bind("click touchstart",function(a){a.preventDefault()})},update:function(){var b=e+"disabled";1===a.pagingCount?a.directionNav.addClass(b):c.animationLoop?a.directionNav.removeClass(b):0===a.animatingTo?a.directionNav.removeClass(b).filter("."+e+"prev").addClass(b):a.animatingTo===a.last?a.directionNav.removeClass(b).filter("."+e+"next").addClass(b):a.directionNav.removeClass(b)}},pausePlay:{setup:function(){var b=d('<div class="'+e+'pauseplay"><a></a></div>');a.controlsContainer?
(a.controlsContainer.append(b),a.pausePlay=d("."+e+"pauseplay a",a.controlsContainer)):(a.append(b),a.pausePlay=d("."+e+"pauseplay a",a));f.pausePlay.update(c.slideshow?e+"pause":e+"play");a.pausePlay.bind(u,function(b){b.preventDefault();d(this).hasClass(e+"pause")?(a.manualPause=!0,a.manualPlay=!1,a.pause()):(a.manualPause=!1,a.manualPlay=!0,a.play())});q&&a.pausePlay.bind("click touchstart",function(a){a.preventDefault()})},update:function(b){"play"===b?a.pausePlay.removeClass(e+"pause").addClass(e+
"play").text(c.playText):a.pausePlay.removeClass(e+"play").addClass(e+"pause").text(c.pauseText)}},touch:function(){function b(b){k=m?d-b.touches[0].pageY:d-b.touches[0].pageX;q=m?Math.abs(k)<Math.abs(b.touches[0].pageX-e):Math.abs(k)<Math.abs(b.touches[0].pageY-e);if(!q||500<Number(new Date)-l)b.preventDefault(),!s&&a.transitions&&(c.animationLoop||(k/=0===a.currentSlide&&0>k||a.currentSlide===a.last&&0<k?Math.abs(k)/r+2:1),a.setProps(f+k,"setTouch"))}function g(){j.removeEventListener("touchmove",
b,!1);if(a.animatingTo===a.currentSlide&&!q&&null!==k){var h=n?-k:k,m=0<h?a.getTarget("next"):a.getTarget("prev");a.canAdvance(m)&&(550>Number(new Date)-l&&50<Math.abs(h)||Math.abs(h)>r/2)?a.flexAnimate(m,c.pauseOnAction):s||a.flexAnimate(a.currentSlide,c.pauseOnAction,!0)}j.removeEventListener("touchend",g,!1);f=k=e=d=null}var d,e,f,r,k,l,q=!1;j.addEventListener("touchstart",function(k){a.animating?k.preventDefault():1===k.touches.length&&(a.pause(),r=m?a.h:a.w,l=Number(new Date),f=h&&n&&a.animatingTo===
a.last?0:h&&n?a.limit-(a.itemW+c.itemMargin)*a.move*a.animatingTo:h&&a.currentSlide===a.last?a.limit:h?(a.itemW+c.itemMargin)*a.move*a.currentSlide:n?(a.last-a.currentSlide+a.cloneOffset)*r:(a.currentSlide+a.cloneOffset)*r,d=m?k.touches[0].pageY:k.touches[0].pageX,e=m?k.touches[0].pageX:k.touches[0].pageY,j.addEventListener("touchmove",b,!1),j.addEventListener("touchend",g,!1))},!1)},resize:function(){!a.animating&&a.is(":visible")&&(h||a.doMath(),s?f.smoothHeight():h?(a.slides.width(a.computedW),
a.update(a.pagingCount),a.setProps()):m?(a.viewport.height(a.h),a.setProps(a.h,"setTotal")):(c.smoothHeight&&f.smoothHeight(),a.newSlides.width(a.computedW),a.setProps(a.computedW,"setTotal")))},smoothHeight:function(b){if(!m||s){var c=s?a:a.viewport;b?c.animate({height:a.slides.eq(a.animatingTo).height()},b):c.height(a.slides.eq(a.animatingTo).height())}},sync:function(b){var g=d(c.sync).data("flexslider"),e=a.animatingTo;switch(b){case "animate":g.flexAnimate(e,c.pauseOnAction,!1,!0);break;case "play":!g.playing&&
!g.asNav&&g.play();break;case "pause":g.pause()}}};a.flexAnimate=function(b,g,p,j,l){t&&1===a.pagingCount&&(a.direction=a.currentItem<b?"next":"prev");if(!a.animating&&(a.canAdvance(b,l)||p)&&a.is(":visible")){if(t&&j)if(p=d(c.asNavFor).data("flexslider"),a.atEnd=0===b||b===a.count-1,p.flexAnimate(b,!0,!1,!0,l),a.direction=a.currentItem<b?"next":"prev",p.direction=a.direction,Math.ceil((b+1)/a.visible)-1!==a.currentSlide&&0!==b)a.currentItem=b,a.slides.removeClass(e+"active-slide").eq(b).addClass(e+
"active-slide"),b=Math.floor(b/a.visible);else return a.currentItem=b,a.slides.removeClass(e+"active-slide").eq(b).addClass(e+"active-slide"),!1;a.animating=!0;a.animatingTo=b;c.before(a);g&&a.pause();a.syncExists&&!l&&f.sync("animate");c.controlNav&&f.controlNav.active();h||a.slides.removeClass(e+"active-slide").eq(b).addClass(e+"active-slide");a.atEnd=0===b||b===a.last;c.directionNav&&f.directionNav.update();b===a.last&&(c.end(a),c.animationLoop||a.pause());if(s)q?(a.slides.eq(a.currentSlide).css({opacity:0,
zIndex:1}),a.slides.eq(b).css({opacity:1,zIndex:2}),a.slides.unbind("webkitTransitionEnd transitionend"),a.slides.eq(a.currentSlide).bind("webkitTransitionEnd transitionend",function(){c.after(a)}),a.animating=!1,a.currentSlide=a.animatingTo):(a.slides.eq(a.currentSlide).fadeOut(c.animationSpeed,c.easing),a.slides.eq(b).fadeIn(c.animationSpeed,c.easing,a.wrapup));else{var r=m?a.slides.filter(":first").height():a.computedW;h?(b=c.itemWidth>a.w?2*c.itemMargin:c.itemMargin,b=(a.itemW+b)*a.move*a.animatingTo,
b=b>a.limit&&1!==a.visible?a.limit:b):b=0===a.currentSlide&&b===a.count-1&&c.animationLoop&&"next"!==a.direction?n?(a.count+a.cloneOffset)*r:0:a.currentSlide===a.last&&0===b&&c.animationLoop&&"prev"!==a.direction?n?0:(a.count+1)*r:n?(a.count-1-b+a.cloneOffset)*r:(b+a.cloneOffset)*r;a.setProps(b,"",c.animationSpeed);if(a.transitions){if(!c.animationLoop||!a.atEnd)a.animating=!1,a.currentSlide=a.animatingTo;a.container.unbind("webkitTransitionEnd transitionend");a.container.bind("webkitTransitionEnd transitionend",
function(){a.wrapup(r)})}else a.container.animate(a.args,c.animationSpeed,c.easing,function(){a.wrapup(r)})}c.smoothHeight&&f.smoothHeight(c.animationSpeed)}};a.wrapup=function(b){!s&&!h&&(0===a.currentSlide&&a.animatingTo===a.last&&c.animationLoop?a.setProps(b,"jumpEnd"):a.currentSlide===a.last&&(0===a.animatingTo&&c.animationLoop)&&a.setProps(b,"jumpStart"));a.animating=!1;a.currentSlide=a.animatingTo;c.after(a)};a.animateSlides=function(){a.animating||a.flexAnimate(a.getTarget("next"))};a.pause=
function(){clearInterval(a.animatedSlides);a.playing=!1;c.pausePlay&&f.pausePlay.update("play");a.syncExists&&f.sync("pause")};a.play=function(){a.animatedSlides=setInterval(a.animateSlides,c.slideshowSpeed);a.playing=!0;c.pausePlay&&f.pausePlay.update("pause");a.syncExists&&f.sync("play")};a.canAdvance=function(b,g){var d=t?a.pagingCount-1:a.last;return g?!0:t&&a.currentItem===a.count-1&&0===b&&"prev"===a.direction?!0:t&&0===a.currentItem&&b===a.pagingCount-1&&"next"!==a.direction?!1:b===a.currentSlide&&
!t?!1:c.animationLoop?!0:a.atEnd&&0===a.currentSlide&&b===d&&"next"!==a.direction?!1:a.atEnd&&a.currentSlide===d&&0===b&&"next"===a.direction?!1:!0};a.getTarget=function(b){a.direction=b;return"next"===b?a.currentSlide===a.last?0:a.currentSlide+1:0===a.currentSlide?a.last:a.currentSlide-1};a.setProps=function(b,g,d){var e,f=b?b:(a.itemW+c.itemMargin)*a.move*a.animatingTo;e=-1*function(){if(h)return"setTouch"===g?b:n&&a.animatingTo===a.last?0:n?a.limit-(a.itemW+c.itemMargin)*a.move*a.animatingTo:a.animatingTo===
a.last?a.limit:f;switch(g){case "setTotal":return n?(a.count-1-a.currentSlide+a.cloneOffset)*b:(a.currentSlide+a.cloneOffset)*b;case "setTouch":return b;case "jumpEnd":return n?b:a.count*b;case "jumpStart":return n?a.count*b:b;default:return b}}()+"px";a.transitions&&(e=m?"translate3d(0,"+e+",0)":"translate3d("+e+",0,0)",d=void 0!==d?d/1E3+"s":"0s",a.container.css("-"+a.pfx+"-transition-duration",d));a.args[a.prop]=e;(a.transitions||void 0===d)&&a.container.css(a.args)};a.setup=function(b){if(s)a.slides.css({width:"100%",
"float":"left",marginRight:"-100%",position:"relative"}),"init"===b&&(q?a.slides.css({opacity:0,display:"block",webkitTransition:"opacity "+c.animationSpeed/1E3+"s ease",zIndex:1}).eq(a.currentSlide).css({opacity:1,zIndex:2}):a.slides.eq(a.currentSlide).fadeIn(c.animationSpeed,c.easing)),c.smoothHeight&&f.smoothHeight();else{var g,p;"init"===b&&(a.viewport=d('<div class="'+e+'viewport"></div>').css({overflow:"hidden",position:"relative"}).appendTo(a).append(a.container),a.cloneCount=0,a.cloneOffset=
0,n&&(p=d.makeArray(a.slides).reverse(),a.slides=d(p),a.container.empty().append(a.slides)));c.animationLoop&&!h&&(a.cloneCount=2,a.cloneOffset=1,"init"!==b&&a.container.find(".clone").remove(),a.container.append(a.slides.first().clone().addClass("clone")).prepend(a.slides.last().clone().addClass("clone")));a.newSlides=d(c.selector,a);g=n?a.count-1-a.currentSlide+a.cloneOffset:a.currentSlide+a.cloneOffset;m&&!h?(a.container.height(200*(a.count+a.cloneCount)+"%").css("position","absolute").width("100%"),
setTimeout(function(){a.newSlides.css({display:"block"});a.doMath();a.viewport.height(a.h);a.setProps(g*a.h,"init")},"init"===b?100:0)):(a.container.width(200*(a.count+a.cloneCount)+"%"),a.setProps(g*a.computedW,"init"),setTimeout(function(){a.doMath();a.newSlides.css({width:a.computedW,"float":"left",display:"block"});c.smoothHeight&&f.smoothHeight()},"init"===b?100:0))}h||a.slides.removeClass(e+"active-slide").eq(a.currentSlide).addClass(e+"active-slide")};a.doMath=function(){var b=a.slides.first(),
d=c.itemMargin,e=c.minItems,f=c.maxItems;a.w=a.width();a.h=b.height();a.boxPadding=b.outerWidth()-b.width();h?(a.itemT=c.itemWidth+d,a.minW=e?e*a.itemT:a.w,a.maxW=f?f*a.itemT:a.w,a.itemW=a.minW>a.w?(a.w-d*e)/e:a.maxW<a.w?(a.w-d*f)/f:c.itemWidth>a.w?a.w:c.itemWidth,a.visible=Math.floor(a.w/(a.itemW+d)),a.move=0<c.move&&c.move<a.visible?c.move:a.visible,a.pagingCount=Math.ceil((a.count-a.visible)/a.move+1),a.last=a.pagingCount-1,a.limit=1===a.pagingCount?0:c.itemWidth>a.w?(a.itemW+2*d)*a.count-a.w-
d:(a.itemW+d)*a.count-a.w-d):(a.itemW=a.w,a.pagingCount=a.count,a.last=a.count-1);a.computedW=a.itemW-a.boxPadding};a.update=function(b,d){a.doMath();h||(b<a.currentSlide?a.currentSlide+=1:b<=a.currentSlide&&0!==b&&(a.currentSlide-=1),a.animatingTo=a.currentSlide);if(c.controlNav&&!a.manualControls)if("add"===d&&!h||a.pagingCount>a.controlNav.length)f.controlNav.update("add");else if("remove"===d&&!h||a.pagingCount<a.controlNav.length)h&&a.currentSlide>a.last&&(a.currentSlide-=1,a.animatingTo-=1),
f.controlNav.update("remove",a.last);c.directionNav&&f.directionNav.update()};a.addSlide=function(b,e){var f=d(b);a.count+=1;a.last=a.count-1;m&&n?void 0!==e?a.slides.eq(a.count-e).after(f):a.container.prepend(f):void 0!==e?a.slides.eq(e).before(f):a.container.append(f);a.update(e,"add");a.slides=d(c.selector+":not(.clone)",a);a.setup();c.added(a)};a.removeSlide=function(b){var e=isNaN(b)?a.slides.index(d(b)):b;a.count-=1;a.last=a.count-1;isNaN(b)?d(b,a.slides).remove():m&&n?a.slides.eq(a.last).remove():
a.slides.eq(b).remove();a.doMath();a.update(e,"remove");a.slides=d(c.selector+":not(.clone)",a);a.setup();c.removed(a)};f.init()};d.flexslider.defaults={namespace:"flex-",selector:".slides > li",animation:"fade",easing:"swing",direction:"horizontal",reverse:!1,animationLoop:!0,smoothHeight:!1,startAt:0,slideshow:!0,slideshowSpeed:7E3,animationSpeed:600,initDelay:0,randomize:!1,pauseOnAction:!0,pauseOnHover:!1,useCSS:!0,touch:!0,video:!1,controlNav:!0,directionNav:!0,prevText:"Previous",nextText:"Next",
keyboard:!0,multipleKeyboard:!1,mousewheel:!1,pausePlay:!1,pauseText:"Pause",playText:"Play",controlsContainer:"",manualControls:"",sync:"",asNavFor:"",itemWidth:0,itemMargin:0,minItems:0,maxItems:0,move:0,start:function(){},before:function(){},after:function(){},end:function(){},added:function(){},removed:function(){}};d.fn.flexslider=function(j){void 0===j&&(j={});if("object"===typeof j)return this.each(function(){var a=d(this),c=a.find(j.selector?j.selector:".slides > li");1===c.length?(c.fadeIn(400),
j.start&&j.start(a)):void 0==a.data("flexslider")&&new d.flexslider(this,j)});var l=d(this).data("flexslider");switch(j){case "play":l.play();break;case "pause":l.pause();break;case "next":l.flexAnimate(l.getTarget("next"),!0);break;case "prev":case "previous":l.flexAnimate(l.getTarget("prev"),!0);break;default:"number"===typeof j&&l.flexAnimate(j,!0)}}})(jQuery);

7
js/jquery.sharrre.min.js vendored Normal file

File diff suppressed because one or more lines are too long

47
js/owl.carousel.min.js vendored Normal file
View file

@ -0,0 +1,47 @@
"function"!==typeof Object.create&&(Object.create=function(f){function g(){}g.prototype=f;return new g});
(function(f,g,k){var l={init:function(a,b){this.$elem=f(b);this.options=f.extend({},f.fn.owlCarousel.options,this.$elem.data(),a);this.userOptions=a;this.loadContent()},loadContent:function(){function a(a){var d,e="";if("function"===typeof b.options.jsonSuccess)b.options.jsonSuccess.apply(this,[a]);else{for(d in a.owl)a.owl.hasOwnProperty(d)&&(e+=a.owl[d].item);b.$elem.html(e)}b.logIn()}var b=this,e;"function"===typeof b.options.beforeInit&&b.options.beforeInit.apply(this,[b.$elem]);"string"===typeof b.options.jsonPath?
(e=b.options.jsonPath,f.getJSON(e,a)):b.logIn()},logIn:function(){this.$elem.data("owl-originalStyles",this.$elem.attr("style"));this.$elem.data("owl-originalClasses",this.$elem.attr("class"));this.$elem.css({opacity:0});this.orignalItems=this.options.items;this.checkBrowser();this.wrapperWidth=0;this.checkVisible=null;this.setVars()},setVars:function(){if(0===this.$elem.children().length)return!1;this.baseClass();this.eventTypes();this.$userItems=this.$elem.children();this.itemsAmount=this.$userItems.length;
this.wrapItems();this.$owlItems=this.$elem.find(".owl-item");this.$owlWrapper=this.$elem.find(".owl-wrapper");this.playDirection="next";this.prevItem=0;this.prevArr=[0];this.currentItem=0;this.customEvents();this.onStartup()},onStartup:function(){this.updateItems();this.calculateAll();this.buildControls();this.updateControls();this.response();this.moveEvents();this.stopOnHover();this.owlStatus();!1!==this.options.transitionStyle&&this.transitionTypes(this.options.transitionStyle);!0===this.options.autoPlay&&
(this.options.autoPlay=5E3);this.play();this.$elem.find(".owl-wrapper").css("display","block");this.$elem.is(":visible")?this.$elem.css("opacity",1):this.watchVisibility();this.onstartup=!1;this.eachMoveUpdate();"function"===typeof this.options.afterInit&&this.options.afterInit.apply(this,[this.$elem])},eachMoveUpdate:function(){!0===this.options.lazyLoad&&this.lazyLoad();!0===this.options.autoHeight&&this.autoHeight();this.onVisibleItems();"function"===typeof this.options.afterAction&&this.options.afterAction.apply(this,
[this.$elem])},updateVars:function(){"function"===typeof this.options.beforeUpdate&&this.options.beforeUpdate.apply(this,[this.$elem]);this.watchVisibility();this.updateItems();this.calculateAll();this.updatePosition();this.updateControls();this.eachMoveUpdate();"function"===typeof this.options.afterUpdate&&this.options.afterUpdate.apply(this,[this.$elem])},reload:function(){var a=this;g.setTimeout(function(){a.updateVars()},0)},watchVisibility:function(){var a=this;if(!1===a.$elem.is(":visible"))a.$elem.css({opacity:0}),
g.clearInterval(a.autoPlayInterval),g.clearInterval(a.checkVisible);else return!1;a.checkVisible=g.setInterval(function(){a.$elem.is(":visible")&&(a.reload(),a.$elem.animate({opacity:1},200),g.clearInterval(a.checkVisible))},500)},wrapItems:function(){this.$userItems.wrapAll('<div class="owl-wrapper">').wrap('<div class="owl-item"></div>');this.$elem.find(".owl-wrapper").wrap('<div class="owl-wrapper-outer">');this.wrapperOuter=this.$elem.find(".owl-wrapper-outer");this.$elem.css("display","block")},
baseClass:function(){var a=this.$elem.hasClass(this.options.baseClass),b=this.$elem.hasClass(this.options.theme);a||this.$elem.addClass(this.options.baseClass);b||this.$elem.addClass(this.options.theme)},updateItems:function(){var a,b;if(!1===this.options.responsive)return!1;if(!0===this.options.singleItem)return this.options.items=this.orignalItems=1,this.options.itemsCustom=!1,this.options.itemsDesktop=!1,this.options.itemsDesktopSmall=!1,this.options.itemsTablet=!1,this.options.itemsTabletSmall=
!1,this.options.itemsMobile=!1;a=f(this.options.responsiveBaseWidth).width();a>(this.options.itemsDesktop[0]||this.orignalItems)&&(this.options.items=this.orignalItems);if(!1!==this.options.itemsCustom)for(this.options.itemsCustom.sort(function(a,b){return a[0]-b[0]}),b=0;b<this.options.itemsCustom.length;b+=1)this.options.itemsCustom[b][0]<=a&&(this.options.items=this.options.itemsCustom[b][1]);else a<=this.options.itemsDesktop[0]&&!1!==this.options.itemsDesktop&&(this.options.items=this.options.itemsDesktop[1]),
a<=this.options.itemsDesktopSmall[0]&&!1!==this.options.itemsDesktopSmall&&(this.options.items=this.options.itemsDesktopSmall[1]),a<=this.options.itemsTablet[0]&&!1!==this.options.itemsTablet&&(this.options.items=this.options.itemsTablet[1]),a<=this.options.itemsTabletSmall[0]&&!1!==this.options.itemsTabletSmall&&(this.options.items=this.options.itemsTabletSmall[1]),a<=this.options.itemsMobile[0]&&!1!==this.options.itemsMobile&&(this.options.items=this.options.itemsMobile[1]);this.options.items>this.itemsAmount&&
!0===this.options.itemsScaleUp&&(this.options.items=this.itemsAmount)},response:function(){var a=this,b,e;if(!0!==a.options.responsive)return!1;e=f(g).width();a.resizer=function(){f(g).width()!==e&&(!1!==a.options.autoPlay&&g.clearInterval(a.autoPlayInterval),g.clearTimeout(b),b=g.setTimeout(function(){e=f(g).width();a.updateVars()},a.options.responsiveRefreshRate))};f(g).resize(a.resizer)},updatePosition:function(){this.jumpTo(this.currentItem);!1!==this.options.autoPlay&&this.checkAp()},appendItemsSizes:function(){var a=
this,b=0,e=a.itemsAmount-a.options.items;a.$owlItems.each(function(c){var d=f(this);d.css({width:a.itemWidth}).data("owl-item",Number(c));if(0===c%a.options.items||c===e)c>e||(b+=1);d.data("owl-roundPages",b)})},appendWrapperSizes:function(){this.$owlWrapper.css({width:this.$owlItems.length*this.itemWidth*2,left:0});this.appendItemsSizes()},calculateAll:function(){this.calculateWidth();this.appendWrapperSizes();this.loops();this.max()},calculateWidth:function(){this.itemWidth=Math.round(this.$elem.width()/
this.options.items)},max:function(){var a=-1*(this.itemsAmount*this.itemWidth-this.options.items*this.itemWidth);this.options.items>this.itemsAmount?this.maximumPixels=a=this.maximumItem=0:(this.maximumItem=this.itemsAmount-this.options.items,this.maximumPixels=a);return a},min:function(){return 0},loops:function(){var a=0,b=0,e,c;this.positionsInArray=[0];this.pagesInArray=[];for(e=0;e<this.itemsAmount;e+=1)b+=this.itemWidth,this.positionsInArray.push(-b),!0===this.options.scrollPerPage&&(c=f(this.$owlItems[e]),
c=c.data("owl-roundPages"),c!==a&&(this.pagesInArray[a]=this.positionsInArray[e],a=c))},buildControls:function(){if(!0===this.options.navigation||!0===this.options.pagination)this.owlControls=f('<div class="owl-controls"/>').toggleClass("clickable",!this.browser.isTouch).appendTo(this.$elem);!0===this.options.pagination&&this.buildPagination();!0===this.options.navigation&&this.buildButtons()},buildButtons:function(){var a=this,b=f('<div class="owl-buttons"/>');a.owlControls.append(b);a.buttonPrev=
f("<div/>",{"class":"owl-prev",html:a.options.navigationText[0]||""});a.buttonNext=f("<div/>",{"class":"owl-next",html:a.options.navigationText[1]||""});b.append(a.buttonPrev).append(a.buttonNext);b.on("touchstart.owlControls mousedown.owlControls",'div[class^="owl"]',function(a){a.preventDefault()});b.on("touchend.owlControls mouseup.owlControls",'div[class^="owl"]',function(b){b.preventDefault();f(this).hasClass("owl-next")?a.next():a.prev()})},buildPagination:function(){var a=this;a.paginationWrapper=
f('<div class="owl-pagination"/>');a.owlControls.append(a.paginationWrapper);a.paginationWrapper.on("touchend.owlControls mouseup.owlControls",".owl-page",function(b){b.preventDefault();Number(f(this).data("owl-page"))!==a.currentItem&&a.goTo(Number(f(this).data("owl-page")),!0)})},updatePagination:function(){var a,b,e,c,d,g;if(!1===this.options.pagination)return!1;this.paginationWrapper.html("");a=0;b=this.itemsAmount-this.itemsAmount%this.options.items;for(c=0;c<this.itemsAmount;c+=1)0===c%this.options.items&&
(a+=1,b===c&&(e=this.itemsAmount-this.options.items),d=f("<div/>",{"class":"owl-page"}),g=f("<span></span>",{text:!0===this.options.paginationNumbers?a:"","class":!0===this.options.paginationNumbers?"owl-numbers":""}),d.append(g),d.data("owl-page",b===c?e:c),d.data("owl-roundPages",a),this.paginationWrapper.append(d));this.checkPagination()},checkPagination:function(){var a=this;if(!1===a.options.pagination)return!1;a.paginationWrapper.find(".owl-page").each(function(){f(this).data("owl-roundPages")===
f(a.$owlItems[a.currentItem]).data("owl-roundPages")&&(a.paginationWrapper.find(".owl-page").removeClass("active"),f(this).addClass("active"))})},checkNavigation:function(){if(!1===this.options.navigation)return!1;!1===this.options.rewindNav&&(0===this.currentItem&&0===this.maximumItem?(this.buttonPrev.addClass("disabled"),this.buttonNext.addClass("disabled")):0===this.currentItem&&0!==this.maximumItem?(this.buttonPrev.addClass("disabled"),this.buttonNext.removeClass("disabled")):this.currentItem===
this.maximumItem?(this.buttonPrev.removeClass("disabled"),this.buttonNext.addClass("disabled")):0!==this.currentItem&&this.currentItem!==this.maximumItem&&(this.buttonPrev.removeClass("disabled"),this.buttonNext.removeClass("disabled")))},updateControls:function(){this.updatePagination();this.checkNavigation();this.owlControls&&(this.options.items>=this.itemsAmount?this.owlControls.hide():this.owlControls.show())},destroyControls:function(){this.owlControls&&this.owlControls.remove()},next:function(a){if(this.isTransition)return!1;
this.currentItem+=!0===this.options.scrollPerPage?this.options.items:1;if(this.currentItem>this.maximumItem+(!0===this.options.scrollPerPage?this.options.items-1:0))if(!0===this.options.rewindNav)this.currentItem=0,a="rewind";else return this.currentItem=this.maximumItem,!1;this.goTo(this.currentItem,a)},prev:function(a){if(this.isTransition)return!1;this.currentItem=!0===this.options.scrollPerPage&&0<this.currentItem&&this.currentItem<this.options.items?0:this.currentItem-(!0===this.options.scrollPerPage?
this.options.items:1);if(0>this.currentItem)if(!0===this.options.rewindNav)this.currentItem=this.maximumItem,a="rewind";else return this.currentItem=0,!1;this.goTo(this.currentItem,a)},goTo:function(a,b,e){var c=this;if(c.isTransition)return!1;"function"===typeof c.options.beforeMove&&c.options.beforeMove.apply(this,[c.$elem]);a>=c.maximumItem?a=c.maximumItem:0>=a&&(a=0);c.currentItem=c.owl.currentItem=a;if(!1!==c.options.transitionStyle&&"drag"!==e&&1===c.options.items&&!0===c.browser.support3d)return c.swapSpeed(0),
!0===c.browser.support3d?c.transition3d(c.positionsInArray[a]):c.css2slide(c.positionsInArray[a],1),c.afterGo(),c.singleItemTransition(),!1;a=c.positionsInArray[a];!0===c.browser.support3d?(c.isCss3Finish=!1,!0===b?(c.swapSpeed("paginationSpeed"),g.setTimeout(function(){c.isCss3Finish=!0},c.options.paginationSpeed)):"rewind"===b?(c.swapSpeed(c.options.rewindSpeed),g.setTimeout(function(){c.isCss3Finish=!0},c.options.rewindSpeed)):(c.swapSpeed("slideSpeed"),g.setTimeout(function(){c.isCss3Finish=!0},
c.options.slideSpeed)),c.transition3d(a)):!0===b?c.css2slide(a,c.options.paginationSpeed):"rewind"===b?c.css2slide(a,c.options.rewindSpeed):c.css2slide(a,c.options.slideSpeed);c.afterGo()},jumpTo:function(a){"function"===typeof this.options.beforeMove&&this.options.beforeMove.apply(this,[this.$elem]);a>=this.maximumItem||-1===a?a=this.maximumItem:0>=a&&(a=0);this.swapSpeed(0);!0===this.browser.support3d?this.transition3d(this.positionsInArray[a]):this.css2slide(this.positionsInArray[a],1);this.currentItem=
this.owl.currentItem=a;this.afterGo()},afterGo:function(){this.prevArr.push(this.currentItem);this.prevItem=this.owl.prevItem=this.prevArr[this.prevArr.length-2];this.prevArr.shift(0);this.prevItem!==this.currentItem&&(this.checkPagination(),this.checkNavigation(),this.eachMoveUpdate(),!1!==this.options.autoPlay&&this.checkAp());"function"===typeof this.options.afterMove&&this.prevItem!==this.currentItem&&this.options.afterMove.apply(this,[this.$elem])},stop:function(){this.apStatus="stop";g.clearInterval(this.autoPlayInterval)},
checkAp:function(){"stop"!==this.apStatus&&this.play()},play:function(){var a=this;a.apStatus="play";if(!1===a.options.autoPlay)return!1;g.clearInterval(a.autoPlayInterval);a.autoPlayInterval=g.setInterval(function(){a.next(!0)},a.options.autoPlay)},swapSpeed:function(a){"slideSpeed"===a?this.$owlWrapper.css(this.addCssSpeed(this.options.slideSpeed)):"paginationSpeed"===a?this.$owlWrapper.css(this.addCssSpeed(this.options.paginationSpeed)):"string"!==typeof a&&this.$owlWrapper.css(this.addCssSpeed(a))},
addCssSpeed:function(a){return{"-webkit-transition":"all "+a+"ms ease","-moz-transition":"all "+a+"ms ease","-o-transition":"all "+a+"ms ease",transition:"all "+a+"ms ease"}},removeTransition:function(){return{"-webkit-transition":"","-moz-transition":"","-o-transition":"",transition:""}},doTranslate:function(a){return{"-webkit-transform":"translate3d("+a+"px, 0px, 0px)","-moz-transform":"translate3d("+a+"px, 0px, 0px)","-o-transform":"translate3d("+a+"px, 0px, 0px)","-ms-transform":"translate3d("+
a+"px, 0px, 0px)",transform:"translate3d("+a+"px, 0px,0px)"}},transition3d:function(a){this.$owlWrapper.css(this.doTranslate(a))},css2move:function(a){this.$owlWrapper.css({left:a})},css2slide:function(a,b){var e=this;e.isCssFinish=!1;e.$owlWrapper.stop(!0,!0).animate({left:a},{duration:b||e.options.slideSpeed,complete:function(){e.isCssFinish=!0}})},checkBrowser:function(){var a=k.createElement("div");a.style.cssText=" -moz-transform:translate3d(0px, 0px, 0px); -ms-transform:translate3d(0px, 0px, 0px); -o-transform:translate3d(0px, 0px, 0px); -webkit-transform:translate3d(0px, 0px, 0px); transform:translate3d(0px, 0px, 0px)";
a=a.style.cssText.match(/translate3d\(0px, 0px, 0px\)/g);this.browser={support3d:null!==a&&1===a.length,isTouch:"ontouchstart"in g||g.navigator.msMaxTouchPoints}},moveEvents:function(){if(!1!==this.options.mouseDrag||!1!==this.options.touchDrag)this.gestures(),this.disabledEvents()},eventTypes:function(){var a=["s","e","x"];this.ev_types={};!0===this.options.mouseDrag&&!0===this.options.touchDrag?a=["touchstart.owl mousedown.owl","touchmove.owl mousemove.owl","touchend.owl touchcancel.owl mouseup.owl"]:
!1===this.options.mouseDrag&&!0===this.options.touchDrag?a=["touchstart.owl","touchmove.owl","touchend.owl touchcancel.owl"]:!0===this.options.mouseDrag&&!1===this.options.touchDrag&&(a=["mousedown.owl","mousemove.owl","mouseup.owl"]);this.ev_types.start=a[0];this.ev_types.move=a[1];this.ev_types.end=a[2]},disabledEvents:function(){this.$elem.on("dragstart.owl",function(a){a.preventDefault()});this.$elem.on("mousedown.disableTextSelect",function(a){return f(a.target).is("input, textarea, select, option")})},
gestures:function(){function a(a){if(void 0!==a.touches)return{x:a.touches[0].pageX,y:a.touches[0].pageY};if(void 0===a.touches){if(void 0!==a.pageX)return{x:a.pageX,y:a.pageY};if(void 0===a.pageX)return{x:a.clientX,y:a.clientY}}}function b(a){"on"===a?(f(k).on(d.ev_types.move,e),f(k).on(d.ev_types.end,c)):"off"===a&&(f(k).off(d.ev_types.move),f(k).off(d.ev_types.end))}function e(b){b=b.originalEvent||b||g.event;d.newPosX=a(b).x-h.offsetX;d.newPosY=a(b).y-h.offsetY;d.newRelativeX=d.newPosX-h.relativePos;
"function"===typeof d.options.startDragging&&!0!==h.dragging&&0!==d.newRelativeX&&(h.dragging=!0,d.options.startDragging.apply(d,[d.$elem]));(8<d.newRelativeX||-8>d.newRelativeX)&&!0===d.browser.isTouch&&(void 0!==b.preventDefault?b.preventDefault():b.returnValue=!1,h.sliding=!0);(10<d.newPosY||-10>d.newPosY)&&!1===h.sliding&&f(k).off("touchmove.owl");d.newPosX=Math.max(Math.min(d.newPosX,d.newRelativeX/5),d.maximumPixels+d.newRelativeX/5);!0===d.browser.support3d?d.transition3d(d.newPosX):d.css2move(d.newPosX)}
function c(a){a=a.originalEvent||a||g.event;var c;a.target=a.target||a.srcElement;h.dragging=!1;!0!==d.browser.isTouch&&d.$owlWrapper.removeClass("grabbing");d.dragDirection=0>d.newRelativeX?d.owl.dragDirection="left":d.owl.dragDirection="right";0!==d.newRelativeX&&(c=d.getNewPosition(),d.goTo(c,!1,"drag"),h.targetElement===a.target&&!0!==d.browser.isTouch&&(f(a.target).on("click.disable",function(a){a.stopImmediatePropagation();a.stopPropagation();a.preventDefault();f(a.target).off("click.disable")}),
a=f._data(a.target,"events").click,c=a.pop(),a.splice(0,0,c)));b("off")}var d=this,h={offsetX:0,offsetY:0,baseElWidth:0,relativePos:0,position:null,minSwipe:null,maxSwipe:null,sliding:null,dargging:null,targetElement:null};d.isCssFinish=!0;d.$elem.on(d.ev_types.start,".owl-wrapper",function(c){c=c.originalEvent||c||g.event;var e;if(3===c.which)return!1;if(!(d.itemsAmount<=d.options.items)){if(!1===d.isCssFinish&&!d.options.dragBeforeAnimFinish||!1===d.isCss3Finish&&!d.options.dragBeforeAnimFinish)return!1;
!1!==d.options.autoPlay&&g.clearInterval(d.autoPlayInterval);!0===d.browser.isTouch||d.$owlWrapper.hasClass("grabbing")||d.$owlWrapper.addClass("grabbing");d.newPosX=0;d.newRelativeX=0;f(this).css(d.removeTransition());e=f(this).position();h.relativePos=e.left;h.offsetX=a(c).x-e.left;h.offsetY=a(c).y-e.top;b("on");h.sliding=!1;h.targetElement=c.target||c.srcElement}})},getNewPosition:function(){var a=this.closestItem();a>this.maximumItem?a=this.currentItem=this.maximumItem:0<=this.newPosX&&(this.currentItem=
a=0);return a},closestItem:function(){var a=this,b=!0===a.options.scrollPerPage?a.pagesInArray:a.positionsInArray,e=a.newPosX,c=null;f.each(b,function(d,g){e-a.itemWidth/20>b[d+1]&&e-a.itemWidth/20<g&&"left"===a.moveDirection()?(c=g,a.currentItem=!0===a.options.scrollPerPage?f.inArray(c,a.positionsInArray):d):e+a.itemWidth/20<g&&e+a.itemWidth/20>(b[d+1]||b[d]-a.itemWidth)&&"right"===a.moveDirection()&&(!0===a.options.scrollPerPage?(c=b[d+1]||b[b.length-1],a.currentItem=f.inArray(c,a.positionsInArray)):
(c=b[d+1],a.currentItem=d+1))});return a.currentItem},moveDirection:function(){var a;0>this.newRelativeX?(a="right",this.playDirection="next"):(a="left",this.playDirection="prev");return a},customEvents:function(){var a=this;a.$elem.on("owl.next",function(){a.next()});a.$elem.on("owl.prev",function(){a.prev()});a.$elem.on("owl.play",function(b,e){a.options.autoPlay=e;a.play();a.hoverStatus="play"});a.$elem.on("owl.stop",function(){a.stop();a.hoverStatus="stop"});a.$elem.on("owl.goTo",function(b,e){a.goTo(e)});
a.$elem.on("owl.jumpTo",function(b,e){a.jumpTo(e)})},stopOnHover:function(){var a=this;!0===a.options.stopOnHover&&!0!==a.browser.isTouch&&!1!==a.options.autoPlay&&(a.$elem.on("mouseover",function(){a.stop()}),a.$elem.on("mouseout",function(){"stop"!==a.hoverStatus&&a.play()}))},lazyLoad:function(){var a,b,e,c,d;if(!1===this.options.lazyLoad)return!1;for(a=0;a<this.itemsAmount;a+=1)b=f(this.$owlItems[a]),"loaded"!==b.data("owl-loaded")&&(e=b.data("owl-item"),c=b.find(".lazyOwl"),"string"!==typeof c.data("src")?
b.data("owl-loaded","loaded"):(void 0===b.data("owl-loaded")&&(c.hide(),b.addClass("loading").data("owl-loaded","checked")),(d=!0===this.options.lazyFollow?e>=this.currentItem:!0)&&e<this.currentItem+this.options.items&&c.length&&this.lazyPreload(b,c)))},lazyPreload:function(a,b){function e(){a.data("owl-loaded","loaded").removeClass("loading");b.removeAttr("data-src");"fade"===d.options.lazyEffect?b.fadeIn(400):b.show();"function"===typeof d.options.afterLazyLoad&&d.options.afterLazyLoad.apply(this,
[d.$elem])}function c(){f+=1;d.completeImg(b.get(0))||!0===k?e():100>=f?g.setTimeout(c,100):e()}var d=this,f=0,k;"DIV"===b.prop("tagName")?(b.css("background-image","url("+b.data("src")+")"),k=!0):b[0].src=b.data("src");c()},autoHeight:function(){function a(){var a=f(e.$owlItems[e.currentItem]).height();e.wrapperOuter.css("height",a+"px");e.wrapperOuter.hasClass("autoHeight")||g.setTimeout(function(){e.wrapperOuter.addClass("autoHeight")},0)}function b(){d+=1;e.completeImg(c.get(0))?a():100>=d?g.setTimeout(b,
100):e.wrapperOuter.css("height","")}var e=this,c=f(e.$owlItems[e.currentItem]).find("img"),d;void 0!==c.get(0)?(d=0,b()):a()},completeImg:function(a){return!a.complete||"undefined"!==typeof a.naturalWidth&&0===a.naturalWidth?!1:!0},onVisibleItems:function(){var a;!0===this.options.addClassActive&&this.$owlItems.removeClass("active");this.visibleItems=[];for(a=this.currentItem;a<this.currentItem+this.options.items;a+=1)this.visibleItems.push(a),!0===this.options.addClassActive&&f(this.$owlItems[a]).addClass("active");
this.owl.visibleItems=this.visibleItems},transitionTypes:function(a){this.outClass="owl-"+a+"-out";this.inClass="owl-"+a+"-in"},singleItemTransition:function(){var a=this,b=a.outClass,e=a.inClass,c=a.$owlItems.eq(a.currentItem),d=a.$owlItems.eq(a.prevItem),f=Math.abs(a.positionsInArray[a.currentItem])+a.positionsInArray[a.prevItem],g=Math.abs(a.positionsInArray[a.currentItem])+a.itemWidth/2;a.isTransition=!0;a.$owlWrapper.addClass("owl-origin").css({"-webkit-transform-origin":g+"px","-moz-perspective-origin":g+
"px","perspective-origin":g+"px"});d.css({position:"relative",left:f+"px"}).addClass(b).on("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend",function(){a.endPrev=!0;d.off("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend");a.clearTransStyle(d,b)});c.addClass(e).on("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend",function(){a.endCurrent=!0;c.off("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend");a.clearTransStyle(c,e)})},clearTransStyle:function(a,
b){a.css({position:"",left:""}).removeClass(b);this.endPrev&&this.endCurrent&&(this.$owlWrapper.removeClass("owl-origin"),this.isTransition=this.endCurrent=this.endPrev=!1)},owlStatus:function(){this.owl={userOptions:this.userOptions,baseElement:this.$elem,userItems:this.$userItems,owlItems:this.$owlItems,currentItem:this.currentItem,prevItem:this.prevItem,visibleItems:this.visibleItems,isTouch:this.browser.isTouch,browser:this.browser,dragDirection:this.dragDirection}},clearEvents:function(){this.$elem.off(".owl owl mousedown.disableTextSelect");
f(k).off(".owl owl");f(g).off("resize",this.resizer)},unWrap:function(){0!==this.$elem.children().length&&(this.$owlWrapper.unwrap(),this.$userItems.unwrap().unwrap(),this.owlControls&&this.owlControls.remove());this.clearEvents();this.$elem.attr("style",this.$elem.data("owl-originalStyles")||"").attr("class",this.$elem.data("owl-originalClasses"))},destroy:function(){this.stop();g.clearInterval(this.checkVisible);this.unWrap();this.$elem.removeData()},reinit:function(a){a=f.extend({},this.userOptions,
a);this.unWrap();this.init(a,this.$elem)},addItem:function(a,b){var e;if(!a)return!1;if(0===this.$elem.children().length)return this.$elem.append(a),this.setVars(),!1;this.unWrap();e=void 0===b||-1===b?-1:b;e>=this.$userItems.length||-1===e?this.$userItems.eq(-1).after(a):this.$userItems.eq(e).before(a);this.setVars()},removeItem:function(a){if(0===this.$elem.children().length)return!1;a=void 0===a||-1===a?-1:a;this.unWrap();this.$userItems.eq(a).remove();this.setVars()}};f.fn.owlCarousel=function(a){return this.each(function(){if(!0===
f(this).data("owl-init"))return!1;f(this).data("owl-init",!0);var b=Object.create(l);b.init(a,this);f.data(this,"owlCarousel",b)})};f.fn.owlCarousel.options={items:5,itemsCustom:!1,itemsDesktop:[1199,4],itemsDesktopSmall:[979,3],itemsTablet:[768,2],itemsTabletSmall:!1,itemsMobile:[479,1],singleItem:!1,itemsScaleUp:!1,slideSpeed:200,paginationSpeed:800,rewindSpeed:1E3,autoPlay:!1,stopOnHover:!1,navigation:!1,navigationText:["prev","next"],rewindNav:!0,scrollPerPage:!1,pagination:!0,paginationNumbers:!1,
responsive:!0,responsiveRefreshRate:200,responsiveBaseWidth:g,baseClass:"owl-carousel",theme:"owl-theme",lazyLoad:!1,lazyFollow:!0,lazyEffect:"fade",autoHeight:!1,jsonPath:!1,jsonSuccess:!1,dragBeforeAnimFinish:!0,mouseDrag:!0,touchDrag:!0,addClassActive:!1,transitionStyle:!1,beforeUpdate:!1,afterUpdate:!1,beforeInit:!1,afterInit:!1,beforeMove:!1,afterMove:!1,afterAction:!1,startDragging:!1,afterLazyLoad:!1}})(jQuery,window,document);

170
js/scripts.js Normal file
View file

@ -0,0 +1,170 @@
/*
scripts.js
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Copyright: (c) 2013 Alexander "Alx" Agnarson, http://alxmedia.se
*/
"use strict";
jQuery(document).ready(function($) {
/* Toggle header search
/* ------------------------------------ */
$('.toggle-search').click(function(){
$('.toggle-search').toggleClass('active');
$('.search-expand').fadeToggle(250);
setTimeout(function(){
$('.search-expand input').focus();
}, 300);
});
/* Scroll to top
/* ------------------------------------ */
$('a#back-to-top').click(function() {
$('html, body').animate({scrollTop:0},'slow');
return false;
});
/* Tabs widget
/* ------------------------------------ */
(function() {
var $tabsNav = $('.alx-tabs-nav'),
$tabsNavLis = $tabsNav.children('li'),
$tabsContainer = $('.alx-tabs-container');
$tabsNav.each(function() {
var $this = $(this);
$this.next().children('.alx-tab').stop(true,true).hide()
.siblings( $this.find('a').attr('href') ).show();
$this.children('li').first().addClass('active').stop(true,true).show();
});
$tabsNavLis.on('click', function(e) {
var $this = $(this);
$this.siblings().removeClass('active').end()
.addClass('active');
$this.parent().next().children('.alx-tab').stop(true,true).hide()
.siblings( $this.find('a').attr('href') ).fadeIn();
e.preventDefault();
}).children( window.location.hash ? 'a[href=' + window.location.hash + ']' : 'a:first' ).trigger('click');
})();
/* Comments / pingbacks tabs
/* ------------------------------------ */
$(".comment-tabs li").click(function() {
$(".comment-tabs li").removeClass('active');
$(this).addClass("active");
$(".comment-tab").hide();
var selected_tab = $(this).find("a").attr("href");
$(selected_tab).fadeIn();
return false;
});
/* Table odd row class
/* ------------------------------------ */
$('table tr:odd').addClass('alt');
/* Sidebar collapse
/* ------------------------------------ */
$('body').addClass('s1-collapse');
$('body').addClass('s2-collapse');
$('.s1 .sidebar-toggle').click(function(){
$('body').toggleClass('s1-collapse').toggleClass('s1-expand');
if ($('body').is('.s2-expand')) {
$('body').toggleClass('s2-expand').toggleClass('s2-collapse');
}
});
$('.s2 .sidebar-toggle').click(function(){
$('body').toggleClass('s2-collapse').toggleClass('s2-expand');
if ($('body').is('.s1-expand')) {
$('body').toggleClass('s1-expand').toggleClass('s1-collapse');
}
});
/* Dropdown menu animation
/* ------------------------------------ */
$('.nav ul.sub-menu').hide();
$('.nav li').hover(
function() {
$(this).children('ul.sub-menu').slideDown('fast');
},
function() {
$(this).children('ul.sub-menu').hide();
}
);
/* Dropdown menu animation
/* ------------------------------------ */
$('.dropdown-buttons ul.sub-menu').hide();
$('.dropdown-buttons li').hover(
function() {
$(this).children('ul.sub-menu').slideDown('fast');
},
function() {
$(this).children('ul.sub-menu').hide();
}
);
/* Fitvids
/* ------------------------------------ */
function responsiveVideo() {
if ( $().fitVids ) {
$('#wrapper').fitVids();
}
}
responsiveVideo();
/* Owl Carousel
/* ------------------------------------ */
$("#owl-featured").owlCarousel({
navigation : false,
items : 3,
itemsDesktop : [1024,2],
itemsDesktopSmall : [980,2],
itemsTablet: [768,3],
itemsTabletSmall: [568,2],
itemsMobile : [479,1],
});
/* Mobile menu smooth toggle height
/* ------------------------------------ */
$('.nav-toggle').on('click', function() {
slide($('.nav-wrap .nav', $(this).parent()));
});
function slide(content) {
var wrapper = content.parent();
var contentHeight = content.outerHeight(true);
var wrapperHeight = wrapper.height();
wrapper.toggleClass('expand');
if (wrapper.hasClass('expand')) {
setTimeout(function() {
wrapper.addClass('transition').css('height', contentHeight);
}, 10);
}
else {
setTimeout(function() {
wrapper.css('height', wrapperHeight);
setTimeout(function() {
wrapper.addClass('transition').css('height', 0);
}, 10);
}, 10);
}
wrapper.one('transitionEnd webkitTransitionEnd transitionend oTransitionEnd msTransitionEnd', function() {
if(wrapper.hasClass('open')) {
wrapper.removeClass('transition').css('height', 'auto');
}
});
}
});

69
js/sharrre.php Normal file
View file

@ -0,0 +1,69 @@
<?php
header('content-type: application/json');
//Sharrre by Julien Hany
$json = array('url'=>'','count'=>0);
$json['url'] = $_GET['url'];
$url = urlencode($_GET['url']);
$type = urlencode($_GET['type']);
if(filter_var($_GET['url'], FILTER_VALIDATE_URL)){
if($type == 'googlePlus'){ //source http://www.helmutgranda.com/2011/11/01/get-a-url-google-count-via-php/
$content = parse("https://plusone.google.com/u/0/_/+1/fastbutton?url=".$url."&count=true");
$dom = new DOMDocument;
$dom->preserveWhiteSpace = false;
@$dom->loadHTML($content);
$domxpath = new DOMXPath($dom);
$newDom = new DOMDocument;
$newDom->formatOutput = true;
$filtered = $domxpath->query("//div[@id='aggregateCount']");
if (isset($filtered->item(0)->nodeValue))
{
$json['count'] = str_replace('>', '', $filtered->item(0)->nodeValue);
}
}
else if($type == 'stumbleupon'){
$content = parse("http://www.stumbleupon.com/services/1.01/badge.getinfo?url=$url");
$result = json_decode($content);
if (isset($result->result->views))
{
$json['count'] = $result->result->views;
}
}
}
echo str_replace('\\/','/',json_encode($json));
function parse($encUrl){
$options = array(
CURLOPT_RETURNTRANSFER => true, // return web page
CURLOPT_HEADER => false, // don't return headers
CURLOPT_FOLLOWLOCATION => true, // follow redirects
CURLOPT_ENCODING => "", // handle all encodings
CURLOPT_USERAGENT => 'sharrre', // who am i
CURLOPT_AUTOREFERER => true, // set referer on redirect
CURLOPT_CONNECTTIMEOUT => 5, // timeout on connect
CURLOPT_TIMEOUT => 10, // timeout on response
CURLOPT_MAXREDIRS => 3, // stop after 10 redirects
CURLOPT_SSL_VERIFYHOST => 0,
CURLOPT_SSL_VERIFYPEER => false,
);
$ch = curl_init();
$options[CURLOPT_URL] = $encUrl;
curl_setopt_array($ch, $options);
$content = curl_exec($ch);
$err = curl_errno($ch);
$errmsg = curl_error($ch);
curl_close($ch);
if ($errmsg != '' || $err != '') {
/*print_r($errmsg);
print_r($errmsg);*/
}
return $content;
}

BIN
languages/en_US.mo Normal file

Binary file not shown.

195
languages/en_US.po Normal file
View file

@ -0,0 +1,195 @@
msgid ""
msgstr ""
"Project-Id-Version: Blogline\n"
"POT-Creation-Date: 2016-01-10 15:26+0100\n"
"PO-Revision-Date: 2016-01-10 15:26+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: English\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.5.7\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../404.php:14
msgid ""
"The page you are trying to reach does not exist, or has been moved. Please "
"use the menus or the search box to find what you are looking for."
msgstr ""
#: ../comments.php:7
msgid "No Responses"
msgstr ""
#: ../comments.php:7
msgid "1 Response"
msgstr ""
#: ../comments.php:7
msgid "% Responses"
msgstr ""
#: ../comments.php:10
msgid "Comments"
msgstr ""
#: ../comments.php:11
msgid "Pingbacks"
msgstr ""
#: ../content.php:26
msgid "Continue reading..."
msgstr ""
#: ../footer.php:76
msgid "All Rights Reserved."
msgstr ""
#: ../footer.php:82
msgid "Powered by"
msgstr ""
#: ../footer.php:82
msgid "Theme by"
msgstr ""
#: ../search.php:10
msgid "For the term"
msgstr ""
#: ../search.php:12
msgid "Please try another search:"
msgstr ""
#: ../searchform.php:3
msgid "To search type and hit enter"
msgstr ""
#: ../sidebar.php:9
msgid "Expand Sidebar"
msgstr ""
#: ../single.php:23
msgid "Pages:"
msgstr ""
#: ../single.php:32
msgid "Tags:"
msgstr ""
#: ../functions/widgets/alx-tabs.php:27
msgid "Recent Posts"
msgstr ""
#: ../functions/widgets/alx-tabs.php:28
msgid "Popular Posts"
msgstr ""
#: ../functions/widgets/alx-tabs.php:29
msgid "Recent Comments"
msgstr ""
#: ../functions/widgets/alx-tabs.php:30
msgid "Tags"
msgstr ""
#: ../functions/widgets/alx-tabs.php:187
msgid "says:"
msgstr ""
#: ../inc/page-title.php:24
msgid "Search result"
msgstr ""
#: ../inc/page-title.php:26
msgid "Search results"
msgstr ""
#: ../inc/page-title.php:32
msgid "Error 404."
msgstr ""
#: ../inc/page-title.php:32
msgid "Page not found!"
msgstr ""
#: ../inc/page-title.php:36
msgid "Author:"
msgstr ""
#: ../inc/page-title.php:39
msgid "Category:"
msgstr ""
#: ../inc/page-title.php:42
msgid "Tagged:"
msgstr ""
#: ../inc/page-title.php:45
msgid "Daily Archive:"
msgstr ""
#: ../inc/page-title.php:48
msgid "Monthly Archive:"
msgstr ""
#: ../inc/page-title.php:51
msgid "Yearly Archive:"
msgstr ""
#: ../inc/page-title.php:54 ../inc/page-title.php:56 ../inc/page-title.php:58
#: ../inc/page-title.php:60 ../inc/page-title.php:62 ../inc/page-title.php:64
#: ../inc/page-title.php:66 ../inc/page-title.php:68 ../inc/page-title.php:70
msgid "Type:"
msgstr ""
#: ../inc/page-title.php:54
msgid "Audio"
msgstr ""
#: ../inc/page-title.php:56
msgid "Aside"
msgstr ""
#: ../inc/page-title.php:58
msgid "Chat"
msgstr ""
#: ../inc/page-title.php:60
msgid "Gallery"
msgstr ""
#: ../inc/page-title.php:62
msgid "Image"
msgstr ""
#: ../inc/page-title.php:64
msgid "Link"
msgstr ""
#: ../inc/page-title.php:66
msgid "Quote"
msgstr ""
#: ../inc/page-title.php:68
msgid "Status"
msgstr ""
#: ../inc/page-title.php:70
msgid "Video"
msgstr ""
#: ../inc/post-nav.php:3
msgid "Next story"
msgstr ""
#: ../inc/post-nav.php:4
msgid "Previous story"
msgstr ""
#: ../inc/related-posts.php:6
msgid "You may also like..."
msgstr ""

621
license.txt Normal file
View file

@ -0,0 +1,621 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS

View file

@ -0,0 +1,635 @@
/* --------------------------------------------------
:: OptionTree Font
---------------------------------------------------*/
.ui-tabs li > a [class^="ot-icon-"],
.ui-tabs li > a [class*=" ot-icon-"] {
display: block;
height: 14px;
float: right;
padding: 2px 0px 0 9px;
}
/* --------------------------------------------------
:: Messages
---------------------------------------------------*/
.wrap.settings-wrap div.error,
.wrap.settings-wrap div.updated {
margin: 9px 2px 0px 5px !important;
}
/* --------------------------------------------------
:: OptionTree Wrappers
---------------------------------------------------*/
#option-tree-settings-api > .ui-tabs {
margin: 0px 2px 0 5px;
-webkit-box-shadow: inset -146px 0 0 #f1f1f1, inset -147px 0 0 #ccc, 0 1px 3px rgba(0,0,0,0.05);
-moz-box-shadow: inset -146px 0 0 #f1f1f1, inset -147px 0 0 #ccc, 0 1px 3px rgba(0,0,0,0.05);
box-shadow: inset -146px 0 0 #f1f1f1, inset -147px 0 0 #ccc, 0 1px 3px rgba(0,0,0,0.05);
}
/* --------------------------------------------------
:: Header
---------------------------------------------------*/
#option-tree-header {
margin: 11px 2px 0 5px;
}
#option-tree-header li {
float: right;
}
#option-tree-header #option-tree-logo a {
border-right: 0;
border-left: 1px solid #333;
float: right;
padding: 3px 13px 3px 12px;
}
#option-tree-header li#option-tree-logo:hover {
-webkit-border-top-right-radius: 2px;
-moz-border-radius-topright: 2px;
border-top-right-radius: 2px;
}
#option-tree-header #option-tree-version span,
#option-tree-header #theme-version span {
border-left: 0;
border-right: 1px solid #555;
float: left;
}
#option-tree-header #theme-version:before {
border-right: 0;
border-left: 1px solid #333;
float: right;
}
/* light */
.admin-color-light #option-tree-header #option-tree-logo a,
.admin-color-light #option-tree-header #theme-version:before {
border-left-color: #3c3c3c;
}
.admin-color-light #option-tree-header li#option-tree-logo:hover a {
border-left-color: #3c3c3c;
}
.admin-color-light #option-tree-header #option-tree-version span,
.admin-color-light #option-tree-header #theme-version span {
border-right-color: #999;
}
/* blue */
.admin-color-blue #option-tree-header #option-tree-logo a,
.admin-color-blue #option-tree-header #theme-version:before {
border-left-color: #002b39;
}
.admin-color-blue #option-tree-header li#option-tree-logo:hover a {
border-left-color: #002b39;
}
.admin-color-blue #option-tree-header #option-tree-version span,
.admin-color-blue #option-tree-header #theme-version span {
border-right-color: #5dc2e6;
}
/* coffee */
.admin-color-coffee #option-tree-header #option-tree-logo a,
.admin-color-coffee #option-tree-header #theme-version:before {
border-left-color: #0f0e0d;
}
.admin-color-coffee #option-tree-header li#option-tree-logo:hover a {
border-left-color: #0f0e0d;
}
.admin-color-coffee #option-tree-header #option-tree-version span,
.admin-color-coffee #option-tree-header #theme-version span {
border-right-color: #675f58;
}
/* ectoplasm */
.admin-color-ectoplasm #option-tree-header #option-tree-logo a,
.admin-color-ectoplasm #option-tree-header #theme-version:before {
border-left-color: #181220;
}
.admin-color-ectoplasm #option-tree-header li#option-tree-logo:hover a {
border-left-color: #181220;
}
.admin-color-ectoplasm #option-tree-header #option-tree-version span,
.admin-color-ectoplasm #option-tree-header #theme-version span {
border-right-color: #644d85;
}
/* midnight */
.admin-color-midnight #option-tree-header #option-tree-logo a,
.admin-color-midnight #option-tree-header #theme-version:before {
border-left-color: #090a0b;
}
.admin-color-midnight #option-tree-header li#option-tree-logo:hover a {
border-left-color: #090a0b;
}
.admin-color-midnight #option-tree-header #option-tree-version span,
.admin-color-midnight #option-tree-header #theme-version span {
border-right-color: #4c5359;
}
/* ocean */
.admin-color-ocean #option-tree-header #option-tree-logo a,
.admin-color-ocean #option-tree-header #theme-version:before {
border-left-color: #39464a;
}
.admin-color-ocean #option-tree-header li#option-tree-logo:hover a {
border-left-color: #39464a;
}
.admin-color-ocean #option-tree-header #option-tree-version span,
.admin-color-ocean #option-tree-header #theme-version span {
border-right-color: #87a6af;
}
/* sunrise */
.admin-color-sunrise #option-tree-header #option-tree-logo a,
.admin-color-sunrise #option-tree-header #theme-version:before {
border-left-color: #8a322a;
}
.admin-color-sunrise #option-tree-header li#option-tree-logo:hover a {
border-left-color: #8a322a;
}
.admin-color-sunrise #option-tree-header #option-tree-version span,
.admin-color-sunrise #option-tree-header #theme-version span {
border-right-color: #e75546;
}
/* --------------------------------------------------
:: Sub Header
---------------------------------------------------*/
#option-tree-sub-header {
margin: 0 2px 0 5px;
}
/* --------------------------------------------------
:: Tabs
---------------------------------------------------*/
.wrap.settings-wrap .ui-tabs-nav {
float: right;
margin: 0 -4px 0 0;
}
.wrap.settings-wrap .ui-tabs-nav li {
border-left-width: 0;
border-right-width: 1px;
-webkit-border-radius: 0 2px 2px 0;
-moz-border-radius: 0 2px 2px 0;
border-radius: 0 2px 2px 0;
}
.wrap.settings-wrap .ui-tabs-nav li a {
padding: 5px 12px 5px 5px;
}
/* --------------------------------------------------
:: Format Setting
---------------------------------------------------*/
.format-setting .format-setting-inner {
float: right;
}
.format-setting .description {
float: left;
}
#post .format-setting-inner p {
float: right;
}
.docs-ul li {
margin-left: 0;
margin-right: 20px;
}
#contextual-help-setting {
float: right;
}
#contextual-help-label {
float: right;
}
#option_tree_settings_help {
float: right;
}
#option-tree-settings-api blockquote {
padding-left: 0;
padding-right: 15px;
}
#option-tree-settings-api blockquote:before {
left: auto;
right: -10px;
top: 10px;
}
/* --------------------------------------------------
:: Input & Upload
---------------------------------------------------*/
input.option-tree-ui-upload-input,
input.option-tree-ui-input {
-moz-box-shadow: inset -1px 1px 1px rgba(0, 0, 0, 0.05);
-webkit-box-shadow: inset -1px 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset -1px 1px 1px rgba(0, 0, 0, 0.05);
}
.option-tree-sortable input.option-tree-ui-upload-input,
.option-tree-sortable input.option-tree-ui-input {
width: 99.9%; /* fixes a strange bug with input with */
}
/* --------------------------------------------------
:: Upload
---------------------------------------------------*/
div.option-tree-ui-media-wrap {
margin: 5px 0 0 55px;
}
.option-tree-ui-media-wrap img {
float: right;
}
.option-tree-ui-upload-parent {
margin-right: 0;
margin-left: 45px;
}
.format-setting .ot_upload_media {
right: auto;
left: -45px;
}
.option-tree-ui-media-wrap a.option-tree-ui-remove-media {
right: auto;
left: -55px;
}
/* --------------------------------------------------
:: Setting Item with Drag & Drop
---------------------------------------------------*/
.option-tree-setting .open {
padding: 10px 10px 10px 100px;
}
.option-tree-setting .open:hover:before {
left: auto;
right: 4px;
}
.button-section {
right: auto;
left: 0px;
}
/* --------------------------------------------------
:: Layouts
---------------------------------------------------*/
#option-tree-options-layouts-form {
left: auto;
right: 13px;
}
.option-tree-save-layout {
float: right;
}
.option-tree-save-layout.active-layout {
border-left: 0;
border-right: 1px solid #fff;
padding-left: 0;
padding-right: 9px;
}
.option-tree-save-layout .widefat {
float: right;
}
.option-tree-save-layout button.blue {
margin: 0 10px 0 0;
}
.option-tree-active-layout {
border-right: 0;
border-left: 1px solid #ccc;
float: right;
padding: 10px 0 10px 10px;
}
.button.save-layout {
margin: 0 10px 0 0 !important;
}
/* --------------------------------------------------
:: Option Group
---------------------------------------------------*/
.ot-option-group {
float: right;
padding-right: 0px;
padding-left: 5px;
}
.ot-option-group--is-last {
padding-left: 0;
}
.ot-option-group--icon {
border-left: 1px solid #ccc;
border-right: 0px;
left: auto;
right: 1px;
}
.ot-option-group--icon + input.option-tree-ui-input {
padding-left: 5px !important;
padding-right: 34px !important;
margin-left: 5px;
margin-right: 0px;
}
.ot-option-group--checkbox {
float: right;
padding-right: 0px;
padding-left: 10px;
}
#post-body .ot-option-group--checkbox p {
float: right;
}
/* --------------------------------------------------
:: Select
---------------------------------------------------*/
.select-wrapper {
background: #fff url(../images/ot-select-rtl.png) no-repeat left center;
float: right;
margin: 0 0 5px 5px;
-moz-box-shadow: inset -1px 1px 1px rgba(0, 0, 0, 0.05);
-webkit-box-shadow: inset -1px 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset -1px 1px 1px rgba(0, 0, 0, 0.05);
}
.select-wrapper:hover {
background-image: url(../images/ot-select-hover-rtl.png);
}
.select-wrapper span {
padding-left: 27px;
padding-right: 7px;
}
.type-measurement .select-wrapper {
margin-left: 0;
right: auto;
left: 0px;
}
/* FireFox */
@-moz-document url-prefix() {
#option-tree-options-layouts-form .select-wrapper {
left: auto;
right: 250px;
};
}
/* --------------------------------------------------
:: Measurement
---------------------------------------------------*/
.option-tree-ui-measurement-input-wrap {
margin-right: 0;
margin-left: 80px;
}
/* --------------------------------------------------
:: Checkbox & Radio
---------------------------------------------------*/
.format-setting.type-checkbox input,
.format-setting.type-radio input {
float: right;
margin: 2px 1px 0 5px;
}
.format-setting.type-checkbox label,
.format-setting.type-radio label {
float: right;
}
#option-tree-settings-api .format-setting.type-checkbox p,
#option-tree-settings-api .format-setting.type-radio p {
float: right;
}
/* --------------------------------------------------
:: Radio Images
---------------------------------------------------*/
.type-radio-image .option-tree-ui-radio-images {
float: right;
margin: 0 0px 10px 10px;
}
/* --------------------------------------------------
:: Numeric Slider
---------------------------------------------------*/
.ot-numeric-slider-wrap {
margin: 0 0 0 96px;
}
.ot-numeric-slider-wrap .ot-numeric-slider-helper-input {
right: auto;
left: 5px;
}
.ot-numeric-slider.ui-slider {
-webkit-box-shadow: inset -1px 1px 1px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset -1px 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset -1px 1px 1px rgba(0, 0, 0, 0.05);
}
/* --------------------------------------------------
:: Colorpicker
---------------------------------------------------*/
.option-tree-ui-colorpicker-input-wrap {
float: right;
}
.option-tree-ui-colorpicker-input-wrap .option-tree-ui-colorpicker-label {
margin-left: 10px;
margin-right: 0px;
}
.type-link-color .option-tree-ui-colorpicker-input-wrap {
margin-left: 20px;
margin-right: 0px;
}
.option-tree-ui-colorpicker-input-wrap .wp-color-result {
margin: 0px 0px 5px 5px;
}
.option-tree-ui-colorpicker-input-wrap .wp-picker-container .iris-picker {
margin: 0px 0px 5px 5px;
}
/* --------------------------------------------------
:: Google Font
---------------------------------------------------*/
.js-remove-google-font.option-tree-ui-button.button {
margin-left: 5px;
margin-right: 0;
margin-top: 0;
}
/* --------------------------------------------------
:: OptionTree UI Buttons
---------------------------------------------------*/
.option-tree-ui-button {
float: right !important;
}
.option-tree-ui-button.right {
float: left !important;
}
.option-tree-ui-button.hug-left {
margin-right: 0px;
}
.option-tree-ui-button.hug-right {
margin-left: 0px;
}
.option-tree-ui-button.left-item {
float: right !important;
margin: 5px 5px 5px 0;
-webkit-border-radius: 0px 2px 2px 0px;
-moz-border-radius: 0px 2px 2px 0px;
border-radius: 0px 2px 2px 0px;
}
.option-tree-ui-button.center-item {
margin: 5px -1px 5px 0;
}
.option-tree-ui-button.right-item {
float: left !important;
margin: 5px -1px 5px 5px;
-webkit-border-radius: 2px 0px 0px 2px;
-moz-border-radius: 2px 0px 0px 2px;
border-radius: 2px 0px 0px 2px;
}
.option-tree-ui-buttons {
margin: 11px 2px 0 5px;
}
button.reset-settings {
left: auto;
right: 8px;
}
/* --------------------------------------------------
:: OptionTree UI Button Icons
---------------------------------------------------*/
.option-tree-ui-button .icon {
float: right;
text-indent: 0;
}
.option-tree-ui-button .icon.left-label {
margin-left: 10px;
float: left;
}
/* --------------------------------------------------
:: Gallery
---------------------------------------------------*/
ul.ot-gallery-list {
float: right;
}
ul.ot-gallery-list li {
float: right;
margin: 0px 0 10px 10px;
}
.ot-gallery-buttons {
float: right;
}
/* --------------------------------------------------
:: Google Fonts
---------------------------------------------------*/
.option-tree-google-font-family,
.option-tree-google-font-variants,
.option-tree-google-font-subsets,
#option-tree-settings-api p.checkbox-wrap,
#post-body .ot-metabox-panels p.checkbox-wrap {
float: right;
}
/* --------------------------------------------------
:: On/Off Switch
---------------------------------------------------*/
@media only screen {
.on-off-switch {
-webkit-box-shadow: inset -1px 1px 1px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset -1px 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset -1px 1px 1px rgba(0, 0, 0, 0.05);
}
.on-off-switch label {
float: right;
}
.on-off-switch .slide-button {
left: auto;
right: -1px;
}
.on-off-switch input:last-of-type:checked ~ .slide-button {
left: auto;
right: 50%;
}
}
/* --------------------------------------------------
:: Date Picker
---------------------------------------------------*/
.ui-datepicker {
direction: rtl;
}
.ui-datepicker .ui-widget-header {
left: auto;
right: -1px;
}
.ui-datepicker-prev:before {
border-right: 0px;
border-left: 1px solid #555;
content: "\f105";
float: left;
width: 31px;
height: 30px;
}
.ui-datepicker-prev {
border-right: 0px;
border-left: 1px solid #333;
float: right;
width: 31px;
}
.ui-datepicker-next:before {
border-left: 0px;
border-right: 1px solid #333;
content: "\f104";
float: right;
width: 30px;
height: 30px;
}
.ui-datepicker-next {
border-left: 0px;
border-right: 1px solid #555;
float: left;
width: 30px;
}
.ui-datepicker thead th:last-child {
border-left: 1px solid #ccc;
}
.ui-datepicker tbody td {
border-left: 1px solid #ccc;
}
.ui-datepicker tbody td:first-child {
border-left: 0px;
}
.ui-datepicker .ui-datepicker-buttonpane button {
float: left;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
float: right;
}
@-moz-document url-prefix() {
.ui-datepicker-calendar {
position: relative;
right: -1px;
}
.ui-datepicker-calendar thead {
border-right: 1px solid #ccc;
}
}
/* --------------------------------------------------
:: Time Picker
---------------------------------------------------*/
.ui-timepicker-div {
direction: rtl;
}
.ui-timepicker-div dl {
text-align: right;
padding: 0 5px 0 0;
}
.ui-timepicker-div dl dt {
float: right;
clear: right;
}
.ui-timepicker-div dl dd {
margin: 0 45% 10px 10px;
}
/* --------------------------------------------------
:: Meta Box Tabs
---------------------------------------------------*/
.ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav {
float: right;
margin: 0 0 0 -1px;
}
.ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav li {
border-width: 1px 1px 1px 0px;
-webkit-border-radius: 0 0 2px 2px;
-moz-border-radius: 0 0 2px 2px;
border-radius: 0 0 2px 2px;
}
.ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav li a {
padding: 5px 12px 5px 5px;
}
/* --------------------------------------------------
:: Theme Option & Side Metabox Tabs
---------------------------------------------------*/
.ot-theme-option-tabs.ui-tabs .ot-theme-option-nav.ui-tabs-nav li.ui-state-default,
#side-sortables .ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav li.ui-state-default {
float: right;
margin: 0 3px 0 0 !important;
}

File diff suppressed because it is too large Load diff

Some files were not shown because too many files have changed in this diff Show more