Compare commits

..

No commits in common. "main" and "underscores" have entirely different histories.

87 changed files with 10047 additions and 13978 deletions

3
.gitignore vendored
View File

@ -25,7 +25,6 @@ node_modules/
# ignore local personal files
*.geany
.vscode/
.DS_Store
theme/
_gitignore*

View File

@ -1,6 +1,6 @@
[![Build Status](https://travis-ci.org/Automattic/_s.svg?branch=master)](https://travis-ci.org/Automattic/_s)
_s for oficina de suport
_s
===
Hi. I'm a starter theme called `_s`, or `underscores`, if you like. I'm a theme meant for hacking so don't use me as a Parent Theme. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -1,106 +0,0 @@
<?php
/**
* The template for displaying archive custom post type ajut
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Oficina_de_Suport_theme
*/
get_header();
?>
<main id="primary" class="site-main">
<section id="filteredfunds" class="ofisuport-filtered-funds ofisuport-ajuts-filtrats">
<aside id="fundsfilter" class="ofisuport-filter-funds ofisuport-fitre-ajuts">
<div id="arhive-filters" class="ofisuport-filters">
<?php
// output all possible values of a checkbox
$groupkey = "group_63ab636898703"; // write here the key for the group of fields from acf
if( $groupkey){
//echo '<h6>check the groupkey <span style="color: #00b">' . $groupkey . '</span></h6>';
$groupkey_fields = acf_get_fields($groupkey);
foreach( $groupkey_fields as $field_key ) {
if( $field_key['type'] == 'checkbox' ){
//echo '<span style="color: #00b">' . ($field_key['key']) . '</span><br/>';
//echo '<span style="color: #00b">' . ($field_key['label']) . '</span><br/>';
//echo '<span style="color: #00b">' . ($field_key['name']) . '</span><br/>';
// https://wordpress.stackexchange.com/a/102915
//$field_key = "field_XXXXXX";// the acf field key unic numbers
$field_key = $field_key['key'];
$fields = get_field_object($field_key);
if( $fields )
{
// check for values in url
foreach( $GLOBALS['my_query_filters'] as $key => $fieldname ):
// set value if available
if( isset($_GET[ $fieldname ]) ) {
$filteredvalues['value'] = explode(',', $_GET[ $fieldname ]);
};
// construct the checkboxes
if( $fieldname == $fields['name']) {
echo '<nav id="fund-filter" class="ofisuport-filter ' . $fields['name'] . '">' ;
echo '<h5>' . $fields['label'] . '</h5>';
echo '<ul>';
foreach( $fields['choices'] as $choicevalue => $choicelabel ) {
echo '<li>';
echo '<input type="checkbox" ';
echo ' value="' . $choicevalue . '" ';
if( in_array($choicevalue,$filteredvalues['value']) ):
echo ' checked="checked" ';
endif;
echo ' />';
echo $choicelabel;
echo '</li>';
}
echo '</ul>';
echo '</nav>';
};
// end of construct checkboxes
endforeach;
// end check for values in url
}
};//end if type checkbox
};//end foreach groupkey field
};//end if groupkey
?>
<?php //endforeach; ?>
</div>
</aside>
<content class="archive-posts <?php ofisuport_class_posttype(); ?>">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post();
get_template_part( 'template-parts/section', 'eachpost' );
endwhile;
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</content>
</section>
</main><!-- #main -->
<?php
get_footer();

View File

@ -15,8 +15,12 @@ get_header();
<?php if ( have_posts() ) : ?>
<header class="page-header">
<?php
the_archive_title( '<h1 class="page-title">', '</h1>' );
the_archive_description( '<div class="archive-description">', '</div>' );
?>
</header><!-- .page-header -->
<content class="archive-posts <?php ofisuport_class_posttype(); ?>">
<?php
/* Start the Loop */
while ( have_posts() ) :
@ -31,10 +35,10 @@ get_header();
endwhile;
echo '</content>';//end content ajuts
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif;

File diff suppressed because one or more lines are too long

View File

@ -1,235 +0,0 @@
body {
background:#fff;
min-width:0;
color:#111;
font-family:"din-light",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
font-size:0.9em;
line-height:1.4;
}
a {
color:#444;
font-family:"din-light",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
transition-property:border,background,color;
transition-duration:.05s;
transition-timing-function:ease-in-out
}
a:active,
a:hover {
color:#111;
}
a:focus {
color:#222;
box-shadow: none;
}
p {
line-height:1.5;
}
.login #login_error,
.login .message,
.login .success {
border-left:4px solid #333;
padding:12px;
margin-left:0;
margin-bottom:20px;
background-color:#fff;
box-shadow:none;
}
.login .success {
border-left-color:#69ed82;
}
.login #login_error {
border-left-color:#ff686e;
}
#loginform p.submit,
.login-action-lostpassword p.submit {
border:none;
}
.login * {
}
.login .input::-ms-clear {
}
.login .pw-weak {
}
.login .button.wp-hide-pw {
}
.login .button.wp-hide-pw:hover {
}
.login .button.wp-hide-pw:focus {
border-color:#333;
box-shadow:none;
outline:none;
}
.login .button.wp-hide-pw:active {
}
.login .button.wp-hide-pw .dashicons {
}
.login .wp-pwd {
}
.no-js .hide-if-no-js {
}
.login form {
background:#fff;
border:none;
box-shadow: none;
}
.login form.shake {
}
@keyframes shake {
}
@media (prefers-reduced-motion:reduce) {
.login form.shake {
animation:none;
transform:none
}
}
.login-action-confirm_admin_email #login {
}
@media screen and (max-width:782px) {
.login-action-confirm_admin_email #login {
}
}
.login form .forgetmenot {
}
.login .button-primary {
}
.login .reset-pass-submit {
}
.login .reset-pass-submit .button {
}
.login .admin-email-confirm-form .submit {
}
.admin-email__later {
}
.login form p.admin-email__details {
}
.login h1.admin-email__heading {
border-bottom: none;
color:#333;
}
.admin-email__actions div {
}
.login .admin-email__actions .button-primary {
}
#login form p {
}
#login form p.submit {
}
.login label {
}
.login .forgetmenot label,
.login .pw-weak label {
}
.login h1 {
}
.login h1 a {
background-size:auto;
background-position:center top;
background-repeat:no-repeat;
color:#3c434a;
height:84px;
font-size:20px;
font-weight:400;
line-height:1.3;
margin:0 auto 25px;
padding:0;
text-decoration:none;
width:100%;
text-indent:-9999px;
outline:0;
overflow:hidden;
display:block
}
#login {
}
.login #backtoblog,
.login #nav {
}
.login #nav {
}
#backtoblog {
}
.login #backtoblog a,
.login #nav a {
color:#333;
}
.login #backtoblog a:hover,
.login #nav a:hover,
.login h1 a:hover {
color:#111;
}
.login #backtoblog a:focus,
.login #nav a:focus,
.login h1 a:focus {
color:#222;
}
.login .privacy-policy-page-link {
}
.login form .input,
.login input[type=password],
.login input[type=text] {
}
.login input.password-input {
font-family:Consolas,Monaco,monospace
}
.js.login input.password-input,
.js.login-action-rp form .input,
.js.login-action-rp input[type=text] {
}
.login form .input,
.login form input[type=checkbox],
.login input[type=text] {
background:#fff;
}
.js.login-action-rp input[type=password],
.js.login-action-rp input[type=text] {
}
.login #pass-strength-result {
}
body.interim-login {
}
.interim-login #login {
}
.interim-login.login h1 a {
}
.interim-login #login_error,
.interim-login.login .message {
}
.interim-login.login form {
}
.screen-reader-text,
.screen-reader-text span {
}
input::-ms-reveal {
}
#language-switcher {
}
#language-switcher select {
}
.language-switcher {
}
.language-switcher label {
}
.language-switcher label .dashicons {
}
.login .language-switcher .button-primary {
}
@media screen and (max-height:550px) {
#login {
}
#language-switcher {
}
}
@media screen and (max-width:782px) {
.interim-login input[type=checkbox] {
}
.interim-login input[type=checkbox]:checked:before {
}
#language-switcher label,
#language-switcher select {
}
}
@media screen and (max-width:400px) {
.login .language-switcher .button-primary {
}
}

Binary file not shown.

View File

@ -1,619 +0,0 @@
<?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" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<metadata>
Created by FontForge 20170731 at Fri Jan 1 02:30:17 1904
By Aleksey,,,
</metadata>
<defs>
<font id="DIN-Black" horiz-adv-x="1139" >
<font-face
font-family="DIN Black"
font-weight="900"
font-stretch="normal"
units-per-em="2048"
panose-1="2 2 5 0 0 0 0 0 0 0"
ascent="1638"
descent="-410"
x-height="1102"
cap-height="1458"
bbox="-250 -410 2425 2112"
underline-thickness="108"
underline-position="-294"
unicode-range="U+0020-2219"
/>
<missing-glyph horiz-adv-x="1536"
d="M256 0v1280h1024v-1280h-1024zM1247 33v1214h-958v-1214h958z" />
<glyph glyph-name=".notdef" horiz-adv-x="1536"
d="M256 0v1280h1024v-1280h-1024zM1247 33v1214h-958v-1214h958z" />
<glyph glyph-name=".null" horiz-adv-x="0"
/>
<glyph glyph-name="nonmarkingreturn" horiz-adv-x="0"
/>
<glyph glyph-name="space" unicode=" " horiz-adv-x="455"
/>
<glyph glyph-name="exclam" unicode="!" horiz-adv-x="750"
d="M627 1458l-90 -973h-242l-90 973h422zM588 0h-344v330h344v-330z" />
<glyph glyph-name="quotedbl" unicode="&#x22;" horiz-adv-x="999"
d="M883 979h-301v479h301v-479zM418 979h-301v479h301v-479z" />
<glyph glyph-name="numbersign" unicode="#" horiz-adv-x="1460"
d="M1364 844h-170l-27 -180h119v-318h-170l-55 -346h-356l55 346h-185l-55 -346h-356l55 346h-119v318h170l27 180h-119v317h170l49 314h357l-49 -314h184l49 314h356l-49 -314h119v-317zM838 844h-185l-26 -180h184z" />
<glyph glyph-name="dollar" unicode="$" horiz-adv-x="1296"
d="M1208 446q0 -185 -121 -300.5t-317 -147.5v-231h-258v221q-161 5 -282.5 48.5t-219.5 143.5l230 230q98 -99 313 -103v271l-80 10q-191 24 -293 129q-100 103 -100 293q0 116 52 215t150 161t230 78v187h258v-183q259 -15 416 -172l-225 -225q-74 74 -232 84v-256l84 -12
q192 -28 287 -121q57 -55 82.5 -133.5t25.5 -186.5zM553 911v242q-64 -11 -95.5 -48t-31.5 -83q0 -39 29 -68q34 -34 98 -43zM856 438q0 58 -29 86q-28 31 -98 39v-250q127 25 127 125z" />
<glyph glyph-name="percent" unicode="%" horiz-adv-x="1755"
d="M1663 272q0 -93 -42 -157t-113 -95.5t-154 -31.5t-154 31t-113.5 95.5t-42.5 157.5v195q0 94 42.5 158.5t113.5 95.5t154 31t154 -31.5t113 -95.5t42 -158v-195zM1354 1458l-695 -1458h-258l695 1458h258zM711 991q0 -93 -42.5 -157.5t-113.5 -95.5t-154 -31
q-82 0 -153 31t-113.5 95.5t-42.5 157.5v195q0 93 42.5 157.5t113.5 95.5t153 31q83 0 154 -31t113.5 -95.5t42.5 -157.5v-195zM1425 281v178q0 80 -71 80q-72 0 -72 -80v-178q0 -80 72 -80q71 0 71 80zM473 999v179q0 79 -72 79q-71 0 -71 -79v-179q0 -79 71 -79
q72 0 72 79z" />
<glyph glyph-name="ampersand" unicode="&#x26;" horiz-adv-x="1454"
d="M1454 0h-422l-92 106q-83 -60 -150 -89t-196 -29q-250 0 -372 118t-122 336q0 114 67.5 207t164.5 158q-39 44 -66.5 82t-49 94.5t-21.5 124.5q0 82 28 148.5t82.5 114.5t134.5 73.5t183 25.5q97 0 172 -26t128 -75t80 -116t27 -149q0 -80 -35.5 -137.5t-107.5 -112.5
q-7 -6 -24 -18.5t-35 -26.5t-44 -31l172 -198q28 32 45.5 92t22.5 119h315q-22 -295 -170 -457zM715 1102q0 38 -23 62t-69 24q-93 0 -93 -88q0 -19 14 -42t29.5 -40.5t34.5 -36.5q4 2 23 15.5t26 19.5q58 40 58 86zM737 344l-227 260q-48 -32 -67 -69.5t-19 -90.5
q0 -66 51 -109.5t119 -43.5q52 0 82 13t61 40z" />
<glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="537"
d="M420 979h-303v479h303v-479z" />
<glyph glyph-name="parenleft" unicode="(" horiz-adv-x="733"
d="M633 33l-225 -226q-90 90 -128.5 132.5t-72.5 99.5q-60 100 -60 295v790q0 195 60 295q36 61 73.5 101.5t127.5 130.5l225 -226q-54 -54 -71 -72t-46 -65q-33 -58 -33 -176v-766q0 -118 33 -176q18 -29 35 -50.5t38.5 -43z" />
<glyph glyph-name="parenright" unicode=")" horiz-adv-x="733"
d="M586 334q0 -96 -11.5 -165.5t-48.5 -129.5q-30 -53 -73 -100.5t-127 -131.5l-226 226q23 22 44 43t36 39.5t37 54.5q33 55 33 176v766q0 121 -33 176q-25 43 -47.5 67.5t-69.5 69.5l226 226q84 -84 125.5 -129.5t74.5 -102.5q37 -60 48.5 -129.5t11.5 -165.5v-790z" />
<glyph glyph-name="asterisk" unicode="*" horiz-adv-x="1036"
d="M940 928l-115 -199l-202 131l10 -242h-230l11 242l-203 -131l-115 199l215 110l-215 111l115 199l203 -131l-11 241h230l-10 -241l202 131l115 -199l-215 -111z" />
<glyph glyph-name="plus" unicode="+"
d="M1038 422h-311v-311h-315v311h-312v315h312v312h315v-312h311v-315z" />
<glyph glyph-name="comma" unicode="," horiz-adv-x="590"
d="M473 -102l-356 -263v721h356v-458z" />
<glyph glyph-name="hyphen" unicode="-" horiz-adv-x="872"
d="M772 446h-672v316h672v-316z" />
<glyph glyph-name="period" unicode="." horiz-adv-x="602"
d="M485 0h-368v369h368v-369z" />
<glyph glyph-name="slash" unicode="/" horiz-adv-x="883"
d="M895 1610l-584 -1762h-311l584 1762h311z" />
<glyph glyph-name="zero" unicode="0"
d="M1038 442q0 -109 -38 -195.5t-103.5 -143t-151 -86t-176.5 -29.5q-123 0 -231 52t-173 154.5t-65 247.5v574q0 111 38.5 195.5t105 143t150 87t175.5 28.5q94 0 177.5 -28.5t150 -86.5t104 -143t37.5 -196v-574zM702 440v576q0 74 -38 112.5t-95 38.5t-95 -39.5
t-38 -111.5v-576q0 -71 38 -110t95 -39t95 38t38 111z" />
<glyph glyph-name="one" unicode="1"
d="M831 0h-335v1100l-312 -271v359l312 270h335v-1458z" />
<glyph glyph-name="two" unicode="2"
d="M1047 0h-938v303l528 574q41 44 57.5 77t16.5 78q0 62 -34 98.5t-97 36.5q-56 0 -96 -32t-40 -109h-335q0 137 63 238t170 153.5t238 52.5q136 0 241.5 -53t165.5 -153.5t60 -233.5q0 -107 -41 -180.5t-140 -177.5l-348 -369h529v-303z" />
<glyph glyph-name="three" unicode="3"
d="M1057 436q0 -217 -139.5 -332.5t-346.5 -115.5q-127 0 -237 47.5t-179 151t-69 257.5h336q0 -74 42 -113.5t107 -39.5q68 0 109 39t41 116q0 68 -44 111t-112 43h-47v291h47q47 0 78.5 19.5t46.5 50.5t15 67q0 66 -39 102.5t-95 36.5t-94.5 -37t-38.5 -100h-336
q0 102 35.5 183.5t100.5 139t149.5 87.5t183.5 30q134 0 240.5 -55t167.5 -154.5t61 -222.5q0 -188 -151 -284q75 -52 121.5 -125.5t46.5 -192.5z" />
<glyph glyph-name="four" unicode="4"
d="M1085 193h-108v-193h-320v193h-604v319l484 946h368l-483 -946h235v193h320v-193h108v-319z" />
<glyph glyph-name="five" unicode="5"
d="M1049 498q0 -92 -11.5 -157t-41 -119.5t-83.5 -108.5q-51 -53 -137.5 -89t-200.5 -36q-112 0 -202 36.5t-144 90.5q-68 68 -92.5 143.5t-34.5 185.5h336q18 -153 137 -153q58 0 95 37q43 43 43 170q0 113 -35 160t-103 47q-64 0 -91 -28t-46 -77h-309v858h889v-303h-584
v-225q28 21 83 39t114 18q90 0 163.5 -28t118.5 -74q82 -81 109 -172.5t27 -214.5z" />
<glyph glyph-name="six" unicode="6"
d="M1049 457q0 -147 -65.5 -254.5t-177 -161t-243.5 -53.5t-243.5 53.5t-176.5 161t-65 254.5q0 48 11.5 103.5t33 112t50 115.5t44.5 93l281 577h368l-288 -571q28 10 81 10q71 0 139.5 -29t125.5 -85.5t91 -138.5t34 -187zM713 457q0 78 -42 122t-108 44q-64 0 -106.5 -44
t-42.5 -122t42 -122t107 -44t107.5 44t42.5 122z" />
<glyph glyph-name="seven" unicode="7"
d="M1069 1155l-455 -1155h-368l454 1155h-311v-229h-319v532h999v-303z" />
<glyph glyph-name="eight" unicode="8"
d="M1059 436q0 -147 -65 -247.5t-176.5 -150.5t-248.5 -50t-248 50t-176 150.5t-65 247.5q0 118 48 189.5t116 124.5q-65 57 -107.5 121.5t-42.5 166.5q0 101 38.5 183t105 137.5t152.5 83.5t179 28q95 0 181 -28.5t151.5 -83.5t104 -137t38.5 -183q0 -104 -43.5 -170
t-105.5 -118q68 -53 116 -124.5t48 -189.5zM709 1028q0 60 -40.5 99.5t-99.5 39.5q-58 0 -98.5 -40.5t-40.5 -98.5t40.5 -98.5t98.5 -40.5q59 0 99.5 39.5t40.5 99.5zM723 444q0 40 -21 76t-57 57t-76 21q-63 0 -108 -45t-45 -109q0 -63 45 -108t108 -45q64 0 109 45t45 108
z" />
<glyph glyph-name="nine" unicode="9"
d="M1061 1001q0 -98 -34.5 -189.5t-104.5 -233.5l-281 -578h-369l289 571q-29 -10 -82 -10q-66 0 -136 29t-127 85.5t-91.5 139t-34.5 186.5q0 147 65 254.5t176.5 161t243.5 53.5t244 -53.5t177 -161t65 -254.5zM725 1001q0 78 -42 122t-108 44q-64 0 -106.5 -44
t-42.5 -122q0 -77 42 -121t107 -44t107.5 44t42.5 121z" />
<glyph glyph-name="colon" unicode=":" horiz-adv-x="649"
d="M532 518h-368v369h368v-369zM532 0h-368v369h368v-369z" />
<glyph glyph-name="semicolon" unicode=";" horiz-adv-x="649"
d="M532 518h-368v369h368v-369zM526 -102l-356 -263v721h356v-458z" />
<glyph glyph-name="less" unicode="&#x3c;" horiz-adv-x="2103"
d="M2005 446h-1339l622 -614h-420l-772 772l772 772h420l-622 -614h1339v-316z" />
<glyph glyph-name="equal" unicode="="
d="M1038 696h-938v316h938v-316zM1038 197h-938v315h938v-315z" />
<glyph glyph-name="greater" unicode="&#x3e;" horiz-adv-x="2103"
d="M2007 604l-772 -772h-420l623 614h-1342v316h1342l-623 614h420z" />
<glyph glyph-name="question" unicode="?" horiz-adv-x="1102"
d="M1040 1040q0 -127 -104 -262l-141 -178q-17 -20 -27 -47t-10 -49v-19h-336v47q0 69 19 122t65 106l143 168q56 63 56 114q0 57 -31 91t-92 34q-62 0 -92.5 -35t-30.5 -94h-336q0 103 36.5 184.5t98 135.5t145 83t179.5 29q193 0 325.5 -113t132.5 -317zM762 0h-344v330
h344v-330z" />
<glyph glyph-name="at" unicode="@" horiz-adv-x="1606"
d="M1505 -8l-309 8v82q-47 -47 -100.5 -70.5t-130.5 -23.5q-154 0 -246 90q-64 61 -81 143t-17 242q0 159 17 241t81 144q93 90 244 90q134 0 223 -84v53q0 130 -66 195q-65 65 -194 65h-246q-129 0 -195 -65q-40 -41 -52.5 -86.5t-12.5 -108.5v-536q0 -63 16 -98.5
t58 -77.5l-232 -232q-64 66 -96 115.5t-49 116t-17 155.5v570q0 96 11.5 170t39.5 135.5t80 113.5q39 39 85 64.5t98 40.5t107.5 20.5t135.5 5.5h291q147 0 250 -28.5t176 -102.5q74 -72 102.5 -170t28.5 -249v-928zM1186 463q0 108 -29.5 152t-93.5 44t-93.5 -44
t-29.5 -152q0 -107 29.5 -152t93.5 -45t93.5 45t29.5 152z" />
<glyph glyph-name="A" unicode="A" horiz-adv-x="1337"
d="M1337 0h-374l-68 217h-449l-71 -217h-375l530 1458h277zM801 516l-123 389l-131 -389h254z" />
<glyph glyph-name="B" unicode="B" horiz-adv-x="1337"
d="M1237 430q0 -103 -34 -183t-95 -135t-146 -83.5t-180 -28.5h-635v1458h605q148 0 253 -52.5t158.5 -148t53.5 -221.5q0 -106 -52 -178.5t-108 -109.5q72 -43 126 -113.5t54 -204.5zM858 1018q0 49 -30.5 84t-98.5 35h-223v-238h223q66 0 97.5 35t31.5 84zM879 451
q0 53 -31 90t-100 37h-242v-256h242q68 0 99.5 38t31.5 91z" />
<glyph glyph-name="C" unicode="C" horiz-adv-x="1247"
d="M1206 463q-19 -116 -68.5 -207.5t-123 -150.5t-165.5 -88t-196 -29q-243 0 -405 164q-96 96 -122 218t-26 310v49v49q0 188 26 310.5t122 218.5q82 82 180 122.5t225 40.5q109 0 200 -29.5t163 -88t121.5 -149t68.5 -208.5h-364q-19 71 -61.5 113.5t-125.5 42.5
q-46 0 -82.5 -17t-58.5 -44q-19 -24 -30.5 -57.5t-18 -102t-6.5 -201.5q0 -177 13 -248.5t42 -111.5q48 -62 141 -62q81 0 124.5 42.5t62.5 113.5h364z" />
<glyph glyph-name="D" unicode="D" horiz-adv-x="1333"
d="M1233 729v-119q0 -106 -9.5 -180.5t-42.5 -147t-100 -139.5q-143 -143 -393 -143h-541v1458h541q250 0 393 -143q67 -67 100 -139.5t42.5 -147t9.5 -180.5v-119zM874 729q0 180 -7.5 237.5t-30.5 90.5q-55 82 -172 82h-158v-820h158q117 0 172 82q17 26 23.5 51.5
t10.5 87.5t4 189z" />
<glyph glyph-name="E" unicode="E" horiz-adv-x="1245"
d="M1139 0h-992v1458h992v-319h-633v-244h541v-320h-541v-256h633v-319z" />
<glyph glyph-name="F" unicode="F" horiz-adv-x="1221"
d="M1139 1139h-633v-256h541v-320h-541v-563h-359v1458h992v-319z" />
<glyph glyph-name="G" unicode="G" horiz-adv-x="1325"
d="M1225 637q0 -180 -32.5 -291t-115.5 -194q-59 -60 -126.5 -97t-140.5 -52t-157 -15q-243 0 -405 164q-96 96 -122 218t-26 310v49v49q0 188 26 310.5t122 218.5q83 83 179 123t226 40q260 0 400.5 -139t169.5 -344h-361q-22 86 -70 125t-139 39q-92 0 -141 -64
q-18 -23 -29.5 -56.5t-17.5 -103t-6 -198.5t6 -199t17.5 -104t29.5 -57q48 -62 141 -62q105 0 160 58q55 55 55 155v21h-215v299h572v-203z" />
<glyph glyph-name="H" unicode="H" horiz-adv-x="1393"
d="M1245 0h-358v578h-381v-578h-359v1458h359v-561h381v561h358v-1458z" />
<glyph glyph-name="I" unicode="I" horiz-adv-x="653"
d="M506 0h-359v1458h359v-1458z" />
<glyph glyph-name="J" unicode="J" horiz-adv-x="1057"
d="M930 500q0 -165 -77.5 -281t-203 -173.5t-268.5 -57.5q-83 0 -152.5 15.5t-126.5 49t-118 94.5l235 234q43 -41 74.5 -57.5t87.5 -16.5q86 0 138 50.5t52 150.5v950h359v-958z" />
<glyph glyph-name="K" unicode="K" horiz-adv-x="1378"
d="M1378 0h-417l-336 598l-123 -141v-457h-355v1458h355v-516l422 516h438l-498 -590z" />
<glyph glyph-name="L" unicode="L" horiz-adv-x="1180"
d="M1118 0h-971v1458h359v-1139h612v-319z" />
<glyph glyph-name="M" unicode="M" horiz-adv-x="1655"
d="M1507 0h-358v698l-207 -360h-229l-207 360v-698h-359v1458h353l327 -643l328 643h352v-1458z" />
<glyph glyph-name="N" unicode="N" horiz-adv-x="1434"
d="M1286 0h-313l-467 733v-733h-359v1458h314l467 -733v733h358v-1458z" />
<glyph glyph-name="O" unicode="O" horiz-adv-x="1311"
d="M1210 729v-49q0 -122 -8.5 -210t-40.5 -170t-98 -148q-81 -81 -178.5 -122.5t-229.5 -41.5q-89 0 -160.5 18.5t-132 54.5t-114.5 91q-96 96 -122 218t-26 310v49v49q0 188 26 310.5t122 218.5q83 83 179.5 123t227.5 40q132 0 229 -40.5t179 -122.5q66 -66 98 -148.5
t40.5 -170.5t8.5 -210v-49zM852 729q0 186 -12.5 254t-40.5 104q-20 28 -58.5 46t-85.5 18q-46 0 -83 -17.5t-60 -46.5q-18 -23 -29.5 -56.5t-17.5 -103t-6 -198.5q0 -128 6 -197.5t17.5 -102.5t29.5 -56q51 -66 143 -66q93 0 144 66q28 39 40.5 104.5t12.5 251.5z" />
<glyph glyph-name="P" unicode="P" horiz-adv-x="1284"
d="M1223 989q0 -123 -58.5 -230t-170.5 -173t-269 -66h-219v-520h-359v1458h578q157 0 269 -65.5t170.5 -172.5t58.5 -231zM864 989q0 39 -18.5 73t-54 54.5t-82.5 20.5h-203v-295h203q47 0 82.5 20.5t54 54t18.5 72.5z" />
<glyph glyph-name="Q" unicode="Q" horiz-adv-x="1311"
d="M1233 125l-182 -182l-113 112q-116 -67 -283 -67q-89 0 -160.5 18.5t-132 54.5t-114.5 91q-96 96 -122 218t-26 310v49v49q0 188 26 310.5t122 218.5q83 83 179.5 123t227.5 40q132 0 229 -40.5t179 -122.5q66 -66 98 -148.5t40.5 -170.5t8.5 -210v-49q0 -120 -4 -197
t-22 -155.5t-58 -145.5zM852 729q0 186 -12.5 254t-40.5 104q-20 28 -58.5 46t-85.5 18q-46 0 -83 -17.5t-60 -46.5q-18 -23 -29.5 -56.5t-17.5 -103t-6 -198.5q0 -128 6 -197.5t17.5 -102.5t29.5 -56q51 -66 143 -66q19 0 29 2l-92 92l182 183l70 -70q8 98 8 215z" />
<glyph glyph-name="R" unicode="R" horiz-adv-x="1335"
d="M1300 0h-415l-258 543h-121v-543h-359v1458h578q157 0 269 -65.5t170.5 -172.5t58.5 -231q0 -137 -69.5 -234.5t-168.5 -146.5zM864 989q0 39 -18.5 73t-54 54.5t-82.5 20.5h-203v-295h203q47 0 82.5 20.5t54 54t18.5 72.5z" />
<glyph glyph-name="S" unicode="S" horiz-adv-x="1214"
d="M1126 446q0 -143 -75.5 -247t-204 -157.5t-283.5 -53.5q-181 0 -315 43t-238 149l230 230q54 -54 142 -78.5t183 -24.5q209 0 209 131q0 56 -29 86t-96 39l-176 25q-194 27 -293 129q-100 103 -100 293q0 133 64.5 237.5t185 163.5t282.5 59q161 0 281.5 -41.5
t210.5 -132.5l-225 -225q-56 56 -121 71t-156 15q-86 0 -131 -41t-45 -94q0 -39 29 -68q34 -34 100 -43l176 -24q192 -28 287 -121q57 -55 82.5 -133.5t25.5 -186.5z" />
<glyph glyph-name="T" unicode="T" horiz-adv-x="1198"
d="M1137 1139h-359v-1139h-358v1139h-359v319h1076v-319z" />
<glyph glyph-name="U" unicode="U" horiz-adv-x="1352"
d="M1229 512q0 -115 -43 -213t-120 -168t-178 -106.5t-214 -36.5q-149 0 -276.5 65t-201 184.5t-73.5 274.5v946h358v-938q0 -100 51.5 -156.5t141.5 -56.5q58 0 103 25t69 73t24 115v938h359v-946z" />
<glyph glyph-name="V" unicode="V" horiz-adv-x="1231"
d="M1231 1458l-483 -1458h-267l-481 1458h371l245 -815l242 815h373z" />
<glyph glyph-name="W" unicode="W" horiz-adv-x="1855"
d="M1855 1458l-399 -1458h-293l-235 719l-236 -719h-291l-401 1458h375l190 -770l236 770h254l235 -770l191 770h374z" />
<glyph glyph-name="X" unicode="X" horiz-adv-x="1298"
d="M1298 0h-409l-240 449l-239 -449h-410l455 748l-426 710h407l213 -411l213 411h408l-426 -710z" />
<glyph glyph-name="Y" unicode="Y" horiz-adv-x="1239"
d="M1239 1458l-440 -864v-594h-359v594l-440 864h391l230 -524l227 524h391z" />
<glyph glyph-name="Z" unicode="Z" horiz-adv-x="1112"
d="M1051 0h-990v279l560 860h-535v319h965v-278l-562 -861h562v-319z" />
<glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="852"
d="M770 -152h-623v1762h623v-303h-287v-1155h287v-304z" />
<glyph glyph-name="backslash" unicode="\" horiz-adv-x="883"
d="M883 -152h-312l-571 1725h311z" />
<glyph glyph-name="bracketright" unicode="]" horiz-adv-x="852"
d="M705 -152h-623v304h287v1155h-287v303h623v-1762z" />
<glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="1311"
d="M1194 768h-354l-185 338l-184 -338h-354l383 707h311z" />
<glyph glyph-name="underscore" unicode="_" horiz-adv-x="1311"
d="M1311 -381h-1311v221h1311v-221z" />
<glyph glyph-name="grave" unicode="`" horiz-adv-x="1024"
d="M631 1249h-203l-242 369h344z" />
<glyph glyph-name="a" unicode="a" horiz-adv-x="1098"
d="M989 0h-327v90q-55 -53 -108 -76.5t-138 -23.5q-166 0 -264 98q-97 97 -97 258q0 88 40 160t124.5 116t210.5 44h223v28q0 76 -38.5 106.5t-127.5 30.5q-62 0 -98.5 -16t-77.5 -57l-209 209q86 85 173.5 116t228.5 31q238 0 361.5 -99.5t123.5 -299.5v-715zM653 414v28
h-170q-48 0 -77 -24t-29 -64q0 -39 29 -65.5t81 -26.5q49 0 78 7.5t56 33.5q32 31 32 111z" />
<glyph glyph-name="b" unicode="b" horiz-adv-x="1165"
d="M1077 551v-51q0 -147 -18 -246.5t-84 -165.5q-102 -100 -268 -100q-82 0 -140.5 24t-113.5 78v-90h-326v1458h336v-436q47 47 106.5 69.5t139.5 22.5q164 0 266 -100q66 -66 84 -165.5t18 -246.5v-51zM741 551q0 87 -9.5 143.5t-39 86.5t-90.5 30q-86 0 -112.5 -62
t-26.5 -198q0 -87 9.5 -143.5t39 -86.5t90.5 -30t90.5 30t39 86.5t9.5 143.5z" />
<glyph glyph-name="c" unicode="c" horiz-adv-x="973"
d="M936 129q-44 -44 -100.5 -76.5t-123.5 -48.5t-139 -16q-117 0 -227.5 45t-189 172t-78.5 346t78.5 346t189 172t227.5 45q112 0 203 -36t160 -105l-227 -228q-66 66 -136 66q-61 0 -104 -43q-55 -58 -55 -217t55 -217q43 -43 104 -43q71 0 136 65z" />
<glyph glyph-name="d" unicode="d" horiz-adv-x="1165"
d="M1038 0h-325v90q-55 -53 -113 -77.5t-141 -24.5q-167 0 -269 100q-64 64 -83 164.5t-19 247.5v51v51q0 147 19 247.5t83 164.5q31 31 74.5 54t91 34.5t101.5 11.5q153 0 245 -92v436h336v-1458zM702 551q0 87 -9.5 143.5t-39 86.5t-90.5 30q-86 0 -112.5 -62t-26.5 -198
q0 -87 9.5 -143.5t39 -86.5t90.5 -30t90.5 30t39 86.5t9.5 143.5z" />
<glyph glyph-name="e" unicode="e" horiz-adv-x="1145"
d="M1067 442h-659q0 -72 52.5 -122t141.5 -50q84 0 131.5 22t95.5 70l201 -200q-91 -91 -185 -132.5t-243 -41.5q-524 0 -524 563q0 265 136.5 414t356.5 149q155 0 267.5 -69t170.5 -187t58 -266v-150zM735 666q0 49 -18 86q-16 37 -53.5 61.5t-92.5 24.5t-92.5 -24.5
t-52.5 -61.5q-18 -37 -18 -86h327z" />
<glyph glyph-name="f" unicode="f" horiz-adv-x="733"
d="M682 801h-184v-801h-336v801h-101v258h101v96q0 80 36.5 155.5t113.5 123t192 47.5h178v-283h-117q-67 0 -67 -68v-71h184v-258z" />
<glyph glyph-name="g" unicode="g" horiz-adv-x="1149"
d="M1022 80q0 -96 -35 -179t-101 -143.5t-159.5 -93.5t-202.5 -33q-93 0 -164 13t-133.5 44.5t-115.5 86.5l208 209q37 -37 84.5 -53.5t104.5 -16.5q95 0 136.5 50.5t41.5 117.5v80q-91 -92 -237 -92q-161 0 -259 98q-48 48 -70 106.5t-27 125.5t-5 192q0 96 2.5 147
t12.5 104.5t30 94.5t57 78q46 46 114.5 72t146.5 26q81 0 138 -25t107 -77v90h326v-1022zM686 592q0 68 -8 114t-37 75.5t-86 29.5t-86 -29.5t-37 -75t-8 -114.5q0 -68 8 -114t37 -75.5t86 -29.5t86 29.5t37 75t8 114.5z" />
<glyph glyph-name="h" unicode="h" horiz-adv-x="1174"
d="M1057 0h-336v668q0 79 -41.5 111t-87.5 32t-87.5 -33t-41.5 -110v-668h-336v1458h336v-446q50 50 113.5 76t128.5 26q115 0 194 -51.5t118.5 -143.5t39.5 -204v-715z" />
<glyph glyph-name="i" unicode="i" horiz-adv-x="590"
d="M463 1214h-336v256h336v-256zM463 0h-336v1059h336v-1059z" />
<glyph glyph-name="j" unicode="j" horiz-adv-x="590"
d="M463 1214h-336v256h336v-256zM463 -43q0 -130 -86.5 -228t-255.5 -98h-178v283h116q68 0 68 68v1077h336v-1102z" />
<glyph glyph-name="k" unicode="k" horiz-adv-x="1174"
d="M1174 0h-416l-230 403l-65 -71v-332h-336v1458h336v-741l297 385h403l-405 -457z" />
<glyph glyph-name="l" unicode="l" horiz-adv-x="698"
d="M637 0h-178q-115 0 -192 47.5t-113.5 123t-36.5 155.5v1132h336v-1108q0 -67 67 -67h117v-283z" />
<glyph glyph-name="m" unicode="m" horiz-adv-x="1792"
d="M1675 0h-336v659q0 85 -43.5 118.5t-91.5 33.5t-91.5 -34t-43.5 -118v-659h-336v659q0 85 -43.5 118.5t-91.5 33.5t-91.5 -34t-43.5 -118v-659h-336v1102h328v-90q48 48 118.5 75t137.5 27q165 0 268 -117q71 62 143 89.5t168 27.5q79 0 150.5 -25t113.5 -69
q67 -66 94 -142.5t27 -172.5v-705z" />
<glyph glyph-name="n" unicode="n" horiz-adv-x="1186"
d="M1069 0h-336v659q0 85 -43.5 118.5t-91.5 33.5t-91.5 -34t-43.5 -118v-659h-336v1102h328v-90q48 48 118.5 75t137.5 27q153 0 247 -94q65 -63 88 -139t23 -176v-705z" />
<glyph glyph-name="o" unicode="o" horiz-adv-x="1126"
d="M1038 551q0 -163 -26 -255.5t-94 -166.5q-133 -141 -355 -141q-223 0 -354 141q-45 48 -72 105t-38 130.5t-11 186.5q0 112 11 185.5t38 130t72 106.5q58 61 145 101t209 40t209.5 -39.5t145.5 -101.5q68 -74 94 -167t26 -255zM702 551q0 96 -9.5 148.5t-39.5 80.5
q-30 31 -90 31q-59 0 -90 -31q-30 -30 -39.5 -85.5t-9.5 -143.5t9.5 -142.5t39.5 -86.5q31 -31 90 -31q60 0 90 30.5t39.5 82t9.5 147.5z" />
<glyph glyph-name="p" unicode="p" horiz-adv-x="1165"
d="M1077 551v-51q0 -147 -18 -246.5t-84 -165.5q-102 -100 -266 -100q-155 0 -246 92v-436h-336v1458h326v-90q102 102 254 102q166 0 268 -100q66 -66 84 -165.5t18 -246.5v-51zM741 551q0 87 -9.5 143.5t-39 86.5t-90.5 30q-86 0 -112.5 -62t-26.5 -198q0 -87 9.5 -143.5
t39 -86.5t90.5 -30t90.5 30t39 86.5t9.5 143.5z" />
<glyph glyph-name="q" unicode="q" horiz-adv-x="1165"
d="M1038 -356h-336v436q-91 -92 -245 -92q-80 0 -149.5 27t-117.5 73q-64 64 -83 164.5t-19 247.5v51v51q0 147 19 247.5t83 164.5q102 100 269 100q83 0 142.5 -25t111.5 -77v90h325v-1458zM702 551q0 87 -9.5 143.5t-39 86.5t-90.5 30q-86 0 -112.5 -62t-26.5 -198
q0 -87 9.5 -143.5t39 -86.5t90.5 -30t90.5 30t39 86.5t9.5 143.5z" />
<glyph glyph-name="r" unicode="r" horiz-adv-x="973"
d="M973 1012l-254 -258q-28 28 -54 42.5t-67 14.5q-47 0 -91 -34.5t-44 -117.5v-659h-336v1102h328v-90q42 42 110.5 72t149.5 30q82 0 142 -23t116 -79z" />
<glyph glyph-name="s" unicode="s" horiz-adv-x="1032"
d="M977 360q0 -125 -64 -208.5t-172 -123.5t-241 -40q-102 0 -177.5 9.5t-153 43.5t-149.5 106l218 218q92 -93 268 -93q49 0 96 17t47 55q0 63 -80 70l-170 16q-96 9 -168.5 44.5t-111.5 103t-39 172.5q0 87 36.5 157t97.5 115t139.5 68.5t164.5 23.5q147 0 252 -29
t182 -106l-207 -207q-66 66 -233 66q-55 0 -82 -20t-27 -44q0 -53 72 -61l170 -17q113 -10 187 -55.5t109.5 -117.5t35.5 -163z" />
<glyph glyph-name="t" unicode="t" horiz-adv-x="743"
d="M662 0h-168q-115 0 -192 47.5t-113.5 123t-36.5 155.5v475h-101v258h101v315h335v-315h175v-258h-175v-451q0 -67 68 -67h107v-283z" />
<glyph glyph-name="u" unicode="u" horiz-adv-x="1186"
d="M1059 0h-328v90q-49 -49 -119 -75.5t-137 -26.5q-152 0 -248 94q-64 64 -87 139.5t-23 175.5v705h336v-660q0 -83 43.5 -117t91.5 -34t91.5 33.5t43.5 117.5v660h336v-1102z" />
<glyph glyph-name="v" unicode="v" horiz-adv-x="1067"
d="M1067 1102l-405 -1102h-256l-406 1102h352l183 -572l180 572h352z" />
<glyph glyph-name="w" unicode="w" horiz-adv-x="1597"
d="M1597 1102l-331 -1102h-269l-198 604l-199 -604h-268l-332 1102h354l138 -572l190 572h233l191 -572l137 572h354z" />
<glyph glyph-name="x" unicode="x"
d="M1139 0h-404l-168 279l-164 -279h-403l383 563l-369 539h404l149 -266l154 266h403l-368 -539z" />
<glyph glyph-name="y" unicode="y" horiz-adv-x="1053"
d="M1069 1102l-457 -1233q-32 -92 -86 -145q-86 -93 -247 -93h-127v303h71q47 0 72 17t41 65l31 93l-367 993h352l187 -572l178 572h352z" />
<glyph glyph-name="z" unicode="z" horiz-adv-x="1001"
d="M920 0h-859v248l420 551h-395v303h834v-248l-428 -551h428v-303z" />
<glyph glyph-name="braceleft" unicode="{" horiz-adv-x="1061"
d="M979 -152h-287q-157 0 -243 86q-99 99 -99 240v244q0 88 -35 123q-37 37 -114 37h-119v303h119q78 0 114 37q35 34 35 122v244q0 141 99 240q41 41 102.5 63.5t140.5 22.5h287v-303h-143q-88 0 -117 -29q-33 -33 -33 -131v-213q0 -166 -149 -205q149 -39 149 -205v-213
q0 -98 33 -131q28 -28 117 -28h143v-304z" />
<glyph glyph-name="bar" unicode="|" horiz-adv-x="745"
d="M541 -152h-336v1762h336v-1762z" />
<glyph glyph-name="braceright" unicode="}" horiz-adv-x="1061"
d="M979 578h-119q-76 0 -115 -37q-34 -35 -34 -123v-244q0 -141 -99 -240q-86 -86 -243 -86h-287v304h143q88 0 117 28q33 33 33 131v213q0 167 149 205q-149 38 -149 205v213q0 98 -33 131q-30 29 -117 29h-143v303h287q81 0 142.5 -23t100.5 -63q99 -99 99 -240v-244
q0 -88 34 -122q37 -37 115 -37h119v-303z" />
<glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="1323"
d="M1262 580q-68 -68 -128 -111.5t-121.5 -64.5t-133.5 -21q-46 0 -87.5 6t-80 21t-84.5 43q-90 51 -172 51q-50 0 -90 -16.5t-91 -67.5l-213 213q104 104 189.5 150t189.5 46q75 0 130 -14.5t122 -54.5q87 -51 172 -51q47 0 89 16.5t91 67.5z" />
<glyph glyph-name="nonbreakingspace" unicode="&#xa0;" horiz-adv-x="455"
/>
<glyph glyph-name="exclamdown" unicode="&#xa1;" horiz-adv-x="750"
d="M506 772h-344v330h344v-330zM545 -356h-422l90 972h242z" />
<glyph glyph-name="cent" unicode="&#xa2;" horiz-adv-x="1022"
d="M985 356q-122 -121 -268 -155v-201h-258v201q-169 39 -275 178t-106 371q0 233 106.5 372t274.5 176v160h258v-160q146 -34 268 -155l-219 -219q-55 53 -90 67v-483q35 14 90 67zM500 512v475q-20 -15 -25 -20q-61 -64 -61 -217q0 -151 59 -215q14 -16 27 -23z" />
<glyph glyph-name="sterling" unicode="&#xa3;" horiz-adv-x="1223"
d="M1141 0h-946v569h-123v258h123v131q0 165 77.5 281t202.5 173.5t268 57.5q130 0 221 -36t177 -123l-236 -234q-35 37 -70.5 55.5t-91.5 18.5q-87 0 -138.5 -50t-51.5 -151v-123h190v-258h-190v-250h588v-319z" />
<glyph glyph-name="currency" unicode="&#xa4;" horiz-adv-x="1380"
d="M1284 233l-223 -223l-150 150q-110 -54 -221 -54q-110 0 -221 54l-150 -150l-223 223l150 150q-53 109 -53 221q0 113 53 221l-150 150l223 223l150 -149q113 53 221 53q110 0 221 -53l150 149l223 -223l-149 -150q53 -111 53 -221q0 -108 -53 -221zM885 604
q0 79 -58 137t-137 58q-78 0 -136 -58t-58 -137q0 -78 58 -136t136 -58q79 0 137 58t58 136z" />
<glyph glyph-name="yen" unicode="&#xa5;" horiz-adv-x="1239"
d="M1239 1458l-256 -504h123v-258h-256l-51 -102v-102h307v-259h-307v-233h-359v233h-307v259h307v102l-51 102h-256v258h123l-256 504h391l230 -524l227 524h391z" />
<glyph glyph-name="brokenbar" unicode="&#xa6;" horiz-adv-x="745"
d="M541 893h-336v717h336v-717zM541 -152h-336v717h336v-717z" />
<glyph glyph-name="section" unicode="&#xa7;" horiz-adv-x="1057"
d="M973 584q0 -49 -16.5 -96t-42 -82.5t-55.5 -64.5t-52 -44q66 -39 105.5 -103t39.5 -174q0 -129 -61 -217.5t-157.5 -130t-203.5 -41.5q-79 0 -152 20t-135 66t-98 120.5t-36 176.5h319q0 -36 27.5 -63t74.5 -27q49 0 76 25t27 59q0 74 -121 119l-111 41
q-110 41 -175.5 86.5t-99.5 119t-34 185.5q0 96 54 172t116 115q-61 39 -98 98t-37 160q0 94 41.5 176.5t133.5 136t233 53.5q142 0 233 -50t132.5 -133.5t41.5 -186.5h-311q0 44 -27 65t-69 21q-48 0 -72.5 -21.5t-24.5 -50.5q0 -58 115 -98l111 -41q166 -62 237.5 -143.5
t71.5 -247.5zM653 571q0 75 -41 109q-31 27 -80 27q-47 0 -79 -27q-41 -34 -41 -109q0 -74 41 -108q31 -27 79 -27t80 27q41 34 41 108z" />
<glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="1024"
d="M881 1247h-275v297h275v-297zM418 1247h-275v297h275v-297z" />
<glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="1683"
d="M1583 729q0 -149 -58 -286t-159 -238t-238 -159t-286 -58t-285.5 57.5t-238.5 159t-160 238.5t-58 286t58 286t160 238.5t238.5 159t285.5 57.5t286 -58t238 -159t159 -238t58 -286zM1372 729q0 118 -39.5 218.5t-111 173t-169 112t-210.5 39.5q-149 0 -271 -69
t-191 -192.5t-69 -281.5q0 -156 69.5 -280.5t191 -193.5t270.5 -69t270.5 69t190.5 193.5t69 280.5zM1130 442q-38 -33 -79 -56.5t-90 -36.5t-101 -13q-153 0 -262 100.5t-109 292.5q0 130 52.5 219.5t137 131.5t181.5 42q147 0 270 -106l-137 -137q-33 29 -63.5 42
t-69.5 13q-73 0 -116.5 -53t-43.5 -152t43.5 -152t116.5 -53q39 0 68 13t65 43z" />
<glyph glyph-name="ordfeminine" unicode="&#xaa;" horiz-adv-x="936"
d="M834 580h-263v71q-41 -41 -85 -60.5t-111 -19.5q-129 0 -209 80q-78 78 -78 205q0 69 32.5 127.5t100 93.5t166.5 35h178v23q0 58 -31.5 84t-101.5 26q-50 0 -78 -13t-61 -46l-168 168q66 66 136 91t185 25q129 0 214.5 -35t129.5 -106t44 -178v-571zM565 909v25h-135
q-38 0 -60 -19.5t-22 -50.5q0 -30 22.5 -50.5t61.5 -20.5q43 0 66.5 6.5t40.5 23.5q26 27 26 86z" />
<glyph glyph-name="guillemotleft" unicode="&#xab;" horiz-adv-x="1376"
d="M1253 18l-559 555l559 553v-395l-166 -158l166 -159v-396zM621 18l-560 555l560 553v-395l-162 -158l162 -159v-396z" />
<glyph glyph-name="logicalnot" unicode="&#xac;"
d="M1051 180h-316v307h-647v316h963v-623z" />
<glyph glyph-name="minus" unicode="&#xad;"
d="M1038 446h-938v316h938v-316z" />
<glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="1683"
d="M1583 729q0 -149 -58 -286t-159 -238t-238 -159t-286 -58t-285.5 57.5t-238.5 159t-160 238.5t-58 286t58 286t160 238.5t238.5 159t285.5 57.5t286 -58t238 -159t159 -238t58 -286zM1372 729q0 118 -39.5 218.5t-111 173t-169 112t-210.5 39.5q-149 0 -271 -69
t-191 -192.5t-69 -281.5q0 -156 69.5 -280.5t191 -193.5t270.5 -69t270.5 69t190.5 193.5t69 280.5zM1188 342h-240l-117 289h-63v-289h-211v774h346q80 0 141 -35t92 -92t31 -123q0 -70 -36.5 -122.5t-88.5 -77.5zM956 866q0 33 -21.5 55.5t-60.5 22.5h-106v-156h106
q39 0 60.5 22.5t21.5 55.5z" />
<glyph glyph-name="macron" unicode="&#xaf;" horiz-adv-x="1024"
d="M846 1309h-668v215h668v-215z" />
<glyph glyph-name="degree" unicode="&#xb0;" horiz-adv-x="995"
d="M899 1094q0 -108 -54 -201t-147 -147t-200 -54q-83 0 -154 30.5t-129 88.5t-88.5 129t-30.5 154q0 107 54 200t147 147t201 54q83 0 156 -31t128 -86t86 -128t31 -156zM631 1094q0 55 -39 94t-94 39t-94 -39t-39 -94t39 -94t94 -39t94 39t39 94z" />
<glyph glyph-name="plusminus" unicode="&#xb1;"
d="M1038 760h-311v-311h-315v311h-312v315h312v311h315v-311h311v-315zM1038 0h-938v315h938v-315z" />
<glyph glyph-name="twosuperior" unicode="&#xb2;" horiz-adv-x="752"
d="M670 584h-588v213l309 315q27 27 36 42.5t9 39.5q0 27 -16 43t-43 16q-58 0 -58 -61h-237q0 89 40 150.5t107 92.5t148 31q129 0 211 -72.5t82 -199.5q0 -68 -28 -116t-93 -111l-178 -170h299v-213z" />
<glyph glyph-name="threesuperior" unicode="&#xb3;" horiz-adv-x="768"
d="M686 852q0 -91 -41.5 -153.5t-112 -93t-149.5 -30.5q-77 0 -146.5 29.5t-112 94.5t-42.5 163h235q0 -74 66 -74q31 0 48.5 18.5t17.5 53.5q0 27 -19.5 48.5t-48.5 21.5h-33v203h33q30 0 45.5 19.5t15.5 39.5q0 30 -16.5 45.5t-40.5 15.5t-40.5 -16.5t-16.5 -46.5h-238
q0 81 39.5 145t107.5 97.5t148 33.5q126 0 209.5 -74.5t83.5 -191.5q0 -63 -22.5 -99t-59.5 -65q39 -35 64.5 -76.5t25.5 -107.5z" />
<glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="1024"
d="M838 1618l-242 -369h-203l101 369h344z" />
<glyph glyph-name="mu" unicode="&#xb5;" horiz-adv-x="1196"
d="M1069 0h-328v90q-49 -49 -119 -75.5t-137 -26.5h-22v-344h-336v1458h336v-660q0 -83 43.5 -117t91.5 -34t91.5 33.5t43.5 117.5v660h336v-1102z" />
<glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="1448"
d="M1300 -356h-335v1495h-185v-1495h-336v966q-90 0 -180.5 55.5t-146.5 152t-56 212.5q0 144 63 240t173.5 142t257.5 46h745v-1814z" />
<glyph glyph-name="cedilla" unicode="&#xb8;" horiz-adv-x="1024"
d="M682 -115l-74 -295h-299l137 295h236z" />
<glyph glyph-name="onesuperior" unicode="&#xb9;" horiz-adv-x="637"
d="M504 584h-238v608l-194 -168v266l194 168h238v-874z" />
<glyph glyph-name="ordmasculine" unicode="&#xba;" horiz-adv-x="954"
d="M858 1020q0 -130 -21 -203.5t-77 -134.5q-30 -32 -69 -56.5t-92.5 -40.5t-121.5 -16q-177 0 -282 113q-38 41 -59 85.5t-30.5 105.5t-9.5 147q0 84 9.5 145.5t30.5 106.5t59 86q104 112 282 112q98 0 169 -32t114 -80q56 -61 77 -134.5t21 -203.5zM588 1020q0 74 -8 118
t-31 66q-25 25 -72 25t-71 -25q-23 -23 -31 -66.5t-8 -117.5t8 -117.5t31 -66.5q24 -25 71 -25t72 25q23 22 31 66t8 118z" />
<glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="1376"
d="M1315 573l-559 -555v396l162 159l-162 158v395zM682 573l-559 -555v396l164 159l-164 158v395z" />
<glyph glyph-name="onequarter" unicode="&#xbc;" horiz-adv-x="1784"
d="M1702 109h-53v-109h-224v109h-366v225l282 540h261l-285 -540h108v76h224v-76h53v-225zM1350 1458l-695 -1458h-258l695 1458h258zM504 584h-238v608l-194 -168v266l194 168h238v-874z" />
<glyph glyph-name="onehalf" unicode="&#xbd;" horiz-adv-x="1851"
d="M1769 0h-587v213l309 315q27 27 36 43.5t9 38.5q0 27 -15.5 43.5t-43.5 16.5q-58 0 -58 -62h-237q0 88 40 150.5t107 93.5t148 31q129 0 210.5 -73.5t81.5 -199.5q0 -68 -27.5 -115.5t-92.5 -111.5l-179 -170h299v-213zM1350 1458l-695 -1458h-258l695 1458h258zM504 584
h-238v608l-194 -168v266l194 168h238v-874z" />
<glyph glyph-name="threequarters" unicode="&#xbe;" horiz-adv-x="1825"
d="M1743 109h-53v-109h-224v109h-366v225l282 540h260l-284 -540h108v76h224v-76h53v-225zM1391 1458l-695 -1458h-258l695 1458h258zM686 852q0 -91 -41.5 -153.5t-112 -93t-149.5 -30.5q-77 0 -146.5 29.5t-112 94.5t-42.5 163h235q0 -74 66 -74q31 0 48.5 18.5t17.5 53.5
q0 27 -19.5 48.5t-48.5 21.5h-33v203h33q30 0 45.5 19.5t15.5 39.5q0 30 -16.5 45.5t-40.5 15.5t-40.5 -16.5t-16.5 -46.5h-238q0 81 39.5 145t107.5 97.5t148 33.5q126 0 209.5 -74.5t83.5 -191.5q0 -63 -22.5 -99t-59.5 -65q39 -35 64.5 -76.5t25.5 -107.5z" />
<glyph glyph-name="questiondown" unicode="&#xbf;" horiz-adv-x="1102"
d="M684 772h-344v330h344v-330zM979 63q0 -134 -61.5 -232t-166.5 -149t-231 -51q-92 0 -175 28.5t-147 82.5t-100.5 135.5t-36.5 183.5q0 74 27 134.5t78 128.5l141 178q37 43 37 96v18h336v-47q0 -68 -19 -121t-65 -106l-143 -168q-56 -63 -56 -115q0 -57 32 -91t91 -34
q62 0 92.5 35t30.5 94h336z" />
<glyph glyph-name="Agrave" unicode="&#xc0;" horiz-adv-x="1337"
d="M1337 0h-374l-68 217h-449l-71 -217h-375l530 1458h277zM801 516l-123 389l-131 -389h254zM787 1601h-203l-242 369h344z" />
<glyph glyph-name="Aacute" unicode="&#xc1;" horiz-adv-x="1337"
d="M1337 0h-374l-68 217h-449l-71 -217h-375l530 1458h277zM801 516l-123 389l-131 -389h254zM994 1970l-242 -369h-203l101 369h344z" />
<glyph glyph-name="Acircumflex" unicode="&#xc2;" horiz-adv-x="1337"
d="M1337 0h-374l-68 217h-449l-71 -217h-375l530 1458h277zM801 516l-123 389l-131 -389h254zM1076 1601h-246l-162 170l-162 -170h-246l279 367h258z" />
<glyph glyph-name="Atilde" unicode="&#xc3;" horiz-adv-x="1337"
d="M1337 0h-374l-68 217h-449l-71 -217h-375l530 1458h277zM801 516l-123 389l-131 -389h254zM1063 1751q-67 -67 -124 -98t-128 -31q-48 0 -83 8.5t-83 36.5q-60 35 -114 35q-31 0 -57 -10t-62 -46l-139 142q69 69 124 99t126 30q89 0 165 -45q59 -35 113 -35q31 0 58.5 11
t60.5 44z" />
<glyph glyph-name="Adieresis" unicode="&#xc4;" horiz-adv-x="1337"
d="M1337 0h-374l-68 217h-449l-71 -217h-375l530 1458h277zM801 516l-123 389l-131 -389h254zM1037 1599h-275v297h275v-297zM574 1599h-275v297h275v-297z" />
<glyph glyph-name="Aring" unicode="&#xc5;" horiz-adv-x="1337"
d="M1337 0h-374l-68 217h-449l-71 -217h-375l530 1458h277zM801 516l-123 389l-131 -389h254zM951 1829q0 -75 -38 -141t-103.5 -104t-141.5 -38q-57 0 -108 22t-91 62t-62 91t-22 108q0 75 38 141t103.5 104t141.5 38q75 0 141 -38t104 -103t38 -142zM774 1829q0 43 -31 75
t-75 32t-75 -32t-31 -75q0 -44 31 -75t75 -31t75 31t31 75z" />
<glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="2075"
d="M1968 0h-991v305h-434l-158 -305h-385l758 1458h1210v-319h-633v-244h541v-320h-541v-256h633v-319zM977 604v535l-279 -535h279z" />
<glyph glyph-name="Ccedilla" unicode="&#xc7;" horiz-adv-x="1247"
d="M1206 463q-19 -116 -68.5 -207.5t-123 -150.5t-165.5 -88t-196 -29q-243 0 -405 164q-96 96 -122 218t-26 310v49v49q0 188 26 310.5t122 218.5q82 82 180 122.5t225 40.5q109 0 200 -29.5t163 -88t121.5 -149t68.5 -208.5h-364q-19 71 -61.5 113.5t-125.5 42.5
q-46 0 -82.5 -17t-58.5 -44q-19 -24 -30.5 -57.5t-18 -102t-6.5 -201.5q0 -177 13 -248.5t42 -111.5q48 -62 141 -62q81 0 124.5 42.5t62.5 113.5h364zM788 -115l-74 -295h-299l137 295h236z" />
<glyph glyph-name="Egrave" unicode="&#xc8;" horiz-adv-x="1245"
d="M1139 0h-992v1458h992v-319h-633v-244h541v-320h-541v-256h633v-319zM750 1601h-203l-242 369h344z" />
<glyph glyph-name="Eacute" unicode="&#xc9;" horiz-adv-x="1245"
d="M1139 0h-992v1458h992v-319h-633v-244h541v-320h-541v-256h633v-319zM957 1970l-242 -369h-203l101 369h344z" />
<glyph glyph-name="Ecircumflex" unicode="&#xca;" horiz-adv-x="1245"
d="M1139 0h-992v1458h992v-319h-633v-244h541v-320h-541v-256h633v-319zM1039 1601h-246l-162 170l-162 -170h-246l279 367h258z" />
<glyph glyph-name="Edieresis" unicode="&#xcb;" horiz-adv-x="1245"
d="M1139 0h-992v1458h992v-319h-633v-244h541v-320h-541v-256h633v-319zM1000 1599h-275v297h275v-297zM537 1599h-275v297h275v-297z" />
<glyph glyph-name="Igrave" unicode="&#xcc;" horiz-adv-x="653"
d="M506 0h-359v1458h359v-1458zM461 1601h-203l-242 369h344z" />
<glyph glyph-name="Iacute" unicode="&#xcd;" horiz-adv-x="653"
d="M506 0h-359v1458h359v-1458zM654 1970l-242 -369h-203l101 369h344z" />
<glyph glyph-name="Icircumflex" unicode="&#xce;" horiz-adv-x="653"
d="M506 0h-359v1458h359v-1458zM723 1601h-246l-162 170l-162 -170h-246l279 367h258z" />
<glyph glyph-name="Idieresis" unicode="&#xcf;" horiz-adv-x="653"
d="M506 0h-359v1458h359v-1458zM695 1599h-275v297h275v-297zM232 1599h-275v297h275v-297z" />
<glyph glyph-name="Eth" unicode="&#xd0;" horiz-adv-x="1391"
d="M1290 729v-119q0 -158 -28.5 -265.5t-122.5 -201.5q-73 -73 -175 -108t-219 -35h-540v600h-133v274h133v584h540q117 0 219 -35t175 -108q94 -92 122.5 -200.5t28.5 -266.5v-119zM932 729q0 182 -8 240t-31 88q-55 82 -172 82h-158v-265h185v-274h-185v-281h158
q117 0 172 82q23 32 31 88.5t8 239.5z" />
<glyph glyph-name="Ntilde" unicode="&#xd1;" horiz-adv-x="1434"
d="M1286 0h-313l-467 733v-733h-359v1458h314l467 -733v733h358v-1458zM1112 1751q-67 -67 -124 -98t-128 -31q-48 0 -83 8.5t-83 36.5q-60 35 -114 35q-31 0 -57 -10t-62 -46l-139 142q69 69 124 99t126 30q89 0 165 -45q59 -35 113 -35q31 0 58.5 11t60.5 44z" />
<glyph glyph-name="Ograve" unicode="&#xd2;" horiz-adv-x="1311"
d="M1210 729v-49q0 -122 -8.5 -210t-40.5 -170t-98 -148q-81 -81 -178.5 -122.5t-229.5 -41.5q-89 0 -160.5 18.5t-132 54.5t-114.5 91q-96 96 -122 218t-26 310v49v49q0 188 26 310.5t122 218.5q83 83 179.5 123t227.5 40q132 0 229 -40.5t179 -122.5q66 -66 98 -148.5
t40.5 -170.5t8.5 -210v-49zM852 729q0 186 -12.5 254t-40.5 104q-20 28 -58.5 46t-85.5 18q-46 0 -83 -17.5t-60 -46.5q-18 -23 -29.5 -56.5t-17.5 -103t-6 -198.5q0 -128 6 -197.5t17.5 -102.5t29.5 -56q51 -66 143 -66q93 0 144 66q28 39 40.5 104.5t12.5 251.5zM774 1601
h-203l-242 369h344z" />
<glyph glyph-name="Oacute" unicode="&#xd3;" horiz-adv-x="1311"
d="M1210 729v-49q0 -122 -8.5 -210t-40.5 -170t-98 -148q-81 -81 -178.5 -122.5t-229.5 -41.5q-89 0 -160.5 18.5t-132 54.5t-114.5 91q-96 96 -122 218t-26 310v49v49q0 188 26 310.5t122 218.5q83 83 179.5 123t227.5 40q132 0 229 -40.5t179 -122.5q66 -66 98 -148.5
t40.5 -170.5t8.5 -210v-49zM852 729q0 186 -12.5 254t-40.5 104q-20 28 -58.5 46t-85.5 18q-46 0 -83 -17.5t-60 -46.5q-18 -23 -29.5 -56.5t-17.5 -103t-6 -198.5q0 -128 6 -197.5t17.5 -102.5t29.5 -56q51 -66 143 -66q93 0 144 66q28 39 40.5 104.5t12.5 251.5zM981 1970
l-242 -369h-203l101 369h344z" />
<glyph glyph-name="Ocircumflex" unicode="&#xd4;" horiz-adv-x="1311"
d="M1210 729v-49q0 -122 -8.5 -210t-40.5 -170t-98 -148q-81 -81 -178.5 -122.5t-229.5 -41.5q-89 0 -160.5 18.5t-132 54.5t-114.5 91q-96 96 -122 218t-26 310v49v49q0 188 26 310.5t122 218.5q83 83 179.5 123t227.5 40q132 0 229 -40.5t179 -122.5q66 -66 98 -148.5
t40.5 -170.5t8.5 -210v-49zM852 729q0 186 -12.5 254t-40.5 104q-20 28 -58.5 46t-85.5 18q-46 0 -83 -17.5t-60 -46.5q-18 -23 -29.5 -56.5t-17.5 -103t-6 -198.5q0 -128 6 -197.5t17.5 -102.5t29.5 -56q51 -66 143 -66q93 0 144 66q28 39 40.5 104.5t12.5 251.5z
M1063 1601h-246l-162 170l-162 -170h-246l279 367h258z" />
<glyph glyph-name="Otilde" unicode="&#xd5;" horiz-adv-x="1311"
d="M1210 729v-49q0 -122 -8.5 -210t-40.5 -170t-98 -148q-81 -81 -178.5 -122.5t-229.5 -41.5q-89 0 -160.5 18.5t-132 54.5t-114.5 91q-96 96 -122 218t-26 310v49v49q0 188 26 310.5t122 218.5q83 83 179.5 123t227.5 40q132 0 229 -40.5t179 -122.5q66 -66 98 -148.5
t40.5 -170.5t8.5 -210v-49zM852 729q0 186 -12.5 254t-40.5 104q-20 28 -58.5 46t-85.5 18q-46 0 -83 -17.5t-60 -46.5q-18 -23 -29.5 -56.5t-17.5 -103t-6 -198.5q0 -128 6 -197.5t17.5 -102.5t29.5 -56q51 -66 143 -66q93 0 144 66q28 39 40.5 104.5t12.5 251.5z
M1050 1751q-67 -67 -124 -98t-128 -31q-48 0 -83 8.5t-83 36.5q-60 35 -114 35q-31 0 -57 -10t-62 -46l-139 142q69 69 124 99t126 30q89 0 165 -45q59 -35 113 -35q31 0 58.5 11t60.5 44z" />
<glyph glyph-name="Odieresis" unicode="&#xd6;" horiz-adv-x="1311"
d="M1210 729v-49q0 -122 -8.5 -210t-40.5 -170t-98 -148q-81 -81 -178.5 -122.5t-229.5 -41.5q-89 0 -160.5 18.5t-132 54.5t-114.5 91q-96 96 -122 218t-26 310v49v49q0 188 26 310.5t122 218.5q83 83 179.5 123t227.5 40q132 0 229 -40.5t179 -122.5q66 -66 98 -148.5
t40.5 -170.5t8.5 -210v-49zM852 729q0 186 -12.5 254t-40.5 104q-20 28 -58.5 46t-85.5 18q-46 0 -83 -17.5t-60 -46.5q-18 -23 -29.5 -56.5t-17.5 -103t-6 -198.5q0 -128 6 -197.5t17.5 -102.5t29.5 -56q51 -66 143 -66q93 0 144 66q28 39 40.5 104.5t12.5 251.5z
M1024 1599h-275v297h275v-297zM561 1599h-275v297h275v-297z" />
<glyph glyph-name="multiply" unicode="&#xd7;"
d="M1059 330l-213 -213l-277 276l-274 -276l-215 213l278 274l-278 277l213 213l274 -277l277 277l215 -213l-279 -277z" />
<glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="1311"
d="M1210 729v-49q0 -122 -8.5 -210t-40.5 -170t-98 -148q-81 -81 -178.5 -122.5t-229.5 -41.5q-123 0 -215 37l-55 -115h-242l113 233l-8 9q-96 96 -122 218t-26 310v49v49q0 188 26 310.5t122 218.5q83 83 179.5 123t227.5 40q123 0 215 -36l56 114h241l-112 -233l8 -8
q66 -66 98 -148.5t40.5 -170.5t8.5 -210v-49zM745 1130q-39 21 -90 21q-46 0 -83 -17.5t-60 -46.5q-18 -23 -29.5 -56.5t-17.5 -103t-6 -198.5q0 -119 6 -190zM852 729q0 119 -6 191l-281 -590q38 -23 90 -23q93 0 144 66q28 39 40.5 104.5t12.5 251.5z" />
<glyph glyph-name="Ugrave" unicode="&#xd9;" horiz-adv-x="1352"
d="M1229 512q0 -115 -43 -213t-120 -168t-178 -106.5t-214 -36.5q-149 0 -276.5 65t-201 184.5t-73.5 274.5v946h358v-938q0 -100 51.5 -156.5t141.5 -56.5q58 0 103 25t69 73t24 115v938h359v-946zM795 1601h-203l-242 369h344z" />
<glyph glyph-name="Uacute" unicode="&#xda;" horiz-adv-x="1352"
d="M1229 512q0 -115 -43 -213t-120 -168t-178 -106.5t-214 -36.5q-149 0 -276.5 65t-201 184.5t-73.5 274.5v946h358v-938q0 -100 51.5 -156.5t141.5 -56.5q58 0 103 25t69 73t24 115v938h359v-946zM1002 1970l-242 -369h-203l101 369h344z" />
<glyph glyph-name="Ucircumflex" unicode="&#xdb;" horiz-adv-x="1352"
d="M1229 512q0 -115 -43 -213t-120 -168t-178 -106.5t-214 -36.5q-149 0 -276.5 65t-201 184.5t-73.5 274.5v946h358v-938q0 -100 51.5 -156.5t141.5 -56.5q58 0 103 25t69 73t24 115v938h359v-946zM1084 1601h-246l-162 170l-162 -170h-246l279 367h258z" />
<glyph glyph-name="Udieresis" unicode="&#xdc;" horiz-adv-x="1352"
d="M1229 512q0 -115 -43 -213t-120 -168t-178 -106.5t-214 -36.5q-149 0 -276.5 65t-201 184.5t-73.5 274.5v946h358v-938q0 -100 51.5 -156.5t141.5 -56.5q58 0 103 25t69 73t24 115v938h359v-946zM1045 1599h-275v297h275v-297zM582 1599h-275v297h275v-297z" />
<glyph glyph-name="Yacute" unicode="&#xdd;" horiz-adv-x="1239"
d="M1239 1458l-440 -864v-594h-359v594l-440 864h391l230 -524l227 524h391zM944 1970l-242 -369h-203l101 369h344z" />
<glyph glyph-name="Thorn" unicode="&#xde;" horiz-adv-x="1284"
d="M1223 737q0 -123 -58.5 -230t-170.5 -173t-269 -66h-219v-268h-359v1458h359v-252h219q157 0 269 -65.5t170.5 -172.5t58.5 -231zM864 737q0 39 -18.5 73t-54 54.5t-82.5 20.5h-203v-295h203q47 0 82.5 20.5t54 54.5t18.5 72z" />
<glyph glyph-name="germandbls" unicode="&#xdf;" horiz-adv-x="1196"
d="M1094 354q0 -172 -86 -262q-47 -45 -115.5 -68.5t-167.5 -23.5h-107v283h39q48 0 72 24q27 24 27 74v264q0 47 -25 72q-23 26 -74 26h-39v258h48q90 0 90 86q0 39 -25 60q-34 31 -113 31q-86 0 -119.5 -34.5t-33.5 -109.5v-1034h-338v1063q0 109 37 187.5t102.5 126.5
t154 70.5t197.5 22.5t196 -22t149 -67.5t96.5 -116t34.5 -164.5q0 -152 -125 -223q56 -26 90.5 -73.5t34.5 -137.5v-312z" />
<glyph glyph-name="agrave" unicode="&#xe0;" horiz-adv-x="1098"
d="M989 0h-327v90q-55 -53 -108 -76.5t-138 -23.5q-166 0 -264 98q-97 97 -97 258q0 88 40 160t124.5 116t210.5 44h223v28q0 76 -38.5 106.5t-127.5 30.5q-62 0 -98.5 -16t-77.5 -57l-209 209q86 85 173.5 116t228.5 31q238 0 361.5 -99.5t123.5 -299.5v-715zM653 414v28
h-170q-48 0 -77 -24t-29 -64q0 -39 29 -65.5t81 -26.5q49 0 78 7.5t56 33.5q32 31 32 111zM664 1249h-203l-242 369h344z" />
<glyph glyph-name="aacute" unicode="&#xe1;" horiz-adv-x="1098"
d="M989 0h-327v90q-55 -53 -108 -76.5t-138 -23.5q-166 0 -264 98q-97 97 -97 258q0 88 40 160t124.5 116t210.5 44h223v28q0 76 -38.5 106.5t-127.5 30.5q-62 0 -98.5 -16t-77.5 -57l-209 209q86 85 173.5 116t228.5 31q238 0 361.5 -99.5t123.5 -299.5v-715zM653 414v28
h-170q-48 0 -77 -24t-29 -64q0 -39 29 -65.5t81 -26.5q49 0 78 7.5t56 33.5q32 31 32 111zM871 1618l-242 -369h-203l101 369h344z" />
<glyph glyph-name="acircumflex" unicode="&#xe2;" horiz-adv-x="1098"
d="M989 0h-327v90q-55 -53 -108 -76.5t-138 -23.5q-166 0 -264 98q-97 97 -97 258q0 88 40 160t124.5 116t210.5 44h223v28q0 76 -38.5 106.5t-127.5 30.5q-62 0 -98.5 -16t-77.5 -57l-209 209q86 85 173.5 116t228.5 31q238 0 361.5 -99.5t123.5 -299.5v-715zM653 414v28
h-170q-48 0 -77 -24t-29 -64q0 -39 29 -65.5t81 -26.5q49 0 78 7.5t56 33.5q32 31 32 111zM953 1249h-246l-162 170l-162 -170h-246l279 367h258z" />
<glyph glyph-name="atilde" unicode="&#xe3;" horiz-adv-x="1098"
d="M989 0h-327v90q-55 -53 -108 -76.5t-138 -23.5q-166 0 -264 98q-97 97 -97 258q0 88 40 160t124.5 116t210.5 44h223v28q0 76 -38.5 106.5t-127.5 30.5q-62 0 -98.5 -16t-77.5 -57l-209 209q86 85 173.5 116t228.5 31q238 0 361.5 -99.5t123.5 -299.5v-715zM653 414v28
h-170q-48 0 -77 -24t-29 -64q0 -39 29 -65.5t81 -26.5q49 0 78 7.5t56 33.5q32 31 32 111zM940 1399q-67 -67 -124 -98t-128 -31q-48 0 -83 8.5t-83 36.5q-60 35 -114 35q-31 0 -57 -10t-62 -46l-139 142q69 69 124 99t126 30q89 0 165 -45q59 -35 113 -35q31 0 58.5 11
t60.5 44z" />
<glyph glyph-name="adieresis" unicode="&#xe4;" horiz-adv-x="1098"
d="M989 0h-327v90q-55 -53 -108 -76.5t-138 -23.5q-166 0 -264 98q-97 97 -97 258q0 88 40 160t124.5 116t210.5 44h223v28q0 76 -38.5 106.5t-127.5 30.5q-62 0 -98.5 -16t-77.5 -57l-209 209q86 85 173.5 116t228.5 31q238 0 361.5 -99.5t123.5 -299.5v-715zM653 414v28
h-170q-48 0 -77 -24t-29 -64q0 -39 29 -65.5t81 -26.5q49 0 78 7.5t56 33.5q32 31 32 111zM914 1247h-275v297h275v-297zM451 1247h-275v297h275v-297z" />
<glyph glyph-name="aring" unicode="&#xe5;" horiz-adv-x="1098"
d="M989 0h-327v90q-55 -53 -108 -76.5t-138 -23.5q-166 0 -264 98q-97 97 -97 258q0 88 40 160t124.5 116t210.5 44h223v28q0 76 -38.5 106.5t-127.5 30.5q-62 0 -98.5 -16t-77.5 -57l-209 209q86 85 173.5 116t228.5 31q238 0 361.5 -99.5t123.5 -299.5v-715zM653 414v28
h-170q-48 0 -77 -24t-29 -64q0 -39 29 -65.5t81 -26.5q49 0 78 7.5t56 33.5q32 31 32 111zM828 1497q0 -75 -38 -141t-103.5 -104t-141.5 -38q-57 0 -108 22t-91 62t-62 91t-22 108q0 75 38 141t103.5 104t141.5 38q75 0 141 -38t104 -103t38 -142zM651 1497q0 43 -31 75
t-75 32t-75 -32t-31 -75q0 -44 31 -75t75 -31t75 31t31 75z" />
<glyph glyph-name="ae" unicode="&#xe6;" horiz-adv-x="1720"
d="M1642 442h-659q0 -71 53 -121.5t142 -50.5q82 0 130.5 22t96.5 70l201 -200q-91 -91 -185.5 -132.5t-242.5 -41.5q-253 0 -385 133q-93 -85 -176.5 -109t-200.5 -24q-164 0 -264 100q-97 97 -97 258q0 88 40 160t124.5 116t210.5 44h223v28q0 76 -38.5 106.5t-127.5 30.5
q-62 0 -98.5 -16t-77.5 -57l-209 209q86 85 173.5 116t228.5 31q227 0 348 -92q121 92 295 92q119 0 211 -40t155 -111.5t96 -167t33 -203.5v-150zM1311 666q0 49 -19 86q-16 38 -53 62t-92 24t-91.5 -23.5t-54.5 -62.5q-18 -37 -18 -86h328zM653 414v28h-170q-48 0 -77 -24
t-29 -64q0 -39 29 -65.5t81 -26.5q49 0 78 7.5t56 33.5q32 31 32 111z" />
<glyph glyph-name="ccedilla" unicode="&#xe7;" horiz-adv-x="973"
d="M936 129q-44 -44 -100.5 -76.5t-123.5 -48.5t-139 -16q-117 0 -227.5 45t-189 172t-78.5 346t78.5 346t189 172t227.5 45q112 0 203 -36t160 -105l-227 -228q-66 66 -136 66q-61 0 -104 -43q-55 -58 -55 -217t55 -217q43 -43 104 -43q71 0 136 65zM682 -115l-74 -295
h-299l137 295h236z" />
<glyph glyph-name="egrave" unicode="&#xe8;" horiz-adv-x="1145"
d="M1067 442h-659q0 -72 52.5 -122t141.5 -50q84 0 131.5 22t95.5 70l201 -200q-91 -91 -185 -132.5t-243 -41.5q-524 0 -524 563q0 265 136.5 414t356.5 149q155 0 267.5 -69t170.5 -187t58 -266v-150zM735 666q0 49 -18 86q-16 37 -53.5 61.5t-92.5 24.5t-92.5 -24.5
t-52.5 -61.5q-18 -37 -18 -86h327zM699 1249h-203l-242 369h344z" />
<glyph glyph-name="eacute" unicode="&#xe9;" horiz-adv-x="1145"
d="M1067 442h-659q0 -72 52.5 -122t141.5 -50q84 0 131.5 22t95.5 70l201 -200q-91 -91 -185 -132.5t-243 -41.5q-524 0 -524 563q0 265 136.5 414t356.5 149q155 0 267.5 -69t170.5 -187t58 -266v-150zM735 666q0 49 -18 86q-16 37 -53.5 61.5t-92.5 24.5t-92.5 -24.5
t-52.5 -61.5q-18 -37 -18 -86h327zM906 1618l-242 -369h-203l101 369h344z" />
<glyph glyph-name="ecircumflex" unicode="&#xea;" horiz-adv-x="1145"
d="M1067 442h-659q0 -72 52.5 -122t141.5 -50q84 0 131.5 22t95.5 70l201 -200q-91 -91 -185 -132.5t-243 -41.5q-524 0 -524 563q0 265 136.5 414t356.5 149q155 0 267.5 -69t170.5 -187t58 -266v-150zM735 666q0 49 -18 86q-16 37 -53.5 61.5t-92.5 24.5t-92.5 -24.5
t-52.5 -61.5q-18 -37 -18 -86h327zM988 1249h-246l-162 170l-162 -170h-246l279 367h258z" />
<glyph glyph-name="edieresis" unicode="&#xeb;" horiz-adv-x="1145"
d="M1067 442h-659q0 -72 52.5 -122t141.5 -50q84 0 131.5 22t95.5 70l201 -200q-91 -91 -185 -132.5t-243 -41.5q-524 0 -524 563q0 265 136.5 414t356.5 149q155 0 267.5 -69t170.5 -187t58 -266v-150zM735 666q0 49 -18 86q-16 37 -53.5 61.5t-92.5 24.5t-92.5 -24.5
t-52.5 -61.5q-18 -37 -18 -86h327zM949 1247h-275v297h275v-297zM486 1247h-275v297h275v-297z" />
<glyph glyph-name="igrave" unicode="&#xec;" horiz-adv-x="590"
d="M463 0h-336v1102h336v-1102zM453 1249h-203l-242 369h344z" />
<glyph glyph-name="iacute" unicode="&#xed;" horiz-adv-x="590"
d="M463 0h-336v1102h336v-1102zM584 1618l-242 -369h-203l101 369h344z" />
<glyph glyph-name="icircumflex" unicode="&#xee;" horiz-adv-x="590"
d="M463 0h-336v1102h336v-1102zM703 1249h-246l-162 170l-162 -170h-246l279 367h258z" />
<glyph glyph-name="idieresis" unicode="&#xef;" horiz-adv-x="590"
d="M463 0h-336v1102h336v-1102zM668 1247h-275v297h275v-297zM205 1247h-275v297h275v-297z" />
<glyph glyph-name="eth" unicode="&#xf0;" horiz-adv-x="1126"
d="M1022 530q0 -157 -25.5 -246.5t-91.5 -160.5q-125 -135 -342 -135q-215 0 -342 135q-66 71 -91.5 160.5t-25.5 246.5t25.5 247t91.5 161q56 60 141 96q75 34 158 37l-41 82h-231v233h117l-46 95h361l45 -95h199v-233h-84l53 -117q52 -113 77 -180.5t38.5 -144.5
t13.5 -181zM686 530q0 88 -8.5 137t-34.5 74q-27 29 -80 29q-51 0 -80 -29q-26 -26 -34.5 -74.5t-8.5 -136.5q0 -63 3 -98t12 -64.5t28 -48.5q30 -28 80 -28q52 0 79.5 27.5t35.5 76t8 135.5z" />
<glyph glyph-name="ntilde" unicode="&#xf1;" horiz-adv-x="1186"
d="M1069 0h-336v659q0 85 -43.5 118.5t-91.5 33.5t-91.5 -34t-43.5 -118v-659h-336v1102h328v-90q48 48 118.5 75t137.5 27q153 0 247 -94q65 -63 88 -139t23 -176v-705zM993 1399q-67 -67 -124 -98t-128 -31q-48 0 -83 8.5t-83 36.5q-60 35 -114 35q-31 0 -57 -10t-62 -46
l-139 142q69 69 124 99t126 30q89 0 165 -45q59 -35 113 -35q31 0 58.5 11t60.5 44z" />
<glyph glyph-name="ograve" unicode="&#xf2;" horiz-adv-x="1126"
d="M1038 551q0 -163 -26 -255.5t-94 -166.5q-133 -141 -355 -141q-223 0 -354 141q-45 48 -72 105t-38 130.5t-11 186.5q0 112 11 185.5t38 130t72 106.5q58 61 145 101t209 40t209.5 -39.5t145.5 -101.5q68 -74 94 -167t26 -255zM702 551q0 96 -9.5 148.5t-39.5 80.5
q-30 31 -90 31q-59 0 -90 -31q-30 -30 -39.5 -85.5t-9.5 -143.5t9.5 -142.5t39.5 -86.5q31 -31 90 -31q60 0 90 30.5t39.5 82t9.5 147.5zM682 1249h-203l-242 369h344z" />
<glyph glyph-name="oacute" unicode="&#xf3;" horiz-adv-x="1126"
d="M1038 551q0 -163 -26 -255.5t-94 -166.5q-133 -141 -355 -141q-223 0 -354 141q-45 48 -72 105t-38 130.5t-11 186.5q0 112 11 185.5t38 130t72 106.5q58 61 145 101t209 40t209.5 -39.5t145.5 -101.5q68 -74 94 -167t26 -255zM702 551q0 96 -9.5 148.5t-39.5 80.5
q-30 31 -90 31q-59 0 -90 -31q-30 -30 -39.5 -85.5t-9.5 -143.5t9.5 -142.5t39.5 -86.5q31 -31 90 -31q60 0 90 30.5t39.5 82t9.5 147.5zM889 1618l-242 -369h-203l101 369h344z" />
<glyph glyph-name="ocircumflex" unicode="&#xf4;" horiz-adv-x="1126"
d="M1038 551q0 -163 -26 -255.5t-94 -166.5q-133 -141 -355 -141q-223 0 -354 141q-45 48 -72 105t-38 130.5t-11 186.5q0 112 11 185.5t38 130t72 106.5q58 61 145 101t209 40t209.5 -39.5t145.5 -101.5q68 -74 94 -167t26 -255zM702 551q0 96 -9.5 148.5t-39.5 80.5
q-30 31 -90 31q-59 0 -90 -31q-30 -30 -39.5 -85.5t-9.5 -143.5t9.5 -142.5t39.5 -86.5q31 -31 90 -31q60 0 90 30.5t39.5 82t9.5 147.5zM971 1249h-246l-162 170l-162 -170h-246l279 367h258z" />
<glyph glyph-name="otilde" unicode="&#xf5;" horiz-adv-x="1126"
d="M1038 551q0 -163 -26 -255.5t-94 -166.5q-133 -141 -355 -141q-223 0 -354 141q-45 48 -72 105t-38 130.5t-11 186.5q0 112 11 185.5t38 130t72 106.5q58 61 145 101t209 40t209.5 -39.5t145.5 -101.5q68 -74 94 -167t26 -255zM702 551q0 96 -9.5 148.5t-39.5 80.5
q-30 31 -90 31q-59 0 -90 -31q-30 -30 -39.5 -85.5t-9.5 -143.5t9.5 -142.5t39.5 -86.5q31 -31 90 -31q60 0 90 30.5t39.5 82t9.5 147.5zM958 1399q-67 -67 -124 -98t-128 -31q-48 0 -83 8.5t-83 36.5q-60 35 -114 35q-31 0 -57 -10t-62 -46l-139 142q69 69 124 99t126 30
q89 0 165 -45q59 -35 113 -35q31 0 58.5 11t60.5 44z" />
<glyph glyph-name="odieresis" unicode="&#xf6;" horiz-adv-x="1126"
d="M1038 551q0 -163 -26 -255.5t-94 -166.5q-133 -141 -355 -141q-223 0 -354 141q-45 48 -72 105t-38 130.5t-11 186.5q0 112 11 185.5t38 130t72 106.5q58 61 145 101t209 40t209.5 -39.5t145.5 -101.5q68 -74 94 -167t26 -255zM702 551q0 96 -9.5 148.5t-39.5 80.5
q-30 31 -90 31q-59 0 -90 -31q-30 -30 -39.5 -85.5t-9.5 -143.5t9.5 -142.5t39.5 -86.5q31 -31 90 -31q60 0 90 30.5t39.5 82t9.5 147.5zM932 1247h-275v297h275v-297zM469 1247h-275v297h275v-297z" />
<glyph glyph-name="divide" unicode="&#xf7;"
d="M729 889h-319v319h319v-319zM1051 446h-963v316h963v-316zM729 0h-319v319h319v-319z" />
<glyph glyph-name="oslash" unicode="&#xf8;" horiz-adv-x="1126"
d="M1038 551q0 -163 -26 -255.5t-94 -166.5q-133 -141 -355 -141q-118 0 -213 41l-69 -119h-191l125 213q-82 87 -104.5 182.5t-22.5 245.5q0 112 11 185.5t38 130t72 106.5q58 61 145 101t209 40q120 0 213 -41l70 119h190l-125 -213q57 -59 84 -124.5t35 -136t8 -167.5z
M633 797q-27 14 -70 14q-59 0 -90 -31q-30 -30 -39.5 -85.5t-9.5 -143.5q0 -74 4 -102zM702 551q0 74 -4 102l-204 -348q25 -14 69 -14q60 0 90 30.5t39.5 82t9.5 147.5z" />
<glyph glyph-name="ugrave" unicode="&#xf9;" horiz-adv-x="1186"
d="M1059 0h-328v90q-49 -49 -119 -75.5t-137 -26.5q-152 0 -248 94q-64 64 -87 139.5t-23 175.5v705h336v-660q0 -83 43.5 -117t91.5 -34t91.5 33.5t43.5 117.5v660h336v-1102zM707 1249h-203l-242 369h344z" />
<glyph glyph-name="uacute" unicode="&#xfa;" horiz-adv-x="1186"
d="M1059 0h-328v90q-49 -49 -119 -75.5t-137 -26.5q-152 0 -248 94q-64 64 -87 139.5t-23 175.5v705h336v-660q0 -83 43.5 -117t91.5 -34t91.5 33.5t43.5 117.5v660h336v-1102zM914 1618l-242 -369h-203l101 369h344z" />
<glyph glyph-name="ucircumflex" unicode="&#xfb;" horiz-adv-x="1186"
d="M1059 0h-328v90q-49 -49 -119 -75.5t-137 -26.5q-152 0 -248 94q-64 64 -87 139.5t-23 175.5v705h336v-660q0 -83 43.5 -117t91.5 -34t91.5 33.5t43.5 117.5v660h336v-1102zM996 1249h-246l-162 170l-162 -170h-246l279 367h258z" />
<glyph glyph-name="udieresis" unicode="&#xfc;" horiz-adv-x="1186"
d="M1059 0h-328v90q-49 -49 -119 -75.5t-137 -26.5q-152 0 -248 94q-64 64 -87 139.5t-23 175.5v705h336v-660q0 -83 43.5 -117t91.5 -34t91.5 33.5t43.5 117.5v660h336v-1102zM957 1247h-275v297h275v-297zM494 1247h-275v297h275v-297z" />
<glyph glyph-name="yacute" unicode="&#xfd;" horiz-adv-x="1053"
d="M1069 1102l-457 -1233q-32 -92 -86 -145q-86 -93 -247 -93h-127v303h71q47 0 72 17t41 65l31 93l-367 993h352l187 -572l178 572h352zM852 1618l-242 -369h-203l101 369h344z" />
<glyph glyph-name="thorn" unicode="&#xfe;" horiz-adv-x="1169"
d="M1077 551v-51q0 -147 -18 -246.5t-84 -165.5q-102 -100 -266 -100q-155 0 -246 92v-436h-336v1814h336v-436q47 47 106.5 69.5t139.5 22.5q164 0 266 -100q66 -66 84 -165.5t18 -246.5v-51zM741 551q0 87 -9.5 143.5t-39 86.5t-90.5 30q-86 0 -112.5 -62t-26.5 -198
q0 -87 9.5 -143.5t39 -86.5t90.5 -30t90.5 30t39 86.5t9.5 143.5z" />
<glyph glyph-name="ydieresis" unicode="&#xff;" horiz-adv-x="1053"
d="M1069 1102l-457 -1233q-32 -92 -86 -145q-86 -93 -247 -93h-127v303h71q47 0 72 17t41 65l31 93l-367 993h352l187 -572l178 572h352zM895 1247h-275v297h275v-297zM432 1247h-275v297h275v-297z" />
<glyph glyph-name="OE" unicode="&#x152;" horiz-adv-x="1950"
d="M1843 0h-991v53q-40 -37 -96 -51t-113 -14q-90 0 -158 16.5t-125.5 50.5t-111.5 88q-54 55 -84.5 122t-43.5 140t-16.5 144t-3.5 180q0 110 3.5 181t16.5 143.5t44 140.5t84 121q81 81 173 118t224 37q137 0 207 -65v53h991v-319h-633v-244h541v-320h-541v-256h633v-319z
M852 729q0 186 -12.5 254t-40.5 104q-20 28 -58.5 46t-85.5 18q-46 0 -83 -17.5t-60 -46.5q-18 -23 -29.5 -56.5t-17.5 -103t-6 -198.5q0 -128 6 -197.5t17.5 -102.5t29.5 -56q51 -66 143 -66q93 0 144 66q28 39 40.5 104.5t12.5 251.5z" />
<glyph glyph-name="oe" unicode="&#x153;" horiz-adv-x="1769"
d="M1692 442h-660q0 -71 53 -121.5t142 -50.5q82 0 130.5 22t96.5 70l201 -200q-91 -91 -185.5 -132.5t-242.5 -41.5q-225 0 -350 102q-126 -102 -314 -102q-223 0 -354 141q-45 48 -72 105t-38 130.5t-11 186.5q0 112 11 185.5t38 130t72 106.5q58 61 145 101t209 40
q191 0 320 -108q125 108 313 108q155 0 267.5 -69t170.5 -187t58 -266v-150zM1360 666q0 49 -19 86q-16 38 -53 62t-92 24t-92 -24t-53 -62q-19 -37 -19 -86h328zM702 551q0 96 -9.5 148.5t-39.5 80.5q-30 31 -90 31q-59 0 -90 -31q-30 -30 -39.5 -85.5t-9.5 -143.5
t9.5 -142.5t39.5 -86.5q31 -31 90 -31q60 0 90 30.5t39.5 82t9.5 147.5z" />
<glyph glyph-name="Scaron" unicode="&#x160;" horiz-adv-x="1214"
d="M1126 446q0 -143 -75.5 -247t-204 -157.5t-283.5 -53.5q-181 0 -315 43t-238 149l230 230q54 -54 142 -78.5t183 -24.5q209 0 209 131q0 56 -29 86t-96 39l-176 25q-194 27 -293 129q-100 103 -100 293q0 133 64.5 237.5t185 163.5t282.5 59q161 0 281.5 -41.5
t210.5 -132.5l-225 -225q-56 56 -121 71t-156 15q-86 0 -131 -41t-45 -94q0 -39 29 -68q34 -34 100 -43l176 -24q192 -28 287 -121q57 -55 82.5 -133.5t25.5 -186.5zM1016 1968l-279 -367h-258l-279 367h246l162 -170l162 170h246z" />
<glyph glyph-name="scaron" unicode="&#x161;" horiz-adv-x="1032"
d="M977 360q0 -125 -64 -208.5t-172 -123.5t-241 -40q-102 0 -177.5 9.5t-153 43.5t-149.5 106l218 218q92 -93 268 -93q49 0 96 17t47 55q0 63 -80 70l-170 16q-96 9 -168.5 44.5t-111.5 103t-39 172.5q0 87 36.5 157t97.5 115t139.5 68.5t164.5 23.5q147 0 252 -29
t182 -106l-207 -207q-66 66 -233 66q-55 0 -82 -20t-27 -44q0 -53 72 -61l170 -17q113 -10 187 -55.5t109.5 -117.5t35.5 -163zM926 1616l-279 -367h-258l-279 367h246l162 -170l162 170h246z" />
<glyph glyph-name="Ydieresis" unicode="&#x178;" horiz-adv-x="1239"
d="M1239 1458l-440 -864v-594h-359v594l-440 864h391l230 -524l227 524h391zM987 1599h-275v297h275v-297zM524 1599h-275v297h275v-297z" />
<glyph glyph-name="florin" unicode="&#x192;" horiz-adv-x="903"
d="M842 1198h-164q-68 0 -80 -68l-53 -303h184v-258h-229l-164 -925h-336l164 925h-101v258h146l57 328q15 81 64 155.5t135 122.5t201 48l176 -2v-281z" />
<glyph glyph-name="circumflex" unicode="&#x2c6;" horiz-adv-x="1024"
d="M920 1249h-246l-162 170l-162 -170h-246l279 367h258z" />
<glyph glyph-name="tilde" unicode="&#x2dc;" horiz-adv-x="1024"
d="M907 1399q-67 -67 -124 -98t-128 -31q-48 0 -83 8.5t-83 36.5q-60 35 -114 35q-31 0 -57 -10t-62 -46l-139 142q69 69 124 99t126 30q89 0 165 -45q59 -35 113 -35q31 0 58.5 11t60.5 44z" />
<glyph glyph-name="emdash" unicode="&#x2013;"
d="M1038 446h-938v316h938v-316z" />
<glyph glyph-name="endash" unicode="&#x2014;" horiz-adv-x="2238"
d="M2138 451h-2038v323h2038v-323z" />
<glyph glyph-name="quoteleft" unicode="&#x2018;" horiz-adv-x="569"
d="M453 1159h-336v299l336 246v-545z" />
<glyph glyph-name="quoteright" unicode="&#x2019;" horiz-adv-x="569"
d="M453 1157l-336 -242v543h336v-301z" />
<glyph glyph-name="quotesinglbase" unicode="&#x201a;" horiz-adv-x="565"
d="M453 0l-336 -242v543h336v-301z" />
<glyph glyph-name="quotedblleft" unicode="&#x201c;" horiz-adv-x="1047"
d="M930 1159h-336v299l336 246v-545zM451 1159h-334v299l334 246v-545z" />
<glyph glyph-name="quotedblright" unicode="&#x201d;" horiz-adv-x="1047"
d="M930 1157l-336 -242v543h336v-301zM451 1157l-334 -242v543h334v-301z" />
<glyph glyph-name="quotedblbase" unicode="&#x201e;" horiz-adv-x="1053"
d="M930 0l-336 -242v543h336v-301zM451 0l-334 -242v543h334v-301z" />
<glyph glyph-name="dagger" unicode="&#x2020;" horiz-adv-x="1155"
d="M1059 799h-314v-799h-335v799h-314v303h314v356h335v-356h314v-303z" />
<glyph glyph-name="daggerdbl" unicode="&#x2021;" horiz-adv-x="1155"
d="M1059 0h-314v-356h-335v356h-314v303h314v496h-314v303h314v356h335v-356h314v-303h-314v-496h314v-303z" />
<glyph glyph-name="bullet" unicode="&#x2022;" horiz-adv-x="963"
d="M815 684q0 -90 -45 -167.5t-122.5 -122t-166.5 -44.5q-66 0 -127.5 26.5t-107.5 72.5t-72.5 107.5t-26.5 127.5t26.5 128.5t72 108t106 71.5t129.5 26q89 0 166.5 -44.5t122.5 -122t45 -167.5z" />
<glyph glyph-name="ellipsis" unicode="&#x2026;" horiz-adv-x="1841"
d="M1724 0h-348v348h348v-348zM1094 0h-349v348h349v-348zM465 0h-348v348h348v-348z" />
<glyph glyph-name="perthousand" unicode="&#x2030;" horiz-adv-x="2517"
d="M2425 272q0 -93 -42.5 -157.5t-113.5 -95.5t-153 -31q-83 0 -154 31t-113.5 95.5t-42.5 157.5v195q0 94 42.5 158.5t113.5 95.5t154 31q82 0 153 -31t113.5 -95.5t42.5 -158.5v-195zM1663 272q0 -93 -42 -157t-113 -95.5t-154 -31.5t-154 31t-113.5 95.5t-42.5 157.5v195
q0 94 42.5 158.5t113.5 95.5t154 31t154 -31.5t113 -95.5t42 -158v-195zM1354 1458l-695 -1458h-258l695 1458h258zM711 991q0 -93 -42.5 -157.5t-113.5 -95.5t-154 -31q-82 0 -153 31t-113.5 95.5t-42.5 157.5v195q0 93 42.5 157.5t113.5 95.5t153 31q83 0 154 -31
t113.5 -95.5t42.5 -157.5v-195zM2187 281v178q0 80 -71 80q-72 0 -72 -80v-178q0 -80 72 -80q71 0 71 80zM1425 281v178q0 80 -71 80q-72 0 -72 -80v-178q0 -80 72 -80q71 0 71 80zM473 999v179q0 79 -72 79q-71 0 -71 -79v-179q0 -79 71 -79q72 0 72 79z" />
<glyph glyph-name="guilsinglleft" unicode="&#x2039;" horiz-adv-x="743"
d="M621 18l-560 555l560 553v-395l-162 -158l162 -159v-396z" />
<glyph glyph-name="guilsinglright" unicode="&#x203a;" horiz-adv-x="743"
d="M682 573l-559 -555v396l164 159l-164 158v395z" />
<glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="1993"
d="M1855 584h-239v448l-137 -268h-205l-137 268v-448h-240v874h240l239 -430l240 430h239v-874zM772 1245h-215v-661h-238v661h-215v213h668v-213z" />
<glyph glyph-name="periodcentered" unicode="&#x2219;" horiz-adv-x="602"
d="M485 420h-368v368h368v-368z" />
<glyph glyph-name="Lslash" horiz-adv-x="1227"
d="M1165 0h-970v444l-123 -77v299l123 77v715h358v-489l231 145v-297l-231 -145v-353h612v-319z" />
<glyph glyph-name="lslash" horiz-adv-x="713"
d="M672 0h-178q-115 0 -192 47.5t-113.5 123t-36.5 155.5v245l-101 -61v281l101 61v606h335v-405l101 61v-280l-101 -62v-422q0 -67 68 -67h117v-283z" />
<glyph glyph-name="Zcaron" horiz-adv-x="1112"
d="M1051 0h-990v279l560 860h-535v319h965v-278l-562 -861h562v-319zM967 1968l-279 -367h-258l-279 367h246l162 -170l162 170h246z" />
<glyph glyph-name="zcaron" horiz-adv-x="1001"
d="M920 0h-859v248l420 551h-395v303h834v-248l-428 -551h428v-303zM910 1616l-279 -367h-258l-279 367h246l162 -170l162 170h246z" />
<glyph glyph-name="notequal" horiz-adv-x="1311"
d="M1210 197h-696l-211 -287l-203 151l99 136h-99v315h330l135 184h-465v316h697l211 286l202 -151l-98 -135h98v-316h-329l-136 -184h465v-315z" />
<glyph glyph-name="infinity" horiz-adv-x="1794"
d="M1698 604q0 -86 -27.5 -165t-80 -135.5t-133.5 -89t-187 -32.5q-105 0 -201 49t-172 131q-76 -82 -172 -131t-201 -49q-138 0 -235 55.5t-145 150.5t-48 216q0 120 48 215.5t145 151t235 55.5q108 0 202.5 -49t170.5 -131q76 82 170.5 131t202.5 49q106 0 186.5 -31.5
t134 -89t80.5 -136t27 -165.5zM1370 594q0 48 -29 74t-69 26q-38 0 -69 -25t-73 -75q45 -52 74.5 -76t67.5 -24q41 0 69.5 25.5t28.5 74.5zM664 594q-38 48 -71 74t-71 26q-40 0 -69 -26t-29 -74q0 -49 28.5 -74.5t69.5 -25.5q38 0 69.5 25.5t72.5 74.5z" />
<glyph glyph-name="lessequal" horiz-adv-x="2103"
d="M1837 41l-223 -223l-946 946l4 -875l-297 297v1094h1093l297 -297l-874 4z" />
<glyph glyph-name="greaterequal" horiz-adv-x="2103"
d="M1726 188l-296 -297l6 875l-949 -948l-223 223l948 948l-874 -6l297 297h1091v-1092z" />
<glyph glyph-name="partialdiff" horiz-adv-x="1149"
d="M1022 530q0 -157 -25.5 -246.5t-91.5 -160.5q-125 -135 -342 -135q-215 0 -342 135q-66 71 -91.5 160.5t-25.5 246.5t25.5 248.5t91.5 161.5q125 133 334 133q80 0 129 -24v2q0 18 -15.5 50t-55 59.5t-105.5 27.5q-118 0 -189 -70l-208 209q78 80 176 111.5t237 31.5
q125 0 219 -37.5t156 -105.5t92.5 -161.5t30.5 -204.5v-431zM686 530q0 88 -8.5 137t-34.5 74q-27 29 -80 29q-51 0 -80 -29q-26 -26 -34.5 -74.5t-8.5 -136.5q0 -63 3 -98t12 -64.5t28 -48.5q30 -28 80 -28q52 0 79.5 27.5t35.5 76t8 135.5z" />
<glyph glyph-name="summation" horiz-adv-x="1133"
d="M1071 -360h-1010v278l371 700l-362 660v278h991v-319h-569l241 -459v-334l-258 -485h596v-319z" />
<glyph glyph-name="product" horiz-adv-x="1393"
d="M1245 -356h-358v1595h-381v-1595h-359v1912h1098v-1912z" />
<glyph glyph-name="pi" horiz-adv-x="1212"
d="M1085 0h-335v782h-287v-782h-336v1102h958v-1102z" />
<glyph glyph-name="integral" horiz-adv-x="1147"
d="M1004 1212h-113q-141 0 -141 -135v-999q0 -136 -58 -230.5t-162.5 -142t-238.5 -47.5h-150v283h113q141 0 141 135v999q0 136 58 230.5t162.5 142t238.5 47.5h150v-283z" />
<glyph glyph-name="Omega" horiz-adv-x="1311"
d="M1210 0h-477v279q42 20 66 51q27 37 40 113.5t13 265.5q0 188 -13 263.5t-40 110.5q-21 29 -59 48.5t-85 19.5q-46 0 -82.5 -19t-60.5 -49q-17 -22 -29 -59.5t-18 -111.5t-6 -203q0 -186 12.5 -263t40.5 -116q22 -30 66 -51v-279h-478v319h93q-32 40 -52 99
q-41 126 -41 311v49q0 188 26 310.5t122 218.5q83 83 179.5 123t227.5 40q132 0 229 -40.5t179 -122.5q66 -66 98 -148.5t40.5 -170.5t8.5 -210v-49q0 -189 -41 -311q-17 -57 -51 -99h92v-319z" />
<glyph glyph-name="radical" horiz-adv-x="1262"
d="M1200 1139h-192l-377 -1139h-266l-365 1102h362l138 -459l241 815h459v-319z" />
<glyph glyph-name="approxequal" horiz-adv-x="1323"
d="M1262 836q-68 -68 -128 -111.5t-121.5 -64.5t-133.5 -21q-46 0 -87.5 6t-80 21t-84.5 43q-90 51 -172 51q-50 0 -90 -16.5t-91 -67.5l-213 213q104 104 189.5 150t189.5 46q75 0 130 -14.5t122 -54.5q87 -51 172 -51q47 0 89 16.5t91 67.5zM1262 315
q-70 -70 -127.5 -111.5t-119 -63t-132.5 -21.5q-33 0 -69 4.5t-60.5 10.5t-48 16.5t-74.5 37.5q-89 52 -172 52q-48 0 -88 -16t-92 -68l-218 213q103 103 190.5 149.5t192.5 46.5q75 0 130 -14.5t122 -54.5q89 -52 172 -52q48 0 88.5 17t92.5 67z" />
<glyph glyph-name="Delta" horiz-adv-x="1337"
d="M1337 0h-1337l530 1458h277zM868 299l-190 606l-203 -606h393z" />
<glyph glyph-name="lozenge" horiz-adv-x="1286"
d="M1190 684l-547 -754l-547 754l547 754zM811 684l-168 229l-168 -229l168 -229z" />
<glyph glyph-name="fraction" horiz-adv-x="453"
d="M702 1458l-694 -1458h-258l694 1458h258z" />
<glyph glyph-name="fi" horiz-adv-x="1282"
d="M1155 1214h-336v256h336v-256zM1155 0h-336v1059h336v-1059zM672 801h-185v-801h-335v801h-101v258h101v96q0 80 36.5 155.5t113.5 123t192 47.5h178v-283h-117q-68 0 -68 -68v-71h185v-258z" />
<glyph glyph-name="fl" horiz-adv-x="1380"
d="M1339 0h-178q-114 0 -191 47.5t-114 123t-37 155.5v1132h336v-1108q0 -67 68 -67h116v-283zM672 801h-185v-801h-335v801h-101v258h101v96q0 80 36.5 155.5t113.5 123t192 47.5h178v-283h-117q-68 0 -68 -68v-71h185v-258z" />
<glyph glyph-name="dotlessi" horiz-adv-x="590"
d="M463 0h-336v1102h336v-1102z" />
<glyph glyph-name="breve" horiz-adv-x="1024"
d="M848 1536q-4 -167 -101.5 -244.5t-234.5 -77.5q-135 0 -233.5 78.5t-102.5 243.5h217q8 -96 119 -96t119 96h217z" />
<glyph glyph-name="dotaccent" horiz-adv-x="1024"
d="M680 1214h-336v256h336v-256z" />
<glyph glyph-name="ring" horiz-adv-x="1024"
d="M795 1497q0 -75 -38 -141t-103.5 -104t-141.5 -38q-57 0 -108 22t-91 62t-62 91t-22 108q0 75 38 141t103.5 104t141.5 38q75 0 141 -38t104 -103t38 -142zM618 1497q0 43 -31 75t-75 32t-75 -32t-31 -75q0 -44 31 -75t75 -31t75 31t31 75z" />
<glyph glyph-name="hungarumlaut" horiz-adv-x="1024"
d="M973 1618l-242 -369h-203l101 369h344zM496 1618l-240 -369h-205l101 369h344z" />
<glyph glyph-name="ogonek" horiz-adv-x="1024"
d="M698 -410h-299l-73 295h235z" />
<glyph glyph-name="caron" horiz-adv-x="1024"
d="M920 1616l-279 -367h-258l-279 367h246l162 -170l162 170h246z" />
</font>
</defs></svg>

Before

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,600 +0,0 @@
<?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" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<metadata>
Created by FontForge 20170731 at Tue May 31 23:36:42 2005
By Aleksey,,,
\251 Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International FontFont release 15
</metadata>
<defs>
<font id="DIN-Bold" horiz-adv-x="543" >
<font-face
font-family="DIN-Bold"
font-weight="5"
font-stretch="normal"
units-per-em="1000"
panose-1="0 0 0 0 0 0 0 0 0 0"
ascent="800"
descent="-200"
x-height="521"
cap-height="712"
bbox="-115 -206 1158 1015"
underline-thickness="87"
underline-position="-264"
unicode-range="U+0020-F002"
/>
<missing-glyph horiz-adv-x="803"
d="M50 0v803h703v-803h-703zM703 50v703h-603v-703h603z" />
<glyph glyph-name=".notdef" horiz-adv-x="803"
d="M50 0v803h703v-803h-703zM703 50v703h-603v-703h603z" />
<glyph glyph-name="glyph1" horiz-adv-x="0"
/>
<glyph glyph-name="glyph2" horiz-adv-x="232"
/>
<glyph glyph-name="space" unicode=" " horiz-adv-x="232"
/>
<glyph glyph-name="exclam" unicode="!" horiz-adv-x="347"
d="M241 223h-98l-31 489h160zM123 0v133h138v-133h-138z" />
<glyph glyph-name="quotedbl" unicode="&#x22;" horiz-adv-x="464"
d="M274 501v211h121v-211h-121zM68 501v211h122v-211h-122z" />
<glyph glyph-name="numbersign" unicode="#" horiz-adv-x="691"
d="M554 420l-16 -108h69v-122h-89l-30 -190h-137l31 190h-116l-30 -190h-137l30 190h-69v122h89l16 108h-70v121h89l28 177h137l-28 -177h116l28 177h136l-27 -177h69v-121h-89zM302 420l-17 -108h116l16 108h-115z" />
<glyph glyph-name="dollar" unicode="$" horiz-adv-x="619"
d="M356 -2v-112h-101v108q-73 0 -130.5 22.5t-105.5 71.5l90 90q31 -31 70.5 -45.5t88.5 -14.5v181l-32 4q-46 6 -80 21t-71.5 52.5t-37.5 125.5q0 87 55.5 145.5t152.5 68.5v90h101v-89q59 0 107 -20.5t90 -61.5l-88 -87q-24 23 -57 35.5t-66 12.5v-174l38 -6
q48 -7 80 -20.5t58 -38t39.5 -61.5t13.5 -86q0 -89 -59 -144.5t-156 -67.5zM268 595q-42 -6 -64.5 -30t-22.5 -58q0 -16 4.5 -28t22 -28.5t60.5 -22.5v167zM413 266q-12 12 -29.5 17t-41.5 9v-172q93 11 93 86q0 39 -22 60z" />
<glyph glyph-name="percent" unicode="%" horiz-adv-x="848"
d="M651 -6q-63 0 -104 35.5t-41 101.5v99q0 64 41.5 100.5t103.5 36.5q63 0 104 -35.5t41 -101.5v-99q0 -65 -41.5 -101t-103.5 -36zM307 0h-102l337 712h102zM197 345q-63 0 -104 35.5t-41 101.5v99q0 64 41.5 100.5t103.5 36.5q63 0 104 -35.5t41 -101.5v-99
q0 -65 -41.5 -101t-103.5 -36zM702 226q0 57 -51 57t-51 -57v-91q0 -57 51 -57t51 57v91zM248 577q0 57 -51 57t-51 -57v-91q0 -57 51 -57t51 57v91z" />
<glyph glyph-name="ampersand" unicode="&#x26;" horiz-adv-x="721"
d="M531 0l-52 62q-50 -39 -91 -53.5t-93 -14.5q-116 0 -175.5 56.5t-59.5 159.5q0 62 35 107t93 84q-31 35 -51 70.5t-20 80.5q0 74 51 120t139 46q83 0 132.5 -46.5t49.5 -121.5q0 -38 -19 -68t-54 -56l-51 -37l120 -142q36 49 36 125h123q0 -136 -76 -221l128 -151h-165z
M307 607q-29 0 -44 -16t-15 -42q0 -18 11 -34.5t36 -45.5l30 20q20 14 30.5 28t10.5 32q0 25 -15.5 41.5t-43.5 16.5zM258 321q-37 -26 -54.5 -49.5t-17.5 -59.5q0 -44 31 -72t77 -28q58 0 106 42z" />
<glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="259"
d="M68 501v211h123v-211h-123z" />
<glyph glyph-name="parenleft" unicode="(" horiz-adv-x="336"
d="M194 -94q-39 39 -55.5 57t-32 44.5t-21 60.5t-5.5 70v436q0 56 5.5 79.5t21 50t31.5 44.5t56 58l87 -87q-23 -23 -34 -35.5t-24 -35.5t-13 -80v-424q0 -57 13 -80t23.5 -35t34.5 -36z" />
<glyph glyph-name="parenright" unicode=")" horiz-adv-x="336"
d="M230 9q-16 -27 -32 -45t-56 -58l-88 88q21 21 33.5 35t25 36t12.5 79v424q0 57 -13.5 81t-29.5 40.5t-28 28.5l88 88q39 -39 55.5 -57t32 -44.5t21 -60.5t5.5 -70v-436q0 -56 -5.5 -79.5t-20.5 -49.5z" />
<glyph glyph-name="asterisk" unicode="*" horiz-adv-x="494"
d="M394 381l-105 66l4 -125h-92l5 125l-106 -66l-45 79l110 58l-110 58l45 80l106 -67l-5 125h92l-4 -125l105 67l46 -80l-111 -58l111 -58z" />
<glyph glyph-name="plus" unicode="+"
d="M333 216v-160h-122v160h-161v122h161v160h122v-160h160v-122h-160z" />
<glyph glyph-name="comma" unicode="," horiz-adv-x="279"
d="M68 -165v307h143v-197z" />
<glyph glyph-name="hyphen" unicode="-" horiz-adv-x="426"
d="M59 225v121h308v-121h-308z" />
<glyph glyph-name="period" unicode="." horiz-adv-x="285"
d="M68 0v148h149v-148h-149z" />
<glyph glyph-name="slash" unicode="/" horiz-adv-x="403"
d="M122 -74h-122l285 860h122z" />
<glyph glyph-name="zero" unicode="0"
d="M272 -6q-91 0 -154 57t-63 155v300q0 98 63 155t154 57t153.5 -57t62.5 -155v-300q0 -99 -62 -155.5t-154 -56.5zM358 504q0 44 -23.5 70.5t-62.5 26.5t-63 -26t-24 -71v-297q0 -44 24 -70t63 -26t62.5 25.5t23.5 70.5v297z" />
<glyph glyph-name="one" unicode="1"
d="M248 0v572l-145 -126v140l145 126h130v-712h-130z" />
<glyph glyph-name="two" unicode="2"
d="M59 0v117l266 309q20 24 28.5 43t8.5 43q0 40 -22.5 64.5t-63.5 24.5q-38 0 -62.5 -21t-24.5 -70h-130q0 96 61 152t156 56q96 0 156 -56t60 -151q0 -49 -16.5 -81t-59.5 -82l-199 -231h275v-117h-433z" />
<glyph glyph-name="three" unicode="3"
d="M269 -6q-96 0 -161.5 52.5t-65.5 157.5h130q0 -45 28 -69t69 -24q43 0 69.5 25.5t26.5 73.5q0 45 -26.5 71.5t-73.5 26.5h-19v113h19q45 0 67.5 24.5t22.5 64.5q0 43 -25 67t-62 24q-38 0 -63 -23t-25 -63h-130q0 92 62.5 147.5t155.5 55.5q95 0 156 -57t61 -147
q0 -55 -22 -90.5t-60 -55.5q43 -23 67.5 -62t24.5 -100q0 -101 -64.5 -156.5t-161.5 -55.5z" />
<glyph glyph-name="four" unicode="4"
d="M447 101v-101h-125v101h-291v123l244 488h142l-244 -488h149v133h125v-133h65v-123h-65z" />
<glyph glyph-name="five" unicode="5"
d="M431 52q-27 -27 -65.5 -42.5t-91.5 -15.5q-52 0 -93 16t-68.5 43.5t-41.5 66t-14 79.5h130q6 -44 26 -66t61 -22q39 0 58 19t25.5 46.5t6.5 63.5q0 65 -20 96.5t-67 31.5q-36 0 -57 -16.5t-29 -41.5h-119v402h406v-117h-288v-153q16 15 44 25.5t63 10.5q43 0 76.5 -12.5
t64 -43t43.5 -76.5t13 -106q0 -64 -13 -107.5t-50 -80.5z" />
<glyph glyph-name="six" unicode="6"
d="M270 -6q-97 0 -159.5 58.5t-62.5 161.5q0 35 10.5 73t49.5 117l150 308h142l-148 -294q12 5 26 7t27 2q75 0 131 -58t56 -153q0 -103 -62.5 -162.5t-159.5 -59.5zM270 319q-41 0 -66.5 -27.5t-25.5 -76.5t25.5 -76.5t66.5 -27.5t66.5 27.5t25.5 76.5q0 48 -25 76t-67 28z
" />
<glyph glyph-name="seven" unicode="7"
d="M272 0h-141l231 595h-188v-112h-124v229h453v-117z" />
<glyph glyph-name="eight" unicode="8"
d="M272 -6q-99 0 -163.5 56t-64.5 157q0 58 25.5 96.5t63.5 63.5q-33 23 -56.5 59.5t-23.5 88.5q0 92 63 147.5t156 55.5t155.5 -55t62.5 -148q0 -52 -23 -88t-57 -60q37 -25 63.5 -63.5t26.5 -96.5q0 -100 -64.5 -156.5t-163.5 -56.5zM272 601q-38 0 -63.5 -25.5
t-25.5 -64.5t25.5 -64.5t63.5 -25.5q39 0 63.5 25.5t24.5 64.5q0 38 -25 64t-63 26zM272 308q-41 0 -69.5 -28.5t-28.5 -70.5t28 -70t70 -28t70 28t28 70q0 41 -28 70t-70 29z" />
<glyph glyph-name="nine" unicode="9"
d="M436 308l-151 -308h-141l148 294q-12 -5 -26 -7t-27 -2q-76 0 -132 58t-56 153q0 103 62.5 162.5t159.5 59.5t159.5 -58.5t62.5 -161.5q0 -34 -11 -74t-48 -116zM273 601q-41 0 -66.5 -27.5t-25.5 -76.5q0 -48 25 -76t67 -28q41 0 66.5 27.5t25.5 76.5t-25.5 76.5
t-66.5 27.5z" />
<glyph glyph-name="colon" unicode=":" horiz-adv-x="309"
d="M93 271v148h148v-148h-148zM93 0v148h148v-148h-148z" />
<glyph glyph-name="semicolon" unicode=";" horiz-adv-x="309"
d="M93 271v148h148v-148h-148zM96 -165v307h142v-197z" />
<glyph glyph-name="less" unicode="&#x3c;" horiz-adv-x="1027"
d="M273 224l326 -324h-164l-385 385l385 385h164l-326 -323h703v-123h-703z" />
<glyph glyph-name="equal" unicode="="
d="M50 333v122h443v-122h-443zM50 116v122h443v-122h-443z" />
<glyph glyph-name="greater" unicode="&#x3e;" horiz-adv-x="1027"
d="M592 -100h-164l326 324h-704v123h704l-326 323h164l385 -385z" />
<glyph glyph-name="question" unicode="?" horiz-adv-x="523"
d="M438 393l-74 -98q-18 -23 -18 -51v-21h-130v30q0 31 8.5 54t29.5 50l74 95q12 15 20.5 33.5t8.5 33.5q0 37 -21.5 59.5t-59.5 22.5t-59 -23t-21 -60h-130q0 91 60 145.5t150 54.5q89 0 150 -54t61 -146q0 -34 -12.5 -64t-36.5 -61zM212 0v133h138v-133h-138z" />
<glyph glyph-name="at" unicode="@" horiz-adv-x="758"
d="M579 0v46q-25 -27 -52.5 -39.5t-67.5 -12.5q-79 0 -117 40.5t-47 81t-9 115.5q0 72 9 113t46 82t117 41q73 0 118 -49v45q0 34 -7.5 58t-27 43.5t-44 27.5t-56.5 8h-124q-32 0 -56 -7.5t-44 -27.5t-27.5 -44t-7.5 -58v-289q0 -37 9 -56.5t35 -42.5l-90 -90q-45 40 -62 78
t-17 104v299q0 65 14 110t48 79t78 47.5t110 13.5h144q65 0 109 -13t78.5 -47.5t48 -79.5t13.5 -110v-469zM493 359q-46 0 -64 -32t-18 -96q0 -63 18 -96t64 -33q45 0 64 33t19 96q0 64 -18 96t-65 32z" />
<glyph glyph-name="A" unicode="A" horiz-adv-x="638"
d="M488 0l-42 126h-253l-43 -126h-145l259 712h109l260 -712h-145zM322 502l-90 -259h177z" />
<glyph glyph-name="B" unicode="B" horiz-adv-x="658"
d="M381 0h-298v712h286q103 0 161.5 -53.5t58.5 -146.5q0 -54 -27 -92.5t-61 -54.5q41 -19 69.5 -57t28.5 -103q0 -97 -60 -151t-158 -54zM358 588h-136v-164h136q44 0 68 22t24 60q0 37 -24.5 59.5t-67.5 22.5zM367 299h-145v-175h145q45 0 69 25t24 63t-23.5 62.5
t-69.5 24.5z" />
<glyph glyph-name="C" unicode="C" horiz-adv-x="620"
d="M321 -6q-57 0 -105.5 20t-92 63.5t-54 102t-10.5 176.5q0 117 11 176.5t54.5 103t90.5 63t106 19.5q103 0 173.5 -58t88.5 -167h-141q-11 46 -40.5 73.5t-79.5 27.5q-57 0 -83 -29.5t-33.5 -70.5t-7.5 -138q0 -101 7 -139t33.5 -68.5t83.5 -30.5q50 0 79.5 27.5
t40.5 73.5h141q-18 -108 -89 -166.5t-173 -58.5z" />
<glyph glyph-name="D" unicode="D" horiz-adv-x="659"
d="M528 68q-33 -33 -82.5 -50.5t-105.5 -17.5h-257v712h257q57 0 105 -16.5t89 -57.5t53.5 -95t12.5 -139v-45v-45q0 -87 -12.5 -143t-59.5 -103zM431 544q-18 22 -43 33t-61 11h-105v-464h105q68 0 95.5 33.5t33 73t5.5 128.5q0 86 -5.5 123.5t-24.5 61.5z" />
<glyph glyph-name="E" unicode="E" horiz-adv-x="605"
d="M83 0v712h469v-124h-330v-167h281v-124h-281v-173h330v-124h-469z" />
<glyph glyph-name="F" unicode="F" horiz-adv-x="590"
d="M222 588v-175h281v-124h-281v-289h-139v712h469v-124h-330z" />
<glyph glyph-name="G" unicode="G" horiz-adv-x="648"
d="M522 75q-41 -42 -92 -61.5t-109 -19.5q-57 0 -105.5 20t-92 63.5t-54 102t-10.5 176.5q0 117 11 176.5t54.5 103t90 63t106.5 19.5q117 0 184.5 -65t83.5 -163h-140q-25 104 -128 104q-56 0 -83 -30.5t-33.5 -68t-6.5 -139.5q0 -105 6 -141t33 -66.5t84 -30.5
q62 0 88.5 29t34.5 54t8 52v27h-131v116h269v-104q0 -78 -15.5 -128t-52.5 -89z" />
<glyph glyph-name="H" unicode="H" horiz-adv-x="685"
d="M463 0v298h-241v-298h-139v712h139v-291h241v291h139v-712h-139z" />
<glyph glyph-name="I" unicode="I" horiz-adv-x="305"
d="M83 0v712h139v-712h-139z" />
<glyph glyph-name="J" unicode="J" horiz-adv-x="511"
d="M186 -6q-59 0 -101 16.5t-82 56.5l92 91q22 -22 39.5 -31t51.5 -9q112 0 112 122v472h139v-478q0 -112 -73 -176t-178 -64z" />
<glyph glyph-name="K" unicode="K" horiz-adv-x="665"
d="M497 0l-183 324l-92 -110v-214h-139v712h139v-310l251 310h169l-236 -283l253 -429h-162z" />
<glyph glyph-name="L" unicode="L" horiz-adv-x="575"
d="M83 0v712h139v-588h323v-124h-462z" />
<glyph glyph-name="M" unicode="M" horiz-adv-x="811"
d="M589 0v415l-136 -270h-94l-137 270v-415h-139v712h137l186 -385l185 385h137v-712h-139z" />
<glyph glyph-name="N" unicode="N" horiz-adv-x="711"
d="M504 0l-282 437v-437h-139v712h124l282 -436v436h139v-712h-124z" />
<glyph glyph-name="O" unicode="O" horiz-adv-x="644"
d="M514 72q-39 -39 -85 -58.5t-107 -19.5q-60 0 -107 19.5t-91 63.5t-54.5 102.5t-10.5 176.5q0 117 11 176.5t54.5 103t90 63t107.5 19.5q59 0 106 -19.5t90.5 -63t55 -104t11.5 -175.5q0 -118 -11 -176.5t-60 -107.5zM411 556q-33 38 -89 38q-29 0 -51.5 -10t-41 -30.5
t-25 -58t-6.5 -139.5q0 -105 6 -140.5t33.5 -66.5t84.5 -31q56 0 82.5 30.5t34 70.5t7.5 137q0 102 -7 139t-28 61z" />
<glyph glyph-name="P" unicode="P" horiz-adv-x="628"
d="M359 268h-137v-268h-139v712h276q108 0 171.5 -63.5t63.5 -158.5q0 -94 -64 -158t-171 -64zM352 588h-130v-195h130q47 0 75 26t28 71q0 44 -28 71t-75 27z" />
<glyph glyph-name="Q" unicode="Q" horiz-adv-x="643"
d="M529 -30l-63 63q-60 -39 -144 -39q-60 0 -107 19.5t-91 63.5t-54.5 102.5t-10.5 176.5q0 117 11 176.5t54.5 103t90 63t107.5 19.5q59 0 106 -19.5t90.5 -63t55 -104t11.5 -175.5q0 -125 -10 -171t-34 -81l61 -61zM411 556q-33 38 -89 38q-29 0 -51.5 -10t-41 -30.5
t-25 -58t-6.5 -139.5q0 -105 6 -140.5t33.5 -66.5t84.5 -31q27 0 46 13l-62 61l74 73l53 -53q7 20 10 57t3 87q0 102 -7 139t-28 61z" />
<glyph glyph-name="R" unicode="R" horiz-adv-x="654"
d="M461 0l-139 284h-100v-284h-139v712h279q106 0 168.5 -62.5t62.5 -155.5q0 -70 -37 -118.5t-93 -68.5l159 -307h-161zM353 588h-131v-188h131q45 0 73 26t28 68q0 43 -27.5 68.5t-73.5 25.5z" />
<glyph glyph-name="S" unicode="S" horiz-adv-x="591"
d="M279 -6q-85 0 -147 21t-113 73l90 90q32 -32 75.5 -46t96.5 -14q126 0 126 88q0 39 -16 54t-31 21.5t-38 9.5l-86 12q-91 13 -140 61.5t-49 137.5q0 97 66.5 156.5t181.5 59.5q75 0 129.5 -19t100.5 -64l-88 -87q-30 28 -67.5 38.5t-78.5 10.5q-54 0 -82 -25t-28 -65
q0 -16 4.5 -28t22.5 -28.5t60 -22.5l84 -12q90 -13 127.5 -47.5t50.5 -72t13 -86.5q0 -101 -74 -158.5t-190 -57.5z" />
<glyph glyph-name="T" unicode="T" horiz-adv-x="571"
d="M355 588v-588h-139v588h-186v124h511v-124h-186z" />
<glyph glyph-name="U" unicode="U" horiz-adv-x="668"
d="M334 -6q-112 0 -187 69t-75 181v468h139v-463q0 -61 33 -96t90 -35t90.5 34.5t33.5 96.5v463h138v-468q0 -112 -74.5 -181t-187.5 -69z" />
<glyph glyph-name="V" unicode="V" horiz-adv-x="581"
d="M342 0h-104l-235 712h144l143 -464l143 464h145z" />
<glyph glyph-name="W" unicode="W" horiz-adv-x="887"
d="M690 0h-116l-131 432l-131 -432h-116l-190 712h145l110 -449l130 449h104l130 -449l111 449h145z" />
<glyph glyph-name="X" unicode="X" horiz-adv-x="603"
d="M439 0l-138 248l-137 -248h-159l221 365l-207 347h158l124 -230l125 230h157l-207 -347l222 -365h-159z" />
<glyph glyph-name="Y" unicode="Y" horiz-adv-x="572"
d="M355 292v-292h-138v292l-214 420h151l133 -287l131 287h151z" />
<glyph glyph-name="Z" unicode="Z" horiz-adv-x="548"
d="M40 0v112l304 476h-291v124h455v-110l-305 -478h305v-124h-468z" />
<glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="378"
d="M80 -74v860h257v-117h-127v-626h127v-117h-257z" />
<glyph glyph-name="backslash" unicode="\" horiz-adv-x="403"
d="M281 -74l-281 847h122l281 -847h-122z" />
<glyph glyph-name="bracketright" unicode="]" horiz-adv-x="378"
d="M42 -74v116h127v628h-127v116h257v-860h-257z" />
<glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="602"
d="M403 389l-102 188l-102 -188h-136l178 330h120l178 -330h-136z" />
<glyph glyph-name="underscore" unicode="_" horiz-adv-x="602"
d="M0 -178v87h602v-87h-602z" />
<glyph glyph-name="grave" unicode="`" horiz-adv-x="500"
d="M218 604l-114 170h137l64 -170h-87z" />
<glyph glyph-name="a" unicode="a" horiz-adv-x="534"
d="M340 0v45q-27 -27 -55 -38.5t-73 -11.5q-87 0 -131.5 45.5t-44.5 117.5q0 67 45 109t133 42h123v26q0 43 -22.5 62.5t-74.5 19.5q-38 0 -58 -9t-42 -34l-83 81q38 41 79 56.5t109 15.5q222 0 222 -184v-343h-127zM337 220h-103q-73 0 -73 -59q0 -60 75 -60q31 0 48 4.5
t35 21.5t18 65v28z" />
<glyph glyph-name="b" unicode="b" horiz-adv-x="560"
d="M456 41q-47 -47 -127 -47q-43 0 -73 12.5t-57 42.5v-49h-126v712h130v-237q25 28 55 40t71 12q80 0 116.5 -36.5t50 -83.5t13.5 -146q0 -78 -9 -131.5t-44 -88.5zM291 410q-54 0 -71 -37t-17 -112q0 -76 16.5 -113t71.5 -37q53 0 70.5 38t17.5 112q0 75 -17 112t-71 37z
" />
<glyph glyph-name="c" unicode="c" horiz-adv-x="480"
d="M280 -6q-94 0 -163.5 61.5t-69.5 205.5t69 205t164 61q105 0 172 -70l-88 -88q-20 22 -39.5 31.5t-44.5 9.5q-46 0 -74.5 -35t-28.5 -114q0 -80 28.5 -115t74.5 -35t84 41l88 -87q-68 -71 -172 -71z" />
<glyph glyph-name="d" unicode="d" horiz-adv-x="561"
d="M361 0v49q-50 -55 -129 -55q-81 0 -117.5 36.5t-50 84t-13.5 146.5q0 79 9 131.5t50 93.5t121 41q42 0 71.5 -11.5t55.5 -40.5v237h130v-712h-127zM269 410q-54 0 -71 -37t-17 -112q0 -76 16.5 -113t71.5 -37q54 0 71.5 37.5t17.5 112.5q0 74 -17.5 111.5t-71.5 37.5z
" />
<glyph glyph-name="e" unicode="e" horiz-adv-x="548"
d="M175 220q0 -52 30 -84t84 -32q40 0 65.5 11t52.5 38l79 -77q-43 -43 -86.5 -62.5t-111.5 -19.5q-107 0 -174 60t-67 207q0 125 62 195.5t165 70.5q106 0 166.5 -69.5t60.5 -179.5v-58h-326zM361 365q-11 25 -33 39.5t-54 14.5t-54 -14.5t-33.5 -41.5t-11.5 -54h198
q0 27 -12 56z" />
<glyph glyph-name="f" unicode="f" horiz-adv-x="342"
d="M219 407v-407h-130v407h-54v99h54v65q0 61 38.5 105t113.5 44h74v-110h-51q-45 0 -45 -47v-57h96v-99h-96z" />
<glyph glyph-name="g" unicode="g" horiz-adv-x="555"
d="M253 -197q-63 0 -106 14.5t-83 53.5l81 82q41 -40 102 -40q54 0 79.5 31t25.5 77v53q-25 -28 -54.5 -40t-69.5 -12q-78 0 -118 40t-49.5 85.5t-9.5 127.5q0 80 9.5 126t49.5 86t119 40q42 0 71 -12.5t56 -42.5v49h126v-502q0 -95 -62.5 -155.5t-166.5 -60.5zM266 410
q-52 0 -68.5 -35.5t-16.5 -99.5q0 -83 21.5 -109.5t63.5 -26.5q52 0 69 36t17 100q0 63 -17 99t-69 36z" />
<glyph glyph-name="h" unicode="h" horiz-adv-x="569"
d="M372 0v318q0 48 -25 70t-60 22t-59.5 -22t-24.5 -70v-318h-130v712h130v-239q53 54 125 54q84 0 129 -52t45 -138v-337h-130z" />
<glyph glyph-name="i" unicode="i" horiz-adv-x="275"
d="M71 610v106h133v-106h-133zM73 0v521h130v-521h-130z" />
<glyph glyph-name="j" unicode="j" horiz-adv-x="275"
d="M71 610v106h133v-106h-133zM51 -195h-74v110h50q46 0 46 47v559h130v-567q0 -62 -38 -105.5t-114 -43.5z" />
<glyph glyph-name="k" unicode="k" horiz-adv-x="559"
d="M386 0l-128 217l-55 -62v-155h-130v712h130v-404l173 213h157l-186 -210l200 -311h-161z" />
<glyph glyph-name="l" unicode="l" horiz-adv-x="325"
d="M220 0q-75 0 -113.5 43.5t-38.5 105.5v563h130v-555q0 -47 46 -47h50v-110h-74z" />
<glyph glyph-name="m" unicode="m" horiz-adv-x="876"
d="M679 0v315q0 49 -25 72t-61 23q-35 0 -61 -22.5t-26 -69.5v-318h-130v315q0 49 -25 72t-61 23q-37 0 -62 -22.5t-25 -72.5v-315h-130v521h127v-48q25 26 59 40t71 14q90 0 138 -66q63 66 156 66q39 0 72.5 -12t59.5 -38t39.5 -62.5t13.5 -81.5v-333h-130z" />
<glyph glyph-name="n" unicode="n" horiz-adv-x="573"
d="M376 0v315q0 49 -25 72t-61 23q-37 0 -62 -22.5t-25 -72.5v-315h-130v521h127v-48q51 54 130 54q38 0 69.5 -12t57 -37.5t37.5 -62t12 -82.5v-333h-130z" />
<glyph glyph-name="o" unicode="o"
d="M433 58q-27 -29 -67 -46.5t-95 -17.5q-54 0 -94 17.5t-70.5 49.5t-43 78.5t-12.5 121.5q0 77 12 121t43 77t70.5 50.5t94.5 17.5q54 0 94.5 -17.5t71 -49.5t43 -78.5t12.5 -120.5q0 -78 -12 -122t-47 -81zM332 387q-23 23 -61 23q-37 0 -57.5 -20.5t-26.5 -51t-6 -77.5
q0 -63 7 -87t26.5 -43.5t56.5 -19.5q38 0 58.5 20.5t26.5 51t6 78.5q0 51 -5 78.5t-25 47.5z" />
<glyph glyph-name="p" unicode="p" horiz-adv-x="560"
d="M456 41q-47 -47 -127 -47q-42 0 -71 11.5t-55 40.5v-237h-130v712h126v-49q50 55 130 55t116.5 -36.5t50 -83.5t13.5 -146q0 -78 -9 -131.5t-44 -88.5zM291 410q-54 0 -71 -37t-17 -112q0 -76 16.5 -113t71.5 -37q53 0 70.5 38t17.5 112q0 75 -17 112t-71 37z" />
<glyph glyph-name="q" unicode="q" horiz-adv-x="561"
d="M358 -191v237q-25 -27 -55.5 -39.5t-71.5 -12.5q-80 0 -116.5 36.5t-50 84t-13.5 146.5q0 79 9 131.5t50 93.5t122 41q42 0 72 -12.5t57 -42.5v49h127v-712h-130zM269 410q-54 0 -71 -37t-17 -112q0 -76 16.5 -113t71.5 -37q54 0 71.5 37.5t17.5 112.5q0 74 -17.5 111.5
t-71.5 37.5z" />
<glyph glyph-name="r" unicode="r" horiz-adv-x="455"
d="M356 379q-16 16 -31 23.5t-38 7.5q-34 0 -59 -24.5t-25 -71.5v-314h-130v521h127v-50q19 23 55 39.5t76 16.5q39 0 67.5 -11t55.5 -38z" />
<glyph glyph-name="s" unicode="s" horiz-adv-x="501"
d="M244 -6q-75 0 -125.5 14.5t-96.5 60.5l85 85q28 -28 65 -38.5t74 -10.5q38 0 65 13t27 41q0 20 -12.5 32.5t-42.5 15.5l-82 8q-74 7 -113 41.5t-39 104.5q0 78 58.5 122t142.5 44q68 0 115 -13t84 -48l-80 -81q-20 18 -53 26.5t-68 8.5q-36 0 -55 -14.5t-19 -35.5
q0 -18 11 -30t43 -15l82 -8q76 -7 115.5 -46.5t39.5 -106.5q0 -83 -61.5 -126.5t-159.5 -43.5z" />
<glyph glyph-name="t" unicode="t" horiz-adv-x="352"
d="M236 0q-75 0 -113 43.5t-38 105.5v258h-55v99h55v154h130v-154h92v-99h-92v-250q0 -47 45 -47h47v-110h-71z" />
<glyph glyph-name="u" unicode="u" horiz-adv-x="573"
d="M373 0v48q-51 -54 -130 -54q-38 0 -69.5 12t-57 37.5t-37.5 62t-12 82.5v333h130v-315q0 -49 25 -72t61 -23q37 0 62 22.5t25 72.5v315h130v-521h-127z" />
<glyph glyph-name="v" unicode="v" horiz-adv-x="493"
d="M298 0h-102l-192 521h137l106 -322l105 322h137z" />
<glyph glyph-name="w" unicode="w" horiz-adv-x="759"
d="M596 0h-107l-109 327l-109 -327h-107l-160 521h138l84 -322l106 322h95l107 -322l84 322h137z" />
<glyph glyph-name="x" unicode="x" horiz-adv-x="527"
d="M359 0l-96 156l-95 -156h-156l180 266l-173 255h156l88 -149l89 149h156l-173 -255l180 -266h-156z" />
<glyph glyph-name="y" unicode="y" horiz-adv-x="494"
d="M267 -84q-9 -24 -17.5 -39t-25.5 -32t-45.5 -26.5t-62.5 -9.5h-51v117h30q28 0 41.5 9.5t23.5 37.5l22 64l-178 484h137l108 -322l104 322h137z" />
<glyph glyph-name="z" unicode="z" horiz-adv-x="478"
d="M37 0v99l231 305h-218v117h384v-99l-234 -305h234v-117h-397z" />
<glyph glyph-name="braceleft" unicode="{" horiz-adv-x="457"
d="M312 -74q-75 0 -114.5 39.5t-39.5 108.5v145q0 43 -18 61t-51 18h-46v116h46q18 0 30 4.5t25.5 18t13.5 56.5v145q0 69 39.5 108.5t114.5 39.5h102v-117h-53q-43 0 -58 -15.5t-15 -62.5v-135q0 -48 -19 -68t-50 -32q30 -12 49.5 -32t19.5 -68v-135q0 -47 15 -62.5
t58 -15.5h53v-117h-102z" />
<glyph glyph-name="bar" unicode="|" horiz-adv-x="350"
d="M110 -74v860h130v-860h-130z" />
<glyph glyph-name="braceright" unicode="}" horiz-adv-x="457"
d="M368 298q-18 0 -30 -4.5t-25.5 -18t-13.5 -56.5v-145q0 -69 -39.5 -108.5t-114.5 -39.5h-102v117h53q43 0 58 15.5t15 62.5v135q0 48 19 68t50 32q-30 12 -49.5 32t-19.5 68v135q0 47 -15 62.5t-58 15.5h-53v117h102q75 0 114.5 -39.5t39.5 -108.5v-145q0 -43 18 -61
t51 -18h46v-116h-46z" />
<glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="606"
d="M404 195q-53 0 -97.5 23.5t-62 29t-39.5 5.5q-23 0 -41.5 -8t-44.5 -34l-82 82q47 47 83 66.5t81 19.5q53 0 98 -24t61.5 -29t38.5 -5q24 0 42.5 8t44.5 34l83 -82q-46 -46 -83 -66t-82 -20z" />
<glyph glyph-name="nbspace" unicode="&#xa0;" horiz-adv-x="232"
/>
<glyph glyph-name="exclamdown" unicode="&#xa1;" horiz-adv-x="347"
d="M87 388v133h137v-133h-137zM75 -191l32 489h97l32 -489h-161z" />
<glyph glyph-name="cent" unicode="&#xa2;" horiz-adv-x="499"
d="M333 105v-105h-101v105q-84 17 -134.5 83t-50.5 178q0 111 51 177.5t134 83.5v85h101v-85q42 -7 74 -25t62 -50l-86 -84q-31 32 -64 41v-286q18 5 33 14.5t31 26.5l86 -84q-30 -31 -62 -49t-74 -26zM246 507q-21 -6 -37 -25.5t-24 -47t-8 -68.5q0 -40 7.5 -67.5t23 -47.5
t38.5 -26v282z" />
<glyph glyph-name="sterling" unicode="&#xa3;" horiz-adv-x="579"
d="M101 0v297h-61v100h61v81q0 112 73 176t178 64q59 0 100 -16t82 -57l-91 -91q-22 22 -39.5 31t-51.5 9q-52 0 -82.5 -31t-30.5 -91v-75h113v-100h-113v-173h295v-124h-433z" />
<glyph glyph-name="currency" unicode="&#xa4;" horiz-adv-x="669"
d="M525 10l-74 73q-54 -32 -117 -32q-62 0 -116 32l-74 -73l-86 86l74 73q-16 26 -24.5 55.5t-8.5 61.5q0 31 8.5 60.5t24.5 56.5l-74 73l86 86l74 -73q25 15 55.5 23.5t60.5 8.5q63 0 117 -32l74 73l85 -86l-73 -73q32 -54 32 -117t-32 -117l73 -73zM334 403q-49 0 -83 -34
t-34 -83t34 -83t83 -34q48 0 83 34t35 83t-34 83t-84 34z" />
<glyph glyph-name="yen" unicode="&#xa5;" horiz-adv-x="571"
d="M432 442h74v-100h-125l-26 -50v-51h151v-100h-151v-141h-138v141h-152v100h152v51l-26 50h-126v100h75l-137 270h151l132 -288l132 288h150z" />
<glyph glyph-name="section" unicode="&#xa7;" horiz-adv-x="531"
d="M383 125q38 -19 59.5 -51.5t21.5 -87.5q0 -86 -59 -134.5t-139 -48.5q-82 0 -140.5 44.5t-58.5 133.5h125q0 -28 20.5 -45.5t53.5 -17.5q35 0 54 17t19 47q0 23 -15.5 42t-54.5 32l-62 21q-75 25 -110.5 68t-35.5 120q0 50 28 90t63 59q-36 19 -56 49t-20 82
q0 73 49.5 123t142.5 50q94 0 143 -48t49 -124h-122q0 31 -19 46t-51 15q-34 0 -52 -16t-18 -43q0 -44 67 -66l62 -20q75 -24 110.5 -67.5t35.5 -120.5q0 -50 -28 -90t-62 -59zM323 337q-11 10 -24 15.5t-32 5.5q-36 0 -52 -16t-22.5 -32.5t-6.5 -40.5q0 -25 6.5 -40.5
t22.5 -31.5t52 -16q17 0 31.5 5.5t25 16t17.5 26t7 40.5q0 24 -6.5 40t-18.5 28z" />
<glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="500"
d="M305 606v125h111v-125h-111zM84 606v125h111v-125h-111z" />
<glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="844"
d="M422 -6q-150 0 -256 106t-106 256t106 256t256 106t256 -106t106 -256t-106 -256t-256 -106zM422 637q-117 0 -196.5 -80.5t-79.5 -200.5t79.5 -200.5t196.5 -80.5t196 80t79 201t-79 201t-196 80zM429 160q-78 0 -128.5 51.5t-50.5 144.5q0 92 50.5 144.5t128.5 52.5
q40 0 70.5 -13t61.5 -40l-56 -56q-19 16 -37 24t-39 8q-46 0 -70 -32t-24 -88t23.5 -88t70.5 -32q38 0 76 32l56 -56q-29 -26 -60 -39t-72 -13z" />
<glyph glyph-name="ordfeminine" unicode="&#xaa;" horiz-adv-x="454"
d="M289 296v36q-21 -21 -44 -30.5t-57 -9.5q-69 0 -104.5 36.5t-35.5 93.5q0 53 36 87t106 34h97v20q0 34 -18 49.5t-59 15.5q-49 0 -79 -34l-67 65q30 33 64 45.5t87 12.5q87 0 132 -37t45 -110v-274h-103zM287 472h-81q-56 0 -56 -47q0 -46 57 -46q25 0 38.5 3.5
t27.5 16.5t14 50v23z" />
<glyph glyph-name="guillemotleft" unicode="&#xab;" horiz-adv-x="628"
d="M312 275l250 248v-155l-96 -93l96 -93v-155zM34 275l249 248v-155l-94 -93l94 -93v-155z" />
<glyph glyph-name="logicalnot" unicode="&#xac;"
d="M376 94v145h-330v121h451v-266h-121z" />
<glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="844"
d="M422 -6q-150 0 -256 106t-106 256t106 256t256 106t256 -106t106 -256t-106 -256t-256 -106zM422 637q-117 0 -196.5 -80.5t-79.5 -200.5q0 -121 79 -201t197 -80q117 0 196.5 80.5t79.5 200.5q0 121 -79 201t-197 80zM487 164l-70 149h-41v-149h-86v385h157
q57 0 92.5 -35.5t35.5 -85.5q0 -38 -20 -63.5t-51 -38.5l81 -162h-98zM436 478h-60v-100h60q23 0 38 15t15 35q0 21 -14.5 35.5t-38.5 14.5z" />
<glyph glyph-name="degree" unicode="&#xb0;" horiz-adv-x="478"
d="M239 358q-77 0 -130.5 53.5t-53.5 130.5t53 131t131 54q76 0 130 -54t54 -131t-53.5 -130.5t-130.5 -53.5zM238 622q-33 0 -55.5 -23.5t-22.5 -56.5t22.5 -56.5t56.5 -23.5q33 0 56 23t23 57t-23 57t-57 23z" />
<glyph glyph-name="plusminus" unicode="&#xb1;"
d="M333 341v-161h-122v161h-161v121h161v161h122v-161h160v-121h-160zM50 0v122h443v-122h-443z" />
<glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="500"
d="M282 604h-87l64 170h137z" />
<glyph glyph-name="mu" unicode="&#xb5;" horiz-adv-x="576"
d="M376 0v48q-51 -54 -130 -54q-27 0 -46 14v-199h-130v712h130v-315q0 -49 25 -72t61 -23q37 0 62 22.5t25 72.5v315h130v-521h-127z" />
<glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="668"
d="M455 -191v779h-100v-779h-130v499q-75 0 -132.5 59.5t-57.5 141.5q0 97 62 150t169 53h319v-903h-130z" />
<glyph glyph-name="cedilla" unicode="&#xb8;" horiz-adv-x="500"
d="M281 -206h-121l69 146h96z" />
<glyph glyph-name="ordmasculine" unicode="&#xba;" horiz-adv-x="462"
d="M359 343q-23 -24 -53 -37.5t-75 -13.5q-43 0 -74 14t-56 39.5t-35.5 62.5t-10.5 96q0 61 9.5 96.5t35.5 62.5t56 40.5t75 13.5q43 0 74 -14t56 -40t35.5 -62.5t10.5 -96.5q0 -62 -9.5 -96.5t-38.5 -64.5zM279 605q-18 18 -48 18t-46 -16t-20.5 -41t-4.5 -62q0 -41 4 -63
t20.5 -38.5t46.5 -16.5t46 16t20.5 41t4.5 61q0 40 -4 63t-19 38z" />
<glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="628"
d="M345 27v155l94 93l-94 93v155l250 -248zM67 27v155l95 93l-95 93v155l249 -248z" />
<glyph glyph-name="questiondown" unicode="&#xbf;" horiz-adv-x="523"
d="M173 388v133h138v-133h-138zM246 -197q-88 0 -149 54t-61 146q0 34 12.5 64t36.5 61l74 99q18 23 18 51v20h130v-30q0 -31 -8.5 -54t-29.5 -50l-74 -95q-12 -15 -20.5 -33.5t-8.5 -33.5q0 -36 21 -59t59 -23t59.5 23.5t21.5 60.5h130q0 -90 -60.5 -145.5t-150.5 -55.5z
" />
<glyph glyph-name="Agrave" unicode="&#xc0;" horiz-adv-x="638"
d="M488 0l-42 126h-253l-43 -126h-145l259 712h109l260 -712h-145zM322 502l-90 -259h177zM285 781l-114 170h137l64 -170h-87z" />
<glyph glyph-name="Aacute" unicode="&#xc1;" horiz-adv-x="638"
d="M488 0l-42 126h-253l-43 -126h-145l259 712h109l260 -712h-145zM322 502l-90 -259h177zM349 781h-87l64 170h137z" />
<glyph glyph-name="Acircumflex" unicode="&#xc2;" horiz-adv-x="638"
d="M488 0l-42 126h-253l-43 -126h-145l259 712h109l260 -712h-145zM322 502l-90 -259h177zM400 781l-83 91l-83 -91h-101l132 169h104l132 -169h-101z" />
<glyph glyph-name="Atilde" unicode="&#xc3;" horiz-adv-x="638"
d="M488 0l-42 126h-253l-43 -126h-145l259 712h109l260 -712h-145zM322 502l-90 -259h177zM384 792q-37 0 -72.5 20.5t-60.5 20.5q-17 0 -28.5 -5t-30.5 -24l-56 57q33 33 58 46t54 13q22 0 38.5 -5t42.5 -20.5t51 -15.5q17 0 28.5 5t30.5 24l58 -57q-32 -32 -58 -45.5
t-55 -13.5z" />
<glyph glyph-name="Adieresis" unicode="&#xc4;" horiz-adv-x="638"
d="M488 0l-42 126h-253l-43 -126h-145l259 712h109l260 -712h-145zM322 502l-90 -259h177zM372 783v125h111v-125h-111zM151 783v125h111v-125h-111z" />
<glyph glyph-name="Aring" unicode="&#xc5;" horiz-adv-x="638"
d="M488 0l-42 126h-253l-43 -126h-145l259 712h109l260 -712h-145zM322 502l-90 -259h177zM317 753q-54 0 -92.5 38.5t-38.5 92.5t38.5 92.5t92.5 38.5t92.5 -38.5t38.5 -92.5t-38.5 -92.5t-92.5 -38.5zM317 942q-24 0 -41 -17t-17 -41q0 -23 17 -41t41 -18t41 17t17 42
q0 24 -17 41t-41 17z" />
<glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="979"
d="M458 0v156h-225l-81 -156h-149l372 712h551v-124h-330v-168h282v-124h-282v-172h330v-124h-468zM458 588l-165 -315h165v315z" />
<glyph glyph-name="Ccedilla" unicode="&#xc7;" horiz-adv-x="620"
d="M321 -6q-57 0 -105.5 20t-92 63.5t-54 102t-10.5 176.5q0 117 11 176.5t54.5 103t90.5 63t106 19.5q103 0 173.5 -58t88.5 -167h-141q-11 46 -40.5 73.5t-79.5 27.5q-57 0 -83 -29.5t-33.5 -70.5t-7.5 -138q0 -101 7 -139t33.5 -68.5t83.5 -30.5q50 0 79.5 27.5
t40.5 73.5h141q-18 -108 -89 -166.5t-173 -58.5zM335 -206h-121l69 146h96z" />
<glyph glyph-name="Egrave" unicode="&#xc8;" horiz-adv-x="605"
d="M83 0v712h469v-124h-330v-167h281v-124h-281v-173h330v-124h-469zM278 781l-114 170h137l64 -170h-87z" />
<glyph glyph-name="Eacute" unicode="&#xc9;" horiz-adv-x="605"
d="M83 0v712h469v-124h-330v-167h281v-124h-281v-173h330v-124h-469zM341 781h-87l64 170h137z" />
<glyph glyph-name="Ecircumflex" unicode="&#xca;" horiz-adv-x="605"
d="M83 0v712h469v-124h-330v-167h281v-124h-281v-173h330v-124h-469zM393 781l-83 91l-83 -91h-101l132 169h104l132 -169h-101z" />
<glyph glyph-name="Edieresis" unicode="&#xcb;" horiz-adv-x="605"
d="M83 0v712h469v-124h-330v-167h281v-124h-281v-173h330v-124h-469zM365 783v125h111v-125h-111zM144 783v125h111v-125h-111z" />
<glyph glyph-name="Igrave" unicode="&#xcc;" horiz-adv-x="305"
d="M83 0v712h139v-712h-139zM197 781l-114 170h137l64 -170h-87z" />
<glyph glyph-name="Iacute" unicode="&#xcd;" horiz-adv-x="305"
d="M83 0v712h139v-712h-139zM170 781h-87l64 170h137z" />
<glyph glyph-name="Icircumflex" unicode="&#xce;" horiz-adv-x="305"
d="M83 0v712h139v-712h-139zM350 781l-83 91l-83 -91h-101l132 169h104l132 -169h-101z" />
<glyph glyph-name="Idieresis" unicode="&#xcf;" horiz-adv-x="305"
d="M83 0v712h139v-712h-139zM304 783v125h111v-125h-111zM83 783v125h111v-125h-111z" />
<glyph glyph-name="Ntilde" unicode="&#xd1;" horiz-adv-x="711"
d="M504 0l-282 437v-437h-139v712h124l282 -436v436h139v-712h-124zM423 792q-37 0 -72.5 20.5t-60.5 20.5q-17 0 -28.5 -5t-30.5 -24l-56 57q33 33 58 46t54 13q22 0 38.5 -5t42.5 -20.5t51 -15.5q17 0 28.5 5t30.5 24l58 -57q-32 -32 -58 -45.5t-55 -13.5z" />
<glyph glyph-name="Ograve" unicode="&#xd2;" horiz-adv-x="644"
d="M514 72q-39 -39 -85 -58.5t-107 -19.5q-60 0 -107 19.5t-91 63.5t-54.5 102.5t-10.5 176.5q0 117 11 176.5t54.5 103t90 63t107.5 19.5q59 0 106 -19.5t90.5 -63t55 -104t11.5 -175.5q0 -118 -11 -176.5t-60 -107.5zM411 556q-33 38 -89 38q-29 0 -51.5 -10t-41 -30.5
t-25 -58t-6.5 -139.5q0 -105 6 -140.5t33.5 -66.5t84.5 -31q56 0 82.5 30.5t34 70.5t7.5 137q0 102 -7 139t-28 61zM290 781l-114 170h137l64 -170h-87z" />
<glyph glyph-name="Oacute" unicode="&#xd3;" horiz-adv-x="644"
d="M514 72q-39 -39 -85 -58.5t-107 -19.5q-60 0 -107 19.5t-91 63.5t-54.5 102.5t-10.5 176.5q0 117 11 176.5t54.5 103t90 63t107.5 19.5q59 0 106 -19.5t90.5 -63t55 -104t11.5 -175.5q0 -118 -11 -176.5t-60 -107.5zM411 556q-33 38 -89 38q-29 0 -51.5 -10t-41 -30.5
t-25 -58t-6.5 -139.5q0 -105 6 -140.5t33.5 -66.5t84.5 -31q56 0 82.5 30.5t34 70.5t7.5 137q0 102 -7 139t-28 61zM354 781h-87l64 170h137z" />
<glyph glyph-name="Ocircumflex" unicode="&#xd4;" horiz-adv-x="644"
d="M514 72q-39 -39 -85 -58.5t-107 -19.5q-60 0 -107 19.5t-91 63.5t-54.5 102.5t-10.5 176.5q0 117 11 176.5t54.5 103t90 63t107.5 19.5q59 0 106 -19.5t90.5 -63t55 -104t11.5 -175.5q0 -118 -11 -176.5t-60 -107.5zM411 556q-33 38 -89 38q-29 0 -51.5 -10t-41 -30.5
t-25 -58t-6.5 -139.5q0 -105 6 -140.5t33.5 -66.5t84.5 -31q56 0 82.5 30.5t34 70.5t7.5 137q0 102 -7 139t-28 61zM405 781l-83 91l-83 -91h-101l132 169h104l132 -169h-101z" />
<glyph glyph-name="Otilde" unicode="&#xd5;" horiz-adv-x="644"
d="M514 72q-39 -39 -85 -58.5t-107 -19.5q-60 0 -107 19.5t-91 63.5t-54.5 102.5t-10.5 176.5q0 117 11 176.5t54.5 103t90 63t107.5 19.5q59 0 106 -19.5t90.5 -63t55 -104t11.5 -175.5q0 -118 -11 -176.5t-60 -107.5zM411 556q-33 38 -89 38q-29 0 -51.5 -10t-41 -30.5
t-25 -58t-6.5 -139.5q0 -105 6 -140.5t33.5 -66.5t84.5 -31q56 0 82.5 30.5t34 70.5t7.5 137q0 102 -7 139t-28 61zM389 792q-37 0 -72.5 20.5t-60.5 20.5q-17 0 -28.5 -5t-30.5 -24l-56 57q33 33 58 46t54 13q22 0 38.5 -5t42.5 -20.5t51 -15.5q17 0 28.5 5t30.5 24l58 -57
q-32 -32 -58 -45.5t-55 -13.5z" />
<glyph glyph-name="Odieresis" unicode="&#xd6;" horiz-adv-x="644"
d="M514 72q-39 -39 -85 -58.5t-107 -19.5q-60 0 -107 19.5t-91 63.5t-54.5 102.5t-10.5 176.5q0 117 11 176.5t54.5 103t90 63t107.5 19.5q59 0 106 -19.5t90.5 -63t55 -104t11.5 -175.5q0 -118 -11 -176.5t-60 -107.5zM411 556q-33 38 -89 38q-29 0 -51.5 -10t-41 -30.5
t-25 -58t-6.5 -139.5q0 -105 6 -140.5t33.5 -66.5t84.5 -31q56 0 82.5 30.5t34 70.5t7.5 137q0 102 -7 139t-28 61zM377 783v125h111v-125h-111zM156 783v125h111v-125h-111z" />
<glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="652"
d="M514 72q-39 -39 -85 -58.5t-107 -19.5q-65 0 -113 22l-29 -60h-99l53 111l-5 5q-49 49 -59.5 107.5t-10.5 176.5q0 117 11 176.5t54.5 103t90 63t107.5 19.5q65 0 113 -22l29 60h98l-53 -111l5 -5q48 -48 59.5 -108.5t11.5 -175.5q0 -118 -11 -176.5t-60 -107.5zM322 594
q-29 0 -51.5 -10t-41 -30.5t-25 -58t-6.5 -139.5q0 -114 9 -151l178 373q-26 16 -63 16zM436 507l-178 -372q28 -17 64 -17q56 0 82.5 30.5t34 70.5t7.5 137q0 110 -10 151z" />
<glyph glyph-name="Ugrave" unicode="&#xd9;" horiz-adv-x="668"
d="M334 -6q-112 0 -187 69t-75 181v468h139v-463q0 -61 33 -96t90 -35t90.5 34.5t33.5 96.5v463h138v-468q0 -112 -74.5 -181t-187.5 -69zM302 781l-114 170h137l64 -170h-87z" />
<glyph glyph-name="Uacute" unicode="&#xda;" horiz-adv-x="668"
d="M334 -6q-112 0 -187 69t-75 181v468h139v-463q0 -61 33 -96t90 -35t90.5 34.5t33.5 96.5v463h138v-468q0 -112 -74.5 -181t-187.5 -69zM366 781h-87l64 170h137z" />
<glyph glyph-name="Ucircumflex" unicode="&#xdb;" horiz-adv-x="668"
d="M334 -6q-112 0 -187 69t-75 181v468h139v-463q0 -61 33 -96t90 -35t90.5 34.5t33.5 96.5v463h138v-468q0 -112 -74.5 -181t-187.5 -69zM417 781l-83 91l-83 -91h-101l132 169h104l132 -169h-101z" />
<glyph glyph-name="Udieresis" unicode="&#xdc;" horiz-adv-x="668"
d="M334 -6q-112 0 -187 69t-75 181v468h139v-463q0 -61 33 -96t90 -35t90.5 34.5t33.5 96.5v463h138v-468q0 -112 -74.5 -181t-187.5 -69zM389 783v125h111v-125h-111zM168 783v125h111v-125h-111z" />
<glyph glyph-name="germandbls" unicode="&#xdf;" horiz-adv-x="574"
d="M475 42q-42 -42 -126 -42h-52v110h26q28 0 45 15t17 47v144q0 30 -15.5 45.5t-44.5 15.5h-28v102h28q26 0 43 15t17 45q0 28 -21 47t-68 19q-51 0 -72 -23.5t-21 -70.5v-511h-130v521q0 99 61.5 148t163.5 49q99 0 158 -43.5t59 -131.5q0 -41 -17 -69t-44 -44
q31 -16 46.5 -40t15.5 -69v-160q0 -79 -41 -119z" />
<glyph glyph-name="agrave" unicode="&#xe0;" horiz-adv-x="534"
d="M340 0v45q-27 -27 -55 -38.5t-73 -11.5q-87 0 -131.5 45.5t-44.5 117.5q0 67 45 109t133 42h123v26q0 43 -22.5 62.5t-74.5 19.5q-38 0 -58 -9t-42 -34l-83 81q38 41 79 56.5t109 15.5q222 0 222 -184v-343h-127zM337 220h-103q-73 0 -73 -59q0 -60 75 -60q31 0 48 4.5
t35 21.5t18 65v28zM229 604l-114 170h137l64 -170h-87z" />
<glyph glyph-name="aacute" unicode="&#xe1;" horiz-adv-x="534"
d="M340 0v45q-27 -27 -55 -38.5t-73 -11.5q-87 0 -131.5 45.5t-44.5 117.5q0 67 45 109t133 42h123v26q0 43 -22.5 62.5t-74.5 19.5q-38 0 -58 -9t-42 -34l-83 81q38 41 79 56.5t109 15.5q222 0 222 -184v-343h-127zM337 220h-103q-73 0 -73 -59q0 -60 75 -60q31 0 48 4.5
t35 21.5t18 65v28zM293 604h-87l64 170h137z" />
<glyph glyph-name="acircumflex" unicode="&#xe2;" horiz-adv-x="534"
d="M340 0v45q-27 -27 -55 -38.5t-73 -11.5q-87 0 -131.5 45.5t-44.5 117.5q0 67 45 109t133 42h123v26q0 43 -22.5 62.5t-74.5 19.5q-38 0 -58 -9t-42 -34l-83 81q38 41 79 56.5t109 15.5q222 0 222 -184v-343h-127zM337 220h-103q-73 0 -73 -59q0 -60 75 -60q31 0 48 4.5
t35 21.5t18 65v28zM344 604l-83 91l-83 -91h-101l132 169h104l132 -169h-101z" />
<glyph glyph-name="atilde" unicode="&#xe3;" horiz-adv-x="534"
d="M340 0v45q-27 -27 -55 -38.5t-73 -11.5q-87 0 -131.5 45.5t-44.5 117.5q0 67 45 109t133 42h123v26q0 43 -22.5 62.5t-74.5 19.5q-38 0 -58 -9t-42 -34l-83 81q38 41 79 56.5t109 15.5q222 0 222 -184v-343h-127zM337 220h-103q-73 0 -73 -59q0 -60 75 -60q31 0 48 4.5
t35 21.5t18 65v28zM328 615q-37 0 -72.5 20.5t-60.5 20.5q-17 0 -28.5 -5t-30.5 -24l-56 57q33 33 58 46t54 13q22 0 38.5 -5t42.5 -20.5t51 -15.5q17 0 28.5 5t30.5 24l58 -57q-32 -32 -58 -45.5t-55 -13.5z" />
<glyph glyph-name="adieresis" unicode="&#xe4;" horiz-adv-x="534"
d="M340 0v45q-27 -27 -55 -38.5t-73 -11.5q-87 0 -131.5 45.5t-44.5 117.5q0 67 45 109t133 42h123v26q0 43 -22.5 62.5t-74.5 19.5q-38 0 -58 -9t-42 -34l-83 81q38 41 79 56.5t109 15.5q222 0 222 -184v-343h-127zM337 220h-103q-73 0 -73 -59q0 -60 75 -60q31 0 48 4.5
t35 21.5t18 65v28zM316 606v125h111v-125h-111zM95 606v125h111v-125h-111z" />
<glyph glyph-name="aring" unicode="&#xe5;" horiz-adv-x="534"
d="M340 0v45q-27 -27 -55 -38.5t-73 -11.5q-87 0 -131.5 45.5t-44.5 117.5q0 67 45 109t133 42h123v26q0 43 -22.5 62.5t-74.5 19.5q-38 0 -58 -9t-42 -34l-83 81q38 41 79 56.5t109 15.5q222 0 222 -184v-343h-127zM337 220h-103q-73 0 -73 -59q0 -60 75 -60q31 0 48 4.5
t35 21.5t18 65v28zM261 584q-54 0 -92.5 38.5t-38.5 92.5t38.5 92.5t92.5 38.5t92.5 -38.5t38.5 -92.5t-38.5 -92.5t-92.5 -38.5zM261 773q-24 0 -41 -17t-17 -41q0 -23 17 -41t41 -18t41 17t17 42q0 24 -17 41t-41 17z" />
<glyph glyph-name="ae" unicode="&#xe6;" horiz-adv-x="838"
d="M465 220q0 -52 30 -84t84 -32q40 0 65.5 11t52.5 38l79 -77q-43 -43 -86.5 -62.5t-111.5 -19.5q-56 0 -102.5 17t-80.5 56q-41 -44 -81.5 -58.5t-101.5 -14.5q-86 0 -131 46t-45 118q0 67 45 109t133 42h123v26q0 43 -22.5 62.5t-74.5 19.5q-38 0 -58 -9t-42 -34l-83 81
q38 41 79 56.5t109 15.5q118 0 171 -57q56 57 148 57q106 0 166.5 -69.5t60.5 -179.5v-58h-326zM651 365q-11 25 -33 39.5t-54 14.5t-54 -14.5t-33.5 -41.5t-11.5 -54h198q0 27 -12 56zM337 220h-103q-73 0 -73 -59q0 -60 75 -60q31 0 48 4.5t35 21.5t18 65v28z" />
<glyph glyph-name="ccedilla" unicode="&#xe7;" horiz-adv-x="482"
d="M280 -6q-94 0 -163.5 61.5t-69.5 205.5t69 205t164 61q105 0 172 -70l-88 -88q-20 22 -39.5 31.5t-44.5 9.5q-46 0 -74.5 -35t-28.5 -114q0 -80 28.5 -115t74.5 -35t84 41l88 -87q-68 -71 -172 -71zM281 -206h-121l69 146h96z" />
<glyph glyph-name="egrave" unicode="&#xe8;" horiz-adv-x="548"
d="M175 220q0 -52 30 -84t84 -32q40 0 65.5 11t52.5 38l79 -77q-43 -43 -86.5 -62.5t-111.5 -19.5q-107 0 -174 60t-67 207q0 125 62 195.5t165 70.5q106 0 166.5 -69.5t60.5 -179.5v-58h-326zM361 365q-11 25 -33 39.5t-54 14.5t-54 -14.5t-33.5 -41.5t-11.5 -54h198
q0 27 -12 56zM245 604l-114 170h137l64 -170h-87z" />
<glyph glyph-name="eacute" unicode="&#xe9;" horiz-adv-x="548"
d="M175 220q0 -52 30 -84t84 -32q40 0 65.5 11t52.5 38l79 -77q-43 -43 -86.5 -62.5t-111.5 -19.5q-107 0 -174 60t-67 207q0 125 62 195.5t165 70.5q106 0 166.5 -69.5t60.5 -179.5v-58h-326zM361 365q-11 25 -33 39.5t-54 14.5t-54 -14.5t-33.5 -41.5t-11.5 -54h198
q0 27 -12 56zM309 604h-87l64 170h137z" />
<glyph glyph-name="ecircumflex" unicode="&#xea;" horiz-adv-x="548"
d="M175 220q0 -52 30 -84t84 -32q40 0 65.5 11t52.5 38l79 -77q-43 -43 -86.5 -62.5t-111.5 -19.5q-107 0 -174 60t-67 207q0 125 62 195.5t165 70.5q106 0 166.5 -69.5t60.5 -179.5v-58h-326zM361 365q-11 25 -33 39.5t-54 14.5t-54 -14.5t-33.5 -41.5t-11.5 -54h198
q0 27 -12 56zM360 604l-83 91l-83 -91h-101l132 169h104l132 -169h-101z" />
<glyph glyph-name="edieresis" unicode="&#xeb;" horiz-adv-x="548"
d="M175 220q0 -52 30 -84t84 -32q40 0 65.5 11t52.5 38l79 -77q-43 -43 -86.5 -62.5t-111.5 -19.5q-107 0 -174 60t-67 207q0 125 62 195.5t165 70.5q106 0 166.5 -69.5t60.5 -179.5v-58h-326zM361 365q-11 25 -33 39.5t-54 14.5t-54 -14.5t-33.5 -41.5t-11.5 -54h198
q0 27 -12 56zM332 606v125h111v-125h-111zM111 606v125h111v-125h-111z" />
<glyph glyph-name="igrave" unicode="&#xec;" horiz-adv-x="275"
d="M73 0v521h130v-521h-130zM187 604l-114 170h137l64 -170h-87z" />
<glyph glyph-name="iacute" unicode="&#xed;" horiz-adv-x="275"
d="M73 0v521h130v-521h-130zM160 604h-87l64 170h137z" />
<glyph glyph-name="icircumflex" unicode="&#xee;" horiz-adv-x="275"
d="M73 0v521h130v-521h-130zM340 604l-83 91l-83 -91h-101l132 169h104l132 -169h-101z" />
<glyph glyph-name="idieresis" unicode="&#xef;" horiz-adv-x="275"
d="M73 0v521h130v-521h-130zM294 606v125h111v-125h-111zM73 606v125h111v-125h-111z" />
<glyph glyph-name="ntilde" unicode="&#xf1;" horiz-adv-x="573"
d="M376 0v315q0 49 -25 72t-61 23q-37 0 -62 -22.5t-25 -72.5v-315h-130v521h127v-48q51 54 130 54q38 0 69.5 -12t57 -37.5t37.5 -62t12 -82.5v-333h-130zM357 615q-37 0 -72.5 20.5t-60.5 20.5q-17 0 -28.5 -5t-30.5 -24l-56 57q33 33 58 46t54 13q22 0 38.5 -5
t42.5 -20.5t51 -15.5q17 0 28.5 5t30.5 24l58 -57q-32 -32 -58 -45.5t-55 -13.5z" />
<glyph glyph-name="ograve" unicode="&#xf2;"
d="M433 58q-27 -29 -67 -46.5t-95 -17.5q-54 0 -94 17.5t-70.5 49.5t-43 78.5t-12.5 121.5q0 77 12 121t43 77t70.5 50.5t94.5 17.5q54 0 94.5 -17.5t71 -49.5t43 -78.5t12.5 -120.5q0 -78 -12 -122t-47 -81zM332 387q-23 23 -61 23q-37 0 -57.5 -20.5t-26.5 -51t-6 -77.5
q0 -63 7 -87t26.5 -43.5t56.5 -19.5q38 0 58.5 20.5t26.5 51t6 78.5q0 51 -5 78.5t-25 47.5zM236 604l-114 170h137l64 -170h-87z" />
<glyph glyph-name="oacute" unicode="&#xf3;"
d="M433 58q-27 -29 -67 -46.5t-95 -17.5q-54 0 -94 17.5t-70.5 49.5t-43 78.5t-12.5 121.5q0 77 12 121t43 77t70.5 50.5t94.5 17.5q54 0 94.5 -17.5t71 -49.5t43 -78.5t12.5 -120.5q0 -78 -12 -122t-47 -81zM332 387q-23 23 -61 23q-37 0 -57.5 -20.5t-26.5 -51t-6 -77.5
q0 -63 7 -87t26.5 -43.5t56.5 -19.5q38 0 58.5 20.5t26.5 51t6 78.5q0 51 -5 78.5t-25 47.5zM304 604h-87l64 170h137z" />
<glyph glyph-name="ocircumflex" unicode="&#xf4;"
d="M433 58q-27 -29 -67 -46.5t-95 -17.5q-54 0 -94 17.5t-70.5 49.5t-43 78.5t-12.5 121.5q0 77 12 121t43 77t70.5 50.5t94.5 17.5q54 0 94.5 -17.5t71 -49.5t43 -78.5t12.5 -120.5q0 -78 -12 -122t-47 -81zM332 387q-23 23 -61 23q-37 0 -57.5 -20.5t-26.5 -51t-6 -77.5
q0 -63 7 -87t26.5 -43.5t56.5 -19.5q38 0 58.5 20.5t26.5 51t6 78.5q0 51 -5 78.5t-25 47.5zM355 604l-83 91l-83 -91h-101l132 169h104l132 -169h-101z" />
<glyph glyph-name="otilde" unicode="&#xf5;"
d="M433 58q-27 -29 -67 -46.5t-95 -17.5q-54 0 -94 17.5t-70.5 49.5t-43 78.5t-12.5 121.5q0 77 12 121t43 77t70.5 50.5t94.5 17.5q54 0 94.5 -17.5t71 -49.5t43 -78.5t12.5 -120.5q0 -78 -12 -122t-47 -81zM332 387q-23 23 -61 23q-37 0 -57.5 -20.5t-26.5 -51t-6 -77.5
q0 -63 7 -87t26.5 -43.5t56.5 -19.5q38 0 58.5 20.5t26.5 51t6 78.5q0 51 -5 78.5t-25 47.5zM339 615q-37 0 -72.5 20.5t-60.5 20.5q-17 0 -28.5 -5t-30.5 -24l-56 57q33 33 58 46t54 13q22 0 38.5 -5t42.5 -20.5t51 -15.5q17 0 28.5 5t30.5 24l58 -57q-32 -32 -58 -45.5
t-55 -13.5z" />
<glyph glyph-name="odieresis" unicode="&#xf6;"
d="M433 58q-27 -29 -67 -46.5t-95 -17.5q-54 0 -94 17.5t-70.5 49.5t-43 78.5t-12.5 121.5q0 77 12 121t43 77t70.5 50.5t94.5 17.5q54 0 94.5 -17.5t71 -49.5t43 -78.5t12.5 -120.5q0 -78 -12 -122t-47 -81zM332 387q-23 23 -61 23q-37 0 -57.5 -20.5t-26.5 -51t-6 -77.5
q0 -63 7 -87t26.5 -43.5t56.5 -19.5q38 0 58.5 20.5t26.5 51t6 78.5q0 51 -5 78.5t-25 47.5zM327 606v125h111v-125h-111zM106 606v125h111v-125h-111z" />
<glyph glyph-name="divide" unicode="&#xf7;"
d="M207 423v130h130v-130h-130zM46 225v121h451v-121h-451zM207 18v130h130v-130h-130z" />
<glyph glyph-name="oslash" unicode="&#xf8;"
d="M433 58q-27 -29 -67 -46.5t-95 -17.5q-31 0 -56 6t-48 17l-36 -61h-79l59 101q-35 35 -47.5 82t-12.5 122q0 77 12 121t43 77t70.5 50.5t94.5 17.5q61 0 105 -22l35 60h80l-60 -101q35 -36 48 -82t13 -121q0 -78 -12 -122t-47 -81zM271 410q-37 0 -57.5 -20.5t-26.5 -51
t-6 -77.5q0 -31 1.5 -49.5t5.5 -36.5l132 222q-21 13 -49 13zM354 346l-131 -222q21 -13 48 -13q38 0 58.5 20.5t26.5 51t6 78.5q0 37 -1.5 51t-6.5 34z" />
<glyph glyph-name="ugrave" unicode="&#xf9;" horiz-adv-x="573"
d="M373 0v48q-51 -54 -130 -54q-38 0 -69.5 12t-57 37.5t-37.5 62t-12 82.5v333h130v-315q0 -49 25 -72t61 -23q37 0 62 22.5t25 72.5v315h130v-521h-127zM251 604l-114 170h137l64 -170h-87z" />
<glyph glyph-name="uacute" unicode="&#xfa;" horiz-adv-x="573"
d="M373 0v48q-51 -54 -130 -54q-38 0 -69.5 12t-57 37.5t-37.5 62t-12 82.5v333h130v-315q0 -49 25 -72t61 -23q37 0 62 22.5t25 72.5v315h130v-521h-127zM315 604h-87l64 170h137z" />
<glyph glyph-name="ucircumflex" unicode="&#xfb;" horiz-adv-x="573"
d="M373 0v48q-51 -54 -130 -54q-38 0 -69.5 12t-57 37.5t-37.5 62t-12 82.5v333h130v-315q0 -49 25 -72t61 -23q37 0 62 22.5t25 72.5v315h130v-521h-127zM366 604l-83 91l-83 -91h-101l132 169h104l132 -169h-101z" />
<glyph glyph-name="udieresis" unicode="&#xfc;" horiz-adv-x="573"
d="M373 0v48q-51 -54 -130 -54q-38 0 -69.5 12t-57 37.5t-37.5 62t-12 82.5v333h130v-315q0 -49 25 -72t61 -23q37 0 62 22.5t25 72.5v315h130v-521h-127zM338 606v125h111v-125h-111zM117 606v125h111v-125h-111z" />
<glyph glyph-name="ydieresis" unicode="&#xff;" horiz-adv-x="494"
d="M267 -84q-9 -24 -17.5 -39t-25.5 -32t-45.5 -26.5t-62.5 -9.5h-51v117h30q28 0 41.5 9.5t23.5 37.5l22 64l-178 484h137l108 -322l104 322h137zM299 606v125h111v-125h-111zM78 606v125h111v-125h-111z" />
<glyph glyph-name="dotlessi" unicode="&#x131;" horiz-adv-x="275"
d="M73 0v521h130v-521h-130z" />
<glyph glyph-name="OE" unicode="&#x152;" horiz-adv-x="966"
d="M446 0v44q-23 -25 -59 -37.5t-69 -12.5q-114 0 -175 61t-72.5 124t-11.5 177q0 118 11 178.5t72.5 122t175.5 61.5q37 0 70.5 -12t57.5 -38v44h465v-123h-327l1 -169h278v-122h-278l-1 -175h328v-123h-466zM411 556q-33 38 -89 38q-29 0 -51.5 -10t-41 -30.5t-25 -58
t-6.5 -139.5q0 -105 6 -140.5t33.5 -66.5t84.5 -31q56 0 82.5 30.5t34 70.5t7.5 137q0 102 -7 139t-28 61z" />
<glyph glyph-name="oe" unicode="&#x153;" horiz-adv-x="863"
d="M490 220q0 -52 30 -84t84 -32q40 0 65 11t52 38l80 -77q-43 -43 -86.5 -62.5t-111.5 -19.5q-53 0 -98 16t-76 50q-25 -31 -65 -48.5t-93 -17.5q-54 0 -94 17.5t-70.5 49.5t-43 78.5t-12.5 121.5q0 77 12 121t43 77t70.5 50.5t94.5 17.5q54 0 94.5 -18.5t66.5 -50.5
q57 69 157 69q106 0 166.5 -69.5t60.5 -179.5v-58h-326zM676 365q-11 25 -33 39.5t-54 14.5t-54.5 -14.5t-33.5 -40t-11 -55.5h197q0 30 -11 56zM332 387q-23 23 -61 23q-37 0 -57.5 -20.5t-26.5 -51t-6 -77.5q0 -63 7 -87t26.5 -43.5t56.5 -19.5q38 0 58.5 20.5t26.5 51
t6 78.5q0 51 -5 78.5t-25 47.5z" />
<glyph glyph-name="Ydieresis" unicode="&#x178;" horiz-adv-x="572"
d="M355 292v-292h-138v292l-214 420h151l133 -287l131 287h151zM340 783v125h111v-125h-111zM119 783v125h111v-125h-111z" />
<glyph glyph-name="florin" unicode="&#x192;" horiz-adv-x="427"
d="M328 610q-46 0 -54 -47l-29 -166h96v-100h-113l-87 -488h-130l87 488h-67v100h84l31 174q11 62 56.5 105.5t120.5 43.5l74 -1v-109h-69z" />
<glyph glyph-name="hungarumlaut" unicode="&#x2ba;" horiz-adv-x="500"
d="M350 604h-86l63 170h138zM144 604h-87l63 170h138z" />
<glyph glyph-name="caron" unicode="&#x2c7;" horiz-adv-x="500"
d="M302 604h-104l-132 169h101l83 -90l83 90h101z" />
<glyph glyph-name="macron" unicode="&#x2c9;" horiz-adv-x="500"
d="M92 630v87h316v-87h-316z" />
<glyph glyph-name="breve" unicode="&#x2d8;" horiz-adv-x="500"
d="M251 591q-71 0 -118 37.5t-47 113.5h88q4 -30 25 -45t52 -15t51.5 14.5t24.5 45.5h87q0 -76 -46 -113.5t-117 -37.5z" />
<glyph glyph-name="dotaccent" unicode="&#x2d9;" horiz-adv-x="500"
d="M183 608v106h134v-106h-134z" />
<glyph glyph-name="ring" unicode="&#x2da;" horiz-adv-x="500"
d="M250 584q-54 0 -92.5 38.5t-38.5 92.5t38.5 92.5t92.5 38.5t92.5 -38.5t38.5 -92.5t-38.5 -92.5t-92.5 -38.5zM250 773q-24 0 -41 -17t-17 -41q0 -23 17 -41t41 -18t41 17t17 42q0 24 -17 41t-41 17z" />
<glyph glyph-name="ogonek" unicode="&#x2db;" horiz-adv-x="500"
d="M213 -206l-44 146h97l68 -146h-121z" />
<glyph glyph-name="circumflex" unicode="&#x302;" horiz-adv-x="500"
d="M333 604l-83 91l-83 -91h-101l132 169h104l132 -169h-101z" />
<glyph glyph-name="tilde" unicode="&#x303;" horiz-adv-x="500"
d="M317 615q-37 0 -72.5 20.5t-60.5 20.5q-17 0 -28.5 -5t-30.5 -24l-56 57q33 33 58 46t54 13q22 0 38.5 -5t42.5 -20.5t51 -15.5q17 0 28.5 5t30.5 24l58 -57q-32 -32 -58 -45.5t-55 -13.5z" />
<glyph glyph-name="summation" unicode="&#x3a3;" horiz-adv-x="552"
d="M40 -191v110l189 376l-186 355v110h468v-124h-306l141 -279v-129l-146 -295h315v-124h-475z" />
<glyph glyph-name="Omega" unicode="&#x3a9;" horiz-adv-x="644"
d="M366 0v109q35 16 51.5 40.5t22.5 66t6 133.5q0 104 -7 143t-25.5 60t-41 31.5t-50.5 10.5q-27 0 -50.5 -10.5t-41.5 -31t-25 -60t-7 -143.5q0 -90 6 -132t22.5 -67t51.5 -41v-109h-219v123h59q-23 25 -36.5 56.5t-18 74t-4.5 102.5q0 117 11 176.5t54.5 103t90 63
t107.5 19.5q59 0 106 -19.5t90.5 -63t55 -104t11.5 -175.5q0 -57 -4.5 -100.5t-18 -75.5t-36.5 -57h59v-123h-219z" />
<glyph glyph-name="pi" unicode="&#x3c0;" horiz-adv-x="592"
d="M386 0v399h-180v-399h-130v521h439v-521h-129z" />
<glyph glyph-name="endash" unicode="&#x2013;"
d="M50 225v121h443v-121h-443z" />
<glyph glyph-name="emdash" unicode="&#x2014;" horiz-adv-x="1027"
d="M59 226v125h909v-125h-909z" />
<glyph glyph-name="quoteleft" unicode="&#x2018;" horiz-adv-x="273"
d="M68 589v123l136 105v-228h-136z" />
<glyph glyph-name="quoteright" unicode="&#x2019;" horiz-adv-x="273"
d="M68 485v227h136v-124z" />
<glyph glyph-name="quotesinglbase" unicode="&#x201a;" horiz-adv-x="271"
d="M68 -104v228h136v-124z" />
<glyph glyph-name="quotedblleft" unicode="&#x201c;" horiz-adv-x="482"
d="M278 589v123l136 105v-228h-136zM68 589v123l135 105v-228h-135z" />
<glyph glyph-name="quotedblright" unicode="&#x201d;" horiz-adv-x="482"
d="M278 485v227h136v-124zM68 485v227h135v-124z" />
<glyph glyph-name="quotedblbase" unicode="&#x201e;" horiz-adv-x="485"
d="M278 -104v228h136v-124zM68 -104v228h135v-124z" />
<glyph glyph-name="dagger" unicode="&#x2020;" horiz-adv-x="579"
d="M354 410v-410h-130v410h-167v117h167v185h130v-185h168v-117h-168z" />
<glyph glyph-name="daggerdbl" unicode="&#x2021;" horiz-adv-x="579"
d="M354 -6v-185h-130v185h-167v117h167v299h-167v117h167v185h130v-185h168v-117h-168v-299h168v-117h-168z" />
<glyph glyph-name="bullet" unicode="&#x2022;" horiz-adv-x="493"
d="M246 171q-68 0 -115.5 47.5t-47.5 115.5t47.5 115.5t115.5 47.5t115.5 -47.5t47.5 -115.5t-47.5 -115.5t-115.5 -47.5z" />
<glyph glyph-name="ellipsis" unicode="&#x2026;" horiz-adv-x="846"
d="M637 0v141h141v-141h-141zM352 0v141h141v-141h-141zM68 0v141h142v-141h-142z" />
<glyph glyph-name="perthousand" unicode="&#x2030;" horiz-adv-x="1211"
d="M1013 -6q-63 0 -104 35.5t-41 101.5v99q0 64 41.5 100.5t103.5 36.5q63 0 104 -35.5t41 -101.5v-99q0 -65 -41.5 -101t-103.5 -36zM651 -6q-63 0 -104 35.5t-41 101.5v99q0 64 41.5 100.5t103.5 36.5q63 0 104 -35.5t41 -101.5v-99q0 -65 -41.5 -101t-103.5 -36zM307 0
h-102l337 712h102zM197 345q-63 0 -104 35.5t-41 101.5v99q0 64 41.5 100.5t103.5 36.5q63 0 104 -35.5t41 -101.5v-99q0 -65 -41.5 -101t-103.5 -36zM1064 226q0 57 -51 57t-51 -57v-91q0 -57 51 -57t51 56v92zM702 226q0 57 -51 57t-51 -57v-91q0 -57 51 -57t51 57v91z
M248 577q0 57 -51 57t-51 -57v-91q0 -57 51 -57t51 57v91z" />
<glyph glyph-name="guilsinglleft" unicode="&#x2039;" horiz-adv-x="350"
d="M34 275l249 248v-155l-94 -93l94 -93v-155z" />
<glyph glyph-name="guilsinglright" unicode="&#x203a;" horiz-adv-x="350"
d="M67 27v155l95 93l-95 93v155l249 -248z" />
<glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="924"
d="M765 285v252l-80 -157h-84l-80 157v-252h-95v427h95l122 -228l122 228h95v-427h-95zM250 627v-342h-95v342h-110v85h315v-85h-110z" />
<glyph glyph-name="partialdiff" unicode="&#x2202;" horiz-adv-x="555"
d="M425 56q-26 -27 -65 -44.5t-91 -17.5t-90 17t-68 48.5t-42.5 76.5t-12.5 118q0 74 12.5 119t41.5 76t65.5 47.5t88.5 16.5q29 0 48.5 -5.5t38.5 -23.5v27q0 36 -24.5 66.5t-79.5 30.5q-61 0 -102 -40l-81 82q39 37 83.5 52.5t105.5 15.5q112 0 170.5 -64.5t58.5 -172.5
v-227q0 -74 -12 -118t-45 -80zM325 374q-22 22 -56 22t-53 -19.5t-24.5 -49.5t-5.5 -73q0 -44 3 -71t24.5 -49.5t55.5 -22.5t53 19.5t24.5 50t5.5 73.5q0 44 -3 70.5t-24 49.5z" />
<glyph glyph-name="Delta" unicode="&#x2206;" horiz-adv-x="634"
d="M3 0l260 712h108l260 -712h-628zM320 502l-134 -385h264z" />
<glyph glyph-name="product" unicode="&#x220f;" horiz-adv-x="685"
d="M463 -191v828h-241v-828h-139v951h519v-951h-139z" />
<glyph glyph-name="fraction" unicode="&#x2215;" horiz-adv-x="208"
d="M-14 0h-101l337 712h101z" />
<glyph glyph-name="periodcentered" unicode="&#x2219;" horiz-adv-x="285"
d="M68 212v148h149v-148h-149z" />
<glyph glyph-name="radical" unicode="&#x221a;" horiz-adv-x="596"
d="M474 588l-194 -588h-105l-172 521h141l84 -273l143 464h195v-124h-92z" />
<glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="851"
d="M606 96q-52 0 -96 24t-85 70q-41 -46 -84.5 -70t-95.5 -24q-90 0 -140 53t-50 135t50 136t140 54q52 0 95.5 -24t84.5 -71q40 45 85 70t96 25q90 0 140 -54t50 -136t-50 -135t-140 -53zM605 346q-24 0 -43 -15t-48 -50q28 -34 47 -49.5t44 -15.5q28 0 46.5 17.5
t18.5 47.5t-18.5 47.5t-46.5 17.5zM245 347q-27 0 -45.5 -17.5t-18.5 -48.5q0 -30 18.5 -47.5t45.5 -17.5q24 0 44 16t48 49q-27 32 -48 49t-44 17z" />
<glyph glyph-name="integral" unicode="&#x222b;" horiz-adv-x="490"
d="M384 615q-71 0 -71 -71v-549q0 -86 -51.5 -133.5t-139.5 -47.5h-65v110h49q71 0 71 70v549q0 87 51.5 134.5t139.5 47.5h65v-110h-49z" />
<glyph glyph-name="approxequal" unicode="&#x2248;" horiz-adv-x="606"
d="M404 307q-55 0 -98.5 23t-61 28.5t-39.5 5.5q-23 0 -41.5 -8t-44.5 -34l-82 82q47 47 83 66.5t81 19.5q55 0 98 -23t61 -29t39 -6q24 0 42 8t45 35l83 -82q-46 -46 -83 -66t-82 -20zM405 81q-55 0 -98 23t-61 29t-39 6q-24 0 -42 -8t-45 -35l-83 82q47 47 84 66.5
t82 19.5q54 0 97.5 -23t61 -28.5t39.5 -5.5q23 0 41.5 8t44.5 34l82 -82q-47 -47 -83 -66.5t-81 -19.5z" />
<glyph glyph-name="notequal" unicode="&#x2260;" horiz-adv-x="602"
d="M232 116l-103 -129l-79 62l55 67h-55v122h149l78 95h-227v122h320l103 129l79 -62l-55 -67h55v-122h-148l-78 -95h226v-122h-320z" />
<glyph glyph-name="lessequal" unicode="&#x2264;" horiz-adv-x="1027"
d="M797 -86l-497 498l1 -460l-116 116v545h546l116 -116l-460 2l497 -498z" />
<glyph glyph-name="greaterequal" unicode="&#x2265;" horiz-adv-x="1027"
d="M725 -47l2 459l-498 -498l-87 87l498 498l-460 -2l116 116h545v-544z" />
<glyph glyph-name="lozenge" unicode="&#x25ca;" horiz-adv-x="636"
d="M318 -26l-263 367l263 366l263 -366zM318 505l-117 -164l117 -165l117 165z" />
<glyph glyph-name="fi" unicode="&#xf001;" horiz-adv-x="602"
d="M398 610v106h134v-106h-134zM400 0v506h130v-506h-130zM215 407v-407h-130v407h-54v99h54v65q0 61 38.5 105t113.5 44h74v-110h-50q-46 0 -46 -47v-57h96v-99h-96z" />
<glyph glyph-name="fl" unicode="&#xf002;" horiz-adv-x="648"
d="M550 0q-75 0 -113.5 43.5t-38.5 105.5v563h130v-555q0 -47 46 -47h50v-110h-74zM215 407v-407h-130v407h-54v99h54v65q0 61 38.5 105t113.5 44h74v-110h-50q-46 0 -46 -47v-57h96v-99h-96z" />
<glyph glyph-name="glyph225" horiz-adv-x="593"
d="M101 0v244l-64 -41v116l64 41v352h139v-265l128 81v-115l-128 -81v-208h323v-124h-462z" />
<glyph glyph-name="glyph226" horiz-adv-x="336"
d="M235 0q-75 0 -113 43.5t-38 105.5v153l-54 -33v109l54 34v300h130v-222l60 37v-109l-60 -38v-223q0 -24 10.5 -35.5t34.5 -11.5h50v-110h-74z" />
<glyph glyph-name="glyph227" horiz-adv-x="591"
d="M279 -6q-85 0 -147 21t-113 73l90 90q32 -32 75.5 -46t96.5 -14q126 0 126 88q0 39 -16 54t-31 21.5t-38 9.5l-86 12q-91 13 -140 61.5t-49 137.5q0 97 66.5 156.5t181.5 59.5q75 0 129.5 -19t100.5 -64l-88 -87q-30 28 -67.5 38.5t-78.5 10.5q-54 0 -82 -25t-28 -65
q0 -16 4.5 -28t22.5 -28.5t60 -22.5l84 -12q90 -13 127.5 -47.5t50.5 -72t13 -86.5q0 -101 -74 -158.5t-190 -57.5zM346 781h-104l-132 169h101l83 -90l83 90h101z" />
<glyph glyph-name="glyph228" horiz-adv-x="501"
d="M244 -6q-75 0 -125.5 14.5t-96.5 60.5l85 85q28 -28 65 -38.5t74 -10.5q38 0 65 13t27 41q0 20 -12.5 32.5t-42.5 15.5l-82 8q-74 7 -113 41.5t-39 104.5q0 78 58.5 122t142.5 44q68 0 115 -13t84 -48l-80 -81q-20 18 -53 26.5t-68 8.5q-36 0 -55 -14.5t-19 -35.5
q0 -18 11 -30t43 -15l82 -8q76 -7 115.5 -46.5t39.5 -106.5q0 -83 -61.5 -126.5t-159.5 -43.5zM302 604h-104l-132 169h101l83 -90l83 90h101z" />
<glyph glyph-name="glyph229" horiz-adv-x="548"
d="M40 0v112l304 476h-291v124h455v-110l-305 -478h305v-124h-468zM329 781h-104l-132 169h101l83 -90l83 90h101z" />
<glyph glyph-name="glyph230" horiz-adv-x="478"
d="M37 0v99l231 305h-218v117h384v-99l-234 -305h234v-117h-397zM294 604h-104l-132 169h101l83 -90l83 90h101z" />
<glyph glyph-name="glyph231" horiz-adv-x="353"
d="M110 436v350h130v-350h-130zM110 -74v350h130v-350h-130z" />
<glyph glyph-name="glyph232" horiz-adv-x="682"
d="M560 83q-36 -39 -86.5 -61t-112.5 -22h-255v307h-69v106h69v299h257q123 0 182.5 -67.5t68.5 -120.5t9 -168q0 -124 -8.5 -173t-54.5 -100zM459 537q-19 26 -44.5 39t-64.5 13h-105v-176h116v-106h-116v-184h105q76 0 101 37.5t29 67.5t4 126q0 97 -4 128t-21 55z" />
<glyph glyph-name="glyph233"
d="M428 56q-26 -27 -65.5 -44.5t-91.5 -17.5q-53 0 -91 17t-68.5 48t-43 76.5t-12.5 118.5q0 74 12 117.5t45 78.5t76.5 46.5t72.5 11.5q11 0 17 -1l-34 62h-114v91h68l-31 60h139l31 -60h92v-91h-46l40 -77q37 -71 49.5 -119t12.5 -119q0 -74 -12 -118t-46 -80zM329 374
q-22 22 -58 22q-35 0 -54.5 -20t-25 -49.5t-5.5 -72.5q0 -61 6.5 -83t25 -41t53.5 -19q36 0 55.5 20t24.5 48t5 75q0 62 -5.5 83t-21.5 37z" />
<glyph glyph-name="glyph234" horiz-adv-x="572"
d="M355 292v-292h-138v292l-214 420h151l133 -287l131 287h151zM317 781h-87l64 170h137z" />
<glyph glyph-name="glyph235" horiz-adv-x="494"
d="M267 -84q-9 -24 -17.5 -39t-25.5 -32t-45.5 -26.5t-62.5 -9.5h-51v117h30q28 0 41.5 9.5t23.5 37.5l22 64l-178 484h137l108 -322l104 322h137zM276 604h-87l64 170h137z" />
<glyph glyph-name="glyph236" horiz-adv-x="633"
d="M359 138h-137v-138h-139v712h139v-131h137q107 0 171 -63t64 -158q0 -94 -64 -158t-171 -64zM352 457h-130v-195h130q47 0 75 27t28 71q0 43 -28 70t-75 27z" />
<glyph glyph-name="glyph237" horiz-adv-x="562"
d="M456 41q-47 -47 -127 -47q-42 0 -71 11.5t-55 40.5v-237h-130v903h130v-237q25 28 55 40t71 12q80 0 116.5 -36.5t50 -83.5t13.5 -146q0 -78 -9 -131.5t-44 -88.5zM291 410q-54 0 -71 -37t-17 -112q0 -76 16.5 -113t71.5 -37q53 0 70.5 38t17.5 112q0 75 -17 112t-71 37z
" />
<glyph glyph-name="glyph238"
d="M50 225v121h443v-121h-443z" />
<glyph glyph-name="glyph239"
d="M412 63l-141 141l-140 -141l-82 82l141 141l-141 141l82 82l140 -141l141 141l82 -82l-141 -141l141 -141z" />
<glyph glyph-name="glyph240" horiz-adv-x="292"
d="M128 285v321l-90 -78v106l90 78h95v-427h-95z" />
<glyph glyph-name="glyph241" horiz-adv-x="358"
d="M43 285v85l156 171q22 23 22 47q0 43 -42 43q-18 0 -30 -9.5t-12 -34.5h-94q0 60 38.5 94.5t97.5 34.5t97.5 -34.5t38.5 -93.5q0 -37 -14 -57.5t-38 -46.5l-105 -114h157v-85h-272z" />
<glyph glyph-name="glyph242" horiz-adv-x="368"
d="M184 281q-59 0 -100 32.5t-41 99.5h94q0 -48 47 -48t47 50q0 21 -13.5 34.5t-35.5 13.5h-13v81h13q22 0 33 13t11 30q0 21 -11.5 32.5t-30.5 11.5q-18 0 -30 -11t-12 -31h-94q0 57 39 92t97 35q59 0 97.5 -35.5t38.5 -90.5q0 -32 -12.5 -52t-32.5 -32q22 -14 36 -36
t14 -58q0 -64 -40 -97.5t-101 -33.5z" />
<glyph glyph-name="glyph243" horiz-adv-x="862"
d="M547 0v85l156 171q23 24 23 47q0 43 -43 43q-18 0 -29.5 -9.5t-11.5 -34.5h-95q0 60 38.5 94.5t97.5 34.5t97.5 -34.5t38.5 -93.5q0 -37 -14 -57.5t-38 -46.5l-105 -114h157v-85h-272zM283 0h-101l337 712h101zM128 285v321l-90 -78v106l90 78h95v-427h-95z" />
<glyph glyph-name="glyph244" horiz-adv-x="836"
d="M763 57v-57h-90v57h-176v89l143 281h103l-144 -281h74v62h90v-62h33v-89h-33zM288 0h-102l337 712h102zM128 285v321l-90 -78v106l90 78h95v-427h-95z" />
<glyph glyph-name="glyph245" horiz-adv-x="865"
d="M792 57v-57h-90v57h-176v89l143 281h103l-144 -281h74v62h90v-62h33v-89h-33zM320 0h-102l337 712h102zM184 281q-59 0 -100 32.5t-41 99.5h94q0 -48 47 -48t47 50q0 21 -13.5 34.5t-35.5 13.5h-13v81h13q22 0 33 13t11 30q0 21 -11.5 32.5t-30.5 11.5q-18 0 -30 -11
t-12 -31h-94q0 57 39 92t97 35q59 0 97.5 -35.5t38.5 -90.5q0 -32 -12.5 -52t-32.5 -32q22 -14 36 -36t14 -58q0 -64 -40 -97.5t-101 -33.5z" />
</font>
</defs></svg>

Before

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,604 +0,0 @@
<?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" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<metadata>
Created by FontForge 20170731 at Tue May 31 23:35:28 2005
By Aleksey,,,
\251 Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International FontFont release 15
</metadata>
<defs>
<font id="DIN-Light" horiz-adv-x="514" >
<font-face
font-family="DIN-Light"
font-weight="5"
font-stretch="normal"
units-per-em="1000"
panose-1="0 0 0 0 0 0 0 0 0 0"
ascent="800"
descent="-200"
x-height="482"
cap-height="712"
bbox="-100 -236 1099 975"
underline-thickness="38"
underline-position="-198"
unicode-range="U+0020-F002"
/>
<missing-glyph horiz-adv-x="764"
d="M47 0v764h670v-764h-670zM670 47v670h-576v-670h576z" />
<glyph glyph-name=".notdef" horiz-adv-x="764"
d="M47 0v764h670v-764h-670zM670 47v670h-576v-670h576z" />
<glyph glyph-name="glyph1" horiz-adv-x="0"
/>
<glyph glyph-name="glyph2" horiz-adv-x="255"
/>
<glyph glyph-name="space" unicode=" " horiz-adv-x="255"
/>
<glyph glyph-name="exclam" unicode="!" horiz-adv-x="304"
d="M191 192h-49l-3 520h55zM133 0v67h67v-67h-67z" />
<glyph glyph-name="quotedbl" unicode="&#x22;" horiz-adv-x="408"
d="M250 556v156h63v-156h-63zM95 556v156h63v-156h-63z" />
<glyph glyph-name="numbersign" unicode="#" horiz-adv-x="639"
d="M488 437l-25 -153h96v-44h-103l-38 -240h-51l39 240h-176l-37 -240h-51l38 240h-96v44h103l25 153h-99v45h105l36 230h52l-37 -230h175l36 230h50l-36 -230h94v-45h-100zM262 437l-25 -153h175l25 153h-175z" />
<glyph glyph-name="dollar" unicode="$" horiz-adv-x="587"
d="M310 -5v-109h-45v108q-67 0 -116 22.5t-98 71.5l38 38q83 -83 176 -83v295l-16 2q-38 5 -71 19t-72.5 47.5t-39.5 116.5q0 86 54 140t145 54v89h45v-89q53 0 95.5 -19t86.5 -57l-35 -35q-37 33 -68 49t-79 16v-290l29 -5q53 -10 78.5 -18.5t68 -44t42.5 -122.5
t-58.5 -141.5t-159.5 -54.5zM265 671q-68 0 -107 -41t-39 -105q0 -62 29.5 -87t57.5 -35.5t59 -14.5v283zM435 289q-25 21 -47 27t-78 14v-287q76 0 120 40t44 106q0 65 -39 100z" />
<glyph glyph-name="percent" unicode="%" horiz-adv-x="828"
d="M628 -7q-59 0 -95.5 37.5t-36.5 96.5v107q0 60 36 97t96 37q58 0 94.5 -37.5t36.5 -96.5v-107q0 -60 -36 -97t-95 -37zM271 0h-45l332 712h45zM201 345q-58 0 -95 37t-37 96v107q0 60 36 97t96 37q58 0 94.5 -37.5t36.5 -96.5v-107q0 -59 -36 -96t-95 -37zM715 232
q0 46 -21 72t-66 26t-66.5 -25.5t-21.5 -72.5v-103q0 -47 21.5 -72.5t66.5 -25.5t66 26t21 72v103zM288 583q0 46 -21 72t-66 26t-66.5 -25.5t-21.5 -72.5v-103q0 -47 21 -72t67 -25q87 0 87 97v103z" />
<glyph glyph-name="ampersand" unicode="&#x26;" horiz-adv-x="746"
d="M593 0l-69 84q-36 -34 -89 -62t-130 -28q-99 0 -160 56t-61 147q0 75 39.5 120t123.5 101q-48 57 -63.5 91t-15.5 67q0 60 42 101t103 41t103 -41t42 -102q0 -40 -22 -71.5t-60 -56.5l-53 -36l204 -247q23 36 32.5 74t9.5 103h53q0 -69 -14.5 -123t-47.5 -94l102 -124
h-69zM313 670q-39 0 -65 -26t-26 -66q0 -28 13.5 -53.5t56.5 -77.5l41 28q36 24 54 45.5t18 54.5q0 41 -26 68t-66 27zM278 382q-74 -51 -107 -86t-33 -96q0 -70 46 -114t120 -44q49 0 94 17t96 62z" />
<glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="253"
d="M95 556v156h63v-156h-63z" />
<glyph glyph-name="parenleft" unicode="(" horiz-adv-x="284"
d="M182 -94q-25 25 -40.5 43t-25.5 37.5t-14.5 43.5t-4.5 49v554q0 30 3.5 50t15 42t22.5 35t44 46l35 -35q-16 -16 -30.5 -31.5t-26.5 -40.5t-12 -72v-542q0 -47 11 -70.5t23 -37t35 -36.5z" />
<glyph glyph-name="parenright" unicode=")" horiz-adv-x="284"
d="M168 -14q-11 -21 -22 -34t-44 -46l-37 37q15 16 31 31q14 16 22.5 33t11.5 35t3 43v542q0 48 -10.5 70t-22.5 35.5t-35 36.5l37 37q25 -25 40.5 -43t26.5 -38t14.5 -41t3.5 -51v-554q0 -29 -3.5 -50t-15.5 -43z" />
<glyph glyph-name="asterisk" unicode="*" horiz-adv-x="467"
d="M373 438l-120 73l3 -141h-45l3 141l-120 -73l-22 38l123 68l-123 68l22 38l120 -73l-3 141h45l-3 -141l120 73l22 -38l-123 -68l123 -68z" />
<glyph glyph-name="plus" unicode="+"
d="M281 240v-181h-47v181h-181v47h181v180h47v-180h180v-47h-180z" />
<glyph glyph-name="comma" unicode="," horiz-adv-x="258"
d="M95 -136v204h68v-136z" />
<glyph glyph-name="hyphen" unicode="-" horiz-adv-x="426"
d="M82 240v47h262v-47h-262z" />
<glyph glyph-name="period" unicode="." horiz-adv-x="264"
d="M95 0v74h74v-74h-74z" />
<glyph glyph-name="slash" unicode="/" horiz-adv-x="338"
d="M53 -74h-53l285 860h53z" />
<glyph glyph-name="zero" unicode="0"
d="M257 -6q-83 0 -135 53t-52 137v344q0 84 52 137t135 53t135 -53t52 -137v-344q0 -84 -52 -137t-135 -53zM393 523q0 66 -35.5 108t-100.5 42q-64 0 -100 -42t-36 -108v-334q0 -66 35.5 -108t100.5 -42q64 0 100 42t36 108v334z" />
<glyph glyph-name="one" unicode="1"
d="M262 0v654l-129 -114v61l129 111h51v-712h-51z" />
<glyph glyph-name="two" unicode="2"
d="M72 0v45l286 375q40 51 40 111q0 65 -36.5 103.5t-100.5 38.5q-60 0 -98.5 -35.5t-38.5 -106.5h-51q0 82 50.5 134.5t137.5 52.5q86 0 137 -51t51 -136q0 -40 -11 -70.5t-38 -66.5l-267 -349h316v-45h-377z" />
<glyph glyph-name="three" unicode="3"
d="M245 -7q-89 0 -146 45.5t-57 134.5h51q0 -68 44.5 -101.5t107.5 -33.5q65 0 108 41t43 111q0 75 -37 113.5t-118 38.5h-12v45h12q141 0 141 143q0 68 -39 106t-99 38q-62 0 -98.5 -34.5t-43.5 -95.5h-51q7 82 60 128.5t133 46.5q84 0 136.5 -51.5t52.5 -137.5
q0 -59 -24 -99t-77 -63q115 -39 115 -178q0 -92 -56.5 -144.5t-145.5 -52.5z" />
<glyph glyph-name="four" unicode="4"
d="M376 117v-117h-51v117h-282v45l262 550h54l-262 -550h228v226h51v-226h95v-45h-95z" />
<glyph glyph-name="five" unicode="5"
d="M396 44q-51 -51 -137 -51q-90 0 -124.5 35t-47.5 64t-13 65h51q8 -59 40 -89t94 -30t94 32t39.5 70.5t7.5 92.5q0 109 -36 149.5t-97 40.5q-49 0 -83.5 -19.5t-45.5 -55.5h-45v364h342v-45h-297v-252q46 53 135 53q77 0 115.5 -38.5t50.5 -86t12 -110.5q0 -66 -10 -110
t-45 -79z" />
<glyph glyph-name="six" unicode="6"
d="M260 -6q-88 0 -138.5 55.5t-50.5 144.5q0 35 9.5 70.5t30.5 78.5l183 369h51l-164 -329q36 17 83 17q85 0 134.5 -56.5t49.5 -142.5q0 -89 -50.5 -148t-137.5 -59zM259 355q-63 0 -100 -43t-37 -115t37 -115t100 -43t100.5 43.5t37.5 114.5q0 67 -36.5 112.5t-101.5 45.5
z" />
<glyph glyph-name="seven" unicode="7"
d="M207 0h-52l252 667h-270v-112h-51v157h373v-45z" />
<glyph glyph-name="eight" unicode="8"
d="M257 -6q-87 0 -145 56t-58 142q0 59 30 104.5t83 73.5q-49 26 -73.5 66.5t-24.5 95.5q0 79 52.5 132.5t135.5 53.5t135.5 -52.5t52.5 -133.5q0 -110 -97 -162q53 -28 82.5 -73t29.5 -105q0 -86 -58 -142t-145 -56zM257 673q-61 0 -99 -39t-38 -102t38 -102t99 -39t99 39
t38 102q0 62 -38.5 101.5t-98.5 39.5zM257 346q-65 0 -108.5 -44.5t-43.5 -109.5t43 -109t109 -44q64 0 108 44t44 109q0 66 -43 110t-109 44z" />
<glyph glyph-name="nine" unicode="9"
d="M403 369l-183 -369h-51l164 329q-36 -17 -84 -17q-85 0 -134 56.5t-49 142.5q0 89 50.5 148t137.5 59q88 0 138.5 -55.5t50.5 -144.5q0 -35 -9.5 -70.5t-30.5 -78.5zM254 673q-63 0 -100 -43t-37 -115q0 -68 35.5 -113t101.5 -45q62 0 100 43.5t38 114.5q0 72 -37 115
t-101 43z" />
<glyph glyph-name="colon" unicode=":" horiz-adv-x="292"
d="M123 312v74h74v-74h-74zM123 0v74h74v-74h-74z" />
<glyph glyph-name="semicolon" unicode=";" horiz-adv-x="292"
d="M123 312v74h74v-74h-74zM125 -136v204h68v-136z" />
<glyph glyph-name="less" unicode="&#x3c;" horiz-adv-x="1027"
d="M151 238l379 -379h-69l-404 404l404 404h69l-379 -379h819v-50h-819z" />
<glyph glyph-name="equal" unicode="="
d="M53 316v47h408v-47h-408zM53 163v47h408v-47h-408z" />
<glyph glyph-name="greater" unicode="&#x3e;" horiz-adv-x="1027"
d="M566 -141h-69l379 379h-819v50h819l-379 379h69l404 -404z" />
<glyph glyph-name="question" unicode="?" horiz-adv-x="488"
d="M394 423l-85 -125q-9 -14 -13.5 -30t-4.5 -30v-47h-51v45q0 27 6.5 47t22.5 43l84 124q16 25 25 46t9 46q0 56 -36.5 93.5t-91.5 37.5q-57 0 -92.5 -38.5t-35.5 -92.5h-51q0 74 50 125t129 51q77 0 128 -50t51 -126q0 -32 -11 -59t-33 -60zM232 0v67h67v-67h-67z" />
<glyph glyph-name="at" unicode="@" horiz-adv-x="697"
d="M569 0v59q-48 -66 -139 -66q-89 0 -125.5 48t-46.5 90t-10 110q0 125 30.5 168.5t68 61.5t82.5 18q88 0 140 -68v89q0 43 -9 69t-31.5 49t-49.5 33t-65 10h-132q-71 0 -103.5 -32.5t-41.5 -58.5t-9 -70v-353q0 -51 12 -76.5t50 -52.5l-35 -35q-46 32 -62 65t-16 99v350
q0 94 53.5 149.5t142.5 55.5h150q87 0 142 -55t55 -150v-507h-51zM434 444q-81 0 -108 -55.5t-27 -147.5q0 -119 35.5 -161t99.5 -42q81 0 108 55.5t27 147.5q0 119 -35.5 161t-99.5 42z" />
<glyph glyph-name="A" unicode="A" horiz-adv-x="602"
d="M529 0l-62 173h-332l-62 -173h-58l262 712h48l262 -712h-58zM301 640l-149 -419h298z" />
<glyph glyph-name="B" unicode="B" horiz-adv-x="671"
d="M380 0h-270v712h262q91 0 148.5 -49.5t57.5 -136.5q0 -57 -29.5 -100t-81.5 -60q58 -19 90 -64.5t32 -107.5q0 -94 -56 -144t-153 -50zM366 664h-202v-276h202q69 0 113.5 34t44.5 104t-43.5 104t-114.5 34zM374 340h-210v-292h210q73 0 117 39t44 107t-44 107t-117 39z
" />
<glyph glyph-name="C" unicode="C" horiz-adv-x="644"
d="M326 -6q-49 0 -96 19t-87 59t-50.5 95.5t-10.5 188.5q0 112 5.5 173t69.5 125t169 64q96 0 160.5 -55t81.5 -153h-55q-16 75 -65.5 117.5t-121.5 42.5q-80 0 -125.5 -45.5t-55 -97t-9.5 -171.5q0 -104 5.5 -159.5t40.5 -90.5t70 -49.5t74 -14.5q72 0 122.5 42.5
t66.5 117.5h53q-17 -96 -82 -152t-160 -56z" />
<glyph glyph-name="D" unicode="D" horiz-adv-x="678"
d="M527 65q-65 -65 -178 -65h-239v712h239q113 0 169 -56t67 -121.5t11 -168.5q0 -113 -10.5 -183t-58.5 -118zM489 609q-29 30 -68 42.5t-85 12.5h-172v-616h172q48 0 85.5 12t71 46.5t41.5 96.5t8 163v31q0 96 -12.5 140t-40.5 72z" />
<glyph glyph-name="E" unicode="E" horiz-adv-x="598"
d="M110 0v712h432v-48h-378v-281h322v-48h-322v-287h378v-48h-432z" />
<glyph glyph-name="F" unicode="F" horiz-adv-x="576"
d="M164 664v-293h322v-48h-322v-323h-54v712h432v-48h-378z" />
<glyph glyph-name="G" unicode="G" horiz-adv-x="651"
d="M513 76q-35 -38 -84.5 -60t-102.5 -22q-49 0 -96 19t-87 59t-50.5 95.5t-10.5 188.5q0 112 5.5 173t69.5 125t169 64q94 0 160 -56t83 -152h-54q-16 74 -66 117t-123 43q-80 0 -125.5 -45.5t-55 -97t-9.5 -171.5q0 -104 5.5 -159.5t40.5 -90.5t70 -49.5t74 -14.5
q91 0 141 61t50 149v64h-191v48h245v-116q0 -57 -13 -97.5t-45 -74.5z" />
<glyph glyph-name="H" unicode="H" horiz-adv-x="699"
d="M535 0v335h-371v-335h-54v712h54v-329h371v329h54v-712h-54z" />
<glyph glyph-name="I" unicode="I" horiz-adv-x="274"
d="M110 0v712h54v-712h-54z" />
<glyph glyph-name="J" unicode="J" horiz-adv-x="498"
d="M186 -6q-95 0 -156 61l37 37q24 -24 50 -37t69 -13q77 0 117.5 46.5t40.5 132.5v491h54v-502q0 -98 -57 -157t-155 -59z" />
<glyph glyph-name="K" unicode="K" horiz-adv-x="645"
d="M563 0l-229 399l-170 -206v-193h-54v712h54v-445l361 445h65l-220 -272l257 -440h-64z" />
<glyph glyph-name="L" unicode="L" horiz-adv-x="572"
d="M110 0v712h54v-664h378v-48h-432z" />
<glyph glyph-name="M" unicode="M" horiz-adv-x="818"
d="M654 0v587l-216 -487h-54l-220 487v-587h-54v712h54l248 -549l242 549h54v-712h-54z" />
<glyph glyph-name="N" unicode="N" horiz-adv-x="739"
d="M575 0l-411 619v-619h-54v712h54l411 -617v617h54v-712h-54z" />
<glyph glyph-name="O" unicode="O" horiz-adv-x="652"
d="M504 67q-73 -73 -178 -73q-49 0 -96 19t-87 59t-50.5 95.5t-10.5 188.5q0 112 5.5 173t69.5 125t169 64q49 0 96 -19t87 -59t50.5 -95.5t10.5 -188.5q0 -112 -5.5 -173t-60.5 -116zM461 615q-26 26 -61 40.5t-74 14.5q-80 0 -125.5 -45.5t-55 -97t-9.5 -171.5
q0 -104 5.5 -159.5t40.5 -90.5t70 -49.5t74 -14.5q80 0 125.5 45.5t55 97t9.5 171.5q0 104 -5.5 159.5t-49.5 99.5z" />
<glyph glyph-name="P" unicode="P" horiz-adv-x="631"
d="M371 302h-207v-302h-54v712h261q96 0 155.5 -54t59.5 -151q0 -95 -60 -150t-155 -55zM365 664h-201v-314h201q77 0 122 39.5t45 117.5t-45.5 117.5t-121.5 39.5z" />
<glyph glyph-name="Q" unicode="Q" horiz-adv-x="651"
d="M567 -36l-84 84q-68 -54 -157 -54q-49 0 -96 19t-87 59t-50.5 95.5t-10.5 188.5q0 112 5.5 173t69.5 125t169 64q49 0 96 -19t87 -59t50.5 -95.5t10.5 -188.5q0 -109 -4.5 -165.5t-46.5 -106.5l84 -84zM461 615q-26 26 -61 40.5t-74 14.5q-80 0 -125.5 -45.5t-55 -97
t-9.5 -171.5q0 -104 5.5 -159.5t40.5 -90.5t70 -49.5t74 -14.5q68 0 121 42l-100 100l36 36l99 -99q21 31 27.5 82t6.5 153q0 104 -5.5 159.5t-49.5 99.5z" />
<glyph glyph-name="R" unicode="R" horiz-adv-x="657"
d="M530 0l-170 328h-196v-328h-54v712h271q89 0 146.5 -50.5t57.5 -140.5q0 -79 -44 -129t-120 -63l172 -329h-63zM374 664h-210v-288h210q72 0 114.5 36t42.5 108q0 71 -42.5 107.5t-114.5 36.5z" />
<glyph glyph-name="S" unicode="S" horiz-adv-x="587"
d="M288 -6q-80 0 -133 21.5t-104 72.5l38 38q47 -47 92 -65.5t110 -18.5q85 0 134 39t49 108q0 65 -29.5 91t-48.5 33t-64 14l-83 13q-81 12 -132 55.5t-51 127.5q0 89 59 142t162 53q65 0 111 -17.5t94 -59.5l-35 -35q-38 34 -75.5 50t-97.5 16q-77 0 -121 -39t-44 -108
q0 -62 39 -94.5t104 -42.5l77 -12q52 -8 77 -17t68.5 -45t43.5 -123q0 -90 -64.5 -143.5t-175.5 -53.5z" />
<glyph glyph-name="T" unicode="T" horiz-adv-x="539"
d="M296 664v-664h-54v664h-212v48h479v-48h-213z" />
<glyph glyph-name="U" unicode="U" horiz-adv-x="688"
d="M344 -6q-108 0 -176 66t-68 171v481h54v-474q0 -88 52 -142t138 -54t138 53t52 143v474h54v-481q0 -105 -68 -171t-176 -66z" />
<glyph glyph-name="V" unicode="V" horiz-adv-x="534"
d="M290 0h-46l-234 712h57l200 -617l200 617h57z" />
<glyph glyph-name="W" unicode="W" horiz-adv-x="842"
d="M644 0h-55l-168 620l-168 -620h-55l-178 712h57l150 -619l166 619h56l166 -619l150 619h57z" />
<glyph glyph-name="X" unicode="X" horiz-adv-x="532"
d="M451 0l-186 317l-186 -317h-61l218 365l-204 347h63l170 -299l171 299h62l-204 -347l220 -365h-63z" />
<glyph glyph-name="Y" unicode="Y" horiz-adv-x="494"
d="M274 295v-295h-54v295l-210 417h58l181 -360l177 360h58z" />
<glyph glyph-name="Z" unicode="Z" horiz-adv-x="559"
d="M63 0v57l375 607h-360v48h418v-48l-378 -616h378v-48h-433z" />
<glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="290"
d="M97 -74v860h148v-45h-97v-770h97v-45h-148z" />
<glyph glyph-name="backslash" unicode="\" horiz-adv-x="338"
d="M285 -74l-285 860h53l285 -860h-53z" />
<glyph glyph-name="bracketright" unicode="]" horiz-adv-x="290"
d="M45 -74v42h100v776h-100v42h148v-860h-148z" />
<glyph glyph-name="asciicircum" unicode="^"
d="M387 422l-130 242l-130 -242h-51l158 296h46l158 -296h-51z" />
<glyph glyph-name="underscore" unicode="_"
d="M0 -160v38h514v-38h-514z" />
<glyph glyph-name="grave" unicode="`" horiz-adv-x="500"
d="M239 590l-106 147h67l97 -147h-58z" />
<glyph glyph-name="a" unicode="a" horiz-adv-x="524"
d="M380 0v48q-30 -30 -63 -42t-84 -12q-53 0 -86 10t-62 40.5t-29 87.5q0 66 44.5 102.5t123.5 36.5h156v54q0 59 -32 88.5t-104 29.5q-51 0 -80.5 -13.5t-52.5 -47.5l-37 32q29 41 69.5 57.5t100.5 16.5q94 0 140.5 -40.5t46.5 -117.5v-330h-51zM380 230h-150
q-123 0 -123 -97q0 -94 126 -94q40 0 68 7t53.5 31.5t25.5 90.5v62z" />
<glyph glyph-name="b" unicode="b" horiz-adv-x="540"
d="M409 36q-19 -19 -50 -30.5t-68 -11.5q-45 0 -79.5 14.5t-63.5 53.5v-62h-51v712h51v-292q29 39 63.5 53.5t79.5 14.5q38 0 68 -11t57 -38t41 -81t14 -117q0 -67 -13.5 -118.5t-48.5 -86.5zM284 443q-80 0 -108 -55t-28 -147t27.5 -147t108.5 -55q80 0 108 55t28 147
t-27.5 147t-108.5 55z" />
<glyph glyph-name="c" unicode="c" horiz-adv-x="493"
d="M281 -6q-98 0 -155 66t-57 181t57 181t155 66q52 0 85.5 -15.5t73.5 -58.5l-35 -32q-31 35 -58 48t-66 13q-84 0 -122.5 -56t-38.5 -146q0 -50 7 -80.5t38.5 -76t115.5 -45.5q39 0 66 13t58 48l35 -32q-38 -42 -73.5 -58t-85.5 -16z" />
<glyph glyph-name="d" unicode="d" horiz-adv-x="540"
d="M392 0v62q-29 -39 -63.5 -53.5t-79.5 -14.5q-38 0 -68 11t-57 38t-41 81t-14 117q0 67 13.5 118.5t40.5 78.5t58 38.5t68 11.5q45 0 79.5 -14.5t63.5 -53.5v292h51v-712h-51zM256 443q-80 0 -108 -55t-28 -147t27.5 -147t108.5 -55q80 0 108 55t28 147t-27.5 147
t-108.5 55z" />
<glyph glyph-name="e" unicode="e" horiz-adv-x="523"
d="M120 230q0 -92 40 -141t117 -49q75 0 133 58l38 -30q-38 -38 -77.5 -56t-96.5 -18q-100 0 -152.5 63.5t-52.5 183.5q0 117 51 182t142 65q90 0 141.5 -62.5t51.5 -172.5v-23h-335zM387 362q-16 38 -49.5 59.5t-75.5 21.5t-75.5 -21.5t-46.5 -53t-16.5 -48t-3.5 -49.5h284
q0 31 -3.5 48.5t-13.5 42.5z" />
<glyph glyph-name="f" unicode="f" horiz-adv-x="304"
d="M163 444v-444h-51v444h-66v38h66v104q0 57 30 91.5t86 34.5h44v-45h-35q-74 0 -74 -80v-105h109v-38h-109z" />
<glyph glyph-name="g" unicode="g" horiz-adv-x="540"
d="M246 -236q-52 0 -85.5 14t-73.5 50l34 34q32 -28 57.5 -40.5t67.5 -12.5q73 0 109.5 46t36.5 121v86q-29 -39 -63.5 -53.5t-79.5 -14.5q-38 0 -68 11t-57 38t-41 81t-14 117q0 67 13.5 118.5t40.5 78.5t58 38.5t68 11.5q45 0 79.5 -14.5t63.5 -53.5v62h51v-509
q0 -94 -52 -151.5t-145 -57.5zM256 443q-80 0 -108 -55t-28 -147t27.5 -147t108.5 -55q80 0 108 55t28 147t-27.5 147t-108.5 55z" />
<glyph glyph-name="h" unicode="h" horiz-adv-x="559"
d="M417 0v299q0 144 -133 144q-64 0 -100 -38t-36 -106v-299h-51v712h51v-287q54 63 142 63q83 0 130.5 -48.5t47.5 -131.5v-308h-51z" />
<glyph glyph-name="i" unicode="i" horiz-adv-x="245"
d="M91 649v63h63v-63h-63zM97 0v482h51v-482h-51z" />
<glyph glyph-name="j" unicode="j" horiz-adv-x="245"
d="M91 649v63h63v-63h-63zM32 -230h-44v45h35q41 0 57.5 19.5t16.5 61.5v586h51v-587q0 -59 -29 -92t-87 -33z" />
<glyph glyph-name="k" unicode="k" horiz-adv-x="527"
d="M424 0l-166 265l-110 -127v-138h-51v712h51v-502l239 272h65l-159 -180l194 -302h-63z" />
<glyph glyph-name="l" unicode="l" horiz-adv-x="287"
d="M211 0q-57 0 -86.5 33.5t-29.5 91.5v587h51v-586q0 -43 16 -62t58 -19h35v-45h-44z" />
<glyph glyph-name="m" unicode="m" horiz-adv-x="878"
d="M737 0v299q0 144 -133 144q-63 0 -99.5 -36.5t-36.5 -98.5v-308h-51v299q0 144 -133 144q-64 0 -100 -38t-36 -106v-299h-51v482h51v-57q54 63 143 63q110 0 155 -88q56 88 164 88q39 0 71.5 -12t69 -47t36.5 -121v-308h-50z" />
<glyph glyph-name="n" unicode="n" horiz-adv-x="559"
d="M417 0v299q0 144 -133 144q-64 0 -100 -38t-36 -106v-299h-51v482h51v-57q54 63 142 63q80 0 129 -47t49 -133v-308h-51z" />
<glyph glyph-name="o" unicode="o" horiz-adv-x="526"
d="M397 47q-53 -53 -134 -53t-125 44t-56.5 93t-12.5 110q0 64 12 111t56.5 91.5t125.5 44.5t125 -44t56.5 -93t12.5 -110q0 -64 -12 -111t-48 -83zM363 402q-41 41 -100 41t-90 -31t-42 -66t-11 -105t10.5 -104.5t42 -66t90.5 -31.5t90 31t42 66t11 105t-10.5 104.5
t-32.5 56.5z" />
<glyph glyph-name="p" unicode="p" horiz-adv-x="540"
d="M409 36q-19 -19 -50 -30.5t-68 -11.5q-45 0 -79.5 14.5t-63.5 53.5v-292h-51v712h51v-62q29 39 63.5 53.5t79.5 14.5q38 0 68 -11t57 -38t41 -81t14 -117q0 -67 -13.5 -118.5t-48.5 -86.5zM284 443q-80 0 -108 -55t-28 -147t27.5 -147t108.5 -55q80 0 108 55t28 147
t-27.5 147t-108.5 55z" />
<glyph glyph-name="q" unicode="q" horiz-adv-x="540"
d="M392 -230v292q-29 -39 -63.5 -53.5t-79.5 -14.5q-38 0 -68 11t-57 38t-41 81t-14 117q0 67 13.5 118.5t40.5 78.5t58 38.5t68 11.5q45 0 79.5 -14.5t63.5 -53.5v62h51v-712h-51zM256 443q-80 0 -108 -55t-28 -147t27.5 -147t108.5 -55q80 0 108 55t28 147t-27.5 147
t-108.5 55z" />
<glyph glyph-name="r" unicode="r" horiz-adv-x="409"
d="M368 405q-22 22 -41 30t-50 8q-61 0 -95 -41.5t-34 -104.5v-297h-51v482h51v-64q21 33 58.5 51.5t82.5 18.5q35 0 63 -10.5t53 -35.5z" />
<glyph glyph-name="s" unicode="s" horiz-adv-x="494"
d="M245 -6q-123 0 -195 69l35 35q56 -59 158 -59q145 0 145 98q0 72 -92 81l-80 7q-71 0 -108 34t-37 92q0 63 47 100t126 37q50 0 93 -13t76 -38l-34 -34q-56 41 -135 41q-59 0 -91 -24t-32 -69q0 -72 98 -81l78 -7q68 -6 104.5 -33t36.5 -93q0 -65 -52.5 -104t-140.5 -39z
" />
<glyph glyph-name="t" unicode="t" horiz-adv-x="325"
d="M225 0q-55 0 -85.5 34.5t-30.5 91.5v318h-66v38h66v154h51v-154h109v-38h-109v-319q0 -80 74 -80h35v-45h-44z" />
<glyph glyph-name="u" unicode="u" horiz-adv-x="559"
d="M411 0v57q-54 -63 -142 -63q-80 0 -129 47t-49 133v308h51v-299q0 -144 133 -144q64 0 100 38t36 106v299h51v-482h-51z" />
<glyph glyph-name="v" unicode="v" horiz-adv-x="430"
d="M240 0h-50l-176 482h56l145 -422l145 422h56z" />
<glyph glyph-name="w" unicode="w" horiz-adv-x="712"
d="M544 0h-52l-136 402l-136 -402h-52l-154 482h56l123 -422l138 422h50l138 -422l123 422h56z" />
<glyph glyph-name="x" unicode="x" horiz-adv-x="460"
d="M358 0l-127 203l-129 -203h-62l163 246l-156 236h62l122 -194l120 194h62l-156 -236l163 -246h-62z" />
<glyph glyph-name="y" unicode="y" horiz-adv-x="430"
d="M192 -131q-14 -39 -32 -55.5t-42 -24t-50 -7.5h-24v45h19q40 0 57 14t31 52l39 107l-176 482h56l145 -422l145 422h56z" />
<glyph glyph-name="z" unicode="z" horiz-adv-x="452"
d="M54 0v48l290 389h-274v45h328v-48l-291 -389h291v-45h-344z" />
<glyph glyph-name="braceleft" unicode="{" horiz-adv-x="316"
d="M252 -74q-36 0 -59 6t-37.5 20.5t-20.5 35t-6 60.5v207q0 42 -13 55t-24 18.5t-24 5.5h-18v44h18q14 0 24 5t23.5 18.5t13.5 55.5v207q0 69 26.5 95.5t96.5 26.5h14v-45h-13q-46 0 -59.5 -14t-13.5 -64v-207q0 -39 -14 -61.5t-47 -38.5q32 -16 46.5 -39t14.5 -61v-207
q0 -50 13.5 -64t59.5 -14h13v-45h-14z" />
<glyph glyph-name="bar" unicode="|" horiz-adv-x="317"
d="M133 -74v860h51v-860h-51z" />
<glyph glyph-name="braceright" unicode="}" horiz-adv-x="316"
d="M248 334q-14 0 -24 -5t-23.5 -18.5t-13.5 -55.5v-207q0 -69 -26.5 -95.5t-96.5 -26.5h-14v45h13q46 0 59.5 14t13.5 64v207q0 39 14 61.5t47 38.5q-32 16 -46.5 39t-14.5 61v207q0 50 -13.5 64t-59.5 14h-13v45h14q36 0 59 -6t37.5 -20.5t20.5 -35t6 -60.5v-207
q0 -42 13 -55t24 -18.5t24 -5.5h18v-44h-18z" />
<glyph glyph-name="asciitilde" unicode="~"
d="M345 215q-25 0 -44.5 7.5t-53.5 22t-48.5 19.5t-31.5 5q-23 0 -38 -7.5t-45 -37.5l-31 31q39 39 62 50.5t54 11.5q25 0 44.5 -7.5t53.5 -22t48.5 -19.5t31.5 -5q23 0 38 7.5t45 37.5l31 -31q-39 -39 -62 -50.5t-54 -11.5z" />
<glyph glyph-name="nbspace" unicode="&#xa0;" horiz-adv-x="255"
/>
<glyph glyph-name="exclamdown" unicode="&#xa1;" horiz-adv-x="304"
d="M104 415v67h67v-67h-67zM110 -230l3 520h49l3 -520h-55z" />
<glyph glyph-name="cent" unicode="&#xa2;" horiz-adv-x="498"
d="M292 119v-119h-43v121q-84 11 -132 75.5t-48 169.5t48 169.5t132 75.5v101h43v-99q46 0 78 -16t70 -58l-35 -32q-28 32 -54.5 46.5t-58.5 14.5v-404q34 0 58.5 13.5t54.5 47.5l35 -32q-36 -40 -70 -57t-78 -17zM249 565q-61 -11 -95 -60t-34 -139q0 -50 7 -80.5t34 -69
t88 -49.5v398z" />
<glyph glyph-name="sterling" unicode="&#xa3;" horiz-adv-x="537"
d="M114 0v342h-64v38h64v122q0 98 57 157t155 59q95 0 156 -61l-37 -37q-24 24 -50 37t-69 13q-77 0 -117.5 -46.5t-40.5 -132.5v-111h158v-38h-158v-294h314v-48h-368z" />
<glyph glyph-name="currency" unicode="&#xa4;" horiz-adv-x="657"
d="M540 22l-75 74q-59 -48 -137 -48t-137 48l-74 -74l-32 32l74 74q-48 59 -48 137q0 79 48 138l-74 73l32 32l74 -73q58 47 137 47t137 -47l75 73l32 -32l-74 -73q47 -58 47 -138q0 -79 -47 -137l74 -74zM328 434q-71 0 -120 -49t-49 -120t49 -120t120 -49t120 49t49 120
t-49 120t-120 49z" />
<glyph glyph-name="yen" unicode="&#xa5;" horiz-adv-x="493"
d="M320 386h108v-38h-127l-27 -53v-53h154v-38h-154v-204h-54v204h-155v38h155v53l-27 53h-128v38h109l-164 326h57l181 -361l179 361h56z" />
<glyph glyph-name="section" unicode="&#xa7;" horiz-adv-x="566"
d="M359 77q48 -16 75.5 -54.5t27.5 -91.5q0 -73 -50 -120t-129 -47q-78 0 -131 41.5t-53 113.5h54q10 -107 130 -107q59 0 92 30.5t33 88.5q0 40 -25 70t-69 42l-83 23q-63 18 -98.5 66.5t-35.5 114.5q0 60 31 104t79 66q-49 22 -74 55t-25 86q0 73 50.5 116.5t124.5 43.5
t126 -40.5t52 -110.5h-53q-5 55 -36 79.5t-89 24.5q-57 0 -89.5 -28.5t-32.5 -84.5q0 -43 24.5 -69.5t66.5 -37.5l83 -23q62 -17 98 -67t36 -114q0 -60 -31 -104t-79 -66zM380 348q-41 41 -97 41q-59 0 -87.5 -30.5t-36.5 -55t-8 -56.5q0 -33 9 -57.5t36.5 -54.5t86.5 -30
t95.5 39.5t36.5 102.5q0 34 -7 57t-28 44z" />
<glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="500"
d="M325 600v77h58v-77h-58zM117 600v77h58v-77h-58z" />
<glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="894"
d="M447 -6q-150 0 -256 106t-106 256t106 256t256 106t256 -106t106 -256t-106 -256t-256 -106zM447 674q-129 0 -221.5 -94.5t-92.5 -223.5t92.5 -223.5t221.5 -94.5t221.5 94.5t92.5 223.5t-92.5 223.5t-221.5 94.5zM451 150q-87 0 -132 58.5t-45 147.5q0 90 45 148.5
t132 58.5q42 0 69 -11.5t62 -41.5l-30 -30q-27 24 -49 33t-52 9q-71 0 -101.5 -46t-30.5 -120q0 -73 31 -119t101 -46q31 0 52 8t49 33l30 -30q-58 -52 -131 -52z" />
<glyph glyph-name="ordfeminine" unicode="&#xaa;" horiz-adv-x="447"
d="M313 327v36q-24 -23 -49.5 -32t-64.5 -9q-78 0 -102 24.5t-31 43.5t-7 42q0 53 35 82t98 29h121v42q0 91 -105 91q-41 0 -63.5 -10t-40.5 -38l-32 27q24 33 56 46.5t80 13.5q73 0 110.5 -32.5t37.5 -93.5v-262h-43zM313 508h-116q-48 0 -71.5 -19t-23.5 -56q0 -72 97 -72
q42 0 60 6.5t36 23.5t18 70v47z" />
<glyph glyph-name="guillemotleft" unicode="&#xab;" horiz-adv-x="527"
d="M249 265l196 196v-66l-130 -130l130 -130v-66zM42 265l196 196v-66l-130 -130l130 -130v-66z" />
<glyph glyph-name="logicalnot" unicode="&#xac;"
d="M414 107v133h-361v47h408v-180h-47z" />
<glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="894"
d="M447 -6q-150 0 -256 106t-106 256t106 256t256 106t256 -106t106 -256t-106 -256t-256 -106zM447 675q-130 0 -222.5 -94.5t-92.5 -224.5t92.5 -224.5t222.5 -94.5t222.5 94.5t92.5 224.5t-92.5 224.5t-222.5 94.5zM543 156l-99 167h-66v-167h-45v401h128
q51 0 87.5 -33.5t36.5 -84.5q0 -43 -24.5 -71.5t-66.5 -40.5l101 -171h-52zM456 516h-78v-153h78q37 0 60.5 21.5t23.5 54.5t-24 55t-60 22z" />
<glyph glyph-name="degree" unicode="&#xb0;" horiz-adv-x="458"
d="M229 405q-65 0 -111 46t-46 111t46 111t111 46t111 -46t46 -111t-46 -111t-111 -46zM228 677q-48 0 -79.5 -32.5t-31.5 -82.5q0 -49 32 -82t80 -33q49 0 80.5 32.5t31.5 82.5q0 49 -32 82t-81 33z" />
<glyph glyph-name="plusminus" unicode="&#xb1;"
d="M281 270v-182h-47v182h-181v47h181v181h47v-181h180v-47h-180zM53 0v47h408v-47h-408z" />
<glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="500"
d="M261 590h-58l97 147h67z" />
<glyph glyph-name="mu" unicode="&#xb5;" horiz-adv-x="556"
d="M408 0v57q-54 -63 -142 -63q-79 0 -127 45v-269h-51v712h51v-299q0 -144 133 -144q64 0 100 38t36 106v299h51v-482h-51z" />
<glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="579"
d="M418 -230v894h-123v-894h-51v562q-91 0 -145 57t-54 133q0 79 56.5 134.5t154.5 55.5h213v-942h-51z" />
<glyph glyph-name="cedilla" unicode="&#xb8;" horiz-adv-x="500"
d="M244 -220h-63l72 150h55z" />
<glyph glyph-name="ordmasculine" unicode="&#xba;" horiz-adv-x="452"
d="M332 365q-42 -42 -106 -42t-99 35t-45 74t-10 87q0 64 12.5 97.5t45 66t96.5 32.5t99 -35t45 -74t10 -87q0 -64 -12.5 -97.5t-35.5 -56.5zM304 644q-32 32 -78 32t-70 -24t-32.5 -51t-8.5 -82q0 -47 5.5 -75t32.5 -55t73 -27t70 24t32.5 51t8.5 82q0 47 -5.5 75t-27.5 50
z" />
<glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="527"
d="M289 69v66l130 130l-130 130v66l196 -196zM82 69v66l130 130l-130 130v66l196 -196z" />
<glyph glyph-name="questiondown" unicode="&#xbf;" horiz-adv-x="488"
d="M189 415v67h67v-67h-67zM229 -236q-77 0 -128 50t-51 126q0 32 11 59t33 60l85 125q9 14 13.5 30t4.5 30v47h51v-45q0 -27 -6.5 -47t-22.5 -43l-84 -124q-16 -25 -25 -46t-9 -46q0 -56 36.5 -93.5t91.5 -37.5q57 0 92.5 38.5t35.5 92.5h51q0 -74 -50 -125t-129 -51z" />
<glyph glyph-name="Agrave" unicode="&#xc0;" horiz-adv-x="602"
d="M529 0l-62 173h-332l-62 -173h-58l262 712h48l262 -712h-58zM301 640l-149 -419h298zM290 780l-106 147h67l97 -147h-58z" />
<glyph glyph-name="Aacute" unicode="&#xc1;" horiz-adv-x="602"
d="M529 0l-62 173h-332l-62 -173h-58l262 712h48l262 -712h-58zM301 640l-149 -419h298zM312 780h-58l97 147h67z" />
<glyph glyph-name="Acircumflex" unicode="&#xc2;" horiz-adv-x="602"
d="M529 0l-62 173h-332l-62 -173h-58l262 712h48l262 -712h-58zM301 640l-149 -419h298zM394 780l-93 109l-93 -109h-57l123 147h54l123 -147h-57z" />
<glyph glyph-name="Atilde" unicode="&#xc3;" horiz-adv-x="602"
d="M529 0l-62 173h-332l-62 -173h-58l262 712h48l262 -712h-58zM301 640l-149 -419h298zM361 795q-19 0 -33 5.5t-36.5 18.5t-31.5 17t-24 4q-16 0 -26 -5t-33 -28l-30 29q30 30 49.5 39t39.5 9q21 0 34 -5t32.5 -17t32 -17.5t26.5 -5.5q13 0 26 6.5t33 26.5l30 -29
q-30 -30 -50.5 -39t-38.5 -9z" />
<glyph glyph-name="Adieresis" unicode="&#xc4;" horiz-adv-x="602"
d="M529 0l-62 173h-332l-62 -173h-58l262 712h48l262 -712h-58zM301 640l-149 -419h298zM376 790v77h58v-77h-58zM168 790v77h58v-77h-58z" />
<glyph glyph-name="Aring" unicode="&#xc5;" horiz-adv-x="602"
d="M529 0l-62 173h-332l-62 -173h-58l262 712h48l262 -712h-58zM301 640l-149 -419h298zM301 746q-47 0 -80.5 33.5t-33.5 81.5t33 81t81 33t81 -33t33 -81q0 -47 -33 -81t-81 -34zM301 933q-29 0 -51 -21t-22 -51t21.5 -51.5t51.5 -21.5t51.5 21.5t21.5 51.5t-21 51t-52 21
z" />
<glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="901"
d="M414 0v173h-255l-90 -173h-59l377 712h458v-48h-378v-284h322v-48h-322v-284h378v-48h-431zM414 664l-232 -443h232v443z" />
<glyph glyph-name="Ccedilla" unicode="&#xc7;" horiz-adv-x="644"
d="M326 -6q-49 0 -96 19t-87 59t-50.5 95.5t-10.5 188.5q0 112 5.5 173t69.5 125t169 64q96 0 160.5 -55t81.5 -153h-55q-16 75 -65.5 117.5t-121.5 42.5q-80 0 -125.5 -45.5t-55 -97t-9.5 -171.5q0 -104 5.5 -159.5t40.5 -90.5t70 -49.5t74 -14.5q72 0 122.5 42.5
t66.5 117.5h53q-17 -96 -82 -152t-160 -56zM302 -220h-63l72 150h55z" />
<glyph glyph-name="Egrave" unicode="&#xc8;" horiz-adv-x="598"
d="M110 0v712h432v-48h-378v-281h322v-48h-322v-287h378v-48h-432zM303 780l-106 147h67l97 -147h-58z" />
<glyph glyph-name="Eacute" unicode="&#xc9;" horiz-adv-x="598"
d="M110 0v712h432v-48h-378v-281h322v-48h-322v-287h378v-48h-432zM325 780h-58l97 147h67z" />
<glyph glyph-name="Ecircumflex" unicode="&#xca;" horiz-adv-x="598"
d="M110 0v712h432v-48h-378v-281h322v-48h-322v-287h378v-48h-432zM407 780l-93 109l-93 -109h-57l123 147h54l123 -147h-57z" />
<glyph glyph-name="Edieresis" unicode="&#xcb;" horiz-adv-x="598"
d="M110 0v712h432v-48h-378v-281h322v-48h-322v-287h378v-48h-432zM389 790v77h58v-77h-58zM181 790v77h58v-77h-58z" />
<glyph glyph-name="Igrave" unicode="&#xcc;" horiz-adv-x="274"
d="M110 0v712h54v-712h-54zM216 780l-106 147h67l97 -147h-58z" />
<glyph glyph-name="Iacute" unicode="&#xcd;" horiz-adv-x="274"
d="M110 0v712h54v-712h-54zM168 780h-58l97 147h67z" />
<glyph glyph-name="Icircumflex" unicode="&#xce;" horiz-adv-x="274"
d="M110 0v712h54v-712h-54zM353 780l-93 109l-93 -109h-57l123 147h54l123 -147h-57z" />
<glyph glyph-name="Idieresis" unicode="&#xcf;" horiz-adv-x="274"
d="M110 0v712h54v-712h-54zM318 790v77h58v-77h-58zM110 790v77h58v-77h-58z" />
<glyph glyph-name="Ntilde" unicode="&#xd1;" horiz-adv-x="739"
d="M575 0l-411 619v-619h-54v712h54l411 -617v617h54v-712h-54zM430 795q-19 0 -33 5.5t-36.5 18.5t-31.5 17t-24 4q-16 0 -26 -5t-33 -28l-30 29q30 30 49.5 39t39.5 9q21 0 34 -5t32.5 -17t32 -17.5t26.5 -5.5q13 0 26 6.5t33 26.5l30 -29q-30 -30 -50.5 -39t-38.5 -9z
" />
<glyph glyph-name="Ograve" unicode="&#xd2;" horiz-adv-x="652"
d="M504 67q-73 -73 -178 -73q-49 0 -96 19t-87 59t-50.5 95.5t-10.5 188.5q0 112 5.5 173t69.5 125t169 64q49 0 96 -19t87 -59t50.5 -95.5t10.5 -188.5q0 -112 -5.5 -173t-60.5 -116zM461 615q-26 26 -61 40.5t-74 14.5q-80 0 -125.5 -45.5t-55 -97t-9.5 -171.5
q0 -104 5.5 -159.5t40.5 -90.5t70 -49.5t74 -14.5q80 0 125.5 45.5t55 97t9.5 171.5q0 104 -5.5 159.5t-49.5 99.5zM315 780l-106 147h67l97 -147h-58z" />
<glyph glyph-name="Oacute" unicode="&#xd3;" horiz-adv-x="652"
d="M504 67q-73 -73 -178 -73q-49 0 -96 19t-87 59t-50.5 95.5t-10.5 188.5q0 112 5.5 173t69.5 125t169 64q49 0 96 -19t87 -59t50.5 -95.5t10.5 -188.5q0 -112 -5.5 -173t-60.5 -116zM461 615q-26 26 -61 40.5t-74 14.5q-80 0 -125.5 -45.5t-55 -97t-9.5 -171.5
q0 -104 5.5 -159.5t40.5 -90.5t70 -49.5t74 -14.5q80 0 125.5 45.5t55 97t9.5 171.5q0 104 -5.5 159.5t-49.5 99.5zM337 780h-58l97 147h67z" />
<glyph glyph-name="Ocircumflex" unicode="&#xd4;" horiz-adv-x="652"
d="M504 67q-73 -73 -178 -73q-49 0 -96 19t-87 59t-50.5 95.5t-10.5 188.5q0 112 5.5 173t69.5 125t169 64q49 0 96 -19t87 -59t50.5 -95.5t10.5 -188.5q0 -112 -5.5 -173t-60.5 -116zM461 615q-26 26 -61 40.5t-74 14.5q-80 0 -125.5 -45.5t-55 -97t-9.5 -171.5
q0 -104 5.5 -159.5t40.5 -90.5t70 -49.5t74 -14.5q80 0 125.5 45.5t55 97t9.5 171.5q0 104 -5.5 159.5t-49.5 99.5zM419 780l-93 109l-93 -109h-57l123 147h54l123 -147h-57z" />
<glyph glyph-name="Otilde" unicode="&#xd5;" horiz-adv-x="652"
d="M504 67q-73 -73 -178 -73q-49 0 -96 19t-87 59t-50.5 95.5t-10.5 188.5q0 112 5.5 173t69.5 125t169 64q49 0 96 -19t87 -59t50.5 -95.5t10.5 -188.5q0 -112 -5.5 -173t-60.5 -116zM461 615q-26 26 -61 40.5t-74 14.5q-80 0 -125.5 -45.5t-55 -97t-9.5 -171.5
q0 -104 5.5 -159.5t40.5 -90.5t70 -49.5t74 -14.5q80 0 125.5 45.5t55 97t9.5 171.5q0 104 -5.5 159.5t-49.5 99.5zM386 795q-19 0 -33 5.5t-36.5 18.5t-31.5 17t-24 4q-16 0 -26 -5t-33 -28l-30 29q30 30 49.5 39t39.5 9q21 0 34 -5t32.5 -17t32 -17.5t26.5 -5.5
q13 0 26 6.5t33 26.5l30 -29q-30 -30 -50.5 -39t-38.5 -9z" />
<glyph glyph-name="Odieresis" unicode="&#xd6;" horiz-adv-x="652"
d="M504 67q-73 -73 -178 -73q-49 0 -96 19t-87 59t-50.5 95.5t-10.5 188.5q0 112 5.5 173t69.5 125t169 64q49 0 96 -19t87 -59t50.5 -95.5t10.5 -188.5q0 -112 -5.5 -173t-60.5 -116zM461 615q-26 26 -61 40.5t-74 14.5q-80 0 -125.5 -45.5t-55 -97t-9.5 -171.5
q0 -104 5.5 -159.5t40.5 -90.5t70 -49.5t74 -14.5q80 0 125.5 45.5t55 97t9.5 171.5q0 104 -5.5 159.5t-49.5 99.5zM401 790v77h58v-77h-58zM193 790v77h58v-77h-58z" />
<glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="652"
d="M504 67q-73 -73 -178 -73q-71 0 -130 35l-35 -73h-53l49 102l-9 9q-45 45 -55.5 100.5t-10.5 188.5q0 112 5.5 173t69.5 125t169 64q71 0 130 -35l35 73h53l-49 -102l9 -9q45 -45 55.5 -100.5t10.5 -188.5q0 -112 -5.5 -173t-60.5 -116zM471 604l-253 -529
q47 -33 108 -33q80 0 125.5 45.5t55 97t9.5 171.5q0 89 -4.5 147.5t-40.5 100.5zM326 670q-80 0 -125.5 -45.5t-55 -97t-9.5 -171.5q0 -89 4.5 -147.5t40.5 -100.5l253 529q-47 33 -108 33z" />
<glyph glyph-name="Ugrave" unicode="&#xd9;" horiz-adv-x="687"
d="M344 -6q-108 0 -176 66t-68 171v481h54v-474q0 -88 52 -142t138 -54t138 53t52 143v474h54v-481q0 -105 -68 -171t-176 -66zM333 780l-106 147h67l97 -147h-58z" />
<glyph glyph-name="Uacute" unicode="&#xda;" horiz-adv-x="687"
d="M344 -6q-108 0 -176 66t-68 171v481h54v-474q0 -88 52 -142t138 -54t138 53t52 143v474h54v-481q0 -105 -68 -171t-176 -66zM355 780h-58l97 147h67z" />
<glyph glyph-name="Ucircumflex" unicode="&#xdb;" horiz-adv-x="687"
d="M344 -6q-108 0 -176 66t-68 171v481h54v-474q0 -88 52 -142t138 -54t138 53t52 143v474h54v-481q0 -105 -68 -171t-176 -66zM437 780l-93 109l-93 -109h-57l123 147h54l123 -147h-57z" />
<glyph glyph-name="Udieresis" unicode="&#xdc;" horiz-adv-x="687"
d="M344 -6q-108 0 -176 66t-68 171v481h54v-474q0 -88 52 -142t138 -54t138 53t52 143v474h54v-481q0 -105 -68 -171t-176 -66zM419 790v77h58v-77h-58zM211 790v77h58v-77h-58z" />
<glyph glyph-name="germandbls" unicode="&#xdf;" horiz-adv-x="550"
d="M434 34q-21 -19 -42 -26.5t-53 -7.5h-54v45h44q23 0 36 4.5t35 22t22 68.5v179q0 46 -23 68.5t-65 22.5h-49v45h39q44 0 71 28t27 74q0 53 -34 85t-105 32q-69 0 -102 -39.5t-33 -109.5v-525h-51v525q0 91 50.5 142.5t141.5 51.5q80 0 131.5 -41t51.5 -121t-63 -122
q37 -20 50.5 -47t13.5 -77v-177q0 -64 -39 -100z" />
<glyph glyph-name="agrave" unicode="&#xe0;" horiz-adv-x="524"
d="M380 0v48q-30 -30 -63 -42t-84 -12q-53 0 -86 10t-62 40.5t-29 87.5q0 66 44.5 102.5t123.5 36.5h156v54q0 59 -32 88.5t-104 29.5q-51 0 -80.5 -13.5t-52.5 -47.5l-37 32q29 41 69.5 57.5t100.5 16.5q94 0 140.5 -40.5t46.5 -117.5v-330h-51zM380 230h-150
q-123 0 -123 -97q0 -94 126 -94q40 0 68 7t53.5 31.5t25.5 90.5v62zM238 590l-106 147h67l97 -147h-58z" />
<glyph glyph-name="aacute" unicode="&#xe1;" horiz-adv-x="524"
d="M380 0v48q-30 -30 -63 -42t-84 -12q-53 0 -86 10t-62 40.5t-29 87.5q0 66 44.5 102.5t123.5 36.5h156v54q0 59 -32 88.5t-104 29.5q-51 0 -80.5 -13.5t-52.5 -47.5l-37 32q29 41 69.5 57.5t100.5 16.5q94 0 140.5 -40.5t46.5 -117.5v-330h-51zM380 230h-150
q-123 0 -123 -97q0 -94 126 -94q40 0 68 7t53.5 31.5t25.5 90.5v62zM260 590h-58l97 147h67z" />
<glyph glyph-name="acircumflex" unicode="&#xe2;" horiz-adv-x="524"
d="M380 0v48q-30 -30 -63 -42t-84 -12q-53 0 -86 10t-62 40.5t-29 87.5q0 66 44.5 102.5t123.5 36.5h156v54q0 59 -32 88.5t-104 29.5q-51 0 -80.5 -13.5t-52.5 -47.5l-37 32q29 41 69.5 57.5t100.5 16.5q94 0 140.5 -40.5t46.5 -117.5v-330h-51zM380 230h-150
q-123 0 -123 -97q0 -94 126 -94q40 0 68 7t53.5 31.5t25.5 90.5v62zM342 590l-93 109l-93 -109h-57l123 147h54l123 -147h-57z" />
<glyph glyph-name="atilde" unicode="&#xe3;" horiz-adv-x="524"
d="M380 0v48q-30 -30 -63 -42t-84 -12q-53 0 -86 10t-62 40.5t-29 87.5q0 66 44.5 102.5t123.5 36.5h156v54q0 59 -32 88.5t-104 29.5q-51 0 -80.5 -13.5t-52.5 -47.5l-37 32q29 41 69.5 57.5t100.5 16.5q94 0 140.5 -40.5t46.5 -117.5v-330h-51zM380 230h-150
q-123 0 -123 -97q0 -94 126 -94q40 0 68 7t53.5 31.5t25.5 90.5v62zM309 605q-19 0 -33 5.5t-36.5 18.5t-31.5 17t-24 4q-16 0 -26 -5t-33 -28l-30 29q30 30 49.5 39t39.5 9q21 0 34 -5t32.5 -17t32 -17.5t26.5 -5.5q13 0 26 6.5t33 26.5l30 -29q-30 -30 -50.5 -39t-38.5 -9
z" />
<glyph glyph-name="adieresis" unicode="&#xe4;" horiz-adv-x="524"
d="M380 0v48q-30 -30 -63 -42t-84 -12q-53 0 -86 10t-62 40.5t-29 87.5q0 66 44.5 102.5t123.5 36.5h156v54q0 59 -32 88.5t-104 29.5q-51 0 -80.5 -13.5t-52.5 -47.5l-37 32q29 41 69.5 57.5t100.5 16.5q94 0 140.5 -40.5t46.5 -117.5v-330h-51zM380 230h-150
q-123 0 -123 -97q0 -94 126 -94q40 0 68 7t53.5 31.5t25.5 90.5v62zM324 600v77h58v-77h-58zM116 600v77h58v-77h-58z" />
<glyph glyph-name="aring" unicode="&#xe5;" horiz-adv-x="524"
d="M380 0v48q-30 -30 -63 -42t-84 -12q-53 0 -86 10t-62 40.5t-29 87.5q0 66 44.5 102.5t123.5 36.5h156v54q0 59 -32 88.5t-104 29.5q-51 0 -80.5 -13.5t-52.5 -47.5l-37 32q29 41 69.5 57.5t100.5 16.5q94 0 140.5 -40.5t46.5 -117.5v-330h-51zM380 230h-150
q-123 0 -123 -97q0 -94 126 -94q40 0 68 7t53.5 31.5t25.5 90.5v62zM249 562q-47 0 -80.5 33.5t-33.5 81.5t33 81t81 33t81 -33t33 -81q0 -47 -33 -81t-81 -34zM249 749q-29 0 -51 -21t-22 -51t21.5 -51.5t51.5 -21.5t51.5 21.5t21.5 51.5t-21 51t-52 21z" />
<glyph glyph-name="ae" unicode="&#xe6;" horiz-adv-x="834"
d="M431 230q0 -92 40 -141t117 -49q75 0 133 58l38 -30q-38 -38 -77.5 -56t-97.5 -18q-122 0 -172 90q-30 -48 -71.5 -69t-107.5 -21q-53 0 -86 10t-62 40.5t-29 87.5q0 66 44.5 102.5t123.5 36.5h156v54q0 59 -32 88.5t-104 29.5q-51 0 -80.5 -13.5t-52.5 -47.5l-37 32
q29 41 69.5 57.5t100.5 16.5q136 0 173 -85q51 85 156 85q90 0 141.5 -62.5t51.5 -172.5v-23h-335zM698 362q-16 38 -49.5 59.5t-75.5 21.5t-75.5 -21.5t-46.5 -53t-16.5 -48t-3.5 -49.5h284q0 31 -3.5 48.5t-13.5 42.5zM380 230h-150q-123 0 -123 -97q0 -94 126 -94
q40 0 68 7t53.5 31.5t25.5 90.5v62z" />
<glyph glyph-name="ccedilla" unicode="&#xe7;" horiz-adv-x="498"
d="M281 -6q-98 0 -155 66t-57 181t57 181t155 66q52 0 85.5 -15.5t73.5 -58.5l-35 -32q-31 35 -58 48t-66 13q-84 0 -122.5 -56t-38.5 -146q0 -50 7 -80.5t38.5 -76t115.5 -45.5q39 0 66 13t58 48l35 -32q-38 -42 -73.5 -58t-85.5 -16zM244 -220h-63l72 150h55z" />
<glyph glyph-name="egrave" unicode="&#xe8;" horiz-adv-x="523"
d="M120 230q0 -92 40 -141t117 -49q75 0 133 58l38 -30q-38 -38 -77.5 -56t-96.5 -18q-100 0 -152.5 63.5t-52.5 183.5q0 117 51 182t142 65q90 0 141.5 -62.5t51.5 -172.5v-23h-335zM387 362q-16 38 -49.5 59.5t-75.5 21.5t-75.5 -21.5t-46.5 -53t-16.5 -48t-3.5 -49.5h284
q0 31 -3.5 48.5t-13.5 42.5zM253 590l-106 147h67l97 -147h-58z" />
<glyph glyph-name="eacute" unicode="&#xe9;" horiz-adv-x="523"
d="M120 230q0 -92 40 -141t117 -49q75 0 133 58l38 -30q-38 -38 -77.5 -56t-96.5 -18q-100 0 -152.5 63.5t-52.5 183.5q0 117 51 182t142 65q90 0 141.5 -62.5t51.5 -172.5v-23h-335zM387 362q-16 38 -49.5 59.5t-75.5 21.5t-75.5 -21.5t-46.5 -53t-16.5 -48t-3.5 -49.5h284
q0 31 -3.5 48.5t-13.5 42.5zM275 590h-58l97 147h67z" />
<glyph glyph-name="ecircumflex" unicode="&#xea;" horiz-adv-x="523"
d="M120 230q0 -92 40 -141t117 -49q75 0 133 58l38 -30q-38 -38 -77.5 -56t-96.5 -18q-100 0 -152.5 63.5t-52.5 183.5q0 117 51 182t142 65q90 0 141.5 -62.5t51.5 -172.5v-23h-335zM387 362q-16 38 -49.5 59.5t-75.5 21.5t-75.5 -21.5t-46.5 -53t-16.5 -48t-3.5 -49.5h284
q0 31 -3.5 48.5t-13.5 42.5zM357 590l-93 109l-93 -109h-57l123 147h54l123 -147h-57z" />
<glyph glyph-name="edieresis" unicode="&#xeb;" horiz-adv-x="523"
d="M120 230q0 -92 40 -141t117 -49q75 0 133 58l38 -30q-38 -38 -77.5 -56t-96.5 -18q-100 0 -152.5 63.5t-52.5 183.5q0 117 51 182t142 65q90 0 141.5 -62.5t51.5 -172.5v-23h-335zM387 362q-16 38 -49.5 59.5t-75.5 21.5t-75.5 -21.5t-46.5 -53t-16.5 -48t-3.5 -49.5h284
q0 31 -3.5 48.5t-13.5 42.5zM339 600v77h58v-77h-58zM131 600v77h58v-77h-58z" />
<glyph glyph-name="igrave" unicode="&#xec;" horiz-adv-x="245"
d="M97 0v482h51v-482h-51zM203 590l-106 147h67l97 -147h-58z" />
<glyph glyph-name="iacute" unicode="&#xed;" horiz-adv-x="245"
d="M97 0v482h51v-482h-51zM155 590h-58l97 147h67z" />
<glyph glyph-name="icircumflex" unicode="&#xee;" horiz-adv-x="245"
d="M97 0v482h51v-482h-51zM340 590l-93 109l-93 -109h-57l123 147h54l123 -147h-57z" />
<glyph glyph-name="idieresis" unicode="&#xef;" horiz-adv-x="245"
d="M97 0v482h51v-482h-51zM305 600v77h58v-77h-58zM97 600v77h58v-77h-58z" />
<glyph glyph-name="ntilde" unicode="&#xf1;" horiz-adv-x="559"
d="M417 0v299q0 144 -133 144q-64 0 -100 -38t-36 -106v-299h-51v482h51v-57q54 63 142 63q80 0 129 -47t49 -133v-308h-51zM344 605q-19 0 -33 5.5t-36.5 18.5t-31.5 17t-24 4q-16 0 -26 -5t-33 -28l-30 29q30 30 49.5 39t39.5 9q21 0 34 -5t32.5 -17t32 -17.5t26.5 -5.5
q13 0 26 6.5t33 26.5l30 -29q-30 -30 -50.5 -39t-38.5 -9z" />
<glyph glyph-name="ograve" unicode="&#xf2;" horiz-adv-x="526"
d="M239 590l-106 147h67l97 -147h-58zM461 47q-53 -53 -134 -53t-125 44t-56.5 93t-12.5 110q0 64 12 111t56.5 91.5t125.5 44.5t125 -44t56.5 -93t12.5 -110q0 -64 -12 -111t-48 -83zM427 402q-41 41 -100 41t-90 -31t-42 -66t-11 -105t10.5 -104.5t42 -66t90.5 -31.5
t90 31t42 66t11 105t-10.5 104.5t-32.5 56.5z" />
<glyph glyph-name="oacute" unicode="&#xf3;" horiz-adv-x="526"
d="M397 47q-53 -53 -134 -53t-125 44t-56.5 93t-12.5 110q0 64 12 111t56.5 91.5t125.5 44.5t125 -44t56.5 -93t12.5 -110q0 -64 -12 -111t-48 -83zM363 402q-41 41 -100 41t-90 -31t-42 -66t-11 -105t10.5 -104.5t42 -66t90.5 -31.5t90 31t42 66t11 105t-10.5 104.5
t-32.5 56.5zM274 590h-58l97 147h67z" />
<glyph glyph-name="ocircumflex" unicode="&#xf4;" horiz-adv-x="526"
d="M397 47q-53 -53 -134 -53t-125 44t-56.5 93t-12.5 110q0 64 12 111t56.5 91.5t125.5 44.5t125 -44t56.5 -93t12.5 -110q0 -64 -12 -111t-48 -83zM363 402q-41 41 -100 41t-90 -31t-42 -66t-11 -105t10.5 -104.5t42 -66t90.5 -31.5t90 31t42 66t11 105t-10.5 104.5
t-32.5 56.5zM356 590l-93 109l-93 -109h-57l123 147h54l123 -147h-57z" />
<glyph glyph-name="otilde" unicode="&#xf5;" horiz-adv-x="526"
d="M397 47q-53 -53 -134 -53t-125 44t-56.5 93t-12.5 110q0 64 12 111t56.5 91.5t125.5 44.5t125 -44t56.5 -93t12.5 -110q0 -64 -12 -111t-48 -83zM363 402q-41 41 -100 41t-90 -31t-42 -66t-11 -105t10.5 -104.5t42 -66t90.5 -31.5t90 31t42 66t11 105t-10.5 104.5
t-32.5 56.5zM323 605q-19 0 -33 5.5t-36.5 18.5t-31.5 17t-24 4q-16 0 -26 -5t-33 -28l-30 29q30 30 49.5 39t39.5 9q21 0 34 -5t32.5 -17t32 -17.5t26.5 -5.5q13 0 26 6.5t33 26.5l30 -29q-30 -30 -50.5 -39t-38.5 -9z" />
<glyph glyph-name="odieresis" unicode="&#xf6;" horiz-adv-x="526"
d="M397 47q-53 -53 -134 -53t-125 44t-56.5 93t-12.5 110q0 64 12 111t56.5 91.5t125.5 44.5t125 -44t56.5 -93t12.5 -110q0 -64 -12 -111t-48 -83zM363 402q-41 41 -100 41t-90 -31t-42 -66t-11 -105t10.5 -104.5t42 -66t90.5 -31.5t90 31t42 66t11 105t-10.5 104.5
t-32.5 56.5zM338 600v77h58v-77h-58zM130 600v77h58v-77h-58z" />
<glyph glyph-name="divide" unicode="&#xf7;"
d="M222 397v70h70v-70h-70zM53 240v47h408v-47h-408zM222 60v70h70v-70h-70z" />
<glyph glyph-name="oslash" unicode="&#xf8;" horiz-adv-x="526"
d="M397 47q-53 -53 -134 -53q-59 0 -105 29l-40 -67h-48l56 94q-32 34 -44.5 83t-12.5 108q0 64 12 111t56.5 91.5t125.5 44.5q60 0 105 -30l40 68h48l-56 -94q32 -34 44.5 -83t12.5 -108q0 -64 -12 -111t-48 -83zM374 389l-192 -325q36 -25 81 -25q59 0 90 31t42 66t11 105
q0 52 -5.5 85.5t-26.5 62.5zM263 443q-59 0 -90 -31t-42 -66t-11 -105q0 -52 5.5 -85.5t26.5 -62.5l192 325q-36 25 -81 25z" />
<glyph glyph-name="ugrave" unicode="&#xf9;" horiz-adv-x="559"
d="M411 0v57q-54 -63 -142 -63q-80 0 -129 47t-49 133v308h51v-299q0 -144 133 -144q64 0 100 38t36 106v299h51v-482h-51zM265 590l-106 147h67l97 -147h-58z" />
<glyph glyph-name="uacute" unicode="&#xfa;" horiz-adv-x="559"
d="M411 0v57q-54 -63 -142 -63q-80 0 -129 47t-49 133v308h51v-299q0 -144 133 -144q64 0 100 38t36 106v299h51v-482h-51zM287 590h-58l97 147h67z" />
<glyph glyph-name="ucircumflex" unicode="&#xfb;" horiz-adv-x="559"
d="M411 0v57q-54 -63 -142 -63q-80 0 -129 47t-49 133v308h51v-299q0 -144 133 -144q64 0 100 38t36 106v299h51v-482h-51zM369 590l-93 109l-93 -109h-57l123 147h54l123 -147h-57z" />
<glyph glyph-name="udieresis" unicode="&#xfc;" horiz-adv-x="559"
d="M411 0v57q-54 -63 -142 -63q-80 0 -129 47t-49 133v308h51v-299q0 -144 133 -144q64 0 100 38t36 106v299h51v-482h-51zM351 600v77h58v-77h-58zM143 600v77h58v-77h-58z" />
<glyph glyph-name="ydieresis" unicode="&#xff;" horiz-adv-x="430"
d="M192 -131q-14 -39 -32 -55.5t-42 -24t-50 -7.5h-24v45h19q40 0 57 14t31 52l39 107l-176 482h56l145 -422l145 422h56zM290 600v77h58v-77h-58zM82 600v77h58v-77h-58z" />
<glyph glyph-name="dotlessi" unicode="&#x131;" horiz-adv-x="245"
d="M97 0v482h51v-482h-51z" />
<glyph glyph-name="OE" unicode="&#x152;" horiz-adv-x="997"
d="M516 0v85q-73 -91 -190 -91q-49 0 -96 19t-87 59t-50.5 95.5t-10.5 188.5q0 112 5.5 173t69.5 125t169 64q117 0 190 -91v85h422v-47h-369l1 -285h313v-42h-313l-1 -291h372v-47h-425zM461 615q-26 26 -61 40.5t-74 14.5q-80 0 -125.5 -45.5t-55 -97t-9.5 -171.5
q0 -104 5.5 -159.5t40.5 -90.5t70 -49.5t74 -14.5q80 0 125.5 45.5t55 97t9.5 171.5q0 104 -5.5 159.5t-49.5 99.5z" />
<glyph glyph-name="oe" unicode="&#x153;" horiz-adv-x="860"
d="M457 230q0 -92 40 -141t117 -49q75 0 133 58l38 -30q-38 -38 -77.5 -56t-96.5 -18q-129 0 -178 105q-23 -50 -68 -77.5t-102 -27.5q-81 0 -125 44t-56.5 93t-12.5 110q0 64 12 111t56.5 91.5t125.5 44.5q57 0 102 -27.5t68 -77.5q49 105 166 105q90 0 141.5 -62.5
t51.5 -172.5v-23h-335zM724 362q-16 38 -49.5 59.5t-75.5 21.5t-75.5 -21.5t-46.5 -53t-16.5 -48t-3.5 -49.5h284q0 31 -3.5 48.5t-13.5 42.5zM363 402q-41 41 -100 41t-90 -31t-42 -66t-11 -105t10.5 -104.5t42 -66t90.5 -31.5t90 31t42 66t11 105t-10.5 104.5t-32.5 56.5z
" />
<glyph glyph-name="Ydieresis" unicode="&#x178;" horiz-adv-x="494"
d="M274 295v-295h-54v295l-210 417h58l181 -360l177 360h58zM322 790v77h58v-77h-58zM114 790v77h58v-77h-58z" />
<glyph glyph-name="florin" unicode="&#x192;" horiz-adv-x="394"
d="M321 667q-74 0 -88 -80l-36 -207h109v-38h-116l-101 -572h-51l101 572h-109v38h116l36 206q10 56 46 91t92 35h44v-45h-43z" />
<glyph glyph-name="hungarumlaut" unicode="&#x2ba;" horiz-adv-x="500"
d="M334 590h-57l97 147h67zM188 590h-58l97 147h67z" />
<glyph glyph-name="caron" unicode="&#x2c7;" horiz-adv-x="500"
d="M277 590h-54l-123 147h57l93 -109l93 109h57z" />
<glyph glyph-name="macron" unicode="&#x2c9;" horiz-adv-x="500"
d="M102 608v46h296v-46h-296z" />
<glyph glyph-name="breve" unicode="&#x2d8;" horiz-adv-x="500"
d="M252 587q-79 0 -119.5 34.5t-47.5 100.5h47q6 -42 37 -66t83 -24q51 0 82.5 23.5t37.5 66.5h43q-7 -66 -45.5 -100.5t-117.5 -34.5z" />
<glyph glyph-name="dotaccent" unicode="&#x2d9;" horiz-adv-x="500"
d="M219 643v63h62v-63h-62z" />
<glyph glyph-name="ring" unicode="&#x2da;" horiz-adv-x="500"
d="M250 562q-47 0 -80.5 33.5t-33.5 81.5t33 81t81 33t81 -33t33 -81q0 -47 -33 -81t-81 -34zM250 749q-29 0 -51 -21t-22 -51t21.5 -51.5t51.5 -21.5t51.5 21.5t21.5 51.5t-21 51t-52 21z" />
<glyph glyph-name="ogonek" unicode="&#x2db;" horiz-adv-x="500"
d="M256 -220l-64 150h55l72 -150h-63z" />
<glyph glyph-name="circumflex" unicode="&#x302;" horiz-adv-x="500"
d="M343 590l-93 109l-93 -109h-57l123 147h54l123 -147h-57z" />
<glyph glyph-name="tilde" unicode="&#x303;" horiz-adv-x="500"
d="M310 605q-19 0 -33 5.5t-36.5 18.5t-31.5 17t-24 4q-16 0 -26 -5t-33 -28l-30 29q30 30 49.5 39t39.5 9q21 0 34 -5t32.5 -17t32 -17.5t26.5 -5.5q13 0 26 6.5t33 26.5l30 -29q-30 -30 -50.5 -39t-38.5 -9z" />
<glyph glyph-name="summation" unicode="&#x3a3;" horiz-adv-x="551"
d="M63 -230v48l207 461l-207 433v48h432v-48h-371l195 -409v-48l-195 -437h371v-48h-432z" />
<glyph glyph-name="Omega" unicode="&#x3a9;" horiz-adv-x="652"
d="M384 0v47q37 18 61.5 37.5t42.5 49t23 78t5 144.5q0 104 -5.5 159.5t-40.5 90.5t-70 49.5t-74 14.5q-80 0 -125.5 -45.5t-55 -97t-9.5 -171.5q0 -93 4.5 -142.5t23 -79.5t42.5 -49.5t62 -37.5v-47h-186v47h91q-42 33 -61 68.5t-24.5 85.5t-5.5 113v42q0 112 5.5 173
t69.5 125t169 64q49 0 96 -19t87 -59t50.5 -95.5t10.5 -188.5v-33q0 -74 -5 -122t-24.5 -84.5t-61.5 -69.5h91v-47h-186z" />
<glyph glyph-name="pi" unicode="&#x3c0;" horiz-adv-x="591"
d="M433 0v437h-275v-437h-48v482h371v-482h-48z" />
<glyph glyph-name="endash" unicode="&#x2013;"
d="M53 240v47h408v-47h-408z" />
<glyph glyph-name="emdash" unicode="&#x2014;" horiz-adv-x="873"
d="M82 240v47h709v-47h-709z" />
<glyph glyph-name="quoteleft" unicode="&#x2018;" horiz-adv-x="260"
d="M95 642v70l70 70v-140h-70z" />
<glyph glyph-name="quoteright" unicode="&#x2019;" horiz-adv-x="260"
d="M95 572v140h70v-70z" />
<glyph glyph-name="quotesinglbase" unicode="&#x201a;" horiz-adv-x="260"
d="M95 -70v140h70v-70z" />
<glyph glyph-name="quotedblleft" unicode="&#x201c;" horiz-adv-x="416"
d="M251 642v70l70 70v-140h-70zM95 642v70l70 70v-140h-70z" />
<glyph glyph-name="quotedblright" unicode="&#x201d;" horiz-adv-x="416"
d="M251 572v140h70v-70zM95 572v140h70v-70z" />
<glyph glyph-name="quotedblbase" unicode="&#x201e;" horiz-adv-x="416"
d="M251 -70v140h70v-70zM95 -70v140h70v-70z" />
<glyph glyph-name="dagger" unicode="&#x2020;" horiz-adv-x="614"
d="M331 457v-457h-51v457h-200v45h200v210h51v-210h203v-45h-203z" />
<glyph glyph-name="daggerdbl" unicode="&#x2021;" horiz-adv-x="614"
d="M331 -20v-210h-51v210h-200v45h200v432h-200v45h200v210h51v-210h203v-45h-203v-432h203v-45h-203z" />
<glyph glyph-name="bullet" unicode="&#x2022;" horiz-adv-x="546"
d="M273 171q-68 0 -115.5 47.5t-47.5 115.5t47.5 115.5t115.5 47.5t115.5 -47.5t47.5 -115.5t-47.5 -115.5t-115.5 -47.5z" />
<glyph glyph-name="ellipsis" unicode="&#x2026;" horiz-adv-x="724"
d="M555 0v74h74v-74h-74zM325 0v74h74v-74h-74zM95 0v74h74v-74h-74z" />
<glyph glyph-name="perthousand" unicode="&#x2030;" horiz-adv-x="1168"
d="M968 -7q-59 0 -95.5 37.5t-36.5 96.5v107q0 60 36 97t96 37q58 0 94.5 -37.5t36.5 -96.5v-107q0 -60 -36 -97t-95 -37zM628 -7q-59 0 -95.5 37.5t-36.5 96.5v107q0 60 36 97t96 37q58 0 94.5 -37.5t36.5 -96.5v-107q0 -60 -36 -97t-95 -37zM271 0h-45l332 712h45z
M201 345q-58 0 -95 37t-37 96v107q0 60 36 97t96 37q58 0 94.5 -37.5t36.5 -96.5v-107q0 -59 -36 -96t-95 -37zM1055 232q0 46 -21 72t-66 26t-66.5 -25.5t-21.5 -72.5v-103q0 -47 21 -72.5t67 -25.5q45 0 66 25t21 72v104zM715 232q0 46 -21 72t-66 26t-66.5 -25.5
t-21.5 -72.5v-103q0 -47 21.5 -72.5t66.5 -25.5t66 26t21 72v103zM288 583q0 46 -21 72t-66 26t-66.5 -25.5t-21.5 -72.5v-103q0 -47 21 -72t67 -25q87 0 87 97v103z" />
<glyph glyph-name="guilsinglleft" unicode="&#x2039;" horiz-adv-x="320"
d="M42 265l196 196v-66l-130 -130l130 -130v-66z" />
<glyph glyph-name="guilsinglright" unicode="&#x203a;" horiz-adv-x="320"
d="M82 69v66l130 130l-130 130v66l196 -196z" />
<glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="809"
d="M709 285v328l-110 -218h-46l-110 218v-328h-44v427h44l133 -270l133 270h44v-427h-44zM198 671v-386h-44v386h-122v41h288v-41h-122z" />
<glyph glyph-name="partialdiff" unicode="&#x2202;" horiz-adv-x="540"
d="M385 47q-51 -53 -129 -53t-120 44t-54.5 93.5t-12.5 109.5q0 69 11.5 115.5t40 75t60 42.5t68.5 14q45 0 79.5 -14.5t63.5 -53.5v86q0 75 -36.5 121t-109.5 46q-35 0 -59.5 -8t-65.5 -45l-33 33q40 35 73.5 50t84.5 15q93 0 145 -57t52 -152v-268q0 -63 -12 -110.5
t-46 -83.5zM351 402q-39 41 -95 41t-88.5 -34t-40 -73t-7.5 -95q0 -69 10.5 -104.5t40 -66.5t85.5 -31t88.5 34t40 73t7.5 95q0 69 -10.5 104.5t-30.5 56.5z" />
<glyph glyph-name="Delta" unicode="&#x2206;" horiz-adv-x="591"
d="M10 0l262 712h47l262 -712h-571zM295 640l-215 -592h431z" />
<glyph glyph-name="product" unicode="&#x220f;" horiz-adv-x="699"
d="M535 -230v942h-371v-942h-54v990h479v-990h-54z" />
<glyph glyph-name="fraction" unicode="&#x2215;" horiz-adv-x="177"
d="M-55 0h-45l332 712h45z" />
<glyph glyph-name="periodcentered" unicode="&#x2219;" horiz-adv-x="264"
d="M95 227v74h74v-74h-74z" />
<glyph glyph-name="radical" unicode="&#x221a;" horiz-adv-x="550"
d="M432 664l-217 -664h-46l-159 482h56l126 -387l199 617h129v-48h-88z" />
<glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="792"
d="M573 112q-51 0 -90 24.5t-87 83.5q-47 -58 -87 -83.5t-89 -25.5q-65 0 -106.5 42.5t-41.5 106.5q0 65 41.5 107.5t106.5 42.5q48 0 88.5 -25.5t87.5 -84.5q49 61 87.5 85.5t89.5 24.5q64 0 105.5 -42.5t41.5 -107.5q0 -64 -41 -106t-106 -42zM569 363q-37 0 -67.5 -24.5
t-75.5 -78.5q45 -55 75 -78.5t68 -23.5q45 0 74 28t29 74t-28.5 74.5t-74.5 28.5zM223 365q-46 0 -74.5 -29.5t-28.5 -75.5t28 -74t75 -28q38 0 68 23.5t75 78.5q-45 55 -75.5 80t-67.5 25z" />
<glyph glyph-name="integral" unicode="&#x222b;" horiz-adv-x="329"
d="M264 667q-74 0 -74 -80v-691q0 -57 -30 -91.5t-86 -34.5h-44v45h35q74 0 74 80v691q0 57 30 91.5t86 34.5h44v-45h-35z" />
<glyph glyph-name="approxequal" unicode="&#x2248;"
d="M345 295q-25 0 -44.5 7.5t-53.5 22t-48.5 19.5t-31.5 5q-23 0 -38 -7.5t-45 -37.5l-31 31q39 39 62 50.5t54 11.5q25 0 44.5 -7.5t53.5 -22t48.5 -19.5t31.5 -5q23 0 38 7.5t45 37.5l31 -31q-39 -39 -62 -50.5t-54 -11.5zM345 135q-25 0 -44.5 7.5t-53.5 22t-48.5 19.5
t-31.5 5q-23 0 -38 -7.5t-45 -37.5l-31 31q39 39 62 50.5t54 11.5q25 0 44.5 -7.5t53.5 -22t48.5 -19.5t31.5 -5q23 0 38 7.5t45 37.5l31 -31q-39 -39 -62 -50.5t-54 -11.5z" />
<glyph glyph-name="notequal" unicode="&#x2260;"
d="M190 163l-104 -104l-33 33l71 71h-71v47h118l106 106h-224v47h271l104 104l33 -33l-71 -71h71v-47h-118l-106 -106h224v-47h-271z" />
<glyph glyph-name="lessequal" unicode="&#x2264;" horiz-adv-x="1027"
d="M819 -77l-580 579v-536l-48 48v572h571l49 -49h-536l579 -579z" />
<glyph glyph-name="greaterequal" unicode="&#x2265;" horiz-adv-x="1027"
d="M788 -34v536l-580 -579l-35 35l579 579h-536l49 49h571v-572z" />
<glyph glyph-name="lozenge" unicode="&#x25ca;" horiz-adv-x="654"
d="M327 -7l-255 363l255 363l255 -363zM327 641l-198 -285l198 -287l198 287z" />
<glyph glyph-name="fi" unicode="&#xf001;" horiz-adv-x="547"
d="M393 649v63h63v-63h-63zM399 0v482h51v-482h-51zM163 444v-444h-51v444h-66v38h66v104q0 57 30 91.5t86 34.5h44v-45h-35q-74 0 -74 -80v-105h109v-38h-109z" />
<glyph glyph-name="fl" unicode="&#xf002;" horiz-adv-x="586"
d="M510 0q-57 0 -86.5 33.5t-29.5 91.5v587h51v-586q0 -43 16 -62t58 -19h35v-45h-44zM163 444v-444h-51v444h-66v38h66v104q0 57 30 91.5t86 34.5h44v-45h-35q-74 0 -74 -80v-105h109v-38h-109z" />
<glyph glyph-name="glyph225" horiz-adv-x="578"
d="M116 0v306l-76 -48v48l76 48v358h54v-324l164 104v-48l-164 -104v-292h378v-48h-432z" />
<glyph glyph-name="glyph226" horiz-adv-x="308"
d="M222 0q-57 0 -86.5 33.5t-29.5 91.5v231l-66 -41v45l66 41v311h51v-279l88 55v-45l-88 -55v-262q0 -43 16 -62t58 -19h35v-45h-44z" />
<glyph glyph-name="glyph227" horiz-adv-x="587"
d="M288 -6q-80 0 -133 21.5t-104 72.5l38 38q47 -47 92 -65.5t110 -18.5q85 0 134 39t49 108q0 65 -29.5 91t-48.5 33t-64 14l-83 13q-81 12 -132 55.5t-51 127.5q0 89 59 142t162 53q65 0 111 -17.5t94 -59.5l-35 -35q-38 34 -75.5 50t-97.5 16q-77 0 -121 -39t-44 -108
q0 -62 39 -94.5t104 -42.5l77 -12q52 -8 77 -17t68.5 -45t43.5 -123q0 -90 -64.5 -143.5t-175.5 -53.5zM314 780h-54l-123 147h57l93 -109l93 109h57z" />
<glyph glyph-name="glyph228" horiz-adv-x="494"
d="M245 -6q-123 0 -195 69l35 35q56 -59 158 -59q145 0 145 98q0 72 -92 81l-80 7q-71 0 -108 34t-37 92q0 63 47 100t126 37q50 0 93 -13t76 -38l-34 -34q-56 41 -135 41q-59 0 -91 -24t-32 -69q0 -72 98 -81l78 -7q68 -6 104.5 -33t36.5 -93q0 -65 -52.5 -104t-140.5 -39z
M271 590h-54l-123 147h57l93 -109l93 109h57z" />
<glyph glyph-name="glyph229" horiz-adv-x="559"
d="M63 0v57l375 607h-360v48h418v-48l-378 -616h378v-48h-433zM314 780h-54l-123 147h57l93 -109l93 109h57z" />
<glyph glyph-name="glyph230" horiz-adv-x="452"
d="M54 0v48l290 389h-274v45h328v-48l-291 -389h291v-45h-344zM261 590h-54l-123 147h57l93 -109l93 109h57z" />
<glyph glyph-name="glyph231" horiz-adv-x="328"
d="M133 436v350h51v-350h-51zM133 -74v350h51v-350h-51z" />
<glyph glyph-name="glyph232" horiz-adv-x="689"
d="M569 113q-32 -51 -86 -82t-129 -31h-233v338h-81v42h81v332h240q141 0 187 -79t52.5 -119.5t6.5 -157.5q0 -123 -7 -164.5t-31 -78.5zM513 586q-31 42 -71 60.5t-95 18.5h-172v-285h178v-42h-178v-291h172q59 0 101.5 19.5t68 58t31 77.5t5.5 149q0 91 -3.5 140.5
t-36.5 94.5z" />
<glyph glyph-name="glyph233" horiz-adv-x="526"
d="M397 47q-53 -53 -134 -53t-125 44t-56.5 93t-12.5 110q0 64 12 111t56.5 91.5t125.5 44.5q19 0 40 -4t35 -13l-67 113h-117v38h95l-53 90h53l52 -90h79v-38h-57l72 -123q38 -66 50 -110t12 -110q0 -64 -12 -111t-48 -83zM363 402q-41 41 -100 41t-90 -31t-42 -66
t-11 -105t10.5 -104.5t42 -66t90.5 -31.5t90 31t42 66t11 105t-10.5 104.5t-32.5 56.5z" />
<glyph glyph-name="glyph234" horiz-adv-x="494"
d="M274 295v-295h-54v295l-210 417h58l181 -360l177 360h58zM258 780h-58l97 147h67z" />
<glyph glyph-name="glyph235" horiz-adv-x="430"
d="M192 -131q-14 -39 -32 -55.5t-42 -24t-50 -7.5h-24v45h19q40 0 57 14t31 52l39 107l-176 482h56l145 -422l145 422h56zM226 590h-58l97 147h67z" />
<glyph glyph-name="glyph236" horiz-adv-x="646"
d="M371 154h-207v-154h-54v712h54v-148h207q96 0 155.5 -54t59.5 -151q0 -95 -60 -150t-155 -55zM365 516h-201v-314h201q77 0 122 39.5t45 117.5t-45.5 117.5t-121.5 39.5z" />
<glyph glyph-name="glyph237" horiz-adv-x="540"
d="M409 36q-19 -19 -50 -30.5t-68 -11.5q-45 0 -79.5 14.5t-63.5 53.5v-292h-51v942h51v-292q29 39 63.5 53.5t79.5 14.5q38 0 68 -11t57 -38t41 -81t14 -117q0 -67 -13.5 -118.5t-48.5 -86.5zM284 443q-80 0 -108 -55t-28 -147t27.5 -147t108.5 -55q80 0 108 55t28 147
t-27.5 147t-108.5 55z" />
<glyph glyph-name="glyph238"
d="M53 240v47h408v-47h-408z" />
<glyph glyph-name="glyph239"
d="M412 78l-155 155l-155 -155l-31 31l155 155l-155 155l31 31l155 -155l155 155l31 -31l-155 -155l155 -155z" />
<glyph glyph-name="glyph240" horiz-adv-x="249"
d="M125 285v378l-80 -71v51l80 69h44v-427h-44z" />
<glyph glyph-name="glyph241" horiz-adv-x="336"
d="M50 285v40l168 213q23 30 23 62q0 35 -19.5 55.5t-53.5 20.5q-33 0 -53.5 -18t-20.5 -58h-44q0 51 32.5 83.5t85.5 32.5t85.5 -31.5t32.5 -84.5q0 -25 -8 -44.5t-26 -42.5l-149 -188h183v-40h-236z" />
<glyph glyph-name="glyph242" horiz-adv-x="352"
d="M177 280q-55 0 -91 28.5t-36 85.5h45q0 -38 23.5 -56t58.5 -18q36 0 58.5 21.5t22.5 60.5q0 81 -84 81h-8v39h8q38 0 57 20t19 57q0 38 -20 57.5t-54 19.5q-33 0 -53 -19t-23 -51h-44q0 51 34 80.5t86 29.5q53 0 85.5 -31.5t32.5 -84.5q0 -69 -57 -95q65 -24 65 -103
q0 -58 -35 -90t-90 -32z" />
<glyph glyph-name="glyph243" horiz-adv-x="764"
d="M478 0v40l168 213q23 30 23 62q0 35 -19.5 55.5t-53.5 20.5q-33 0 -53.5 -18t-20.5 -58h-44q0 51 32.5 83.5t85.5 32.5t85.5 -31.5t32.5 -84.5q0 -25 -7.5 -43.5t-26.5 -43.5l-149 -188h183v-40h-236zM198 0h-45l332 712h45zM125 285v378l-80 -71v51l80 69h44v-427h-44z
" />
<glyph glyph-name="glyph244" horiz-adv-x="756"
d="M664 67v-67h-44v67h-170v40l154 320h47l-153 -320h122v120h44v-120h52v-40h-52zM213 0h-45l332 712h45zM125 285v378l-80 -71v51l80 69h44v-427h-44z" />
<glyph glyph-name="glyph245" horiz-adv-x="806"
d="M714 67v-67h-44v67h-170v40l154 320h47l-153 -320h122v120h44v-120h52v-40h-52zM273 0h-45l332 712h45zM177 280q-55 0 -91 28.5t-36 85.5h45q0 -38 23.5 -56t58.5 -18q36 0 58.5 21.5t22.5 60.5q0 81 -84 81h-8v39h8q38 0 57 20t19 57q0 38 -20 57.5t-54 19.5
q-33 0 -53 -19t-23 -51h-44q0 51 34 80.5t86 29.5q53 0 85.5 -31.5t32.5 -84.5q0 -69 -57 -95q65 -24 65 -103q0 -58 -35 -90t-90 -32z" />
</font>
</defs></svg>

Before

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,598 +0,0 @@
<?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" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<metadata>
Created by FontForge 20170731 at Tue May 31 23:36:20 2005
By Aleksey,,,
\251 Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International FontFont release 15
</metadata>
<defs>
<font id="DIN-Medium" horiz-adv-x="533" >
<font-face
font-family="DIN-Medium"
font-weight="5"
font-stretch="normal"
units-per-em="1000"
panose-1="0 0 0 0 0 0 0 0 0 0"
ascent="800"
descent="-200"
x-height="507"
cap-height="712"
bbox="-110 -211 1138 1000"
underline-thickness="70"
underline-position="-242"
unicode-range="U+0020-F002"
/>
<missing-glyph horiz-adv-x="789"
d="M49 0v789h691v-789h-691zM691 49v691h-593v-691h593z" />
<glyph glyph-name=".notdef" horiz-adv-x="789"
d="M49 0v789h691v-789h-691zM691 49v691h-593v-691h593z" />
<glyph glyph-name="glyph1" horiz-adv-x="0"
/>
<glyph glyph-name="glyph2" horiz-adv-x="240"
/>
<glyph glyph-name="space" unicode=" " horiz-adv-x="240"
/>
<glyph glyph-name="exclam" unicode="!" horiz-adv-x="332"
d="M223 212h-80l-22 500h124zM127 0v109h112v-109h-112z" />
<glyph glyph-name="quotedbl" unicode="&#x22;" horiz-adv-x="444"
d="M265 521v191h101v-191h-101zM78 521v191h101v-191h-101z" />
<glyph glyph-name="numbersign" unicode="#" horiz-adv-x="672"
d="M531 426l-20 -124h79v-94h-94l-33 -208h-106l33 208h-137l-32 -208h-107l33 208h-79v94h94l20 124h-81v94h95l31 196h107l-31 -196h136l31 196h106l-31 -196h78v-94h-92zM288 426l-20 -124h137l19 124h-136z" />
<glyph glyph-name="dollar" unicode="$" horiz-adv-x="608"
d="M340 -3v-111h-82v108q-71 0 -125.5 23t-102.5 71l72 71q36 -36 76 -52t89 -16v222l-26 3q-40 5 -76 20.5t-73.5 51t-37.5 121.5t54 142t150 65v90h82v-89q57 0 103 -20t88 -60l-69 -68q-26 25 -60 39.5t-71 14.5v-216l34 -5q48 -7 78.5 -19.5t71.5 -48.5t41 -131
q0 -88 -58.5 -142.5t-157.5 -63.5zM267 622q-51 -5 -79.5 -34.5t-28.5 -74.5q0 -42 21 -61t41.5 -27t45.5 -11v208zM421 274q-17 15 -37 20.5t-53 10.5v-212q56 5 87 33t31 74q0 49 -28 74z" />
<glyph glyph-name="percent" unicode="%" horiz-adv-x="842"
d="M644 -7q-60 0 -100 37t-40 100v101q0 64 39.5 100.5t100.5 36.5q60 0 100 -37t40 -100v-101q0 -64 -39.5 -100.5t-100.5 -36.5zM294 0h-82l336 712h81zM198 345q-61 0 -100.5 36t-39.5 100v101q0 64 39.5 100.5t100.5 36.5q60 0 100 -37t40 -100v-101q0 -63 -39.5 -99.5
t-100.5 -36.5zM707 228q0 72 -63 72t-63 -72v-95q0 -72 63 -72t63 72v95zM261 579q0 72 -63 72t-63 -72v-95q0 -71 63 -71t63 71v95z" />
<glyph glyph-name="ampersand" unicode="&#x26;" horiz-adv-x="730"
d="M553 0l-58 70q-37 -32 -81.5 -54t-115.5 -22q-110 0 -170 57t-60 155q0 67 37.5 112.5t103.5 88.5q-43 50 -58.5 84t-15.5 69q0 69 47.5 113.5t126.5 44.5q75 0 122 -45t47 -114q0 -39 -20 -70t-56 -56l-52 -36l150 -179q38 54 38 143h98q0 -136 -71 -219l119 -142h-131z
M309 629q-32 0 -51 -20t-19 -50q0 -20 13 -42t42 -56l34 23q25 17 38.5 34t13.5 40q0 30 -19.5 50.5t-51.5 20.5zM265 343q-48 -33 -72 -62t-24 -73q0 -53 36 -87t93 -34q39 0 70 12t66 43z" />
<glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="257"
d="M78 521v191h101v-191h-101z" />
<glyph glyph-name="parenleft" unicode="(" horiz-adv-x="317"
d="M190 -94q-36 36 -52 53.5t-29.5 41.5t-18 52.5t-4.5 63.5v478q0 39 4 64t18 50t29.5 42.5t52.5 54.5l69 -69q-16 -16 -31 -31.5t-27.5 -39.5t-12.5 -77v-466q0 -53 12.5 -76.5t26.5 -39.5l32 -32z" />
<glyph glyph-name="parenright" unicode=")" horiz-adv-x="317"
d="M208 1q-14 -25 -28 -41t-52 -54l-70 70q15 16 31 31q13 15 26 39.5t13 76.5v466q0 52 -12 75t-23.5 36t-34.5 36l70 70q29 -29 48.5 -51t33 -46t18 -51t4.5 -63v-478q0 -36 -4.5 -63t-19.5 -53z" />
<glyph glyph-name="asterisk" unicode="*" horiz-adv-x="485"
d="M387 401l-111 69l4 -131h-75l4 131l-111 -69l-37 65l115 61l-115 62l37 65l111 -69l-4 130h75l-4 -130l111 69l37 -65l-115 -62l115 -61z" />
<glyph glyph-name="plus" unicode="+"
d="M314 225v-168h-95v168h-168v95h168v167h95v-167h168v-95h-168z" />
<glyph glyph-name="comma" unicode="," horiz-adv-x="272"
d="M78 -155v271h116v-176z" />
<glyph glyph-name="hyphen" unicode="-" horiz-adv-x="426"
d="M67 230v95h292v-95h-292z" />
<glyph glyph-name="period" unicode="." horiz-adv-x="278"
d="M78 0v122h122v-122h-122z" />
<glyph glyph-name="slash" unicode="/" horiz-adv-x="380"
d="M98 -74h-98l285 860h98z" />
<glyph glyph-name="zero" unicode="0"
d="M266 -6q-88 0 -146.5 55.5t-58.5 148.5v316q0 93 58.5 148.5t146.5 55.5q87 0 146.5 -55.5t59.5 -148.5v-316q0 -93 -58.5 -148.5t-147.5 -55.5zM370 511q0 53 -27.5 84.5t-76.5 31.5q-48 0 -75.5 -31.5t-27.5 -84.5v-310q0 -53 27.5 -84.5t75.5 -31.5t76 32t28 84v310z
" />
<glyph glyph-name="one" unicode="1"
d="M253 0v601l-139 -122v113l139 120h102v-712h-102z" />
<glyph glyph-name="two" unicode="2"
d="M63 0v91l274 333q38 46 38 95t-27.5 78.5t-76.5 29.5q-45 0 -75 -27t-30 -83h-102q0 90 57.5 145.5t149.5 55.5t149 -54t57 -146q0 -44 -15.5 -77t-51.5 -77l-223 -273h290v-91h-414z" />
<glyph glyph-name="three" unicode="3"
d="M260 -7q-94 0 -156 50t-62 150h102q0 -53 34 -80.5t82 -27.5q51 0 83.5 31.5t32.5 86.5t-30 86t-89 31h-17v89h17q55 0 81.5 28t26.5 80q0 53 -29.5 81.5t-75.5 28.5q-48 0 -77.5 -27.5t-29.5 -74.5h-102q0 88 60 141t149 53q91 0 149 -55t58 -144q0 -55 -23.5 -93
t-65.5 -59q48 -21 74 -62t26 -106q0 -99 -62 -153t-156 -54z" />
<glyph glyph-name="four" unicode="4"
d="M422 107v-107h-99v107h-288v95l251 510h110l-250 -510h177v166h99v-166h76v-95h-76z" />
<glyph glyph-name="five" unicode="5"
d="M419 49q-26 -26 -63.5 -41t-86.5 -15q-48 0 -87.5 15t-65.5 41t-39.5 61t-13.5 74h102q13 -99 104 -99q46 0 70 24t31 55t7 74q0 70 -23 109.5t-81 39.5q-41 0 -66.5 -18t-34.5 -46h-93v389h384v-91h-292v-188q39 41 118 41q41 0 73 -11.5t61.5 -41t42.5 -76.5t13 -107
q0 -66 -11.5 -109t-48.5 -80z" />
<glyph glyph-name="six" unicode="6"
d="M267 -6q-94 0 -152.5 57.5t-58.5 155.5q0 40 13.5 81.5t39.5 93.5l162 330h109l-153 -306q11 5 29.5 8t33.5 3q79 0 133 -57t54 -149q0 -98 -58.5 -157.5t-151.5 -59.5zM266 332q-49 0 -78.5 -32.5t-29.5 -90.5q0 -56 30 -90t78 -34t78.5 33.5t30.5 90.5q0 54 -29.5 88.5
t-79.5 34.5z" />
<glyph glyph-name="seven" unicode="7"
d="M249 0h-110l239 621h-217v-112h-98v203h424v-91z" />
<glyph glyph-name="eight" unicode="8"
d="M266 -6q-94 0 -156.5 56.5t-62.5 150.5q0 59 27.5 100t70.5 67q-38 23 -62 61.5t-24 91.5q0 87 59 142t148 55q88 0 148 -55t60 -142q0 -54 -23.5 -91.5t-62.5 -61.5q44 -27 71 -67t27 -100q0 -94 -62.5 -150.5t-157.5 -56.5zM266 627q-47 0 -76 -31t-29 -78
q0 -48 29 -78t76 -30t76.5 30.5t29.5 77.5q0 48 -29.5 78.5t-76.5 30.5zM266 322q-50 0 -83.5 -34.5t-33.5 -84.5t33 -84t84 -34q49 0 83 34t34 84t-33.5 84.5t-83.5 34.5z" />
<glyph glyph-name="nine" unicode="9"
d="M424 330l-162 -330h-109l153 306q-26 -11 -64 -11q-79 0 -132.5 56.5t-53.5 149.5q0 98 58.5 157.5t151.5 59.5q94 0 152.5 -57.5t58.5 -155.5q0 -40 -13.5 -81.5t-39.5 -93.5zM266 627q-49 0 -78.5 -33.5t-29.5 -90.5q0 -55 28.5 -89t79.5 -34q49 0 79 33t30 90
q0 56 -30 90t-79 34z" />
<glyph glyph-name="colon" unicode=":" horiz-adv-x="303"
d="M104 285v122h121v-122h-121zM104 0v122h121v-122h-121z" />
<glyph glyph-name="semicolon" unicode=";" horiz-adv-x="303"
d="M104 285v122h121v-122h-121zM106 -155v271h116v-176z" />
<glyph glyph-name="less" unicode="&#x3c;" horiz-adv-x="1027"
d="M230 229l345 -343h-131l-392 391l392 392h131l-345 -343h744v-97h-744z" />
<glyph glyph-name="equal" unicode="="
d="M51 327v95h431v-95h-431zM51 133v95h431v-95h-431z" />
<glyph glyph-name="greater" unicode="&#x3e;" horiz-adv-x="1027"
d="M583 -114h-131l345 343h-745v97h745l-345 343h131l392 -392z" />
<glyph glyph-name="question" unicode="?" horiz-adv-x="511"
d="M422 404l-77 -108q-18 -25 -18 -54v-30h-102v35q0 30 7.5 52t26.5 47l78 105q15 20 23 38t8 38q0 43 -27.5 71.5t-70.5 28.5q-45 0 -71 -29t-26 -72h-102q0 84 57 138t142 54t142.5 -52t57.5 -139q0 -32 -13 -62.5t-35 -60.5zM219 0v109h113v-109h-113z" />
<glyph glyph-name="at" unicode="@" horiz-adv-x="736"
d="M576 0v50q-48 -57 -127 -57q-81 0 -120 43.5t-47.5 83t-8.5 114.5q0 71 8.5 112t45 85t121.5 44q78 0 126 -56v61q0 36 -8 61.5t-28 45.5t-47.5 29t-59.5 9h-126q-34 0 -59.5 -8.5t-46.5 -29.5t-28.5 -44.5t-7.5 -62.5v-312q0 -42 10 -64t40 -46l-70 -70
q-44 36 -61.5 73.5t-17.5 101.5v318q0 59 13.5 100.5t45 73.5t74 46t98.5 14h146q57 0 98 -13.5t73 -45t46 -74.5t14 -101v-483zM472 389q-58 0 -79.5 -40.5t-21.5 -114.5q0 -73 21.5 -113.5t79.5 -40.5t80 40.5t22 113.5q0 75 -21.5 115t-80.5 40z" />
<glyph glyph-name="A" unicode="A" horiz-adv-x="625"
d="M502 0l-49 143h-281l-49 -143h-115l261 712h87l261 -712h-115zM315 551l-111 -316h219z" />
<glyph glyph-name="B" unicode="B" horiz-adv-x="663"
d="M381 0h-288v712h277q99 0 157 -52t58 -143q0 -54 -28.5 -94.5t-67.5 -56.5q45 -18 76 -60t31 -105q0 -96 -58.5 -148.5t-156.5 -52.5zM361 615h-160v-204h160q53 0 84.5 26.5t31.5 75.5t-31.5 75.5t-84.5 26.5zM371 314h-170v-217h170q55 0 86 30t31 79t-30.5 78.5
t-86.5 29.5z" />
<glyph glyph-name="C" unicode="C" horiz-adv-x="628"
d="M323 -6q-111 0 -173 62t-72.5 118t-10.5 182q0 125 10.5 181.5t72.5 118.5t173 62q100 0 167.5 -57t86.5 -162h-110q-13 57 -49.5 89.5t-94.5 32.5q-65 0 -98 -35.5t-41.5 -80.5t-8.5 -149q0 -109 8 -151t41.5 -78t98.5 -36q58 0 95 33t50 89h109q-18 -105 -86 -162
t-168 -57z" />
<glyph glyph-name="D" unicode="D" horiz-adv-x="666"
d="M527 67q-33 -33 -80.5 -50t-103.5 -17h-250v712h250q117 0 176 -59t69.5 -120t10.5 -172v-39q0 -91 -12.5 -149.5t-59.5 -105.5zM453 567q-44 48 -121 48h-131v-518h131q77 0 111.5 38t41 86t6.5 140q0 89 -6.5 133.5t-31.5 72.5z" />
<glyph glyph-name="E" unicode="E" horiz-adv-x="603"
d="M93 0v712h455v-97h-347v-208h296v-96h-296v-214h347v-97h-455z" />
<glyph glyph-name="F" unicode="F" horiz-adv-x="585"
d="M201 615v-217h296v-97h-296v-301h-108v712h455v-97h-347z" />
<glyph glyph-name="G" unicode="G" horiz-adv-x="649"
d="M519 75q-40 -42 -88.5 -61.5t-107.5 -19.5q-111 0 -173 62t-72.5 118t-10.5 182q0 125 10.5 181.5t72.5 118.5t173 62q109 0 176 -61.5t83 -159.5h-109q-14 59 -52 91.5t-98 32.5q-31 0 -58.5 -12t-50 -36t-31 -68.5t-8.5 -148.5q0 -109 8 -151t41.5 -78t98.5 -36
q72 0 112 46t40 116v40h-152v92h260v-109q0 -70 -14.5 -116.5t-49.5 -84.5z" />
<glyph glyph-name="H" unicode="H" horiz-adv-x="691"
d="M490 0v311h-289v-311h-108v712h108v-304h289v304h108v-712h-108z" />
<glyph glyph-name="I" unicode="I" horiz-adv-x="294"
d="M93 0v712h108v-712h-108z" />
<glyph glyph-name="J" unicode="J" horiz-adv-x="506"
d="M186 -6q-54 0 -95 16t-78 53l72 71q22 -22 43 -32.5t58 -10.5q60 0 94.5 36.5t34.5 105.5v479h108v-487q0 -108 -67 -169.5t-170 -61.5z" />
<glyph glyph-name="K" unicode="K" horiz-adv-x="658"
d="M521 0l-200 351l-120 -144v-207h-108v712h108v-358l291 358h132l-231 -279l255 -433h-127z" />
<glyph glyph-name="L" unicode="L" horiz-adv-x="574"
d="M93 0v712h108v-615h343v-97h-451z" />
<glyph glyph-name="M" unicode="M" horiz-adv-x="813"
d="M613 0v476l-164 -347h-80l-168 347v-476h-108v712h108l208 -443l204 443h108v-712h-108z" />
<glyph glyph-name="N" unicode="N" horiz-adv-x="722"
d="M530 0l-329 501v-501h-108v712h99l329 -500v500h108v-712h-99z" />
<glyph glyph-name="O" unicode="O" horiz-adv-x="646"
d="M511 70q-76 -76 -188 -76q-111 0 -173 62t-72.5 118t-10.5 182q0 125 10.5 181.5t72.5 118.5t173 62q57 0 103.5 -19t89 -61.5t53 -99.5t10.5 -182q0 -129 -9.5 -183t-58.5 -103zM429 577q-19 21 -46.5 32.5t-59.5 11.5q-31 0 -59.5 -12t-50.5 -36t-30 -66.5t-8 -150.5
q0 -112 7.5 -151.5t30.5 -65t50.5 -37t59.5 -11.5q31 0 59.5 12t50.5 36t30 66.5t8 150.5q0 112 -7.5 151.5t-34.5 69.5z" />
<glyph glyph-name="P" unicode="P" horiz-adv-x="629"
d="M363 280h-162v-280h-108v712h270q103 0 165.5 -60.5t62.5 -155.5q0 -94 -63 -155t-165 -61zM357 615h-156v-237h156q57 0 91.5 31.5t34.5 86.5q0 56 -34.5 87.5t-91.5 31.5z" />
<glyph glyph-name="Q" unicode="Q" horiz-adv-x="646"
d="M543 -32l-71 71q-64 -45 -149 -45q-111 0 -173 62t-72.5 118t-10.5 182q0 125 10.5 181.5t72.5 118.5t173 62q57 0 103.5 -19t89 -61.5t53 -99.5t10.5 -182q0 -113 -6.5 -164t-39.5 -95l70 -69zM429 577q-19 21 -46.5 32.5t-59.5 11.5q-31 0 -59.5 -12t-50.5 -36
t-30 -66.5t-8 -150.5q0 -112 7.5 -151.5t30.5 -65t50.5 -37t59.5 -11.5q41 0 73 23l-75 75l60 60l69 -69q13 25 17 64.5t4 111.5q0 112 -7.5 151.5t-34.5 69.5z" />
<glyph glyph-name="R" unicode="R" horiz-adv-x="655"
d="M486 0l-150 300h-135v-300h-108v712h276q100 0 160.5 -57.5t60.5 -150.5q0 -73 -39.5 -122.5t-102.5 -66.5l164 -315h-126zM361 615h-160v-223h160q54 0 87.5 29.5t33.5 81.5t-33 82t-88 30z" />
<glyph glyph-name="S" unicode="S" horiz-adv-x="590"
d="M282 -6q-82 0 -142 21.5t-110 72.5l72 71q37 -37 81.5 -52.5t100.5 -15.5q70 0 108.5 28.5t38.5 80.5q0 49 -20.5 67.5t-37.5 25.5t-48 11l-84 12q-87 12 -137 59t-50 134q0 94 64 151.5t174 57.5q134 0 221 -81l-69 -68q-31 30 -69 42.5t-86 12.5q-61 0 -95.5 -31.5
t-34.5 -79.5q0 -42 27.5 -66.5t79.5 -32.5l81 -12q48 -7 78.5 -19.5t71.5 -48.5t41 -131q0 -97 -70.5 -153t-185.5 -56z" />
<glyph glyph-name="T" unicode="T" horiz-adv-x="560"
d="M334 615v-615h-108v615h-196v97h500v-97h-196z" />
<glyph glyph-name="U" unicode="U" horiz-adv-x="675"
d="M337 -6q-110 0 -182.5 68.5t-72.5 177.5v472h108v-467q0 -71 39.5 -112.5t107.5 -41.5q67 0 107.5 41.5t40.5 112.5v467h108v-472q0 -109 -72.5 -177.5t-183.5 -68.5z" />
<glyph glyph-name="V" unicode="V" horiz-adv-x="564"
d="M323 0h-84l-234 712h112l164 -518l164 518h114z" />
<glyph glyph-name="W" unicode="W" horiz-adv-x="871"
d="M674 0h-94l-145 499l-144 -499h-94l-186 712h114l124 -509l143 509h87l143 -509l124 509h114z" />
<glyph glyph-name="X" unicode="X" horiz-adv-x="578"
d="M443 0l-155 273l-154 -273h-124l220 365l-206 347h124l140 -255l141 255h124l-206 -347l221 -365h-125z" />
<glyph glyph-name="Y" unicode="Y" horiz-adv-x="544"
d="M326 293v-293h-108v293l-213 419h118l149 -313l149 313h118z" />
<glyph glyph-name="Z" unicode="Z" horiz-adv-x="552"
d="M48 0v93l329 522h-315v97h442v-88l-331 -527h331v-97h-456z" />
<glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="347"
d="M86 -74v860h218v-91h-116v-678h116v-91h-218z" />
<glyph glyph-name="backslash" unicode="\" horiz-adv-x="380"
d="M282 -74l-282 852h98l282 -852h-98z" />
<glyph glyph-name="bracketright" unicode="]" horiz-adv-x="347"
d="M43 -74v90h118v680h-118v90h218v-860h-218z" />
<glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="571"
d="M397 401l-112 207l-112 -207h-106l172 318h93l171 -318h-106z" />
<glyph glyph-name="underscore" unicode="_" horiz-adv-x="571"
d="M0 -172v70h571v-70h-571z" />
<glyph glyph-name="grave" unicode="`" horiz-adv-x="500"
d="M225 599l-111 162h113l75 -162h-77z" />
<glyph glyph-name="a" unicode="a" horiz-adv-x="530"
d="M354 0v46q-29 -29 -58 -40.5t-77 -11.5q-90 0 -133 44t-43 111q0 66 45 106t130 40h134v36q0 49 -26 72t-85 23q-41 0 -65.5 -10.5t-45.5 -38.5l-67 63q35 40 76.5 56.5t105.5 16.5q209 0 209 -174v-339h-100zM352 224h-119q-91 0 -91 -73q0 -72 93 -72q36 0 55.5 5
t40.5 25.5t21 73.5v41z" />
<glyph glyph-name="b" unicode="b" horiz-adv-x="553"
d="M439 39q-45 -45 -124 -45q-44 0 -75 13t-59 47v-54h-100v712h102v-256q26 31 58 44t75 13q78 0 117.5 -39.5t51 -95t11.5 -124.5q0 -74 -11 -127t-46 -88zM289 422q-63 0 -84.5 -44.5t-21.5 -123.5q0 -81 21.5 -125t84.5 -44t84 44t21 125q0 80 -21 124t-84 44z" />
<glyph glyph-name="c" unicode="c" horiz-adv-x="485"
d="M281 -6q-96 0 -161 63t-65 197q0 133 65 196t161 63q54 0 92 -16t75 -55l-70 -68q-44 48 -97 48q-60 0 -92 -41.5t-32 -126.5q0 -86 32 -127.5t92 -41.5q31 0 51 10t46 38l70 -67q-68 -72 -167 -72z" />
<glyph glyph-name="d" unicode="d" horiz-adv-x="553"
d="M372 0v54q-27 -33 -58.5 -46.5t-75.5 -13.5q-38 0 -70 11.5t-60 39.5t-39.5 83.5t-11.5 125.5q0 94 15 140.5t51 82.5t114 36q43 0 74.5 -12.5t58.5 -44.5v256h102v-712h-100zM265 422q-63 0 -84.5 -44.5t-21.5 -123.5q0 -81 21.5 -125t84.5 -44t84 44t21 125
q0 80 -21 124t-84 44z" />
<glyph glyph-name="e" unicode="e" horiz-adv-x="539"
d="M156 224q0 -67 33.5 -104.5t95.5 -37.5q42 0 68 11.5t55 40.5l65 -61q-41 -41 -83.5 -60t-106.5 -19q-105 0 -166.5 61t-61.5 199q0 122 58 190.5t157 68.5q100 0 157.5 -67.5t57.5 -176.5v-45h-329zM370 364q-12 29 -38.5 46.5t-61.5 17.5q-36 0 -62 -17t-39 -47
t-13 -69h228q0 37 -14 69z" />
<glyph glyph-name="f" unicode="f" horiz-adv-x="328"
d="M199 420v-420h-102v420h-58v78h58v78q0 60 35.5 100.5t103.5 40.5h64v-87h-45q-56 0 -56 -59v-73h101v-78h-101z" />
<glyph glyph-name="g" unicode="g" horiz-adv-x="549"
d="M251 -211q-57 0 -98 15t-81 52l65 65q26 -24 49.5 -34.5t60.5 -10.5q61 0 90 36.5t29 92.5v65q-26 -31 -58 -44.5t-73 -13.5q-37 0 -68 11.5t-59 39.5t-39.5 76.5t-11.5 123.5q0 74 11.5 123t50.5 88t117 39q43 0 74 -13t59 -47v54h99v-504q0 -94 -59 -154t-158 -60z
M263 422q-62 0 -83 -43t-21 -116q0 -74 20.5 -116.5t83.5 -42.5q62 0 82.5 42t20.5 117q0 96 -27 127.5t-76 31.5z" />
<glyph glyph-name="h" unicode="h" horiz-adv-x="566"
d="M388 0v311q0 55 -28 83t-74 28q-45 0 -74 -28t-29 -83v-311h-102v712h102v-256q53 57 131 57q83 0 129.5 -50.5t46.5 -135.5v-327h-102z" />
<glyph glyph-name="i" unicode="i" horiz-adv-x="264"
d="M78 607v108h108v-108h-108zM81 0v507h102v-507h-102z" />
<glyph glyph-name="j" unicode="j" horiz-adv-x="264"
d="M78 607v108h108v-108h-108zM44 -207h-63v87h45q30 0 42.5 14.5t12.5 44.5v568h102v-574q0 -60 -35 -100t-104 -40z" />
<glyph glyph-name="k" unicode="k" horiz-adv-x="548"
d="M400 0l-142 234l-75 -85v-149h-102v712h102v-439l197 234h124l-176 -199l198 -308h-126z" />
<glyph glyph-name="l" unicode="l" horiz-adv-x="311"
d="M217 0q-69 0 -104 39.5t-35 100.5v572h102v-566q0 -30 12.5 -44.5t42.5 -14.5h45v-87h-63z" />
<glyph glyph-name="m" unicode="m" horiz-adv-x="877"
d="M699 0v309q0 57 -28 85t-74 28q-45 0 -75 -27.5t-30 -80.5v-314h-102v309q0 57 -28 85t-74 28t-75.5 -28.5t-29.5 -84.5v-309h-102v507h100v-51q25 27 61 42t74 15q96 0 144 -74q61 74 159 74q39 0 72 -12t58 -36.5t38.5 -61t13.5 -79.5v-324h-102z" />
<glyph glyph-name="n" unicode="n" horiz-adv-x="568"
d="M390 0v309q0 57 -28 85t-74 28t-75.5 -28.5t-29.5 -84.5v-309h-102v507h100v-51q53 57 135 57q39 0 70.5 -11.5t57 -36.5t37 -60t11.5 -81v-324h-102z" />
<glyph glyph-name="o" unicode="o" horiz-adv-x="537"
d="M420 54q-27 -28 -64.5 -44t-87.5 -16q-49 0 -86.5 16t-68 48t-43.5 79t-13 117q0 68 13 116t43.5 79.5t67.5 47.5t87 16q49 0 87 -16t68.5 -48t43.5 -79t13 -116t-13 -117t-47 -83zM343 393q-29 29 -75 29q-45 0 -70 -25t-32 -59.5t-7 -83.5q0 -53 6.5 -85t32.5 -58
t70 -26q45 0 70.5 25.5t32.5 60t7 83.5q0 53 -6.5 85t-28.5 54z" />
<glyph glyph-name="p" unicode="p" horiz-adv-x="553"
d="M439 39q-45 -45 -123 -45q-44 0 -75 12.5t-58 45.5v-257h-102v712h100v-54q27 33 58.5 46.5t75.5 13.5q38 0 70 -11.5t60 -39.5t39.5 -83.5t11.5 -124.5q0 -74 -11 -127t-46 -88zM289 422q-63 0 -84.5 -44.5t-21.5 -123.5q0 -81 21.5 -125t84.5 -44t84 44t21 125
q0 80 -21 124t-84 44z" />
<glyph glyph-name="q" unicode="q" horiz-adv-x="553"
d="M370 -205v257q-26 -31 -59 -44.5t-74 -13.5q-78 0 -117.5 39.5t-51 95t-11.5 125.5q0 94 15 140.5t51 82.5t115 36q44 0 75 -13t59 -47v54h100v-712h-102zM265 422q-63 0 -84.5 -44.5t-21.5 -123.5q0 -81 21.5 -125t84.5 -44t84 44t21 125q0 80 -21 124t-84 44z" />
<glyph glyph-name="r" unicode="r" horiz-adv-x="439"
d="M360 388q-17 17 -34.5 25.5t-41.5 8.5q-43 0 -72 -31t-29 -83v-308h-102v507h100v-55q20 27 56.5 44t78.5 17q40 0 66.5 -10t54.5 -38z" />
<glyph glyph-name="s" unicode="s" horiz-adv-x="499"
d="M245 -6q-69 0 -119.5 15.5t-93.5 57.5l67 67q28 -29 66 -41t80 -12q49 0 80 17.5t31 52.5q0 28 -16 44t-52 16l-81 7q-74 6 -112 40t-38 100q0 73 53.5 114t137.5 41q59 0 106 -13.5t82 -43.5l-64 -65q-22 19 -55.5 28t-69.5 9q-45 0 -68.5 -17.5t-23.5 -47.5
q0 -25 15.5 -39.5t54.5 -18.5l80 -7q74 -6 112.5 -41t38.5 -102q0 -77 -58.5 -119t-152.5 -42z" />
<glyph glyph-name="t" unicode="t" horiz-adv-x="342"
d="M232 0q-67 0 -103 41t-36 100v279h-58v78h58v154h102v-154h98v-78h-98v-274q0 -59 56 -59h42v-87h-61z" />
<glyph glyph-name="u" unicode="u" horiz-adv-x="568"
d="M387 0v51q-53 -57 -135 -57q-39 0 -70.5 11.5t-57 36.5t-37 60t-11.5 81v324h102v-309q0 -57 28 -85t74 -28t75.5 28.5t29.5 84.5v309h102v-507h-100z" />
<glyph glyph-name="v" unicode="v" horiz-adv-x="471"
d="M277 0h-83l-186 507h108l120 -357l119 357h108z" />
<glyph glyph-name="w" unicode="w" horiz-adv-x="743"
d="M577 0h-87l-119 354l-118 -354h-88l-157 507h108l98 -357l118 357h79l117 -357l98 357h109z" />
<glyph glyph-name="x" unicode="x" horiz-adv-x="503"
d="M358 0l-106 173l-107 -173h-123l174 259l-167 248h123l100 -165l99 165h123l-166 -248l173 -259h-123z" />
<glyph glyph-name="y" unicode="y" horiz-adv-x="468"
d="M240 -101q-14 -40 -35.5 -61.5t-47.5 -30t-58 -8.5h-41v92h26q32 0 46.5 11t26.5 43l28 79l-177 483h108l121 -357l118 357h109z" />
<glyph glyph-name="z" unicode="z" horiz-adv-x="469"
d="M43 0v81l252 335h-238v91h364v-81l-254 -335h254v-91h-378z" />
<glyph glyph-name="braceleft" unicode="{" horiz-adv-x="407"
d="M291 -74q-73 0 -108 35t-35 104v167q0 42 -18.5 60.5t-47.5 18.5h-37v90h37q16 0 27 4.5t25 18.5t14 56v167q0 37 8 61t35 51t100 27h71v-91h-39q-45 0 -59 -14.5t-14 -63.5v-161q0 -44 -18 -65.5t-48 -34.5q38 -17 52 -41.5t14 -58.5v-161q0 -49 14 -63.5t59 -14.5h39
v-91h-71z" />
<glyph glyph-name="bar" unicode="|" horiz-adv-x="338"
d="M118 -74v860h102v-860h-102z" />
<glyph glyph-name="braceright" unicode="}" horiz-adv-x="407"
d="M326 311q-16 0 -28 -5t-25.5 -18.5t-13.5 -55.5v-167q0 -37 -8 -61t-35 -51t-100 -27h-71v91h39q45 0 59 14.5t14 63.5v161q0 35 13.5 58.5t53.5 41.5q-31 14 -49 35t-18 65v161q0 49 -14 63.5t-59 14.5h-39v91h71q73 0 108 -35t35 -104v-167q0 -42 18.5 -60.5
t48.5 -18.5h36v-90h-36z" />
<glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="574"
d="M383 202q-26 0 -51.5 8t-55 22.5t-47.5 20.5t-37 6q-24 0 -40 -7.5t-45 -36.5l-64 64q44 44 76 61t71 17q27 0 51 -7.5t53 -22t48.5 -21t38.5 -6.5q24 0 40 7.5t45 36.5l65 -64q-44 -44 -76 -61t-72 -17z" />
<glyph glyph-name="nbspace" unicode="&#xa0;" horiz-adv-x="240"
/>
<glyph glyph-name="exclamdown" unicode="&#xa1;" horiz-adv-x="332"
d="M93 398v109h112v-109h-112zM87 -205l22 500h80l22 -500h-124z" />
<glyph glyph-name="cent" unicode="&#xa2;" horiz-adv-x="498"
d="M318 110v-110h-80v111q-83 14 -133 79.5t-50 175.5q0 109 49.5 175t133.5 80v91h80v-90q81 -10 141 -74l-68 -66q-37 41 -82 48v-328q45 7 82 48l68 -66q-60 -64 -141 -74zM247 528q-34 -7 -54 -34.5t-28 -55.5t-8 -72q0 -80 27.5 -117.5t62.5 -44.5v324z" />
<glyph glyph-name="sterling" unicode="&#xa3;" horiz-adv-x="564"
d="M105 0v313h-62v78h62v96q0 107 68 169t170 62q54 0 95 -16t78 -53l-72 -71q-22 22 -43 32.5t-58 10.5q-60 0 -94.5 -36.5t-34.5 -105.5v-88h129v-78h-129v-216h302v-97h-411z" />
<glyph glyph-name="currency" unicode="&#xa4;" horiz-adv-x="665"
d="M530 14l-74 74q-55 -38 -124 -38t-124 38l-73 -74l-67 67l73 74q-38 55 -38 124t38 124l-73 73l67 67l73 -73q54 37 124 37t124 -37l74 73l67 -67l-74 -73q38 -55 38 -124t-38 -124l74 -74zM332 414q-56 0 -96 -39t-40 -96q0 -56 40 -96t96 -40t96 40t40 96t-39.5 95.5
t-96.5 39.5z" />
<glyph glyph-name="yen" unicode="&#xa5;" horiz-adv-x="544"
d="M392 422h87v-78h-127l-26 -51v-52h153v-78h-153v-163h-108v163h-153v78h153v52l-26 51h-127v78h87l-147 290h118l150 -314l148 314h117z" />
<glyph glyph-name="section" unicode="&#xa7;" horiz-adv-x="543"
d="M375 108q41 -18 64.5 -52t23.5 -89q0 -83 -55 -130.5t-136 -47.5q-80 0 -137 43.5t-57 126.5h100q0 -36 25.5 -57.5t68.5 -21.5q91 0 91 84q0 29 -19 52.5t-59 35.5l-70 21q-70 21 -105.5 66.5t-35.5 119.5q0 55 28.5 95.5t68.5 60.5q-40 20 -62 51t-22 83q0 73 50 121
t136 48q87 0 137.5 -45.5t50.5 -119.5h-98q0 38 -25 57t-65 19q-88 0 -88 -77q0 -29 20 -49.5t55 -31.5l70 -21q70 -21 106 -67t36 -119q0 -55 -28.5 -95t-68.5 -61zM343 341q-14 13 -31 20.5t-39 7.5q-45 0 -72 -29t-27 -79q0 -27 7 -46t27 -40t65 -21q44 0 63.5 21
t27.5 39.5t8 46.5q0 52 -29 80z" />
<glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="500"
d="M312 604v108h92v-108h-92zM96 604v108h92v-108h-92z" />
<glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="862"
d="M431 -6q-150 0 -256 106t-106 256t106 256t256 106t256 -106t106 -256t-106 -256t-256 -106zM431 650q-121 0 -205 -85t-84 -209t84 -209t205 -85t205 85t84 209t-84 209t-205 85zM437 156q-81 0 -130 54t-49 146q0 91 48.5 145.5t130.5 54.5q71 0 131 -52l-46 -47
q-40 35 -85 35q-54 0 -81 -37t-27 -99t26.5 -99t81.5 -37q27 0 44 7t41 28l46 -47q-58 -52 -131 -52z" />
<glyph glyph-name="ordfeminine" unicode="&#xaa;" horiz-adv-x="452"
d="M298 307v36q-22 -22 -45.5 -31t-60.5 -9q-72 0 -98 26t-34 48t-8 49q0 53 36 85t103 32h105v28q0 38 -20 56t-67 18q-33 0 -51 -8t-36 -31l-55 52q28 33 61 45.5t85 12.5q82 0 124 -35t42 -104v-270h-81zM296 485h-93q-34 0 -52 -15t-18 -42q0 -55 71 -55q29 0 45 4
t31.5 19t15.5 57v32z" />
<glyph glyph-name="guillemotleft" unicode="&#xab;" horiz-adv-x="592"
d="M290 272l230 229v-123l-108 -106l108 -107v-123zM37 272l230 229v-123l-107 -106l107 -107v-123z" />
<glyph glyph-name="logicalnot" unicode="&#xac;"
d="M389 98v141h-341v95h436v-236h-95z" />
<glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="862"
d="M431 -6q-150 0 -256 106t-106 256t106 256t256 106t256 -106t106 -256t-106 -256t-256 -106zM431 651q-122 0 -206 -85t-84 -210q0 -123 84 -209t206 -86t205.5 85.5t83.5 209.5t-83.5 209.5t-205.5 85.5zM507 161l-80 155h-50v-155h-72v391h147q55 0 90.5 -34.5
t35.5 -85.5q0 -40 -21 -67t-56 -39l87 -165h-81zM443 491h-66v-118h66q28 0 46 17t18 42q0 26 -17.5 42.5t-46.5 16.5z" />
<glyph glyph-name="degree" unicode="&#xb0;" horiz-adv-x="471"
d="M235 375q-72 0 -123 51t-51 123q0 71 51 123t123 52t123.5 -51.5t51.5 -123.5t-51 -123t-124 -51zM235 642q-38 0 -64 -27t-26 -66q0 -38 26 -65t64 -27q39 0 65 26t26 66q0 39 -26 66t-65 27z" />
<glyph glyph-name="plusminus" unicode="&#xb1;"
d="M314 316v-169h-95v169h-168v95h168v168h95v-168h168v-95h-168zM51 0v95h431v-95h-431z" />
<glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="500"
d="M275 599h-77l75 162h113z" />
<glyph glyph-name="mu" unicode="&#xb5;" horiz-adv-x="569"
d="M387 0v51q-53 -57 -134 -57q-45 0 -75 25v-224h-102v712h102v-309q0 -57 28.5 -85t74.5 -28q45 0 74.5 28.5t29.5 84.5v309h102v-507h-100z" />
<glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="637"
d="M442 -205v820h-108v-820h-102v522q-82 0 -138 58t-56 138q0 89 61.5 144t163.5 55h281v-917h-102z" />
<glyph glyph-name="cedilla" unicode="&#xb8;" horiz-adv-x="500"
d="M268 -211h-101l70 147h82z" />
<glyph glyph-name="ordmasculine" unicode="&#xba;" horiz-adv-x="458"
d="M350 351q-21 -22 -51 -35t-70 -13q-39 0 -69 13t-54 38t-34.5 63t-10.5 93q0 56 10 92.5t34.5 62t54.5 38.5t69 13q38 0 69 -13.5t55 -38t34.5 -62.5t10.5 -92q0 -56 -10 -93t-38 -66zM288 619q-23 23 -59 23q-35 0 -55 -20t-25 -45t-5 -67q0 -40 5 -66.5t25 -46.5
t55 -20q36 0 55.5 19.5t24.5 47t5 66.5q0 44 -4 67.5t-22 41.5z" />
<glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="592"
d="M325 42v123l107 107l-107 106v123l231 -229zM72 42v123l108 107l-108 106v123l231 -229z" />
<glyph glyph-name="questiondown" unicode="&#xbf;" horiz-adv-x="511"
d="M179 398v109h112v-109h-112zM240 -211q-84 0 -141.5 52.5t-57.5 139.5q0 34 12 62.5t35 60.5l78 108q18 25 18 54v30h102v-36q0 -31 -7.5 -51.5t-27.5 -47.5l-77 -105q-15 -20 -23 -38t-8 -38q0 -43 27 -71t70 -28q45 0 71.5 28.5t26.5 71.5h102q0 -84 -57 -138t-143 -54
z" />
<glyph glyph-name="Agrave" unicode="&#xc0;" horiz-adv-x="625"
d="M502 0l-49 143h-281l-49 -143h-115l261 712h87l261 -712h-115zM315 551l-111 -316h219zM284 781l-111 162h113l75 -162h-77z" />
<glyph glyph-name="Aacute" unicode="&#xc1;" horiz-adv-x="625"
d="M502 0l-49 143h-281l-49 -143h-115l261 712h87l261 -712h-115zM315 551l-111 -316h219zM335 781h-77l75 162h113z" />
<glyph glyph-name="Acircumflex" unicode="&#xc2;" horiz-adv-x="625"
d="M502 0l-49 143h-281l-49 -143h-115l261 712h87l261 -712h-115zM315 551l-111 -316h219zM397 781l-87 97l-87 -97h-85l129 161h86l129 -161h-85z" />
<glyph glyph-name="Atilde" unicode="&#xc3;" horiz-adv-x="625"
d="M502 0l-49 143h-281l-49 -143h-115l261 712h87l261 -712h-115zM315 551l-111 -316h219zM374 794q-19 0 -37 6t-44.5 21t-49.5 15q-16 0 -27 -5t-31 -25l-48 47q31 31 55 43t49 12q20 0 36.5 -5.5t36 -17t31 -16t26.5 -4.5q14 0 27 6t32 25l48 -47q-31 -31 -55 -43
t-49 -12z" />
<glyph glyph-name="Adieresis" unicode="&#xc4;" horiz-adv-x="625"
d="M502 0l-49 143h-281l-49 -143h-115l261 712h87l261 -712h-115zM315 551l-111 -316h219zM372 786v108h92v-108h-92zM156 786v108h92v-108h-92z" />
<glyph glyph-name="Aring" unicode="&#xc5;" horiz-adv-x="625"
d="M502 0l-49 143h-281l-49 -143h-115l261 712h87l261 -712h-115zM315 551l-111 -316h219zM310 750q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5zM310 938q-26 0 -45 -18t-19 -45q0 -26 18.5 -44.5t45.5 -18.5
q26 0 45 18t19 45q0 26 -18.5 44.5t-45.5 18.5z" />
<glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="952"
d="M442 0v162h-235l-84 -162h-118l374 712h518v-97h-347v-209h296v-97h-296v-212h347v-97h-455zM442 615l-188 -361h188v361z" />
<glyph glyph-name="Ccedilla" unicode="&#xc7;" horiz-adv-x="628"
d="M323 -6q-111 0 -173 62t-72.5 118t-10.5 182q0 125 10.5 181.5t72.5 118.5t173 62q100 0 167.5 -57t86.5 -162h-110q-13 57 -49.5 89.5t-94.5 32.5q-65 0 -98 -35.5t-41.5 -80.5t-8.5 -149q0 -109 8 -151t41.5 -78t98.5 -36q58 0 95 33t50 89h109q-18 -105 -86 -162
t-168 -57zM323 -211h-101l70 147h82z" />
<glyph glyph-name="Egrave" unicode="&#xc8;" horiz-adv-x="603"
d="M93 0v712h455v-97h-347v-208h296v-96h-296v-214h347v-97h-455zM286 781l-111 162h113l75 -162h-77z" />
<glyph glyph-name="Eacute" unicode="&#xc9;" horiz-adv-x="603"
d="M93 0v712h455v-97h-347v-208h296v-96h-296v-214h347v-97h-455zM336 781h-77l75 162h113z" />
<glyph glyph-name="Ecircumflex" unicode="&#xca;" horiz-adv-x="603"
d="M93 0v712h455v-97h-347v-208h296v-96h-296v-214h347v-97h-455zM398 781l-87 97l-87 -97h-85l129 161h86l129 -161h-85z" />
<glyph glyph-name="Edieresis" unicode="&#xcb;" horiz-adv-x="603"
d="M93 0v712h455v-97h-347v-208h296v-96h-296v-214h347v-97h-455zM373 786v108h92v-108h-92zM157 786v108h92v-108h-92z" />
<glyph glyph-name="Igrave" unicode="&#xcc;" horiz-adv-x="294"
d="M93 0v712h108v-712h-108zM204 781l-111 162h113l75 -162h-77z" />
<glyph glyph-name="Iacute" unicode="&#xcd;" horiz-adv-x="294"
d="M93 0v712h108v-712h-108zM170 781h-77l75 162h113z" />
<glyph glyph-name="Icircumflex" unicode="&#xce;" horiz-adv-x="294"
d="M93 0v712h108v-712h-108zM352 781l-87 97l-87 -97h-85l129 161h86l129 -161h-85z" />
<glyph glyph-name="Idieresis" unicode="&#xcf;" horiz-adv-x="294"
d="M93 0v712h108v-712h-108zM309 786v108h92v-108h-92zM93 786v108h92v-108h-92z" />
<glyph glyph-name="Ntilde" unicode="&#xd1;" horiz-adv-x="721"
d="M530 0l-329 501v-501h-108v712h99l329 -500v500h108v-712h-99zM426 794q-19 0 -37 6t-44.5 21t-49.5 15q-16 0 -27 -5t-31 -25l-48 47q31 31 55 43t49 12q20 0 36.5 -5.5t36 -17t31 -16t26.5 -4.5q14 0 27 6t32 25l48 -47q-31 -31 -55 -43t-49 -12z" />
<glyph glyph-name="Ograve" unicode="&#xd2;" horiz-adv-x="647"
d="M511 70q-76 -76 -188 -76q-111 0 -173 62t-72.5 118t-10.5 182q0 125 10.5 181.5t72.5 118.5t173 62q57 0 103.5 -19t89 -61.5t53 -99.5t10.5 -182q0 -129 -9.5 -183t-58.5 -103zM429 577q-19 21 -46.5 32.5t-59.5 11.5q-31 0 -59.5 -12t-50.5 -36t-30 -66.5t-8 -150.5
q0 -112 7.5 -151.5t30.5 -65t50.5 -37t59.5 -11.5q31 0 59.5 12t50.5 36t30 66.5t8 150.5q0 112 -7.5 151.5t-34.5 69.5zM298 781l-111 162h113l75 -162h-77z" />
<glyph glyph-name="Oacute" unicode="&#xd3;" horiz-adv-x="647"
d="M511 70q-76 -76 -188 -76q-111 0 -173 62t-72.5 118t-10.5 182q0 125 10.5 181.5t72.5 118.5t173 62q57 0 103.5 -19t89 -61.5t53 -99.5t10.5 -182q0 -129 -9.5 -183t-58.5 -103zM429 577q-19 21 -46.5 32.5t-59.5 11.5q-31 0 -59.5 -12t-50.5 -36t-30 -66.5t-8 -150.5
q0 -112 7.5 -151.5t30.5 -65t50.5 -37t59.5 -11.5q31 0 59.5 12t50.5 36t30 66.5t8 150.5q0 112 -7.5 151.5t-34.5 69.5zM348 781h-77l75 162h113z" />
<glyph glyph-name="Ocircumflex" unicode="&#xd4;" horiz-adv-x="647"
d="M511 70q-76 -76 -188 -76q-111 0 -173 62t-72.5 118t-10.5 182q0 125 10.5 181.5t72.5 118.5t173 62q57 0 103.5 -19t89 -61.5t53 -99.5t10.5 -182q0 -129 -9.5 -183t-58.5 -103zM429 577q-19 21 -46.5 32.5t-59.5 11.5q-31 0 -59.5 -12t-50.5 -36t-30 -66.5t-8 -150.5
q0 -112 7.5 -151.5t30.5 -65t50.5 -37t59.5 -11.5q31 0 59.5 12t50.5 36t30 66.5t8 150.5q0 112 -7.5 151.5t-34.5 69.5zM410 781l-87 97l-87 -97h-85l129 161h86l129 -161h-85z" />
<glyph glyph-name="Otilde" unicode="&#xd5;" horiz-adv-x="647"
d="M511 70q-76 -76 -188 -76q-111 0 -173 62t-72.5 118t-10.5 182q0 125 10.5 181.5t72.5 118.5t173 62q57 0 103.5 -19t89 -61.5t53 -99.5t10.5 -182q0 -129 -9.5 -183t-58.5 -103zM429 577q-19 21 -46.5 32.5t-59.5 11.5q-31 0 -59.5 -12t-50.5 -36t-30 -66.5t-8 -150.5
q0 -112 7.5 -151.5t30.5 -65t50.5 -37t59.5 -11.5q31 0 59.5 12t50.5 36t30 66.5t8 150.5q0 112 -7.5 151.5t-34.5 69.5zM388 794q-19 0 -37 6t-44.5 21t-49.5 15q-16 0 -27 -5t-31 -25l-48 47q31 31 55 43t49 12q20 0 36.5 -5.5t36 -17t31 -16t26.5 -4.5q14 0 27 6t32 25
l48 -47q-31 -31 -55 -43t-49 -12z" />
<glyph glyph-name="Odieresis" unicode="&#xd6;" horiz-adv-x="647"
d="M511 70q-76 -76 -188 -76q-111 0 -173 62t-72.5 118t-10.5 182q0 125 10.5 181.5t72.5 118.5t173 62q57 0 103.5 -19t89 -61.5t53 -99.5t10.5 -182q0 -129 -9.5 -183t-58.5 -103zM429 577q-19 21 -46.5 32.5t-59.5 11.5q-31 0 -59.5 -12t-50.5 -36t-30 -66.5t-8 -150.5
q0 -112 7.5 -151.5t30.5 -65t50.5 -37t59.5 -11.5q31 0 59.5 12t50.5 36t30 66.5t8 150.5q0 112 -7.5 151.5t-34.5 69.5zM385 786v108h92v-108h-92zM169 786v108h92v-108h-92z" />
<glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="652"
d="M511 70q-76 -76 -188 -76q-33 0 -62.5 7t-56.5 20l-31 -65h-82l51 108l-6 6q-48 48 -58.5 104t-10.5 182q0 125 10.5 181.5t72.5 118.5t173 62q33 0 63 -7t57 -20l30 65h83l-52 -108l7 -6q47 -47 57.5 -104t10.5 -182q0 -129 -9.5 -183t-58.5 -103zM323 621
q-31 0 -58.5 -12t-50 -36t-30.5 -66.5t-8 -150.5q0 -147 20 -190l207 433q-36 22 -80 22zM451 546l-207 -433q35 -22 79 -22q31 0 59.5 12t50.5 36t30 66.5t8 150.5q0 150 -20 190z" />
<glyph glyph-name="Ugrave" unicode="&#xd9;" horiz-adv-x="675"
d="M337 -6q-110 0 -182.5 68.5t-72.5 177.5v472h108v-467q0 -71 39.5 -112.5t107.5 -41.5q67 0 107.5 41.5t40.5 112.5v467h108v-472q0 -109 -72.5 -177.5t-183.5 -68.5zM313 781l-111 162h113l75 -162h-77z" />
<glyph glyph-name="Uacute" unicode="&#xda;" horiz-adv-x="675"
d="M337 -6q-110 0 -182.5 68.5t-72.5 177.5v472h108v-467q0 -71 39.5 -112.5t107.5 -41.5q67 0 107.5 41.5t40.5 112.5v467h108v-472q0 -109 -72.5 -177.5t-183.5 -68.5zM363 781h-77l75 162h113z" />
<glyph glyph-name="Ucircumflex" unicode="&#xdb;" horiz-adv-x="675"
d="M337 -6q-110 0 -182.5 68.5t-72.5 177.5v472h108v-467q0 -71 39.5 -112.5t107.5 -41.5q67 0 107.5 41.5t40.5 112.5v467h108v-472q0 -109 -72.5 -177.5t-183.5 -68.5zM425 781l-87 97l-87 -97h-85l129 161h86l129 -161h-85z" />
<glyph glyph-name="Udieresis" unicode="&#xdc;" horiz-adv-x="675"
d="M337 -6q-110 0 -182.5 68.5t-72.5 177.5v472h108v-467q0 -71 39.5 -112.5t107.5 -41.5q67 0 107.5 41.5t40.5 112.5v467h108v-472q0 -109 -72.5 -177.5t-183.5 -68.5zM400 786v108h92v-108h-92zM184 786v108h92v-108h-92z" />
<glyph glyph-name="germandbls" unicode="&#xdf;" horiz-adv-x="565"
d="M460 39q-42 -39 -114 -39h-53v87h32q32 0 52.5 17t20.5 57v156q0 36 -18.5 54t-51.5 18h-35v81h31q33 0 53.5 19.5t20.5 55.5q0 37 -25 60.5t-81 23.5q-57 0 -82.5 -29.5t-25.5 -83.5v-516h-103v522q0 97 57.5 147t156.5 50q92 0 148.5 -43t56.5 -128q0 -42 -16 -69.5
t-46 -46.5q33 -17 48 -43t15 -72v-165q0 -75 -41 -113z" />
<glyph glyph-name="agrave" unicode="&#xe0;" horiz-adv-x="530"
d="M354 0v46q-29 -29 -58 -40.5t-77 -11.5q-90 0 -133 44t-43 111q0 66 45 106t130 40h134v36q0 49 -26 72t-85 23q-41 0 -65.5 -10.5t-45.5 -38.5l-67 63q35 40 76.5 56.5t105.5 16.5q209 0 209 -174v-339h-100zM352 224h-119q-91 0 -91 -73q0 -72 93 -72q36 0 55.5 5
t40.5 25.5t21 73.5v41zM232 599l-111 162h113l75 -162h-77z" />
<glyph glyph-name="aacute" unicode="&#xe1;" horiz-adv-x="530"
d="M354 0v46q-29 -29 -58 -40.5t-77 -11.5q-90 0 -133 44t-43 111q0 66 45 106t130 40h134v36q0 49 -26 72t-85 23q-41 0 -65.5 -10.5t-45.5 -38.5l-67 63q35 40 76.5 56.5t105.5 16.5q209 0 209 -174v-339h-100zM352 224h-119q-91 0 -91 -73q0 -72 93 -72q36 0 55.5 5
t40.5 25.5t21 73.5v41zM282 599h-77l75 162h113z" />
<glyph glyph-name="acircumflex" unicode="&#xe2;" horiz-adv-x="530"
d="M354 0v46q-29 -29 -58 -40.5t-77 -11.5q-90 0 -133 44t-43 111q0 66 45 106t130 40h134v36q0 49 -26 72t-85 23q-41 0 -65.5 -10.5t-45.5 -38.5l-67 63q35 40 76.5 56.5t105.5 16.5q209 0 209 -174v-339h-100zM352 224h-119q-91 0 -91 -73q0 -72 93 -72q36 0 55.5 5
t40.5 25.5t21 73.5v41zM344 599l-87 97l-87 -97h-85l129 161h86l129 -161h-85z" />
<glyph glyph-name="atilde" unicode="&#xe3;" horiz-adv-x="530"
d="M354 0v46q-29 -29 -58 -40.5t-77 -11.5q-90 0 -133 44t-43 111q0 66 45 106t130 40h134v36q0 49 -26 72t-85 23q-41 0 -65.5 -10.5t-45.5 -38.5l-67 63q35 40 76.5 56.5t105.5 16.5q209 0 209 -174v-339h-100zM352 224h-119q-91 0 -91 -73q0 -72 93 -72q36 0 55.5 5
t40.5 25.5t21 73.5v41zM322 612q-19 0 -37 6t-44.5 21t-49.5 15q-16 0 -27 -5t-31 -25l-48 47q31 31 55 43t49 12q20 0 36.5 -5.5t36 -17t31 -16t26.5 -4.5q14 0 27 6t32 25l48 -47q-31 -31 -55 -43t-49 -12z" />
<glyph glyph-name="adieresis" unicode="&#xe4;" horiz-adv-x="530"
d="M354 0v46q-29 -29 -58 -40.5t-77 -11.5q-90 0 -133 44t-43 111q0 66 45 106t130 40h134v36q0 49 -26 72t-85 23q-41 0 -65.5 -10.5t-45.5 -38.5l-67 63q35 40 76.5 56.5t105.5 16.5q209 0 209 -174v-339h-100zM352 224h-119q-91 0 -91 -73q0 -72 93 -72q36 0 55.5 5
t40.5 25.5t21 73.5v41zM319 604v108h92v-108h-92zM103 604v108h92v-108h-92z" />
<glyph glyph-name="aring" unicode="&#xe5;" horiz-adv-x="530"
d="M354 0v46q-29 -29 -58 -40.5t-77 -11.5q-90 0 -133 44t-43 111q0 66 45 106t130 40h134v36q0 49 -26 72t-85 23q-41 0 -65.5 -10.5t-45.5 -38.5l-67 63q35 40 76.5 56.5t105.5 16.5q209 0 209 -174v-339h-100zM352 224h-119q-91 0 -91 -73q0 -72 93 -72q36 0 55.5 5
t40.5 25.5t21 73.5v41zM257 576q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5zM257 764q-26 0 -45 -18t-19 -45q0 -26 18.5 -44.5t45.5 -18.5q26 0 45 18t19 45q0 26 -18.5 44.5t-45.5 18.5z" />
<glyph glyph-name="ae" unicode="&#xe6;" horiz-adv-x="837"
d="M453 224q0 -66 33 -104t96 -38q42 0 68 11.5t55 40.5l65 -61q-41 -41 -83.5 -60t-106.5 -19q-59 0 -103.5 18.5t-75.5 60.5q-37 -45 -78 -62t-104 -17q-90 0 -122.5 33t-43 61t-10.5 61q0 66 45 106t130 40h134v36q0 49 -26 72t-85 23q-41 0 -65.5 -10.5t-45.5 -38.5
l-67 63q35 40 76.5 56.5t105.5 16.5q125 0 172 -67q55 67 150 67q100 0 157.5 -67.5t57.5 -176.5v-45h-329zM668 364q-12 29 -38.5 46.5t-62.5 17.5q-73 0 -90.5 -41.5t-20.5 -54.5t-3 -37h228q0 39 -13 69zM352 224h-119q-91 0 -91 -73q0 -72 93 -72q36 0 55.5 5t40.5 25.5
t21 73.5v41z" />
<glyph glyph-name="ccedilla" unicode="&#xe7;" horiz-adv-x="488"
d="M281 -6q-96 0 -161 63t-65 197q0 133 65 196t161 63q54 0 92 -16t75 -55l-70 -68q-44 48 -97 48q-60 0 -92 -41.5t-32 -126.5q0 -86 32 -127.5t92 -41.5q31 0 51 10t46 38l70 -67q-68 -72 -167 -72zM268 -211h-101l70 147h82z" />
<glyph glyph-name="egrave" unicode="&#xe8;" horiz-adv-x="539"
d="M156 224q0 -67 33.5 -104.5t95.5 -37.5q42 0 68 11.5t55 40.5l65 -61q-41 -41 -83.5 -60t-106.5 -19q-105 0 -166.5 61t-61.5 199q0 122 58 190.5t157 68.5q100 0 157.5 -67.5t57.5 -176.5v-45h-329zM370 364q-12 29 -38.5 46.5t-61.5 17.5q-36 0 -62 -17t-39 -47
t-13 -69h228q0 37 -14 69zM248 599l-111 162h113l75 -162h-77z" />
<glyph glyph-name="eacute" unicode="&#xe9;" horiz-adv-x="539"
d="M156 224q0 -67 33.5 -104.5t95.5 -37.5q42 0 68 11.5t55 40.5l65 -61q-41 -41 -83.5 -60t-106.5 -19q-105 0 -166.5 61t-61.5 199q0 122 58 190.5t157 68.5q100 0 157.5 -67.5t57.5 -176.5v-45h-329zM370 364q-12 29 -38.5 46.5t-61.5 17.5q-36 0 -62 -17t-39 -47
t-13 -69h228q0 37 -14 69zM298 599h-77l75 162h113z" />
<glyph glyph-name="ecircumflex" unicode="&#xea;" horiz-adv-x="539"
d="M156 224q0 -67 33.5 -104.5t95.5 -37.5q42 0 68 11.5t55 40.5l65 -61q-41 -41 -83.5 -60t-106.5 -19q-105 0 -166.5 61t-61.5 199q0 122 58 190.5t157 68.5q100 0 157.5 -67.5t57.5 -176.5v-45h-329zM370 364q-12 29 -38.5 46.5t-61.5 17.5q-36 0 -62 -17t-39 -47
t-13 -69h228q0 37 -14 69zM360 599l-87 97l-87 -97h-85l129 161h86l129 -161h-85z" />
<glyph glyph-name="edieresis" unicode="&#xeb;" horiz-adv-x="539"
d="M156 224q0 -67 33.5 -104.5t95.5 -37.5q42 0 68 11.5t55 40.5l65 -61q-41 -41 -83.5 -60t-106.5 -19q-105 0 -166.5 61t-61.5 199q0 122 58 190.5t157 68.5q100 0 157.5 -67.5t57.5 -176.5v-45h-329zM370 364q-12 29 -38.5 46.5t-61.5 17.5q-36 0 -62 -17t-39 -47
t-13 -69h228q0 37 -14 69zM335 604v108h92v-108h-92zM119 604v108h92v-108h-92z" />
<glyph glyph-name="igrave" unicode="&#xec;" horiz-adv-x="264"
d="M81 0v507h102v-507h-102zM192 599l-111 162h113l75 -162h-77z" />
<glyph glyph-name="iacute" unicode="&#xed;" horiz-adv-x="264"
d="M81 0v507h102v-507h-102zM158 599h-77l75 162h113z" />
<glyph glyph-name="icircumflex" unicode="&#xee;" horiz-adv-x="264"
d="M81 0v507h102v-507h-102zM340 599l-87 97l-87 -97h-85l129 161h86l129 -161h-85z" />
<glyph glyph-name="idieresis" unicode="&#xef;" horiz-adv-x="264"
d="M81 0v507h102v-507h-102zM297 604v108h92v-108h-92zM81 604v108h92v-108h-92z" />
<glyph glyph-name="ntilde" unicode="&#xf1;" horiz-adv-x="568"
d="M390 0v309q0 57 -28 85t-74 28t-75.5 -28.5t-29.5 -84.5v-309h-102v507h100v-51q53 57 135 57q39 0 70.5 -11.5t57 -36.5t37 -60t11.5 -81v-324h-102zM352 612q-19 0 -37 6t-44.5 21t-49.5 15q-16 0 -27 -5t-31 -25l-48 47q31 31 55 43t49 12q20 0 36.5 -5.5t36 -17
t31 -16t26.5 -4.5q14 0 27 6t32 25l48 -47q-31 -31 -55 -43t-49 -12z" />
<glyph glyph-name="ograve" unicode="&#xf2;" horiz-adv-x="537"
d="M420 54q-27 -28 -64.5 -44t-87.5 -16q-49 0 -86.5 16t-68 48t-43.5 79t-13 117q0 68 13 116t43.5 79.5t67.5 47.5t87 16q49 0 87 -16t68.5 -48t43.5 -79t13 -116t-13 -117t-47 -83zM343 393q-29 29 -75 29q-45 0 -70 -25t-32 -59.5t-7 -83.5q0 -53 6.5 -85t32.5 -58
t70 -26q45 0 70.5 25.5t32.5 60t7 83.5q0 53 -6.5 85t-28.5 54zM236 599l-111 162h113l75 -162h-77z" />
<glyph glyph-name="oacute" unicode="&#xf3;" horiz-adv-x="537"
d="M420 54q-27 -28 -64.5 -44t-87.5 -16q-49 0 -86.5 16t-68 48t-43.5 79t-13 117q0 68 13 116t43.5 79.5t67.5 47.5t87 16q49 0 87 -16t68.5 -48t43.5 -79t13 -116t-13 -117t-47 -83zM343 393q-29 29 -75 29q-45 0 -70 -25t-32 -59.5t-7 -83.5q0 -53 6.5 -85t32.5 -58
t70 -26q45 0 70.5 25.5t32.5 60t7 83.5q0 53 -6.5 85t-28.5 54zM293 599h-77l75 162h113z" />
<glyph glyph-name="ocircumflex" unicode="&#xf4;" horiz-adv-x="537"
d="M420 54q-27 -28 -64.5 -44t-87.5 -16q-49 0 -86.5 16t-68 48t-43.5 79t-13 117q0 68 13 116t43.5 79.5t67.5 47.5t87 16q49 0 87 -16t68.5 -48t43.5 -79t13 -116t-13 -117t-47 -83zM343 393q-29 29 -75 29q-45 0 -70 -25t-32 -59.5t-7 -83.5q0 -53 6.5 -85t32.5 -58
t70 -26q45 0 70.5 25.5t32.5 60t7 83.5q0 53 -6.5 85t-28.5 54zM355 599l-87 97l-87 -97h-85l129 161h86l129 -161h-85z" />
<glyph glyph-name="otilde" unicode="&#xf5;" horiz-adv-x="537"
d="M420 54q-27 -28 -64.5 -44t-87.5 -16q-49 0 -86.5 16t-68 48t-43.5 79t-13 117q0 68 13 116t43.5 79.5t67.5 47.5t87 16q49 0 87 -16t68.5 -48t43.5 -79t13 -116t-13 -117t-47 -83zM343 393q-29 29 -75 29q-45 0 -70 -25t-32 -59.5t-7 -83.5q0 -53 6.5 -85t32.5 -58
t70 -26q45 0 70.5 25.5t32.5 60t7 83.5q0 53 -6.5 85t-28.5 54zM333 612q-19 0 -37 6t-44.5 21t-49.5 15q-16 0 -27 -5t-31 -25l-48 47q31 31 55 43t49 12q20 0 36.5 -5.5t36 -17t31 -16t26.5 -4.5q14 0 27 6t32 25l48 -47q-31 -31 -55 -43t-49 -12z" />
<glyph glyph-name="odieresis" unicode="&#xf6;" horiz-adv-x="537"
d="M420 54q-27 -28 -64.5 -44t-87.5 -16q-49 0 -86.5 16t-68 48t-43.5 79t-13 117q0 68 13 116t43.5 79.5t67.5 47.5t87 16q49 0 87 -16t68.5 -48t43.5 -79t13 -116t-13 -117t-47 -83zM343 393q-29 29 -75 29q-45 0 -70 -25t-32 -59.5t-7 -83.5q0 -53 6.5 -85t32.5 -58
t70 -26q45 0 70.5 25.5t32.5 60t7 83.5q0 53 -6.5 85t-28.5 54zM330 604v108h92v-108h-92zM114 604v108h92v-108h-92z" />
<glyph glyph-name="divide" unicode="&#xf7;"
d="M212 414v109h109v-109h-109zM48 230v95h436v-95h-436zM212 33v109h109v-109h-109z" />
<glyph glyph-name="oslash" unicode="&#xf8;" horiz-adv-x="537"
d="M420 54q-27 -28 -64.5 -44t-87.5 -16q-29 0 -55.5 6.5t-48.5 18.5l-37 -63h-69l58 99q-33 35 -46 83t-13 116t13 116t43.5 79.5t67.5 47.5t87 16q30 0 56.5 -6.5t48.5 -18.5l37 63h69l-59 -98q34 -36 47 -83t13 -116t-13 -117t-47 -83zM268 422q-45 0 -70 -25t-32 -59.5
t-7 -83.5q0 -39 2.5 -62.5t12.5 -46.5l154 260q-26 17 -60 17zM363 363l-154 -260q26 -18 59 -18q45 0 70.5 25.5t32.5 60t7 83.5q0 39 -2.5 62.5t-12.5 46.5z" />
<glyph glyph-name="ugrave" unicode="&#xf9;" horiz-adv-x="568"
d="M387 0v51q-53 -57 -135 -57q-39 0 -70.5 11.5t-57 36.5t-37 60t-11.5 81v324h102v-309q0 -57 28 -85t74 -28t75.5 28.5t29.5 84.5v309h102v-507h-100zM256 599l-111 162h113l75 -162h-77z" />
<glyph glyph-name="uacute" unicode="&#xfa;" horiz-adv-x="568"
d="M387 0v51q-53 -57 -135 -57q-39 0 -70.5 11.5t-57 36.5t-37 60t-11.5 81v324h102v-309q0 -57 28 -85t74 -28t75.5 28.5t29.5 84.5v309h102v-507h-100zM306 599h-77l75 162h113z" />
<glyph glyph-name="ucircumflex" unicode="&#xfb;" horiz-adv-x="568"
d="M387 0v51q-53 -57 -135 -57q-39 0 -70.5 11.5t-57 36.5t-37 60t-11.5 81v324h102v-309q0 -57 28 -85t74 -28t75.5 28.5t29.5 84.5v309h102v-507h-100zM368 599l-87 97l-87 -97h-85l129 161h86l129 -161h-85z" />
<glyph glyph-name="udieresis" unicode="&#xfc;" horiz-adv-x="568"
d="M387 0v51q-53 -57 -135 -57q-39 0 -70.5 11.5t-57 36.5t-37 60t-11.5 81v324h102v-309q0 -57 28 -85t74 -28t75.5 28.5t29.5 84.5v309h102v-507h-100zM343 604v108h92v-108h-92zM127 604v108h92v-108h-92z" />
<glyph glyph-name="ydieresis" unicode="&#xff;" horiz-adv-x="468"
d="M240 -101q-14 -40 -35.5 -61.5t-47.5 -30t-58 -8.5h-41v92h26q32 0 46.5 11t26.5 43l28 79l-177 483h108l121 -357l118 357h109zM296 604v108h92v-108h-92zM80 604v108h92v-108h-92z" />
<glyph glyph-name="dotlessi" unicode="&#x131;" horiz-adv-x="264"
d="M81 0v507h102v-507h-102z" />
<glyph glyph-name="OE" unicode="&#x152;" horiz-adv-x="977"
d="M471 0v58q-29 -33 -68 -48.5t-82 -15.5q-111 0 -171.5 60.5t-71.5 120t-11 181.5q0 125 10.5 182.5t71.5 118.5t172 61q45 0 83 -15.5t67 -48.5v58h450v-96h-342v-210h291v-94h-291v-216h343v-96h-451zM429 577q-19 21 -46.5 32.5t-59.5 11.5q-31 0 -58.5 -12t-50 -36
t-30.5 -66.5t-8 -150.5q0 -112 7.5 -151.5t41.5 -76.5t98 -37q31 0 59.5 12t50.5 36t30 66.5t8 150.5q0 112 -7.5 151.5t-34.5 69.5z" />
<glyph glyph-name="oe" unicode="&#x153;" horiz-adv-x="862"
d="M478 224q0 -67 33.5 -104.5t95.5 -37.5q42 0 68 11.5t55 40.5l65 -61q-42 -42 -83 -60.5t-106 -18.5q-58 0 -102 19.5t-73 60.5q-24 -37 -66.5 -58.5t-96.5 -21.5q-49 0 -86.5 16t-68 48t-43.5 79t-13 117q0 68 13 116t43.5 79.5t67.5 47.5t87 16q56 0 97.5 -20.5
t66.5 -60.5q53 81 160 81q100 0 157.5 -67.5t57.5 -176.5v-45h-329zM693 364q-12 29 -38.5 46.5t-62.5 17.5q-73 0 -90.5 -41.5t-20.5 -54.5t-3 -37h228q0 39 -13 69zM343 393q-29 29 -75 29q-45 0 -70 -25t-32 -59.5t-7 -83.5q0 -53 6.5 -85t32.5 -58t70 -26
q45 0 70.5 25.5t32.5 60t7 83.5q0 53 -6.5 85t-28.5 54z" />
<glyph glyph-name="Ydieresis" unicode="&#x178;" horiz-adv-x="544"
d="M326 293v-293h-108v293l-213 419h118l149 -313l149 313h118zM334 786v108h92v-108h-92zM118 786v108h92v-108h-92z" />
<glyph glyph-name="florin" unicode="&#x192;" horiz-adv-x="415"
d="M326 630q-55 0 -66 -59l-32 -180h101v-78h-115l-91 -518h-102l91 518h-82v78h96l33 185q11 60 53 100.5t110 40.5h63v-87h-59z" />
<glyph glyph-name="hungarumlaut" unicode="&#x2ba;" horiz-adv-x="500"
d="M344 599h-76l76 162h112zM160 599h-77l75 162h113z" />
<glyph glyph-name="caron" unicode="&#x2c7;" horiz-adv-x="500"
d="M293 599h-86l-129 161h85l87 -97l87 97h85z" />
<glyph glyph-name="macron" unicode="&#x2c9;" horiz-adv-x="500"
d="M95 622v73h310v-73h-310z" />
<glyph glyph-name="breve" unicode="&#x2d8;" horiz-adv-x="500"
d="M251 590q-74 0 -120 36.5t-46 108.5h74q4 -34 29 -52.5t63 -18.5q37 0 62.5 18.5t29.5 52.5h72q0 -72 -44.5 -108.5t-119.5 -36.5z" />
<glyph glyph-name="dotaccent" unicode="&#x2d9;" horiz-adv-x="500"
d="M196 620v91h108v-91h-108z" />
<glyph glyph-name="ring" unicode="&#x2da;" horiz-adv-x="500"
d="M250 576q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5zM250 764q-26 0 -45 -18t-19 -45q0 -26 18.5 -44.5t45.5 -18.5q26 0 45 18t19 45q0 26 -18.5 44.5t-45.5 18.5z" />
<glyph glyph-name="ogonek" unicode="&#x2db;" horiz-adv-x="500"
d="M228 -211l-51 147h82l70 -147h-101z" />
<glyph glyph-name="circumflex" unicode="&#x302;" horiz-adv-x="500"
d="M337 599l-87 97l-87 -97h-85l129 161h86l129 -161h-85z" />
<glyph glyph-name="tilde" unicode="&#x303;" horiz-adv-x="500"
d="M315 612q-19 0 -37 6t-44.5 21t-49.5 15q-16 0 -27 -5t-31 -25l-48 47q31 31 55 43t49 12q20 0 36.5 -5.5t36 -17t31 -16t26.5 -4.5q14 0 27 6t32 25l48 -47q-31 -31 -55 -43t-49 -12z" />
<glyph glyph-name="summation" unicode="&#x3a3;" horiz-adv-x="552"
d="M48 -205v88l195 406l-193 383v88h455v-97h-329l161 -325v-100l-164 -346h335v-97h-460z" />
<glyph glyph-name="Omega" unicode="&#x3a9;" horiz-adv-x="647"
d="M372 0v87q25 12 42 25.5t31 35.5t20 69t6 134q0 113 -7.5 154t-42.5 78.5t-98 37.5q-31 0 -57.5 -12t-50 -36.5t-31.5 -68.5t-8 -153q0 -164 19.5 -194t36 -44t42.5 -26v-87h-207v96h70q-15 14 -25.5 28.5t-22.5 40.5t-17 75t-5 116q0 125 10.5 181.5t72.5 118.5t173 62
q57 0 103.5 -19t89 -61.5t53 -99.5t10.5 -182q0 -73 -4 -118.5t-16.5 -72.5t-22 -40t-27.5 -29h70v-96h-207z" />
<glyph glyph-name="pi" unicode="&#x3c0;" horiz-adv-x="591"
d="M403 0v412h-214v-412h-101v507h415v-507h-100z" />
<glyph glyph-name="endash" unicode="&#x2013;"
d="M51 230v95h431v-95h-431z" />
<glyph glyph-name="emdash" unicode="&#x2014;" horiz-adv-x="972"
d="M67 231v97h838v-97h-838z" />
<glyph glyph-name="quoteleft" unicode="&#x2018;" horiz-adv-x="268"
d="M78 608v104l112 93v-197h-112z" />
<glyph glyph-name="quoteright" unicode="&#x2019;" horiz-adv-x="268"
d="M78 516v196h112v-105z" />
<glyph glyph-name="quotesinglbase" unicode="&#x201a;" horiz-adv-x="267"
d="M78 -92v197h112v-105z" />
<glyph glyph-name="quotedblleft" unicode="&#x201c;" horiz-adv-x="459"
d="M269 608v104l112 93v-197h-112zM78 608v104l112 93v-197h-112z" />
<glyph glyph-name="quotedblright" unicode="&#x201d;" horiz-adv-x="459"
d="M269 516v196h112v-105zM78 516v196h112v-105z" />
<glyph glyph-name="quotedblbase" unicode="&#x201e;" horiz-adv-x="460"
d="M269 -92v197h112v-105zM78 -92v197h112v-105z" />
<glyph glyph-name="dagger" unicode="&#x2020;" horiz-adv-x="591"
d="M346 427v-427h-102v427h-179v91h179v194h102v-194h180v-91h-180z" />
<glyph glyph-name="daggerdbl" unicode="&#x2021;" horiz-adv-x="591"
d="M346 -11v-194h-102v194h-179v92h179v346h-179v91h179v194h102v-194h180v-91h-180v-346h180v-92h-180z" />
<glyph glyph-name="bullet" unicode="&#x2022;" horiz-adv-x="512"
d="M256 171q-68 0 -115.5 47.5t-47.5 115.5t47.5 115.5t115.5 47.5t115.5 -47.5t47.5 -115.5t-47.5 -115.5t-115.5 -47.5z" />
<glyph glyph-name="ellipsis" unicode="&#x2026;" horiz-adv-x="803"
d="M608 0v117h117v-117h-117zM343 0v117h117v-117h-117zM78 0v117h117v-117h-117z" />
<glyph glyph-name="perthousand" unicode="&#x2030;" horiz-adv-x="1196"
d="M644 -7q-60 0 -100 37t-40 100v101q0 64 39.5 100.5t100.5 36.5q60 0 100 -37t40 -100v-101q0 -64 -39.5 -100.5t-100.5 -36.5zM294 0h-82l336 712h81zM198 345q-61 0 -100.5 36t-39.5 100v101q0 64 39.5 100.5t100.5 36.5q60 0 100 -37t40 -100v-101q0 -63 -39.5 -99.5
t-100.5 -36.5zM707 228q0 72 -63 72t-63 -72v-95q0 -72 63 -72t63 72v95zM261 579q0 72 -63 72t-63 -72v-95q0 -71 63 -71t63 71v95zM998 -7q-60 0 -100 37t-40 100v101q0 64 39.5 100.5t100.5 36.5q60 0 100 -37t40 -100v-101q0 -64 -39.5 -100.5t-100.5 -36.5zM1061 228
q0 72 -63 72t-63 -72v-95q0 -72 63 -72t63 72v95z" />
<glyph glyph-name="guilsinglleft" unicode="&#x2039;" horiz-adv-x="339"
d="M37 272l230 229v-123l-107 -106l107 -107v-123z" />
<glyph glyph-name="guilsinglright" unicode="&#x203a;" horiz-adv-x="339"
d="M72 42v123l108 107l-108 106v123l231 -229z" />
<glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="883"
d="M745 285v279l-90 -179h-71l-90 179v-279h-77v427h77l125 -243l126 243h77v-427h-77zM231 643v-358h-76v358h-114v69h305v-69h-115z" />
<glyph glyph-name="partialdiff" unicode="&#x2202;" horiz-adv-x="549"
d="M411 53q-25 -27 -62 -43t-84 -16q-49 0 -84.5 15.5t-65.5 47t-42 77.5t-12 115q0 71 12 117.5t41 76.5t63.5 45.5t81.5 15.5q35 0 59.5 -8t47.5 -34v47q0 49 -29 85.5t-90 36.5q-38 0 -60.5 -9.5t-49.5 -34.5l-64 64q40 37 80 52t98 15q105 0 161 -62t56 -165v-242
q0 -72 -11.5 -116t-45.5 -80zM334 384q-29 29 -69 29q-22 0 -38.5 -7t-34 -25t-23.5 -50.5t-6 -81.5t6 -81.5t30.5 -57.5t65.5 -25q40 0 64.5 25t30.5 57.5t6 81.5t-6 81.5t-26 53.5z" />
<glyph glyph-name="Delta" unicode="&#x2206;" horiz-adv-x="619"
d="M5 0l261 712h87l260 -712h-608zM311 551l-162 -459h323z" />
<glyph glyph-name="product" unicode="&#x220f;" horiz-adv-x="690"
d="M489 -205v869h-288v-869h-108v965h505v-965h-109z" />
<glyph glyph-name="fraction" unicode="&#x2215;" horiz-adv-x="197"
d="M-28 0h-82l335 712h82z" />
<glyph glyph-name="periodcentered" unicode="&#x2219;" horiz-adv-x="278"
d="M78 217v122h122v-122h-122z" />
<glyph glyph-name="radical" unicode="&#x221a;" horiz-adv-x="580"
d="M459 615l-202 -615h-84l-168 507h111l99 -313l163 518h172v-97h-91z" />
<glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="830"
d="M594 102q-51 0 -93.5 24.5t-85.5 74.5q-42 -49 -85.5 -74.5t-93.5 -25.5q-81 0 -128 49t-47 126q0 75 47 125t128 50q50 0 93 -24.5t86 -75.5q43 50 85 75t94 25q81 0 128 -49t47 -126q0 -76 -47 -125t-128 -49zM592 352q-34 0 -59 -24t-50 -54q35 -41 58 -60t51 -19
q34 0 56.5 21.5t22.5 57.5q0 35 -22.5 56.5t-56.5 21.5zM237 353q-33 0 -55.5 -21.5t-22.5 -57.5q0 -35 22 -57t56 -22q29 0 52 18.5t58 60.5q-35 41 -58 60t-52 19z" />
<glyph glyph-name="integral" unicode="&#x222b;" horiz-adv-x="433"
d="M341 633q-72 0 -72 -74v-599q0 -76 -44 -119t-120 -43h-57v87h44q71 0 71 74v599q0 75 44.5 118.5t120.5 43.5h57v-87h-44z" />
<glyph glyph-name="approxequal" unicode="&#x2248;" horiz-adv-x="574"
d="M383 303q-29 0 -52.5 7t-53.5 22t-48 21t-37 6q-24 0 -41 -8t-44 -35l-64 64q43 43 76 60t71 17q29 0 51 -7t52 -21.5t49.5 -21t38.5 -6.5q24 0 41 8t44 35l65 -64q-43 -43 -76 -60t-72 -17zM384 100q-26 0 -51.5 8t-55 22.5t-47.5 20.5t-37 6q-24 0 -41 -8t-45 -36
l-64 64q44 44 76 61t72 17q27 0 51 -7.5t53 -22t48.5 -21t38.5 -6.5q24 0 40 7.5t45 36.5l64 -64q-44 -44 -76 -61t-71 -17z" />
<glyph glyph-name="notequal" unicode="&#x2260;" horiz-adv-x="571"
d="M217 133l-103 -120l-63 51l61 69h-61v95h138l88 99h-226v95h302l104 120l63 -51l-61 -69h61v-95h-138l-88 -99h226v-95h-303z" />
<glyph glyph-name="lessequal" unicode="&#x2264;" horiz-adv-x="1027"
d="M805 -83l-526 527v-487l-92 92v554h555l92 -92l-487 1l526 -526z" />
<glyph glyph-name="greaterequal" unicode="&#x2265;" horiz-adv-x="1027"
d="M747 -43l1 487l-526 -527l-69 69l527 527l-487 -2l92 92h554v-554z" />
<glyph glyph-name="lozenge" unicode="&#x25ca;" horiz-adv-x="642"
d="M321 -19l-260 365l260 365l261 -365zM321 553l-146 -207l146 -208l146 208z" />
<glyph glyph-name="fi" unicode="&#xf001;" horiz-adv-x="583"
d="M396 624v91h109v-91h-109zM399 0v498h102v-498h-102zM197 420v-420h-102v420h-58v78h58v78q0 60 35.5 100.5t103.5 40.5h63v-87h-45q-55 0 -55 -59v-73h100v-78h-100z" />
<glyph glyph-name="fl" unicode="&#xf002;" horiz-adv-x="626"
d="M536 0q-69 0 -104 39.5t-35 100.5v572h102v-566q0 -30 12.5 -44.5t42.5 -14.5h45v-87h-63zM197 420v-420h-102v420h-58v78h58v78q0 60 35.5 100.5t103.5 40.5h63v-87h-45q-55 0 -55 -59v-73h100v-78h-100z" />
<glyph glyph-name="glyph225" horiz-adv-x="587"
d="M107 0v266l-69 -44v93l69 43v354h108v-286l141 89v-91l-141 -89v-238h342v-97h-450z" />
<glyph glyph-name="glyph226" horiz-adv-x="326"
d="M231 0q-69 0 -104 39.5t-35 100.5v181l-59 -36v87l59 36v304h102v-242l70 43v-86l-70 -44v-237q0 -30 12.5 -44.5t42.5 -14.5h45v-87h-63z" />
<glyph glyph-name="glyph227" horiz-adv-x="590"
d="M282 -6q-82 0 -142 21.5t-110 72.5l72 71q37 -37 81.5 -52.5t100.5 -15.5q70 0 108.5 28.5t38.5 80.5q0 49 -20.5 67.5t-37.5 25.5t-48 11l-84 12q-87 12 -137 59t-50 134q0 94 64 151.5t174 57.5q134 0 221 -81l-69 -68q-31 30 -69 42.5t-86 12.5q-61 0 -95.5 -31.5
t-34.5 -79.5q0 -42 27.5 -66.5t79.5 -32.5l81 -12q48 -7 78.5 -19.5t71.5 -48.5t41 -131q0 -97 -70.5 -153t-185.5 -56zM335 781h-86l-129 161h85l87 -97l87 97h85z" />
<glyph glyph-name="glyph228" horiz-adv-x="499"
d="M245 -6q-69 0 -119.5 15.5t-93.5 57.5l67 67q28 -29 66 -41t80 -12q49 0 80 17.5t31 52.5q0 28 -16 44t-52 16l-81 7q-74 6 -112 40t-38 100q0 73 53.5 114t137.5 41q59 0 106 -13.5t82 -43.5l-64 -65q-22 19 -55.5 28t-69.5 9q-45 0 -68.5 -17.5t-23.5 -47.5
q0 -25 15.5 -39.5t54.5 -18.5l80 -7q74 -6 112.5 -41t38.5 -102q0 -77 -58.5 -119t-152.5 -42zM291 599h-86l-129 161h85l87 -97l87 97h85z" />
<glyph glyph-name="glyph229" horiz-adv-x="552"
d="M48 0v93l329 522h-315v97h442v-88l-331 -527h331v-97h-456zM324 781h-86l-129 161h85l87 -97l87 97h85z" />
<glyph glyph-name="glyph230" horiz-adv-x="469"
d="M43 0v81l252 335h-238v91h364v-81l-254 -335h254v-91h-378zM282 599h-86l-129 161h85l87 -97l87 97h85z" />
<glyph glyph-name="glyph231" horiz-adv-x="344"
d="M118 436v350h102v-350h-102zM118 -74v350h102v-350h-102z" />
<glyph glyph-name="glyph232" horiz-adv-x="684"
d="M563 94q-35 -44 -87 -69t-117 -25h-247v318h-74v83h74v311h250q127 0 182.5 -71.5t64 -119.5t8.5 -165q0 -96 -5 -152t-49 -110zM478 554q-45 62 -129 62h-129v-215h138v-83h-138v-222h129q90 0 120 44.5t35 79.5t5 133q0 99 -5.5 136t-25.5 65z" />
<glyph glyph-name="glyph233" horiz-adv-x="537"
d="M417 53q-25 -27 -63 -43t-86 -16q-49 0 -85 15.5t-66 46.5t-43 78t-13 115q0 70 12 115.5t49 83t78 44.5t59 7q19 0 41 -5l-45 81h-116v72h78l-39 70h108l39 -70h87v-72h-50l51 -94q37 -69 50 -116.5t13 -115.5q0 -70 -12 -115.5t-47 -80.5zM341 384q-29 29 -73 29
q-43 0 -68 -25t-31 -57t-6 -82q0 -63 8 -90.5t31 -50.5t66 -23q44 0 69 25t31 57t6 82q0 63 -8 90.5t-25 44.5z" />
<glyph glyph-name="glyph234" horiz-adv-x="544"
d="M326 293v-293h-108v293l-213 419h118l149 -313l149 313h118zM297 781h-77l75 162h113z" />
<glyph glyph-name="glyph235" horiz-adv-x="468"
d="M240 -101q-14 -40 -35.5 -61.5t-47.5 -30t-58 -8.5h-41v92h26q32 0 46.5 11t26.5 43l28 79l-177 483h108l121 -357l118 357h109zM259 599h-77l75 162h113z" />
<glyph glyph-name="glyph236" horiz-adv-x="637"
d="M363 144h-162v-144h-108v712h108v-137h162q103 0 165.5 -60.5t62.5 -155.5q0 -94 -62.5 -154.5t-165.5 -60.5zM356 478h-155v-237h155q57 0 91.5 31.5t34.5 86.5q0 56 -34.5 87.5t-91.5 31.5z" />
<glyph glyph-name="glyph237" horiz-adv-x="554"
d="M439 39q-45 -45 -123 -45q-44 0 -75 12.5t-58 45.5v-257h-102v917h102v-256q26 31 58 44t75 13q78 0 117.5 -39.5t51 -95t11.5 -124.5q0 -74 -11 -127t-46 -88zM289 422q-63 0 -84.5 -44.5t-21.5 -123.5q0 -81 21.5 -125t84.5 -44t84 44t21 125q0 80 -21 124t-84 44z" />
<glyph glyph-name="glyph238"
d="M51 230v95h431v-95h-431z" />
<glyph glyph-name="glyph239"
d="M412 69l-146 145l-145 -145l-64 63l146 146l-146 146l64 64l145 -146l146 146l64 -64l-146 -146l146 -146z" />
<glyph glyph-name="glyph240" horiz-adv-x="277"
d="M127 285v341l-87 -76v87l87 75h77v-427h-77z" />
<glyph glyph-name="glyph241" horiz-adv-x="350"
d="M45 285v69l161 186q22 26 22 52q0 55 -53 55q-24 0 -38.5 -12.5t-14.5 -42.5h-77q0 57 36.5 90.5t93.5 33.5t93.5 -33.5t36.5 -90.5q0 -28 -10.5 -48.5t-35.5 -49.5l-121 -140h167v-69h-260z" />
<glyph glyph-name="glyph242" horiz-adv-x="362"
d="M182 280q-59 0 -98 31t-39 95h77q0 -28 17.5 -42.5t42.5 -14.5q26 0 42 16t16 45q0 60 -61 60h-11v66h11q27 0 41.5 15.5t14.5 39.5q0 27 -15 41.5t-39 14.5q-54 0 -54 -52h-76q0 56 37 88.5t93 32.5t93 -34t37 -88q0 -33 -13.5 -55t-36.5 -34q26 -13 41 -36.5t15 -60.5
q0 -61 -38.5 -94.5t-96.5 -33.5z" />
<glyph glyph-name="glyph243" horiz-adv-x="827"
d="M523 0v69l160 186q22 26 22 52q0 55 -53 55q-24 0 -38.5 -12.5t-14.5 -42.5h-76q0 57 35.5 90.5t93.5 33.5q57 0 93.5 -33.5t36.5 -90.5q0 -28 -10.5 -48.5t-35.5 -49.5l-121 -140h167v-69h-259zM253 0h-81l335 712h81zM127 285v341l-87 -76v87l87 75h77v-427h-77z" />
<glyph glyph-name="glyph244" horiz-adv-x="808"
d="M728 61v-61h-74v61h-174v71l147 295h83l-147 -295h91v83h74v-83h40v-71h-40zM261 0h-81l335 712h81zM127 285v341l-87 -76v87l87 75h77v-427h-77z" />
<glyph glyph-name="glyph245" horiz-adv-x="844"
d="M764 61v-61h-73v61h-174v71l146 295h84l-147 -295h91v83h73v-83h40v-71h-40zM303 0h-81l335 712h81zM182 280q-59 0 -98 31t-39 95h77q0 -28 17.5 -42.5t42.5 -14.5q26 0 42 16t16 45q0 60 -61 60h-11v66h11q27 0 41.5 15.5t14.5 39.5q0 27 -15 41.5t-39 14.5
q-54 0 -54 -52h-76q0 56 37 88.5t93 32.5t93 -34t37 -88q0 -33 -13.5 -55t-36.5 -34q26 -13 41 -36.5t15 -60.5q0 -61 -38.5 -94.5t-96.5 -33.5z" />
</font>
</defs></svg>

Before

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,600 +0,0 @@
<?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" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<metadata>
Created by FontForge 20170731 at Tue May 31 23:35:55 2005
By Aleksey,,,
\251 Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International FontFont release 15
</metadata>
<defs>
<font id="DIN-Regular" horiz-adv-x="522" >
<font-face
font-family="DIN-Regular"
font-weight="5"
font-stretch="normal"
units-per-em="1000"
panose-1="0 0 0 0 0 0 0 0 0 0"
ascent="800"
descent="-200"
x-height="492"
cap-height="712"
bbox="-104 -226 1115 985"
underline-thickness="51"
underline-position="-214"
unicode-range="U+0020-F002"
/>
<missing-glyph horiz-adv-x="774"
d="M48 0v774h678v-774h-678zM678 48v678h-582v-678h582z" />
<glyph glyph-name=".notdef" horiz-adv-x="774"
d="M48 0v774h678v-774h-678zM678 48v678h-582v-678h582z" />
<glyph glyph-name="glyph1" horiz-adv-x="0"
/>
<glyph glyph-name="glyph2" horiz-adv-x="249"
/>
<glyph glyph-name="space" unicode=" " horiz-adv-x="249"
/>
<glyph glyph-name="exclam" unicode="!" horiz-adv-x="316"
d="M204 200h-62l-10 512h83zM130 0v84h86v-84h-86z" />
<glyph glyph-name="quotedbl" unicode="&#x22;" horiz-adv-x="423"
d="M256 542v170h79v-170h-79zM88 542v170h79v-170h-79z" />
<glyph glyph-name="numbersign" unicode="#" horiz-adv-x="653"
d="M506 432l-23 -141h89v-64h-99l-36 -227h-74l36 227h-160l-35 -227h-74l36 227h-89v64h100l23 141h-92v66h101l34 215h75l-35 -215h159l34 215h73l-34 -215h87v-66h-96zM273 432l-23 -141h159l23 141h-159z" />
<glyph glyph-name="dollar" unicode="$" horiz-adv-x="596"
d="M322 -4v-110h-60v108q-126 0 -220 94l52 52q77 -77 172 -77v265l-20 2q-37 3 -72 18.5t-74 50t-39 118.5q0 87 54.5 143.5t146.5 56.5v89h60v-89q55 0 98.5 -19t87.5 -58l-49 -49q-33 30 -64.5 45t-75.5 15v-259l31 -5q51 -8 78 -19t69.5 -47t42.5 -125q0 -88 -60 -144
t-158 -56zM266 651q-62 -5 -96 -40t-34 -91q0 -54 25.5 -76t50.5 -31.5t54 -13.5v252zM429 283q-25 22 -50.5 27t-59.5 10v-257q67 0 106 36t39 95t-35 89z" />
<glyph glyph-name="percent" unicode="%" horiz-adv-x="833"
d="M634 -7q-60 0 -97.5 36.5t-37.5 98.5v105q0 61 38 98t97 37t97 -37t38 -98v-105q0 -61 -38 -98t-97 -37zM280 0h-60l334 712h60zM200 345q-60 0 -97.5 36.5t-37.5 97.5v105q0 61 38 98t97 37t97 -37t38 -98v-105q0 -60 -38 -97t-97 -37zM712 231q0 41 -19 64t-59 23
t-59 -23t-19 -64v-101q0 -42 18.5 -64.5t59.5 -22.5q40 0 59 22.5t19 64.5v101zM278 582q0 41 -19 64t-59 23t-59 -23t-19 -64v-101q0 -42 19 -64t59 -22q39 0 58.5 22.5t19.5 63.5v101z" />
<glyph glyph-name="ampersand" unicode="&#x26;" horiz-adv-x="739"
d="M576 0l-64 78q-35 -32 -85 -58t-125 -26q-103 0 -164 57t-61 150q0 55 29.5 102t124.5 111q-39 47 -58 79.5t-19 75.5q0 64 44.5 106.5t112.5 42.5q67 0 111 -43t44 -107q0 -41 -20.5 -71t-58.5 -56l-53 -36l182 -219q22 34 31 69t9 94h72q0 -71 -15.5 -123.5
t-50.5 -94.5l109 -131h-95zM311 653q-36 0 -59 -23t-23 -60q0 -24 13.5 -48t50.5 -69l38 26q31 22 47.5 41.5t16.5 47.5q0 35 -24 60t-60 25zM273 366q-64 -44 -93 -76t-29 -87q0 -63 41.5 -102.5t108.5 -39.5q46 0 84.5 14.5t83.5 54.5z" />
<glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="255"
d="M88 542v170h79v-170h-79z" />
<glyph glyph-name="parenleft" unicode="(" horiz-adv-x="298"
d="M185 -94q-16 16 -36.5 37.5t-34 46t-18 50t-4.5 55.5v522q0 35 4 56.5t17.5 47t36.5 49.5t35 36l49 -49q-16 -16 -30.5 -31.5t-27 -40.5t-12.5 -74v-510q0 -49 12 -73t23.5 -37t34.5 -36z" />
<glyph glyph-name="parenright" unicode=")" horiz-adv-x="298"
d="M185 -8q-14 -26 -37 -50t-35 -36l-51 51q15 16 31 31q15 17 23 33t11.5 34.5t3.5 45.5v510q0 51 -10.5 72t-17 29t-41.5 43l51 51q16 -16 36.5 -37.5t34.5 -46.5t17.5 -47.5t3.5 -57.5v-522q0 -32 -3.5 -56t-16.5 -47z" />
<glyph glyph-name="asterisk" unicode="*" horiz-adv-x="474"
d="M379 423l-117 71l4 -137h-58l4 137l-116 -71l-29 49l120 65l-120 66l29 48l116 -71l-4 137h58l-4 -137l117 71l28 -48l-120 -66l120 -65z" />
<glyph glyph-name="plus" unicode="+"
d="M295 234v-176h-67v176h-176v67h176v174h67v-174h175v-67h-175z" />
<glyph glyph-name="comma" unicode="," horiz-adv-x="264"
d="M88 -144v232h88v-153z" />
<glyph glyph-name="hyphen" unicode="-" horiz-adv-x="426"
d="M76 236v67h274v-67h-274z" />
<glyph glyph-name="period" unicode="." horiz-adv-x="270"
d="M88 0v94h94v-94h-94z" />
<glyph glyph-name="slash" unicode="/" horiz-adv-x="355"
d="M71 -74h-71l285 860h71z" />
<glyph glyph-name="zero" unicode="0"
d="M261 -6q-85 0 -140 54t-55 142v332q0 87 55.5 141.5t139.5 54.5q85 0 140 -54t55 -142v-332q0 -87 -55.5 -141.5t-139.5 -54.5zM384 518q0 60 -32.5 98t-90.5 38t-90.5 -37.5t-32.5 -98.5v-324q0 -60 32.5 -98t90.5 -38t90.5 37.5t32.5 98.5v324z" />
<glyph glyph-name="one" unicode="1"
d="M258 0v632l-133 -117v82l133 115h72v-712h-72z" />
<glyph glyph-name="two" unicode="2"
d="M68 0v64l281 357q40 52 40 105q0 59 -32.5 93.5t-91.5 34.5q-54 0 -89 -31.5t-35 -97.5h-72q0 85 54 139t142 54t142 -52t54 -140q0 -42 -12.5 -72.5t-44.5 -71.5l-249 -318h306v-64h-393z" />
<glyph glyph-name="three" unicode="3"
d="M251 -7q-90 0 -149.5 48t-59.5 140h72q0 -62 40.5 -93t96.5 -31q59 0 98 37t39 101q0 67 -34 102.5t-106 35.5h-15v63h15q64 0 95.5 33.5t31.5 95.5t-35 96t-89 34q-55 0 -89 -32t-39 -87h-72q0 84 57.5 133.5t142.5 49.5q87 0 141.5 -53.5t54.5 -139.5q0 -114 -96 -158
q109 -41 109 -174q0 -95 -59 -148t-150 -53z" />
<glyph glyph-name="four" unicode="4"
d="M395 113v-113h-71v113h-284v65l257 534h77l-257 -534h207v202h71v-202h87v-65h-87z" />
<glyph glyph-name="five" unicode="5"
d="M405 46q-26 -26 -60.5 -39.5t-81.5 -13.5q-45 0 -82 13.5t-61.5 38.5t-37 54.5t-12.5 68.5h72q7 -55 36 -83t85 -28q55 0 80.5 25.5t36 57.5t10.5 95q0 79 -24.5 126t-95.5 47q-46 0 -76.5 -18.5t-41.5 -51.5h-65v374h360v-64h-295v-226q44 49 128 49q78 0 114 -36
t52 -79t16 -121q0 -82 -14.5 -121.5t-42.5 -67.5z" />
<glyph glyph-name="six" unicode="6"
d="M263 -6q-90 0 -144 56t-54 149q0 70 45 160l175 353h74l-159 -320q33 15 75 15q82 0 133.5 -56.5t51.5 -145.5q0 -93 -53.5 -152t-143.5 -59zM262 346q-57 0 -91 -39t-34 -105t34 -105t91 -39t91.5 39.5t34.5 104.5q0 62 -33 103t-93 41z" />
<glyph glyph-name="seven" unicode="7"
d="M224 0h-76l247 648h-248v-112h-71v176h395v-64z" />
<glyph glyph-name="eight" unicode="8"
d="M261 -6q-89 0 -149.5 56.5t-60.5 145.5q0 59 29 102t78 71q-43 25 -68 65t-25 93q0 83 55 137t141 54q84 0 140 -54t56 -137q0 -54 -24 -93.5t-68 -64.5q48 -27 77 -71t29 -102q0 -89 -59.5 -145.5t-150.5 -56.5zM261 654q-54 0 -89 -36t-35 -92q0 -57 34 -92t90 -35
q55 0 89.5 35.5t34.5 91.5t-34 92t-90 36zM261 336q-58 0 -98 -40t-40 -99t39 -99t99 -40q58 0 98 40t40 99t-39 99t-99 40z" />
<glyph glyph-name="nine" unicode="9"
d="M412 353l-175 -353h-75l160 320q-33 -15 -76 -15q-83 0 -133.5 56.5t-50.5 145.5q0 93 53.5 152t143.5 59t144 -56t54 -149q0 -70 -45 -160zM259 654q-57 0 -91 -39t-34 -105q0 -63 32.5 -103.5t92.5 -40.5q57 0 91.5 39.5t34.5 104.5q0 66 -34 105t-92 39z" />
<glyph glyph-name="colon" unicode=":" horiz-adv-x="297"
d="M115 301v94h94v-94h-94zM115 0v94h94v-94h-94z" />
<glyph glyph-name="semicolon" unicode=";" horiz-adv-x="297"
d="M115 301v94h94v-94h-94zM117 -144v232h88v-153z" />
<glyph glyph-name="less" unicode="&#x3c;" horiz-adv-x="1027"
d="M183 234l365 -364h-94l-399 399l399 399h94l-365 -364h789v-70h-789z" />
<glyph glyph-name="equal" unicode="="
d="M52 320v67h418v-67h-418zM52 151v66h418v-66h-418z" />
<glyph glyph-name="greater" unicode="&#x3e;" horiz-adv-x="1027"
d="M573 -130h-94l365 364h-789v70h789l-365 364h94l399 -399z" />
<glyph glyph-name="question" unicode="?" horiz-adv-x="497"
d="M406 415l-82 -118q-8 -12 -13 -29t-5 -29v-39h-72v40q0 50 31 94l81 117q18 27 25.5 43.5t7.5 41.5q0 51 -32.5 84.5t-82.5 33.5q-52 0 -84 -35t-32 -84h-72q0 78 53.5 130.5t134.5 52.5q80 0 133.5 -51.5t53.5 -130.5q0 -34 -10.5 -60t-34.5 -61zM227 0v84h86v-84h-86z
" />
<glyph glyph-name="at" unicode="@" horiz-adv-x="713"
d="M572 0v55q-25 -32 -56 -47t-78 -15q-41 0 -77 16t-60 46t-33.5 70.5t-9.5 112.5t8.5 111.5t43.5 86.5t127 47q83 0 134 -63v78q0 41 -8 66t-39.5 56.5t-102.5 31.5h-130q-69 0 -100 -31t-40 -56t-9 -67v-337q0 -47 11 -71t46 -50l-49 -49q-46 34 -62 68t-16 101v336
q0 104 55.5 160.5t154.5 56.5h148q98 0 154.5 -56.5t56.5 -160.5v-497zM450 421q-72 0 -96.5 -49t-24.5 -134q0 -84 24.5 -133.5t96.5 -49.5t96.5 49t24.5 134q0 84 -24.5 133.5t-96.5 49.5z" />
<glyph glyph-name="A" unicode="A" horiz-adv-x="611"
d="M518 0l-57 161h-311l-57 -161h-81l262 712h64l261 -712h-81zM307 603l-134 -376h266z" />
<glyph glyph-name="B" unicode="B" horiz-adv-x="668"
d="M380 0h-277v712h268q94 0 152 -51t58 -139q0 -55 -29 -97t-76 -59q52 -19 84 -63.5t32 -105.5q0 -95 -57 -146t-155 -51zM365 644h-186v-247h186q63 0 101.5 31t38.5 93q0 61 -38.5 92t-101.5 31zM373 329h-194v-261h194q66 0 104.5 35.5t38.5 95.5t-38 95t-105 35z" />
<glyph glyph-name="C" unicode="C" horiz-adv-x="637"
d="M325 -6q-108 0 -168 60t-70.5 117t-10.5 185q0 106 6 169.5t70.5 128t172.5 64.5q97 0 163 -56t84 -156h-78q-15 67 -58.5 105.5t-110.5 38.5q-75 0 -115.5 -41.5t-49 -88t-8.5 -164.5q0 -117 8.5 -164t49 -88.5t115.5 -41.5q67 0 111.5 38.5t59.5 105.5h76
q-17 -99 -83.5 -155.5t-163.5 -56.5z" />
<glyph glyph-name="D" unicode="D" horiz-adv-x="673"
d="M527 66q-66 -66 -180 -66h-244v712h244q114 0 171.5 -57.5t68 -119t10.5 -171.5v-38q0 -91 -12.5 -153t-57.5 -107zM474 592q-26 27 -61.5 39.5t-78.5 12.5h-155v-576h155q45 0 78.5 11.5t63.5 43t37.5 88t7.5 153.5v33q0 93 -11 131t-36 64z" />
<glyph glyph-name="E" unicode="E" horiz-adv-x="600"
d="M103 0v712h442v-68h-366v-251h312v-68h-312v-257h366v-68h-442z" />
<glyph glyph-name="F" unicode="F" horiz-adv-x="580"
d="M179 644v-262h312v-68h-312v-314h-76v712h442v-68h-366z" />
<glyph glyph-name="G" unicode="G" horiz-adv-x="650"
d="M515 76q-76 -82 -190 -82q-108 0 -168 60t-70.5 117t-10.5 185q0 106 6 169.5t70.5 128t172.5 64.5q101 0 167 -58t82 -155h-76q-15 68 -60.5 106.5t-112.5 38.5q-74 0 -115 -42.5t-49.5 -88t-8.5 -163.5q0 -117 8.5 -164t49 -88.5t115.5 -41.5q85 0 130 54.5t45 135.5
v54h-175v67h251v-113q0 -62 -14 -105.5t-47 -78.5z" />
<glyph glyph-name="H" unicode="H" horiz-adv-x="696"
d="M517 0v325h-338v-325h-76v712h76v-319h338v319h76v-712h-76z" />
<glyph glyph-name="I" unicode="I" horiz-adv-x="282"
d="M103 0v712h76v-712h-76z" />
<glyph glyph-name="J" unicode="J" horiz-adv-x="501"
d="M186 -6q-99 0 -163 64l51 51q23 -23 47.5 -35t64.5 -12q70 0 108 42t38 122v486h76v-496q0 -101 -61.5 -161.5t-160.5 -60.5z" />
<glyph glyph-name="K" unicode="K" horiz-adv-x="650"
d="M546 0l-217 379l-150 -180v-199h-76v712h76v-409l332 409h93l-224 -275l256 -437h-90z" />
<glyph glyph-name="L" unicode="L" horiz-adv-x="573"
d="M103 0v712h76v-644h364v-68h-440z" />
<glyph glyph-name="M" unicode="M" horiz-adv-x="816"
d="M637 0v541l-195 -429h-65l-198 429v-541h-76v712h76l232 -505l226 505h76v-712h-76z" />
<glyph glyph-name="N" unicode="N" horiz-adv-x="732"
d="M557 0l-378 571v-571h-76v712h72l378 -569v569h76v-712h-72z" />
<glyph glyph-name="O" unicode="O" horiz-adv-x="650"
d="M507 68q-74 -74 -182 -74t-168 60t-70.5 117t-10.5 185q0 106 6 169.5t70.5 128t172.5 64.5t168 -60t70.5 -117t10.5 -185q0 -106 -6 -169.5t-61 -118.5zM448 599q-49 51 -123 51t-115 -42.5t-49.5 -88t-8.5 -163.5q0 -117 8.5 -163.5t49.5 -88.5t115 -42t115 42.5
t49.5 88t8.5 163.5q0 117 -8.5 163.5t-41.5 79.5z" />
<glyph glyph-name="P" unicode="P" horiz-adv-x="630"
d="M368 293h-189v-293h-76v712h265q99 0 159.5 -56.5t60.5 -152.5q0 -95 -60.5 -152.5t-159.5 -57.5zM361 644h-182v-283h182q70 0 110.5 36t40.5 106q0 69 -41 105t-110 36z" />
<glyph glyph-name="Q" unicode="Q" horiz-adv-x="649"
d="M557 -35l-79 79q-65 -50 -153 -50q-108 0 -168 60t-70.5 117t-10.5 185q0 106 6 169.5t70.5 128t172.5 64.5t168 -60t70.5 -117t10.5 -185q0 -100 -4 -158t-45 -109l78 -78zM448 599q-49 51 -123 51t-115 -42.5t-49.5 -88t-8.5 -163.5q0 -117 8.5 -163.5t49.5 -88.5
t115 -42q56 0 101 34l-90 90l46 46l87 -87q18 29 23.5 74t5.5 137q0 117 -8.5 163.5t-41.5 79.5z" />
<glyph glyph-name="R" unicode="R" horiz-adv-x="656"
d="M512 0l-162 316h-171v-316h-76v712h273q94 0 152.5 -53.5t58.5 -144.5q0 -76 -42 -126t-113 -65l169 -323h-89zM369 644h-190v-261h190q65 0 103.5 33t38.5 97q0 63 -39 97t-103 34z" />
<glyph glyph-name="S" unicode="S" horiz-adv-x="588"
d="M286 -6q-82 0 -137 21t-107 73l52 52q43 -43 87.5 -60.5t106.5 -17.5q78 0 123 35t45 97q0 59 -25 81t-44.5 29t-57.5 13l-83 13q-85 14 -135 58t-50 129q0 91 61.5 146t166.5 55q68 0 116.5 -18t95.5 -60l-49 -49q-33 30 -72.5 45.5t-93.5 15.5q-71 0 -110.5 -35.5
t-39.5 -96.5q0 -54 24 -74.5t50 -31t54 -15.5l78 -12q49 -7 78 -18.5t70.5 -47t41.5 -125.5q0 -93 -66.5 -147.5t-179.5 -54.5z" />
<glyph glyph-name="T" unicode="T" horiz-adv-x="548"
d="M312 644v-644h-76v644h-206v68h488v-68h-206z" />
<glyph glyph-name="U" unicode="U" horiz-adv-x="683"
d="M341 -6q-109 0 -178.5 67.5t-69.5 173.5v477h76v-471q0 -81 47 -130t125 -49q77 0 125 49t48 130v471h76v-477q0 -107 -70 -174t-179 -67z" />
<glyph glyph-name="V" unicode="V" horiz-adv-x="546"
d="M304 0h-62l-234 712h80l185 -576l185 576h80z" />
<glyph glyph-name="W" unicode="W" horiz-adv-x="854"
d="M656 0h-71l-158 570l-158 -570h-71l-182 712h81l139 -574l157 574h68l157 -574l139 574h81z" />
<glyph glyph-name="X" unicode="X" horiz-adv-x="551"
d="M448 0l-173 299l-174 -299h-86l218 365l-204 347h88l158 -281l158 281h88l-205 -347l220 -365h-88z" />
<glyph glyph-name="Y" unicode="Y" horiz-adv-x="514"
d="M296 294v-294h-76v294l-212 418h82l168 -341l166 341h82z" />
<glyph glyph-name="Z" unicode="Z" horiz-adv-x="556"
d="M57 0v72l356 572h-342v68h428v-64l-359 -580h359v-68h-442z" />
<glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="313"
d="M92 -74v860h177v-64h-105v-732h105v-64h-177z" />
<glyph glyph-name="backslash" unicode="\" horiz-adv-x="355"
d="M284 -74l-284 857h71l284 -857h-71z" />
<glyph glyph-name="bracketright" unicode="]" horiz-adv-x="313"
d="M44 -74v62h108v736h-108v62h177v-860h-177z" />
<glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="537"
d="M391 413l-122 228l-123 -228h-74l164 305h66l163 -305h-74z" />
<glyph glyph-name="underscore" unicode="_" horiz-adv-x="537"
d="M0 -165v51h537v-51h-537z" />
<glyph glyph-name="grave" unicode="`" horiz-adv-x="500"
d="M233 594l-108 153h86l88 -153h-66z" />
<glyph glyph-name="a" unicode="a" horiz-adv-x="526"
d="M369 0v47q-29 -29 -61 -41t-81 -12q-52 0 -83.5 10t-62 41t-30.5 94q0 66 44 104t126 38h148v47q0 55 -29.5 81.5t-96.5 26.5q-49 0 -75 -12t-49 -44l-49 45q32 42 71.5 57.5t102.5 15.5q197 0 197 -164v-334h-72zM369 227h-138q-110 0 -110 -87q0 -84 113 -84q38 0 63 6
t48.5 28.5t23.5 83.5v53z" />
<glyph glyph-name="b" unicode="b" horiz-adv-x="545"
d="M421 37q-19 -19 -51.5 -31t-68.5 -12q-44 0 -77 14t-62 51v-59h-72v712h72v-277q28 35 62 49t77 14q77 0 116 -39t51.5 -91t12.5 -122q0 -69 -12.5 -121.5t-47.5 -87.5zM286 434q-73 0 -98.5 -51t-25.5 -137q0 -88 25 -138t99 -50q72 0 97.5 51t25.5 137q0 88 -25 138
t-98 50z" />
<glyph glyph-name="c" unicode="c" horiz-adv-x="490"
d="M281 -6q-96 0 -157 65.5t-61 186.5q0 122 60.5 187t157.5 65q53 0 88 -15.5t74 -57.5l-49 -46q-28 31 -53 43t-60 12q-75 0 -110.5 -50.5t-35.5 -137.5q0 -47 7 -77t35.5 -70.5t103.5 -40.5q36 0 60 12t53 44l49 -47q-38 -41 -74 -57t-88 -16z" />
<glyph glyph-name="d" unicode="d" horiz-adv-x="545"
d="M384 0v59q-28 -37 -61.5 -51t-78.5 -14q-77 0 -116 39t-51.5 91t-12.5 122q0 69 12.5 121.5t39.5 79.5t59.5 39t68.5 12q45 0 77.5 -13t61.5 -50v277h72v-712h-71zM260 434q-73 0 -98.5 -51t-25.5 -137q0 -88 25 -138t99 -50q72 0 97.5 51t25.5 137q0 88 -25 138t-98 50z
" />
<glyph glyph-name="e" unicode="e" horiz-adv-x="530"
d="M135 227q0 -81 37.5 -125.5t107.5 -44.5q42 0 70 12.5t59 43.5l49 -43q-40 -40 -79.5 -58t-100.5 -18q-101 0 -158 62.5t-57 189.5q0 119 53.5 185.5t148.5 66.5t148.5 -63.5t53.5 -174.5v-33h-332zM380 363q-14 34 -45 54t-70 20t-69.5 -20t-42 -46.5t-15 -45.5
t-3.5 -44h260q0 30 -2.5 44t-12.5 38z" />
<glyph glyph-name="f" unicode="f" horiz-adv-x="314"
d="M178 434v-434h-72v434h-63v55h63v93q0 57 32.5 94.5t92.5 37.5h52v-62h-39q-66 0 -66 -72v-91h105v-55h-105z" />
<glyph glyph-name="g" unicode="g" horiz-adv-x="543"
d="M248 -226q-55 0 -90.5 14.5t-76.5 51.5l47 46q29 -26 54 -37.5t64 -11.5q68 0 101.5 42t33.5 109v77q-28 -36 -61.5 -50t-76.5 -14q-36 0 -67 12t-58.5 39t-40.5 79.5t-13 118.5q0 70 12.5 120t39.5 77t59.5 39t68.5 12q45 0 77 -13.5t61 -50.5v58h71v-507
q0 -93 -55 -152t-150 -59zM259 434q-72 0 -97.5 -50.5t-25.5 -133.5q0 -84 25 -134t98 -50t97.5 49.5t24.5 134.5t-24.5 134.5t-97.5 49.5z" />
<glyph glyph-name="h" unicode="h" horiz-adv-x="562"
d="M405 0v304q0 63 -31.5 96.5t-88.5 33.5t-90 -34t-33 -96v-304h-72v712h72v-274q53 60 138 60q83 0 130 -49t47 -133v-316h-72z" />
<glyph glyph-name="i" unicode="i" horiz-adv-x="253"
d="M86 632v81h81v-81h-81zM90 0v492h72v-492h-72z" />
<glyph glyph-name="j" unicode="j" horiz-adv-x="253"
d="M86 632v81h81v-81h-81zM37 -221h-52v63h39q36 0 51 17t15 55v575h72v-578q0 -59 -31.5 -95.5t-93.5 -36.5z" />
<glyph glyph-name="k" unicode="k" horiz-adv-x="536"
d="M414 0l-156 252l-96 -110v-142h-72v712h72v-476l222 256h90l-167 -188l196 -304h-89z" />
<glyph glyph-name="l" unicode="l" horiz-adv-x="297"
d="M213 0q-62 0 -93.5 35.5t-31.5 95.5v581h72v-578q0 -37 14.5 -54.5t51.5 -17.5h39v-62h-52z" />
<glyph glyph-name="m" unicode="m" horiz-adv-x="879"
d="M722 0v303q0 64 -32 97.5t-89 33.5q-55 0 -89 -33t-34 -90v-311h-72v303q0 64 -32 97.5t-89 33.5t-90 -34t-33 -97v-303h-72v492h72v-54q53 60 139 60q105 0 151 -82q58 82 162 82q39 0 71.5 -12t70.5 -48.5t38 -122.5v-315h-72z" />
<glyph glyph-name="n" unicode="n" horiz-adv-x="562"
d="M405 0v303q0 64 -32 97.5t-89 33.5t-89.5 -33.5t-32.5 -97.5v-303h-72v492h72v-54q53 60 138 60q80 0 128.5 -48t48.5 -135v-315h-72z" />
<glyph glyph-name="o" unicode="o" horiz-adv-x="530"
d="M406 50q-27 -27 -61.5 -41.5t-79.5 -14.5q-44 0 -79 14.5t-66 46t-43.5 78t-12.5 113.5q0 65 12.5 112.5t43.5 79t65.5 46t79.5 14.5q44 0 79 -14.5t66 -46t43.5 -78t12.5 -113.5q0 -65 -12.5 -112.5t-47.5 -83.5zM355 398q-36 36 -90 36q-53 0 -83 -30t-38 -69.5
t-8 -88.5q0 -54 7.5 -90.5t38 -67t83.5 -30.5q54 0 84 30t37.5 67.5t7.5 90.5q0 52 -7.5 90t-31.5 62z" />
<glyph glyph-name="p" unicode="p" horiz-adv-x="545"
d="M421 37q-19 -19 -51.5 -31t-68.5 -12q-46 0 -77.5 13t-61.5 51v-278h-72v712h72v-58q28 36 61.5 50t77.5 14q77 0 116 -39t51.5 -91t12.5 -122q0 -69 -12.5 -121.5t-47.5 -87.5zM286 434q-73 0 -98.5 -51t-25.5 -137q0 -88 25 -138t99 -50q72 0 97.5 51t25.5 137
q0 88 -25 138t-98 50z" />
<glyph glyph-name="q" unicode="q" horiz-adv-x="545"
d="M383 -220v278q-28 -36 -61.5 -50t-77.5 -14q-77 0 -116 39t-51.5 91t-12.5 122q0 69 12.5 121.5t39.5 79.5t59.5 39t68.5 12q46 0 78.5 -13.5t61.5 -50.5v58h71v-712h-72zM260 434q-73 0 -98.5 -51t-25.5 -137q0 -88 25 -138t99 -50q72 0 97.5 51t25.5 137q0 88 -25 138
t-98 50z" />
<glyph glyph-name="r" unicode="r" horiz-adv-x="421"
d="M365 398q-20 20 -38.5 28t-46.5 8q-53 0 -85.5 -37.5t-32.5 -94.5v-302h-72v492h72v-60q20 30 57.5 48t80.5 18q38 0 64.5 -9.5t53.5 -36.5z" />
<glyph glyph-name="s" unicode="s" horiz-adv-x="496"
d="M245 -6q-64 0 -113 16.5t-89 54.5l48 48q28 -30 66 -43.5t87 -13.5q63 0 97 21.5t34 65.5q0 65 -82 72l-81 7q-71 0 -109 35t-38 97q0 67 50 105.5t131 38.5q112 0 177 -53l-47 -47q-51 39 -131 39q-54 0 -82 -21t-28 -60q0 -34 20 -53t66 -19l79 -7q70 -6 107.5 -36.5
t37.5 -96.5q0 -71 -54 -110.5t-146 -39.5z" />
<glyph glyph-name="t" unicode="t" horiz-adv-x="332"
d="M228 0q-61 0 -93.5 37t-32.5 95v302h-62v55h62v154h72v-154h105v-55h-105v-300q0 -72 67 -72h38v-62h-51z" />
<glyph glyph-name="u" unicode="u" horiz-adv-x="562"
d="M401 0v55q-53 -61 -139 -61q-81 0 -129 47.5t-48 136.5v314h72v-303q0 -64 31.5 -97.5t88.5 -33.5t90 34t33 97v303h72v-492h-71z" />
<glyph glyph-name="v" unicode="v" horiz-adv-x="447"
d="M255 0h-64l-180 492h78l134 -395l135 395h78z" />
<glyph glyph-name="w" unicode="w" horiz-adv-x="724"
d="M558 0h-67l-129 382l-128 -382h-67l-156 492h78l113 -395l129 395h62l130 -395l112 395h78z" />
<glyph glyph-name="x" unicode="x" horiz-adv-x="478"
d="M358 0l-118 191l-120 -191h-87l167 251l-160 241h87l113 -182l111 182h87l-160 -241l167 -251h-87z" />
<glyph glyph-name="y" unicode="y" horiz-adv-x="447"
d="M212 -119q-14 -39 -33.5 -57.5t-45 -26.5t-52.5 -8h-31v64h22q37 0 52.5 12.5t28.5 48.5l35 96l-177 482h78l135 -395l134 395h78z" />
<glyph glyph-name="z" unicode="z" horiz-adv-x="459"
d="M50 0v62l274 366h-259v64h342v-61l-275 -367h275v-64h-357z" />
<glyph glyph-name="braceleft" unicode="{" horiz-adv-x="354"
d="M268 -74q-71 0 -101 30t-30 99v191q0 42 -18 60t-45 18h-26v64h26q14 0 25 4.5t24.5 18t13.5 55.5v191q0 41 6 61t30 44t95 24h37v-64h-23q-46 0 -59.5 -13.5t-13.5 -64.5v-188q0 -40 -16 -62.5t-47 -37.5q32 -15 47.5 -37t15.5 -63v-188q0 -51 13.5 -64.5t59.5 -13.5h23
v-64h-37z" />
<glyph glyph-name="bar" unicode="|" horiz-adv-x="326"
d="M127 -74v860h72v-860h-72z" />
<glyph glyph-name="braceright" unicode="}" horiz-adv-x="354"
d="M280 324q-14 0 -25 -4.5t-24.5 -18t-13.5 -55.5v-191q0 -41 -6 -61t-30 -44t-95 -24h-38v64h24q29 0 39.5 2.5t22 14t11.5 61.5v188q0 40 16 62.5t47 37.5q-32 15 -47.5 37t-15.5 63v188q0 50 -11 61t-23.5 14t-38.5 3h-24v64h38q71 0 101 -30t30 -99v-191q0 -42 18 -60
t45 -18h25v-64h-25z" />
<glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="539"
d="M361 210q-31 0 -50.5 7.5t-52 22t-47.5 20t-34 5.5q-24 0 -39 -7.5t-45 -37.5l-44 45q42 42 68 55t61 13q24 0 46.5 -7.5t55 -22t47.5 -20t34 -5.5q24 0 39 7.5t45 37.5l45 -45q-42 -42 -68 -55t-61 -13z" />
<glyph glyph-name="nbspace" unicode="&#xa0;" horiz-adv-x="249"
/>
<glyph glyph-name="exclamdown" unicode="&#xa1;" horiz-adv-x="316"
d="M99 408v84h86v-84h-86zM101 -220l10 512h62l11 -512h-83z" />
<glyph glyph-name="cent" unicode="&#xa2;" horiz-adv-x="498"
d="M303 115v-115h-59v117q-84 12 -132.5 77t-48.5 172q0 106 48.5 171.5t132.5 77.5v97h59v-95q43 0 76 -17.5t69 -56.5l-49 -46q-49 55 -100 55v-372q51 0 100 55l49 -46q-68 -74 -145 -74zM248 550q-49 -9 -73.5 -42.5t-32 -64.5t-7.5 -77q0 -86 32 -130.5t81 -53.5v368z
" />
<glyph glyph-name="sterling" unicode="&#xa3;" horiz-adv-x="548"
d="M110 0v330h-63v54h63v112q0 102 62 162t161 60t163 -64l-52 -51q-23 23 -47 35t-64 12q-70 0 -108 -42t-38 -122v-102h146v-54h-146v-262h309v-68h-386z" />
<glyph glyph-name="currency" unicode="&#xa4;" horiz-adv-x="660"
d="M536 19l-75 74q-28 -21 -61 -32.5t-70 -11.5q-36 0 -70.5 12t-61.5 32l-74 -74l-46 46l74 74q-21 28 -32.5 61.5t-11.5 70.5q0 36 12 70.5t32 61.5l-74 73l46 46l74 -73q57 43 132 43q74 0 131 -43l75 73l46 -46l-74 -73q21 -28 32.5 -61.5t11.5 -70.5q0 -36 -12 -70.5
t-32 -61.5l74 -74zM330 426q-64 0 -110 -45t-46 -110t45.5 -110.5t110.5 -45.5t110 45t45 111q0 65 -45 110t-110 45z" />
<glyph glyph-name="yen" unicode="&#xa5;" horiz-adv-x="514"
d="M349 401h100v-54h-127l-26 -53v-52h153v-55h-153v-187h-77v187h-154v55h154v52l-26 53h-128v54h100l-157 311h82l168 -341l167 341h81z" />
<glyph glyph-name="section" unicode="&#xa7;" horiz-adv-x="557"
d="M366 90q45 -16 71 -53t26 -91q0 -77 -52.5 -124.5t-131.5 -47.5q-80 0 -134.5 42t-54.5 119h73q9 -95 116 -95q52 0 81.5 27.5t29.5 77.5q0 35 -23.5 62.5t-64.5 39.5l-78 22q-66 19 -101.5 66.5t-35.5 116.5q0 58 30 100t75 64q-46 21 -69.5 53t-23.5 85q0 72 50 118
t130 46t131 -42.5t51 -114.5h-72q0 47 -30 70t-80 23q-51 0 -79.5 -25.5t-28.5 -73.5q0 -37 22 -61t62 -35l78 -22q65 -19 101 -67t36 -116q0 -57 -30 -99.5t-74 -64.5zM365 345q-36 36 -86 36q-53 0 -86 -36t-33 -92q0 -31 8.5 -52.5t33 -48.5t77.5 -27t77 26.5t32.5 49
t8.5 52.5q0 32 -6.5 52.5t-25.5 39.5z" />
<glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="500"
d="M320 602v89h72v-89h-72zM108 602v89h72v-89h-72z" />
<glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="881"
d="M440 -6q-150 0 -256 106t-106 256t106 256t256 106t256 -106t106 -256t-106 -256t-256 -106zM440 664q-126 0 -214.5 -90.5t-88.5 -217.5t88.5 -217.5t214.5 -90.5t215 90t89 218q0 126 -89 217t-215 91zM445 153q-85 0 -131.5 56t-46.5 147t46.5 147.5t131.5 56.5
q40 0 69.5 -12.5t61.5 -40.5l-36 -36q-44 39 -95 39q-64 0 -93 -42t-29 -112t28.5 -111.5t93.5 -41.5q28 0 49 8t46 30l36 -36q-58 -52 -131 -52z" />
<glyph glyph-name="ordfeminine" unicode="&#xaa;" horiz-adv-x="449"
d="M307 319v36q-42 -41 -111 -41q-42 0 -66 8t-49 34t-25 73q0 52 35 83t100 31h115v36q0 44 -22 64t-75 20q-38 0 -59 -9.5t-39 -34.5l-41 37q26 33 58 46.5t82 13.5q155 0 155 -132v-265h-58zM306 498h-107q-84 0 -84 -67q0 -65 86 -65q33 0 50.5 4t36 21.5t18.5 66.5v40z
" />
<glyph glyph-name="guillemotleft" unicode="&#xab;" horiz-adv-x="554"
d="M266 268l210 210v-90l-121 -120l121 -121v-89zM40 268l210 210v-90l-120 -120l120 -121v-89z" />
<glyph glyph-name="logicalnot" unicode="&#xac;"
d="M404 103v137h-353v67h420v-204h-67z" />
<glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="881"
d="M440 -6q-150 0 -256 106t-106 256t106 256t256 106t256 -106t106 -256t-106 -256t-256 -106zM440 665q-127 0 -215.5 -90.5t-88.5 -218.5q0 -127 89 -218t215 -91t215.5 90.5t89.5 218.5t-89.5 218.5t-215.5 90.5zM528 158l-91 162h-60v-162h-55v397h135q52 0 88.5 -34.5
t36.5 -84.5q0 -41 -23.5 -69t-61.5 -40l95 -169h-64zM451 506h-74v-139h74q33 0 54 19t21 50q0 30 -21 50t-54 20z" />
<glyph glyph-name="degree" unicode="&#xb0;" horiz-adv-x="463"
d="M232 393q-68 0 -116.5 47.5t-48.5 116.5q0 68 48 116t117 48q68 0 116 -48t48 -116t-48 -116t-116 -48zM231 663q-45 0 -74 -30t-29 -76q0 -44 30 -75t74 -31q45 0 74 30t29 76q0 44 -30 75t-74 31z" />
<glyph glyph-name="plusminus" unicode="&#xb1;"
d="M295 289v-177h-67v177h-176v67h176v175h67v-175h175v-67h-175zM52 0v67h418v-67h-418z" />
<glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="500"
d="M267 594h-66l88 153h86z" />
<glyph glyph-name="mu" unicode="&#xb5;" horiz-adv-x="561"
d="M399 0v55q-53 -61 -138 -61q-66 0 -106 37v-251h-72v712h72v-303q0 -64 32 -97.5t89 -33.5t90 34t33 97v303h72v-492h-72z" />
<glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="603"
d="M428 -220v864h-117v-864h-72v546q-86 0 -141.5 57.5t-55.5 134.5q0 83 58.5 138.5t158.5 55.5h241v-932h-72z" />
<glyph glyph-name="cedilla" unicode="&#xb8;" horiz-adv-x="500"
d="M254 -216h-79l71 149h67z" />
<glyph glyph-name="ordmasculine" unicode="&#xba;" horiz-adv-x="455"
d="M339 359q-21 -21 -49 -32.5t-63 -11.5t-63 11.5t-52.5 36.5t-34.5 62.5t-10 89.5q0 51 10 89.5t35 63.5t52 36.5t63 11.5q35 0 62.5 -11.5t52.5 -36.5t35 -63.5t10 -89.5t-10 -89.5t-38 -66.5zM297 634q-28 28 -70 28t-65 -23t-29 -54t-6 -70q0 -43 5.5 -71t29.5 -52
t65 -24q21 0 38 7t34 24t23 46t6 70q0 40 -6 70t-25 49z" />
<glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="554"
d="M304 58v89l120 121l-120 120v90l210 -210zM78 58v89l121 121l-121 120v90l210 -210z" />
<glyph glyph-name="questiondown" unicode="&#xbf;" horiz-adv-x="497"
d="M185 408v84h85v-84h-85zM234 -226q-79 0 -133.5 51.5t-54.5 131.5q0 32 11.5 59t34.5 61l82 118q8 12 13 29t5 29v40h72v-41q0 -28 -7.5 -49t-24.5 -45l-81 -116q-18 -27 -25.5 -43.5t-7.5 -41.5q0 -50 33 -84t83 -34q52 0 83.5 34.5t31.5 83.5h72q0 -77 -53 -130
t-134 -53z" />
<glyph glyph-name="Agrave" unicode="&#xc0;" horiz-adv-x="611"
d="M518 0l-57 161h-311l-57 -161h-81l262 712h64l261 -712h-81zM307 603l-134 -376h266zM285 781l-108 153h86l88 -153h-66z" />
<glyph glyph-name="Aacute" unicode="&#xc1;" horiz-adv-x="611"
d="M518 0l-57 161h-311l-57 -161h-81l262 712h64l261 -712h-81zM307 603l-134 -376h266zM319 781h-66l88 153h86z" />
<glyph glyph-name="Acircumflex" unicode="&#xc2;" horiz-adv-x="611"
d="M518 0l-57 161h-311l-57 -161h-81l262 712h64l261 -712h-81zM307 603l-134 -376h266zM392 781l-90 104l-90 -104h-69l125 153h68l125 -153h-69z" />
<glyph glyph-name="Atilde" unicode="&#xc3;" horiz-adv-x="611"
d="M518 0l-57 161h-311l-57 -161h-81l262 712h64l261 -712h-81zM307 603l-134 -376h266zM364 795q-24 0 -38.5 6t-35 18t-29.5 16t-24 4t-26 -5t-33 -27l-37 36q30 30 52 40.5t43 10.5t34.5 -5t41 -22t51.5 -17q13 0 26 6t33 26l37 -36q-30 -30 -52.5 -40.5t-42.5 -10.5z
" />
<glyph glyph-name="Adieresis" unicode="&#xc4;" horiz-adv-x="611"
d="M518 0l-57 161h-311l-57 -161h-81l262 712h64l261 -712h-81zM307 603l-134 -376h266zM372 789v89h72v-89h-72zM160 789v89h72v-89h-72z" />
<glyph glyph-name="Aring" unicode="&#xc5;" horiz-adv-x="611"
d="M518 0l-57 161h-311l-57 -161h-81l262 712h64l261 -712h-81zM307 603l-134 -376h266zM302 748q-48 0 -83 35t-35 84t34.5 83.5t83.5 34.5q48 0 83 -34t35 -84q0 -49 -34 -84t-84 -35zM302 935q-29 0 -49 -19t-20 -49q0 -29 20 -49t49 -20t49 20t20 49q0 28 -20 48t-49 20
z" />
<glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="922"
d="M426 0v169h-247l-88 -169h-83l376 712h483v-68h-366v-253h312v-68h-312v-255h366v-68h-441zM426 644l-214 -409h214v409z" />
<glyph glyph-name="Ccedilla" unicode="&#xc7;" horiz-adv-x="637"
d="M325 -6q-108 0 -168 60t-70.5 117t-10.5 185q0 106 6 169.5t70.5 128t172.5 64.5q97 0 163 -56t84 -156h-78q-15 67 -58.5 105.5t-110.5 38.5q-75 0 -115.5 -41.5t-49 -88t-8.5 -164.5q0 -117 8.5 -164t49 -88.5t115.5 -41.5q67 0 111.5 38.5t59.5 105.5h76
q-17 -99 -83.5 -155.5t-163.5 -56.5zM311 -216h-79l71 149h67z" />
<glyph glyph-name="Egrave" unicode="&#xc8;" horiz-adv-x="600"
d="M103 0v712h442v-68h-366v-251h312v-68h-312v-257h366v-68h-442zM296 781l-108 153h86l88 -153h-66z" />
<glyph glyph-name="Eacute" unicode="&#xc9;" horiz-adv-x="600"
d="M103 0v712h442v-68h-366v-251h312v-68h-312v-257h366v-68h-442zM330 781h-66l88 153h86z" />
<glyph glyph-name="Ecircumflex" unicode="&#xca;" horiz-adv-x="600"
d="M103 0v712h442v-68h-366v-251h312v-68h-312v-257h366v-68h-442zM403 781l-90 104l-90 -104h-69l125 153h68l125 -153h-69z" />
<glyph glyph-name="Edieresis" unicode="&#xcb;" horiz-adv-x="600"
d="M103 0v712h442v-68h-366v-251h312v-68h-312v-257h366v-68h-442zM383 789v89h72v-89h-72zM171 789v89h72v-89h-72z" />
<glyph glyph-name="Igrave" unicode="&#xcc;" horiz-adv-x="282"
d="M103 0v712h76v-712h-76zM211 781l-108 153h86l88 -153h-66z" />
<glyph glyph-name="Iacute" unicode="&#xcd;" horiz-adv-x="282"
d="M103 0v712h76v-712h-76zM169 781h-66l88 153h86z" />
<glyph glyph-name="Icircumflex" unicode="&#xce;" horiz-adv-x="282"
d="M103 0v712h76v-712h-76zM352 781l-90 104l-90 -104h-69l125 153h68l125 -153h-69z" />
<glyph glyph-name="Idieresis" unicode="&#xcf;" horiz-adv-x="282"
d="M103 0v712h76v-712h-76zM315 789v89h72v-89h-72zM103 789v89h72v-89h-72z" />
<glyph glyph-name="Ntilde" unicode="&#xd1;" horiz-adv-x="732"
d="M557 0l-378 571v-571h-76v712h72l378 -569v569h76v-712h-72zM428 795q-24 0 -38.5 6t-35 18t-29.5 16t-24 4t-26 -5t-33 -27l-37 36q30 30 52 40.5t43 10.5t34.5 -5t41 -22t51.5 -17q13 0 26 6t33 26l37 -36q-30 -30 -52.5 -40.5t-42.5 -10.5z" />
<glyph glyph-name="Ograve" unicode="&#xd2;" horiz-adv-x="650"
d="M507 68q-74 -74 -182 -74t-168 60t-70.5 117t-10.5 185q0 106 6 169.5t70.5 128t172.5 64.5t168 -60t70.5 -117t10.5 -185q0 -106 -6 -169.5t-61 -118.5zM448 599q-49 51 -123 51t-115 -42.5t-49.5 -88t-8.5 -163.5q0 -117 8.5 -163.5t49.5 -88.5t115 -42t115 42.5
t49.5 88t8.5 163.5q0 117 -8.5 163.5t-41.5 79.5zM308 781l-108 153h86l88 -153h-66z" />
<glyph glyph-name="Oacute" unicode="&#xd3;" horiz-adv-x="650"
d="M507 68q-74 -74 -182 -74t-168 60t-70.5 117t-10.5 185q0 106 6 169.5t70.5 128t172.5 64.5t168 -60t70.5 -117t10.5 -185q0 -106 -6 -169.5t-61 -118.5zM448 599q-49 51 -123 51t-115 -42.5t-49.5 -88t-8.5 -163.5q0 -117 8.5 -163.5t49.5 -88.5t115 -42t115 42.5
t49.5 88t8.5 163.5q0 117 -8.5 163.5t-41.5 79.5zM342 781h-66l88 153h86z" />
<glyph glyph-name="Ocircumflex" unicode="&#xd4;" horiz-adv-x="650"
d="M507 68q-74 -74 -182 -74t-168 60t-70.5 117t-10.5 185q0 106 6 169.5t70.5 128t172.5 64.5t168 -60t70.5 -117t10.5 -185q0 -106 -6 -169.5t-61 -118.5zM448 599q-49 51 -123 51t-115 -42.5t-49.5 -88t-8.5 -163.5q0 -117 8.5 -163.5t49.5 -88.5t115 -42t115 42.5
t49.5 88t8.5 163.5q0 117 -8.5 163.5t-41.5 79.5zM415 781l-90 104l-90 -104h-69l125 153h68l125 -153h-69z" />
<glyph glyph-name="Otilde" unicode="&#xd5;" horiz-adv-x="650"
d="M507 68q-74 -74 -182 -74t-168 60t-70.5 117t-10.5 185q0 106 6 169.5t70.5 128t172.5 64.5t168 -60t70.5 -117t10.5 -185q0 -106 -6 -169.5t-61 -118.5zM448 599q-49 51 -123 51t-115 -42.5t-49.5 -88t-8.5 -163.5q0 -117 8.5 -163.5t49.5 -88.5t115 -42t115 42.5
t49.5 88t8.5 163.5q0 117 -8.5 163.5t-41.5 79.5zM387 795q-24 0 -38.5 6t-35 18t-29.5 16t-24 4t-26 -5t-33 -27l-37 36q30 30 52 40.5t43 10.5t34.5 -5t41 -22t51.5 -17q13 0 26 6t33 26l37 -36q-30 -30 -52.5 -40.5t-42.5 -10.5z" />
<glyph glyph-name="Odieresis" unicode="&#xd6;" horiz-adv-x="650"
d="M507 68q-74 -74 -182 -74t-168 60t-70.5 117t-10.5 185q0 106 6 169.5t70.5 128t172.5 64.5t168 -60t70.5 -117t10.5 -185q0 -106 -6 -169.5t-61 -118.5zM448 599q-49 51 -123 51t-115 -42.5t-49.5 -88t-8.5 -163.5q0 -117 8.5 -163.5t49.5 -88.5t115 -42t115 42.5
t49.5 88t8.5 163.5q0 117 -8.5 163.5t-41.5 79.5zM395 789v89h72v-89h-72zM183 789v89h72v-89h-72z" />
<glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="652"
d="M507 68q-74 -74 -182 -74q-70 0 -126 32l-33 -70h-65l50 104l-8 8q-46 46 -56.5 103t-10.5 185q0 106 6 169.5t70.5 128t172.5 64.5q70 0 125 -31l34 69h65l-50 -104l8 -8q46 -46 56.5 -103t10.5 -185q0 -106 -6 -169.5t-61 -118.5zM463 581l-234 -490q45 -29 96 -29
q74 0 114.5 42t49 88.5t8.5 163.5q0 106 -5.5 150t-28.5 75zM325 650q-74 0 -115 -42.5t-49.5 -88t-8.5 -163.5q0 -178 35 -225l234 490q-45 29 -96 29z" />
<glyph glyph-name="Ugrave" unicode="&#xd9;" horiz-adv-x="682"
d="M341 -6q-109 0 -178.5 67.5t-69.5 173.5v477h76v-471q0 -81 47 -130t125 -49q77 0 125 49t48 130v471h76v-477q0 -107 -70 -174t-179 -67zM324 781l-108 153h86l88 -153h-66z" />
<glyph glyph-name="Uacute" unicode="&#xda;" horiz-adv-x="682"
d="M341 -6q-109 0 -178.5 67.5t-69.5 173.5v477h76v-471q0 -81 47 -130t125 -49q77 0 125 49t48 130v471h76v-477q0 -107 -70 -174t-179 -67zM358 781h-66l88 153h86z" />
<glyph glyph-name="Ucircumflex" unicode="&#xdb;" horiz-adv-x="682"
d="M341 -6q-109 0 -178.5 67.5t-69.5 173.5v477h76v-471q0 -81 47 -130t125 -49q77 0 125 49t48 130v471h76v-477q0 -107 -70 -174t-179 -67zM431 781l-90 104l-90 -104h-69l125 153h68l125 -153h-69z" />
<glyph glyph-name="Udieresis" unicode="&#xdc;" horiz-adv-x="682"
d="M341 -6q-109 0 -178.5 67.5t-69.5 173.5v477h76v-471q0 -81 47 -130t125 -49q77 0 125 49t48 130v471h76v-477q0 -107 -70 -174t-179 -67zM411 789v89h72v-89h-72zM199 789v89h72v-89h-72z" />
<glyph glyph-name="germandbls" unicode="&#xdf;" horiz-adv-x="556"
d="M445 36q-39 -36 -103 -36h-54v62h40q23 0 33.5 3.5t30.5 20t20 63.5v169q0 41 -21 62t-59 21h-44v60h36q39 0 63.5 24.5t24.5 66.5q0 46 -30.5 75t-94.5 29t-94 -36t-30 -99v-521h-73v524q0 93 54 144t147 51q85 0 139 -41.5t54 -124.5q0 -40 -15.5 -69t-47.5 -50
q35 -19 49 -45.5t14 -74.5v-173q0 -69 -39 -105z" />
<glyph glyph-name="agrave" unicode="&#xe0;" horiz-adv-x="526"
d="M369 0v47q-29 -29 -61 -41t-81 -12q-52 0 -83.5 10t-62 41t-30.5 94q0 66 44 104t126 38h148v47q0 55 -29.5 81.5t-96.5 26.5q-49 0 -75 -12t-49 -44l-49 45q32 42 71.5 57.5t102.5 15.5q197 0 197 -164v-334h-72zM369 227h-138q-110 0 -110 -87q0 -84 113 -84q38 0 63 6
t48.5 28.5t23.5 83.5v53zM235 594l-108 153h86l88 -153h-66z" />
<glyph glyph-name="aacute" unicode="&#xe1;" horiz-adv-x="526"
d="M369 0v47q-29 -29 -61 -41t-81 -12q-52 0 -83.5 10t-62 41t-30.5 94q0 66 44 104t126 38h148v47q0 55 -29.5 81.5t-96.5 26.5q-49 0 -75 -12t-49 -44l-49 45q32 42 71.5 57.5t102.5 15.5q197 0 197 -164v-334h-72zM369 227h-138q-110 0 -110 -87q0 -84 113 -84q38 0 63 6
t48.5 28.5t23.5 83.5v53zM269 594h-66l88 153h86z" />
<glyph glyph-name="acircumflex" unicode="&#xe2;" horiz-adv-x="526"
d="M369 0v47q-29 -29 -61 -41t-81 -12q-52 0 -83.5 10t-62 41t-30.5 94q0 66 44 104t126 38h148v47q0 55 -29.5 81.5t-96.5 26.5q-49 0 -75 -12t-49 -44l-49 45q32 42 71.5 57.5t102.5 15.5q197 0 197 -164v-334h-72zM369 227h-138q-110 0 -110 -87q0 -84 113 -84q38 0 63 6
t48.5 28.5t23.5 83.5v53zM342 594l-90 104l-90 -104h-69l125 153h68l125 -153h-69z" />
<glyph glyph-name="atilde" unicode="&#xe3;" horiz-adv-x="526"
d="M369 0v47q-29 -29 -61 -41t-81 -12q-52 0 -83.5 10t-62 41t-30.5 94q0 66 44 104t126 38h148v47q0 55 -29.5 81.5t-96.5 26.5q-49 0 -75 -12t-49 -44l-49 45q32 42 71.5 57.5t102.5 15.5q197 0 197 -164v-334h-72zM369 227h-138q-110 0 -110 -87q0 -84 113 -84q38 0 63 6
t48.5 28.5t23.5 83.5v53zM314 608q-24 0 -38.5 6t-35 18t-29.5 16t-24 4t-26 -5t-33 -27l-37 36q30 30 52 40.5t43 10.5t34.5 -5t41 -22t51.5 -17q13 0 26 6t33 26l37 -36q-30 -30 -52.5 -40.5t-42.5 -10.5z" />
<glyph glyph-name="adieresis" unicode="&#xe4;" horiz-adv-x="526"
d="M369 0v47q-29 -29 -61 -41t-81 -12q-52 0 -83.5 10t-62 41t-30.5 94q0 66 44 104t126 38h148v47q0 55 -29.5 81.5t-96.5 26.5q-49 0 -75 -12t-49 -44l-49 45q32 42 71.5 57.5t102.5 15.5q197 0 197 -164v-334h-72zM369 227h-138q-110 0 -110 -87q0 -84 113 -84q38 0 63 6
t48.5 28.5t23.5 83.5v53zM322 602v89h72v-89h-72zM110 602v89h72v-89h-72z" />
<glyph glyph-name="aring" unicode="&#xe5;" horiz-adv-x="526"
d="M369 0v47q-29 -29 -61 -41t-81 -12q-52 0 -83.5 10t-62 41t-30.5 94q0 66 44 104t126 38h148v47q0 55 -29.5 81.5t-96.5 26.5q-49 0 -75 -12t-49 -44l-49 45q32 42 71.5 57.5t102.5 15.5q197 0 197 -164v-334h-72zM369 227h-138q-110 0 -110 -87q0 -84 113 -84q38 0 63 6
t48.5 28.5t23.5 83.5v53zM252 568q-48 0 -83 35t-35 84t34.5 83.5t83.5 34.5q48 0 83 -34t35 -84q0 -49 -34 -84t-84 -35zM252 755q-29 0 -49 -19t-20 -49q0 -29 20 -49t49 -20t49 20t20 49q0 28 -20 48t-49 20z" />
<glyph glyph-name="ae" unicode="&#xe6;" horiz-adv-x="835"
d="M440 227q0 -81 37.5 -125.5t108.5 -44.5q42 0 69 12t59 44l50 -43q-40 -40 -80 -58t-102 -18q-61 0 -104.5 20.5t-70.5 64.5q-33 -46 -74.5 -65.5t-105.5 -19.5q-52 0 -83.5 10t-62 41t-30.5 94q0 66 44 104t126 38h148v47q0 55 -29.5 81.5t-96.5 26.5q-49 0 -75 -12
t-49 -44l-49 45q32 42 71.5 57.5t102.5 15.5q132 0 173 -77q52 77 154 77q95 0 148.5 -63.5t53.5 -174.5v-33h-333zM686 363q-14 34 -45 54t-70 20t-69.5 -20t-42.5 -48t-15.5 -44t-3.5 -44h261q0 30 -2.5 44t-12.5 38zM369 227h-138q-110 0 -110 -87q0 -84 113 -84
q38 0 63 6t48.5 28.5t23.5 83.5v53z" />
<glyph glyph-name="ccedilla" unicode="&#xe7;" horiz-adv-x="494"
d="M281 -6q-96 0 -157 65.5t-61 186.5q0 122 60.5 187t157.5 65q53 0 88 -15.5t74 -57.5l-49 -46q-28 31 -53 43t-60 12q-75 0 -110.5 -50.5t-35.5 -137.5q0 -47 7 -77t35.5 -70.5t103.5 -40.5q36 0 60 12t53 44l49 -47q-38 -41 -74 -57t-88 -16zM254 -216h-79l71 149h67z
" />
<glyph glyph-name="egrave" unicode="&#xe8;" horiz-adv-x="530"
d="M135 227q0 -81 37.5 -125.5t107.5 -44.5q42 0 70 12.5t59 43.5l49 -43q-40 -40 -79.5 -58t-100.5 -18q-101 0 -158 62.5t-57 189.5q0 119 53.5 185.5t148.5 66.5t148.5 -63.5t53.5 -174.5v-33h-332zM380 363q-14 34 -45 54t-70 20t-69.5 -20t-42 -46.5t-15 -45.5
t-3.5 -44h260q0 30 -2.5 44t-12.5 38zM251 594l-108 153h86l88 -153h-66z" />
<glyph glyph-name="eacute" unicode="&#xe9;" horiz-adv-x="530"
d="M135 227q0 -81 37.5 -125.5t107.5 -44.5q42 0 70 12.5t59 43.5l49 -43q-40 -40 -79.5 -58t-100.5 -18q-101 0 -158 62.5t-57 189.5q0 119 53.5 185.5t148.5 66.5t148.5 -63.5t53.5 -174.5v-33h-332zM380 363q-14 34 -45 54t-70 20t-69.5 -20t-42 -46.5t-15 -45.5
t-3.5 -44h260q0 30 -2.5 44t-12.5 38zM285 594h-66l88 153h86z" />
<glyph glyph-name="ecircumflex" unicode="&#xea;" horiz-adv-x="530"
d="M135 227q0 -81 37.5 -125.5t107.5 -44.5q42 0 70 12.5t59 43.5l49 -43q-40 -40 -79.5 -58t-100.5 -18q-101 0 -158 62.5t-57 189.5q0 119 53.5 185.5t148.5 66.5t148.5 -63.5t53.5 -174.5v-33h-332zM380 363q-14 34 -45 54t-70 20t-69.5 -20t-42 -46.5t-15 -45.5
t-3.5 -44h260q0 30 -2.5 44t-12.5 38zM358 594l-90 104l-90 -104h-69l125 153h68l125 -153h-69z" />
<glyph glyph-name="edieresis" unicode="&#xeb;" horiz-adv-x="530"
d="M135 227q0 -81 37.5 -125.5t107.5 -44.5q42 0 70 12.5t59 43.5l49 -43q-40 -40 -79.5 -58t-100.5 -18q-101 0 -158 62.5t-57 189.5q0 119 53.5 185.5t148.5 66.5t148.5 -63.5t53.5 -174.5v-33h-332zM380 363q-14 34 -45 54t-70 20t-69.5 -20t-42 -46.5t-15 -45.5
t-3.5 -44h260q0 30 -2.5 44t-12.5 38zM338 602v89h72v-89h-72zM126 602v89h72v-89h-72z" />
<glyph glyph-name="igrave" unicode="&#xec;" horiz-adv-x="253"
d="M90 0v492h72v-492h-72zM198 594l-108 153h86l88 -153h-66z" />
<glyph glyph-name="iacute" unicode="&#xed;" horiz-adv-x="253"
d="M90 0v492h72v-492h-72zM156 594h-66l88 153h86z" />
<glyph glyph-name="icircumflex" unicode="&#xee;" horiz-adv-x="253"
d="M90 0v492h72v-492h-72zM339 594l-90 104l-90 -104h-69l125 153h68l125 -153h-69z" />
<glyph glyph-name="idieresis" unicode="&#xef;" horiz-adv-x="253"
d="M90 0v492h72v-492h-72zM302 602v89h72v-89h-72zM90 602v89h72v-89h-72z" />
<glyph glyph-name="ntilde" unicode="&#xf1;" horiz-adv-x="562"
d="M405 0v303q0 64 -32 97.5t-89 33.5t-89.5 -33.5t-32.5 -97.5v-303h-72v492h72v-54q53 60 138 60q80 0 128.5 -48t48.5 -135v-315h-72zM347 608q-24 0 -38.5 6t-35 18t-29.5 16t-24 4t-26 -5t-33 -27l-37 36q30 30 52 40.5t43 10.5t34.5 -5t41 -22t51.5 -17q13 0 26 6
t33 26l37 -36q-30 -30 -52.5 -40.5t-42.5 -10.5z" />
<glyph glyph-name="ograve" unicode="&#xf2;" horiz-adv-x="530"
d="M406 50q-27 -27 -61.5 -41.5t-79.5 -14.5q-44 0 -79 14.5t-66 46t-43.5 78t-12.5 113.5q0 65 12.5 112.5t43.5 79t65.5 46t79.5 14.5q44 0 79 -14.5t66 -46t43.5 -78t12.5 -113.5q0 -65 -12.5 -112.5t-47.5 -83.5zM355 398q-36 36 -90 36q-53 0 -83 -30t-38 -69.5
t-8 -88.5q0 -54 7.5 -90.5t38 -67t83.5 -30.5q54 0 84 30t37.5 67.5t7.5 90.5q0 52 -7.5 90t-31.5 62zM238 594l-108 153h86l88 -153h-66z" />
<glyph glyph-name="oacute" unicode="&#xf3;" horiz-adv-x="530"
d="M406 50q-27 -27 -61.5 -41.5t-79.5 -14.5q-44 0 -79 14.5t-66 46t-43.5 78t-12.5 113.5q0 65 12.5 112.5t43.5 79t65.5 46t79.5 14.5q44 0 79 -14.5t66 -46t43.5 -78t12.5 -113.5q0 -65 -12.5 -112.5t-47.5 -83.5zM355 398q-36 36 -90 36q-53 0 -83 -30t-38 -69.5
t-8 -88.5q0 -54 7.5 -90.5t38 -67t83.5 -30.5q54 0 84 30t37.5 67.5t7.5 90.5q0 52 -7.5 90t-31.5 62zM282 594h-66l88 153h86z" />
<glyph glyph-name="ocircumflex" unicode="&#xf4;" horiz-adv-x="530"
d="M406 50q-27 -27 -61.5 -41.5t-79.5 -14.5q-44 0 -79 14.5t-66 46t-43.5 78t-12.5 113.5q0 65 12.5 112.5t43.5 79t65.5 46t79.5 14.5q44 0 79 -14.5t66 -46t43.5 -78t12.5 -113.5q0 -65 -12.5 -112.5t-47.5 -83.5zM355 398q-36 36 -90 36q-53 0 -83 -30t-38 -69.5
t-8 -88.5q0 -54 7.5 -90.5t38 -67t83.5 -30.5q54 0 84 30t37.5 67.5t7.5 90.5q0 52 -7.5 90t-31.5 62zM355 594l-90 104l-90 -104h-69l125 153h68l125 -153h-69z" />
<glyph glyph-name="otilde" unicode="&#xf5;" horiz-adv-x="530"
d="M406 50q-27 -27 -61.5 -41.5t-79.5 -14.5q-44 0 -79 14.5t-66 46t-43.5 78t-12.5 113.5q0 65 12.5 112.5t43.5 79t65.5 46t79.5 14.5q44 0 79 -14.5t66 -46t43.5 -78t12.5 -113.5q0 -65 -12.5 -112.5t-47.5 -83.5zM355 398q-36 36 -90 36q-53 0 -83 -30t-38 -69.5
t-8 -88.5q0 -54 7.5 -90.5t38 -67t83.5 -30.5q54 0 84 30t37.5 67.5t7.5 90.5q0 52 -7.5 90t-31.5 62zM327 608q-24 0 -38.5 6t-35 18t-29.5 16t-24 4t-26 -5t-33 -27l-37 36q30 30 52 40.5t43 10.5t34.5 -5t41 -22t51.5 -17q13 0 26 6t33 26l37 -36q-30 -30 -52.5 -40.5
t-42.5 -10.5z" />
<glyph glyph-name="odieresis" unicode="&#xf6;" horiz-adv-x="530"
d="M406 50q-27 -27 -61.5 -41.5t-79.5 -14.5q-44 0 -79 14.5t-66 46t-43.5 78t-12.5 113.5q0 65 12.5 112.5t43.5 79t65.5 46t79.5 14.5q44 0 79 -14.5t66 -46t43.5 -78t12.5 -113.5q0 -65 -12.5 -112.5t-47.5 -83.5zM355 398q-36 36 -90 36q-53 0 -83 -30t-38 -69.5
t-8 -88.5q0 -54 7.5 -90.5t38 -67t83.5 -30.5q54 0 84 30t37.5 67.5t7.5 90.5q0 52 -7.5 90t-31.5 62zM335 602v89h72v-89h-72zM123 602v89h72v-89h-72z" />
<glyph glyph-name="divide" unicode="&#xf7;"
d="M218 404v86h86v-86h-86zM51 236v67h420v-67h-420zM218 49v86h86v-86h-86z" />
<glyph glyph-name="oslash" unicode="&#xf8;" horiz-adv-x="530"
d="M406 50q-27 -27 -61.5 -41.5t-79.5 -14.5q-31 0 -56.5 7t-48.5 20l-38 -65h-57l57 96q-34 35 -46 82t-12 112t12.5 112.5t43.5 79t65.5 46t79.5 14.5q31 0 56.5 -7t48.5 -20l39 65h56l-57 -96q34 -35 46 -82t12 -112t-12.5 -112.5t-47.5 -83.5zM370 379l-177 -299
q31 -22 72 -22q54 0 84 30t37.5 67.5t7.5 90.5q0 48 -4 77.5t-20 55.5zM265 434q-53 0 -83 -30t-38 -69.5t-8 -88.5q0 -44 5 -76t20 -57l176 300q-30 21 -72 21z" />
<glyph glyph-name="ugrave" unicode="&#xf9;" horiz-adv-x="563"
d="M401 0v55q-53 -61 -139 -61q-81 0 -129 47.5t-48 136.5v314h72v-303q0 -64 31.5 -97.5t88.5 -33.5t90 34t33 97v303h72v-492h-71zM261 594l-108 153h86l88 -153h-66z" />
<glyph glyph-name="uacute" unicode="&#xfa;" horiz-adv-x="563"
d="M401 0v55q-53 -61 -139 -61q-81 0 -129 47.5t-48 136.5v314h72v-303q0 -64 31.5 -97.5t88.5 -33.5t90 34t33 97v303h72v-492h-71zM295 594h-66l88 153h86z" />
<glyph glyph-name="ucircumflex" unicode="&#xfb;" horiz-adv-x="563"
d="M401 0v55q-53 -61 -139 -61q-81 0 -129 47.5t-48 136.5v314h72v-303q0 -64 31.5 -97.5t88.5 -33.5t90 34t33 97v303h72v-492h-71zM368 594l-90 104l-90 -104h-69l125 153h68l125 -153h-69z" />
<glyph glyph-name="udieresis" unicode="&#xfc;" horiz-adv-x="563"
d="M401 0v55q-53 -61 -139 -61q-81 0 -129 47.5t-48 136.5v314h72v-303q0 -64 31.5 -97.5t88.5 -33.5t90 34t33 97v303h72v-492h-71zM348 602v89h72v-89h-72zM136 602v89h72v-89h-72z" />
<glyph glyph-name="ydieresis" unicode="&#xff;" horiz-adv-x="446"
d="M212 -119q-14 -39 -33.5 -57.5t-45 -26.5t-52.5 -8h-31v64h22q37 0 52.5 12.5t28.5 48.5l35 96l-177 482h78l135 -395l134 395h78zM293 602v89h72v-89h-72zM81 602v89h72v-89h-72z" />
<glyph glyph-name="dotlessi" unicode="&#x131;" horiz-adv-x="253"
d="M90 0v492h72v-492h-72z" />
<glyph glyph-name="OE" unicode="&#x152;" horiz-adv-x="989"
d="M497 0v74q-32 -39 -77.5 -59.5t-95.5 -20.5q-107 0 -166.5 59.5t-70.5 116.5t-11 186q0 108 6 170.5t70.5 127t171.5 64.5q108 0 173 -80v74h434v-67h-358l1 -254h304v-64h-304l-1 -260h360v-67h-436zM448 599q-49 51 -123 51t-115 -42.5t-49.5 -88t-8.5 -163.5
q0 -117 8.5 -163.5t49.5 -88.5t115 -42t114.5 42t49 88.5t8.5 163.5q0 121 -8 165t-41 78z" />
<glyph glyph-name="oe" unicode="&#x153;" horiz-adv-x="861"
d="M466 227q0 -81 37.5 -125.5t107.5 -44.5q42 0 70 12.5t59 43.5l49 -43q-40 -40 -79.5 -58t-100.5 -18q-124 0 -177 95q-23 -45 -67 -70t-100 -25q-44 0 -79 14.5t-66 46t-43.5 78t-12.5 113.5q0 65 12.5 112.5t43.5 79t65.5 46t79.5 14.5q55 0 100 -25t68 -70
q51 95 163 95q95 0 148.5 -63.5t53.5 -174.5v-33h-332zM711 363q-14 34 -45 54t-70 20t-69.5 -20t-42 -46.5t-15 -45.5t-3.5 -44h261q0 31 -2.5 42.5t-13.5 39.5zM355 398q-36 36 -90 36q-53 0 -83 -30t-38 -69.5t-8 -88.5q0 -54 7.5 -90.5t38 -67t83.5 -30.5q54 0 84 30
t37.5 67.5t7.5 90.5q0 52 -7.5 90t-31.5 62z" />
<glyph glyph-name="Ydieresis" unicode="&#x178;" horiz-adv-x="515"
d="M296 294v-294h-76v294l-212 418h82l168 -341l166 341h82zM327 789v89h72v-89h-72zM115 789v89h72v-89h-72z" />
<glyph glyph-name="florin" unicode="&#x192;" horiz-adv-x="403"
d="M323 652q-66 0 -79 -72l-34 -196h105v-54h-115l-97 -550h-72l97 550h-98v54h108l34 198q10 57 49.5 94.5t99.5 37.5h52v-62h-50z" />
<glyph glyph-name="hungarumlaut" unicode="&#x2ba;" horiz-adv-x="500"
d="M338 594h-65l89 153h85zM176 594h-66l89 153h85z" />
<glyph glyph-name="caron" unicode="&#x2c7;" horiz-adv-x="500"
d="M284 594h-68l-125 153h69l90 -105l90 105h69z" />
<glyph glyph-name="macron" unicode="&#x2c9;" horiz-adv-x="500"
d="M99 614v57h302v-57h-302z" />
<glyph glyph-name="breve" unicode="&#x2d8;" horiz-adv-x="500"
d="M252 588q-155 0 -167 139h58q5 -38 34 -60t75 -22t74.5 21.5t33.5 60.5h55q-12 -139 -163 -139z" />
<glyph glyph-name="dotaccent" unicode="&#x2d9;" horiz-adv-x="500"
d="M210 634v74h80v-74h-80z" />
<glyph glyph-name="ring" unicode="&#x2da;" horiz-adv-x="500"
d="M250 568q-48 0 -83 35t-35 84t34.5 83.5t83.5 34.5q48 0 83 -34t35 -84q0 -49 -34 -84t-84 -35zM250 755q-29 0 -49 -19t-20 -49q0 -29 20 -49t49 -20t49 20t20 49q0 28 -20 48t-49 20z" />
<glyph glyph-name="ogonek" unicode="&#x2db;" horiz-adv-x="500"
d="M245 -216l-59 149h66l71 -149h-78z" />
<glyph glyph-name="circumflex" unicode="&#x302;" horiz-adv-x="500"
d="M340 594l-90 104l-90 -104h-69l125 153h68l125 -153h-69z" />
<glyph glyph-name="tilde" unicode="&#x303;" horiz-adv-x="500"
d="M312 608q-24 0 -38.5 6t-35 18t-29.5 16t-24 4t-26 -5t-33 -27l-37 36q30 30 52 40.5t43 10.5t34.5 -5t41 -22t51.5 -17q13 0 26 6t33 26l37 -36q-30 -30 -52.5 -40.5t-42.5 -10.5z" />
<glyph glyph-name="summation" unicode="&#x3a3;" horiz-adv-x="551"
d="M57 -220v65l202 438l-201 413v64h441v-68h-353l180 -375v-69l-182 -400h356v-68h-443z" />
<glyph glyph-name="Omega" unicode="&#x3a9;" horiz-adv-x="650"
d="M379 0v64q32 15 54 32.5t37.5 43t21 76.5t5.5 138q0 117 -8.5 165t-50 89.5t-113.5 41.5q-35 0 -66.5 -13t-59.5 -41.5t-37.5 -78t-9.5 -163.5q0 -171 22 -206t42 -51t55 -33v-64h-195v67h82q-19 15 -32.5 32.5t-26.5 42.5t-18 70t-5 114v30q0 106 6 169.5t70.5 128
t172.5 64.5t168 -60t70.5 -117t10.5 -185v-30q0 -67 -5 -112.5t-22.5 -80.5t-55.5 -66h83v-67h-195z" />
<glyph glyph-name="pi" unicode="&#x3c0;" horiz-adv-x="591"
d="M421 0v427h-250v-427h-70v492h389v-492h-69z" />
<glyph glyph-name="endash" unicode="&#x2013;"
d="M52 236v67h418v-67h-418z" />
<glyph glyph-name="emdash" unicode="&#x2014;" horiz-adv-x="914"
d="M76 236v68h762v-68h-762z" />
<glyph glyph-name="quoteleft" unicode="&#x2018;" horiz-adv-x="263"
d="M88 628v84l87 79v-163h-87z" />
<glyph glyph-name="quoteright" unicode="&#x2019;" horiz-adv-x="263"
d="M88 549v163h87v-84z" />
<glyph glyph-name="quotesinglbase" unicode="&#x201a;" horiz-adv-x="263"
d="M88 -79v163h87v-84z" />
<glyph glyph-name="quotedblleft" unicode="&#x201c;" horiz-adv-x="434"
d="M258 628v84l88 79v-163h-88zM88 628v84l87 79v-163h-87z" />
<glyph glyph-name="quotedblright" unicode="&#x201d;" horiz-adv-x="434"
d="M258 549v163h88v-84zM88 549v163h87v-84z" />
<glyph glyph-name="quotedblbase" unicode="&#x201e;" horiz-adv-x="434"
d="M258 -79v163h88v-84zM88 -79v163h87v-84z" />
<glyph glyph-name="dagger" unicode="&#x2020;" horiz-adv-x="605"
d="M337 445v-445h-72v445h-191v64h191v203h72v-203h194v-64h-194z" />
<glyph glyph-name="daggerdbl" unicode="&#x2021;" horiz-adv-x="605"
d="M337 -16v-204h-72v204h-191v64h191v397h-191v64h191v203h72v-203h194v-64h-194v-397h194v-64h-194z" />
<glyph glyph-name="bullet" unicode="&#x2022;" horiz-adv-x="532"
d="M266 171q-68 0 -115.5 47.5t-47.5 115.5t47.5 115.5t115.5 47.5t115.5 -47.5t47.5 -115.5t-47.5 -115.5t-115.5 -47.5z" />
<glyph glyph-name="ellipsis" unicode="&#x2026;" horiz-adv-x="757"
d="M577 0v92h92v-92h-92zM332 0v92h92v-92h-92zM88 0v92h92v-92h-92z" />
<glyph glyph-name="perthousand" unicode="&#x2030;" horiz-adv-x="1179"
d="M980 -7q-60 0 -97.5 36.5t-37.5 98.5v105q0 61 38 98t97 37t97 -37t38 -98v-105q0 -61 -38 -98t-97 -37zM634 -7q-60 0 -97.5 36.5t-37.5 98.5v105q0 61 38 98t97 37t97 -37t38 -98v-105q0 -61 -38 -98t-97 -37zM280 0h-60l334 712h60zM200 345q-60 0 -97.5 36.5
t-37.5 97.5v105q0 61 38 98t97 37t97 -37t38 -98v-105q0 -60 -38 -97t-97 -37zM1058 231q0 41 -19 64t-59 23t-59 -23t-19 -64v-101q0 -42 18.5 -64.5t59.5 -22.5q40 0 59 22.5t19 64.5v101zM712 231q0 41 -19 64t-59 23t-59 -23t-19 -64v-101q0 -42 18.5 -64.5t59.5 -22.5
q40 0 59 22.5t19 64.5v101zM278 582q0 41 -19 64t-59 23t-59 -23t-19 -64v-101q0 -42 19 -64t59 -22q39 0 58.5 22.5t19.5 63.5v101z" />
<glyph glyph-name="guilsinglleft" unicode="&#x2039;" horiz-adv-x="328"
d="M40 268l210 210v-90l-120 -120l120 -121v-89z" />
<glyph glyph-name="guilsinglright" unicode="&#x203a;" horiz-adv-x="328"
d="M78 58v89l121 121l-121 120v90l210 -210z" />
<glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="839"
d="M724 285v308l-102 -202h-56l-102 202v-308h-58v427h58l130 -259l130 259h57v-427h-57zM212 659v-374h-58v374h-118v53h295v-53h-119z" />
<glyph glyph-name="partialdiff" unicode="&#x2202;" horiz-adv-x="544"
d="M396 49q-24 -26 -59 -40.5t-77 -14.5q-85 0 -127 44.5t-54.5 93.5t-12.5 112q0 70 11.5 116.5t39.5 75.5t61.5 44t74.5 15q40 0 70 -12t58 -46v70q0 65 -33 107t-102 42q-40 0 -63.5 -11.5t-54.5 -38.5l-46 46q39 35 76.5 50.5t89.5 15.5q99 0 152 -58.5t53 -157.5v-258
q0 -66 -11.5 -113t-45.5 -82zM344 395q-34 36 -84 36q-51 0 -79.5 -30t-35.5 -68t-7 -89q0 -66 9 -98t35.5 -60t77.5 -28q50 0 78.5 30t35.5 67.5t7 88.5q0 67 -9 99t-28 52z" />
<glyph glyph-name="Delta" unicode="&#x2206;" horiz-adv-x="603"
d="M8 0l262 712h63l261 -712h-586zM302 603l-194 -537h387z" />
<glyph glyph-name="product" unicode="&#x220f;" horiz-adv-x="696"
d="M517 -220v912h-338v-912h-76v980h490v-980h-76z" />
<glyph glyph-name="fraction" unicode="&#x2215;" horiz-adv-x="185"
d="M-44 0h-60l333 712h60z" />
<glyph glyph-name="periodcentered" unicode="&#x2219;" horiz-adv-x="270"
d="M88 223v94h94v-94h-94z" />
<glyph glyph-name="radical" unicode="&#x221a;" horiz-adv-x="562"
d="M443 644l-211 -644h-61l-163 492h79l115 -356l184 576h146v-68h-89z" />
<glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="808"
d="M582 108q-51 0 -92 24.5t-86 79.5q-44 -54 -86 -79.5t-91 -25.5q-71 0 -115.5 45.5t-44.5 114.5t44.5 114.5t115.5 45.5q90 0 177 -106q46 56 86.5 81t91.5 25q71 0 114.5 -45.5t43.5 -114.5q0 -68 -43.5 -113.5t-114.5 -45.5zM579 359q-34 0 -61.5 -21.5t-68.5 -71.5
q38 -47 67.5 -70t62.5 -23q41 0 66.5 25.5t25.5 67.5t-25.5 67.5t-66.5 25.5zM229 360q-41 0 -67 -26t-26 -68q0 -41 26 -67t67 -26q34 0 61 22t68 71q-30 36 -59.5 65t-69.5 29z" />
<glyph glyph-name="integral" unicode="&#x222b;" horiz-adv-x="372"
d="M296 653q-37 0 -55 -19.5t-18 -57.5v-654q0 -65 -35.5 -102.5t-100.5 -37.5h-50v62h39q37 0 55 19.5t18 57.5v654q0 65 35.5 102.5t100.5 37.5h49v-62h-38z" />
<glyph glyph-name="approxequal" unicode="&#x2248;" horiz-adv-x="539"
d="M361 298q-25 0 -43.5 6.5t-52 21.5t-52 21t-36.5 6q-23 0 -39 -7.5t-45 -36.5l-44 44q41 41 68 55t61 14q24 0 43 -6.5t52 -21.5t51.5 -21t36.5 -6q23 0 39 7.5t45 36.5l45 -45q-42 -42 -68 -55t-61 -13zM361 121q-31 0 -50.5 7.5t-54.5 23.5t-48.5 20t-29.5 4
q-24 0 -39 -7.5t-45 -37.5l-45 45q42 42 68 55t61 13q31 0 50.5 -7.5t54.5 -23.5t48.5 -20t29.5 -4q24 0 39 7.5t45 37.5l45 -45q-42 -42 -68 -55t-61 -13z" />
<glyph glyph-name="notequal" unicode="&#x2260;" horiz-adv-x="537"
d="M201 151l-103 -111l-46 40l67 71h-67v66h126l99 103h-225v67h284l104 111l45 -41l-67 -70h67v-67h-126l-98 -103h224v-66h-284z" />
<glyph glyph-name="lessequal" unicode="&#x2264;" horiz-adv-x="1027"
d="M813 -80l-557 558v-516l-67 67v564h565l66 -67l-515 1l557 -558z" />
<glyph glyph-name="greaterequal" unicode="&#x2265;" horiz-adv-x="1027"
d="M771 -38v516l-557 -558l-49 49l557 558l-515 -1l66 67h565v-564z" />
<glyph glyph-name="lozenge" unicode="&#x25ca;" horiz-adv-x="649"
d="M325 -12l-258 364l258 364l257 -364zM325 605l-177 -253l177 -255l176 255z" />
<glyph glyph-name="fi" unicode="&#xf001;" horiz-adv-x="562"
d="M394 639v74h82v-74h-82zM399 0v489h72v-489h-72zM177 434v-434h-72v434h-63v55h63v93q0 57 32.5 94.5t92.5 37.5h52v-62h-39q-66 0 -66 -72v-91h105v-55h-105z" />
<glyph glyph-name="fl" unicode="&#xf002;" horiz-adv-x="602"
d="M521 0q-62 0 -94 36t-32 95v581h72v-578q0 -37 14.5 -54.5t51.5 -17.5h40v-62h-52zM177 434v-434h-72v434h-63v55h63v93q0 57 32.5 94.5t92.5 37.5h52v-62h-39q-66 0 -66 -72v-91h105v-55h-105z" />
<glyph glyph-name="glyph225" horiz-adv-x="582"
d="M112 0v289l-73 -46v67l73 46v356h77v-308l154 98v-66l-154 -98v-270h363v-68h-440z" />
<glyph glyph-name="glyph226" horiz-adv-x="315"
d="M226 0q-62 0 -94 36t-32 95v211l-63 -39v62l63 39v308h72v-264l81 50v-62l-81 -50v-252q0 -37 14.5 -54.5t51.5 -17.5h40v-62h-52z" />
<glyph glyph-name="glyph227" horiz-adv-x="588"
d="M286 -6q-82 0 -137 21t-107 73l52 52q43 -43 87.5 -60.5t106.5 -17.5q78 0 123 35t45 97q0 59 -25 81t-44.5 29t-57.5 13l-83 13q-85 14 -135 58t-50 129q0 91 61.5 146t166.5 55q68 0 116.5 -18t95.5 -60l-49 -49q-33 30 -72.5 45.5t-93.5 15.5q-71 0 -110.5 -35.5
t-39.5 -96.5q0 -54 24 -74.5t50 -31t54 -15.5l78 -12q49 -7 78 -18.5t70.5 -47t41.5 -125.5q0 -93 -66.5 -147.5t-179.5 -54.5zM323 781h-68l-125 153h69l90 -105l90 105h69z" />
<glyph glyph-name="glyph228" horiz-adv-x="496"
d="M245 -6q-64 0 -113 16.5t-89 54.5l48 48q28 -30 66 -43.5t87 -13.5q63 0 97 21.5t34 65.5q0 65 -82 72l-81 7q-71 0 -109 35t-38 97q0 67 50 105.5t131 38.5q112 0 177 -53l-47 -47q-51 39 -131 39q-54 0 -82 -21t-28 -60q0 -34 20 -53t66 -19l79 -7q70 -6 107.5 -36.5
t37.5 -96.5q0 -71 -54 -110.5t-146 -39.5zM280 594h-68l-125 153h69l90 -105l90 105h69z" />
<glyph glyph-name="glyph229" horiz-adv-x="556"
d="M57 0v72l356 572h-342v68h428v-64l-359 -580h359v-68h-442zM318 781h-68l-125 153h69l90 -105l90 105h69z" />
<glyph glyph-name="glyph230" horiz-adv-x="459"
d="M50 0v62l274 366h-259v64h342v-61l-275 -367h275v-64h-357zM270 594h-68l-125 153h69l90 -105l90 105h69z" />
<glyph glyph-name="glyph231" horiz-adv-x="335"
d="M127 436v350h72v-350h-72zM127 -74v350h72v-350h-72z" />
<glyph glyph-name="glyph232" horiz-adv-x="687"
d="M567 105q-35 -49 -87.5 -77t-123.5 -28h-239v330h-78v59h78v323h245q135 0 185 -76t57 -119.5t7 -160.5q0 -125 -7 -167t-37 -84zM499 573q-28 38 -64 55t-87 17h-154v-256h161v-59h-161v-263h154q106 0 141.5 52.5t40.5 90t5 142.5q0 87 -3 133.5t-33 87.5z" />
<glyph glyph-name="glyph233" horiz-adv-x="530"
d="M405 49q-25 -26 -61 -40.5t-79 -14.5q-87 0 -130.5 44.5t-56 93t-12.5 112.5q0 68 11.5 113.5t41.5 76t60 44t68 13.5q41 0 50 -1.5t25 -8.5l-58 99h-116v52h88l-47 82h75l47 -82h82v-52h-54l63 -111q38 -66 50.5 -112.5t12.5 -112.5q0 -65 -12.5 -112.5t-47.5 -82.5z
M354 395q-36 36 -89 36q-52 0 -79 -27t-37.5 -60t-10.5 -100q0 -69 9.5 -99.5t37.5 -58.5t80 -28q53 0 80.5 27.5t37.5 59.5t10 99q0 51 -7.5 89t-31.5 62z" />
<glyph glyph-name="glyph234" horiz-adv-x="515"
d="M296 294v-294h-76v294l-212 418h82l168 -341l166 341h82zM274 781h-66l88 153h86z" />
<glyph glyph-name="glyph235" horiz-adv-x="446"
d="M212 -119q-14 -39 -33.5 -57.5t-45 -26.5t-52.5 -8h-31v64h22q37 0 52.5 12.5t28.5 48.5l35 96l-177 482h78l135 -395l134 395h78zM240 594h-66l88 153h86z" />
<glyph glyph-name="glyph236" horiz-adv-x="642"
d="M368 150h-189v-150h-76v712h76v-143h189q98 0 159 -57t61 -153q0 -95 -61 -152t-159 -57zM361 500h-182v-282h182q69 0 110 36t41 105t-41 105t-110 36z" />
<glyph glyph-name="glyph237" horiz-adv-x="546"
d="M421 37q-19 -19 -51.5 -31t-68.5 -12q-46 0 -77.5 13t-61.5 51v-278h-72v932h72v-277q28 35 62 49t77 14q77 0 116 -39t51.5 -91t12.5 -122q0 -69 -12.5 -121.5t-47.5 -87.5zM286 434q-73 0 -98.5 -51t-25.5 -137q0 -88 25 -138t99 -50q72 0 97.5 51t25.5 137
q0 88 -25 138t-98 50z" />
<glyph glyph-name="glyph238"
d="M52 236v67h418v-67h-418z" />
<glyph glyph-name="glyph239"
d="M412 74l-151 151l-151 -151l-45 45l151 151l-151 151l45 45l151 -152l151 152l45 -45l-152 -151l152 -151z" />
<glyph glyph-name="glyph240" horiz-adv-x="261"
d="M126 285v363l-83 -73v66l83 71h57v-427h-57z" />
<glyph glyph-name="glyph241" horiz-adv-x="342"
d="M48 285v52l165 202q23 29 23 58q0 30 -17.5 48.5t-47.5 18.5q-28 0 -46.5 -16.5t-18.5 -50.5h-58q0 53 34 86t89 33q54 0 88.5 -32.5t34.5 -86.5q0 -44 -39 -92l-138 -168h177v-52h-246z" />
<glyph glyph-name="glyph242" horiz-adv-x="356"
d="M179 280q-56 0 -93.5 30t-37.5 89h58q0 -34 21 -50.5t52 -16.5t51.5 19.5t20.5 53.5q0 73 -75 73h-9v50h9q34 0 51 18t17 50q0 33 -18.5 50.5t-47.5 17.5t-48 -17t-19 -46h-57q0 52 36 83.5t88 31.5q53 0 88 -33t35 -86q0 -67 -54 -92q30 -13 45.5 -37t15.5 -63
q0 -59 -37 -92t-92 -33z" />
<glyph glyph-name="glyph243" horiz-adv-x="790"
d="M496 0v52l165 202q23 29 23 58q0 30 -17.5 48.5t-47.5 18.5q-28 0 -46.5 -16.5t-18.5 -50.5h-58q0 53 34 86t89 33q54 0 88.5 -32.5t34.5 -86.5q0 -44 -39 -92l-137 -168h176v-52h-246zM221 0h-60l333 712h60zM126 285v363l-83 -73v66l83 71h57v-427h-57z" />
<glyph glyph-name="glyph244" horiz-adv-x="777"
d="M690 64v-64h-56v64h-172v53l151 310h62l-150 -310h109v105h56v-105h47v-53h-47zM233 0h-60l333 712h60zM126 285v363l-83 -73v66l83 71h57v-427h-57z" />
<glyph glyph-name="glyph245" horiz-adv-x="822"
d="M735 64v-64h-56v64h-172v53l151 310h62l-151 -310h110v105h56v-105h47v-53h-47zM285 0h-60l334 712h60zM179 280q-56 0 -93.5 30t-37.5 89h58q0 -34 21 -50.5t52 -16.5t51.5 19.5t20.5 53.5q0 73 -75 73h-9v50h9q34 0 51 18t17 50q0 33 -18.5 50.5t-47.5 17.5t-48 -17
t-19 -46h-57q0 52 36 83.5t88 31.5q53 0 88 -33t35 -86q0 -67 -54 -92q30 -13 45.5 -37t15.5 -63q0 -59 -37 -92t-92 -33z" />
</font>
</defs></svg>

Before

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -26,7 +26,7 @@
"scripts": {
"lint:wpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"lint:php": "@php ./vendor/bin/parallel-lint --exclude .git --exclude vendor .",
"make-pot": "wp i18n make-pot . languages/ofisuport.pot"
"make-pot": "wp i18n make-pot . languages/_s.pot"
},
"support": {
"issues": "https://github.com/Automattic/_s/issues",

View File

@ -13,17 +13,16 @@
<footer id="colophon" class="site-footer">
<div class="site-info">
<?php dynamic_sidebar( 'footer' ); ?>
<!--a href="<?php //echo esc_url( __( 'https://wordpress.org/', 'ofisuport' ) ); ?>">
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'ofisuport' ) ); ?>">
<?php
/* translators: %s: CMS name, i.e. WordPress. */
//printf( esc_html__( 'Proudly powered by %s', 'ofisuport' ), 'WordPress' );
printf( esc_html__( 'Proudly powered by %s', 'ofisuport' ), 'WordPress' );
?>
</a-->
<!--span class="sep"></span-->
</a>
<span class="sep"> | </span>
<?php
/* translators: 1: Theme name, 2: Theme author. */
//printf( esc_html__( 'Theme: %1$s by %2$s.', 'ofisuport' ), 'ofisuport', '<a href="https://vitrubio.net">jorge-vitrubio.net</a>' );
printf( esc_html__( 'Theme: %1$s by %2$s.', 'ofisuport' ), 'ofisuport', '<a href="https://vitrubio.net">jorge-vitrubio.net</a>' );
?>
</div><!-- .site-info -->
</footer><!-- #colophon -->

View File

@ -44,13 +44,12 @@ function ofisuport_setup() {
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
// add_theme_support( 'post-thumbnails' );
add_theme_support( 'post-thumbnails' );
// This theme uses wp_nav_menu()
// This theme uses wp_nav_menu() in one location.
register_nav_menus(
array(
'menu-1' => esc_html__( 'Primary', 'ofisuport' ),
'menu-2' => esc_html__( 'Secondary', 'ofisuport' ),
)
);
@ -72,17 +71,16 @@ function ofisuport_setup() {
);
// Set up the WordPress core custom background feature.
//
//add_theme_support(
// 'custom-background',
// apply_filters(
// 'ofisuport_custom_background_args',
// array(
// 'default-color' => 'ffffff',
// 'default-image' => '',
// )
// )
//);
add_theme_support(
'custom-background',
apply_filters(
'ofisuport_custom_background_args',
array(
'default-color' => 'ffffff',
'default-image' => '',
)
)
);
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
@ -95,8 +93,8 @@ function ofisuport_setup() {
add_theme_support(
'custom-logo',
array(
'height' => 252,
'width' => 125,
'height' => 250,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
)
@ -121,8 +119,20 @@ add_action( 'after_setup_theme', 'ofisuport_content_width', 0 );
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
require get_template_directory() . '/inc/widgets-register.php';
function ofisuport_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Sidebar', 'ofisuport' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'ofisuport' ),
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
)
);
}
add_action( 'widgets_init', 'ofisuport_widgets_init' );
/**
* Enqueue scripts and styles.
@ -166,24 +176,3 @@ if ( defined( 'JETPACK__VERSION' ) ) {
require get_template_directory() . '/inc/jetpack.php';
}
/**
* Functions to personalize login screen
*/
require get_template_directory() . '/inc/login-functions.php';
/**
* Functions to personalize the_archive_title() function
*/
require get_template_directory() . '/inc/archive-title.php';
/**
* Functions to add admin styles
*/
require get_template_directory() . '/inc/admin-style.php';
/**
* Function to add filter in ofisuport-ajut custom post
*/
// moved to plugin on 2023 01 05
//require get_template_directory() . '/inc/ofisuport-ajut-filter.php';

View File

@ -10,7 +10,7 @@
*/
?>
<!DOCTYPE html>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
@ -26,7 +26,6 @@
<a class="skip-link screen-reader-text" href="#primary"><?php esc_html_e( 'Skip to content', 'ofisuport' ); ?></a>
<header id="masthead" class="site-header">
<div class="main">
<div class="site-branding">
<?php
the_custom_logo();
@ -46,8 +45,8 @@
<?php endif; ?>
</div><!-- .site-branding -->
<nav id="site-navigation-main" class="main-navigation">
<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_html_e( 'Menu XarxaProd', 'ofisuport' ); ?></button>
<nav id="site-navigation" class="main-navigation">
<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_html_e( 'Primary Menu', 'ofisuport' ); ?></button>
<?php
wp_nav_menu(
array(
@ -56,29 +55,5 @@
)
);
?>
</nav><!--primary #site-navigation -->
</div>
<div class="secondary">
<nav id="site-navigation-secondary" class="site-navigation secondary-navigation toogle-secondary-navigation">
<legend class="hide-content">menu</legend>
<input id="hide-menu-mobile" class="hide-not-mobile toogle" name="toogle" type="radio">
<label for="show-menu-mobile" class="hide-not-mobile toogle-show"><span class="hide-content">open</span></label>
<input id="show-menu-mobile" class="hide-not-mobile toogle" name="toogle" type="radio">
<div class="toogled-menu">
<label for="hide-menu-mobile" class="hide-not-mobile toogle-hide"><span class="hide-content">close</span></label>
<?php // here content to hide or show ?>
<?php
wp_nav_menu(
array(
'theme_location' => 'menu-2',
'menu_id' => 'secondary-menu',
)
);
?>
</div><!--toogled-menu-->
</nav><!--secondary #site-navigation -->
<?php the_header_image_tag(); // header image to show below menus before title ?>
</div><!--secondary-->
</nav><!-- #site-navigation -->
</header><!-- #masthead -->

View File

@ -1,11 +0,0 @@
<?php
/**
* Sets up theme defaults and registers support for various WordPress features.
*/
// Update CSS within in Admin
function ofisuport_admin_style() {
wp_enqueue_style( 'admin-styles', get_stylesheet_directory_uri() . '/assets/css/adminstyles.css' );
// wp_enqueue_style( 'ofisuport-theme-styles', get_template_directory_uri().'/style.css');
}
add_action('admin_enqueue_scripts', 'ofisuport_admin_style');

View File

@ -1,26 +0,0 @@
<?php
/**
* Archive title customization.
* Get rid of the "Category:" "Tag:" "Author:" "Archives:" lables in
*
* https://developer.wordpress.org/reference/functions/get_the_archive_title/#comment-1807
*/
function ofisuport_archive_title( $title ) {
if ( is_category() ) {
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
} elseif ( is_author() ) {
$title = '<span class="vcard">' . get_the_author() . '</span>';
} elseif ( is_post_type_archive() ) {
$title = post_type_archive_title( '', false );
} elseif ( is_tax() ) {
$title = single_term_title( '', false );
}
return $title;
}
add_filter( 'get_the_archive_title', 'ofisuport_archive_title' );

View File

@ -1,39 +0,0 @@
<?php
/**
* Add a custom logo and styles in login page
*
* https://developer.wordpress.org/reference/functions/the_custom_logo/#comment-2037
*/
// https://codex.wordpress.org/Customizing_the_Login_Form#Change_the_Login_Logo
function ofisuport_login_logo() {
if ( has_custom_logo() ) :
$image = wp_get_attachment_image_src( get_theme_mod( 'custom_logo' ), 'full' );
?>
<style type="text/css">
.login h1 a {
background-image: url("<?php echo esc_url( $image[0] ); ?>") !important;
}
</style>
<?php
endif;
}
add_action( 'login_enqueue_scripts', 'ofisuport_login_logo' );
function ofisuport_login_logo_url() {
return home_url();
}
add_filter( 'login_headerurl', 'ofisuport_login_logo_url' );
function ofisuport_login_logo_url_title() {
return 'Your Site Name and Info';
}
add_filter( 'login_headertext', 'ofisuport_login_logo_url_title' );
// https://codex.wordpress.org/Customizing_the_Login_Form#Styling_Your_Login
function ofisuport_login_stylesheet() {
wp_enqueue_style( 'custom-login', get_stylesheet_directory_uri() . '/assets/css/style-login.css' );
// wp_enqueue_script( 'custom-login', get_stylesheet_directory_uri() . '/assets/css/style-login.js' );
}
add_action( 'login_enqueue_scripts', 'ofisuport_login_stylesheet' );

View File

@ -1,42 +0,0 @@
<?php
/**
* Makes a filter for the custom post type ajut and its custom fields
*/
// action
add_action('pre_get_posts', 'my_pre_get_posts');
function my_pre_get_posts( $query ) {
// bail early if is in admin
if( is_admin() ) { return; }
// allow the url to alter the query
if( isset($_GET['os_fund_target']) )
{
// get original meta query
$meta_query = [];
$meta_query[] = array('relation' => 'OR');
$meta_query[] = $query->get('meta_query');
$fieldsearchvalues= explode(',', $_GET['os_fund_target']);
foreach( $fieldsearchvalues as $fieldsearchvalue ){
$os_search_value = $fieldsearchvalue; //'entitat-publica'; // whatever
$os_field_value = sprintf( '^%1$s$|s:%2$u:"%1$s";', $os_search_value, strlen( $os_search_value ) );
// add aur meta query to the original meta queries
$meta_query[] = array(
array(
'key' => 'os_fund_target',
'value' => $os_field_value,
'compare' => 'REGEXP',
),
);
}
// update the meta query arguments
$query->set('meta_query', $meta_query);
}
//always return
return;
}

View File

@ -18,7 +18,7 @@ function ofisuport_body_classes( $classes ) {
}
// Adds a class of no-sidebar when there is no sidebar present.
if ( ! is_active_sidebar( 'sidebar-funds' ) ) {
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
$classes[] = 'no-sidebar';
}
@ -35,31 +35,3 @@ function ofisuport_pingback_header() {
}
}
add_action( 'wp_head', 'ofisuport_pingback_header' );
/**
* Detect if the Oficina de Suport "ofisuport" plugin is active
*/
function ofisuport_plugin_active() {
// Detect plugin. For use on Front End only.
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
// check for plugin using plugin name
if ( is_plugin_active( 'oficinasuport-wp-plugin/ofisuport-wp-plugin.php' ) ) {
//plugin is activated do
}
//do stuff here
} //closing if is_plugin_active
//add_action( 'wp_head', 'ofisuport_plugin_active' );
/**
* Echo the post type slug
*/
function ofisuport_class_posttype (){
if( is_post_type_archive( array('ofisuport-ajut') )) {
echo 'archive-custom-post-type-';
printf(get_post_type_object( get_post_type() )->rewrite['slug'] );
}
}

View File

@ -1,43 +0,0 @@
<?php
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registerin g-a-sidebar
*/
function ofisuport_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Front Page - principal', 'ofisuport' ),
'id' => 'front-page-widgets',
'description' => esc_html__( 'Add widgets here.', 'ofisuport' ),
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Sidebar funds - Lateral ajuts', 'ofisuport' ),
'id' => 'sidebar-funds',
'description' => esc_html__( 'Add widgets here.', 'ofisuport' ),
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer - Peu', 'ofisuport' ),
'id' => 'footer-widgets',
'description' => esc_html__( 'Add widgets here.', 'ofisuport' ),
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
)
);
}
add_action( 'widgets_init', 'ofisuport_widgets_init' );

View File

@ -5,7 +5,7 @@
* navigation support for dropdown menus.
*/
( function() {
const siteNavigation = document.getElementById( 'site-navigation-main' );
const siteNavigation = document.getElementById( 'site-navigation' );
// Return early if the navigation doesn't exist.
if ( ! siteNavigation ) {

View File

@ -1,35 +1,198 @@
# Copyright (C) 2022 Jorge - vitrubio.net
# Copyright (C) 2020 Automattic
# This file is distributed under the GNU General Public License v2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Oficina de Suport de Xarxaprod 1.0.0\n"
"Report-Msgid-Bugs-To: https://git.hangar.org/xarxaprod/oficinasuport-wp-theme\n"
"Last-Translator: Jorge - vitrubio.net <jorge@vitrubio.net>\n"
"Project-Id-Version: _s 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/_s\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2022-10-25T20:51:09+02:00\n"
"POT-Creation-Date: 2020-04-17T21:03:15+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: ofsupxxp\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: _s\n"
#. Theme Name of the theme
msgid "Oficina de Suport de Xarxaprod"
msgid "_s"
msgstr ""
#. Theme URI of the theme
msgid "https://git.hangar.org/xarxaprod/oficinasuport-wp-theme"
msgid "https://underscores.me/"
msgstr ""
#. Description of the theme
msgid "Theme for the Oficina de Suport de Xarxaprod.cat"
msgid "Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for."
msgstr ""
#. Author of the theme
msgid "Jorge - vitrubio.net"
msgid "Automattic"
msgstr ""
#. Author URI of the theme
msgid "https://vitrubio.net"
msgid "https://automattic.com/"
msgstr ""
#: 404.php:18
msgid "Oops! That page can&rsquo;t be found."
msgstr ""
#: 404.php:22
msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?"
msgstr ""
#: 404.php:31
msgid "Most Used Categories"
msgstr ""
#. translators: %1$s: smiley
#: 404.php:49
msgid "Try looking in the monthly archives. %1$s"
msgstr ""
#. translators: 1: title.
#: comments.php:35
msgid "One thought on &ldquo;%1$s&rdquo;"
msgstr ""
#. translators: 1: comment count number, 2: title.
#: comments.php:41
msgctxt "comments title"
msgid "%1$s thought on &ldquo;%2$s&rdquo;"
msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
msgstr[0] ""
msgstr[1] ""
#: comments.php:68
msgid "Comments are closed."
msgstr ""
#: footer.php:18
msgid "https://wordpress.org/"
msgstr ""
#. translators: %s: CMS name, i.e. WordPress.
#: footer.php:21
msgid "Proudly powered by %s"
msgstr ""
#. translators: 1: Theme name, 2: Theme author.
#: footer.php:27
msgid "Theme: %1$s by %2$s."
msgstr ""
#: functions.php:53
msgid "Primary"
msgstr ""
#: functions.php:130
msgid "Sidebar"
msgstr ""
#: functions.php:132
msgid "Add widgets here."
msgstr ""
#: header.php:26
msgid "Skip to content"
msgstr ""
#: header.php:49
msgid "Primary Menu"
msgstr ""
#. translators: %s: post date.
#: inc/template-tags.php:30
msgctxt "post date"
msgid "Posted on %s"
msgstr ""
#. translators: %s: post author.
#: inc/template-tags.php:46
msgctxt "post author"
msgid "by %s"
msgstr ""
#. translators: used between list items, there is a space after the comma
#: inc/template-tags.php:63
msgid ", "
msgstr ""
#. translators: 1: list of categories.
#: inc/template-tags.php:66
msgid "Posted in %1$s"
msgstr ""
#. translators: used between list items, there is a space after the comma
#: inc/template-tags.php:70
msgctxt "list item separator"
msgid ", "
msgstr ""
#. translators: 1: list of tags.
#: inc/template-tags.php:73
msgid "Tagged %1$s"
msgstr ""
#. translators: %s: post title
#: inc/template-tags.php:83
msgid "Leave a Comment<span class=\"screen-reader-text\"> on %s</span>"
msgstr ""
#. translators: %s: Name of current post. Only visible to screen readers
#: inc/template-tags.php:100
#: template-parts/content-page.php:39
msgid "Edit <span class=\"screen-reader-text\">%s</span>"
msgstr ""
#: inc/woocommerce.php:186
msgid "View your shopping cart"
msgstr ""
#. translators: number of items in the mini cart.
#: inc/woocommerce.php:190
msgid "%d item"
msgid_plural "%d items"
msgstr[0] ""
msgstr[1] ""
#. translators: %s: search query.
#: search.php:22
msgid "Search Results for: %s"
msgstr ""
#: single.php:23
msgid "Previous:"
msgstr ""
#: single.php:24
msgid "Next:"
msgstr ""
#: template-parts/content-none.php:14
msgid "Nothing Found"
msgstr ""
#. translators: 1: link to WP admin new post page.
#: template-parts/content-none.php:24
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
msgstr ""
#: template-parts/content-none.php:37
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
msgstr ""
#: template-parts/content-none.php:44
msgid "It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help."
msgstr ""
#: template-parts/content-page.php:25
#: template-parts/content.php:53
msgid "Pages:"
msgstr ""
#. translators: %s: Name of current post. Only visible to screen readers
#: template-parts/content.php:40
msgid "Continue reading<span class=\"screen-reader-text\"> \"%s\"</span>"
msgstr ""

15415
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -17,7 +17,7 @@
"url": "https://github.com/Automattic/_s/issues"
},
"devDependencies": {
"@wordpress/scripts": "^24.4.0",
"@wordpress/scripts": "^19.2.2",
"dir-archiver": "^1.1.1",
"node-sass": "^7.0.1",
"rtlcss": "^3.5.0"
@ -38,10 +38,9 @@
"scripts": {
"watch": "node-sass sass/ -o ./ --source-map true --output-style expanded --indent-type tab --indent-width 1 -w",
"compile:css": "node-sass sass/ -o ./ && stylelint '*.css' --fix || true && stylelint '*.css' --fix",
"compile:cssadmin": "node-sass -r --output-style compressed sass/adminstyles.scss -o assets/css/ && stylelint '*.css' --fix || true && stylelint '*.css' --fix",
"compile:rtl": "rtlcss style.css style-rtl.css",
"lint:scss": "wp-scripts lint-style 'sass/**/*.scss'",
"lint:js": "wp-scripts lint-js 'js/*.js'",
"bundle": "dir-archiver --src . --dest ../OficinaDeSuport-theme.zip --exclude .DS_Store .stylelintrc.json .eslintrc .git .gitattributes .github .gitignore README.md composer.json composer.lock node_modules vendor package-lock.json package.json .travis.yml phpcs.xml.dist sass style.css.map yarn.lock"
"bundle": "dir-archiver --src . --dest ../_s.zip --exclude .DS_Store .stylelintrc.json .eslintrc .git .gitattributes .github .gitignore README.md composer.json composer.lock node_modules vendor package-lock.json package.json .travis.yml phpcs.xml.dist sass style.css.map yarn.lock"
}
}

View File

@ -1,72 +0,0 @@
<?php
/**
* The template for displaying the "ajuts" funds with search capabilities
*
* Template Name: PAFs, consells, tutorials...
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
*
* @package Oficina_de_Suport_theme
* @since 1.0
*/
get_header();
?>
<main id="primary" class="site-main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
</header><!-- .page-header -->
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
/*
* Include the Post-Type-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Type name) and that will be used instead.
*/
get_template_part( 'template-parts/content', 'page' );
endwhile;
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
<content class="archive-posts <?php ofisuport_class_posttype(); ?>">
<?php
// https://developer.wordpress.org/reference/functions/get_posts/
// https://www.advancedcustomfields.com/resources/true-false/
$the_query_faq = new WP_Query(
array(
'post_type' => 'post',
'category' => 'faq',
'post_per_page' => '8'
) );
?>
<?php if ( $the_query_faq->have_posts() ) : ?>
<?php while ( $the_query_faq->have_posts() ) : $the_query_faq->the_post(); ?>
<?php get_template_part( 'template-parts/section', 'eachpost' ); ?>
<?php endwhile;//end of the loop ?>
<?php wp_reset_postdata(); ?>
<?php endif; //end query ajut ?>
</content>
</main><!-- #main -->
<?php
get_sidebar();
get_footer();

View File

@ -1,53 +0,0 @@
<?php
/**
* The template for page declared as front-page
*
*
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
*
* @package Oficina_de_Suport_theme
*/
get_header();
?>
<main id="primary" class="site-main">
<?php
if ( have_posts() ) :
if ( is_home() && ! is_front_page() ) :
?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header>
<?php
endif;
/* Start the Loop */
while ( have_posts() ) :
the_post();
/*
* Include the Post-Type-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Type name) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_type() );
endwhile;
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</main><!-- #main -->
<?php
get_sidebar();
get_footer();

View File

@ -1,93 +0,0 @@
<?php
/**
* The template for displaying the "ajuts" funds with search capabilities
*
* Template Name: Cercador ajuts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
*
* @package Oficina_de_Suport_theme
* @since 1.0
*/
get_header();
?>
<main id="primary" class="site-main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
</header><!-- .page-header -->
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
endwhile;
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
<section id="filteredfunds" class="ofisuport-filtered-funds ofisuport-ajuts-filtrats">
<aside id="fundsfilter" class="ofisuport-filter-funds ofisuport-fitre-ajuts">
<?php include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if ( is_plugin_active( 'oficinasuport-wp-plugin/ofisuport-wp-plugin.php' ) ) { // if plugin active do?>
<nav class="sidebar fund-filter">
</nav>
<?php } //end if is_plugin_active ?>
</aside>
<content class="archive-posts <?php ofisuport_class_posttype(); ?>">
<?php
// https://support.advancedcustomfields.com/forums/topic/wp_query-using-meta_query-for-an-acf-checkbox-field/#post-145830
// https://www.advancedcustomfields.com/resources/checkbox/#query-posts
// https://barn2.com/blog/querying-posts-by-custom-field-acfi/
$the_query_ajut = new WP_Query(
array(
'post_type' => 'ofisuport-ajut',
'post_per_page' => '6'
)
);
?>
<?php if ( $the_query_ajut->have_posts() ) : ?>
<?php while ( $the_query_ajut->have_posts() ) : $the_query_ajut->the_post(); ?>
<?php get_template_part( 'template-parts/section', 'eachpost' ); ?>
<?php
//the_title('<h3>','</h3>');
// echo '<ul>';
//$postmetas = get_post_meta(get_the_ID());
// foreach($postmetas as $meta_key=>$meta_value) {
// echo '<li><code>' . $meta_key . '</code>:<code>' . $meta_value[0] . '</code></li>';
// } ;
// echo '</ul>';
?>
<?php endwhile;//end of the loop ?>
<?php wp_reset_postdata(); ?>
<?php endif; //end query ajut ?>
</content>
</section>
</main><!-- #main -->
<?php
get_footer();

View File

@ -16,23 +16,22 @@ get_header();
?>
<main id="primary" class="site-main">
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
endif; // End if have_post.
?>
</main><!-- #main -->
<?php
if ( is_front_page() ) :
get_template_part( 'template-parts/section', 'featured' );
endif;
?>
<?php
get_sidebar();

View File

@ -61,7 +61,7 @@
Multiple valid text domains can be provided as a comma-delimited list. -->
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array" value="ofisuport"/>
<property name="text_domain" type="array" value="_s"/>
</properties>
</rule>
@ -93,7 +93,7 @@
Multiple valid prefixes can be provided as a comma-delimited list. -->
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array" value="ofisuport" />
<property name="prefixes" type="array" value="_s" />
</properties>
</rule>

View File

@ -4,11 +4,11 @@ Contributors: automattic
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
Requires at least: 4.5
Tested up to: 6.0.3
Requires PHP: 7.0
Tested up to: 5.4
Requires PHP: 5.6
Stable tag: 1.0.0
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
License: GNU General Public License v2 or later
License URI: LICENSE
A starter theme called Oficina de Suport theme.
@ -26,14 +26,14 @@ theme for the Oficina de Suport de Xarxaprod.cat
= Does this theme support any plugins? =
Oficina de Suport theme includes support for Oficina de Suport plugin and for Infinite Scroll in Jetpack.
Oficina de Suport theme includes support for WooCommerce and for Infinite Scroll in Jetpack.
== Changelog ==
= 1.0 - 25th october 2022 =
= 1.0 - May 12 2015 =
* Initial release
== Credits ==
* Developed by Jorge Vitoria (vitrubio.net) on top of the design by Eudald Van der Pla (vanderpla.com)
* Based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html)
* normalize.css https://necolas.github.io/normalize.css/, (C) 2012-2018 Nicolas Gallagher and Jonathan Neal, [MIT](https://opensource.org/licenses/MIT)

View File

@ -1,41 +1,20 @@
$color__white: #fff;
$color__white-dark: #fdfdfd;
$color__white-transparent: rgba(255,255,255,0.95);
$color__grey-lighter: #eee;
$color__grey-light: #ccc;
$color__grey-dark: #666;
$color__black-light: #333;
$color__black-grey: #111;
$color__black: #000;
$color__black-transparent: rgba(0,0,0,0.95);
$color__orange: #ff8d76;
$color__yellow: #f6cc4c;
$color__pink: #f877c3;
$color__blue: #5c31ff;
$color__lightblue: #5bcee8;
$color__green: #69ed82;
$color__red: #ff686e;
$color__background-body: #fff;
$color__background-screen: #f1f1f1;
$color__background-hr: #ccc;
$color__background-button: #e6e6e6;
$color__background-pre: #eee;
$color__background-ins: #fff9c0;
$color__background-body: $color__white;
$color__background-screen: $color__white;
$color__background-hr: $color__black;
$color__background-button: $color__white;
$color__background-pre: $color__grey-lighter;
$color__background-ins: $color__white-dark;
$color__background-input: $color__grey-lighter;
$color__text-screen: $color__black-grey;
$color__text-input: $color__black-light;
$color__text-input-focus: $color__black;
$color__link: $color__black-light;
$color__link-visited: #303030;
$color__link-hover: #707070;
$color__text-screen: #21759b;
$color__text-input: #666;
$color__text-input-focus: #111;
$color__link: #4169e1; //royalblue
$color__link-visited: #800080; //purple
$color__link-hover: #191970; //midnightblue
$color__text-main: #404040;
$color__border-button: #000;
$color__border-button-hover: #111;
$color__border-button-focus: #222;
$color__border-input: $color__black;
$color__border-abbr: $color__grey-dark;
$color__border-button: #ccc #ccc #bbb;
$color__border-button-hover: #ccc #bbb #aaa;
$color__border-button-focus: #aaa #bbb #bbb;
$color__border-input: #ccc;
$color__border-abbr: #666;

View File

@ -11,9 +11,3 @@ $columns: (
);
$columns__margin: 3.8%;
//grid properties
$grid__gap: 1rem;
$grid__column-gap: $grid__gap;
$grid__row-gap: $grid__gap;

View File

@ -1,15 +1,7 @@
// stylelint-disable value-keyword-case
$font__regular: 'din-regular',-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
$font__light: 'din-light',-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
$font__medium: 'din-medium',-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
$font__bold: 'din-bold',-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
$font__black: 'din-black',-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
$font__main: $font__regular;
$font__main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
// stylelint-enable value-keyword-case
$font__code: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace, mono;
$font__code: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
$font__pre: "Courier 10 Pitch", courier, monospace;
$font__size-body: 1rem;
$font__line-height-body: 1.3;
$font__line-height-pre: 1.4;
$font__line-height-header:1.1;
$font__line-height-body: 1.5;
$font__line-height-pre: 1.6;

View File

@ -1,34 +0,0 @@
// theme for editor admin, import style.sass and apply class before rest of it
// .wp-admin styles
.wp-admin {
.components-button.edit-post-fullscreen-mode-close.has-icon,
.edit-post-fullscreen-mode-close_site-icon {
background-color: #fff;
filter: invert(1);
}
}
.site-icon-preview .app-icon-preview {
background-color: #fff;
}
// editor styles
.edit-post-visual-editor__content-area {
// import theme styles
@import "style";
// apply differences when not rendered properly
:where(.wp-block) {
max-width: 80rem;
}
.black-blocs .wp-block-column a::after {
display:none;
}
}
// modify internal paths to make objects locally available
@import "adminstyles/fonts";

View File

@ -1,72 +0,0 @@
/*
Your custom style
Add your custom styles in this file so it is easier to update the theme.
*/
@font-face {
font-family: 'din-regular';
src: url('../fonts/DIN-Regular.eot');
src: url('../fonts/DIN-Regular.eot?#iefix') format('embedded-opentype'),
url('../fonts/DIN-Regular.woff2') format('woff2'),
url('../fonts/DIN-Regular.woff') format('woff'),
url('../fonts/DIN-Regular.ttf') format('truetype'),
url('../fonts/DIN-Regular.svg#fonts/DIN-Regular') format('svg');
font-weight: 100;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'din-medium';
src: url('../fonts/DIN-Medium.eot');
src: url('../fonts/DIN-Medium.eot?#iefix') format('embedded-opentype'),
url('../fonts/DIN-Medium.woff2') format('woff2'),
url('../fonts/DIN-Medium.woff') format('woff'),
url('../fonts/DIN-Medium.ttf') format('truetype'),
url('../fonts/DIN-Medium.svg#DIN-Medium') format('svg');
font-weight: 100;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'din-bold';
src: url('../fonts/DIN-Bold.eot');
src: url('../fonts/DIN-Bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/DIN-Bold.woff2') format('woff2'),
url('../fonts/DIN-Bold.woff') format('woff'),
url('../fonts/DIN-Bold.ttf') format('truetype'),
url('../fonts/DIN-Bold.svg#DIN-Bold') format('svg');
font-weight: 100;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'din-light';
src: url('../fonts/DIN-Light.eot');
src: url('../fonts/DIN-Light.eot?#iefix') format('embedded-opentype'),
url('../fonts/DIN-Light.woff2') format('woff2'),
url('../fonts/DIN-Light.woff') format('woff'),
url('../fonts/DIN-Light.ttf') format('truetype'),
url('../fonts/DIN-Light.svg#DIN-Light') format('svg');
font-weight: 100;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'din-black';
src: url('../fonts/DIN-Black.eot');
src: url('../fonts/DIN-Black.eot?#iefix') format('embedded-opentype'),
url('../fonts/DIN-Black.woff2') format('woff2'),
url('../fonts/DIN-Black.woff') format('woff'),
url('../fonts/DIN-Black.ttf') format('truetype'),
url('../fonts/DIN-Black.svg#DIN-Black') format('svg');
font-weight: 900;
font-style: normal;
font-display: swap;
}

View File

@ -1,17 +1,14 @@
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.wp-block-button__link {
input[type="submit"] {
border: 1px solid;
border-color: $color__border-button;
border-radius: 0;
border-radius: 3px;
background: $color__background-button;
color: $color__text-screen;
color: rgba(0, 0, 0, 0.8);
line-height: 1;
padding: 0.6em 1em 0.4em;
text-transform: uppercase;
&:hover {
border-color: $color__border-button-hover;
@ -22,29 +19,3 @@ input[type="submit"],
border-color: $color__border-button-focus;
}
}
.button-more {
//&::before {
// content: "accedir";
// position: absolute;
// bottom: 1em;
// left: 0.5em;
// font-family: $font__light;
// font-size: 1rem;
// line-height: 0;
//}
&::after {
content: "+";
display: inline-block;
width: 1.5rem;
height: 2rem;
padding: 0 0.5rem;
font-family: $font__black;
font-size: 1.5rem;
}
&:hover::after {
content: ">";
padding-left: 0.2rem;
font-size: 1.2rem;
line-height: 1.5;
}
}

View File

@ -15,11 +15,9 @@ input[type="datetime-local"],
input[type="color"],
textarea {
color: $color__text-input;
background-color: $color__background-input;
border: none;
border-radius: 0;
width: 100%;
padding: 0.3rem;
border: 1px solid $color__border-input;
border-radius: 3px;
padding: 3px;
&:focus {
color: $color__text-input-focus;

View File

@ -20,75 +20,3 @@ a {
outline: 0;
}
}
a {
&.button {
text-decoration: none;
}
}
.button,
.excerpt,
.post-excerpt,
.entry-title {
a {
text-decoration: none;
}
}
.home-featured,.archive-posts {
.category-faq,.type-ofisuport-ajut {
position: relative;
padding-bottom: 4rem;
.entry-title {
a {
&::after {
content: "+";
position:absolute;
bottom: 0;
left: 0;
width: 3rem;
height: 3rem;
padding: 0 0.38rem;
border: 1px solid $color__black;
font-size: 4rem;
line-height: 0.8;
}
&:hover::after {
content: ">";
padding: 0 0.38rem;
font-size: 2.5rem;
line-height: 1.3;
}
}
}
}
.category-faq {
.entry-title {
a {
&::before {
content: "accedir";
position: absolute;
bottom: 1em;
left: 0.5em;
font-family: $font__light;
font-size: 1rem;
line-height: 0;
}
&::after {
content: "+";
width: 8rem;
height: 2rem;
padding: 0 0.5rem;
text-align: right;
font-size: 2.5rem;
line-height: 0.7;
}
&:hover::after {
content: ">";
padding: 0 0.1rem;
font-size: 1.5rem;
line-height: 1.2;
}
}
}
}
}

View File

@ -1,11 +1,10 @@
ul,
ol {
margin: 0 0 0.5em 0.5em;
padding: 0;
margin: 0 0 1.5em 3em;
}
ul {
list-style: none;
list-style: disc;
}
ol {
@ -15,7 +14,7 @@ ol {
li > ul,
li > ol {
margin-bottom: 0;
margin-left: 0.5em;
margin-left: 1.5em;
}
dt {
@ -23,42 +22,5 @@ dt {
}
dd {
margin: 0 0 0.5em 0.5em;
padding: 0;
margin: 0 1.5em 1.5em;
}
.oficina-suport-label {
margin: 0;
padding: 0;
display: inline;
li {
display:inline-block;
margin:0.1rem;
padding: 0 0.2rem;
color: $color__white;
background-color: $color__black;
font-family: $font__black;
font-size: $font__size-body*0.7;
text-transform: uppercase;
}
}
.item-os_fund_target li {
background-color: $color__orange;
}
.item-os_fund_source li {
background-color: $color__lightblue;
}
.item-os_fund_field li {
background-color: $color__yellow;
}
.item-os_fund_dates li {
background-color: $color__green;
}
.item-os_fund_call {
display: block;
margin:0.2rem 0.1rem;
li {
font-size: $font__size-body*1.2;
}
}

View File

@ -10,10 +10,7 @@ i {
}
blockquote {
margin: 0;
p {
font-size: $font__size-body*1.1;
}
margin: 0 1.5em;
}
address {
@ -31,12 +28,10 @@ pre {
}
code,
.code,
kbd,
tt,
var {
font-family: $font__code;
background-color: $color__background-pre;
}
abbr,
@ -54,6 +49,3 @@ ins {
big {
font-size: 125%;
}
.small {
font-size: 80%;
}

View File

@ -1,72 +0,0 @@
/*
Your custom style
Add your custom styles in this file so it is easier to update the theme.
*/
@font-face {
font-family: 'din-regular';
src: url('assets/fonts/DIN-Regular.eot');
src: url('assets/fonts/DIN-Regular.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/DIN-Regular.woff2') format('woff2'),
url('assets/fonts/DIN-Regular.woff') format('woff'),
url('assets/fonts/DIN-Regular.ttf') format('truetype'),
url('assets/fonts/DIN-Regular.svg#fonts/DIN-Regular') format('svg');
font-weight: 100;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'din-medium';
src: url('assets/fonts/DIN-Medium.eot');
src: url('assets/fonts/DIN-Medium.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/DIN-Medium.woff2') format('woff2'),
url('assets/fonts/DIN-Medium.woff') format('woff'),
url('assets/fonts/DIN-Medium.ttf') format('truetype'),
url('assets/fonts/DIN-Medium.svg#DIN-Medium') format('svg');
font-weight: 100;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'din-bold';
src: url('assets/fonts/DIN-Bold.eot');
src: url('assets/fonts/DIN-Bold.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/DIN-Bold.woff2') format('woff2'),
url('assets/fonts/DIN-Bold.woff') format('woff'),
url('assets/fonts/DIN-Bold.ttf') format('truetype'),
url('assets/fonts/DIN-Bold.svg#DIN-Bold') format('svg');
font-weight: 100;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'din-light';
src: url('assets/fonts/DIN-Light.eot');
src: url('assets/fonts/DIN-Light.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/DIN-Light.woff2') format('woff2'),
url('assets/fonts/DIN-Light.woff') format('woff'),
url('assets/fonts/DIN-Light.ttf') format('truetype'),
url('assets/fonts/DIN-Light.svg#DIN-Light') format('svg');
font-weight: 100;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'din-black';
src: url('assets/fonts/DIN-Black.eot');
src: url('assets/fonts/DIN-Black.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/DIN-Black.woff2') format('woff2'),
url('assets/fonts/DIN-Black.woff') format('woff'),
url('assets/fonts/DIN-Black.ttf') format('truetype'),
url('assets/fonts/DIN-Black.svg#DIN-Black') format('svg');
font-weight: 900;
font-style: normal;
font-display: swap;
}

View File

@ -1,89 +1,8 @@
@media screen {
h1,
h2,
h3,
h4,
h5 {
text-transform: uppercase;
clear: both;
line-height: $font__line-height-header;
}
h1 {
font-family: $font__light;
font-size: $font__size-body*1.8;
}
h2 {
font-family: $font__light;
font-size: $font__size-body*1.5;
}
h3 {
font-family: $font__black;
font-size: $font__size-body*1.3;
}
h4 {
font-family: $font__bold;
font-size: $font__size-body*1.2;
}
h5 {
font-family: $font__medium;
font-size: $font__size-body*1.1;
}
h6 {
font-family: $font__light;
font-size: $font__size-body*1.1;
}
.site-main {
h1,
h2,
h3,
h4,
h5,
h6,
.entry-content {
margin: 0;
}
}
.single {
h1 {
font-family: $font__black;
}
}
.home-featured {
h2 {
margin: 1.2rem 0;
font-size: $font__size-body*2;
line-height: 1.2;
border-bottom: 0.6rem solid $color__black;
}
}
}
@media screen and (min-width: 48em) {
h1 {
font-size: $font__size-body*3.5;
}
h2 {
font-size: $font__size-body*2.5;
}
h3 {
font-size: $font__size-body*2;
}
h4 {
font-family: $font__black;
font-size: $font__size-body*1.7;
}
h5 {
font-size: $font__size-body*1.5;
}
h6 {
font-size: $font__size-body*1.5;
}
.home-featured {
h2 {
font-size: $font__size-body*3.5;
border-bottom: 0.8rem solid $color__black;
}
}
}
@media screen and (min-width: 80em) {
clear: both;
}

View File

@ -6,10 +6,9 @@ optgroup,
textarea {
color: $color__text-main;
font-family: $font__main;
font-size: $font__size-body;
font-size: 1rem;
line-height: $font__line-height-body;
}
@import "headings";
@import "copy";
@import "fonts";

View File

@ -5,7 +5,6 @@
/* Posts and pages
--------------------------------------------- */
@import "content/posts-and-pages";
@import "content/login";
/* Comments
--------------------------------------------- */

View File

@ -1,4 +1,3 @@
@media screen {
.sticky {
display: block;
}
@ -22,105 +21,3 @@
clear: both;
margin: 0 0 1.5em;
}
.ofisuport-card-each {
.entry-title,h6 {
border-bottom: 1px solid $color__black;
margin: 0;
padding: 0.5rem 0;
}
p {
padding: 0.5rem 0;
margin:0;
}
}
.ofisuport-fund-info-fields,
.ofisuport-fund-info-contact-fields {
display: grid;
.ofisuport-fund-info-field {
padding-bottom: 1rem;
border-bottom: 1px solid $color__black;
}
h6 {
font-size: 2.4rem;
font-variant: all-petite-caps;
}
p {
margin: 0.5rem 0 0 0;
}
li {
font-size: 1.3rem;
}
}
.ofisuport-fund-info-contact-fields {
.ofisuport-fund-info-field {
margin: 0;
}
}
.ofisuport-fund-info-fields {
.ofisuport-fund-info-field {
margin: 1rem 0 0.5rem 0;
}
}
.oficina-suport-label {
}
.ofisuport-funder-name,
.ofisuport-fund-contact-name,
.ofisuport-fund-web {
display: flex;
margin:0;
padding: 0;
font-variant: all-petite-caps;
font-size: 1.1rem;
line-height: 0.9;
align-items: center;
a {
text-decoration: none;
font-size: 0.8rem;
}
}
// .page-template-funds-search {
.ofisuport-filtered-funds {
display:grid;
grid-template-columns: 1fr 1fr;
}
.ofisuport-fund-filter {
display: grid;
grid-template-columns: repeat(1 , 1fr);
gap: $grid__gap;
}
.archive-posts {
grid-template-columns: repeat(1 , 1fr);
}
//}
}
@media screen and (max-width: 48em) {
//only smaller than 48em
}
@media screen and (min-width: 48em) {
//only bigger than 48em
//.page-template-funds-search {
.ofisuport-filtered-funds {
grid-template-columns: 1fr 2fr;
}
.ofisuport-fund-filter {
}
.archive-posts {
grid-template-columns: repeat(2 , 1fr);
}
//}
}
@media screen and (min-width: 80em) {
//only bigger than 80rem
//.page-template-funds-search {
.ofisuport-filtered-funds {
grid-template-columns: 1fr 3fr;
}
.ofisuport-fund-filter {
}
.archive-posts {
grid-template-columns: repeat(3 , 1fr);
}
//}
}

View File

@ -1,17 +1,7 @@
@media screen {
.hide-content {
.main-navigation {
display: block;
width: 0px;
height:0px;
margin: 0;
padding:0;
overflow:hidden;
}
.custom-logo {
min-width: 11rem;
margin: 1rem;
}
.main-navigation,.secondary-navigation {
width: 100%;
ul {
display: none;
list-style: none;
@ -19,7 +9,6 @@
padding-left: 0;
ul {
background-color: $color__white;
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
float: left;
position: absolute;
@ -69,198 +58,32 @@
}
a {
display: flex;
align-items: center;
min-height: 100%;
padding: 0 0.5rem;
display: block;
text-decoration: none;
font-size: 1rem;
}
.current_page_item > a,
.current-menu-item > a,
.current_page_ancestor > a,
.current-menu-ancestor > a {
font-weight: bold;
font-family: $font__bold;
border-left: 1px solid $color__black;
}
}
.main-navigation {
a[href^="http://localhost"],
a[href^="http://oficinasuport.xarxaprod.cat"],
a[href^="https://oficinasuport.xarxaprod.cat"]
{
font-family: $font__bold;
border-left: 1px solid $color__black;
}
}
.secondary-navigation {
padding: 1em 0;
ul {
display: inline-block;
li {
padding: 0.5em 0;
}
}
a {
text-transform: uppercase;
}
}
.menu-item-has-children {
&::after {
content: "";
display: inline-block;
position: absolute;
top: 40%;
right: 0.3em;
//vertical-align: middle;
//margin: -3em 0 0.5em;
width: 0.3em;
height: 0.3em;
border: 1px solid $color__grey-light;
border-top: none;
border-left: none;
-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
&:hover {
&::after {
border-color: $color__grey-dark;
}
}
}
/* begin of menu-hidden */
.toogle-secondary-navigation .show-mobile{
display:inherit;
}
.toogle,
.toogled-menu {
display: none;
}
.toogle:checked+.toogled-menu{
display: block;
position: absolute;
left:0;
top:0;
width: 100%;
height: 100vh;
margin-top: 0;
padding: 7em 4em 0 4em;
background-color: $color__white;
}
.toogle-show {
position: relative;
display: inline-block;
width: 1.8em;
height: 1.4em;
margin-right: 0.3em;
border-top: 0.3em solid $color__black;
border-bottom: 0.3em solid $color__black;
}
.toogle-show::before {
content: "";
position: absolute;
top: 0.3em;
left: 0;
width: 100%;
border-top: 0.3em solid $color__black;
}
.toogle-hide {
display: flex;
justify-content: center;
}
.toogle-hide::after{
content: "x";
padding: 0;
font-size: 3rem;
font-weight: bold;
}
/* end of menu hidden*/
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
display: block;
}
.ofisuport-filters {
.ofisuport-filter {
//float: left;
}
}
}
@media screen and (min-width: 48em) {
.site-branding {
}
.custom-logo {
min-width: 11rem;
margin: 1rem 1rem 1rem 0;
}
@media screen and (min-width: 37.5em) {
.menu-toggle {
display: none;
}
.main-navigation,.secondary-navigation {
ul {
.main-navigation ul {
display: flex;
}
a {
padding: 0 0.5rem;
}
.current_page_item > a,
.current-menu-item > a,
.current_page_ancestor > a,
.current-menu-ancestor > a {
border-left: none;
}
}
.main-navigation {
padding-bottom: 1em;
ul {
justify-content: end;
}
a[href^="http://localhost"],
a[href^="http://oficinasuport.xarxaprod.cat"],
a[href^="https://oficinasuport.xarxaprod.cat"]
{
font-family: $font__bold;
border-left:none;
}
a[href^="http://localhost"]::after,
a[href^="http://oficinasuport.xarxaprod.cat"]::after,
a[href^="https://oficinasuport.xarxaprod.cat"]::after,
.current-menu-item a::after {
display: inline-block;
content: "";
position: absolute;
left: 5%;
min-height: 2px;
height: 100%;
width: 90%;
margin-top: 2.3em;
border-bottom: 0.3rem solid $color__black;
}
}
.secondary-navigation {
padding: 1.5em 0;
}
/*
* css menu toogler
* */
.toogle-secondary-navigation .show-mobile,
.toogle-secondary-navigation .hide-not-mobile{
display: none;
}
.toogled-menu {
display: inherit;
}
/* end css menu toogler
* */
}
.comment-navigation,
@ -284,24 +107,3 @@
flex: 1 0 50%;
}
}
@media screen and (min-width: 80em) {
.main-navigation,.secondary-navigation {
.toogle-sidebar-segona .show-mobile,
.toogle-sidebar-segona .hide-not-mobile{
display:none;
}
a {
padding: 0 1rem;
}
}
.main-navigation {
padding-bottom: 0;
a[href^="http://localhost"]::after,
a[href^="http://oficinasuport.xarxaprod.cat"]::after,
a[href^="https://oficinasuport.xarxaprod.cat"]::after,
.current-menu-item a::after {
margin-top: 5em;
}
}
}

View File

@ -1,140 +1,11 @@
@media screen {
.no-sidebar {
}
.site {
display: grid;
grid-template-columns: 1fr minmax(0,35em) minmax(0,35em) 1fr;
grid-template-columns: auto;
grid-template-areas:
"header"
"main"
"aside"
"footer";
margin: auto;
padding: 0;
> header {
grid-column: 1 / -1;
}
> main {
grid-column: 2 / 4;
}
> aside {
grid-column: 2 / 4;
}
> footer {
grid-column: 1 / -1;
}
}
.site-header {
position: sticky;
z-index: 900;
top: 0;
margin-bottom: 2rem;
background-color: $color__white;
box-shadow: 0 15px 30px rgba(0,0,0,0.05), 0 1px 0 0 rgba(0,0,0,0.0);
.main {
display: flex;
flex-flow: row;
align-items: center;
justify-content: space-around;
}
.secondary {
display: flex;
flex-flow: column;
align-items: center;
}
}
.site-main {
padding: 0 1rem;
}
.site-footer {
}
.home-featured {
padding: 0 1rem;
}
.ofisuport-destacats,.ofisuport-featured,.archive-posts {
display: grid;
grid-template-columns: repeat(1 , 1fr);
gap: $grid__gap;
}
}
@media screen and (max-width: 48em) {
//only smaller than 48em
.site-header {
}
.site-main {
}
.site-footer {
}
.page-template-funds-search {
}
.home-featured {
}
}
@media screen and (min-width: 48em) {
//only bigger than 48em
.site {
> header {
}
> main {
}
> aside {
}
> footer {
}
}
.site-header {
.main {
flex-flow: column;
}
.secondary {
border-top: 1px solid $color__grey-lighter;
}
}
.site-main {
padding: 0 2rem;
}
.site-footer {
}
.home-featured {
padding: 0 2rem;
}
&.single {
.site-main {
width: 45rem;
margin: 0 auto;
}
}
.ofisuport-destacats,.ofisuport-featured,.archive-posts {
grid-template-columns: repeat(4 , 1fr);
}
}
@media screen and (min-width: 80em) {
//only bigger than 80rem
.site {
> header {
}
> main {
}
> aside {
}
> footer {
}
}
.site-header {
.main {
width: 80em;
margin: auto;
flex-flow: row;
}
.secondary {
}
}
.site-main {
padding: 0;
}
.site-footer {
}
.home-featured {
padding: 0;
}
}

View File

@ -1,51 +0,0 @@
//.wpcf7-form-control-wrap {
// input {
// margin-top: -1em;
// }
//}
.wpcf7-not-valid:not(:focus) {
background-color: $color__red;
}
.wpcf7-not-valid-tip {
color: $color__red;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
border-color: $color__yellow;
background-color: $color__yellow;
color: $color__white;
font-family: "din-medium";
font-weight: bold;
text-align: center;
margin: 0em;
padding: 0rem;
}
.wpcf7-form {
.contactform-name, .wpcf7-form .contactform-email {
max-width: 40%;
display: inline-block;
}
.contactform-name {
float: left;
}
.contactform-email {
float:right;
margin-bottom: 1rem;
}
.contactform-message {
}
.contactform-acceptance {
display: flex;
align-items: center;
justify-content: end;
}
.wpcf7-submit {
margin-left: 1rem;
}
.wpcf7-spinner {
margin: 0 -24px 0 0;
}
}

View File

@ -1,53 +0,0 @@
.black-blocs {
padding: $font__size-body 0;
gap: $font__size-body;
.wp-block-column {
align-self: auto;
display: flex;
flex-direction: column;
position: relative;
min-height: 17rem;
padding: $font__size-body;
h1,
h2,
h3,
h4,
h5,
h6 {
min-height: $font__size-body * 4.8;
font-family: $font__black;
font-size: $font__size-body * 2;
line-height: $font__line-height-body * 0.8;
}
p {
font-family: $font__bold;
font-size: $font__size-body * 0.9;
}
a {
color: $color__white;
text-decoration: none;
&::after {
content: "+";
position: absolute;
bottom: -1rem;
left: 0.7rem;
font-size: 5rem;
}
&:hover {
color: $color__grey-light;
&::after {
content: ">";
font-size: 3rem;
bottom: 0;
}
}
}
}
}

View File

@ -1,5 +1,4 @@
/*
/*!
Theme Name: Oficina de Suport theme
Theme URI: http://underscores.me/
Author: jorge-vitrubio.net
@ -74,7 +73,6 @@ Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
@import "layouts/no-sidebar"; // Uncomment this line for a no sidebar content.
// @import "layouts/content-sidebar"; // Uncomment this line for a sidebar on right side of your content.
// @import "layouts/sidebar-content"; // Uncomment this line for a sidebar on left side of your content.
@ -91,15 +89,6 @@ Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
--------------------------------------------- */
@import "plugins/jetpack/infinite-scroll";
/* Guttenberg
--------------------------------------------- */
@import "plugins/guttemberg/guttemberg";
/* Contact Form 7
--------------------------------------------- */
@import "plugins/contactform7/contactform7";
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
@ -111,4 +100,3 @@ Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
/* Alignments
--------------------------------------------- */
@import "utilities/alignments";

Binary file not shown.

Before

Width:  |  Height:  |  Size: 229 KiB

After

Width:  |  Height:  |  Size: 264 B

View File

@ -7,11 +7,11 @@
* @package Oficina_de_Suport_theme
*/
if ( ! is_active_sidebar( 'sidebar-funds' ) ) {
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
return;
}
?>
<aside id="secondary" class="widget-area">
<?php dynamic_sidebar( 'sidebar-funds' ); ?>
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</aside><!-- #secondary -->

View File

@ -18,17 +18,17 @@ get_header();
get_template_part( 'template-parts/content', get_post_type() );
//the_post_navigation(
// array(
// 'prev_text' => '<span class="nav-subtitle">' . esc_html__( 'Anterior:', 'ofisuport' ) . '</span> <span class="nav-title">%title</span>',
// 'next_text' => '<span class="nav-subtitle">' . esc_html__( 'Següent:', 'ofisuport' ) . '</span> <span class="nav-title">%title</span>',
// )
//);
the_post_navigation(
array(
'prev_text' => '<span class="nav-subtitle">' . esc_html__( 'Previous:', 'ofisuport' ) . '</span> <span class="nav-title">%title</span>',
'next_text' => '<span class="nav-subtitle">' . esc_html__( 'Next:', 'ofisuport' ) . '</span> <span class="nav-title">%title</span>',
)
);
// If comments are open or we have at least one comment, load up the comment template.
//if ( comments_open() || get_comments_number() ) :
// comments_template();
//endif;
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>

887
style.css

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -1,114 +0,0 @@
<?php
/**
* Template part for displaying posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Oficina_de_Suport_theme
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?>
</header><!-- .entry-header -->
<section class="ofisuport-fund-info-contact-fields">
<div class="ofisuport-fund-info-field">
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_call') ); ?>
</div>
<?php if( get_field('os_funder_name') ): ?>
<div class="ofisuport-fund-info-field">
<p class="ofisuport-funder-name"><?php the_field('os_funder_name'); ?></p>
</div>
<?php endif; ?>
<?php if( get_field('os_fund_contact_name') ): ?>
<div class="ofisuport-fund-info-field">
<p class="ofisuport-fund-contact-name"><?php the_field('os_fund_contact_name'); ?></p>
</div>
<?php endif; ?>
<?php if( get_field('os_fund_web') ): ?>
<div class="ofisuport-fund-info-field">
<p class="ofisuport-fund-web"><a href="<?php the_field('os_fund_web'); ?>"><?php the_field('os_fund_web'); ?></a></p>
</div>
<?php endif; ?>
</section>
<div class="entry-content">
<?php
the_content(
sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'ofisuport' ),
array(
'span' => array(
'class' => array(),
),
)
),
wp_kses_post( get_the_title() )
)
);
wp_link_pages(
array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'ofisuport' ),
'after' => '</div>',
)
);
?>
</div><!-- .entry-content -->
<section class="ofisuport-fund-info-fields">
<div class="ofisuport-fund-info-field">
<h6>Dirigit a</h6>
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_target') ); ?>
</div>
<div class="ofisuport-fund-info-field">
<h6>Tipus d'ajuda</h6>
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_source') ); ?>
</div>
<div class="ofisuport-fund-info-field">
<h6>Sectors</h6>
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_field') ); ?>
</div>
<div class="ofisuport-fund-info-field">
<h6>Termini</h6>
<?php if( get_field('os_fund_apply_begin') || get_field('os_fund_apply_end') ): ?>
<ul class="oficina-suport-label item-os_fund_dates">
<li> <?php the_field('os_fund_apply_begin'); ?> </li>
<li> <?php the_field('os_fund_apply_end'); ?> </li>
</ul>
<?php endif; ?>
</div>
<?php if( get_field('os_fund_web') ): ?>
<div class="ofisuport-fund-info-field">
<h6>+ Informació</h6>
<p><a href="<?php the_field('os_fund_web'); ?>" class="button button-more button-letsgo">ves-hi</a></p>
</div>
<?php endif; ?>
<div class="ofisuport-fund-info-field">
<h6>Necessites assesorament?</h6>
<p><a href="<?php echo esc_url( home_url( '/consultoria/' ) ); ?>" class="button button-more button-ourservices">Oferim serveis de consultoria</a></p>
</div>
</section>
<footer class="entry-footer">
<?php ofisuport_entry_footer(); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-<?php the_ID(); ?> -->

View File

@ -1,57 +0,0 @@
<?php
/**
* Template part for displaying posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Oficina_de_Suport_theme
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php
the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' );
if ( 'post' === get_post_type() ) :
?>
<div class="entry-meta">
<?php
//ofisuport_posted_on();
//ofisuport_posted_by();
?>
</div><!-- .entry-meta -->
<?php endif; ?>
</header><!-- .entry-header -->
<div class="entry-content">
<?php
the_content(
sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'ofisuport' ),
array(
'span' => array(
'class' => array(),
),
)
),
wp_kses_post( get_the_title() )
)
);
wp_link_pages(
array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'ofisuport' ),
'after' => '</div>',
)
);
?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php ofisuport_entry_footer(); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-<?php the_ID(); ?> -->

View File

@ -17,7 +17,7 @@
<div class="entry-meta">
<?php
ofisuport_posted_on();
//ofisuport_posted_by();
ofisuport_posted_by();
?>
</div><!-- .entry-meta -->
<?php endif; ?>

View File

@ -23,7 +23,7 @@
<div class="entry-meta">
<?php
ofisuport_posted_on();
//ofisuport_posted_by();
ofisuport_posted_by();
?>
</div><!-- .entry-meta -->
<?php endif; ?>

View File

@ -1,35 +0,0 @@
<?php /**
* Template part for displaying each ajut with each field.
* to be used inside the loop.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Oficina_de_Suport_theme
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class('ofisuport-card-each'); ?>>
<h3 class="entry-title">
<a href="<?php the_permalink(); ?>" rel="bookmark">
<?php the_title(); ?>
</a>
</h3>
<?php if( get_field('os_funder_name') ): ?>
<h6 class="ofisuport-funder-name"><?php the_field('os_funder_name'); ?></h6>
<?php endif; ?>
<section class="excerpt post-excerpt">
<?php the_excerpt() ?>
</section>
<aside>
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_target') ); ?>
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_source') ); ?>
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_field') ); ?>
<ul class="oficina-suport-label item-os_fund_dates">
<li> <?php the_field('os_fund_apply_begin'); ?> </li>
<li> <?php the_field('os_fund_apply_end'); ?> </li>
</ul>
<?php //get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_apply_begin') ); ?>
<?php //get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_apply_end') ); ?>
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_call') ); ?>
</aside>
</article><!-- #post-<?php the_ID(); ?> -->

View File

@ -1,56 +0,0 @@
<?php
/**
* Template part for displaying featured posts or "ajuts" and widgets
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Oficina_de_Suport_theme
*/
?>
<aside id="destacats" class="home-featured home-destacats">
<?php
// Detect plugin. For use on Front End only.
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
// check for plugin using plugin name
if ( is_plugin_active( 'oficinasuport-wp-plugin/ofisuport-wp-plugin.php' ) ) {
//plugin is activated do
?>
<header>
<h2> <?php echo esc_html__('Destacats', 'ofisuport'); ?></h2>
</header>
<main id="destacats" class="ofisuport-destacats ofisuport-featured">
<?php
// https://developer.wordpress.org/reference/functions/get_posts/
// https://www.advancedcustomfields.com/resources/true-false/
$the_query = new WP_Query(
array(
'post_type' => 'any',
'post_per_page' => '4',
'meta_query' => array(
array(
'key' => 'os_home_show',
'value'=> '1',
)
)
) );
?>
<?php if ( $the_query->have_posts() ) : ?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<?php get_template_part( 'template-parts/section', 'eachpost' ); ?>
<?php endwhile;//end of the loop ?>
<?php wp_reset_postdata(); ?>
<?php else : //if no post in query ?>
<p class="no-content"></p>
<?php endif; //end query ?>
</main>
<?php } //closing if is_plugin_active ?>
<?php dynamic_sidebar( 'front-page-widgets' ); // including widget front page?>
</aside>

View File

@ -1,30 +0,0 @@
<?php
/**
* Template part for displaying a list with data checked in checkbox list
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Oficina_de_Suport_theme
*/
?>
<?php
// https://developer.wordpress.org/reference/functions/get_template_part/#comment-4130
// to display this template use
// get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'CHANGETHIS') );
$fielditerate = $args['iterate_field'];
?>
<?php
$fields= get_field($fielditerate);
if( $fields ):
?>
<ul class="oficina-suport-label item-<?php echo $fielditerate ?>">
<?php foreach( $fields as $field ): ?>
<li>
<?php echo $field['label']; ?>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>

View File

@ -3,7 +3,7 @@
'name' => 'automattic/underscores',
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => '461cb622889de96244039a6d4178e77fac4f9abd',
'reference' => '1d21705ef199a337fbc9790702a658bcf2f90418',
'type' => 'wordpress-theme',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
@ -13,7 +13,7 @@
'automattic/underscores' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => '461cb622889de96244039a6d4178e77fac4f9abd',
'reference' => '1d21705ef199a337fbc9790702a658bcf2f90418',
'type' => 'wordpress-theme',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),