Update XStatic-roboto to 0.5.0.0

Change-Id: I649068f04d2a44ea1d429f1cd9e903ef7c52437f
This commit is contained in:
Rob Cresswell 2016-10-28 14:52:42 +02:00
parent a4ec81c69f
commit 480b520263
142 changed files with 4366 additions and 348 deletions

View File

@ -1,6 +1,5 @@
include README.txt
recursive-include xstatic/pkg/roboto_fontface *
recursive-include xstatic *
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.orig

20
setup.cfg Normal file
View File

@ -0,0 +1,20 @@
[metadata]
name = XStatic-roboto-fontface
description = roboto-fontface 0.5.0 (XStatic packaging standard)
description-file = README.rst
maintainer = Rob Cresswell
maintainer-email = robert.cresswell@outlook.com
home-page = https://github.com/choffmeister/roboto-fontface-bower
keywords = roboto_fontface xstatic
license = Apache-2.0
zip_safe = False
namespace_packages =
xstatic
xstatic.pkg
[files]
packages =
xstatic
[bdist_wheel]
universal = True

View File

@ -1,12 +1,10 @@
from setuptools import setup, find_packages
from xstatic.pkg import roboto_fontface as xs
# The README.txt file should be written in reST so that PyPI can use
# it to generate your project's PyPI page.
long_description = open('README.txt').read()
from setuptools import setup, find_packages
setup(
name=xs.PACKAGE_NAME,
version=xs.PACKAGE_VERSION,
@ -20,7 +18,7 @@ setup(
url=xs.HOMEPAGE,
platforms=xs.PLATFORMS,
packages=find_packages(),
namespace_packages=['xstatic', 'xstatic.pkg', ],
namespace_packages=['xstatic', 'xstatic.pkg'],
include_package_data=True,
zip_safe=False,
install_requires=[],

View File

@ -15,9 +15,9 @@ NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar')
# please use a all-lowercase valid python
# package name
VERSION = '0.4.3' # version of the packaged files, please use the upstream
VERSION = '0.5.0' # version of the packaged files, please use the upstream
# version number
BUILD = '2' # our package build number, so we can release new builds
BUILD = '0' # our package build number, so we can release new builds
# with fixes for xstatic stuff.
PACKAGE_VERSION = VERSION + '.' + BUILD # version used for PyPi
@ -28,14 +28,14 @@ CLASSIFIERS = []
KEYWORDS = 'roboto_fontface xstatic'
# XStatic-* package maintainer:
MAINTAINER = 'Diana Whitten'
MAINTAINER_EMAIL = 'hurgleburgler@gmail.com'
MAINTAINER = 'Rob Cresswell'
MAINTAINER_EMAIL = 'robert.cresswell@outlook.com'
# this refers to the project homepage of the stuff we packaged:
HOMEPAGE = 'https://github.com/choffmeister/roboto-fontface-bower'
# this refers to all files:
LICENSE = '(same as %s)' % DISPLAY_NAME
LICENSE = 'Apache-2.0'
from os.path import join, dirname
BASE_DIR = join(dirname(__file__), 'data')

View File

@ -14,6 +14,26 @@ $ npm install roboto-fontface --save
$ bower install roboto-fontface --save
```
## Usage
There're several files in the `css/` subdirectory. Import them in your project
to have access to "Roboto" font face:
* `css/roboto/roboto-fontface.css` - whole font family compiled to CSS
* `css/roboto/sass/roboto-fontface.scss` - whole font family in SCSS
* `css/roboto/less/roboto-fontface.less` - whole font family in LESS
* `css/roboto-condensed/roboto-condensed-fontface.css` - whole font family compiled to CSS
* `css/roboto-condensed/sass/roboto-condensed-fontface.scss` - whole font family in SCSS
* `css/roboto-condensed/less/roboto-condensed-fontface.less` - whole font family in LESS
Importing whole family may be unnecessary and lead to huge build, so if you are
using SCSS or LESS, you can import only individual weights by importing for example:
* `css/roboto/sass/roboto-fontface-black.scss`
* `css/roboto/sass/roboto-fontface-black-italic.scss`
## Hinting
Some of the included font files have [hinting](http://en.wikipedia.org/wiki/Font_hinting).

View File

@ -0,0 +1,32 @@
@roboto-font-path: '../../../fonts';
.roboto-font(@variant, @type, @weight, @style) {
@font-full-path: '@{roboto-font-path}/@{variant}/@{variant}';
@font-face {
font-family: '@{variant}';
src: url('@{font-full-path}-@{type}.eot');
src: local('@{variant} @{type}'),
local('@{variant}-@{type}'),
url('@{font-full-path}-@{type}.eot?#iefix') format('embedded-opentype'),
url('@{font-full-path}-@{type}.woff2') format('woff2'),
url('@{font-full-path}-@{type}.woff') format('woff'),
url('@{font-full-path}-@{type}.ttf') format('truetype'),
url('@{font-full-path}-@{type}.svg#@{variant}') format('svg');
font-weight: @weight;
font-style: @style;
}
@font-face {
font-family: '@{variant}-@{type}';
src: url('@{font-full-path}-@{type}.eot');
src: local('@{variant} @{type}'),
local('@{variant}-@{type}'),
url('@{font-full-path}-@{type}.eot?#iefix') format('embedded-opentype'),
url('@{font-full-path}-@{type}.woff2') format('woff2'),
url('@{font-full-path}-@{type}.woff') format('woff'),
url('@{font-full-path}-@{type}.ttf') format('truetype'),
url('@{font-full-path}-@{type}.svg#@{variant}') format('svg');
}
}

View File

@ -0,0 +1,32 @@
$roboto-font-path: '../../../fonts' !default;
@mixin roboto-font($variant, $type, $weight, $style) {
$font-full-path: '#{$roboto-font-path}/#{$variant}/#{$variant}';
@font-face {
font-family: '#{$variant}';
src: url('#{$font-full-path}-#{$type}.eot');
src: local('#{$variant} #{$type}'),
local('#{$variant}-#{$type}'),
url('#{$font-full-path}-#{$type}.eot?#iefix') format('embedded-opentype'),
url('#{$font-full-path}-#{$type}.woff2') format('woff2'),
url('#{$font-full-path}-#{$type}.woff') format('woff'),
url('#{$font-full-path}-#{$type}.ttf') format('truetype'),
url('#{$font-full-path}-#{$type}.svg##{$variant}') format('svg');
font-weight: $weight;
font-style: $style;
}
@font-face {
font-family: '#{$variant}-#{$type}';
src: url('#{$font-full-path}/#{$variant}-#{$type}.eot');
src: local('#{$variant} #{$type}'),
local('#{$variant}-#{$type}'),
url('#{$font-full-path}-#{$type}.eot?#iefix') format('embedded-opentype'),
url('#{$font-full-path}-#{$type}.woff2') format('woff2'),
url('#{$font-full-path}-#{$type}.woff') format('woff'),
url('#{$font-full-path}-#{$type}.ttf') format('truetype'),
url('#{$font-full-path}-#{$type}.svg##{$variant}') format('svg');
}
}

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto-Condensed','BoldItalic', 700, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto-Condensed','Bold', 700, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto-Condensed','LightItalic', 300, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto-Condensed','Light', 300, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto-Condensed','RegularItalic', 400, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto-Condensed','Regular', 400, normal);

View File

@ -0,0 +1,6 @@
@import "roboto-condensed-fontface-regular";
@import "roboto-condensed-fontface-regular-italic";
@import "roboto-condensed-fontface-light";
@import "roboto-condensed-fontface-light-italic";
@import "roboto-condensed-fontface-bold";
@import "roboto-condensed-fontface-bold-italic";

View File

@ -0,0 +1,83 @@
@font-face {
font-family: "Roboto-Condensed";
src: url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.eot");
src: local("Roboto-Condensed Regular"), local("Roboto-Condensed-Regular"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.svg#Roboto-Condensed") format("svg");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Roboto-Condensed-Regular";
src: url("../../fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-Regular.eot");
src: local("Roboto-Condensed Regular"), local("Roboto-Condensed-Regular"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.svg#Roboto-Condensed") format("svg");
}
@font-face {
font-family: "Roboto-Condensed";
src: url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot");
src: local("Roboto-Condensed RegularItalic"), local("Roboto-Condensed-RegularItalic"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.svg#Roboto-Condensed") format("svg");
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: "Roboto-Condensed-RegularItalic";
src: url("../../fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot");
src: local("Roboto-Condensed RegularItalic"), local("Roboto-Condensed-RegularItalic"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.svg#Roboto-Condensed") format("svg");
}
@font-face {
font-family: "Roboto-Condensed";
src: url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.eot");
src: local("Roboto-Condensed Light"), local("Roboto-Condensed-Light"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.svg#Roboto-Condensed") format("svg");
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: "Roboto-Condensed-Light";
src: url("../../fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-Light.eot");
src: local("Roboto-Condensed Light"), local("Roboto-Condensed-Light"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.svg#Roboto-Condensed") format("svg");
}
@font-face {
font-family: "Roboto-Condensed";
src: url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.eot");
src: local("Roboto-Condensed LightItalic"), local("Roboto-Condensed-LightItalic"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.svg#Roboto-Condensed") format("svg");
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: "Roboto-Condensed-LightItalic";
src: url("../../fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-LightItalic.eot");
src: local("Roboto-Condensed LightItalic"), local("Roboto-Condensed-LightItalic"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.svg#Roboto-Condensed") format("svg");
}
@font-face {
font-family: "Roboto-Condensed";
src: url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.eot");
src: local("Roboto-Condensed Bold"), local("Roboto-Condensed-Bold"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.svg#Roboto-Condensed") format("svg");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Roboto-Condensed-Bold";
src: url("../../fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-Bold.eot");
src: local("Roboto-Condensed Bold"), local("Roboto-Condensed-Bold"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.svg#Roboto-Condensed") format("svg");
}
@font-face {
font-family: "Roboto-Condensed";
src: url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot");
src: local("Roboto-Condensed BoldItalic"), local("Roboto-Condensed-BoldItalic"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.svg#Roboto-Condensed") format("svg");
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: "Roboto-Condensed-BoldItalic";
src: url("../../fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot");
src: local("Roboto-Condensed BoldItalic"), local("Roboto-Condensed-BoldItalic"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.svg#Roboto-Condensed") format("svg");
}

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto-Condensed','BoldItalic', 700, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto-Condensed','Bold', 700, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto-Condensed','LightItalic', 300, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto-Condensed','Light', 300, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto-Condensed','RegularItalic', 400, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto-Condensed','Regular', 400, normal);

View File

@ -0,0 +1,6 @@
@import "roboto-condensed-fontface-regular";
@import "roboto-condensed-fontface-regular-italic";
@import "roboto-condensed-fontface-light";
@import "roboto-condensed-fontface-light-italic";
@import "roboto-condensed-fontface-bold";
@import "roboto-condensed-fontface-bold-italic";

View File

@ -1,263 +0,0 @@
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-Thin.eot');
src: url('../fonts/Roboto-Thin.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Thin.woff2') format('woff2'),
url('../fonts/Roboto-Thin.woff') format('woff'),
url('../fonts/Roboto-Thin.ttf') format('truetype'),
url('../fonts/Roboto-Thin.svg#Roboto') format('svg');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Thin';
src: url('../fonts/Roboto-Thin.eot');
src: url('../fonts/Roboto-Thin.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Thin.woff2') format('woff2'),
url('../fonts/Roboto-Thin.woff') format('woff'),
url('../fonts/Roboto-Thin.ttf') format('truetype'),
url('../fonts/Roboto-Thin.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-ThinItalic.eot');
src: url('../fonts/Roboto-ThinItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-ThinItalic.woff2') format('woff2'),
url('../fonts/Roboto-ThinItalic.woff') format('woff'),
url('../fonts/Roboto-ThinItalic.ttf') format('truetype'),
url('../fonts/Roboto-ThinItalic.svg#Roboto') format('svg');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Roboto-ThinItalic';
src: url('../fonts/Roboto-ThinItalic.eot');
src: url('../fonts/Roboto-ThinItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-ThinItalic.woff2') format('woff2'),
url('../fonts/Roboto-ThinItalic.woff') format('woff'),
url('../fonts/Roboto-ThinItalic.ttf') format('truetype'),
url('../fonts/Roboto-ThinItalic.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-Light.eot');
src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Light.woff2') format('woff2'),
url('../fonts/Roboto-Light.woff') format('woff'),
url('../fonts/Roboto-Light.ttf') format('truetype'),
url('../fonts/Roboto-Light.svg#Roboto') format('svg');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Light';
src: url('../fonts/Roboto-Light.eot');
src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Light.woff2') format('woff2'),
url('../fonts/Roboto-Light.woff') format('woff'),
url('../fonts/Roboto-Light.ttf') format('truetype'),
url('../fonts/Roboto-Light.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-LightItalic.eot');
src: url('../fonts/Roboto-LightItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-LightItalic.woff2') format('woff2'),
url('../fonts/Roboto-LightItalic.woff') format('woff'),
url('../fonts/Roboto-LightItalic.ttf') format('truetype'),
url('../fonts/Roboto-LightItalic.svg#Roboto') format('svg');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Roboto-LightItalic';
src: url('../fonts/Roboto-LightItalic.eot');
src: url('../fonts/Roboto-LightItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-LightItalic.woff2') format('woff2'),
url('../fonts/Roboto-LightItalic.woff') format('woff'),
url('../fonts/Roboto-LightItalic.ttf') format('truetype'),
url('../fonts/Roboto-LightItalic.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-Regular.eot');
src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Regular.woff2') format('woff2'),
url('../fonts/Roboto-Regular.woff') format('woff'),
url('../fonts/Roboto-Regular.ttf') format('truetype'),
url('../fonts/Roboto-Regular.svg#Roboto') format('svg');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Regular';
src: url('../fonts/Roboto-Regular.eot');
src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Regular.woff2') format('woff2'),
url('../fonts/Roboto-Regular.woff') format('woff'),
url('../fonts/Roboto-Regular.ttf') format('truetype'),
url('../fonts/Roboto-Regular.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-RegularItalic.eot');
src: url('../fonts/Roboto-RegularItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-RegularItalic.woff2') format('woff2'),
url('../fonts/Roboto-RegularItalic.woff') format('woff'),
url('../fonts/Roboto-RegularItalic.ttf') format('truetype'),
url('../fonts/Roboto-RegularItalic.svg#Roboto') format('svg');
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: 'Roboto-RegularItalic';
src: url('../fonts/Roboto-RegularItalic.eot');
src: url('../fonts/Roboto-RegularItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-RegularItalic.woff2') format('woff2'),
url('../fonts/Roboto-RegularItalic.woff') format('woff'),
url('../fonts/Roboto-RegularItalic.ttf') format('truetype'),
url('../fonts/Roboto-RegularItalic.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-Medium.eot');
src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Medium.woff2') format('woff2'),
url('../fonts/Roboto-Medium.woff') format('woff'),
url('../fonts/Roboto-Medium.ttf') format('truetype'),
url('../fonts/Roboto-Medium.svg#Roboto') format('svg');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Medium';
src: url('../fonts/Roboto-Medium.eot');
src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Medium.woff2') format('woff2'),
url('../fonts/Roboto-Medium.woff') format('woff'),
url('../fonts/Roboto-Medium.ttf') format('truetype'),
url('../fonts/Roboto-Medium.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-MediumItalic.eot');
src: url('../fonts/Roboto-MediumItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-MediumItalic.woff2') format('woff2'),
url('../fonts/Roboto-MediumItalic.woff') format('woff'),
url('../fonts/Roboto-MediumItalic.ttf') format('truetype'),
url('../fonts/Roboto-MediumItalic.svg#Roboto') format('svg');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Roboto-MediumItalic';
src: url('../fonts/Roboto-MediumItalic.eot');
src: url('../fonts/Roboto-MediumItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-MediumItalic.woff2') format('woff2'),
url('../fonts/Roboto-MediumItalic.woff') format('woff'),
url('../fonts/Roboto-MediumItalic.ttf') format('truetype'),
url('../fonts/Roboto-MediumItalic.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-Bold.eot');
src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Bold.woff2') format('woff2'),
url('../fonts/Roboto-Bold.woff') format('woff'),
url('../fonts/Roboto-Bold.ttf') format('truetype'),
url('../fonts/Roboto-Bold.svg#Roboto') format('svg');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Bold';
src: url('../fonts/Roboto-Bold.eot');
src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Bold.woff2') format('woff2'),
url('../fonts/Roboto-Bold.woff') format('woff'),
url('../fonts/Roboto-Bold.ttf') format('truetype'),
url('../fonts/Roboto-Bold.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-BoldItalic.eot');
src: url('../fonts/Roboto-BoldItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-BoldItalic.woff2') format('woff2'),
url('../fonts/Roboto-BoldItalic.woff') format('woff'),
url('../fonts/Roboto-BoldItalic.ttf') format('truetype'),
url('../fonts/Roboto-BoldItalic.svg#Roboto') format('svg');
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: 'Roboto-BoldItalic';
src: url('../fonts/Roboto-BoldItalic.eot');
src: url('../fonts/Roboto-BoldItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-BoldItalic.woff2') format('woff2'),
url('../fonts/Roboto-BoldItalic.woff') format('woff'),
url('../fonts/Roboto-BoldItalic.ttf') format('truetype'),
url('../fonts/Roboto-BoldItalic.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-Black.eot');
src: url('../fonts/Roboto-Black.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Black.woff2') format('woff2'),
url('../fonts/Roboto-Black.woff') format('woff'),
url('../fonts/Roboto-Black.ttf') format('truetype'),
url('../fonts/Roboto-Black.svg#Roboto') format('svg');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Black';
src: url('../fonts/Roboto-Black.eot');
src: url('../fonts/Roboto-Black.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-Black.woff2') format('woff2'),
url('../fonts/Roboto-Black.woff') format('woff'),
url('../fonts/Roboto-Black.ttf') format('truetype'),
url('../fonts/Roboto-Black.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-BlackItalic.eot');
src: url('../fonts/Roboto-BlackItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-BlackItalic.woff2') format('woff2'),
url('../fonts/Roboto-BlackItalic.woff') format('woff'),
url('../fonts/Roboto-BlackItalic.ttf') format('truetype'),
url('../fonts/Roboto-BlackItalic.svg#Roboto') format('svg');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Roboto-BlackItalic';
src: url('../fonts/Roboto-BlackItalic.eot');
src: url('../fonts/Roboto-BlackItalic.eot?#iefix') format('embedded-opentype'),
url('../fonts/Roboto-BlackItalic.woff2') format('woff2'),
url('../fonts/Roboto-BlackItalic.woff') format('woff'),
url('../fonts/Roboto-BlackItalic.ttf') format('truetype'),
url('../fonts/Roboto-BlackItalic.svg#Roboto') format('svg');
}

View File

@ -1,37 +0,0 @@
@roboto-font-path: '../fonts';
.roboto-font(@type, @weight, @style) {
@font-face {
font-family: 'Roboto';
src: url('@{roboto-font-path}/Roboto-@{type}.eot');
src: url('@{roboto-font-path}/Roboto-@{type}.eot?#iefix') format('embedded-opentype'),
url('@{roboto-font-path}/Roboto-@{type}.woff2') format('woff2'),
url('@{roboto-font-path}/Roboto-@{type}.woff') format('woff'),
url('@{roboto-font-path}/Roboto-@{type}.ttf') format('truetype'),
url('@{roboto-font-path}/Roboto-@{type}.svg#Roboto') format('svg');
font-weight: @weight;
font-style: @style;
}
@font-face {
font-family: 'Roboto-@{type}';
src: url('@{roboto-font-path}/Roboto-@{type}.eot');
src: url('@{roboto-font-path}/Roboto-@{type}.eot?#iefix') format('embedded-opentype'),
url('@{roboto-font-path}/Roboto-@{type}.woff2') format('woff2'),
url('@{roboto-font-path}/Roboto-@{type}.woff') format('woff'),
url('@{roboto-font-path}/Roboto-@{type}.ttf') format('truetype'),
url('@{roboto-font-path}/Roboto-@{type}.svg#Roboto') format('svg');
}
}
.roboto-font-pair(@type, @weight) {
.roboto-font('@{type}', @weight, normal);
.roboto-font('@{type}Italic', @weight, italic);
}
.roboto-font-pair('Thin', 100);
.roboto-font-pair('Light', 300);
.roboto-font-pair('Regular', 400);
.roboto-font-pair('Medium', 500);
.roboto-font-pair('Bold', 700);
.roboto-font-pair('Black', 900);

View File

@ -1,37 +0,0 @@
$roboto-font-path: '../fonts' !default;
@mixin roboto-font($type, $weight, $style: normal) {
@font-face {
font-family: 'Roboto';
src: url('#{$roboto-font-path}/Roboto-#{$type}.eot');
src: url('#{$roboto-font-path}/Roboto-#{$type}.eot?#iefix') format('embedded-opentype'),
url('#{$roboto-font-path}/Roboto-#{$type}.woff2') format('woff2'),
url('#{$roboto-font-path}/Roboto-#{$type}.woff') format('woff'),
url('#{$roboto-font-path}/Roboto-#{$type}.ttf') format('truetype'),
url('#{$roboto-font-path}/Roboto-#{$type}.svg#Roboto') format('svg');
font-weight: $weight;
font-style: $style;
}
@font-face {
font-family: 'Roboto-#{$type}';
src: url('#{$roboto-font-path}/Roboto-#{$type}.eot');
src: url('#{$roboto-font-path}/Roboto-#{$type}.eot?#iefix') format('embedded-opentype'),
url('#{$roboto-font-path}/Roboto-#{$type}.woff2') format('woff2'),
url('#{$roboto-font-path}/Roboto-#{$type}.woff') format('woff'),
url('#{$roboto-font-path}/Roboto-#{$type}.ttf') format('truetype'),
url('#{$roboto-font-path}/Roboto-#{$type}.svg#Roboto') format('svg');
}
}
@mixin roboto-font-pair($type, $weight) {
@include roboto-font($type, $weight);
@include roboto-font(#{$type}Italic, $weight, italic);
}
@include roboto-font-pair('Thin', 100);
@include roboto-font-pair('Light', 300);
@include roboto-font-pair('Regular', 400);
@include roboto-font-pair('Medium', 500);
@include roboto-font-pair('Bold', 700);
@include roboto-font-pair('Black', 900);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto','BlackItalic', 900, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto','Black', 900, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto','BoldItalic', 700, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto','Bold', 700, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto','LightItalic', 300, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto','Light', 300, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto','MediumItalic', 500, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto','Medium', 500, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto','RegularItalic', 400, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto','Regular', 400, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto','ThinItalic', 100, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
.roboto-font('Roboto','Thin', 100, normal);

View File

@ -0,0 +1,12 @@
@import "roboto-fontface-regular";
@import "roboto-fontface-regular-italic";
@import "roboto-fontface-light";
@import "roboto-fontface-light-italic";
@import "roboto-fontface-thin";
@import "roboto-fontface-thin-italic";
@import "roboto-fontface-medium";
@import "roboto-fontface-medium-italic";
@import "roboto-fontface-bold";
@import "roboto-fontface-bold-italic";
@import "roboto-fontface-black";
@import "roboto-fontface-black-italic";

View File

@ -0,0 +1,167 @@
@font-face {
font-family: 'Roboto';
src: url('../../fonts/roboto/Roboto-Thin.eot');
src: local('Roboto Thin'), local('Roboto-Thin'), url('../../fonts/roboto/Roboto-Thin.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-Thin.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Thin.woff') format('woff'), url('../../fonts/roboto/Roboto-Thin.ttf') format('truetype'), url('../../fonts/roboto/Roboto-Thin.svg#Roboto') format('svg');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Thin';
src: url('../../fonts/roboto/Roboto-Thin.eot');
src: local('Roboto Thin'), local('Roboto-Thin'), url('../../fonts/roboto/Roboto-Thin.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-Thin.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Thin.woff') format('woff'), url('../../fonts/roboto/Roboto-Thin.ttf') format('truetype'), url('../../fonts/roboto/Roboto-Thin.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../../fonts/roboto/Roboto-ThinItalic.eot');
src: local('Roboto ThinItalic'), local('Roboto-ThinItalic'), url('../../fonts/roboto/Roboto-ThinItalic.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-ThinItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-ThinItalic.woff') format('woff'), url('../../fonts/roboto/Roboto-ThinItalic.ttf') format('truetype'), url('../../fonts/roboto/Roboto-ThinItalic.svg#Roboto') format('svg');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Roboto-ThinItalic';
src: url('../../fonts/roboto/Roboto-ThinItalic.eot');
src: local('Roboto ThinItalic'), local('Roboto-ThinItalic'), url('../../fonts/roboto/Roboto-ThinItalic.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-ThinItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-ThinItalic.woff') format('woff'), url('../../fonts/roboto/Roboto-ThinItalic.ttf') format('truetype'), url('../../fonts/roboto/Roboto-ThinItalic.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../../fonts/roboto/Roboto-Light.eot');
src: local('Roboto Light'), local('Roboto-Light'), url('../../fonts/roboto/Roboto-Light.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-Light.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Light.woff') format('woff'), url('../../fonts/roboto/Roboto-Light.ttf') format('truetype'), url('../../fonts/roboto/Roboto-Light.svg#Roboto') format('svg');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Light';
src: url('../../fonts/roboto/Roboto-Light.eot');
src: local('Roboto Light'), local('Roboto-Light'), url('../../fonts/roboto/Roboto-Light.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-Light.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Light.woff') format('woff'), url('../../fonts/roboto/Roboto-Light.ttf') format('truetype'), url('../../fonts/roboto/Roboto-Light.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../../fonts/roboto/Roboto-LightItalic.eot');
src: local('Roboto LightItalic'), local('Roboto-LightItalic'), url('../../fonts/roboto/Roboto-LightItalic.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-LightItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-LightItalic.woff') format('woff'), url('../../fonts/roboto/Roboto-LightItalic.ttf') format('truetype'), url('../../fonts/roboto/Roboto-LightItalic.svg#Roboto') format('svg');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Roboto-LightItalic';
src: url('../../fonts/roboto/Roboto-LightItalic.eot');
src: local('Roboto LightItalic'), local('Roboto-LightItalic'), url('../../fonts/roboto/Roboto-LightItalic.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-LightItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-LightItalic.woff') format('woff'), url('../../fonts/roboto/Roboto-LightItalic.ttf') format('truetype'), url('../../fonts/roboto/Roboto-LightItalic.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../../fonts/roboto/Roboto-Regular.eot');
src: local('Roboto Regular'), local('Roboto-Regular'), url('../../fonts/roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-Regular.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Regular.woff') format('woff'), url('../../fonts/roboto/Roboto-Regular.ttf') format('truetype'), url('../../fonts/roboto/Roboto-Regular.svg#Roboto') format('svg');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Regular';
src: url('../../fonts/roboto/Roboto-Regular.eot');
src: local('Roboto Regular'), local('Roboto-Regular'), url('../../fonts/roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-Regular.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Regular.woff') format('woff'), url('../../fonts/roboto/Roboto-Regular.ttf') format('truetype'), url('../../fonts/roboto/Roboto-Regular.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../../fonts/roboto/Roboto-RegularItalic.eot');
src: local('Roboto RegularItalic'), local('Roboto-RegularItalic'), url('../../fonts/roboto/Roboto-RegularItalic.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-RegularItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-RegularItalic.woff') format('woff'), url('../../fonts/roboto/Roboto-RegularItalic.ttf') format('truetype'), url('../../fonts/roboto/Roboto-RegularItalic.svg#Roboto') format('svg');
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: 'Roboto-RegularItalic';
src: url('../../fonts/roboto/Roboto-RegularItalic.eot');
src: local('Roboto RegularItalic'), local('Roboto-RegularItalic'), url('../../fonts/roboto/Roboto-RegularItalic.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-RegularItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-RegularItalic.woff') format('woff'), url('../../fonts/roboto/Roboto-RegularItalic.ttf') format('truetype'), url('../../fonts/roboto/Roboto-RegularItalic.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../../fonts/roboto/Roboto-Medium.eot');
src: local('Roboto Medium'), local('Roboto-Medium'), url('../../fonts/roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-Medium.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Medium.woff') format('woff'), url('../../fonts/roboto/Roboto-Medium.ttf') format('truetype'), url('../../fonts/roboto/Roboto-Medium.svg#Roboto') format('svg');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Medium';
src: url('../../fonts/roboto/Roboto-Medium.eot');
src: local('Roboto Medium'), local('Roboto-Medium'), url('../../fonts/roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-Medium.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Medium.woff') format('woff'), url('../../fonts/roboto/Roboto-Medium.ttf') format('truetype'), url('../../fonts/roboto/Roboto-Medium.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../../fonts/roboto/Roboto-MediumItalic.eot');
src: local('Roboto MediumItalic'), local('Roboto-MediumItalic'), url('../../fonts/roboto/Roboto-MediumItalic.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-MediumItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-MediumItalic.woff') format('woff'), url('../../fonts/roboto/Roboto-MediumItalic.ttf') format('truetype'), url('../../fonts/roboto/Roboto-MediumItalic.svg#Roboto') format('svg');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Roboto-MediumItalic';
src: url('../../fonts/roboto/Roboto-MediumItalic.eot');
src: local('Roboto MediumItalic'), local('Roboto-MediumItalic'), url('../../fonts/roboto/Roboto-MediumItalic.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-MediumItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-MediumItalic.woff') format('woff'), url('../../fonts/roboto/Roboto-MediumItalic.ttf') format('truetype'), url('../../fonts/roboto/Roboto-MediumItalic.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../../fonts/roboto/Roboto-Bold.eot');
src: local('Roboto Bold'), local('Roboto-Bold'), url('../../fonts/roboto/Roboto-Bold.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-Bold.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Bold.woff') format('woff'), url('../../fonts/roboto/Roboto-Bold.ttf') format('truetype'), url('../../fonts/roboto/Roboto-Bold.svg#Roboto') format('svg');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Bold';
src: url('../../fonts/roboto/Roboto-Bold.eot');
src: local('Roboto Bold'), local('Roboto-Bold'), url('../../fonts/roboto/Roboto-Bold.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-Bold.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Bold.woff') format('woff'), url('../../fonts/roboto/Roboto-Bold.ttf') format('truetype'), url('../../fonts/roboto/Roboto-Bold.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../../fonts/roboto/Roboto-BoldItalic.eot');
src: local('Roboto BoldItalic'), local('Roboto-BoldItalic'), url('../../fonts/roboto/Roboto-BoldItalic.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-BoldItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-BoldItalic.woff') format('woff'), url('../../fonts/roboto/Roboto-BoldItalic.ttf') format('truetype'), url('../../fonts/roboto/Roboto-BoldItalic.svg#Roboto') format('svg');
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: 'Roboto-BoldItalic';
src: url('../../fonts/roboto/Roboto-BoldItalic.eot');
src: local('Roboto BoldItalic'), local('Roboto-BoldItalic'), url('../../fonts/roboto/Roboto-BoldItalic.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-BoldItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-BoldItalic.woff') format('woff'), url('../../fonts/roboto/Roboto-BoldItalic.ttf') format('truetype'), url('../../fonts/roboto/Roboto-BoldItalic.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../../fonts/roboto/Roboto-Black.eot');
src: local('Roboto Black'), local('Roboto-Black'), url('../../fonts/roboto/Roboto-Black.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-Black.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Black.woff') format('woff'), url('../../fonts/roboto/Roboto-Black.ttf') format('truetype'), url('../../fonts/roboto/Roboto-Black.svg#Roboto') format('svg');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Black';
src: url('../../fonts/roboto/Roboto-Black.eot');
src: local('Roboto Black'), local('Roboto-Black'), url('../../fonts/roboto/Roboto-Black.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-Black.woff2') format('woff2'), url('../../fonts/roboto/Roboto-Black.woff') format('woff'), url('../../fonts/roboto/Roboto-Black.ttf') format('truetype'), url('../../fonts/roboto/Roboto-Black.svg#Roboto') format('svg');
}
@font-face {
font-family: 'Roboto';
src: url('../../fonts/roboto/Roboto-BlackItalic.eot');
src: local('Roboto BlackItalic'), local('Roboto-BlackItalic'), url('../../fonts/roboto/Roboto-BlackItalic.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-BlackItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-BlackItalic.woff') format('woff'), url('../../fonts/roboto/Roboto-BlackItalic.ttf') format('truetype'), url('../../fonts/roboto/Roboto-BlackItalic.svg#Roboto') format('svg');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: 'Roboto-BlackItalic';
src: url('../../fonts/roboto/Roboto-BlackItalic.eot');
src: local('Roboto BlackItalic'), local('Roboto-BlackItalic'), url('../../fonts/roboto/Roboto-BlackItalic.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto/Roboto-BlackItalic.woff2') format('woff2'), url('../../fonts/roboto/Roboto-BlackItalic.woff') format('woff'), url('../../fonts/roboto/Roboto-BlackItalic.ttf') format('truetype'), url('../../fonts/roboto/Roboto-BlackItalic.svg#Roboto') format('svg');
}

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto','BlackItalic', 900, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto','Black', 900, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto','BoldItalic', 700, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto','Bold', 700, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto','LightItalic', 300, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto','Light', 300, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto','MediumItalic', 500, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto','Medium', 500, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto','RegularItalic', 400, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto','Regular', 400, normal);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto','ThinItalic', 100, italic);

View File

@ -0,0 +1,3 @@
@import "../../mixins";
@include roboto-font('Roboto','Thin', 100, normal);

View File

@ -0,0 +1,12 @@
@import "roboto-fontface-regular";
@import "roboto-fontface-regular-italic";
@import "roboto-fontface-light";
@import "roboto-fontface-light-italic";
@import "roboto-fontface-thin";
@import "roboto-fontface-thin-italic";
@import "roboto-fontface-medium";
@import "roboto-fontface-medium-italic";
@import "roboto-fontface-bold";
@import "roboto-fontface-bold-italic";
@import "roboto-fontface-black";
@import "roboto-fontface-black-italic";

View File

@ -0,0 +1,643 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="roboto_condensedbold" horiz-adv-x="995" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="449" />
<glyph unicode="&#xfb01;" horiz-adv-x="1107" d="M18 876v206h133v70q0 207 112 318t316 111q70 0 138.5 -15t153.5 -44l-40 -232q-65 22 -115.5 34t-118.5 12q-80 0 -121 -47t-41 -137v-70h173v-206h-173v-876h-284v876h-133zM716 0v1082h285v-1082h-285z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="449" />
<glyph horiz-adv-x="16" />
<glyph unicode="&#x9;" horiz-adv-x="16" />
<glyph unicode=" " horiz-adv-x="449" />
<glyph unicode="&#x09;" horiz-adv-x="449" />
<glyph unicode="&#xa0;" horiz-adv-x="449" />
<glyph unicode="!" horiz-adv-x="506" d="M112 506v950h285v-950h-285zM115 0v258h280v-258h-280z" />
<glyph unicode="&#x22;" horiz-adv-x="602" d="M51 1046v514h198v-263l-74 -251h-124zM351 1046l1 247v267h196v-263l-74 -251h-123z" />
<glyph unicode="#" horiz-adv-x="1034" d="M44 410v166h209l43 298h-189v166h213l61 416h172l-60 -416h136l60 416h173l-60 -416h186v-166h-210l-43 -298h189v-166h-213l-59 -410h-173l59 410h-136l-59 -410h-173l59 410h-185zM426 576h136l43 298h-136z" />
<glyph unicode="$" horiz-adv-x="1019" d="M79 456h284q0 -135 44 -193.5t115 -58.5q63 0 96 49t33 128q0 84 -33 133t-115 96q-194 86 -285.5 183t-91.5 279q0 166 93.5 274t250.5 127v212h144v-215q149 -28 236.5 -148.5t87.5 -313.5h-284q0 117 -35 180t-92 63q-59 0 -88 -50t-29 -130q0 -76 32.5 -125 t117.5 -97q192 -91 283.5 -189t91.5 -277q0 -171 -92 -275.5t-248 -123.5v-199h-145v199q-161 20 -266 135t-105 337z" />
<glyph unicode="%" horiz-adv-x="1356" d="M90 1099v77q0 129 74.5 215t209.5 86q137 0 211 -85.5t74 -215.5v-77q0 -130 -74 -214.5t-209 -84.5q-136 0 -211 85t-75 214zM276 1099q0 -57 26 -96.5t74 -39.5q46 0 71.5 39t25.5 97v77q0 58 -26 98t-73 40t-72.5 -40.5t-25.5 -97.5v-77zM283 184l601 1138l134 -74 l-601 -1138zM700 280v77q0 128 75 214t210 86q137 0 211 -85.5t74 -214.5v-77q0 -130 -74 -215t-209 -85q-136 0 -211.5 85t-75.5 215zM887 280q0 -56 28.5 -97t71.5 -40q55 -1 76 36t21 101v77q0 57 -26 97t-73 40q-48 0 -73 -40t-25 -97v-77z" />
<glyph unicode="&#x26;" horiz-adv-x="1221" d="M59 388q0 118 57.5 203.5t175.5 178.5q-62 94 -92 170.5t-30 156.5q0 171 98.5 275.5t262.5 104.5q142 0 232.5 -98.5t90.5 -238.5q0 -97 -43.5 -177.5t-117.5 -139.5l-81 -65l230 -304l6 1q27 52 42.5 117.5t15.5 138.5h208q0 -138 -29.5 -252.5t-92.5 -203.5l194 -255 h-322l-64 84q-75 -53 -152.5 -79t-166.5 -26q-193 0 -307.5 113t-114.5 296zM345 406q0 -87 43.5 -143.5t109.5 -56.5q44 0 88 12t85 37l-259 344l-7 -6q-35 -48 -47.5 -93.5t-12.5 -93.5zM423 1100q0 -41 17.5 -84t52.5 -94l59 44q50 36 67 73.5t17 82.5q0 50 -29.5 88.5 t-76.5 38.5q-52 0 -79.5 -42.5t-27.5 -106.5z" />
<glyph unicode="'" horiz-adv-x="302" d="M52 1275v285h190v-272l-66 -281h-123z" />
<glyph unicode="(" horiz-adv-x="633" d="M109 567v24q0 384 131 658.5t297 356.5h6l50 -143q-105 -98 -177.5 -317.5t-72.5 -552.5v-28q0 -333 72 -552t178 -319l-50 -141h-6q-166 82 -297 355t-131 659z" />
<glyph unicode=")" horiz-adv-x="632" d="M38 -306q104 98 177 318t73 553v28q0 332 -73.5 553t-176.5 319l52 141h6q169 -80 306 -361t137 -654v-24q0 -375 -137 -654.5t-306 -359.5h-6z" />
<glyph unicode="*" horiz-adv-x="825" d="M31 1058l53 173l260 -127l-19 352h178l-19 -358l253 125l53 -175l-268 -93l176 -269l-144 -107l-149 294l-150 -285l-143 103l183 275z" />
<glyph unicode="+" d="M54 556v254h307v396h269v-396h306v-254h-306v-410h-269v410h-307z" />
<glyph unicode="," horiz-adv-x="459" d="M47 -309l59 319v231h252v-239l-145 -311h-166z" />
<glyph unicode="-" horiz-adv-x="748" d="M120 511v228h497v-228h-497z" />
<glyph unicode="." horiz-adv-x="543" d="M124 0v258h281v-258h-281z" />
<glyph unicode="/" horiz-adv-x="646" d="M-12 -125l432 1581h206l-434 -1581h-204z" />
<glyph unicode="0" horiz-adv-x="1014" d="M80 571v313q0 290 115.5 441.5t310.5 151.5t311 -151.5t116 -441.5v-313q0 -291 -115.5 -441.5t-309.5 -150.5q-196 0 -312 150.5t-116 441.5zM364 548q0 -178 37 -259.5t104 -75.5h6q66 -6 102 75t36 260v361q0 176 -37 257t-103 76h-6q-67 5 -103 -76t-36 -257v-361z " />
<glyph unicode="1" horiz-adv-x="1019" d="M128 1153v205l554 99v-1457h-284v1159z" />
<glyph unicode="2" horiz-adv-x="1019" d="M64 1004q-4 198 112 335.5t312 137.5q200 0 312 -116t112 -316q0 -134 -62.5 -248t-208.5 -298l-190 -272h492v-227h-860v193l397 503q79 112 113.5 195t34.5 151q0 93 -36 150t-104 57q-70 0 -107.5 -69t-37.5 -181h-277z" />
<glyph unicode="3" horiz-adv-x="1019" d="M58 394l2 6h276q0 -84 44 -139t109 -55q74 0 117.5 55.5t43.5 148.5q0 116 -42.5 169.5t-125.5 53.5h-142v220h142q76 0 113 54t37 151q0 85 -37 138t-106 53q-56 0 -96.5 -47t-40.5 -123h-275l-2 6q-5 173 113.5 282.5t292.5 109.5q198 0 316 -108.5t118 -306.5 q0 -99 -51 -183.5t-140 -131.5q102 -42 156 -130.5t54 -210.5q0 -199 -127.5 -313t-326.5 -114q-175 0 -301 107.5t-121 307.5z" />
<glyph unicode="4" horiz-adv-x="1019" d="M53 496l497 960h284v-910h126v-228h-126v-318h-283v318h-483zM311 546h240v503l-6 1l-15 -27z" />
<glyph unicode="5" horiz-adv-x="1019" d="M86 393l2 5l276 15q0 -98 40 -152.5t105 -54.5q75 0 109 71.5t34 187.5q0 129 -38 204t-116 75q-59 0 -91 -32t-44 -85l-253 17l72 812h712v-233h-480l-31 -343q31 31 77.5 51.5t97.5 22.5q182 3 279.5 -125.5t97.5 -361.5q0 -208 -110.5 -348t-315.5 -140 q-174 0 -300.5 111.5t-122.5 302.5z" />
<glyph unicode="6" horiz-adv-x="1019" d="M80 563v300q0 283 144.5 448.5t369.5 165.5q71 0 129.5 -15.5t119.5 -46.5l-48 -215q-53 23 -97.5 34.5t-102.5 11.5q-104 0 -166.5 -94.5t-59.5 -267.5l4 -4q39 45 100 71t136 26q165 0 257.5 -139t92.5 -356q0 -218 -119 -360.5t-307 -142.5q-202 0 -327.5 156 t-125.5 428zM364 560q0 -171 45.5 -263t123.5 -92q64 0 103 81.5t39 195.5q0 121 -40 196t-103 75q-59 0 -101 -20.5t-67 -57.5v-115z" />
<glyph unicode="7" horiz-adv-x="1019" d="M55 1228v228h886v-228q-197 -253 -261.5 -486.5t-93.5 -601.5l-13 -140h-285l14 140q27 327 116.5 598t250.5 490h-614z" />
<glyph unicode="8" horiz-adv-x="1019" d="M83 398q0 117 56 207.5t155 139.5q-87 47 -136 131t-49 194q0 193 110 300t290 107t290.5 -107t110.5 -300q0 -110 -49.5 -194t-135.5 -131q98 -50 154 -140t56 -207q0 -203 -117 -311t-308 -108t-309 108.5t-118 310.5zM368 419q0 -100 38 -156.5t104 -56.5 q64 0 102.5 56.5t38.5 156.5q0 98 -39 155.5t-103 57.5q-65 0 -103 -57.5t-38 -155.5zM395 1056q0 -92 29.5 -144.5t85.5 -52.5t85 52t29 145q0 89 -29.5 141t-85.5 52t-85 -51t-29 -142z" />
<glyph unicode="9" horiz-adv-x="1019" d="M75 957q0 219 120.5 369.5t304.5 150.5q191 0 311 -154.5t120 -430.5v-356q0 -256 -136.5 -406.5t-345.5 -150.5q-62 0 -131 16t-128 46l32 212q55 -24 108.5 -35.5t118.5 -11.5q86 0 142.5 82t56.5 230v56q-40 -58 -93.5 -88t-113.5 -30q-171 0 -268.5 134.5 t-97.5 366.5zM358 957q0 -131 35 -209t102 -78q50 0 88.5 24.5t64.5 66.5v166q0 158 -40 239t-105 77h-6q-61 4 -100 -82.5t-39 -203.5z" />
<glyph unicode=":" horiz-adv-x="540" d="M127 0v258h281v-258h-281zM127 823v258h281v-258h-281z" />
<glyph unicode=";" horiz-adv-x="516" d="M89 -309l59 319v231h252v-239l-145 -311h-166zM118 823v258h281v-258h-281z" />
<glyph unicode="&#x3c;" horiz-adv-x="898" d="M48 430v230l739 364v-270l-482 -209v-6l482 -203v-271z" />
<glyph unicode="=" horiz-adv-x="1023" d="M120 323v229h772v-229h-772zM120 756v228h772v-228h-772z" />
<glyph unicode="&#x3e;" horiz-adv-x="909" d="M106 65v269l487 209v6l-487 206v269l745 -364v-230z" />
<glyph unicode="?" horiz-adv-x="898" d="M25 1075q-3 197 111 299.5t299 102.5q200 0 314.5 -115.5t114.5 -312.5q0 -125 -64 -231.5t-160 -178.5q-51 -46 -68.5 -94.5t-17.5 -131.5h-284q1 136 39.5 202t147.5 159q56 55 89 121.5t33 152.5q0 92 -37.5 146t-106.5 54q-53 0 -92 -46.5t-40 -132.5h-276zM271 0 v247h281v-247h-281z" />
<glyph unicode="@" horiz-adv-x="1615" d="M56 478q15 428 226 682t558 254q342 0 526 -241t170 -657q-8 -219 -115.5 -378t-321.5 -159q-72 0 -123.5 44.5t-72.5 126.5q-38 -85 -93.5 -126.5t-129.5 -41.5q-128 0 -196.5 119t-50.5 315q22 252 127.5 404t255.5 152q106 0 171 -26t142 -80l-3 -4h5l-46 -569 q-5 -97 10 -132t41 -28l6 -1q96 -5 154.5 105t66.5 279q13 350 -119 546.5t-408 196.5q-266 0 -422 -210.5t-168 -570.5q-16 -352 126 -557.5t407 -205.5q75 0 155 19.5t138 49.5l35 -148q-60 -42 -151.5 -65.5t-179.5 -23.5q-353 0 -544.5 249t-175.5 682zM649 416 q-8 -127 15.5 -194t75.5 -67q46 0 83.5 28.5t66.5 103.5v6l39 496q-19 5 -37.5 8.5t-37.5 3.5q-95 0 -142.5 -95t-62.5 -290z" />
<glyph unicode="A" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM439 538h268l-131 515h-6z" />
<glyph unicode="B" horiz-adv-x="1136" d="M110 0v1456h429q225 0 351.5 -100t126.5 -298q0 -104 -46 -184.5t-138 -120.5q115 -27 170 -117t55 -211q0 -209 -119.5 -317t-342.5 -108h-486zM395 227h201q90 0 134.5 50t44.5 149q0 104 -38 160t-122 56h-220v-415zM395 841h157q87 2 133.5 50.5t46.5 139.5 q0 102 -48 149.5t-145 47.5h-144v-387z" />
<glyph unicode="C" horiz-adv-x="1088" d="M74 510v435q0 253 130.5 392.5t349.5 139.5q232 0 350.5 -124t122.5 -367l-3 -6h-274q1 17 1 33q0 118 -40 173q-45 63 -157 63q-96 0 -147 -75t-51 -227v-437q0 -154 54.5 -229t159.5 -75q104 0 144 60q36 53 36 172q0 15 -1 31h274l3 -6v-8q0 -234 -114 -354 q-116 -122 -342 -122t-361 138.5t-135 392.5z" />
<glyph unicode="D" horiz-adv-x="1151" d="M110 0v1456h440q224 0 370 -169.5t146 -436.5v-245q0 -267 -146 -436t-370 -169h-440zM395 227h139q119 0 183.5 103.5t64.5 274.5v247q0 170 -64.5 273t-183.5 103h-139v-1001z" />
<glyph unicode="E" horiz-adv-x="1008" d="M110 0v1456h858v-228h-573v-362h489v-227h-489v-412h575v-227h-860z" />
<glyph unicode="F" horiz-adv-x="1016" d="M110 0v1456h866v-228h-581v-396h494v-227h-494v-605h-285z" />
<glyph unicode="G" horiz-adv-x="1179" d="M81 506v444q0 251 136.5 389t361.5 138q242 0 363 -118.5t126 -339.5l-2 -6h-267q-3 123 -54.5 179.5t-157.5 56.5q-104 0 -163 -73.5t-59 -223.5v-446q0 -153 59.5 -226.5t173.5 -73.5q85 0 125.5 23t66.5 68v261h-192v200h476v-542q-59 -94 -177 -165.5t-299 -71.5 q-234 0 -375.5 137t-141.5 390z" />
<glyph unicode="H" horiz-adv-x="1241" d="M110 0v1456h285v-626h452v626h284v-1456h-284v603h-452v-603h-285z" />
<glyph unicode="I" horiz-adv-x="534" d="M125 0v1456h283v-1456h-283z" />
<glyph unicode="J" horiz-adv-x="1015" d="M57 421l3 6h277q0 -115 40.5 -168t104.5 -53q58 0 99.5 63t41.5 175v1012h283v-1012q0 -214 -120.5 -339.5t-303.5 -125.5q-198 0 -314 112q-111 108 -111 316v14z" />
<glyph unicode="K" horiz-adv-x="1137" d="M110 0v1456h285v-592h92l284 592h349l-397 -665l430 -791h-346l-288 605h-124v-605h-285z" />
<glyph unicode="L" horiz-adv-x="959" d="M110 0v1456h285v-1229h532v-227h-817z" />
<glyph unicode="M" horiz-adv-x="1481" d="M105 0v1456h369l261 -1069h6l264 1069h371v-1456h-283v423l24 566l-6 1l-278 -990h-189l-275 982l-6 -1l25 -558v-423h-283z" />
<glyph unicode="N" horiz-adv-x="1241" d="M110 0v1456h285l445 -930l6 2v928h283v-1456h-283l-445 931l-6 -2v-929h-285z" />
<glyph unicode="O" horiz-adv-x="1166" d="M75 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -256 -139 -400t-370 -144t-369 144t-138 400zM357 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5t-169 79.5q-112 0 -168 -79t-56 -236v-410z" />
<glyph unicode="P" horiz-adv-x="1158" d="M110 0v1456h506q218 0 344 -129t126 -338q0 -210 -126.5 -338.5t-343.5 -128.5h-221v-522h-285zM395 750h221q91 0 139 67t48 170q0 104 -47.5 172.5t-139.5 68.5h-221v-478z" />
<glyph unicode="Q" horiz-adv-x="1241" d="M81 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -113 -29 -206t-82 -161l216 -237l-176 -150l-224 249q-49 -19 -102.5 -29t-111.5 -10q-231 0 -369 144t-138 400zM363 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5 t-169 79.5q-112 0 -168 -79t-56 -236v-410z" />
<glyph unicode="R" horiz-adv-x="1162" d="M111 0v1455h475q215 0 337.5 -113.5t122.5 -315.5q0 -114 -51 -196.5t-149 -131.5q112 -38 161.5 -126t49.5 -220v-103q0 -60 14 -128.5t49 -99.5v-21h-294q-35 32 -44 104t-9 147v99q0 109 -44.5 169t-127.5 60h-206v-579h-284zM395 806h190q87 0 132 53t45 151 q0 100 -45 159t-131 59h-191v-422z" />
<glyph unicode="S" horiz-adv-x="1109" d="M72 449l2 6h277q0 -135 57 -194t172 -59q90 0 133.5 48t43.5 130q0 85 -44 134.5t-155 97.5q-227 79 -340.5 179.5t-113.5 281.5q0 179 132 291.5t337 112.5q208 1 338 -125q126 -122 126 -306v-11l-2 -6h-276q0 100 -50 162t-141 62q-85 0 -132.5 -51.5t-47.5 -129.5 q0 -72 53 -118.5t184 -103.5q207 -70 311.5 -177.5t104.5 -290.5q0 -189 -126 -296t-335 -107q-208 -1 -360 121q-148 118 -148 335v14z" />
<glyph unicode="T" horiz-adv-x="994" d="M29 1228v228h938v-228h-328v-1228h-284v1228h-326z" />
<glyph unicode="U" horiz-adv-x="1176" d="M94 465v991h284v-991q0 -133 55 -196t155 -63q103 0 157 60t54 199v991h283v-991q0 -233 -136.5 -359.5t-357.5 -126.5t-357.5 127t-136.5 359z" />
<glyph unicode="V" horiz-adv-x="1129" d="M9 1456h299l241 -1084l11 -56h6l11 53l243 1087h299l-407 -1456h-296z" />
<glyph unicode="W" horiz-adv-x="1548" d="M21 1456h276l157 -929h6l210 929h204l213 -929h6l157 929h276l-281 -1456h-265l-205 892h-6l-203 -892h-264z" />
<glyph unicode="X" horiz-adv-x="1127" d="M27 0l362 734l-353 722h327l195 -509h6l198 509h329l-353 -722l377 -734h-343l-204 520h-6l-204 -520h-331z" />
<glyph unicode="Y" horiz-adv-x="1124" d="M7 1456h311l240 -624h6l243 624h309l-416 -938v-518h-284v536z" />
<glyph unicode="Z" horiz-adv-x="998" d="M60 1229v227h876v-138l-550 -1091h559v-227h-879v143l546 1086h-552z" />
<glyph unicode="[" horiz-adv-x="530" d="M106 -339v2034h399v-217h-112v-1601h112v-216h-399z" />
<glyph unicode="\" horiz-adv-x="758" d="M0 1456h280l515 -1581h-282z" />
<glyph unicode="]" horiz-adv-x="530" d="M21 -123h114v1601h-114v217h399v-2034h-399v216z" />
<glyph unicode="^" horiz-adv-x="785" d="M38 729l253 727h206l253 -727h-219l-134 422l-2 8h-6l-1 -8l-131 -422h-219z" />
<glyph unicode="_" horiz-adv-x="793" d="M8 0h775v-220h-775v220z" />
<glyph unicode="`" horiz-adv-x="629" d="M73 1471l3 6h298l175 -266h-230z" />
<glyph unicode="a" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6v12q1 133 105 228q110 99 288 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5 t-133.5 -39.5q-134 0 -214.5 88t-80.5 235zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107q-65 0 -94 -45t-29 -114z" />
<glyph unicode="b" d="M92 0v1560h284v-570q38 54 89.5 83t116.5 29q176 0 267 -135.5t91 -361.5v-147q0 -219 -90.5 -349t-265.5 -130q-76 0 -132.5 35t-96.5 102l-17 -116h-246zM376 281q20 -37 53.5 -55.5t80.5 -18.5q86 0 116.5 63.5t30.5 187.5v147q0 127 -31.5 198t-116.5 71 q-46 0 -79 -23t-54 -65v-505z" />
<glyph unicode="c" horiz-adv-x="910" d="M52 470v139q0 216 112 354.5t321 138.5q175 0 279 -113q101 -110 101 -294v-11l-2 -5h-259q0 88 -29.5 141.5t-89.5 53.5q-85 0 -117 -72t-32 -193v-139q0 -124 32 -194t119 -70q58 0 87.5 43t29.5 124h258l3 -6v-9q-1 -164 -105 -270q-108 -109 -273 -109 q-210 0 -322.5 137t-112.5 354z" />
<glyph unicode="d" d="M54 514v21q0 255 94 411t265 156q63 0 114 -30t91 -86v574h284v-1560h-247l-19 118q-42 -68 -97.5 -103.5t-126.5 -35.5q-171 0 -264.5 146.5t-93.5 388.5zM338 514q0 -145 33.5 -226t113.5 -81q44 0 77 20.5t56 59.5v492q-23 45 -56 70t-75 25q-79 0 -114 -93t-35 -246 v-21z" />
<glyph unicode="e" horiz-adv-x="938" d="M69 451v152q0 219 111.5 359t308.5 140q190 0 294 -127t104 -346v-174h-535v-4q0 -107 48.5 -176t146.5 -69q80 0 130 18t119 60l72 -181q-56 -54 -149.5 -89t-205.5 -35q-204 0 -324 134t-120 338zM353 645h255v40q0 90 -28 139.5t-91 49.5q-68 0 -100 -62t-36 -167z " />
<glyph unicode="f" horiz-adv-x="647" d="M23 876v206h133v120q0 182 94 280.5t264 98.5q33 0 66 -5.5t76 -15.5l-24 -218q-20 4 -38.5 7t-43.5 3q-54 0 -82 -39t-28 -111v-120h174v-206h-174v-876h-284v876h-133z" />
<glyph unicode="g" horiz-adv-x="994" d="M54 458v133q0 229 94.5 370t266.5 141q72 0 127 -36.5t96 -104.5l18 121h247v-1061q0 -213 -123.5 -335.5t-338.5 -122.5q-70 0 -149 22.5t-147 60.5l50 219q57 -32 116 -48t128 -16q90 0 135 56.5t45 164.5v62q-40 -52 -91 -78.5t-115 -26.5q-171 0 -265 131.5 t-94 347.5zM338 458q0 -118 34 -184.5t114 -66.5q44 0 77.5 18t55.5 53v512q-22 40 -54.5 62t-76.5 22q-80 0 -115 -77.5t-35 -205.5v-133z" />
<glyph unicode="h" d="M84 0v1560h284v-607q42 71 101 110t130 39q144 0 226 -114.5t82 -353.5v-634h-285v636q0 134 -31.5 186t-98.5 52q-40 0 -71 -17.5t-53 -48.5v-808h-284z" />
<glyph unicode="i" horiz-adv-x="495" d="M105 0v1082h284v-1082h-284zM105 1343v217h284v-217h-284z" />
<glyph unicode="j" horiz-adv-x="487" d="M-73 -419l12 223q22 -6 40 -9t40 -3q44 0 67.5 44t23.5 131v1115h285v-1115q0 -194 -90 -299t-250 -105q-35 0 -64 4.5t-64 13.5zM105 1343v217h284v-217h-284z" />
<glyph unicode="k" horiz-adv-x="963" d="M92 0v1560h284v-886h47l183 408h327l-282 -487l329 -595h-325l-227 450h-52v-450h-284z" />
<glyph unicode="l" horiz-adv-x="495" d="M105 0v1560h284v-1560h-284z" />
<glyph unicode="m" horiz-adv-x="1507" d="M93 0v1082h265l11 -138q43 76 108 117t149 41q82 0 143 -43.5t93 -132.5q42 84 108 130t154 46q134 0 211.5 -110.5t77.5 -337.5v-654h-285v654q0 125 -27 172.5t-84 47.5q-41 0 -73 -24t-53 -66q1 -19 2 -37.5t1 -38.5v-708h-283v654q0 124 -27.5 172t-85.5 48 q-39 0 -69.5 -19.5t-52.5 -54.5v-800h-283z" />
<glyph unicode="n" d="M87 0v1082h265l12 -149q45 80 110.5 124.5t144.5 44.5q135 0 212.5 -104t77.5 -327v-671h-285v671q0 112 -31.5 157.5t-97.5 45.5q-38 0 -70 -20t-54 -55v-799h-284z" />
<glyph unicode="o" d="M58 473v134q0 218 115.5 356.5t323.5 138.5t324 -138.5t116 -356.5v-134q0 -220 -116 -357t-323 -137q-209 0 -324.5 137t-115.5 357zM341 473q0 -125 35 -196t122 -71q84 0 119.5 71.5t35.5 195.5v134q0 122 -35.5 194.5t-120.5 72.5t-120.5 -73t-35.5 -194v-134z" />
<glyph unicode="p" d="M92 -416v1498h263l10 -107q39 61 92.5 94t123.5 33q171 0 265 -140.5t94 -370.5v-133q0 -216 -94 -347.5t-263 -131.5q-66 0 -117.5 26.5t-89.5 78.5v-500h-284zM376 278q20 -36 52.5 -54t79.5 -18q79 0 113.5 67t34.5 185v133q0 128 -36 205.5t-113 77.5 q-45 0 -78 -22.5t-53 -63.5v-510z" />
<glyph unicode="q" d="M54 458v133q0 229 94 370t265 141q71 0 125.5 -35.5t95.5 -101.5l20 117h247v-1498h-285v499q-39 -51 -89.5 -77.5t-114.5 -26.5q-170 0 -264 131.5t-94 347.5zM338 458q0 -119 33.5 -185.5t113.5 -66.5q44 0 77 18t54 53v515q-21 39 -53 60.5t-76 21.5q-79 0 -114 -77.5 t-35 -205.5v-133z" />
<glyph unicode="r" horiz-adv-x="655" d="M92 0v1082h265l11 -145l5 -2q26 78 72.5 122.5t108.5 44.5q19 0 40.5 -3.5t37.5 -8.5l-29 -267l-107 3q-45 0 -74.5 -22t-45.5 -62v-742h-284z" />
<glyph unicode="s" horiz-adv-x="888" d="M39 334l2 6h260q2 -86 40 -124t105 -38q57 0 87 28t30 77q0 46 -36 79.5t-138 82.5q-163 61 -244.5 138t-81.5 200q0 132 104.5 225.5t276.5 93.5q180 0 287 -96q103 -93 103 -234v-11l-3 -6h-274q0 68 -28 108t-86 40q-46 0 -78 -31t-32 -75q0 -48 32 -77.5t139 -80.5 q170 -58 252 -137.5t82 -208.5q0 -138 -110 -226t-289 -88q-187 0 -296 109q-104 104 -104 234v12z" />
<glyph unicode="t" horiz-adv-x="648" d="M18 876v206h128v269h284v-269h150v-206h-150v-543q0 -66 19 -94.5t52 -28.5q26 0 44 2.5t40 8.5l22 -216q-45 -14 -86 -20t-93 -6q-137 0 -209.5 84.5t-72.5 268.5v544h-128z" />
<glyph unicode="u" d="M85 428v654h284v-656q0 -115 28 -167t83 -52q47 0 82.5 17.5t60.5 51.5v806h285v-1082h-250l-17 125q-44 -71 -106.5 -108.5t-141.5 -37.5q-145 0 -226.5 109.5t-81.5 339.5z" />
<glyph unicode="v" horiz-adv-x="909" d="M15 1082h297l127 -674l13 -82h6l14 82l125 674h297l-300 -1082h-278z" />
<glyph unicode="w" horiz-adv-x="1280" d="M24 1082h265l101 -616h6l151 616h184l151 -614l6 1l101 613h263l-222 -1082h-237l-151 583h-6l-151 -583h-237z" />
<glyph unicode="x" horiz-adv-x="909" d="M16 0l275 547l-268 535h319l109 -341h6l114 341h320l-268 -535l276 -547h-319l-119 351h-6l-119 -351h-320z" />
<glyph unicode="y" horiz-adv-x="909" d="M5 1082h305l130 -638l2 -11l158 649h304l-365 -1245q-41 -117 -109.5 -195.5t-209.5 -78.5q-35 0 -62 6t-72 18l33 212q17 -3 24.5 -4.5t16.5 -1.5q62 0 93.5 32.5t45.5 85.5l25 80z" />
<glyph unicode="z" horiz-adv-x="883" d="M65 0v169l412 685h-400v228h730v-165l-416 -690h423v-227h-749z" />
<glyph unicode="{" horiz-adv-x="586" d="M44 514v202q69 0 103 55t34 154v207q0 171 71 290.5t238 174.5l53 -157q-62 -31 -86 -109.5t-24 -198.5v-207q0 -104 -41 -184.5t-124 -125.5q82 -46 123.5 -126.5t41.5 -183.5v-206q0 -120 23.5 -198t86.5 -109l-53 -158q-167 55 -238 175t-71 290v206q0 98 -34 153.5 t-103 55.5z" />
<glyph unicode="|" horiz-adv-x="467" d="M153 -270v1726h163v-1726h-163z" />
<glyph unicode="}" horiz-adv-x="586" d="M42 -208q62 31 87 109t25 198v206q0 104 41 184.5t126 125.5q-85 44 -126 124.5t-41 185.5v207q0 120 -25 198.5t-87 109.5l53 157q166 -55 237.5 -174.5t71.5 -290.5v-207q0 -100 33.5 -154.5t105.5 -54.5v-202q-72 0 -105.5 -55t-33.5 -154v-206q0 -170 -71.5 -290 t-237.5 -175z" />
<glyph unicode="~" horiz-adv-x="1121" d="M89 444q0 165 74.5 273t193.5 108q69 0 132.5 -33.5t125.5 -98.5q37 -46 66 -65.5t63 -19.5q37 0 64.5 52.5t27.5 128.5l194 -28q0 -164 -76.5 -273.5t-193.5 -109.5q-71 0 -131.5 32t-124.5 102q-40 45 -68 64.5t-63 19.5q-38 0 -64.5 -51.5t-26.5 -126.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="534" d="M125 -374v949h285v-949h-285zM128 821v261h280v-261h-280z" />
<glyph unicode="&#xa2;" horiz-adv-x="1031" d="M89 470v139q0 189 87.5 321t252.5 163v225h184v-225q136 -29 215 -137.5t79 -276.5h-266q0 88 -29.5 141.5t-89.5 53.5q-85 0 -117 -72t-32 -193v-139q0 -124 32 -194t119 -70q58 0 87.5 43t29.5 124h266q0 -149 -81 -252.5t-213 -131.5v-234h-184v233q-166 30 -253 161 t-87 321z" />
<glyph unicode="&#xa3;" horiz-adv-x="1055" d="M92 591v225h122l-7 209q0 211 105 331.5t282 120.5q188 0 293 -113t102 -297l-3 -6h-276q0 96 -34 142t-83 46q-48 0 -74.5 -58.5t-26.5 -165.5l8 -209h280v-225h-270l3 -82q0 -78 -29.5 -151t-83.5 -131h600v-227h-855v227h8q36 12 54 94.5t18 171.5l-3 98h-130z" />
<glyph unicode="&#xa4;" horiz-adv-x="1257" d="M74 110l122 140q-45 76 -68.5 167t-23.5 191q0 103 25.5 196.5t73.5 172.5l-129 150l130 137l123 -142q65 54 142.5 83t161.5 29t161.5 -30t143.5 -84l125 145l132 -138l-133 -153q46 -78 71.5 -171.5t25.5 -194.5q0 -99 -23.5 -189t-66.5 -166l126 -143l-132 -137 l-114 131q-67 -60 -147.5 -92t-168.5 -32t-168 31.5t-147 90.5l-112 -128zM276 608q0 -189 103 -318.5t252 -129.5q147 0 250 129.5t103 318.5q0 187 -103 316.5t-250 129.5q-149 0 -252 -129.5t-103 -316.5z" />
<glyph unicode="&#xa5;" horiz-adv-x="1082" d="M22 1456h310l207 -561h6l206 561h310l-318 -719h189v-200h-253v-111h253v-198h-253v-228h-283v228h-271v198h271v111h-271v200h215z" />
<glyph unicode="&#xa6;" horiz-adv-x="467" d="M108 -270v791h251v-791h-251zM108 698v758h251v-758h-251z" />
<glyph unicode="&#xa7;" horiz-adv-x="1115" d="M84 533q0 88 36.5 156.5t106.5 113.5q-63 51 -94.5 122t-31.5 171q0 172 123 276.5t329 104.5q210 0 329 -111.5t115 -310.5l-2 -6h-276q0 87 -43.5 143.5t-122.5 56.5q-84 0 -125 -42.5t-41 -108.5q0 -74 43 -112.5t181 -85.5q210 -63 309 -155.5t99 -262.5 q0 -90 -37 -157.5t-105 -110.5q62 -51 93.5 -122t31.5 -171q0 -177 -121.5 -277t-326.5 -100q-201 0 -335 99t-129 317l2 6h276q0 -105 52.5 -149.5t133.5 -44.5q78 0 121 40.5t43 107.5q0 66 -47.5 106t-180.5 89q-208 64 -307 156.5t-99 261.5zM368 564q0 -80 41.5 -121 t177.5 -94q57 -19 67 -22.5l30 -10.5q27 23 41.5 58t14.5 79q0 71 -47.5 116t-177.5 97q-25 7 -49.5 16t-49.5 19q-25 -23 -36.5 -58t-11.5 -79z" />
<glyph unicode="&#xa8;" horiz-adv-x="1000" d="M143 1258v198h251v-198h-251zM592 1258v198h250v-198h-250z" />
<glyph unicode="&#xa9;" horiz-adv-x="1433" d="M82 729q0 315 182.5 531t444.5 216q261 0 444.5 -216t183.5 -531q0 -316 -184 -533t-444 -217q-261 0 -444 217t-183 533zM193 729q0 -266 150.5 -448.5t365.5 -181.5q214 -1 364.5 181.5t150.5 448.5q0 264 -150.5 445.5t-364.5 181.5q-215 0 -365.5 -181.5 t-150.5 -445.5zM386 669v119q0 173 83.5 280t226.5 107q140 0 219 -79.5t76 -228.5l-3 -6h-136q0 96 -39 140.5t-117 45.5q-81 -1 -124 -72t-43 -186v-120q0 -118 43 -188.5t124 -70.5q78 0 116.5 43.5t38.5 142.5h136l3 -6q3 -151 -75.5 -229.5t-218.5 -78.5 q-143 0 -226.5 106t-83.5 281z" />
<glyph unicode="&#xaa;" horiz-adv-x="785" d="M98 920q0 109 72.5 169t212.5 60h106v53q0 65 -22.5 99.5t-66.5 34.5q-51 0 -79 -27.5t-28 -78.5l-150 13l-2 6q-5 98 67.5 163t191.5 65q114 0 182 -71.5t68 -204.5v-314q0 -51 5 -95t17 -86h-162q-7 23 -11.5 47t-6.5 48q-27 -48 -73 -78.5t-110 -30.5 q-100 0 -155.5 61.5t-55.5 166.5zM258 924q0 -46 22.5 -70.5t68.5 -24.5q39 0 82 30t58 66v112h-105q-59 0 -92.5 -33.5t-33.5 -79.5z" />
<glyph unicode="&#xab;" horiz-adv-x="904" d="M55 507v19l233 389h176l-195 -399l195 -397h-176zM407 507v19l233 389h176l-195 -399l195 -397h-176z" />
<glyph unicode="&#xac;" horiz-adv-x="972" d="M115 638v163h710v-426h-183v263h-527z" />
<glyph unicode="&#xad;" horiz-adv-x="748" d="M120 511v228h497v-228h-497z" />
<glyph unicode="&#xae;" horiz-adv-x="1433" d="M82 729q0 315 183 531t445 216q260 0 443.5 -216t183.5 -531q0 -316 -183.5 -533t-443.5 -217q-262 0 -445 217t-183 533zM194 729q0 -266 150.5 -448.5t365.5 -181.5q214 -1 364 181.5t150 448.5q0 264 -150 445.5t-364 181.5q-215 0 -365.5 -181.5t-150.5 -445.5z M445 316v850h251q134 0 212 -68t78 -193q0 -58 -26 -101.5t-76 -74.5q53 -30 77 -84.5t24 -129.5v-56q0 -42 3 -74t11 -53v-16h-143q-8 21 -9.5 61.5t-1.5 82.5v54q0 73 -29.5 107t-94.5 34h-136v-339h-140zM585 783h112q64 0 107.5 31.5t43.5 89.5q0 74 -34 104t-118 30 h-111v-255z" />
<glyph unicode="&#xaf;" horiz-adv-x="949" d="M146 1297v160h654v-160h-654z" />
<glyph unicode="&#xb0;" horiz-adv-x="725" d="M117 1203q0 112 72.5 193t173.5 81q99 0 170.5 -81t71.5 -193q0 -113 -71 -192t-171 -79q-102 0 -174 79t-72 192zM255 1203q0 -55 31.5 -92t76.5 -37q43 0 73.5 36.5t30.5 92.5t-30.5 94t-73.5 38q-45 0 -76.5 -38.5t-31.5 -93.5z" />
<glyph unicode="&#xb1;" horiz-adv-x="992" d="M87 721v235h281v361h250v-361h279v-235h-279v-382h-250v382h-281zM98 7v230h705v-230h-705z" />
<glyph unicode="&#xb2;" horiz-adv-x="748" d="M100 1221q-5 107 71.5 182.5t205.5 75.5q126 0 194.5 -64.5t68.5 -182.5q0 -83 -48.5 -149t-155.5 -163l-79 -96l2 -5h286v-152h-539v152l262 254q47 49 60 82.5t13 77.5q0 41 -16.5 67t-53.5 26q-40 0 -59.5 -30.5t-19.5 -80.5h-190z" />
<glyph unicode="&#xb3;" horiz-adv-x="740" d="M85 895l2 6h191q0 -44 23 -69t69 -25q39 0 64.5 24.5t25.5 70.5q0 51 -27.5 79t-78.5 28h-91v127h91q48 0 70.5 25t22.5 73q0 39 -20.5 65t-60.5 26q-39 0 -58.5 -22.5t-19.5 -55.5h-189l-2 6q-6 102 70.5 163.5t193.5 61.5q131 0 208 -59.5t77 -169.5 q0 -55 -30.5 -100.5t-83.5 -71.5q60 -24 93 -71.5t33 -115.5q0 -112 -77 -173.5t-209 -61.5q-130 0 -211.5 63t-75.5 177z" />
<glyph unicode="&#xb4;" horiz-adv-x="683" d="M100 1212l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xb5;" horiz-adv-x="1113" d="M120 -416v1498h285v-637q1 -137 33.5 -186.5t100.5 -49.5q52 0 88.5 24t59.5 70v779h284v-1082h-267l-4 51q-35 -36 -78 -54t-93 -18q-36 0 -67 9t-57 26v-430h-285z" />
<glyph unicode="&#xb6;" horiz-adv-x="951" d="M56 988q0 207 109.5 337.5t306.5 130.5h351v-1456h-286v520h-65q-197 0 -306.5 129.5t-109.5 338.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="566" d="M140 560v262h278v-262h-278z" />
<glyph unicode="&#xb8;" horiz-adv-x="493" d="M83 -134l27 141h213l-9 -59q51 -11 86.5 -52.5t35.5 -120.5q0 -108 -80.5 -172.5t-227.5 -64.5l-6 163q34 0 53.5 20.5t19.5 63.5q0 42 -25.5 59t-86.5 22z" />
<glyph unicode="&#xb9;" horiz-adv-x="513" d="M102 1298v156l303 23v-812h-200v634z" />
<glyph unicode="&#xba;" horiz-adv-x="811" d="M104 1027v115q0 148 81 241.5t217 93.5t216.5 -93.5t80.5 -241.5v-115q0 -150 -80.5 -242.5t-215.5 -92.5q-137 0 -218 92.5t-81 242.5zM265 1027q0 -89 35 -142.5t103 -53.5q65 0 100 53.5t35 142.5v115q0 85 -35 139.5t-101 54.5q-67 0 -102 -54.5t-35 -139.5v-115z " />
<glyph unicode="&#xbb;" horiz-adv-x="905" d="M60 152l195 398l-195 399h176l233 -389v-19l-233 -389h-176zM422 152l195 398l-195 399h176l233 -389v-19l-233 -389h-176z" />
<glyph unicode="&#xbc;" horiz-adv-x="1260" d="M99 1297v156l303 23v-812h-200v634zM199 192l601 1138l134 -74l-601 -1138zM593 264l356 534v3h200v-507h75v-154h-75v-140h-200v140h-343zM794 294h155v253l-6 2l-7 -12z" />
<glyph unicode="&#xbd;" horiz-adv-x="1317" d="M82 1297v156l303 23v-812h-200v634zM192 192l601 1138l134 -74l-601 -1138zM693 554q-5 107 71.5 182.5t205.5 75.5q126 0 194.5 -64.5t68.5 -182.5q0 -83 -48.5 -149t-155.5 -163l-79 -96l2 -5h286v-152h-539v152l262 254q47 49 60 82.5t13 77.5q0 41 -16.5 67t-53.5 26 q-40 0 -59.5 -30.5t-19.5 -80.5h-190z" />
<glyph unicode="&#xbe;" horiz-adv-x="1452" d="M71 896l2 6h191q0 -44 23 -69t69 -25q39 0 64.5 24.5t25.5 70.5q0 51 -27.5 79t-78.5 28h-91v127h91q48 0 70.5 25t22.5 73q0 39 -20.5 65t-60.5 26q-39 0 -58.5 -22.5t-19.5 -55.5h-189l-2 6q-6 102 70.5 163.5t193.5 61.5q131 0 208 -59.5t77 -169.5 q0 -55 -30.5 -100.5t-83.5 -71.5q60 -24 93 -71.5t33 -115.5q0 -112 -77 -173.5t-209 -61.5q-130 0 -211.5 63t-75.5 177zM384 192l601 1138l134 -74l-601 -1138zM747 264l356 534v3h200v-507h75v-154h-75v-140h-200v140h-343zM948 294h155v253l-6 2l-7 -12z" />
<glyph unicode="&#xbf;" horiz-adv-x="909" d="M63 32q0 125 62.5 231t159.5 179q51 44 69 92.5t18 133.5h284q-2 -137 -41 -203t-147 -158q-57 -57 -89.5 -123t-32.5 -151q0 -91 37 -144.5t107 -53.5q52 0 91.5 46t41.5 131h277l2 -6q1 -196 -113.5 -298t-298.5 -102q-200 0 -313.5 115t-113.5 311zM373 834v248h283 v-248h-283z" />
<glyph unicode="&#xc0;" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM243 1819l3 6h298l175 -266h-230zM439 538h268l-131 515h-6z" />
<glyph unicode="&#xc1;" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM429 1560l176 266h299l3 -6l-249 -260h-229zM439 538h268l-131 515h-6z" />
<glyph unicode="&#xc2;" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM244 1591v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217zM439 538h268l-131 515h-6z" />
<glyph unicode="&#xc3;" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM248 1645q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45q0 -95 -51 -161.5t-130 -66.5q-59 0 -136.5 44t-121.5 44q-27 0 -46 -33t-19 -79zM439 538h268l-131 515 h-6z" />
<glyph unicode="&#xc4;" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM224 1606v198h251v-198h-251zM439 538h268l-131 515h-6zM673 1606v198h250v-198h-250z" />
<glyph unicode="&#xc5;" horiz-adv-x="1134" d="M16 0l410 1456h296l409 -1456h-287l-79 309h-384l-78 -309h-287zM381 1739q0 80 56 135t138 55q80 0 135 -55t55 -135q0 -82 -54.5 -134t-135.5 -52q-82 0 -138 52.5t-56 133.5zM439 538h268l-131 515h-6zM489 1739q0 -42 24 -68.5t62 -26.5q37 0 60 26t23 69t-23 70 t-60 27q-38 0 -62 -27t-24 -70z" />
<glyph unicode="&#xc6;" horiz-adv-x="1656" d="M9 0l639 1456h891v-231h-481l12 -363h400v-230h-392l15 -402h498v-230h-774l-12 339h-329l-136 -339h-331zM573 578h224l-17 497l-6 1z" />
<glyph unicode="&#xc7;" horiz-adv-x="1088" d="M74 510v435q0 253 130.5 392.5t349.5 139.5q232 0 350.5 -124t122.5 -367l-3 -6h-274q6 143 -39 206t-157 63q-96 0 -147 -75t-51 -227v-437q0 -154 54.5 -229t159.5 -75q103 0 143.5 59.5t35.5 203.5h274l3 -6q2 -240 -114 -362t-342 -122t-361 138.5t-135 392.5z M414 -134l27 141h213l-9 -59q51 -11 86.5 -52.5t35.5 -120.5q0 -108 -80.5 -172.5t-227.5 -64.5l-6 163q34 0 53.5 20.5t19.5 63.5q0 42 -25.5 59t-86.5 22z" />
<glyph unicode="&#xc8;" horiz-adv-x="1008" d="M110 0v1456h858v-228h-573v-362h489v-227h-489v-412h575v-227h-860zM183 1819l3 6h298l175 -266h-230z" />
<glyph unicode="&#xc9;" horiz-adv-x="1008" d="M110 0v1456h858v-228h-573v-362h489v-227h-489v-412h575v-227h-860zM369 1560l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xca;" horiz-adv-x="1008" d="M110 0v1456h858v-228h-573v-362h489v-227h-489v-412h575v-227h-860zM184 1591v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217z" />
<glyph unicode="&#xcb;" horiz-adv-x="1008" d="M110 0v1456h858v-228h-573v-362h489v-227h-489v-412h575v-227h-860zM164 1606v198h251v-198h-251zM613 1606v198h250v-198h-250z" />
<glyph unicode="&#xcc;" horiz-adv-x="534" d="M-61 1819l3 6h298l175 -266h-230zM125 0v1456h283v-1456h-283z" />
<glyph unicode="&#xcd;" horiz-adv-x="534" d="M123 1560l176 266h299l3 -6l-249 -260h-229zM125 0v1456h283v-1456h-283z" />
<glyph unicode="&#xce;" horiz-adv-x="534" d="M-60 1591v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217zM125 0v1456h283v-1456h-283z" />
<glyph unicode="&#xcf;" horiz-adv-x="534" d="M-80 1606v198h251v-198h-251zM125 0v1456h283v-1456h-283zM369 1606v198h250v-198h-250z" />
<glyph unicode="&#xd0;" horiz-adv-x="1181" d="M31 655v175h109v626h440q224 0 370 -169.5t146 -436.5v-245q0 -267 -146 -436t-370 -169h-440v655h-109zM425 227h139q119 0 183.5 103.5t64.5 274.5v247q0 170 -64.5 273t-183.5 103h-139v-398h187v-175h-187v-428z" />
<glyph unicode="&#xd1;" horiz-adv-x="1241" d="M110 0v1456h285l445 -930l6 2v928h283v-1456h-283l-445 931l-6 -2v-929h-285zM294 1645q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45q0 -95 -51 -161.5t-130 -66.5q-59 0 -136.5 44t-121.5 44q-27 0 -46 -33t-19 -79z" />
<glyph unicode="&#xd2;" horiz-adv-x="1166" d="M75 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -256 -139 -400t-370 -144t-369 144t-138 400zM253 1840l3 6h298l175 -266h-230zM357 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5t-169 79.5q-112 0 -168 -79t-56 -236 v-410z" />
<glyph unicode="&#xd3;" horiz-adv-x="1166" d="M75 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -256 -139 -400t-370 -144t-369 144t-138 400zM357 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5t-169 79.5q-112 0 -168 -79t-56 -236v-410zM439 1581l176 266h299l3 -6 l-249 -260h-229z" />
<glyph unicode="&#xd4;" horiz-adv-x="1166" d="M75 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -256 -139 -400t-370 -144t-369 144t-138 400zM254 1612v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217zM357 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5 t-169 79.5q-112 0 -168 -79t-56 -236v-410z" />
<glyph unicode="&#xd5;" horiz-adv-x="1166" d="M75 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -256 -139 -400t-370 -144t-369 144t-138 400zM258 1666q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45q0 -95 -51 -161.5t-130 -66.5q-59 0 -136.5 44 t-121.5 44q-27 0 -46 -33t-19 -79zM357 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5t-169 79.5q-112 0 -168 -79t-56 -236v-410z" />
<glyph unicode="&#xd6;" horiz-adv-x="1166" d="M75 523v408q0 255 138 400.5t368 145.5t370 -145.5t140 -400.5v-408q0 -256 -139 -400t-370 -144t-369 144t-138 400zM234 1627v198h251v-198h-251zM357 523q0 -158 57 -237t168 -79q110 0 168 79t58 237v410q0 156 -58 235.5t-169 79.5q-112 0 -168 -79t-56 -236v-410z M683 1627v198h250v-198h-250z" />
<glyph unicode="&#xd7;" horiz-adv-x="978" d="M57 1000l167 163l262 -302l262 302l166 -163l-275 -316l274 -315l-167 -163l-261 300l-260 -300l-165 163l272 314z" />
<glyph unicode="&#xd8;" horiz-adv-x="1215" d="M81 523v408q0 255 138 400.5t368 145.5q90 0 168.5 -24t141.5 -69l65 132h129l-106 -216q54 -71 83 -164t29 -205v-408q0 -256 -139 -400t-370 -144q-63 0 -120.5 11t-107.5 34l-57 -117h-127l86 176q-87 70 -134 181.5t-47 258.5zM363 523q0 -54 6 -97.5t19 -70.5l6 -1 l382 781q-28 56 -75.5 84.5t-113.5 28.5q-112 0 -168 -79t-56 -236v-410zM466 241q24 -18 54.5 -26t67.5 -8q110 0 168 79t58 237v410v4l-6 1z" />
<glyph unicode="&#xd9;" horiz-adv-x="1176" d="M94 465v991h284v-991q0 -133 55 -196t155 -63q103 0 157 60t54 199v991h283v-991q0 -233 -136.5 -359.5t-357.5 -126.5t-357.5 127t-136.5 359zM256 1819l3 6h298l175 -266h-230z" />
<glyph unicode="&#xda;" horiz-adv-x="1176" d="M94 465v991h284v-991q0 -133 55 -196t155 -63q103 0 157 60t54 199v991h283v-991q0 -233 -136.5 -359.5t-357.5 -126.5t-357.5 127t-136.5 359zM442 1560l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xdb;" horiz-adv-x="1176" d="M94 465v991h284v-991q0 -133 55 -196t155 -63q103 0 157 60t54 199v991h283v-991q0 -233 -136.5 -359.5t-357.5 -126.5t-357.5 127t-136.5 359zM257 1591v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217z" />
<glyph unicode="&#xdc;" horiz-adv-x="1176" d="M94 465v991h284v-991q0 -133 55 -196t155 -63q103 0 157 60t54 199v991h283v-991q0 -233 -136.5 -359.5t-357.5 -126.5t-357.5 127t-136.5 359zM237 1606v198h251v-198h-251zM686 1606v198h250v-198h-250z" />
<glyph unicode="&#xdd;" horiz-adv-x="1124" d="M7 1456h311l240 -624h6l243 624h309l-416 -938v-518h-284v536zM425 1559l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xde;" horiz-adv-x="1079" d="M108 0v1456h285v-268h165q223 0 346.5 -124t123.5 -326q0 -203 -123.5 -326.5t-346.5 -123.5h-165v-288h-285zM393 515h165q94 0 139.5 63t45.5 158q0 96 -46 160.5t-139 64.5h-163l-2 2v-448z" />
<glyph unicode="&#xdf;" horiz-adv-x="1132" d="M119 0v1104q0 223 114 344t315 121q161 0 268 -96t107 -269q0 -105 -42.5 -200.5t-42.5 -168.5q0 -53 118.5 -194t118.5 -282q0 -192 -98.5 -286t-296.5 -94q-66 0 -131 15t-98 40l50 224q32 -23 77 -38t100 -15q53 0 84 38t31 105q0 71 -120 203.5t-120 272.5 q0 94 44 192t44 174q0 63 -35.5 108t-80.5 45q-54 0 -88.5 -65.5t-34.5 -177.5v-1100h-283z" />
<glyph unicode="&#xe0;" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6q-5 141 104.5 240t288.5 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5t-133.5 -39.5 q-134 0 -214.5 88t-80.5 235zM136 1497l3 6h298l175 -266h-230zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107q-65 0 -94 -45t-29 -114z" />
<glyph unicode="&#xe1;" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6q-5 141 104.5 240t288.5 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5t-133.5 -39.5 q-134 0 -214.5 88t-80.5 235zM322 1238l176 266h299l3 -6l-249 -260h-229zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107q-65 0 -94 -45t-29 -114z" />
<glyph unicode="&#xe2;" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6q-5 141 104.5 240t288.5 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5t-133.5 -39.5 q-134 0 -214.5 88t-80.5 235zM137 1269v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107q-65 0 -94 -45t-29 -114z" />
<glyph unicode="&#xe3;" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6q-5 141 104.5 240t288.5 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5t-133.5 -39.5 q-134 0 -214.5 88t-80.5 235zM141 1323q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45q0 -95 -51 -161.5t-130 -66.5q-59 0 -136.5 44t-121.5 44q-27 0 -46 -33t-19 -79zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107 q-65 0 -94 -45t-29 -114z" />
<glyph unicode="&#xe4;" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6q-5 141 104.5 240t288.5 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5t-133.5 -39.5 q-134 0 -214.5 88t-80.5 235zM119 1284v198h251v-198h-251zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107q-65 0 -94 -45t-29 -114zM568 1284v198h250v-198h-250z" />
<glyph unicode="&#xe5;" horiz-adv-x="944" d="M57 302q0 159 102.5 247t304.5 88h107v88q0 79 -28.5 121.5t-85.5 42.5q-48 0 -72 -34t-24 -99l-275 1l-3 6q-5 141 104.5 240t288.5 99q169 0 274.5 -98.5t105.5 -280.5v-438q0 -80 11 -149t34 -136h-282q-12 27 -21.5 59t-14.5 65q-40 -66 -97.5 -105.5t-133.5 -39.5 q-134 0 -214.5 88t-80.5 235zM274 1417q0 80 56 135t138 55q80 0 135 -55t55 -135q0 -82 -54.5 -134t-135.5 -52q-82 0 -138 52.5t-56 133.5zM341 315q0 -54 25 -88t68 -34t79.5 23t57.5 59v199h-107q-65 0 -94 -45t-29 -114zM382 1417q0 -42 24 -68.5t62 -26.5q37 0 60 26 t23 69t-23 70t-60 27q-38 0 -62 -27t-24 -70z" />
<glyph unicode="&#xe6;" horiz-adv-x="1479" d="M41 317q0 159 110.5 245.5t322.5 86.5h136v56q0 79 -30 124t-83 45q-57 0 -89.5 -37t-32.5 -92l-275 17l-2 6q-5 145 106.5 239.5t295.5 94.5q83 0 153 -23.5t121 -68.5q51 44 118 68t149 24q181 0 285 -131t104 -356v-160h-535q5 -117 51.5 -183t144.5 -66 q77 0 127.5 18.5t115.5 59.5l71 -183q-53 -49 -147.5 -85.5t-200.5 -36.5q-108 0 -192 38t-142 110q-52 -65 -135.5 -106.5t-196.5 -41.5q-168 0 -259 90.5t-91 247.5zM324 313q0 -61 30 -95t92 -34q41 0 88 27t76 65v190h-134q-71 0 -111.5 -44.5t-40.5 -108.5zM896 644 h257v27q0 94 -28 148.5t-84 54.5q-73 0 -106 -60t-39 -170z" />
<glyph unicode="&#xe7;" horiz-adv-x="910" d="M52 470v139q0 216 112 354.5t321 138.5q176 0 279.5 -113t100.5 -305l-2 -5h-259q0 88 -29.5 141.5t-89.5 53.5q-85 0 -117 -72t-32 -193v-139q0 -124 32 -194t119 -70q58 0 87.5 43t29.5 124h258l3 -6q3 -170 -104.5 -279t-273.5 -109q-210 0 -322.5 137t-112.5 354z M346 -134l27 141h213l-9 -59q51 -11 86.5 -52.5t35.5 -120.5q0 -108 -80.5 -172.5t-227.5 -64.5l-6 163q34 0 53.5 20.5t19.5 63.5q0 42 -25.5 59t-86.5 22z" />
<glyph unicode="&#xe8;" horiz-adv-x="938" d="M69 451v152q0 219 111.5 359t308.5 140q190 0 294 -127t104 -346v-174h-535v-4q0 -107 48.5 -176t146.5 -69q80 0 130 18t119 60l72 -181q-56 -54 -149.5 -89t-205.5 -35q-204 0 -324 134t-120 338zM135 1498l3 6h298l175 -266h-230zM353 645h255v40q0 90 -28 139.5 t-91 49.5q-68 0 -100 -62t-36 -167z" />
<glyph unicode="&#xe9;" horiz-adv-x="938" d="M69 451v152q0 219 111.5 359t308.5 140q190 0 294 -127t104 -346v-174h-535v-4q0 -107 48.5 -176t146.5 -69q80 0 130 18t119 60l72 -181q-56 -54 -149.5 -89t-205.5 -35q-204 0 -324 134t-120 338zM321 1239l176 266h299l3 -6l-249 -260h-229zM353 645h255v40 q0 90 -28 139.5t-91 49.5q-68 0 -100 -62t-36 -167z" />
<glyph unicode="&#xea;" horiz-adv-x="938" d="M69 451v152q0 219 111.5 359t308.5 140q190 0 294 -127t104 -346v-174h-535v-4q0 -107 48.5 -176t146.5 -69q80 0 130 18t119 60l72 -181q-56 -54 -149.5 -89t-205.5 -35q-204 0 -324 134t-120 338zM136 1270v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217z M353 645h255v40q0 90 -28 139.5t-91 49.5q-68 0 -100 -62t-36 -167z" />
<glyph unicode="&#xeb;" horiz-adv-x="938" d="M69 451v152q0 219 111.5 359t308.5 140q190 0 294 -127t104 -346v-174h-535v-4q0 -107 48.5 -176t146.5 -69q80 0 130 18t119 60l72 -181q-56 -54 -149.5 -89t-205.5 -35q-204 0 -324 134t-120 338zM118 1285v198h251v-198h-251zM353 645h255v40q0 90 -28 139.5t-91 49.5 q-68 0 -100 -62t-36 -167zM567 1285v198h250v-198h-250z" />
<glyph unicode="&#xec;" horiz-adv-x="513" d="M-73 1476l3 6h298l175 -266h-230zM113 0v1082h285v-1082h-285z" />
<glyph unicode="&#xed;" horiz-adv-x="513" d="M111 1217l176 266h299l3 -6l-249 -260h-229zM113 0v1082h285v-1082h-285z" />
<glyph unicode="&#xee;" horiz-adv-x="513" d="M-72 1250v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217zM113 0v1082h285v-1082h-285z" />
<glyph unicode="&#xef;" horiz-adv-x="513" d="M-92 1263v198h251v-198h-251zM113 0v1082h285v-1082h-285zM357 1263v198h250v-198h-250z" />
<glyph unicode="&#xf0;" horiz-adv-x="1053" d="M38 466q0 227 113.5 362t313.5 135q59 0 112.5 -19t93.5 -52l4 4q-17 69 -47 130.5t-71 111.5l-181 -119l-72 111l155 101q-30 21 -62 38t-65 31l89 217q72 -21 138.5 -56t125.5 -83l173 112l70 -110l-147 -96q98 -117 152.5 -274.5t54.5 -345.5v-71q0 -270 -137.5 -442 t-342.5 -172q-208 0 -339 139.5t-131 347.5zM322 466q0 -111 51.5 -185.5t137.5 -74.5q90 0 141 108t51 279v70q-28 38 -76.5 62.5t-111.5 24.5q-93 0 -143 -77.5t-50 -206.5z" />
<glyph unicode="&#xf1;" d="M87 0v1082h265l12 -149q45 80 110.5 124.5t144.5 44.5q135 0 212.5 -104t77.5 -327v-671h-285v671q0 112 -31.5 157.5t-97.5 45.5q-38 0 -70 -20t-54 -55v-799h-284zM170 1323q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45 q0 -95 -51 -161.5t-130 -66.5q-59 0 -136.5 44t-121.5 44q-27 0 -46 -33t-19 -79z" />
<glyph unicode="&#xf2;" d="M58 473v134q0 218 115.5 356.5t323.5 138.5t324 -138.5t116 -356.5v-134q0 -220 -116 -357t-323 -137q-209 0 -324.5 137t-115.5 357zM165 1497l3 6h298l175 -266h-230zM341 473q0 -125 35 -196t122 -71q84 0 119.5 71.5t35.5 195.5v134q0 122 -35.5 194.5t-120.5 72.5 t-120.5 -73t-35.5 -194v-134z" />
<glyph unicode="&#xf3;" d="M58 473v134q0 218 115.5 356.5t323.5 138.5t324 -138.5t116 -356.5v-134q0 -220 -116 -357t-323 -137q-209 0 -324.5 137t-115.5 357zM341 473q0 -125 35 -196t122 -71q84 0 119.5 71.5t35.5 195.5v134q0 122 -35.5 194.5t-120.5 72.5t-120.5 -73t-35.5 -194v-134z M351 1238l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xf4;" d="M58 473v134q0 218 115.5 356.5t323.5 138.5t324 -138.5t116 -356.5v-134q0 -220 -116 -357t-323 -137q-209 0 -324.5 137t-115.5 357zM166 1269v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217zM341 473q0 -125 35 -196t122 -71q84 0 119.5 71.5t35.5 195.5 v134q0 122 -35.5 194.5t-120.5 72.5t-120.5 -73t-35.5 -194v-134z" />
<glyph unicode="&#xf5;" d="M58 473v134q0 218 115.5 356.5t323.5 138.5t324 -138.5t116 -356.5v-134q0 -220 -116 -357t-323 -137q-209 0 -324.5 137t-115.5 357zM170 1323q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45q0 -95 -51 -161.5t-130 -66.5 q-59 0 -136.5 44t-121.5 44q-27 0 -46 -33t-19 -79zM341 473q0 -125 35 -196t122 -71q84 0 119.5 71.5t35.5 195.5v134q0 122 -35.5 194.5t-120.5 72.5t-120.5 -73t-35.5 -194v-134z" />
<glyph unicode="&#xf6;" d="M58 473v134q0 218 115.5 356.5t323.5 138.5t324 -138.5t116 -356.5v-134q0 -220 -116 -357t-323 -137q-209 0 -324.5 137t-115.5 357zM146 1284v198h251v-198h-251zM341 473q0 -125 35 -196t122 -71q84 0 119.5 71.5t35.5 195.5v134q0 122 -35.5 194.5t-120.5 72.5 t-120.5 -73t-35.5 -194v-134zM595 1284v198h250v-198h-250z" />
<glyph unicode="&#xf7;" horiz-adv-x="1005" d="M59 577v221h878v-221h-878zM357 167v230h281v-230h-281zM357 971v230h281v-230h-281z" />
<glyph unicode="&#xf8;" horiz-adv-x="997" d="M58 473v134q0 218 115.5 356.5t323.5 138.5q40 0 78 -6t73 -17l57 138h152l-85 -206q80 -66 122.5 -170.5t42.5 -233.5v-134q0 -220 -116 -357t-323 -137q-40 0 -75.5 5.5t-68.5 14.5l-58 -142h-151l85 206q-85 64 -128.5 170t-43.5 240zM341 473q0 -35 1.5 -62t6.5 -43 l6 -1l203 494q-14 6 -29.5 9.5t-31.5 3.5q-85 0 -120.5 -73t-35.5 -194v-134zM444 215q12 -5 25 -7t29 -2q84 0 119.5 71.5t35.5 195.5v134q0 27 -2 49.5t-4 36.5l-6 1z" />
<glyph unicode="&#xf9;" d="M85 428v654h284v-656q0 -115 28 -167t83 -52q47 0 82.5 17.5t60.5 51.5v806h285v-1082h-250l-17 125q-44 -71 -106.5 -108.5t-141.5 -37.5q-145 0 -226.5 109.5t-81.5 339.5zM163 1476l3 6h298l175 -266h-230z" />
<glyph unicode="&#xfa;" d="M85 428v654h284v-656q0 -115 28 -167t83 -52q47 0 82.5 17.5t60.5 51.5v806h285v-1082h-250l-17 125q-44 -71 -106.5 -108.5t-141.5 -37.5q-145 0 -226.5 109.5t-81.5 339.5zM349 1217l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xfb;" d="M85 428v654h284v-656q0 -115 28 -167t83 -52q47 0 82.5 17.5t60.5 51.5v806h285v-1082h-250l-17 125q-44 -71 -106.5 -108.5t-141.5 -37.5q-145 0 -226.5 109.5t-81.5 339.5zM164 1250v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217z" />
<glyph unicode="&#xfc;" d="M85 428v654h284v-656q0 -115 28 -167t83 -52q47 0 82.5 17.5t60.5 51.5v806h285v-1082h-250l-17 125q-44 -71 -106.5 -108.5t-141.5 -37.5q-145 0 -226.5 109.5t-81.5 339.5zM144 1263v198h251v-198h-251zM593 1263v198h250v-198h-250z" />
<glyph unicode="&#xfd;" horiz-adv-x="909" d="M5 1082h305l130 -638l2 -11l158 649h304l-365 -1245q-41 -117 -109.5 -195.5t-209.5 -78.5q-35 0 -62 6t-72 18l33 212q17 -3 24.5 -4.5t16.5 -1.5q62 0 93.5 32.5t45.5 85.5l25 80zM307 1217l176 266h299l3 -6l-249 -260h-229z" />
<glyph unicode="&#xfe;" horiz-adv-x="999" d="M93 -416v1976h284v-570q38 54 89 83t116 29q171 0 265 -140.5t94 -370.5v-133q0 -216 -94 -347.5t-263 -131.5q-66 0 -117.5 26.5t-89.5 78.5v-500h-284zM377 277q20 -35 52.5 -53t79.5 -18q79 0 113.5 67t34.5 185v133q0 128 -36 205.5t-113 77.5q-45 0 -78 -22.5 t-53 -63.5v-511z" />
<glyph unicode="&#xff;" horiz-adv-x="909" d="M5 1082h305l130 -638l2 -11l158 649h304l-365 -1245q-41 -117 -109.5 -195.5t-209.5 -78.5q-35 0 -62 6t-72 18l33 212q17 -3 24.5 -4.5t16.5 -1.5q62 0 93.5 32.5t45.5 85.5l25 80zM104 1263v198h251v-198h-251zM553 1263v198h250v-198h-250z" />
<glyph unicode="&#x152;" horiz-adv-x="1709" d="M87 576v304q0 265 146 431t382 166q57 0 116.5 -6t124.5 -15h781v-228h-573v-362h489v-227h-489v-412h575v-227h-783q-76 -10 -130.5 -15.5t-109.5 -5.5q-235 0 -382 166t-147 431zM371 576q0 -179 65 -274.5t180 -95.5q41 0 82 3t81 10v1018q-41 6 -82 9.5t-82 3.5 q-116 0 -180 -95t-64 -273v-306z" />
<glyph unicode="&#x153;" horiz-adv-x="1571" d="M75 529v22q0 244 115 397.5t323 153.5q92 0 168 -32.5t132 -92.5q53 60 125 92.5t160 32.5q190 0 294 -130.5t104 -355.5v-161h-532q8 -111 56.5 -180t135.5 -69q80 0 131 18t119 60l73 -181q-57 -54 -151 -89t-206 -35q-94 0 -171.5 33t-134.5 95q-56 -63 -132 -95.5 t-170 -32.5q-209 0 -324 152.5t-115 397.5zM359 529q0 -150 34.5 -236t117.5 -81h6q82 -5 117 81.5t35 235.5v22q0 146 -35.5 233.5t-117.5 83.5h-6q-82 4 -116.5 -83.5t-34.5 -233.5v-22zM965 645h253v27q0 95 -28.5 148.5t-91.5 53.5q-61 0 -93 -61.5t-40 -167.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1124" d="M7 1456h311l240 -624h6l243 624h309l-416 -938v-518h-284v536zM220 1605v198h251v-198h-251zM669 1605v198h250v-198h-250z" />
<glyph unicode="&#x2c6;" horiz-adv-x="902" d="M118 1252v25l250 237h159l256 -240v-22h-222l-114 134l-112 -134h-217z" />
<glyph unicode="&#x2dc;" horiz-adv-x="867" d="M110 1272q0 93 51.5 161t129.5 68q46 0 129.5 -44t128.5 -44q27 0 46.5 32.5t19.5 80.5l148 -45q0 -95 -51 -161.5t-130 -66.5q-59 0 -136.5 44t-121.5 44q-27 0 -46 -33t-19 -79z" />
<glyph unicode="&#x2000;" horiz-adv-x="964" />
<glyph unicode="&#x2001;" horiz-adv-x="1929" />
<glyph unicode="&#x2002;" horiz-adv-x="964" />
<glyph unicode="&#x2003;" horiz-adv-x="1929" />
<glyph unicode="&#x2004;" horiz-adv-x="643" />
<glyph unicode="&#x2005;" horiz-adv-x="482" />
<glyph unicode="&#x2006;" horiz-adv-x="321" />
<glyph unicode="&#x2007;" horiz-adv-x="321" />
<glyph unicode="&#x2008;" horiz-adv-x="241" />
<glyph unicode="&#x2009;" horiz-adv-x="385" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="748" d="M120 511v228h497v-228h-497z" />
<glyph unicode="&#x2011;" horiz-adv-x="748" d="M120 511v228h497v-228h-497z" />
<glyph unicode="&#x2012;" horiz-adv-x="748" d="M120 511v228h497v-228h-497z" />
<glyph unicode="&#x2013;" horiz-adv-x="1212" d="M147 600v230h917v-230h-917z" />
<glyph unicode="&#x2014;" horiz-adv-x="1430" d="M123 600v230h1128v-230h-1128z" />
<glyph unicode="&#x2018;" horiz-adv-x="366" d="M41 1023v191l146 346h137l-50 -342v-195h-233z" />
<glyph unicode="&#x2019;" horiz-adv-x="366" d="M49 1024l49 344v192h234v-192l-146 -344h-137z" />
<glyph unicode="&#x201a;" horiz-adv-x="367" d="M41 -257l52 267v285h234v-271l-132 -281h-154z" />
<glyph unicode="&#x201c;" horiz-adv-x="667" d="M41 1023v191l146 346h137l-50 -342v-195h-233zM342 1023v191l146 346h137l-50 -342v-195h-233z" />
<glyph unicode="&#x201d;" horiz-adv-x="675" d="M43 1024l49 344v192h234v-192l-146 -344h-137zM350 1024l49 344v192h234v-192l-146 -344h-137z" />
<glyph unicode="&#x201e;" horiz-adv-x="661" d="M41 -217l52 254v263h217v-251l-148 -266h-121zM350 -217l52 261v256h217v-251l-148 -266h-121z" />
<glyph unicode="&#x2022;" horiz-adv-x="680" d="M126 710v96q0 100 59.5 164t158.5 64q101 0 161 -63.5t60 -164.5v-96q0 -101 -59.5 -163t-159.5 -62t-160 62.5t-60 162.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1347" d="M129 0v258h281v-258h-281zM543 0v258h281v-258h-281zM952 0v258h281v-258h-281z" />
<glyph unicode="&#x202f;" horiz-adv-x="385" />
<glyph unicode="&#x2039;" horiz-adv-x="563" d="M99 541v19l233 389h176l-195 -399l195 -397h-176z" />
<glyph unicode="&#x203a;" horiz-adv-x="541" d="M72 152l195 398l-195 399h176l233 -389v-19l-233 -389h-176z" />
<glyph unicode="&#x205f;" horiz-adv-x="482" />
<glyph unicode="&#x20ac;" horiz-adv-x="970" d="M65 453v200h121v117h-121v200h121v16q0 204 130 347.5t342 143.5q51 0 100.5 -8t107.5 -23l-20 -232q-45 16 -92.5 25.5t-95.5 9.5q-89 0 -138.5 -78.5t-49.5 -182.5v-18h336v-200h-336v-117h336v-200h-336v-12q0 -97 49.5 -166t139.5 -69q48 0 95.5 8t91.5 25l20 -229 q-50 -15 -102 -23t-105 -8q-212 0 -342.5 134.5t-130.5 327.5v12h-121z" />
<glyph unicode="&#x2122;" horiz-adv-x="1116" d="M89 1350v106h340v-106h-104v-433h-137v433h-99zM487 914v542h149l89 -360h6l89 360h143v-542h-120v251h-6l-76 -251h-67l-80 266l-6 -1v-265h-121z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1142" d="M23 876v206h133v120q0 182 94 280.5t264 98.5q33 0 66 -5.5t76 -15.5l-24 -218q-20 4 -38.5 7t-43.5 3q-54 0 -82 -39t-28 -111v-120h174v-206h-174v-876h-284v876h-133zM752 0v1560h284v-1560h-284z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1754" d="M23 876v206h133v120q0 182 94 280.5t264 98.5q33 0 66 -5.5t76 -15.5l-24 -218q-20 4 -38.5 7t-43.5 3q-54 0 -82 -39t-28 -111v-120h174v-206h-174v-876h-284v876h-133zM665 876v206h133v70q0 207 112 318t316 111q70 0 138.5 -15t153.5 -44l-40 -232q-65 22 -115.5 34 t-118.5 12q-80 0 -121 -47t-41 -137v-70h173v-206h-173v-876h-284v876h-133zM1363 0v1082h285v-1082h-285z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1789" d="M23 876v206h133v120q0 182 94 280.5t264 98.5q33 0 66 -5.5t76 -15.5l-24 -218q-20 4 -38.5 7t-43.5 3q-54 0 -82 -39t-28 -111v-120h174v-206h-174v-876h-284v876h-133zM670 876v206h133v120q0 182 94 280.5t264 98.5q33 0 66 -5.5t76 -15.5l-24 -218q-20 4 -38.5 7 t-43.5 3q-54 0 -82 -39t-28 -111v-120h174v-206h-174v-876h-284v876h-133zM1399 0v1560h284v-1560h-284z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-18" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="224" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="61" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="234" />
<hkern u1="F" u2="&#x201e;" k="234" />
<hkern u1="F" u2="&#x201a;" k="234" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="264" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="234" />
<hkern u1="F" u2="&#x2c;" k="234" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="92" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="97" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="43" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="80" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="114" />
<hkern u1="T" u2="&#xc6;" k="179" />
<hkern u1="T" u2="&#xbb;" k="216" />
<hkern u1="T" u2="&#xab;" k="328" />
<hkern u1="T" u2="w" k="57" />
<hkern u1="T" u2="r" k="75" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-32" />
<hkern u1="r" u2="f" k="-15" />
<hkern u1="t" u2="&#xf6;" k="20" />
<hkern u1="t" u2="&#xf5;" k="20" />
<hkern u1="t" u2="&#xf4;" k="20" />
<hkern u1="t" u2="&#xf3;" k="20" />
<hkern u1="t" u2="&#xf2;" k="20" />
<hkern u1="t" u2="o" k="20" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="61" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="61" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="61" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="61" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="61" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="61" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="129" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="87" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="69" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="94" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="m,n,p,ntilde" k="23" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
<hkern g1="L" g2="T" k="275" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
<hkern g1="L" g2="V" k="175" />
<hkern g1="L" g2="W" k="143" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
<hkern g1="P" g2="X" k="31" />
<hkern g1="P" g2="Z" k="26" />
<hkern g1="P" g2="J" k="200" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
<hkern g1="T" g2="m,n,p,ntilde" k="109" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
<hkern g1="T" g2="s" k="116" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
<hkern g1="T" g2="J" k="240" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 72 KiB

View File

@ -0,0 +1,643 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="roboto_condensedbold_italic" horiz-adv-x="960" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="439" />
<glyph unicode="&#xfb01;" horiz-adv-x="1074" d="M61 0l175 876h-126l41 206h126l14 70q44 220 171 324.5t330 104.5q63 0 129.5 -15.5t139.5 -43.5l-85 -232q-58 22 -104 34t-111 12q-70 0 -120.5 -48t-67.5 -136l-14 -70h161l-41 -206h-161l-175 -876h-282zM603 0l216 1082h283l-216 -1082h-283z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="439" />
<glyph horiz-adv-x="26" />
<glyph unicode="&#x9;" horiz-adv-x="26" />
<glyph unicode=" " horiz-adv-x="439" />
<glyph unicode="&#x09;" horiz-adv-x="439" />
<glyph unicode="&#xa0;" horiz-adv-x="439" />
<glyph unicode="!" horiz-adv-x="500" d="M29 0l52 258h276l-52 -258h-276zM126 506l190 950h283l-190 -950h-283z" />
<glyph unicode="&#x22;" horiz-adv-x="591" d="M147 1046l39 239l44 275h196l-42 -263l-115 -251h-122zM440 1046l41 247l43 267h193l-42 -263l-114 -251h-121z" />
<glyph unicode="#" horiz-adv-x="993" d="M43 410l33 166h198l100 297h-178l33 167h202l140 416h170l-140 -416h121l140 416h171l-140 -416h176l-33 -167h-199l-100 -297h178l-33 -166h-201l-138 -410h-171l138 410h-122l-138 -410h-170l138 410h-175zM444 576h122l100 297h-122z" />
<glyph unicode="$" horiz-adv-x="984" d="M82 456h282q-23 -141 7 -196.5t96 -55.5q53 0 91 49.5t51 127.5q13 87 -8 134.5t-88 94.5q-172 87 -244.5 183.5t-42.5 278.5q27 172 132.5 277t259.5 124l35 212h142l-35 -217q133 -30 198.5 -151t35.5 -309h-282q19 122 -2 182.5t-71 60.5t-85 -51t-47 -129 q-13 -78 9 -125.5t91 -96.5q169 -92 240.5 -189.5t43.5 -276.5q-29 -178 -132 -279.5t-257 -119.5l-31 -199h-143l31 200q-146 22 -229 137t-48 334z" />
<glyph unicode="%" horiz-adv-x="1305" d="M223 184l800 1138l118 -74l-800 -1138zM225 1099l15 77q27 137 114.5 219t219.5 82q122 0 180.5 -87t33.5 -214l-15 -77q-28 -138 -114 -218.5t-219 -80.5q-122 0 -181.5 86.5t-33.5 212.5zM409 1099q-12 -60 4 -98t60 -38q40 0 72 40t44 96l15 77q12 61 -3 99.5 t-59 38.5q-40 0 -73.5 -41t-44.5 -97zM641 280l15 77q27 136 114.5 218t219.5 82q123 0 181 -87t33 -213l-15 -77q-28 -139 -113.5 -219.5t-218.5 -80.5q-122 0 -182 87t-34 213zM826 280q-13 -59 5.5 -98.5t57.5 -38.5q48 -1 76.5 37.5t40.5 99.5l15 77q12 61 -3.5 99 t-59.5 38q-40 0 -73 -40.5t-44 -96.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1181" d="M51 388q19 123 86 204.5t197 176.5q-44 94 -60 171t-3 157q28 177 138 278.5t270 101.5q132 0 206 -99.5t52 -237.5q-16 -101 -69 -179.5t-136 -137.5l-85 -62l167 -298l5 1q33 50 57 113t36 134h205q-24 -142 -69 -254.5t-119 -199.5l144 -257h-319l-45 81 q-80 -51 -157 -76.5t-161 -25.5q-178 0 -273.5 114.5t-66.5 294.5zM338 406q-15 -90 16 -145t90 -55q40 0 82 12t86 37l-189 341l-4 -3q-37 -49 -55.5 -94.5t-25.5 -92.5zM521 1100q-7 -41 3 -83t34 -91l57 40q53 36 75 73.5t30 82.5q7 51 -14 89t-64 38q-45 0 -78 -43 t-43 -106z" />
<glyph unicode="'" horiz-adv-x="298" d="M144 1007l41 268l46 285h188l-44 -272l-110 -281h-121z" />
<glyph unicode="(" horiz-adv-x="619" d="M129 567l4 24q64 401 231 666.5t343 348.5h6l26 -143q-114 -98 -217.5 -318t-156.5 -552l-5 -28q-55 -347 -22 -558t118 -313l-72 -141h-6q-147 82 -229 355t-20 659z" />
<glyph unicode=")" horiz-adv-x="617" d="M-77 -306q113 98 216.5 318.5t157.5 552.5l5 28q55 345 21 558t-117 314l74 141h6q149 -81 236.5 -362t28.5 -653l-4 -24q-63 -390 -237 -661t-353 -353h-6z" />
<glyph unicode="*" horiz-adv-x="801" d="M162 1058l86 173l221 -127l51 352h175l-87 -351l4 -4l258 122l17 -175l-273 -93l112 -269l-163 -107l-78 287l-6 1l-194 -279l-121 103l228 275z" />
<glyph unicode="+" horiz-adv-x="959" d="M82 556l51 254h289l79 396h266l-79 -396h287l-51 -254h-287l-82 -410h-266l82 410h-289z" />
<glyph unicode="," horiz-adv-x="454" d="M-100 -309l121 319l46 231h250l-48 -239l-205 -311h-164z" />
<glyph unicode="-" horiz-adv-x="734" d="M140 511l46 228h478l-46 -228h-478z" />
<glyph unicode="." horiz-adv-x="535" d="M37 0l52 258h278l-52 -258h-278z" />
<glyph unicode="/" horiz-adv-x="625" d="M-119 -125l724 1581h204l-726 -1581h-202z" />
<glyph unicode="0" horiz-adv-x="977" d="M108 571l63 313q61 309 198 451t329 142q174 0 261 -154t30 -439l-63 -313q-62 -310 -198.5 -451t-326.5 -141q-176 0 -263.5 153t-29.5 439zM364.5 282.5q17.5 -75.5 79.5 -67.5l6 -1q53 -7 103.5 75.5t86.5 258.5l72 361q37 187 20 262.5t-77 68.5l-6 1 q-54 6 -105.5 -76.5t-85.5 -255.5l-72 -361q-39 -190 -21.5 -265.5z" />
<glyph unicode="1" horiz-adv-x="984" d="M271 1153l41 205l555 99l-291 -1457h-282l232 1159z" />
<glyph unicode="2" horiz-adv-x="984" d="M12 0l31 193l458 503q92 112 136.5 194.5t56.5 151.5q15 97 -8 152t-85 55q-60 0 -106.5 -70t-63.5 -180h-274l-2 6q29 205 160.5 338.5t321.5 133.5q186 0 278 -117.5t61 -314.5q-23 -140 -98 -249t-248 -297l-213 -267l3 -5h453l-36 -227h-825z" />
<glyph unicode="3" horiz-adv-x="984" d="M51 395l3 5h275q-14 -87 16 -140.5t89 -53.5q64 0 114 56.5t65 147.5q18 121 -11 172t-105 51h-138l24 150l11 70h138q66 0 109 54.5t58 150.5q14 88 -10.5 139.5t-87.5 51.5q-48 0 -92.5 -47.5t-56.5 -122.5h-271l-3 6q24 180 153 286t298 106q183 0 283 -109.5 t69 -305.5q-17 -103 -79 -187t-155 -130q89 -44 127.5 -132t19.5 -207q-34 -207 -172.5 -317t-332.5 -110q-162 0 -267.5 108.5t-70.5 307.5z" />
<glyph unicode="4" horiz-adv-x="984" d="M49 318l20 178l661 960h281l-182 -910h116l-45 -228h-117l-63 -318h-281l63 318h-453zM333 546h215l98 493l-5 3l-14 -19z" />
<glyph unicode="5" horiz-adv-x="984" d="M73 398l283 15q-16 -102 11 -154.5t86 -52.5q65 0 107.5 72.5t61.5 186.5q21 133 -0.5 206t-94.5 73q-50 0 -85 -32.5t-54 -84.5l-248 17l199 812h684l-37 -233h-454l-84 -343q33 31 80 51.5t93 22.5q175 3 247.5 -125.5t35.5 -361.5q-35 -215 -161.5 -351.5 t-325.5 -136.5q-162 0 -269 113t-75 306z" />
<glyph unicode="6" horiz-adv-x="984" d="M98 563l48 300q47 294 210 454t384 160q66 0 120.5 -15.5t107.5 -46.5l-81 -215q-47 23 -87.5 34.5t-95.5 11.5q-93 0 -166.5 -93t-99.5 -259l3 -5q43 41 103 64.5t131 23.5q151 0 220 -140.5t35 -354.5q-36 -226 -171 -364.5t-318 -138.5q-187 0 -286.5 157.5 t-56.5 426.5zM377.5 294q26.5 -88 97.5 -82l6 -1q52 -5 100.5 76.5t66.5 194.5q19 126 -4.5 198.5t-80.5 72.5q-52 0 -93.5 -19.5t-70.5 -55.5l-19 -118q-29 -178 -2.5 -266z" />
<glyph unicode="7" horiz-adv-x="984" d="M183 1228l37 228h849l-37 -228q-229 -252 -323.5 -480.5t-183.5 -607.5l-35 -140h-282l35 140q79 328 206 599t313 489h-579z" />
<glyph unicode="8" horiz-adv-x="984" d="M79 398q24 126 96 215.5t177 135.5q-73 48 -105 131.5t-10 189.5q41 207 164 307t301 100q162 0 251.5 -108.5t51.5 -298.5q-24 -118 -87.5 -202t-156.5 -128q81 -51 118 -140t15 -202q-44 -217 -173.5 -318t-317.5 -101q-171 0 -267.5 110t-56.5 309zM366 259.5 q22 -53.5 82 -53.5q53 0 100.5 57.5t67.5 155.5q20 104 -2.5 158.5t-80.5 54.5q-54 0 -101 -58.5t-66 -154.5q-22 -106 0 -159.5zM513 908.5q15 -49.5 66 -49.5q47 0 83.5 53t55.5 144q18 95 3.5 144t-64.5 49q-47 0 -84.5 -52t-54.5 -141q-20 -98 -5 -147.5z" />
<glyph unicode="9" horiz-adv-x="984" d="M124 41l64 212q50 -24 98.5 -35.5t110.5 -11.5q76 0 142.5 83t90.5 229l7 47q-46 -54 -99.5 -81.5t-109.5 -27.5q-158 0 -232 136t-37 365q36 227 174 373.5t317 146.5q176 0 269.5 -156t50.5 -429l-57 -356q-43 -266 -196 -411.5t-356 -145.5q-57 0 -122 16.5t-115 45.5 zM436.5 745.5q18.5 -75.5 79.5 -75.5q43 0 82.5 25t69.5 66l27 166q26 165 3.5 242.5t-82.5 71.5l-6 1q-52 5 -102 -82.5t-68 -202.5q-22 -136 -3.5 -211.5z" />
<glyph unicode=":" horiz-adv-x="535" d="M41 0l52 258h278l-52 -258h-278zM206 823l52 258h278l-52 -258h-278z" />
<glyph unicode=";" horiz-adv-x="511" d="M-58 -309l121 319l46 231h250l-48 -239l-205 -311h-164zM195 823l52 258h278l-52 -258h-278z" />
<glyph unicode="&#x3c;" horiz-adv-x="866" d="M51 431l16 81l30 149l778 364l-54 -270l-498 -209v-6l414 -203l-54 -271z" />
<glyph unicode="=" horiz-adv-x="987" d="M99 323l45 229h739l-45 -229h-739zM185 756l46 228h739l-46 -228h-739z" />
<glyph unicode="&#x3e;" horiz-adv-x="877" d="M33 66l54 269l505 209v6l-421 206l54 269l639 -364l-17 -82h1l-30 -149z" />
<glyph unicode="?" horiz-adv-x="872" d="M156 1075q37 197 167.5 299.5t308.5 102.5q180 0 274 -117.5t56 -310.5q-27 -134 -106.5 -234.5t-189.5 -175.5q-58 -46 -84.5 -94.5t-42.5 -131.5h-282q28 136 79 201.5t175 159.5q63 55 106.5 121.5t61.5 152.5q19 98 -4.5 149t-87.5 51q-44 0 -91.5 -47.5 t-64.5 -131.5h-273zM175 0l49 247h278l-49 -247h-278z" />
<glyph unicode="@" horiz-adv-x="1549" d="M67 478q100 428 352 682t584 254q305 0 442 -245.5t43 -652.5q-51 -219 -186 -378t-341 -159q-64 0 -105.5 46t-46.5 128q-54 -86 -115.5 -128.5t-130.5 -42.5q-114 0 -159.5 121t9.5 313q72 252 202.5 404t273.5 152q95 0 158.5 -27.5t123.5 -78.5l-4 -4h5l-157 -569 q-24 -98 -18 -132.5t31 -26.5l6 -1q82 -6 163 106t121 277q83 350 -3 546.5t-347 196.5q-236 0 -433.5 -214t-279.5 -567q-85 -352 7.5 -557.5t343.5 -205.5q67 0 150 20t143 49l4 -148q-66 -42 -158 -65.5t-176 -23.5q-316 0 -458 253.5t-44 677.5zM602.5 222 q7.5 -67 55.5 -67q40 0 80.5 28.5t82.5 103.5l2 6l136 497q-15 5 -31.5 8t-33.5 3q-84 0 -149.5 -96.5t-117.5 -288.5q-32 -127 -24.5 -194z" />
<glyph unicode="A" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM455 538h242l-19 491l-6 1z" />
<glyph unicode="B" horiz-adv-x="1097" d="M22 0l291 1456h414q203 0 311 -102q79 -75 79 -201q0 -44 -10 -95q-23 -110 -81.5 -188.5t-153.5 -116.5q104 -27 136 -117q19 -52 20 -116q0 -45 -10 -95q-45 -223 -177.5 -324t-351.5 -101h-467zM350 227h184q77 0 130 50.5t73 148.5q11 55 11 95q0 43 -12 69 q-22 52 -100 52h-203zM473 841h141q76 2 130.5 51.5t73.5 138.5q8 42 8 75q0 51 -20 78q-33 44 -124 44h-131z" />
<glyph unicode="C" horiz-adv-x="1081" d="M109 584l58 290q57 289 203 446t356 157q213 1 325 -141q88 -111 88 -285q0 -48 -7 -101h-281q10 61 10 109q-1 71 -21 115q-34 76 -141 75q-82 0 -150 -103t-101 -270l-58 -292q-19 -92 -19 -163q0 -67 17 -115q35 -100 135 -100q89 0 144 69.5t92 219.5h273l2 -6 q-60 -251 -188 -380.5t-342 -129.5q-206 0 -326 173q-84 121 -85 284q0 70 16 148z" />
<glyph unicode="D" horiz-adv-x="1107" d="M22 0l291 1456h391q204 0 329 -178q88 -126 89 -292q0 -69 -16 -145l-49 -245q-58 -288 -210.5 -442t-368.5 -154h-456zM350 227h157q100 0 166.5 97t101.5 272l50 247q14 72 14 131q0 88 -30 150q-50 104 -166 104h-93z" />
<glyph unicode="E" horiz-adv-x="971" d="M22 0l291 1456h823l-45 -228h-541l-72 -362h460l-45 -227h-460l-83 -412h542l-45 -227h-825z" />
<glyph unicode="F" horiz-adv-x="979" d="M22 0l291 1456h830l-45 -228h-548l-79 -396h464l-45 -227h-464l-121 -605h-283z" />
<glyph unicode="G" horiz-adv-x="1133" d="M95 506l89 444q53 268 207.5 397.5t374.5 129.5q217 0 316 -121q73 -88 73 -226q0 -52 -11 -112l-3 -5h-266q8 47 8 84q0 61 -21 95q-36 57 -133 57q-90 0 -162 -75t-101 -222l-89 -446q-15 -74 -15 -129q0 -65 22 -103q39 -68 146 -68q73 0 117 24t75 67l53 261h-174 l40 200h456l-109 -542q-76 -94 -203 -165.5t-300 -71.5q-210 0 -325 139q-80 98 -80 248q0 65 15 140z" />
<glyph unicode="H" horiz-adv-x="1193" d="M22 0l291 1456h283l-125 -626h415l125 626h281l-291 -1456h-281l120 603h-415l-120 -603h-283z" />
<glyph unicode="I" horiz-adv-x="523" d="M35 0l291 1456h281l-291 -1456h-281z" />
<glyph unicode="J" horiz-adv-x="980" d="M53 427h283q-12 -60 -12 -102q0 -45 14 -70q26 -49 84 -49q49 0 101 64t74 174l202 1012h281l-202 -1012q-47 -229 -184 -347t-317 -118q-178 0 -273 115q-65 78 -65 205q0 59 14 128z" />
<glyph unicode="K" horiz-adv-x="1053" d="M22 0l291 1456h282l-119 -594h87l325 594h370l-496 -722l217 -734h-324l-148 602h-83l-120 -602h-282z" />
<glyph unicode="L" horiz-adv-x="927" d="M22 0l291 1456h283l-246 -1229h502l-45 -227h-785z" />
<glyph unicode="M" horiz-adv-x="1421" d="M17 0l291 1456h366l24 -1067l6 -1l453 1068h368l-291 -1456h-281l85 423l129 533l-6 2l-444 -958h-187l-59 947l-6 1l-82 -525l-85 -423h-281z" />
<glyph unicode="N" horiz-adv-x="1193" d="M22 0l291 1456h283l226 -905h6l181 905h281l-291 -1456h-281l-226 907h-6l-181 -907h-283z" />
<glyph unicode="O" horiz-adv-x="1158" d="M114 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181q89 -128 89 -296q0 -69 -15 -145l-52 -259q-58 -289 -218 -453t-384 -164q-209 -1 -330 179q-84 125 -84 290q0 72 16 152zM394 600q-16 -80 -16 -145q0 -81 25 -141q45 -106 154 -107q95 0 168 107.5 t108 281.5l52 261q15 74 15 135q0 86 -30 149q-50 107 -160 107q-94 0 -161.5 -106t-102.5 -281z" />
<glyph unicode="P" horiz-adv-x="1119" d="M22 0l291 1456h488q194 0 296 -132q73 -94 73 -226q0 -52 -11 -109q-45 -223 -189.5 -345t-355.5 -122h-205l-104 -522h-283zM455 750h205q77 0 137 68.5t80 168.5q9 47 9 86q0 52 -16 90q-30 65 -114 65h-205z" />
<glyph unicode="Q" horiz-adv-x="1196" d="M120 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181q89 -128 89 -296q0 -69 -15 -145l-52 -259q-30 -144 -85 -258.5t-132 -193.5l152 -225l-204 -150l-159 238q-42 -13 -85.5 -20.5t-88.5 -7.5q-209 0 -330 179q-84 125 -84 290q0 72 16 152zM400 600 q-16 -80 -16 -145q0 -82 25 -141q45 -107 154 -107q95 0 168 107.5t108 281.5l52 261q15 74 15 135q0 87 -30 149q-50 107 -160 107q-94 0 -161.5 -106t-102.5 -281z" />
<glyph unicode="R" horiz-adv-x="1118" d="M23 0l291 1455h457q192 1 293 -115q73 -83 73 -210q0 -49 -11 -104q-25 -123 -89.5 -202.5t-169.5 -127.5q95 -40 127 -130q18 -51 19 -112q0 -48 -11 -102l-20 -103q-13 -64 -13 -130.5t27 -97.5l-4 -21h-292q-22 26 -22 78v22q6 69 22 151l20 99q10 52 10 92 q0 48 -16 80q-28 56 -105 57h-188l-116 -579h-282zM466 806h174q72 0 126.5 54t74.5 150q9 45 9 81q0 49 -16 81q-28 56 -108 56h-175z" />
<glyph unicode="S" horiz-adv-x="1048" d="M93 424l2 5h275q-8 -41 -9 -74q-1 -69 37 -101q54 -48 145 -48q52 0 102 42.5t63 104.5q7 35 7 63q1 54 -23 86q-36 50 -145 108q-201 82 -293 196q-66 81 -65 197q0 46 10 97q36 180 171 278.5t321 98.5q198 0 306 -120q76 -85 76 -212q0 -53 -13 -114l-2 -5h-275 q7 35 7 65q0 57 -25 97q-38 60 -119 61q-54 0 -103 -43t-61 -104q-6 -30 -6 -56q0 -53 27 -84q40 -46 176 -113q185 -77 267 -191q56 -78 56 -191q0 -52 -12 -112q-38 -187 -171 -281.5t-321 -94.5q-194 1 -324 109q-94 78 -95 219q0 54 14 117z" />
<glyph unicode="T" horiz-adv-x="955" d="M193 1228l45 228h893l-45 -228h-308l-245 -1228h-281l245 1228h-304z" />
<glyph unicode="U" horiz-adv-x="1131" d="M100 465l198 991h281l-198 -991q-12 -61 -12 -106q0 -60 21 -94q37 -59 132 -59q89 0 153.5 61t91.5 198l198 991h281l-198 -991q-50 -248 -201.5 -367t-369.5 -119q-199 1 -311 129q-79 91 -79 232q0 58 13 125z" />
<glyph unicode="V" horiz-adv-x="1090" d="M176 1456h296l49 -1084l2 -49l5 -1l17 47l398 1087h296l-618 -1456h-293z" />
<glyph unicode="W" horiz-adv-x="1484" d="M187 1456h273v-898l6 -1l336 899h202l52 -900h6l287 900h273l-498 -1456h-263l-50 863h-6l-325 -863h-261z" />
<glyph unicode="X" horiz-adv-x="1088" d="M-40 0l458 734l-217 722h324l95 -508l6 -1l261 509h326l-449 -722l239 -734h-340l-101 519l-6 1l-268 -520h-328z" />
<glyph unicode="Y" horiz-adv-x="1085" d="M217 1456h308l99 -607l5 -1l344 608h307l-583 -939l-103 -517h-281l108 539z" />
<glyph unicode="Z" horiz-adv-x="966" d="M5 143l670 1086h-439l45 227h777l-27 -138l-674 -1091h514l-45 -227h-814z" />
<glyph unicode="[" horiz-adv-x="522" d="M-20 -339l325 2034h387l-35 -217h-102l-256 -1601h102l-34 -216h-387z" />
<glyph unicode="\" horiz-adv-x="737" d="M209 1456h277l175 -1581h-280z" />
<glyph unicode="]" horiz-adv-x="522" d="M-98 -339l34 216h105l256 1601h-105l35 217h388l-325 -2034h-388z" />
<glyph unicode="^" horiz-adv-x="761" d="M100 729l386 727h204l96 -727h-216l-41 422v-1l-6 1l-206 -422h-217z" />
<glyph unicode="_" horiz-adv-x="769" d="M-116 -220l44 220h741l-44 -220h-741z" />
<glyph unicode="`" horiz-adv-x="618" d="M235 1477h302l124 -266h-226z" />
<glyph unicode="a" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q8 42 8 73t-8 51q-16 40 -68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q153 0 239 -100q62 -71 61 -182q0 -45 -10 -97l-88 -438q-17 -84 -19 -150q-1 -14 -1 -29q0 -52 7 -106h-280q-6 27 -8.5 58 t-2.5 64q-50 -65 -110.5 -104t-131.5 -39q-119 -1 -183 89q-44 61 -44 149q0 40 9 85zM318 315q-5 -25 -5 -45q0 -27 9 -45q16 -32 54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5z" />
<glyph unicode="b" d="M5 0l312 1560h282l-110 -546q44 42 92.5 65t100.5 23q159 0 225 -167q38 -95 38 -218q0 -93 -22 -201l-4 -21q-53 -262 -155 -389t-273 -127q-67 0 -120 32.5t-85 93.5l-37 -105h-244zM338 258q13 -27 39.5 -39t68.5 -12q75 0 118.5 71.5t73.5 216.5l4 21q28 137 28 223 q0 23 -2 43q-10 92 -88 92q-38 0 -74 -30t-67 -82z" />
<glyph unicode="c" horiz-adv-x="878" d="M58 470l22 139q36 224 164.5 358.5t330.5 134.5q163 0 247 -114q62 -84 61 -213q0 -45 -7 -96h-263q6 43 6 77q-1 40 -9 67q-16 51 -71 51q-74 0 -116 -73t-61 -192l-22 -139q-12 -71 -12 -124q0 -42 8 -72q17 -68 97 -68q51 0 84.5 43t46.5 124h255l2 -6 q-26 -177 -144 -282.5t-280 -105.5q-193 1 -283 139q-65 100 -66 239q0 53 10 113z" />
<glyph unicode="d" d="M76 534l4 21q54 272 162 409.5t275 137.5q56 0 103 -27t81 -77l113 562h282l-312 -1560h-245l4 97q-50 -57 -106 -87.5t-115 -30.5q-152 -1 -223 159q-42 95 -42 218q0 83 19 178zM339 292q13 -85 86 -85q36 0 71.5 26.5t66.5 73.5l100 498q-13 34 -38.5 51.5t-62.5 17.5 q-68 0 -119.5 -86t-80.5 -233l-4 -21q-23 -112 -22 -187q-1 -30 3 -55z" />
<glyph unicode="e" horiz-adv-x="907" d="M73 451l24 152q36 227 163 363t318 136q176 0 258 -128q58 -91 59 -226q0 -56 -10 -119l-28 -174h-504v-4q-6 -39 -6 -73q0 -62 21 -105q33 -67 125 -67q72 0 124.5 18.5t123.5 59.5l42 -181q-62 -54 -157 -89t-203 -35q-189 0 -286 135q-72 101 -72 239q0 47 8 98z M384 645h226l7 40q7 45 7 79q0 38 -8 62q-16 48 -74 48t-97 -62.5t-61 -166.5z" />
<glyph unicode="f" horiz-adv-x="631" d="M66 0l175 876h-126l41 206h126l24 120q39 194 146.5 286.5t276.5 92.5q30 0 62 -5.5t70 -15.5l-67 -218q-17 4 -34.5 7t-41.5 3q-46 0 -81 -39.5t-49 -110.5l-24 -120h162l-41 -206h-162l-175 -876h-282z" />
<glyph unicode="g" d="M-15 -354l93 219q49 -32 101 -48t118 -16q77 0 134 64t79 171l5 26q-44 -40 -92 -61.5t-99 -21.5q-153 0 -224 159q-43 96 -43 219q0 82 19 177l4 21q54 272 162.5 409.5t275.5 137.5q64 0 116 -33t85 -93l37 106h245l-209 -1047q-46 -229 -187.5 -350.5t-352.5 -121.5 q-63 0 -137 23t-130 60zM340 292q13 -85 86 -85q38 0 72.5 23t63.5 66l104 521q-13 29 -39 43t-65 14q-67 0 -119 -86.5t-81 -232.5l-4 -21q-23 -110 -23 -185q0 -31 5 -57z" />
<glyph unicode="h" d="M-3 0l312 1560h282l-118 -587l5 -3q49 63 110 97.5t127 34.5q127 0 187 -116q34 -66 34 -170q0 -80 -20 -182l-127 -634h-283l127 636q18 88 18 140q0 32 -7 50q-18 48 -81 48q-33 0 -64.5 -17.5t-58.5 -48.5l-161 -808h-282z" />
<glyph unicode="i" horiz-adv-x="488" d="M18 0l216 1082h281l-216 -1082h-281zM287 1343l43 217h281l-43 -217h-281z" />
<glyph unicode="j" horiz-adv-x="479" d="M-231 -419l57 223q20 -6 35.5 -9t37.5 -3q38 0 69.5 44.5t47.5 130.5l223 1115h282l-223 -1115q-41 -206 -145.5 -305t-262.5 -99q-31 0 -60 4.5t-61 13.5zM287 1343l43 217h281l-43 -217h-281z" />
<glyph unicode="k" horiz-adv-x="934" d="M5 0l312 1560h282l-177 -886h42l244 408h324l-360 -484l190 -598h-322l-119 450h-44l-90 -450h-282z" />
<glyph unicode="l" horiz-adv-x="488" d="M18 0l312 1560h281l-312 -1560h-281z" />
<glyph unicode="m" horiz-adv-x="1444" d="M7 0l216 1082h263l-16 -127q55 72 123.5 109.5t149.5 37.5q70 0 119 -42.5t65 -127.5q56 82 127.5 126t157.5 44q118 0 174 -112q31 -63 31 -160q0 -77 -20 -176l-131 -654h-283l131 654q17 87 17 136q0 26 -5 41q-14 43 -67 43q-34 0 -67.5 -24t-62.5 -67 q-2 -18 -4.5 -36.5t-6.5 -38.5l-142 -708h-281l131 654q17 85 17 134q1 26 -5 42q-14 44 -68 44q-31 0 -63 -20t-61 -56l-159 -798h-280z" />
<glyph unicode="n" d="M0 0l216 1082h263l-16 -138q57 76 127 117t145 41q121 0 177 -106q32 -60 31 -157q0 -74 -18 -168l-134 -671h-283l134 671q13 66 13 109q0 34 -8 52q-19 42 -81 42q-32 0 -64 -20t-61 -55l-159 -799h-282z" />
<glyph unicode="o" d="M66 473l21 134q36 226 166.5 360.5t332.5 134.5q192 0 284 -140q68 -102 67 -245q0 -52 -9 -110l-21 -134q-37 -228 -168 -361t-331 -133q-194 1 -286 139q-67 100 -66 240q0 54 10 115zM344 274q20 -68 100 -68q73 0 117 72t64 195l21 134q10 64 10 114q0 48 -10 83 q-20 70 -96 70q-74 0 -119.5 -73.5t-63.5 -193.5l-21 -134q-11 -67 -11 -118q0 -48 9 -81z" />
<glyph unicode="p" d="M-78 -416l299 1498h262l-9 -82q46 49 98 75.5t109 26.5q153 0 222 -169q40 -99 40 -225q0 -90 -20 -193l-4 -21q-52 -258 -157.5 -386.5t-270.5 -128.5q-59 0 -108 23.5t-82 69.5l-97 -488h-282zM337 250q13 -24 39 -34t69 -10q68 0 115.5 75t76.5 213l4 21 q24 122 24 206q0 31 -3 57q-12 96 -83 96q-38 0 -73 -28t-65 -77z" />
<glyph unicode="q" d="M76 534l4 21q54 272 162 409.5t275 137.5q63 0 114 -34t83 -94l40 108h245l-299 -1498h-283l96 483q-44 -43 -92 -65.5t-99 -22.5q-152 0 -223 159q-42 96 -42 218q0 83 19 178zM339 292q13 -86 86 -86q37 0 71 23t63 65l104 521q-13 29 -38.5 44t-62.5 15 q-68 0 -119.5 -86t-80.5 -233l-4 -21q-23 -112 -23 -187q0 -31 4 -55z" />
<glyph unicode="r" horiz-adv-x="638" d="M5 0l216 1082h263l-16 -132l5 -3q38 74 89 114.5t109 40.5q17 0 37.5 -3.5t35.5 -8.5l-82 -267l-104 3q-38 0 -69 -22.5t-54 -62.5l-148 -741h-282z" />
<glyph unicode="s" horiz-adv-x="857" d="M23 335l2 5h259q-4 -26 -3 -48q1 -50 19 -76q28 -38 89 -38q48 0 80.5 28.5t40.5 76.5q2 11 2 21q0 34 -22 59q-28 32 -115 82q-146 61 -212 138q-51 59 -51 145q0 26 5 55q22 137 136 228t282 91q167 0 257 -97q70 -75 70 -179q0 -31 -7 -65l-3 -6h-272q4 25 4 46 q0 38 -12 63q-18 39 -70 39q-38 0 -73 -31.5t-41 -74.5q-2 -13 -3 -25q1 -32 19 -52q24 -28 116 -81q154 -57 219 -137q50 -61 50 -151q0 -28 -5 -58q-24 -143 -141.5 -228.5t-291.5 -85.5q-173 0 -263 110q-70 86 -70 188q0 28 5 58z" />
<glyph unicode="t" horiz-adv-x="632" d="M111 876l41 206h120l54 269h282l-54 -269h140l-41 -206h-140l-108 -543q-8 -39 -8 -65q0 -20 5 -32q12 -26 43 -26q23 0 41 2.5t40 8.5l-22 -216q-47 -14 -87 -20t-91 -6q-124 0 -182 86q-35 53 -36 142q0 56 14 125l109 544h-120z" />
<glyph unicode="u" d="M84 428l130 654h282l-131 -656q-16 -77 -16 -125q-1 -27 5 -45q14 -48 66 -49q40 0 76 18t66 52l161 805h283l-216 -1082h-248l7 114q-54 -67 -120 -101t-141 -34q-130 -1 -190 111q-34 63 -34 164q0 76 20 174z" />
<glyph unicode="v" horiz-adv-x="880" d="M121 1082h295l6 -674l-1 -70l6 -1l23 71l220 674h295l-457 -1082h-276z" />
<glyph unicode="w" horiz-adv-x="1228" d="M152 0l5 1082h262l-26 -585l6 -2l254 587h182l21 -584l6 -1l207 585h261l-426 -1082h-234l-26 562l-6 1l-251 -563h-235z" />
<glyph unicode="x" horiz-adv-x="880" d="M-51 0l347 547l-168 535h316l41 -339l6 -1l155 340h317l-338 -535l172 -547h-316l-49 349l-5 1l-161 -350h-317z" />
<glyph unicode="y" horiz-adv-x="880" d="M-81 -413l76 212q13 -3 21 -4.5t16 -1.5q54 0 92 33.5t61 84.5l38 78l-84 1093h303l-11 -615l6 -2l264 617h301l-595 -1245q-62 -116 -143.5 -195t-217.5 -79q-32 0 -59 6t-68 18z" />
<glyph unicode="z" horiz-adv-x="854" d="M-18 0l34 169l526 685h-379l45 228h700l-33 -165l-531 -690h398l-45 -227h-715z" />
<glyph unicode="{" horiz-adv-x="570" d="M58 519l24 151h1l8 51q62 0 103 55.5t57 153.5l33 207q28 177 113.5 292.5t252.5 166.5l6 -1l26 -150q-61 -31 -95 -109t-53 -199l-33 -207q-18 -109 -70.5 -189.5t-140.5 -123.5q72 -47 100 -127t12 -180l-33 -206q-21 -126 -12 -201t62 -106l-79 -158q-151 55 -200 175 t-21 290l33 206q16 102 -6.5 155.5t-87.5 53.5z" />
<glyph unicode="|" horiz-adv-x="461" d="M38 -270l276 1726h161l-276 -1726h-161z" />
<glyph unicode="}" horiz-adv-x="570" d="M-56 -210q62 31 96 109t54 198l33 206q17 109 69.5 189t142.5 123q-73 45 -101.5 125t-11.5 183l33 207q19 124 9.5 200t-61.5 108l78 157q150 -55 199 -175t22 -290l-33 -207q-17 -103 6 -156t90 -53l-9 -54l-15 -94l-9 -54q-64 0 -105.5 -56t-56.5 -153l-33 -206 q-29 -176 -114.5 -292t-251.5 -166h-6z" />
<glyph unicode="~" horiz-adv-x="1075" d="M89 444q27 171 114.5 276t203.5 105q63 0 120.5 -34t103.5 -98q28 -46 51.5 -65.5t54.5 -19.5q32 0 66 53t46 128l188 -28q-28 -170 -118 -276.5t-203 -106.5q-65 0 -119 32.5t-103 101.5q-29 45 -52 64.5t-56 19.5t-66.5 -52t-44.5 -126z" />
<glyph unicode="&#xa1;" horiz-adv-x="528" d="M-37 -374l190 949h283l-190 -949h-283zM206 821l52 261h276l-52 -261h-276z" />
<glyph unicode="&#xa2;" horiz-adv-x="997" d="M94 470l22 139q33 206 144 336.5t287 152.5l44 220h182l-47 -234q109 -38 159.5 -144t26.5 -261h-263q14 93 -2.5 144t-71.5 51q-74 0 -116 -73t-61 -192l-22 -139q-21 -129 -4 -196.5t97 -67.5q51 0 84.5 43t46.5 124h256l2 -5q-23 -157 -119 -259t-233 -124l-46 -230 h-182l48 238q-140 36 -201 166t-31 311z" />
<glyph unicode="&#xa3;" horiz-adv-x="1019" d="M60 0l45 227h7q35 12 68 94.5t51 171.5l17 98h-120l44 225h113l35 209q45 225 166.5 338.5t295.5 113.5q170 0 255.5 -115.5t48.5 -300.5h-282q20 103 -1.5 145t-64.5 36l-6 1q-36 4 -72.5 -54.5t-56.5 -163.5l-34 -209h260l-44 -225h-252l-13 -82q-17 -83 -58.5 -154.5 t-104.5 -127.5h566l-45 -227h-818z" />
<glyph unicode="&#xa4;" horiz-adv-x="1207" d="M11 110l150 145q-29 76 -35 166t14 187q21 108 63 202.5t102 171.5l-91 145l157 137l85 -135q72 51 151 78t161 27q74 0 141 -30.5t120 -86.5l151 148l103 -138l-162 -158q30 -78 36.5 -170t-12.5 -191q-21 -104 -60 -195t-93 -164l88 -139l-158 -137l-77 124 q-76 -58 -159.5 -87.5t-168.5 -29.5q-78 0 -147.5 32.5t-121.5 93.5l-135 -132zM310 608q-41 -201 30 -324.5t213 -123.5q129 0 256.5 131.5t165.5 316.5q39 199 -31.5 322.5t-211.5 123.5q-130 0 -258 -131t-164 -315z" />
<glyph unicode="&#xa5;" horiz-adv-x="1044" d="M86 226l38 200h253l23 111h-253l40 200h202l-158 719h307l80 -543l6 -1l295 544h307l-445 -719h175l-40 -200h-235l-23 -111h235l-38 -200h-236l-45 -226h-281l45 226h-252z" />
<glyph unicode="&#xa6;" horiz-adv-x="461" d="M-33 -270l158 791h249l-158 -791h-249zM161 698l151 758h249l-151 -758h-249z" />
<glyph unicode="&#xa7;" horiz-adv-x="1076" d="M-3 -39l2 5h275q-23 -113 15 -153.5t115 -40.5q66 0 115 41t63 107q13 70 -22 107.5t-151 87.5q-185 64 -261 156t-42 262q18 93 65.5 161t121.5 111q-49 51 -64.5 121.5t4.5 169.5q36 184 172 282.5t338 98.5q189 0 287 -113.5t56 -309.5l-3 -5h-275q18 93 -9.5 146.5 t-100.5 53.5q-71 0 -119.5 -43t-60.5 -108q-17 -79 15 -114.5t153 -83.5q187 -63 263 -155.5t42 -262.5q-20 -95 -66.5 -162.5t-118.5 -108.5q48 -51 62.5 -121.5t-4.5 -168.5q-38 -189 -171 -283t-334 -94q-182 0 -295.5 100.5t-66.5 316.5zM394 564q-17 -86 12 -123.5 t146 -91.5q42 -16 52 -19.5t27 -9.5q28 23 48.5 57t29.5 76q14 76 -19.5 118t-145.5 95q-25 8 -44 15.5t-36 15.5q-27 -23 -44.5 -57t-25.5 -76z" />
<glyph unicode="&#xa8;" horiz-adv-x="974" d="M273 1258l32 198h245l-32 -198h-245zM703 1258l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xa9;" horiz-adv-x="1376" d="M129 729q52 327 258.5 537t459.5 210q239 0 384 -217.5t96 -529.5q-53 -328 -260.5 -539t-458.5 -211q-240 0 -385 218.5t-94 531.5zM238 729q-45 -277 68.5 -454t320.5 -176q196 -1 371.5 183t218.5 447q43 275 -70 451t-319 176q-197 0 -373 -183t-217 -444zM408 669 l19 119q28 179 124 283t235 104q130 0 196 -81t42 -233h-142q16 100 -13.5 142.5t-103.5 43.5q-73 -1 -126 -72.5t-71 -185.5l-19 -120q-20 -122 9 -190.5t106 -68.5q70 0 114 44t60 142h134l2 -6q-22 -156 -108 -232t-223 -76q-132 0 -197.5 107t-37.5 280z" />
<glyph unicode="&#xaa;" horiz-adv-x="759" d="M196 919q22 117 102.5 173.5t217.5 56.5h96l11 53q14 70 0 103t-54 33q-44 0 -76.5 -28t-42.5 -80l-145 13l-2 6q17 104 97.5 166t196.5 62q103 0 157 -72.5t28 -203.5l-63 -315q-11 -54 -15 -96.5t-1 -84.5h-159q-2 23 -1.5 47t3.5 48q-35 -48 -84.5 -78.5t-110.5 -30.5 q-89 0 -132.5 62.5t-22.5 165.5zM355 925q-10 -48 5.5 -71.5t58.5 -23.5q32 0 79 30t69 65l23 112h-97q-51 0 -90 -35t-48 -77z" />
<glyph unicode="&#xab;" horiz-adv-x="878" d="M71 507l1 6l3 13l299 389h173l-263 -399l104 -397h-173zM411 507l1 6l3 13l299 389h173l-263 -399l104 -397h-173z" />
<glyph unicode="&#xac;" horiz-adv-x="938" d="M158 638l32 163h678l-32 -163h-1l-52 -263h-180l52 263h-497z" />
<glyph unicode="&#xad;" horiz-adv-x="734" d="M140 511l46 228h478l-46 -228h-478z" />
<glyph unicode="&#xae;" horiz-adv-x="1376" d="M129 729q52 327 259 537t460 210q239 0 384 -218t96 -529q-53 -328 -260.5 -539t-458.5 -211q-240 0 -385.5 218.5t-94.5 531.5zM239 729q-45 -277 68.5 -454t320.5 -176q195 -1 370.5 183t218.5 447q43 275 -69.5 451t-318.5 176q-197 0 -373 -183t-217 -444zM407 316 l136 850h242q124 0 189.5 -68.5t46.5 -192.5q-10 -61 -42 -104.5t-85 -72.5q45 -30 60 -85t4 -128l-9 -56q-7 -43 -9 -74.5t2 -52.5l-2 -16h-140q-4 22 0.5 63.5t11.5 80.5l8 54q12 75 -9.5 108t-83.5 33h-128l-54 -339h-138zM619 783h104q60 0 106 31.5t56 89.5 q11 77 -15.5 105.5t-105.5 28.5h-104z" />
<glyph unicode="&#xaf;" horiz-adv-x="927" d="M285 1297l25 160h629l-25 -160h-629z" />
<glyph unicode="&#xb0;" horiz-adv-x="704" d="M272 1203q23 119 107 196.5t183 77.5q89 0 145 -82t34 -192q-25 -121 -107.5 -196t-180.5 -75q-91 0 -147.5 80t-33.5 191zM408 1203q-12 -59 10 -94t64 -35q38 0 75 37t48 92q11 59 -9.5 95.5t-61.5 36.5q-39 0 -77.5 -39t-48.5 -93z" />
<glyph unicode="&#xb1;" horiz-adv-x="959" d="M33 7l46 230h672l-46 -230h-672zM134 721l38 235h263l58 361h248l-58 -361h262l-38 -235h-262l-61 -382h-248l61 382h-263z" />
<glyph unicode="&#xb2;" horiz-adv-x="726" d="M154 667l30 152l300 254q55 49 73 82.5t27 77.5q8 43 -1.5 68t-42.5 25t-58 -31.5t-34 -79.5h-187l-2 6q18 114 104.5 186t212.5 72q113 0 169.5 -66t34.5 -181q-18 -88 -74 -149t-184 -163l-91 -95l3 -6h267l-30 -152h-517z" />
<glyph unicode="&#xb3;" horiz-adv-x="717" d="M178 895l3 6h190q-10 -48 5.5 -71t58.5 -23q33 0 62 25t38 70q11 54 -8.5 80.5t-66.5 26.5h-87l17 89l8 38h87q41 0 67.5 26t36.5 72q8 41 -4.5 66t-49.5 25q-34 0 -57 -23t-29 -55h-186l-1 6q17 109 100 167t198 58q118 0 184 -60.5t45 -168.5q-12 -60 -50 -105t-94 -69 q51 -25 73.5 -72.5t10.5 -112.5q-25 -120 -108.5 -177.5t-213.5 -57.5q-118 0 -187.5 64t-41.5 176z" />
<glyph unicode="&#xb4;" horiz-adv-x="673" d="M225 1212l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xb5;" horiz-adv-x="1078" d="M-50 -416l299 1498h283l-124 -623l-2 -8q-30 -151 -11 -196.5t85 -45.5q44 0 82.5 24.5t69.5 71.5l155 777h282l-216 -1082h-265l5 40q-38 -31 -81 -46t-89 -15q-31 0 -57 8.5t-47 25.5l-86 -429h-283z" />
<glyph unicode="&#xb6;" horiz-adv-x="923" d="M170 988q43 220 170.5 344t318.5 124h344l-291 -1456h-284l104 520h-60q-175 0 -259 132t-43 336z" />
<glyph unicode="&#xb7;" horiz-adv-x="557" d="M165 560l52 262h273l-52 -262h-273z" />
<glyph unicode="&#xb8;" horiz-adv-x="483" d="M-47 -454l26 155q28 0 49 21t30 63q8 45 -11 60.5t-76 20.5l54 141h211l-20 -59q45 -11 69.5 -52.5t9.5 -120.5q-24 -115 -110.5 -175t-226.5 -58z" />
<glyph unicode="&#xb9;" horiz-adv-x="504" d="M248 665l127 634l-96 -1l31 156l298 23l-162 -812h-198z" />
<glyph unicode="&#xba;" horiz-adv-x="784" d="M223 1025l23 117q32 158 126 246.5t227 88.5q121 0 184 -95t34 -240l-23 -117q-32 -158 -125.5 -246t-225.5 -88q-123 0 -186.5 94t-33.5 240zM382 1025q-19 -94 3 -144.5t86 -50.5q56 0 101.5 54.5t62.5 140.5l23 117q18 90 -3.5 142t-83.5 54q-58 -2 -104 -57.5 t-62 -138.5z" />
<glyph unicode="&#xbb;" horiz-adv-x="879" d="M5 152l263 398l-103 399h173l143 -389l-2 -6h1l-3 -13l-299 -389h-173zM356 152l263 398l-103 399h173l143 -389l-2 -6h1l-3 -13l-299 -389h-173z" />
<glyph unicode="&#xbc;" horiz-adv-x="1209" d="M145 192l800 1138l118 -74l-800 -1138zM243 664l127 634l-96 -1l31 156l298 23l-162 -812h-198zM524 140l12 124l444 534l1 3h198l-101 -507h68l-31 -154h-68l-28 -140h-198l28 140h-325zM739 294h141l50 249l-6 3l-7 -9z" />
<glyph unicode="&#xbd;" horiz-adv-x="1269" d="M137 192l800 1138l118 -74l-800 -1138zM226 664l127 634l-96 -1l31 156l298 23l-162 -812h-198zM583 0l30 152l300 254q55 49 73 82.5t27 77.5q8 43 -1.5 68t-42.5 25t-58 -31.5t-34 -79.5h-187l-2 6q18 114 104.5 186t212.5 72q113 0 169.5 -66t34.5 -181 q-18 -88 -74 -149t-184 -163l-91 -95l3 -6h267l-30 -152h-517z" />
<glyph unicode="&#xbe;" horiz-adv-x="1396" d="M161 896l3 6h190q-10 -48 5.5 -71t58.5 -23q33 0 62 25t38 70q11 54 -8.5 80.5t-66.5 26.5h-87l17 89l8 38h87q41 0 67.5 26t36.5 72q8 41 -4.5 66t-49.5 25q-34 0 -57 -23t-29 -55h-186l-1 6q17 109 100 167t198 58q118 0 184 -60.5t45 -168.5q-12 -60 -50 -105t-94 -69 q51 -25 73.5 -72.5t10.5 -112.5q-25 -120 -108.5 -177.5t-213.5 -57.5q-118 0 -187.5 64t-41.5 176zM321 192l800 1138l118 -74l-800 -1138zM669 140l12 124l444 534l1 3h198l-101 -507h68l-31 -154h-68l-28 -140h-198l28 140h-325zM884 294h141l50 249l-6 3l-7 -9z" />
<glyph unicode="&#xbf;" horiz-adv-x="883" d="M-15 32q26 133 105 233.5t189 176.5q58 44 84.5 92.5t44.5 133.5h282q-30 -137 -81 -202.5t-175 -158.5q-64 -56 -107.5 -122.5t-59.5 -151.5q-20 -97 3 -147.5t89 -50.5q44 0 91 46.5t65 130.5h274l2 -6q-39 -196 -169.5 -298t-308.5 -102q-181 0 -273.5 117t-54.5 309z M443 834l49 248h279l-49 -248h-279z" />
<glyph unicode="&#xc0;" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM455 538h242l-19 491l-6 1zM500 1825h302l124 -266h-226z" />
<glyph unicode="&#xc1;" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM455 538h242l-19 491l-6 1zM642 1560l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xc2;" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM455 538h242l-19 491l-6 1zM467 1591l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xc3;" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM455 538h242l-19 491l-6 1zM486 1645q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45q-17 -99 -75.5 -163.5t-135.5 -64.5q-53 0 -121 44t-110 44q-24 0 -47.5 -33 t-30.5 -79z" />
<glyph unicode="&#xc4;" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM453 1606l32 198h245l-32 -198h-245zM455 538h242l-19 491l-6 1zM883 1606l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xc5;" horiz-adv-x="1095" d="M-65 0l679 1456h293l96 -1456h-284l-13 309h-351l-136 -309h-284zM455 538h242l-19 491l-6 1zM631 1739q16 85 80.5 137.5t145.5 52.5q72 0 117 -55.5t30 -134.5q-18 -87 -80 -136.5t-142 -49.5q-75 0 -121.5 53.5t-29.5 132.5zM737 1739q-9 -45 8.5 -70t54.5 -25 q34 0 62 26.5t37 68.5q8 46 -8 71.5t-53 25.5q-34 0 -63.5 -27.5t-37.5 -69.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1593" d="M-73 0l895 1456h860l-46 -231h-454l-60 -363h375l-46 -230h-368l-67 -402h470l-46 -230h-744l56 339h-301l-196 -339h-328zM590 578h202l79 474l-5 2z" />
<glyph unicode="&#xc7;" horiz-adv-x="1045" d="M109 584l58 290q57 289 203 446t356 157q213 0 325 -141.5t81 -385.5h-281q24 148 -10.5 223.5t-141.5 75.5q-82 0 -150 -103t-101 -270l-58 -292q-37 -179 -2 -278.5t135 -99.5q89 0 144 69.5t92 219.5h273l2 -6q-60 -251 -188 -380.5t-342 -129.5q-206 0 -326.5 173 t-68.5 432zM264 -454l26 155q28 0 49 21t30 63q8 45 -11 60.5t-76 20.5l54 141h211l-20 -59q45 -11 69.5 -52.5t9.5 -120.5q-24 -115 -110.5 -175t-226.5 -58z" />
<glyph unicode="&#xc8;" horiz-adv-x="971" d="M22 0l291 1456h823l-45 -228h-541l-72 -362h460l-45 -227h-460l-83 -412h542l-45 -227h-825zM439 1825h302l124 -266h-226z" />
<glyph unicode="&#xc9;" horiz-adv-x="971" d="M22 0l291 1456h823l-45 -228h-541l-72 -362h460l-45 -227h-460l-83 -412h542l-45 -227h-825zM581 1560l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xca;" horiz-adv-x="971" d="M22 0l291 1456h823l-45 -228h-541l-72 -362h460l-45 -227h-460l-83 -412h542l-45 -227h-825zM406 1591l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xcb;" horiz-adv-x="971" d="M22 0l291 1456h823l-45 -228h-541l-72 -362h460l-45 -227h-460l-83 -412h542l-45 -227h-825zM392 1606l32 198h245l-32 -198h-245zM822 1606l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xcc;" horiz-adv-x="523" d="M35 0l291 1456h281l-291 -1456h-281zM209 1825h302l124 -266h-226z" />
<glyph unicode="&#xcd;" horiz-adv-x="523" d="M35 0l291 1456h281l-291 -1456h-281zM349 1560l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xce;" horiz-adv-x="523" d="M35 0l291 1456h281l-291 -1456h-281zM176 1591l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xcf;" horiz-adv-x="523" d="M35 0l291 1456h281l-291 -1456h-281zM162 1606l32 198h245l-32 -198h-245zM592 1606l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xd0;" horiz-adv-x="1137" d="M52 0l131 655h-103l35 175h103l125 626h391q204 0 329 -178t73 -437l-49 -245q-58 -288 -210.5 -442t-368.5 -154h-456zM380 227h157q100 0 166.5 97t101.5 272l50 247q34 177 -16 281t-166 104h-93l-79 -398h171l-35 -175h-171z" />
<glyph unicode="&#xd1;" horiz-adv-x="1193" d="M22 0l291 1456h283l226 -905h6l181 905h281l-291 -1456h-281l-226 907h-6l-181 -907h-283zM527 1645q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45q-17 -99 -75.5 -163.5t-135.5 -64.5q-53 0 -121 44t-110 44q-24 0 -47.5 -33 t-30.5 -79z" />
<glyph unicode="&#xd2;" horiz-adv-x="1121" d="M114 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181t74 -441l-52 -259q-58 -289 -218 -453t-384 -164q-209 0 -330 179.5t-68 441.5zM394 600q-36 -180 9 -286.5t154 -106.5q95 0 168 107.5t108 281.5l52 261q36 177 -14.5 284t-160.5 107q-94 0 -161.5 -106 t-102.5 -281zM512 1846h302l124 -266h-226z" />
<glyph unicode="&#xd3;" horiz-adv-x="1121" d="M114 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181t74 -441l-52 -259q-58 -289 -218 -453t-384 -164q-209 0 -330 179.5t-68 441.5zM394 600q-36 -180 9 -286.5t154 -106.5q95 0 168 107.5t108 281.5l52 261q36 177 -14.5 284t-160.5 107q-94 0 -161.5 -106 t-102.5 -281zM654 1581l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xd4;" horiz-adv-x="1121" d="M114 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181t74 -441l-52 -259q-58 -289 -218 -453t-384 -164q-209 0 -330 179.5t-68 441.5zM394 600q-36 -180 9 -286.5t154 -106.5q95 0 168 107.5t108 281.5l52 261q36 177 -14.5 284t-160.5 107q-94 0 -161.5 -106 t-102.5 -281zM479 1612l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xd5;" horiz-adv-x="1121" d="M114 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181t74 -441l-52 -259q-58 -289 -218 -453t-384 -164q-209 0 -330 179.5t-68 441.5zM394 600q-36 -180 9 -286.5t154 -106.5q95 0 168 107.5t108 281.5l52 261q36 177 -14.5 284t-160.5 107q-94 0 -161.5 -106 t-102.5 -281zM498 1666q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45q-17 -99 -75.5 -163.5t-135.5 -64.5q-53 0 -121 44t-110 44q-24 0 -47.5 -33t-30.5 -79z" />
<glyph unicode="&#xd6;" horiz-adv-x="1121" d="M114 600l52 259q58 290 212.5 454t376.5 164q211 0 337 -181t74 -441l-52 -259q-58 -289 -218 -453t-384 -164q-209 0 -330 179.5t-68 441.5zM394 600q-36 -180 9 -286.5t154 -106.5q95 0 168 107.5t108 281.5l52 261q36 177 -14.5 284t-160.5 107q-94 0 -161.5 -106 t-102.5 -281zM465 1627l32 198h245l-32 -198h-245zM895 1627l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xd7;" horiz-adv-x="946" d="M50 369l322 313l-200 318l198 163l188 -300l308 300l131 -163l-326 -317l198 -314l-198 -163l-186 296l-304 -296z" />
<glyph unicode="&#xd8;" horiz-adv-x="1170" d="M69 -93l121 182q-69 71 -93.5 181.5t4.5 252.5l81 408q54 272 211 409t382 137q80 0 150 -25t122 -72l91 136h126l-149 -223q39 -71 49.5 -162.5t-10.5 -199.5l-81 -408q-55 -273 -212.5 -408.5t-383.5 -135.5q-57 0 -108.5 12t-95.5 36l-79 -120h-125zM365.5 429 q-3.5 -41 0.5 -65l6 -2l511 771q-13 59 -51 87t-102 28q-96 0 -167 -80.5t-101 -234.5l-82 -410q-11 -53 -14.5 -94zM414 239q19 -17 46 -24.5t62 -7.5q94 0 166 80.5t104 235.5l78 390l-6 2z" />
<glyph unicode="&#xd9;" horiz-adv-x="1131" d="M100 465l198 991h281l-198 -991q-28 -141 9 -200t132 -59q89 0 153.5 61t91.5 198l198 991h281l-198 -991q-50 -248 -201.5 -367t-369.5 -119q-200 0 -311.5 128.5t-65.5 357.5zM509 1825h302l124 -266h-226z" />
<glyph unicode="&#xda;" horiz-adv-x="1131" d="M100 465l198 991h281l-198 -991q-28 -141 9 -200t132 -59q89 0 153.5 61t91.5 198l198 991h281l-198 -991q-50 -248 -201.5 -367t-369.5 -119q-200 0 -311.5 128.5t-65.5 357.5zM651 1560l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xdb;" horiz-adv-x="1131" d="M100 465l198 991h281l-198 -991q-28 -141 9 -200t132 -59q89 0 153.5 61t91.5 198l198 991h281l-198 -991q-50 -248 -201.5 -367t-369.5 -119q-200 0 -311.5 128.5t-65.5 357.5zM476 1591l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xdc;" horiz-adv-x="1131" d="M100 465l198 991h281l-198 -991q-28 -141 9 -200t132 -59q89 0 153.5 61t91.5 198l198 991h281l-198 -991q-50 -248 -201.5 -367t-369.5 -119q-200 0 -311.5 128.5t-65.5 357.5zM462 1606l32 198h245l-32 -198h-245zM892 1606l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xdd;" horiz-adv-x="1085" d="M217 1456h308l99 -607l5 -1l344 608h307l-583 -939l-103 -517h-281l108 539zM638 1559l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xde;" horiz-adv-x="1040" d="M20 0l291 1456h283l-54 -268h151q200 0 300.5 -126.5t61.5 -323.5q-44 -215 -184 -332.5t-358 -117.5h-151l-57 -288h-283zM406 515h150q80 0 137 64.5t76 156.5q20 101 -8.5 163t-115.5 62h-147l-3 3z" />
<glyph unicode="&#xdf;" horiz-adv-x="1095" d="M32 0l221 1104q47 238 178.5 351.5t330.5 113.5q147 0 235.5 -97.5t54.5 -267.5q-23 -116 -81.5 -207t-72.5 -162q-12 -60 71 -198.5t56 -277.5q-42 -205 -151 -292.5t-306 -87.5q-58 0 -118.5 15t-86.5 40l94 224q25 -23 63.5 -38t91.5 -15q44 0 80.5 38.5t50.5 104.5 q16 80 -71 209t-59 267q21 104 81.5 198t75.5 168q13 67 -10.5 110t-66.5 43q-46 0 -92 -66.5t-68 -176.5l-220 -1100h-281z" />
<glyph unicode="&#xe0;" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q16 84 0 124t-68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q152 0 238.5 -100t51.5 -279l-88 -438q-17 -84 -19.5 -150t6.5 -135h-280q-6 27 -8.5 58t-2.5 64q-50 -65 -110.5 -104t-131.5 -39 q-120 0 -183.5 89.5t-34.5 233.5zM318 315q-12 -58 4 -90t54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5zM332 1503h302l124 -266h-226z" />
<glyph unicode="&#xe1;" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q16 84 0 124t-68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q152 0 238.5 -100t51.5 -279l-88 -438q-17 -84 -19.5 -150t6.5 -135h-280q-6 27 -8.5 58t-2.5 64q-50 -65 -110.5 -104t-131.5 -39 q-120 0 -183.5 89.5t-34.5 233.5zM318 315q-12 -58 4 -90t54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5zM474 1238l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xe2;" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q16 84 0 124t-68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q152 0 238.5 -100t51.5 -279l-88 -438q-17 -84 -19.5 -150t6.5 -135h-280q-6 27 -8.5 58t-2.5 64q-50 -65 -110.5 -104t-131.5 -39 q-120 0 -183.5 89.5t-34.5 233.5zM299 1269l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214zM318 315q-12 -58 4 -90t54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q16 84 0 124t-68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q152 0 238.5 -100t51.5 -279l-88 -438q-17 -84 -19.5 -150t6.5 -135h-280q-6 27 -8.5 58t-2.5 64q-50 -65 -110.5 -104t-131.5 -39 q-120 0 -183.5 89.5t-34.5 233.5zM318 315q-12 -58 4 -90t54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5zM318 1323q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45q-17 -99 -75.5 -163.5t-135.5 -64.5 q-53 0 -121 44t-110 44q-24 0 -47.5 -33t-30.5 -79z" />
<glyph unicode="&#xe4;" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q16 84 0 124t-68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q152 0 238.5 -100t51.5 -279l-88 -438q-17 -84 -19.5 -150t6.5 -135h-280q-6 27 -8.5 58t-2.5 64q-50 -65 -110.5 -104t-131.5 -39 q-120 0 -183.5 89.5t-34.5 233.5zM285 1284l32 198h245l-32 -198h-245zM318 315q-12 -58 4 -90t54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5zM715 1284l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xe5;" horiz-adv-x="911" d="M33 302q34 170 146 252.5t309 82.5h96l18 88q16 84 0 124t-68 40q-39 0 -68 -35t-41 -98l-273 1l-2 6q26 151 148 245t297 94q152 0 238.5 -100t51.5 -279l-88 -438q-17 -84 -19.5 -150t6.5 -135h-280q-6 27 -8.5 58t-2.5 64q-50 -65 -110.5 -104t-131.5 -39 q-120 0 -183.5 89.5t-34.5 233.5zM318 315q-12 -58 4 -90t54 -32q36 0 72.5 22t63.5 58l40 201h-96q-53 0 -89 -45.5t-49 -113.5zM463 1417q16 85 80.5 137.5t145.5 52.5q72 0 117 -55.5t30 -134.5q-18 -87 -80 -136.5t-142 -49.5q-75 0 -121.5 53.5t-29.5 132.5zM569 1417 q-9 -45 8.5 -70t54.5 -25q34 0 62 26.5t37 68.5q8 46 -8 71.5t-53 25.5q-34 0 -63.5 -27.5t-37.5 -69.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1420" d="M20 317q34 169 154.5 250.5t328.5 81.5h124l11 56q16 84 -1.5 126.5t-65.5 42.5q-47 0 -85.5 -37.5t-48.5 -91.5l-268 17l-2 6q26 154 148.5 244t303.5 90q72 0 132.5 -22t102.5 -65q58 43 127.5 65t149.5 22q162 0 241 -133.5t35 -353.5l-32 -160h-505 q-20 -123 9.5 -186t121.5 -63q68 0 122.5 19.5t123.5 58.5l33 -183q-59 -49 -158 -85.5t-200 -36.5q-96 0 -168.5 39t-115.5 112q-62 -66 -151 -108.5t-198 -42.5q-151 0 -225 92.5t-44 245.5zM301 313q-13 -64 7 -96.5t77 -32.5q34 0 83 27t84 64l38 191h-122 q-60 0 -107.5 -45.5t-59.5 -107.5zM910 644h228l5 27q20 100 6.5 151.5t-63.5 51.5q-62 0 -104.5 -61t-71.5 -169z" />
<glyph unicode="&#xe7;" horiz-adv-x="878" d="M58 470l22 139q36 224 164.5 358.5t330.5 134.5q162 0 246.5 -114.5t54.5 -308.5h-263q14 93 -2.5 144t-71.5 51q-74 0 -116 -73t-61 -192l-22 -139q-21 -129 -4 -196.5t97 -67.5q51 0 84.5 43t46.5 124h255l2 -6q-26 -177 -144 -282.5t-280 -105.5q-193 0 -283.5 138.5 t-55.5 352.5zM216 -454l26 155q28 0 49 21t30 63q8 45 -11 60.5t-76 20.5l54 141h211l-20 -59q45 -11 69.5 -52.5t9.5 -120.5q-24 -115 -110.5 -175t-226.5 -58z" />
<glyph unicode="&#xe8;" horiz-adv-x="907" d="M73 451l24 152q36 227 163 363t318 136q176 0 258.5 -128.5t48.5 -344.5l-28 -174h-504v-4q-18 -111 15 -178t125 -67q72 0 124.5 18.5t123.5 59.5l42 -181q-62 -54 -157 -89t-203 -35q-189 0 -286 135t-64 337zM293 1504h302l124 -266h-226zM384 645h226l7 40 q15 94 -1.5 141.5t-73.5 47.5q-58 0 -97 -62.5t-61 -166.5z" />
<glyph unicode="&#xe9;" horiz-adv-x="907" d="M73 451l24 152q36 227 163 363t318 136q176 0 258.5 -128.5t48.5 -344.5l-28 -174h-504v-4q-18 -111 15 -178t125 -67q72 0 124.5 18.5t123.5 59.5l42 -181q-62 -54 -157 -89t-203 -35q-189 0 -286 135t-64 337zM384 645h226l7 40q15 94 -1.5 141.5t-73.5 47.5 q-58 0 -97 -62.5t-61 -166.5zM435 1239l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xea;" horiz-adv-x="907" d="M73 451l24 152q36 227 163 363t318 136q176 0 258.5 -128.5t48.5 -344.5l-28 -174h-504v-4q-18 -111 15 -178t125 -67q72 0 124.5 18.5t123.5 59.5l42 -181q-62 -54 -157 -89t-203 -35q-189 0 -286 135t-64 337zM262 1270l5 25l290 237h155l200 -240l-5 -22h-219l-80 134 l-132 -134h-214zM384 645h226l7 40q15 94 -1.5 141.5t-73.5 47.5q-58 0 -97 -62.5t-61 -166.5z" />
<glyph unicode="&#xeb;" horiz-adv-x="907" d="M73 451l24 152q36 227 163 363t318 136q176 0 258.5 -128.5t48.5 -344.5l-28 -174h-504v-4q-18 -111 15 -178t125 -67q72 0 124.5 18.5t123.5 59.5l42 -181q-62 -54 -157 -89t-203 -35q-189 0 -286 135t-64 337zM248 1284l32 198h245l-32 -198h-245zM384 645h226l7 40 q15 94 -1.5 141.5t-73.5 47.5q-58 0 -97 -62.5t-61 -166.5zM678 1284l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xec;" horiz-adv-x="507" d="M26 0l216 1082h283l-216 -1082h-283zM132 1482h302l124 -266h-226z" />
<glyph unicode="&#xed;" horiz-adv-x="507" d="M26 0l216 1082h283l-216 -1082h-283zM272 1217l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xee;" horiz-adv-x="507" d="M26 0l216 1082h283l-216 -1082h-283zM99 1250l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xef;" horiz-adv-x="507" d="M26 0l216 1082h283l-216 -1082h-283zM85 1263l32 198h245l-32 -198h-245zM515 1263l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xf0;" horiz-adv-x="1016" d="M46 466q48 241 180.5 369t327.5 128q53 0 101 -21t86 -59q0 79 -16 142t-44 113l-198 -119l-49 111l169 101q-25 20 -52.5 37t-57.5 32l131 217q65 -21 121.5 -56t103.5 -82l185 111l47 -110l-158 -96q71 -117 92 -274.5t-16 -345.5l-14 -71q-58 -288 -220.5 -451 t-363.5 -163q-187 0 -291.5 142t-63.5 345zM328 466q-24 -117 8 -188.5t113 -71.5q77 0 148.5 110t105.5 277l14 73v1q-19 36 -59 59.5t-97 23.5q-79 0 -143.5 -79t-89.5 -205z" />
<glyph unicode="&#xf1;" d="M0 0l216 1082h263l-16 -138q57 76 127 117t145 41q120 0 176.5 -106t13.5 -325l-134 -671h-283l134 671q24 119 5 161t-81 42q-32 0 -64 -20t-61 -55l-159 -799h-282zM345 1323q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45 q-17 -99 -75.5 -163.5t-135.5 -64.5q-53 0 -121 44t-110 44q-24 0 -47.5 -33t-30.5 -79z" />
<glyph unicode="&#xf2;" d="M66 473l21 134q36 226 166.5 360.5t332.5 134.5q191 0 283.5 -140t58.5 -355l-21 -134q-37 -228 -168 -361t-331 -133q-193 0 -285.5 138.5t-56.5 355.5zM322 1503h302l124 -266h-226zM344.5 274.5q19.5 -68.5 99.5 -68.5q73 0 117 72t64 195l21 134q20 127 0.5 197 t-96.5 70q-74 0 -119.5 -73.5t-63.5 -193.5l-21 -134q-21 -130 -1.5 -198.5z" />
<glyph unicode="&#xf3;" d="M66 473l21 134q36 226 166.5 360.5t332.5 134.5q191 0 283.5 -140t58.5 -355l-21 -134q-37 -228 -168 -361t-331 -133q-193 0 -285.5 138.5t-56.5 355.5zM344.5 274.5q19.5 -68.5 99.5 -68.5q73 0 117 72t64 195l21 134q20 127 0.5 197t-96.5 70q-74 0 -119.5 -73.5 t-63.5 -193.5l-21 -134q-21 -130 -1.5 -198.5zM464 1238l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xf4;" d="M66 473l21 134q36 226 166.5 360.5t332.5 134.5q191 0 283.5 -140t58.5 -355l-21 -134q-37 -228 -168 -361t-331 -133q-193 0 -285.5 138.5t-56.5 355.5zM289 1269l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214zM344.5 274.5q19.5 -68.5 99.5 -68.5 q73 0 117 72t64 195l21 134q20 127 0.5 197t-96.5 70q-74 0 -119.5 -73.5t-63.5 -193.5l-21 -134q-21 -130 -1.5 -198.5z" />
<glyph unicode="&#xf5;" d="M66 473l21 134q36 226 166.5 360.5t332.5 134.5q191 0 283.5 -140t58.5 -355l-21 -134q-37 -228 -168 -361t-331 -133q-193 0 -285.5 138.5t-56.5 355.5zM308 1323q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45q-17 -99 -75.5 -163.5 t-135.5 -64.5q-53 0 -121 44t-110 44q-24 0 -47.5 -33t-30.5 -79zM344.5 274.5q19.5 -68.5 99.5 -68.5q73 0 117 72t64 195l21 134q20 127 0.5 197t-96.5 70q-74 0 -119.5 -73.5t-63.5 -193.5l-21 -134q-21 -130 -1.5 -198.5z" />
<glyph unicode="&#xf6;" d="M66 473l21 134q36 226 166.5 360.5t332.5 134.5q191 0 283.5 -140t58.5 -355l-21 -134q-37 -228 -168 -361t-331 -133q-193 0 -285.5 138.5t-56.5 355.5zM275 1284l32 198h245l-32 -198h-245zM344.5 274.5q19.5 -68.5 99.5 -68.5q73 0 117 72t64 195l21 134 q20 127 0.5 197t-96.5 70q-74 0 -119.5 -73.5t-63.5 -193.5l-21 -134q-21 -130 -1.5 -198.5zM705 1284l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xf7;" horiz-adv-x="969" d="M91 577l45 221h838l-45 -221h-838zM289 167l46 230h277l-46 -230h-277zM450 971l46 230h277l-46 -230h-277z" />
<glyph unicode="&#xf8;" horiz-adv-x="962" d="M28 -143l129 218q-64 66 -88 169.5t-3 228.5l21 134q36 226 166.5 360.5t332.5 134.5q44 0 84 -8.5t75 -24.5l88 148h150l-135 -227q57 -67 77.5 -166t2.5 -217l-21 -134q-37 -228 -168 -361t-331 -133q-41 0 -77.5 7t-67.5 19l-87 -148h-148zM337 389l5 -2l275 465 q-14 10 -30.5 16t-36.5 6q-74 0 -119.5 -73.5t-63.5 -193.5l-21 -134q-5 -28 -7.5 -50.5t-1.5 -33.5zM390 218q10 -6 23.5 -9t30.5 -3q73 0 117 72t64 195l21 134q2 13 3.5 25t1.5 15l-6 2z" />
<glyph unicode="&#xf9;" d="M84 428l130 654h282l-131 -656q-25 -122 -10.5 -170.5t65.5 -48.5q40 0 76 18t66 52l161 805h283l-216 -1082h-248l7 114q-54 -67 -120 -101t-141 -34q-129 0 -189.5 111.5t-14.5 337.5zM353 1482h302l124 -266h-226z" />
<glyph unicode="&#xfa;" d="M84 428l130 654h282l-131 -656q-25 -122 -10.5 -170.5t65.5 -48.5q40 0 76 18t66 52l161 805h283l-216 -1082h-248l7 114q-54 -67 -120 -101t-141 -34q-129 0 -189.5 111.5t-14.5 337.5zM495 1217l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xfb;" d="M84 428l130 654h282l-131 -656q-25 -122 -10.5 -170.5t65.5 -48.5q40 0 76 18t66 52l161 805h283l-216 -1082h-248l7 114q-54 -67 -120 -101t-141 -34q-129 0 -189.5 111.5t-14.5 337.5zM320 1250l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#xfc;" d="M84 428l130 654h282l-131 -656q-25 -122 -10.5 -170.5t65.5 -48.5q40 0 76 18t66 52l161 805h283l-216 -1082h-248l7 114q-54 -67 -120 -101t-141 -34q-129 0 -189.5 111.5t-14.5 337.5zM306 1263l32 198h245l-32 -198h-245zM736 1263l32 198h245l-32 -198h-245z" />
<glyph unicode="&#xfd;" horiz-adv-x="880" d="M-81 -413l76 212q13 -3 21 -4.5t16 -1.5q54 0 92 33.5t61 84.5l38 78l-84 1093h303l-11 -615l6 -2l264 617h301l-595 -1245q-62 -116 -143.5 -195t-217.5 -79q-32 0 -59 6t-68 18zM455 1217l209 266h295l2 -6l-280 -260h-226z" />
<glyph unicode="&#xfe;" horiz-adv-x="964" d="M-77 -416l299 1498h1l96 478h281l-109 -545q42 42 90.5 64.5t100.5 22.5q153 0 222 -169t20 -418l-4 -21q-52 -258 -157.5 -386.5t-270.5 -128.5q-60 0 -108.5 24t-81.5 70l-14 -73l-83 -416h-282zM338 250q13 -24 39 -34t69 -10q68 0 115.5 75t76.5 213l4 21 q33 166 21 262.5t-83 96.5q-38 0 -73 -28t-65 -77z" />
<glyph unicode="&#xff;" horiz-adv-x="880" d="M-81 -413l76 212q13 -3 21 -4.5t16 -1.5q54 0 92 33.5t61 84.5l38 78l-84 1093h303l-11 -615l6 -2l264 617h301l-595 -1245q-62 -116 -143.5 -195t-217.5 -79q-32 0 -59 6t-68 18zM268 1263l32 198h245l-32 -198h-245zM698 1263l32 198h245l-32 -198h-245z" />
<glyph unicode="&#x152;" horiz-adv-x="1644" d="M118 576l61 304q56 282 225.5 439.5t400.5 157.5q49 0 108 -6t116 -15h747l-45 -228h-541l-72 -362h460l-45 -227h-460l-83 -412h542l-45 -227h-749q-74 -10 -126.5 -15.5t-104.5 -5.5q-211 0 -326 168.5t-63 428.5zM399 576q-38 -191 3 -280.5t150 -89.5q34 0 73 3t80 9 l204 1019q-37 6 -74.5 9.5t-74.5 3.5q-100 0 -182.5 -96.5t-117.5 -271.5z" />
<glyph unicode="&#x153;" horiz-adv-x="1504" d="M97 529l4 22q52 260 189.5 405.5t339.5 145.5q80 0 143.5 -31.5t106.5 -88.5q61 58 137 89t163 31q171 0 249.5 -133t35.5 -353l-32 -161h-501q-16 -117 14 -183t113 -66q69 0 125 19t128 59l35 -181q-64 -53 -161.5 -88.5t-205.5 -35.5q-81 0 -146 32t-109 91 q-66 -61 -146 -92t-172 -31q-186 0 -272 155t-38 395zM360 289q13 -81 90 -75l6 -1q68 -5 119 82.5t81 233.5l4 22q31 156 17.5 238t-90.5 77l-6 1q-68 4 -119 -85t-79 -231l-4 -22q-32 -159 -19 -240zM973 645h222l5 27q20 102 6 152t-71 50q-51 0 -92 -62t-70 -167z" />
<glyph unicode="&#x178;" horiz-adv-x="1085" d="M217 1456h308l99 -607l5 -1l344 608h307l-583 -939l-103 -517h-281l108 539zM449 1605l32 198h245l-32 -198h-245zM879 1605l32 198h245l-32 -198h-245z" />
<glyph unicode="&#x2c6;" horiz-adv-x="880" d="M282 1252l5 25l290 237h155l200 -240l-5 -22h-219l-80 134l-132 -134h-214z" />
<glyph unicode="&#x2dc;" horiz-adv-x="844" d="M246 1272q15 96 74.5 162.5t135.5 66.5q40 0 114.5 -44t117.5 -44q24 0 48 33t32 80l138 -45q-17 -99 -75.5 -163.5t-135.5 -64.5q-53 0 -121 44t-110 44q-24 0 -47.5 -33t-30.5 -79z" />
<glyph unicode="&#x2000;" horiz-adv-x="964" />
<glyph unicode="&#x2001;" horiz-adv-x="1929" />
<glyph unicode="&#x2002;" horiz-adv-x="964" />
<glyph unicode="&#x2003;" horiz-adv-x="1929" />
<glyph unicode="&#x2004;" horiz-adv-x="643" />
<glyph unicode="&#x2005;" horiz-adv-x="482" />
<glyph unicode="&#x2006;" horiz-adv-x="321" />
<glyph unicode="&#x2007;" horiz-adv-x="321" />
<glyph unicode="&#x2008;" horiz-adv-x="241" />
<glyph unicode="&#x2009;" horiz-adv-x="385" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="734" d="M140 511l46 228h478l-46 -228h-478z" />
<glyph unicode="&#x2011;" horiz-adv-x="734" d="M140 511l46 228h478l-46 -228h-478z" />
<glyph unicode="&#x2012;" horiz-adv-x="734" d="M140 511l46 228h478l-46 -228h-478z" />
<glyph unicode="&#x2013;" horiz-adv-x="1166" d="M192 600l60 230h873l-59 -230h-874z" />
<glyph unicode="&#x2014;" horiz-adv-x="1373" d="M181 600l74 230h1075l-74 -230h-1075z" />
<glyph unicode="&#x2018;" horiz-adv-x="363" d="M162 1023l38 191l212 346h135l-115 -342l-39 -195h-231z" />
<glyph unicode="&#x2019;" horiz-adv-x="363" d="M170 1024l115 344l38 192h232l-38 -192l-212 -344h-135z" />
<glyph unicode="&#x201a;" horiz-adv-x="365" d="M-94 -257l103 267l57 285h232l-54 -271l-186 -281h-152z" />
<glyph unicode="&#x201c;" horiz-adv-x="657" d="M162 1023l38 191l212 346h135l-115 -342l-39 -195h-231zM456 1023l38 191l212 346h135l-115 -342l-39 -195h-231z" />
<glyph unicode="&#x201d;" horiz-adv-x="665" d="M164 1024l115 344l38 192h232l-38 -192l-212 -344h-135zM464 1024l115 344l38 192h232l-38 -192l-212 -344h-135z" />
<glyph unicode="&#x201e;" horiz-adv-x="652" d="M-86 -246l100 254l53 263h215l-50 -251l-199 -266h-119zM216 -246l102 261l51 256h215l-50 -251l-199 -266h-119z" />
<glyph unicode="&#x2022;" horiz-adv-x="665" d="M182 710l19 96q21 106 90.5 167t166.5 61q92 0 140 -64.5t28 -163.5l-19 -96q-22 -107 -90 -166t-167 -59q-91 0 -139.5 63.5t-28.5 161.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1307" d="M40 0l52 258h278l-52 -258h-278zM439 0l52 258h278l-52 -258h-278zM833 0l52 258h278l-52 -258h-278z" />
<glyph unicode="&#x202f;" horiz-adv-x="385" />
<glyph unicode="&#x2039;" horiz-adv-x="549" d="M123 541l1 6l3 13l299 389h173l-263 -399l104 -397h-173z" />
<glyph unicode="&#x203a;" horiz-adv-x="527" d="M18 152l263 398l-103 399h173l143 -389l-2 -6h1l-3 -13l-299 -389h-173z" />
<glyph unicode="&#x205f;" horiz-adv-x="482" />
<glyph unicode="&#x20ac;" horiz-adv-x="938" d="M74 454l38 200h112l25 116h-112l41 200h113l3 16q43 223 192 357t357 134q46 0 94 -8.5t99 -22.5l-66 -232q-40 16 -83 25.5t-89 9.5q-76 0 -139.5 -78.5t-81.5 -182.5l-4 -18h312l-41 -200h-312l-25 -116h312l-38 -200h-313l-2 -12q-23 -109 8.5 -172.5t115.5 -63.5 q43 0 92 8.5t93 24.5l-26 -229q-51 -15 -102 -23t-102 -8q-190 0 -295.5 135.5t-65.5 327.5l2 12h-112z" />
<glyph unicode="&#x2122;" horiz-adv-x="1076" d="M275 1350l21 106h325l-21 -106h-98l-87 -433h-134l87 433h-93zM568 914l108 542h146l11 -358l5 -1l153 359h140l-108 -542h-117l47 239l-5 2l-117 -241h-65l-22 255h-6l-51 -255h-119z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1119" d="M66 0l175 876h-126l41 206h126l24 120q39 194 146.5 286.5t276.5 92.5q30 0 62 -5.5t70 -15.5l-67 -218q-17 4 -34.5 7t-41.5 3q-46 0 -81 -39.5t-49 -110.5l-24 -120h162l-41 -206h-162l-175 -876h-282zM649 0l312 1560h281l-312 -1560h-281z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1705" d="M66 0l175 876h-126l41 206h126l24 120q39 194 146.5 286.5t276.5 92.5q30 0 62 -5.5t70 -15.5l-67 -218q-17 4 -34.5 7t-41.5 3q-46 0 -81 -39.5t-49 -110.5l-24 -120h162l-41 -206h-162l-175 -876h-282zM692 0l175 876h-126l41 206h126l14 70q44 220 171 324.5 t330 104.5q63 0 129.5 -15.5t139.5 -43.5l-85 -232q-58 22 -104 34t-111 12q-70 0 -120.5 -48t-67.5 -136l-14 -70h161l-41 -206h-161l-175 -876h-282zM1234 0l216 1082h283l-216 -1082h-283z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1750" d="M66 0l175 876h-126l41 206h126l24 120q39 194 146.5 286.5t276.5 92.5q30 0 62 -5.5t70 -15.5l-67 -218q-17 4 -34.5 7t-41.5 3q-46 0 -81 -39.5t-49 -110.5l-24 -120h162l-41 -206h-162l-175 -876h-282zM697 0l175 876h-126l41 206h126l24 120q39 194 146.5 286.5 t276.5 92.5q30 0 62 -5.5t70 -15.5l-67 -218q-17 4 -34.5 7t-41.5 3q-46 0 -81 -39.5t-49 -110.5l-24 -120h162l-41 -206h-162l-175 -876h-282zM1280 0l312 1560h281l-312 -1560h-281z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-18" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="224" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="61" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="234" />
<hkern u1="F" u2="&#x201e;" k="234" />
<hkern u1="F" u2="&#x201a;" k="234" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="264" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="234" />
<hkern u1="F" u2="&#x2c;" k="234" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="92" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="97" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="43" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="80" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="114" />
<hkern u1="T" u2="&#xc6;" k="179" />
<hkern u1="T" u2="&#xbb;" k="216" />
<hkern u1="T" u2="&#xab;" k="328" />
<hkern u1="T" u2="w" k="57" />
<hkern u1="T" u2="r" k="75" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-32" />
<hkern u1="r" u2="f" k="-15" />
<hkern u1="t" u2="&#xf6;" k="20" />
<hkern u1="t" u2="&#xf5;" k="20" />
<hkern u1="t" u2="&#xf4;" k="20" />
<hkern u1="t" u2="&#xf3;" k="20" />
<hkern u1="t" u2="&#xf2;" k="20" />
<hkern u1="t" u2="o" k="20" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="61" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="61" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="61" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="61" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="61" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="61" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="129" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="87" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="69" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="94" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="m,n,p,ntilde" k="23" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
<hkern g1="L" g2="T" k="275" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
<hkern g1="L" g2="V" k="175" />
<hkern g1="L" g2="W" k="143" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
<hkern g1="P" g2="X" k="31" />
<hkern g1="P" g2="Z" k="26" />
<hkern g1="P" g2="J" k="200" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
<hkern g1="T" g2="m,n,p,ntilde" k="109" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
<hkern g1="T" g2="s" k="116" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
<hkern g1="T" g2="J" k="240" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 76 KiB

View File

@ -0,0 +1,643 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="roboto_condensedlight" horiz-adv-x="969" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="434" />
<glyph unicode="&#xfb01;" horiz-adv-x="941" d="M43 981v101h147v136q0 173 82 268t227 95q56 0 113 -15.5t118 -44.5l-20 -105q-46 24 -94.5 38t-107.5 14q-101 0 -149.5 -63.5t-48.5 -186.5v-136h199v-101h-199v-981h-120v981h-147zM672 0v1082h121v-1082h-121z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="434" />
<glyph horiz-adv-x="18" />
<glyph unicode="&#x9;" horiz-adv-x="18" />
<glyph unicode=" " horiz-adv-x="434" />
<glyph unicode="&#x09;" horiz-adv-x="434" />
<glyph unicode="&#xa0;" horiz-adv-x="434" />
<glyph unicode="!" horiz-adv-x="421" d="M144 0v168h133v-168h-133zM150 478v978h119v-978h-119z" />
<glyph unicode="&#x22;" horiz-adv-x="549" d="M113 1080l2 254v226h102v-219l-36 -261h-68zM338 1080l2 258v222h102v-219l-36 -261h-68z" />
<glyph unicode="#" horiz-adv-x="1072" d="M65 410v96h222l68 435h-227v99h243l66 416h97l-66 -416h245l66 416h96l-66 -416h181v-99h-197l-69 -435h205v-96h-220l-65 -410h-96l65 410h-244l-65 -410h-97l65 410h-207zM384 506h244l69 435h-245z" />
<glyph unicode="$" horiz-adv-x="964" d="M103 419h119q0 -177 78 -254.5t188 -77.5q116 0 185 77.5t69 194.5q0 110 -57 179.5t-200 133.5q-172 66 -255 159t-83 262q0 160 81.5 262t221.5 119v203h101v-203q143 -19 222 -134.5t79 -313.5h-120q0 151 -61.5 246t-171.5 95q-114 0 -173 -77t-59 -194 q0 -113 54.5 -182t205.5 -133q171 -68 252.5 -160t81.5 -260q0 -164 -85 -263.5t-232 -115.5v-190h-100v189q-148 14 -244.5 119.5t-96.5 318.5z" />
<glyph unicode="%" horiz-adv-x="1333" d="M103 1099v77q0 127 69.5 214t182.5 87t182.5 -87t69.5 -214v-77q0 -127 -69 -213t-181 -86q-114 0 -184 86.5t-70 212.5zM200 1099q0 -87 40.5 -148.5t116.5 -61.5q74 0 114 61t40 149v77q0 87 -40.5 149.5t-115.5 62.5q-74 0 -114.5 -62.5t-40.5 -149.5v-77zM335 169 l588 1138l72 -49l-589 -1138zM735 279v78q0 126 69.5 213t182.5 87t182.5 -87t69.5 -213v-78q0 -127 -69 -213.5t-181 -86.5q-115 0 -184.5 86.5t-69.5 213.5zM831 279q0 -88 41 -149.5t117 -61.5q74 0 114 61.5t40 149.5v78q0 90 -40.5 150.5t-115.5 60.5t-115.5 -61 t-40.5 -150v-78z" />
<glyph unicode="&#x26;" horiz-adv-x="1119" d="M82 372q0 121 64.5 217.5t188.5 195.5l7 6q-73 102 -108 184.5t-35 169.5q0 159 79.5 245.5t218.5 86.5q129 0 206.5 -81.5t77.5 -204.5q0 -91 -41.5 -156.5t-119.5 -130.5l-132 -117l345 -465l6 1q38 64 60 148.5t22 180.5h113q0 -128 -33 -235.5t-95 -193.5l166 -223 h-147l-97 132q-74 -74 -161.5 -113.5t-185.5 -39.5q-184 0 -291.5 107.5t-107.5 285.5zM204 372q0 -124 71 -206.5t206 -82.5q77 0 150.5 34.5t133.5 98.5l-355 483l-9 11l-36 -32q-96 -93 -128.5 -167.5t-32.5 -138.5zM323 1147q0 -64 26.5 -134t80.5 -146l144 126 q50 44 71 93t21 105q0 77 -45.5 128.5t-123.5 51.5q-84 0 -129 -64t-45 -160z" />
<glyph unicode="'" horiz-adv-x="324" d="M106 1088l6 266v206h102v-197l-39 -275h-69z" />
<glyph unicode="(" horiz-adv-x="559" d="M123 573v15q0 360 121 648.5t262 388.5h6l24 -75q-116 -105 -204 -367t-88 -592v-20q0 -330 87.5 -592t204.5 -369l-24 -72h-6q-143 101 -263 383.5t-120 651.5z" />
<glyph unicode=")" horiz-adv-x="568" d="M20 -390q115 103 204.5 366.5t89.5 594.5v20q0 327 -91 592t-203 371l25 71h6q140 -100 261.5 -388t121.5 -649v-15q0 -369 -120.5 -651.5t-262.5 -383.5h-6z" />
<glyph unicode="*" horiz-adv-x="778" d="M34 1105l32 104l280 -122l-4 369h104l-8 -372l276 126l31 -104l-283 -114l189 -293l-86 -64l-178 304l-172 -302l-85 63l184 299z" />
<glyph unicode="+" horiz-adv-x="1026" d="M75 626v116h371v464h123v-464h376v-116h-376v-480h-123v480h-371z" />
<glyph unicode="," horiz-adv-x="346" d="M69 -258l56 280v168h121v-171l-100 -277h-77z" />
<glyph unicode="-" horiz-adv-x="497" d="M46 568v104h399v-104h-399z" />
<glyph unicode="." horiz-adv-x="440" d="M146 0v166h130v-166h-130z" />
<glyph unicode="/" horiz-adv-x="701" d="M30 -125l504 1581h106l-504 -1581h-106z" />
<glyph unicode="0" horiz-adv-x="978" d="M110 564v326q0 280 100.5 433.5t277.5 153.5t278 -153t101 -434v-326q0 -282 -100.5 -433.5t-276.5 -151.5q-177 0 -278.5 152t-101.5 433zM231 545q0 -220 67 -341t192 -121t191 120.5t66 341.5v366q0 222 -66.5 341t-192.5 119q-125 0 -191 -119.5t-66 -340.5v-366z " />
<glyph unicode="1" horiz-adv-x="964" d="M158 1285v86l419 88v-1465h-120v1332z" />
<glyph unicode="2" horiz-adv-x="964" d="M97 1041q-4 184 99.5 310t283.5 126q158 0 252.5 -108.5t94.5 -290.5q0 -121 -61.5 -245.5t-170.5 -272.5l-332 -456h615v-104h-761v94l395 540q108 148 151.5 247.5t43.5 192.5q0 134 -60.5 215.5t-166.5 81.5q-133 0 -200.5 -90.5t-67.5 -244.5h-113z" />
<glyph unicode="3" horiz-adv-x="964" d="M94 389l3 5h112q0 -139 73 -225t192 -86q120 0 187.5 80t67.5 229q0 152 -67.5 224.5t-198.5 72.5h-124v105h124q124 0 184.5 78t60.5 204q0 136 -60 215.5t-177 79.5q-110 0 -178.5 -81t-68.5 -215h-112l-2 5q-4 171 98 284t263 113q163 0 260 -107t97 -298 q0 -103 -51 -193t-146 -134q113 -38 166 -130t53 -219q0 -195 -105.5 -306t-270.5 -111q-162 0 -273 108t-107 302z" />
<glyph unicode="4" horiz-adv-x="964" d="M62 366v71l549 1019h129v-986h181v-104h-181v-366h-119v366h-559zM198 470h423v805l-6 1l-34 -88z" />
<glyph unicode="5" horiz-adv-x="964" d="M148 378l2 5h109q0 -146 64.5 -223t171.5 -77q125 0 188.5 97.5t63.5 281.5q0 162 -64.5 259.5t-178.5 97.5q-109 0 -164 -43.5t-80 -133.5l-98 17l68 797h592v-115h-490l-44 -513q44 48 96 75.5t135 30.5q158 3 253 -125t95 -345q0 -221 -93.5 -353t-278.5 -132 q-151 0 -251 101t-96 298z" />
<glyph unicode="6" horiz-adv-x="964" d="M130 541v363q0 254 122 413.5t301 159.5q63 0 123.5 -17t104.5 -49l-29 -100q-43 30 -89 45t-110 15q-133 0 -218.5 -125.5t-85.5 -329.5v-106q52 70 126.5 110.5t162.5 40.5q162 0 257 -135.5t95 -351.5t-102 -355.5t-267 -139.5q-169 0 -280 150t-111 412zM249 532 q0 -208 77 -329t195 -121q114 0 181 114t67 278q0 173 -67 280t-189 107q-95 0 -164.5 -55.5t-99.5 -145.5v-128z" />
<glyph unicode="7" horiz-adv-x="964" d="M73 1350v106h799v-106q-202 -270 -297 -553.5t-130 -673.5l-11 -123h-119l10 123q35 371 141.5 668.5t284.5 558.5h-678z" />
<glyph unicode="8" horiz-adv-x="964" d="M92 386q0 128 65.5 223.5t176.5 136.5q-97 40 -152.5 128t-55.5 207q0 188 98.5 292t256.5 104q156 0 257 -104.5t101 -291.5q0 -119 -57.5 -207.5t-153.5 -127.5q110 -42 176.5 -137.5t66.5 -222.5q0 -197 -108 -302t-280 -105q-175 0 -283 105t-108 302zM213 386 q0 -142 74 -222.5t196 -80.5q117 0 192.5 80.5t75.5 222.5q0 137 -77 222.5t-193 85.5q-118 0 -193 -85.5t-75 -222.5zM247 1081q0 -129 65.5 -205.5t170.5 -76.5q102 0 168 77t66 205q0 126 -67.5 208t-168.5 82q-104 0 -169 -79t-65 -211z" />
<glyph unicode="9" horiz-adv-x="964" d="M81 958q0 220 107 369.5t263 149.5q179 0 285.5 -138t106.5 -400v-426q0 -254 -114 -394t-297 -140q-62 0 -128 15.5t-123 44.5l21 104q54 -32 108 -46t122 -14q131 0 209.5 111t78.5 317v131q-43 -87 -113 -133.5t-155 -46.5q-168 0 -269.5 137.5t-101.5 358.5zM204 958 q0 -168 67 -280t181 -112q102 0 170 64t98 160v158q0 207 -70.5 315t-194.5 108q-107 0 -179 -121t-72 -292z" />
<glyph unicode=":" horiz-adv-x="400" d="M139 0v166h130v-166h-130zM139 914v166h130v-166h-130z" />
<glyph unicode=";" horiz-adv-x="405" d="M96 -258l56 280v168h121v-171l-100 -277h-77zM142 916v166h130v-166h-130z" />
<glyph unicode="&#x3c;" horiz-adv-x="884" d="M71 500v99l683 378v-129l-495 -270l-95 -27v-6l95 -28l495 -266v-130z" />
<glyph unicode="=" horiz-adv-x="970" d="M134 421v109h691v-109h-691zM134 832v109h691v-109h-691z" />
<glyph unicode="&#x3e;" horiz-adv-x="901" d="M115 118v128l515 272l95 27v6l-95 29l-515 268v127l703 -378v-100z" />
<glyph unicode="?" horiz-adv-x="801" d="M71 1121q-2 166 88.5 261t232.5 95q153 0 239.5 -101t86.5 -273q0 -134 -55 -236t-158 -222q-48 -53 -58.5 -98.5t-10.5 -142.5h-121q1 130 19.5 182.5t97.5 138.5q88 117 126.5 189.5t38.5 186.5q0 126 -53.5 196t-151.5 70q-90 0 -147.5 -68t-58.5 -183h-113zM313 0 v157h133v-157h-133z" />
<glyph unicode="@" horiz-adv-x="1639" d="M114 478q15 424 218 683.5t530 259.5q338 0 510.5 -242.5t157.5 -666.5q-8 -217 -102 -375t-277 -158q-68 0 -115 49t-62 137q-46 -93 -112 -139.5t-153 -46.5q-112 0 -171.5 120t-43.5 317q20 254 122 408t248 154q84 0 135.5 -26.5t113.5 -81.5l-2 -2h3l-44 -575 q-8 -132 24 -179.5t80 -47.5q119 0 188.5 124t78.5 322q16 388 -128.5 604t-454.5 216q-278 0 -455 -235t-192 -619q-17 -379 138.5 -611.5t443.5 -232.5q77 0 155.5 21.5t133.5 57.5l28 -77q-57 -41 -146.5 -65t-173.5 -24q-331 0 -511.5 249.5t-164.5 681.5zM605 416 q-12 -155 22.5 -246t112.5 -91q69 0 126.5 39t100.5 141v14t2 20l42 548q-27 20 -59 32t-69 12q-115 0 -187 -118t-91 -351z" />
<glyph unicode="A" horiz-adv-x="1096" d="M35 0l461 1456h109l456 -1456h-124l-123 404h-531l-124 -404h-124zM317 514h464l-228 749h-6z" />
<glyph unicode="B" horiz-adv-x="1080" d="M164 0v1456h366q188 0 294 -96t106 -288q0 -110 -55 -192.5t-146 -115.5q113 -23 182 -124t69 -235q0 -196 -105.5 -300.5t-284.5 -104.5h-426zM284 104h306q127 0 198.5 78.5t71.5 220.5q0 132 -63.5 215t-187.5 83h-325v-597zM284 804h284q113 3 177 72.5t64 199.5 q0 136 -71.5 205t-207.5 69h-246v-546z" />
<glyph unicode="C" horiz-adv-x="1062" d="M110 526v403q0 261 118.5 404.5t318.5 143.5q195 0 304 -110t111 -328l-3 -6h-111q-5 173 -80 255.5t-221 82.5q-150 0 -234 -113t-84 -326v-406q0 -217 84 -330t234 -113q146 0 221 80.5t80 259.5h111l3 -6q-2 -213 -112 -325.5t-303 -112.5q-201 0 -319 142t-118 405z " />
<glyph unicode="D" horiz-adv-x="1134" d="M164 0v1456h357q227 0 371 -178t144 -457v-188q0 -280 -144 -456.5t-371 -176.5h-357zM284 104h237q176 0 285.5 149t109.5 380v191q0 229 -109.5 377.5t-285.5 148.5h-237v-1246z" />
<glyph unicode="E" horiz-adv-x="1001" d="M164 0v1456h771v-106h-651v-543h572v-104h-572v-599h657v-104h-777z" />
<glyph unicode="F" horiz-adv-x="1000" d="M164 0v1456h780v-106h-660v-565h575v-106h-575v-679h-120z" />
<glyph unicode="G" horiz-adv-x="1192" d="M123 517v433q0 255 126 391t337 136q206 0 319 -107.5t118 -299.5l-2 -6h-112q-6 147 -86 227t-237 80q-159 0 -251 -107.5t-92 -311.5v-435q0 -212 99 -323t267 -111q123 0 197 44t103 107v378h-302v105h423v-519q-40 -82 -147.5 -150.5t-273.5 -68.5q-219 0 -352.5 139 t-133.5 399z" />
<glyph unicode="H" horiz-adv-x="1221" d="M164 0v1456h120v-683h654v683h119v-1456h-119v669h-654v-669h-120z" />
<glyph unicode="I" horiz-adv-x="484" d="M181 0v1456h121v-1456h-121z" />
<glyph unicode="J" horiz-adv-x="953" d="M72 396l2 5h114q0 -157 65 -237.5t186 -80.5q103 0 170 89t67 240v1044h120v-1044q0 -200 -99 -316.5t-258 -116.5q-171 0 -271 107q-96 102 -96 294v16z" />
<glyph unicode="K" horiz-adv-x="1104" d="M164 0v1456h120v-669h152l461 669h140l-500 -715l536 -741h-149l-484 683h-156v-683h-120z" />
<glyph unicode="L" horiz-adv-x="920" d="M164 0v1456h121v-1352h588v-104h-709z" />
<glyph unicode="M" horiz-adv-x="1443" d="M158 0v1456h154l405 -1275h6l406 1275h155v-1456h-119v639l12 595l-6 1l-411 -1235h-80l-410 1233l-6 -1l12 -593v-639h-118z" />
<glyph unicode="N" horiz-adv-x="1225" d="M164 0v1456h121l650 -1219l6 1v1218h120v-1456h-120l-650 1219l-6 -1v-1218h-121z" />
<glyph unicode="O" horiz-adv-x="1124" d="M105 523v408q0 265 120 405.5t331 140.5q215 0 339 -141t124 -405v-408q0 -265 -123.5 -404.5t-338.5 -139.5q-211 0 -331.5 139.5t-120.5 404.5zM223 523q0 -219 86 -328t248 -109q166 0 254.5 109t88.5 328v411q0 216 -89 325t-255 109q-161 0 -247 -109t-86 -325v-411 z" />
<glyph unicode="P" horiz-adv-x="1080" d="M164 0v1456h431q191 0 296 -117t105 -309q0 -194 -105 -310.5t-296 -116.5h-311v-603h-120zM284 708h311q140 0 210 91.5t70 228.5q0 139 -70 230.5t-210 91.5h-311v-642z" />
<glyph unicode="Q" horiz-adv-x="1166" d="M105 523v408q0 265 120 405.5t331 140.5q215 0 339 -141t124 -405v-408q0 -141 -36.5 -247t-103.5 -175l212 -237l-82 -77l-220 246q-50 -27 -108 -40.5t-124 -13.5q-211 0 -331.5 139.5t-120.5 404.5zM223 523q0 -219 86 -328t248 -109q166 0 254.5 109t88.5 328v411 q0 216 -89 325t-255 109q-161 0 -247 -109t-86 -325v-411z" />
<glyph unicode="R" horiz-adv-x="1137" d="M162 0v1455h418q196 0 300 -103t104 -300q0 -116 -55 -206.5t-156 -133.5q111 -34 159.5 -122t48.5 -219v-137q0 -68 13 -122t44 -88v-24h-123q-31 36 -42.5 100t-11.5 136v133q0 132 -67 210t-184 78h-328v-657h-120zM282 761h284q154 0 225.5 78.5t71.5 213.5 q0 143 -70 220t-213 77h-298v-589z" />
<glyph unicode="S" horiz-adv-x="1044" d="M91 408l2 6h112q0 -170 98.5 -250.5t236.5 -80.5q136 0 219 75t83 199q0 119 -69.5 193.5t-244.5 131.5q-199 61 -301.5 157.5t-102.5 258.5q0 167 114.5 273t295.5 106q190 0 306 -125q113 -122 112 -296v-9l-3 -6h-113q0 145 -80.5 237.5t-221.5 92.5q-137 0 -213 -77 t-76 -193q0 -108 73.5 -181.5t249.5 -128.5q194 -60 294.5 -162.5t100.5 -269.5q0 -175 -118.5 -277.5t-304.5 -102.5q-182 0 -318 110q-131 106 -131 304v15z" />
<glyph unicode="T" horiz-adv-x="1020" d="M43 1350v106h933v-106h-407v-1350h-120v1350h-406z" />
<glyph unicode="U" horiz-adv-x="1119" d="M137 437v1019h118v-1019q0 -171 83.5 -262.5t217.5 -91.5q141 0 225.5 87.5t84.5 266.5v1019h119v-1019q0 -223 -119 -340.5t-310 -117.5q-187 0 -303 117.5t-116 340.5z" />
<glyph unicode="V" horiz-adv-x="1077" d="M35 1456h130l347 -1204l24 -90h6l25 90l345 1204h130l-449 -1456h-109z" />
<glyph unicode="W" horiz-adv-x="1531" d="M56 1456h121l208 -1039l31 -197l6 -1l41 198l244 1039h110l246 -1039l40 -200h6l33 200l205 1039h122l-304 -1456h-111l-260 1111l-28 135h-6l-26 -135l-264 -1111h-111z" />
<glyph unicode="X" horiz-adv-x="1069" d="M59 0l408 738l-396 718h145l320 -620l321 620h145l-395 -718l408 -738h-144l-333 639l-333 -639h-146z" />
<glyph unicode="Y" horiz-adv-x="1056" d="M35 1456h139l350 -771h6l352 771h137l-433 -922v-534h-120v540z" />
<glyph unicode="Z" horiz-adv-x="995" d="M86 0v95l671 1256h-655v105h785v-90l-674 -1262h700v-104h-827z" />
<glyph unicode="[" horiz-adv-x="460" d="M146 -312v1976h301v-106h-178v-1764h178v-106h-301z" />
<glyph unicode="\" horiz-adv-x="697" d="M46 1456h116l505 -1581h-117z" />
<glyph unicode="]" horiz-adv-x="460" d="M12 -206h178v1764h-178v106h301v-1976h-301v106z" />
<glyph unicode="^" horiz-adv-x="725" d="M68 729l248 727h87l247 -727h-114l-155 481l-20 87h-6l-20 -87l-152 -481h-115z" />
<glyph unicode="_" horiz-adv-x="764" d="M11 0h742v-104h-742v104z" />
<glyph unicode="`" horiz-adv-x="541" d="M87 1471l3 5h152l170 -266h-113z" />
<glyph unicode="a" horiz-adv-x="938" d="M98 288q0 151 106 240.5t287 89.5h189v133q0 115 -58 180t-162 65q-97 0 -159.5 -62t-62.5 -152l-112 1l-2 6v12q0 115 92 205q98 96 250 96q150 0 242 -91.5t92 -261.5v-531q0 -58 5 -112t18 -106h-125q-9 56 -13.5 92t-4.5 73q-49 -81 -127.5 -133.5t-174.5 -52.5 q-134 0 -207 83.5t-73 225.5zM218 284q0 -87 46 -142t129 -55q100 0 177.5 57.5t109.5 146.5v234h-192q-123 0 -196.5 -69.5t-73.5 -171.5z" />
<glyph unicode="b" d="M136 0v1560h120v-625q44 80 112 123.5t159 43.5q162 0 254 -134.5t92 -357.5v-164q0 -213 -91.5 -340t-252.5 -127q-95 0 -164.5 43t-113.5 123l-12 -145h-103zM256 275q33 -87 94 -138t152 -51q125 0 187.5 98t62.5 262v164q0 171 -63.5 277.5t-188.5 106.5 q-93 0 -152.5 -57t-91.5 -148v-514z" />
<glyph unicode="c" horiz-adv-x="904" d="M90 456v168q0 209 100.5 343.5t287.5 134.5q152 0 250 -106q96 -102 95 -267v-10l-2 -5h-107q0 129 -67.5 205.5t-168.5 76.5q-140 0 -204 -105.5t-64 -266.5v-168q0 -163 64 -268t204 -105q94 0 165 67.5t71 186.5h106l3 -6v-8q0 -144 -101 -243q-104 -101 -244 -101 q-187 0 -287.5 133.5t-100.5 343.5z" />
<glyph unicode="d" d="M97 510v21q0 260 91 415.5t255 155.5q89 0 155.5 -42t111.5 -119v619h120v-1560h-106l-10 140q-45 -78 -113 -119.5t-159 -41.5q-162 0 -253.5 144.5t-91.5 386.5zM219 510q0 -195 61.5 -309.5t187.5 -114.5q88 0 147.5 48t94.5 134v530q-33 87 -92 141.5t-148 54.5 q-127 0 -189 -128t-62 -335v-21z" />
<glyph unicode="e" horiz-adv-x="900" d="M88 446v180q0 205 111.5 340.5t268.5 135.5q170 0 264 -121.5t94 -326.5v-119h-619v-89q0 -156 75 -259.5t203 -103.5q89 0 153.5 31t110.5 88l49 -85q-49 -63 -126.5 -100.5t-186.5 -37.5q-175 0 -286 131.5t-111 335.5zM207 639h499v46q0 134 -63 222.5t-175 88.5 q-113 0 -185.5 -103t-75.5 -254z" />
<glyph unicode="f" horiz-adv-x="586" d="M63 981v101h146v156q0 164 70.5 253.5t196.5 89.5q28 0 56.5 -5.5t57.5 -14.5l-15 -101q-20 6 -40.5 9.5t-45.5 3.5q-79 0 -119.5 -61t-40.5 -174v-156h205v-101h-205v-981h-120v981h-146z" />
<glyph unicode="g" d="M97 446v148q0 230 93 369t257 139q91 0 159.5 -44.5t113.5 -126.5l12 151h102v-1083q0 -208 -97 -322t-275 -114q-64 0 -137.5 19.5t-130.5 51.5l33 105q49 -31 109 -48.5t124 -17.5q129 0 191 83t62 243v131q-46 -73 -113 -112t-155 -39q-163 0 -255.5 127.5 t-92.5 339.5zM218 446q0 -164 63 -262t190 -98q87 0 147 47.5t95 131.5v536q-34 86 -92.5 139.5t-147.5 53.5q-127 0 -191 -111t-64 -289v-148z" />
<glyph unicode="h" d="M136 0v1560h120v-649q45 91 117.5 141t165.5 50q143 0 220 -105.5t77 -328.5v-668h-121v670q0 174 -53.5 249t-153.5 75q-90 0 -154 -57.5t-98 -153.5v-783h-120z" />
<glyph unicode="i" horiz-adv-x="417" d="M148 0v1082h121v-1082h-121zM148 1390v170h121v-170h-121z" />
<glyph unicode="j" horiz-adv-x="432" d="M-72 -418l11 105q13 -6 35.5 -11t36.5 -5q67 0 106 61t39 179v1171h120v-1171q0 -167 -68 -257.5t-189 -90.5q-24 0 -45 5t-46 14zM156 1390v170h120v-170h-120z" />
<glyph unicode="k" horiz-adv-x="864" d="M137 0v1560h119v-929h105l305 451h145l-348 -494l388 -588h-144l-337 525h-114v-525h-119z" />
<glyph unicode="l" horiz-adv-x="417" d="M148 0v1560h121v-1560h-121z" />
<glyph unicode="m" horiz-adv-x="1515" d="M133 0v1082h106l10 -168q43 90 114 139t167 49q98 0 165 -57.5t98 -174.5q40 108 113.5 170t177.5 62q142 0 220.5 -115.5t78.5 -354.5v-632h-121v634q0 199 -54 280t-154 81q-105 0 -164 -90t-72 -226v-28v-651h-120v633q0 195 -55.5 278t-154.5 83q-95 0 -152.5 -57.5 t-82.5 -157.5v-779h-120z" />
<glyph unicode="n" d="M136 0v1082h107l10 -179q43 95 114.5 147t167.5 52q145 0 222.5 -107.5t77.5 -334.5v-660h-121v659q0 185 -54 260t-157 75q-92 0 -154 -60.5t-93 -161.5v-772h-120z" />
<glyph unicode="o" d="M86 461v159q0 210 108 346t290 136t290.5 -135.5t108.5 -346.5v-159q0 -213 -108 -347.5t-290 -134.5q-183 0 -291 134.5t-108 347.5zM207 461q0 -162 72 -270t206 -108q131 0 204 108.5t73 269.5v159q0 159 -73 267.5t-205 108.5q-133 0 -205 -108.5t-72 -267.5v-159z " />
<glyph unicode="p" d="M136 -416v1498h101l13 -149q45 81 114 125t161 44q163 0 255 -138.5t92 -369.5v-148q0 -213 -91.5 -340t-252.5 -127q-91 0 -159 38t-113 110v-543h-120zM256 258q33 -82 92 -128.5t147 -46.5q126 0 190.5 99.5t64.5 263.5v148q0 177 -65 288.5t-191 111.5 q-89 0 -147.5 -53t-90.5 -138v-545z" />
<glyph unicode="q" d="M97 446v148q0 231 91 369.5t255 138.5q88 0 154.5 -41t111.5 -118l11 139h105v-1498h-121v538q-45 -70 -111 -106.5t-151 -36.5q-162 0 -253.5 127t-91.5 340zM219 446q0 -165 61.5 -264t187.5 -99q84 0 142 45t94 125v561q-34 82 -91.5 132t-142.5 50 q-127 0 -189 -111.5t-62 -290.5v-148z" />
<glyph unicode="r" horiz-adv-x="601" d="M136 0v1082h106l14 -179q38 94 100.5 146.5t146.5 52.5q19 0 38 -3.5t30 -7.5l-16 -117l-79 6q-84 0 -139 -56.5t-81 -155.5v-768h-120z" />
<glyph unicode="s" horiz-adv-x="865" d="M88 298l2 6h112q6 -116 75 -168.5t162 -52.5q101 0 159 51t58 125t-48.5 127.5t-177.5 112.5q-165 68 -241.5 138.5t-76.5 184.5q0 116 91 198t236 82q154 0 244 -91q86 -87 86 -216v-11l-2 -6h-113q0 88 -58 153t-157 65q-101 0 -154 -51t-53 -119q0 -72 42 -115.5 t180 -109.5q162 -65 242 -141.5t80 -193.5q0 -129 -92.5 -208t-244.5 -79q-167 1 -261 95q-90 90 -90 211v13z" />
<glyph unicode="t" horiz-adv-x="592" d="M42 981v101h150v276h121v-276h188v-101h-188v-702q0 -105 30 -149t79 -44q24 0 47 3t52 9l16 -92q-24 -12 -62.5 -19.5t-77.5 -7.5q-96 0 -150.5 72t-54.5 228v702h-150z" />
<glyph unicode="u" d="M133 454v628h120v-630q0 -197 51.5 -281.5t149.5 -84.5q103 0 167.5 55.5t92.5 152.5v788h120v-1082h-108l-8 169q-43 -91 -114 -140.5t-166 -49.5q-144 0 -224.5 115.5t-80.5 359.5z" />
<glyph unicode="v" horiz-adv-x="856" d="M46 1082h124l235 -809l24 -105h6l26 105l232 809h123l-337 -1082h-94z" />
<glyph unicode="w" horiz-adv-x="1302" d="M58 1082h121l161 -729l29 -169h6l36 169l188 729h100l186 -729l37 -177h6l33 177l156 729h122l-261 -1082h-100l-190 735l-39 173h-6l-37 -173l-188 -735h-100z" />
<glyph unicode="x" horiz-adv-x="856" d="M49 0l312 550l-300 532h140l224 -440l226 440h141l-299 -532l311 -550h-140l-237 458l-237 -458h-141z" />
<glyph unicode="y" horiz-adv-x="856" d="M36 1082h133l228 -784l28 -109h6l256 893h134l-386 -1255q-35 -108 -92.5 -186t-164.5 -78q-18 0 -45 5t-40 9l13 103q10 -2 33 -4.5t34 -2.5q61 0 99 57t61 141l45 143z" />
<glyph unicode="z" horiz-adv-x="826" d="M81 0v90l512 885h-500v107h637v-91l-515 -887h549v-104h-683z" />
<glyph unicode="{" horiz-adv-x="583" d="M64 543v106q94 0 139.5 67t45.5 189v227q0 171 65 289.5t217 169.5l6 -1l24 -75q-101 -40 -146 -139.5t-45 -243.5v-227q0 -110 -39.5 -191t-119.5 -119q80 -39 119.5 -120.5t39.5 -189.5v-225q0 -143 45 -240.5t147 -139.5l-25 -75l-6 -1q-152 51 -217 169t-65 287v225 q0 122 -45.5 190t-139.5 68z" />
<glyph unicode="|" horiz-adv-x="408" d="M155 -270v1726h99v-1726h-99z" />
<glyph unicode="}" horiz-adv-x="583" d="M20 -320q101 42 147 140t46 240v225q0 111 40.5 192t125.5 118q-85 36 -125.5 116.5t-40.5 193.5v227q0 144 -45.5 243.5t-146.5 139.5l24 75l6 1q151 -51 216.5 -169.5t65.5 -289.5v-227q0 -122 45 -189t141 -67v-106q-96 0 -141 -68t-45 -190v-225q0 -169 -65.5 -287 t-216.5 -169l-6 1z" />
<glyph unicode="~" horiz-adv-x="1177" d="M124 474q0 132 66.5 223t171.5 91q72 0 134 -37.5t134 -111.5q51 -57 93.5 -82.5t89.5 -25.5q60 0 103 63.5t43 160.5l94 -15q0 -130 -69 -224.5t-171 -94.5q-74 0 -134 35.5t-134 114.5q-51 53 -94.5 80t-88.5 27q-62 0 -104 -60.5t-42 -159.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="408" d="M129 896v186h133v-186h-133zM135 -374v978h120v-978h-120z" />
<glyph unicode="&#xa2;" horiz-adv-x="944" d="M107 456v168q0 188 82.5 318t237.5 155v221h121v-220q131 -19 214 -122t83 -262h-114q0 129 -67.5 205.5t-168.5 76.5q-140 0 -204 -105.5t-64 -266.5v-168q0 -163 64 -268t204 -105q94 0 165 67.5t71 186.5h107l2 -5q3 -135 -82.5 -232t-209.5 -116v-229h-121v229 q-155 24 -237.5 153.5t-82.5 318.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="994" d="M65 641v104h156l-8 295q0 204 89.5 320.5t239.5 116.5q158 0 240.5 -104t79.5 -278l-2 -5h-114q0 146 -55 213.5t-149 67.5q-97 0 -153 -87t-56 -244l9 -295h364v-104h-361l6 -175q0 -107 -19.5 -203t-54.5 -159h631v-104h-789v104h7q52 14 78 127.5t26 234.5l-6 175 h-159z" />
<glyph unicode="&#xa4;" horiz-adv-x="1302" d="M103 62l138 160q-52 80 -80 178.5t-28 207.5q0 112 30 213.5t85 182.5l-145 170l87 90l139 -164q67 64 149.5 99t173.5 35q90 0 173.5 -35.5t150.5 -99.5l142 166l88 -91l-148 -173q53 -82 82.5 -182t29.5 -211q0 -108 -27.5 -205.5t-77.5 -177.5l141 -163l-88 -89 l-131 153q-69 -70 -155 -108t-180 -38t-179.5 37.5t-154.5 107.5l-128 -151zM248 608q0 -213 118.5 -363.5t285.5 -150.5q166 0 284 150.5t118 363.5q0 211 -118 361t-284 150q-167 0 -285.5 -150t-118.5 -361z" />
<glyph unicode="&#xa5;" horiz-adv-x="1037" d="M42 1456h139l330 -690h6l331 690h139l-373 -749h296v-104h-337v-173h337v-104h-337v-326h-121v326h-332v104h332v173h-332v104h294z" />
<glyph unicode="&#xa6;" horiz-adv-x="401" d="M137 -270v772h120v-772h-120zM137 698v758h120v-758h-120z" />
<glyph unicode="&#xa7;" horiz-adv-x="1050" d="M94 551q0 97 48.5 167.5t137.5 105.5q-74 49 -111 119.5t-37 175.5q0 162 108 260t288 98q187 0 291.5 -111.5t101.5 -314.5l-2 -5h-113q0 140 -74 232.5t-204 92.5q-136 0 -205.5 -70t-69.5 -179q0 -113 59.5 -171.5t241.5 -121.5q205 -66 297.5 -149t92.5 -249 q0 -98 -50.5 -168.5t-141.5 -104.5q77 -50 116 -120t39 -176q0 -167 -107 -262t-287 -95q-178 0 -300 103t-118 323l3 5l112 2q0 -170 89.5 -248.5t213.5 -78.5q128 0 201 69.5t73 179.5q0 105 -63 164t-237 120q-201 62 -297 150.5t-96 256.5zM215 553q0 -115 62.5 -174 t255.5 -126q27 -9 53 -18.5t52 -19.5q87 14 136.5 72t49.5 141q0 106 -68 169t-251 130q-35 10 -64 20t-54 21q-86 -15 -129 -72.5t-43 -142.5z" />
<glyph unicode="&#xa8;" horiz-adv-x="868" d="M152 1296v160h163v-160h-163zM562 1296v160h161v-160h-161z" />
<glyph unicode="&#xa9;" horiz-adv-x="1436" d="M97 729q0 315 180.5 531t438.5 216q257 0 437.5 -216t180.5 -531q0 -316 -180.5 -533t-437.5 -217q-258 0 -438.5 217t-180.5 533zM180 729q0 -278 157 -470.5t379 -192.5t378.5 192.5t156.5 470.5q0 276 -156.5 467t-378.5 191t-379 -191.5t-157 -466.5zM412 669v119 q0 172 80 279.5t214 107.5q131 0 204.5 -79.5t70.5 -228.5l-2 -5h-91q0 111 -46.5 165.5t-135.5 54.5q-92 0 -143.5 -82.5t-51.5 -210.5v-120q0 -132 51 -213.5t144 -81.5q89 0 135 53.5t46 168.5h91l2 -5q3 -151 -70 -230t-204 -79q-134 0 -214 106.5t-80 280.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="772" d="M116 920q0 105 67 163t195 58h139v61q0 84 -31 130t-91 46q-69 0 -107 -37.5t-38 -107.5l-99 10l-2 6q-4 98 64.5 163t181.5 65q105 0 167.5 -71.5t62.5 -204.5v-314q0 -51 5 -95t17 -86h-111q-7 25 -11 52t-6 56q-29 -54 -78.5 -88t-117.5 -34q-98 0 -152.5 61.5 t-54.5 166.5zM224 924q0 -65 29.5 -100t91.5 -35q54 0 105 37.5t67 84.5v144h-138q-74 0 -114.5 -38t-40.5 -93z" />
<glyph unicode="&#xab;" horiz-adv-x="800" d="M103 512v19l245 379h99l-223 -389l223 -389h-99zM367 512v19l245 379h99l-223 -389l223 -389h-99z" />
<glyph unicode="&#xac;" horiz-adv-x="949" d="M112 668v109h680v-392h-120v283h-560z" />
<glyph unicode="&#xad;" horiz-adv-x="497" d="M46 568v104h399v-104h-399z" />
<glyph unicode="&#xae;" horiz-adv-x="1440" d="M95 729q0 315 180.5 531t438.5 216q257 0 437.5 -216t180.5 -531q0 -316 -180.5 -533t-437.5 -217q-258 0 -438.5 217t-180.5 533zM177 729q0 -278 157 -470.5t380 -192.5q220 0 377 192.5t157 470.5q0 275 -156.5 466.5t-377.5 191.5q-224 0 -380.5 -191t-156.5 -467z M478 316v850h230q129 0 200 -63.5t71 -185.5q0 -67 -31.5 -116t-91.5 -80q60 -25 87 -78t27 -128v-56q0 -41 3.5 -73.5t11.5 -53.5v-16h-102q-8 21 -9.5 61.5t-1.5 82.5v54q0 83 -32 119.5t-107 36.5h-157v-354h-98zM576 764h151q65 0 110 40t45 111q0 84 -39 121t-135 37 h-132v-309z" />
<glyph unicode="&#xaf;" horiz-adv-x="797" d="M106 1356v100h595v-100h-595z" />
<glyph unicode="&#xb0;" horiz-adv-x="689" d="M130 1226q0 102 63.5 176.5t153.5 74.5q87 0 150 -74.5t63 -176.5q0 -104 -63 -176t-150 -72q-90 0 -153.5 72t-63.5 176zM218 1226q0 -67 37 -110.5t92 -43.5q53 0 88.5 43.5t35.5 110.5t-35.5 112t-88.5 45q-55 0 -92 -45t-37 -112z" />
<glyph unicode="&#xb1;" horiz-adv-x="967" d="M87 726v105h353v436h112v-436h333v-105h-333v-437h-112v437h-353zM157 46v104h691v-104h-691z" />
<glyph unicode="&#xb2;" horiz-adv-x="719" d="M108 667v92l257 281q62 69 83 113t21 92q0 64 -29 102t-89 38q-67 0 -103 -41.5t-36 -106.5h-100l-2 6q-5 97 62 166.5t179 69.5q105 0 165.5 -61t60.5 -174q0 -76 -40.5 -139.5t-125.5 -154.5l-163 -186l2 -5h336v-92h-478z" />
<glyph unicode="&#xb3;" horiz-adv-x="731" d="M106 882l2 6h100q0 -62 39 -101.5t103 -39.5q69 0 108.5 37.5t39.5 101.5q0 74 -36 108.5t-107 34.5h-104v91h104q68 0 100 34.5t32 98.5q0 58 -35 94.5t-102 36.5q-58 0 -95 -34.5t-37 -91.5h-98l-2 6q-5 95 62.5 154.5t169.5 59.5q112 0 178 -59t66 -167 q0 -58 -30 -104.5t-83 -71.5q60 -22 92 -70.5t32 -119.5q0 -109 -71 -170t-184 -61q-102 0 -175.5 58t-68.5 169z" />
<glyph unicode="&#xb4;" horiz-adv-x="538" d="M114 1212l175 266h147l2 -5l-221 -261h-103z" />
<glyph unicode="&#xb5;" d="M141 -416v1498h119v-632q0 -207 55 -287t150 -80q102 0 160 52.5t83 152.5v794h121v-1082h-106l-9 139q-39 -78 -99.5 -119t-143.5 -41q-69 0 -122 27.5t-89 89.5v-512h-119z" />
<glyph unicode="&#xb6;" horiz-adv-x="833" d="M71 988q0 207 107.5 337.5t301.5 130.5h202v-1456h-121v520h-81q-194 0 -301.5 129.5t-107.5 338.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="446" d="M145 624v181h140v-181h-140z" />
<glyph unicode="&#xb8;" horiz-adv-x="434" d="M96 -355q69 0 115.5 30t46.5 89q0 56 -32.5 78.5t-114.5 30.5l24 127h90l-9 -63q62 -9 100.5 -49t38.5 -122q0 -92 -66 -146.5t-187 -54.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="454" d="M84 1358v96l225 23v-812h-109v700z" />
<glyph unicode="&#xba;" horiz-adv-x="785" d="M116 1026v116q0 148 74.5 241.5t199.5 93.5q126 0 200 -93.5t74 -241.5v-116q0 -149 -74 -241.5t-198 -92.5q-126 0 -201 92.5t-75 241.5zM224 1026q0 -106 42.5 -171.5t125.5 -65.5q80 0 123 65.5t43 171.5v116q0 102 -43.5 169t-124.5 67q-80 0 -123 -67t-43 -169v-116 z" />
<glyph unicode="&#xbb;" horiz-adv-x="798" d="M105 166l222 389l-222 394h99l245 -384v-19l-245 -380h-99zM374 166l222 389l-222 394h99l245 -384v-19l-245 -380h-99z" />
<glyph unicode="&#xbc;" horiz-adv-x="1321" d="M148 1357v96l225 23v-812h-109v700zM283 177l588 1138l72 -49l-589 -1138zM652 237l353 564h110v-540h120v-93h-120v-168h-106v168h-353zM773 261h236v387l-6 2l-17 -33z" />
<glyph unicode="&#xbd;" horiz-adv-x="1355" d="M148 1357v96l225 23v-812h-109v700zM293 177l588 1138l72 -49l-589 -1138zM771 0v92l257 281q62 69 83 113t21 92q0 64 -29 102t-89 38q-67 0 -103 -41.5t-36 -106.5h-100l-2 6q-5 97 62 166.5t179 69.5q105 0 165.5 -61t60.5 -174q0 -76 -40.5 -139.5t-125.5 -154.5 l-163 -186l2 -5h336v-92h-478z" />
<glyph unicode="&#xbe;" horiz-adv-x="1456" d="M124 883l2 6h100q0 -62 39 -101.5t103 -39.5q69 0 108.5 37.5t39.5 101.5q0 74 -36 108.5t-107 34.5h-104v91h104q68 0 100 34.5t32 98.5q0 58 -35 94.5t-102 36.5q-58 0 -95 -34.5t-37 -91.5h-98l-2 6q-5 95 62.5 154.5t169.5 59.5q112 0 178 -59t66 -167 q0 -58 -30 -104.5t-83 -71.5q60 -22 92 -70.5t32 -119.5q0 -109 -71 -170t-184 -61q-102 0 -175.5 58t-68.5 169zM449 177l588 1138l72 -49l-589 -1138zM820 237l353 564h110v-540h120v-93h-120v-168h-106v168h-353zM941 261h236v387l-6 2l-17 -33z" />
<glyph unicode="&#xbf;" horiz-adv-x="827" d="M101 -20q0 132 54.5 235.5t156.5 221.5q48 52 59 97.5t11 142.5h121q-2 -131 -20.5 -183.5t-96.5 -137.5q-90 -119 -128 -190.5t-38 -183.5q0 -126 53.5 -196t151.5 -70q89 0 147.5 68t58.5 183h114l2 -5q2 -166 -89 -261t-233 -95q-153 0 -238.5 101t-85.5 273zM371 925 v158h134v-158h-134z" />
<glyph unicode="&#xc0;" horiz-adv-x="1096" d="M35 0l461 1456h109l456 -1456h-124l-123 404h-531l-124 -404h-124zM309 1822l3 5h152l170 -266h-113zM317 514h464l-228 749h-6z" />
<glyph unicode="&#xc1;" horiz-adv-x="1096" d="M35 0l461 1456h109l456 -1456h-124l-123 404h-531l-124 -404h-124zM317 514h464l-228 749h-6zM501 1557l175 266h147l2 -5l-221 -261h-103z" />
<glyph unicode="&#xc2;" horiz-adv-x="1096" d="M35 0l461 1456h109l456 -1456h-124l-123 404h-531l-124 -404h-124zM317 514h464l-228 749h-6zM333 1601v21l193 222h87l196 -224v-19h-107l-133 166l-132 -166h-104z" />
<glyph unicode="&#xc3;" horiz-adv-x="1096" d="M35 0l461 1456h109l456 -1456h-124l-123 404h-531l-124 -404h-124zM283 1622q0 87 46.5 146t117.5 59q52 0 120.5 -55t111.5 -55q37 0 63.5 36t26.5 91l74 -21q0 -88 -47 -146.5t-117 -58.5q-61 0 -125 54.5t-107 54.5q-38 0 -64 -35t-26 -88zM317 514h464l-228 749h-6z " />
<glyph unicode="&#xc4;" horiz-adv-x="1096" d="M35 0l461 1456h109l456 -1456h-124l-123 404h-531l-124 -404h-124zM286 1638v160h163v-160h-163zM317 514h464l-228 749h-6zM696 1638v160h161v-160h-161z" />
<glyph unicode="&#xc5;" horiz-adv-x="1096" d="M35 0l461 1456h109l456 -1456h-124l-123 404h-531l-124 -404h-124zM317 514h464l-228 749h-6zM412 1731q0 70 46 119t111 49q64 0 109 -49t45 -119q0 -72 -45 -118.5t-109 -46.5q-66 0 -111.5 46.5t-45.5 118.5zM486 1731q0 -40 24 -66t59 -26q33 0 56 26t23 66t-23 67 t-56 27q-35 0 -59 -27.5t-24 -66.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1579" d="M13 0l730 1456h744v-106h-575l19 -540h488v-104h-484l21 -602h582v-104h-699l-14 387h-478l-187 -387h-147zM403 503h418l-27 789h-6l1 6z" />
<glyph unicode="&#xc7;" horiz-adv-x="1062" d="M110 526v403q0 261 118.5 404.5t318.5 143.5q195 0 304 -110t111 -328l-3 -6h-111q-5 173 -80 255.5t-221 82.5q-150 0 -234 -113t-84 -326v-406q0 -217 84 -330t234 -113q146 0 221 80.5t80 259.5h111l3 -6q-2 -213 -112 -325.5t-303 -112.5q-201 0 -319 142t-118 405z M470 -363q69 0 115.5 30t46.5 89q0 56 -32.5 78.5t-114.5 30.5l24 127h90l-9 -63q62 -9 100.5 -49t38.5 -122q0 -92 -66 -146.5t-187 -54.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="1001" d="M164 0v1456h771v-106h-651v-543h572v-104h-572v-599h657v-104h-777zM266 1822l3 5h152l170 -266h-113z" />
<glyph unicode="&#xc9;" horiz-adv-x="1001" d="M164 0v1456h771v-106h-651v-543h572v-104h-572v-599h657v-104h-777zM458 1557l175 266h147l2 -5l-221 -261h-103z" />
<glyph unicode="&#xca;" horiz-adv-x="1001" d="M164 0v1456h771v-106h-651v-543h572v-104h-572v-599h657v-104h-777zM290 1601v21l193 222h87l196 -224v-19h-107l-133 166l-132 -166h-104z" />
<glyph unicode="&#xcb;" horiz-adv-x="1001" d="M164 0v1456h771v-106h-651v-543h572v-104h-572v-599h657v-104h-777zM243 1638v160h163v-160h-163zM653 1638v160h161v-160h-161z" />
<glyph unicode="&#xcc;" horiz-adv-x="484" d="M-16 1822l3 5h152l170 -266h-113zM181 0v1456h121v-1456h-121z" />
<glyph unicode="&#xcd;" horiz-adv-x="484" d="M174 1557l175 266h147l2 -5l-221 -261h-103zM181 0v1456h121v-1456h-121z" />
<glyph unicode="&#xce;" horiz-adv-x="484" d="M8 1601v21l193 222h87l196 -224v-19h-107l-133 166l-132 -166h-104zM181 0v1456h121v-1456h-121z" />
<glyph unicode="&#xcf;" horiz-adv-x="484" d="M-39 1638v160h163v-160h-163zM181 0v1456h121v-1456h-121zM371 1638v160h161v-160h-161z" />
<glyph unicode="&#xd0;" horiz-adv-x="1164" d="M63 688v104h131v664h357q227 0 371 -178t144 -457v-188q0 -280 -144 -456.5t-371 -176.5h-357v688h-131zM314 104h237q176 0 285.5 149t109.5 380v191q0 229 -109.5 377.5t-285.5 148.5h-237v-558h264v-104h-264v-584z" />
<glyph unicode="&#xd1;" horiz-adv-x="1225" d="M164 0v1456h121l650 -1219l6 1v1218h120v-1456h-120l-650 1219l-6 -1v-1218h-121zM326 1622q0 87 46.5 146t117.5 59q52 0 120.5 -55t111.5 -55q37 0 63.5 36t26.5 91l74 -21q0 -88 -47 -146.5t-117 -58.5q-61 0 -125 54.5t-107 54.5q-38 0 -64 -35t-26 -88z" />
<glyph unicode="&#xd2;" horiz-adv-x="1124" d="M105 523v408q0 265 120 405.5t331 140.5q215 0 339 -141t124 -405v-408q0 -265 -123.5 -404.5t-338.5 -139.5q-211 0 -331.5 139.5t-120.5 404.5zM223 523q0 -219 86 -328t248 -109q166 0 254.5 109t88.5 328v411q0 216 -89 325t-255 109q-161 0 -247 -109t-86 -325v-411 zM300 1843l3 5h152l170 -266h-113z" />
<glyph unicode="&#xd3;" horiz-adv-x="1124" d="M105 523v408q0 265 120 405.5t331 140.5q215 0 339 -141t124 -405v-408q0 -265 -123.5 -404.5t-338.5 -139.5q-211 0 -331.5 139.5t-120.5 404.5zM223 523q0 -219 86 -328t248 -109q166 0 254.5 109t88.5 328v411q0 216 -89 325t-255 109q-161 0 -247 -109t-86 -325v-411 zM492 1578l175 266h147l2 -5l-221 -261h-103z" />
<glyph unicode="&#xd4;" horiz-adv-x="1124" d="M105 523v408q0 265 120 405.5t331 140.5q215 0 339 -141t124 -405v-408q0 -265 -123.5 -404.5t-338.5 -139.5q-211 0 -331.5 139.5t-120.5 404.5zM223 523q0 -219 86 -328t248 -109q166 0 254.5 109t88.5 328v411q0 216 -89 325t-255 109q-161 0 -247 -109t-86 -325v-411 zM324 1622v21l193 222h87l196 -224v-19h-107l-133 166l-132 -166h-104z" />
<glyph unicode="&#xd5;" horiz-adv-x="1124" d="M105 523v408q0 265 120 405.5t331 140.5q215 0 339 -141t124 -405v-408q0 -265 -123.5 -404.5t-338.5 -139.5q-211 0 -331.5 139.5t-120.5 404.5zM223 523q0 -219 86 -328t248 -109q166 0 254.5 109t88.5 328v411q0 216 -89 325t-255 109q-161 0 -247 -109t-86 -325v-411 zM274 1643q0 87 46.5 146t117.5 59q52 0 120.5 -55t111.5 -55q37 0 63.5 36t26.5 91l74 -21q0 -88 -47 -146.5t-117 -58.5q-61 0 -125 54.5t-107 54.5q-38 0 -64 -35t-26 -88z" />
<glyph unicode="&#xd6;" horiz-adv-x="1124" d="M105 523v408q0 265 120 405.5t331 140.5q215 0 339 -141t124 -405v-408q0 -265 -123.5 -404.5t-338.5 -139.5q-211 0 -331.5 139.5t-120.5 404.5zM223 523q0 -219 86 -328t248 -109q166 0 254.5 109t88.5 328v411q0 216 -89 325t-255 109q-161 0 -247 -109t-86 -325v-411 zM277 1659v160h163v-160h-163zM687 1659v160h161v-160h-161z" />
<glyph unicode="&#xd7;" horiz-adv-x="957" d="M89 320l308 361l-299 351l80 82l294 -345l295 345l80 -82l-300 -350l310 -362l-80 -82l-305 356l-304 -356z" />
<glyph unicode="&#xd8;" horiz-adv-x="1166" d="M105 523v408q0 265 120 405.5t331 140.5q97 0 177 -30t140 -88l75 147h99l-113 -223q41 -67 63 -155.5t22 -196.5v-408q0 -265 -123.5 -404.5t-338.5 -139.5q-73 0 -135.5 16.5t-113.5 50.5l-66 -131h-98l95 188q-66 69 -100 174.5t-34 245.5zM223 523q0 -101 17.5 -177 t52.5 -123l6 -1l519 1028q-45 58 -111 88t-151 30q-161 0 -247 -109t-86 -325v-411zM359 145q38 -30 88 -44.5t110 -14.5q166 0 254.5 109t88.5 328v411q0 64 -8 117.5t-23 91.5l-5 1z" />
<glyph unicode="&#xd9;" horiz-adv-x="1119" d="M137 437v1019h118v-1019q0 -171 83.5 -262.5t217.5 -91.5q141 0 225.5 87.5t84.5 266.5v1019h119v-1019q0 -223 -119 -340.5t-310 -117.5q-187 0 -303 117.5t-116 340.5zM305 1822l3 5h152l170 -266h-113z" />
<glyph unicode="&#xda;" horiz-adv-x="1119" d="M137 437v1019h118v-1019q0 -171 83.5 -262.5t217.5 -91.5q141 0 225.5 87.5t84.5 266.5v1019h119v-1019q0 -223 -119 -340.5t-310 -117.5q-187 0 -303 117.5t-116 340.5zM497 1557l175 266h147l2 -5l-221 -261h-103z" />
<glyph unicode="&#xdb;" horiz-adv-x="1119" d="M137 437v1019h118v-1019q0 -171 83.5 -262.5t217.5 -91.5q141 0 225.5 87.5t84.5 266.5v1019h119v-1019q0 -223 -119 -340.5t-310 -117.5q-187 0 -303 117.5t-116 340.5zM329 1601v21l193 222h87l196 -224v-19h-107l-133 166l-132 -166h-104z" />
<glyph unicode="&#xdc;" horiz-adv-x="1119" d="M137 437v1019h118v-1019q0 -171 83.5 -262.5t217.5 -91.5q141 0 225.5 87.5t84.5 266.5v1019h119v-1019q0 -223 -119 -340.5t-310 -117.5q-187 0 -303 117.5t-116 340.5zM282 1638v160h163v-160h-163zM692 1638v160h161v-160h-161z" />
<glyph unicode="&#xdd;" horiz-adv-x="1056" d="M35 1456h139l350 -771h6l352 771h137l-433 -922v-534h-120v540zM459 1550l175 266h147l2 -5l-221 -261h-103z" />
<glyph unicode="&#xde;" horiz-adv-x="1022" d="M155 0v1456h120v-303h254q186 0 290.5 -115.5t104.5 -299.5q0 -186 -104.5 -300.5t-290.5 -114.5h-254v-323h-120zM275 427h254q136 0 205 91t69 218q0 129 -69 220.5t-205 91.5h-254v-621z" />
<glyph unicode="&#xdf;" horiz-adv-x="1018" d="M131 0v1082q0 204 88.5 318t233.5 114q121 0 200.5 -79.5t79.5 -224.5q0 -109 -52 -216t-52 -184q0 -85 149.5 -227t149.5 -287q0 -154 -89.5 -235.5t-225.5 -81.5q-70 0 -144.5 23.5t-106.5 56.5l30 103q35 -31 94 -55.5t114 -24.5q99 0 153.5 59t54.5 155 q0 98 -150 239t-150 277q0 93 54 201.5t54 189.5q0 93 -46.5 150t-107.5 57q-96 0 -154 -85t-58 -243v-1082h-119z" />
<glyph unicode="&#xe0;" horiz-adv-x="938" d="M98 288q0 151 106 240.5t287 89.5h189v133q0 115 -58 180t-162 65q-97 0 -159.5 -62t-62.5 -152l-112 1l-2 6q-5 122 92.5 217.5t249.5 95.5q150 0 242 -91.5t92 -261.5v-531q0 -58 5 -112t18 -106h-125q-9 56 -13.5 92t-4.5 73q-49 -81 -127.5 -133.5t-174.5 -52.5 q-134 0 -207 83.5t-73 225.5zM202 1500l3 5h152l170 -266h-113zM218 284q0 -87 46 -142t129 -55q100 0 177.5 57.5t109.5 146.5v234h-192q-123 0 -196.5 -69.5t-73.5 -171.5z" />
<glyph unicode="&#xe1;" horiz-adv-x="938" d="M98 288q0 151 106 240.5t287 89.5h189v133q0 115 -58 180t-162 65q-97 0 -159.5 -62t-62.5 -152l-112 1l-2 6q-5 122 92.5 217.5t249.5 95.5q150 0 242 -91.5t92 -261.5v-531q0 -58 5 -112t18 -106h-125q-9 56 -13.5 92t-4.5 73q-49 -81 -127.5 -133.5t-174.5 -52.5 q-134 0 -207 83.5t-73 225.5zM218 284q0 -87 46 -142t129 -55q100 0 177.5 57.5t109.5 146.5v234h-192q-123 0 -196.5 -69.5t-73.5 -171.5zM394 1235l175 266h147l2 -5l-221 -261h-103z" />
<glyph unicode="&#xe2;" horiz-adv-x="938" d="M98 288q0 151 106 240.5t287 89.5h189v133q0 115 -58 180t-162 65q-97 0 -159.5 -62t-62.5 -152l-112 1l-2 6q-5 122 92.5 217.5t249.5 95.5q150 0 242 -91.5t92 -261.5v-531q0 -58 5 -112t18 -106h-125q-9 56 -13.5 92t-4.5 73q-49 -81 -127.5 -133.5t-174.5 -52.5 q-134 0 -207 83.5t-73 225.5zM218 284q0 -87 46 -142t129 -55q100 0 177.5 57.5t109.5 146.5v234h-192q-123 0 -196.5 -69.5t-73.5 -171.5zM226 1279v21l193 222h87l196 -224v-19h-107l-133 166l-132 -166h-104z" />
<glyph unicode="&#xe3;" horiz-adv-x="938" d="M98 288q0 151 106 240.5t287 89.5h189v133q0 115 -58 180t-162 65q-97 0 -159.5 -62t-62.5 -152l-112 1l-2 6q-5 122 92.5 217.5t249.5 95.5q150 0 242 -91.5t92 -261.5v-531q0 -58 5 -112t18 -106h-125q-9 56 -13.5 92t-4.5 73q-49 -81 -127.5 -133.5t-174.5 -52.5 q-134 0 -207 83.5t-73 225.5zM176 1300q0 87 46.5 146t117.5 59q52 0 120.5 -55t111.5 -55q37 0 63.5 36t26.5 91l74 -21q0 -88 -47 -146.5t-117 -58.5q-61 0 -125 54.5t-107 54.5q-38 0 -64 -35t-26 -88zM218 284q0 -87 46 -142t129 -55q100 0 177.5 57.5t109.5 146.5v234 h-192q-123 0 -196.5 -69.5t-73.5 -171.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="938" d="M98 288q0 151 106 240.5t287 89.5h189v133q0 115 -58 180t-162 65q-97 0 -159.5 -62t-62.5 -152l-112 1l-2 6q-5 122 92.5 217.5t249.5 95.5q150 0 242 -91.5t92 -261.5v-531q0 -58 5 -112t18 -106h-125q-9 56 -13.5 92t-4.5 73q-49 -81 -127.5 -133.5t-174.5 -52.5 q-134 0 -207 83.5t-73 225.5zM179 1316v160h163v-160h-163zM218 284q0 -87 46 -142t129 -55q100 0 177.5 57.5t109.5 146.5v234h-192q-123 0 -196.5 -69.5t-73.5 -171.5zM589 1316v160h161v-160h-161z" />
<glyph unicode="&#xe5;" horiz-adv-x="938" d="M98 288q0 151 106 240.5t287 89.5h189v133q0 115 -58 180t-162 65q-97 0 -159.5 -62t-62.5 -152l-112 1l-2 6q-5 122 92.5 217.5t249.5 95.5q150 0 242 -91.5t92 -261.5v-531q0 -58 5 -112t18 -106h-125q-9 56 -13.5 92t-4.5 73q-49 -81 -127.5 -133.5t-174.5 -52.5 q-134 0 -207 83.5t-73 225.5zM218 284q0 -87 46 -142t129 -55q100 0 177.5 57.5t109.5 146.5v234h-192q-123 0 -196.5 -69.5t-73.5 -171.5zM305 1409q0 70 46 119t111 49q64 0 109 -49t45 -119q0 -72 -45 -118.5t-109 -46.5q-66 0 -111.5 46.5t-45.5 118.5zM379 1409 q0 -40 24 -66t59 -26q33 0 56 26t23 66t-23 67t-56 27q-35 0 -59 -27.5t-24 -66.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1453" d="M67 294q0 157 94.5 247.5t272.5 90.5h209v88q0 131 -49.5 203.5t-144.5 72.5q-104 0 -164 -66t-60 -166l-112 13l-2 6q-4 138 89 228.5t249 90.5q100 0 172.5 -48.5t109.5 -142.5q51 90 128 140.5t168 50.5q170 0 263 -124.5t93 -341.5v-101h-614v-25q0 -191 71 -309 t216 -118q86 0 150 32t116 86l44 -90q-42 -53 -118.5 -92.5t-191.5 -39.5q-114 0 -199 53t-137 151q-44 -85 -136 -144.5t-223 -59.5q-140 0 -217 84.5t-77 230.5zM188 290q0 -96 49.5 -152t145.5 -56q76 0 151.5 49.5t108.5 109.5v292h-208q-119 0 -183 -70t-64 -173z M772 636h491v31q0 146 -59 237.5t-177 91.5q-108 0 -175 -100.5t-80 -259.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="904" d="M90 456v168q0 209 100.5 343.5t287.5 134.5q151 0 249.5 -105.5t95.5 -277.5l-2 -5h-107q0 129 -67.5 205.5t-168.5 76.5q-140 0 -204 -105.5t-64 -266.5v-168q0 -163 64 -268t204 -105q94 0 165 67.5t71 186.5h106l3 -6q3 -150 -101 -251t-244 -101q-187 0 -287.5 133.5 t-100.5 343.5zM376 -363q69 0 115.5 30t46.5 89q0 56 -32.5 78.5t-114.5 30.5l24 127h90l-9 -63q62 -9 100.5 -49t38.5 -122q0 -92 -66 -146.5t-187 -54.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="900" d="M88 446v180q0 205 111.5 340.5t268.5 135.5q170 0 264 -121.5t94 -326.5v-119h-619v-89q0 -156 75 -259.5t203 -103.5q89 0 153.5 31t110.5 88l49 -85q-49 -63 -126.5 -100.5t-186.5 -37.5q-175 0 -286 131.5t-111 335.5zM207 639h499v46q0 134 -63 222.5t-175 88.5 q-113 0 -185.5 -103t-75.5 -254zM213 1501l3 5h152l170 -266h-113z" />
<glyph unicode="&#xe9;" horiz-adv-x="900" d="M88 446v180q0 205 111.5 340.5t268.5 135.5q170 0 264 -121.5t94 -326.5v-119h-619v-89q0 -156 75 -259.5t203 -103.5q89 0 153.5 31t110.5 88l49 -85q-49 -63 -126.5 -100.5t-186.5 -37.5q-175 0 -286 131.5t-111 335.5zM207 639h499v46q0 134 -63 222.5t-175 88.5 q-113 0 -185.5 -103t-75.5 -254zM405 1236l175 266h147l2 -5l-221 -261h-103z" />
<glyph unicode="&#xea;" horiz-adv-x="900" d="M88 446v180q0 205 111.5 340.5t268.5 135.5q170 0 264 -121.5t94 -326.5v-119h-619v-89q0 -156 75 -259.5t203 -103.5q89 0 153.5 31t110.5 88l49 -85q-49 -63 -126.5 -100.5t-186.5 -37.5q-175 0 -286 131.5t-111 335.5zM207 639h499v46q0 134 -63 222.5t-175 88.5 q-113 0 -185.5 -103t-75.5 -254zM237 1280v21l193 222h87l196 -224v-19h-107l-133 166l-132 -166h-104z" />
<glyph unicode="&#xeb;" horiz-adv-x="900" d="M88 446v180q0 205 111.5 340.5t268.5 135.5q170 0 264 -121.5t94 -326.5v-119h-619v-89q0 -156 75 -259.5t203 -103.5q89 0 153.5 31t110.5 88l49 -85q-49 -63 -126.5 -100.5t-186.5 -37.5q-175 0 -286 131.5t-111 335.5zM190 1317v160h163v-160h-163zM207 639h499v46 q0 134 -63 222.5t-175 88.5q-113 0 -185.5 -103t-75.5 -254zM600 1317v160h161v-160h-161z" />
<glyph unicode="&#xec;" horiz-adv-x="412" d="M-54 1479l3 5h152l170 -266h-113zM144 0v1082h120v-1082h-120z" />
<glyph unicode="&#xed;" horiz-adv-x="412" d="M136 1214l175 266h147l2 -5l-221 -261h-103zM144 0v1082h120v-1082h-120z" />
<glyph unicode="&#xee;" horiz-adv-x="412" d="M-30 1258v21l193 222h87l196 -224v-19h-107l-133 166l-132 -166h-104zM144 0v1082h120v-1082h-120z" />
<glyph unicode="&#xef;" horiz-adv-x="412" d="M-77 1296v160h163v-160h-163zM144 0v1082h120v-1082h-120zM333 1296v160h161v-160h-161z" />
<glyph unicode="&#xf0;" horiz-adv-x="1008" d="M84 456q0 233 110 371t289 138q81 0 151 -36.5t113 -97.5l4 4q-16 124 -55 222.5t-97 173.5l-247 -170l-49 76l235 162q-36 33 -76.5 60.5t-83.5 49.5l37 108q62 -29 117.5 -67t102.5 -84l210 145l50 -76l-199 -137q94 -121 143 -289.5t49 -385.5v-88 q0 -245 -115.5 -400.5t-289.5 -155.5q-175 0 -287 137t-112 340zM205 456q0 -148 76 -259.5t205 -111.5q125 0 203 126.5t78 323.5v90q0 9 -0.5 28t-0.5 28q-31 74 -103 125.5t-180 51.5q-132 0 -205 -114t-73 -288z" />
<glyph unicode="&#xf1;" d="M136 0v1082h107l10 -179q43 95 114.5 147t167.5 52q145 0 222.5 -107.5t77.5 -334.5v-660h-121v659q0 185 -54 260t-157 75q-92 0 -154 -60.5t-93 -161.5v-772h-120zM201 1300q0 87 46.5 146t117.5 59q52 0 120.5 -55t111.5 -55q37 0 63.5 36t26.5 91l74 -21 q0 -88 -47 -146.5t-117 -58.5q-61 0 -125 54.5t-107 54.5q-38 0 -64 -35t-26 -88z" />
<glyph unicode="&#xf2;" d="M86 461v159q0 210 108 346t290 136t290.5 -135.5t108.5 -346.5v-159q0 -213 -108 -347.5t-290 -134.5q-183 0 -291 134.5t-108 347.5zM207 461q0 -162 72 -270t206 -108q131 0 204 108.5t73 269.5v159q0 159 -73 267.5t-205 108.5q-133 0 -205 -108.5t-72 -267.5v-159z M230 1500l3 5h152l170 -266h-113z" />
<glyph unicode="&#xf3;" d="M86 461v159q0 210 108 346t290 136t290.5 -135.5t108.5 -346.5v-159q0 -213 -108 -347.5t-290 -134.5q-183 0 -291 134.5t-108 347.5zM207 461q0 -162 72 -270t206 -108q131 0 204 108.5t73 269.5v159q0 159 -73 267.5t-205 108.5q-133 0 -205 -108.5t-72 -267.5v-159z M422 1235l175 266h147l2 -5l-221 -261h-103z" />
<glyph unicode="&#xf4;" d="M86 461v159q0 210 108 346t290 136t290.5 -135.5t108.5 -346.5v-159q0 -213 -108 -347.5t-290 -134.5q-183 0 -291 134.5t-108 347.5zM207 461q0 -162 72 -270t206 -108q131 0 204 108.5t73 269.5v159q0 159 -73 267.5t-205 108.5q-133 0 -205 -108.5t-72 -267.5v-159z M254 1279v21l193 222h87l196 -224v-19h-107l-133 166l-132 -166h-104z" />
<glyph unicode="&#xf5;" d="M86 461v159q0 210 108 346t290 136t290.5 -135.5t108.5 -346.5v-159q0 -213 -108 -347.5t-290 -134.5q-183 0 -291 134.5t-108 347.5zM204 1300q0 87 46.5 146t117.5 59q52 0 120.5 -55t111.5 -55q37 0 63.5 36t26.5 91l74 -21q0 -88 -47 -146.5t-117 -58.5 q-61 0 -125 54.5t-107 54.5q-38 0 -64 -35t-26 -88zM207 461q0 -162 72 -270t206 -108q131 0 204 108.5t73 269.5v159q0 159 -73 267.5t-205 108.5q-133 0 -205 -108.5t-72 -267.5v-159z" />
<glyph unicode="&#xf6;" d="M86 461v159q0 210 108 346t290 136t290.5 -135.5t108.5 -346.5v-159q0 -213 -108 -347.5t-290 -134.5q-183 0 -291 134.5t-108 347.5zM207 461q0 -162 72 -270t206 -108q131 0 204 108.5t73 269.5v159q0 159 -73 267.5t-205 108.5q-133 0 -205 -108.5t-72 -267.5v-159z M207 1316v160h163v-160h-163zM617 1316v160h161v-160h-161z" />
<glyph unicode="&#xf7;" horiz-adv-x="984" d="M68 641v120h827v-120h-827zM419 210v163h133v-163h-133zM419 1009v162h133v-162h-133z" />
<glyph unicode="&#xf8;" horiz-adv-x="970" d="M86 461v159q0 210 108 346t290 136q48 0 93 -11t84 -31l63 154h87l-82 -201q73 -64 113.5 -166.5t40.5 -226.5v-159q0 -213 -108 -347.5t-290 -134.5q-45 0 -85.5 9t-76.5 25l-62 -153h-86l79 195q-81 62 -124.5 167.5t-43.5 238.5zM207 461q0 -90 22.5 -165.5 t66.5 -120.5l6 -1l317 782q-29 19 -63 29.5t-72 10.5q-133 0 -205 -108.5t-72 -267.5v-159zM363 113q26 -15 56.5 -22.5t65.5 -7.5q131 0 204 108.5t73 269.5v159q0 81 -20 151.5t-57 116.5l-6 1z" />
<glyph unicode="&#xf9;" d="M133 454v628h120v-630q0 -197 51.5 -281.5t149.5 -84.5q103 0 167.5 55.5t92.5 152.5v788h120v-1082h-108l-8 169q-43 -91 -114 -140.5t-166 -49.5q-144 0 -224.5 115.5t-80.5 359.5zM229 1479l3 5h152l170 -266h-113z" />
<glyph unicode="&#xfa;" d="M133 454v628h120v-630q0 -197 51.5 -281.5t149.5 -84.5q103 0 167.5 55.5t92.5 152.5v788h120v-1082h-108l-8 169q-43 -91 -114 -140.5t-166 -49.5q-144 0 -224.5 115.5t-80.5 359.5zM421 1214l175 266h147l2 -5l-221 -261h-103z" />
<glyph unicode="&#xfb;" d="M133 454v628h120v-630q0 -197 51.5 -281.5t149.5 -84.5q103 0 167.5 55.5t92.5 152.5v788h120v-1082h-108l-8 169q-43 -91 -114 -140.5t-166 -49.5q-144 0 -224.5 115.5t-80.5 359.5zM253 1258v21l193 222h87l196 -224v-19h-107l-133 166l-132 -166h-104z" />
<glyph unicode="&#xfc;" d="M133 454v628h120v-630q0 -197 51.5 -281.5t149.5 -84.5q103 0 167.5 55.5t92.5 152.5v788h120v-1082h-108l-8 169q-43 -91 -114 -140.5t-166 -49.5q-144 0 -224.5 115.5t-80.5 359.5zM206 1296v160h163v-160h-163zM616 1296v160h161v-160h-161z" />
<glyph unicode="&#xfd;" horiz-adv-x="856" d="M36 1082h133l228 -784l28 -109h6l256 893h134l-386 -1255q-35 -108 -92.5 -186t-164.5 -78q-18 0 -45 5t-40 9l13 103q10 -2 33 -4.5t34 -2.5q61 0 99 57t61 141l45 143zM366 1214l175 266h147l2 -5l-221 -261h-103z" />
<glyph unicode="&#xfe;" horiz-adv-x="982" d="M140 0v1560h121v-618q45 77 112.5 118.5t156.5 41.5q163 0 255 -138.5t92 -369.5v-148q0 -213 -91.5 -340t-252.5 -127q-91 0 -159 38t-113 110v-543h-120v416h-1zM261 258q33 -82 92 -128.5t147 -46.5q126 0 190.5 99.5t64.5 263.5v148q0 177 -65 288.5t-191 111.5 q-89 0 -147.5 -53t-90.5 -138v-545z" />
<glyph unicode="&#xff;" horiz-adv-x="856" d="M36 1082h133l228 -784l28 -109h6l256 893h134l-386 -1255q-35 -108 -92.5 -186t-164.5 -78q-18 0 -45 5t-40 9l13 103q10 -2 33 -4.5t34 -2.5q61 0 99 57t61 141l45 143zM152 1296v160h163v-160h-163zM562 1296v160h161v-160h-161z" />
<glyph unicode="&#x152;" horiz-adv-x="1616" d="M98 576v304q0 265 124.5 431t326.5 166q60 0 122 -6t131 -15h721v-106h-651v-543h572v-104h-572v-599h657v-104h-727q-80 -10 -137 -15.5t-115 -5.5q-201 0 -326.5 166t-125.5 431zM218 576q0 -227 90 -360t242 -133q52 0 103.5 3.5t98.5 11.5v1260q-48 7 -99 11t-104 4 q-153 0 -242 -131.5t-89 -359.5v-306z" />
<glyph unicode="&#x153;" horiz-adv-x="1575" d="M88 524v32q0 240 108 393t289 153q116 0 204.5 -66t138.5 -182q51 115 137 181.5t186 66.5q171 0 265 -125.5t94 -338.5v-103h-619v-25q0 -184 75 -305.5t202 -121.5q90 0 154.5 31t110.5 88l49 -85q-49 -64 -126.5 -101t-187.5 -37q-112 0 -201.5 64.5t-139.5 179.5 q-50 -115 -138 -179.5t-202 -64.5q-183 0 -291 152t-108 393zM208 524q0 -188 72.5 -314.5t206.5 -126.5q131 0 203.5 126.5t72.5 314.5v32q0 185 -73 312.5t-205 127.5t-204.5 -127.5t-72.5 -312.5v-32zM894 639h496v30q0 141 -63.5 234t-175.5 93q-101 0 -171.5 -101 t-85.5 -256z" />
<glyph unicode="&#x178;" horiz-adv-x="1056" d="M35 1456h139l350 -771h6l352 771h137l-433 -922v-534h-120v540zM244 1631v160h163v-160h-163zM654 1631v160h161v-160h-161z" />
<glyph unicode="&#x2c6;" horiz-adv-x="774" d="M145 1252v21l193 222h87l196 -224v-19h-107l-133 166l-132 -166h-104z" />
<glyph unicode="&#x2dc;" horiz-adv-x="781" d="M102 1280q0 87 46.5 146t117.5 59q52 0 120.5 -55t111.5 -55q37 0 63.5 36t26.5 91l74 -21q0 -88 -47 -146.5t-117 -58.5q-61 0 -125 54.5t-107 54.5q-38 0 -64 -35t-26 -88z" />
<glyph unicode="&#x2000;" horiz-adv-x="949" />
<glyph unicode="&#x2001;" horiz-adv-x="1899" />
<glyph unicode="&#x2002;" horiz-adv-x="949" />
<glyph unicode="&#x2003;" horiz-adv-x="1899" />
<glyph unicode="&#x2004;" horiz-adv-x="633" />
<glyph unicode="&#x2005;" horiz-adv-x="474" />
<glyph unicode="&#x2006;" horiz-adv-x="316" />
<glyph unicode="&#x2007;" horiz-adv-x="316" />
<glyph unicode="&#x2008;" horiz-adv-x="237" />
<glyph unicode="&#x2009;" horiz-adv-x="379" />
<glyph unicode="&#x200a;" horiz-adv-x="105" />
<glyph unicode="&#x2010;" horiz-adv-x="497" d="M46 568v104h399v-104h-399z" />
<glyph unicode="&#x2011;" horiz-adv-x="497" d="M46 568v104h399v-104h-399z" />
<glyph unicode="&#x2012;" horiz-adv-x="497" d="M46 568v104h399v-104h-399z" />
<glyph unicode="&#x2013;" horiz-adv-x="1191" d="M151 684v104h898v-104h-898z" />
<glyph unicode="&#x2014;" horiz-adv-x="1398" d="M129 684v104h1106v-104h-1106z" />
<glyph unicode="&#x2018;" horiz-adv-x="335" d="M81 1071v175l106 314h66l-52 -315v-174h-120z" />
<glyph unicode="&#x2019;" horiz-adv-x="335" d="M81 1071l51 306v183h121v-180l-106 -309h-66z" />
<glyph unicode="&#x201a;" horiz-adv-x="328" d="M81 -213l45 266v205h121v-195l-100 -276h-66z" />
<glyph unicode="&#x201c;" horiz-adv-x="561" d="M81 1071v175l106 314h66l-52 -315v-174h-120zM307 1071v175l106 314h66l-52 -315v-174h-120z" />
<glyph unicode="&#x201d;" horiz-adv-x="566" d="M81 1071l51 306v183h121v-180l-106 -309h-66zM312 1071l51 306v183h121v-180l-106 -309h-66z" />
<glyph unicode="&#x201e;" horiz-adv-x="546" d="M81 -203l45 296v181h121v-175l-100 -302h-66zM298 -203l45 299v178h121v-175l-100 -302h-66z" />
<glyph unicode="&#x2022;" horiz-adv-x="603" d="M134 717v66q0 78 45 128.5t121 50.5t122 -50.5t46 -128.5v-66q0 -79 -45.5 -128t-121.5 -49q-77 0 -122 49t-45 128z" />
<glyph unicode="&#x2026;" horiz-adv-x="1124" d="M158 0v166h130v-166h-130zM507 0v166h130v-166h-130zM839 0v166h130v-166h-130z" />
<glyph unicode="&#x202f;" horiz-adv-x="379" />
<glyph unicode="&#x2039;" horiz-adv-x="525" d="M98 546v19l245 379h99l-223 -389l223 -389h-99z" />
<glyph unicode="&#x203a;" horiz-adv-x="525" d="M87 166l222 389l-222 394h99l245 -384v-19l-245 -380h-99z" />
<glyph unicode="&#x205f;" horiz-adv-x="474" />
<glyph unicode="&#x20ac;" horiz-adv-x="911" d="M75 531v104h134v167h-134v104h134v36q0 244 114 389.5t299 145.5q48 0 94.5 -8t100.5 -23l-11 -110q-44 16 -90.5 25.5t-93.5 9.5q-136 0 -214.5 -115t-78.5 -312v-38h437v-104h-437v-167h437v-104h-437v-17q0 -197 79.5 -314t214.5 -117q48 0 94.5 8.5t88.5 25.5 l11 -107q-46 -15 -95 -23t-99 -8q-185 0 -299.5 145t-114.5 390v17h-134z" />
<glyph unicode="&#x2122;" horiz-adv-x="1070" d="M90 1386v70h319v-70h-125v-467h-66v467h-128zM474 919v537h83l139 -419h6l140 419h79v-537h-66v367l-6 1l-129 -368h-42l-133 382l-6 -1v-381h-65z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1003" d="M63 981v101h146v156q0 164 70.5 253.5t196.5 89.5q28 0 56.5 -5.5t57.5 -14.5l-15 -101q-20 6 -40.5 9.5t-45.5 3.5q-79 0 -119.5 -61t-40.5 -174v-156h205v-101h-205v-981h-120v981h-146zM734 0v1560h121v-1560h-121z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1527" d="M63 981v101h146v156q0 164 70.5 253.5t196.5 89.5q28 0 56.5 -5.5t57.5 -14.5l-15 -101q-20 6 -40.5 9.5t-45.5 3.5q-79 0 -119.5 -61t-40.5 -174v-156h205v-101h-205v-981h-120v981h-146zM629 981v101h147v136q0 173 82 268t227 95q56 0 113 -15.5t118 -44.5l-20 -105 q-46 24 -94.5 38t-107.5 14q-101 0 -149.5 -63.5t-48.5 -186.5v-136h199v-101h-199v-981h-120v981h-147zM1258 0v1082h121v-1082h-121z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1589" d="M63 981v101h146v156q0 164 70.5 253.5t196.5 89.5q28 0 56.5 -5.5t57.5 -14.5l-15 -101q-20 6 -40.5 9.5t-45.5 3.5q-79 0 -119.5 -61t-40.5 -174v-156h205v-101h-205v-981h-120v981h-146zM649 981v101h146v156q0 164 70.5 253.5t196.5 89.5q28 0 56.5 -5.5t57.5 -14.5 l-15 -101q-20 6 -40.5 9.5t-45.5 3.5q-79 0 -119.5 -61t-40.5 -174v-156h205v-101h-205v-981h-120v981h-146zM1320 0v1560h121v-1560h-121z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-18" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="224" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="61" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="234" />
<hkern u1="F" u2="&#x201e;" k="234" />
<hkern u1="F" u2="&#x201a;" k="234" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="264" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="234" />
<hkern u1="F" u2="&#x2c;" k="234" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="92" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="97" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="43" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="80" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="114" />
<hkern u1="T" u2="&#xc6;" k="179" />
<hkern u1="T" u2="&#xbb;" k="216" />
<hkern u1="T" u2="&#xab;" k="328" />
<hkern u1="T" u2="w" k="57" />
<hkern u1="T" u2="r" k="75" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-32" />
<hkern u1="r" u2="f" k="-15" />
<hkern u1="t" u2="&#xf6;" k="20" />
<hkern u1="t" u2="&#xf5;" k="20" />
<hkern u1="t" u2="&#xf4;" k="20" />
<hkern u1="t" u2="&#xf3;" k="20" />
<hkern u1="t" u2="&#xf2;" k="20" />
<hkern u1="t" u2="o" k="20" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="61" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="61" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="61" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="61" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="61" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="61" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="129" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="87" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="69" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="94" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="m,n,p,ntilde" k="23" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
<hkern g1="L" g2="T" k="275" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
<hkern g1="L" g2="V" k="175" />
<hkern g1="L" g2="W" k="143" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
<hkern g1="P" g2="X" k="31" />
<hkern g1="P" g2="Z" k="26" />
<hkern g1="P" g2="J" k="200" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
<hkern g1="T" g2="m,n,p,ntilde" k="109" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
<hkern g1="T" g2="s" k="116" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
<hkern g1="T" g2="J" k="240" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 73 KiB

View File

@ -0,0 +1,643 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="roboto_condensedlight_italic" horiz-adv-x="934" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="424" />
<glyph unicode="&#xfb01;" horiz-adv-x="908" d="M100 0l196 981h-140l20 101h140l28 136q36 185 131 274t237 89q51 0 104 -15.5t104 -44.5l-40 -105q-38 24 -82 38t-99 14q-89 0 -151.5 -65t-85.5 -185l-27 -136h186l-20 -101h-187l-196 -981h-118zM559 0l216 1082h119l-216 -1082h-119z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="424" />
<glyph horiz-adv-x="28" />
<glyph unicode="&#x9;" horiz-adv-x="28" />
<glyph unicode=" " horiz-adv-x="424" />
<glyph unicode="&#x09;" horiz-adv-x="424" />
<glyph unicode="&#xa0;" horiz-adv-x="424" />
<glyph unicode="!" horiz-adv-x="415" d="M58 0l34 168h129l-34 -168h-129zM159 478l195 978h117l-195 -978h-117z" />
<glyph unicode="&#x22;" horiz-adv-x="538" d="M215 1080l42 254l37 226h100l-35 -219l-78 -261h-66zM433 1080l43 258l36 222h99l-35 -219l-77 -261h-66z" />
<glyph unicode="#" horiz-adv-x="1031" d="M64 410l19 96h211l152 435h-216l20 99h231l146 416h95l-146 -416h230l146 416h94l-146 -416h171l-20 -99h-186l-153 -435h194l-19 -96h-208l-144 -410h-94l144 410h-230l-144 -410h-94l143 410h-196zM388 506h230l153 435h-230z" />
<glyph unicode="$" horiz-adv-x="929" d="M100 419h117q-30 -184 30.5 -258t166.5 -74q105 0 184 78t98 194q18 113 -23.5 180.5t-167.5 132.5q-154 66 -218 159t-37 262q26 167 119 266t230 115l32 203h99l-32 -204q128 -20 186 -136.5t27 -310.5h-118q25 157 -17 249t-146 92q-102 0 -173 -77.5t-89 -193.5 q-19 -117 21.5 -183.5t173.5 -131.5q152 -68 214.5 -160t36.5 -260q-28 -171 -123.5 -267t-239.5 -112l-30 -190h-98l30 190q-134 16 -210.5 121.5t-42.5 315.5z" />
<glyph unicode="%" horiz-adv-x="1282" d="M238 1099l15 77q27 135 109 218t193 83q101 0 153 -88.5t28 -212.5l-15 -77q-28 -135 -109.5 -217t-190.5 -82q-102 0 -155 88t-28 211zM272 169l787 1138l61 -49l-788 -1138zM333 1099q-19 -92 7 -151t99 -59q65 0 117.5 62t70.5 148l15 77q19 92 -7 152t-97 60 q-66 0 -119.5 -63.5t-70.5 -148.5zM676 279l15 78q27 134 109 217t192 83q101 0 153 -88t28 -212l-15 -78q-28 -136 -109 -218t-190 -82q-102 0 -155 88t-28 212zM770 279q-19 -93 7.5 -152t99.5 -59q65 0 117.5 62.5t70.5 148.5l15 78q19 95 -7 153t-98 58 q-66 0 -119.5 -62t-70.5 -149z" />
<glyph unicode="&#x26;" horiz-adv-x="1079" d="M72 372q20 126 95.5 218.5t213.5 194.5l6 5q-54 103 -74.5 185.5t-5.5 169.5q27 165 115.5 248.5t222.5 83.5q119 0 183 -82.5t45 -203.5q-16 -96 -65 -158.5t-136 -128.5l-144 -116l253 -462l6 1q46 65 80 148t50 177h110q-22 -132 -69.5 -237t-121.5 -191l123 -224 h-144l-71 130q-81 -73 -170.5 -112t-182.5 -39q-169 0 -258.5 108.5t-60.5 284.5zM192 372q-21 -129 32.5 -209t182.5 -80q70 0 145.5 35t143.5 100l-259 481l-6 10l-39 -31q-105 -93 -148 -167.5t-52 -138.5zM429 1147q-11 -66 3 -134t53 -145l156 125q55 44 82.5 93 t37.5 105q12 80 -23 130t-110 50q-76 0 -130.5 -65t-68.5 -159z" />
<glyph unicode="'" horiz-adv-x="320" d="M210 1088l48 266l33 206h100l-32 -197l-82 -275h-67z" />
<glyph unicode="(" horiz-adv-x="545" d="M144 573l2 15q60 375 219.5 654.5t313.5 382.5l5 -1l12 -75q-127 -104 -252.5 -366t-177.5 -592l-4 -20q-55 -343 -13 -597t137 -364l-35 -72l-6 1q-120 101 -190.5 383.5t-10.5 650.5z" />
<glyph unicode=")" horiz-adv-x="553" d="M-108 -390q125 104 252 367.5t180 593.5l4 20q54 340 9.5 597t-134.5 366l35 71l6 -1q118 -100 188 -388t13 -648l-2 -15q-62 -384 -220 -657.5t-313 -377.5l-6 1z" />
<glyph unicode="*" horiz-adv-x="754" d="M174 1105l52 104l241 -122l70 369h101l-81 -372l287 126l9 -104l-292 -114l121 -293l-97 -64l-107 304l-224 -302l-70 63l234 299z" />
<glyph unicode="+" horiz-adv-x="990" d="M117 626l23 116h353l93 464h120l-93 -464h357l-23 -116h-357l-96 -480h-120l96 480h-353z" />
<glyph unicode="," horiz-adv-x="341" d="M-68 -258l110 280l34 168h119l-34 -171l-154 -277h-75z" />
<glyph unicode="-" horiz-adv-x="483" d="M78 568l20 104h380l-20 -104h-380z" />
<glyph unicode="." horiz-adv-x="432" d="M59 0l33 166h127l-33 -166h-127z" />
<glyph unicode="/" horiz-adv-x="680" d="M-77 -125l796 1581h104l-796 -1581h-104z" />
<glyph unicode="0" horiz-adv-x="941" d="M137 564l65 326q59 298 182.5 442.5t295.5 144.5q157 0 228 -156t16 -431l-65 -326q-60 -300 -182.5 -442.5t-293.5 -142.5q-158 0 -230 155t-16 430zM244.5 197q39.5 -114 159.5 -114q109 0 199 123t134 339l73 366q47 236 8 348t-159 112q-111 0 -201 -121.5 t-133 -338.5l-73 -366q-47 -234 -7.5 -348z" />
<glyph unicode="1" horiz-adv-x="929" d="M327 1285l17 86l419 88l-293 -1465h-118l266 1332z" />
<glyph unicode="2" horiz-adv-x="929" d="M46 0l15 94l462 540q126 146 182.5 245.5t72.5 194.5q21 139 -22 218t-144 79q-120 0 -201.5 -92t-104.5 -243h-110l-2 6q26 190 143.5 312.5t291.5 122.5q146 0 220.5 -109.5t46.5 -289.5q-20 -126 -95.5 -245.5t-206.5 -272.5l-383 -451l2 -5h576l-17 -104h-726z" />
<glyph unicode="3" horiz-adv-x="929" d="M83 394h118q-24 -144 30.5 -227.5t167.5 -83.5q109 0 187.5 81t102.5 228q25 158 -26 227.5t-176 69.5h-120l13 81l4 24h120q112 0 183 79t91 203q22 141 -21.5 218t-154.5 77q-99 0 -178.5 -81.5t-100.5 -214.5h-108l-2 6q24 178 137.5 287t268.5 109q150 0 228 -108 t49 -297q-19 -108 -81 -196.5t-160 -131.5q99 -40 135.5 -132t17.5 -216q-32 -203 -148.5 -310t-276.5 -107q-149 0 -240.5 109.5t-59.5 305.5z" />
<glyph unicode="4" horiz-adv-x="929" d="M52 366l14 71l725 1019h126l-197 -986h171l-21 -104h-171l-73 -366h-117l73 366h-530zM205 470h398l158 795l-5 2l-45 -79z" />
<glyph unicode="5" horiz-adv-x="929" d="M132 383h114q-24 -152 23.5 -226t149.5 -74q113 0 190.5 99t107.5 280q27 168 -18 262.5t-154 94.5q-99 0 -159.5 -44.5t-97.5 -132.5l-94 17l193 797h564l-18 -115h-464l-125 -513q49 48 103 75.5t131 30.5q152 3 222 -125t35 -345q-37 -229 -145.5 -357t-286.5 -128 q-138 0 -220.5 102.5t-50.5 301.5z" />
<glyph unicode="6" horiz-adv-x="929" d="M145 541l58 363q42 264 182 418.5t314 154.5q58 0 114.5 -17.5t92.5 -48.5l-44 -100q-36 30 -77.5 45t-102.5 15q-122 0 -225 -126.5t-135 -328.5l-16 -98q60 67 136.5 105t159.5 38q149 0 220 -137t38 -350q-37 -224 -154.5 -359.5t-276.5 -135.5q-156 0 -241 151.5 t-43 410.5zM260 532q-35 -216 18.5 -333t166.5 -117q104 0 187 115t109 277q28 179 -17.5 283t-161.5 104q-87 0 -162.5 -56t-119.5 -146z" />
<glyph unicode="7" horiz-adv-x="929" d="M221 1350l17 106h762l-17 -106q-236 -268 -370.5 -550.5t-230.5 -676.5l-31 -123h-116l29 123q92 370 241 668t359 559h-643z" />
<glyph unicode="8" horiz-adv-x="929" d="M85 386q27 138 108.5 231.5t196.5 131.5q-81 42 -119 129.5t-15 202.5q40 201 151.5 298.5t266.5 97.5q140 0 219.5 -106t42.5 -290q-26 -128 -97.5 -214.5t-171.5 -123.5q93 -44 138.5 -138.5t21.5 -218.5q-43 -210 -163 -308.5t-288 -98.5q-156 0 -243 106.5t-48 300.5 zM204 386q-31 -152 22.5 -227.5t170.5 -75.5q104 0 194 82t118 221q29 146 -25.5 227t-165.5 81q-105 0 -196 -86.5t-118 -221.5zM375 1081q-27 -137 19 -209.5t146 -72.5q90 0 170.5 78t105.5 204q27 134 -19.5 212t-143.5 78q-92 0 -172 -80t-106 -210z" />
<glyph unicode="9" horiz-adv-x="929" d="M114 39l37 104q46 -32 95 -46t114 -14q119 0 213.5 112t127.5 316l19 118l-5 3q-50 -82 -122 -126t-153 -44q-154 0 -232 139t-43 357q36 229 161 374t275 145q165 0 247 -139t41 -399l-68 -426q-42 -264 -171 -399t-306 -135q-57 0 -119 15.5t-111 44.5zM286 958 q-28 -174 17 -283t154 -109q93 0 169.5 67t119.5 163l25 152q34 215 -15 319t-168 104q-97 0 -186 -122t-116 -291z" />
<glyph unicode=":" horiz-adv-x="395" d="M53 0l33 166h127l-33 -166h-127zM234 914l33 166h127l-33 -166h-127z" />
<glyph unicode=";" horiz-adv-x="400" d="M-41 -258l110 280l34 168h119l-34 -171l-154 -277h-75zM237 916l33 166h127l-33 -166h-127z" />
<glyph unicode="&#x3c;" horiz-adv-x="852" d="M88 500l15 73l5 26l718 375l5 -4l-24 -122l-522 -270l-97 -27v-6l84 -28l415 -266l-26 -130z" />
<glyph unicode="=" d="M132 421l22 109h658l-22 -109h-658zM214 832l22 109h658l-22 -109h-658z" />
<glyph unicode="&#x3e;" horiz-adv-x="869" d="M52 117l26 128l543 272l97 27v6l-84 29l-436 268l26 127l594 -378l-5 -25l-10 -49l-5 -26z" />
<glyph unicode="?" horiz-adv-x="775" d="M211 1122q32 165 137.5 260t240.5 95q136 0 203.5 -103t34.5 -271q-30 -144 -97.5 -236.5t-197.5 -221.5q-56 -53 -75 -99t-38 -142h-119q27 130 55.5 182.5t120.5 138.5q108 119 158 190.5t73 185.5q27 134 -9.5 200t-130.5 66q-79 0 -149.5 -69t-94.5 -182h-110zM217 0 l31 157h130l-31 -157h-130z" />
<glyph unicode="@" horiz-adv-x="1573" d="M125 478q99 424 344 683.5t557 259.5q301 0 426.5 -247.5t28.5 -661.5q-50 -217 -171.5 -375t-296.5 -158q-61 0 -96.5 50t-33.5 139q-63 -95 -135.5 -142t-155.5 -47q-100 0 -135.5 122t17.5 315q70 254 198 408t267 154q75 0 123.5 -28t93.5 -80l-2 -2h3l-157 -575 q-34 -132 -13 -180t64 -40l6 -1q102 -5 196.5 121t141.5 319q93 388 -1.5 604t-389.5 216q-247 0 -471 -238.5t-313 -615.5q-92 -379 9 -611.5t375 -232.5q68 0 150 22t141 57l11 -77q-62 -41 -152.5 -65t-170.5 -24q-296 0 -427 254t-31 677zM555 170q14 -91 88 -91 q62 0 125 39.5t126 141.5l8 33l150 548q-21 20 -49 32t-63 12q-103 0 -198.5 -120t-158.5 -349q-42 -155 -28 -246z" />
<glyph unicode="A" horiz-adv-x="1057" d="M-46 0l730 1456h106l143 -1456h-121l-36 404h-502l-199 -404h-121zM328 514h438l-66 741l-6 1z" />
<glyph unicode="B" horiz-adv-x="1041" d="M76 0l291 1456h351q168 0 254 -98q61 -68 61 -181q0 -48 -11 -105q-24 -117 -91 -197t-161 -112q104 -23 148 -123q28 -63 27 -141q0 -45 -9 -94q-42 -209 -160.5 -307t-292.5 -98h-407zM215 104h289q111 0 198.5 79.5t115.5 219.5q10 54 10 98q0 71 -26 121 q-43 80 -160 79h-308zM355 804h269q100 3 177 73.5t103 198.5q10 52 10 93q0 75 -34 117q-52 64 -183 64h-233z" />
<glyph unicode="C" horiz-adv-x="1059" d="M150 612l48 239q60 299 197 462.5t331 163.5q178 0 280 -130q80 -102 81 -260q0 -44 -7 -91h-117q4 37 4 71q1 127 -51 205q-64 98 -205 99q-132 0 -240.5 -144.5t-153.5 -373.5l-49 -241q-21 -103 -21 -187q0 -116 39 -199q67 -143 216 -143q126 0 210.5 88.5 t140.5 274.5h109l2 -6q-59 -223 -177 -342t-301 -119q-184 0 -287 182q-68 119 -68 276q0 82 19 175z" />
<glyph unicode="D" horiz-adv-x="1090" d="M76 0l291 1456h309q205 0 327 -184q85 -128 84 -297q0 -75 -16 -158l-37 -189q-61 -302 -214 -465t-371 -163h-373zM215 104h255q152 0 275.5 146.5t170.5 377.5l38 192q17 86 17 159q1 133 -55 226q-86 145 -261 145h-191z" />
<glyph unicode="E" horiz-adv-x="964" d="M76 0l291 1456h736l-21 -106h-618l-109 -543h543l-20 -104h-544l-119 -599h624l-21 -104h-742z" />
<glyph unicode="F" horiz-adv-x="963" d="M76 0l291 1456h744l-21 -106h-626l-114 -565h546l-21 -106h-546l-135 -679h-118z" />
<glyph unicode="G" horiz-adv-x="1146" d="M139 517l87 433q54 272 197 399.5t350 127.5q184 0 277 -109q68 -81 68 -205q0 -44 -9 -94l-3 -5h-111q7 42 7 79q0 90 -42 147q-60 81 -208 81q-141 0 -254.5 -109t-153.5 -310l-87 -435q-18 -88 -18 -158q0 -109 43 -172q72 -104 235 -104q107 0 190.5 45t121.5 106 l75 378h-284l21 105h403l-103 -519q-55 -82 -171 -150.5t-274 -68.5q-196 0 -302 141q-72 95 -72 243q0 71 17 154z" />
<glyph unicode="H" horiz-adv-x="1173" d="M76 0l291 1456h118l-137 -683h617l137 683h116l-291 -1456h-116l133 669h-617l-133 -669h-118z" />
<glyph unicode="I" horiz-adv-x="473" d="M91 0l291 1456h119l-291 -1456h-119z" />
<glyph unicode="J" horiz-adv-x="918" d="M63 401h119q-15 -71 -15 -126q0 -73 27 -117q45 -75 161 -75q91 0 175 90.5t113 238.5l209 1044h118l-209 -1044q-43 -213 -157.5 -323t-269.5 -110q-153 0 -232 109q-53 72 -53 185q0 59 14 128z" />
<glyph unicode="K" horiz-adv-x="981" d="M57 0l291 1456h118l-132 -658h148l519 658h145l3 -5l-597 -722l329 -729h-136l-296 689h-137l-137 -689h-118z" />
<glyph unicode="L" horiz-adv-x="888" d="M76 0l291 1456h119l-270 -1352h558l-21 -104h-677z" />
<glyph unicode="M" horiz-adv-x="1383" d="M70 0l291 1456h151l126 -1273l6 -1l637 1274h152l-291 -1456h-117l128 639l128 584l-6 2l-631 -1225h-78l-141 1223h-6l-105 -584l-128 -639h-116z" />
<glyph unicode="N" horiz-adv-x="1177" d="M76 0l291 1456h119l369 -1211h6l243 1211h118l-291 -1456h-118l-370 1212h-6l-242 -1212h-119z" />
<glyph unicode="O" horiz-adv-x="1120" d="M146 612l48 239q60 303 200 464.5t344 161.5q195 0 303 -182q72 -121 72 -282q0 -80 -18 -171l-47 -239q-61 -302 -204.5 -463t-351.5 -161q-191 1 -296 181q-69 118 -69 276q0 82 19 176zM264 612q-20 -102 -20 -185q0 -119 40 -201q70 -140 229 -140q146 0 257.5 141 t159.5 376l48 241q19 97 19 178q1 122 -43 206q-72 140 -237 140q-141 0 -249.5 -141t-154.5 -374z" />
<glyph unicode="P" horiz-adv-x="1041" d="M76 0l291 1456h413q170 0 252 -119q57 -82 56 -197q0 -52 -11 -110q-42 -206 -162 -316.5t-305 -110.5h-296l-120 -603h-118zM335 708h296q122 0 210.5 93t116.5 227q11 56 11 104q0 76 -29 130q-47 88 -181 88h-295z" />
<glyph unicode="Q" horiz-adv-x="1121" d="M146 612l48 239q60 303 200 464.5t344 161.5q195 0 303 -182q72 -121 72 -282q0 -81 -18 -171l-47 -239q-36 -179 -102 -309.5t-158 -207.5l145 -222l-96 -77l-152 233q-45 -20 -93.5 -30.5t-99.5 -10.5q-191 0 -296 181q-69 118 -69 276q0 82 19 176zM264 612 q-20 -102 -20 -185q0 -119 40 -201q70 -140 229 -140q146 0 257.5 141t159.5 376l48 241q19 97 19 178q0 122 -43 206q-73 140 -237 140q-141 0 -249.5 -141t-154.5 -374z" />
<glyph unicode="R" horiz-adv-x="1093" d="M74 0l291 1455h400q174 0 258 -105q58 -72 58 -186q0 -52 -12 -112q-25 -125 -95.5 -213t-176.5 -129q93 -36 125 -124q18 -50 18 -113q0 -47 -10 -102l-27 -137q-13 -64 -13 -111v-13q2 -52 25 -86l-5 -24h-121q-21 33 -21 90v10q2 64 17 136l27 133q10 52 10 95 q0 74 -30 120q-48 74 -159 73h-310l-131 -657h-118zM344 761h268q135 0 223.5 80.5t115.5 211.5q11 57 11 103q0 76 -31 122q-50 72 -187 72h-282z" />
<glyph unicode="S" horiz-adv-x="1003" d="M122 414l3 5h112q-12 -61 -12 -109q1 -104 55 -154q80 -74 215 -73q101 0 188.5 68.5t107.5 166.5q9 46 9 84q0 74 -33 122q-50 74 -209 150q-177 76 -251 174q-49 65 -49 170q0 53 13 117q32 165 145.5 253.5t270.5 88.5q175 0 269 -118q66 -82 65 -207q0 -54 -12 -116 h-119q10 51 10 95q0 89 -40 149q-60 90 -194 91q-98 0 -177.5 -69t-98.5 -165q-10 -50 -10 -92q0 -71 29 -115q46 -72 209 -149q178 -77 253 -178q51 -68 51 -173q0 -51 -12 -110q-34 -170 -152 -255.5t-284 -85.5q-172 0 -286 106q-80 74 -80 207q0 56 14 122z" />
<glyph unicode="T" horiz-adv-x="981" d="M231 1350l21 106h888l-21 -106h-386l-270 -1350h-117l270 1350h-385z" />
<glyph unicode="U" horiz-adv-x="1074" d="M137 437l204 1019h115l-204 -1019q-14 -69 -14 -125q0 -92 38 -144q60 -86 190 -85q125 0 226 89t136 265l204 1019h117l-204 -1019q-47 -238 -180 -348t-320 -110q-168 -1 -260 119q-62 81 -62 208q0 60 14 131z" />
<glyph unicode="V" horiz-adv-x="1038" d="M202 1456h127l135 -1204l9 -86l6 -1l37 87l519 1204h127l-660 -1456h-106z" />
<glyph unicode="W" horiz-adv-x="1467" d="M222 1456h118l30 -1039l-2 -192l6 -1l69 193l396 1039h108l66 -1039l5 -194l6 -1l63 195l359 1039h119l-521 -1456h-109l-67 1111l-5 130l-6 1l-45 -131l-428 -1111h-108z" />
<glyph unicode="X" horiz-adv-x="1030" d="M-8 0l505 738l-261 718h142l201 -613l6 -1l397 614h142l-490 -718l269 -738h-141l-209 632l-6 1l-412 -633h-143z" />
<glyph unicode="Y" horiz-adv-x="1017" d="M245 1456h136l177 -764l6 -1l484 765h135l-596 -924l-107 -532h-117l108 541z" />
<glyph unicode="Z" horiz-adv-x="919" d="M16 0l7 95l805 1256h-571l21 105h706l-18 -90l-811 -1262h632l-21 -104h-750z" />
<glyph unicode="[" horiz-adv-x="452" d="M24 -312l316 1976h289l-17 -106h-168l-282 -1764h168l-17 -106h-289z" />
<glyph unicode="\" horiz-adv-x="676" d="M255 1456h113l165 -1581h-115z" />
<glyph unicode="]" horiz-adv-x="452" d="M-103 -312l17 106h169l282 1764h-169l17 106h290l-316 -1976h-290z" />
<glyph unicode="^" horiz-adv-x="701" d="M130 729l381 727h85l90 -727h-111l-50 481l-2 83l-6 2l-35 -85l-239 -481h-113z" />
<glyph unicode="_" horiz-adv-x="740" d="M-90 -104l21 104h708l-21 -104h-708z" />
<glyph unicode="`" horiz-adv-x="530" d="M250 1476h155l119 -266h-109z" />
<glyph unicode="a" horiz-adv-x="905" d="M72 288q31 160 148 245t292 85h177l27 133q9 45 9 82q0 63 -26 101q-41 62 -141 62q-85 0 -159.5 -62.5t-91.5 -151.5l-108 1l-2 6q21 130 130.5 221.5t257.5 91.5q134 0 208 -93q51 -64 51 -164q0 -44 -10 -96l-106 -531q-12 -60 -18 -112q-4 -38 -5 -77q0 -14 1 -29 h-123q2 53 5.5 89.5t10.5 74.5q-61 -80 -146 -132.5t-176 -52.5q-121 -1 -177 85q-38 57 -37 138q0 40 9 86zM189 284q-7 -34 -7 -63q0 -47 20 -81q32 -52 111 -53q88 0 175.5 59t136.5 147l46 232h-181q-108 0 -195 -70.5t-106 -170.5z" />
<glyph unicode="b" d="M49 0l312 1560h118l-121 -601l5 -4q49 69 116.5 108t147.5 39q147 0 213 -166q38 -95 37 -219q0 -93 -21 -201l-4 -21q-52 -259 -156 -387.5t-261 -128.5q-81 0 -144.5 47.5t-97.5 128.5l-43 -155h-101zM219 262q17 -81 70.5 -128.5t141.5 -47.5q109 0 186 109t116 300 l4 21q22 113 22 203q-1 83 -19 145q-40 130 -161 130q-80 0 -144.5 -62t-113.5 -159z" />
<glyph unicode="c" horiz-adv-x="872" d="M94 456l27 168q34 216 150.5 347t296.5 131q139 0 219 -107q59 -79 59 -195q0 -41 -7 -86h-111q6 39 6 73q0 83 -36 135q-51 74 -147 74q-127 0 -207 -107t-105 -265l-27 -168q-11 -67 -11 -123q0 -86 26 -148q43 -102 177 -102q86 0 165.5 67.5t98.5 186.5h103l2 -6 q-22 -157 -135.5 -254.5t-249.5 -97.5q-172 -1 -250 135q-55 95 -54 224q0 56 10 118z" />
<glyph unicode="d" d="M118 530l4 21q55 277 160.5 414t264.5 137q80 0 141.5 -41t94.5 -115l123 614h118l-312 -1560h-104l17 126q-55 -71 -124 -109t-149 -38q-144 -1 -212 157q-41 93 -41 215q0 83 19 179zM238 205q40 -119 162 -119q75 0 137.5 51.5t112.5 141.5l106 530q-18 81 -68.5 133 t-135.5 52q-111 0 -190.5 -120t-119.5 -323l-4 -21q-21 -104 -21 -185q1 -81 21 -140z" />
<glyph unicode="e" horiz-adv-x="869" d="M91 446l29 180q34 213 160 344.5t277 131.5q157 0 230 -122q51 -85 51 -210q0 -54 -10 -116l-19 -119h-588l-14 -89q-8 -53 -8 -99q0 -95 36 -163q54 -100 176 -101q81 0 150 31.5t120 87.5l35 -85q-57 -64 -136.5 -101t-184.5 -37q-161 1 -249 133q-64 96 -64 229 q0 50 9 105zM243 644l2 -5h462l8 46q7 45 7 84q0 83 -30 141q-44 86 -152 86q-101 0 -187.5 -103t-109.5 -249z" />
<glyph unicode="f" horiz-adv-x="570" d="M119 0l196 981h-139l20 101h139l32 156q35 175 117.5 259t206.5 84q25 0 52 -5.5t52 -14.5l-34 -101q-17 6 -36 9.5t-43 3.5q-70 0 -122.5 -62t-74.5 -173l-32 -156h193l-20 -101h-193l-196 -981h-118z" />
<glyph unicode="g" horiz-adv-x="935" d="M32 -366l53 105q39 -31 93 -48.5t115 -17.5q112 0 193.5 91.5t113.5 249.5l19 95l-5 4q-49 -64 -115 -99t-143 -35q-145 0 -215 157q-42 95 -42 217q0 82 19 177l4 21q55 276 162 413.5t267 137.5q83 0 145.5 -44t94.5 -122l41 146h100l-213 -1068q-45 -223 -159 -337 t-287 -114q-57 0 -126 19.5t-115 51.5zM237 530q-20 -101 -20 -181q0 -83 21 -143q43 -120 165 -120q75 0 137.5 52t112.5 143l105 526q-18 83 -67.5 135t-135.5 52q-111 0 -192.5 -120.5t-121.5 -322.5z" />
<glyph unicode="h" d="M49 0l312 1560h118l-126 -628l5 -3q55 83 131.5 128t165.5 45q128 0 184 -108q32 -61 32 -157q0 -74 -19 -169l-134 -668h-119l134 670q19 96 19 160q0 61 -17 95q-35 69 -132 69q-79 0 -153 -60t-128 -158l-155 -776h-118z" />
<glyph unicode="i" horiz-adv-x="410" d="M61 0l216 1082h118l-216 -1082h-118zM339 1390l34 170h118l-34 -170h-118z" />
<glyph unicode="j" horiz-adv-x="424" d="M-230 -418l32 105q12 -6 32 -11t33 -5q60 0 110.5 62t73.5 178l234 1171h117l-234 -1171q-36 -178 -115.5 -263t-198.5 -85q-21 0 -41.5 5t-42.5 14zM342 1390l34 170h118l-34 -170h-118z" />
<glyph unicode="k" horiz-adv-x="835" d="M50 0l312 1560h117l-186 -929h100l375 451h135l2 -5l-422 -488l250 -589h-141l-212 525h-108l-105 -525h-117z" />
<glyph unicode="l" horiz-adv-x="410" d="M61 0l312 1560h118l-312 -1560h-118z" />
<glyph unicode="m" horiz-adv-x="1452" d="M47 0l216 1082h104l-22 -156q58 86 133.5 131t168.5 45q85 0 138 -57t63 -170q59 108 141 167.5t183 59.5q126 0 182 -118q30 -64 29 -161q0 -83 -21 -191l-126 -632h-119l127 634q23 118 23 193q0 61 -15 94q-34 74 -132 74q-94 0 -172 -98.5t-117 -239.5q-1 -2 -1 -3 v-3l-130 -651h-118l127 633q22 112 22 186q0 63 -16 99q-35 76 -131 76q-85 0 -152 -61.5t-114 -164.5l-154 -768h-117z" />
<glyph unicode="n" d="M49 0l216 1082h105l-23 -161l5 -3q54 89 130.5 136.5t168.5 47.5q130 0 186 -110q31 -61 32 -158q0 -76 -20 -174l-132 -660h-119l132 659q21 104 21 172q0 61 -17 94q-35 69 -136 69q-81 0 -153.5 -63.5t-125.5 -166.5l-152 -764h-118z" />
<glyph unicode="o" d="M92 461l25 159q35 219 158 350.5t298 131.5q166 0 251 -137q61 -99 61 -234q0 -53 -9 -111l-25 -159q-36 -221 -158.5 -351.5t-297.5 -130.5q-169 0 -253 136q-60 97 -60 232q0 54 10 114zM210 461q-9 -58 -10 -109q0 -96 34 -164q50 -106 177 -105q118 0 206.5 109.5 t114.5 268.5l25 159q9 55 9 104q0 96 -34 166q-51 106 -176 106q-120 0 -208 -109.5t-113 -266.5z" />
<glyph unicode="p" d="M-34 -416l299 1498h100l-15 -133q56 73 125.5 113t149.5 40q147 0 213 -168q38 -96 38 -220q0 -94 -22 -203l-4 -21q-52 -258 -155 -384.5t-260 -126.5q-82 0 -145 37t-99 106l-107 -538h-118zM216 247q19 -77 71.5 -120.5t136.5 -43.5q111 0 189.5 108.5t116.5 298.5 l4 21q22 111 22 200q0 85 -20 150q-41 133 -163 133q-75 0 -137.5 -56t-110.5 -146z" />
<glyph unicode="q" d="M118 530l4 21q55 277 160.5 414t264.5 137q80 0 142 -40t95 -113l36 133h103l-299 -1498h-119l105 524q-54 -62 -119 -95.5t-139 -33.5q-144 0 -212 157q-41 94 -41 215q0 83 19 179zM238 204q40 -121 162 -121q71 0 131.5 48.5t109.5 132.5l112 561q-20 76 -70 123.5 t-131 47.5q-111 0 -190.5 -121t-119.5 -324l-4 -21q-21 -104 -21 -186q0 -81 21 -140z" />
<glyph unicode="r" horiz-adv-x="584" d="M49 0l216 1082h104l-20 -162l5 -3q49 88 117 136.5t149 48.5q17 0 35 -4t28 -7l-39 -117l-75 6q-75 0 -139.5 -59.5t-111.5 -161.5l-151 -759h-118z" />
<glyph unicode="s" horiz-adv-x="834" d="M67 299l2 5h111q-3 -23 -2 -44q0 -84 45 -125q57 -52 144 -52q90 0 155.5 52t76.5 124q3 19 3 36q0 53 -28 92q-36 52 -149 112q-147 69 -209 139q-47 54 -47 133q0 24 4 51q18 121 117.5 200.5t239.5 79.5q141 0 215 -92q55 -69 55 -162q0 -31 -6 -65l-3 -5h-111 q3 22 3 42q0 64 -33 112q-44 64 -137 64q-91 0 -151.5 -52t-70.5 -118q-3 -20 -3 -38q0 -48 24 -78q32 -42 152 -109q144 -65 208 -141q50 -60 50 -145q0 -24 -4 -49q-22 -133 -121.5 -210t-245.5 -77q-153 -1 -231 95q-59 72 -59 163q0 30 6 62z" />
<glyph unicode="t" horiz-adv-x="576" d="M156 981l20 101h142l56 276h119l-56 -276h178l-20 -101h-178l-140 -702q-12 -61 -12 -100q1 -35 9 -53q20 -40 67 -40q21 0 45.5 3t51.5 9l-4 -92q-25 -12 -63.5 -19.5t-75.5 -7.5q-87 -1 -128 73q-23 41 -23 108q0 52 14 119l140 702h-142z" />
<glyph unicode="u" d="M137 454l125 628h118l-126 -630q-24 -120 -24 -197q0 -58 14 -91q32 -78 126 -78q92 0 165.5 58.5t122.5 157.5l156 780h118l-216 -1082h-106l23 150l-5 3q-53 -85 -128 -129.5t-167 -44.5q-129 -1 -187 117q-31 64 -31 164q0 84 22 194z" />
<glyph unicode="v" horiz-adv-x="827" d="M152 1082h122l93 -809l5 -99l6 -1l40 100l348 809h121l-494 -1082h-92z" />
<glyph unicode="w" horiz-adv-x="1250" d="M191 1082h118l7 -729l-5 -164l5 -1l66 165l323 729h98l31 -729l-1 -172l6 -1l66 173l292 729h120l-465 -1082h-97l-33 735l-3 170l-6 1l-69 -171l-324 -735h-98z" />
<glyph unicode="x" horiz-adv-x="827" d="M-18 0l384 550l-200 532h137l138 -433l6 -1l279 434h138l-369 -532l207 -550h-137l-148 451l-6 1l-291 -452h-138z" />
<glyph unicode="y" horiz-adv-x="827" d="M-76 -423l34 103q9 -2 31 -4.5t32 -2.5q54 0 103 58.5t87 139.5l72 144l-113 1067h131l58 -784l5 -104l6 -1l418 889h131l-618 -1255q-53 -107 -124 -185.5t-173 -78.5q-16 0 -42 5t-38 9z" />
<glyph unicode="z" horiz-adv-x="797" d="M-2 0l18 90l661 885h-474l21 107h607l-18 -91l-665 -887h520l-21 -104h-649z" />
<glyph unicode="{" horiz-adv-x="567" d="M83 543l13 83l4 23q86 0 141 67.5t75 188.5l36 227q28 177 108 292.5t235 165.5h6l11 -75q-102 -40 -160 -139.5t-81 -243.5l-36 -227q-19 -116 -69.5 -196t-133.5 -116q68 -40 94 -121t10 -187l-36 -225q-25 -148 2 -243t118 -137l-37 -76l-6 1q-138 50 -181 168 t-15 287l36 225q20 126 -12 192t-122 66z" />
<glyph unicode="|" horiz-adv-x="402" d="M40 -270l276 1726h97l-276 -1726h-97z" />
<glyph unicode="}" horiz-adv-x="567" d="M-96 -320q101 42 160.5 140t82.5 240l36 225q18 116 69.5 196.5t139.5 115.5q-74 36 -101 117t-9 191l36 227q23 149 -4 245.5t-116 137.5l36 75h6q136 -50 179 -168.5t16 -289.5l-36 -227q-21 -127 11.5 -191.5t123.5 -64.5l-13 -79l-4 -27q-87 0 -142.5 -69t-74.5 -189 l-36 -225q-29 -175 -109 -290t-233 -166l-6 2z" />
<glyph unicode="~" horiz-adv-x="1131" d="M129 474q21 137 98.5 225.5t178.5 88.5q66 0 121.5 -38.5t109.5 -110.5q39 -57 75.5 -82.5t81.5 -25.5q54 0 105.5 64t67.5 160l89 -15q-22 -134 -102 -226.5t-178 -92.5q-68 0 -121 36t-111 114q-39 53 -76 80t-80 27q-56 0 -107 -61t-66 -159z" />
<glyph unicode="&#xa1;" horiz-adv-x="402" d="M-27 -374l196 978h118l-196 -978h-118zM222 896l37 186h129l-37 -186h-129z" />
<glyph unicode="&#xa2;" horiz-adv-x="910" d="M110 456l27 168q31 204 137 332.5t271 143.5l44 218h119l-46 -227q106 -29 161 -129.5t32 -247.5h-111q21 134 -30 208t-147 74q-127 0 -207 -107t-105 -265l-27 -168q-28 -169 15 -271t177 -102q86 0 165.5 67.5t98.5 186.5h103l2 -6q-21 -146 -121.5 -240.5 t-227.5 -109.5l-45 -226h-119l47 234q-130 31 -186.5 159.5t-26.5 307.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="958" d="M34 0l21 104h6q52 14 98.5 128t70.5 234l30 175h-150l21 104h147l51 295q43 217 148.5 327t252.5 110q141 0 205 -106.5t30 -280.5h-119q31 156 -7.5 218.5t-129.5 62.5q-85 0 -158 -88t-104 -243l-51 -295h345l-21 -104h-341l-30 -175q-23 -115 -59 -208t-82 -154h599 l-21 -104h-752z" />
<glyph unicode="&#xa4;" horiz-adv-x="1252" d="M30 62l169 165q-35 80 -43.5 177t13.5 204q23 119 70.5 220.5t114.5 181.5l-101 164l104 90l95 -157q76 61 162 94t175 33q80 0 151.5 -36.5t124.5 -102.5l172 170l69 -91l-181 -178q36 -82 45 -181t-12 -207q-23 -114 -68 -212t-106 -176l99 -158l-104 -89l-90 147 q-80 -68 -170 -104t-181 -36q-84 0 -157 38.5t-126 110.5l-156 -155zM282 608q-46 -227 36 -370.5t243 -143.5q147 0 294.5 152.5t189.5 361.5q44 225 -37.5 368t-241.5 143q-148 0 -295.5 -152t-188.5 -359z" />
<glyph unicode="&#xa5;" horiz-adv-x="999" d="M100 326l20 104h313l37 173h-314l20 104h279l-204 749h136l175 -683l6 -1l448 684h136l-503 -749h279l-20 -104h-319l-37 -173h320l-20 -104h-319l-65 -326h-119l65 326h-314z" />
<glyph unicode="&#xa6;" horiz-adv-x="395" d="M-4 -270l154 772h118l-154 -772h-118zM190 698l151 758h118l-151 -758h-118z" />
<glyph unicode="&#xa7;" horiz-adv-x="1011" d="M-8 -64l119 2q-37 -183 30.5 -255t189.5 -72q112 0 199 71t109 178q22 111 -24.5 166.5t-202.5 117.5q-179 62 -253 150.5t-40 256.5q20 104 79.5 173.5t150.5 101.5q-60 49 -80.5 119.5t0.5 173.5q34 172 154 265t295 93q168 0 251 -114.5t43 -316.5h-118 q29 148 -21.5 236.5t-175.5 88.5q-120 0 -204 -71.5t-105 -177.5q-24 -120 19.5 -174t207.5 -119q182 -66 253 -149.5t38 -248.5q-22 -105 -82.5 -174t-152.5 -100q62 -50 84.5 -120t1.5 -175q-36 -177 -153.5 -267t-293.5 -90q-161 0 -261.5 105t-56.5 326zM239 553 q-25 -122 20.5 -176.5t219.5 -123.5l47.5 -19t43.5 -18q81 14 141 72.5t77 139.5q22 113 -28 172t-214 127q-33 11 -57.5 20.5t-45.5 20.5q-79 -16 -133.5 -75t-70.5 -140z" />
<glyph unicode="&#xa8;" horiz-adv-x="842" d="M288 1296l26 160h157l-26 -160h-157zM679 1296l26 160h156l-26 -160h-156z" />
<glyph unicode="&#xa9;" horiz-adv-x="1379" d="M144 729q52 327 256.5 537t453.5 210q235 0 377 -217.5t93 -529.5q-53 -328 -257.5 -539t-451.5 -211q-237 0 -379.5 218.5t-91.5 531.5zM225 729q-47 -289 71.5 -476t332.5 -187q202 0 386 194t229 469q45 287 -73 472.5t-331 185.5q-204 0 -388 -193t-227 -465z M434 669l19 119q28 179 121 283t222 104q121 0 181.5 -80.5t36.5 -232.5h-96q18 116 -17 168t-120 52q-84 0 -147.5 -83t-83.5 -210l-19 -120q-22 -136 13.5 -215.5t123.5 -79.5q81 0 134 54t72 168h88l2 -6q-22 -156 -103 -232t-208 -76q-123 0 -185 107.5t-34 279.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="746" d="M214 920q22 112 96 166.5t199 54.5h130l12 61q17 89 -2 132.5t-76 43.5q-61 0 -106.5 -38t-58.5 -107l-94 10l-2 6q17 104 93.5 166t186.5 62q94 0 142.5 -72.5t22.5 -203.5l-63 -314q-11 -54 -15 -96.5t-1 -84.5h-108q-1 26 0 52.5t5 54.5q-39 -53 -92.5 -87t-117.5 -34 q-87 0 -129.5 62.5t-21.5 165.5zM321 924q-14 -69 7 -102t79 -33q46 0 102.5 37.5t82.5 82.5l29 146h-129q-65 0 -113 -38.5t-58 -92.5z" />
<glyph unicode="&#xab;" horiz-adv-x="774" d="M122 512l1 6l3 13l309 379h96l-289 -389l133 -389h-96zM372 512l1 6l3 13l309 379h96l-289 -389l133 -389h-96z" />
<glyph unicode="&#xac;" horiz-adv-x="915" d="M161 668l21 109h648l-21 -109h-1l-56 -283h-117l56 283h-530z" />
<glyph unicode="&#xad;" horiz-adv-x="483" d="M78 568l20 104h380l-20 -104h-380z" />
<glyph unicode="&#xae;" horiz-adv-x="1383" d="M142 729q52 327 256.5 537t453.5 210q236 0 378 -218t93 -529q-53 -328 -257.5 -539t-452.5 -211q-237 0 -379.5 218.5t-91.5 531.5zM222 729q-47 -289 71 -476t334 -187q202 0 385.5 194t228.5 469q45 287 -72.5 472.5t-330.5 185.5q-205 0 -389 -192.5t-227 -465.5z M440 316l136 850h221q119 0 178.5 -64.5t40.5 -184.5q-12 -70 -50.5 -118.5t-101.5 -78.5q53 -25 71.5 -78.5t7.5 -126.5l-9 -56q-7 -41 -8.5 -73.5t2.5 -53.5l-2 -16h-99q-4 22 0.5 63.5t11.5 80.5l8 54q14 86 -10.5 121t-95.5 35h-149l-56 -354h-96zM607 764h143 q62 0 110.5 40t59.5 111q14 88 -16 123t-122 35h-125z" />
<glyph unicode="&#xaf;" horiz-adv-x="775" d="M254 1356l16 100h570l-16 -100h-570z" />
<glyph unicode="&#xb0;" horiz-adv-x="668" d="M289 1226q22 109 96 180t161 71q78 0 126 -75.5t28 -175.5q-22 -111 -95 -179.5t-158 -68.5q-80 0 -129.5 73t-28.5 175zM375 1226q-14 -72 11.5 -113t78.5 -41q46 0 90 44t58 110q14 72 -10 114.5t-75 42.5q-48 0 -94 -46t-59 -111z" />
<glyph unicode="&#xb1;" d="M102 46l21 104h658l-21 -104h-658zM135 726l17 105h335l70 436h110l-70 -436h316l-17 -105h-316l-70 -437h-110l70 437h-335z" />
<glyph unicode="&#xb2;" horiz-adv-x="697" d="M156 667l18 92l301 281q72 69 101 113t39 92q13 68 -6.5 104t-76.5 36q-58 0 -103 -42t-57 -106h-97l-2 6q16 104 92 170t185 66q95 0 143 -62t26 -173q-17 -81 -64.5 -139.5t-151.5 -154.5l-190 -185l2 -6h315l-18 -92h-456z" />
<glyph unicode="&#xb3;" horiz-adv-x="708" d="M196 883l3 5h99q-13 -66 15 -103.5t90 -37.5q61 0 107.5 38t59.5 101q15 79 -10.5 111t-94.5 32h-100l4 23l14 68h100q59 0 97.5 35t51.5 98q12 62 -12.5 96.5t-88.5 34.5q-51 0 -95 -35t-55 -91h-94l-2 6q16 102 90.5 158t173.5 56q101 0 155 -60t33 -166 q-13 -62 -50.5 -108t-92.5 -70q51 -24 72.5 -72t8.5 -116q-24 -116 -101.5 -173.5t-188.5 -57.5q-92 0 -153 59t-36 169z" />
<glyph unicode="&#xb4;" horiz-adv-x="528" d="M239 1212l208 266h142l3 -6l-253 -260h-100z" />
<glyph unicode="&#xb5;" d="M-29 -416l299 1498h117q-127 -635 -131 -667q-39 -190 -3 -261t128 -71q91 0 158 55.5t112 157.5l157 786h119l-216 -1082h-104l18 127q-52 -74 -116.5 -111t-143.5 -37q-61 0 -106.5 28t-68.5 91l-102 -514h-117z" />
<glyph unicode="&#xb6;" horiz-adv-x="805" d="M185 988q43 220 168.5 344t313.5 124h195l-291 -1456h-119l104 520h-76q-173 0 -254.5 132t-40.5 336z" />
<glyph unicode="&#xb7;" horiz-adv-x="437" d="M183 624l36 181h135l-36 -181h-135z" />
<glyph unicode="&#xb8;" horiz-adv-x="424" d="M-68 -427l10 72q61 0 112 30.5t63 88.5q12 60 -13.5 80.5t-102.5 28.5l48 127h88l-22 -63q57 -9 85 -49t12 -122q-20 -97 -91 -148t-184 -49z" />
<glyph unicode="&#xb9;" horiz-adv-x="445" d="M242 665l140 700l-110 -7l19 96l220 23l-162 -812h-107z" />
<glyph unicode="&#xba;" horiz-adv-x="758" d="M235 1025l23 117q32 158 119.5 246.5t209.5 88.5q112 0 168 -95t27 -240l-23 -117q-32 -157 -119 -245t-208 -88q-113 0 -170 94t-27 239zM341 1025q-23 -111 4 -173.5t107 -62.5q69 0 125.5 67t77.5 169l23 117q22 108 -5.5 172t-104.5 64q-70 0 -127.5 -68.5 t-76.5 -167.5z" />
<glyph unicode="&#xbb;" horiz-adv-x="772" d="M52 166l288 389l-131 394h96l156 -384l-2 -6h1l-3 -13l-309 -380h-96zM310 166l288 389l-131 394h96l156 -384l-2 -6h1l-3 -13l-309 -380h-96z" />
<glyph unicode="&#xbc;" horiz-adv-x="1270" d="M226 177l787 1138l61 -49l-788 -1138zM305 664l140 700l-110 -7l19 96l220 23l-162 -812h-107zM580 168l9 69l448 564h108l-108 -540h113l-18 -93h-114l-33 -168h-104l33 168h-334zM711 261h222l76 383l-5 3l-21 -30z" />
<glyph unicode="&#xbd;" horiz-adv-x="1307" d="M235 177l787 1138l61 -49l-788 -1138zM305 664l140 700l-110 -7l19 96l220 23l-162 -812h-107zM655 0l18 92l301 281q72 69 101 113t39 92q13 68 -6.5 104t-76.5 36q-58 0 -103 -42t-57 -106h-97l-2 6q16 104 92 170t185 66q95 0 143 -62t26 -173q-17 -81 -64.5 -139.5 t-151.5 -154.5l-190 -185l2 -6h315l-18 -92h-456z" />
<glyph unicode="&#xbe;" horiz-adv-x="1400" d="M213 884l3 5h99q-13 -66 15 -103.5t90 -37.5q61 0 107.5 38t59.5 101q15 79 -10.5 111t-94.5 32h-100l4 23l14 68h100q59 0 97.5 35t51.5 98q12 62 -12.5 96.5t-88.5 34.5q-51 0 -95 -35t-55 -91h-94l-2 6q16 102 90.5 158t173.5 56q101 0 155 -60t33 -166 q-13 -62 -50.5 -108t-92.5 -70q51 -24 72.5 -72t8.5 -116q-24 -116 -101.5 -173.5t-188.5 -57.5q-92 0 -153 59t-36 169zM383 177l787 1138l61 -49l-788 -1138zM739 168l9 69l448 564h108l-108 -540h113l-18 -93h-114l-33 -168h-104l33 168h-334zM870 261h222l76 383l-5 3 l-21 -30z" />
<glyph unicode="&#xbf;" horiz-adv-x="801" d="M13 -20q28 142 96 236.5t196 220.5q57 52 76 98t38 142h119q-28 -131 -56.5 -183.5t-119.5 -137.5q-107 -117 -158.5 -189.5t-73.5 -184.5q-27 -134 9 -200t131 -66q78 0 149.5 69t94.5 182h111l2 -6q-31 -165 -137.5 -260t-241.5 -95q-137 0 -203 103t-32 271zM459 925 l32 158h130l-32 -158h-130z" />
<glyph unicode="&#xc0;" horiz-adv-x="1057" d="M-46 0l730 1456h106l143 -1456h-121l-36 404h-502l-199 -404h-121zM328 514h438l-66 741l-6 1zM567 1827h155l119 -266h-109z" />
<glyph unicode="&#xc1;" horiz-adv-x="1057" d="M-46 0l730 1456h106l143 -1456h-121l-36 404h-502l-199 -404h-121zM328 514h438l-66 741l-6 1zM713 1557l208 266h142l3 -6l-253 -260h-100z" />
<glyph unicode="&#xc2;" horiz-adv-x="1057" d="M-46 0l730 1456h106l143 -1456h-121l-36 404h-502l-199 -404h-121zM328 514h438l-66 741l-6 1zM558 1601l5 21l229 222h83l143 -224l-4 -19h-104l-92 166l-159 -166h-101z" />
<glyph unicode="&#xc3;" horiz-adv-x="1057" d="M-46 0l730 1456h106l143 -1456h-121l-36 404h-502l-199 -404h-121zM328 514h438l-66 741l-6 1zM517 1622q14 90 67.5 147.5t122.5 57.5q45 0 102.5 -55t99.5 -55q34 0 65.5 36.5t40.5 90.5l68 -21q-15 -92 -68.5 -148.5t-121.5 -56.5q-54 0 -107 54.5t-95 54.5 q-35 0 -66 -35t-39 -88z" />
<glyph unicode="&#xc4;" horiz-adv-x="1057" d="M-46 0l730 1456h106l143 -1456h-121l-36 404h-502l-199 -404h-121zM328 514h438l-66 741l-6 1zM520 1638l26 160h157l-26 -160h-157zM911 1638l26 160h156l-26 -160h-156z" />
<glyph unicode="&#xc5;" horiz-adv-x="1057" d="M-46 0l730 1456h106l143 -1456h-121l-36 404h-502l-199 -404h-121zM328 514h438l-66 741l-6 1zM660 1731q14 75 67 121.5t117 46.5q57 0 93 -49.5t23 -118.5q-16 -77 -67.5 -121t-114.5 -44q-59 0 -96 47t-22 118zM732 1731q-9 -43 8.5 -67.5t51.5 -24.5q30 0 58 26.5 t37 65.5q8 43 -8.5 68.5t-49.5 25.5q-31 0 -60.5 -27.5t-36.5 -66.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1516" d="M-69 0l986 1456h713l-21 -106h-547l-90 -540h464l-21 -104h-460l-101 -602h554l-21 -104h-669l65 387h-452l-256 -387h-144zM407 503h395l135 806l-4 -11z" />
<glyph unicode="&#xc7;" horiz-adv-x="1019" d="M150 612l48 239q60 299 197 462.5t331 163.5q179 0 280.5 -130t73.5 -351h-117q17 178 -47.5 276.5t-204.5 98.5q-132 0 -240.5 -144.5t-153.5 -373.5l-49 -241q-49 -243 18 -386t216 -143q126 0 210.5 88.5t140.5 274.5h109l2 -6q-59 -223 -177 -342t-301 -119 q-184 0 -287 182t-49 451zM284 -435l10 72q61 0 112 30.5t63 88.5q12 60 -13.5 80.5t-102.5 28.5l48 127h88l-22 -63q57 -9 85 -49t12 -122q-20 -97 -91 -148t-184 -49z" />
<glyph unicode="&#xc8;" horiz-adv-x="964" d="M76 0l291 1456h736l-21 -106h-618l-109 -543h543l-20 -104h-544l-119 -599h624l-21 -104h-742zM523 1827h155l119 -266h-109z" />
<glyph unicode="&#xc9;" horiz-adv-x="964" d="M76 0l291 1456h736l-21 -106h-618l-109 -543h543l-20 -104h-544l-119 -599h624l-21 -104h-742zM669 1557l208 266h142l3 -6l-253 -260h-100z" />
<glyph unicode="&#xca;" horiz-adv-x="964" d="M76 0l291 1456h736l-21 -106h-618l-109 -543h543l-20 -104h-544l-119 -599h624l-21 -104h-742zM514 1601l5 21l229 222h83l143 -224l-4 -19h-104l-92 166l-159 -166h-101z" />
<glyph unicode="&#xcb;" horiz-adv-x="964" d="M76 0l291 1456h736l-21 -106h-618l-109 -543h543l-20 -104h-544l-119 -599h624l-21 -104h-742zM476 1638l26 160h157l-26 -160h-157zM867 1638l26 160h156l-26 -160h-156z" />
<glyph unicode="&#xcc;" horiz-adv-x="473" d="M91 0l291 1456h119l-291 -1456h-119zM253 1827h155l119 -266h-109z" />
<glyph unicode="&#xcd;" horiz-adv-x="473" d="M91 0l291 1456h119l-291 -1456h-119zM399 1557l208 266h142l3 -6l-253 -260h-100z" />
<glyph unicode="&#xce;" horiz-adv-x="473" d="M91 0l291 1456h119l-291 -1456h-119zM246 1601l5 21l229 222h83l143 -224l-4 -19h-104l-92 166l-159 -166h-101z" />
<glyph unicode="&#xcf;" horiz-adv-x="473" d="M91 0l291 1456h119l-291 -1456h-119zM208 1638l26 160h157l-26 -160h-157zM599 1638l26 160h156l-26 -160h-156z" />
<glyph unicode="&#xd0;" horiz-adv-x="1120" d="M106 0l137 688h-124l21 104h124l133 664h309q205 0 327 -184.5t68 -454.5l-37 -189q-61 -302 -214 -465t-371 -163h-373zM245 104h255q152 0 275.5 146.5t170.5 377.5l38 192q48 240 -38.5 385t-260.5 145h-191l-112 -558h249l-21 -104h-249z" />
<glyph unicode="&#xd1;" horiz-adv-x="1177" d="M76 0l291 1456h119l369 -1211h6l243 1211h118l-291 -1456h-118l-370 1212h-6l-242 -1212h-119zM555 1622q14 90 67.5 147.5t122.5 57.5q45 0 102.5 -55t99.5 -55q34 0 65.5 36.5t40.5 90.5l68 -21q-15 -92 -68.5 -148.5t-121.5 -56.5q-54 0 -107 54.5t-95 54.5 q-35 0 -66 -35t-39 -88z" />
<glyph unicode="&#xd2;" horiz-adv-x="1079" d="M146 612l48 239q60 303 200 464.5t344 161.5q195 0 303 -182t54 -453l-47 -239q-61 -302 -204.5 -463t-351.5 -161q-191 0 -296 180.5t-50 452.5zM264 612q-49 -246 20.5 -386t228.5 -140q146 0 257.5 141t159.5 376l48 241q48 244 -24.5 384t-236.5 140 q-141 0 -249.5 -141t-154.5 -374zM560 1848h155l119 -266h-109z" />
<glyph unicode="&#xd3;" horiz-adv-x="1079" d="M146 612l48 239q60 303 200 464.5t344 161.5q195 0 303 -182t54 -453l-47 -239q-61 -302 -204.5 -463t-351.5 -161q-191 0 -296 180.5t-50 452.5zM264 612q-49 -246 20.5 -386t228.5 -140q146 0 257.5 141t159.5 376l48 241q48 244 -24.5 384t-236.5 140 q-141 0 -249.5 -141t-154.5 -374zM706 1578l208 266h142l3 -6l-253 -260h-100z" />
<glyph unicode="&#xd4;" horiz-adv-x="1079" d="M146 612l48 239q60 303 200 464.5t344 161.5q195 0 303 -182t54 -453l-47 -239q-61 -302 -204.5 -463t-351.5 -161q-191 0 -296 180.5t-50 452.5zM264 612q-49 -246 20.5 -386t228.5 -140q146 0 257.5 141t159.5 376l48 241q48 244 -24.5 384t-236.5 140 q-141 0 -249.5 -141t-154.5 -374zM551 1622l5 21l229 222h83l143 -224l-4 -19h-104l-92 166l-159 -166h-101z" />
<glyph unicode="&#xd5;" horiz-adv-x="1079" d="M146 612l48 239q60 303 200 464.5t344 161.5q195 0 303 -182t54 -453l-47 -239q-61 -302 -204.5 -463t-351.5 -161q-191 0 -296 180.5t-50 452.5zM264 612q-49 -246 20.5 -386t228.5 -140q146 0 257.5 141t159.5 376l48 241q48 244 -24.5 384t-236.5 140 q-141 0 -249.5 -141t-154.5 -374zM510 1643q14 90 67.5 147.5t122.5 57.5q45 0 102.5 -55t99.5 -55q34 0 65.5 36.5t40.5 90.5l68 -21q-15 -92 -68.5 -148.5t-121.5 -56.5q-54 0 -107 54.5t-95 54.5q-35 0 -66 -35t-39 -88z" />
<glyph unicode="&#xd6;" horiz-adv-x="1079" d="M146 612l48 239q60 303 200 464.5t344 161.5q195 0 303 -182t54 -453l-47 -239q-61 -302 -204.5 -463t-351.5 -161q-191 0 -296 180.5t-50 452.5zM264 612q-49 -246 20.5 -386t228.5 -140q146 0 257.5 141t159.5 376l48 241q48 244 -24.5 384t-236.5 140 q-141 0 -249.5 -141t-154.5 -374zM513 1659l26 160h157l-26 -160h-157zM904 1659l26 160h156l-26 -160h-156z" />
<glyph unicode="&#xd7;" horiz-adv-x="925" d="M69 320l366 361l-216 351l95 82l212 -344l349 344l61 -82l-356 -351l223 -361l-94 -82l-219 354l-359 -354z" />
<glyph unicode="&#xd8;" horiz-adv-x="1121" d="M39 -85l133 196q-48 70 -61.5 173.5t14.5 238.5l81 408q56 282 194.5 414t343.5 132q87 0 157 -32t117 -92l104 153h96l-157 -230q26 -68 30.5 -154.5t-15.5 -190.5l-81 -408q-57 -282 -198 -413t-351 -131q-66 0 -121.5 17.5t-97.5 53.5l-92 -135h-96zM218.5 342 q0.5 -76 22.5 -120l6 -2l703 1034q-29 58 -86 86t-141 28q-142 0 -251 -111.5t-150 -322.5l-82 -411q-22 -105 -21.5 -181zM289 141q31 -29 75.5 -42t102.5 -13q146 0 256.5 111t154.5 326l82 411q12 64 16 117t0 89l-6 2z" />
<glyph unicode="&#xd9;" horiz-adv-x="1074" d="M137 437l204 1019h115l-204 -1019q-37 -183 23.5 -268.5t190.5 -85.5q125 0 226 89t136 265l204 1019h117l-204 -1019q-47 -238 -180 -348t-320 -110q-168 0 -260 119.5t-48 338.5zM559 1827h155l119 -266h-109z" />
<glyph unicode="&#xda;" horiz-adv-x="1074" d="M137 437l204 1019h115l-204 -1019q-37 -183 23.5 -268.5t190.5 -85.5q125 0 226 89t136 265l204 1019h117l-204 -1019q-47 -238 -180 -348t-320 -110q-168 0 -260 119.5t-48 338.5zM705 1557l208 266h142l3 -6l-253 -260h-100z" />
<glyph unicode="&#xdb;" horiz-adv-x="1074" d="M137 437l204 1019h115l-204 -1019q-37 -183 23.5 -268.5t190.5 -85.5q125 0 226 89t136 265l204 1019h117l-204 -1019q-47 -238 -180 -348t-320 -110q-168 0 -260 119.5t-48 338.5zM550 1601l5 21l229 222h83l143 -224l-4 -19h-104l-92 166l-159 -166h-101z" />
<glyph unicode="&#xdc;" horiz-adv-x="1074" d="M137 437l204 1019h115l-204 -1019q-37 -183 23.5 -268.5t190.5 -85.5q125 0 226 89t136 265l204 1019h117l-204 -1019q-47 -238 -180 -348t-320 -110q-168 0 -260 119.5t-48 338.5zM512 1638l26 160h157l-26 -160h-157zM903 1638l26 160h156l-26 -160h-156z" />
<glyph unicode="&#xdd;" horiz-adv-x="1017" d="M245 1456h136l177 -764l6 -1l484 765h135l-596 -924l-107 -532h-117l108 541zM670 1550l208 266h142l3 -6l-253 -260h-100z" />
<glyph unicode="&#xde;" horiz-adv-x="983" d="M67 0l291 1456h118l-61 -303h240q165 0 247 -118t47 -297q-40 -197 -159.5 -306t-300.5 -109h-240l-64 -323h-118zM270 427h239q119 0 207 93t113 216q27 136 -19 224t-176 88h-240z" />
<glyph unicode="&#xdf;" horiz-adv-x="981" d="M44 0l216 1082q43 218 148 325t248 107q109 0 172 -81t35 -223q-24 -120 -94 -222.5t-85 -177.5q-19 -95 95 -233t86 -281q-33 -165 -131.5 -241t-232.5 -76q-62 0 -130 23.5t-92 56.5l49 103q27 -31 78 -55.5t103 -24.5q87 0 153 60.5t85 153.5q22 109 -93.5 245.5 t-88.5 270.5q20 102 93 206.5t90 184.5q19 99 -13.5 153t-91.5 54q-85 0 -160 -86.5t-106 -241.5l-216 -1082h-117z" />
<glyph unicode="&#xe0;" horiz-adv-x="905" d="M72 288q31 160 148 245t292 85h177l27 133q24 122 -17 183.5t-141 61.5q-85 0 -159.5 -62.5t-91.5 -151.5l-108 1l-2 6q21 130 130.5 221.5t257.5 91.5q134 0 208 -93t41 -260l-106 -531q-13 -60 -18.5 -112t-3.5 -106h-123q2 53 5.5 89.5t10.5 74.5q-61 -80 -146 -132.5 t-176 -52.5q-120 0 -176.5 85.5t-28.5 223.5zM189 284q-19 -92 13 -144.5t111 -52.5q88 0 175.5 59t136.5 147l46 232h-181q-108 0 -195 -70.5t-106 -170.5zM399 1505h155l119 -266h-109z" />
<glyph unicode="&#xe1;" horiz-adv-x="905" d="M72 288q31 160 148 245t292 85h177l27 133q24 122 -17 183.5t-141 61.5q-85 0 -159.5 -62.5t-91.5 -151.5l-108 1l-2 6q21 130 130.5 221.5t257.5 91.5q134 0 208 -93t41 -260l-106 -531q-13 -60 -18.5 -112t-3.5 -106h-123q2 53 5.5 89.5t10.5 74.5q-61 -80 -146 -132.5 t-176 -52.5q-120 0 -176.5 85.5t-28.5 223.5zM189 284q-19 -92 13 -144.5t111 -52.5q88 0 175.5 59t136.5 147l46 232h-181q-108 0 -195 -70.5t-106 -170.5zM545 1235l208 266h142l3 -6l-253 -260h-100z" />
<glyph unicode="&#xe2;" horiz-adv-x="905" d="M72 288q31 160 148 245t292 85h177l27 133q24 122 -17 183.5t-141 61.5q-85 0 -159.5 -62.5t-91.5 -151.5l-108 1l-2 6q21 130 130.5 221.5t257.5 91.5q134 0 208 -93t41 -260l-106 -531q-13 -60 -18.5 -112t-3.5 -106h-123q2 53 5.5 89.5t10.5 74.5q-61 -80 -146 -132.5 t-176 -52.5q-120 0 -176.5 85.5t-28.5 223.5zM189 284q-19 -92 13 -144.5t111 -52.5q88 0 175.5 59t136.5 147l46 232h-181q-108 0 -195 -70.5t-106 -170.5zM390 1279l5 21l229 222h83l143 -224l-4 -19h-104l-92 166l-159 -166h-101z" />
<glyph unicode="&#xe3;" horiz-adv-x="905" d="M72 288q31 160 148 245t292 85h177l27 133q24 122 -17 183.5t-141 61.5q-85 0 -159.5 -62.5t-91.5 -151.5l-108 1l-2 6q21 130 130.5 221.5t257.5 91.5q134 0 208 -93t41 -260l-106 -531q-13 -60 -18.5 -112t-3.5 -106h-123q2 53 5.5 89.5t10.5 74.5q-61 -80 -146 -132.5 t-176 -52.5q-120 0 -176.5 85.5t-28.5 223.5zM189 284q-19 -92 13 -144.5t111 -52.5q88 0 175.5 59t136.5 147l46 232h-181q-108 0 -195 -70.5t-106 -170.5zM349 1300q14 90 67.5 147.5t122.5 57.5q45 0 102.5 -55t99.5 -55q34 0 65.5 36.5t40.5 90.5l68 -21 q-15 -92 -68.5 -148.5t-121.5 -56.5q-54 0 -107 54.5t-95 54.5q-35 0 -66 -35t-39 -88z" />
<glyph unicode="&#xe4;" horiz-adv-x="905" d="M72 288q31 160 148 245t292 85h177l27 133q24 122 -17 183.5t-141 61.5q-85 0 -159.5 -62.5t-91.5 -151.5l-108 1l-2 6q21 130 130.5 221.5t257.5 91.5q134 0 208 -93t41 -260l-106 -531q-13 -60 -18.5 -112t-3.5 -106h-123q2 53 5.5 89.5t10.5 74.5q-61 -80 -146 -132.5 t-176 -52.5q-120 0 -176.5 85.5t-28.5 223.5zM189 284q-19 -92 13 -144.5t111 -52.5q88 0 175.5 59t136.5 147l46 232h-181q-108 0 -195 -70.5t-106 -170.5zM352 1316l26 160h157l-26 -160h-157zM743 1316l26 160h156l-26 -160h-156z" />
<glyph unicode="&#xe5;" horiz-adv-x="905" d="M72 288q31 160 148 245t292 85h177l27 133q24 122 -17 183.5t-141 61.5q-85 0 -159.5 -62.5t-91.5 -151.5l-108 1l-2 6q21 130 130.5 221.5t257.5 91.5q134 0 208 -93t41 -260l-106 -531q-13 -60 -18.5 -112t-3.5 -106h-123q2 53 5.5 89.5t10.5 74.5q-61 -80 -146 -132.5 t-176 -52.5q-120 0 -176.5 85.5t-28.5 223.5zM189 284q-19 -92 13 -144.5t111 -52.5q88 0 175.5 59t136.5 147l46 232h-181q-108 0 -195 -70.5t-106 -170.5zM492 1409q14 75 67 121.5t117 46.5q57 0 93 -49.5t23 -118.5q-16 -77 -67.5 -121t-114.5 -44q-59 0 -96 47t-22 118 zM564 1409q-9 -43 8.5 -67.5t51.5 -24.5q30 0 58 26.5t37 65.5q8 43 -8.5 68.5t-49.5 25.5q-31 0 -60.5 -27.5t-36.5 -66.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1394" d="M42 294q33 168 138.5 253t278.5 85h197l18 88q28 140 -4 208t-123 68t-164 -67t-92 -165l-106 13l-2 6q25 147 129.5 233t255.5 86q86 0 147 -47.5t81 -135.5q66 88 149 135.5t172 47.5q152 0 221 -126.5t26 -339.5l-20 -101h-583l-5 -25q-41 -202 3 -314.5t183 -112.5 q77 0 147.5 33t128.5 85l25 -90q-48 -52 -129.5 -92t-192.5 -40q-101 0 -172.5 54.5t-103.5 153.5q-58 -86 -158 -147t-228 -61q-125 0 -185.5 86t-31.5 229zM160 290q-21 -103 14 -155.5t127 -52.5q66 0 149 50t128 109l58 292h-195q-104 0 -182.5 -71.5t-98.5 -171.5z M789 641l2 -5h455l6 31q31 154 -5.5 241.5t-150.5 87.5q-95 0 -180.5 -101.5t-126.5 -253.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="872" d="M94 456l27 168q34 216 150.5 347t296.5 131q139 0 219 -107t52 -281h-111q21 134 -30 208t-147 74q-127 0 -207 -107t-105 -265l-27 -168q-28 -169 15 -271t177 -102q86 0 165.5 67.5t98.5 186.5h103l2 -6q-22 -157 -135.5 -254.5t-249.5 -97.5q-171 0 -249.5 135.5 t-44.5 341.5zM210 -435l10 72q61 0 112 30.5t63 88.5q12 60 -13.5 80.5t-102.5 28.5l48 127h88l-22 -63q57 -9 85 -49t12 -122q-20 -97 -91 -148t-184 -49z" />
<glyph unicode="&#xe8;" horiz-adv-x="869" d="M91 446l29 180q34 213 160 344.5t277 131.5q157 0 230 -122.5t41 -325.5l-19 -119h-588l-14 -89q-26 -162 28 -262.5t176 -100.5q81 0 150 31.5t120 87.5l35 -85q-57 -64 -136.5 -101t-184.5 -37q-161 0 -249 132.5t-55 334.5zM243 644l2 -5h462l8 46q21 139 -23.5 225 t-151.5 86q-101 0 -187.5 -103t-109.5 -249zM372 1506h155l119 -266h-109z" />
<glyph unicode="&#xe9;" horiz-adv-x="869" d="M91 446l29 180q34 213 160 344.5t277 131.5q157 0 230 -122.5t41 -325.5l-19 -119h-588l-14 -89q-26 -162 28 -262.5t176 -100.5q81 0 150 31.5t120 87.5l35 -85q-57 -64 -136.5 -101t-184.5 -37q-161 0 -249 132.5t-55 334.5zM243 644l2 -5h462l8 46q21 139 -23.5 225 t-151.5 86q-101 0 -187.5 -103t-109.5 -249zM518 1236l208 266h142l3 -6l-253 -260h-100z" />
<glyph unicode="&#xea;" horiz-adv-x="869" d="M91 446l29 180q34 213 160 344.5t277 131.5q157 0 230 -122.5t41 -325.5l-19 -119h-588l-14 -89q-26 -162 28 -262.5t176 -100.5q81 0 150 31.5t120 87.5l35 -85q-57 -64 -136.5 -101t-184.5 -37q-161 0 -249 132.5t-55 334.5zM243 644l2 -5h462l8 46q21 139 -23.5 225 t-151.5 86q-101 0 -187.5 -103t-109.5 -249zM363 1280l5 21l229 222h83l143 -224l-4 -19h-104l-92 166l-159 -166h-101z" />
<glyph unicode="&#xeb;" horiz-adv-x="869" d="M91 446l29 180q34 213 160 344.5t277 131.5q157 0 230 -122.5t41 -325.5l-19 -119h-588l-14 -89q-26 -162 28 -262.5t176 -100.5q81 0 150 31.5t120 87.5l35 -85q-57 -64 -136.5 -101t-184.5 -37q-161 0 -249 132.5t-55 334.5zM243 644l2 -5h462l8 46q21 139 -23.5 225 t-151.5 86q-101 0 -187.5 -103t-109.5 -249zM325 1317l26 160h157l-26 -160h-157zM716 1317l26 160h156l-26 -160h-156z" />
<glyph unicode="&#xec;" horiz-adv-x="406" d="M57 0l216 1082h118l-216 -1082h-118zM152 1484h155l119 -266h-109z" />
<glyph unicode="&#xed;" horiz-adv-x="406" d="M57 0l216 1082h118l-216 -1082h-118zM296 1214l208 266h142l3 -6l-253 -260h-100z" />
<glyph unicode="&#xee;" horiz-adv-x="406" d="M57 0l216 1082h118l-216 -1082h-118zM143 1258l5 21l229 222h83l143 -224l-4 -19h-104l-92 166l-159 -166h-101z" />
<glyph unicode="&#xef;" horiz-adv-x="406" d="M57 0l216 1082h118l-216 -1082h-118zM105 1296l26 160h157l-26 -160h-157zM496 1296l26 160h156l-26 -160h-156z" />
<glyph unicode="&#xf0;" horiz-adv-x="971" d="M90 456q50 249 179 379t303 130q73 0 133.5 -39.5t90.5 -104.5l5 3q13 136 -3 236.5t-56 174.5l-275 -174l-33 76l261 165q-28 31 -61.5 57t-72.5 50l57 108q53 -29 98 -66.5t81 -83.5l228 144l34 -76l-217 -138q65 -121 78.5 -289.5t-29.5 -384.5l-18 -88 q-52 -261 -189.5 -408.5t-307.5 -147.5q-156 0 -241 139.5t-45 337.5zM209 456q-32 -157 17.5 -264t173.5 -107q110 0 213 128.5t142 321.5l18 90l11 61q-15 74 -73 123t-160 49q-115 0 -211.5 -116.5t-130.5 -285.5z" />
<glyph unicode="&#xf1;" d="M49 0l216 1082h105l-23 -161l5 -3q54 89 130.5 136.5t168.5 47.5q130 0 186 -109.5t12 -332.5l-132 -660h-119l132 659q39 197 4 266t-136 69q-81 0 -153.5 -63.5t-125.5 -166.5l-152 -764h-118zM372 1300q14 90 67.5 147.5t122.5 57.5q45 0 102.5 -55t99.5 -55 q34 0 65.5 36.5t40.5 90.5l68 -21q-15 -92 -68.5 -148.5t-121.5 -56.5q-54 0 -107 54.5t-95 54.5q-35 0 -66 -35t-39 -88z" />
<glyph unicode="&#xf2;" d="M92 461l25 159q35 219 158 350.5t298 131.5q166 0 251 -137t52 -345l-25 -159q-36 -221 -158.5 -351.5t-297.5 -130.5q-168 0 -252.5 136t-50.5 346zM210 461q-27 -167 23.5 -272.5t177.5 -105.5q118 0 206.5 109.5t114.5 268.5l25 159q26 164 -25 270t-176 106 q-120 0 -208 -109.5t-113 -266.5zM388 1505h155l119 -266h-109z" />
<glyph unicode="&#xf3;" d="M92 461l25 159q35 219 158 350.5t298 131.5q166 0 251 -137t52 -345l-25 -159q-36 -221 -158.5 -351.5t-297.5 -130.5q-168 0 -252.5 136t-50.5 346zM210 461q-27 -167 23.5 -272.5t177.5 -105.5q118 0 206.5 109.5t114.5 268.5l25 159q26 164 -25 270t-176 106 q-120 0 -208 -109.5t-113 -266.5zM534 1235l208 266h142l3 -6l-253 -260h-100z" />
<glyph unicode="&#xf4;" d="M92 461l25 159q35 219 158 350.5t298 131.5q166 0 251 -137t52 -345l-25 -159q-36 -221 -158.5 -351.5t-297.5 -130.5q-168 0 -252.5 136t-50.5 346zM210 461q-27 -167 23.5 -272.5t177.5 -105.5q118 0 206.5 109.5t114.5 268.5l25 159q26 164 -25 270t-176 106 q-120 0 -208 -109.5t-113 -266.5zM379 1279l5 21l229 222h83l143 -224l-4 -19h-104l-92 166l-159 -166h-101z" />
<glyph unicode="&#xf5;" d="M92 461l25 159q35 219 158 350.5t298 131.5q166 0 251 -137t52 -345l-25 -159q-36 -221 -158.5 -351.5t-297.5 -130.5q-168 0 -252.5 136t-50.5 346zM210 461q-27 -167 23.5 -272.5t177.5 -105.5q118 0 206.5 109.5t114.5 268.5l25 159q26 164 -25 270t-176 106 q-120 0 -208 -109.5t-113 -266.5zM338 1300q14 90 67.5 147.5t122.5 57.5q45 0 102.5 -55t99.5 -55q34 0 65.5 36.5t40.5 90.5l68 -21q-15 -92 -68.5 -148.5t-121.5 -56.5q-54 0 -107 54.5t-95 54.5q-35 0 -66 -35t-39 -88z" />
<glyph unicode="&#xf6;" d="M92 461l25 159q35 219 158 350.5t298 131.5q166 0 251 -137t52 -345l-25 -159q-36 -221 -158.5 -351.5t-297.5 -130.5q-168 0 -252.5 136t-50.5 346zM210 461q-27 -167 23.5 -272.5t177.5 -105.5q118 0 206.5 109.5t114.5 268.5l25 159q26 164 -25 270t-176 106 q-120 0 -208 -109.5t-113 -266.5zM341 1316l26 160h157l-26 -160h-157zM732 1316l26 160h156l-26 -160h-156z" />
<glyph unicode="&#xf7;" horiz-adv-x="948" d="M113 641l24 120h787l-24 -120h-787zM360 210l33 163h129l-33 -163h-129zM520 1009l32 162h129l-32 -162h-129z" />
<glyph unicode="&#xf8;" horiz-adv-x="935" d="M59 -140l121 207q-62 64 -85.5 166.5t-2.5 227.5l25 159q35 219 158 350.5t298 131.5q52 0 97 -15t83 -43l99 170h85l-131 -223q50 -66 68.5 -162t1.5 -209l-25 -159q-36 -221 -158.5 -351.5t-297.5 -130.5q-46 0 -85.5 10.5t-73.5 31.5l-94 -161h-83zM203 299 q8 -73 38 -117l6 -1l447 763q-27 25 -61.5 38.5t-76.5 13.5q-120 0 -208 -109.5t-113 -266.5l-25 -159q-15 -89 -7 -162zM293 117q23 -17 52.5 -25.5t65.5 -8.5q118 0 206.5 109.5t114.5 268.5l25 159q12 74 7.5 138.5t-24.5 107.5l-6 1z" />
<glyph unicode="&#xf9;" d="M137 454l125 628h118l-126 -630q-42 -210 -10.5 -288t126.5 -78q92 0 165.5 58.5t122.5 157.5l156 780h118l-216 -1082h-106l23 150l-5 3q-53 -85 -128 -129.5t-167 -44.5q-129 0 -187 117.5t-9 357.5zM420 1484h155l119 -266h-109z" />
<glyph unicode="&#xfa;" d="M137 454l125 628h118l-126 -630q-42 -210 -10.5 -288t126.5 -78q92 0 165.5 58.5t122.5 157.5l156 780h118l-216 -1082h-106l23 150l-5 3q-53 -85 -128 -129.5t-167 -44.5q-129 0 -187 117.5t-9 357.5zM566 1214l208 266h142l3 -6l-253 -260h-100z" />
<glyph unicode="&#xfb;" d="M137 454l125 628h118l-126 -630q-42 -210 -10.5 -288t126.5 -78q92 0 165.5 58.5t122.5 157.5l156 780h118l-216 -1082h-106l23 150l-5 3q-53 -85 -128 -129.5t-167 -44.5q-129 0 -187 117.5t-9 357.5zM411 1258l5 21l229 222h83l143 -224l-4 -19h-104l-92 166l-159 -166 h-101z" />
<glyph unicode="&#xfc;" d="M137 454l125 628h118l-126 -630q-42 -210 -10.5 -288t126.5 -78q92 0 165.5 58.5t122.5 157.5l156 780h118l-216 -1082h-106l23 150l-5 3q-53 -85 -128 -129.5t-167 -44.5q-129 0 -187 117.5t-9 357.5zM373 1296l26 160h157l-26 -160h-157zM764 1296l26 160h156l-26 -160 h-156z" />
<glyph unicode="&#xfd;" horiz-adv-x="827" d="M-76 -423l34 103q9 -2 31 -4.5t32 -2.5q54 0 103 58.5t87 139.5l72 144l-113 1067h131l58 -784l5 -104l6 -1l418 889h131l-618 -1255q-53 -107 -124 -185.5t-173 -78.5q-16 0 -42 5t-38 9zM513 1214l208 266h142l3 -6l-253 -260h-100z" />
<glyph unicode="&#xfe;" horiz-adv-x="947" d="M-29 -416l83 416l16 83l200 999l96 478h118l-119 -593l5 -4q49 66 115.5 102.5t144.5 36.5q147 0 213 -168.5t16 -422.5l-4 -21q-52 -258 -155 -384.5t-260 -126.5q-82 0 -145 37t-99 106l-24 -122l-83 -416h-118zM221 247q19 -77 71.5 -120.5t136.5 -43.5 q111 0 189.5 108.5t116.5 298.5l4 21q43 217 2 350t-163 133q-76 0 -137.5 -56.5t-110.5 -146.5z" />
<glyph unicode="&#xff;" horiz-adv-x="827" d="M-76 -423l34 103q9 -2 31 -4.5t32 -2.5q54 0 103 58.5t87 139.5l72 144l-113 1067h131l58 -784l5 -104l6 -1l418 889h131l-618 -1255q-53 -107 -124 -185.5t-173 -78.5q-16 0 -42 5t-38 9zM320 1296l26 160h157l-26 -160h-157zM711 1296l26 160h156l-26 -160h-156z" />
<glyph unicode="&#x152;" horiz-adv-x="1551" d="M129 576l61 304q56 282 204 439.5t345 157.5q52 0 113.5 -6t122.5 -15h687l-21 -106h-618l-109 -543h543l-20 -104h-544l-119 -599h624l-21 -104h-693q-78 -10 -133 -15.5t-110 -5.5q-180 0 -272 168.5t-40 428.5zM246 576q-49 -242 10 -367.5t206 -125.5q45 0 95 3.5 t97 11.5l252 1260q-43 7 -90.5 11t-96.5 4q-135 0 -251 -133.5t-161 -357.5z" />
<glyph unicode="&#x153;" horiz-adv-x="1508" d="M109 524l6 32q51 255 181 400.5t306 145.5q102 0 172.5 -65t99.5 -179q71 116 165.5 180t193.5 64q153 0 222.5 -128t28.5 -336l-21 -103h-587l-5 -25q-39 -195 7.5 -311t168.5 -116q79 0 150 31.5t125 87.5l30 -85q-58 -63 -139.5 -100.5t-186.5 -37.5q-98 0 -170 64 t-101 175q-70 -116 -166 -177.5t-209 -61.5q-163 0 -241 154.5t-30 390.5zM227 524q-40 -200 3 -320.5t171 -120.5q115 0 213 129t135 312l6 32q39 196 -4.5 318t-169.5 122q-115 0 -213.5 -130t-134.5 -310zM906 644l2 -5h458l6 30q29 149 -11.5 238t-148.5 89 q-88 0 -176 -102t-130 -250z" />
<glyph unicode="&#x178;" horiz-adv-x="1017" d="M245 1456h136l177 -764l6 -1l484 765h135l-596 -924l-107 -532h-117l108 541zM477 1631l26 160h157l-26 -160h-157zM868 1631l26 160h156l-26 -160h-156z" />
<glyph unicode="&#x2c6;" horiz-adv-x="752" d="M309 1252l5 21l229 222h83l143 -224l-4 -19h-104l-92 166l-159 -166h-101z" />
<glyph unicode="&#x2dc;" horiz-adv-x="758" d="M239 1280q14 90 67.5 147.5t122.5 57.5q45 0 102.5 -55t99.5 -55q34 0 65.5 36.5t40.5 90.5l68 -21q-15 -92 -68.5 -148.5t-121.5 -56.5q-54 0 -107 54.5t-95 54.5q-35 0 -66 -35t-39 -88z" />
<glyph unicode="&#x2000;" horiz-adv-x="949" />
<glyph unicode="&#x2001;" horiz-adv-x="1899" />
<glyph unicode="&#x2002;" horiz-adv-x="949" />
<glyph unicode="&#x2003;" horiz-adv-x="1899" />
<glyph unicode="&#x2004;" horiz-adv-x="633" />
<glyph unicode="&#x2005;" horiz-adv-x="474" />
<glyph unicode="&#x2006;" horiz-adv-x="316" />
<glyph unicode="&#x2007;" horiz-adv-x="316" />
<glyph unicode="&#x2008;" horiz-adv-x="237" />
<glyph unicode="&#x2009;" horiz-adv-x="379" />
<glyph unicode="&#x200a;" horiz-adv-x="105" />
<glyph unicode="&#x2010;" horiz-adv-x="483" d="M78 568l20 104h380l-20 -104h-380z" />
<glyph unicode="&#x2011;" horiz-adv-x="483" d="M78 568l20 104h380l-20 -104h-380z" />
<glyph unicode="&#x2012;" horiz-adv-x="483" d="M78 568l20 104h380l-20 -104h-380z" />
<glyph unicode="&#x2013;" horiz-adv-x="1145" d="M218 684l27 104h856l-28 -104h-855z" />
<glyph unicode="&#x2014;" horiz-adv-x="1341" d="M214 684l34 104h1053l-34 -104h-1053z" />
<glyph unicode="&#x2018;" horiz-adv-x="332" d="M211 1071l35 175l166 314h64l-112 -315l-35 -174h-118z" />
<glyph unicode="&#x2019;" horiz-adv-x="332" d="M211 1071l109 306l37 183h119l-36 -180l-165 -309h-64z" />
<glyph unicode="&#x201a;" horiz-adv-x="326" d="M-46 -213l97 266l41 205h119l-39 -195l-154 -276h-64z" />
<glyph unicode="&#x201c;" horiz-adv-x="551" d="M211 1071l35 175l166 314h64l-112 -315l-35 -174h-118zM430 1071l35 175l166 314h64l-112 -315l-35 -174h-118z" />
<glyph unicode="&#x201d;" horiz-adv-x="556" d="M211 1071l109 306l37 183h119l-36 -180l-165 -309h-64zM435 1071l109 306l37 183h119l-36 -180l-165 -309h-64z" />
<glyph unicode="&#x201e;" horiz-adv-x="537" d="M-44 -203l103 296l36 181h119l-35 -175l-159 -302h-64zM166 -203l103 299l36 178h119l-35 -175l-159 -302h-64z" />
<glyph unicode="&#x2022;" horiz-adv-x="588" d="M191 717l14 66q16 83 68 131t126 48q69 0 104.5 -51t21.5 -128l-14 -66q-17 -84 -69 -130.5t-126 -46.5q-69 0 -104.5 50t-20.5 127z" />
<glyph unicode="&#x2026;" horiz-adv-x="1084" d="M69 0l33 166h127l-33 -166h-127zM403 0l33 166h127l-33 -166h-127zM720 0l33 166h127l-33 -166h-127z" />
<glyph unicode="&#x202f;" horiz-adv-x="379" />
<glyph unicode="&#x2039;" horiz-adv-x="511" d="M123 546l1 6l3 13l309 379h96l-289 -389l133 -389h-96z" />
<glyph unicode="&#x203a;" horiz-adv-x="511" d="M35 166l288 389l-131 394h96l156 -384l-2 -6h1l-3 -13l-309 -380h-96z" />
<glyph unicode="&#x205f;" horiz-adv-x="474" />
<glyph unicode="&#x20ac;" horiz-adv-x="879" d="M98 531l18 104h126l39 167h-126l18 104h126l7 36q52 260 186 397.5t315 137.5q42 0 88 -8.5t92 -22.5l-33 -110q-38 16 -80.5 25.5t-87.5 9.5q-120 0 -221.5 -117t-139.5 -310l-8 -38h413l-18 -104h-413l-39 -167h413l-18 -104h-413l-3 -17q-42 -210 9.5 -320.5 t181.5 -110.5q43 0 90.5 8.5t89.5 25.5l-10 -107q-47 -15 -95 -23t-96 -8q-165 0 -251 147.5t-37 387.5l3 17h-126z" />
<glyph unicode="&#x2122;" horiz-adv-x="1030" d="M283 1386l14 70h304l-14 -70h-119l-93 -467h-63l93 467h-122zM556 919l107 537h80l49 -418l6 -1l215 419h76l-107 -537h-63l72 364l-6 2l-194 -366h-40l-51 378h-6l-75 -378h-63z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="980" d="M119 0l196 981h-139l20 101h139l32 156q35 175 117.5 259t206.5 84q25 0 52 -5.5t52 -14.5l-34 -101q-17 6 -36 9.5t-43 3.5q-70 0 -122.5 -62t-74.5 -173l-32 -156h193l-20 -101h-193l-196 -981h-118zM631 0l312 1560h118l-312 -1560h-118z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1478" d="M119 0l196 981h-139l20 101h139l32 156q35 175 117.5 259t206.5 84q25 0 52 -5.5t52 -14.5l-34 -101q-17 6 -36 9.5t-43 3.5q-70 0 -122.5 -62t-74.5 -173l-32 -156h193l-20 -101h-193l-196 -981h-118zM670 0l196 981h-140l20 101h140l28 136q36 185 131 274t237 89 q51 0 104 -15.5t104 -44.5l-40 -105q-38 24 -82 38t-99 14q-89 0 -151.5 -65t-85.5 -185l-27 -136h186l-20 -101h-187l-196 -981h-118zM1129 0l216 1082h119l-216 -1082h-119z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1550" d="M119 0l196 981h-139l20 101h139l32 156q35 175 117.5 259t206.5 84q25 0 52 -5.5t52 -14.5l-34 -101q-17 6 -36 9.5t-43 3.5q-70 0 -122.5 -62t-74.5 -173l-32 -156h193l-20 -101h-193l-196 -981h-118zM689 0l196 981h-139l20 101h139l32 156q35 175 117.5 259t206.5 84 q25 0 52 -5.5t52 -14.5l-34 -101q-17 6 -36 9.5t-43 3.5q-70 0 -122.5 -62t-74.5 -173l-32 -156h193l-20 -101h-193l-196 -981h-118zM1201 0l312 1560h118l-312 -1560h-118z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-18" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="224" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="61" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="234" />
<hkern u1="F" u2="&#x201e;" k="234" />
<hkern u1="F" u2="&#x201a;" k="234" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="264" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="234" />
<hkern u1="F" u2="&#x2c;" k="234" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="92" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="97" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="43" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="80" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="114" />
<hkern u1="T" u2="&#xc6;" k="179" />
<hkern u1="T" u2="&#xbb;" k="216" />
<hkern u1="T" u2="&#xab;" k="328" />
<hkern u1="T" u2="w" k="57" />
<hkern u1="T" u2="r" k="75" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-32" />
<hkern u1="r" u2="f" k="-15" />
<hkern u1="t" u2="&#xf6;" k="20" />
<hkern u1="t" u2="&#xf5;" k="20" />
<hkern u1="t" u2="&#xf4;" k="20" />
<hkern u1="t" u2="&#xf3;" k="20" />
<hkern u1="t" u2="&#xf2;" k="20" />
<hkern u1="t" u2="o" k="20" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="61" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="61" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="61" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="61" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="61" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="61" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="129" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="87" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="69" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="94" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="m,n,p,ntilde" k="23" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
<hkern g1="L" g2="T" k="275" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
<hkern g1="L" g2="V" k="175" />
<hkern g1="L" g2="W" k="143" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
<hkern g1="P" g2="X" k="31" />
<hkern g1="P" g2="Z" k="26" />
<hkern g1="P" g2="J" k="200" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
<hkern g1="T" g2="m,n,p,ntilde" k="109" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
<hkern g1="T" g2="s" k="116" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
<hkern g1="T" g2="J" k="240" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 77 KiB

View File

@ -0,0 +1,644 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="roboto_condensedregular" horiz-adv-x="995" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="446" />
<glyph unicode="&#xfb01;" horiz-adv-x="1025" d="M29 937v145h141v111q0 186 97.5 287t271.5 101q62 0 124.5 -15.5t135.5 -44.5l-31 -158q-50 22 -102 35.5t-113 13.5q-92 0 -136 -55t-44 -164v-111h183v-145h-183v-937h-203v937h-141zM692 0v1082h203v-1082h-203z" />
<glyph horiz-adv-x="0" />
<glyph unicode="&#xd;" horiz-adv-x="446" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="16" />
<glyph unicode="&#x9;" horiz-adv-x="16" />
<glyph unicode=" " horiz-adv-x="446" />
<glyph unicode="&#x09;" horiz-adv-x="446" />
<glyph unicode="&#xa0;" horiz-adv-x="446" />
<glyph unicode="!" horiz-adv-x="474" d="M136 0v204h204v-204h-204zM136 485v971h203v-971h-203z" />
<glyph unicode="&#x22;" horiz-adv-x="589" d="M83 1057l1 245v258h152v-249l-56 -254h-97zM354 1057l1 252v251h152v-249l-57 -254h-96z" />
<glyph unicode="#" horiz-adv-x="1069" d="M57 410v130h217l58 368h-211v132h231l66 416h138l-65 -416h192l66 416h138l-65 -416h179v-132h-200l-57 -368h194v-130h-214l-64 -410h-139l64 410h-192l-64 -410h-139l64 410h-197zM413 540h192l58 368h-193z" />
<glyph unicode="$" horiz-adv-x="1000" d="M93 432h202q0 -158 60.5 -226t149.5 -68q93 0 145.5 64t52.5 168q0 96 -47 158.5t-159 116.5q-179 70 -268 167.5t-89 269.5q0 163 86 267.5t233 123.5v212h131v-214q145 -24 228 -142.5t83 -314.5h-203q0 136 -48.5 219.5t-131.5 83.5q-87 0 -131.5 -65t-44.5 -168 q0 -98 45 -158t164 -117q179 -73 266.5 -169.5t87.5 -267.5q0 -168 -88.5 -269t-242.5 -120v-193h-130v193q-153 17 -252 126t-99 323z" />
<glyph unicode="%" horiz-adv-x="1350" d="M97 1099v77q0 128 72.5 214.5t197.5 86.5q126 0 198.5 -86.5t72.5 -214.5v-77q0 -128 -72 -213.5t-197 -85.5q-126 0 -199 85.5t-73 213.5zM240 1099q0 -74 33.5 -126.5t95.5 -52.5q60 0 93 52t33 127v77q0 75 -33.5 128t-94.5 53t-94 -53t-33 -128v-77zM309 176 l601 1138l104 -63l-601 -1138zM720 279v78q0 127 73 213.5t198 86.5q126 0 198.5 -86t72.5 -214v-78q0 -129 -72.5 -214.5t-196.5 -85.5q-126 0 -199.5 86t-73.5 214zM864 279q0 -74 34.5 -127t94.5 -53q63 0 94.5 51.5t31.5 128.5v78q0 76 -33.5 128t-94.5 52t-94 -52 t-33 -128v-78z" />
<glyph unicode="&#x26;" horiz-adv-x="1172" d="M67 383q0 121 62.5 213.5t185.5 188.5q-68 98 -101 177.5t-33 162.5q0 166 89.5 259t242.5 93q139 0 225 -89.5t86 -218.5q0 -96 -44 -168t-125 -137l-104 -86l293 -393l6 1q31 58 48.5 131.5t17.5 157.5h165q0 -131 -32 -240t-97 -195l179 -240h-237l-77 104 q-75 -61 -158 -93t-175 -32q-191 0 -304 111.5t-113 292.5zM272 388q0 -110 58 -182.5t160 -72.5q62 0 123 23.5t114 68.5l-320 433l-23 -19q-67 -72 -89.5 -134.5t-22.5 -116.5zM373 1127q0 -51 22.5 -105.5t66.5 -120.5l104 82q50 40 68.5 84t18.5 97q0 64 -38 110.5 t-102 46.5q-67 0 -103.5 -55.5t-36.5 -138.5z" />
<glyph unicode="'" horiz-adv-x="319" d="M82 1055l1 266v239h150v-226l-55 -279h-96z" />
<glyph unicode="(" horiz-adv-x="602" d="M117 574v16q0 379 130.5 660.5t283.5 372.5h6l37 -108q-112 -102 -193.5 -344t-81.5 -579v-20q0 -337 81.5 -578t193.5 -349l-37 -102h-6q-154 92 -284 369.5t-130 661.5z" />
<glyph unicode=")" horiz-adv-x="606" d="M25 -355q110 102 192.5 346t82.5 581v20q0 333 -84.5 578.5t-190.5 350.5l38 102h6q154 -91 287.5 -374t133.5 -659v-16q0 -380 -133 -660t-288 -371h-6z" />
<glyph unicode="*" horiz-adv-x="806" d="M32 1080l44 140l268 -119l-11 355h145l-12 -361l262 121l44 -141l-274 -100l179 -278l-118 -87l-162 295l-159 -289l-118 84l181 284z" />
<glyph unicode="+" horiz-adv-x="1023" d="M67 600v174h342v432h198v-432h342v-174h-342v-454h-198v454h-342z" />
<glyph unicode="," horiz-adv-x="397" d="M53 -271l59 302v183h189v-190l-127 -295h-121z" />
<glyph unicode="-" horiz-adv-x="598" d="M73 542v155h446v-155h-446z" />
<glyph unicode="." horiz-adv-x="497" d="M137 0v203h204v-203h-204z" />
<glyph unicode="/" horiz-adv-x="693" d="M9 -125l482 1581h159l-482 -1581h-159z" />
<glyph unicode="0" horiz-adv-x="1002" d="M96 563v329q0 281 109 433t295 152t295.5 -152t109.5 -433v-329q0 -283 -108.5 -433.5t-294.5 -150.5q-187 0 -296.5 151t-109.5 433zM299 535q0 -198 52.5 -300t150.5 -102q97 0 149 101.5t52 300.5v386q0 198 -52.5 299t-150.5 101t-149.5 -101.5t-51.5 -298.5v-386z " />
<glyph unicode="1" horiz-adv-x="1000" d="M143 1234v131l487 92v-1459h-202v1255z" />
<glyph unicode="2" horiz-adv-x="1000" d="M82 1028q-4 189 107 319t304 130q178 0 281.5 -112.5t103.5 -297.5q0 -125 -63.5 -246.5t-184.5 -271.5l-275 -395h563v-154h-817v135l400 526q97 137 135.5 226.5t38.5 173.5q0 115 -48.5 187.5t-133.5 72.5q-107 0 -160.5 -80t-53.5 -218h-195z" />
<glyph unicode="3" horiz-adv-x="1000" d="M79 386l3 6h194q0 -115 57 -187t150 -72q98 0 153.5 69.5t55.5 197.5q0 136 -53 200.5t-160 64.5h-139v153h139q101 0 147.5 67.5t46.5 182.5q0 118 -48.5 185.5t-141.5 67.5q-85 0 -139.5 -67.5t-54.5 -177.5h-193l-3 6q-4 169 106 282t280 113q180 0 288 -107.5 t108 -303.5q0 -97 -51 -185.5t-145 -134.5q110 -41 163 -132.5t53 -211.5q0 -198 -116.5 -310.5t-298.5 -112.5q-170 0 -287.5 107.5t-113.5 299.5z" />
<glyph unicode="4" horiz-adv-x="1000" d="M56 456l529 1000h208v-959h156v-155h-156v-342h-202v342h-529zM256 497h335v665l-6 1l-20 -42z" />
<glyph unicode="5" horiz-adv-x="1000" d="M121 382l2 5l191 4q0 -124 52.5 -191t138.5 -67q99 0 149 87.5t50 242.5q0 146 -52 234.5t-149 88.5q-86 0 -128.5 -37.5t-59.5 -111.5l-175 17l70 802h653v-167h-484l-38 -432q37 38 86 62.5t112 26.5q172 2 270 -127.5t98 -353.5q0 -217 -102.5 -351.5t-299.5 -134.5 q-164 0 -276 104t-108 299z" />
<glyph unicode="6" horiz-adv-x="1000" d="M107 558v316q0 271 135 437t339 166q66 0 127 -17t111 -46l-39 -149q-45 27 -91 41t-107 14q-122 0 -197.5 -117.5t-75.5 -314.5v-41q50 57 118 88.5t149 31.5q165 0 260.5 -136t95.5 -349q0 -220 -110 -361.5t-288 -141.5q-187 0 -307 153t-120 426zM309 546 q0 -196 63 -305t162 -109q90 0 143 101.5t53 248.5q0 148 -54.5 242t-149.5 94q-77 0 -132.5 -37t-84.5 -101v-134z" />
<glyph unicode="7" horiz-adv-x="1000" d="M66 1300v156h850v-156q-209 -278 -286.5 -532.5t-109.5 -628.5l-13 -139h-202l12 139q33 352 131.5 634t270.5 527h-653z" />
<glyph unicode="8" horiz-adv-x="1000" d="M89 392q0 123 63 216.5t171 138.5q-94 42 -148 128.5t-54 200.5q0 191 104 296t274 105q169 0 275 -105t106 -296q0 -115 -55 -201.5t-149 -128.5q107 -45 170.5 -138.5t63.5 -215.5q0 -200 -113.5 -306.5t-295.5 -106.5q-185 0 -298.5 106.5t-113.5 306.5zM292 399 q0 -125 56.5 -195.5t152.5 -70.5q91 0 149 71t58 195q0 120 -59 195.5t-150 75.5q-92 0 -149.5 -75t-57.5 -196zM324 1071q0 -113 48 -180t129 -67q79 0 127 67t48 180q0 110 -49 180t-128 70q-80 0 -127.5 -67.5t-47.5 -182.5z" />
<glyph unicode="9" horiz-adv-x="1000" d="M78 957q0 223 114.5 371.5t283.5 148.5q189 0 303.5 -144t114.5 -415v-380q0 -266 -126 -412.5t-325 -146.5q-62 0 -130 15.5t-126 44.5l27 148q53 -29 107.5 -41.5t121.5 -12.5q111 0 179.5 102.5t68.5 295.5v71q-42 -71 -103 -107.5t-133 -36.5q-174 0 -275.5 134.5 t-101.5 364.5zM281 957q0 -154 51.5 -250.5t143.5 -96.5q78 0 132.5 44.5t82.5 114.5v169q0 188 -56 285.5t-156 97.5q-85 0 -141.5 -105t-56.5 -259z" />
<glyph unicode=":" horiz-adv-x="476" d="M137 0v203h204v-203h-204zM137 878v203h204v-203h-204z" />
<glyph unicode=";" horiz-adv-x="470" d="M91 -271l59 302v183h189v-190l-127 -295h-121zM134 879v203h204v-203h-204z" />
<glyph unicode="&#x3c;" horiz-adv-x="898" d="M61 477v151l711 374v-192l-496 -243l-64 -14v-6l64 -14l496 -240v-192z" />
<glyph unicode="=" horiz-adv-x="1003" d="M130 390v160h732v-160h-732zM130 808v160h732v-160h-732z" />
<glyph unicode="&#x3e;" horiz-adv-x="916" d="M114 101v189l516 247l63 13v6l-63 15l-516 243v188l731 -374v-151z" />
<glyph unicode="?" horiz-adv-x="857" d="M49 1109q-3 173 100.5 270.5t266.5 97.5q177 0 277.5 -105t100.5 -286q0 -130 -60.5 -236t-160.5 -209q-49 -51 -61.5 -97.5t-12.5 -135.5h-203q1 133 28 191t121 151q71 90 108.5 162.5t37.5 170.5q0 110 -45.5 171.5t-129.5 61.5q-70 0 -120 -56.5t-50 -156.5h-195z M295 0v198h208v-198h-208z" />
<glyph unicode="@" horiz-adv-x="1635" d="M89 478q16 425 223 684.5t544 259.5q340 0 520 -245t166 -668q-8 -216 -109.5 -373t-301.5 -157q-69 0 -118 45t-68 127q-43 -86 -104 -128.5t-142 -42.5q-119 0 -182.5 120t-47.5 316q21 255 125 409.5t252 154.5q96 0 154.5 -26.5t128.5 -80.5l-3 -3h5l-46 -577 q-7 -115 17 -157.5t63 -42.5q108 0 172.5 117t72.5 299q15 376 -124.5 586t-433.5 210q-272 0 -438.5 -227t-178.5 -600q-16 -370 132.5 -590.5t425.5 -220.5q77 0 157 21t136 55l32 -107q-59 -42 -150.5 -65.5t-178.5 -23.5q-343 0 -529.5 249.5t-170.5 681.5zM637 416 q-10 -142 18.5 -221.5t92.5 -79.5q56 0 102 31t83 112v14.5t2 20.5l42 536q-24 11 -49 17.5t-51 6.5q-106 0 -164.5 -109t-75.5 -328z" />
<glyph unicode="A" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM386 529h371l-182 636h-6z" />
<glyph unicode="B" horiz-adv-x="1122" d="M141 0v1456h406q206 0 321.5 -98t115.5 -294q0 -104 -52.5 -183.5t-145.5 -116.5q118 -26 181.5 -123.5t63.5 -228.5q0 -201 -113.5 -306.5t-313.5 -105.5h-463zM344 154h260q108 0 166.5 66.5t58.5 190.5q0 123 -50 195.5t-154 72.5h-281v-525zM344 825h223 q100 0 157 60.5t57 174.5q0 120 -59.5 180t-174.5 60h-203v-475z" />
<glyph unicode="C" horiz-adv-x="1084" d="M94 525v404q0 258 126.5 403t337.5 145q214 0 329 -117t118 -342l-3 -6h-192q-3 159 -63 234t-189 75q-125 0 -194 -101t-69 -288v-407q0 -190 70.5 -291t198.5 -101q126 0 184.5 73.5t60.5 235.5h193l3 -6q-1 -218 -116 -337.5t-325 -119.5q-214 0 -342 144t-128 402z " />
<glyph unicode="D" horiz-adv-x="1154" d="M141 0v1456h400q232 0 378.5 -175t146.5 -450v-207q0 -276 -146.5 -450t-378.5 -174h-400zM344 154h190q153 0 241.5 131t88.5 339v209q0 206 -88.5 336.5t-241.5 130.5h-190v-1146z" />
<glyph unicode="E" horiz-adv-x="1018" d="M141 0v1456h823v-156h-620v-469h540v-155h-540v-522h626v-154h-829z" />
<glyph unicode="F" horiz-adv-x="1020" d="M141 0v1456h831v-156h-628v-498h541v-155h-541v-647h-203z" />
<glyph unicode="G" horiz-adv-x="1198" d="M102 514v432q0 253 133 392t353 139q223 0 341 -112.5t126 -315.5l-2 -6h-192q-5 136 -71.5 207t-198.5 71q-133 0 -210 -95.5t-77 -277.5v-434q0 -186 82.5 -283.5t224.5 -97.5q104 0 161.5 35.5t85.5 90.5v331h-249v147h452v-530q-50 -88 -162.5 -158t-287.5 -70 q-229 0 -369 139t-140 396z" />
<glyph unicode="H" horiz-adv-x="1246" d="M141 0v1456h203v-659h558v659h202v-1456h-202v642h-558v-642h-203z" />
<glyph unicode="I" horiz-adv-x="513" d="M155 0v1456h202v-1456h-202z" />
<glyph unicode="J" horiz-adv-x="989" d="M63 402l3 6h195q0 -138 53.5 -206.5t146.5 -68.5q82 0 136 77t54 207v1039h202v-1039q0 -201 -110 -319.5t-282 -118.5q-185 0 -293 107q-105 104 -105 301v15z" />
<glyph unicode="K" horiz-adv-x="1131" d="M141 0v1456h203v-640h121l385 640h242l-458 -691l493 -765h-248l-396 653h-139v-653h-203z" />
<glyph unicode="L" horiz-adv-x="951" d="M141 0v1456h203v-1302h568v-154h-771z" />
<glyph unicode="M" horiz-adv-x="1483" d="M136 0v1456h261l340 -1188h6l341 1188h262v-1456h-201v559l18 560l-6 1l-350 -1120h-134l-349 1119l-6 -1l19 -559v-559h-201z" />
<glyph unicode="N" horiz-adv-x="1247" d="M141 0v1456h203l552 -1080l6 2v1078h202v-1456h-202l-552 1083l-6 -2v-1081h-203z" />
<glyph unicode="O" horiz-adv-x="1160" d="M91 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -259 -134 -403.5t-359 -144.5q-222 0 -353 144.5t-131 403.5zM292 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403q0 190 -76 288.5t-215 98.5q-137 0 -210 -98.5 t-73 -288.5v-403z" />
<glyph unicode="P" horiz-adv-x="1132" d="M141 0v1456h478q204 0 320 -121.5t116 -319.5q0 -199 -116 -320t-320 -121h-275v-574h-203zM344 730h275q115 0 174 80.5t59 202.5q0 124 -58.5 205.5t-174.5 81.5h-275v-570z" />
<glyph unicode="Q" horiz-adv-x="1212" d="M93 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -129 -35 -231t-99 -172l220 -234l-132 -111l-226 245q-50 -23 -105.5 -34t-115.5 -11q-222 0 -353 144.5t-131 403.5zM294 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403 q0 190 -76 288.5t-215 98.5q-137 0 -210 -98.5t-73 -288.5v-403z" />
<glyph unicode="R" horiz-adv-x="1162" d="M141 0v1455h453q207 0 320 -107t113 -307q0 -114 -52.5 -199t-151.5 -133q109 -37 157.5 -125.5t48.5 -218.5v-127q0 -67 13.5 -124.5t46.5 -90.5v-23h-209q-34 33 -43.5 99.5t-9.5 140.5v123q0 122 -55.5 193t-152.5 71h-275v-627h-203zM344 782h240q123 0 181.5 66.5 t58.5 188.5q0 125 -57 194t-173 69h-250v-518z" />
<glyph unicode="S" horiz-adv-x="1087" d="M83 420l2 6h195q0 -150 78.5 -222t205.5 -72q114 0 178.5 63.5t64.5 170.5q0 103 -58 169t-203 116q-208 63 -319 164.5t-111 268.5q0 172 123.5 282.5t317.5 110.5q201 1 325 -127q120 -124 120 -297v-11l-2 -6h-195q0 127 -65.5 206.5t-184.5 79.5q-113 0 -174.5 -66.5 t-61.5 -169.5q0 -93 66 -156.5t218 -115.5q199 -62 303 -169t104 -277q0 -179 -123 -284t-323 -105q-194 -1 -340 115q-141 112 -141 312v14z" />
<glyph unicode="T" horiz-adv-x="1018" d="M35 1300v156h949v-156h-374v-1300h-203v1300h-372z" />
<glyph unicode="U" horiz-adv-x="1160" d="M117 447v1009h201v-1009q0 -156 70 -235t189 -79q124 0 195 76t71 238v1009h202v-1009q0 -226 -129.5 -347t-338.5 -121q-206 0 -333 121t-127 347z" />
<glyph unicode="V" horiz-adv-x="1119" d="M24 1456h216l296 -1134l20 -85h6l21 84l297 1135h215l-438 -1456h-196z" />
<glyph unicode="W" horiz-adv-x="1551" d="M41 1456h199l197 -1038h6l248 1038h161l251 -1038h6l196 1038h199l-294 -1456h-187l-247 1034h-6l-249 -1034h-187z" />
<glyph unicode="X" horiz-adv-x="1112" d="M48 0l388 735l-378 721h237l258 -568h6l260 568h239l-379 -721l395 -735h-243l-269 582h-6l-268 -582h-240z" />
<glyph unicode="Y" horiz-adv-x="1100" d="M23 1456h227l297 -707h6l298 707h225l-428 -932v-524h-202v537z" />
<glyph unicode="Z" horiz-adv-x="1010" d="M79 0v125l621 1176h-617v155h836v-121l-624 -1181h644v-154h-860z" />
<glyph unicode="[" horiz-adv-x="503" d="M127 -319v1991h353v-153h-148v-1686h148v-152h-353z" />
<glyph unicode="\" horiz-adv-x="736" d="M25 1456h197l515 -1581h-197z" />
<glyph unicode="]" horiz-adv-x="503" d="M17 -167h150v1686h-150v153h355v-1991h-355v152z" />
<glyph unicode="^" horiz-adv-x="758" d="M53 729l253 727h145l252 -727h-170l-143 444l-10 48h-6l-10 -48l-140 -444h-171z" />
<glyph unicode="_" horiz-adv-x="793" d="M10 0h772v-152h-772v152z" />
<glyph unicode="`" horiz-adv-x="591" d="M80 1472l2 5h227l169 -266h-170z" />
<glyph unicode="a" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6v11q0 117 100 211q105 98 271 98q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221h-154q-93 0 -144.5 -59.5t-51.5 -145.5z" />
<glyph unicode="b" d="M116 0v1560h203v-592q42 65 102 99.5t139 34.5q171 0 264 -137.5t93 -366.5v-147q0 -215 -93 -343.5t-262 -128.5q-85 0 -148.5 37.5t-106.5 110.5l-15 -127h-176zM319 275q27 -66 75 -102.5t117 -36.5q107 0 155.5 85t48.5 230v147q0 156 -49.5 251t-156.5 95 q-68 0 -115.5 -40.5t-74.5 -108.5v-520z" />
<glyph unicode="c" horiz-adv-x="921" d="M75 465v149q0 212 107.5 350t308.5 138q165 0 267 -110q100 -106 99 -273v-10l-3 -6h-182q0 108 -49.5 175.5t-131.5 67.5q-116 0 -164.5 -94t-48.5 -238v-149q0 -146 48.5 -239t165.5 -93q76 0 128 58.5t52 156.5h182l2 -6v-11q0 -146 -104 -247q-108 -105 -260 -105 q-202 0 -309.5 137t-107.5 349z" />
<glyph unicode="d" d="M78 507v21q0 259 93.5 416.5t263.5 157.5q76 0 135.5 -34t102.5 -98v590h202v-1560h-177l-15 124q-43 -71 -105.5 -108t-143.5 -37q-169 0 -262.5 144t-93.5 384zM281 507q0 -171 49 -271t155 -100q66 0 112.5 36t75.5 101v526q-29 67 -75.5 106t-110.5 39 q-106 0 -156 -115t-50 -301v-21z" />
<glyph unicode="e" horiz-adv-x="930" d="M82 456v158q0 212 113.5 350t288.5 138q184 0 283 -125.5t99 -337.5v-140h-582v-43q0 -140 61.5 -231.5t174.5 -91.5q84 0 144 26.5t114 77.5l64 -126q-51 -58 -137 -95t-198 -37q-193 0 -309 134t-116 343zM284 644h381v41q0 115 -46 188t-135 73q-88 0 -141 -85.5 t-59 -216.5z" />
<glyph unicode="f" horiz-adv-x="623" d="M47 937v145h140v139q0 172 82.5 266t231.5 94q29 0 59.5 -5.5t68.5 -15.5l-20 -149q-17 5 -38 8t-45 3q-67 0 -101.5 -52t-34.5 -149v-139h189v-145h-189v-937h-203v937h-140z" />
<glyph unicode="g" horiz-adv-x="994" d="M78 451v133q0 233 95.5 375.5t265.5 142.5q82 0 144 -38.5t106 -111.5l15 130h175v-1077q0 -208 -110.5 -325t-308.5 -117q-68 0 -145.5 21t-138.5 57l43 152q51 -31 112 -48.5t127 -17.5q111 0 164.5 71t53.5 208v98q-43 -62 -102.5 -93.5t-136.5 -31.5 q-169 0 -264 129.5t-95 342.5zM281 451q0 -144 50 -229.5t157 -85.5q66 0 112.5 34t75.5 96v539q-30 64 -76 101.5t-110 37.5q-106 0 -157.5 -100t-51.5 -260v-133z" />
<glyph unicode="h" d="M113 0v1560h203v-623q45 78 111 121.5t147 43.5q146 0 227 -108t81 -332v-662h-203v664q0 149 -43.5 214.5t-129.5 65.5q-62 0 -110.5 -35.5t-79.5 -97.5v-811h-203z" />
<glyph unicode="i" horiz-adv-x="462" d="M129 0v1082h203v-1082h-203zM129 1366v194h203v-194h-203z" />
<glyph unicode="j" horiz-adv-x="467" d="M-64 -419l11 155q16 -6 36.5 -10t38.5 -4q53 0 84 50.5t31 153.5v1156h203v-1156q0 -174 -78.5 -268.5t-219.5 -94.5q-30 0 -54 4.5t-52 13.5zM137 1366v194h203v-194h-203z" />
<glyph unicode="k" horiz-adv-x="922" d="M117 0v1560h202v-909h83l239 431h237l-314 -488l359 -594h-236l-282 496h-86v-496h-202z" />
<glyph unicode="l" horiz-adv-x="462" d="M129 0v1560h203v-1560h-203z" />
<glyph unicode="m" horiz-adv-x="1525" d="M116 0v1082h185l11 -147q44 80 112 123.5t159 43.5q89 0 153 -49.5t97 -150.5q42 94 112 147t166 53q138 0 217.5 -113.5t79.5 -345.5v-643h-203v644q0 166 -41 233t-121 67q-69 0 -115.5 -52.5t-67.5 -139.5q-1 8 1 -25.5t2 -48.5v-678h-202v644q0 161 -42 230.5 t-122 69.5q-64 0 -109 -35.5t-70 -98.5v-810h-202z" />
<glyph unicode="n" d="M114 0v1082h186l11 -160q45 85 114 132.5t156 47.5q142 0 221 -105t79 -326v-671h-203v669q0 151 -43 213t-130 62q-62 0 -110 -38.5t-78 -104.5v-801h-203z" />
<glyph unicode="o" d="M76 471v138q0 215 112.5 354t308.5 139q195 0 308 -138.5t113 -354.5v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-197 0 -309.5 137.5t-112.5 354.5zM279 471q0 -148 54 -243t165 -95q108 0 162.5 95t54.5 243v138q0 146 -54.5 241.5t-163.5 95.5q-110 0 -164 -95 t-54 -242v-138z" />
<glyph unicode="p" d="M116 -416v1498h181l13 -124q43 69 105 106.5t144 37.5q169 0 263 -142t94 -376v-133q0 -214 -94 -343t-261 -129q-79 0 -139 31t-103 91v-517h-203zM319 259q27 -61 73 -93.5t113 -32.5q105 0 156.5 87.5t51.5 230.5v133q0 159 -52.5 259.5t-156.5 100.5q-65 0 -111 -37 t-74 -101v-547z" />
<glyph unicode="q" d="M78 451v133q0 234 94 376t263 142q79 0 139.5 -36t104.5 -104l15 120h176v-1498h-203v513q-43 -58 -101 -88t-132 -30q-169 0 -262.5 129t-93.5 343zM281 451q0 -144 49 -231t155 -87q63 0 108 32t74 91v561q-28 60 -73 94.5t-107 34.5q-106 0 -156 -100.5t-50 -261.5 v-133z" />
<glyph unicode="r" horiz-adv-x="633" d="M116 0v1082h185l15 -163q34 86 89 134.5t127 48.5q20 0 41 -3.5t33 -8.5l-24 -179l-95 5q-63 0 -104.5 -38t-63.5 -107v-771h-203z" />
<glyph unicode="s" horiz-adv-x="891" d="M69 318l2 6h189q4 -105 58 -151.5t134 -46.5q79 0 123.5 40.5t44.5 104.5q0 63 -41.5 106.5t-156.5 95.5q-167 65 -247.5 138.5t-80.5 190.5q0 125 98.5 212.5t258.5 87.5q167 0 266 -94q95 -91 95 -225v-11l-2 -6h-195q0 77 -43.5 132.5t-120.5 55.5q-76 0 -118.5 -43 t-42.5 -101q0 -62 36.5 -98t157.5 -94q170 -61 252.5 -138.5t82.5 -198.5q0 -134 -102 -218t-268 -84q-179 -1 -282 101q-98 97 -98 225v13z" />
<glyph unicode="t" horiz-adv-x="628" d="M32 937v145h141v269h202v-269h169v-145h-169v-644q0 -84 25 -119.5t65 -35.5q24 0 44.5 3t48.5 9l21 -140q-34 -14 -76.5 -22.5t-87.5 -8.5q-115 0 -178.5 75.5t-63.5 238.5v644h-141z" />
<glyph unicode="u" d="M112 443v639h202v-641q0 -166 39.5 -235.5t118.5 -69.5q75 0 125.5 35t80.5 100v811h203v-1082h-181l-13 145q-43 -80 -110 -123t-154 -43q-147 0 -229 113t-82 351z" />
<glyph unicode="v" horiz-adv-x="892" d="M34 1082h210l186 -757l17 -84h6l17 84l184 757h209l-324 -1082h-179z" />
<glyph unicode="w" horiz-adv-x="1308" d="M41 1082h194l146 -725h6l192 725h146l195 -731h6l143 731h194l-248 -1082h-167l-194 719h-6l-191 -719h-168z" />
<glyph unicode="x" horiz-adv-x="892" d="M35 0l296 548l-287 534h230l166 -395h6l170 395h232l-287 -534l297 -548h-231l-177 408h-6l-178 -408h-231z" />
<glyph unicode="y" horiz-adv-x="892" d="M22 1082h220l178 -709l15 -71h6l208 780h221l-379 -1250q-38 -112 -103 -190.5t-187 -78.5q-25 0 -53.5 5.5t-56.5 12.5l22 150q11 -2 30 -4t30 -2q59 0 93.5 50.5t53.5 119.5l36 110z" />
<glyph unicode="z" horiz-adv-x="865" d="M76 0v128l474 797h-464v157h690v-126l-478 -802h499v-154h-721z" />
<glyph unicode="{" horiz-adv-x="594" d="M55 535v146q83 0 123.5 61.5t40.5 174.5v215q0 171 69.5 290.5t233.5 174.5l39 -114q-83 -36 -117.5 -126.5t-34.5 -224.5v-215q0 -106 -40 -186.5t-121 -122.5q81 -44 121 -125t40 -186v-212q0 -134 34.5 -223t118.5 -126l-40 -115q-164 55 -233.5 174.5t-69.5 289.5 v212q0 112 -40.5 175t-123.5 63z" />
<glyph unicode="|" horiz-adv-x="446" d="M155 -270v1726h137v-1726h-137z" />
<glyph unicode="}" horiz-adv-x="594" d="M30 -264q83 37 119 126.5t36 222.5v212q0 108 41 188.5t126 121.5q-85 40 -126 120.5t-41 189.5v215q0 133 -35.5 223.5t-118.5 127.5l40 114q163 -55 233 -174.5t70 -290.5v-215q0 -113 39.5 -174.5t124.5 -61.5v-146q-84 0 -124 -63t-40 -175v-212q0 -170 -70 -289.5 t-233 -174.5z" />
<glyph unicode="~" horiz-adv-x="1165" d="M108 466q0 141 72 239t185 98q72 0 135.5 -35.5t132.5 -105.5q44 -52 80.5 -75t77.5 -23q50 0 86.5 58t36.5 143l143 -20q0 -142 -74 -242.5t-185 -100.5q-73 0 -134.5 34t-131.5 108q-47 50 -83.5 74t-77.5 24q-51 0 -86 -56t-35 -140z" />
<glyph unicode="&#xa1;" horiz-adv-x="473" d="M129 869v213h205v-213h-205zM130 -374v970h203v-970h-203z" />
<glyph unicode="&#xa2;" horiz-adv-x="991" d="M97 465v149q0 186 84 317.5t244 162.5v224h163v-223q134 -25 215 -130.5t81 -261.5h-190q0 108 -49.5 175.5t-131.5 67.5q-116 0 -164.5 -94t-48.5 -238v-149q0 -146 48.5 -239t165.5 -93q76 0 128 58.5t52 156.5h183l3 -5q2 -133 -81.5 -232.5t-210.5 -124.5v-231h-163 v232q-160 30 -244 161t-84 317z" />
<glyph unicode="&#xa3;" horiz-adv-x="1034" d="M77 618v155h135l-8 263q0 205 98 323t263 118q175 0 270.5 -107t92.5 -282l-3 -6h-195q0 123 -46 181t-119 58t-115.5 -75t-42.5 -210l9 -263h328v-155h-322l5 -141q0 -93 -24 -177.5t-69 -145.5h629v-154h-832v154h7q42 13 63 113t21 206l-5 145h-140z" />
<glyph unicode="&#xa4;" horiz-adv-x="1290" d="M90 92l129 147q-48 78 -73.5 172t-25.5 197q0 107 27 203t79 176l-136 157l116 120l129 -149q67 57 146.5 88t166.5 31q86 0 165.5 -31.5t147.5 -89.5l132 152l116 -121l-139 -160q49 -81 76 -176.5t27 -199.5q0 -102 -25 -194.5t-71 -170.5l132 -151l-116 -119l-121 139 q-68 -64 -151 -98t-173 -34q-91 0 -173.5 33.5t-150.5 96.5l-118 -136zM273 608q0 -198 109.5 -336.5t265.5 -138.5q154 0 263 138.5t109 336.5q0 196 -109 334t-263 138q-156 0 -265.5 -138t-109.5 -334z" />
<glyph unicode="&#xa5;" horiz-adv-x="1070" d="M31 1456h226l273 -632h6l272 632h226l-350 -730h247v-155h-300v-137h300v-155h-300v-279h-203v279h-304v155h304v137h-304v155h256z" />
<glyph unicode="&#xa6;" horiz-adv-x="442" d="M123 -270v784h190v-784h-190zM123 698v758h190v-758h-190z" />
<glyph unicode="&#xa7;" horiz-adv-x="1091" d="M88 546q0 91 42 160.5t121 110.5q-67 50 -100 120.5t-33 171.5q0 166 116.5 267t310.5 101q201 0 313.5 -111.5t108.5 -312.5l-2 -6h-194q0 118 -60 196t-166 78q-112 0 -168 -59t-56 -151q0 -97 52.5 -147.5t216.5 -106.5q209 -66 305 -154.5t96 -258.5 q0 -93 -43.5 -162t-122.5 -108q68 -51 102.5 -120.5t34.5 -171.5q0 -172 -115.5 -269t-310.5 -97q-191 0 -320 101.5t-124 320.5l2 6l194 2q0 -144 72.5 -209.5t175.5 -65.5q104 0 163.5 58.5t59.5 150.5q0 90 -56.5 140.5t-214.5 108.5q-205 64 -302.5 154.5t-97.5 262.5z M291 556q0 -101 52.5 -152.5t218.5 -111.5q29 -10 58 -20.5t58 -20.5q53 22 83 70t30 113q0 92 -58 146.5t-217 116.5q-36 10 -66.5 20.5t-56.5 22.5q-52 -22 -77 -70t-25 -114z" />
<glyph unicode="&#xa8;" horiz-adv-x="940" d="M151 1271v185h208v-185h-208zM580 1271v185h207v-185h-207z" />
<glyph unicode="&#xa9;" horiz-adv-x="1440" d="M88 729q0 315 182.5 531t444.5 216q261 0 444.5 -216t183.5 -531q0 -316 -184 -533t-444 -217q-261 0 -444 217t-183 533zM190 729q0 -271 153.5 -457t371.5 -186t371.5 186t153.5 457q0 268 -153.5 453t-371.5 185q-219 0 -372 -185t-153 -453zM397 669v119 q0 173 83 280t224 107q137 0 214.5 -79.5t74.5 -228.5l-3 -6h-121q0 102 -42 150t-123 48q-86 0 -132.5 -75t-46.5 -195v-120q0 -123 46.5 -197.5t132.5 -74.5q82 0 123 47t41 152h121l3 -6q3 -150 -74 -229t-214 -79q-141 0 -224 106.5t-83 280.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="788" d="M107 919q0 109 71 168t208 59h118v56q0 71 -25.5 110t-75.5 39q-58 0 -90 -31.5t-32 -88.5l-133 12l-1 6q-5 98 66.5 163t189.5 65q112 0 178 -71t66 -205v-315q0 -51 5 -95t17 -86h-144q-7 22 -11.5 47t-7.5 53q-27 -50 -74.5 -82t-113.5 -32q-100 0 -155.5 61.5 t-55.5 166.5zM249 923q0 -53 25.5 -81.5t77.5 -28.5q45 0 91 33t61 73v124h-117q-66 0 -102 -35.5t-36 -84.5z" />
<glyph unicode="&#xab;" horiz-adv-x="857" d="M81 507v19l243 384h139l-210 -394l210 -394h-139zM387 507v19l243 384h139l-210 -394l210 -394h-139z" />
<glyph unicode="&#xac;" horiz-adv-x="972" d="M115 649v143h704v-414h-162v271h-542z" />
<glyph unicode="&#xad;" horiz-adv-x="598" d="M73 542v155h446v-155h-446z" />
<glyph unicode="&#xae;" horiz-adv-x="1441" d="M87 729q0 315 183 531t445 216q261 0 444 -216t183 -531q0 -316 -183.5 -533t-443.5 -217q-262 0 -445 217t-183 533zM189 729q0 -271 153.5 -457t372.5 -186q217 0 370.5 186t153.5 457q0 268 -153.5 453t-370.5 185q-219 0 -372.5 -185t-153.5 -453zM459 316v850h245 q133 0 209 -65.5t76 -189.5q0 -63 -29.5 -109.5t-85.5 -77.5q58 -27 84.5 -80.5t26.5 -128.5v-56q0 -42 3 -74t11 -53v-16h-129q-8 21 -9.5 61.5t-1.5 82.5v54q0 76 -30.5 111t-99.5 35h-144v-344h-126zM585 776h131q62 0 105 35t43 97q0 77 -36 110t-124 33h-119v-275z" />
<glyph unicode="&#xaf;" horiz-adv-x="879" d="M125 1324v132h635v-132h-635z" />
<glyph unicode="&#xb0;" horiz-adv-x="706" d="M122 1216q0 106 68.5 183.5t164.5 77.5q93 0 161 -77.5t68 -183.5q0 -108 -67.5 -182.5t-161.5 -74.5q-96 0 -164.5 74.5t-68.5 182.5zM239 1216q0 -59 33.5 -98.5t82.5 -39.5q47 0 79.5 39t32.5 99t-32.5 100.5t-79.5 40.5q-49 0 -82.5 -40.5t-33.5 -100.5z" />
<glyph unicode="&#xb1;" horiz-adv-x="986" d="M90 716v157h320v407h182v-407h308v-157h-308v-414h-182v414h-320zM123 21v155h706v-155h-706z" />
<glyph unicode="&#xb2;" horiz-adv-x="745" d="M106 1236q-5 100 67.5 171.5t194.5 71.5q117 0 182.5 -63t65.5 -179q0 -78 -43.5 -140.5t-141.5 -159.5l-122 -144l2 -5h311v-121h-513v121l260 267q55 60 72 99t17 84q0 53 -22.5 85.5t-69.5 32.5q-53 0 -80.5 -35t-27.5 -91h-150z" />
<glyph unicode="&#xb3;" horiz-adv-x="747" d="M97 885l2 6h149q0 -52 30 -83.5t84 -31.5q55 0 87.5 31t32.5 85q0 64 -31 94.5t-91 30.5h-102v113h102q56 0 83 30t27 85q0 48 -27.5 79t-81.5 31q-48 0 -75.5 -27.5t-27.5 -72.5h-148l-2 6q-6 97 67.5 157t183.5 60q124 0 196.5 -59.5t72.5 -168.5q0 -56 -30.5 -102 t-83.5 -72q60 -23 92.5 -71t32.5 -117q0 -110 -75.5 -171.5t-200.5 -61.5q-116 0 -193.5 59t-72.5 171z" />
<glyph unicode="&#xb4;" horiz-adv-x="615" d="M112 1212l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xb5;" horiz-adv-x="1042" d="M132 -416v1498h202v-626q0 -185 43.5 -253.5t126.5 -68.5q75 0 122 36t73 105v807h202v-1082h-186l-6 88q-38 -53 -89.5 -81t-116.5 -28q-53 0 -94.5 15t-74.5 49v-459h-202z" />
<glyph unicode="&#xb6;" horiz-adv-x="896" d="M62 988q0 207 109.5 337.5t306.5 130.5h275v-1456h-203v520h-72q-197 0 -306.5 129.5t-109.5 338.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="505" d="M143 606v214h205v-214h-205z" />
<glyph unicode="&#xb8;" horiz-adv-x="464" d="M100 -132l26 134h150l-10 -58q56 -10 92.5 -50.5t36.5 -121.5q0 -98 -72.5 -156t-205.5 -58l-6 113q53 0 85.5 25t32.5 76q0 50 -29 69.5t-100 26.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="491" d="M92 1328v126l268 23v-812h-159v666z" />
<glyph unicode="&#xba;" horiz-adv-x="806" d="M109 1025v117q0 148 79.5 241.5t211.5 93.5q133 0 212 -93.5t79 -241.5v-117q0 -149 -78.5 -241.5t-210.5 -92.5q-134 0 -213.5 92.5t-79.5 241.5zM252 1025q0 -95 38 -153t112 -58q71 0 109 58t38 153v117q0 92 -38.5 150.5t-110.5 58.5t-110 -58.5t-38 -150.5v-117z " />
<glyph unicode="&#xbb;" horiz-adv-x="857" d="M85 155l209 395l-209 396h139l243 -386v-19l-243 -386h-139zM402 155l209 395l-209 396h139l243 -386v-19l-243 -386h-139z" />
<glyph unicode="&#xbc;" horiz-adv-x="1318" d="M134 1327v126l268 23v-812h-159v666zM254 184l601 1138l104 -63l-601 -1138zM639 250l358 551h158v-524h98v-122h-98v-155h-157v155h-351zM804 277h194v321l-6 1l-11 -19z" />
<glyph unicode="&#xbd;" horiz-adv-x="1383" d="M127 1327v126l268 23v-812h-159v666zM258 184l601 1138l104 -63l-601 -1138zM752 569q-5 100 67.5 171.5t194.5 71.5q117 0 182.5 -63t65.5 -179q0 -78 -43.5 -140.5t-141.5 -159.5l-122 -144l2 -5h311v-121h-513v121l260 267q55 60 72 99t17 84q0 53 -22.5 85.5 t-69.5 32.5q-53 0 -80.5 -35t-27.5 -91h-150z" />
<glyph unicode="&#xbe;" horiz-adv-x="1485" d="M100 886l2 6h149q0 -52 30 -83.5t84 -31.5q55 0 87.5 31t32.5 85q0 64 -31 94.5t-91 30.5h-102v113h102q56 0 83 30t27 85q0 48 -27.5 79t-81.5 31q-48 0 -75.5 -27.5t-27.5 -72.5h-148l-2 6q-6 97 67.5 157t183.5 60q124 0 196.5 -59.5t72.5 -168.5q0 -56 -30.5 -102 t-83.5 -72q60 -23 92.5 -71t32.5 -117q0 -110 -75.5 -171.5t-200.5 -61.5q-116 0 -193.5 59t-72.5 171zM425 184l601 1138l104 -63l-601 -1138zM799 250l358 551h158v-524h98v-122h-98v-155h-157v155h-351zM964 277h194v321l-6 1l-11 -19z" />
<glyph unicode="&#xbf;" horiz-adv-x="879" d="M87 -3q0 128 59.5 234t159.5 209q48 50 61.5 96.5t13.5 136.5h203q-2 -134 -29 -192t-121 -150q-72 -92 -108.5 -163.5t-36.5 -167.5q0 -110 45 -171.5t129 -61.5q70 0 120 56t51 157h195l2 -6q2 -173 -102 -270.5t-266 -97.5q-177 0 -276.5 104.5t-99.5 286.5zM377 883 v199h208v-199h-208z" />
<glyph unicode="&#xc0;" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM291 1822l2 5h227l169 -266h-170zM386 529h371l-182 636h-6z" />
<glyph unicode="&#xc1;" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM386 529h371l-182 636h-6zM486 1558l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xc2;" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM305 1599v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161zM386 529h371l-182 636h-6z" />
<glyph unicode="&#xc3;" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM282 1630q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155t-126 -63q-61 0 -131 49t-113 49q-33 0 -56 -33.5t-23 -82.5zM386 529h371l-182 636h-6z" />
<glyph unicode="&#xc4;" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM271 1617v185h208v-185h-208zM386 529h371l-182 636h-6zM700 1617v185h207v-185h-207z" />
<glyph unicode="&#xc5;" horiz-adv-x="1137" d="M27 0l448 1456h196l444 -1456h-206l-106 368h-464l-106 -368h-206zM386 529h371l-182 636h-6zM408 1734q0 78 53 131t128 53q74 0 126 -53t52 -131q0 -80 -51.5 -130.5t-126.5 -50.5q-76 0 -128.5 51t-52.5 130zM501 1734q0 -41 25.5 -68.5t62.5 -27.5q36 0 60 27t24 69 q0 43 -24 71t-60 28q-37 0 -62.5 -28.5t-25.5 -70.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1639" d="M3 0l703 1456h832v-157h-544l17 -467h458v-155h-453l18 -522h556v-155h-752l-13 361h-416l-164 -361h-242zM487 531h332l-24 665l-5 1z" />
<glyph unicode="&#xc7;" horiz-adv-x="1084" d="M94 525v404q0 258 126.5 403t337.5 145q214 0 329 -117t118 -342l-3 -6h-192q-3 159 -63 234t-189 75q-125 0 -194 -101t-69 -288v-407q0 -190 70.5 -291t198.5 -101q126 0 184.5 73.5t60.5 235.5h193l3 -6q-1 -218 -116 -337.5t-325 -119.5q-214 0 -342 144t-128 402z M459 -137l26 134h150l-10 -58q56 -10 92.5 -50.5t36.5 -121.5q0 -98 -72.5 -156t-205.5 -58l-6 113q53 0 85.5 25t32.5 76q0 50 -29 69.5t-100 26.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="1018" d="M141 0v1456h823v-156h-620v-469h540v-155h-540v-522h626v-154h-829zM231 1822l2 5h227l169 -266h-170z" />
<glyph unicode="&#xc9;" horiz-adv-x="1018" d="M141 0v1456h823v-156h-620v-469h540v-155h-540v-522h626v-154h-829zM426 1558l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xca;" horiz-adv-x="1018" d="M141 0v1456h823v-156h-620v-469h540v-155h-540v-522h626v-154h-829zM245 1599v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161z" />
<glyph unicode="&#xcb;" horiz-adv-x="1018" d="M141 0v1456h823v-156h-620v-469h540v-155h-540v-522h626v-154h-829zM211 1617v185h208v-185h-208zM640 1617v185h207v-185h-207z" />
<glyph unicode="&#xcc;" horiz-adv-x="513" d="M-39 1822l2 5h227l169 -266h-170zM155 0v1456h202v-1456h-202z" />
<glyph unicode="&#xcd;" horiz-adv-x="513" d="M154 1558l172 266h226l2 -5l-238 -261h-162zM155 0v1456h202v-1456h-202z" />
<glyph unicode="&#xce;" horiz-adv-x="513" d="M-25 1599v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161zM155 0v1456h202v-1456h-202z" />
<glyph unicode="&#xcf;" horiz-adv-x="513" d="M-59 1617v185h208v-185h-208zM155 0v1456h202v-1456h-202zM370 1617v185h207v-185h-207z" />
<glyph unicode="&#xd0;" horiz-adv-x="1184" d="M44 670v141h127v645h400q232 0 378.5 -175t146.5 -450v-207q0 -276 -146.5 -450t-378.5 -174h-400v670h-127zM374 154h190q153 0 241.5 131t88.5 339v209q0 206 -88.5 336.5t-241.5 130.5h-190v-489h225v-141h-225v-516z" />
<glyph unicode="&#xd1;" horiz-adv-x="1247" d="M141 0v1456h203l552 -1080l6 2v1078h202v-1456h-202l-552 1083l-6 -2v-1081h-203zM316 1630q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155t-126 -63q-61 0 -131 49t-113 49q-33 0 -56 -33.5t-23 -82.5z" />
<glyph unicode="&#xd2;" horiz-adv-x="1160" d="M91 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -259 -134 -403.5t-359 -144.5q-222 0 -353 144.5t-131 403.5zM282 1843l2 5h227l169 -266h-170zM292 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403q0 190 -76 288.5 t-215 98.5q-137 0 -210 -98.5t-73 -288.5v-403z" />
<glyph unicode="&#xd3;" horiz-adv-x="1160" d="M91 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -259 -134 -403.5t-359 -144.5q-222 0 -353 144.5t-131 403.5zM292 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403q0 190 -76 288.5t-215 98.5q-137 0 -210 -98.5 t-73 -288.5v-403zM477 1579l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xd4;" horiz-adv-x="1160" d="M91 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -259 -134 -403.5t-359 -144.5q-222 0 -353 144.5t-131 403.5zM292 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403q0 190 -76 288.5t-215 98.5q-137 0 -210 -98.5 t-73 -288.5v-403zM296 1620v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161z" />
<glyph unicode="&#xd5;" horiz-adv-x="1160" d="M91 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -259 -134 -403.5t-359 -144.5q-222 0 -353 144.5t-131 403.5zM273 1651q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155t-126 -63q-61 0 -131 49 t-113 49q-33 0 -56 -33.5t-23 -82.5zM292 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403q0 190 -76 288.5t-215 98.5q-137 0 -210 -98.5t-73 -288.5v-403z" />
<glyph unicode="&#xd6;" horiz-adv-x="1160" d="M91 527v400q0 258 131.5 404t352.5 146q224 0 358.5 -146t134.5 -404v-400q0 -259 -134 -403.5t-359 -144.5q-222 0 -353 144.5t-131 403.5zM262 1638v185h208v-185h-208zM292 527q0 -192 73.5 -291t209.5 -99q140 0 215.5 98.5t75.5 291.5v403q0 190 -76 288.5 t-215 98.5q-137 0 -210 -98.5t-73 -288.5v-403zM691 1638v185h207v-185h-207z" />
<glyph unicode="&#xd7;" horiz-adv-x="977" d="M76 344l293 339l-291 336l125 119l280 -324l281 324l125 -119l-292 -336l295 -339l-125 -119l-284 326l-283 -326z" />
<glyph unicode="&#xd8;" horiz-adv-x="1202" d="M93 527v400q0 258 131.5 404t352.5 146q91 0 170 -26t141 -75l68 136h121l-110 -219q50 -70 76.5 -162.5t26.5 -203.5v-400q0 -259 -134 -403.5t-359 -144.5q-69 0 -129.5 14t-111.5 42l-63 -125h-120l95 189q-75 70 -115 178.5t-40 249.5zM294 527q0 -76 11 -136 t33 -100l6 -1l458 915q-38 55 -95 83.5t-130 28.5q-137 0 -210 -98.5t-73 -288.5v-403zM413 189q32 -27 73 -39.5t91 -12.5q140 0 215.5 98.5t75.5 291.5v403q0 37 -3.5 70.5t-8.5 58.5l-6 1z" />
<glyph unicode="&#xd9;" horiz-adv-x="1160" d="M117 447v1009h201v-1009q0 -156 70 -235t189 -79q124 0 195 76t71 238v1009h202v-1009q0 -226 -129.5 -347t-338.5 -121q-206 0 -333 121t-127 347zM284 1822l2 5h227l169 -266h-170z" />
<glyph unicode="&#xda;" horiz-adv-x="1160" d="M117 447v1009h201v-1009q0 -156 70 -235t189 -79q124 0 195 76t71 238v1009h202v-1009q0 -226 -129.5 -347t-338.5 -121q-206 0 -333 121t-127 347zM479 1558l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xdb;" horiz-adv-x="1160" d="M117 447v1009h201v-1009q0 -156 70 -235t189 -79q124 0 195 76t71 238v1009h202v-1009q0 -226 -129.5 -347t-338.5 -121q-206 0 -333 121t-127 347zM298 1599v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161z" />
<glyph unicode="&#xdc;" horiz-adv-x="1160" d="M117 447v1009h201v-1009q0 -156 70 -235t189 -79q124 0 195 76t71 238v1009h202v-1009q0 -226 -129.5 -347t-338.5 -121q-206 0 -333 121t-127 347zM264 1617v185h208v-185h-208zM693 1617v185h207v-185h-207z" />
<glyph unicode="&#xdd;" horiz-adv-x="1100" d="M23 1456h227l297 -707h6l298 707h225l-428 -932v-524h-202v537zM450 1554l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xde;" horiz-adv-x="1055" d="M133 0v1456h203v-290h211q205 0 319.5 -119t114.5 -309q0 -192 -114.5 -310.5t-319.5 -118.5h-211v-309h-203zM336 464h211q116 0 173.5 79t57.5 193q0 115 -57.5 195t-173.5 80h-211v-547z" />
<glyph unicode="&#xdf;" horiz-adv-x="1079" d="M124 0v1088q0 215 103 335t275 120q143 0 236 -86.5t93 -246.5q0 -111 -49.5 -215.5t-49.5 -173.5q0 -76 136.5 -218t136.5 -283q0 -170 -93 -255.5t-259 -85.5q-69 0 -140 20t-104 50l40 154q35 -28 87 -49.5t106 -21.5q79 0 120.5 49.5t41.5 131.5q0 86 -137.5 226 t-137.5 280q0 88 52 194.5t52 184.5q0 85 -41 138t-94 53q-78 0 -125 -79.5t-47 -223.5v-1086h-202z" />
<glyph unicode="&#xe0;" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6q-5 125 100 222.5t271 97.5q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM174 1500l2 5h227l169 -266h-170zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221h-154q-93 0 -144.5 -59.5t-51.5 -145.5z" />
<glyph unicode="&#xe1;" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6q-5 125 100 222.5t271 97.5q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221h-154q-93 0 -144.5 -59.5t-51.5 -145.5zM369 1236l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xe2;" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6q-5 125 100 222.5t271 97.5q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM188 1277v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221h-154q-93 0 -144.5 -59.5t-51.5 -145.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6q-5 125 100 222.5t271 97.5q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM165 1308q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155t-126 -63q-61 0 -131 49t-113 49q-33 0 -56 -33.5t-23 -82.5zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221 h-154q-93 0 -144.5 -59.5t-51.5 -145.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6q-5 125 100 222.5t271 97.5q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM154 1295v185h208v-185h-208zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221h-154q-93 0 -144.5 -59.5t-51.5 -145.5zM583 1295v185h207v-185h-207z" />
<glyph unicode="&#xe5;" horiz-adv-x="955" d="M84 297q0 155 105.5 243.5t296.5 88.5h151v111q0 99 -44 154.5t-125 55.5q-73 0 -117.5 -50t-44.5 -125l-193 1l-3 6q-5 125 100 222.5t271 97.5q160 0 259.5 -94.5t99.5 -269.5v-502q0 -63 7.5 -121.5t24.5 -114.5h-205q-11 37 -18 72.5t-9 71.5q-45 -73 -113 -119 t-151 -46q-137 0 -214.5 86.5t-77.5 231.5zM287 298q0 -73 35 -118t100 -45q71 0 129.5 42t85.5 105v221h-154q-93 0 -144.5 -59.5t-51.5 -145.5zM291 1412q0 78 53 131t128 53q74 0 126 -53t52 -131q0 -80 -51.5 -130.5t-126.5 -50.5q-76 0 -128.5 51t-52.5 130zM384 1412 q0 -41 25.5 -68.5t62.5 -27.5q36 0 60 27t24 69q0 43 -24 71t-60 28q-37 0 -62.5 -28.5t-25.5 -70.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1479" d="M53 304q0 158 102.5 246t297.5 88h176v78q0 109 -40 169.5t-114 60.5q-80 0 -126.5 -54.5t-46.5 -134.5l-194 16l-2 6q-5 139 97.5 231t272.5 92q92 0 164.5 -33.5t119.5 -97.5q53 63 124.5 97t156.5 34q179 0 278.5 -128.5t99.5 -350.5v-124h-583q1 -166 61 -266 t185 -100q83 0 139 26.5t119 76.5l59 -132q-47 -48 -133 -86.5t-198 -38.5t-198.5 45t-142.5 129q-49 -75 -139 -124.5t-215 -49.5q-153 0 -236.5 87t-83.5 238zM256 300q0 -80 39 -126.5t118 -46.5q57 0 119.5 40t96.5 92v242h-174q-94 0 -146.5 -58.5t-52.5 -142.5z M839 639h380v30q0 124 -44 200.5t-134 76.5q-91 0 -141.5 -84t-60.5 -223z" />
<glyph unicode="&#xe7;" horiz-adv-x="921" d="M75 465v149q0 212 107.5 350t308.5 138q164 0 266.5 -109.5t99.5 -283.5l-3 -6h-182q0 108 -49.5 175.5t-131.5 67.5q-116 0 -164.5 -94t-48.5 -238v-149q0 -146 48.5 -239t165.5 -93q76 0 128 58.5t52 156.5h182l2 -6q4 -153 -103.5 -258t-260.5 -105q-202 0 -309.5 137 t-107.5 349zM372 -137l26 134h150l-10 -58q56 -10 92.5 -50.5t36.5 -121.5q0 -98 -72.5 -156t-205.5 -58l-6 113q53 0 85.5 25t32.5 76q0 50 -29 69.5t-100 26.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="930" d="M82 456v158q0 212 113.5 350t288.5 138q184 0 283 -125.5t99 -337.5v-140h-582v-43q0 -140 61.5 -231.5t174.5 -91.5q84 0 144 26.5t114 77.5l64 -126q-51 -58 -137 -95t-198 -37q-193 0 -309 134t-116 343zM177 1501l2 5h227l169 -266h-170zM284 644h381v41 q0 115 -46 188t-135 73q-88 0 -141 -85.5t-59 -216.5z" />
<glyph unicode="&#xe9;" horiz-adv-x="930" d="M82 456v158q0 212 113.5 350t288.5 138q184 0 283 -125.5t99 -337.5v-140h-582v-43q0 -140 61.5 -231.5t174.5 -91.5q84 0 144 26.5t114 77.5l64 -126q-51 -58 -137 -95t-198 -37q-193 0 -309 134t-116 343zM284 644h381v41q0 115 -46 188t-135 73q-88 0 -141 -85.5 t-59 -216.5zM372 1237l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xea;" horiz-adv-x="930" d="M82 456v158q0 212 113.5 350t288.5 138q184 0 283 -125.5t99 -337.5v-140h-582v-43q0 -140 61.5 -231.5t174.5 -91.5q84 0 144 26.5t114 77.5l64 -126q-51 -58 -137 -95t-198 -37q-193 0 -309 134t-116 343zM191 1278v23l222 232h122l226 -233v-22h-164l-123 151 l-122 -151h-161zM284 644h381v41q0 115 -46 188t-135 73q-88 0 -141 -85.5t-59 -216.5z" />
<glyph unicode="&#xeb;" horiz-adv-x="930" d="M82 456v158q0 212 113.5 350t288.5 138q184 0 283 -125.5t99 -337.5v-140h-582v-43q0 -140 61.5 -231.5t174.5 -91.5q84 0 144 26.5t114 77.5l64 -126q-51 -58 -137 -95t-198 -37q-193 0 -309 134t-116 343zM157 1296v185h208v-185h-208zM284 644h381v41q0 115 -46 188 t-135 73q-88 0 -141 -85.5t-59 -216.5zM586 1296v185h207v-185h-207z" />
<glyph unicode="&#xec;" horiz-adv-x="468" d="M-64 1479l2 5h227l169 -266h-170zM129 0v1082h203v-1082h-203z" />
<glyph unicode="&#xed;" horiz-adv-x="468" d="M129 0v1082h203v-1082h-203zM129 1215l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xee;" horiz-adv-x="468" d="M-50 1256v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161zM129 0v1082h203v-1082h-203z" />
<glyph unicode="&#xef;" horiz-adv-x="468" d="M-84 1274v185h208v-185h-208zM129 0v1082h203v-1082h-203zM345 1274v185h207v-185h-207z" />
<glyph unicode="&#xf0;" horiz-adv-x="1039" d="M60 462q0 230 114.5 368t303.5 138q69 0 130 -27t104 -73l4 4q-16 94 -50.5 173t-82.5 142l-218 -146l-64 94l202 135q-35 28 -71.5 50.5t-73.5 39.5l63 157q66 -25 126.5 -60.5t112.5 -81.5l195 130l63 -94l-179 -120q97 -120 150 -285t53 -369v-87q0 -251 -127 -411 t-318 -160q-192 0 -314.5 138.5t-122.5 344.5zM263 462q0 -132 64.5 -230t172.5 -98t173.5 117t65.5 299v89q0 7 -0.5 21.5t-0.5 21.5q-30 58 -91.5 96.5t-148.5 38.5q-110 0 -172.5 -101t-62.5 -254z" />
<glyph unicode="&#xf1;" d="M114 0v1082h186l11 -160q45 85 114 132.5t156 47.5q142 0 221 -105t79 -326v-671h-203v669q0 151 -43 213t-130 62q-62 0 -110 -38.5t-78 -104.5v-801h-203zM189 1308q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155 t-126 -63q-61 0 -131 49t-113 49q-33 0 -56 -33.5t-23 -82.5z" />
<glyph unicode="&#xf2;" d="M76 471v138q0 215 112.5 354t308.5 139q195 0 308 -138.5t113 -354.5v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-197 0 -309.5 137.5t-112.5 354.5zM201 1500l2 5h227l169 -266h-170zM279 471q0 -148 54 -243t165 -95q108 0 162.5 95t54.5 243v138q0 146 -54.5 241.5 t-163.5 95.5q-110 0 -164 -95t-54 -242v-138z" />
<glyph unicode="&#xf3;" d="M76 471v138q0 215 112.5 354t308.5 139q195 0 308 -138.5t113 -354.5v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-197 0 -309.5 137.5t-112.5 354.5zM279 471q0 -148 54 -243t165 -95q108 0 162.5 95t54.5 243v138q0 146 -54.5 241.5t-163.5 95.5q-110 0 -164 -95 t-54 -242v-138zM396 1236l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xf4;" d="M76 471v138q0 215 112.5 354t308.5 139q195 0 308 -138.5t113 -354.5v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-197 0 -309.5 137.5t-112.5 354.5zM215 1277v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161zM279 471q0 -148 54 -243t165 -95 q108 0 162.5 95t54.5 243v138q0 146 -54.5 241.5t-163.5 95.5q-110 0 -164 -95t-54 -242v-138z" />
<glyph unicode="&#xf5;" d="M76 471v138q0 215 112.5 354t308.5 139q195 0 308 -138.5t113 -354.5v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-197 0 -309.5 137.5t-112.5 354.5zM192 1308q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155t-126 -63 q-61 0 -131 49t-113 49q-33 0 -56 -33.5t-23 -82.5zM279 471q0 -148 54 -243t165 -95q108 0 162.5 95t54.5 243v138q0 146 -54.5 241.5t-163.5 95.5q-110 0 -164 -95t-54 -242v-138z" />
<glyph unicode="&#xf6;" d="M76 471v138q0 215 112.5 354t308.5 139q195 0 308 -138.5t113 -354.5v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-197 0 -309.5 137.5t-112.5 354.5zM181 1295v185h208v-185h-208zM279 471q0 -148 54 -243t165 -95q108 0 162.5 95t54.5 243v138q0 146 -54.5 241.5 t-163.5 95.5q-110 0 -164 -95t-54 -242v-138zM610 1295v185h207v-185h-207z" />
<glyph unicode="&#xf7;" horiz-adv-x="1005" d="M64 608v171h858v-171h-858zM392 188v195h205v-195h-205zM392 995v195h205v-195h-205z" />
<glyph unicode="&#xf8;" horiz-adv-x="996" d="M76 471v138q0 215 112.5 354t308.5 139q45 0 87 -8.5t80 -24.5l60 144h121l-85 -204q76 -66 117 -170t41 -230v-138q0 -217 -112.5 -354.5t-307.5 -137.5q-42 0 -80.5 7t-73.5 20l-60 -145h-121l83 200q-83 64 -126.5 170.5t-43.5 239.5zM279 471q0 -67 10 -122.5 t32 -91.5h6l273 659q-22 14 -48 22t-55 8q-110 0 -164 -95t-54 -242v-138zM406 155q20 -11 42.5 -16.5t49.5 -5.5q108 0 162.5 95t54.5 243v138q0 58 -9 108.5t-25 85.5l-6 1z" />
<glyph unicode="&#xf9;" d="M112 443v639h202v-641q0 -166 39.5 -235.5t118.5 -69.5q75 0 125.5 35t80.5 100v811h203v-1082h-181l-13 145q-43 -80 -110 -123t-154 -43q-147 0 -229 113t-82 351zM199 1479l2 5h227l169 -266h-170z" />
<glyph unicode="&#xfa;" d="M112 443v639h202v-641q0 -166 39.5 -235.5t118.5 -69.5q75 0 125.5 35t80.5 100v811h203v-1082h-181l-13 145q-43 -80 -110 -123t-154 -43q-147 0 -229 113t-82 351zM394 1215l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xfb;" d="M112 443v639h202v-641q0 -166 39.5 -235.5t118.5 -69.5q75 0 125.5 35t80.5 100v811h203v-1082h-181l-13 145q-43 -80 -110 -123t-154 -43q-147 0 -229 113t-82 351zM213 1256v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161z" />
<glyph unicode="&#xfc;" d="M112 443v639h202v-641q0 -166 39.5 -235.5t118.5 -69.5q75 0 125.5 35t80.5 100v811h203v-1082h-181l-13 145q-43 -80 -110 -123t-154 -43q-147 0 -229 113t-82 351zM179 1274v185h208v-185h-208zM608 1274v185h207v-185h-207z" />
<glyph unicode="&#xfd;" horiz-adv-x="892" d="M22 1082h220l178 -709l15 -71h6l208 780h221l-379 -1250q-38 -112 -103 -190.5t-187 -78.5q-25 0 -53.5 5.5t-56.5 12.5l22 150q11 -2 30 -4t30 -2q59 0 93.5 50.5t53.5 119.5l36 110zM343 1215l172 266h226l2 -5l-238 -261h-162z" />
<glyph unicode="&#xfe;" horiz-adv-x="1006" d="M120 0v1560h203v-590q42 64 102.5 98t138.5 34q169 0 263 -142t94 -376v-133q0 -214 -94 -343t-261 -129q-79 0 -139 31t-103 91v-517h-203v416h-1zM324 259q27 -61 73 -93.5t113 -32.5q105 0 156.5 87.5t51.5 230.5v133q0 159 -52.5 259.5t-156.5 100.5q-65 0 -111 -37 t-74 -101v-547z" />
<glyph unicode="&#xff;" horiz-adv-x="892" d="M22 1082h220l178 -709l15 -71h6l208 780h221l-379 -1250q-38 -112 -103 -190.5t-187 -78.5q-25 0 -53.5 5.5t-56.5 12.5l22 150q11 -2 30 -4t30 -2q59 0 93.5 50.5t53.5 119.5l36 110zM130 1274v185h208v-185h-208zM559 1274v185h207v-185h-207z" />
<glyph unicode="&#x152;" horiz-adv-x="1681" d="M93 576v304q0 265 136 431t356 166q58 0 118.5 -6t128.5 -15h759v-156h-620v-469h540v-155h-540v-522h626v-154h-765q-78 -10 -133.5 -15.5t-112.5 -5.5q-219 0 -356 166t-137 431zM296 576q0 -210 77.5 -326t212.5 -116q46 0 92 3.5t90 10.5v1160q-45 6 -90.5 10 t-92.5 4q-135 0 -212 -115.5t-77 -324.5v-306z" />
<glyph unicode="&#x153;" horiz-adv-x="1584" d="M84 526v27q0 241 112 395t307 154q104 0 186.5 -46.5t138.5 -130.5q54 84 132.5 130.5t172.5 46.5q184 0 283 -129.5t99 -347.5v-126h-581q2 -161 62.5 -263.5t172.5 -102.5q85 0 144.5 26.5t114.5 77.5l64 -126q-51 -58 -137 -95t-199 -37q-104 0 -188 45.5t-140 129.5 q-55 -84 -137 -129.5t-186 -45.5q-197 0 -309 152.5t-112 394.5zM286 526q0 -172 54.5 -282.5t164.5 -110.5q108 0 162.5 110.5t54.5 282.5v27q0 170 -54.5 281.5t-164.5 111.5q-109 0 -163 -112t-54 -281v-27zM938 644h377v28q0 120 -46.5 197t-135.5 77q-80 0 -131.5 -84 t-63.5 -218z" />
<glyph unicode="&#x178;" horiz-adv-x="1100" d="M23 1456h227l297 -707h6l298 707h225l-428 -932v-524h-202v537zM235 1613v185h208v-185h-208zM664 1613v185h207v-185h-207z" />
<glyph unicode="&#x2c6;" horiz-adv-x="853" d="M137 1252v23l222 232h122l226 -233v-22h-164l-123 151l-122 -151h-161z" />
<glyph unicode="&#x2dc;" horiz-adv-x="841" d="M112 1276q0 90 50 155t126 65q48 0 124 -49.5t120 -49.5q33 0 56.5 34t23.5 84l110 -31q0 -92 -50 -155t-126 -63q-61 0 -131 49t-113 49q-33 0 -56 -33.5t-23 -82.5z" />
<glyph unicode="&#x2000;" horiz-adv-x="959" />
<glyph unicode="&#x2001;" horiz-adv-x="1918" />
<glyph unicode="&#x2002;" horiz-adv-x="959" />
<glyph unicode="&#x2003;" horiz-adv-x="1918" />
<glyph unicode="&#x2004;" horiz-adv-x="639" />
<glyph unicode="&#x2005;" horiz-adv-x="479" />
<glyph unicode="&#x2006;" horiz-adv-x="319" />
<glyph unicode="&#x2007;" horiz-adv-x="319" />
<glyph unicode="&#x2008;" horiz-adv-x="239" />
<glyph unicode="&#x2009;" horiz-adv-x="383" />
<glyph unicode="&#x200a;" horiz-adv-x="106" />
<glyph unicode="&#x2010;" horiz-adv-x="598" d="M73 542v155h446v-155h-446z" />
<glyph unicode="&#x2011;" horiz-adv-x="598" d="M73 542v155h446v-155h-446z" />
<glyph unicode="&#x2012;" horiz-adv-x="598" d="M73 542v155h446v-155h-446z" />
<glyph unicode="&#x2013;" horiz-adv-x="1213" d="M150 649v155h918v-155h-918z" />
<glyph unicode="&#x2014;" horiz-adv-x="1425" d="M128 649v155h1130v-155h-1130z" />
<glyph unicode="&#x2018;" horiz-adv-x="360" d="M63 1040v182l133 338h100l-51 -339v-181h-182z" />
<glyph unicode="&#x2019;" horiz-adv-x="360" d="M67 1041l50 329v190h183v-188l-133 -331h-100z" />
<glyph unicode="&#x201a;" horiz-adv-x="358" d="M63 -239l50 265v239h183v-225l-126 -279h-107z" />
<glyph unicode="&#x201c;" horiz-adv-x="635" d="M63 1040v182l133 338h100l-51 -339v-181h-182zM337 1040v182l133 338h100l-51 -339v-181h-182z" />
<glyph unicode="&#x201d;" horiz-adv-x="642" d="M66 1041l50 329v190h183v-188l-133 -331h-100zM345 1041l50 329v190h183v-188l-133 -331h-100z" />
<glyph unicode="&#x201e;" horiz-adv-x="623" d="M63 -219l50 294v208h176v-199l-132 -303h-94zM333 -219l50 300v202h176v-199l-132 -303h-94z" />
<glyph unicode="&#x2022;" horiz-adv-x="644" d="M129 721v72q0 87 52.5 143t140.5 56q89 0 142 -56t53 -143v-72q0 -89 -52.5 -143.5t-140.5 -54.5q-89 0 -142 54.5t-53 143.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1240" d="M142 0v203h204v-203h-204zM528 0v203h204v-203h-204zM900 0v203h204v-203h-204z" />
<glyph unicode="&#x202f;" horiz-adv-x="383" />
<glyph unicode="&#x2039;" horiz-adv-x="547" d="M99 541v19l243 384h139l-210 -394l210 -394h-139z" />
<glyph unicode="&#x203a;" horiz-adv-x="538" d="M80 155l209 395l-209 396h139l243 -386v-19l-243 -386h-139z" />
<glyph unicode="&#x205f;" horiz-adv-x="479" />
<glyph unicode="&#x20ac;" horiz-adv-x="948" d="M71 491v155h126v141h-126v155h126v23q0 223 123 367.5t323 144.5q50 0 99 -8t106 -23l-17 -160q-45 16 -92.5 25.5t-95.5 9.5q-113 0 -178 -100.5t-65 -253.5v-25h391v-155h-391v-141h391v-155h-391v-9q0 -150 66 -249.5t178 -99.5q49 0 96 8.5t91 25.5l17 -157 q-48 -15 -100 -23t-104 -8q-200 0 -323.5 142t-123.5 361v9h-126z" />
<glyph unicode="&#x2122;" horiz-adv-x="1104" d="M92 1371v85h331v-85h-117v-453h-99v453h-115zM485 917v539h116l118 -392h6l119 392h110v-539h-92v318l-6 1l-108 -319h-52l-112 331h-6v-331h-93z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1085" d="M47 937v145h140v139q0 172 82.5 266t231.5 94q29 0 59.5 -5.5t68.5 -15.5l-20 -149q-17 5 -38 8t-45 3q-67 0 -101.5 -52t-34.5 -149v-139h189v-145h-189v-937h-203v937h-140zM752 0v1560h203v-1560h-203z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1648" d="M47 937v145h140v139q0 172 82.5 266t231.5 94q29 0 59.5 -5.5t68.5 -15.5l-20 -149q-17 5 -38 8t-45 3q-67 0 -101.5 -52t-34.5 -149v-139h189v-145h-189v-937h-203v937h-140zM652 937v145h141v111q0 186 97.5 287t271.5 101q62 0 124.5 -15.5t135.5 -44.5l-31 -158 q-50 22 -102 35.5t-113 13.5q-92 0 -136 -55t-44 -164v-111h183v-145h-183v-937h-203v937h-141zM1315 0v1082h203v-1082h-203z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1708" d="M47 937v145h140v139q0 172 82.5 266t231.5 94q29 0 59.5 -5.5t68.5 -15.5l-20 -149q-17 5 -38 8t-45 3q-67 0 -101.5 -52t-34.5 -149v-139h189v-145h-189v-937h-203v937h-140zM670 937v145h140v139q0 172 82.5 266t231.5 94q29 0 59.5 -5.5t68.5 -15.5l-20 -149 q-17 5 -38 8t-45 3q-67 0 -101.5 -52t-34.5 -149v-139h189v-145h-189v-937h-203v937h-140zM1375 0v1560h203v-1560h-203z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-18" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="224" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="61" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="234" />
<hkern u1="F" u2="&#x201e;" k="234" />
<hkern u1="F" u2="&#x201a;" k="234" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="264" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="234" />
<hkern u1="F" u2="&#x2c;" k="234" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="92" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="97" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="43" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="80" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="114" />
<hkern u1="T" u2="&#xc6;" k="179" />
<hkern u1="T" u2="&#xbb;" k="216" />
<hkern u1="T" u2="&#xab;" k="328" />
<hkern u1="T" u2="w" k="57" />
<hkern u1="T" u2="r" k="75" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-32" />
<hkern u1="r" u2="f" k="-15" />
<hkern u1="t" u2="&#xf6;" k="20" />
<hkern u1="t" u2="&#xf5;" k="20" />
<hkern u1="t" u2="&#xf4;" k="20" />
<hkern u1="t" u2="&#xf3;" k="20" />
<hkern u1="t" u2="&#xf2;" k="20" />
<hkern u1="t" u2="o" k="20" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="61" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="61" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="61" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="61" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="61" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="61" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="129" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="87" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="69" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="94" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="m,n,p,ntilde" k="23" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
<hkern g1="L" g2="T" k="275" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
<hkern g1="L" g2="V" k="175" />
<hkern g1="L" g2="W" k="143" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
<hkern g1="P" g2="X" k="31" />
<hkern g1="P" g2="Z" k="26" />
<hkern g1="P" g2="J" k="200" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
<hkern g1="T" g2="m,n,p,ntilde" k="109" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
<hkern g1="T" g2="s" k="116" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
<hkern g1="T" g2="J" k="240" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 73 KiB

View File

@ -0,0 +1,644 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="roboto_condenseditalic" horiz-adv-x="960" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="436" />
<glyph unicode="&#xfb01;" horiz-adv-x="992" d="M80 0l187 937h-134l29 145h134l23 111q39 198 150 293t283 95q56 0 115 -16t122 -44l-61 -158q-43 22 -90.5 35.5t-105.5 13.5q-82 0 -137 -56.5t-75 -162.5l-23 -111h171l-29 -145h-171l-187 -937h-201zM579 0l216 1082h201l-216 -1082h-201z" />
<glyph horiz-adv-x="0" />
<glyph unicode="&#xd;" horiz-adv-x="436" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="26" />
<glyph unicode="&#x9;" horiz-adv-x="26" />
<glyph unicode=" " horiz-adv-x="436" />
<glyph unicode="&#x09;" horiz-adv-x="436" />
<glyph unicode="&#xa0;" horiz-adv-x="436" />
<glyph unicode="!" horiz-adv-x="468" d="M50 0l41 204h200l-41 -204h-200zM146 485l194 971h201l-194 -971h-201z" />
<glyph unicode="&#x22;" horiz-adv-x="578" d="M181 1057l40 245l42 258h150l-40 -249l-97 -254h-95zM445 1057l41 252l41 251h149l-40 -249l-97 -254h-94z" />
<glyph unicode="#" horiz-adv-x="1028" d="M56 410l26 130h206l129 368h-200l26 132h220l145 416h136l-145 -416h178l145 416h136l-145 -416h169l-26 -132h-189l-128 -368h183l-26 -130h-203l-142 -410h-137l143 410h-178l-143 -410h-136l143 410h-187zM424 540h178l129 368h-178z" />
<glyph unicode="$" horiz-adv-x="965" d="M92 432h200q-26 -164 18 -229t129 -65q82 0 143 65t77 167q16 99 -17 159.5t-130 115.5q-160 70 -229.5 167.5t-41.5 269.5q27 169 125 271t242 120l34 212h129l-35 -215q130 -26 191 -145t31 -311h-201q22 141 -8.5 222t-107.5 81t-130.5 -66t-69.5 -167 q-16 -100 16 -158.5t134 -116.5q160 -73 228 -169.5t41 -267.5q-29 -175 -128.5 -273.5t-250.5 -115.5l-31 -193h-128l31 194q-138 19 -216.5 128.5t-44.5 319.5z" />
<glyph unicode="%" horiz-adv-x="1299" d="M232 1099l15 77q27 136 112.5 218.5t207.5 82.5q112 0 168.5 -88t31.5 -213l-15 -77q-28 -136 -112.5 -217.5t-206.5 -81.5q-113 0 -170 87t-31 212zM247 176l801 1138l89 -63l-799 -1138zM373 1099q-16 -79 4.5 -129t79.5 -50q53 0 95.5 53t58.5 126l15 77q15 79 -5 130 t-78 51q-53 0 -97 -54t-58 -127zM661 279l15 78q27 135 112.5 217.5t207.5 82.5q113 0 169 -87.5t31 -212.5l-15 -78q-28 -137 -112 -218.5t-206 -81.5q-113 0 -170.5 87.5t-31.5 212.5zM803 279q-16 -79 5.5 -129.5t78.5 -50.5q55 0 96.5 52.5t57.5 127.5l15 78 q16 80 -5 130t-79 50q-53 0 -96.5 -53.5t-57.5 -126.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1132" d="M58 383q20 126 93 214.5t209 186.5q-50 99 -69 178.5t-5 162.5q27 172 126.5 262t248.5 90q128 0 199.5 -90.5t51.5 -217.5q-17 -100 -69 -169.5t-143 -135.5l-110 -84l213 -388l6 1q38 57 65.5 129t41.5 153h162q-22 -136 -69.5 -243t-123.5 -191l133 -241h-234l-55 101 q-81 -60 -164.5 -91t-170.5 -31q-176 0 -270.5 112.5t-65.5 291.5zM262 388q-18 -114 24 -184.5t138 -70.5q56 0 117.5 23.5t119.5 69.5l-234 430l-22 -17q-73 -72 -104 -134.5t-39 -116.5zM475 1127q-8 -52 4.5 -105.5t43.5 -117.5l108 79q55 40 79.5 84t32.5 97 q10 66 -18.5 111.5t-88.5 45.5t-104 -56.5t-57 -137.5z" />
<glyph unicode="'" horiz-adv-x="315" d="M181 1055l42 266l39 239h148l-37 -226l-98 -279h-94z" />
<glyph unicode="(" horiz-adv-x="588" d="M138 574l2 16q63 395 231 667.5t333 365.5l6 -1l18 -107q-121 -102 -237 -344t-170 -579l-3 -20q-57 -350 -18 -583t129 -344l-52 -103h-6q-134 93 -214.5 371t-18.5 661z" />
<glyph unicode=")" horiz-adv-x="591" d="M-98 -356q120 103 237.5 346.5t171.5 580.5l3 20q55 347 14 584t-126 345l54 102h6q133 -91 216 -374.5t23 -658.5l-2 -16q-64 -396 -233.5 -666.5t-336.5 -364.5h-6z" />
<glyph unicode="*" horiz-adv-x="782" d="M167 1080l71 140l230 -119l60 355h142l-83 -361l272 121l15 -141l-280 -100l113 -278l-133 -87l-93 295l-208 -289l-99 84l228 284z" />
<glyph unicode="+" horiz-adv-x="987" d="M104 600l35 174h323l87 432h195l-87 -432h324l-35 -174h-323l-91 -454h-195l91 454h-324z" />
<glyph unicode="," horiz-adv-x="392" d="M-86 -271l117 302l37 183h187l-38 -190l-184 -295h-119z" />
<glyph unicode="-" horiz-adv-x="584" d="M99 542l31 155h427l-31 -155h-427z" />
<glyph unicode="." horiz-adv-x="489" d="M50 0l41 203h201l-41 -203h-201z" />
<glyph unicode="/" horiz-adv-x="672" d="M-98 -125l774 1581h157l-774 -1581h-157z" />
<glyph unicode="0" horiz-adv-x="965" d="M123 563l65 329q60 300 191 442.5t313 142.5q166 0 245.5 -154.5t24.5 -430.5l-65 -329q-61 -301 -191 -442.5t-311 -141.5q-167 0 -247.5 153.5t-24.5 430.5zM304 229.5q29 -95.5 120 -89.5l6 -1q80 -5 151 98t110 298l77 386q42 211 13.5 304.5t-118.5 88.5l-6 1 q-81 4 -152 -98t-110 -296l-77 -386q-43 -210 -14 -305.5z" />
<glyph unicode="1" horiz-adv-x="965" d="M302 1234l26 131l487 92l-291 -1459h-200l251 1255z" />
<glyph unicode="2" horiz-adv-x="965" d="M30 0l22 135l465 526q113 136 162.5 225.5t64.5 174.5q19 120 -14.5 190t-112.5 70q-95 0 -160 -81t-86 -217h-192l-2 6q26 195 152 321.5t313 126.5q164 0 248.5 -113.5t55.5 -296.5q-22 -131 -99.5 -248t-219.5 -270l-317 -390l3 -5h524l-25 -154h-782z" />
<glyph unicode="3" horiz-adv-x="965" d="M68 392h200q-20 -120 21 -189.5t127 -69.5q87 0 151.5 70t85.5 197q22 142 -16 203.5t-138 61.5h-135l18 111l7 42h135q90 0 144.5 68t73.5 182q19 123 -14.5 188t-121.5 65q-75 0 -138 -68t-80 -177h-190l-2 6q24 176 145.5 285.5t285.5 109.5q167 0 256 -108.5 t59 -302.5q-17 -101 -79.5 -189t-159.5 -133q95 -43 132 -134.5t19 -207.5q-33 -205 -160.5 -314t-304.5 -109q-157 0 -255 109t-66 304z" />
<glyph unicode="4" horiz-adv-x="965" d="M47 342l17 114l701 1000h205l-192 -959h146l-31 -155h-146l-68 -342h-200l68 342h-500zM268 497h310l131 656l-6 2l-22 -34z" />
<glyph unicode="5" horiz-adv-x="965" d="M106 387l197 4q-21 -128 16.5 -193t117.5 -65q88 0 150 88.5t87 241.5q24 151 -10 237t-125 86q-76 0 -123 -38t-74 -111l-170 17l195 802h625l-27 -167h-458l-105 -432q41 38 90.5 62.5t107.5 26.5q166 2 238.5 -127.5t36.5 -353.5q-36 -225 -154 -355.5t-308 -130.5 q-151 0 -245 105.5t-62 302.5z" />
<glyph unicode="6" horiz-adv-x="965" d="M124 558l51 316q45 281 199 442t353 161q61 0 118 -17t99 -46l-62 -149q-37 27 -79 41t-100 14q-110 0 -202.5 -118.5t-123.5 -313.5l-5 -32q56 52 125 81.5t144 29.5q152 0 224 -137t38 -348q-37 -228 -162.5 -365.5t-298.5 -137.5t-267.5 154.5t-50.5 424.5zM322 546 q-33 -203 8.5 -308.5t135.5 -105.5q80 0 146.5 102.5t90.5 247.5q25 154 -10.5 245t-124.5 91q-70 0 -128 -37t-97 -100z" />
<glyph unicode="7" horiz-adv-x="965" d="M206 1300l25 156h813l-25 -156q-244 -277 -355.5 -528t-204.5 -633l-35 -139h-199l33 139q88 353 226 634.5t340 526.5h-618z" />
<glyph unicode="8" horiz-adv-x="965" d="M83 392q27 133 105 225t191 133q-80 45 -116 130.5t-13 195.5q40 204 157.5 302.5t284.5 98.5q151 0 236 -106.5t48 -294.5q-25 -123 -94 -208.5t-168 -125.5q90 -47 133 -139t20 -211q-43 -213 -168.5 -313t-304.5 -100q-166 0 -258.5 108t-52.5 305zM286 399 q-27 -133 11 -199.5t128 -66.5q79 0 149 72t95 194q25 128 -14 199.5t-124 71.5q-80 0 -151 -76.5t-94 -194.5zM450 1071q-24 -120 6.5 -183.5t106.5 -63.5q68 0 127.5 68t82.5 179q23 116 -8 183t-104 67q-70 0 -129.5 -68.5t-81.5 -181.5z" />
<glyph unicode="9" horiz-adv-x="965" d="M120 39l50 148q47 -29 96 -41.5t113 -12.5q99 0 182 103.5t114 294.5l10 63q-50 -68 -112.5 -102t-130.5 -34q-160 0 -238.5 136t-41.5 363q37 232 168.5 376t295.5 144q175 0 264 -145.5t47 -413.5l-61 -380q-44 -276 -186 -417.5t-335 -141.5q-57 0 -121 15.5 t-114 44.5zM363 957q-26 -160 6.5 -253.5t118.5 -93.5q70 0 128.5 45t96.5 116l27 167q31 196 -5 289.5t-131 93.5q-75 0 -146 -106t-95 -258z" />
<glyph unicode=":" horiz-adv-x="471" d="M50 0l41 203h201l-41 -203h-201zM226 878l41 203h201l-41 -203h-201z" />
<glyph unicode=";" horiz-adv-x="465" d="M-48 -271l117 302l37 183h187l-38 -190l-184 -295h-119zM222 879l41 203h201l-41 -203h-201z" />
<glyph unicode="&#x3c;" horiz-adv-x="866" d="M73 477l21 104l10 47l751 374l-38 -192l-518 -243l-65 -14v-6l59 -14l421 -240l-39 -192z" />
<glyph unicode="=" horiz-adv-x="967" d="M122 390l32 160h699l-32 -160h-699zM206 808l32 160h699l-32 -160h-699z" />
<glyph unicode="&#x3e;" horiz-adv-x="884" d="M47 101l38 189l539 247l64 13v6l-57 15l-442 243l38 188l623 -374l-9 -45l-12 -62l-9 -45z" />
<glyph unicode="?" horiz-adv-x="831" d="M187 1109q31 173 150 270.5t276 97.5q160 0 240.5 -106.5t45.5 -284.5q-28 -139 -102.5 -237.5t-197.5 -207.5q-56 -51 -77.5 -98t-38.5 -135h-201q27 133 65 190.5t147 151.5q85 91 134.5 163t69.5 170q22 117 -8 175t-109 58q-60 0 -120 -57.5t-80 -155.5h-192zM199 0 l40 198h205l-40 -198h-205z" />
<glyph unicode="@" horiz-adv-x="1569" d="M100 478q100 425 349 684.5t571 259.5q303 0 436 -249.5t37 -663.5q-51 -216 -179 -373t-321 -157q-62 0 -101 46t-42 129q-58 -87 -125 -130.5t-143 -43.5q-106 0 -146 121.5t13 314.5q72 255 201.5 409.5t270.5 154.5q86 0 142 -28t110 -79l-3 -3h4l-159 -577 q-30 -116 -16 -158t50 -35l6 -1q91 -5 178 113.5t131 296.5q90 376 -1 586t-370 210q-242 0 -453.5 -231t-295.5 -596q-90 -370 6.5 -590.5t359.5 -220.5q69 0 152.5 21.5t142.5 54.5l9 -107q-65 -42 -157 -65.5t-175 -23.5q-307 0 -444 253.5t-38 677.5zM587.5 194 q10.5 -79 70.5 -79q49 0 99.5 31.5t102.5 111.5q1 7 3 15l5 20l147 537q-19 11 -40.5 17t-46.5 6q-94 0 -174.5 -111t-138.5 -326q-38 -143 -27.5 -222z" />
<glyph unicode="A" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1z" />
<glyph unicode="B" horiz-adv-x="1083" d="M53 0l291 1456h391q185 0 281 -100q69 -72 69 -191q0 -47 -10 -101q-23 -111 -87.5 -188.5t-161.5 -111.5q108 -26 148 -123q25 -59 24 -131q0 -46 -10 -98q-43 -214 -169 -313t-322 -99h-444zM285 154h243q94 0 164.5 67.5t95.5 189.5q12 59 12 106q0 55 -18 93 q-32 68 -128 69h-264zM419 825h217q84 3 149.5 64.5t87.5 170.5q9 47 9 85q0 64 -26 99q-42 56 -152 56h-190z" />
<glyph unicode="C" horiz-adv-x="1077" d="M132 603l52 260q58 293 201 453.5t347 160.5q196 1 304 -135q86 -108 86 -274q0 -43 -6 -90h-199q5 44 5 82q0 106 -36 172q-50 90 -174 89q-108 0 -197.5 -128t-129.5 -328l-52 -262q-20 -99 -20 -180q-1 -95 27 -163q52 -128 178 -127q109 0 177.5 79t116.5 247h192 l2 -6q-58 -227 -182 -350.5t-323 -123.5q-195 0 -309 180q-77 122 -77 283q0 76 17 161z" />
<glyph unicode="D" horiz-adv-x="1110" d="M53 0l291 1456h351q211 0 336 -183q88 -129 88 -298q0 -72 -16 -152l-42 -207q-59 -297 -214 -456.5t-378 -159.5h-416zM285 154h209q130 0 227.5 126.5t139.5 335.5l42 210q16 81 16 150q0 113 -43 194q-69 130 -218 130h-144z" />
<glyph unicode="E" horiz-adv-x="981" d="M53 0l291 1456h788l-31 -156h-587l-94 -469h511l-31 -155h-511l-104 -522h593l-31 -154h-794z" />
<glyph unicode="F" horiz-adv-x="983" d="M53 0l291 1456h795l-31 -156h-594l-100 -498h511l-31 -155h-511l-129 -647h-201z" />
<glyph unicode="G" horiz-adv-x="1152" d="M118 514l86 432q53 270 204 400.5t367 130.5q199 0 296 -115q73 -86 73 -220q0 -45 -8 -94l-2 -5h-191q7 43 7 80q0 78 -32 127q-48 71 -171 71q-117 0 -212 -97t-130 -276l-87 -434q-16 -82 -16 -146q0 -91 33 -144q57 -91 194 -91q90 0 154 36.5t100 89.5l66 331h-231 l29 147h432l-106 -530q-65 -87 -186.5 -157.5t-288.5 -70.5q-205 0 -318 141q-78 98 -78 248q0 68 16 146z" />
<glyph unicode="H" horiz-adv-x="1198" d="M53 0l291 1456h201l-132 -659h521l132 659h199l-291 -1456h-199l128 642h-521l-128 -642h-201z" />
<glyph unicode="I" horiz-adv-x="502" d="M65 0l291 1456h200l-291 -1456h-200z" />
<glyph unicode="J" horiz-adv-x="954" d="M56 408h201q-14 -67 -14 -116q0 -60 20 -95q36 -64 124 -64q71 0 138.5 78t93.5 206l208 1039h200l-208 -1039q-43 -215 -168.5 -326.5t-294.5 -111.5q-167 0 -255 111q-59 74 -59 192q0 58 14 126z" />
<glyph unicode="K" horiz-adv-x="1027" d="M41 0l291 1456h201l-127 -632h116l433 632h260l-560 -724l284 -732h-230l-230 654h-107l-130 -654h-201z" />
<glyph unicode="L" horiz-adv-x="919" d="M53 0l291 1456h201l-260 -1302h538l-31 -154h-739z" />
<glyph unicode="M" horiz-adv-x="1423" d="M48 0l291 1456h258l79 -1186l6 -1l554 1187h259l-291 -1456h-199l112 559l126 541l-6 2l-546 -1102h-132l-105 1099h-6l-89 -540l-112 -559h-199z" />
<glyph unicode="N" horiz-adv-x="1199" d="M53 0l291 1456h201l302 -1065l6 1l212 1064h200l-291 -1456h-200l-301 1069l-6 -1l-213 -1068h-201z" />
<glyph unicode="O" horiz-adv-x="1152" d="M131 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183q82 -127 82 -293q0 -73 -16 -154l-50 -251q-59 -293 -213 -455t-372 -162q-200 -1 -314 181q-77 124 -78 287q0 76 17 160zM331 607q-18 -92 -18 -168q0 -101 33 -175q58 -126 191 -127q122 0 217 126t137 333 l51 253q17 86 17 158q1 107 -37 183q-62 127 -202 127q-117 0 -207 -125.5t-131 -330.5z" />
<glyph unicode="P" horiz-adv-x="1093" d="M53 0l291 1456h460q182 0 274 -124q66 -88 67 -210q0 -50 -12 -107q-42 -212 -174 -326.5t-331 -114.5h-259l-115 -574h-201zM400 730h259q99 0 174 82.5t99 200.5q11 53 11 98q0 65 -23 111q-38 78 -147 78h-259z" />
<glyph unicode="Q" horiz-adv-x="1167" d="M133 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183q82 -127 82 -293q0 -73 -16 -154l-50 -251q-33 -161 -95 -284t-149 -202l154 -220l-152 -111l-160 233q-43 -16 -89 -24.5t-94 -8.5q-201 0 -314 181q-78 124 -78 287q0 76 17 160zM333 607q-18 -92 -18 -168 q0 -103 33 -175q58 -127 191 -127q122 0 217 126t137 333l51 253q17 86 17 158q0 107 -37 183q-63 127 -202 127q-117 0 -207 -125.5t-131 -330.5z" />
<glyph unicode="R" horiz-adv-x="1118" d="M53 0l291 1455h435q185 0 277 -109q65 -77 66 -196q0 -50 -12 -109q-25 -123 -91.5 -206.5t-172.5 -128.5q93 -40 124 -128q17 -50 17 -111q0 -48 -10 -102l-25 -127q-14 -64 -14 -116v-10q2 -56 28 -89l-5 -23h-207q-23 29 -23 82q0 8 1 17q4 66 20 141l25 123 q10 52 10 93q-1 64 -23 104q-38 68 -128 67h-257l-125 -627h-201zM410 782h224q107 0 178.5 68t95.5 187q11 54 11 97q0 62 -23 100q-39 66 -148 66h-234z" />
<glyph unicode="S" horiz-adv-x="1034" d="M107 420l2 5h193q-11 -53 -10 -95q0 -89 46 -133q70 -64 185 -64q77 0 146.5 57.5t86.5 142.5q8 40 8 74q0 65 -29 108q-44 65 -178 132q-190 77 -272 181q-56 71 -56 181q0 51 12 111q34 173 158 265t297 92q190 0 292 -120q73 -86 73 -216q0 -52 -12 -112h-201 q9 46 9 85q0 76 -33 128q-50 79 -159 79q-77 0 -141.5 -58.5t-80.5 -140.5q-9 -43 -9 -79q0 -63 28 -102q42 -61 191 -132q185 -77 263 -182q52 -71 52 -180q0 -52 -12 -112q-36 -178 -160.5 -267t-303.5 -89q-187 -1 -311 107q-88 77 -88 214q0 55 14 120z" />
<glyph unicode="T" horiz-adv-x="979" d="M213 1300l31 156h904l-31 -156h-353l-260 -1300h-200l260 1300h-351z" />
<glyph unicode="U" horiz-adv-x="1115" d="M119 447l202 1009h198l-202 -1009q-13 -66 -14 -118q1 -78 31 -122q50 -74 163 -74q109 0 193.5 77.5t116.5 236.5l202 1009h200l-202 -1009q-48 -241 -192 -354.5t-349 -113.5q-184 1 -288 123q-72 85 -73 219q0 58 14 126z" />
<glyph unicode="V" horiz-adv-x="1080" d="M191 1456h213l96 -1134l6 -79l6 -1l31 79l460 1135h212l-649 -1456h-193z" />
<glyph unicode="W" horiz-adv-x="1487" d="M207 1456h196l20 -1023l6 -1l394 1024h159l70 -1024h6l346 1024h196l-511 -1456h-185l-67 1020l-6 1l-396 -1021h-184z" />
<glyph unicode="X" horiz-adv-x="1073" d="M-19 0l485 735l-243 721h234l149 -567l6 -1l332 568h236l-474 -721l256 -735h-240l-156 581h-6l-342 -581h-237z" />
<glyph unicode="Y" horiz-adv-x="1061" d="M233 1456h224l137 -694l6 -1l417 695h223l-594 -934l-104 -522h-199l108 539z" />
<glyph unicode="Z" horiz-adv-x="953" d="M18 0l2 125l745 1176h-515l31 155h743l-24 -121l-750 -1181h583l-31 -154h-784z" />
<glyph unicode="[" horiz-adv-x="495" d="M4 -319l319 1991h341l-25 -153h-138l-270 -1686h138l-24 -152h-341z" />
<glyph unicode="\" horiz-adv-x="715" d="M234 1456h194l175 -1581h-195z" />
<glyph unicode="]" horiz-adv-x="495" d="M-99 -319l24 152h141l270 1686h-141l25 153h344l-319 -1991h-344z" />
<glyph unicode="^" horiz-adv-x="734" d="M115 729l386 727h143l95 -727h-167l-45 444v42l-6 1l-17 -43l-220 -444h-169z" />
<glyph unicode="_" horiz-adv-x="769" d="M-100 -152l30 152h738l-30 -152h-738z" />
<glyph unicode="`" horiz-adv-x="580" d="M242 1477h230l118 -266h-166z" />
<glyph unicode="a" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q8 43 8 78q-1 50 -17 80q-28 52 -105 52q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96q57 -68 57 -173q0 -44 -10 -95l-101 -502q-13 -66 -17 -122q-2 -25 -2 -50 q0 -32 3 -64h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117t-149.5 -45q-121 0 -183 88q-42 60 -42 145q0 39 9 85zM261 298q-7 -32 -6 -58q0 -36 13 -62q23 -42 84 -43q61 0 124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144z" />
<glyph unicode="b" d="M29 0l312 1560h201l-113 -560q49 50 107 76t124 26q154 0 222 -168q39 -96 39 -221q0 -93 -22 -202l-4 -21q-52 -257 -156.5 -384t-269.5 -127q-73 0 -131 40.5t-93 112.5l-42 -132h-174zM282 261q15 -60 55 -92.5t106 -32.5q94 0 155.5 92.5t96.5 261.5l4 21 q24 121 24 212q0 58 -10 104q-25 117 -128 117q-58 0 -108.5 -44.5t-90.5 -117.5z" />
<glyph unicode="c" horiz-adv-x="889" d="M80 465l24 149q35 219 158.5 353.5t318.5 134.5q152 0 235 -111q62 -83 62 -203q0 -40 -7 -85h-187q6 38 6 71q0 64 -23 106q-35 66 -111 66q-104 0 -166.5 -95t-84.5 -237l-24 -149q-11 -68 -10 -124q-1 -68 15 -118q30 -90 140 -90q68 0 127 58.5t75 156.5h179l2 -6 q-23 -159 -140.5 -261t-266.5 -102q-186 1 -270 139q-61 100 -61 235q0 53 9 112z" />
<glyph unicode="d" d="M98 527l5 21q55 277 163 415.5t273 138.5q67 0 122 -32.5t91 -92.5l117 583h200l-312 -1560h-175l8 96q-52 -58 -114 -87.5t-132 -29.5q-150 0 -222 157q-43 95 -43 217q0 81 19 174zM291 241q29 -105 129 -105q55 0 104 39t89 107l106 530q-17 61 -55.5 96.5t-98.5 35.5 q-92 0 -158.5 -107.5t-102.5 -288.5l-5 -21q-21 -101 -21 -179q0 -61 13 -107z" />
<glyph unicode="e" horiz-adv-x="899" d="M87 456l25 158q35 220 163.5 354t297.5 134t247 -127q54 -89 55 -218q0 -55 -10 -118l-22 -140h-550l-7 -43q-9 -53 -9 -99q0 -79 27 -135q42 -88 150 -89q77 0 140 27t122 77l43 -126q-58 -58 -146 -95t-196 -37q-178 0 -271 135q-68 99 -68 236q0 51 9 106zM316 644 h351l7 41q7 46 7 84q-1 62 -19 106q-30 71 -114 71q-78 0 -141.5 -86t-90.5 -216z" />
<glyph unicode="f" horiz-adv-x="607" d="M97 0l187 937h-133l29 145h133l28 139q37 184 132.5 272t242.5 88q26 0 55 -6t63 -15l-49 -149q-15 5 -34.5 8t-42.5 3q-59 0 -103 -53t-63 -148l-28 -139h177l-29 -145h-177l-187 -937h-201z" />
<glyph unicode="g" d="M15 -359l73 152q42 -31 96.5 -48.5t116.5 -17.5q97 0 166 78.5t97 214.5l11 55q-49 -48 -106 -72t-121 -24q-151 0 -224 157q-44 96 -44 220q0 80 18 171l5 21q54 276 163.5 415t275.5 139q74 0 132 -37t92 -105l38 122h173l-212 -1063q-46 -224 -173.5 -340t-320.5 -116 q-61 0 -133.5 21.5t-122.5 56.5zM292 242q30 -106 131 -106q57 0 105.5 37.5t87.5 105.5l107 536q-17 60 -55.5 94.5t-99.5 34.5q-92 0 -160 -108t-104 -288l-5 -21q-20 -99 -20 -175q0 -63 13 -110z" />
<glyph unicode="h" d="M26 0l312 1560h201l-121 -602l5 -4q52 71 121 109.5t146 38.5q130 0 190 -110q35 -63 34 -163q0 -74 -18 -167l-132 -662h-201l133 664q17 86 17 143q-1 49 -13 77q-28 60 -109 60q-54 0 -107 -37t-96 -100l-161 -807h-201z" />
<glyph unicode="i" horiz-adv-x="455" d="M42 0l216 1082h200l-216 -1082h-200zM315 1366l39 194h200l-39 -194h-200z" />
<glyph unicode="j" horiz-adv-x="459" d="M-222 -419l42 155q15 -6 33.5 -10t34.5 -4q47 0 87 51.5t60 152.5l231 1156h200l-231 -1156q-38 -185 -129 -274t-229 -89q-26 0 -49.5 4.5t-49.5 13.5zM319 1369l38 191h201l-38 -191h-201z" />
<glyph unicode="k" horiz-adv-x="893" d="M30 0l312 1560h200l-182 -909h78l305 431h227l3 -5l-388 -481l220 -596h-233l-163 496h-80l-99 -496h-200z" />
<glyph unicode="l" horiz-adv-x="455" d="M42 0l312 1560h200l-312 -1560h-200z" />
<glyph unicode="m" horiz-adv-x="1462" d="M30 0l216 1082h183l-17 -136q56 76 128.5 116t159.5 40q77 0 128.5 -49t65.5 -146q58 93 135 144t170 51q123 0 179 -116q31 -64 32 -163q0 -79 -20 -180l-129 -643h-201l129 644q21 106 21 171q0 43 -10 68q-24 61 -101 61q-59 0 -113.5 -54.5t-93.5 -141.5 q-4 -28 -6 -41.5t-5 -28.5l-136 -678h-200l129 644q20 100 20 163q0 46 -10 73q-24 64 -101 64q-56 0 -105 -38t-89 -104l-160 -802h-199z" />
<glyph unicode="n" d="M27 0l216 1082h184l-19 -149q59 82 132.5 125.5t156.5 43.5q127 0 185 -107q33 -61 34 -159q0 -72 -19 -165l-134 -671h-201l134 669q17 87 17 143q-1 48 -13 75q-26 57 -110 57q-54 0 -106.5 -39.5t-96.5 -107.5l-159 -797h-201z" />
<glyph unicode="o" d="M83 471l22 138q35 224 163 358.5t318 134.5q179 0 268 -140q64 -101 65 -241q0 -53 -10 -112l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-180 0 -270 139q-64 100 -65 239q0 54 10 114zM283 471q-10 -64 -11 -118q0 -75 21 -128q35 -92 139 -92q96 0 163 96t91 242 l22 138q10 62 10 114q0 75 -20 130q-34 93 -137 93q-99 0 -166 -96t-90 -241z" />
<glyph unicode="p" d="M-54 -416l299 1498h180l-9 -94q50 56 111.5 85t131.5 29q152 0 221 -170q39 -98 39 -225q0 -92 -21 -199l-5 -21q-51 -255 -156 -381.5t-268 -126.5q-71 0 -127 30t-93 86l-102 -511h-201zM279 246q17 -55 55.5 -84t102.5 -29q92 0 157 94.5t98 259.5l5 21q23 113 23 201 q0 64 -12 115q-29 120 -129 120q-54 0 -102.5 -40t-87.5 -107z" />
<glyph unicode="q" d="M98 527l5 21q55 277 163 415.5t273 138.5q71 0 127.5 -34t91.5 -97l36 111h174l-299 -1498h-201l99 495q-49 -49 -105 -74.5t-118 -25.5q-150 0 -222 157q-43 95 -43 217q0 81 19 174zM291 240q29 -107 129 -107q53 0 99.5 35t84.5 98l113 564q-18 54 -56 85t-96 31 q-92 0 -158.5 -108.5t-102.5 -289.5l-5 -21q-21 -101 -21 -180q0 -61 13 -107z" />
<glyph unicode="r" horiz-adv-x="616" d="M29 0l216 1082h183l-15 -144l5 -3q45 79 104 123t127 44q18 0 37.5 -3t31.5 -9l-60 -179l-91 5q-54 0 -100.5 -39t-82.5 -109l-154 -768h-201z" />
<glyph unicode="s" horiz-adv-x="860" d="M51 319l2 5h188q-3 -26 -3 -48q0 -68 32 -104q42 -46 117 -46q70 0 118.5 41t59.5 104q2 16 2 30q0 45 -23 77q-31 42 -131 95q-149 64 -215 138q-51 57 -51 141q0 24 4 50q21 129 128.5 214.5t262.5 85.5q153 0 236 -96q63 -73 63 -171q0 -31 -6 -64l-2 -5h-193 q3 22 3 43q0 52 -22 91q-31 54 -102 54q-67 0 -115.5 -44t-56.5 -100q-3 -18 -3 -34q0 -40 20 -64q28 -34 133 -94q153 -60 219 -138q51 -60 51 -147q0 -25 -4 -52q-23 -139 -132 -220.5t-270 -81.5q-165 0 -251 103q-65 78 -65 175q0 30 6 62z" />
<glyph unicode="t" horiz-adv-x="612" d="M137 937l29 145h133l54 269h200l-54 -269h159l-29 -145h-159l-128 -644q-10 -48 -9 -79q0 -28 7 -44q16 -32 55 -32q21 0 42 3t48 9l-8 -140q-36 -14 -78 -22.5t-86 -8.5q-105 1 -155 77q-30 46 -29 122q0 51 13 115l128 644h-133z" />
<glyph unicode="u" d="M114 443l127 639h200l-128 -641q-22 -109 -22 -175q0 -42 9 -66q23 -64 98 -64q66 0 121 36.5t98 103.5l161 806h201l-216 -1082h-179l15 133q-57 -76 -127.5 -115t-153.5 -39q-131 0 -191 115q-34 64 -34 166q0 80 21 183z" />
<glyph unicode="v" horiz-adv-x="863" d="M140 1082h208l52 -757l2 -76h6l27 76l292 757h207l-481 -1082h-177z" />
<glyph unicode="w" horiz-adv-x="1256" d="M174 1082h191l-7 -711l6 -2l321 713h144l38 -719l6 -1l276 720h192l-452 -1082h-164l-39 708l-6 2l-321 -710h-166z" />
<glyph unicode="x" horiz-adv-x="863" d="M-32 0l368 548l-187 534h227l89 -394l6 -1l220 395h229l-357 -534l193 -548h-228l-98 407l-6 1l-228 -408h-228z" />
<glyph unicode="y" horiz-adv-x="863" d="M-77 -419l52 150q11 -2 28.5 -4t27.5 -2q51 0 96.5 52.5t75.5 117.5l55 108l-102 1079h218l23 -709l1 -60l6 -1l346 770h218l-610 -1250q-57 -111 -135.5 -190t-195.5 -79q-23 0 -50.5 5.5t-53.5 12.5z" />
<glyph unicode="z" horiz-adv-x="836" d="M-7 0l26 128l607 797h-440l31 157h660l-25 -126l-613 -802h472l-31 -154h-687z" />
<glyph unicode="{" horiz-adv-x="578" d="M73 541l18 116l5 30q75 0 124.5 62.5t67.5 173.5l34 215q28 177 112 292.5t248 166.5l6 -1l19 -107q-83 -36 -129.5 -126.5t-67.5 -224.5l-34 -215q-18 -111 -69.5 -191t-136.5 -121q69 -44 96 -125t11 -183l-34 -212q-23 -139 -5.5 -225.5t91.5 -123.5l-59 -115 q-148 55 -195.5 175t-19.5 289l34 212q18 116 -9.5 177t-106.5 61z" />
<glyph unicode="|" horiz-adv-x="440" d="M40 -270l276 1726h135l-276 -1726h-135z" />
<glyph unicode="}" horiz-adv-x="578" d="M-77 -264q83 37 130 126.5t70 222.5l34 212q17 113 69.5 193t141.5 119q-74 41 -101.5 121.5t-10.5 186.5l34 215q22 138 3.5 226t-90.5 125l58 114q147 -55 194.5 -174.5t20.5 -290.5l-34 -215q-19 -117 8.5 -176.5t107.5 -59.5l-6 -37l-17 -109q-76 0 -125.5 -64 t-66.5 -174l-34 -212q-29 -175 -113 -291t-247 -167l-6 1z" />
<glyph unicode="~" horiz-adv-x="1119" d="M112 466q23 147 106.5 242t192.5 95q65 0 122.5 -36.5t110.5 -104.5q33 -52 63.5 -75t69.5 -23q45 0 88.5 58.5t57.5 142.5l138 -20q-24 -147 -110 -245t-193 -98q-68 0 -122.5 34.5t-108.5 107.5q-35 50 -66 74t-69 24q-45 0 -88.5 -56.5t-56.5 -139.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="467" d="M-32 -374l194 970h201l-194 -970h-201zM217 869l42 213h201l-42 -213h-201z" />
<glyph unicode="&#xa2;" horiz-adv-x="957" d="M101 465l24 149q31 201 139 332t278 152l45 220h161l-47 -231q108 -34 161 -137t30 -247h-187q18 112 -17 177.5t-111 65.5q-104 0 -166.5 -95t-84.5 -237l-24 -149q-24 -152 5.5 -242t139.5 -90q68 0 127 58.5t75 156.5h179l3 -6q-21 -143 -120 -241t-231 -117l-45 -229 h-161l47 237q-134 37 -191 166.5t-29 306.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="998" d="M46 0l31 154h6q41 13 80 112.5t61 206.5l24 145h-130l30 155h126l45 263q44 219 158.5 330t275.5 111q157 0 234 -109.5t42 -285.5h-201q26 131 -5.5 185t-100.5 54q-63 0 -119.5 -76t-82.5 -209l-44 -263h308l-30 -155h-304l-23 -141q-20 -98 -59 -181t-93 -142h597 l-31 -154h-795z" />
<glyph unicode="&#xa4;" horiz-adv-x="1240" d="M23 92l158 152q-32 79 -39 171.5t14 192.5q21 112 65.5 209t107.5 176l-95 151l139 120l89 -142q74 54 156.5 83t166.5 29q77 0 145.5 -33t122.5 -92l159 156l91 -121l-170 -165q32 -80 40 -174.5t-12 -196.5q-22 -107 -63.5 -200.5t-98.5 -170.5l93 -145l-138 -119 l-83 132q-77 -61 -163 -93t-174 -32q-81 0 -152 34.5t-124 98.5l-143 -139zM307 608q-43 -211 32.5 -343t225.5 -132q136 0 271.5 140t174.5 335q41 209 -34 340.5t-223 131.5q-137 0 -273 -140t-174 -332z" />
<glyph unicode="&#xa5;" horiz-adv-x="1032" d="M96 284l31 155h286l26 132h-286l31 155h241l-185 730h223l129 -621l6 -1l378 622h223l-478 -730h232l-31 -155h-282l-26 -132h282l-31 -155h-282l-57 -284h-201l57 284h-286z" />
<glyph unicode="&#xa6;" horiz-adv-x="436" d="M-18 -270l157 784h188l-157 -784h-188zM176 698l151 758h188l-151 -758h-188z" />
<glyph unicode="&#xa7;" horiz-adv-x="1052" d="M-10 -56l200 2q-31 -155 22.5 -215t153.5 -60q90 0 160 59.5t89 149.5q18 95 -23 142.5t-182 106.5q-183 63 -257.5 154t-40.5 263q19 97 72.5 166t135.5 108q-53 50 -70.5 119.5t3.5 169.5q35 177 163.5 272.5t318.5 95.5q180 0 272 -114.5t52 -315.5h-200 q25 125 -14.5 199.5t-140.5 74.5q-97 0 -165 -60t-85 -150q-21 -103 17.5 -149.5t184.5 -104.5q186 -66 259.5 -154.5t40.5 -258.5q-20 -99 -73.5 -167t-135.5 -106q53 -50 70.5 -119t-1.5 -170q-37 -183 -163.5 -274.5t-317.5 -91.5q-173 0 -281 103.5t-64 324.5zM315 556 q-22 -107 16 -154.5t184 -109.5q27 -10 51.5 -20t47.5 -19q53 22 91 70t51 111q19 98 -23 149t-182 114q-32 10 -57.5 20t-46.5 21q-51 -23 -85.5 -71t-46.5 -111z" />
<glyph unicode="&#xa8;" horiz-adv-x="914" d="M283 1271l30 185h202l-30 -185h-202zM693 1271l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xa9;" horiz-adv-x="1383" d="M135 729q52 327 258.5 537t459.5 210q239 0 384 -217.5t96 -529.5q-53 -328 -260.5 -539t-458.5 -211q-240 0 -385 218.5t-94 531.5zM235 729q-46 -281 70 -462t326 -181q199 0 379 187.5t223 455.5q44 279 -72 458.5t-325 179.5q-200 0 -379.5 -186.5t-221.5 -451.5z M419 669l19 119q28 179 123.5 283t232.5 104q126 0 190.5 -81.5t41.5 -232.5h-127q16 106 -15 152t-109 46q-77 0 -134.5 -76t-76.5 -194l-19 -120q-21 -128 11 -200t114 -72q74 0 121.5 47.5t63.5 151.5h119l2 -6q-22 -156 -107 -232t-218 -76q-130 0 -195 107.5t-37 279.5 z" />
<glyph unicode="&#xaa;" horiz-adv-x="762" d="M205 920q23 115 101 170.5t212 55.5h108l12 56q15 75 -1 112t-62 37q-50 0 -88 -32t-49 -88l-127 12l-2 6q17 104 96.5 166t194.5 62q101 0 153 -72.5t26 -203.5l-63 -314q-11 -54 -15 -96.5t-1 -84.5h-141q-2 24 -1.5 48.5t3.5 49.5q-37 -49 -88 -80.5t-113 -31.5 q-89 0 -132.5 62.5t-22.5 165.5zM346 924q-12 -56 6 -83t67 -27q37 0 88 33t74 72l25 124h-108q-57 0 -100 -35.5t-52 -83.5z" />
<glyph unicode="&#xab;" horiz-adv-x="831" d="M98 508l1 6l1 7l1 6l308 384h136l-277 -395l120 -393h-136zM392 508l1 6l1 7l1 6l308 384h136l-277 -395l120 -393h-136z" />
<glyph unicode="&#xac;" horiz-adv-x="938" d="M160 649l28 143h672l-28 -143h-1l-53 -271h-159l53 271h-512z" />
<glyph unicode="&#xad;" horiz-adv-x="584" d="M99 542l31 155h427l-31 -155h-427z" />
<glyph unicode="&#xae;" horiz-adv-x="1384" d="M134 729q52 327 259 537t460 210q239 0 384 -217.5t96 -529.5q-53 -328 -260.5 -539t-458.5 -211q-240 0 -385.5 218.5t-94.5 531.5zM234 729q-46 -281 70 -462t327 -181q199 0 378.5 187.5t222.5 455.5q44 279 -71.5 458.5t-324.5 179.5q-201 0 -380.5 -186.5 t-221.5 -451.5zM421 316l136 850h236q123 0 187 -66t45 -189q-11 -65 -46.5 -111.5t-95.5 -76.5q51 -28 68.5 -81.5t6.5 -126.5l-9 -56q-7 -43 -9 -74.5t2 -52.5l-2 -16h-126q-4 22 0.5 63.5t11.5 80.5l8 54q12 79 -10 112.5t-88 33.5h-136l-55 -344h-124zM618 776h123 q59 0 104.5 35t55.5 97q13 80 -15 111.5t-112 31.5h-112z" />
<glyph unicode="&#xaf;" horiz-adv-x="857" d="M268 1324l21 132h610l-21 -132h-610z" />
<glyph unicode="&#xb0;" horiz-adv-x="685" d="M279 1216q22 113 102 187t173 74q84 0 136.5 -78.5t31.5 -182.5q-23 -115 -101 -186t-170 -71q-86 0 -140 75.5t-32 181.5zM394 1216q-13 -63 10.5 -100.5t70.5 -37.5q41 0 80.5 39.5t51.5 98.5q13 64 -9.5 102.5t-67.5 38.5q-43 0 -84 -41t-52 -100z" />
<glyph unicode="&#xb1;" horiz-adv-x="953" d="M63 21l31 155h673l-31 -155h-673zM137 716l25 157h301l66 407h180l-66 -407h292l-25 -157h-292l-66 -414h-180l66 414h-301z" />
<glyph unicode="&#xb2;" horiz-adv-x="723" d="M157 667l24 121l301 267q64 60 87.5 99t32.5 84q11 56 -3 87t-58 31q-45 0 -79.5 -36t-44.5 -90h-147l-2 6q16 107 98 175t201 68q105 0 158.5 -64t31.5 -178q-17 -84 -67.5 -141t-169.5 -159l-142 -143l3 -6h291l-24 -121h-491z" />
<glyph unicode="&#xb3;" horiz-adv-x="724" d="M188 886l2 5h149q-12 -55 9.5 -85t72.5 -30q47 0 85 31.5t49 84.5q13 68 -9 96.5t-79 28.5h-98l16 79l7 34h98q48 0 80.5 30.5t43.5 84.5q10 51 -9 80.5t-69 29.5q-41 0 -74 -28t-41 -72h-145l-2 6q16 104 96 160.5t188 56.5q111 0 172.5 -60.5t40.5 -167.5 q-12 -61 -50.5 -106.5t-94.5 -69.5q51 -24 73.5 -72t9.5 -114q-24 -118 -106.5 -175.5t-204.5 -57.5q-105 0 -171 59.5t-39 171.5z" />
<glyph unicode="&#xb4;" horiz-adv-x="605" d="M237 1212l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xb5;" horiz-adv-x="1007" d="M-38 -416l299 1498h200l-125 -626q-40 -199 -13.5 -260.5t107.5 -61.5q66 0 118.5 38t90.5 109l160 801h200l-216 -1082h-184l10 77q-45 -49 -98 -73.5t-114 -24.5q-46 0 -82.5 16t-60.5 49l-92 -460h-200z" />
<glyph unicode="&#xb6;" horiz-adv-x="868" d="M176 988q43 220 170.5 344t318.5 124h268l-291 -1456h-201l104 520h-67q-175 0 -259 132t-43 336z" />
<glyph unicode="&#xb7;" horiz-adv-x="496" d="M177 606l43 214h200l-43 -214h-200z" />
<glyph unicode="&#xb8;" horiz-adv-x="454" d="M-54 -435l16 106q45 0 81 25.5t46 75.5q10 53 -12 71t-88 25l51 134h148l-21 -58q50 -10 76 -51t10 -121q-21 -104 -99 -158t-203 -52z" />
<glyph unicode="&#xb9;" horiz-adv-x="482" d="M244 665l133 666l-102 -3l25 126l263 23l-162 -812h-157z" />
<glyph unicode="&#xba;" horiz-adv-x="779" d="M228 1026l23 117q32 156 124 245t222 89q119 0 180 -95t32 -239l-23 -117q-32 -158 -123.5 -246t-220.5 -88q-120 0 -182 94t-32 240zM369 1026q-20 -100 4 -155.5t94 -55.5q61 0 110.5 59.5t68.5 151.5l23 117q20 96 -4.5 152t-92.5 56q-62 0 -112 -60t-68 -148z" />
<glyph unicode="&#xbb;" horiz-adv-x="831" d="M31 155l276 395l-118 396h136l154 -386l-2 -6h1l-3 -13l-308 -386h-136zM337 155l276 395l-118 396h136l154 -386l-2 -6h1l-3 -13l-308 -386h-136z" />
<glyph unicode="&#xbc;" horiz-adv-x="1267" d="M198 184l801 1138l89 -63l-799 -1138zM284 664l133 666l-102 -3l25 126l263 23l-162 -812h-157zM568 155l11 95l450 551h156l-105 -524h91l-24 -122h-91l-31 -155h-155l31 155h-333zM745 277h180l63 316l-5 3l-12 -16z" />
<glyph unicode="&#xbd;" horiz-adv-x="1335" d="M201 184l801 1138l89 -63l-799 -1138zM277 664l133 666l-102 -3l25 126l263 23l-162 -812h-157zM639 0l24 121l301 267q64 60 87.5 99t32.5 84q11 56 -3 87t-58 31q-45 0 -79.5 -36t-44.5 -90h-147l-2 6q16 107 98 175t201 68q105 0 158.5 -64t31.5 -178 q-17 -84 -67.5 -141t-169.5 -159l-142 -143l3 -6h291l-24 -121h-491z" />
<glyph unicode="&#xbe;" horiz-adv-x="1429" d="M190 887l2 5h149q-12 -55 9.5 -85t72.5 -30q47 0 85 31.5t49 84.5q13 68 -9 96.5t-79 28.5h-98l16 79l7 34h98q48 0 80.5 30.5t43.5 84.5q10 51 -9 80.5t-69 29.5q-41 0 -74 -28t-41 -72h-145l-2 6q16 104 96 160.5t188 56.5q111 0 172.5 -60.5t40.5 -167.5 q-12 -61 -50.5 -106.5t-94.5 -69.5q51 -24 73.5 -72t9.5 -114q-24 -118 -106.5 -175.5t-204.5 -57.5q-105 0 -171 59.5t-39 171.5zM360 184l801 1138l89 -63l-799 -1138zM719 155l11 95l450 551h156l-105 -524h91l-24 -122h-91l-31 -155h-155l31 155h-333zM896 277h180 l63 316l-5 3l-12 -16z" />
<glyph unicode="&#xbf;" horiz-adv-x="853" d="M2 -3q27 137 101 235t197 208q56 50 77.5 96.5t40.5 136.5h201q-29 -134 -67 -192t-147 -150q-85 -91 -134 -163t-68 -168q-24 -117 5.5 -175t109.5 -58q60 0 120.5 57t81.5 156h192l2 -6q-33 -173 -152.5 -270.5t-275.5 -97.5q-160 0 -239.5 106.5t-44.5 284.5zM457 883 l39 199h204l-39 -199h-204z" />
<glyph unicode="&#xc0;" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1zM548 1827h230l118 -266h-166z" />
<glyph unicode="&#xc1;" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1zM698 1558l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xc2;" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1zM530 1599l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xc3;" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1zM517 1630q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61q-54 0 -114.5 49t-102.5 49q-30 0 -57.5 -34 t-34.5 -82z" />
<glyph unicode="&#xc4;" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1zM501 1617l30 185h202l-30 -185h-202zM911 1617l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xc5;" horiz-adv-x="1098" d="M-54 0l717 1456h193l131 -1456h-203l-27 368h-434l-174 -368h-203zM400 529h345l-44 620l-6 1zM656 1734q16 83 76.5 133.5t135.5 50.5q67 0 109 -54t27 -130q-17 -85 -76 -133t-133 -48q-69 0 -112 51.5t-27 129.5zM747 1734q-9 -44 10 -70t55 -26q33 0 62 27t38 69 q9 46 -8 72.5t-53 26.5q-33 0 -64.5 -28.5t-39.5 -70.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1576" d="M-79 0l959 1456h801l-31 -157h-516l-78 -467h434l-31 -155h-429l-87 -522h527l-31 -155h-722l60 361h-389l-228 -361h-239zM495 531h310l109 652l-5 2z" />
<glyph unicode="&#xc7;" horiz-adv-x="1041" d="M132 603l52 260q58 293 201 453.5t347 160.5q196 0 304 -135.5t80 -363.5h-199q18 164 -31.5 253.5t-173.5 89.5q-108 0 -197.5 -128t-129.5 -328l-52 -262q-44 -215 7.5 -342.5t177.5 -127.5q109 0 177.5 79t116.5 247h192l2 -6q-58 -227 -182 -350.5t-323 -123.5 q-196 0 -309.5 180t-59.5 444zM284 -440l16 106q45 0 81 25.5t46 75.5q10 53 -12 71t-88 25l51 134h148l-21 -58q50 -10 76 -51t10 -121q-21 -104 -99 -158t-203 -52z" />
<glyph unicode="&#xc8;" horiz-adv-x="981" d="M53 0l291 1456h788l-31 -156h-587l-94 -469h511l-31 -155h-511l-104 -522h593l-31 -154h-794zM487 1827h230l118 -266h-166z" />
<glyph unicode="&#xc9;" horiz-adv-x="981" d="M53 0l291 1456h788l-31 -156h-587l-94 -469h511l-31 -155h-511l-104 -522h593l-31 -154h-794zM637 1558l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xca;" horiz-adv-x="981" d="M53 0l291 1456h788l-31 -156h-587l-94 -469h511l-31 -155h-511l-104 -522h593l-31 -154h-794zM469 1599l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xcb;" horiz-adv-x="981" d="M53 0l291 1456h788l-31 -156h-587l-94 -469h511l-31 -155h-511l-104 -522h593l-31 -154h-794zM440 1617l30 185h202l-30 -185h-202zM850 1617l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xcc;" horiz-adv-x="502" d="M65 0l291 1456h200l-291 -1456h-200zM231 1827h230l118 -266h-166z" />
<glyph unicode="&#xcd;" horiz-adv-x="502" d="M65 0l291 1456h200l-291 -1456h-200zM379 1558l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xce;" horiz-adv-x="502" d="M65 0l291 1456h200l-291 -1456h-200zM213 1599l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xcf;" horiz-adv-x="502" d="M65 0l291 1456h200l-291 -1456h-200zM184 1617l30 185h202l-30 -185h-202zM594 1617l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xd0;" horiz-adv-x="1140" d="M83 0l134 670h-120l28 141h120l129 645h351q211 0 336 -183t72 -450l-42 -207q-59 -297 -214 -456.5t-378 -159.5h-416zM315 154h209q130 0 227.5 126.5t139.5 335.5l42 210q42 214 -27 344t-218 130h-144l-98 -489h210l-28 -141h-210z" />
<glyph unicode="&#xd1;" horiz-adv-x="1199" d="M53 0l291 1456h201l302 -1065l6 1l212 1064h200l-291 -1456h-200l-301 1069l-6 -1l-213 -1068h-201zM546 1630q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61q-54 0 -114.5 49t-102.5 49 q-30 0 -57.5 -34t-34.5 -82z" />
<glyph unicode="&#xd2;" horiz-adv-x="1115" d="M131 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183t66 -447l-50 -251q-59 -293 -213 -455t-372 -162q-201 0 -314.5 181.5t-60.5 446.5zM331 607q-43 -217 15 -343.5t191 -126.5q122 0 217 126t137 333l51 253q42 214 -20.5 341t-201.5 127q-117 0 -207 -125.5 t-131 -330.5zM541 1848h230l118 -266h-166z" />
<glyph unicode="&#xd3;" horiz-adv-x="1115" d="M131 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183t66 -447l-50 -251q-59 -293 -213 -455t-372 -162q-201 0 -314.5 181.5t-60.5 446.5zM331 607q-43 -217 15 -343.5t191 -126.5q122 0 217 126t137 333l51 253q42 214 -20.5 341t-201.5 127q-117 0 -207 -125.5 t-131 -330.5zM691 1579l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xd4;" horiz-adv-x="1115" d="M131 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183t66 -447l-50 -251q-59 -293 -213 -455t-372 -162q-201 0 -314.5 181.5t-60.5 446.5zM331 607q-43 -217 15 -343.5t191 -126.5q122 0 217 126t137 333l51 253q42 214 -20.5 341t-201.5 127q-117 0 -207 -125.5 t-131 -330.5zM523 1620l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xd5;" horiz-adv-x="1115" d="M131 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183t66 -447l-50 -251q-59 -293 -213 -455t-372 -162q-201 0 -314.5 181.5t-60.5 446.5zM331 607q-43 -217 15 -343.5t191 -126.5q122 0 217 126t137 333l51 253q42 214 -20.5 341t-201.5 127q-117 0 -207 -125.5 t-131 -330.5zM510 1651q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61q-54 0 -114.5 49t-102.5 49q-30 0 -57.5 -34t-34.5 -82z" />
<glyph unicode="&#xd6;" horiz-adv-x="1115" d="M131 607l51 252q58 293 207 455.5t363 162.5q205 0 323 -183t66 -447l-50 -251q-59 -293 -213 -455t-372 -162q-201 0 -314.5 181.5t-60.5 446.5zM331 607q-43 -217 15 -343.5t191 -126.5q122 0 217 126t137 333l51 253q42 214 -20.5 341t-201.5 127q-117 0 -207 -125.5 t-131 -330.5zM494 1638l30 185h202l-30 -185h-202zM904 1638l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xd7;" horiz-adv-x="945" d="M61 344l347 338l-211 337l147 119l202 -322l331 322l99 -119l-346 -337l213 -338l-147 -119l-204 323l-332 -323z" />
<glyph unicode="&#xd8;" horiz-adv-x="1157" d="M47 -90l133 196q-58 72 -76.5 178.5t9.5 242.5l80 400q55 275 205.5 412.5t366.5 137.5q81 0 150.5 -27t120.5 -78l95 140h118l-153 -226q34 -71 42.5 -161.5t-12.5 -197.5l-80 -400q-56 -276 -208.5 -412t-371.5 -136q-62 0 -116 15t-98 45l-87 -129h-118zM292.5 391 q-2.5 -59 7.5 -96l6 -2l619 914q-23 56 -71.5 83t-120.5 27q-119 0 -211.5 -100.5t-129.5 -286.5l-81 -403q-16 -77 -18.5 -136zM351 185q25 -25 61.5 -36.5t84.5 -11.5q122 0 216.5 100.5t132.5 289.5l81 403q7 35 11 66t4 52l-5 2z" />
<glyph unicode="&#xd9;" horiz-adv-x="1115" d="M119 447l202 1009h198l-202 -1009q-33 -166 16.5 -240t163.5 -74q109 0 193.5 77.5t116.5 236.5l202 1009h200l-202 -1009q-48 -241 -192 -354.5t-349 -113.5q-185 0 -288.5 122.5t-58.5 345.5zM537 1827h230l118 -266h-166z" />
<glyph unicode="&#xda;" horiz-adv-x="1115" d="M119 447l202 1009h198l-202 -1009q-33 -166 16.5 -240t163.5 -74q109 0 193.5 77.5t116.5 236.5l202 1009h200l-202 -1009q-48 -241 -192 -354.5t-349 -113.5q-185 0 -288.5 122.5t-58.5 345.5zM687 1558l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xdb;" horiz-adv-x="1115" d="M119 447l202 1009h198l-202 -1009q-33 -166 16.5 -240t163.5 -74q109 0 193.5 77.5t116.5 236.5l202 1009h200l-202 -1009q-48 -241 -192 -354.5t-349 -113.5q-185 0 -288.5 122.5t-58.5 345.5zM519 1599l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z " />
<glyph unicode="&#xdc;" horiz-adv-x="1115" d="M119 447l202 1009h198l-202 -1009q-33 -166 16.5 -240t163.5 -74q109 0 193.5 77.5t116.5 236.5l202 1009h200l-202 -1009q-48 -241 -192 -354.5t-349 -113.5q-185 0 -288.5 122.5t-58.5 345.5zM490 1617l30 185h202l-30 -185h-202zM900 1617l30 185h202l-30 -185h-202z " />
<glyph unicode="&#xdd;" horiz-adv-x="1061" d="M233 1456h224l137 -694l6 -1l417 695h223l-594 -934l-104 -522h-199l108 539zM662 1554l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xde;" horiz-adv-x="1016" d="M45 0l291 1456h201l-58 -290h196q183 0 275 -121.5t56 -306.5q-41 -204 -171.5 -316.5t-330.5 -112.5h-196l-62 -309h-201zM339 464h196q100 0 173.5 80.5t95.5 191.5q24 121 -13.5 198t-146.5 77h-196z" />
<glyph unicode="&#xdf;" horiz-adv-x="1042" d="M37 0l218 1088q45 230 165.5 342.5t290.5 112.5q129 0 205 -87.5t45 -245.5q-25 -123 -92 -223t-80 -166q-17 -85 84 -223.5t74 -277.5q-37 -182 -139 -261.5t-267 -79.5q-61 0 -126.5 20t-90.5 50l70 154q28 -28 72 -49.5t95 -21.5q68 0 118.5 50.5t67.5 130.5 q19 95 -84 231t-75 275q19 98 89.5 200.5t86.5 178.5q18 91 -10 141t-79 50q-68 0 -130.5 -80.5t-90.5 -222.5l-217 -1086h-200z" />
<glyph unicode="&#xe0;" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q20 105 -8.5 157.5t-105.5 52.5q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96t47 -268l-101 -502q-13 -66 -17 -122t1 -114h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117 t-149.5 -45q-122 0 -183.5 88t-32.5 230zM261 298q-16 -78 7 -120.5t84 -42.5t124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144zM370 1505h230l118 -266h-166z" />
<glyph unicode="&#xe1;" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q20 105 -8.5 157.5t-105.5 52.5q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96t47 -268l-101 -502q-13 -66 -17 -122t1 -114h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117 t-149.5 -45q-122 0 -183.5 88t-32.5 230zM261 298q-16 -78 7 -120.5t84 -42.5t124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144zM520 1236l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xe2;" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q20 105 -8.5 157.5t-105.5 52.5q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96t47 -268l-101 -502q-13 -66 -17 -122t1 -114h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117 t-149.5 -45q-122 0 -183.5 88t-32.5 230zM261 298q-16 -78 7 -120.5t84 -42.5t124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144zM352 1277l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xe3;" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q20 105 -8.5 157.5t-105.5 52.5q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96t47 -268l-101 -502q-13 -66 -17 -122t1 -114h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117 t-149.5 -45q-122 0 -183.5 88t-32.5 230zM261 298q-16 -78 7 -120.5t84 -42.5t124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144zM339 1308q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61 q-54 0 -114.5 49t-102.5 49q-30 0 -57.5 -34t-34.5 -82z" />
<glyph unicode="&#xe4;" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q20 105 -8.5 157.5t-105.5 52.5q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96t47 -268l-101 -502q-13 -66 -17 -122t1 -114h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117 t-149.5 -45q-122 0 -183.5 88t-32.5 230zM261 298q-16 -78 7 -120.5t84 -42.5t124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144zM323 1295l30 185h202l-30 -185h-202zM733 1295l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xe5;" horiz-adv-x="922" d="M59 297q33 165 148.5 248.5t301.5 83.5h140l22 111q20 105 -8.5 157.5t-105.5 52.5q-63 0 -116 -50.5t-67 -124.5l-191 1l-2 6q22 133 139.5 226.5t279.5 93.5q144 0 225 -96t47 -268l-101 -502q-13 -66 -17 -122t1 -114h-203q-2 40 -2 74t4 67q-57 -72 -129.5 -117 t-149.5 -45q-122 0 -183.5 88t-32.5 230zM261 298q-16 -78 7 -120.5t84 -42.5t124.5 42t102.5 104l44 222h-142q-80 0 -142 -61t-78 -144zM478 1412q16 83 76.5 133.5t135.5 50.5q67 0 109 -54t27 -130q-17 -85 -76 -133t-133 -48q-69 0 -112 51.5t-27 129.5zM569 1412 q-9 -44 10 -70t55 -26q33 0 62 27t38 69q9 46 -8 72.5t-53 26.5q-33 0 -64.5 -28.5t-39.5 -70.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1420" d="M30 304q33 168 146.5 251t303.5 83h163l16 78q23 116 -1.5 173t-94.5 57q-69 0 -125.5 -55.5t-71.5 -133.5l-188 16l-1 6q25 149 138.5 236t279.5 87q80 0 142 -32t97 -93q63 61 138 93t159 32q160 0 234.5 -131t32.5 -348l-25 -124h-552q-35 -174 1 -270t156 -96 q74 0 136 27.5t129 75.5l32 -132q-53 -47 -143.5 -86t-198.5 -39q-100 0 -173.5 46.5t-112.5 131.5q-62 -76 -158.5 -127t-217.5 -51q-137 0 -204 89t-37 236zM230 300q-17 -85 9.5 -129t100.5 -44q50 0 117.5 40t110.5 91l48 243h-162q-82 0 -145 -59.5t-79 -141.5z M856 644l3 -5h344l6 30q26 131 1 204t-110 73q-79 0 -144 -84.5t-100 -217.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="889" d="M80 465l24 149q35 219 158.5 353.5t318.5 134.5q152 0 235 -111t55 -288h-187q18 112 -17 177.5t-111 65.5q-104 0 -166.5 -95t-84.5 -237l-24 -149q-24 -152 5.5 -242t139.5 -90q68 0 127 58.5t75 156.5h179l2 -6q-23 -159 -140.5 -261t-266.5 -102q-186 0 -270.5 138.5 t-51.5 347.5zM217 -440l16 106q45 0 81 25.5t46 75.5q10 53 -12 71t-88 25l51 134h148l-21 -58q50 -10 76 -51t10 -121q-21 -104 -99 -158t-203 -52z" />
<glyph unicode="&#xe8;" horiz-adv-x="899" d="M87 456l25 158q35 220 163.5 354t297.5 134q170 0 247.5 -127t44.5 -336l-22 -140h-550l-7 -43q-24 -146 18 -234.5t150 -88.5q77 0 140 27t122 77l43 -126q-58 -58 -146 -95t-196 -37q-178 0 -271 135t-59 342zM316 644h351l7 41q19 119 -11.5 190t-114.5 71 q-78 0 -141.5 -86t-90.5 -216zM335 1506h230l118 -266h-166z" />
<glyph unicode="&#xe9;" horiz-adv-x="899" d="M87 456l25 158q35 220 163.5 354t297.5 134q170 0 247.5 -127t44.5 -336l-22 -140h-550l-7 -43q-24 -146 18 -234.5t150 -88.5q77 0 140 27t122 77l43 -126q-58 -58 -146 -95t-196 -37q-178 0 -271 135t-59 342zM316 644h351l7 41q19 119 -11.5 190t-114.5 71 q-78 0 -141.5 -86t-90.5 -216zM485 1237l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xea;" horiz-adv-x="899" d="M87 456l25 158q35 220 163.5 354t297.5 134q170 0 247.5 -127t44.5 -336l-22 -140h-550l-7 -43q-24 -146 18 -234.5t150 -88.5q77 0 140 27t122 77l43 -126q-58 -58 -146 -95t-196 -37q-178 0 -271 135t-59 342zM316 644h351l7 41q19 119 -11.5 190t-114.5 71 q-78 0 -141.5 -86t-90.5 -216zM317 1278l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xeb;" horiz-adv-x="899" d="M87 456l25 158q35 220 163.5 354t297.5 134q170 0 247.5 -127t44.5 -336l-22 -140h-550l-7 -43q-24 -146 18 -234.5t150 -88.5q77 0 140 27t122 77l43 -126q-58 -58 -146 -95t-196 -37q-178 0 -271 135t-59 342zM288 1296l30 185h202l-30 -185h-202zM316 644h351l7 41 q19 119 -11.5 190t-114.5 71q-78 0 -141.5 -86t-90.5 -216zM698 1296l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xec;" horiz-adv-x="462" d="M42 0l216 1082h201l-216 -1082h-201zM141 1484h230l118 -266h-166z" />
<glyph unicode="&#xed;" horiz-adv-x="462" d="M42 0l216 1082h201l-216 -1082h-201zM289 1215l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xee;" horiz-adv-x="462" d="M42 0l216 1082h201l-216 -1082h-201zM123 1256l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xef;" horiz-adv-x="462" d="M42 0l216 1082h201l-216 -1082h-201zM94 1274l30 185h202l-30 -185h-202zM504 1274l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xf0;" horiz-adv-x="1002" d="M67 462q49 245 183 375.5t318 130.5q62 0 116 -29.5t87 -79.5l5 4q5 103 -10.5 184t-49.5 142l-240 -148l-44 94l223 137q-27 26 -58 47.5t-66 40.5l93 157q58 -25 108 -60t92 -81l210 129l43 -94l-194 -119q69 -120 87 -285.5t-23 -369.5l-17 -87q-54 -268 -204 -419.5 t-336 -151.5q-172 0 -268 140.5t-55 342.5zM268 462q-28 -140 12.5 -234t143.5 -94q94 0 182 119t124 297l18 89q4 22 5 29t3 17q-16 57 -66.5 94.5t-132.5 37.5q-94 0 -176.5 -103t-112.5 -252z" />
<glyph unicode="&#xf1;" d="M27 0l216 1082h184l-19 -149q59 82 132.5 125.5t156.5 43.5q127 0 185 -107t15 -324l-134 -671h-201l134 669q31 161 4.5 218t-110.5 57q-54 0 -106.5 -39.5t-96.5 -107.5l-159 -797h-201zM361 1308q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5 t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61q-54 0 -114.5 49t-102.5 49q-30 0 -57.5 -34t-34.5 -82z" />
<glyph unicode="&#xf2;" d="M83 471l22 138q35 224 163 358.5t318 134.5q179 0 268 -140t55 -353l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-181 0 -270.5 139t-54.5 353zM283 471q-25 -154 10 -246t139 -92q96 0 163 96t91 242l22 138q24 151 -10.5 244t-136.5 93q-99 0 -166 -96t-90 -241z M358 1505h230l118 -266h-166z" />
<glyph unicode="&#xf3;" d="M83 471l22 138q35 224 163 358.5t318 134.5q179 0 268 -140t55 -353l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-181 0 -270.5 139t-54.5 353zM283 471q-25 -154 10 -246t139 -92q96 0 163 96t91 242l22 138q24 151 -10.5 244t-136.5 93q-99 0 -166 -96t-90 -241z M508 1236l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xf4;" d="M83 471l22 138q35 224 163 358.5t318 134.5q179 0 268 -140t55 -353l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-181 0 -270.5 139t-54.5 353zM283 471q-25 -154 10 -246t139 -92q96 0 163 96t91 242l22 138q24 151 -10.5 244t-136.5 93q-99 0 -166 -96t-90 -241z M340 1277l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xf5;" d="M83 471l22 138q35 224 163 358.5t318 134.5q179 0 268 -140t55 -353l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-181 0 -270.5 139t-54.5 353zM283 471q-25 -154 10 -246t139 -92q96 0 163 96t91 242l22 138q24 151 -10.5 244t-136.5 93q-99 0 -166 -96t-90 -241z M327 1308q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61q-54 0 -114.5 49t-102.5 49q-30 0 -57.5 -34t-34.5 -82z" />
<glyph unicode="&#xf6;" d="M83 471l22 138q35 224 163 358.5t318 134.5q179 0 268 -140t55 -353l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-181 0 -270.5 139t-54.5 353zM283 471q-25 -154 10 -246t139 -92q96 0 163 96t91 242l22 138q24 151 -10.5 244t-136.5 93q-99 0 -166 -96t-90 -241z M311 1295l30 185h202l-30 -185h-202zM721 1295l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xf7;" horiz-adv-x="969" d="M103 608l34 171h818l-34 -171h-818zM329 193l39 195h201l-39 -195h-201zM490 999l39 195h201l-39 -195h-201z" />
<glyph unicode="&#xf8;" horiz-adv-x="961" d="M47 -139l126 212q-63 66 -87 169t-3 229l22 138q35 224 163 358.5t318 134.5q49 0 92.5 -12t80.5 -34l93 157h119l-135 -226q53 -68 72 -165.5t1 -212.5l-22 -138q-36 -225 -163.5 -358.5t-315.5 -133.5q-43 0 -81.5 9t-71.5 25l-90 -152h-118zM272 354.5 q0 -52.5 11 -86.5l6 -1l378 636q-20 20 -46.5 31.5t-59.5 11.5q-99 0 -166 -96t-90 -241l-22 -138q-11 -64 -11 -116.5zM342 159q17 -13 39.5 -19.5t50.5 -6.5q96 0 163 96t91 242l22 138q7 49 9 91.5t-2 71.5l-6 2z" />
<glyph unicode="&#xf9;" d="M114 443l127 639h200l-128 -641q-36 -178 -13 -241.5t98 -63.5q66 0 121 36.5t98 103.5l161 806h201l-216 -1082h-179l15 133q-57 -76 -127.5 -115t-153.5 -39q-131 0 -191 115t-13 349zM389 1484h230l118 -266h-166z" />
<glyph unicode="&#xfa;" d="M114 443l127 639h200l-128 -641q-36 -178 -13 -241.5t98 -63.5q66 0 121 36.5t98 103.5l161 806h201l-216 -1082h-179l15 133q-57 -76 -127.5 -115t-153.5 -39q-131 0 -191 115t-13 349zM539 1215l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xfb;" d="M114 443l127 639h200l-128 -641q-36 -178 -13 -241.5t98 -63.5q66 0 121 36.5t98 103.5l161 806h201l-216 -1082h-179l15 133q-57 -76 -127.5 -115t-153.5 -39q-131 0 -191 115t-13 349zM371 1256l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#xfc;" d="M114 443l127 639h200l-128 -641q-36 -178 -13 -241.5t98 -63.5q66 0 121 36.5t98 103.5l161 806h201l-216 -1082h-179l15 133q-57 -76 -127.5 -115t-153.5 -39q-131 0 -191 115t-13 349zM342 1274l30 185h202l-30 -185h-202zM752 1274l30 185h202l-30 -185h-202z" />
<glyph unicode="&#xfd;" horiz-adv-x="863" d="M-77 -419l52 150q11 -2 28.5 -4t27.5 -2q51 0 96.5 52.5t75.5 117.5l55 108l-102 1079h218l23 -709l1 -60l6 -1l346 770h218l-610 -1250q-57 -111 -135.5 -190t-195.5 -79q-23 0 -50.5 5.5t-53.5 12.5zM490 1215l205 266h221l2 -6l-269 -260h-159z" />
<glyph unicode="&#xfe;" horiz-adv-x="971" d="M-49 -416l83 416l16 83l200 999l96 478h200l-112 -557q49 48 106.5 73.5t123.5 25.5q152 0 220.5 -170t18.5 -424l-5 -21q-51 -255 -156 -381.5t-268 -126.5q-71 0 -127 30t-93 86l-102 -511h-201zM284 246q17 -55 56 -84t102 -29q92 0 157 94.5t98 259.5l5 21 q39 196 10.5 316t-128.5 120q-54 0 -102 -40t-88 -107z" />
<glyph unicode="&#xff;" horiz-adv-x="863" d="M-77 -419l52 150q11 -2 28.5 -4t27.5 -2q51 0 96.5 52.5t75.5 117.5l55 108l-102 1079h218l23 -709l1 -60l6 -1l346 770h218l-610 -1250q-57 -111 -135.5 -190t-195.5 -79q-23 0 -50.5 5.5t-53.5 12.5zM293 1274l30 185h202l-30 -185h-202zM703 1274l30 185h202l-30 -185 h-202z" />
<glyph unicode="&#x152;" horiz-adv-x="1616" d="M124 576l61 304q56 282 215.5 439.5t374.5 157.5q51 0 110.5 -6t119.5 -15h725l-31 -156h-587l-94 -469h511l-31 -155h-511l-104 -522h593l-31 -154h-731q-76 -10 -130 -15.5t-107 -5.5q-197 0 -301 168.5t-52 428.5zM324 576q-45 -223 5 -332.5t179 -109.5q42 0 86 3 t86 10l232 1161q-40 6 -82.5 10t-85.5 4q-119 0 -218.5 -117t-140.5 -323z" />
<glyph unicode="&#x153;" horiz-adv-x="1517" d="M105 526l6 27q51 257 185 403t324 146q91 0 158.5 -45.5t107.5 -126.5q68 83 152.5 127.5t176.5 44.5q165 0 239 -132t32 -345l-25 -126h-550q-32 -170 4 -268t143 -98q75 0 140 27t126 77l37 -126q-59 -58 -149 -95t-198 -37q-92 0 -161 44t-109 125 q-69 -83 -156.5 -126t-189.5 -43q-176 0 -258.5 155t-34.5 392zM296.5 238q28.5 -105 132.5 -105q94 0 169.5 112.5t109.5 280.5l6 27q35 181 7 287t-132 106q-94 0 -170 -114t-108 -279l-6 -27q-37 -183 -8.5 -288zM945 644h347l5 28q25 127 -1.5 200.5t-111.5 73.5 q-69 0 -134.5 -85.5t-104.5 -216.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1061" d="M233 1456h224l137 -694l6 -1l417 695h223l-594 -934l-104 -522h-199l108 539zM465 1613l30 185h202l-30 -185h-202zM875 1613l30 185h202l-30 -185h-202z" />
<glyph unicode="&#x2c6;" horiz-adv-x="831" d="M301 1252l5 23l260 232h118l172 -233l-5 -22h-161l-85 151l-146 -151h-158z" />
<glyph unicode="&#x2dc;" horiz-adv-x="818" d="M248 1276q15 94 72.5 157t131.5 63q43 0 109 -49.5t108 -49.5q30 0 58 34.5t36 83.5l102 -31q-16 -96 -72.5 -157t-130.5 -61q-54 0 -114.5 49t-102.5 49q-30 0 -57.5 -34t-34.5 -82z" />
<glyph unicode="&#x2000;" horiz-adv-x="959" />
<glyph unicode="&#x2001;" horiz-adv-x="1918" />
<glyph unicode="&#x2002;" horiz-adv-x="959" />
<glyph unicode="&#x2003;" horiz-adv-x="1918" />
<glyph unicode="&#x2004;" horiz-adv-x="639" />
<glyph unicode="&#x2005;" horiz-adv-x="479" />
<glyph unicode="&#x2006;" horiz-adv-x="319" />
<glyph unicode="&#x2007;" horiz-adv-x="319" />
<glyph unicode="&#x2008;" horiz-adv-x="239" />
<glyph unicode="&#x2009;" horiz-adv-x="383" />
<glyph unicode="&#x200a;" horiz-adv-x="106" />
<glyph unicode="&#x2010;" horiz-adv-x="584" d="M99 542l31 155h427l-31 -155h-427z" />
<glyph unicode="&#x2011;" horiz-adv-x="584" d="M99 542l31 155h427l-31 -155h-427z" />
<glyph unicode="&#x2012;" horiz-adv-x="584" d="M99 542l31 155h427l-31 -155h-427z" />
<glyph unicode="&#x2013;" horiz-adv-x="1167" d="M208 649l40 155h875l-40 -155h-875z" />
<glyph unicode="&#x2014;" horiz-adv-x="1368" d="M202 649l49 155h1077l-49 -155h-1077z" />
<glyph unicode="&#x2018;" horiz-adv-x="357" d="M187 1040l36 182l198 338h98l-116 -339l-36 -181h-180z" />
<glyph unicode="&#x2019;" horiz-adv-x="357" d="M191 1041l113 329l38 190h181l-38 -188l-196 -331h-98z" />
<glyph unicode="&#x201a;" horiz-adv-x="356" d="M-69 -239l101 265l48 239h181l-45 -225l-180 -279h-105z" />
<glyph unicode="&#x201c;" horiz-adv-x="625" d="M187 1040l36 182l198 338h98l-116 -339l-36 -181h-180zM454 1040l36 182l198 338h98l-116 -339l-36 -181h-180z" />
<glyph unicode="&#x201d;" horiz-adv-x="632" d="M190 1041l113 329l38 190h181l-38 -188l-196 -331h-98zM462 1041l113 329l38 190h181l-38 -188l-196 -331h-98z" />
<glyph unicode="&#x201e;" horiz-adv-x="614" d="M-65 -219l107 294l42 208h174l-40 -199l-191 -303h-92zM198 -219l108 300l41 202h174l-40 -199l-191 -303h-92z" />
<glyph unicode="&#x2022;" horiz-adv-x="629" d="M187 721l15 72q18 93 78.5 146t146.5 53q81 0 123.5 -56.5t25.5 -142.5l-15 -72q-19 -95 -78.5 -146.5t-146.5 -51.5q-81 0 -124 55.5t-25 142.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1200" d="M53 0l41 203h201l-41 -203h-201zM424 0l41 203h201l-41 -203h-201zM781 0l41 203h201l-41 -203h-201z" />
<glyph unicode="&#x202f;" horiz-adv-x="383" />
<glyph unicode="&#x2039;" horiz-adv-x="533" d="M124 542l1 6l1 7l1 6l308 384h136l-277 -395l120 -393h-136z" />
<glyph unicode="&#x203a;" horiz-adv-x="524" d="M27 155l276 395l-118 396h136l154 -386l-2 -6h1l-3 -13l-308 -386h-136z" />
<glyph unicode="&#x205f;" horiz-adv-x="479" />
<glyph unicode="&#x20ac;" horiz-adv-x="916" d="M86 491l30 155h118l29 141h-117l30 155h118l5 23q47 239 190 375.5t339 136.5q44 0 92 -8.5t98 -22.5l-49 -160q-40 16 -83 25.5t-89 9.5q-98 0 -182.5 -102.5t-114.5 -251.5l-5 -25h367l-30 -155h-368l-30 -141h368l-30 -155h-367l-2 -9q-33 -161 9 -255t149 -94 q44 0 92.5 8.5t91.5 25.5l-14 -157q-49 -15 -100 -23t-101 -8q-180 0 -275.5 144t-52.5 359l2 9h-118z" />
<glyph unicode="&#x2122;" horiz-adv-x="1064" d="M282 1371l17 85h316l-17 -85h-111l-90 -453h-96l90 453h-109zM566 917l108 539h113l33 -391l6 -1l189 392h107l-108 -539h-89l62 310l-6 2l-163 -312h-50l-40 325l-6 1l-65 -326h-91z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1062" d="M97 0l187 937h-133l29 145h133l28 139q37 184 132.5 272t242.5 88q26 0 55 -6t63 -15l-49 -149q-15 5 -34.5 8t-42.5 3q-59 0 -103 -53t-63 -148l-28 -139h177l-29 -145h-177l-187 -937h-201zM649 0l312 1560h200l-312 -1560h-200z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1599" d="M97 0l187 937h-133l29 145h133l28 139q37 184 132.5 272t242.5 88q26 0 55 -6t63 -15l-49 -149q-15 5 -34.5 8t-42.5 3q-59 0 -103 -53t-63 -148l-28 -139h177l-29 -145h-177l-187 -937h-201zM687 0l187 937h-134l29 145h134l23 111q39 198 150 293t283 95q56 0 115 -16 t122 -44l-61 -158q-43 22 -90.5 35.5t-105.5 13.5q-82 0 -137 -56.5t-75 -162.5l-23 -111h171l-29 -145h-171l-187 -937h-201zM1186 0l216 1082h201l-216 -1082h-201z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1669" d="M97 0l187 937h-133l29 145h133l28 139q37 184 132.5 272t242.5 88q26 0 55 -6t63 -15l-49 -149q-15 5 -34.5 8t-42.5 3q-59 0 -103 -53t-63 -148l-28 -139h177l-29 -145h-177l-187 -937h-201zM704 0l187 937h-133l29 145h133l28 139q37 184 132.5 272t242.5 88 q26 0 55 -6t63 -15l-49 -149q-15 5 -34.5 8t-42.5 3q-59 0 -103 -53t-63 -148l-28 -139h177l-29 -145h-177l-187 -937h-201zM1256 0l312 1560h200l-312 -1560h-200z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-18" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="&#x2f;" u2="&#x2f;" k="224" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="61" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="234" />
<hkern u1="F" u2="&#x201e;" k="234" />
<hkern u1="F" u2="&#x201a;" k="234" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="J" k="264" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x2e;" k="234" />
<hkern u1="F" u2="&#x2c;" k="234" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="92" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="97" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="43" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="80" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="114" />
<hkern u1="T" u2="&#xc6;" k="179" />
<hkern u1="T" u2="&#xbb;" k="216" />
<hkern u1="T" u2="&#xab;" k="328" />
<hkern u1="T" u2="w" k="57" />
<hkern u1="T" u2="r" k="75" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-32" />
<hkern u1="r" u2="f" k="-15" />
<hkern u1="t" u2="&#xf6;" k="20" />
<hkern u1="t" u2="&#xf5;" k="20" />
<hkern u1="t" u2="&#xf4;" k="20" />
<hkern u1="t" u2="&#xf3;" k="20" />
<hkern u1="t" u2="&#xf2;" k="20" />
<hkern u1="t" u2="o" k="20" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="61" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="61" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="61" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="61" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="61" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="61" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="129" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="87" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="69" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="94" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
<hkern g1="B" g2="T" k="27" />
<hkern g1="B" g2="V" k="24" />
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
<hkern g1="C,Ccedilla" g2="T" k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="K" g2="m,n,p,ntilde" k="23" />
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="64" />
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
<hkern g1="L" g2="T" k="275" />
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
<hkern g1="L" g2="V" k="175" />
<hkern g1="L" g2="W" k="143" />
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
<hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="138" />
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
<hkern g1="P" g2="X" k="31" />
<hkern g1="P" g2="Z" k="26" />
<hkern g1="P" g2="J" k="200" />
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="79" />
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
<hkern g1="T" g2="m,n,p,ntilde" k="109" />
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
<hkern g1="T" g2="s" k="116" />
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
<hkern g1="T" g2="T" k="-16" />
<hkern g1="T" g2="V" k="-16" />
<hkern g1="T" g2="W" k="-15" />
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
<hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
<hkern g1="T" g2="z" k="60" />
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
<hkern g1="T" g2="J" k="240" />
<hkern g1="T" g2="S" k="16" />
<hkern g1="T" g2="x" k="77" />
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
<hkern g1="W" g2="T" k="-14" />
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
<hkern g1="X" g2="V" k="-14" />
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
<hkern g1="b,p,thorn" g2="z" k="15" />
<hkern g1="b,p,thorn" g2="x" k="15" />
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 77 KiB

View File

Before

Width:  |  Height:  |  Size: 732 KiB

After

Width:  |  Height:  |  Size: 732 KiB

View File

Before

Width:  |  Height:  |  Size: 758 KiB

After

Width:  |  Height:  |  Size: 758 KiB

View File

Before

Width:  |  Height:  |  Size: 738 KiB

After

Width:  |  Height:  |  Size: 738 KiB

View File

Before

Width:  |  Height:  |  Size: 760 KiB

After

Width:  |  Height:  |  Size: 760 KiB

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