diff --git a/assets/css/custom.scss b/assets/css/custom.scss new file mode 100644 index 0000000..5f574e6 --- /dev/null +++ b/assets/css/custom.scss @@ -0,0 +1,81 @@ + +h1{ + font-family: "amiri", serif; + font-weight: bold; +} +h2{ + font-family: "amiri", serif; + font-weight: 500; +} + +h3, +h4, +h5, +h6{ + font-family: 'Open Sans', sans-serif; +} + +h1{ font-size:42pt; } +h2{ font-size:32pt; } +h3{ font-size:14pt; } +h4{ font-size:11pt; } +h5{ font-size:11pt; } +h6{ font-size:11pt; } + +h2{ + margin:0.2em 0 0.4em 0; +} + +p, table, li, figcaption{ + font-family: 'Open Sans', sans-serif; + font-size:10pt; +} + +figure{ + display:inline-block; vertical-align: top; + margin:4mm 0 0; + img{ + // box-shadow: 0 0 1mm 1mm #CCC; + border: 1px solid #ccc; + } + figcaption{ + font-size: 8pt; + } +} + +img[alt="logo"]{ + max-height: 0.9cm; + display:inline-block; vertical-align: top; + margin:5mm 5mm 0 0; + & + br{display:none;} +} + +img[alt~="visuel"]{ + margin:0 4mm 0 0; + & + figcaption{display:none;} + &:not([alt~="full"]){ + max-height: 6.5cm; + } + &[alt~="full"]{ + max-width: 85%; + } +} + +a{ + color: inherit; +} + +.header:after{ + font-family: "amiri", serif; + font-weight: normal; + font-size: 9pt; +} + +.footer{ + text-align: left; + &:after{ + font-family: "amiri", serif; + font-weight: bold; + font-size: 10pt; + } +} diff --git a/assets/css/dist/styles.css b/assets/css/dist/styles.css new file mode 100644 index 0000000..9891bfc --- /dev/null +++ b/assets/css/dist/styles.css @@ -0,0 +1,257 @@ + \ No newline at end of file diff --git a/assets/css/setup.scss b/assets/css/setup.scss new file mode 100644 index 0000000..175c84b --- /dev/null +++ b/assets/css/setup.scss @@ -0,0 +1,25 @@ +/* the geometry of the page */ +$page-width: 210mm; +$page-height: 290mm; + +/* the size of the crop marks*/ +$crop-size: 0mm; + +/* the size of bleed */ +$bleed: 0mm; + +// page layouts +// 1 for single page +// 2 for double page +$page-layout:1; + +$page-margin-inside: 20mm; +$page-margin-outside: 20mm; +$page-margin-top: 8mm; +$page-margin-bottom: 12mm; + +// Header & footer variables +$header-height: 10mm; +$header-text: "Ethica Lectures"; +$footer-height: 10mm; +$footer-text: counter(page-counter); diff --git a/assets/css/styles.scss b/assets/css/styles.scss new file mode 100644 index 0000000..05fdf79 --- /dev/null +++ b/assets/css/styles.scss @@ -0,0 +1,245 @@ +@import "scss/setup.scss"; + +/** + * Computation + */ + + +/* EXTRA SPACE AROUND THE PAGE: BLEED + CROP */ +// TODO: find a more appropriate name +$crop: $crop-size + $bleed; + +/* GEOMETRY OF THE PAPER SHEET */ +$paper-width: $page-width + ( $crop * 2 ); +$paper-height: $page-height + ( $crop * 2 ); + +/* SIZE OF SPREAD */ +$spread: $page-width * 2; + + + +/** + * DEFINITION OF THE PAPER SHEET + */ +@page { + size: $paper-width ($paper-height + 1); + margin: 0; +} + + +/** + * CANVAS + */ + +@media all { + body { + margin: 0; + } + .paper { + width: $paper-width; + height: $paper-height; + box-sizing: border-box; + + counter-increment: page-counter; + + // To make sure that one paper sheet is not splitted into different pages in the PDF + page-break-inside: avoid; + page-break-after: always; + overflow: hidden; + + + } + .page { + width: $page-width; + height: $page-height; + position: relative; + } + +} + +@media print { + html { + width: $paper-width; + } + body { + /* Allows printing of background colors */ + background-color: white; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; + /* Activate opentype features and kernings */ + -webkit-font-feature-settings: "liga", "dlig", "clig", "kern"; + text-rendering: optimizeLegibility; + } +} + + + +/** + * Helpers + */ + +.page-break { + /* Apply this class to an element to put it on a new region. + * Hint: + * You can also use an empty
+ * if you want to put manual page breaks without attaching it to an HTML element + */ + // -webkit-region-break-before: always; + break-after: region; +} + +// section.level1, section.level2{ +// break-after: always; +// } + +/* __________________________________ LAYOUT __________________________________ */ + +.header, +.body, +.footer { + box-sizing: border-box; +} + +/* __________________________________ HEADER __________________________________ */ +.header { + top: 0; + margin: 0; + padding-top: $page-margin-top; + width: 100%; + height: $header-height; + text-align: left; + + &:after { + content: $header-text; + } +} +/* __________________________________ MAIN SECTION __________________________________ */ +.body { + height: $page-height - $header-height - $footer-height; + width: $page-width; + margin-bottom: $page-margin-bottom; + padding-top: $page-margin-top + $header-height; + padding-bottom: $page-margin-bottom; + position: absolute; +} + +.recipient { + -webkit-flow-from: contentFlow; + flow-from: contentFlow; +} + +#content > * { + -webkit-flow-into: contentFlow; + flow-into: contentFlow contents; +} + + + +/* __________________________________ FOOTER __________________________________ */ +.footer { + position: absolute; + bottom: 0; + margin: 0; + width: 100%; + height: $footer-height; + text-align: center; + + &:after { + content: $footer-text; + } +} + +/* mirrored pages */ +.paper { + + &:nth-child(odd) .header { + @if $page-layout == 2 {text-align: right;} + } + + &:nth-child(odd) .header, + &:nth-child(odd) .body, + &:nth-child(odd) .footer { + padding-left: $page-margin-inside; + padding-right: $page-margin-outside; + } + &:nth-child(even) .header, + &:nth-child(even) .body, + &:nth-child(even) .footer { + padding-left: $page-margin-outside; + padding-right: $page-margin-inside; + } +} + +img { + max-width: 100%; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + /* Avoids headings to be cut or to be orphans. + * But it doesn't seem to work + * if the element after has a page-break-inside avoid. It tries its best! */ + -webkit-region-break-inside: avoid; + -webkit-region-break-after: avoid; + break-inside: avoid; + break-after: avoid; +} + +/* AN EXAMPLE TO AVOID PAGE BREAK INSIDE, + * HERE NO PARAGRAPH WILL BE CUT, + * BUT YOU MIGHT WANT TO DEACTIVATE THIS */ +p { + /*-webkit-region-break-inside: avoid;*/ +} + + +/** + * DEBUG STYLES + */ +.debug .paper { + outline: 1px solid blue; +} +.debug .page { + outline: 1px solid green; +} +.debug .header { + outline: 1px solid pink; +} +.debug .body { + outline: 1px solid purple; +} +.debug .footer { + outline: 1px solid pink; +} + +.debug .region-break { + border-top: 1px dashed blue; + box-sizing: border-box; +} + +.debug img { + outline: 1px solid blue; +} + + +/** + * Style + */ + +@media screen{ + body{ + background-color: #EEE; + } + + .paper{ + background-color: #fff; + box-shadow: 0 0 10px 7px #AAA; + margin: 20px; + } +} + +@import "scss/custom.scss"; diff --git a/assets/fonts/amiri/amiri-bold-demo.html b/assets/fonts/amiri/amiri-bold-demo.html new file mode 100644 index 0000000..47ea411 --- /dev/null +++ b/assets/fonts/amiri/amiri-bold-demo.html @@ -0,0 +1,610 @@ + + + + + + + + + + + + + Amiri Bold Specimen + + + + + + +
+ + + +
+ + +
+ +
+
+
AaBb
+
+
+ +
+
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
+
+
+
+ + + + + + + + + + + + + + + + +
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
+ +
+ +
+ + + +
+ + +
+
◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body
body
body
body
+
+ bodyAmiri Bold +
+
+ bodyArial +
+
+ bodyVerdana +
+
+ bodyGeorgia +
+ + + +
+ + +
+ +
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+ +
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + +
+
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + + +
+ +
+ +
+ +
+

Lorem Ipsum Dolor

+

Etiam porta sem malesuada magna mollis euismod

+ + +
+
+
+
+

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

+ + +

Pellentesque ornare sem

+ +

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+ +

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

+ +

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

+ +

Cras mattis consectetur

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

+ +

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

+
+ + +
+ +
+ + + + + + +
+
+
+ +

Language Support

+

The subset of Amiri Bold in this kit supports the following languages:
+ + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish

+

Glyph Chart

+

The subset of Amiri Bold in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

+
+ +

 

+

!

!
+

"

"
+

#

#
+

$

$
+

%

%
+

&

&
+

'

'
+

(

(
+

)

)
+

*

*
+

+

+
+

,

,
+

-

-
+

.

.
+

/

/
+

0

0
+

1

1
+

2

2
+

3

3
+

4

4
+

5

5
+

6

6
+

7

7
+

8

8
+

9

9
+

:

:
+

&#59;

;
+

<

<
+

&#61;

=
+

&#62;

>
+

&#63;

?
+

&#64;

@
+

&#65;

A
+

&#66;

B
+

&#67;

C
+

&#68;

D
+

&#69;

E
+

&#70;

F
+

&#71;

G
+

&#72;

H
+

&#73;

I
+

&#74;

J
+

&#75;

K
+

&#76;

L
+

&#77;

M
+

&#78;

N
+

&#79;

O
+

&#80;

P
+

&#81;

Q
+

&#82;

R
+

&#83;

S
+

&#84;

T
+

&#85;

U
+

&#86;

V
+

&#87;

W
+

&#88;

X
+

&#89;

Y
+

&#90;

Z
+

&#91;

[
+

&#92;

\
+

&#93;

]
+

&#94;

^
+

&#95;

_
+

&#96;

`
+

&#97;

a
+

&#98;

b
+

&#99;

c
+

&#100;

d
+

&#101;

e
+

&#102;

f
+

&#103;

g
+

&#104;

h
+

&#105;

i
+

&#106;

j
+

&#107;

k
+

&#108;

l
+

&#109;

m
+

&#110;

n
+

&#111;

o
+

&#112;

p
+

&#113;

q
+

&#114;

r
+

&#115;

s
+

&#116;

t
+

&#117;

u
+

&#118;

v
+

&#119;

w
+

&#120;

x
+

&#121;

y
+

&#122;

z
+

&#123;

{
+

&#124;

|
+

&#125;

}
+

&#126;

~
+

&#160;

 
+

&#161;

¡
+

&#162;

¢
+

&#163;

£
+

&#164;

¤
+

&#165;

¥
+

&#166;

¦
+

&#167;

§
+

&#168;

¨
+

&#169;

©
+

&#170;

ª
+

&#171;

«
+

&#172;

¬
+

&#173;

­
+

&#174;

®
+

&#175;

¯
+

&#176;

°
+

&#177;

±
+

&#178;

²
+

&#179;

³
+

&#180;

´
+

&#181;

µ
+

&#182;

+

&#183;

·
+

&#184;

¸
+

&#185;

¹
+

&#186;

º
+

&#187;

»
+

&#188;

¼
+

&#189;

½
+

&#190;

¾
+

&#191;

¿
+

&#192;

À
+

&#193;

Á
+

&#194;

Â
+

&#195;

Ã
+

&#196;

Ä
+

&#197;

Å
+

&#198;

Æ
+

&#199;

Ç
+

&#200;

È
+

&#201;

É
+

&#202;

Ê
+

&#203;

Ë
+

&#204;

Ì
+

&#205;

Í
+

&#206;

Î
+

&#207;

Ï
+

&#208;

Ð
+

&#209;

Ñ
+

&#210;

Ò
+

&#211;

Ó
+

&#212;

Ô
+

&#213;

Õ
+

&#214;

Ö
+

&#215;

×
+

&#216;

Ø
+

&#217;

Ù
+

&#218;

Ú
+

&#219;

Û
+

&#220;

Ü
+

&#221;

Ý
+

&#222;

Þ
+

&#223;

ß
+

&#224;

à
+

&#225;

á
+

&#226;

â
+

&#227;

ã
+

&#228;

ä
+

&#229;

å
+

&#230;

æ
+

&#231;

ç
+

&#232;

è
+

&#233;

é
+

&#234;

ê
+

&#235;

ë
+

&#236;

ì
+

&#237;

í
+

&#238;

î
+

&#239;

ï
+

&#240;

ð
+

&#241;

ñ
+

&#242;

ò
+

&#243;

ó
+

&#244;

ô
+

&#245;

õ
+

&#246;

ö
+

&#247;

÷
+

&#248;

ø
+

&#249;

ù
+

&#250;

ú
+

&#251;

û
+

&#252;

ü
+

&#253;

ý
+

&#254;

þ
+

&#255;

ÿ
+

&#338;

Œ
+

&#339;

œ
+

&#376;

Ÿ
+

&#8192;

 
+

&#8193;

+

&#8194;

+

&#8195;

+

&#8196;

+

&#8197;

+

&#8198;

+

&#8199;

+

&#8200;

+

&#8201;

+

&#8202;

+

&#8208;

+

&#8209;

+

&#8210;

+

&#8211;

+

&#8212;

+

&#8216;

+

&#8217;

+

&#8218;

+

&#8220;

+

&#8221;

+

&#8222;

+

&#8226;

+

&#8230;

+

&#8239;

+

&#8249;

+

&#8250;

+

&#8287;

+

&#8364;

+

&#9724;

+

&#64257;

+

&#64258;

+

&#64259;

+

&#64260;

+
+
+ + +
+
+ + +
+ +
+ +
+
+
+

Installing Webfonts

+ +

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

+ +

1. Upload your webfonts

+

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

+ +

2. Include the webfont stylesheet

+

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

+ + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

3. Modify your own stylesheet

+

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

+p { font-family: 'WebFont', Arial, sans-serif; } + +

4. Test

+

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

+
+ + +
+ +
+ +
+ +
+ + diff --git a/assets/fonts/amiri/amiri-bold-webfont.eot b/assets/fonts/amiri/amiri-bold-webfont.eot new file mode 100644 index 0000000..73d2497 Binary files /dev/null and b/assets/fonts/amiri/amiri-bold-webfont.eot differ diff --git a/assets/fonts/amiri/amiri-bold-webfont.svg b/assets/fonts/amiri/amiri-bold-webfont.svg new file mode 100644 index 0000000..6f73169 --- /dev/null +++ b/assets/fonts/amiri/amiri-bold-webfont.svg @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/amiri/amiri-bold-webfont.ttf b/assets/fonts/amiri/amiri-bold-webfont.ttf new file mode 100644 index 0000000..fe7d058 Binary files /dev/null and b/assets/fonts/amiri/amiri-bold-webfont.ttf differ diff --git a/assets/fonts/amiri/amiri-bold-webfont.woff b/assets/fonts/amiri/amiri-bold-webfont.woff new file mode 100644 index 0000000..589729e Binary files /dev/null and b/assets/fonts/amiri/amiri-bold-webfont.woff differ diff --git a/assets/fonts/amiri/amiri-bold-webfont.woff2 b/assets/fonts/amiri/amiri-bold-webfont.woff2 new file mode 100644 index 0000000..93d27bc Binary files /dev/null and b/assets/fonts/amiri/amiri-bold-webfont.woff2 differ diff --git a/assets/fonts/amiri/amiri-boldslanted-demo.html b/assets/fonts/amiri/amiri-boldslanted-demo.html new file mode 100644 index 0000000..4ef2981 --- /dev/null +++ b/assets/fonts/amiri/amiri-boldslanted-demo.html @@ -0,0 +1,610 @@ + + + + + + + + + + + + + Amiri Bold Slanted Specimen + + + + + + +
+ + + +
+ + +
+ +
+
+
AaBb
+
+
+ +
+
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
+
+
+
+ + + + + + + + + + + + + + + + +
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
+ +
+ +
+ + + +
+ + +
+
◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body
body
body
body
+
+ bodyAmiri Bold Slanted +
+
+ bodyArial +
+
+ bodyVerdana +
+
+ bodyGeorgia +
+ + + +
+ + +
+ +
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+ +
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + +
+
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + + +
+ +
+ +
+ +
+

Lorem Ipsum Dolor

+

Etiam porta sem malesuada magna mollis euismod

+ + +
+
+
+
+

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

+ + +

Pellentesque ornare sem

+ +

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+ +

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

+ +

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

+ +

Cras mattis consectetur

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

+ +

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

+
+ + +
+ +
+ + + + + + +
+
+
+ +

Language Support

+

The subset of Amiri Bold Slanted in this kit supports the following languages:
+ + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish

+

Glyph Chart

+

The subset of Amiri Bold Slanted in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

+
+ +

&#32;

+

&#33;

!
+

&#34;

"
+

&#35;

#
+

&#36;

$
+

&#37;

%
+

&#38;

&
+

&#39;

'
+

&#40;

(
+

&#41;

)
+

&#42;

*
+

&#43;

+
+

&#44;

,
+

&#45;

-
+

&#46;

.
+

&#47;

/
+

&#48;

0
+

&#49;

1
+

&#50;

2
+

&#51;

3
+

&#52;

4
+

&#53;

5
+

&#54;

6
+

&#55;

7
+

&#56;

8
+

&#57;

9
+

&#58;

:
+

&#59;

;
+

&#60;

<
+

&#61;

=
+

&#62;

>
+

&#63;

?
+

&#64;

@
+

&#65;

A
+

&#66;

B
+

&#67;

C
+

&#68;

D
+

&#69;

E
+

&#70;

F
+

&#71;

G
+

&#72;

H
+

&#73;

I
+

&#74;

J
+

&#75;

K
+

&#76;

L
+

&#77;

M
+

&#78;

N
+

&#79;

O
+

&#80;

P
+

&#81;

Q
+

&#82;

R
+

&#83;

S
+

&#84;

T
+

&#85;

U
+

&#86;

V
+

&#87;

W
+

&#88;

X
+

&#89;

Y
+

&#90;

Z
+

&#91;

[
+

&#92;

\
+

&#93;

]
+

&#94;

^
+

&#95;

_
+

&#96;

`
+

&#97;

a
+

&#98;

b
+

&#99;

c
+

&#100;

d
+

&#101;

e
+

&#102;

f
+

&#103;

g
+

&#104;

h
+

&#105;

i
+

&#106;

j
+

&#107;

k
+

&#108;

l
+

&#109;

m
+

&#110;

n
+

&#111;

o
+

&#112;

p
+

&#113;

q
+

&#114;

r
+

&#115;

s
+

&#116;

t
+

&#117;

u
+

&#118;

v
+

&#119;

w
+

&#120;

x
+

&#121;

y
+

&#122;

z
+

&#123;

{
+

&#124;

|
+

&#125;

}
+

&#126;

~
+

&#160;

 
+

&#161;

¡
+

&#162;

¢
+

&#163;

£
+

&#164;

¤
+

&#165;

¥
+

&#166;

¦
+

&#167;

§
+

&#168;

¨
+

&#169;

©
+

&#170;

ª
+

&#171;

«
+

&#172;

¬
+

&#173;

­
+

&#174;

®
+

&#175;

¯
+

&#176;

°
+

&#177;

±
+

&#178;

²
+

&#179;

³
+

&#180;

´
+

&#181;

µ
+

&#182;

+

&#183;

·
+

&#184;

¸
+

&#185;

¹
+

&#186;

º
+

&#187;

»
+

&#188;

¼
+

&#189;

½
+

&#190;

¾
+

&#191;

¿
+

&#192;

À
+

&#193;

Á
+

&#194;

Â
+

&#195;

Ã
+

&#196;

Ä
+

&#197;

Å
+

&#198;

Æ
+

&#199;

Ç
+

&#200;

È
+

&#201;

É
+

&#202;

Ê
+

&#203;

Ë
+

&#204;

Ì
+

&#205;

Í
+

&#206;

Î
+

&#207;

Ï
+

&#208;

Ð
+

&#209;

Ñ
+

&#210;

Ò
+

&#211;

Ó
+

&#212;

Ô
+

&#213;

Õ
+

&#214;

Ö
+

&#215;

×
+

&#216;

Ø
+

&#217;

Ù
+

&#218;

Ú
+

&#219;

Û
+

&#220;

Ü
+

&#221;

Ý
+

&#222;

Þ
+

&#223;

ß
+

&#224;

à
+

&#225;

á
+

&#226;

â
+

&#227;

ã
+

&#228;

ä
+

&#229;

å
+

&#230;

æ
+

&#231;

ç
+

&#232;

è
+

&#233;

é
+

&#234;

ê
+

&#235;

ë
+

&#236;

ì
+

&#237;

í
+

&#238;

î
+

&#239;

ï
+

&#240;

ð
+

&#241;

ñ
+

&#242;

ò
+

&#243;

ó
+

&#244;

ô
+

&#245;

õ
+

&#246;

ö
+

&#247;

÷
+

&#248;

ø
+

&#249;

ù
+

&#250;

ú
+

&#251;

û
+

&#252;

ü
+

&#253;

ý
+

&#254;

þ
+

&#255;

ÿ
+

&#338;

Œ
+

&#339;

œ
+

&#376;

Ÿ
+

&#8192;

 
+

&#8193;

+

&#8194;

+

&#8195;

+

&#8196;

+

&#8197;

+

&#8198;

+

&#8199;

+

&#8200;

+

&#8201;

+

&#8202;

+

&#8208;

+

&#8209;

+

&#8210;

+

&#8211;

+

&#8212;

+

&#8216;

+

&#8217;

+

&#8218;

+

&#8220;

+

&#8221;

+

&#8222;

+

&#8226;

+

&#8230;

+

&#8239;

+

&#8249;

+

&#8250;

+

&#8287;

+

&#8364;

+

&#9724;

+

&#64257;

+

&#64258;

+

&#64259;

+

&#64260;

+
+
+ + +
+
+ + +
+ +
+ +
+
+
+

Installing Webfonts

+ +

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

+ +

1. Upload your webfonts

+

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

+ +

2. Include the webfont stylesheet

+

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

+ + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

3. Modify your own stylesheet

+

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

+p { font-family: 'WebFont', Arial, sans-serif; } + +

4. Test

+

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

+
+ + +
+ +
+ +
+ +
+ + diff --git a/assets/fonts/amiri/amiri-boldslanted-webfont.eot b/assets/fonts/amiri/amiri-boldslanted-webfont.eot new file mode 100644 index 0000000..a73450b Binary files /dev/null and b/assets/fonts/amiri/amiri-boldslanted-webfont.eot differ diff --git a/assets/fonts/amiri/amiri-boldslanted-webfont.svg b/assets/fonts/amiri/amiri-boldslanted-webfont.svg new file mode 100644 index 0000000..bc41052 --- /dev/null +++ b/assets/fonts/amiri/amiri-boldslanted-webfont.svg @@ -0,0 +1,1124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/amiri/amiri-boldslanted-webfont.ttf b/assets/fonts/amiri/amiri-boldslanted-webfont.ttf new file mode 100644 index 0000000..cb427a4 Binary files /dev/null and b/assets/fonts/amiri/amiri-boldslanted-webfont.ttf differ diff --git a/assets/fonts/amiri/amiri-boldslanted-webfont.woff b/assets/fonts/amiri/amiri-boldslanted-webfont.woff new file mode 100644 index 0000000..83c2037 Binary files /dev/null and b/assets/fonts/amiri/amiri-boldslanted-webfont.woff differ diff --git a/assets/fonts/amiri/amiri-boldslanted-webfont.woff2 b/assets/fonts/amiri/amiri-boldslanted-webfont.woff2 new file mode 100644 index 0000000..188b9c7 Binary files /dev/null and b/assets/fonts/amiri/amiri-boldslanted-webfont.woff2 differ diff --git a/assets/fonts/amiri/amiri-regular-demo.html b/assets/fonts/amiri/amiri-regular-demo.html new file mode 100644 index 0000000..77bb755 --- /dev/null +++ b/assets/fonts/amiri/amiri-regular-demo.html @@ -0,0 +1,606 @@ + + + + + + + + + + + + + Amiri Regular Specimen + + + + + + +
+ + + +
+ + +
+ +
+
+
AaBb
+
+
+ +
+
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
+
+
+
+ + + + + + + + + + + + + + + + +
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
+ +
+ +
+ + + +
+ + +
+
◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body
body
body
body
+
+ bodyAmiri Regular +
+
+ bodyArial +
+
+ bodyVerdana +
+
+ bodyGeorgia +
+ + + +
+ + +
+ +
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+ +
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + +
+
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + + +
+ +
+ +
+ +
+

Lorem Ipsum Dolor

+

Etiam porta sem malesuada magna mollis euismod

+ + +
+
+
+
+

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

+ + +

Pellentesque ornare sem

+ +

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+ +

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

+ +

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

+ +

Cras mattis consectetur

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

+ +

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

+
+ + +
+ +
+ + + + + + +
+
+
+ +

Language Support

+

The subset of Amiri Regular in this kit supports the following languages:
+ + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish

+

Glyph Chart

+

The subset of Amiri Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

+
+ +

&#32;

+

&#33;

!
+

&#34;

"
+

&#35;

#
+

&#36;

$
+

&#37;

%
+

&#38;

&
+

&#39;

'
+

&#40;

(
+

&#41;

)
+

&#42;

*
+

&#43;

+
+

&#44;

,
+

&#45;

-
+

&#46;

.
+

&#47;

/
+

&#48;

0
+

&#49;

1
+

&#50;

2
+

&#51;

3
+

&#52;

4
+

&#53;

5
+

&#54;

6
+

&#55;

7
+

&#56;

8
+

&#57;

9
+

&#58;

:
+

&#59;

;
+

&#60;

<
+

&#61;

=
+

&#62;

>
+

&#63;

?
+

&#64;

@
+

&#65;

A
+

&#66;

B
+

&#67;

C
+

&#68;

D
+

&#69;

E
+

&#70;

F
+

&#71;

G
+

&#72;

H
+

&#73;

I
+

&#74;

J
+

&#75;

K
+

&#76;

L
+

&#77;

M
+

&#78;

N
+

&#79;

O
+

&#80;

P
+

&#81;

Q
+

&#82;

R
+

&#83;

S
+

&#84;

T
+

&#85;

U
+

&#86;

V
+

&#87;

W
+

&#88;

X
+

&#89;

Y
+

&#90;

Z
+

&#91;

[
+

&#92;

\
+

&#93;

]
+

&#94;

^
+

&#95;

_
+

&#96;

`
+

&#97;

a
+

&#98;

b
+

&#99;

c
+

&#100;

d
+

&#101;

e
+

&#102;

f
+

&#103;

g
+

&#104;

h
+

&#105;

i
+

&#106;

j
+

&#107;

k
+

&#108;

l
+

&#109;

m
+

&#110;

n
+

&#111;

o
+

&#112;

p
+

&#113;

q
+

&#114;

r
+

&#115;

s
+

&#116;

t
+

&#117;

u
+

&#118;

v
+

&#119;

w
+

&#120;

x
+

&#121;

y
+

&#122;

z
+

&#123;

{
+

&#124;

|
+

&#125;

}
+

&#126;

~
+

&#32;

+

&#161;

¡
+

&#162;

¢
+

&#163;

£
+

&#164;

¤
+

&#165;

¥
+

&#166;

¦
+

&#167;

§
+

&#168;

¨
+

&#169;

©
+

&#170;

ª
+

&#171;

«
+

&#172;

¬
+

&#173;

­
+

&#174;

®
+

&#175;

¯
+

&#176;

°
+

&#177;

±
+

&#178;

²
+

&#179;

³
+

&#180;

´
+

&#181;

µ
+

&#182;

+

&#183;

·
+

&#184;

¸
+

&#185;

¹
+

&#186;

º
+

&#187;

»
+

&#188;

¼
+

&#189;

½
+

&#190;

¾
+

&#191;

¿
+

&#192;

À
+

&#193;

Á
+

&#194;

Â
+

&#195;

Ã
+

&#196;

Ä
+

&#197;

Å
+

&#198;

Æ
+

&#199;

Ç
+

&#200;

È
+

&#201;

É
+

&#202;

Ê
+

&#203;

Ë
+

&#204;

Ì
+

&#205;

Í
+

&#206;

Î
+

&#207;

Ï
+

&#208;

Ð
+

&#209;

Ñ
+

&#210;

Ò
+

&#211;

Ó
+

&#212;

Ô
+

&#213;

Õ
+

&#214;

Ö
+

&#215;

×
+

&#216;

Ø
+

&#217;

Ù
+

&#218;

Ú
+

&#219;

Û
+

&#220;

Ü
+

&#221;

Ý
+

&#222;

Þ
+

&#223;

ß
+

&#224;

à
+

&#225;

á
+

&#226;

â
+

&#227;

ã
+

&#228;

ä
+

&#229;

å
+

&#230;

æ
+

&#231;

ç
+

&#232;

è
+

&#233;

é
+

&#234;

ê
+

&#235;

ë
+

&#236;

ì
+

&#237;

í
+

&#238;

î
+

&#239;

ï
+

&#240;

ð
+

&#241;

ñ
+

&#242;

ò
+

&#243;

ó
+

&#244;

ô
+

&#245;

õ
+

&#246;

ö
+

&#247;

÷
+

&#248;

ø
+

&#249;

ù
+

&#250;

ú
+

&#251;

û
+

&#252;

ü
+

&#253;

ý
+

&#254;

þ
+

&#255;

ÿ
+

&#338;

Œ
+

&#339;

œ
+

&#376;

Ÿ
+

&#8192;

 
+

&#8193;

+

&#8194;

+

&#8195;

+

&#8196;

+

&#8197;

+

&#8198;

+

&#8199;

+

&#8200;

+

&#8201;

+

&#8202;

+

&#8208;

+

&#8209;

+

&#8210;

+

&#8211;

+

&#8212;

+

&#8216;

+

&#8217;

+

&#8218;

+

&#8220;

+

&#8221;

+

&#8222;

+

&#8226;

+

&#8230;

+

&#8239;

+

&#8249;

+

&#8250;

+

&#8287;

+

&#8364;

+

&#9724;

+
+
+ + +
+
+ + +
+ +
+ +
+
+
+

Installing Webfonts

+ +

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

+ +

1. Upload your webfonts

+

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

+ +

2. Include the webfont stylesheet

+

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

+ + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

3. Modify your own stylesheet

+

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

+p { font-family: 'WebFont', Arial, sans-serif; } + +

4. Test

+

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

+
+ + +
+ +
+ +
+ +
+ + diff --git a/assets/fonts/amiri/amiri-regular-webfont.eot b/assets/fonts/amiri/amiri-regular-webfont.eot new file mode 100644 index 0000000..f7ca3ac Binary files /dev/null and b/assets/fonts/amiri/amiri-regular-webfont.eot differ diff --git a/assets/fonts/amiri/amiri-regular-webfont.svg b/assets/fonts/amiri/amiri-regular-webfont.svg new file mode 100644 index 0000000..fda62f3 --- /dev/null +++ b/assets/fonts/amiri/amiri-regular-webfont.svg @@ -0,0 +1,1224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/amiri/amiri-regular-webfont.ttf b/assets/fonts/amiri/amiri-regular-webfont.ttf new file mode 100644 index 0000000..c22e27b Binary files /dev/null and b/assets/fonts/amiri/amiri-regular-webfont.ttf differ diff --git a/assets/fonts/amiri/amiri-regular-webfont.woff b/assets/fonts/amiri/amiri-regular-webfont.woff new file mode 100644 index 0000000..fd2b8de Binary files /dev/null and b/assets/fonts/amiri/amiri-regular-webfont.woff differ diff --git a/assets/fonts/amiri/amiri-regular-webfont.woff2 b/assets/fonts/amiri/amiri-regular-webfont.woff2 new file mode 100644 index 0000000..5e0c3bf Binary files /dev/null and b/assets/fonts/amiri/amiri-regular-webfont.woff2 differ diff --git a/assets/fonts/amiri/amiri-slanted-demo.html b/assets/fonts/amiri/amiri-slanted-demo.html new file mode 100644 index 0000000..063def7 --- /dev/null +++ b/assets/fonts/amiri/amiri-slanted-demo.html @@ -0,0 +1,610 @@ + + + + + + + + + + + + + Amiri Slanted Specimen + + + + + + +
+ + + +
+ + +
+ +
+
+
AaBb
+
+
+ +
+
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
+
+
+
+ + + + + + + + + + + + + + + + +
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
+ +
+ +
+ + + +
+ + +
+
◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body
body
body
body
+
+ bodyAmiri Slanted +
+
+ bodyArial +
+
+ bodyVerdana +
+
+ bodyGeorgia +
+ + + +
+ + +
+ +
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+ +
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + +
+
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + + +
+ +
+ +
+ +
+

Lorem Ipsum Dolor

+

Etiam porta sem malesuada magna mollis euismod

+ + +
+
+
+
+

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

+ + +

Pellentesque ornare sem

+ +

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+ +

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

+ +

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

+ +

Cras mattis consectetur

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

+ +

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

+
+ + +
+ +
+ + + + + + +
+
+
+ +

Language Support

+

The subset of Amiri Slanted in this kit supports the following languages:
+ + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Swedish

+

Glyph Chart

+

The subset of Amiri Slanted in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

+
+ +

&#32;

+

&#33;

!
+

&#34;

"
+

&#35;

#
+

&#36;

$
+

&#37;

%
+

&#38;

&
+

&#39;

'
+

&#40;

(
+

&#41;

)
+

&#42;

*
+

&#43;

+
+

&#44;

,
+

&#45;

-
+

&#46;

.
+

&#47;

/
+

&#48;

0
+

&#49;

1
+

&#50;

2
+

&#51;

3
+

&#52;

4
+

&#53;

5
+

&#54;

6
+

&#55;

7
+

&#56;

8
+

&#57;

9
+

&#58;

:
+

&#59;

;
+

&#60;

<
+

&#61;

=
+

&#62;

>
+

&#63;

?
+

&#64;

@
+

&#65;

A
+

&#66;

B
+

&#67;

C
+

&#68;

D
+

&#69;

E
+

&#70;

F
+

&#71;

G
+

&#72;

H
+

&#73;

I
+

&#74;

J
+

&#75;

K
+

&#76;

L
+

&#77;

M
+

&#78;

N
+

&#79;

O
+

&#80;

P
+

&#81;

Q
+

&#82;

R
+

&#83;

S
+

&#84;

T
+

&#85;

U
+

&#86;

V
+

&#87;

W
+

&#88;

X
+

&#89;

Y
+

&#90;

Z
+

&#91;

[
+

&#92;

\
+

&#93;

]
+

&#94;

^
+

&#95;

_
+

&#96;

`
+

&#97;

a
+

&#98;

b
+

&#99;

c
+

&#100;

d
+

&#101;

e
+

&#102;

f
+

&#103;

g
+

&#104;

h
+

&#105;

i
+

&#106;

j
+

&#107;

k
+

&#108;

l
+

&#109;

m
+

&#110;

n
+

&#111;

o
+

&#112;

p
+

&#113;

q
+

&#114;

r
+

&#115;

s
+

&#116;

t
+

&#117;

u
+

&#118;

v
+

&#119;

w
+

&#120;

x
+

&#121;

y
+

&#122;

z
+

&#123;

{
+

&#124;

|
+

&#125;

}
+

&#126;

~
+

&#160;

 
+

&#161;

¡
+

&#162;

¢
+

&#163;

£
+

&#164;

¤
+

&#165;

¥
+

&#166;

¦
+

&#167;

§
+

&#168;

¨
+

&#169;

©
+

&#170;

ª
+

&#171;

«
+

&#172;

¬
+

&#173;

­
+

&#174;

®
+

&#175;

¯
+

&#176;

°
+

&#177;

±
+

&#178;

²
+

&#179;

³
+

&#180;

´
+

&#181;

µ
+

&#182;

+

&#183;

·
+

&#184;

¸
+

&#185;

¹
+

&#186;

º
+

&#187;

»
+

&#188;

¼
+

&#189;

½
+

&#190;

¾
+

&#191;

¿
+

&#192;

À
+

&#193;

Á
+

&#194;

Â
+

&#195;

Ã
+

&#196;

Ä
+

&#197;

Å
+

&#198;

Æ
+

&#199;

Ç
+

&#200;

È
+

&#201;

É
+

&#202;

Ê
+

&#203;

Ë
+

&#204;

Ì
+

&#205;

Í
+

&#206;

Î
+

&#207;

Ï
+

&#208;

Ð
+

&#209;

Ñ
+

&#210;

Ò
+

&#211;

Ó
+

&#212;

Ô
+

&#213;

Õ
+

&#214;

Ö
+

&#215;

×
+

&#216;

Ø
+

&#217;

Ù
+

&#218;

Ú
+

&#219;

Û
+

&#220;

Ü
+

&#221;

Ý
+

&#222;

Þ
+

&#223;

ß
+

&#224;

à
+

&#225;

á
+

&#226;

â
+

&#227;

ã
+

&#228;

ä
+

&#229;

å
+

&#230;

æ
+

&#231;

ç
+

&#232;

è
+

&#233;

é
+

&#234;

ê
+

&#235;

ë
+

&#236;

ì
+

&#237;

í
+

&#238;

î
+

&#239;

ï
+

&#240;

ð
+

&#241;

ñ
+

&#242;

ò
+

&#243;

ó
+

&#244;

ô
+

&#245;

õ
+

&#246;

ö
+

&#247;

÷
+

&#248;

ø
+

&#249;

ù
+

&#250;

ú
+

&#251;

û
+

&#252;

ü
+

&#253;

ý
+

&#254;

þ
+

&#255;

ÿ
+

&#338;

Œ
+

&#339;

œ
+

&#376;

Ÿ
+

&#8192;

 
+

&#8193;

+

&#8194;

+

&#8195;

+

&#8196;

+

&#8197;

+

&#8198;

+

&#8199;

+

&#8200;

+

&#8201;

+

&#8202;

+

&#8208;

+

&#8209;

+

&#8210;

+

&#8211;

+

&#8212;

+

&#8216;

+

&#8217;

+

&#8218;

+

&#8220;

+

&#8221;

+

&#8222;

+

&#8226;

+

&#8230;

+

&#8239;

+

&#8249;

+

&#8250;

+

&#8287;

+

&#8364;

+

&#9724;

+

&#64257;

+

&#64258;

+

&#64259;

+

&#64260;

+
+
+ + +
+
+ + +
+ +
+ +
+
+
+

Installing Webfonts

+ +

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

+ +

1. Upload your webfonts

+

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

+ +

2. Include the webfont stylesheet

+

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

+ + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

3. Modify your own stylesheet

+

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

+p { font-family: 'WebFont', Arial, sans-serif; } + +

4. Test

+

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

+
+ + +
+ +
+ +
+ +
+ + diff --git a/assets/fonts/amiri/amiri-slanted-webfont.eot b/assets/fonts/amiri/amiri-slanted-webfont.eot new file mode 100644 index 0000000..52d28dd Binary files /dev/null and b/assets/fonts/amiri/amiri-slanted-webfont.eot differ diff --git a/assets/fonts/amiri/amiri-slanted-webfont.svg b/assets/fonts/amiri/amiri-slanted-webfont.svg new file mode 100644 index 0000000..c64c726 --- /dev/null +++ b/assets/fonts/amiri/amiri-slanted-webfont.svg @@ -0,0 +1,1124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/amiri/amiri-slanted-webfont.ttf b/assets/fonts/amiri/amiri-slanted-webfont.ttf new file mode 100644 index 0000000..a23f3c0 Binary files /dev/null and b/assets/fonts/amiri/amiri-slanted-webfont.ttf differ diff --git a/assets/fonts/amiri/amiri-slanted-webfont.woff b/assets/fonts/amiri/amiri-slanted-webfont.woff new file mode 100644 index 0000000..91cdf0a Binary files /dev/null and b/assets/fonts/amiri/amiri-slanted-webfont.woff differ diff --git a/assets/fonts/amiri/amiri-slanted-webfont.woff2 b/assets/fonts/amiri/amiri-slanted-webfont.woff2 new file mode 100644 index 0000000..16bb3ab Binary files /dev/null and b/assets/fonts/amiri/amiri-slanted-webfont.woff2 differ diff --git a/assets/fonts/amiri/amiri.css b/assets/fonts/amiri/amiri.css new file mode 100644 index 0000000..c9efa77 --- /dev/null +++ b/assets/fonts/amiri/amiri.css @@ -0,0 +1,64 @@ +/* Generated by Font Squirrel (http://www.fontsquirrel.com) on September 30, 2015 */ + + + +@font-face { + font-family: 'amiri'; + src: url('amiri-bold-webfont.eot'); + src: url('amiri-bold-webfont.eot?#iefix') format('embedded-opentype'), + url('amiri-bold-webfont.woff2') format('woff2'), + url('amiri-bold-webfont.woff') format('woff'), + url('amiri-bold-webfont.ttf') format('truetype'), + url('amiri-bold-webfont.svg#amiribold') format('svg'); + font-weight: 700; + font-style: normal; + +} + + + + +@font-face { + font-family: 'amiri'; + src: url('amiri-boldslanted-webfont.eot'); + src: url('amiri-boldslanted-webfont.eot?#iefix') format('embedded-opentype'), + url('amiri-boldslanted-webfont.woff2') format('woff2'), + url('amiri-boldslanted-webfont.woff') format('woff'), + url('amiri-boldslanted-webfont.ttf') format('truetype'), + url('amiri-boldslanted-webfont.svg#amiribold_slanted') format('svg'); + font-weight: 700; + font-style: italic; + +} + + + + +@font-face { + font-family: 'amiri'; + src: url('amiri-regular-webfont.eot'); + src: url('amiri-regular-webfont.eot?#iefix') format('embedded-opentype'), + url('amiri-regular-webfont.woff2') format('woff2'), + url('amiri-regular-webfont.woff') format('woff'), + url('amiri-regular-webfont.ttf') format('truetype'), + url('amiri-regular-webfont.svg#amiriregular') format('svg'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'amiri'; + src: url('amiri-slanted-webfont.eot'); + src: url('amiri-slanted-webfont.eot?#iefix') format('embedded-opentype'), + url('amiri-slanted-webfont.woff2') format('woff2'), + url('amiri-slanted-webfont.woff') format('woff'), + url('amiri-slanted-webfont.ttf') format('truetype'), + url('amiri-slanted-webfont.svg#amirislanted') format('svg'); + font-weight: normal; + font-style: italic; + +} diff --git a/assets/fonts/amiri/generator_config.txt b/assets/fonts/amiri/generator_config.txt new file mode 100644 index 0000000..c71db93 --- /dev/null +++ b/assets/fonts/amiri/generator_config.txt @@ -0,0 +1,5 @@ +# Font Squirrel Font-face Generator Configuration File +# Upload this file to the generator to recreate the settings +# you used to create these fonts. + +{"mode":"optimal","formats":["ttf","woff","woff2","eotz"],"tt_instructor":"default","fix_vertical_metrics":"Y","fix_gasp":"xy","add_spaces":"Y","add_hyphens":"Y","fallback":"none","fallback_custom":"100","options_subset":"basic","subset_custom":"","subset_custom_range":"","subset_ot_features_list":"","css_stylesheet":"stylesheet.css","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0"} \ No newline at end of file diff --git a/assets/fonts/dejavu/DejaVu Fonts License.txt b/assets/fonts/dejavu/DejaVu Fonts License.txt new file mode 100644 index 0000000..6939980 --- /dev/null +++ b/assets/fonts/dejavu/DejaVu Fonts License.txt @@ -0,0 +1,97 @@ +Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. +Glyphs imported from Arev fonts are (c) Tavmjong Bah (see below) + +Bitstream Vera Fonts Copyright +------------------------------ + +Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is +a trademark of Bitstream, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of the fonts accompanying this license ("Fonts") and associated +documentation files (the "Font Software"), to reproduce and distribute the +Font Software, including without limitation the rights to use, copy, merge, +publish, distribute, and/or sell copies of the Font Software, and to permit +persons to whom the Font Software is furnished to do so, subject to the +following conditions: + +The above copyright and trademark notices and this permission notice shall +be included in all copies of one or more of the Font Software typefaces. + +The Font Software may be modified, altered, or added to, and in particular +the designs of glyphs or characters in the Fonts may be modified and +additional glyphs or characters may be added to the Fonts, only if the fonts +are renamed to names not containing either the words "Bitstream" or the word +"Vera". + +This License becomes null and void to the extent applicable to Fonts or Font +Software that has been modified and is distributed under the "Bitstream +Vera" names. + +The Font Software may be sold as part of a larger software package but no +copy of one or more of the Font Software typefaces may be sold by itself. + +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, +TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME +FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING +ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF +THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE +FONT SOFTWARE. + +Except as contained in this notice, the names of Gnome, the Gnome +Foundation, and Bitstream Inc., shall not be used in advertising or +otherwise to promote the sale, use or other dealings in this Font Software +without prior written authorization from the Gnome Foundation or Bitstream +Inc., respectively. For further information, contact: fonts at gnome dot +org. + +Arev Fonts Copyright +------------------------------ + +Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the fonts accompanying this license ("Fonts") and +associated documentation files (the "Font Software"), to reproduce +and distribute the modifications to the Bitstream Vera Font Software, +including without limitation the rights to use, copy, merge, publish, +distribute, and/or sell copies of the Font Software, and to permit +persons to whom the Font Software is furnished to do so, subject to +the following conditions: + +The above copyright and trademark notices and this permission notice +shall be included in all copies of one or more of the Font Software +typefaces. + +The Font Software may be modified, altered, or added to, and in +particular the designs of glyphs or characters in the Fonts may be +modified and additional glyphs or characters may be added to the +Fonts, only if the fonts are renamed to names not containing either +the words "Tavmjong Bah" or the word "Arev". + +This License becomes null and void to the extent applicable to Fonts +or Font Software that has been modified and is distributed under the +"Tavmjong Bah Arev" names. + +The Font Software may be sold as part of a larger software package but +no copy of one or more of the Font Software typefaces may be sold by +itself. + +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL +TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. + +Except as contained in this notice, the name of Tavmjong Bah shall not +be used in advertising or otherwise to promote the sale, use or other +dealings in this Font Software without prior written authorization +from Tavmjong Bah. For further information, contact: tavmjong @ free +. fr. \ No newline at end of file diff --git a/assets/fonts/dejavu/dejavu.css b/assets/fonts/dejavu/dejavu.css new file mode 100644 index 0000000..b7c894a --- /dev/null +++ b/assets/fonts/dejavu/dejavu.css @@ -0,0 +1,130 @@ + +/* Generated by Font Squirrel (http://www.fontsquirrel.com) on April 28, 2010 12:00:36 PM America/New_York */ + +/*================================*/ +/** MONO **/ +@font-face { + font-family: 'DejaVuSansMono'; + src: url('mono/DejaVuSansMono-webfont.eot'); + src: local('☺'), url('mono/DejaVuSansMono-webfont.woff') format('woff'), url('mono/DejaVuSansMono-webfont.ttf') format('truetype'), url('mono/DejaVuSansMono-webfont.svg') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'DejaVuSansMono'; + src: url('mono/DejaVuSansMono-Oblique-webfont.eot'); + src: local('☺'), url('mono/DejaVuSansMono-Oblique-webfont.woff') format('woff'), url('mono/DejaVuSansMono-Oblique-webfont.ttf') format('truetype'), url('mono/DejaVuSansMono-Oblique-webfont.svg') format('svg'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'DejaVuSansMono'; + src: url('mono/DejaVuSansMono-Bold-webfont.eot'); + src: local('☺'), url('mono/DejaVuSansMono-Bold-webfont.woff') format('woff'), url('mono/DejaVuSansMono-Bold-webfont.ttf') format('truetype'), url('mono/DejaVuSansMono-Bold-webfont.svg') format('svg'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'DejaVuSansMono'; + src: url('mono/DejaVuSansMono-BoldOblique-webfont.eot'); + src: local('☺'), url('mono/DejaVuSansMono-BoldOblique-webfont.woff') format('woff'), url('mono/DejaVuSansMono-BoldOblique-webfont.ttf') format('truetype'), url('mono/DejaVuSansMono-BoldOblique-webfont.svg') format('svg'); + font-weight: bold; + font-style: italic; +} + +/*================================*/ +/** SANS **/ +/*Extra light*/ +@font-face { + font-family: 'DejaVuSans'; + src: url('sans/dejavusans-extralight-webfont.eot'); + src: local('☺'), url('sans/dejavusans-extralight-webfont.woff') format('woff'), url('sans/dejavusans-extralight-webfont.ttf') format('truetype'), url('sans/dejavusans-extralight-webfont.svg') format('svg'); + font-weight: 100; + font-style: normal; +} +/*Normal*/ +@font-face { + font-family: 'DejaVuSans'; + src: url('sans/dejavusans-webfont.eot'); + src: local('☺'), url('sans/dejavusans-webfont.woff') format('woff'), url('sans/dejavusans-webfont.ttf') format('truetype'), url('sans/dejavusans-webfont.svg') format('svg'); + font-weight: normal; + font-style: normal; +} +/*Bold*/ +@font-face { + font-family: 'DejaVuSans'; + src: url('sans/dejavusans-bold-webfont.eot'); + src: local('☺'), url('sans/dejavusans-bold-webfont.woff') format('woff'), url('sans/dejavusans-bold-webfont.ttf') format('truetype'), url('sans/dejavusans-bold-webfont.svg') format('svg'); + font-weight: bold; + font-style: normal; +} + +/*================================*/ +/** SERIF **/ +@font-face { + font-family: 'DejaVuSerif'; + src: url('serif/DejaVuSerif-webfont.eot'); + src: local('☺'), url('serif/DejaVuSerif-webfont.woff') format('woff'), url('serif/DejaVuSerif-webfont.ttf') format('truetype'), url('serif/DejaVuSerif-webfont.svg') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'DejaVuSerif'; + src: url('serif/DejaVuSerif-Italic-webfont.eot'); + src: local('☺'), url('serif/DejaVuSerif-Italic-webfont.woff') format('woff'), url('serif/DejaVuSerif-Italic-webfont.ttf') format('truetype'), url('serif/DejaVuSerif-Italic-webfont.svg') format('svg'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'DejaVuSerif'; + src: url('serif/DejaVuSerif-Bold-webfont.eot'); + src: local('☺'), url('serif/DejaVuSerif-Bold-webfont.woff') format('woff'), url('serif/DejaVuSerif-Bold-webfont.ttf') format('truetype'), url('serif/DejaVuSerif-Bold-webfont.svg') format('svg'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'DejaVuSerif'; + src: url('serif/DejaVuSerif-BoldItalic-webfont.eot'); + src: local('☺'), url('serif/DejaVuSerif-BoldItalic-webfont.woff') format('woff'), url('serif/DejaVuSerif-BoldItalic-webfont.ttf') format('truetype'), url('serif/DejaVuSerif-BoldItalic-webfont.svg') format('svg'); + font-weight: bold; + font-style: italic; +} + +/*Condensed*/ +@font-face { + font-family: 'DejaVuSerif-condensed'; + src: url('serif/DejaVuSerifCondensed-webfont.eot'); + src: local('☺'), url('serif/DejaVuSerifCondensed-webfont.woff') format('woff'), url('serif/DejaVuSerifCondensed-webfont.ttf') format('truetype'), url('serif/DejaVuSerifCondensed-webfont.svg') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'DejaVuSerif-condensed'; + src: url('serif/DejaVuSerifCondensed-Italic-webfont.eot'); + src: local('☺'), url('serif/DejaVuSerifCondensed-Italic-webfont.woff') format('woff'), url('serif/DejaVuSerifCondensed-Italic-webfont.ttf') format('truetype'), url('serif/DejaVuSerifCondensed-Italic-webfont.svg') format('svg'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'DejaVuSerif-condensed'; + src: url('serif/DejaVuSerifCondensed-Bold-webfont.eot'); + src: local('☺'), url('serif/DejaVuSerifCondensed-Bold-webfont.woff') format('woff'), url('serif/DejaVuSerifCondensed-Bold-webfont.ttf') format('truetype'), url('serif/DejaVuSerifCondensed-Bold-webfont.svg') format('svg'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'DejaVuSerif-condensed'; + src: url('serif/DejaVuSerifCondensed-BoldItalic-webfont.eot'); + src: local('☺'), url('serif/DejaVuSerifCondensed-BoldItalic-webfont.woff') format('woff'), url('serif/DejaVuSerifCondensed-BoldItalic-webfont.ttf') format('truetype'), url('serif/DejaVuSerifCondensed-BoldItalic-webfont.svg') format('svg'); + font-weight: bold; + font-style: italic; +} \ No newline at end of file diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-cufon.js b/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-cufon.js new file mode 100644 index 0000000..770acf5 --- /dev/null +++ b/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-cufon.js @@ -0,0 +1,18 @@ +/*! + * The following copyright notice may not be removed under any circumstances. + * + * Copyright: + * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + * DejaVu changes are in public domain + * + * + * Manufacturer: + * DejaVu fonts team + * + * Vendor URL: + * http://dejavu.sourceforge.net + * + * License information: + * http://dejavu.sourceforge.net/wiki/index.php/License + */ +Cufon.registerFont({"w":1233,"face":{"font-family":"DejaVu Sans Mono","font-weight":700,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 7 9 3 6 4 2 2 4","ascent":"1556","descent":"-492","x-height":"29","bbox":"-6 -1901 1235 483","underline-thickness":"90","underline-position":"-85","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{},"!":{"d":"483,-283r267,0r0,283r-267,0r0,-283xm483,-1493r267,0r0,655r-33,357r-199,0r-35,-357r0,-655"},"\"":{"d":"999,-1493r0,555r-256,0r0,-555r256,0xm487,-1493r0,555r-256,0r0,-555r256,0"},"#":{"d":"707,-1470r-95,374r203,0r94,-374r224,0r-97,374r193,0r0,215r-246,0r-74,293r205,0r0,215r-258,0r-94,373r-221,0r94,-373r-205,0r-94,373r-221,0r94,-373r-207,0r0,-215r260,0r74,-293r-219,0r0,-215r274,0r94,-374r222,0xm762,-881r-205,0r-74,293r205,0"},"$":{"d":"694,-226v79,-10,133,-64,133,-149v0,-88,-54,-139,-133,-153r0,302xm553,-1100v-77,10,-125,50,-125,133v0,85,51,130,125,150r0,-283xm164,-942v0,-234,158,-365,389,-377r0,-237r141,0r1,237v108,7,209,27,304,57r0,256v-81,-52,-181,-86,-305,-94r0,307v131,21,231,66,298,135v67,69,100,160,100,275v1,226,-172,376,-397,383r-1,301r-141,0r-1,-301v-141,-6,-263,-43,-380,-92r0,-262v114,66,232,122,381,128r0,-329v-131,-26,-229,-71,-293,-135v-64,-64,-96,-147,-96,-252"},"%":{"d":"352,-793v-173,0,-319,-145,-319,-319v0,-174,146,-320,319,-320v173,0,320,147,320,320v0,173,-147,319,-320,319xm489,-1112v0,-74,-63,-137,-137,-137v-74,0,-137,62,-137,137v0,75,63,137,137,137v76,0,137,-62,137,-137xm86,-561r1042,-418r41,96r-1048,418xm899,0v-174,0,-319,-145,-319,-319v0,-174,145,-320,319,-320v172,0,320,148,320,320v0,171,-149,319,-320,319xm1036,-319v0,-74,-65,-138,-139,-138v-74,0,-135,64,-135,138v0,75,60,137,135,137v75,0,139,-63,139,-137"},"&":{"d":"1214,-745v5,224,-37,380,-141,499r162,246r-317,0r-48,-72v-88,59,-197,99,-331,101v-287,5,-502,-190,-502,-471v0,-97,24,-185,71,-264v47,-79,116,-148,209,-207v-53,-85,-98,-160,-98,-271v0,-234,172,-338,424,-336v105,0,197,17,281,43r0,256v-74,-42,-157,-72,-260,-73v-94,-1,-159,28,-162,110v0,24,10,57,30,99v20,42,54,97,99,165r313,480v43,-71,52,-200,35,-305r235,0xm307,-496v-2,173,142,322,329,282v40,-8,85,-30,112,-48r-308,-469v-77,50,-131,122,-133,235"},"'":{"d":"743,-1493r0,555r-256,0r0,-555r256,0"},"(":{"d":"924,-1554v-88,159,-153,314,-196,463v-85,299,-85,595,0,895v43,150,108,306,196,466r-228,0v-106,-154,-185,-306,-236,-456v-103,-299,-103,-615,0,-914v52,-150,131,-302,236,-454r228,0"},")":{"d":"309,-1554r228,0v105,152,183,304,235,454v103,299,104,615,1,914v-51,150,-130,302,-236,456r-228,0v88,-160,153,-316,196,-466v85,-301,85,-596,0,-895v-43,-149,-108,-304,-196,-463"},"*":{"d":"1108,-1217r-330,173r330,174r-76,141r-332,-184r0,344r-172,0r0,-344r-331,184r-76,-141r332,-174r-332,-173r76,-141r331,182r0,-344r172,0r0,344r332,-182"},"+":{"d":"735,-1192r0,430r430,0r0,238r-430,0r0,432r-237,0r0,-432r-432,0r0,-238r432,0r0,-430r237,0"},",":{"d":"461,-367r313,0r0,271r-196,383r-216,0r99,-383r0,-271"},"-":{"d":"301,-735r631,0r0,291r-631,0r0,-291"},".":{"d":"449,-367r333,0r0,367r-333,0r0,-367"},"\/":{"d":"899,-1493r221,0r-786,1683r-221,0"},"0":{"d":"616,-621v-68,0,-124,-55,-124,-124v0,-69,56,-125,124,-125v69,0,125,56,125,125v0,68,-56,124,-125,124xm616,-1270v-68,0,-115,43,-149,125v-59,142,-60,658,0,799v35,82,81,125,149,125v69,0,116,-43,150,-125v60,-142,59,-658,0,-799v-35,-82,-81,-125,-150,-125xm123,-745v0,-259,41,-452,123,-581v82,-129,205,-194,370,-194v165,0,289,64,371,193v82,129,123,323,123,582v0,259,-41,452,-123,581v-82,129,-206,193,-371,193v-165,0,-288,-64,-370,-193v-82,-129,-123,-323,-123,-581"},"1":{"d":"188,-260r330,0r0,-969r-307,76r0,-266r309,-74r285,0r0,1233r330,0r0,260r-947,0r0,-260"},"2":{"d":"147,-1440v124,-45,256,-80,406,-80v158,0,283,36,373,110v90,74,135,175,135,302v0,154,-52,229,-131,336v-50,69,-368,383,-496,512r629,0r0,260r-948,0r0,-252r160,-170v190,-202,305,-326,346,-373v50,-57,86,-109,108,-153v22,-44,33,-88,33,-131v0,-137,-90,-212,-232,-209v-144,3,-270,60,-383,123r0,-275"},"3":{"d":"817,-428v0,-158,-105,-241,-268,-240r-158,0r0,-260r158,0v131,1,231,-48,231,-166v0,-121,-99,-178,-231,-176v-139,2,-264,37,-379,82r0,-268v121,-36,252,-63,395,-64v157,0,280,34,368,103v88,69,132,163,132,284v-1,191,-120,298,-293,328v202,34,328,162,328,389v0,309,-214,447,-543,445v-161,0,-308,-29,-432,-74r0,-274v118,59,262,95,432,96v146,1,259,-70,260,-205"},"4":{"d":"694,-1165r-377,590r377,0r0,-590xm668,-1493r309,0r0,918r164,0r0,253r-164,0r0,322r-283,0r0,-322r-592,0r0,-286"},"5":{"d":"512,-737v-124,2,-225,33,-319,78r0,-834r811,0r0,260r-572,0r0,277v47,-18,101,-27,164,-27v292,-5,498,211,498,504v0,320,-228,512,-557,508v-146,-2,-273,-26,-394,-64r0,-266v98,49,211,81,346,82v194,1,316,-78,318,-260v1,-161,-127,-261,-295,-258"},"6":{"d":"842,-477v0,-157,-57,-271,-199,-271v-142,0,-197,114,-197,271v0,157,55,270,197,270v142,0,199,-113,199,-270xm735,-1518v110,1,207,25,295,60r0,268v-88,-49,-175,-90,-291,-90v-107,0,-187,36,-243,108v-56,72,-85,177,-88,317v60,-83,154,-130,292,-130v282,0,422,194,422,489v0,320,-162,527,-471,527v-182,0,-315,-61,-397,-183v-82,-122,-123,-319,-123,-591v0,-259,50,-452,151,-581v101,-129,252,-194,453,-194"},"7":{"d":"135,-1493r944,0r0,209r-506,1284r-301,0r486,-1233r-623,0r0,-260"},"8":{"d":"838,-438v0,-134,-89,-228,-222,-228v-132,0,-221,94,-221,228v0,134,89,229,221,229v131,0,222,-98,222,-229xm129,-420v0,-193,111,-327,268,-371v-139,-47,-229,-152,-231,-327v-1,-255,186,-402,450,-402v265,0,452,146,451,402v-1,173,-91,279,-227,327v155,45,264,179,264,371v1,293,-187,449,-488,449v-301,0,-488,-156,-487,-449xm616,-1282v-113,0,-188,75,-188,188v0,116,73,191,188,191v116,0,189,-75,189,-191v0,-115,-73,-188,-189,-188"},"9":{"d":"498,39v-110,-1,-207,-25,-295,-59r0,-269v88,51,174,90,291,90v106,0,186,-36,242,-107v56,-71,86,-177,89,-318v-60,83,-154,130,-293,130v-281,0,-421,-195,-421,-489v0,-320,162,-524,471,-524v182,0,314,61,396,183v82,122,124,318,124,589v0,258,-50,452,-151,581v-101,129,-252,193,-453,193xm391,-1012v0,157,57,271,199,271v141,0,196,-114,196,-271v0,-157,-55,-270,-196,-270v-142,0,-199,113,-199,270"},":":{"d":"449,-1063r333,0r0,365r-333,0r0,-365xm449,-367r333,0r0,367r-333,0r0,-367"},";":{"d":"449,-367r333,0r0,271r-196,383r-215,0r78,-383r0,-271xm449,-1063r333,0r0,365r-333,0r0,-365"},"<":{"d":"1145,-926r-795,285r795,283r0,249r-1057,-415r0,-236r1057,-416r0,250"},"=":{"d":"88,-532r1057,0r0,237r-1057,0r0,-237xm88,-987r1057,0r0,235r-1057,0r0,-235"},">":{"d":"88,-926r0,-250r1057,416r0,236r-1057,415r0,-249r795,-283"},"?":{"d":"440,-283r267,0r0,283r-267,0r0,-283xm728,-674v-30,68,-18,178,-21,273r-267,0v1,-117,-5,-242,31,-323v51,-115,224,-234,287,-338v16,-26,22,-54,22,-83v-2,-100,-74,-137,-184,-135v-148,3,-259,66,-363,141r0,-268v114,-65,240,-111,400,-113v249,-3,431,119,432,353v0,51,-12,97,-34,141v-33,68,-147,177,-216,244v-45,44,-74,80,-87,108"},"@":{"d":"782,-303v128,0,191,-103,191,-242v0,-138,-63,-241,-191,-241v-128,0,-190,103,-190,241v0,139,62,242,190,242xm688,-1395v292,0,471,195,471,490r0,770r-196,0r0,-82v-47,66,-107,101,-213,102v-228,1,-365,-189,-365,-430v0,-241,136,-429,365,-428v99,0,170,36,213,96v12,-208,-90,-326,-287,-325v-139,0,-252,61,-340,183v-88,122,-131,281,-131,476v0,205,51,368,152,489v101,121,236,181,405,181v123,0,218,-39,299,-94r92,176v-100,68,-223,109,-381,110v-233,0,-419,-78,-558,-233v-139,-155,-208,-365,-208,-629v0,-258,62,-464,187,-619v125,-155,290,-233,495,-233"},"A":{"d":"616,-1223r-139,611r279,0xm436,-1493r361,0r403,1493r-295,0r-92,-369r-395,0r-90,369r-295,0"},"B":{"d":"860,-451v0,-169,-78,-227,-254,-227r-196,0r0,442r196,0v180,-2,254,-44,254,-215xm813,-1085v0,-131,-68,-174,-207,-175r-196,0r0,347r196,0v141,-1,207,-39,207,-172xm815,-799v223,22,344,149,344,389v0,144,-43,248,-130,313v-87,65,-228,97,-423,97r-481,0r0,-1495r481,0v166,0,290,32,374,95v84,63,126,157,126,282v0,197,-106,303,-291,319"},"C":{"d":"786,-236v133,0,210,-59,295,-135r0,328v-87,45,-185,71,-309,72v-201,0,-355,-66,-461,-199v-106,-133,-159,-324,-159,-575v0,-251,53,-443,159,-576v106,-133,260,-199,461,-199v122,0,225,27,309,72r0,328v-85,-77,-161,-135,-295,-135v-108,0,-189,43,-244,129v-55,86,-83,212,-83,381v0,168,28,295,83,381v55,86,136,128,244,128"},"D":{"d":"432,-1227r0,961r80,0v116,0,199,-37,248,-110v49,-73,74,-197,74,-372v0,-174,-25,-297,-74,-370v-49,-73,-132,-109,-248,-109r-80,0xm1141,-748v0,519,-182,743,-688,748r-316,0r0,-1493r316,0v506,5,688,227,688,745"},"E":{"d":"1098,0r-930,0r0,-1493r930,0r0,260r-635,0r0,322r575,0r0,260r-575,0r0,391r635,0r0,260"},"F":{"d":"1112,-1233r-635,0r0,322r578,0r0,260r-578,0r0,651r-295,0r0,-1493r930,0r0,260"},"G":{"d":"737,-236v57,0,105,-10,135,-34r0,-285r-202,0r0,-248r460,0r0,684v-102,88,-232,148,-407,148v-193,0,-343,-67,-448,-201v-105,-134,-158,-326,-158,-573v0,-251,53,-443,159,-576v106,-133,260,-199,461,-199v135,1,250,42,340,99r0,327v-73,-94,-170,-161,-319,-161v-112,0,-196,43,-251,127v-55,84,-83,212,-83,383v0,166,27,292,80,379v53,87,131,130,233,130"},"H":{"d":"137,-1493r295,0r0,569r369,0r0,-569r295,0r0,1493r-295,0r0,-664r-369,0r0,664r-295,0r0,-1493"},"I":{"d":"172,-1233r0,-260r889,0r0,260r-297,0r0,973r297,0r0,260r-889,0r0,-260r297,0r0,-973r-297,0"},"J":{"d":"516,29v-154,0,-289,-45,-407,-103r0,-342v96,98,215,180,380,180v160,0,224,-78,224,-243r0,-754r-361,0r0,-260r656,0r0,1014v-3,363,-134,508,-492,508"},"K":{"d":"117,-1493r295,0r0,590r462,-590r334,0r-471,588r488,905r-328,0r-354,-672r-131,166r0,506r-295,0r0,-1493"},"L":{"d":"225,0r0,-1493r295,0r0,1233r631,0r0,260r-926,0"},"M":{"d":"86,-1493r352,0r178,655r177,-655r354,0r0,1493r-254,0r0,-1196r-158,653r-235,0r-160,-653r0,1196r-254,0r0,-1493"},"N":{"d":"119,-1493r317,0r416,1085r0,-1085r260,0r0,1493r-315,0r-418,-1085r0,1085r-260,0r0,-1493"},"O":{"d":"616,-1255v-75,0,-127,42,-165,121v-66,136,-66,642,0,778v38,79,90,120,165,120v76,0,128,-41,166,-120v66,-136,66,-642,0,-778v-38,-79,-90,-121,-166,-121xm92,-745v0,-255,44,-448,132,-579v88,-131,219,-196,392,-196v173,0,304,65,392,196v88,131,133,324,133,579v0,255,-45,447,-133,578v-88,131,-219,196,-392,196v-173,0,-304,-65,-392,-196v-88,-131,-132,-323,-132,-578"},"P":{"d":"840,-1026v0,-174,-78,-217,-262,-219r-121,0r0,438r121,0v184,-2,262,-45,262,-219xm162,-1493r405,0v206,0,355,37,445,110v90,73,135,192,135,357v0,165,-45,284,-135,357v-90,73,-239,110,-445,110r-110,0r0,559r-295,0r0,-1493"},"Q":{"d":"656,23v-16,3,-26,6,-42,6v-171,0,-302,-65,-390,-196v-88,-131,-132,-323,-132,-578v0,-255,44,-448,132,-579v88,-131,219,-196,392,-196v173,0,304,65,392,196v88,131,133,324,133,579v0,175,-21,323,-63,441v-42,118,-103,202,-183,253r186,182r-202,150xm616,-1255v-75,0,-127,42,-165,121v-66,136,-66,642,0,778v38,79,90,120,165,120v76,0,128,-41,166,-120v66,-136,66,-642,0,-778v-38,-79,-90,-121,-166,-121"},"R":{"d":"1098,-1059v1,207,-106,331,-291,354v29,6,55,19,77,41v22,22,48,64,79,127r270,537r-324,0r-201,-421v-53,-113,-115,-169,-186,-169r-94,0r0,590r-295,0r0,-1493r426,0v192,0,329,34,413,102v84,68,126,179,126,332xm793,-1042v0,-153,-68,-202,-226,-203r-139,0r0,407r139,0v157,-1,226,-52,226,-204"},"S":{"d":"582,-215v135,1,229,-62,229,-188v0,-105,-69,-164,-156,-197r-145,-55v-149,-57,-249,-117,-302,-179v-53,-62,-79,-146,-79,-251v-1,-278,199,-439,487,-435v158,1,291,39,410,93r0,288v-107,-75,-229,-135,-387,-137v-129,-2,-219,48,-221,166v0,41,15,74,42,102v42,44,210,104,300,138v120,45,208,102,265,175v57,73,85,164,85,275v-3,321,-198,450,-537,449v-168,-1,-316,-43,-438,-105r0,-305v79,56,155,98,229,125v74,27,146,41,218,41"},"T":{"d":"764,0r-295,0r0,-1235r-379,0r0,-258r1053,0r0,258r-379,0r0,1235"},"U":{"d":"616,29v-375,0,-510,-190,-510,-580r0,-942r295,0r0,1016v-2,143,77,239,215,239v138,0,215,-96,215,-239r0,-1016r295,0r0,942v-2,390,-134,580,-510,580"},"V":{"d":"616,-246r263,-1247r297,0r-355,1493r-409,0r-355,-1493r297,0"},"W":{"d":"0,-1493r258,0r107,1096r129,-709r245,0r150,709r84,-1096r260,0r-172,1493r-275,0r-170,-784r-159,784r-273,0"},"X":{"d":"1206,0r-305,0r-285,-494r-284,494r-305,0r438,-758r-426,-735r305,0r272,475r273,-475r305,0r-424,735"},"Y":{"d":"8,-1493r318,0r290,600r291,-600r318,0r-461,905r0,588r-295,0r0,-588"},"Z":{"d":"137,-1493r1010,0r0,244r-692,989r706,0r0,260r-1046,0r0,-244r671,-989r-649,0r0,-260"},"[":{"d":"422,-1556r508,0r0,190r-242,0r0,1446r242,0r0,190r-508,0r0,-1826"},"\\":{"d":"334,-1493r786,1683r-223,0r-786,-1683r223,0"},"]":{"d":"811,-1556r0,1826r-508,0r0,-190r242,0r0,-1446r-242,0r0,-190r508,0"},"^":{"d":"739,-1493r437,557r-242,0r-318,-301r-317,301r-242,0r437,-557r245,0"},"_":{"d":"1233,293r0,190r-1233,0r0,-190r1233,0"},"`":{"d":"481,-1638r283,376r-197,0r-368,-376r282,0"},"a":{"d":"573,-174v177,-3,250,-154,244,-352r-117,0v-109,0,-186,14,-229,42v-43,28,-65,76,-65,144v-1,101,66,167,167,166xm614,-1147v375,0,494,127,494,508r0,639r-291,0r0,-125v-64,91,-174,153,-319,154v-248,2,-405,-139,-404,-383v0,-131,42,-228,127,-290v85,-62,216,-93,393,-93r203,0r0,-49v-2,-106,-85,-145,-203,-144v-169,2,-284,44,-409,111r0,-250v122,-50,246,-78,409,-78"},"b":{"d":"796,-303v70,-112,70,-397,0,-508v-38,-60,-86,-92,-149,-92v-63,0,-111,32,-150,92v-71,112,-71,397,0,508v39,60,87,92,150,92v63,0,111,-32,149,-92xm739,29v-153,0,-243,-80,-297,-195r0,166r-292,0r0,-1556r292,0r0,595v62,-106,142,-186,287,-186v133,0,235,51,307,152v72,101,107,247,107,436v0,187,-35,331,-106,434v-71,103,-170,154,-298,154"},"c":{"d":"762,-211v131,0,221,-47,299,-115r0,269v-93,54,-202,86,-342,86v-350,2,-551,-231,-551,-588v0,-358,203,-592,553,-590v138,1,241,34,340,86r0,268v-75,-65,-173,-114,-299,-114v-200,0,-297,139,-297,350v0,211,96,348,297,348"},"d":{"d":"504,-1147v144,0,225,81,287,186r0,-595r292,0r0,1556r-292,0r0,-166v-56,115,-143,195,-297,195v-128,0,-227,-51,-298,-154v-71,-103,-106,-247,-106,-434v0,-189,36,-335,108,-436v72,-101,173,-152,306,-152xm437,-811v-70,112,-70,397,0,508v38,60,86,92,149,92v63,0,111,-32,150,-92v71,-112,71,-397,0,-508v-39,-60,-87,-92,-150,-92v-63,0,-111,32,-149,92"},"e":{"d":"698,-203v167,-2,282,-50,404,-121r0,269v-128,52,-261,83,-432,84v-374,1,-578,-209,-578,-584v0,-349,195,-592,533,-592v338,0,527,217,524,563r0,119r-759,0v2,185,114,264,308,262xm854,-685v-2,-152,-77,-235,-229,-235v-144,1,-220,97,-232,236"},"f":{"d":"854,-1331v-90,1,-115,25,-115,113r0,98r344,0r0,225r-344,0r0,895r-293,0r0,-895r-272,0r0,-225r272,0r0,-78v5,-285,100,-354,396,-358r241,0r0,225r-229,0"},"g":{"d":"746,-336v71,-113,71,-369,0,-482v-74,-117,-224,-119,-298,-1v-71,112,-70,371,0,483v74,118,224,117,298,0xm514,-1149v140,1,238,73,289,172r0,-143r293,0r0,1036v-3,363,-151,508,-516,508v-137,0,-252,-21,-365,-55r0,-269v99,55,206,90,346,90v166,0,241,-75,242,-241r0,-121v-54,100,-141,157,-287,158v-128,0,-230,-50,-305,-150v-75,-100,-113,-236,-113,-407v0,-177,38,-318,113,-422v75,-104,176,-156,303,-156"},"h":{"d":"463,-952v38,-117,139,-195,287,-195v106,0,186,35,240,105v54,70,81,176,81,315r0,727r-291,0r0,-682v0,-81,-11,-138,-34,-173v-23,-35,-61,-52,-113,-52v-53,0,-95,24,-125,71v-30,47,-45,112,-45,195r0,641r-291,0r0,-1556r291,0r0,604"},"i":{"d":"221,-1120r580,0r0,895r364,0r0,225r-1022,0r0,-225r365,0r0,-670r-287,0r0,-225xm508,-1665r293,0r0,342r-293,0r0,-342"},"j":{"d":"377,199v147,-4,180,-81,180,-242r0,-852r-297,0r0,-225r590,0r0,1077v-3,319,-89,467,-391,467r-316,0r0,-225r234,0xm850,-1323r-293,0r0,-342r293,0r0,342"},"k":{"d":"174,-1556r293,0r0,817r352,-381r355,0r-424,418r448,702r-324,0r-307,-524r-100,96r0,428r-293,0r0,-1556"},"l":{"d":"778,0v-300,-5,-391,-150,-391,-467r0,-864r-297,0r0,-225r590,0r0,1089v2,161,33,242,180,242r234,0r0,225r-316,0"},"m":{"d":"498,-1147v89,-2,179,64,192,139v40,-85,96,-139,209,-139v97,0,164,33,201,100v37,67,55,205,55,416r0,631r-240,0r0,-719v0,-83,-6,-139,-19,-167v-13,-28,-36,-42,-69,-42v-33,0,-57,14,-70,43v-13,29,-20,84,-20,166r0,719r-237,0r0,-719v0,-82,-8,-137,-20,-166v-22,-56,-117,-57,-139,-1v-11,29,-19,84,-19,167r0,719r-240,0r0,-1120r213,0r0,116v28,-79,103,-142,203,-143"},"n":{"d":"463,-952v38,-117,139,-195,287,-195v106,0,186,35,240,105v54,70,81,176,81,315r0,727r-291,0r0,-682v0,-81,-11,-139,-34,-174v-23,-35,-61,-53,-113,-53v-53,0,-95,24,-125,71v-30,47,-45,113,-45,197r0,641r-291,0r0,-1120r291,0r0,168"},"o":{"d":"616,-909v-70,0,-123,33,-165,93v-78,112,-78,402,0,514v42,60,95,93,165,93v71,0,124,-33,166,-93v78,-112,78,-402,0,-514v-42,-60,-95,-93,-166,-93xm616,29v-327,0,-518,-247,-518,-588v0,-342,191,-588,518,-588v328,0,519,246,519,588v0,342,-191,588,-519,588"},"p":{"d":"729,29v-145,0,-225,-81,-287,-187r0,584r-292,0r0,-1546r292,0r0,168v54,-115,144,-195,297,-195v128,0,227,51,298,154v71,103,106,247,106,434v0,189,-35,335,-107,436v-72,101,-174,152,-307,152xm796,-307v70,-112,70,-397,0,-508v-38,-60,-86,-92,-149,-92v-63,0,-111,32,-150,92v-71,112,-71,397,0,508v39,60,87,92,150,92v63,0,111,-32,149,-92"},"q":{"d":"437,-815v-70,112,-70,397,0,508v38,60,86,92,149,92v63,0,111,-32,150,-92v71,-112,71,-397,0,-508v-39,-60,-87,-92,-150,-92v-63,0,-111,32,-149,92xm494,-1147v153,0,242,80,297,195r0,-168r292,0r0,1546r-292,0r0,-584v-62,107,-141,187,-287,187v-133,0,-234,-51,-306,-152v-72,-101,-108,-247,-108,-436v0,-187,35,-331,106,-434v71,-103,170,-154,298,-154"},"r":{"d":"924,-1147v89,1,165,23,227,57r0,279v-60,-55,-144,-88,-254,-88v-167,0,-276,74,-303,219v-6,36,-10,91,-10,164r0,516r-293,0r0,-1120r293,0r0,174v52,-121,173,-201,340,-201"},"s":{"d":"618,-1147v138,0,264,24,373,62r0,256v-94,-61,-206,-103,-344,-105v-65,0,-115,9,-148,28v-33,19,-50,48,-50,85v0,53,71,97,214,130r95,23v193,47,309,134,309,351v0,115,-37,201,-113,259v-76,58,-190,87,-342,87v-155,-1,-294,-29,-422,-70r0,-256v110,63,240,113,392,113v69,0,121,-10,156,-30v35,-20,53,-49,53,-87v0,-37,-14,-64,-37,-86v-26,-25,-176,-64,-260,-82v-112,-24,-194,-65,-245,-119v-51,-54,-77,-126,-77,-217v0,-108,39,-192,117,-252v78,-60,188,-90,329,-90"},"t":{"d":"690,-365v1,105,49,139,158,140r225,0r0,225r-246,0v-168,0,-282,-26,-341,-80v-59,-54,-89,-154,-89,-299r0,-516r-286,0r0,-225r286,0r0,-318r293,0r0,318r383,0r0,225r-383,0r0,530"},"u":{"d":"483,29v-233,0,-324,-167,-323,-420r0,-729r293,0r0,684v0,81,11,138,34,173v23,35,60,52,113,52v53,0,94,-23,124,-70v30,-47,44,-112,44,-196r0,-643r293,0r0,1120r-293,0r0,-166v-37,116,-137,195,-285,195"},"v":{"d":"1153,-1120r-356,1120r-361,0r-356,-1120r297,0r239,874r240,-874r297,0"},"w":{"d":"0,-1120r244,0r133,858r121,-565r237,0r119,565r135,-858r244,0r-203,1120r-278,0r-136,-582r-135,582r-278,0"},"x":{"d":"1145,-1120r-377,536r410,584r-342,0r-220,-377r-219,377r-342,0r414,-584r-381,-536r342,0r186,334r187,-334r342,0"},"y":{"d":"711,121v-39,105,-86,183,-141,231v-55,48,-122,72,-201,72r-242,0r0,-223v89,-1,205,6,251,-31v27,-22,56,-67,85,-141r22,-60r-426,-1089r308,0r256,727r245,-727r308,0"},"z":{"d":"186,-1120r895,0r0,229r-589,672r589,0r0,219r-919,0r0,-229r590,-672r-566,0r0,-219"},"{":{"d":"532,-612v177,33,221,106,224,321v2,124,-13,335,35,391v24,28,70,43,139,43r123,0r0,191r-150,0v-166,0,-277,-25,-333,-74v-56,-49,-85,-148,-85,-295r0,-215v-3,-199,-52,-263,-247,-266r-62,0r0,-191r62,0v195,-3,247,-66,247,-266r0,-215v0,-147,29,-245,85,-294v56,-49,167,-74,333,-74r150,0r0,190r-123,0v-159,5,-174,51,-174,227r0,209v-3,215,-45,287,-224,318"},"|":{"d":"729,-1565r0,2048r-227,0r0,-2048r227,0"},"}":{"d":"995,-516v-195,3,-250,67,-250,266r0,215v0,147,-27,246,-83,295v-56,49,-167,74,-332,74r-150,0r0,-191r121,0v159,-5,176,-53,176,-229r0,-205v3,-214,47,-287,223,-321v-179,-31,-220,-103,-223,-318r0,-209v-5,-174,-17,-222,-176,-227r-121,0r0,-190r150,0v165,0,276,25,332,74v56,49,83,147,83,294r0,215v3,200,54,263,250,266r62,0r0,191r-62,0"},"~":{"d":"864,-686v123,0,200,-56,281,-125r0,233v-86,68,-165,112,-297,115v-153,4,-298,-128,-467,-123v-131,4,-209,51,-293,121r0,-229v105,-86,236,-138,410,-104v39,8,110,34,157,57v77,37,147,55,209,55"},"\u00a0":{},"\u00a1":{"d":"750,-1210r-267,0r0,-283r267,0r0,283xm750,0r-267,0r0,-655r33,-357r199,0r35,357r0,655"},"\u00a2":{"d":"797,-1145v93,8,166,32,239,68r0,268v-67,-50,-143,-86,-239,-98r0,692v98,-9,173,-45,239,-96r0,268v-66,37,-146,61,-239,68r0,288r-142,0r0,-288v-307,-25,-508,-253,-508,-586v0,-335,196,-566,508,-584r0,-287r142,0r0,287xm655,-907v-161,20,-237,155,-237,346v0,186,75,335,237,346r0,-692"},"\u00a3":{"d":"811,-1520v117,0,207,21,291,58r0,274v-67,-49,-150,-84,-256,-84v-158,0,-204,103,-205,277r0,176r336,0r0,225r-336,0r0,334r481,0r0,260r-1003,0r0,-260r235,0r0,-334r-198,0r0,-225r198,0r0,-197v0,-331,136,-502,457,-504"},"\u00a4":{"d":"653,-467v96,0,174,-80,174,-176v0,-96,-78,-172,-174,-172v-95,0,-174,77,-174,172v0,96,79,176,174,176xm653,-983v66,0,114,20,166,45r172,-170r127,129r-170,170v27,49,45,100,45,168v0,69,-17,120,-47,164r172,170r-131,131r-170,-172v-45,30,-94,47,-164,47v-65,0,-118,-18,-168,-43r-170,168r-129,-129r170,-170v-25,-49,-45,-100,-45,-166v0,-70,18,-120,47,-166r-172,-170r131,-131r166,172v49,-29,99,-47,170,-47"},"\u00a5":{"d":"8,-1493r318,0r290,600r291,-600r318,0r-273,528r224,0r0,187r-322,0r-86,151r408,0r0,189r-412,0r0,438r-295,0r0,-438r-412,0r0,-189r408,0r-86,-151r-322,0r0,-187r224,0"},"\u00a6":{"d":"729,-408r0,758r-227,0r0,-758r227,0xm729,-1432r0,758r-227,0r0,-758r227,0"},"\u00a7":{"d":"711,-473v59,-41,104,-70,104,-148v0,-54,-88,-127,-265,-219r-32,-16v-58,40,-104,70,-104,145v0,36,16,69,48,98v32,29,116,76,249,140xm616,-1520v117,2,218,25,314,60r0,225v-93,-32,-170,-57,-271,-59v-89,-2,-161,31,-161,110v0,50,68,110,203,180r28,15v143,73,234,134,273,181v39,47,59,104,59,171v0,145,-82,210,-197,264v82,60,135,128,135,254v0,211,-168,316,-395,314v-131,-1,-242,-22,-346,-58r0,-229v98,34,203,60,320,61v91,0,159,-30,159,-110v0,-47,-71,-108,-214,-185r-37,-20v-211,-113,-316,-227,-316,-342v0,-140,86,-228,201,-266v-84,-60,-134,-124,-135,-252v-2,-199,168,-317,380,-314"},"\u00a8":{"d":"696,-1585r236,0r0,246r-236,0r0,-246xm301,-1585r236,0r0,246r-236,0r0,-246"},"\u00a9":{"d":"637,-1083v80,1,148,13,211,34r0,168v-60,-35,-110,-58,-191,-59v-128,-2,-204,72,-204,199v0,127,75,199,204,198v79,-1,141,-23,191,-59r0,168v-65,20,-134,34,-211,35v-216,4,-371,-132,-371,-342v0,-211,155,-345,371,-342xm381,-1313v143,-59,328,-59,471,0v144,59,275,193,335,336v60,144,61,326,1,470v-59,142,-195,278,-337,337v-143,59,-326,60,-469,0v-142,-59,-277,-195,-336,-337v-60,-144,-60,-326,0,-470v60,-143,191,-277,335,-336xm802,-1194v-110,-47,-259,-47,-370,0v-111,47,-218,154,-265,266v-46,112,-48,258,0,370v47,111,152,219,264,266v113,48,258,48,371,0v112,-48,217,-155,264,-266v48,-112,47,-258,0,-370v-47,-112,-154,-219,-264,-266"},"\u00aa":{"d":"590,-866v110,0,198,-76,196,-183r0,-30v-139,2,-308,-18,-311,108v-2,67,46,105,115,105xm612,-1520v250,0,367,107,367,355r0,448r-193,0r0,-92v-61,69,-131,109,-249,111v-166,2,-282,-94,-281,-254v0,-89,30,-156,92,-200v62,-44,156,-67,281,-67r157,0v3,-51,-8,-78,-46,-99v-30,-16,-75,-25,-136,-25v-117,0,-209,24,-289,67r0,-188v89,-34,183,-56,297,-56xm293,-598r688,0r0,170r-688,0r0,-170"},"\u00ab":{"d":"1042,-1059r0,238r-276,221r276,221r0,238r-469,-394r0,-131xm588,-1059r0,238r-277,221r277,221r0,238r-469,-394r0,-131"},"\u00ac":{"d":"88,-899r1057,0r0,537r-238,0r0,-300r-819,0r0,-237"},"\u00ad":{"d":"301,-735r631,0r0,291r-631,0r0,-291"},"\u00ae":{"d":"381,-1313v143,-59,328,-59,471,0v144,59,275,193,335,336v60,144,61,326,1,470v-59,142,-195,278,-337,337v-143,59,-326,60,-469,0v-142,-59,-277,-195,-336,-337v-60,-144,-60,-326,0,-470v60,-143,191,-277,335,-336xm702,-860v-1,-64,-44,-84,-114,-84r-64,0r0,164v88,2,180,3,178,-80xm868,-877v0,94,-62,148,-149,162v58,23,89,60,117,119r79,166r-172,0v-35,-67,-69,-170,-119,-214v-25,-22,-55,-28,-100,-26r0,240r-164,0r0,-625v217,7,508,-49,508,178xm802,-1194v-110,-47,-259,-47,-370,0v-111,47,-218,154,-265,266v-46,112,-47,258,0,370v47,111,153,219,265,266v112,47,256,47,369,0v113,-47,218,-155,265,-266v48,-112,47,-258,0,-370v-47,-112,-154,-219,-264,-266"},"\u00af":{"d":"301,-1556r631,0r0,188r-631,0r0,-188"},"\u00b0":{"d":"283,-1186v0,-227,231,-405,461,-308v114,48,204,150,204,308v0,155,-91,259,-205,306v-230,95,-460,-77,-460,-306xm786,-1186v0,-93,-77,-172,-170,-172v-94,0,-172,78,-172,172v0,94,76,170,170,170v93,0,172,-77,172,-170"},"\u00b1":{"d":"735,-1284r0,354r410,0r0,236r-410,0r0,354r-237,0r0,-354r-410,0r0,-236r410,0r0,-354r237,0xm88,-238r1057,0r0,238r-1057,0r0,-238"},"\u00b2":{"d":"299,-1475v88,-26,180,-44,283,-45v113,0,200,20,262,62v62,42,94,100,94,174v0,84,-118,219,-355,406r-83,65r440,0r0,145r-666,0r0,-141r141,-118v209,-175,314,-288,314,-341v0,-78,-75,-113,-162,-112v-100,2,-184,33,-268,69r0,-164"},"\u00b3":{"d":"766,-913v0,-91,-83,-129,-184,-129r-111,0r0,-146r111,0v83,1,159,-24,159,-94v0,-69,-69,-97,-149,-96v-103,0,-193,17,-275,45r0,-152v157,-42,410,-56,529,23v60,40,92,92,92,159v0,114,-91,165,-203,183v133,17,228,82,228,219v0,81,-34,141,-97,185v-125,86,-414,72,-579,22r0,-154v84,34,186,55,299,55v98,1,180,-34,180,-120"},"\u00b4":{"d":"752,-1638r282,0r-368,376r-197,0"},"\u00b5":{"d":"629,29v-86,0,-136,-36,-168,-95r2,494r-289,0r0,-1548r287,0r0,680v0,136,41,229,164,229v122,0,161,-93,161,-229r0,-680r289,0r0,776v0,47,5,81,13,102v17,44,73,34,100,9r0,217v-48,25,-90,45,-152,45v-113,0,-158,-61,-190,-158v-42,89,-104,158,-217,158"},"\u00b6":{"d":"70,-1071v-2,-260,204,-422,475,-422r520,0r0,1690r-191,0r0,-1543r-190,0r0,1543r-188,0r0,-846v-137,-17,-242,-62,-316,-135v-74,-73,-110,-168,-110,-287"},"\u00b7":{"d":"449,-895r333,0r0,365r-333,0r0,-365"},"\u00b8":{"d":"532,254v68,1,121,-26,123,-86v0,-17,-7,-40,-21,-67v-14,-27,-36,-61,-67,-101r140,0v38,41,67,80,85,115v18,35,27,69,27,100v-3,140,-96,186,-250,186v-73,0,-139,-10,-202,-26r0,-156v50,19,105,34,165,35"},"\u00b9":{"d":"313,-813r226,0r0,-543r-220,43r0,-149r222,-41r194,0r0,690r226,0r0,145r-648,0r0,-145"},"\u00ba":{"d":"293,-598r688,0r0,170r-688,0r0,-170xm637,-698v-228,0,-363,-172,-363,-410v0,-238,134,-412,363,-412v229,0,362,173,362,412v0,239,-132,410,-362,410xm637,-874v111,0,158,-108,158,-234v0,-73,-15,-130,-43,-172v-28,-42,-66,-63,-115,-63v-110,0,-158,109,-158,235v0,73,15,130,43,172v28,42,66,62,115,62"},"\u00bb":{"d":"193,-1059r469,393r0,131r-469,394r0,-238r276,-221r-276,-221r0,-238xm647,-1059r469,393r0,131r-469,394r0,-238r277,-221r-277,-221r0,-238"},"\u00bc":{"d":"55,-969r226,0r0,-543r-220,43r0,-149r222,-41r194,0r0,690r226,0r0,145r-648,0r0,-145xm84,-500r-37,-118r1059,-263r37,119xm823,-383r-250,330r250,0r0,-330xm805,-565r204,0r0,512r109,0r0,143r-109,0r0,180r-186,0r0,-180r-393,0r0,-162"},"\u00bd":{"d":"500,-537v88,-26,180,-44,283,-45v113,0,201,20,263,62v62,42,93,100,93,174v0,84,-118,219,-355,406r-83,65r440,0r0,145r-666,0r0,-141r141,-118v209,-175,314,-288,314,-341v0,-78,-75,-113,-162,-112v-100,2,-184,33,-268,69r0,-164xm55,-969r226,0r0,-543r-220,43r0,-149r222,-41r194,0r0,690r226,0r0,145r-648,0r0,-145xm84,-500r-37,-118r1059,-263r37,119"},"\u00be":{"d":"539,-1069v0,-91,-83,-129,-184,-129r-111,0r0,-146r111,0v83,1,159,-24,159,-94v0,-69,-69,-97,-149,-96v-103,0,-193,17,-275,45r0,-152v157,-42,410,-56,529,23v60,40,92,92,92,159v0,114,-91,165,-203,183v133,17,228,82,228,219v0,81,-33,141,-96,185v-125,86,-415,72,-580,22r0,-154v84,34,186,55,299,55v98,1,180,-34,180,-120xm84,-500r-37,-118r1059,-263r37,119xm823,-383r-250,330r250,0r0,-330xm805,-565r204,0r0,512r109,0r0,143r-109,0r0,180r-186,0r0,-180r-393,0r0,-162"},"\u00bf":{"d":"799,-1210r-267,0r0,-283r267,0r0,283xm511,-817v30,-68,19,-179,21,-275r267,0v-1,118,5,242,-31,324v-51,115,-221,230,-284,336v-16,27,-23,55,-23,84v2,100,74,137,184,135v147,-3,256,-66,361,-141r0,268v-114,65,-240,111,-400,113v-249,3,-429,-120,-430,-353v0,-51,12,-98,34,-142v33,-68,147,-176,216,-243v44,-43,72,-78,85,-106"},"\u00c0":{"d":"616,-1223r-139,611r279,0xm436,-1493r361,0r403,1493r-295,0r-92,-369r-395,0r-90,369r-295,0xm567,-1899r199,264r-197,0r-286,-264r284,0"},"\u00c1":{"d":"616,-1223r-139,611r279,0xm436,-1493r361,0r403,1493r-295,0r-92,-369r-395,0r-90,369r-295,0xm668,-1899r284,0r-286,264r-197,0"},"\u00c2":{"d":"616,-1223r-139,611r279,0xm436,-1493r361,0r403,1493r-295,0r-92,-369r-395,0r-90,369r-295,0xm461,-1899r309,0r223,264r-178,0r-199,-161r-198,161r-178,0"},"\u00c3":{"d":"616,-1223r-139,611r279,0xm436,-1493r361,0r403,1493r-295,0r-92,-369r-395,0r-90,369r-295,0xm963,-1870v6,157,-108,270,-267,224v-68,-20,-141,-105,-217,-105v-50,0,-74,56,-71,116r-140,0v-14,-177,99,-306,270,-253v64,20,116,71,176,96v72,30,117,-30,111,-109r140,0"},"\u00c4":{"d":"616,-1223r-139,611r279,0xm436,-1493r361,0r403,1493r-295,0r-92,-369r-395,0r-90,369r-295,0xm696,-1899r236,0r0,246r-236,0r0,-246xm301,-1899r236,0r0,246r-236,0r0,-246"},"\u00c5":{"d":"901,-1616v-2,92,-33,149,-86,195r385,1421r-295,0r-92,-369r-395,0r-90,369r-295,0r385,-1421v-54,-45,-84,-104,-86,-195v-3,-152,132,-285,284,-285v153,0,288,133,285,285xm616,-1747v-69,0,-131,61,-131,131v0,70,62,131,131,131v71,0,132,-61,132,-131v0,-70,-62,-131,-132,-131xm616,-1223r-139,611r279,0"},"\u00c6":{"d":"1161,-1493r0,260r-291,0r0,311r260,0r0,260r-260,0r0,402r310,0r0,260r-564,0r0,-362r-282,0r-86,362r-248,0r358,-1493r803,0xm537,-1233r-148,635r227,0r0,-635r-79,0"},"\u00c7":{"d":"786,-236v133,0,210,-59,295,-135r0,328v-87,45,-185,71,-309,72v-201,0,-355,-66,-461,-199v-106,-133,-159,-324,-159,-575v0,-251,53,-443,159,-576v106,-133,260,-199,461,-199v122,0,225,27,309,72r0,328v-85,-77,-161,-135,-295,-135v-108,0,-189,43,-244,129v-55,86,-83,212,-83,381v0,168,28,295,83,381v55,86,136,128,244,128xm649,254v69,1,121,-25,123,-86v0,-17,-7,-40,-21,-67v-14,-27,-36,-61,-67,-101r140,0v37,41,65,80,84,115v19,35,28,69,28,100v-2,140,-97,188,-250,186v-73,-1,-137,-10,-202,-26r0,-156v50,19,105,34,165,35"},"\u00c8":{"d":"1098,0r-930,0r0,-1493r930,0r0,260r-635,0r0,322r575,0r0,260r-575,0r0,391r635,0r0,260xm598,-1899r199,264r-197,0r-286,-264r284,0"},"\u00c9":{"d":"1098,0r-930,0r0,-1493r930,0r0,260r-635,0r0,322r575,0r0,260r-575,0r0,391r635,0r0,260xm699,-1899r284,0r-286,264r-197,0"},"\u00ca":{"d":"1098,0r-930,0r0,-1493r930,0r0,260r-635,0r0,322r575,0r0,260r-575,0r0,391r635,0r0,260xm492,-1899r309,0r223,264r-178,0r-199,-161r-198,161r-178,0"},"\u00cb":{"d":"1098,0r-930,0r0,-1493r930,0r0,260r-635,0r0,322r575,0r0,260r-575,0r0,391r635,0r0,260xm727,-1899r236,0r0,246r-236,0r0,-246xm332,-1899r236,0r0,246r-236,0r0,-246"},"\u00cc":{"d":"172,-1233r0,-260r889,0r0,260r-297,0r0,973r297,0r0,260r-889,0r0,-260r297,0r0,-973r-297,0xm567,-1899r199,264r-197,0r-286,-264r284,0"},"\u00cd":{"d":"172,-1233r0,-260r889,0r0,260r-297,0r0,973r297,0r0,260r-889,0r0,-260r297,0r0,-973r-297,0xm668,-1899r284,0r-286,264r-197,0"},"\u00ce":{"d":"172,-1233r0,-260r889,0r0,260r-297,0r0,973r297,0r0,260r-889,0r0,-260r297,0r0,-973r-297,0xm461,-1899r309,0r223,264r-178,0r-199,-161r-198,161r-178,0"},"\u00cf":{"d":"172,-1233r0,-260r889,0r0,260r-297,0r0,973r297,0r0,260r-889,0r0,-260r297,0r0,-973r-297,0xm696,-1899r236,0r0,246r-236,0r0,-246xm301,-1899r236,0r0,246r-236,0r0,-246"},"\u00d0":{"d":"432,-1227r0,326r211,0r0,237r-211,0r0,398r80,0v116,0,199,-37,248,-110v49,-73,74,-197,74,-372v0,-174,-25,-297,-74,-370v-49,-73,-132,-109,-248,-109r-80,0xm1141,-748v0,519,-182,743,-688,748r-316,0r0,-664r-137,0r0,-237r137,0r0,-592r316,0v506,5,688,227,688,745"},"\u00d1":{"d":"119,-1493r317,0r416,1085r0,-1085r260,0r0,1493r-315,0r-418,-1085r0,1085r-260,0r0,-1493xm963,-1870v6,157,-108,270,-267,224v-68,-20,-141,-105,-217,-105v-50,0,-74,56,-71,116r-140,0v-14,-177,99,-306,270,-253v64,20,116,71,176,96v72,30,117,-30,111,-109r140,0"},"\u00d2":{"d":"616,-1255v-75,0,-127,42,-165,121v-66,136,-66,642,0,778v38,79,90,120,165,120v76,0,128,-41,166,-120v66,-136,66,-642,0,-778v-38,-79,-90,-121,-166,-121xm92,-745v0,-255,44,-448,132,-579v88,-131,219,-196,392,-196v173,0,304,65,392,196v88,131,133,324,133,579v0,255,-45,447,-133,578v-88,131,-219,196,-392,196v-173,0,-304,-65,-392,-196v-88,-131,-132,-323,-132,-578xm567,-1899r199,264r-197,0r-286,-264r284,0"},"\u00d3":{"d":"616,-1255v-75,0,-127,42,-165,121v-66,136,-66,642,0,778v38,79,90,120,165,120v76,0,128,-41,166,-120v66,-136,66,-642,0,-778v-38,-79,-90,-121,-166,-121xm92,-745v0,-255,44,-448,132,-579v88,-131,219,-196,392,-196v173,0,304,65,392,196v88,131,133,324,133,579v0,255,-45,447,-133,578v-88,131,-219,196,-392,196v-173,0,-304,-65,-392,-196v-88,-131,-132,-323,-132,-578xm668,-1899r284,0r-286,264r-197,0"},"\u00d4":{"d":"616,-1255v-75,0,-127,42,-165,121v-66,136,-66,642,0,778v38,79,90,120,165,120v76,0,128,-41,166,-120v66,-136,66,-642,0,-778v-38,-79,-90,-121,-166,-121xm92,-745v0,-255,44,-448,132,-579v88,-131,219,-196,392,-196v173,0,304,65,392,196v88,131,133,324,133,579v0,255,-45,447,-133,578v-88,131,-219,196,-392,196v-173,0,-304,-65,-392,-196v-88,-131,-132,-323,-132,-578xm461,-1899r309,0r223,264r-178,0r-199,-161r-198,161r-178,0"},"\u00d5":{"d":"616,-1255v-75,0,-127,42,-165,121v-66,136,-66,642,0,778v38,79,90,120,165,120v76,0,128,-41,166,-120v66,-136,66,-642,0,-778v-38,-79,-90,-121,-166,-121xm92,-745v0,-255,44,-448,132,-579v88,-131,219,-196,392,-196v173,0,304,65,392,196v88,131,133,324,133,579v0,255,-45,447,-133,578v-88,131,-219,196,-392,196v-173,0,-304,-65,-392,-196v-88,-131,-132,-323,-132,-578xm963,-1870v6,157,-108,270,-267,224v-68,-20,-141,-105,-217,-105v-50,0,-74,56,-71,116r-140,0v-14,-177,99,-306,270,-253v64,20,116,71,176,96v72,30,117,-30,111,-109r140,0"},"\u00d6":{"d":"616,-1255v-75,0,-127,42,-165,121v-66,136,-66,642,0,778v38,79,90,120,165,120v76,0,128,-41,166,-120v66,-136,66,-642,0,-778v-38,-79,-90,-121,-166,-121xm92,-745v0,-255,44,-448,132,-579v88,-131,219,-196,392,-196v173,0,304,65,392,196v88,131,133,324,133,579v0,255,-45,447,-133,578v-88,131,-219,196,-392,196v-173,0,-304,-65,-392,-196v-88,-131,-132,-323,-132,-578xm696,-1899r236,0r0,246r-236,0r0,-246xm301,-1899r236,0r0,246r-236,0r0,-246"},"\u00d7":{"d":"1112,-971r-330,328r330,330r-168,166r-330,-328r-327,328r-168,-166r330,-330r-330,-328r168,-168r327,328r330,-328"},"\u00d8":{"d":"451,-354v28,67,80,118,165,118v76,0,129,-41,166,-120v44,-95,61,-343,47,-532xm772,-1153v-31,-60,-75,-102,-156,-102v-75,0,-129,40,-164,120v-35,80,-53,206,-53,379r0,127xm616,29v-152,-1,-261,-51,-340,-133r-120,167r-162,-114r168,-238v-49,-124,-70,-277,-70,-456v0,-255,44,-448,132,-579v88,-131,219,-196,392,-196v146,0,254,46,330,123r113,-162r162,115r-158,223v53,129,78,291,78,476v0,255,-45,447,-133,578v-88,131,-219,196,-392,196"},"\u00d9":{"d":"616,29v-375,0,-510,-190,-510,-580r0,-942r295,0r0,1016v-2,143,77,239,215,239v138,0,215,-96,215,-239r0,-1016r295,0r0,942v-2,390,-134,580,-510,580xm567,-1899r199,264r-197,0r-286,-264r284,0"},"\u00da":{"d":"616,29v-375,0,-510,-190,-510,-580r0,-942r295,0r0,1016v-2,143,77,239,215,239v138,0,215,-96,215,-239r0,-1016r295,0r0,942v-2,390,-134,580,-510,580xm668,-1899r284,0r-286,264r-197,0"},"\u00db":{"d":"616,29v-375,0,-510,-190,-510,-580r0,-942r295,0r0,1016v-2,143,77,239,215,239v138,0,215,-96,215,-239r0,-1016r295,0r0,942v-2,390,-134,580,-510,580xm461,-1899r309,0r223,264r-178,0r-199,-161r-198,161r-178,0"},"\u00dc":{"d":"616,29v-375,0,-510,-190,-510,-580r0,-942r295,0r0,1016v-2,143,77,239,215,239v138,0,215,-96,215,-239r0,-1016r295,0r0,942v-2,390,-134,580,-510,580xm696,-1899r236,0r0,246r-236,0r0,-246xm301,-1899r236,0r0,246r-236,0r0,-246"},"\u00dd":{"d":"8,-1493r318,0r290,600r291,-600r318,0r-461,905r0,588r-295,0r0,-588xm668,-1899r284,0r-286,264r-197,0"},"\u00de":{"d":"840,-793v0,-174,-78,-219,-262,-221r-121,0r0,439r121,0v185,-2,262,-44,262,-218xm162,-1493r295,0r0,238r110,0v206,0,355,36,445,109v90,73,135,193,135,358v0,159,-46,276,-137,348v-91,72,-239,108,-443,108r-110,0r0,332r-295,0r0,-1493"},"\u00df":{"d":"598,-1556v313,1,439,172,436,497v-83,4,-147,21,-190,51v-43,30,-64,73,-64,127v0,43,39,94,116,153r116,89v95,73,160,161,162,309v2,232,-175,363,-418,359v-96,-1,-173,-21,-252,-49r0,-250v66,35,139,62,227,63v89,1,157,-42,158,-125v0,-48,-38,-101,-115,-160r-45,-34v-64,-51,-141,-103,-175,-180v-19,-43,-30,-89,-30,-140v2,-185,120,-293,285,-328v-13,-102,-80,-147,-199,-147v-127,0,-190,70,-190,199r0,1122r-293,0r0,-1126v0,-289,174,-432,471,-430"},"\u00e0":{"d":"481,-1638r283,376r-197,0r-368,-376r282,0xm573,-174v177,-3,250,-154,244,-352r-117,0v-109,0,-186,14,-229,42v-43,28,-65,76,-65,144v-1,101,66,167,167,166xm614,-1147v375,0,494,127,494,508r0,639r-291,0r0,-125v-64,91,-174,153,-319,154v-248,2,-405,-139,-404,-383v0,-131,42,-228,127,-290v85,-62,216,-93,393,-93r203,0r0,-49v-2,-106,-85,-145,-203,-144v-169,2,-284,44,-409,111r0,-250v122,-50,246,-78,409,-78"},"\u00e1":{"d":"752,-1638r282,0r-368,376r-197,0xm573,-174v177,-3,250,-154,244,-352r-117,0v-109,0,-186,14,-229,42v-43,28,-65,76,-65,144v-1,101,66,167,167,166xm614,-1147v375,0,494,127,494,508r0,639r-291,0r0,-125v-64,91,-174,153,-319,154v-248,2,-405,-139,-404,-383v0,-131,42,-228,127,-290v85,-62,216,-93,393,-93r203,0r0,-49v-2,-106,-85,-145,-203,-144v-169,2,-284,44,-409,111r0,-250v122,-50,246,-78,409,-78"},"\u00e2":{"d":"496,-1638r241,0r256,376r-178,0r-199,-225r-198,225r-178,0xm573,-174v177,-3,250,-154,244,-352r-117,0v-109,0,-186,14,-229,42v-43,28,-65,76,-65,144v-1,101,66,167,167,166xm614,-1147v375,0,494,127,494,508r0,639r-291,0r0,-125v-64,91,-174,153,-319,154v-248,2,-405,-139,-404,-383v0,-131,42,-228,127,-290v85,-62,216,-93,393,-93r203,0r0,-49v-2,-106,-85,-145,-203,-144v-169,2,-284,44,-409,111r0,-250v122,-50,246,-78,409,-78"},"\u00e3":{"d":"716,-1470v74,33,115,-37,109,-121r140,0v0,91,-17,160,-51,210v-45,66,-128,91,-215,62v-43,-15,-106,-63,-148,-90v-29,-19,-52,-29,-70,-29v-59,2,-74,59,-73,129r-140,0v0,-91,18,-160,52,-210v46,-67,129,-92,217,-61v61,22,119,84,179,110xm573,-174v177,-3,250,-154,244,-352r-117,0v-109,0,-186,14,-229,42v-43,28,-65,76,-65,144v-1,101,66,167,167,166xm614,-1147v375,0,494,127,494,508r0,639r-291,0r0,-125v-64,91,-174,153,-319,154v-248,2,-405,-139,-404,-383v0,-131,42,-228,127,-290v85,-62,216,-93,393,-93r203,0r0,-49v-2,-106,-85,-145,-203,-144v-169,2,-284,44,-409,111r0,-250v122,-50,246,-78,409,-78"},"\u00e4":{"d":"696,-1585r236,0r0,246r-236,0r0,-246xm301,-1585r236,0r0,246r-236,0r0,-246xm573,-174v177,-3,250,-154,244,-352r-117,0v-109,0,-186,14,-229,42v-43,28,-65,76,-65,144v-1,101,66,167,167,166xm614,-1147v375,0,494,127,494,508r0,639r-291,0r0,-125v-64,91,-174,153,-319,154v-248,2,-405,-139,-404,-383v0,-131,42,-228,127,-290v85,-62,216,-93,393,-93r203,0r0,-49v-2,-106,-85,-145,-203,-144v-169,2,-284,44,-409,111r0,-250v122,-50,246,-78,409,-78"},"\u00e5":{"d":"573,-174v177,-3,250,-154,244,-352r-117,0v-109,0,-186,14,-229,42v-43,28,-65,76,-65,144v-1,101,66,167,167,166xm614,-1147v375,0,494,127,494,508r0,639r-291,0r0,-125v-64,91,-174,153,-319,154v-248,2,-405,-139,-404,-383v0,-131,42,-228,127,-290v85,-62,216,-93,393,-93r203,0r0,-49v-2,-106,-85,-145,-203,-144v-169,2,-284,44,-409,111r0,-250v122,-50,246,-78,409,-78xm616,-1249v-153,0,-284,-132,-284,-285v0,-153,131,-285,284,-285v154,0,285,132,285,285v0,153,-131,285,-285,285xm748,-1534v0,-71,-63,-131,-132,-131v-70,0,-131,61,-131,131v0,71,60,131,131,131v72,0,132,-60,132,-131"},"\u00e6":{"d":"365,-184v109,0,129,-96,124,-217r0,-82r-73,0v-110,-1,-175,48,-176,153v-1,90,40,146,125,146xm963,-690v-3,-138,3,-242,-113,-242v-42,0,-70,16,-88,47v-18,31,-26,112,-25,195r226,0xm612,-1020v38,-82,131,-128,252,-127v118,0,201,40,250,119v49,79,74,220,74,422r0,127r-451,0v0,96,17,169,50,219v33,50,82,76,145,76v105,0,174,-55,239,-117r0,244v-64,56,-141,86,-258,86v-145,0,-243,-64,-295,-164v-51,104,-126,163,-270,164v-217,2,-336,-134,-334,-355v1,-255,143,-368,406,-368r76,0r0,-51v1,-116,-45,-187,-154,-187v-106,0,-188,53,-266,109r0,-246v83,-43,170,-78,278,-78v132,0,211,41,258,127"},"\u00e7":{"d":"762,-211v131,0,221,-47,299,-115r0,269v-93,54,-202,86,-342,86v-350,2,-551,-231,-551,-588v0,-358,203,-592,553,-590v138,1,241,34,340,86r0,268v-75,-65,-173,-114,-299,-114v-200,0,-297,139,-297,350v0,211,96,348,297,348xm604,254v69,1,120,-26,123,-86v0,-17,-7,-40,-21,-67v-14,-27,-36,-61,-67,-101r140,0v38,41,66,80,85,115v19,35,28,69,27,100v-1,140,-97,188,-250,186v-73,-1,-138,-10,-202,-26r0,-156v50,19,105,34,165,35"},"\u00e8":{"d":"520,-1638r283,376r-197,0r-368,-376r282,0xm698,-203v167,-2,282,-50,404,-121r0,269v-128,52,-261,83,-432,84v-374,1,-578,-209,-578,-584v0,-349,195,-592,533,-592v338,0,527,217,524,563r0,119r-759,0v2,185,114,264,308,262xm854,-685v-2,-152,-77,-235,-229,-235v-144,1,-220,97,-232,236"},"\u00e9":{"d":"791,-1638r282,0r-368,376r-197,0xm698,-203v167,-2,282,-50,404,-121r0,269v-128,52,-261,83,-432,84v-374,1,-578,-209,-578,-584v0,-349,195,-592,533,-592v338,0,527,217,524,563r0,119r-759,0v2,185,114,264,308,262xm854,-685v-2,-152,-77,-235,-229,-235v-144,1,-220,97,-232,236"},"\u00ea":{"d":"535,-1638r241,0r256,376r-178,0r-199,-225r-198,225r-178,0xm698,-203v167,-2,282,-50,404,-121r0,269v-128,52,-261,83,-432,84v-374,1,-578,-209,-578,-584v0,-349,195,-592,533,-592v338,0,527,217,524,563r0,119r-759,0v2,185,114,264,308,262xm854,-685v-2,-152,-77,-235,-229,-235v-144,1,-220,97,-232,236"},"\u00eb":{"d":"735,-1585r236,0r0,246r-236,0r0,-246xm340,-1585r236,0r0,246r-236,0r0,-246xm698,-203v167,-2,282,-50,404,-121r0,269v-128,52,-261,83,-432,84v-374,1,-578,-209,-578,-584v0,-349,195,-592,533,-592v338,0,527,217,524,563r0,119r-759,0v2,185,114,264,308,262xm854,-685v-2,-152,-77,-235,-229,-235v-144,1,-220,97,-232,236"},"\u00ec":{"d":"481,-1638r283,376r-197,0r-368,-376r282,0xm221,-1120r580,0r0,895r364,0r0,225r-1022,0r0,-225r365,0r0,-670r-287,0r0,-225"},"\u00ed":{"d":"752,-1638r282,0r-368,376r-197,0xm221,-1120r580,0r0,895r364,0r0,225r-1022,0r0,-225r365,0r0,-670r-287,0r0,-225"},"\u00ee":{"d":"496,-1638r241,0r256,376r-178,0r-199,-225r-198,225r-178,0xm221,-1120r580,0r0,895r364,0r0,225r-1022,0r0,-225r365,0r0,-670r-287,0r0,-225"},"\u00ef":{"d":"696,-1585r236,0r0,246r-236,0r0,-246xm301,-1585r236,0r0,246r-236,0r0,-246xm221,-1120r580,0r0,895r364,0r0,225r-1022,0r0,-225r365,0r0,-670r-287,0r0,-225"},"\u00f0":{"d":"616,-815v-147,-1,-227,115,-227,270v0,105,19,188,59,247v40,59,95,89,164,89v73,0,126,-31,166,-91v49,-74,70,-224,52,-357v-4,-33,-11,-67,-19,-103v-56,-31,-118,-55,-195,-55xm98,-537v0,-302,183,-518,477,-516v54,0,94,8,130,25r-160,-219r-312,119r-55,-117r283,-109r-158,-202r293,0r92,116r297,-127r66,123r-277,117v153,222,352,408,352,768v0,349,-179,588,-514,588v-321,0,-514,-235,-514,-566"},"\u00f1":{"d":"716,-1470v74,33,115,-37,109,-121r140,0v0,91,-17,160,-51,210v-45,66,-128,91,-215,62v-43,-15,-106,-63,-148,-90v-29,-19,-52,-29,-70,-29v-59,2,-74,59,-73,129r-140,0v0,-91,18,-160,52,-210v46,-67,129,-92,217,-61v61,22,119,84,179,110xm463,-952v38,-117,139,-195,287,-195v106,0,186,35,240,105v54,70,81,176,81,315r0,727r-291,0r0,-682v0,-81,-11,-139,-34,-174v-23,-35,-61,-53,-113,-53v-53,0,-95,24,-125,71v-30,47,-45,113,-45,197r0,641r-291,0r0,-1120r291,0r0,168"},"\u00f2":{"d":"616,-909v-70,0,-123,33,-165,93v-78,112,-78,402,0,514v42,60,95,93,165,93v71,0,124,-33,166,-93v78,-112,78,-402,0,-514v-42,-60,-95,-93,-166,-93xm616,29v-327,0,-518,-247,-518,-588v0,-342,191,-588,518,-588v328,0,519,246,519,588v0,342,-191,588,-519,588xm477,-1640r283,376r-197,0r-368,-376r282,0"},"\u00f3":{"d":"616,-909v-70,0,-123,33,-165,93v-78,112,-78,402,0,514v42,60,95,93,165,93v71,0,124,-33,166,-93v78,-112,78,-402,0,-514v-42,-60,-95,-93,-166,-93xm616,29v-327,0,-518,-247,-518,-588v0,-342,191,-588,518,-588v328,0,519,246,519,588v0,342,-191,588,-519,588xm754,-1639r282,0r-368,376r-197,0"},"\u00f4":{"d":"616,-909v-70,0,-123,33,-165,93v-78,112,-78,402,0,514v42,60,95,93,165,93v71,0,124,-33,166,-93v78,-112,78,-402,0,-514v-42,-60,-95,-93,-166,-93xm616,29v-327,0,-518,-247,-518,-588v0,-342,191,-588,518,-588v328,0,519,246,519,588v0,342,-191,588,-519,588xm496,-1639r241,0r256,376r-178,0r-199,-225r-198,225r-178,0"},"\u00f5":{"d":"616,-909v-70,0,-123,33,-165,93v-78,112,-78,402,0,514v42,60,95,93,165,93v71,0,124,-33,166,-93v78,-112,78,-402,0,-514v-42,-60,-95,-93,-166,-93xm616,29v-327,0,-518,-247,-518,-588v0,-342,191,-588,518,-588v328,0,519,246,519,588v0,342,-191,588,-519,588xm716,-1437v74,33,115,-37,109,-121r140,0v0,91,-17,160,-51,210v-45,66,-128,91,-215,62v-43,-15,-106,-63,-148,-90v-29,-19,-52,-29,-70,-29v-59,2,-74,59,-73,129r-140,0v0,-91,18,-160,52,-210v46,-67,129,-91,217,-60v61,22,119,83,179,109"},"\u00f6":{"d":"616,-909v-70,0,-123,33,-165,93v-78,112,-78,402,0,514v42,60,95,93,165,93v71,0,124,-33,166,-93v78,-112,78,-402,0,-514v-42,-60,-95,-93,-166,-93xm616,29v-327,0,-518,-247,-518,-588v0,-342,191,-588,518,-588v328,0,519,246,519,588v0,342,-191,588,-519,588xm696,-1561r236,0r0,246r-236,0r0,-246xm301,-1561r236,0r0,246r-236,0r0,-246"},"\u00f7":{"d":"461,-1198r309,0r0,309r-309,0r0,-309xm461,-395r309,0r0,309r-309,0r0,-309xm66,-762r1099,0r0,238r-1099,0r0,-238"},"\u00f8":{"d":"483,-262v36,31,75,53,135,53v69,0,123,-32,164,-93v54,-81,74,-242,49,-373xm745,-860v-32,-31,-69,-48,-127,-49v-71,0,-124,32,-166,93v-54,78,-73,234,-53,367xm616,29v-124,-1,-221,-36,-301,-90r-151,178r-139,-119r163,-197v-58,-95,-88,-210,-90,-360v-4,-342,191,-589,518,-588v126,1,217,33,299,88r148,-176r139,121r-160,188v59,96,91,217,93,367v4,342,-191,589,-519,588"},"\u00f9":{"d":"481,-1638r283,376r-197,0r-368,-376r282,0xm483,29v-233,0,-324,-167,-323,-420r0,-729r293,0r0,684v0,81,11,138,34,173v23,35,60,52,113,52v53,0,94,-23,124,-70v30,-47,44,-112,44,-196r0,-643r293,0r0,1120r-293,0r0,-166v-37,116,-137,195,-285,195"},"\u00fa":{"d":"752,-1638r282,0r-368,376r-197,0xm483,29v-233,0,-324,-167,-323,-420r0,-729r293,0r0,684v0,81,11,138,34,173v23,35,60,52,113,52v53,0,94,-23,124,-70v30,-47,44,-112,44,-196r0,-643r293,0r0,1120r-293,0r0,-166v-37,116,-137,195,-285,195"},"\u00fb":{"d":"496,-1638r241,0r256,376r-178,0r-199,-225r-198,225r-178,0xm483,29v-233,0,-324,-167,-323,-420r0,-729r293,0r0,684v0,81,11,138,34,173v23,35,60,52,113,52v53,0,94,-23,124,-70v30,-47,44,-112,44,-196r0,-643r293,0r0,1120r-293,0r0,-166v-37,116,-137,195,-285,195"},"\u00fc":{"d":"696,-1585r236,0r0,246r-236,0r0,-246xm301,-1585r236,0r0,246r-236,0r0,-246xm483,29v-233,0,-324,-167,-323,-420r0,-729r293,0r0,684v0,81,11,138,34,173v23,35,60,52,113,52v53,0,94,-23,124,-70v30,-47,44,-112,44,-196r0,-643r293,0r0,1120r-293,0r0,-166v-37,116,-137,195,-285,195"},"\u00fd":{"d":"752,-1638r282,0r-368,376r-197,0xm711,121v-39,105,-86,183,-141,231v-55,48,-122,72,-201,72r-242,0r0,-223v89,-1,205,6,251,-31v27,-22,56,-67,85,-141r22,-60r-426,-1089r308,0r256,727r245,-727r308,0"},"\u00fe":{"d":"729,29v-145,0,-225,-81,-287,-187r0,584r-292,0r0,-1982r292,0r0,604v54,-115,144,-195,297,-195v128,0,227,51,298,154v71,103,106,247,106,434v0,189,-35,335,-107,436v-72,101,-174,152,-307,152xm796,-307v70,-112,70,-397,0,-508v-38,-60,-86,-92,-149,-92v-63,0,-111,32,-150,92v-71,112,-71,397,0,508v39,60,87,92,150,92v63,0,111,-32,149,-92"},"\u00ff":{"d":"696,-1585r236,0r0,246r-236,0r0,-246xm301,-1585r236,0r0,246r-236,0r0,-246xm711,121v-39,105,-86,183,-141,231v-55,48,-122,72,-201,72r-242,0r0,-223v89,-1,205,6,251,-31v27,-22,56,-67,85,-141r22,-60r-426,-1089r308,0r256,727r245,-727r308,0"},"\u0152":{"d":"1217,-260r0,260r-584,0v-216,0,-365,-52,-445,-156v-80,-104,-120,-300,-120,-589v0,-291,40,-488,121,-592v81,-104,229,-156,444,-156r573,0r0,260r-332,0r0,311r302,0r0,260r-302,0r0,402r343,0xm621,-1233v-109,-6,-184,16,-221,89v-30,60,-46,192,-46,399v0,207,16,340,46,398v30,58,86,87,169,87r52,0r0,-973"},"\u0153":{"d":"637,-1022v37,-81,130,-126,250,-125v118,0,201,40,250,119v49,79,73,220,73,422r0,127r-450,0v0,96,17,169,50,219v33,50,81,76,144,76v105,0,174,-55,240,-117r0,244v-64,57,-140,86,-258,86v-141,0,-229,-56,-287,-148v-55,97,-132,148,-276,148v-127,0,-219,-46,-275,-138v-56,-92,-84,-242,-84,-450v0,-210,28,-360,84,-451v56,-91,148,-137,275,-137v137,1,210,39,264,125xm985,-690v-2,-133,2,-241,-113,-244v-41,0,-69,17,-87,48v-18,32,-26,112,-25,196r225,0xm520,-559v0,-161,-10,-265,-29,-309v-19,-44,-55,-66,-106,-66v-52,0,-87,22,-107,66v-20,44,-30,148,-30,309v0,161,10,265,30,309v20,44,55,66,107,66v51,0,87,-22,106,-67v19,-45,29,-147,29,-308"},"\u0178":{"d":"8,-1493r318,0r290,600r291,-600r318,0r-461,905r0,588r-295,0r0,-588xm696,-1899r236,0r0,246r-236,0r0,-246xm301,-1899r236,0r0,246r-236,0r0,-246"},"\u02c6":{"d":"496,-1638r241,0r256,376r-178,0r-199,-225r-198,225r-178,0"},"\u02dc":{"d":"716,-1470v74,33,115,-37,109,-121r140,0v0,91,-17,160,-51,210v-45,66,-128,91,-215,62v-43,-15,-106,-63,-148,-90v-29,-19,-52,-29,-70,-29v-59,2,-74,59,-73,129r-140,0v0,-91,18,-160,52,-210v46,-67,129,-92,217,-61v61,22,119,84,179,110"},"\u2013":{"d":"0,-690r1233,0r0,246r-1233,0r0,-246"},"\u2014":{"d":"0,-690r1233,0r0,246r-1233,0r0,-246"},"\u2018":{"d":"745,-903r-313,0r0,-271r197,-382r215,0r-99,382r0,271"},"\u2019":{"d":"530,-1556r314,0r0,270r-197,383r-215,0r98,-383r0,-270"},"\u201a":{"d":"461,-367r313,0r0,271r-196,383r-216,0r99,-383r0,-271"},"\u201c":{"d":"465,-903r-313,0r0,-271r196,-382r215,0r-98,382r0,271xm985,-903r-313,0r0,-271r196,-382r213,0r-96,382r0,271"},"\u201d":{"d":"768,-1556r313,0r0,270r-196,383r-215,0r98,-383r0,-270xm248,-1556r313,0r0,270r-196,383r-215,0r98,-383r0,-270"},"\u201e":{"d":"768,-367r313,0r0,271r-196,383r-215,0r98,-383r0,-271xm248,-367r313,0r0,271r-196,383r-215,0r98,-383r0,-271"},"\u2022":{"d":"283,-622v-35,-86,-35,-192,1,-278v36,-86,111,-159,196,-194v85,-36,189,-36,274,1v124,53,223,162,223,331v0,170,-101,282,-224,336v-86,38,-190,36,-276,0v-85,-36,-158,-109,-194,-196"},"\u2026":{"d":"881,-367r295,0r0,367r-295,0r0,-367xm469,-367r295,0r0,367r-295,0r0,-367xm57,-367r295,0r0,367r-295,0r0,-367"},"\u2039":{"d":"815,-1059r0,238r-276,221r276,221r0,238r-469,-394r0,-131"},"\u203a":{"d":"420,-1059r469,393r0,131r-469,394r0,-238r278,-221r-278,-221r0,-238"},"\u20ac":{"d":"184,-745r2,-76r-180,0r84,-189r119,0v29,-167,93,-293,190,-380v97,-87,224,-130,381,-130v121,1,213,28,297,72r0,328v-49,-52,-97,-90,-144,-114v-105,-56,-245,-46,-324,30v-46,44,-80,108,-101,194r442,0r-84,189r-382,0v-5,43,-2,101,-1,151r316,0r-84,187r-207,0v27,152,113,262,276,262v137,0,210,-66,293,-150r0,328v-82,45,-176,72,-297,72v-338,0,-519,-204,-571,-512r-203,0r84,-187r96,0"},"\u2122":{"d":"729,-1493r100,227r89,-227r208,0r0,578r-153,0r0,-437r-107,256r-75,0r-117,-256r0,437r-152,0r0,-578r207,0xm438,-1493r0,133r-141,0r0,445r-156,0r0,-445r-141,0r0,-133r438,0"}}}); diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-webfont.eot b/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-webfont.eot new file mode 100644 index 0000000..296335c Binary files /dev/null and b/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-webfont.eot differ diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-webfont.svg b/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-webfont.svg new file mode 100644 index 0000000..66542c0 --- /dev/null +++ b/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved._DejaVu changes are in public domain_ +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-webfont.ttf b/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-webfont.ttf new file mode 100644 index 0000000..8811bcb Binary files /dev/null and b/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-webfont.ttf differ diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-webfont.woff b/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-webfont.woff new file mode 100644 index 0000000..412b630 Binary files /dev/null and b/assets/fonts/dejavu/mono/DejaVuSansMono-Bold-webfont.woff differ diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-cufon.js b/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-cufon.js new file mode 100644 index 0000000..b790fb6 --- /dev/null +++ b/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-cufon.js @@ -0,0 +1,18 @@ +/*! + * The following copyright notice may not be removed under any circumstances. + * + * Copyright: + * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + * DejaVu changes are in public domain + * + * + * Manufacturer: + * DejaVu fonts team + * + * Vendor URL: + * http://dejavu.sourceforge.net + * + * License information: + * http://dejavu.sourceforge.net/wiki/index.php/License + */ +Cufon.registerFont({"w":1233,"face":{"font-family":"DejaVu Sans Mono","font-weight":700,"font-style":"oblique","font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 7 9 3 3 4 11 2 4","ascent":"1556","descent":"-492","x-height":"29","bbox":"-150 -1901.05 1370 483","underline-thickness":"90","underline-position":"-85","slope":"-11","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{},"!":{"d":"393,-283r266,0r-55,283r-266,0xm629,-1493r266,0r-127,655r-102,357r-199,0r33,-357"},"\"":{"d":"999,-1493r0,555r-256,0r0,-555r256,0xm487,-1493r0,555r-256,0r0,-555r256,0"},"#":{"d":"752,-881r-203,0r-74,293r203,0xm696,-1470r-94,374r205,0r94,-374r221,0r-94,374r240,0r-54,215r-241,0r-72,293r240,0r-54,215r-241,0r-94,373r-222,0r95,-373r-205,0r-94,373r-222,0r95,-373r-240,0r53,-215r242,0r72,-293r-240,0r53,-215r242,0r94,-374r221,0"},"$":{"d":"588,-227v98,-11,180,-74,180,-174v0,-82,-47,-110,-121,-131xm614,-1099v-90,10,-155,72,-155,167v0,64,44,97,102,111xm485,301r-141,0r57,-301v-138,-5,-251,-42,-362,-92r51,-262v101,69,212,122,354,131r68,-346v-105,-27,-183,-67,-235,-122v-52,-55,-78,-123,-78,-206v-2,-246,208,-419,458,-422r48,-237r141,0r-47,237v107,6,202,27,293,57r-50,250v-76,-50,-170,-81,-284,-88r-64,318v115,31,199,74,253,130v54,56,81,127,81,214v0,123,-44,224,-132,304v-88,80,-205,124,-353,134"},"%":{"d":"352,-793v-173,0,-319,-145,-319,-319v0,-174,146,-320,319,-320v173,0,320,147,320,320v0,173,-147,319,-320,319xm489,-1112v0,-74,-63,-137,-137,-137v-74,0,-137,62,-137,137v0,75,63,137,137,137v76,0,137,-62,137,-137xm86,-561r1042,-418r41,96r-1048,418xm899,0v-174,0,-319,-145,-319,-319v0,-174,145,-320,319,-320v172,0,320,148,320,320v0,171,-149,319,-320,319xm1036,-319v0,-74,-65,-138,-139,-138v-74,0,-135,64,-135,138v0,75,60,137,135,137v75,0,139,-63,139,-137"},"&":{"d":"1214,-745v-16,222,-103,386,-239,499r115,246r-316,0r-35,-72v-99,58,-213,99,-352,101v-246,4,-422,-150,-420,-389v0,-109,33,-211,99,-306v66,-95,160,-177,284,-247v-29,-65,-51,-125,-51,-205v0,-122,46,-218,134,-292v112,-95,304,-130,499,-99v45,7,90,18,133,32r-49,256v-64,-42,-150,-72,-248,-73v-106,-1,-182,40,-182,137v0,85,39,152,78,237r221,480v55,-76,89,-180,94,-305r235,0xm252,-438v-3,127,96,233,221,231v72,-1,128,-23,180,-55r-217,-469v-104,60,-181,149,-184,293"},"'":{"d":"743,-1493r0,555r-256,0r0,-555r256,0"},"(":{"d":"500,270v-95,-199,-162,-404,-162,-663v0,-193,44,-387,130,-581v86,-194,215,-387,386,-580r225,0v-155,208,-272,413,-350,614v-78,201,-117,399,-117,594v0,228,47,425,113,616r-225,0"},")":{"d":"692,-1554v94,199,162,404,162,663v0,193,-44,387,-130,581v-86,194,-215,387,-386,580r-225,0v155,-208,272,-413,350,-614v78,-201,117,-399,117,-594v0,-228,-47,-425,-113,-616r225,0"},"*":{"d":"1108,-1217r-330,173r330,174r-76,141r-332,-184r0,344r-172,0r0,-344r-331,184r-76,-141r332,-174r-332,-173r76,-141r331,182r0,-344r172,0r0,344r332,-182"},"+":{"d":"735,-1192r0,430r430,0r0,238r-430,0r0,432r-237,0r0,-432r-432,0r0,-238r432,0r0,-430r237,0"},",":{"d":"434,-367r314,0r-54,271r-270,383r-215,0r172,-383"},"-":{"d":"299,-735r629,0r-56,291r-628,0"},".":{"d":"418,-367r334,0r-70,367r-334,0"},"\/":{"d":"852,-1493r223,0r-854,1683r-221,0"},"0":{"d":"614,-621v-68,0,-125,-55,-125,-124v0,-69,57,-125,125,-125v68,0,127,57,127,125v0,67,-59,124,-127,124xm383,-440v0,75,11,131,34,167v23,36,58,54,105,54v43,0,82,-18,118,-53v36,-35,65,-86,89,-152v61,-167,117,-424,119,-627v0,-76,-11,-131,-33,-167v-46,-75,-164,-66,-224,-2v-34,36,-64,86,-89,153v-61,166,-117,423,-119,627xm733,-1520v264,-1,410,178,410,449v0,293,-81,616,-187,811v-49,91,-114,162,-194,213v-80,51,-168,76,-264,76v-264,1,-408,-177,-408,-449v0,-288,80,-618,184,-809v49,-91,114,-163,195,-214v81,-51,169,-77,264,-77"},"1":{"d":"94,-260r330,0r188,-969r-321,76r51,-266r326,-74r282,0r-239,1233r309,0r-51,260r-926,0"},"2":{"d":"844,-1135v0,-106,-94,-156,-211,-153v-151,4,-283,56,-408,117r51,-267v128,-47,266,-82,424,-82v129,0,233,32,314,95v81,63,121,145,121,245v0,166,-152,378,-454,638r-327,282r617,0r-51,260r-949,0r49,-252r277,-248r145,-128v268,-236,402,-405,402,-507"},"3":{"d":"750,-487v0,-118,-107,-181,-236,-181r-158,0r52,-260r157,0v83,0,149,-19,201,-56v52,-37,78,-83,78,-140v0,-169,-240,-162,-404,-125v-66,14,-136,34,-209,61r54,-268v121,-37,244,-64,385,-64v136,0,245,32,327,97v82,65,123,150,123,256v0,93,-31,173,-94,237v-63,64,-151,106,-262,125v164,44,266,138,266,332v0,153,-56,274,-164,366v-149,127,-403,162,-660,117v-76,-13,-156,-31,-237,-55r54,-270v116,56,251,93,411,94v193,1,316,-84,316,-266"},"4":{"d":"772,-1153r-483,578r373,0xm811,-1493r309,0r-178,918r164,0r-49,253r-164,0r-62,322r-282,0r63,-322r-594,0r58,-286"},"5":{"d":"764,-512v0,-145,-112,-227,-264,-225v-122,1,-231,34,-322,78r162,-834r811,0r-51,260r-572,0r-53,277v42,-17,89,-25,146,-25v260,-3,430,171,430,430v0,370,-277,585,-664,580v-142,-2,-267,-25,-381,-64r51,-266v88,51,203,81,336,82v210,2,369,-99,371,-293"},"6":{"d":"383,-401v0,110,62,194,166,194v72,0,132,-33,181,-100v49,-67,73,-150,73,-250v0,-111,-62,-191,-168,-191v-70,0,-130,33,-179,100v-49,67,-73,149,-73,247xm551,33v-313,-1,-456,-179,-455,-502v0,-306,95,-594,230,-778v122,-167,291,-271,561,-271v108,0,194,26,282,60r-51,268v-70,-52,-161,-90,-272,-90v-105,0,-192,36,-263,108v-71,72,-122,179,-153,318v71,-77,166,-130,301,-131v231,-2,361,174,361,416v0,173,-51,317,-154,431v-103,114,-232,171,-387,171"},"7":{"d":"262,-1493r963,0r-41,209r-756,1284r-319,0r735,-1233r-633,0"},"8":{"d":"528,-209v146,0,250,-119,250,-268v0,-117,-79,-191,-198,-191v-149,0,-254,117,-254,269v0,115,85,190,202,190xm63,-350v0,-242,160,-403,371,-449v-130,-33,-210,-122,-211,-278v0,-122,49,-226,147,-313v98,-87,219,-130,361,-130v227,0,406,139,406,357v0,206,-142,350,-328,377v139,35,231,152,231,321v0,297,-231,494,-536,494v-264,0,-441,-127,-441,-379xm702,-1284v-119,0,-217,96,-217,215v0,95,68,166,162,166v129,0,230,-88,230,-213v0,-106,-67,-168,-175,-168"},"9":{"d":"674,-1520v313,1,455,180,454,502v0,304,-96,597,-229,780v-121,167,-290,269,-561,269v-108,0,-196,-26,-283,-60r51,-268v71,52,162,90,273,90v104,0,191,-37,262,-109v71,-72,122,-178,154,-317v-72,77,-166,130,-301,131v-231,2,-359,-173,-359,-416v0,-173,51,-316,153,-430v102,-114,231,-172,386,-172xm842,-1085v0,-110,-62,-195,-166,-195v-72,0,-132,34,-180,101v-48,67,-72,151,-72,251v0,111,60,189,166,189v69,0,129,-33,178,-100v49,-67,74,-149,74,-246"},":":{"d":"510,-1063r334,0r-72,365r-334,0xm375,-367r334,0r-70,367r-334,0"},";":{"d":"375,-367r334,0r-54,271r-270,383r-215,0r152,-383xm510,-1063r334,0r-72,365r-334,0"},"<":{"d":"1145,-926r-795,285r795,283r0,249r-1057,-415r0,-236r1057,-416r0,250"},"=":{"d":"88,-532r1057,0r0,237r-1057,0r0,-237xm88,-987r1057,0r0,235r-1057,0r0,-235"},">":{"d":"88,-926r0,-250r1057,416r0,236r-1057,415r0,-249r795,-283"},"?":{"d":"346,-283r266,0r-55,283r-266,0xm778,-1520v203,-3,363,110,363,299v0,63,-16,123,-49,178v-33,55,-88,116,-166,181r-113,93v-84,70,-135,152,-154,245r-24,123r-266,0v24,-114,39,-236,92,-321v52,-83,170,-178,252,-250v96,-85,145,-148,145,-193v0,-81,-57,-121,-143,-119v-162,4,-285,69,-410,145r53,-268v118,-64,257,-110,420,-113"},"@":{"d":"571,-477v0,105,52,176,152,176v149,0,246,-157,246,-320v0,-99,-56,-165,-152,-165v-145,0,-246,153,-246,309xm799,-1395v263,0,461,160,427,435v-2,21,-7,44,-12,68r-147,757r-197,0r17,-82v-49,57,-123,101,-217,102v-190,2,-299,-134,-299,-329v0,-148,42,-274,127,-376v85,-102,189,-153,311,-153v98,0,168,35,205,96v11,-41,18,-84,18,-131v1,-126,-97,-198,-229,-198v-83,0,-162,22,-237,64v-156,86,-281,266,-340,452v-32,99,-48,200,-48,303v0,297,156,518,436,518v128,0,230,-42,322,-96r63,174v-122,64,-233,108,-393,110v-392,4,-625,-298,-620,-706v3,-244,71,-454,172,-617v77,-124,172,-220,284,-288v112,-68,231,-103,357,-103"},"A":{"d":"717,-1219r-264,607r284,0xm582,-1493r360,0r113,1493r-293,0r-14,-369r-400,0r-162,369r-299,0"},"B":{"d":"811,-510v0,-126,-81,-168,-217,-168r-197,0r-86,442r197,0v202,0,303,-78,303,-274xm883,-1128v0,-100,-67,-132,-176,-132r-197,0r-68,347r197,0v154,1,244,-67,244,-215xm813,-786v175,13,293,119,293,301v0,247,-128,404,-335,455v-77,20,-180,30,-310,30r-481,0r290,-1495r482,0v141,0,246,28,318,83v72,55,108,138,108,247v-1,228,-148,357,-365,379"},"C":{"d":"430,-532v-1,181,75,301,244,301v146,0,233,-62,336,-140r-64,328v-93,44,-196,71,-323,72v-327,0,-492,-200,-492,-535v0,-315,110,-620,262,-790v117,-131,281,-224,510,-224v124,0,224,29,316,72r-64,328v-60,-82,-152,-137,-283,-137v-130,0,-228,90,-288,182v-81,126,-153,348,-154,543"},"D":{"d":"860,-967v0,-175,-80,-260,-254,-260r-82,0r-186,961v113,2,214,-1,285,-44v51,-31,91,-74,120,-132v63,-125,117,-347,117,-525xm598,-1493v363,-1,567,147,567,494v0,239,-65,489,-144,653v-73,151,-187,253,-349,306v-158,51,-454,38,-680,40r291,-1493r315,0"},"E":{"d":"958,0r-929,0r288,-1493r932,0r-51,260r-635,0r-63,322r575,0r-49,260r-575,0r-76,391r635,0"},"F":{"d":"1217,-1233r-635,0r-62,322r578,0r-51,260r-578,0r-127,651r-295,0r291,-1493r930,0"},"G":{"d":"403,-532v-5,201,110,335,311,292v21,-5,40,-13,56,-24r57,-291r-206,0r49,-248r460,0r-139,709v-88,75,-222,123,-381,123v-330,1,-508,-215,-508,-553v0,-299,118,-607,265,-770v118,-131,281,-226,510,-226v123,0,223,29,315,72r-66,328v-60,-79,-145,-137,-270,-137v-169,0,-264,106,-328,226v-70,132,-120,312,-125,499"},"H":{"d":"283,-1493r295,0r-111,569r369,0r110,-569r295,0r-291,1493r-295,0r129,-664r-368,0r-129,664r-295,0"},"I":{"d":"266,-1233r51,-260r889,0r-51,260r-297,0r-188,973r297,0r-52,260r-888,0r51,-260r297,0r188,-973r-297,0"},"J":{"d":"45,-422v89,108,189,191,358,191v179,0,223,-80,256,-248r148,-754r-361,0r52,-260r655,0r-199,1014v-22,113,-47,199,-74,256v-78,164,-233,252,-470,252v-171,0,-306,-43,-430,-107"},"K":{"d":"270,-1493r295,0r-108,557r563,-557r348,0r-606,604r338,889r-303,0r-254,-670r-172,170r-95,500r-294,0"},"L":{"d":"80,0r291,-1493r295,0r-240,1233r631,0r-51,260r-926,0"},"M":{"d":"231,-1493r353,0r49,655r297,-655r360,0r-289,1493r-253,0r237,-1198r-293,655r-219,0r-47,-655r-231,1198r-252,0"},"N":{"d":"266,-1493r303,0r215,1085r211,-1085r260,0r-288,1493r-293,0r-225,-1085r-211,1085r-263,0"},"O":{"d":"365,-471v0,141,37,238,161,238v144,0,198,-125,240,-249v51,-152,102,-352,102,-538v0,-80,-14,-139,-40,-180v-45,-72,-160,-77,-230,-24v-99,75,-135,213,-174,364v-32,126,-59,255,-59,389xm504,29v-299,0,-443,-185,-443,-494v0,-280,81,-577,185,-764v92,-166,249,-291,483,-291v296,0,442,185,442,490v0,280,-79,581,-182,766v-93,166,-250,293,-485,293"},"P":{"d":"903,-1077v0,-137,-78,-166,-229,-168r-121,0r-84,438r143,0v190,0,291,-85,291,-270xm307,-1493r420,0v157,0,277,30,359,91v82,61,124,150,124,267v1,153,-58,322,-131,404v-112,125,-253,171,-495,172r-164,0r-109,559r-295,0"},"Q":{"d":"729,-1520v285,-3,442,181,442,471v0,292,-75,594,-182,787v-52,93,-121,164,-213,223r148,186r-211,134r-178,-252v-319,9,-474,-172,-474,-490v0,-280,80,-581,183,-766v93,-166,250,-291,485,-293xm365,-471v0,141,37,238,161,238v144,0,198,-125,240,-249v51,-152,102,-352,102,-538v0,-80,-14,-139,-40,-180v-45,-72,-160,-77,-230,-24v-99,75,-135,213,-174,364v-32,126,-59,255,-59,389"},"R":{"d":"1165,-1137v1,254,-143,408,-377,432v99,18,125,67,156,168r164,537r-301,0r-114,-403v-35,-125,-88,-187,-158,-187r-117,0r-115,590r-295,0r291,-1493r410,0v155,0,269,29,344,87v75,58,112,148,112,269xm864,-1090v-1,-110,-68,-155,-184,-155r-133,0r-80,407r123,0v175,1,274,-82,274,-252"},"S":{"d":"479,-215v160,3,285,-71,285,-217v0,-98,-60,-149,-139,-182r-119,-50v-128,-53,-213,-105,-254,-155v-41,-50,-62,-117,-62,-201v0,-147,56,-265,162,-360v145,-129,380,-169,618,-120v65,14,128,35,189,62r-57,285v-85,-78,-204,-123,-361,-125v-141,-2,-263,73,-266,201v-1,56,72,118,191,170r116,51v97,43,169,95,214,156v45,61,67,136,67,225v1,321,-256,509,-596,504v-178,-3,-321,-45,-463,-105r59,-305v110,91,241,163,416,166"},"T":{"d":"618,0r-294,0r239,-1235r-383,0r49,-258r1059,0r-51,258r-379,0"},"U":{"d":"500,29v-306,3,-493,-158,-450,-473v4,-33,10,-69,18,-107r184,-942r295,0r-199,1016v-4,28,-8,61,-8,74v-1,110,66,174,176,172v162,-2,233,-98,262,-246r199,-1016r295,0r-185,942v-42,208,-71,318,-178,428v-92,95,-231,150,-409,152"},"V":{"d":"518,-242r506,-1251r301,0r-645,1493r-412,0r-65,-1493r291,0"},"W":{"d":"143,-1493r254,0r-108,1096r272,-709r238,0r12,709r297,-1096r262,0r-461,1493r-270,0r-12,-784r-318,784r-268,0"},"X":{"d":"1071,0r-291,0r-200,-512r-400,512r-323,0r614,-782r-287,-711r291,0r187,463r360,-463r321,0r-573,737"},"Y":{"d":"145,-1493r293,0r187,649r411,-649r322,0r-633,905r-115,588r-293,0r115,-588"},"Z":{"d":"281,-1493r1009,0r-49,244r-876,989r700,0r-51,260r-1047,0r47,-244r858,-989r-643,0"},"[":{"d":"580,-1556r507,0r-38,190r-242,0r-281,1446r242,0r-37,190r-508,0"},"\\":{"d":"543,-1493r198,1683r-202,0r-199,-1683r203,0"},"]":{"d":"612,270r-506,0r37,-190r242,0r281,-1446r-242,0r37,-190r508,0"},"^":{"d":"739,-1493r437,557r-242,0r-318,-301r-317,301r-242,0r437,-557r245,0"},"_":{"d":"1233,293r0,190r-1233,0r0,-190r1233,0"},"`":{"d":"655,-1638r209,376r-198,0r-295,-376r284,0"},"a":{"d":"352,-317v0,82,62,145,144,145v79,0,145,-31,198,-93v53,-62,90,-150,109,-265r-113,0v-115,0,-200,17,-255,52v-55,35,-83,88,-83,161xm375,29v-198,2,-328,-127,-328,-324v0,-143,51,-253,155,-329v104,-76,254,-113,449,-113r193,0v3,-27,10,-47,10,-78v0,-38,-16,-68,-51,-87v-85,-46,-219,-35,-333,-2v-69,20,-143,48,-222,85r47,-250v129,-44,254,-78,405,-78v145,0,254,25,329,76v98,67,128,169,105,315v-5,35,-11,74,-20,117r-123,639r-291,0r25,-125v-82,94,-187,152,-350,154"},"b":{"d":"434,-432v0,124,54,223,166,223v74,0,137,-47,190,-141v53,-94,80,-209,80,-344v0,-121,-48,-213,-157,-213v-76,0,-142,47,-197,139v-55,92,-82,204,-82,336xm653,29v-154,0,-253,-96,-272,-236r-41,207r-293,0r303,-1556r293,0r-119,604v71,-108,170,-195,324,-195v210,0,321,180,317,408v-5,305,-106,569,-290,696v-70,48,-144,72,-222,72"},"c":{"d":"446,-463v2,169,79,254,246,254v126,0,221,-49,320,-104r-56,276v-93,40,-199,65,-323,66v-294,3,-483,-174,-483,-463v0,-468,353,-803,846,-692v57,14,110,34,161,63r-53,268v-71,-68,-152,-113,-275,-114v-235,-3,-386,200,-383,446"},"d":{"d":"799,-686v0,-124,-54,-223,-166,-223v-74,0,-138,47,-191,141v-53,94,-80,209,-80,344v0,120,48,213,156,213v76,0,142,-47,198,-139v56,-92,83,-204,83,-336xm580,-1149v154,-1,257,97,274,238r125,-645r293,0r-303,1556r-291,0r31,-166v-44,64,-94,113,-149,146v-55,33,-114,49,-177,49v-97,0,-172,-38,-231,-110v-101,-124,-102,-366,-55,-557v44,-182,130,-349,261,-438v70,-48,144,-73,222,-73"},"e":{"d":"362,-403v0,145,106,201,265,200v163,-1,308,-51,417,-121r-51,269v-117,52,-251,83,-411,84v-320,1,-506,-153,-506,-465v0,-316,147,-553,368,-658v77,-36,161,-55,250,-55v270,0,464,173,461,438v-1,85,-12,157,-27,246r-759,0v-4,21,-7,40,-7,62xm876,-684v32,-135,-50,-241,-184,-236v-157,5,-236,101,-282,236r466,0"},"f":{"d":"995,-1331v-102,3,-117,40,-139,135r-16,76r344,0r-43,225r-344,0r-174,895r-293,0r174,-895r-273,0r43,-225r273,0r16,-78v28,-141,73,-235,134,-284v61,-49,172,-74,331,-74r240,0r-43,225r-230,0"},"g":{"d":"367,-459v-1,121,44,213,153,213v77,0,143,-44,199,-132v56,-88,84,-195,84,-320v0,-119,-47,-211,-154,-211v-76,0,-142,45,-198,133v-56,88,-84,194,-84,317xm602,-1151v147,0,235,84,260,213r35,-182r293,0r-203,1036v-35,185,-99,315,-191,392v-92,77,-229,116,-411,116v-139,0,-258,-23,-367,-59r54,-265v90,54,195,90,327,90v177,0,260,-84,289,-241r27,-133v-64,98,-159,167,-305,168v-216,2,-344,-162,-342,-387v2,-202,70,-401,157,-529v79,-116,208,-219,377,-219"},"h":{"d":"854,-1147v193,-4,291,131,262,334v-3,25,-8,54,-14,85r-141,728r-293,0r133,-682v6,-33,10,-68,10,-106v0,-76,-39,-119,-113,-119v-55,0,-102,23,-141,71v-39,48,-67,117,-84,207r-121,629r-293,0r303,-1556r291,0r-116,604v55,-109,166,-193,317,-195"},"i":{"d":"309,-1120r580,0r-174,895r364,0r-43,225r-1022,0r43,-225r365,0r131,-670r-287,0xm702,-1665r293,0r-67,342r-293,0"},"j":{"d":"733,-43v-22,111,-43,191,-63,239v-70,158,-195,228,-426,228r-307,0r45,-225r231,0v67,0,117,-17,151,-53v34,-36,58,-99,76,-189r166,-852r-297,0r43,-225r590,0xm983,-1323r-293,0r66,-342r293,0"},"k":{"d":"383,-1556r293,0r-152,782r404,-346r370,0r-505,418r313,702r-311,0r-222,-524r-116,96r-82,428r-293,0"},"l":{"d":"618,-328v-12,88,42,103,138,103r278,0r-45,225r-297,0v-137,0,-233,-19,-290,-56v-70,-45,-97,-134,-80,-244v3,-23,8,-50,14,-79r203,-952r-306,0r43,-225r598,0r-249,1191v-3,13,-5,26,-7,37"},"m":{"d":"606,-1147v92,-2,155,56,164,139v37,-78,127,-138,236,-139v123,-1,202,83,200,209v-1,85,-9,134,-26,219r-140,719r-239,0r139,-719v7,-34,11,-61,14,-81v12,-69,0,-127,-65,-128v-32,0,-58,15,-77,45v-19,30,-35,85,-50,164r-139,719r-240,0r141,-719v8,-43,16,-87,17,-127v0,-50,-22,-82,-70,-82v-31,0,-57,15,-75,44v-18,29,-35,84,-50,165r-139,719r-240,0r217,-1120r213,0r-22,116v46,-78,122,-141,231,-143"},"n":{"d":"854,-1147v193,-4,291,131,262,334v-3,25,-8,54,-14,85r-141,728r-293,0r133,-682v6,-33,10,-68,10,-106v0,-76,-39,-119,-113,-119v-55,0,-101,24,-140,72v-39,48,-68,117,-85,206r-121,629r-293,0r217,-1120r293,0r-32,168v55,-109,166,-193,317,-195"},"o":{"d":"383,-434v0,129,61,226,180,227v81,0,149,-46,204,-137v55,-91,83,-204,83,-340v0,-133,-55,-227,-178,-227v-82,0,-151,45,-206,136v-55,91,-83,204,-83,341xm545,29v-284,0,-457,-172,-457,-455v0,-215,55,-388,166,-522v111,-134,256,-201,434,-201v284,0,457,172,457,455v0,215,-56,390,-167,523v-111,133,-255,200,-433,200"},"p":{"d":"655,29v-157,0,-253,-96,-276,-236r-123,633r-293,0r301,-1546r293,0r-33,168v47,-65,98,-114,153,-146v55,-32,113,-49,175,-49v211,1,321,179,317,408v-5,304,-108,569,-292,696v-70,48,-144,72,-222,72xm436,-432v0,124,54,223,166,223v74,0,138,-47,192,-142v54,-95,80,-209,80,-343v0,-121,-48,-213,-157,-213v-76,0,-141,47,-197,139v-56,92,-84,204,-84,336"},"q":{"d":"580,-1149v155,0,254,97,274,238r39,-209r293,0r-301,1546r-291,0r115,-592v-71,107,-170,195,-324,195v-97,0,-172,-38,-231,-110v-101,-124,-101,-366,-55,-557v44,-182,132,-349,261,-438v70,-48,143,-73,220,-73xm799,-686v0,-124,-54,-223,-166,-223v-74,0,-138,47,-191,141v-53,94,-80,209,-80,344v0,120,49,213,158,213v76,0,141,-47,196,-139v55,-92,83,-204,83,-336"},"r":{"d":"631,-946v84,-141,280,-239,497,-186v37,10,70,24,99,42r-53,275v-60,-54,-133,-83,-240,-84v-111,0,-196,29,-256,88v-60,59,-102,157,-129,295r-100,516r-295,0r219,-1120r293,0"},"s":{"d":"141,-297v99,65,223,115,369,115v73,0,131,-13,172,-38v41,-25,61,-59,61,-104v0,-31,-12,-53,-31,-72v-22,-22,-175,-67,-251,-89v-146,-42,-236,-116,-236,-287v0,-112,48,-200,136,-272v166,-135,515,-121,733,-41r-50,254v-89,-64,-202,-106,-342,-107v-63,0,-112,13,-149,35v-62,36,-75,121,-19,167v26,22,165,63,240,85v152,44,246,116,246,291v0,121,-46,217,-138,286v-92,69,-219,103,-382,103v-153,-1,-290,-27,-410,-70"},"t":{"d":"633,-330v-10,89,39,106,137,105r225,0r-43,225r-245,0v-136,0,-232,-19,-289,-56v-69,-44,-98,-130,-82,-239v3,-23,8,-51,14,-84r101,-516r-287,0r43,-225r287,0r61,-318r293,0r-62,318r383,0r-43,225r-383,0"},"u":{"d":"373,29v-195,3,-289,-132,-263,-337v3,-24,7,-52,13,-83r143,-729r291,0r-131,684v-6,33,-10,67,-10,104v-1,75,39,121,112,121v55,0,102,-23,140,-70v38,-47,66,-116,84,-208r122,-631r291,0r-217,1120r-293,0r33,-166v-51,108,-167,193,-315,195"},"v":{"d":"1231,-1120r-551,1120r-369,0r-139,-1120r283,0r80,878r389,-878r307,0"},"w":{"d":"96,-1120r240,0r-33,858r227,-565r230,0r22,565r291,-858r252,0r-418,1120r-280,0r-19,-590r-239,590r-279,0"},"x":{"d":"1227,-1120r-477,553r278,567r-299,0r-170,-356r-303,356r-332,0r512,-594r-258,-526r301,0r148,317r268,-317r332,0"},"y":{"d":"551,121v-75,132,-139,216,-193,251v-54,35,-124,52,-208,52r-240,0r45,-223v93,0,198,3,254,-30v44,-25,113,-143,149,-216r-217,-1075r297,0r127,700r383,-700r309,0"},"z":{"d":"293,-1120r895,0r-45,229r-707,672r576,0r-43,219r-920,0r45,-229r707,-672r-551,0"},"{":{"d":"610,33v0,88,51,109,148,110r121,0r-37,191r-148,0v-131,0,-224,-18,-280,-54v-68,-42,-94,-126,-80,-231v2,-19,7,-47,14,-84r43,-215v9,-50,17,-84,17,-129v0,-120,-77,-134,-215,-137r-62,0r37,-191v111,4,219,-10,268,-55v41,-38,74,-107,94,-211r41,-215v29,-149,75,-248,137,-296v62,-48,180,-72,353,-72r149,0r-36,190r-123,0v-69,0,-119,14,-149,43v-62,57,-84,271,-109,393v-42,205,-90,287,-287,318v111,26,178,64,178,184v0,166,-74,301,-74,461"},"|":{"d":"729,-1565r0,2048r-227,0r0,-2048r227,0"},"}":{"d":"776,-862v0,128,70,153,211,155r62,0r-37,191v-113,-4,-217,10,-268,58v-42,40,-76,108,-95,208r-41,215v-29,148,-76,246,-142,295v-66,49,-182,74,-347,74r-150,0r37,-191r123,0v69,0,118,-15,147,-43v61,-56,86,-271,111,-391v43,-203,93,-287,287,-321v-113,-21,-178,-59,-178,-179v0,-166,73,-305,73,-466v0,-90,-48,-109,-147,-109r-121,0r37,-190r147,0v137,0,232,16,287,48v55,32,82,86,82,162v0,135,-78,334,-78,484"},"~":{"d":"864,-686v123,0,200,-56,281,-125r0,233v-86,68,-165,112,-297,115v-153,4,-298,-128,-467,-123v-131,4,-209,51,-293,121r0,-229v105,-86,236,-138,410,-104v39,8,110,34,157,57v77,37,147,55,209,55"},"\u00a0":{},"\u00a1":{"d":"840,-1210r-267,0r56,-283r266,0xm604,0r-266,0r127,-655r102,-357r199,0r-35,357"},"\u00a2":{"d":"506,25v-251,-27,-403,-186,-402,-459v1,-230,89,-411,211,-537v97,-100,237,-170,418,-174r55,-287r142,0r-55,287v86,6,159,33,227,68r-53,264v-56,-50,-128,-84,-219,-94r-135,692v101,-9,183,-45,257,-92r-51,264v-75,37,-156,63,-254,68r-55,288r-141,0xm688,-907v-185,17,-323,235,-323,450v0,130,70,238,187,242"},"\u00a3":{"d":"1192,-1190v-69,-47,-139,-82,-240,-82v-70,0,-126,22,-168,67v-42,45,-74,115,-92,210r-33,176r336,0r-43,225r-338,0r-63,334r481,0r-51,260r-1004,0r52,-260r235,0r64,-334r-199,0r45,-225r199,0r37,-197v34,-179,95,-306,179,-386v107,-102,317,-143,513,-102v48,11,96,27,143,48"},"\u00a4":{"d":"653,-467v96,0,174,-80,174,-176v0,-96,-78,-172,-174,-172v-95,0,-174,77,-174,172v0,96,79,176,174,176xm653,-983v66,0,114,20,166,45r172,-170r127,129r-170,170v27,49,45,100,45,168v0,69,-17,120,-47,164r172,170r-131,131r-170,-172v-45,30,-94,47,-164,47v-65,0,-118,-18,-168,-43r-170,168r-129,-129r170,-170v-25,-49,-45,-100,-45,-166v0,-70,18,-120,47,-166r-172,-170r131,-131r166,172v49,-29,99,-47,170,-47"},"\u00a5":{"d":"127,-1493r317,0r174,600r408,-600r317,0r-374,528r223,0r-37,187r-321,0r-115,151r407,0r-36,189r-412,0r-86,438r-293,0r84,-438r-412,0r37,-189r408,0r-58,-151r-321,0r37,-187r223,0"},"\u00a6":{"d":"729,-408r0,758r-227,0r0,-758r227,0xm729,-1432r0,758r-227,0r0,-758r227,0"},"\u00a7":{"d":"729,-741r-121,-81r-78,-55v-39,29,-68,59,-89,88v-36,49,-41,100,-13,150v25,45,88,79,133,109r121,79v38,-26,67,-54,88,-83v36,-50,42,-98,12,-151v-13,-21,-30,-40,-53,-56xm315,-1169v-2,-220,192,-355,426,-351v116,2,220,26,318,60r-45,229v-78,-39,-159,-65,-262,-67v-102,-1,-177,38,-179,131v0,27,11,52,31,77v31,39,175,128,244,172v66,43,114,85,142,126v62,90,53,208,-14,296v-38,49,-93,97,-169,142v54,52,88,111,88,207v0,101,-40,182,-119,247v-113,92,-300,113,-486,80v-59,-10,-121,-25,-186,-45r46,-229v87,39,192,66,307,67v103,1,178,-38,180,-131v0,-46,-51,-102,-152,-170v-84,-57,-223,-145,-267,-210v-61,-92,-48,-218,21,-302v42,-51,99,-94,175,-127v-60,-49,-98,-104,-99,-202"},"\u00a8":{"d":"858,-1585r238,0r-49,246r-236,0xm463,-1585r237,0r-49,246r-235,0"},"\u00a9":{"d":"637,-1083v80,1,148,13,211,34r0,168v-60,-35,-110,-58,-191,-59v-128,-2,-204,72,-204,199v0,127,75,199,204,198v79,-1,141,-23,191,-59r0,168v-65,20,-134,34,-211,35v-216,4,-371,-132,-371,-342v0,-211,155,-345,371,-342xm381,-1313v143,-59,328,-59,471,0v144,59,275,193,335,336v60,144,61,326,1,470v-59,142,-195,278,-337,337v-143,59,-326,60,-469,0v-142,-59,-277,-195,-336,-337v-60,-144,-60,-326,0,-470v60,-143,191,-277,335,-336xm802,-1194v-110,-47,-259,-47,-370,0v-111,47,-218,154,-265,266v-46,112,-48,258,0,370v47,111,152,219,264,266v113,48,258,48,371,0v112,-48,217,-155,264,-266v48,-112,47,-258,0,-370v-47,-112,-154,-219,-264,-266"},"\u00aa":{"d":"846,-1268v12,-78,-58,-102,-141,-100v-104,2,-199,38,-287,78r33,-174v91,-32,180,-56,288,-56v99,0,175,17,230,52v73,47,92,113,78,214v-3,23,-8,52,-15,89r-88,448r-207,0r19,-88v-57,67,-132,106,-248,107v-140,2,-234,-88,-234,-226v0,-99,38,-176,112,-229v74,-53,180,-80,319,-80r135,0xm492,-940v-1,57,45,102,102,102v57,0,104,-21,141,-64v37,-43,63,-105,76,-185v-162,-3,-318,1,-319,147xm246,-598r688,0r-35,170r-688,0"},"\u00ab":{"d":"1102,-1059r-45,238r-320,221r234,221r-45,238r-394,-394r25,-131xm649,-1059r-47,238r-319,221r233,221r-45,238r-393,-394r24,-131"},"\u00ac":{"d":"88,-899r1057,0r0,537r-238,0r0,-300r-819,0r0,-237"},"\u00ad":{"d":"299,-735r629,0r-56,291r-628,0"},"\u00ae":{"d":"381,-1313v143,-59,328,-59,471,0v144,59,275,193,335,336v60,144,61,326,1,470v-59,142,-195,278,-337,337v-143,59,-326,60,-469,0v-142,-59,-277,-195,-336,-337v-60,-144,-60,-326,0,-470v60,-143,191,-277,335,-336xm702,-860v-1,-64,-44,-84,-114,-84r-64,0r0,164v88,2,180,3,178,-80xm868,-877v0,94,-62,148,-149,162v58,23,89,60,117,119r79,166r-172,0v-35,-67,-69,-170,-119,-214v-25,-22,-55,-28,-100,-26r0,240r-164,0r0,-625v217,7,508,-49,508,178xm802,-1194v-110,-47,-259,-47,-370,0v-111,47,-218,154,-265,266v-46,112,-47,258,0,370v47,111,153,219,265,266v112,47,256,47,369,0v113,-47,218,-155,265,-266v48,-112,47,-258,0,-370v-47,-112,-154,-219,-264,-266"},"\u00af":{"d":"459,-1556r631,0r-37,188r-631,0"},"\u00b0":{"d":"283,-1186v0,-227,231,-405,461,-308v114,48,204,150,204,308v0,155,-91,259,-205,306v-230,95,-460,-77,-460,-306xm786,-1186v0,-93,-77,-172,-170,-172v-94,0,-172,78,-172,172v0,94,76,170,170,170v93,0,172,-77,172,-170"},"\u00b1":{"d":"735,-1284r0,354r410,0r0,236r-410,0r0,354r-237,0r0,-354r-410,0r0,-236r410,0r0,-354r237,0xm88,-238r1057,0r0,238r-1057,0r0,-238"},"\u00b2":{"d":"831,-1288v0,-116,-169,-103,-277,-76v-50,12,-100,30,-151,53r31,-162v146,-49,397,-77,516,7v52,36,78,87,78,153v0,93,-137,236,-410,427r-104,73r438,0r-28,145r-664,0r29,-141r142,-102v267,-191,400,-316,400,-377"},"\u00b3":{"d":"801,-944v0,-71,-78,-98,-162,-98r-111,0r29,-146v129,1,291,12,291,-106v0,-64,-73,-87,-150,-86v-89,2,-182,23,-266,47r29,-152v150,-37,385,-60,500,16v52,35,79,81,79,140v-2,133,-100,200,-233,213v102,9,182,77,182,182v0,89,-38,157,-109,208v-128,92,-428,88,-604,32r31,-154v79,34,177,54,287,55v114,1,207,-48,207,-151"},"\u00b4":{"d":"887,-1638r321,0r-442,376r-197,0"},"\u00b5":{"d":"479,29v-79,0,-130,-34,-149,-95r-97,494r-288,0r301,-1548r289,0r-132,680v-7,31,-12,62,-12,94v-1,82,47,133,129,133v55,0,99,-19,133,-56v34,-37,59,-94,74,-171r131,-680r289,0r-150,776r-10,76v-3,44,29,67,67,49v10,-4,22,-10,36,-19r-43,222v-51,25,-98,45,-162,45v-107,0,-145,-57,-160,-158v-35,53,-74,93,-115,119v-41,26,-84,39,-131,39"},"\u00b6":{"d":"672,-1493r518,0r-328,1690r-190,0r301,-1543r-191,0r-299,1543r-190,0r164,-846v-114,-12,-202,-47,-263,-104v-61,-57,-92,-133,-92,-228v0,-145,54,-267,162,-365v108,-98,245,-147,408,-147"},"\u00b7":{"d":"479,-895r334,0r-72,365r-333,0"},"\u00b8":{"d":"480,150v0,-60,-27,-94,-57,-150r141,0v39,53,72,107,72,184v0,143,-127,219,-283,217v-73,-1,-142,-10,-202,-26r28,-156v95,44,301,68,301,-69"},"\u00b9":{"d":"315,-813r236,0r106,-543r-229,43r29,-149r229,-41r197,0r-135,690r227,0r-29,145r-657,0"},"\u00ba":{"d":"637,-698v-204,0,-330,-117,-330,-318v0,-280,165,-504,432,-504v203,0,328,117,328,318v0,280,-164,504,-430,504xm520,-1022v0,92,43,159,129,160v58,0,107,-32,147,-96v40,-64,60,-143,60,-238v1,-94,-42,-159,-129,-160v-58,0,-107,32,-147,96v-40,64,-60,143,-60,238xm254,-598r688,0r-33,170r-688,0"},"\u00bb":{"d":"260,-1059r393,393r-26,131r-545,394r45,-238r322,-221r-234,-221xm715,-1059r393,393r-27,131r-544,394r45,-238r321,-221r-233,-221"},"\u00bc":{"d":"57,-969r236,0r106,-543r-229,43r29,-149r229,-41r197,0r-135,690r227,0r-29,145r-657,0xm84,-500r-37,-118r1059,-261r37,117xm887,-383r-314,330r250,0xm905,-565r205,0r-101,512r109,0r-27,143r-108,0r-35,180r-188,0r36,-180r-389,0r31,-162"},"\u00bd":{"d":"985,-350v0,-116,-169,-103,-277,-76v-50,12,-100,30,-151,53r31,-162v146,-49,397,-77,516,7v52,36,78,87,78,153v0,93,-137,236,-410,427r-104,73r438,0r-28,145r-664,0r29,-141r142,-102v267,-191,400,-316,400,-377xm57,-969r236,0r106,-543r-229,43r29,-149r229,-41r197,0r-135,690r227,0r-29,145r-657,0xm84,-500r-37,-118r1059,-261r37,117"},"\u00be":{"d":"574,-1100v0,-71,-78,-98,-162,-98r-111,0r29,-146v129,1,291,12,291,-106v0,-64,-73,-87,-150,-86v-89,2,-182,23,-266,47r29,-152v150,-37,385,-60,500,16v52,35,79,81,79,140v-2,133,-100,200,-233,213v102,9,182,77,182,182v0,89,-39,157,-110,208v-128,92,-427,88,-603,32r31,-154v79,34,177,54,287,55v114,1,207,-48,207,-151xm84,-500r-37,-118r1059,-261r37,117xm887,-383r-314,330r250,0xm905,-565r205,0r-101,512r109,0r-27,143r-108,0r-35,180r-188,0r36,-180r-389,0r31,-162"},"\u00bf":{"d":"453,27v-203,3,-363,-110,-363,-299v0,-63,16,-123,49,-178v33,-55,88,-116,166,-181r113,-93v84,-70,135,-152,153,-245r23,-123r266,0v-23,114,-36,236,-90,320v-53,84,-175,183,-259,257v-93,82,-140,144,-140,187v0,81,57,121,143,119v162,-4,285,-69,410,-145r-52,268v-117,64,-256,110,-419,113xm885,-1210r-267,0r54,-283r268,0"},"\u00c0":{"d":"717,-1219r-264,607r284,0xm582,-1493r360,0r113,1493r-293,0r-14,-369r-400,0r-162,369r-299,0xm764,-1899r143,264r-178,0r-229,-264r264,0"},"\u00c1":{"d":"717,-1219r-264,607r284,0xm582,-1493r360,0r113,1493r-293,0r-14,-369r-400,0r-162,369r-299,0xm862,-1899r281,0r-320,264r-207,0"},"\u00c2":{"d":"717,-1219r-264,607r284,0xm582,-1493r360,0r113,1493r-293,0r-14,-369r-400,0r-162,369r-299,0xm639,-1899r348,0r151,264r-169,0r-164,-161r-230,161r-180,0"},"\u00c3":{"d":"717,-1219r-264,607r284,0xm582,-1493r360,0r113,1493r-293,0r-14,-369r-400,0r-162,369r-299,0xm898,-1789v79,31,125,-37,136,-112r137,0v-17,85,-48,151,-91,197v-57,61,-138,85,-228,58v-53,-17,-109,-82,-160,-102v-77,-31,-121,43,-133,113r-137,0v16,-85,46,-151,90,-197v57,-61,142,-86,232,-57v55,18,99,79,154,100"},"\u00c4":{"d":"717,-1219r-264,607r284,0xm582,-1493r360,0r113,1493r-293,0r-14,-369r-400,0r-162,369r-299,0xm899,-1899r235,0r-47,246r-237,0xm504,-1899r235,0r-49,246r-236,0"},"\u00c5":{"d":"754,-1747v-70,0,-131,61,-131,131v0,70,61,131,131,131v70,0,131,-61,131,-131v0,-70,-62,-131,-131,-131xm1038,-1616v-2,89,-39,161,-90,207r107,1409r-295,0r-21,-369r-395,0r-162,369r-295,0r660,-1421v-43,-42,-76,-117,-78,-195v-3,-152,132,-285,285,-285v151,0,288,134,284,285xm709,-1223r-258,611r278,0"},"\u00c6":{"d":"1311,-1493r-51,260r-291,0r-60,311r260,0r-51,260r-260,0r-78,402r310,0r-52,260r-563,0r72,-362r-283,0r-155,362r-259,0r652,-1493r809,0xm637,-1233r-272,635r227,0r125,-635r-80,0"},"\u00c7":{"d":"430,-532v-1,181,75,301,244,301v146,0,233,-62,336,-140r-64,328v-93,44,-196,71,-323,72v-327,0,-492,-200,-492,-535v0,-315,110,-620,262,-790v117,-131,281,-224,510,-224v124,0,224,29,316,72r-64,328v-60,-82,-152,-137,-283,-137v-130,0,-228,90,-288,182v-81,126,-153,348,-154,543xm597,150v0,-61,-27,-93,-57,-150r141,0v39,53,72,107,72,184v0,143,-126,220,-283,217v-73,-2,-142,-9,-202,-26r28,-156v48,19,102,34,160,35v82,1,141,-30,141,-104"},"\u00c8":{"d":"958,0r-929,0r288,-1493r932,0r-51,260r-635,0r-63,322r575,0r-49,260r-575,0r-76,391r635,0xm801,-1899r143,264r-178,0r-229,-264r264,0"},"\u00c9":{"d":"958,0r-929,0r288,-1493r932,0r-51,260r-635,0r-63,322r575,0r-49,260r-575,0r-76,391r635,0xm899,-1899r281,0r-320,264r-207,0"},"\u00ca":{"d":"958,0r-929,0r288,-1493r932,0r-51,260r-635,0r-63,322r575,0r-49,260r-575,0r-76,391r635,0xm676,-1899r348,0r151,264r-169,0r-164,-161r-230,161r-180,0"},"\u00cb":{"d":"958,0r-929,0r288,-1493r932,0r-51,260r-635,0r-63,322r575,0r-49,260r-575,0r-76,391r635,0xm936,-1899r235,0r-47,246r-237,0xm541,-1899r235,0r-49,246r-236,0"},"\u00cc":{"d":"266,-1233r51,-260r889,0r-51,260r-297,0r-188,973r297,0r-52,260r-888,0r51,-260r297,0r188,-973r-297,0xm760,-1899r143,264r-178,0r-229,-264r264,0"},"\u00cd":{"d":"266,-1233r51,-260r889,0r-51,260r-297,0r-188,973r297,0r-52,260r-888,0r51,-260r297,0r188,-973r-297,0xm858,-1899r281,0r-320,264r-207,0"},"\u00ce":{"d":"266,-1233r51,-260r889,0r-51,260r-297,0r-188,973r297,0r-52,260r-888,0r51,-260r297,0r188,-973r-297,0xm635,-1899r348,0r151,264r-169,0r-164,-161r-230,161r-180,0"},"\u00cf":{"d":"266,-1233r51,-260r889,0r-51,260r-297,0r-188,973r297,0r-52,260r-888,0r51,-260r297,0r188,-973r-297,0xm895,-1899r235,0r-47,246r-237,0xm500,-1899r235,0r-49,246r-236,0"},"\u00d0":{"d":"598,-1493v363,-1,567,147,567,494v0,239,-65,489,-144,653v-73,151,-187,253,-349,306v-158,51,-454,38,-680,40r129,-664r-137,0r47,-237r135,0r117,-592r315,0xm860,-967v0,-175,-80,-260,-254,-260r-82,0r-63,326r211,0r-45,237r-211,0r-78,398v113,2,214,-1,285,-44v51,-31,91,-74,120,-132v63,-125,117,-347,117,-525"},"\u00d1":{"d":"266,-1493r303,0r215,1085r211,-1085r260,0r-288,1493r-293,0r-225,-1085r-211,1085r-263,0xm898,-1789v79,31,125,-37,136,-112r137,0v-17,85,-48,151,-91,197v-57,61,-138,85,-228,58v-53,-17,-109,-82,-160,-102v-77,-31,-121,43,-133,113r-137,0v16,-85,46,-151,90,-197v57,-61,142,-86,232,-57v55,18,99,79,154,100"},"\u00d2":{"d":"365,-471v0,141,37,238,161,238v144,0,198,-125,240,-249v51,-152,102,-352,102,-538v0,-80,-14,-139,-40,-180v-45,-72,-160,-77,-230,-24v-99,75,-135,213,-174,364v-32,126,-59,255,-59,389xm504,29v-299,0,-443,-185,-443,-494v0,-280,81,-577,185,-764v92,-166,249,-291,483,-291v296,0,442,185,442,490v0,280,-79,581,-182,766v-93,166,-250,293,-485,293xm764,-1899r143,264r-178,0r-229,-264r264,0"},"\u00d3":{"d":"365,-471v0,141,37,238,161,238v144,0,198,-125,240,-249v51,-152,102,-352,102,-538v0,-80,-14,-139,-40,-180v-45,-72,-160,-77,-230,-24v-99,75,-135,213,-174,364v-32,126,-59,255,-59,389xm504,29v-299,0,-443,-185,-443,-494v0,-280,81,-577,185,-764v92,-166,249,-291,483,-291v296,0,442,185,442,490v0,280,-79,581,-182,766v-93,166,-250,293,-485,293xm862,-1899r281,0r-320,264r-207,0"},"\u00d4":{"d":"365,-471v0,141,37,238,161,238v144,0,198,-125,240,-249v51,-152,102,-352,102,-538v0,-80,-14,-139,-40,-180v-45,-72,-160,-77,-230,-24v-99,75,-135,213,-174,364v-32,126,-59,255,-59,389xm504,29v-299,0,-443,-185,-443,-494v0,-280,81,-577,185,-764v92,-166,249,-291,483,-291v296,0,442,185,442,490v0,280,-79,581,-182,766v-93,166,-250,293,-485,293xm639,-1899r348,0r151,264r-169,0r-164,-161r-230,161r-180,0"},"\u00d5":{"d":"365,-471v0,141,37,238,161,238v144,0,198,-125,240,-249v51,-152,102,-352,102,-538v0,-80,-14,-139,-40,-180v-45,-72,-160,-77,-230,-24v-99,75,-135,213,-174,364v-32,126,-59,255,-59,389xm504,29v-299,0,-443,-185,-443,-494v0,-280,81,-577,185,-764v92,-166,249,-291,483,-291v296,0,442,185,442,490v0,280,-79,581,-182,766v-93,166,-250,293,-485,293xm898,-1789v79,31,125,-37,136,-112r137,0v-17,85,-48,151,-91,197v-57,61,-138,85,-228,58v-53,-17,-109,-82,-160,-102v-77,-31,-121,43,-133,113r-137,0v16,-85,46,-151,90,-197v57,-61,142,-86,232,-57v55,18,99,79,154,100"},"\u00d6":{"d":"365,-471v0,141,37,238,161,238v144,0,198,-125,240,-249v51,-152,102,-352,102,-538v0,-80,-14,-139,-40,-180v-45,-72,-160,-77,-230,-24v-99,75,-135,213,-174,364v-32,126,-59,255,-59,389xm504,29v-299,0,-443,-185,-443,-494v0,-280,81,-577,185,-764v92,-166,249,-291,483,-291v296,0,442,185,442,490v0,280,-79,581,-182,766v-93,166,-250,293,-485,293xm899,-1899r235,0r-47,246r-237,0xm504,-1899r235,0r-49,246r-236,0"},"\u00d7":{"d":"1112,-971r-330,328r330,330r-168,166r-330,-328r-327,328r-168,-166r330,-330r-330,-328r168,-168r327,328r330,-328"},"\u00d8":{"d":"375,-354v21,72,67,121,151,121v83,0,150,-51,202,-153v52,-102,95,-270,130,-503xm504,29v-159,0,-272,-54,-344,-146r-160,180r-141,-114r219,-244v-10,-44,-17,-94,-17,-147v-1,-292,77,-593,183,-785v93,-168,250,-293,487,-293v150,0,256,50,332,131r154,-170r139,115r-205,227v51,254,-9,538,-71,737v-84,272,-242,509,-576,509xm852,-1153v-21,-63,-68,-107,-145,-107v-81,0,-146,48,-197,146v-51,98,-95,260,-131,485"},"\u00d9":{"d":"500,29v-306,3,-493,-158,-450,-473v4,-33,10,-69,18,-107r184,-942r295,0r-199,1016v-4,28,-8,61,-8,74v-1,110,66,174,176,172v162,-2,233,-98,262,-246r199,-1016r295,0r-185,942v-42,208,-71,318,-178,428v-92,95,-231,150,-409,152xm770,-1899r143,264r-178,0r-229,-264r264,0"},"\u00da":{"d":"500,29v-306,3,-493,-158,-450,-473v4,-33,10,-69,18,-107r184,-942r295,0r-199,1016v-4,28,-8,61,-8,74v-1,110,66,174,176,172v162,-2,233,-98,262,-246r199,-1016r295,0r-185,942v-42,208,-71,318,-178,428v-92,95,-231,150,-409,152xm868,-1899r281,0r-320,264r-207,0"},"\u00db":{"d":"500,29v-306,3,-493,-158,-450,-473v4,-33,10,-69,18,-107r184,-942r295,0r-199,1016v-4,28,-8,61,-8,74v-1,110,66,174,176,172v162,-2,233,-98,262,-246r199,-1016r295,0r-185,942v-42,208,-71,318,-178,428v-92,95,-231,150,-409,152xm645,-1899r348,0r151,264r-169,0r-164,-161r-230,161r-180,0"},"\u00dc":{"d":"500,29v-306,3,-493,-158,-450,-473v4,-33,10,-69,18,-107r184,-942r295,0r-199,1016v-4,28,-8,61,-8,74v-1,110,66,174,176,172v162,-2,233,-98,262,-246r199,-1016r295,0r-185,942v-42,208,-71,318,-178,428v-92,95,-231,150,-409,152xm905,-1899r235,0r-47,246r-237,0xm510,-1899r235,0r-49,246r-236,0"},"\u00dd":{"d":"145,-1493r293,0r187,649r411,-649r322,0r-633,905r-115,588r-293,0r115,-588xm858,-1899r281,0r-320,264r-207,0"},"\u00de":{"d":"375,-332r-64,332r-295,0r291,-1493r295,0r-47,227r127,0v157,0,278,31,360,92v82,61,123,150,123,267v1,152,-59,319,-131,401v-111,126,-254,173,-495,174r-164,0xm858,-850v0,-137,-77,-166,-227,-168r-121,0r-86,438r145,0v190,0,289,-84,289,-270"},"\u00df":{"d":"764,-1559v254,-1,392,105,393,351v0,27,-4,86,-12,149v-94,5,-167,25,-219,58v-52,33,-78,78,-78,133v0,37,42,99,102,159v86,86,192,169,193,328v5,304,-282,458,-608,397v-43,-8,-86,-20,-129,-36r49,-250v64,34,130,61,211,63v108,2,191,-48,194,-147v1,-43,-48,-113,-117,-183v-71,-72,-156,-140,-155,-278v0,-90,31,-167,92,-229v61,-62,147,-105,260,-130v6,-106,-66,-151,-172,-151v-136,0,-203,80,-227,203r-219,1122r-293,0r219,-1126v50,-266,216,-432,516,-433"},"\u00e0":{"d":"686,-1638r209,376r-198,0r-295,-376r284,0xm352,-317v0,82,62,145,144,145v79,0,145,-31,198,-93v53,-62,90,-150,109,-265r-113,0v-115,0,-200,17,-255,52v-55,35,-83,88,-83,161xm375,29v-198,2,-328,-127,-328,-324v0,-143,51,-253,155,-329v104,-76,254,-113,449,-113r193,0v3,-27,10,-47,10,-78v0,-38,-16,-68,-51,-87v-85,-46,-219,-35,-333,-2v-69,20,-143,48,-222,85r47,-250v129,-44,254,-78,405,-78v145,0,254,25,329,76v98,67,128,169,105,315v-5,35,-11,74,-20,117r-123,639r-291,0r25,-125v-82,94,-187,152,-350,154"},"\u00e1":{"d":"918,-1638r321,0r-442,376r-197,0xm352,-317v0,82,62,145,144,145v79,0,145,-31,198,-93v53,-62,90,-150,109,-265r-113,0v-115,0,-200,17,-255,52v-55,35,-83,88,-83,161xm375,29v-198,2,-328,-127,-328,-324v0,-143,51,-253,155,-329v104,-76,254,-113,449,-113r193,0v3,-27,10,-47,10,-78v0,-38,-16,-68,-51,-87v-85,-46,-219,-35,-333,-2v-69,20,-143,48,-222,85r47,-250v129,-44,254,-78,405,-78v145,0,254,25,329,76v98,67,128,169,105,315v-5,35,-11,74,-20,117r-123,639r-291,0r25,-125v-82,94,-187,152,-350,154"},"\u00e2":{"d":"699,-1638r243,0r183,376r-176,0r-152,-225r-240,225r-190,0xm352,-317v0,82,62,145,144,145v79,0,145,-31,198,-93v53,-62,90,-150,109,-265r-113,0v-115,0,-200,17,-255,52v-55,35,-83,88,-83,161xm375,29v-198,2,-328,-127,-328,-324v0,-143,51,-253,155,-329v104,-76,254,-113,449,-113r193,0v3,-27,10,-47,10,-78v0,-38,-16,-68,-51,-87v-85,-46,-219,-35,-333,-2v-69,20,-143,48,-222,85r47,-250v129,-44,254,-78,405,-78v145,0,254,25,329,76v98,67,128,169,105,315v-5,35,-11,74,-20,117r-123,639r-291,0r25,-125v-82,94,-187,152,-350,154"},"\u00e3":{"d":"887,-1470v79,34,123,-45,133,-121r139,0v-15,94,-43,165,-85,213v-53,62,-143,90,-232,58v-40,-14,-89,-57,-126,-85v-28,-22,-52,-33,-73,-33v-58,0,-86,66,-96,129r-139,0v13,-87,42,-156,87,-207v59,-66,137,-96,227,-64v49,18,112,87,165,110xm352,-317v0,82,62,145,144,145v79,0,145,-31,198,-93v53,-62,90,-150,109,-265r-113,0v-115,0,-200,17,-255,52v-55,35,-83,88,-83,161xm375,29v-198,2,-328,-127,-328,-324v0,-143,51,-253,155,-329v104,-76,254,-113,449,-113r193,0v3,-27,10,-47,10,-78v0,-38,-16,-68,-51,-87v-85,-46,-219,-35,-333,-2v-69,20,-143,48,-222,85r47,-250v129,-44,254,-78,405,-78v145,0,254,25,329,76v98,67,128,169,105,315v-5,35,-11,74,-20,117r-123,639r-291,0r25,-125v-82,94,-187,152,-350,154"},"\u00e4":{"d":"889,-1585r238,0r-49,246r-236,0xm494,-1585r237,0r-49,246r-235,0xm352,-317v0,82,62,145,144,145v79,0,145,-31,198,-93v53,-62,90,-150,109,-265r-113,0v-115,0,-200,17,-255,52v-55,35,-83,88,-83,161xm375,29v-198,2,-328,-127,-328,-324v0,-143,51,-253,155,-329v104,-76,254,-113,449,-113r193,0v3,-27,10,-47,10,-78v0,-38,-16,-68,-51,-87v-85,-46,-219,-35,-333,-2v-69,20,-143,48,-222,85r47,-250v129,-44,254,-78,405,-78v145,0,254,25,329,76v98,67,128,169,105,315v-5,35,-11,74,-20,117r-123,639r-291,0r25,-125v-82,94,-187,152,-350,154"},"\u00e5":{"d":"352,-317v0,82,62,145,144,145v79,0,145,-31,198,-93v53,-62,90,-150,109,-265r-113,0v-115,0,-200,17,-255,52v-55,35,-83,88,-83,161xm375,29v-198,2,-328,-127,-328,-324v0,-143,51,-253,155,-329v104,-76,254,-113,449,-113r193,0v3,-27,10,-47,10,-78v0,-38,-16,-68,-51,-87v-85,-46,-219,-35,-333,-2v-69,20,-143,48,-222,85r47,-250v129,-44,254,-78,405,-78v145,0,254,25,329,76v98,67,128,169,105,315v-5,35,-11,74,-20,117r-123,639r-291,0r25,-125v-82,94,-187,152,-350,154xm779,-1249v-154,0,-285,-132,-285,-285v0,-153,131,-285,285,-285v153,0,284,132,284,285v0,153,-131,285,-284,285xm910,-1534v0,-70,-63,-131,-131,-131v-71,0,-132,60,-132,131v-1,71,60,131,132,131v71,0,131,-60,131,-131"},"\u00e6":{"d":"188,-291v0,66,42,112,107,111v45,0,79,-19,107,-52v37,-44,61,-159,75,-247r-74,0v-123,-2,-215,71,-215,188xm1010,-834v0,-65,-22,-97,-84,-98v-37,0,-67,15,-92,42v-34,38,-56,128,-68,202r225,0v7,-50,20,-86,19,-146xm969,-1147v169,-1,263,99,262,270v-1,134,-35,272,-55,400r-451,0v-8,51,-13,77,-14,121v-2,101,59,178,155,176v100,-2,190,-54,258,-109r-47,238v-71,50,-158,80,-274,80v-132,0,-221,-65,-260,-164v-71,95,-154,161,-297,164v-170,3,-277,-119,-277,-291v0,-258,184,-433,447,-428r108,0v6,-39,16,-74,17,-117v0,-83,-49,-128,-133,-125v-105,3,-189,51,-277,101r47,-238v90,-44,178,-77,293,-78v111,-1,192,52,223,133v62,-77,148,-132,275,-133"},"\u00e7":{"d":"446,-463v2,169,79,254,246,254v126,0,221,-49,320,-104r-56,276v-93,40,-199,65,-323,66v-294,3,-483,-174,-483,-463v0,-468,353,-803,846,-692v57,14,110,34,161,63r-53,268v-71,-68,-152,-113,-275,-114v-235,-3,-386,200,-383,446xm552,150v0,-61,-27,-93,-57,-150r141,0v39,53,72,107,72,184v0,144,-126,220,-283,217v-73,-2,-142,-9,-202,-26r28,-156v95,44,301,68,301,-69"},"\u00e8":{"d":"655,-1638r209,376r-198,0r-295,-376r284,0xm362,-403v0,145,106,201,265,200v163,-1,308,-51,417,-121r-51,269v-117,52,-251,83,-411,84v-320,1,-506,-153,-506,-465v0,-316,147,-553,368,-658v77,-36,161,-55,250,-55v270,0,464,173,461,438v-1,85,-12,157,-27,246r-759,0v-4,21,-7,40,-7,62xm876,-684v32,-135,-50,-241,-184,-236v-157,5,-236,101,-282,236r466,0"},"\u00e9":{"d":"887,-1638r321,0r-442,376r-197,0xm362,-403v0,145,106,201,265,200v163,-1,308,-51,417,-121r-51,269v-117,52,-251,83,-411,84v-320,1,-506,-153,-506,-465v0,-316,147,-553,368,-658v77,-36,161,-55,250,-55v270,0,464,173,461,438v-1,85,-12,157,-27,246r-759,0v-4,21,-7,40,-7,62xm876,-684v32,-135,-50,-241,-184,-236v-157,5,-236,101,-282,236r466,0"},"\u00ea":{"d":"668,-1638r243,0r183,376r-176,0r-152,-225r-240,225r-190,0xm362,-403v0,145,106,201,265,200v163,-1,308,-51,417,-121r-51,269v-117,52,-251,83,-411,84v-320,1,-506,-153,-506,-465v0,-316,147,-553,368,-658v77,-36,161,-55,250,-55v270,0,464,173,461,438v-1,85,-12,157,-27,246r-759,0v-4,21,-7,40,-7,62xm876,-684v32,-135,-50,-241,-184,-236v-157,5,-236,101,-282,236r466,0"},"\u00eb":{"d":"858,-1585r238,0r-49,246r-236,0xm463,-1585r237,0r-49,246r-235,0xm362,-403v0,145,106,201,265,200v163,-1,308,-51,417,-121r-51,269v-117,52,-251,83,-411,84v-320,1,-506,-153,-506,-465v0,-316,147,-553,368,-658v77,-36,161,-55,250,-55v270,0,464,173,461,438v-1,85,-12,157,-27,246r-759,0v-4,21,-7,40,-7,62xm876,-684v32,-135,-50,-241,-184,-236v-157,5,-236,101,-282,236r466,0"},"\u00ec":{"d":"610,-1638r209,376r-198,0r-295,-376r284,0xm309,-1120r580,0r-174,895r364,0r-43,225r-1022,0r43,-225r365,0r131,-670r-287,0"},"\u00ed":{"d":"842,-1638r321,0r-442,376r-197,0xm309,-1120r580,0r-174,895r364,0r-43,225r-1022,0r43,-225r365,0r131,-670r-287,0"},"\u00ee":{"d":"623,-1638r243,0r183,376r-176,0r-152,-225r-240,225r-190,0xm309,-1120r580,0r-174,895r364,0r-43,225r-1022,0r43,-225r365,0r131,-670r-287,0"},"\u00ef":{"d":"813,-1585r238,0r-49,246r-236,0xm418,-1585r237,0r-49,246r-235,0xm309,-1120r580,0r-174,895r364,0r-43,225r-1022,0r43,-225r365,0r131,-670r-287,0"},"\u00f0":{"d":"375,-428v0,125,66,221,184,221v84,0,152,-42,207,-125v71,-106,98,-279,72,-446v-46,-26,-98,-40,-164,-41v-86,0,-157,37,-214,111v-57,74,-85,167,-85,280xm788,-1028v-34,-78,-69,-149,-110,-215r-330,123r-41,-115r307,-115r-125,-206r279,0r74,120r323,-118r41,112r-303,113v80,121,139,238,179,349v105,290,66,631,-106,822v-111,123,-256,187,-437,187v-285,0,-458,-159,-457,-441v0,-187,53,-341,160,-461v107,-120,243,-180,409,-180v56,0,98,8,137,25"},"\u00f1":{"d":"856,-1470v79,34,123,-45,133,-121r139,0v-15,94,-44,165,-86,213v-53,62,-141,90,-230,58v-40,-14,-90,-57,-127,-85v-28,-22,-52,-33,-73,-33v-58,0,-86,66,-96,129r-139,0v13,-87,42,-156,87,-207v59,-66,138,-96,228,-64v49,18,111,87,164,110xm854,-1147v193,-4,291,131,262,334v-3,25,-8,54,-14,85r-141,728r-293,0r133,-682v6,-33,10,-68,10,-106v0,-76,-39,-119,-113,-119v-55,0,-101,24,-140,72v-39,48,-68,117,-85,206r-121,629r-293,0r217,-1120r293,0r-32,168v55,-109,166,-193,317,-195"},"\u00f2":{"d":"655,-1638r209,376r-198,0r-295,-376r284,0xm383,-434v0,129,61,227,180,227v81,0,149,-46,204,-137v55,-91,83,-204,83,-340v1,-134,-54,-226,-178,-227v-82,0,-151,45,-206,136v-55,91,-83,204,-83,341xm545,29v-283,1,-457,-171,-457,-455v0,-215,55,-389,166,-522v111,-133,255,-200,434,-201v283,-1,459,171,457,455v-1,215,-56,390,-167,523v-111,133,-255,200,-433,200"},"\u00f3":{"d":"887,-1638r321,0r-442,376r-197,0xm383,-434v0,129,61,227,180,227v81,0,149,-46,204,-137v55,-91,83,-204,83,-340v1,-134,-54,-226,-178,-227v-82,0,-151,45,-206,136v-55,91,-83,204,-83,341xm545,29v-283,1,-457,-171,-457,-455v0,-215,55,-389,166,-522v111,-133,255,-200,434,-201v283,-1,459,171,457,455v-1,215,-56,390,-167,523v-111,133,-255,200,-433,200"},"\u00f4":{"d":"668,-1638r243,0r183,376r-176,0r-152,-225r-240,225r-190,0xm383,-434v0,129,61,227,180,227v81,0,149,-46,204,-137v55,-91,83,-204,83,-340v1,-134,-54,-226,-178,-227v-82,0,-151,45,-206,136v-55,91,-83,204,-83,341xm545,29v-283,1,-457,-171,-457,-455v0,-215,55,-389,166,-522v111,-133,255,-200,434,-201v283,-1,459,171,457,455v-1,215,-56,390,-167,523v-111,133,-255,200,-433,200"},"\u00f5":{"d":"856,-1470v79,34,123,-45,133,-121r139,0v-15,94,-44,165,-86,213v-53,62,-141,90,-230,58v-40,-14,-90,-57,-127,-85v-28,-22,-52,-33,-73,-33v-58,0,-86,66,-96,129r-139,0v13,-87,42,-156,87,-207v59,-66,138,-96,228,-64v49,18,111,87,164,110xm383,-434v0,129,61,227,180,227v81,0,149,-46,204,-137v55,-91,83,-204,83,-340v1,-134,-54,-226,-178,-227v-82,0,-151,45,-206,136v-55,91,-83,204,-83,341xm545,29v-283,1,-457,-171,-457,-455v0,-215,55,-389,166,-522v111,-133,255,-200,434,-201v283,-1,459,171,457,455v-1,215,-56,390,-167,523v-111,133,-255,200,-433,200"},"\u00f6":{"d":"858,-1585r238,0r-49,246r-236,0xm463,-1585r237,0r-49,246r-235,0xm383,-434v0,129,61,227,180,227v81,0,149,-46,204,-137v55,-91,83,-204,83,-340v1,-134,-54,-226,-178,-227v-82,0,-151,45,-206,136v-55,91,-83,204,-83,341xm545,29v-283,1,-457,-171,-457,-455v0,-215,55,-389,166,-522v111,-133,255,-200,434,-201v283,-1,459,171,457,455v-1,215,-56,390,-167,523v-111,133,-255,200,-433,200"},"\u00f7":{"d":"461,-1198r309,0r0,309r-309,0r0,-309xm461,-395r309,0r0,309r-309,0r0,-309xm66,-762r1099,0r0,238r-1099,0r0,-238"},"\u00f8":{"d":"434,-266v29,36,67,58,127,59v81,0,146,-40,197,-121v51,-81,81,-195,92,-342xm543,29v-138,0,-232,-36,-310,-101r-198,189r-117,-119r211,-207v-26,-60,-41,-129,-41,-213v0,-218,56,-394,166,-527v110,-133,255,-200,434,-200v134,1,232,38,313,100r193,-186r117,121r-207,201v25,62,41,134,41,217v0,217,-55,393,-166,526v-111,133,-256,199,-436,199xm801,-856v-30,-34,-68,-54,-127,-55v-81,0,-146,39,-196,118v-50,79,-82,192,-95,340"},"\u00f9":{"d":"655,-1638r209,376r-198,0r-295,-376r284,0xm373,29v-195,3,-289,-132,-263,-337v3,-24,7,-52,13,-83r143,-729r291,0r-131,684v-6,33,-10,67,-10,104v-1,75,39,121,112,121v55,0,102,-23,140,-70v38,-47,66,-116,84,-208r122,-631r291,0r-217,1120r-293,0r33,-166v-51,108,-167,193,-315,195"},"\u00fa":{"d":"887,-1638r321,0r-442,376r-197,0xm373,29v-195,3,-289,-132,-263,-337v3,-24,7,-52,13,-83r143,-729r291,0r-131,684v-6,33,-10,67,-10,104v-1,75,39,121,112,121v55,0,102,-23,140,-70v38,-47,66,-116,84,-208r122,-631r291,0r-217,1120r-293,0r33,-166v-51,108,-167,193,-315,195"},"\u00fb":{"d":"668,-1638r243,0r183,376r-176,0r-152,-225r-240,225r-190,0xm373,29v-195,3,-289,-132,-263,-337v3,-24,7,-52,13,-83r143,-729r291,0r-131,684v-6,33,-10,67,-10,104v-1,75,39,121,112,121v55,0,102,-23,140,-70v38,-47,66,-116,84,-208r122,-631r291,0r-217,1120r-293,0r33,-166v-51,108,-167,193,-315,195"},"\u00fc":{"d":"858,-1585r238,0r-49,246r-236,0xm463,-1585r237,0r-49,246r-235,0xm373,29v-195,3,-289,-132,-263,-337v3,-24,7,-52,13,-83r143,-729r291,0r-131,684v-6,33,-10,67,-10,104v-1,75,39,121,112,121v55,0,102,-23,140,-70v38,-47,66,-116,84,-208r122,-631r291,0r-217,1120r-293,0r33,-166v-51,108,-167,193,-315,195"},"\u00fd":{"d":"887,-1638r321,0r-442,376r-197,0xm551,121v-75,132,-139,216,-193,251v-54,35,-124,52,-208,52r-240,0r45,-223v93,0,198,3,254,-30v44,-25,113,-143,149,-216r-217,-1075r297,0r127,700r383,-700r309,0"},"\u00fe":{"d":"436,-432v0,124,54,223,166,223v74,0,138,-47,192,-142v54,-95,80,-209,80,-343v0,-121,-48,-213,-157,-213v-76,0,-141,47,-197,139v-56,92,-84,204,-84,336xm655,29v-157,0,-253,-96,-276,-236r-123,633r-293,0r385,-1982r293,0r-117,604v47,-65,98,-114,153,-146v55,-32,113,-49,175,-49v211,1,321,179,317,408v-5,304,-108,569,-292,696v-70,48,-144,72,-222,72"},"\u00ff":{"d":"858,-1585r238,0r-49,246r-236,0xm463,-1585r237,0r-49,246r-235,0xm551,121v-75,132,-139,216,-193,251v-54,35,-124,52,-208,52r-240,0r45,-223v93,0,198,3,254,-30v44,-25,113,-143,149,-216r-217,-1075r297,0r127,700r383,-700r309,0"},"\u0152":{"d":"494,0v-318,-3,-463,-90,-463,-391v0,-237,60,-494,127,-692v48,-141,112,-245,194,-311v82,-66,187,-99,314,-99r686,0r-52,260r-331,0r-60,311r301,0r-51,260r-301,0r-78,402r342,0r-51,260r-577,0xm315,-434v0,117,46,173,160,174r51,0r189,-973v-84,-3,-147,5,-195,47v-38,31,-67,81,-90,148v-56,162,-115,414,-115,604"},"\u0153":{"d":"1040,-834v0,-66,-21,-99,-84,-100v-37,0,-65,15,-90,42v-34,38,-56,129,-69,202r225,0v6,-48,17,-91,18,-144xm993,-1147v173,-1,271,97,269,270v-1,133,-35,272,-56,398r-450,0v-9,54,-14,78,-15,123v-2,101,60,174,158,172v100,-2,188,-52,256,-105r-47,238v-72,50,-160,80,-277,80v-121,1,-221,-57,-247,-150v-60,90,-147,149,-285,150v-207,2,-320,-118,-319,-326v0,-203,53,-433,118,-584v66,-153,188,-266,387,-266v117,0,194,45,240,121v58,-72,147,-120,268,-121xm220,-417v-17,118,-20,237,99,233v89,-3,117,-57,146,-138v32,-90,64,-277,83,-387v6,-40,9,-69,9,-88v-1,-89,-25,-137,-108,-137v-89,0,-118,57,-146,137v-36,102,-66,261,-83,380"},"\u0178":{"d":"145,-1493r293,0r187,649r411,-649r322,0r-633,905r-115,588r-293,0r115,-588xm895,-1899r235,0r-47,246r-237,0xm500,-1899r235,0r-49,246r-236,0"},"\u02c6":{"d":"668,-1638r243,0r183,376r-176,0r-152,-225r-240,225r-190,0"},"\u02dc":{"d":"856,-1470v79,34,123,-45,133,-121r139,0v-15,94,-44,165,-86,213v-53,62,-141,90,-230,58v-40,-14,-90,-57,-127,-85v-28,-22,-52,-33,-73,-33v-58,0,-86,66,-96,129r-139,0v13,-87,42,-156,87,-207v59,-66,138,-96,228,-64v49,18,111,87,164,110"},"\u2013":{"d":"-10,-690r1233,0r-49,246r-1233,0"},"\u2014":{"d":"-10,-690r1233,0r-49,246r-1233,0"},"\u2018":{"d":"733,-903r-313,0r53,-271r270,-382r215,0r-172,382"},"\u2019":{"d":"645,-1556r313,0r-53,270r-270,383r-215,0r172,-383"},"\u201a":{"d":"397,-367r314,0r-54,271r-270,383r-215,0r172,-383"},"\u201c":{"d":"508,-903r-313,0r53,-271r270,-382r215,0r-172,382xm1028,-903r-313,0r53,-271r270,-382r215,0r-172,382"},"\u201d":{"d":"893,-1556r313,0r-53,270r-270,383r-215,0r172,-383xm373,-1556r313,0r-53,270r-271,383r-215,0r172,-383"},"\u201e":{"d":"666,-367r313,0r-51,271r-273,383r-213,0r172,-383xm145,-367r314,0r-51,271r-273,383r-213,0r172,-383"},"\u2022":{"d":"283,-622v-35,-86,-35,-192,1,-278v36,-86,111,-159,196,-194v85,-36,189,-36,274,1v124,53,223,162,223,331v0,170,-101,282,-224,336v-86,38,-190,36,-276,0v-85,-36,-158,-109,-194,-196"},"\u2026":{"d":"786,-367r314,0r-70,367r-315,0xm395,-367r295,0r-69,367r-297,0xm-16,-367r315,0r-72,367r-313,0"},"\u2039":{"d":"877,-1059r-50,252r-317,227r229,226r-41,213r-393,-394r25,-131"},"\u203a":{"d":"496,-1059r391,393r-25,131r-545,394r45,-238r322,-221r-235,-221"},"\u20ac":{"d":"649,29v-307,2,-486,-198,-481,-512r-201,0r84,-187r127,0v6,-54,16,-104,27,-151r-176,0r84,-189r147,0v62,-165,150,-292,264,-379v150,-115,342,-159,560,-113v52,12,102,30,151,54r-64,328v-64,-85,-146,-152,-274,-152v-70,0,-134,23,-191,68v-57,45,-105,109,-143,194r402,0r-82,189r-385,0r-31,151r346,0r-82,187r-278,0v6,152,90,263,239,264v51,0,101,-10,150,-31v49,-21,111,-61,188,-121r-63,328v-93,44,-191,71,-318,72"},"\u2122":{"d":"729,-1493r100,227r89,-227r208,0r0,578r-153,0r0,-437r-107,256r-75,0r-117,-256r0,437r-152,0r0,-578r207,0xm438,-1493r0,133r-141,0r0,445r-156,0r0,-445r-141,0r0,-133r438,0"}}}); diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-webfont.eot b/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-webfont.eot new file mode 100644 index 0000000..7025330 Binary files /dev/null and b/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-webfont.eot differ diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-webfont.svg b/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-webfont.svg new file mode 100644 index 0000000..d7f0ef6 --- /dev/null +++ b/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved._DejaVu changes are in public domain_ +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-webfont.ttf b/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-webfont.ttf new file mode 100644 index 0000000..059c6f3 Binary files /dev/null and b/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-webfont.ttf differ diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-webfont.woff b/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-webfont.woff new file mode 100644 index 0000000..ddebd75 Binary files /dev/null and b/assets/fonts/dejavu/mono/DejaVuSansMono-BoldOblique-webfont.woff differ diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-cufon.js b/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-cufon.js new file mode 100644 index 0000000..26aaa17 --- /dev/null +++ b/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-cufon.js @@ -0,0 +1,18 @@ +/*! + * The following copyright notice may not be removed under any circumstances. + * + * Copyright: + * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + * DejaVu changes are in public domain + * + * + * Manufacturer: + * DejaVu fonts team + * + * Vendor URL: + * http://dejavu.sourceforge.net + * + * License information: + * http://dejavu.sourceforge.net/wiki/index.php/License + */ +Cufon.registerFont({"w":1233,"face":{"font-family":"DejaVu Sans Mono","font-weight":400,"font-style":"oblique","font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 6 9 3 3 4 11 2 4","ascent":"1556","descent":"-492","x-height":"27","bbox":"-145 -1901 1376 483","underline-thickness":"90","underline-position":"-85","slope":"-11","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{},"!":{"d":"662,-1493r202,0r-129,655r-88,357r-162,0r50,-357xm420,-254r203,0r-50,254r-202,0"},"\"":{"d":"895,-1493r0,555r-174,0r0,-555r174,0xm512,-1493r0,555r-174,0r0,-555r174,0"},"#":{"d":"778,-901r-246,0r-83,334r245,0xm676,-1470r-105,415r246,0r105,-415r159,0r-104,415r256,0r-39,154r-256,0r-84,334r258,0r-39,153r-258,0r-104,414r-160,0r104,-414r-245,0r-105,414r-160,0r105,-414r-256,0r39,-153r256,0r84,-334r-258,0r39,-154r258,0r104,-415r160,0"},"$":{"d":"543,-145v163,3,291,-103,288,-261v-3,-125,-79,-158,-202,-182xm643,-1184v-144,6,-270,103,-270,244v0,46,14,81,42,106v28,25,77,45,148,60xm455,301r-101,0r59,-301v-145,-6,-270,-41,-382,-92r35,-180v99,73,221,123,374,131r90,-465v-117,-23,-203,-60,-256,-108v-53,-48,-79,-114,-79,-197v0,-115,45,-211,133,-288v88,-77,202,-117,341,-122r48,-235r100,0r-47,235v116,8,219,30,313,61r-32,173v-84,-52,-186,-84,-308,-95r-81,426v116,23,204,62,263,117v59,55,89,126,89,213v0,123,-46,224,-137,304v-94,82,-212,122,-363,120"},"%":{"d":"879,-504v-102,0,-183,83,-183,185v0,102,81,184,183,184v100,0,184,-84,184,-184v0,-100,-85,-185,-184,-185xm879,0v-177,0,-318,-142,-318,-319v0,-216,219,-388,439,-296v109,46,196,148,200,296v4,174,-146,319,-321,319xm121,-465r-35,-96r1042,-418r41,96xm352,-1296v-100,0,-184,83,-184,184v0,103,81,184,184,184v100,0,185,-84,185,-184v0,-100,-85,-184,-185,-184xm352,-793v-176,0,-319,-143,-319,-319v0,-217,219,-388,441,-296v111,46,194,146,198,296v5,174,-146,319,-320,319"},"&":{"d":"733,-1366v-140,-2,-253,77,-250,209v2,90,43,176,84,250r307,557v88,-94,133,-235,148,-410r168,0v-24,234,-109,409,-246,539r123,221r-199,0r-59,-113v-109,81,-232,139,-399,142v-247,4,-432,-150,-430,-389v0,-112,34,-216,100,-312v66,-96,162,-179,287,-248v-34,-61,-57,-129,-58,-215v-3,-284,272,-432,580,-373v41,8,81,20,119,35r-35,183v-55,-50,-137,-75,-240,-76xm158,-408v0,159,137,283,301,279v113,-4,205,-53,282,-111r-309,-555v-90,49,-158,105,-204,171v-46,66,-70,138,-70,216"},"'":{"d":"702,-1493r0,555r-174,0r0,-555r174,0"},"(":{"d":"526,270v-87,-212,-153,-394,-153,-645v0,-202,43,-403,129,-603v86,-200,213,-391,381,-576r159,0v-157,201,-276,402,-356,606v-80,204,-119,407,-119,608v0,231,49,422,119,610r-160,0"},")":{"d":"666,-1554v86,211,153,395,153,645v0,202,-43,403,-129,603v-86,200,-213,391,-381,576r-159,0v157,-200,276,-402,356,-606v80,-204,119,-406,119,-608v0,-231,-49,-422,-119,-610r160,0"},"*":{"d":"1067,-1247r-358,194r358,195r-57,98r-336,-203r0,377r-115,0r0,-377r-336,203r-57,-98r358,-195r-358,-194r57,-99r336,203r0,-377r115,0r0,377r336,-203"},"+":{"d":"700,-1171r0,444r445,0r0,170r-445,0r0,444r-168,0r0,-444r-444,0r0,-170r444,0r0,-444r168,0"},",":{"d":"416,-303r252,0r-41,207r-271,383r-153,0r172,-383"},"-":{"d":"336,-643r522,0r-33,164r-522,0"},".":{"d":"414,-303r252,0r-60,303r-252,0"},"\/":{"d":"16,190r852,-1683r191,0r-854,1683r-189,0"},"0":{"d":"616,-616v-71,0,-135,-63,-135,-134v0,-71,64,-135,135,-135v71,0,134,64,134,135v0,73,-61,134,-134,134xm1135,-1020v0,259,-97,608,-199,772v-58,93,-122,164,-196,209v-74,45,-160,68,-259,68v-130,0,-226,-41,-289,-123v-63,-82,-94,-208,-94,-379v-1,-263,96,-605,199,-772v58,-93,121,-163,195,-208v74,-45,160,-67,258,-67v130,0,227,41,290,123v63,82,95,208,95,377xm299,-414v0,170,52,279,207,279v53,0,102,-17,148,-51v46,-34,84,-84,116,-148v84,-167,163,-487,162,-729v0,-103,-17,-176,-49,-223v-60,-87,-217,-89,-305,-19v-45,36,-85,83,-117,146v-88,170,-163,491,-162,745"},"1":{"d":"156,-170r313,0r221,-1141r-352,76r35,-184r352,-74r203,0r-258,1323r309,0r-33,170r-823,0"},"2":{"d":"713,-1520v229,-5,417,133,413,349v-3,169,-61,258,-153,372v-92,113,-265,252,-385,355r-320,274r684,0r-32,170r-914,0r33,-170r350,-309v358,-314,537,-539,537,-674v0,-132,-102,-202,-242,-199v-168,4,-294,63,-430,135r41,-204v128,-55,258,-97,418,-99"},"3":{"d":"1102,-1192v0,220,-143,355,-340,393v148,24,243,140,242,310v0,156,-56,281,-168,376v-112,95,-260,142,-447,142v-155,0,-291,-28,-407,-74r38,-201v107,61,227,102,379,105v224,4,406,-127,406,-336v-1,-165,-108,-239,-281,-238r-153,0r32,-166r154,0v192,3,344,-96,344,-274v0,-146,-94,-195,-252,-195v-143,0,-264,36,-389,80r37,-186v138,-36,253,-62,401,-64v231,-3,404,112,404,328"},"4":{"d":"842,-1282r-625,762r473,0xm846,-1493r233,0r-190,973r198,0r-30,164r-199,0r-70,356r-198,0r69,-356r-634,0r36,-191"},"5":{"d":"829,-547v0,-175,-122,-276,-303,-274v-120,1,-232,33,-319,78r145,-750r756,0r-33,170r-571,0r-72,367v56,-19,112,-30,180,-31v246,-4,422,168,418,412v-2,189,-90,345,-201,444v-112,100,-255,159,-458,160v-141,0,-270,-22,-367,-64r41,-205v100,60,209,98,354,101v238,5,430,-176,430,-408"},"6":{"d":"293,-387v0,153,81,258,229,258v96,0,176,-45,241,-134v65,-89,97,-200,97,-331v1,-147,-78,-235,-223,-235v-97,0,-179,42,-245,126v-66,84,-99,189,-99,316xm516,29v-274,1,-426,-170,-424,-449v1,-240,65,-496,146,-670v67,-143,148,-250,250,-322v134,-95,313,-131,506,-92v47,10,92,25,134,44r-36,186v-71,-45,-159,-75,-269,-76v-129,0,-235,48,-319,144v-84,96,-143,237,-180,426v79,-119,192,-205,368,-207v239,-3,374,142,371,383v-4,274,-137,494,-325,585v-66,32,-141,48,-222,48"},"7":{"d":"276,-1493r936,0r-16,94r-805,1399r-217,0r778,-1323r-708,0"},"8":{"d":"492,-127v195,0,329,-138,329,-334v0,-154,-95,-248,-250,-248v-191,0,-325,155,-325,351v0,141,102,231,246,231xm41,-354v1,-240,172,-399,389,-439v-128,-45,-215,-130,-215,-288v0,-121,49,-225,148,-311v99,-86,219,-128,362,-128v218,0,401,123,401,326v0,96,-32,182,-97,258v-65,76,-150,127,-257,154v159,37,253,141,254,329v0,139,-51,254,-152,345v-101,91,-231,137,-389,137v-260,0,-445,-134,-444,-383xm926,-1165v0,-123,-93,-199,-219,-199v-165,0,-291,122,-291,285v0,132,86,213,219,213v161,0,291,-138,291,-299"},"9":{"d":"897,-1104v0,-154,-79,-258,-227,-258v-96,0,-177,45,-242,134v-65,89,-98,200,-98,331v-1,147,78,235,223,235v97,0,179,-42,245,-126v66,-84,99,-189,99,-316xm674,-1520v274,-1,428,171,426,449v-1,240,-65,496,-146,670v-66,142,-149,250,-251,322v-134,96,-313,131,-506,93v-47,-10,-91,-25,-134,-45r35,-186v71,45,159,75,269,76v129,0,235,-47,319,-143v84,-96,143,-238,180,-427v-79,119,-192,205,-368,207v-239,3,-375,-143,-371,-385v4,-273,137,-492,325,-583v67,-32,141,-48,222,-48"},":":{"d":"551,-1061r252,0r-60,303r-251,0xm403,-303r252,0r-59,303r-252,0"},";":{"d":"403,-303r252,0r-41,207r-258,383r-153,0r159,-383xm551,-1063r252,0r-60,303r-251,0"},"<":{"d":"1145,-961r-850,320r850,317r0,183r-1057,-418r0,-166r1057,-418r0,182"},"=":{"d":"88,-524r1057,0r0,172r-1057,0r0,-172xm88,-930r1057,0r0,170r-1057,0r0,-170"},">":{"d":"88,-961r0,-182r1057,418r0,166r-1057,418r0,-183r850,-317"},"?":{"d":"774,-1520v188,-4,347,113,346,289v0,63,-17,120,-48,175v-44,78,-193,198,-284,274v-102,86,-132,118,-159,258r-21,123r-190,0v20,-110,39,-231,86,-310v68,-113,302,-259,378,-377v24,-37,36,-75,36,-112v-1,-108,-93,-159,-211,-156v-145,4,-270,68,-381,137r36,-188v125,-65,246,-110,412,-113xm383,-254r203,0r-49,254r-205,0"},"@":{"d":"524,-469v0,123,67,209,185,209v173,0,299,-178,299,-363v0,-123,-69,-206,-189,-206v-171,0,-295,177,-295,360xm801,-1397v265,0,446,173,409,453v-3,26,-8,55,-14,86r-137,723r-144,0r21,-111v-60,75,-151,129,-274,131v-178,2,-297,-146,-297,-329v0,-147,44,-272,132,-376v88,-104,193,-157,314,-157v113,-1,206,55,242,133r8,-43v6,-36,11,-69,12,-102v1,-169,-106,-267,-276,-266v-95,0,-185,26,-273,78v-166,97,-295,288,-355,495v-29,100,-44,202,-44,307v0,325,172,552,483,551v93,-1,167,-21,244,-51r45,131v-84,39,-173,61,-291,61v-391,3,-640,-293,-635,-696v4,-295,120,-575,267,-745v75,-86,159,-155,257,-202v98,-47,200,-71,306,-71"},"A":{"d":"735,-1325r-364,774r430,0xm639,-1493r246,0r166,1493r-201,0r-35,-389r-520,0r-184,389r-217,0"},"B":{"d":"885,-504v0,-158,-106,-209,-279,-209r-241,0r-107,547r248,0v235,2,379,-111,379,-338xm963,-1149v0,-140,-84,-178,-236,-178r-244,0r-88,450r244,0v188,2,324,-94,324,-272xm827,-799v156,27,257,130,258,305v0,156,-53,277,-159,364v-106,87,-257,130,-451,130r-452,0r290,-1493r443,0v135,0,238,26,307,79v69,53,104,131,104,234v1,212,-144,360,-340,381"},"C":{"d":"326,-492v0,217,96,357,303,357v141,0,257,-58,354,-125r-39,207v-101,49,-208,81,-346,82v-309,2,-483,-193,-483,-506v0,-301,112,-622,254,-789v130,-153,276,-254,530,-254v123,0,225,35,313,82r-41,207v-74,-72,-158,-125,-286,-125v-153,0,-247,70,-328,164v-129,148,-231,432,-231,700"},"D":{"d":"924,-999v0,-245,-105,-326,-357,-328r-114,0r-226,1161v156,4,302,-9,394,-62v149,-86,224,-269,269,-478v23,-106,34,-204,34,-293xm586,-1493v354,0,544,154,544,500v0,232,-68,481,-155,639v-138,248,-307,351,-680,354r-303,0r291,-1493r303,0"},"E":{"d":"344,-1493r885,0r-33,170r-684,0r-86,442r653,0r-32,170r-654,0r-104,541r702,0r-33,170r-905,0"},"F":{"d":"383,-1493r879,0r-33,170r-676,0r-86,440r612,0r-32,170r-613,0r-139,713r-203,0"},"G":{"d":"287,-492v-2,214,99,356,303,357v92,0,165,-26,213,-72r76,-393r-217,0r30,-166r410,0r-133,670v-107,76,-239,124,-410,125v-315,1,-485,-196,-481,-518v3,-231,68,-451,147,-615v76,-157,199,-285,339,-354v127,-61,300,-82,456,-41v53,14,105,34,156,61r-41,207v-75,-72,-159,-125,-289,-125v-294,0,-414,228,-490,469v-39,126,-67,255,-69,395"},"H":{"d":"283,-1493r202,0r-118,612r553,0r118,-612r203,0r-291,1493r-202,0r139,-711r-555,0r-137,711r-203,0"},"I":{"d":"346,-1493r830,0r-33,170r-314,0r-223,1153r314,0r-33,170r-830,0r33,-170r313,0r224,-1153r-314,0"},"J":{"d":"20,-297v84,93,200,162,359,162v95,0,166,-24,213,-73v47,-49,83,-142,110,-279r164,-836r-381,0r33,-170r584,0r-197,1006v-37,193,-96,327,-176,403v-80,76,-199,113,-358,113v-150,0,-281,-39,-396,-90"},"K":{"d":"283,-1493r202,0r-127,647r742,-647r254,0r-703,619r428,874r-219,0r-360,-741r-193,168r-112,573r-203,0"},"L":{"d":"369,-1493r202,0r-258,1323r721,0r-33,170r-923,0"},"M":{"d":"229,-1493r269,0r110,756r414,-756r270,0r-291,1493r-186,0r258,-1327r-434,795r-141,0r-115,-795r-256,1327r-186,0"},"N":{"d":"285,-1493r256,0r264,1229r239,-1229r195,0r-291,1493r-256,0r-264,-1229r-240,1229r-194,0"},"O":{"d":"287,-414v0,175,53,279,215,279v136,0,222,-92,276,-197v90,-177,167,-486,166,-747v0,-174,-54,-277,-215,-277v-136,0,-220,92,-274,197v-92,179,-168,482,-168,745xm1054,-1398v101,121,116,396,74,617v-38,200,-102,420,-200,562v-104,150,-225,248,-451,248v-134,0,-231,-43,-298,-123v-100,-121,-115,-397,-75,-618v36,-199,101,-419,199,-560v104,-150,225,-248,451,-248v135,0,233,42,300,122"},"P":{"d":"999,-1116v-2,-154,-91,-211,-254,-211r-233,0r-109,561r234,0v215,3,364,-138,362,-350xm1204,-1135v1,342,-245,540,-600,535r-233,0r-117,600r-203,0r291,-1493r440,0v259,-2,421,113,422,358"},"Q":{"d":"504,27v-316,-1,-422,-168,-422,-500v0,-245,68,-486,148,-667v59,-134,159,-260,270,-320v73,-40,157,-60,254,-60v135,0,233,42,300,122v91,108,117,352,82,560v-48,286,-128,566,-297,727v-47,45,-96,79,-149,101r154,188r-154,92xm287,-414v0,175,53,279,215,279v136,0,222,-92,276,-197v90,-177,167,-486,166,-747v0,-174,-54,-277,-215,-277v-136,0,-220,92,-274,197v-92,179,-168,482,-168,745"},"R":{"d":"1151,-1151v1,249,-158,420,-385,446v48,9,87,32,116,67v29,35,62,112,97,230r121,408r-201,0r-106,-377v-29,-104,-63,-172,-99,-205v-36,-33,-91,-49,-164,-49r-192,0r-123,631r-203,0r289,-1493r416,0v138,0,245,29,321,89v76,60,113,144,113,253xm948,-1110v-1,-161,-92,-217,-262,-217r-213,0r-102,530r219,0v205,4,360,-117,358,-313"},"S":{"d":"477,-135v203,4,372,-122,371,-311v0,-55,-16,-95,-44,-127v-38,-44,-189,-90,-278,-119v-123,-39,-209,-83,-258,-132v-49,-49,-73,-113,-73,-194v0,-147,55,-268,165,-362v143,-123,367,-171,602,-120v60,13,122,33,185,58r-39,205v-95,-69,-202,-119,-348,-119v-110,0,-200,27,-269,82v-69,55,-104,124,-104,209v0,47,18,84,49,115v48,47,204,93,299,123v108,34,189,77,239,133v50,56,75,127,75,213v0,157,-57,279,-166,373v-145,124,-413,167,-657,114v-67,-15,-134,-37,-201,-67r41,-209v116,81,235,131,411,135"},"T":{"d":"193,-1493r1140,0r-33,170r-469,0r-256,1323r-204,0r258,-1323r-469,0"},"U":{"d":"479,29v-242,4,-399,-114,-399,-346v0,-84,17,-162,35,-256r178,-920r203,0r-187,961v-20,103,-30,174,-30,213v1,130,81,184,219,184v128,-1,201,-41,258,-119v15,-21,29,-56,44,-106v15,-50,32,-122,50,-213r178,-920r203,0r-178,920v-28,146,-57,253,-89,321v-81,176,-239,277,-485,281"},"V":{"d":"510,-190r598,-1303r215,0r-719,1493r-258,0r-147,-1493r198,0"},"W":{"d":"145,-1493r191,0r-90,1210r329,-800r211,0r15,802r377,-1212r198,0r-510,1493r-194,0r-31,-870r-371,870r-188,0"},"X":{"d":"242,-1493r200,0r224,532r440,-532r231,0r-596,719r324,774r-201,0r-254,-612r-506,612r-231,0r657,-797"},"Y":{"d":"195,-1493r202,0r236,651r497,-651r218,0r-635,823r-129,670r-207,0r131,-670"},"Z":{"d":"305,-1493r969,0r-29,154r-979,1169r774,0r-34,170r-1012,0r29,-154r976,-1169r-727,0"},"[":{"d":"621,-1556r423,0r-28,143r-240,0r-299,1540r240,0r-27,143r-426,0"},"\\":{"d":"725,190r-170,0r-199,-1683r170,0"},"]":{"d":"928,-1556r-357,1826r-424,0r29,-143r240,0r299,-1540r-240,0r29,-143r424,0"},"^":{"d":"705,-1493r456,557r-178,0r-367,-395r-366,395r-178,0r456,-557r177,0"},"_":{"d":"1233,403r0,80r-1233,0r0,-80r1233,0"},"`":{"d":"651,-1638r197,376r-143,0r-252,-376r198,0"},"a":{"d":"264,-307v-1,111,77,182,191,182v99,0,183,-35,255,-106v80,-78,131,-192,154,-332r-172,0v-134,1,-196,2,-278,33v-82,30,-149,118,-150,223xm694,-1147v256,-4,428,129,387,393v-5,34,-10,73,-18,115r-125,639r-184,0r32,-166v-83,109,-207,192,-378,195v-195,3,-337,-117,-336,-305v0,-131,51,-236,154,-314v103,-78,243,-117,419,-117r246,0v5,-37,16,-64,16,-108v-2,-126,-104,-178,-243,-176v-150,2,-274,46,-396,102r35,-180v124,-44,244,-76,391,-78"},"b":{"d":"332,-383v0,152,64,256,207,256v220,0,294,-199,343,-386v20,-77,29,-152,29,-224v0,-158,-56,-256,-202,-256v-134,0,-214,82,-271,180v-59,104,-106,274,-106,430xm535,29v-139,-1,-223,-65,-265,-170r-26,141r-185,0r303,-1556r185,0r-113,579v74,-99,172,-169,328,-170v227,-2,350,157,346,393v-6,323,-130,597,-340,720v-73,42,-150,63,-233,63"},"c":{"d":"350,-416v0,188,88,289,273,289v151,0,260,-52,356,-125r-39,201v-90,48,-199,79,-330,80v-296,1,-457,-150,-454,-445v3,-326,170,-579,402,-682v120,-53,277,-64,417,-28v55,14,109,36,162,65r-37,182v-79,-69,-159,-112,-291,-112v-250,0,-365,167,-427,365v-22,70,-32,141,-32,210"},"d":{"d":"893,-737v1,-148,-68,-254,-207,-254v-137,0,-214,74,-268,174v-60,110,-103,271,-103,434v0,158,57,256,203,256v135,0,214,-79,270,-178v60,-107,104,-272,105,-432xm670,-1147v141,1,235,69,284,170r115,-579r184,0r-303,1556r-184,0r27,-141v-76,98,-174,169,-330,170v-226,2,-348,-161,-344,-398v5,-315,125,-597,325,-718v68,-40,143,-60,226,-60"},"e":{"d":"948,-737v1,-157,-91,-255,-246,-254v-82,0,-156,30,-224,90v-68,60,-117,141,-146,242r606,0v7,-30,10,-48,10,-78xm285,-412v0,188,109,288,301,285v154,-2,287,-52,411,-113r-36,183v-125,51,-248,85,-408,86v-292,1,-456,-148,-455,-437v1,-232,101,-438,226,-565v96,-98,221,-173,393,-176v247,-4,413,171,409,420v-1,72,-10,132,-22,213r-807,0v-7,35,-12,68,-12,104"},"f":{"d":"1245,-1556r-31,153r-208,0v-140,2,-185,59,-211,184r-21,99r385,0r-26,143r-385,0r-191,977r-184,0r190,-977r-299,0r29,-143r297,0r16,-78v50,-242,146,-354,418,-358r221,0"},"g":{"d":"297,-399v0,149,74,254,215,254v210,0,286,-195,334,-376v20,-74,28,-147,28,-218v2,-148,-71,-252,-212,-252v-103,0,-190,57,-260,169v-70,112,-105,253,-105,423xm647,-1147v141,0,246,76,287,182r27,-151r184,0r-203,1044v-35,181,-97,312,-186,392v-89,80,-216,120,-381,120v-119,0,-224,-22,-316,-55r37,-182v86,52,186,90,310,90v99,0,176,-27,231,-80v55,-53,94,-142,119,-266r24,-117v-70,106,-180,177,-342,178v-216,1,-339,-171,-336,-399v2,-201,65,-393,152,-520v50,-74,109,-133,178,-174v69,-41,141,-62,215,-62"},"h":{"d":"803,-1147v208,0,321,135,287,354v-5,31,-8,64,-15,99r-135,694r-184,0r138,-709v10,-47,15,-84,15,-110v0,-110,-67,-169,-180,-168v-85,0,-157,31,-216,93v-59,62,-100,149,-122,261r-123,633r-184,0r303,-1556r184,0r-116,604v50,-65,105,-113,163,-146v58,-33,120,-49,185,-49"},"i":{"d":"358,-1120r471,0r-190,977r365,0r-29,143r-914,0r29,-143r365,0r161,-834r-286,0xm729,-1556r184,0r-45,233r-184,0"},"j":{"d":"498,20r192,-997r-317,0r28,-143r502,0r-221,1140v-27,142,-75,246,-142,310v-67,64,-161,96,-282,96r-254,0r31,-156r233,0v63,0,113,-20,150,-60v37,-40,63,-103,80,-190xm803,-1556r184,0r-45,233r-184,0"},"k":{"d":"393,-1556r191,0r-170,874r549,-438r241,0r-520,422r373,698r-213,0r-307,-582r-168,133r-88,449r-191,0"},"l":{"d":"739,0v-211,0,-342,-65,-342,-258v0,-50,9,-105,19,-154r211,-1011r-316,0r29,-144r500,0r-240,1159v-7,37,-14,71,-14,107v0,105,67,145,180,145r211,0r-31,156r-207,0"},"m":{"d":"571,-1147v100,-2,164,54,177,141v46,-81,125,-139,241,-141v116,-1,191,83,189,201v-2,108,-17,183,-39,297r-127,649r-168,0r125,-641v12,-61,21,-112,27,-151v6,-39,10,-66,10,-82v0,-79,-23,-118,-97,-119v-50,0,-89,22,-117,65v-28,43,-56,138,-85,287r-125,641r-168,0r125,-641v13,-65,21,-115,27,-153v6,-38,9,-65,9,-80v0,-76,-25,-118,-96,-119v-49,0,-88,19,-115,59v-27,40,-55,138,-85,293r-125,641r-168,0r217,-1120r168,0r-19,96v50,-68,116,-121,219,-123"},"n":{"d":"803,-1147v208,0,321,135,287,354v-5,31,-8,64,-15,99r-135,694r-184,0r138,-709v10,-47,15,-84,15,-110v0,-110,-67,-169,-180,-168v-85,0,-157,31,-216,93v-59,62,-100,149,-122,261r-123,633r-184,0r219,-1120r184,0r-32,168v50,-65,105,-113,163,-146v58,-33,120,-49,185,-49"},"o":{"d":"920,-733v0,-164,-67,-257,-224,-258v-109,0,-201,57,-274,171v-73,114,-109,259,-109,435v0,164,67,257,224,258v109,0,200,-57,273,-171v73,-114,110,-259,110,-435xm506,29v-255,2,-391,-160,-389,-422v1,-203,68,-386,157,-518v93,-137,230,-234,439,-236v265,-2,402,151,401,420v-1,203,-68,391,-156,520v-97,142,-233,234,-452,236"},"p":{"d":"578,29v-147,-2,-231,-65,-285,-170r-111,567r-184,0r301,-1546r184,0r-28,143v71,-97,181,-169,333,-170v225,-1,344,160,340,395v-5,317,-125,597,-326,720v-68,41,-143,61,-224,61xm354,-383v-1,154,70,256,215,256v215,0,289,-196,337,-381v20,-77,28,-154,28,-229v0,-157,-58,-254,-205,-254v-135,0,-215,78,-270,178v-60,108,-104,269,-105,430"},"q":{"d":"666,-1147v142,0,227,64,270,170r27,-143r184,0r-299,1546r-184,0r110,-567v-72,100,-172,169,-328,170v-227,2,-350,-157,-348,-394v2,-206,68,-411,154,-544v89,-137,212,-238,414,-238xm874,-737v0,-152,-64,-254,-206,-254v-222,0,-295,196,-344,384v-20,77,-29,152,-29,224v0,158,55,256,203,256v132,0,214,-80,270,-178v60,-103,106,-276,106,-432"},"r":{"d":"578,-901v79,-143,212,-244,415,-246v96,-1,174,26,226,72r-35,186v-57,-56,-132,-88,-240,-88v-109,0,-203,39,-281,115v-78,76,-130,180,-155,313r-107,549r-184,0r217,-1120r184,0"},"s":{"d":"152,-231v105,59,214,106,354,106v89,0,161,-19,217,-59v56,-40,84,-91,84,-152v0,-66,-65,-116,-196,-151r-95,-25v-86,-22,-150,-54,-190,-97v-40,-43,-60,-98,-60,-167v0,-113,46,-200,132,-270v151,-123,491,-128,679,-35r-35,180v-82,-52,-184,-92,-305,-92v-91,0,-163,17,-213,51v-50,34,-75,82,-75,143v0,65,74,117,221,154r94,24v78,21,136,52,175,93v39,41,58,92,58,153v0,121,-49,218,-144,293v-128,101,-342,136,-551,94v-59,-12,-121,-30,-187,-53"},"t":{"d":"547,-266v0,104,61,119,180,119r207,0r-29,147r-223,0v-111,0,-194,-19,-246,-56v-66,-46,-88,-127,-74,-232v3,-23,7,-50,13,-81r119,-608r-299,0r28,-143r299,0r62,-318r184,0r-61,318r417,0r-28,143r-418,0r-119,608v-7,34,-12,67,-12,103"},"u":{"d":"408,27v-171,3,-285,-105,-283,-273v0,-60,7,-124,18,-180r133,-694r185,0r-135,694v-8,40,-15,88,-15,129v0,107,68,165,178,164v85,0,156,-31,215,-93v59,-62,99,-148,121,-261r123,-633r185,0r-218,1120r-184,0r33,-168v-84,112,-186,192,-356,195"},"v":{"d":"182,-1120r178,0r154,956r502,-956r198,0r-614,1120r-238,0"},"w":{"d":"92,-1120r176,0r15,905r268,-578r162,0r49,578r362,-905r191,0r-486,1120r-165,0r-60,-623r-297,623r-166,0"},"x":{"d":"1208,-1120r-512,547r318,573r-197,0r-244,-444r-417,444r-226,0r564,-596r-293,-524r196,0r217,395r369,-395r225,0"},"y":{"d":"1225,-1120r-604,1048v-103,183,-172,300,-209,348v-69,91,-157,150,-303,150r-148,0r29,-154r108,0v54,0,100,-16,140,-46v55,-40,120,-159,161,-244r-217,-1102r183,0r172,862r483,-862r205,0"},"z":{"d":"319,-1120r814,0r-33,168r-785,805r629,0r-29,147r-837,0r33,-168r784,-805r-604,0"},"{":{"d":"457,-377v-3,-126,-73,-159,-211,-160r-62,0r29,-147v112,4,221,-10,269,-55v40,-38,71,-105,93,-205v45,-202,61,-452,201,-549v81,-56,163,-62,318,-63r82,0r-29,143r-78,0v-91,0,-152,13,-183,39v-31,26,-56,90,-77,190v-34,160,-63,390,-144,484v-41,48,-97,80,-171,94v107,24,171,116,150,253v-2,21,-6,45,-11,70r-47,244v-7,39,-11,69,-11,109v0,98,70,119,183,120r78,0r-29,144r-72,0v-125,0,-214,-18,-269,-54v-69,-45,-91,-134,-78,-243v14,-105,36,-206,56,-307v6,-33,13,-75,13,-107"},"|":{"d":"702,-1565r0,2048r-172,0r0,-2048r172,0"},"}":{"d":"705,-846v3,127,73,159,210,160r62,0r-29,147v-111,-4,-219,10,-268,55v-41,38,-75,105,-96,205v-44,204,-59,453,-199,549v-81,55,-163,63,-317,64r-82,0r28,-144r78,0v91,0,152,-14,183,-40v31,-26,56,-89,77,-189v34,-160,63,-391,144,-485v41,-48,97,-79,172,-92v-108,-26,-169,-115,-150,-254v18,-127,50,-245,66,-372v2,-17,2,-34,2,-50v-4,-100,-69,-120,-183,-121r-77,0r26,-143r74,0v125,0,214,19,269,54v69,44,90,134,77,243v-14,109,-38,213,-57,319v-6,33,-10,64,-10,94"},"~":{"d":"864,-657v123,0,199,-56,281,-123r0,174v-86,67,-166,111,-297,114v-152,4,-298,-127,-467,-122v-131,4,-210,52,-293,122r0,-174v106,-85,236,-137,410,-103v41,9,108,33,157,57v77,37,147,55,209,55"},"\u00a0":{},"\u00a1":{"d":"834,-1239r-203,0r49,-254r203,0xm592,0r-203,0r129,-655r88,-357r162,0r-49,357"},"\u00a2":{"d":"510,27v-239,-24,-391,-196,-387,-457v5,-339,189,-588,451,-682v52,-18,106,-29,163,-33r56,-287r102,0r-55,287v93,5,175,32,247,68r-32,172v-63,-49,-144,-79,-244,-88r-170,870v106,-10,194,-45,279,-90r-33,172v-87,36,-173,60,-275,68r-55,286r-102,0xm541,-127r168,-864v-110,10,-203,69,-279,179v-76,110,-115,240,-115,390v-1,168,78,279,226,295"},"\u00a3":{"d":"1192,-1278v-62,-50,-138,-88,-238,-88v-93,0,-165,28,-216,85v-51,57,-88,152,-115,286r-43,217r370,0r-28,143r-371,0r-90,465r536,0r-32,170r-973,0r33,-170r237,0r90,-465r-198,0r26,-143r199,0r47,-238v34,-173,95,-300,182,-382v108,-102,293,-147,484,-108v43,10,89,25,137,44"},"\u00a4":{"d":"653,-426v118,0,215,-99,215,-217v0,-118,-97,-213,-215,-213v-117,0,-215,96,-215,213v0,119,97,217,215,217xm653,-983v77,0,134,26,191,59r166,-166r90,93r-166,166v34,56,59,111,59,190v0,79,-25,133,-61,186r168,166r-94,94r-166,-167v-54,36,-107,61,-187,61v-77,0,-137,-25,-192,-57r-164,163r-92,-90r166,-166v-35,-58,-60,-112,-60,-190v0,-79,26,-136,62,-188r-168,-166r94,-95r166,168v54,-36,107,-61,188,-61"},"\u00a5":{"d":"1036,-524r-393,0r-98,524r-199,0r98,-524r-397,0r23,-111r397,0r6,-35r-55,-151r-309,0r22,-111r246,0r-205,-561r207,0r223,664r459,-664r211,0r-404,561r252,0r-22,111r-312,0r-110,151r-10,35r393,0"},"\u00a6":{"d":"702,-1432r0,758r-172,0r0,-758r172,0xm702,-408r0,758r-172,0r0,-758r172,0"},"\u00a7":{"d":"350,-1167v-2,-210,201,-349,426,-344v110,2,205,23,293,57r-33,164v-78,-41,-166,-75,-266,-78v-120,-3,-233,64,-235,170v0,53,45,109,134,169v92,62,254,168,301,235v70,100,46,223,-24,319v-44,60,-104,108,-180,143v49,42,82,97,82,180v0,105,-42,189,-122,255v-109,90,-286,118,-466,83v-51,-10,-105,-24,-160,-43r33,-161v82,40,175,73,279,75v131,2,245,-55,245,-172v0,-65,-61,-139,-183,-222v-80,-54,-219,-151,-252,-201v-64,-96,-45,-219,24,-310v43,-57,103,-107,182,-149v-48,-45,-77,-87,-78,-170xm678,-401v56,-34,99,-70,128,-107v60,-78,58,-146,-10,-219v-41,-44,-189,-144,-280,-201v-55,35,-96,71,-125,108v-54,71,-59,142,-1,210v43,50,203,154,288,209"},"\u00a8":{"d":"475,-1552r203,0r-39,202r-203,0xm866,-1552r203,0r-39,202r-203,0"},"\u00a9":{"d":"637,-1116v88,0,163,16,227,45r0,108v-69,-33,-136,-54,-227,-55v-159,-1,-252,113,-252,277v0,174,97,275,270,274v84,-1,149,-20,209,-51r0,104v-64,29,-139,45,-227,45v-234,3,-387,-142,-387,-372v0,-231,154,-378,387,-375xm814,-1218v-118,-48,-276,-49,-394,0v-119,49,-230,160,-280,279v-50,120,-51,273,0,393v50,120,161,231,280,281v119,50,274,50,392,0v118,-49,231,-163,280,-281v49,-120,49,-273,0,-393v-49,-120,-159,-230,-278,-279xm381,-1313v143,-59,328,-59,471,0v144,59,275,193,335,336v60,144,61,326,1,470v-59,142,-195,278,-337,337v-143,59,-326,60,-469,0v-142,-59,-277,-195,-336,-337v-60,-144,-60,-326,0,-470v60,-143,191,-277,335,-336"},"\u00aa":{"d":"442,-938v-1,75,57,122,133,121v175,-2,269,-124,295,-287r-141,0v-99,0,-171,13,-217,40v-46,27,-70,69,-70,126xm743,-1520v205,-3,311,93,291,300v-2,17,-5,36,-8,55r-86,448r-143,0r22,-112v-63,76,-159,130,-287,131v-140,2,-238,-84,-237,-222v0,-93,37,-167,111,-220v74,-53,178,-79,311,-79r174,0r4,-49v-2,-106,-68,-137,-184,-137v-110,0,-194,28,-277,68r23,-127v86,-32,181,-55,286,-56xm246,-592r676,0r-23,123r-676,0"},"\u00ab":{"d":"1106,-1059r-43,211r-350,264r250,267r-35,176r-387,-418r16,-82xm639,-1059r-43,211r-350,264r250,267r-35,176r-387,-418r16,-82"},"\u00ac":{"d":"88,-862r1057,0r0,491r-168,0r0,-319r-889,0r0,-172"},"\u00ad":{"d":"336,-643r522,0r-33,164r-522,0"},"\u00ae":{"d":"891,-901v-1,104,-72,162,-168,178v13,3,29,17,48,39v62,74,125,190,181,278r-143,0r-107,-174v-33,-53,-60,-86,-80,-101v-31,-23,-78,-22,-130,-21r0,296r-130,0r0,-694r238,0v98,0,171,16,219,49v48,33,72,83,72,150xm758,-901v0,-95,-57,-114,-164,-115r-102,0r0,232r102,0v108,-1,164,-21,164,-117xm381,-1313v143,-59,328,-59,471,0v144,59,275,193,335,336v60,144,61,326,1,470v-59,142,-195,278,-337,337v-143,59,-326,60,-469,0v-142,-59,-277,-195,-336,-337v-60,-144,-60,-326,0,-470v60,-143,191,-277,335,-336xm814,-1218v-118,-48,-276,-49,-394,0v-119,49,-230,160,-280,279v-50,120,-51,273,0,393v50,120,161,231,280,281v119,50,274,50,392,0v118,-49,231,-163,280,-281v49,-120,49,-273,0,-393v-49,-120,-159,-230,-278,-279"},"\u00af":{"d":"469,-1526r598,0r-29,148r-598,0"},"\u00b0":{"d":"299,-1200v0,-216,221,-390,441,-296v109,47,191,145,194,296v4,172,-147,315,-320,315v-176,0,-315,-139,-315,-315xm807,-1200v0,-102,-89,-191,-191,-191v-103,0,-190,88,-190,191v0,104,85,188,188,188v103,0,193,-86,193,-188"},"\u00b1":{"d":"88,-170r1057,0r0,170r-1057,0r0,-170xm700,-1171r0,329r445,0r0,170r-445,0r0,332r-168,0r0,-332r-444,0r0,-170r444,0r0,-329r168,0"},"\u00b2":{"d":"737,-1520v145,-3,253,71,254,205v0,93,-103,220,-309,382r-190,151r395,0r-23,114r-557,0r21,-110r203,-167v209,-169,313,-288,313,-358v0,-72,-60,-114,-137,-112v-101,3,-168,36,-256,78r24,-127v92,-31,162,-54,262,-56"},"\u00b3":{"d":"983,-1329v0,119,-98,194,-211,213v90,14,150,74,150,174v0,87,-37,155,-104,210v-117,96,-371,96,-531,38r24,-121v76,32,132,53,221,55v131,2,242,-53,242,-170v0,-99,-66,-131,-174,-131r-72,0r21,-106r72,0v112,2,215,-47,215,-144v0,-110,-154,-112,-264,-91v-34,7,-71,17,-111,32r22,-115v82,-19,158,-34,248,-35v146,-1,252,58,252,191"},"\u00b4":{"d":"907,-1638r219,0r-395,376r-156,0"},"\u00b5":{"d":"494,29v-133,0,-209,-63,-248,-166r-109,563r-176,0r301,-1546r187,0r-136,696v-7,34,-12,70,-12,105v0,126,81,189,211,188v91,0,164,-28,219,-83v55,-55,93,-140,115,-253r127,-653r186,0r-168,862v-10,50,-13,120,43,117v27,-1,42,-11,72,-23r-29,148v-44,24,-89,44,-147,45v-91,1,-147,-65,-146,-158v-65,99,-141,158,-290,158"},"\u00b6":{"d":"506,-649v-225,-2,-382,-134,-381,-355v0,-139,58,-256,173,-349v115,-93,261,-140,437,-140r406,0r-328,1690r-139,0r303,-1567r-191,0r-303,1567r-141,0"},"\u00b7":{"d":"512,-864r254,0r-59,305r-252,0"},"\u00b8":{"d":"494,160v0,-61,-30,-105,-58,-160r119,0v37,67,70,116,72,193v4,163,-174,228,-351,195v-31,-5,-63,-13,-94,-23r25,-129v44,21,90,37,145,38v83,1,142,-37,142,-114"},"\u00b9":{"d":"369,-778r206,0r117,-611r-231,41r22,-116r238,-39r137,0r-141,725r205,0r-21,110r-553,0"},"\u00ba":{"d":"741,-1520v202,-2,328,135,324,340v-4,210,-115,371,-261,443v-54,26,-110,39,-171,39v-203,2,-330,-133,-326,-338v5,-210,116,-373,263,-445v54,-26,111,-39,171,-39xm911,-1180v0,-130,-63,-225,-186,-225v-71,0,-133,35,-185,107v-52,72,-77,159,-77,260v0,130,63,225,186,225v71,0,132,-36,184,-108v52,-72,78,-158,78,-259xm246,-592r676,0r-23,123r-676,0"},"\u00bb":{"d":"82,-141r43,-211r350,-262r-250,-269r35,-176r387,418r-14,82xm549,-141r43,-211r350,-262r-250,-269r35,-176r387,418r-14,82"},"\u00bc":{"d":"111,-934r206,0r117,-611r-231,41r22,-116r238,-39r137,0r-141,725r205,0r-21,110r-553,0xm70,-504r-23,-108r1059,-258r27,108xm901,-565r162,0r-105,540r117,0r-20,111r-119,0r-33,184r-139,0r35,-184r-386,0r23,-121xm897,-416r-342,391r266,0"},"\u00bd":{"d":"891,-582v145,-3,253,71,254,205v0,93,-103,220,-309,382r-190,151r395,0r-23,114r-557,0r21,-110r203,-167v209,-169,313,-288,313,-358v0,-72,-60,-114,-137,-112v-101,3,-168,36,-256,78r24,-127v92,-31,162,-54,262,-56xm111,-934r206,0r117,-611r-231,41r22,-116r238,-39r137,0r-141,725r205,0r-21,110r-553,0xm70,-504r-23,-108r1059,-258r27,108"},"\u00be":{"d":"756,-1485v0,119,-98,194,-211,213v90,14,150,74,150,174v0,87,-37,155,-104,210v-117,96,-371,96,-531,38r24,-121v76,32,132,53,221,55v131,2,242,-53,242,-170v0,-99,-66,-131,-174,-131r-72,0r21,-106r72,0v112,2,215,-47,215,-144v0,-110,-155,-112,-265,-91v-34,7,-70,17,-110,32r22,-115v82,-19,158,-34,248,-35v146,-1,252,58,252,191xm70,-504r-23,-108r1059,-258r27,108xm901,-565r162,0r-105,540r117,0r-20,111r-119,0r-33,184r-139,0r35,-184r-386,0r23,-121xm897,-416r-342,391r266,0"},"\u00bf":{"d":"489,27v-187,4,-347,-113,-346,-289v0,-63,18,-119,49,-174v44,-77,192,-198,283,-275v102,-86,133,-118,160,-258r20,-123r191,0v-22,110,-38,232,-87,312v-41,68,-176,181,-257,248v-57,48,-96,91,-120,128v-24,37,-36,74,-36,111v2,109,92,159,211,156v145,-4,269,-68,381,-137r-37,188v-124,65,-247,110,-412,113xm881,-1239r-203,0r49,-254r203,0"},"\u00c0":{"d":"735,-1325r-364,774r430,0xm639,-1493r246,0r166,1493r-201,0r-35,-389r-520,0r-184,389r-217,0xm733,-1899r147,264r-139,0r-190,-264r182,0"},"\u00c1":{"d":"735,-1325r-364,774r430,0xm639,-1493r246,0r166,1493r-201,0r-35,-389r-520,0r-184,389r-217,0xm885,-1899r208,0r-307,264r-160,0"},"\u00c2":{"d":"735,-1325r-364,774r430,0xm639,-1493r246,0r166,1493r-201,0r-35,-389r-520,0r-184,389r-217,0xm704,-1901r213,0r158,266r-133,0r-139,-178r-209,178r-152,0"},"\u00c3":{"d":"735,-1325r-364,774r430,0xm639,-1493r246,0r166,1493r-201,0r-35,-389r-520,0r-184,389r-217,0xm1157,-1886v-37,126,-106,219,-250,219v-69,0,-110,-37,-153,-69v-28,-21,-55,-32,-80,-32v-59,0,-86,49,-107,101r-125,0v23,-73,56,-127,97,-164v55,-49,132,-69,212,-44v33,11,73,39,101,62v21,17,41,27,73,27v60,0,95,-46,107,-100r125,0"},"\u00c4":{"d":"735,-1325r-364,774r430,0xm639,-1493r246,0r166,1493r-201,0r-35,-389r-520,0r-184,389r-217,0xm897,-1870r203,0r-39,203r-203,0xm506,-1870r204,0r-41,203r-202,0"},"\u00c5":{"d":"772,-1475v82,0,152,-69,152,-151v0,-82,-70,-152,-152,-152v-84,0,-151,68,-151,152v0,82,68,151,151,151xm735,-1325r-364,774r430,0xm1047,-1626v-2,116,-65,202,-150,240r154,1386r-201,0r-35,-389r-520,0r-184,389r-217,0r706,-1415v-63,-43,-100,-111,-102,-211v-3,-148,125,-275,274,-275v148,0,278,127,275,275"},"\u00c6":{"d":"1307,-1493r-33,170r-338,0r-86,442r307,0r-33,170r-307,0r-106,541r356,0r-33,170r-542,0r75,-383r-352,0r-176,383r-184,0r700,-1493r752,0xm647,-1323r-356,772r309,0r150,-772r-103,0"},"\u00c7":{"d":"326,-492v0,217,96,357,303,357v141,0,257,-58,354,-125r-39,207v-101,49,-208,81,-346,82v-309,2,-483,-193,-483,-506v0,-301,112,-622,254,-789v130,-153,276,-254,530,-254v123,0,225,35,313,82r-41,207v-74,-72,-158,-125,-286,-125v-153,0,-247,70,-328,164v-129,148,-231,432,-231,700xm594,160v0,-62,-29,-105,-58,-160r119,0v37,67,72,115,72,193v0,163,-174,226,-351,195v-31,-5,-63,-13,-94,-23r25,-129v46,19,90,37,145,38v81,1,142,-37,142,-114"},"\u00c8":{"d":"344,-1493r885,0r-33,170r-684,0r-86,442r653,0r-32,170r-654,0r-104,541r702,0r-33,170r-905,0xm778,-1899r147,264r-139,0r-190,-264r182,0"},"\u00c9":{"d":"344,-1493r885,0r-33,170r-684,0r-86,442r653,0r-32,170r-654,0r-104,541r702,0r-33,170r-905,0xm930,-1899r208,0r-307,264r-160,0"},"\u00ca":{"d":"344,-1493r885,0r-33,170r-684,0r-86,442r653,0r-32,170r-654,0r-104,541r702,0r-33,170r-905,0xm749,-1901r213,0r158,266r-133,0r-139,-178r-209,178r-152,0"},"\u00cb":{"d":"344,-1493r885,0r-33,170r-684,0r-86,442r653,0r-32,170r-654,0r-104,541r702,0r-33,170r-905,0xm942,-1870r203,0r-39,203r-203,0xm551,-1870r204,0r-41,203r-202,0"},"\u00cc":{"d":"346,-1493r830,0r-33,170r-314,0r-223,1153r314,0r-33,170r-830,0r33,-170r313,0r224,-1153r-314,0xm739,-1899r147,264r-139,0r-190,-264r182,0"},"\u00cd":{"d":"346,-1493r830,0r-33,170r-314,0r-223,1153r314,0r-33,170r-830,0r33,-170r313,0r224,-1153r-314,0xm891,-1899r208,0r-307,264r-160,0"},"\u00ce":{"d":"346,-1493r830,0r-33,170r-314,0r-223,1153r314,0r-33,170r-830,0r33,-170r313,0r224,-1153r-314,0xm710,-1901r213,0r158,266r-133,0r-139,-178r-209,178r-152,0"},"\u00cf":{"d":"346,-1493r830,0r-33,170r-314,0r-223,1153r314,0r-33,170r-830,0r33,-170r313,0r224,-1153r-314,0xm903,-1870r203,0r-39,203r-203,0xm512,-1870r204,0r-41,203r-202,0"},"\u00d0":{"d":"924,-999v0,-245,-105,-326,-357,-328r-114,0r-91,469r267,0r-29,149r-266,0r-107,543v156,4,302,-9,394,-62v149,-86,224,-269,269,-478v23,-106,34,-204,34,-293xm586,-1493v354,0,544,154,544,500v0,232,-68,481,-155,639v-138,248,-307,351,-680,354r-303,0r137,-709r-127,0r29,-149r129,0r123,-635r303,0"},"\u00d1":{"d":"285,-1493r256,0r264,1229r239,-1229r195,0r-291,1493r-256,0r-264,-1229r-240,1229r-194,0xm1153,-1886v-37,126,-106,219,-250,219v-69,0,-110,-37,-153,-69v-28,-21,-55,-32,-80,-32v-59,0,-86,49,-107,101r-125,0v23,-73,56,-127,97,-164v55,-49,132,-69,212,-44v33,11,73,39,101,62v21,17,41,27,73,27v60,0,95,-46,107,-100r125,0"},"\u00d2":{"d":"287,-414v0,175,53,279,215,279v136,0,222,-92,276,-197v90,-177,167,-486,166,-747v0,-174,-54,-277,-215,-277v-136,0,-220,92,-274,197v-92,179,-168,482,-168,745xm1054,-1398v101,121,116,396,74,617v-38,200,-102,420,-200,562v-104,150,-225,248,-451,248v-134,0,-231,-43,-298,-123v-100,-121,-115,-397,-75,-618v36,-199,101,-419,199,-560v104,-150,225,-248,451,-248v135,0,233,42,300,122xm725,-1899r147,264r-139,0r-190,-264r182,0"},"\u00d3":{"d":"287,-414v0,175,53,279,215,279v136,0,222,-92,276,-197v90,-177,167,-486,166,-747v0,-174,-54,-277,-215,-277v-136,0,-220,92,-274,197v-92,179,-168,482,-168,745xm1054,-1398v101,121,116,396,74,617v-38,200,-102,420,-200,562v-104,150,-225,248,-451,248v-134,0,-231,-43,-298,-123v-100,-121,-115,-397,-75,-618v36,-199,101,-419,199,-560v104,-150,225,-248,451,-248v135,0,233,42,300,122xm877,-1899r208,0r-307,264r-160,0"},"\u00d4":{"d":"287,-414v0,175,53,279,215,279v136,0,222,-92,276,-197v90,-177,167,-486,166,-747v0,-174,-54,-277,-215,-277v-136,0,-220,92,-274,197v-92,179,-168,482,-168,745xm1054,-1398v101,121,116,396,74,617v-38,200,-102,420,-200,562v-104,150,-225,248,-451,248v-134,0,-231,-43,-298,-123v-100,-121,-115,-397,-75,-618v36,-199,101,-419,199,-560v104,-150,225,-248,451,-248v135,0,233,42,300,122xm696,-1901r213,0r158,266r-133,0r-139,-178r-209,178r-152,0"},"\u00d5":{"d":"287,-414v0,175,53,279,215,279v136,0,222,-92,276,-197v90,-177,167,-486,166,-747v0,-174,-54,-277,-215,-277v-136,0,-220,92,-274,197v-92,179,-168,482,-168,745xm1054,-1398v101,121,116,396,74,617v-38,200,-102,420,-200,562v-104,150,-225,248,-451,248v-134,0,-231,-43,-298,-123v-100,-121,-115,-397,-75,-618v36,-199,101,-419,199,-560v104,-150,225,-248,451,-248v135,0,233,42,300,122xm1149,-1886v-37,126,-106,219,-250,219v-69,0,-110,-37,-153,-69v-28,-21,-55,-32,-80,-32v-59,0,-86,49,-107,101r-125,0v23,-73,56,-127,97,-164v55,-49,132,-69,212,-44v33,11,73,39,101,62v21,17,41,27,73,27v60,0,95,-46,107,-100r125,0"},"\u00d6":{"d":"287,-414v0,175,53,279,215,279v136,0,222,-92,276,-197v90,-177,167,-486,166,-747v0,-174,-54,-277,-215,-277v-136,0,-220,92,-274,197v-92,179,-168,482,-168,745xm1054,-1398v101,121,116,396,74,617v-38,200,-102,420,-200,562v-104,150,-225,248,-451,248v-134,0,-231,-43,-298,-123v-100,-121,-115,-397,-75,-618v36,-199,101,-419,199,-560v104,-150,225,-248,451,-248v135,0,233,42,300,122xm889,-1870r203,0r-39,203r-203,0xm498,-1870r204,0r-41,203r-202,0"},"\u00d7":{"d":"150,-293r350,-348r-350,-350r116,-117r350,350r351,-350r116,117r-350,350r348,348r-116,119r-349,-350r-348,350"},"\u00d8":{"d":"322,-229v26,59,94,95,180,94v75,0,138,-28,192,-82v104,-103,185,-358,219,-549v23,-129,31,-225,25,-350xm905,-1274v-35,-48,-96,-82,-176,-82v-75,0,-139,28,-193,82v-106,106,-184,362,-220,556v-24,133,-35,215,-25,329xm754,-1520v112,1,196,33,262,86r84,-125r100,64r-106,158v39,81,57,174,57,295v1,271,-85,588,-188,766v-59,103,-128,180,-208,230v-80,50,-173,75,-278,75v-117,-1,-203,-35,-270,-92r-94,133r-99,-64r119,-170v-36,-78,-53,-171,-53,-285v-1,-274,84,-589,188,-768v59,-102,128,-178,208,-228v80,-50,172,-75,278,-75"},"\u00d9":{"d":"479,29v-242,4,-399,-114,-399,-346v0,-84,17,-162,35,-256r178,-920r203,0r-187,961v-20,103,-30,174,-30,213v1,130,81,184,219,184v128,-1,201,-41,258,-119v15,-21,29,-56,44,-106v15,-50,32,-122,50,-213r178,-920r203,0r-178,920v-28,146,-57,253,-89,321v-81,176,-239,277,-485,281xm737,-1899r147,264r-139,0r-190,-264r182,0"},"\u00da":{"d":"479,29v-242,4,-399,-114,-399,-346v0,-84,17,-162,35,-256r178,-920r203,0r-187,961v-20,103,-30,174,-30,213v1,130,81,184,219,184v128,-1,201,-41,258,-119v15,-21,29,-56,44,-106v15,-50,32,-122,50,-213r178,-920r203,0r-178,920v-28,146,-57,253,-89,321v-81,176,-239,277,-485,281xm889,-1899r208,0r-307,264r-160,0"},"\u00db":{"d":"479,29v-242,4,-399,-114,-399,-346v0,-84,17,-162,35,-256r178,-920r203,0r-187,961v-20,103,-30,174,-30,213v1,130,81,184,219,184v128,-1,201,-41,258,-119v15,-21,29,-56,44,-106v15,-50,32,-122,50,-213r178,-920r203,0r-178,920v-28,146,-57,253,-89,321v-81,176,-239,277,-485,281xm708,-1901r213,0r158,266r-133,0r-139,-178r-209,178r-152,0"},"\u00dc":{"d":"479,29v-242,4,-399,-114,-399,-346v0,-84,17,-162,35,-256r178,-920r203,0r-187,961v-20,103,-30,174,-30,213v1,130,81,184,219,184v128,-1,201,-41,258,-119v15,-21,29,-56,44,-106v15,-50,32,-122,50,-213r178,-920r203,0r-178,920v-28,146,-57,253,-89,321v-81,176,-239,277,-485,281xm901,-1870r203,0r-39,203r-203,0xm510,-1870r204,0r-41,203r-202,0"},"\u00dd":{"d":"195,-1493r202,0r236,651r497,-651r218,0r-635,823r-129,670r-207,0r131,-670xm891,-1899r208,0r-307,264r-160,0"},"\u00de":{"d":"1159,-874v2,330,-254,514,-602,509r-231,0r-72,365r-203,0r291,-1493r203,2r-51,274r241,0v256,-1,423,104,424,343xm952,-858v-2,-149,-93,-201,-254,-201r-237,0r-105,537r234,0v210,3,364,-131,362,-336"},"\u00df":{"d":"944,-1208v15,-129,-69,-198,-194,-197v-180,3,-257,107,-289,272r-219,1133r-187,0r221,-1137v52,-263,190,-415,484,-419v244,-4,395,127,362,377v-3,23,-8,47,-14,71v-116,14,-207,43,-274,88v-67,45,-101,100,-101,164v0,25,8,47,21,68v19,31,90,83,131,114v76,57,128,108,155,152v27,44,41,95,41,153v0,258,-207,402,-481,398v-103,-1,-190,-20,-270,-49r30,-164v72,39,159,64,263,65v162,2,282,-81,282,-233v0,-35,-9,-66,-27,-93v-47,-74,-248,-189,-291,-265v-18,-31,-28,-67,-28,-109v0,-87,33,-163,101,-227v68,-64,161,-108,280,-132v2,-10,3,-20,4,-30"},"\u00e0":{"d":"655,-1638r197,376r-143,0r-252,-376r198,0xm264,-307v-1,111,77,182,191,182v99,0,183,-35,255,-106v80,-78,131,-192,154,-332r-172,0v-134,1,-196,2,-278,33v-82,30,-149,118,-150,223xm694,-1147v256,-4,428,129,387,393v-5,34,-10,73,-18,115r-125,639r-184,0r32,-166v-83,109,-207,192,-378,195v-195,3,-337,-117,-336,-305v0,-131,51,-236,154,-314v103,-78,243,-117,419,-117r246,0v5,-37,16,-64,16,-108v-2,-126,-104,-178,-243,-176v-150,2,-274,46,-396,102r35,-180v124,-44,244,-76,391,-78"},"\u00e1":{"d":"911,-1638r219,0r-395,376r-156,0xm264,-307v-1,111,77,182,191,182v99,0,183,-35,255,-106v80,-78,131,-192,154,-332r-172,0v-134,1,-196,2,-278,33v-82,30,-149,118,-150,223xm694,-1147v256,-4,428,129,387,393v-5,34,-10,73,-18,115r-125,639r-184,0r32,-166v-83,109,-207,192,-378,195v-195,3,-337,-117,-336,-305v0,-131,51,-236,154,-314v103,-78,243,-117,419,-117r246,0v5,-37,16,-64,16,-108v-2,-126,-104,-178,-243,-176v-150,2,-274,46,-396,102r35,-180v124,-44,244,-76,391,-78"},"\u00e2":{"d":"721,-1638r147,0r164,376r-133,0r-117,-241r-225,241r-156,0xm264,-307v-1,111,77,182,191,182v99,0,183,-35,255,-106v80,-78,131,-192,154,-332r-172,0v-134,1,-196,2,-278,33v-82,30,-149,118,-150,223xm694,-1147v256,-4,428,129,387,393v-5,34,-10,73,-18,115r-125,639r-184,0r32,-166v-83,109,-207,192,-378,195v-195,3,-337,-117,-336,-305v0,-131,51,-236,154,-314v103,-78,243,-117,419,-117r246,0v5,-37,16,-64,16,-108v-2,-126,-104,-178,-243,-176v-150,2,-274,46,-396,102r35,-180v124,-44,244,-76,391,-78"},"\u00e3":{"d":"895,-1307v-122,0,-154,-100,-233,-146v-38,-22,-79,-6,-100,29v-16,25,-27,63,-32,115r-125,0v11,-91,37,-160,74,-209v51,-68,138,-92,223,-58v55,22,105,102,156,132v38,22,76,4,98,-31v16,-26,28,-65,33,-116r125,0v-11,91,-36,162,-74,211v-38,49,-86,73,-145,73xm264,-307v-1,111,77,182,191,182v99,0,183,-35,255,-106v80,-78,131,-192,154,-332r-172,0v-134,1,-196,2,-278,33v-82,30,-149,118,-150,223xm694,-1147v256,-4,428,129,387,393v-5,34,-10,73,-18,115r-125,639r-184,0r32,-166v-83,109,-207,192,-378,195v-195,3,-337,-117,-336,-305v0,-131,51,-236,154,-314v103,-78,243,-117,419,-117r246,0v5,-37,16,-64,16,-108v-2,-126,-104,-178,-243,-176v-150,2,-274,46,-396,102r35,-180v124,-44,244,-76,391,-78"},"\u00e4":{"d":"479,-1552r203,0r-39,202r-203,0xm870,-1552r203,0r-39,202r-203,0xm264,-307v-1,111,77,182,191,182v99,0,183,-35,255,-106v80,-78,131,-192,154,-332r-172,0v-134,1,-196,2,-278,33v-82,30,-149,118,-150,223xm694,-1147v256,-4,428,129,387,393v-5,34,-10,73,-18,115r-125,639r-184,0r32,-166v-83,109,-207,192,-378,195v-195,3,-337,-117,-336,-305v0,-131,51,-236,154,-314v103,-78,243,-117,419,-117r246,0v5,-37,16,-64,16,-108v-2,-126,-104,-178,-243,-176v-150,2,-274,46,-396,102r35,-180v124,-44,244,-76,391,-78"},"\u00e5":{"d":"264,-307v-1,111,77,182,191,182v99,0,183,-35,255,-106v80,-78,131,-192,154,-332r-172,0v-134,1,-196,2,-278,33v-82,30,-149,118,-150,223xm694,-1147v256,-4,428,129,387,393v-5,34,-10,73,-18,115r-125,639r-184,0r32,-166v-83,109,-207,192,-378,195v-195,3,-337,-117,-336,-305v0,-131,51,-236,154,-314v103,-78,243,-117,419,-117r246,0v5,-37,16,-64,16,-108v-2,-126,-104,-178,-243,-176v-150,2,-274,46,-396,102r35,-180v124,-44,244,-76,391,-78xm782,-1444v83,0,152,-69,152,-151v0,-83,-69,-152,-152,-152v-84,0,-151,68,-151,152v0,82,68,151,151,151xm782,-1870v149,0,275,126,275,275v0,149,-125,274,-275,274v-149,0,-274,-125,-274,-274v0,-149,126,-275,274,-275"},"\u00e6":{"d":"123,-262v-2,78,60,139,137,139v60,0,106,-22,140,-67v34,-45,63,-129,87,-252r15,-72v-81,-1,-189,4,-226,16v-95,30,-149,118,-153,236xm1051,-846v0,-87,-44,-149,-127,-149v-55,0,-99,22,-136,63v-48,54,-75,174,-94,275r330,0v13,-60,27,-115,27,-189xm950,-1147v164,-1,267,117,264,285v-2,111,-31,238,-51,348r-495,0v-18,90,-33,152,-35,229v-2,106,73,167,182,166v107,-1,206,-50,266,-108r-34,172v-71,49,-154,83,-263,84v-139,1,-237,-56,-270,-160v-56,96,-141,158,-281,160v-166,2,-280,-105,-280,-269v0,-276,179,-420,465,-417r117,0r18,-88v5,-28,8,-55,8,-89v1,-101,-61,-164,-162,-161v-95,2,-179,42,-258,84r35,-168v86,-37,171,-68,273,-68v114,0,192,49,231,129v59,-74,149,-127,270,-129"},"\u00e7":{"d":"350,-416v0,188,88,289,273,289v151,0,260,-52,356,-125r-39,201v-90,48,-199,79,-330,80v-296,1,-457,-150,-454,-445v3,-326,170,-579,402,-682v120,-53,277,-64,417,-28v55,14,109,36,162,65r-37,182v-79,-69,-159,-112,-291,-112v-250,0,-365,167,-427,365v-22,70,-32,141,-32,210xm598,160v0,-62,-29,-105,-58,-160r119,0v37,67,72,115,72,193v0,163,-174,226,-351,195v-31,-5,-63,-13,-94,-23r25,-129v46,19,90,37,145,38v81,1,142,-37,142,-114"},"\u00e8":{"d":"651,-1638r197,376r-143,0r-252,-376r198,0xm948,-737v1,-157,-91,-255,-246,-254v-82,0,-156,30,-224,90v-68,60,-117,141,-146,242r606,0v7,-30,10,-48,10,-78xm285,-412v0,188,109,288,301,285v154,-2,287,-52,411,-113r-36,183v-125,51,-248,85,-408,86v-292,1,-456,-148,-455,-437v1,-232,101,-438,226,-565v96,-98,221,-173,393,-176v247,-4,413,171,409,420v-1,72,-10,132,-22,213r-807,0v-7,35,-12,68,-12,104"},"\u00e9":{"d":"907,-1638r219,0r-395,376r-156,0xm948,-737v1,-157,-91,-255,-246,-254v-82,0,-156,30,-224,90v-68,60,-117,141,-146,242r606,0v7,-30,10,-48,10,-78xm285,-412v0,188,109,288,301,285v154,-2,287,-52,411,-113r-36,183v-125,51,-248,85,-408,86v-292,1,-456,-148,-455,-437v1,-232,101,-438,226,-565v96,-98,221,-173,393,-176v247,-4,413,171,409,420v-1,72,-10,132,-22,213r-807,0v-7,35,-12,68,-12,104"},"\u00ea":{"d":"717,-1638r147,0r164,376r-133,0r-117,-241r-225,241r-156,0xm948,-737v1,-157,-91,-255,-246,-254v-82,0,-156,30,-224,90v-68,60,-117,141,-146,242r606,0v7,-30,10,-48,10,-78xm285,-412v0,188,109,288,301,285v154,-2,287,-52,411,-113r-36,183v-125,51,-248,85,-408,86v-292,1,-456,-148,-455,-437v1,-232,101,-438,226,-565v96,-98,221,-173,393,-176v247,-4,413,171,409,420v-1,72,-10,132,-22,213r-807,0v-7,35,-12,68,-12,104"},"\u00eb":{"d":"475,-1552r203,0r-39,202r-203,0xm866,-1552r203,0r-39,202r-203,0xm948,-737v1,-157,-91,-255,-246,-254v-82,0,-156,30,-224,90v-68,60,-117,141,-146,242r606,0v7,-30,10,-48,10,-78xm285,-412v0,188,109,288,301,285v154,-2,287,-52,411,-113r-36,183v-125,51,-248,85,-408,86v-292,1,-456,-148,-455,-437v1,-232,101,-438,226,-565v96,-98,221,-173,393,-176v247,-4,413,171,409,420v-1,72,-10,132,-22,213r-807,0v-7,35,-12,68,-12,104"},"\u00ec":{"d":"622,-1638r197,376r-143,0r-252,-376r198,0xm358,-1120r471,0r-190,977r365,0r-29,143r-914,0r29,-143r365,0r161,-834r-286,0"},"\u00ed":{"d":"878,-1638r219,0r-395,376r-156,0xm358,-1120r471,0r-190,977r365,0r-29,143r-914,0r29,-143r365,0r161,-834r-286,0"},"\u00ee":{"d":"688,-1638r147,0r164,376r-133,0r-117,-241r-225,241r-156,0xm358,-1120r471,0r-190,977r365,0r-29,143r-914,0r29,-143r365,0r161,-834r-286,0"},"\u00ef":{"d":"446,-1552r203,0r-39,202r-203,0xm837,-1552r203,0r-39,202r-203,0xm358,-1120r471,0r-190,977r365,0r-29,143r-914,0r29,-143r365,0r161,-834r-286,0"},"\u00f0":{"d":"805,-1090v-33,-65,-67,-116,-113,-182r-297,94r-30,-92r274,-86r-141,-200r213,0r104,145r287,-88r28,92r-260,80v82,114,142,221,180,320v70,181,74,378,18,567v-76,254,-234,466,-552,469v-261,2,-398,-153,-397,-418v2,-190,63,-351,147,-475v89,-131,240,-231,441,-234v12,-1,75,6,98,8xm313,-379v0,151,74,252,219,252v111,0,201,-55,273,-161v85,-126,126,-330,97,-532v-5,-34,-15,-62,-28,-87v-46,-23,-96,-37,-161,-37v-119,0,-215,52,-289,156v-74,104,-111,240,-111,409"},"\u00f1":{"d":"891,-1307v-122,0,-154,-100,-233,-146v-38,-22,-79,-6,-100,29v-16,25,-27,63,-32,115r-125,0v11,-91,37,-160,74,-209v51,-68,138,-92,223,-58v55,22,105,102,156,132v38,22,76,4,98,-31v16,-26,28,-65,33,-116r125,0v-11,91,-36,162,-74,211v-38,49,-86,73,-145,73xm803,-1147v208,0,321,135,287,354v-5,31,-8,64,-15,99r-135,694r-184,0r138,-709v10,-47,15,-84,15,-110v0,-110,-67,-169,-180,-168v-85,0,-157,31,-216,93v-59,62,-100,149,-122,261r-123,633r-184,0r219,-1120r184,0r-32,168v50,-65,105,-113,163,-146v58,-33,120,-49,185,-49"},"\u00f2":{"d":"651,-1638r197,376r-143,0r-252,-376r198,0xm920,-733v0,-164,-67,-257,-224,-258v-109,0,-201,57,-274,171v-73,114,-109,259,-109,435v0,164,67,257,224,258v109,0,200,-57,273,-171v73,-114,110,-259,110,-435xm506,29v-255,2,-391,-160,-389,-422v1,-203,68,-386,157,-518v93,-137,230,-234,439,-236v265,-2,402,151,401,420v-1,203,-68,391,-156,520v-97,142,-233,234,-452,236"},"\u00f3":{"d":"907,-1638r219,0r-395,376r-156,0xm920,-733v0,-164,-67,-257,-224,-258v-109,0,-201,57,-274,171v-73,114,-109,259,-109,435v0,164,67,257,224,258v109,0,200,-57,273,-171v73,-114,110,-259,110,-435xm506,29v-255,2,-391,-160,-389,-422v1,-203,68,-386,157,-518v93,-137,230,-234,439,-236v265,-2,402,151,401,420v-1,203,-68,391,-156,520v-97,142,-233,234,-452,236"},"\u00f4":{"d":"717,-1638r147,0r164,376r-133,0r-117,-241r-225,241r-156,0xm920,-733v0,-164,-67,-257,-224,-258v-109,0,-201,57,-274,171v-73,114,-109,259,-109,435v0,164,67,257,224,258v109,0,200,-57,273,-171v73,-114,110,-259,110,-435xm506,29v-255,2,-391,-160,-389,-422v1,-203,68,-386,157,-518v93,-137,230,-234,439,-236v265,-2,402,151,401,420v-1,203,-68,391,-156,520v-97,142,-233,234,-452,236"},"\u00f5":{"d":"891,-1307v-122,0,-154,-100,-233,-146v-38,-22,-79,-6,-100,29v-16,25,-27,63,-32,115r-125,0v11,-91,37,-160,74,-209v51,-68,138,-92,223,-58v55,22,105,102,156,132v38,22,76,4,98,-31v16,-26,28,-65,33,-116r125,0v-11,91,-36,162,-74,211v-38,49,-86,73,-145,73xm920,-733v0,-164,-67,-257,-224,-258v-109,0,-201,57,-274,171v-73,114,-109,259,-109,435v0,164,67,257,224,258v109,0,200,-57,273,-171v73,-114,110,-259,110,-435xm506,29v-255,2,-391,-160,-389,-422v1,-203,68,-386,157,-518v93,-137,230,-234,439,-236v265,-2,402,151,401,420v-1,203,-68,391,-156,520v-97,142,-233,234,-452,236"},"\u00f6":{"d":"475,-1552r203,0r-39,202r-203,0xm866,-1552r203,0r-39,202r-203,0xm920,-733v0,-164,-67,-257,-224,-258v-109,0,-201,57,-274,171v-73,114,-109,259,-109,435v0,164,67,257,224,258v109,0,200,-57,273,-171v73,-114,110,-259,110,-435xm506,29v-255,2,-391,-160,-389,-422v1,-203,68,-386,157,-518v93,-137,230,-234,439,-236v265,-2,402,151,401,420v-1,203,-68,391,-156,520v-97,142,-233,234,-452,236"},"\u00f7":{"d":"494,-395r245,0r0,245r-245,0r0,-245xm494,-1135r245,0r0,246r-245,0r0,-246xm88,-727r1057,0r0,170r-1057,0r0,-170"},"\u00f8":{"d":"377,-186v38,38,86,59,160,59v109,0,200,-57,273,-171v80,-124,118,-289,108,-484v-1,-15,-4,-30,-7,-43xm506,29v-105,0,-184,-28,-248,-74r-119,141r-92,-76r129,-153v-79,-131,-67,-367,-17,-533v53,-178,161,-343,307,-422v138,-74,391,-84,503,13r112,-137r93,77r-123,146v86,130,75,365,22,537v-55,179,-157,345,-307,422v-75,39,-162,59,-260,59xm852,-938v-40,-36,-82,-53,-156,-53v-109,0,-201,57,-274,172v-78,122,-116,284,-108,479v1,13,3,26,5,38"},"\u00f9":{"d":"647,-1638r197,376r-143,0r-252,-376r198,0xm408,27v-171,3,-285,-105,-283,-273v0,-60,7,-124,18,-180r133,-694r185,0r-135,694v-8,40,-15,88,-15,129v0,107,68,165,178,164v85,0,156,-31,215,-93v59,-62,99,-148,121,-261r123,-633r185,0r-218,1120r-184,0r33,-168v-84,112,-186,192,-356,195"},"\u00fa":{"d":"903,-1638r219,0r-395,376r-156,0xm408,27v-171,3,-285,-105,-283,-273v0,-60,7,-124,18,-180r133,-694r185,0r-135,694v-8,40,-15,88,-15,129v0,107,68,165,178,164v85,0,156,-31,215,-93v59,-62,99,-148,121,-261r123,-633r185,0r-218,1120r-184,0r33,-168v-84,112,-186,192,-356,195"},"\u00fb":{"d":"713,-1638r147,0r164,376r-133,0r-117,-241r-225,241r-156,0xm408,27v-171,3,-285,-105,-283,-273v0,-60,7,-124,18,-180r133,-694r185,0r-135,694v-8,40,-15,88,-15,129v0,107,68,165,178,164v85,0,156,-31,215,-93v59,-62,99,-148,121,-261r123,-633r185,0r-218,1120r-184,0r33,-168v-84,112,-186,192,-356,195"},"\u00fc":{"d":"471,-1552r203,0r-39,202r-203,0xm862,-1552r203,0r-39,202r-203,0xm408,27v-171,3,-285,-105,-283,-273v0,-60,7,-124,18,-180r133,-694r185,0r-135,694v-8,40,-15,88,-15,129v0,107,68,165,178,164v85,0,156,-31,215,-93v59,-62,99,-148,121,-261r123,-633r185,0r-218,1120r-184,0r33,-168v-84,112,-186,192,-356,195"},"\u00fd":{"d":"907,-1638r219,0r-395,376r-156,0xm1225,-1120r-604,1048v-103,183,-172,300,-209,348v-69,91,-157,150,-303,150r-148,0r29,-154r108,0v54,0,100,-16,140,-46v55,-40,120,-159,161,-244r-217,-1102r183,0r172,862r483,-862r205,0"},"\u00fe":{"d":"578,29v-147,-2,-231,-65,-285,-170r-111,567r-184,0r387,-1993r184,0r-114,590v71,-97,181,-169,333,-170v225,-1,344,160,340,395v-5,317,-125,597,-326,720v-68,41,-143,61,-224,61xm354,-383v-1,154,70,256,215,256v215,0,289,-196,337,-381v20,-77,28,-154,28,-229v0,-157,-58,-254,-205,-254v-135,0,-215,78,-270,178v-60,108,-104,269,-105,430"},"\u00ff":{"d":"475,-1552r203,0r-39,202r-203,0xm866,-1552r203,0r-39,202r-203,0xm1225,-1120r-604,1048v-103,183,-172,300,-209,348v-69,91,-157,150,-303,150r-148,0r29,-154r108,0v54,0,100,-16,140,-46v55,-40,120,-159,161,-244r-217,-1102r183,0r172,862r483,-862r205,0"},"\u0152":{"d":"467,0v-287,0,-431,-131,-432,-414v0,-213,57,-489,119,-653v58,-154,132,-264,224,-329v92,-65,219,-97,380,-97r594,0r-33,170r-358,0r-87,442r328,0r-33,170r-327,0r-107,541r369,0r-33,170r-604,0xm229,-412v-1,161,86,242,248,242r62,0r225,-1153v-109,-4,-194,7,-263,54v-148,99,-183,305,-229,524v-24,115,-42,219,-43,333"},"\u0153":{"d":"498,-1147v111,-1,197,53,237,127v68,-73,147,-126,273,-127v166,-2,266,115,264,285v-2,113,-31,238,-49,348r-502,0v-12,61,-21,109,-27,146v-6,37,-8,64,-8,83v-1,106,73,167,182,166v107,-1,206,-50,267,-108r-35,172v-70,49,-154,83,-262,84v-127,0,-221,-49,-265,-133v-67,75,-155,132,-282,133v-196,2,-298,-121,-297,-322v1,-91,14,-179,31,-266v28,-148,62,-272,120,-379v67,-123,179,-207,353,-209xm1107,-788v16,-111,-19,-203,-124,-203v-55,0,-100,22,-137,64v-48,54,-78,169,-92,274r329,0r15,-76v4,-21,7,-40,9,-59xm168,-291v-3,102,46,168,143,168v94,0,154,-62,185,-137v48,-115,87,-328,107,-474v6,-45,9,-79,9,-100v1,-97,-46,-161,-139,-161v-156,0,-194,132,-230,266v-32,121,-71,299,-75,438"},"\u0178":{"d":"195,-1493r202,0r236,651r497,-651r218,0r-635,823r-129,670r-207,0r131,-670xm903,-1870r203,0r-39,203r-203,0xm512,-1870r204,0r-41,203r-202,0"},"\u02c6":{"d":"717,-1638r147,0r164,376r-133,0r-117,-241r-225,241r-156,0"},"\u02dc":{"d":"891,-1307v-122,0,-154,-100,-233,-146v-38,-22,-79,-6,-100,29v-16,25,-27,63,-32,115r-125,0v11,-91,37,-160,74,-209v51,-68,138,-92,223,-58v55,22,105,102,156,132v38,22,76,4,98,-31v16,-26,28,-65,33,-116r125,0v-11,91,-36,162,-74,211v-38,49,-86,73,-145,73"},"\u2013":{"d":"-23,-633r1233,0r-28,141r-1233,0"},"\u2014":{"d":"-23,-633r1233,0r-28,141r-1233,0"},"\u2018":{"d":"715,-967r-252,0r41,-207r270,-382r154,0r-172,382"},"\u2019":{"d":"676,-1556r252,0r-41,206r-271,383r-153,0r172,-383"},"\u201a":{"d":"416,-303r252,0r-41,207r-271,383r-153,0r172,-383"},"\u201c":{"d":"956,-967r-251,0r38,-207r273,-382r153,0r-172,382xm498,-967r-252,0r39,-207r272,-382r154,0r-174,382"},"\u201d":{"d":"434,-1556r252,0r-41,206r-270,383r-154,0r172,-383xm893,-1556r252,0r-41,206r-270,383r-154,0r172,-383"},"\u201e":{"d":"197,-303r252,0r-39,207r-273,383r-153,0r172,-383xm655,-303r252,0r-39,207r-272,383r-154,0r172,-383"},"\u2022":{"d":"614,-465v-162,0,-295,-134,-295,-297v0,-162,135,-295,297,-295v161,0,297,135,297,295v0,162,-137,297,-299,297"},"\u2026":{"d":"-6,-303r252,0r-60,303r-252,0xm813,-303r252,0r-59,303r-252,0xm403,-303r252,0r-59,303r-252,0"},"\u2039":{"d":"877,-1059r-43,211r-351,264r248,267r-33,176r-389,-418r17,-82"},"\u203a":{"d":"317,-141r43,-211r351,-262r-250,-269r35,-176r387,418r-17,82"},"\u20ac":{"d":"612,29v-325,0,-463,-222,-450,-572r-172,0r49,-110r133,0v10,-72,20,-127,35,-187r-158,0r49,-108r140,0v62,-189,148,-332,259,-428v111,-96,243,-144,398,-144v116,0,214,36,297,82r-39,207v-79,-71,-148,-125,-272,-125v-92,0,-175,36,-249,106v-74,70,-136,171,-183,302r473,0r-50,108r-456,0v-17,60,-29,120,-39,187r411,0r-47,110r-376,0r0,54v-1,210,85,354,280,354v132,0,240,-59,332,-125r-39,207v-96,50,-193,82,-326,82"},"\u2122":{"d":"438,-1493r0,94r-162,0r0,484r-114,0r0,-484r-162,0r0,-94r438,0xm692,-1493r137,256r125,-256r172,0r0,578r-114,0r0,-482r-156,301r-55,0r-166,-301r0,482r-113,0r0,-578r170,0"}}}); diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-webfont.eot b/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-webfont.eot new file mode 100644 index 0000000..99a189a Binary files /dev/null and b/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-webfont.eot differ diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-webfont.svg b/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-webfont.svg new file mode 100644 index 0000000..6c6fa05 --- /dev/null +++ b/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved._DejaVu changes are in public domain_ +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-webfont.ttf b/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-webfont.ttf new file mode 100644 index 0000000..e38d5eb Binary files /dev/null and b/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-webfont.ttf differ diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-webfont.woff b/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-webfont.woff new file mode 100644 index 0000000..342b7c4 Binary files /dev/null and b/assets/fonts/dejavu/mono/DejaVuSansMono-Oblique-webfont.woff differ diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-cufon.js b/assets/fonts/dejavu/mono/DejaVuSansMono-cufon.js new file mode 100644 index 0000000..8fa294d --- /dev/null +++ b/assets/fonts/dejavu/mono/DejaVuSansMono-cufon.js @@ -0,0 +1,18 @@ +/*! + * The following copyright notice may not be removed under any circumstances. + * + * Copyright: + * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + * DejaVu changes are in public domain + * + * + * Manufacturer: + * DejaVu fonts team + * + * Vendor URL: + * http://dejavu.sourceforge.net + * + * License information: + * http://dejavu.sourceforge.net/wiki/index.php/License + */ +Cufon.registerFont({"w":1233,"face":{"font-family":"DejaVu Sans Mono","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 6 9 3 8 4 2 2 4","ascent":"1556","descent":"-492","x-height":"29","bbox":"0 -1901 1233 483","underline-thickness":"90","underline-position":"-85","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{},"!":{"d":"516,-1493r203,0r0,655r-21,357r-161,0r-21,-357r0,-655xm516,-254r203,0r0,254r-203,0r0,-254"},"\"":{"d":"895,-1493r0,555r-174,0r0,-555r174,0xm512,-1493r0,555r-174,0r0,-555r174,0"},"#":{"d":"684,-1470r-104,415r245,0r105,-415r160,0r-105,415r244,0r0,154r-281,0r-84,334r250,0r0,153r-289,0r-104,414r-160,0r105,-414r-246,0r-105,414r-159,0r104,-414r-258,0r0,-153r297,0r84,-334r-266,0r0,-154r303,0r104,-415r160,0xm788,-901r-245,0r-84,334r246,0"},"$":{"d":"692,-146v140,-2,236,-81,234,-219v-2,-145,-92,-192,-234,-215r0,434xm592,-1183v-131,3,-223,80,-221,210v2,133,91,183,221,203r0,-413xm190,-963v0,-228,171,-344,402,-358r0,-235r100,0r1,235v117,8,223,29,325,61r0,173v-100,-50,-199,-86,-326,-94r0,431v137,21,242,63,314,128v72,65,108,148,108,251v0,220,-194,364,-421,369r-1,303r-100,0r-1,-301v-151,-8,-282,-42,-401,-92r0,-180v115,71,242,124,402,130r0,-458v-133,-21,-234,-61,-301,-122v-67,-61,-101,-141,-101,-241"},"%":{"d":"879,-504v-102,0,-183,83,-183,185v0,102,81,184,183,184v100,0,184,-84,184,-184v0,-100,-85,-185,-184,-185xm879,0v-177,0,-318,-142,-318,-319v0,-216,219,-388,439,-296v109,46,196,148,200,296v4,174,-146,319,-321,319xm121,-465r-35,-96r1042,-418r41,96xm352,-1296v-100,0,-184,83,-184,184v0,103,81,184,184,184v100,0,185,-84,185,-184v0,-100,-85,-184,-185,-184xm352,-793v-176,0,-319,-143,-319,-319v0,-217,219,-388,441,-296v111,46,194,146,198,296v5,174,-146,319,-320,319"},"&":{"d":"621,-1366v-119,-2,-208,58,-209,168v0,39,10,81,29,124v19,43,55,98,106,167r416,559v73,-86,84,-251,73,-412r164,0v5,234,-43,408,-149,531r170,229r-213,0r-78,-109v-99,83,-211,135,-375,138v-277,6,-498,-201,-498,-473v0,-91,23,-176,69,-254v46,-78,115,-150,208,-217v-56,-82,-97,-162,-98,-281v-2,-208,155,-327,372,-324v100,1,183,20,266,47r0,183v-70,-47,-147,-75,-253,-76xm233,-475v-3,227,200,398,443,338v63,-16,124,-50,168,-86r-428,-580v-61,49,-108,101,-138,155v-30,54,-45,112,-45,173"},"'":{"d":"702,-1493r0,555r-174,0r0,-555r174,0"},"(":{"d":"621,-643v0,367,112,649,264,913r-160,0v-101,-159,-176,-314,-225,-464v-99,-301,-99,-596,0,-898v49,-151,124,-305,225,-462r160,0v-89,152,-155,303,-199,454v-44,151,-65,304,-65,457"},")":{"d":"612,-643v0,-365,-112,-649,-264,-911r160,0v101,157,176,311,225,462v99,302,98,598,0,900v-49,151,-124,305,-225,462r-160,0v89,-155,154,-308,198,-459v44,-151,66,-303,66,-454"},"*":{"d":"1067,-1247r-358,194r358,195r-57,98r-336,-203r0,377r-115,0r0,-377r-336,203r-57,-98r358,-195r-358,-194r57,-99r336,203r0,-377r115,0r0,377r336,-203"},"+":{"d":"700,-1171r0,444r445,0r0,170r-445,0r0,444r-168,0r0,-444r-444,0r0,-170r444,0r0,-444r168,0"},",":{"d":"502,-303r252,0r0,207r-197,383r-154,0r99,-383r0,-207"},"-":{"d":"356,-643r521,0r0,164r-521,0r0,-164"},".":{"d":"489,-305r252,0r0,305r-252,0r0,-305"},"\/":{"d":"889,-1493r190,0r-786,1683r-191,0"},"0":{"d":"614,-616v-74,0,-131,-59,-131,-134v0,-71,61,-135,131,-135v72,0,136,63,136,135v0,73,-62,134,-136,134xm616,-1360v-94,0,-164,51,-210,152v-46,101,-70,256,-70,463v0,207,24,361,70,462v46,101,116,152,210,152v95,0,166,-51,212,-152v46,-101,69,-255,69,-462v0,-207,-23,-362,-69,-463v-46,-101,-117,-152,-212,-152xm616,-1520v159,0,280,65,362,196v82,131,122,324,122,579v0,255,-40,447,-122,578v-82,131,-203,196,-362,196v-159,0,-280,-65,-361,-196v-81,-131,-122,-323,-122,-578v0,-255,41,-448,122,-579v81,-131,202,-196,361,-196"},"1":{"d":"270,-170r314,0r0,-1141r-338,76r0,-184r336,-74r202,0r0,1323r310,0r0,170r-824,0r0,-170"},"2":{"d":"563,-1520v274,-5,487,161,486,422v0,64,-15,128,-45,192v-30,64,-76,136,-144,212r-162,180r-325,344r686,0r0,170r-907,0r0,-170r327,-348v93,-101,158,-171,193,-213v67,-81,112,-147,135,-197v23,-50,35,-102,35,-155v1,-167,-107,-270,-275,-267v-161,3,-280,61,-403,133r0,-204v119,-56,243,-97,399,-99"},"3":{"d":"1044,-1120v-1,182,-110,281,-268,321v181,47,303,172,303,387v0,289,-217,444,-522,441v-154,-2,-297,-31,-420,-74r0,-201v118,61,240,103,398,105v208,2,343,-93,344,-291v1,-181,-140,-286,-330,-283r-154,0r0,-166r154,0v170,2,295,-74,295,-231v0,-161,-111,-239,-279,-238v-144,2,-264,35,-383,80r0,-186v132,-34,246,-61,383,-64v270,-5,481,146,479,400"},"4":{"d":"735,-1309r-471,789r471,0r0,-789xm702,-1493r234,0r0,973r199,0r0,164r-199,0r0,356r-201,0r0,-356r-633,0r0,-191"},"5":{"d":"512,-817v-120,1,-221,29,-305,74r0,-750r756,0r0,170r-572,0r0,367v52,-19,108,-31,174,-31v307,-3,504,200,504,508v0,316,-211,508,-532,508v-154,0,-287,-20,-394,-64r0,-205v109,59,224,97,375,99v219,1,348,-121,348,-338v0,-215,-136,-340,-354,-338"},"6":{"d":"700,-1520v110,0,208,25,291,60r0,186v-77,-45,-168,-75,-282,-76v-128,0,-225,48,-291,144v-66,96,-99,239,-99,426v57,-120,165,-206,328,-207v298,-2,453,199,453,508v0,311,-163,509,-465,508v-173,0,-300,-63,-381,-187v-81,-124,-121,-320,-121,-587v0,-252,48,-445,145,-577v97,-132,238,-198,422,-198xm901,-479v0,-213,-74,-350,-270,-350v-185,0,-277,150,-277,350v0,200,92,350,277,350v195,0,270,-139,270,-350"},"7":{"d":"139,-1493r940,0r0,86r-534,1407r-211,0r520,-1323r-715,0r0,-170"},"8":{"d":"899,-420v0,-180,-104,-289,-283,-289v-180,0,-282,108,-282,289v0,180,104,291,282,291v182,0,283,-107,283,-291xm131,-399v0,-223,119,-354,309,-394v-157,-38,-272,-157,-274,-340v-1,-247,190,-387,450,-387v261,0,451,139,451,387v-1,183,-117,302,-274,340v190,41,308,170,309,392v1,278,-197,430,-486,430v-289,0,-485,-150,-485,-428xm616,-1364v-161,0,-249,89,-249,250v0,160,89,246,249,246v161,0,250,-86,250,-246v0,-163,-87,-250,-250,-250"},"9":{"d":"326,-1012v0,213,73,350,270,350v185,0,276,-150,276,-350v0,-200,-90,-350,-276,-350v-195,0,-270,139,-270,350xm526,29v-109,-1,-208,-25,-290,-60r0,-186v77,45,168,75,282,76v128,0,224,-49,290,-145v66,-96,99,-238,99,-425v-55,121,-164,206,-327,207v-298,1,-453,-200,-453,-510v0,-310,162,-507,465,-506v173,0,300,62,381,187v81,125,121,321,121,588v0,251,-49,443,-146,575v-97,132,-237,199,-422,199"},":":{"d":"489,-1063r252,0r0,303r-252,0r0,-303xm489,-305r252,0r0,305r-252,0r0,-305"},";":{"d":"502,-303r252,0r0,207r-197,383r-154,0r99,-383r0,-207xm489,-1063r252,0r0,303r-252,0r0,-303"},"<":{"d":"1145,-961r-850,320r850,317r0,183r-1057,-418r0,-166r1057,-418r0,182"},"=":{"d":"88,-524r1057,0r0,172r-1057,0r0,-172xm88,-930r1057,0r0,170r-1057,0r0,-170"},">":{"d":"88,-961r0,-182r1057,418r0,166r-1057,418r0,-183r850,-317"},"?":{"d":"633,-1520v233,-4,408,130,407,353v0,51,-13,97,-34,141v-33,68,-146,177,-215,244v-46,44,-75,80,-88,108v-31,66,-15,179,-19,273r-190,0v1,-116,-6,-241,30,-321v34,-75,138,-173,205,-239v41,-40,69,-74,85,-103v16,-29,24,-60,24,-93v0,-125,-106,-203,-240,-199v-142,4,-249,66,-354,137r0,-188v112,-67,227,-111,389,-113xm487,-254r203,0r0,254r-203,0r0,-254"},"@":{"d":"803,-260v150,0,235,-125,235,-285v0,-159,-85,-284,-235,-284v-150,0,-236,125,-236,284v0,160,85,285,236,285xm719,-1395v282,0,459,202,459,490r0,770r-144,0r0,-111v-45,78,-133,131,-250,131v-222,2,-372,-197,-372,-430v0,-234,150,-432,372,-430v113,0,207,56,250,131r0,-63v3,-200,-126,-346,-321,-346v-164,0,-294,63,-391,191v-97,128,-146,301,-146,519v0,219,55,394,165,524v110,130,256,195,439,195v84,-1,152,-16,219,-41r48,135v-73,29,-152,48,-244,49v-238,0,-427,-78,-567,-233v-140,-155,-209,-365,-209,-629v0,-260,63,-467,188,-621v125,-154,293,-231,504,-231"},"A":{"d":"616,-1315r-213,764r426,0xm494,-1493r245,0r457,1493r-209,0r-110,-389r-523,0r-108,389r-209,0"},"B":{"d":"934,-430v0,-205,-112,-283,-326,-283r-239,0r0,547r239,0v220,-2,326,-59,326,-264xm881,-1114v0,-167,-96,-213,-277,-213r-235,0r0,450r235,0v186,-1,277,-60,277,-237xm823,-799v191,26,315,174,314,389v0,135,-44,237,-133,306v-89,69,-221,104,-396,104r-442,0r0,-1493r442,0v153,0,270,33,353,99v83,66,124,159,124,280v-1,189,-93,290,-262,315"},"C":{"d":"743,-135v137,0,246,-55,330,-125r0,207v-95,50,-195,81,-330,82v-191,0,-339,-68,-445,-203v-106,-135,-159,-326,-159,-571v0,-244,53,-435,159,-571v106,-136,255,-204,445,-204v135,1,236,32,330,82r0,207v-85,-70,-193,-125,-330,-125v-131,0,-230,51,-295,152v-65,101,-98,254,-98,459v0,204,33,357,98,458v65,101,164,152,295,152"},"D":{"d":"436,-166v170,0,289,-42,356,-126v67,-84,101,-234,101,-453v0,-221,-34,-373,-101,-457v-67,-84,-185,-125,-356,-125r-96,0r0,1161r96,0xm1106,-745v0,492,-190,741,-666,745r-303,0r0,-1493r303,0v476,3,666,255,666,748"},"E":{"d":"197,-1493r886,0r0,170r-684,0r0,442r654,0r0,170r-654,0r0,541r703,0r0,170r-905,0r0,-1493"},"F":{"d":"233,-1493r879,0r0,170r-676,0r0,440r613,0r0,170r-613,0r0,713r-203,0r0,-1493"},"G":{"d":"702,-135v93,0,156,-21,209,-64r0,-401r-217,0r0,-166r410,0r0,643v-98,91,-227,152,-402,152v-189,0,-337,-67,-442,-203v-105,-136,-158,-326,-158,-571v0,-244,53,-435,160,-571v107,-136,255,-204,445,-204v144,0,251,43,346,107r0,207v-93,-88,-190,-150,-346,-150v-131,0,-229,50,-295,152v-66,102,-99,255,-99,459v0,207,31,361,95,461v64,100,162,149,294,149"},"H":{"d":"137,-1493r203,0r0,612r553,0r0,-612r203,0r0,1493r-203,0r0,-711r-553,0r0,711r-203,0r0,-1493"},"I":{"d":"201,-1493r829,0r0,170r-313,0r0,1153r313,0r0,170r-829,0r0,-170r313,0r0,-1153r-313,0r0,-170"},"J":{"d":"498,29v-153,0,-269,-37,-389,-90r0,-236v104,92,219,162,389,162v95,0,162,-25,200,-75v38,-50,56,-142,56,-277r0,-836r-381,0r0,-170r583,0r0,1006v-3,363,-109,516,-458,516"},"K":{"d":"137,-1493r203,0r0,664r631,-664r237,0r-581,610r598,883r-244,0r-487,-748r-154,164r0,584r-203,0r0,-1493"},"L":{"d":"215,-1493r203,0r0,1323r721,0r0,170r-924,0r0,-1493"},"M":{"d":"86,-1493r270,0r258,760r260,-760r271,0r0,1493r-187,0r0,-1319r-266,787r-153,0r-267,-787r0,1319r-186,0r0,-1493"},"N":{"d":"139,-1493r256,0r504,1229r0,-1229r195,0r0,1493r-256,0r-504,-1229r0,1229r-195,0r0,-1493"},"O":{"d":"905,-745v0,-219,-22,-376,-67,-470v-45,-94,-119,-141,-222,-141v-102,0,-175,47,-220,141v-45,94,-68,251,-68,470v0,219,23,375,68,469v45,94,118,141,220,141v103,0,177,-47,222,-141v45,-94,67,-250,67,-469xm1116,-745v0,260,-42,454,-124,582v-82,128,-207,192,-376,192v-169,0,-294,-64,-376,-191v-82,-127,-123,-322,-123,-583v0,-261,41,-455,123,-583v82,-128,208,-192,376,-192v169,0,294,64,376,192v82,128,124,322,124,583"},"P":{"d":"930,-1047v0,-180,-114,-280,-297,-280r-234,0r0,561r234,0v182,2,297,-102,297,-281xm1141,-1047v0,307,-188,448,-508,447r-234,0r0,600r-202,0r0,-1493r436,0v318,-2,508,141,508,446"},"Q":{"d":"655,27v-192,13,-325,-52,-415,-190v-83,-128,-123,-322,-123,-582v0,-261,41,-455,123,-583v82,-128,208,-192,376,-192v169,0,294,64,376,192v82,128,124,322,124,583v0,196,-22,353,-68,473v-46,120,-115,204,-208,252r200,190r-151,100xm905,-745v0,-219,-22,-376,-67,-470v-45,-94,-119,-141,-222,-141v-102,0,-175,47,-220,141v-45,94,-68,251,-68,470v0,219,23,375,68,469v45,94,118,141,220,141v103,0,177,-47,222,-141v45,-94,67,-250,67,-469"},"R":{"d":"1067,-1061v0,204,-122,332,-307,356v52,13,96,38,133,75v37,37,82,111,137,222r203,408r-217,0r-178,-377v-51,-107,-97,-176,-138,-207v-41,-31,-95,-47,-161,-47r-193,0r0,631r-203,0r0,-1493r416,0v310,-2,507,137,508,432xm854,-1061v0,-178,-111,-266,-295,-266r-213,0r0,530r221,0v188,0,287,-80,287,-264"},"S":{"d":"631,-1520v142,2,262,34,381,78r0,205v-106,-67,-219,-116,-371,-119v-175,-3,-308,84,-309,246v0,66,18,116,54,151v36,35,104,64,204,87r106,24v140,33,242,84,306,154v64,70,96,165,96,286v-1,300,-200,439,-516,437v-162,-1,-298,-37,-424,-90r0,-215v130,81,246,138,424,141v188,3,322,-84,323,-260v0,-75,-20,-132,-59,-171v-39,-39,-107,-69,-203,-91r-108,-25v-139,-31,-239,-79,-302,-142v-63,-63,-94,-148,-94,-255v-2,-273,210,-446,492,-441"},"T":{"d":"47,-1493r1139,0r0,170r-467,0r0,1323r-203,0r0,-1323r-469,0r0,-170"},"U":{"d":"147,-573r0,-920r203,0r0,1012v2,114,-4,167,27,227v40,78,122,119,239,119v118,0,199,-41,240,-119v31,-58,27,-112,27,-225r0,-1014r202,0r0,920v0,153,-11,260,-29,325v-35,123,-132,208,-249,248v-110,39,-271,39,-381,0v-117,-41,-215,-122,-250,-248v-18,-66,-29,-174,-29,-325"},"V":{"d":"616,-170r351,-1323r209,0r-437,1493r-245,0r-437,-1493r209,0"},"W":{"d":"0,-1493r197,0r143,1212r170,-802r211,0r172,804r143,-1214r197,0r-223,1493r-191,0r-203,-887r-202,887r-191,0"},"X":{"d":"86,-1493r217,0r328,563r334,-563r217,0r-447,702r479,791r-217,0r-366,-643r-395,643r-218,0r500,-791"},"Y":{"d":"37,-1493r215,0r364,659r363,-659r217,0r-479,823r0,670r-203,0r0,-670"},"Z":{"d":"178,-1493r969,0r0,154r-780,1169r802,0r0,170r-1013,0r0,-154r759,-1169r-737,0r0,-170"},"[":{"d":"463,-1556r424,0r0,143r-240,0r0,1540r240,0r0,143r-424,0r0,-1826"},"\\":{"d":"293,-1493r786,1683r-190,0r-787,-1683r191,0"},"]":{"d":"770,-1556r0,1826r-424,0r0,-143r240,0r0,-1540r-240,0r0,-143r424,0"},"^":{"d":"705,-1493r456,557r-178,0r-367,-395r-366,395r-178,0r456,-557r177,0"},"_":{"d":"1233,403r0,80r-1233,0r0,-80r1233,0"},"`":{"d":"477,-1638r281,376r-154,0r-325,-376r198,0"},"a":{"d":"547,-125v229,-2,339,-185,327,-438r-233,0v-107,0,-189,19,-243,57v-54,38,-81,93,-81,168v-1,137,91,214,230,213xm215,-1069v118,-45,234,-78,377,-78v187,0,318,55,397,164v63,87,70,174,70,344r0,639r-185,0r0,-166v-74,124,-180,193,-366,195v-221,3,-375,-138,-375,-355v0,-125,41,-219,125,-284v84,-65,207,-97,369,-97r247,0v6,-203,-80,-285,-282,-284v-147,2,-272,46,-377,106r0,-184"},"b":{"d":"918,-559v0,-143,-23,-250,-68,-323v-45,-73,-112,-109,-201,-109v-89,0,-157,36,-203,109v-46,73,-69,181,-69,323v0,141,23,249,69,322v46,73,114,110,203,110v89,0,156,-36,201,-109v45,-73,68,-180,68,-323xm676,29v-146,0,-244,-69,-299,-170r0,141r-184,0r0,-1556r184,0r0,579v54,-101,155,-169,301,-170v135,0,241,51,318,155v77,104,116,247,116,429v0,185,-38,330,-116,435v-78,105,-185,157,-320,157"},"c":{"d":"748,-127v143,0,234,-46,313,-121r0,191v-88,51,-187,85,-313,86v-351,2,-553,-231,-553,-588v0,-358,202,-590,553,-588v127,1,222,35,313,86r0,193v-88,-77,-167,-123,-313,-123v-244,0,-359,173,-359,432v0,258,116,432,359,432"},"d":{"d":"559,-1147v146,1,246,68,299,170r0,-579r184,0r0,1556r-184,0r0,-141v-55,101,-153,170,-299,170v-135,0,-241,-52,-319,-157v-78,-105,-117,-250,-117,-435v0,-182,39,-325,117,-429v78,-104,184,-155,319,-155xm317,-559v0,143,23,250,68,323v45,73,112,109,201,109v89,0,156,-37,202,-110v46,-73,70,-181,70,-322v0,-142,-24,-250,-70,-323v-46,-73,-113,-109,-202,-109v-89,0,-156,36,-201,109v-45,73,-68,180,-68,323"},"e":{"d":"651,-1147v298,0,466,228,461,541r0,90r-797,0v-4,243,128,392,365,389v153,-2,268,-51,389,-113r0,183v-120,49,-242,84,-391,86v-351,2,-555,-231,-555,-588v0,-340,200,-588,528,-588xm928,-660v-4,-201,-91,-331,-285,-331v-192,0,-305,143,-321,332"},"f":{"d":"494,-1198v1,-244,106,-357,348,-358r221,0r0,153r-209,0v-136,2,-174,47,-176,184r0,99r385,0r0,143r-385,0r0,977r-184,0r0,-977r-299,0r0,-143r299,0r0,-78"},"g":{"d":"790,-254v87,-129,87,-502,0,-630v-48,-70,-110,-107,-196,-107v-90,0,-159,35,-206,107v-47,72,-71,177,-71,315v0,138,23,243,71,315v48,72,117,109,208,109v85,0,146,-38,194,-109xm553,-1147v158,0,247,65,305,176r0,-145r184,0r0,1044v1,326,-152,511,-469,512v-117,-1,-228,-23,-325,-55r0,-182v106,49,199,90,325,90v214,0,286,-120,285,-346r0,-125v-54,116,-146,186,-305,186v-131,0,-235,-52,-313,-157v-78,-105,-117,-245,-117,-420v0,-176,39,-316,117,-421v78,-105,182,-157,313,-157"},"h":{"d":"379,-952v60,-118,165,-195,332,-195v114,0,199,38,255,113v56,75,85,188,85,340r0,694r-185,0r0,-694v-1,-184,-51,-293,-219,-293v-189,0,-268,148,-268,354r0,633r-184,0r0,-1556r184,0r0,604"},"i":{"d":"256,-1120r471,0r0,977r365,0r0,143r-914,0r0,-143r365,0r0,-834r-287,0r0,-143xm543,-1556r184,0r0,233r-184,0r0,-233"},"j":{"d":"420,270v134,-3,180,-101,180,-250r0,-997r-317,0r0,-143r501,0r0,1140v2,244,-112,405,-344,406r-254,0r0,-156r234,0xm600,-1556r184,0r0,233r-184,0r0,-233"},"k":{"d":"236,-1556r190,0r0,901r483,-465r224,0r-441,422r510,698r-225,0r-414,-578r-137,129r0,449r-190,0r0,-1556"},"l":{"d":"801,0v-231,0,-346,-163,-346,-406r0,-1017r-295,0r0,-144r479,0r0,1161v0,148,47,250,180,250r215,0r0,156r-233,0"},"m":{"d":"471,-1147v112,0,171,54,205,141v41,-86,100,-141,213,-141v90,0,154,35,191,105v37,70,55,200,55,393r0,649r-168,0r0,-641v0,-158,-9,-257,-27,-295v-18,-38,-49,-57,-96,-57v-53,0,-90,20,-110,61v-20,41,-29,138,-29,291r0,641r-168,0r0,-641v0,-160,-10,-259,-29,-296v-19,-37,-53,-56,-102,-56v-49,0,-83,20,-102,61v-19,41,-28,138,-28,291r0,641r-167,0r0,-1120r167,0r0,96v39,-70,98,-123,195,-123"},"n":{"d":"379,-952v60,-118,165,-195,332,-195v114,0,199,38,255,113v56,75,85,188,85,340r0,694r-185,0r0,-694v-1,-184,-51,-293,-219,-293v-189,0,-268,148,-268,354r0,633r-184,0r0,-1120r184,0r0,168"},"o":{"d":"616,-991v-93,0,-164,36,-212,109v-48,73,-72,180,-72,323v0,142,24,250,72,323v48,73,119,109,212,109v94,0,165,-36,213,-109v48,-73,72,-181,72,-323v0,-143,-24,-250,-72,-323v-48,-73,-119,-109,-213,-109xm616,-1147v332,0,480,234,480,588v0,191,-41,337,-123,437v-82,100,-201,151,-357,151v-155,0,-274,-51,-356,-151v-82,-100,-123,-246,-123,-437v0,-191,41,-336,123,-437v82,-101,201,-151,356,-151"},"p":{"d":"674,29v-147,-1,-246,-68,-299,-170r0,567r-185,0r0,-1546r185,0r0,143v55,-101,153,-170,299,-170v135,0,241,52,318,157v77,105,116,250,116,435v0,182,-39,325,-116,429v-77,104,-183,155,-318,155xm915,-559v0,-143,-22,-250,-67,-323v-45,-73,-112,-109,-201,-109v-89,0,-157,36,-203,109v-46,73,-69,181,-69,323v0,141,23,249,69,322v46,73,114,110,203,110v89,0,156,-36,201,-109v45,-73,67,-180,67,-323"},"q":{"d":"332,-555v0,143,23,250,68,323v45,73,111,109,200,109v89,0,156,-36,202,-109v46,-73,68,-181,68,-323v0,-142,-22,-250,-68,-323v-46,-73,-113,-109,-202,-109v-89,0,-155,36,-200,109v-45,73,-68,180,-68,323xm571,-1143v146,0,244,69,299,170r0,-143r185,0r0,1546r-185,0r0,-569v-55,102,-152,172,-299,172v-134,0,-239,-51,-317,-155v-78,-104,-117,-247,-117,-429v0,-185,39,-330,116,-435v77,-105,183,-157,318,-157"},"r":{"d":"915,-1147v101,0,174,26,240,70r0,188v-71,-55,-141,-88,-254,-88v-242,0,-354,165,-354,420r0,557r-185,0r0,-1120r185,0r0,219v55,-146,179,-246,368,-246"},"s":{"d":"637,-1147v131,0,237,25,336,66r0,180v-93,-54,-191,-92,-322,-92v-83,0,-146,14,-187,41v-41,27,-61,68,-61,123v0,50,15,87,46,112v31,25,107,51,229,72v115,20,224,51,282,118v46,53,70,120,70,203v-2,238,-190,356,-446,353v-138,-2,-251,-31,-371,-70r0,-190v114,58,230,104,375,106v146,2,252,-56,256,-188v3,-87,-93,-148,-253,-179r-69,-14v-106,-21,-183,-55,-232,-104v-49,-49,-73,-116,-73,-201v2,-231,172,-338,420,-336"},"t":{"d":"807,0v-277,-3,-377,-93,-377,-369r0,-608r-299,0r0,-143r299,0r0,-318r184,0r0,318r418,0r0,143r-418,0r0,608v2,164,50,222,211,222r207,0r0,147r-225,0"},"u":{"d":"866,-168v-59,119,-166,197,-331,197v-115,0,-200,-38,-256,-113v-56,-75,-84,-188,-84,-340r0,-694r184,0r0,694v1,183,52,293,219,293v190,0,268,-147,268,-354r0,-633r185,0r0,1118r-185,0r0,-168"},"v":{"d":"100,-1120r191,0r325,940r326,-940r191,0r-398,1120r-237,0"},"w":{"d":"0,-1120r182,0r195,905r160,-578r157,0r162,578r195,-905r182,0r-262,1120r-176,0r-179,-614r-178,614r-176,0"},"x":{"d":"1118,-1120r-401,536r440,584r-213,0r-328,-449r-327,449r-213,0r440,-584r-401,-536r204,0r297,405r295,-405r207,0"},"y":{"d":"858,-360r-117,308v-66,176,-110,283,-133,322v-55,94,-139,156,-276,156r-148,0r0,-154r109,0v54,0,96,-16,127,-47v31,-31,70,-112,117,-243r-433,-1102r195,0r332,876r327,-876r195,0"},"z":{"d":"227,-1122r813,0r0,168r-643,804r643,0r0,150r-837,0r0,-170r643,-805r-619,0r0,-147"},"{":{"d":"717,-39v5,194,32,224,225,229r70,0r0,144r-64,0v-166,0,-278,-25,-334,-74v-56,-49,-84,-148,-84,-295r0,-239v-3,-199,-52,-264,-247,-267r-62,0r0,-143r62,0v195,-3,247,-65,247,-264r0,-240v0,-147,28,-245,84,-294v56,-49,168,-74,334,-74r64,0r0,143r-70,0v-192,5,-225,36,-225,229r0,248v-2,202,-44,285,-201,324v157,41,201,122,201,325r0,248"},"|":{"d":"702,-1565r0,2048r-172,0r0,-2048r172,0"},"}":{"d":"948,-541v-196,3,-248,67,-248,267r0,239v0,147,-28,246,-84,295v-56,49,-167,74,-333,74r-62,0r0,-144r68,0v193,-5,227,-36,227,-229r0,-248v2,-203,44,-283,201,-325v-157,-39,-201,-122,-201,-324r0,-248v-5,-193,-34,-224,-227,-229r-68,0r0,-143r62,0v166,0,277,25,333,74v56,49,84,147,84,294r0,240v3,199,53,261,248,264r64,0r0,143r-64,0"},"~":{"d":"864,-657v123,0,199,-56,281,-123r0,174v-86,67,-166,111,-297,114v-152,4,-298,-127,-467,-122v-131,4,-210,52,-293,122r0,-174v106,-85,236,-137,410,-103v41,9,108,33,157,57v77,37,147,55,209,55"},"\u00a0":{},"\u00a1":{"d":"516,-1239r0,-254r203,0r0,254r-203,0xm516,0r0,-655r21,-357r161,0r21,357r0,655r-203,0"},"\u00a2":{"d":"801,-1145v95,6,178,34,260,68r0,172v-77,-46,-158,-80,-260,-88r0,870v100,-9,184,-44,260,-90r0,172v-82,35,-164,61,-260,68r0,286r-103,0r0,-286v-299,-26,-485,-257,-485,-586v0,-325,189,-564,485,-586r0,-287r103,0r0,287xm698,-991v-189,18,-292,210,-292,432v0,224,103,412,292,432r0,-864"},"\u00a3":{"d":"817,-1520v104,0,191,25,275,58r0,184v-72,-51,-148,-88,-256,-88v-89,0,-156,30,-198,90v-42,60,-63,153,-63,281r0,217r371,0r0,143r-371,0r0,465r537,0r0,170r-973,0r0,-170r236,0r0,-465r-199,0r0,-143r199,0r0,-238v0,-324,130,-504,442,-504"},"\u00a4":{"d":"653,-426v118,0,215,-99,215,-217v0,-118,-97,-213,-215,-213v-117,0,-215,96,-215,213v0,119,97,217,215,217xm653,-983v77,0,134,26,191,59r166,-166r90,93r-166,166v34,56,59,111,59,190v0,79,-25,133,-61,186r168,166r-94,94r-166,-167v-54,36,-107,61,-187,61v-77,0,-137,-25,-192,-57r-164,163r-92,-90r166,-166v-35,-58,-60,-112,-60,-190v0,-79,26,-136,62,-188r-168,-166r94,-95r166,168v54,-36,107,-61,188,-61"},"\u00a5":{"d":"37,-1493r215,0r364,659r363,-659r217,0r-330,561r252,0r0,111r-315,0r-86,151r0,35r401,0r0,111r-401,0r0,524r-203,0r0,-524r-399,0r0,-111r399,0r0,-35r-90,-151r-309,0r0,-111r243,0"},"\u00a6":{"d":"702,-1432r0,758r-172,0r0,-758r172,0xm702,-408r0,758r-172,0r0,-758r172,0"},"\u00a7":{"d":"631,-1520v113,2,212,24,305,58r0,164v-89,-41,-177,-76,-283,-78v-116,-3,-204,46,-204,151v0,60,68,128,205,205r40,23v141,79,234,145,277,196v43,51,65,111,65,178v0,144,-78,222,-184,283v68,59,118,118,119,225v2,200,-164,313,-377,310v-118,-2,-215,-25,-315,-58r0,-164v93,41,184,76,292,78v123,3,215,-48,215,-160v0,-68,-74,-143,-221,-225v-132,-74,-264,-161,-302,-210v-41,-52,-64,-111,-64,-179v0,-142,79,-227,184,-283v-70,-52,-119,-117,-119,-225v0,-186,165,-292,367,-289xm485,-936v-41,30,-73,60,-93,90v-55,85,-32,167,40,236v47,45,153,111,318,200v41,-30,72,-60,92,-90v55,-86,31,-166,-42,-236v-48,-45,-152,-112,-315,-200"},"\u00a8":{"d":"319,-1552r203,0r0,202r-203,0r0,-202xm711,-1552r202,0r0,202r-202,0r0,-202"},"\u00a9":{"d":"637,-1116v88,0,163,16,227,45r0,108v-69,-33,-136,-54,-227,-55v-159,-1,-252,113,-252,277v0,174,97,275,270,274v84,-1,149,-20,209,-51r0,104v-64,29,-139,45,-227,45v-234,3,-387,-142,-387,-372v0,-231,154,-378,387,-375xm814,-1218v-118,-48,-276,-49,-394,0v-119,49,-230,160,-280,279v-50,120,-51,273,0,393v50,120,161,231,280,281v119,50,274,50,392,0v118,-49,231,-163,280,-281v49,-120,49,-273,0,-393v-49,-120,-159,-230,-278,-279xm381,-1313v143,-59,328,-59,471,0v144,59,275,193,335,336v60,144,61,326,1,470v-59,142,-195,278,-337,337v-143,59,-326,60,-469,0v-142,-59,-277,-195,-336,-337v-60,-144,-60,-326,0,-470v60,-143,191,-277,335,-336"},"\u00aa":{"d":"575,-817v151,-1,248,-120,236,-287v-182,3,-395,-24,-395,146v-1,88,68,142,159,141xm598,-1520v246,0,356,110,356,355r0,448r-143,0r0,-112v-59,78,-138,129,-262,131v-164,2,-281,-93,-279,-252v2,-189,152,-271,359,-269r182,0v0,-135,-92,-188,-236,-186v-90,1,-171,33,-243,68r0,-127v79,-33,166,-56,266,-56xm293,-592r668,0r0,123r-668,0r0,-123"},"\u00ab":{"d":"588,-1059r0,191r-301,268r301,268r0,191r-469,-418r0,-82xm1042,-1059r0,191r-301,268r301,268r0,191r-469,-418r0,-82"},"\u00ac":{"d":"88,-862r1057,0r0,491r-168,0r0,-319r-889,0r0,-172"},"\u00ad":{"d":"356,-643r521,0r0,164r-521,0r0,-164"},"\u00ae":{"d":"891,-901v-1,104,-72,162,-168,178v13,3,29,17,48,39v62,74,125,190,181,278r-143,0r-107,-174v-33,-53,-60,-86,-80,-101v-31,-23,-78,-22,-130,-21r0,296r-130,0r0,-694r238,0v98,0,171,16,219,49v48,33,72,83,72,150xm758,-901v0,-95,-57,-114,-164,-115r-102,0r0,232r102,0v108,-1,164,-21,164,-117xm381,-1313v143,-59,328,-59,471,0v144,59,275,193,335,336v60,144,61,326,1,470v-59,142,-195,278,-337,337v-143,59,-326,60,-469,0v-142,-59,-277,-195,-336,-337v-60,-144,-60,-326,0,-470v60,-143,191,-277,335,-336xm814,-1218v-118,-48,-276,-49,-394,0v-119,49,-230,160,-280,279v-50,120,-51,273,0,393v50,120,161,231,280,281v119,50,274,50,392,0v118,-49,231,-163,280,-281v49,-120,49,-273,0,-393v-49,-120,-159,-230,-278,-279"},"\u00af":{"d":"317,-1526r598,0r0,148r-598,0r0,-148"},"\u00b0":{"d":"299,-1200v0,-216,221,-390,441,-296v109,47,191,145,194,296v4,172,-147,315,-320,315v-176,0,-315,-139,-315,-315xm807,-1200v0,-102,-89,-191,-191,-191v-103,0,-190,88,-190,191v0,104,85,188,188,188v103,0,193,-86,193,-188"},"\u00b1":{"d":"88,-170r1057,0r0,170r-1057,0r0,-170xm700,-1171r0,329r445,0r0,170r-445,0r0,332r-168,0r0,-332r-444,0r0,-170r444,0r0,-329r168,0"},"\u00b2":{"d":"573,-1520v170,-3,312,85,314,240v0,38,-12,77,-37,116v-66,103,-262,277,-367,382r410,0r0,114r-571,0r0,-110r231,-226v67,-65,114,-117,141,-158v27,-41,41,-78,41,-112v-1,-89,-84,-139,-182,-137v-88,3,-157,34,-225,72r0,-125v75,-32,150,-55,245,-56"},"\u00b3":{"d":"903,-1303v0,108,-74,161,-172,183v111,24,193,88,193,209v0,83,-32,146,-95,191v-63,45,-154,67,-272,67v-88,0,-160,-17,-231,-41r0,-121v75,29,143,51,227,53v117,2,219,-46,219,-149v0,-113,-91,-150,-219,-150r-66,0r0,-108r74,0v107,0,191,-30,191,-123v0,-86,-84,-120,-183,-119v-75,1,-151,22,-215,47r0,-121v78,-19,152,-34,236,-35v97,0,173,20,229,59v56,39,84,92,84,158"},"\u00b4":{"d":"756,-1638r198,0r-325,376r-154,0"},"\u00b5":{"d":"625,29v-138,0,-209,-59,-263,-156r0,555r-167,0r0,-1548r184,0r0,696v-1,174,70,293,231,293v186,0,257,-134,256,-336r0,-653r185,0r0,864v1,66,11,115,65,115v25,0,38,-11,66,-23r0,148v-43,26,-82,45,-140,45v-95,0,-135,-65,-149,-158v-55,95,-132,158,-268,158"},"\u00b6":{"d":"106,-1071v-2,-260,205,-422,476,-422r448,0r0,1690r-141,0r0,-1567r-191,0r0,1567r-141,0r0,-846v-143,-11,-254,-53,-333,-127v-79,-74,-118,-172,-118,-295"},"\u00b7":{"d":"489,-864r252,0r0,305r-252,0r0,-305"},"\u00b8":{"d":"551,272v71,0,118,-28,119,-94v0,-20,-7,-45,-22,-74v-15,-29,-37,-63,-66,-104r118,0v37,41,64,79,82,114v18,35,27,69,27,101v-2,131,-95,181,-238,180v-65,0,-122,-9,-176,-24r0,-131v45,22,91,32,156,32"},"\u00b9":{"d":"362,-778r205,0r0,-611r-223,41r0,-116r229,-39r138,0r0,725r204,0r0,110r-553,0r0,-110"},"\u00ba":{"d":"834,-1108v0,-167,-67,-295,-218,-295v-150,0,-217,129,-217,295v0,166,67,293,217,293v148,0,218,-131,218,-293xm244,-1108v0,-239,141,-412,372,-412v232,0,373,173,373,412v0,239,-141,410,-373,410v-231,0,-372,-172,-372,-410xm276,-592r676,0r0,123r-676,0r0,-123"},"\u00bb":{"d":"647,-1059r469,418r0,82r-469,418r0,-191r301,-268r-301,-268r0,-191xm193,-1059r469,418r0,82r-469,418r0,-191r301,-268r-301,-268r0,-191"},"\u00bc":{"d":"104,-934r205,0r0,-611r-223,41r0,-116r229,-39r138,0r0,725r204,0r0,110r-553,0r0,-110xm51,-504r-24,-108r1060,-262r27,108xm815,-565r162,0r0,538r116,0r0,111r-116,0r0,186r-138,0r0,-186r-387,0r0,-121xm839,-440r-274,413r274,0r0,-413"},"\u00bd":{"d":"774,-582v170,-3,312,85,314,240v0,38,-12,77,-37,116v-66,103,-262,277,-367,382r410,0r0,114r-571,0r0,-110r231,-226v67,-65,115,-117,142,-158v27,-41,40,-78,40,-112v-1,-89,-84,-139,-182,-137v-88,3,-157,34,-225,72r0,-125v75,-32,150,-55,245,-56xm104,-934r205,0r0,-611r-223,41r0,-116r229,-39r138,0r0,725r204,0r0,110r-553,0r0,-110xm51,-504r-24,-108r1060,-262r27,108"},"\u00be":{"d":"676,-1459v0,108,-74,161,-172,183v111,24,193,88,193,209v0,83,-32,146,-95,191v-63,45,-154,67,-272,67v-88,0,-160,-17,-231,-41r0,-121v75,29,143,51,227,53v117,2,219,-46,219,-149v0,-113,-91,-150,-219,-150r-66,0r0,-108r74,0v107,0,191,-30,191,-123v0,-86,-84,-120,-183,-119v-75,1,-151,22,-215,47r0,-121v78,-19,152,-34,236,-35v97,0,173,20,229,59v56,39,84,92,84,158xm51,-504r-24,-108r1060,-262r27,108xm815,-565r162,0r0,538r116,0r0,111r-116,0r0,186r-138,0r0,-186r-387,0r0,-121xm839,-440r-274,413r274,0r0,-413"},"\u00bf":{"d":"600,27v-233,4,-408,-130,-407,-353v0,-51,12,-98,33,-142v33,-68,148,-175,216,-243v75,-75,100,-96,105,-216v2,-54,1,-109,2,-165r190,0v-1,116,5,240,-31,320v-34,75,-137,174,-204,240v-41,40,-70,74,-86,103v-16,29,-23,60,-23,93v0,125,106,203,240,199v142,-4,249,-66,354,-137r0,188v-112,67,-227,111,-389,113xm745,-1239r-202,0r0,-254r202,0r0,254"},"\u00c0":{"d":"616,-1315r-213,764r426,0xm494,-1493r245,0r457,1493r-209,0r-110,-389r-523,0r-108,389r-209,0xm561,-1899r197,264r-154,0r-227,-264r184,0"},"\u00c1":{"d":"616,-1315r-213,764r426,0xm494,-1493r245,0r457,1493r-209,0r-110,-389r-523,0r-108,389r-209,0xm672,-1899r186,0r-229,264r-154,0"},"\u00c2":{"d":"616,-1315r-213,764r426,0xm494,-1493r245,0r457,1493r-209,0r-110,-389r-523,0r-108,389r-209,0xm522,-1901r189,0r211,266r-140,0r-166,-178r-165,178r-140,0"},"\u00c3":{"d":"616,-1315r-213,764r426,0xm494,-1493r245,0r457,1493r-209,0r-110,-389r-523,0r-108,389r-209,0xm946,-1886v2,146,-100,250,-252,211v-51,-13,-128,-67,-180,-87v-63,-24,-107,26,-102,95r-125,0v-6,-150,103,-250,255,-211v50,13,124,64,176,84v63,24,107,-27,103,-92r125,0"},"\u00c4":{"d":"616,-1315r-213,764r426,0xm494,-1493r245,0r457,1493r-209,0r-110,-389r-523,0r-108,389r-209,0xm319,-1870r203,0r0,203r-203,0r0,-203xm711,-1870r202,0r0,203r-202,0r0,-203"},"\u00c5":{"d":"616,-1475v82,0,152,-69,152,-151v0,-82,-70,-152,-152,-152v-84,0,-151,68,-151,152v0,82,69,151,151,151xm616,-1311r-213,760r426,0xm891,-1626v-2,106,-51,184,-123,227r428,1399r-209,0r-110,-389r-523,0r-108,389r-209,0r428,-1399v-71,-39,-121,-122,-123,-227v-3,-148,126,-275,274,-275v148,0,278,127,275,275"},"\u00c6":{"d":"1161,-1493r0,170r-338,0r0,442r307,0r0,170r-307,0r0,541r357,0r0,170r-543,0r0,-383r-352,0r-101,383r-184,0r410,-1493r751,0xm530,-1323r-202,772r309,0r0,-772r-107,0"},"\u00c7":{"d":"743,-135v137,0,246,-55,330,-125r0,207v-95,50,-195,81,-330,82v-191,0,-339,-68,-445,-203v-106,-135,-159,-326,-159,-571v0,-244,53,-435,159,-571v106,-136,255,-204,445,-204v135,1,236,32,330,82r0,207v-85,-70,-193,-125,-330,-125v-131,0,-230,51,-295,152v-65,101,-98,254,-98,459v0,204,33,357,98,458v65,101,164,152,295,152xm651,272v72,0,118,-27,119,-94v0,-20,-7,-45,-22,-74v-15,-29,-37,-64,-66,-104r118,0v58,67,109,120,109,215v0,130,-95,182,-238,180v-65,0,-123,-9,-176,-24r0,-131v44,21,92,32,156,32"},"\u00c8":{"d":"197,-1493r886,0r0,170r-684,0r0,442r654,0r0,170r-654,0r0,541r703,0r0,170r-905,0r0,-1493xm579,-1899r197,264r-154,0r-227,-264r184,0"},"\u00c9":{"d":"197,-1493r886,0r0,170r-684,0r0,442r654,0r0,170r-654,0r0,541r703,0r0,170r-905,0r0,-1493xm690,-1899r186,0r-229,264r-154,0"},"\u00ca":{"d":"197,-1493r886,0r0,170r-684,0r0,442r654,0r0,170r-654,0r0,541r703,0r0,170r-905,0r0,-1493xm540,-1901r189,0r211,266r-140,0r-166,-178r-165,178r-140,0"},"\u00cb":{"d":"197,-1493r886,0r0,170r-684,0r0,442r654,0r0,170r-654,0r0,541r703,0r0,170r-905,0r0,-1493xm337,-1870r203,0r0,203r-203,0r0,-203xm729,-1870r202,0r0,203r-202,0r0,-203"},"\u00cc":{"d":"201,-1493r829,0r0,170r-313,0r0,1153r313,0r0,170r-829,0r0,-170r313,0r0,-1153r-313,0r0,-170xm561,-1899r197,264r-154,0r-227,-264r184,0"},"\u00cd":{"d":"201,-1493r829,0r0,170r-313,0r0,1153r313,0r0,170r-829,0r0,-170r313,0r0,-1153r-313,0r0,-170xm672,-1899r186,0r-229,264r-154,0"},"\u00ce":{"d":"201,-1493r829,0r0,170r-313,0r0,1153r313,0r0,170r-829,0r0,-170r313,0r0,-1153r-313,0r0,-170xm522,-1901r189,0r211,266r-140,0r-166,-178r-165,178r-140,0"},"\u00cf":{"d":"201,-1493r829,0r0,170r-313,0r0,1153r313,0r0,170r-829,0r0,-170r313,0r0,-1153r-313,0r0,-170xm319,-1870r203,0r0,203r-203,0r0,-203xm711,-1870r202,0r0,203r-202,0r0,-203"},"\u00d0":{"d":"1102,-745v0,492,-191,741,-666,745r-303,0r0,-709r-125,0r0,-149r125,0r0,-635r303,0v476,3,666,255,666,748xm436,-166v170,0,289,-42,356,-126v67,-84,101,-234,101,-453v0,-221,-34,-373,-101,-457v-67,-84,-185,-125,-356,-125r-96,0r0,469r264,0r0,149r-264,0r0,543r96,0"},"\u00d1":{"d":"139,-1493r256,0r504,1229r0,-1229r195,0r0,1493r-256,0r-504,-1229r0,1229r-195,0r0,-1493xm946,-1890v2,146,-100,250,-252,211v-51,-13,-128,-67,-180,-87v-63,-24,-107,26,-102,95r-125,0v-6,-150,103,-250,255,-211v50,13,124,64,176,84v63,24,107,-27,103,-92r125,0"},"\u00d2":{"d":"905,-745v0,-219,-22,-376,-67,-470v-45,-94,-119,-141,-222,-141v-102,0,-175,47,-220,141v-45,94,-68,251,-68,470v0,219,23,375,68,469v45,94,118,141,220,141v103,0,177,-47,222,-141v45,-94,67,-250,67,-469xm1116,-745v0,260,-42,454,-124,582v-82,128,-207,192,-376,192v-169,0,-294,-64,-376,-191v-82,-127,-123,-322,-123,-583v0,-261,41,-455,123,-583v82,-128,208,-192,376,-192v169,0,294,64,376,192v82,128,124,322,124,583xm561,-1899r197,264r-154,0r-227,-264r184,0"},"\u00d3":{"d":"905,-745v0,-219,-22,-376,-67,-470v-45,-94,-119,-141,-222,-141v-102,0,-175,47,-220,141v-45,94,-68,251,-68,470v0,219,23,375,68,469v45,94,118,141,220,141v103,0,177,-47,222,-141v45,-94,67,-250,67,-469xm1116,-745v0,260,-42,454,-124,582v-82,128,-207,192,-376,192v-169,0,-294,-64,-376,-191v-82,-127,-123,-322,-123,-583v0,-261,41,-455,123,-583v82,-128,208,-192,376,-192v169,0,294,64,376,192v82,128,124,322,124,583xm672,-1899r186,0r-229,264r-154,0"},"\u00d4":{"d":"905,-745v0,-219,-22,-376,-67,-470v-45,-94,-119,-141,-222,-141v-102,0,-175,47,-220,141v-45,94,-68,251,-68,470v0,219,23,375,68,469v45,94,118,141,220,141v103,0,177,-47,222,-141v45,-94,67,-250,67,-469xm1116,-745v0,260,-42,454,-124,582v-82,128,-207,192,-376,192v-169,0,-294,-64,-376,-191v-82,-127,-123,-322,-123,-583v0,-261,41,-455,123,-583v82,-128,208,-192,376,-192v169,0,294,64,376,192v82,128,124,322,124,583xm522,-1901r189,0r211,266r-140,0r-166,-178r-165,178r-140,0"},"\u00d5":{"d":"905,-745v0,-219,-22,-376,-67,-470v-45,-94,-119,-141,-222,-141v-102,0,-175,47,-220,141v-45,94,-68,251,-68,470v0,219,23,375,68,469v45,94,118,141,220,141v103,0,177,-47,222,-141v45,-94,67,-250,67,-469xm1116,-745v0,260,-42,454,-124,582v-82,128,-207,192,-376,192v-169,0,-294,-64,-376,-191v-82,-127,-123,-322,-123,-583v0,-261,41,-455,123,-583v82,-128,208,-192,376,-192v169,0,294,64,376,192v82,128,124,322,124,583xm946,-1886v2,146,-100,250,-252,211v-51,-13,-128,-67,-180,-87v-63,-24,-107,26,-102,95r-125,0v-6,-150,103,-250,255,-211v50,13,124,64,176,84v63,24,107,-27,103,-92r125,0"},"\u00d6":{"d":"905,-745v0,-219,-22,-376,-67,-470v-45,-94,-119,-141,-222,-141v-102,0,-175,47,-220,141v-45,94,-68,251,-68,470v0,219,23,375,68,469v45,94,118,141,220,141v103,0,177,-47,222,-141v45,-94,67,-250,67,-469xm1116,-745v0,260,-42,454,-124,582v-82,128,-207,192,-376,192v-169,0,-294,-64,-376,-191v-82,-127,-123,-322,-123,-583v0,-261,41,-455,123,-583v82,-128,208,-192,376,-192v169,0,294,64,376,192v82,128,124,322,124,583xm319,-1870r203,0r0,203r-203,0r0,-203xm711,-1870r202,0r0,203r-202,0r0,-203"},"\u00d7":{"d":"150,-293r350,-348r-350,-350r116,-117r350,350r351,-350r116,117r-350,350r348,348r-116,119r-349,-350r-348,350"},"\u00d8":{"d":"371,-303v35,95,123,167,245,168v103,0,177,-47,222,-141v45,-94,67,-250,67,-469v0,-122,-3,-205,-20,-291xm842,-1190v-30,-100,-102,-165,-226,-166v-105,0,-178,49,-222,146v-44,97,-66,272,-66,524v0,53,0,96,2,130v2,34,5,62,8,85xm616,-1520v163,1,274,62,345,162r139,-201r100,74r-168,238v60,122,84,307,84,502v0,260,-42,454,-124,582v-82,128,-207,192,-376,192v-171,-1,-285,-60,-362,-162r-143,203r-103,-70r178,-252v-49,-115,-70,-312,-69,-493v0,-261,41,-455,123,-583v82,-128,208,-192,376,-192"},"\u00d9":{"d":"147,-573r0,-920r203,0r0,1012v2,114,-4,167,27,227v40,78,122,119,239,119v118,0,199,-41,240,-119v31,-58,27,-112,27,-225r0,-1014r202,0r0,920v0,153,-11,260,-29,325v-35,123,-132,208,-249,248v-110,39,-271,39,-381,0v-117,-41,-215,-122,-250,-248v-18,-66,-29,-174,-29,-325xm561,-1899r197,264r-154,0r-227,-264r184,0"},"\u00da":{"d":"147,-573r0,-920r203,0r0,1012v2,114,-4,167,27,227v40,78,122,119,239,119v118,0,199,-41,240,-119v31,-58,27,-112,27,-225r0,-1014r202,0r0,920v0,153,-11,260,-29,325v-35,123,-132,208,-249,248v-110,39,-271,39,-381,0v-117,-41,-215,-122,-250,-248v-18,-66,-29,-174,-29,-325xm672,-1899r186,0r-229,264r-154,0"},"\u00db":{"d":"147,-573r0,-920r203,0r0,1012v2,114,-4,167,27,227v40,78,122,119,239,119v118,0,199,-41,240,-119v31,-58,27,-112,27,-225r0,-1014r202,0r0,920v0,153,-11,260,-29,325v-35,123,-132,208,-249,248v-110,39,-271,39,-381,0v-117,-41,-215,-122,-250,-248v-18,-66,-29,-174,-29,-325xm522,-1901r189,0r211,266r-140,0r-166,-178r-165,178r-140,0"},"\u00dc":{"d":"147,-573r0,-920r203,0r0,1012v2,114,-4,167,27,227v40,78,122,119,239,119v118,0,199,-41,240,-119v31,-58,27,-112,27,-225r0,-1014r202,0r0,920v0,153,-11,260,-29,325v-35,123,-132,208,-249,248v-110,39,-271,39,-381,0v-117,-41,-215,-122,-250,-248v-18,-66,-29,-174,-29,-325xm319,-1870r203,0r0,203r-203,0r0,-203xm711,-1870r202,0r0,203r-202,0r0,-203"},"\u00dd":{"d":"37,-1493r215,0r364,659r363,-659r217,0r-479,823r0,670r-203,0r0,-670xm672,-1899r186,0r-229,264r-154,0"},"\u00de":{"d":"952,-795v0,-186,-118,-263,-315,-262r-234,0r0,525r234,0v198,1,315,-76,315,-263xm1165,-795v0,311,-181,428,-508,428r-254,0r0,367r-202,0r0,-1493r202,0r0,270r254,0v328,0,508,118,508,428"},"\u00df":{"d":"610,-1403v-170,1,-235,93,-235,270r0,1133r-187,0r0,-1137v1,-286,139,-418,426,-419v278,0,414,156,416,437v-103,9,-183,35,-239,76v-56,41,-84,95,-84,162v0,114,100,153,180,205v99,65,170,120,207,175v37,55,55,121,55,198v-1,221,-181,335,-420,332v-102,-1,-190,-20,-270,-49r0,-164v85,34,166,59,268,61v130,2,235,-60,236,-178v0,-47,-13,-86,-33,-119v-23,-38,-146,-118,-219,-160v-62,-36,-107,-78,-137,-122v-77,-110,-51,-272,35,-360v55,-56,133,-97,237,-120v-2,-144,-88,-222,-236,-221"},"\u00e0":{"d":"477,-1638r281,376r-154,0r-325,-376r198,0xm547,-125v229,-2,339,-185,327,-438r-233,0v-107,0,-189,19,-243,57v-54,38,-81,93,-81,168v-1,137,91,214,230,213xm215,-1069v118,-45,234,-78,377,-78v187,0,318,55,397,164v63,87,70,174,70,344r0,639r-185,0r0,-166v-74,124,-180,193,-366,195v-221,3,-375,-138,-375,-355v0,-125,41,-219,125,-284v84,-65,207,-97,369,-97r247,0v6,-203,-80,-285,-282,-284v-147,2,-272,46,-377,106r0,-184"},"\u00e1":{"d":"756,-1638r198,0r-325,376r-154,0xm547,-125v229,-2,339,-185,327,-438r-233,0v-107,0,-189,19,-243,57v-54,38,-81,93,-81,168v-1,137,91,214,230,213xm215,-1069v118,-45,234,-78,377,-78v187,0,318,55,397,164v63,87,70,174,70,344r0,639r-185,0r0,-166v-74,124,-180,193,-366,195v-221,3,-375,-138,-375,-355v0,-125,41,-219,125,-284v84,-65,207,-97,369,-97r247,0v6,-203,-80,-285,-282,-284v-147,2,-272,46,-377,106r0,-184"},"\u00e2":{"d":"543,-1638r147,0r246,376r-139,0r-181,-245r-180,245r-139,0xm547,-125v229,-2,339,-185,327,-438r-233,0v-107,0,-189,19,-243,57v-54,38,-81,93,-81,168v-1,137,91,214,230,213xm215,-1069v118,-45,234,-78,377,-78v187,0,318,55,397,164v63,87,70,174,70,344r0,639r-185,0r0,-166v-74,124,-180,193,-366,195v-221,3,-375,-138,-375,-355v0,-125,41,-219,125,-284v84,-65,207,-97,369,-97r247,0v6,-203,-80,-285,-282,-284v-147,2,-272,46,-377,106r0,-184"},"\u00e3":{"d":"752,-1309v-117,1,-159,-99,-234,-145v-35,-21,-71,-7,-87,27v-12,25,-19,64,-20,118r-124,0v1,-89,19,-158,52,-208v44,-67,130,-92,213,-60v59,24,111,98,164,131v35,21,70,7,86,-27v12,-25,18,-64,19,-118r125,0v-1,89,-18,159,-52,208v-34,49,-81,74,-142,74xm547,-125v229,-2,339,-185,327,-438r-233,0v-107,0,-189,19,-243,57v-54,38,-81,93,-81,168v-1,137,91,214,230,213xm215,-1069v118,-45,234,-78,377,-78v187,0,318,55,397,164v63,87,70,174,70,344r0,639r-185,0r0,-166v-74,124,-180,193,-366,195v-221,3,-375,-138,-375,-355v0,-125,41,-219,125,-284v84,-65,207,-97,369,-97r247,0v6,-203,-80,-285,-282,-284v-147,2,-272,46,-377,106r0,-184"},"\u00e4":{"d":"319,-1552r203,0r0,202r-203,0r0,-202xm711,-1552r202,0r0,202r-202,0r0,-202xm547,-125v229,-2,339,-185,327,-438r-233,0v-107,0,-189,19,-243,57v-54,38,-81,93,-81,168v-1,137,91,214,230,213xm215,-1069v118,-45,234,-78,377,-78v187,0,318,55,397,164v63,87,70,174,70,344r0,639r-185,0r0,-166v-74,124,-180,193,-366,195v-221,3,-375,-138,-375,-355v0,-125,41,-219,125,-284v84,-65,207,-97,369,-97r247,0v6,-203,-80,-285,-282,-284v-147,2,-272,46,-377,106r0,-184"},"\u00e5":{"d":"547,-125v229,-2,339,-185,327,-438r-233,0v-107,0,-189,19,-243,57v-54,38,-81,93,-81,168v-1,137,91,214,230,213xm215,-1069v118,-45,234,-78,377,-78v187,0,318,55,397,164v63,87,70,174,70,344r0,639r-185,0r0,-166v-74,124,-180,193,-366,195v-221,3,-375,-138,-375,-355v0,-125,41,-219,125,-284v84,-65,207,-97,369,-97r247,0v6,-203,-80,-285,-282,-284v-147,2,-272,46,-377,106r0,-184xm616,-1798v150,0,275,125,275,274v0,150,-125,275,-275,275v-148,0,-274,-126,-274,-275v0,-148,126,-274,274,-274xm616,-1372v83,0,152,-69,152,-152v0,-82,-69,-151,-152,-151v-83,0,-151,68,-151,151v0,83,68,152,151,152"},"\u00e6":{"d":"205,-311v-1,115,59,186,172,186v61,0,102,-24,129,-67v29,-46,40,-200,37,-322r-49,0v-113,0,-189,15,-229,45v-40,30,-60,83,-60,158xm1036,-657v1,-181,-5,-336,-164,-336v-58,0,-98,23,-125,68v-29,48,-40,159,-38,268r327,0xm627,-1020v42,-79,134,-127,254,-127v116,0,199,40,247,119v48,79,72,220,72,424r0,90r-491,0r-2,84v0,107,17,185,51,233v34,48,87,72,162,72v116,-1,197,-39,258,-102r0,172v-66,49,-152,83,-258,84v-146,0,-249,-56,-291,-160v-49,100,-129,159,-269,160v-211,0,-320,-122,-319,-336v0,-236,147,-352,391,-350r117,0r0,-88v1,-147,-57,-248,-193,-248v-94,0,-183,39,-250,82r0,-168v86,-39,164,-68,269,-68v126,0,204,45,252,127"},"\u00e7":{"d":"748,-127v143,0,234,-46,313,-121r0,191v-88,51,-187,85,-313,86v-351,2,-553,-231,-553,-588v0,-358,202,-590,553,-588v127,1,222,35,313,86r0,193v-88,-77,-167,-123,-313,-123v-244,0,-359,173,-359,432v0,258,116,432,359,432xm655,272v72,0,118,-27,119,-94v0,-20,-7,-45,-22,-74v-15,-29,-37,-64,-66,-104r118,0v58,67,109,120,109,215v0,130,-95,182,-238,180v-65,0,-123,-9,-176,-24r0,-131v44,21,92,32,156,32"},"\u00e8":{"d":"491,-1638r281,376r-154,0r-325,-376r198,0xm651,-1147v298,0,466,228,461,541r0,90r-797,0v-4,243,128,392,365,389v153,-2,268,-51,389,-113r0,183v-120,49,-242,84,-391,86v-351,2,-555,-231,-555,-588v0,-340,200,-588,528,-588xm928,-660v-4,-201,-91,-331,-285,-331v-192,0,-305,143,-321,332"},"\u00e9":{"d":"770,-1638r198,0r-325,376r-154,0xm651,-1147v298,0,466,228,461,541r0,90r-797,0v-4,243,128,392,365,389v153,-2,268,-51,389,-113r0,183v-120,49,-242,84,-391,86v-351,2,-555,-231,-555,-588v0,-340,200,-588,528,-588xm928,-660v-4,-201,-91,-331,-285,-331v-192,0,-305,143,-321,332"},"\u00ea":{"d":"557,-1638r147,0r246,376r-139,0r-181,-245r-180,245r-139,0xm651,-1147v298,0,466,228,461,541r0,90r-797,0v-4,243,128,392,365,389v153,-2,268,-51,389,-113r0,183v-120,49,-242,84,-391,86v-351,2,-555,-231,-555,-588v0,-340,200,-588,528,-588xm928,-660v-4,-201,-91,-331,-285,-331v-192,0,-305,143,-321,332"},"\u00eb":{"d":"333,-1552r203,0r0,202r-203,0r0,-202xm725,-1552r202,0r0,202r-202,0r0,-202xm651,-1147v298,0,466,228,461,541r0,90r-797,0v-4,243,128,392,365,389v153,-2,268,-51,389,-113r0,183v-120,49,-242,84,-391,86v-351,2,-555,-231,-555,-588v0,-340,200,-588,528,-588xm928,-660v-4,-201,-91,-331,-285,-331v-192,0,-305,143,-321,332"},"\u00ec":{"d":"477,-1638r281,376r-154,0r-325,-376r198,0xm256,-1120r471,0r0,977r365,0r0,143r-914,0r0,-143r365,0r0,-834r-287,0r0,-143"},"\u00ed":{"d":"756,-1638r198,0r-325,376r-154,0xm256,-1120r471,0r0,977r365,0r0,143r-914,0r0,-143r365,0r0,-834r-287,0r0,-143"},"\u00ee":{"d":"543,-1638r147,0r246,376r-139,0r-181,-245r-180,245r-139,0xm256,-1120r471,0r0,977r365,0r0,143r-914,0r0,-143r365,0r0,-834r-287,0r0,-143"},"\u00ef":{"d":"343,-1552r203,0r0,202r-203,0r0,-202xm735,-1552r202,0r0,202r-202,0r0,-202xm256,-1120r471,0r0,977r365,0r0,143r-914,0r0,-143r365,0r0,-834r-287,0r0,-143"},"\u00f0":{"d":"137,-535v0,-360,188,-597,559,-557v-44,-62,-94,-120,-143,-178r-279,92r-30,-98r237,-80r-182,-200r219,0r127,145r289,-94r33,98r-250,80v131,141,227,275,288,402v61,127,91,257,91,390v0,337,-160,563,-480,564v-319,0,-479,-229,-479,-564xm901,-535v0,-149,-44,-295,-108,-383v-45,-17,-101,-26,-162,-26v-97,0,-172,35,-223,105v-51,70,-76,171,-76,304v0,131,25,231,74,302v49,71,119,106,210,106v91,0,162,-35,211,-106v49,-71,74,-171,74,-302"},"\u00f1":{"d":"752,-1309v-117,1,-159,-99,-234,-145v-35,-21,-71,-7,-87,27v-12,25,-19,64,-20,118r-124,0v1,-89,19,-158,52,-208v44,-67,130,-92,213,-60v59,24,111,98,164,131v35,21,70,7,86,-27v12,-25,18,-64,19,-118r125,0v-1,89,-18,159,-52,208v-34,49,-81,74,-142,74xm379,-952v60,-118,165,-195,332,-195v114,0,199,38,255,113v56,75,85,188,85,340r0,694r-185,0r0,-694v-1,-184,-51,-293,-219,-293v-189,0,-268,148,-268,354r0,633r-184,0r0,-1120r184,0r0,168"},"\u00f2":{"d":"477,-1638r281,376r-154,0r-325,-376r198,0xm616,-991v-93,0,-164,36,-212,109v-48,73,-72,180,-72,323v0,142,24,250,72,323v48,73,119,109,212,109v94,0,165,-36,213,-109v48,-73,72,-181,72,-323v0,-143,-24,-250,-72,-323v-48,-73,-119,-109,-213,-109xm616,-1147v332,0,480,234,480,588v0,191,-41,337,-123,437v-82,100,-201,151,-357,151v-155,0,-274,-51,-356,-151v-82,-100,-123,-246,-123,-437v0,-191,41,-336,123,-437v82,-101,201,-151,356,-151"},"\u00f3":{"d":"756,-1638r198,0r-325,376r-154,0xm616,-991v-93,0,-164,36,-212,109v-48,73,-72,180,-72,323v0,142,24,250,72,323v48,73,119,109,212,109v94,0,165,-36,213,-109v48,-73,72,-181,72,-323v0,-143,-24,-250,-72,-323v-48,-73,-119,-109,-213,-109xm616,-1147v332,0,480,234,480,588v0,191,-41,337,-123,437v-82,100,-201,151,-357,151v-155,0,-274,-51,-356,-151v-82,-100,-123,-246,-123,-437v0,-191,41,-336,123,-437v82,-101,201,-151,356,-151"},"\u00f4":{"d":"543,-1638r147,0r246,376r-139,0r-181,-245r-180,245r-139,0xm616,-991v-93,0,-164,36,-212,109v-48,73,-72,180,-72,323v0,142,24,250,72,323v48,73,119,109,212,109v94,0,165,-36,213,-109v48,-73,72,-181,72,-323v0,-143,-24,-250,-72,-323v-48,-73,-119,-109,-213,-109xm616,-1147v332,0,480,234,480,588v0,191,-41,337,-123,437v-82,100,-201,151,-357,151v-155,0,-274,-51,-356,-151v-82,-100,-123,-246,-123,-437v0,-191,41,-336,123,-437v82,-101,201,-151,356,-151"},"\u00f5":{"d":"752,-1309v-117,1,-159,-99,-234,-145v-35,-21,-71,-7,-87,27v-12,25,-19,64,-20,118r-124,0v1,-89,19,-158,52,-208v44,-67,130,-92,213,-60v59,24,111,98,164,131v35,21,70,7,86,-27v12,-25,18,-64,19,-118r125,0v-1,89,-18,159,-52,208v-34,49,-81,74,-142,74xm616,-991v-93,0,-164,36,-212,109v-48,73,-72,180,-72,323v0,142,24,250,72,323v48,73,119,109,212,109v94,0,165,-36,213,-109v48,-73,72,-181,72,-323v0,-143,-24,-250,-72,-323v-48,-73,-119,-109,-213,-109xm616,-1147v332,0,480,234,480,588v0,191,-41,337,-123,437v-82,100,-201,151,-357,151v-155,0,-274,-51,-356,-151v-82,-100,-123,-246,-123,-437v0,-191,41,-336,123,-437v82,-101,201,-151,356,-151"},"\u00f6":{"d":"319,-1552r203,0r0,202r-203,0r0,-202xm711,-1552r202,0r0,202r-202,0r0,-202xm616,-991v-93,0,-164,36,-212,109v-48,73,-72,180,-72,323v0,142,24,250,72,323v48,73,119,109,212,109v94,0,165,-36,213,-109v48,-73,72,-181,72,-323v0,-143,-24,-250,-72,-323v-48,-73,-119,-109,-213,-109xm616,-1147v332,0,480,234,480,588v0,191,-41,337,-123,437v-82,100,-201,151,-357,151v-155,0,-274,-51,-356,-151v-82,-100,-123,-246,-123,-437v0,-191,41,-336,123,-437v82,-101,201,-151,356,-151"},"\u00f7":{"d":"494,-395r245,0r0,245r-245,0r0,-245xm494,-1135r245,0r0,246r-245,0r0,-246xm88,-727r1057,0r0,170r-1057,0r0,-170"},"\u00f8":{"d":"414,-221v44,58,107,93,202,94v94,0,163,-38,213,-109v77,-109,89,-370,48,-544xm817,-897v-44,-60,-104,-93,-201,-94v-93,0,-163,36,-214,107v-63,87,-87,255,-67,415v5,39,12,82,21,129xm616,29v-144,0,-244,-42,-317,-119r-160,186r-92,-76r170,-200v-52,-95,-80,-231,-80,-379v0,-191,41,-336,123,-437v82,-101,201,-151,356,-151v141,0,242,40,318,111r147,-176r93,77r-164,195v58,92,86,226,86,381v0,191,-41,337,-123,437v-82,100,-201,151,-357,151"},"\u00f9":{"d":"477,-1638r281,376r-154,0r-325,-376r198,0xm866,-168v-59,119,-166,197,-331,197v-115,0,-200,-38,-256,-113v-56,-75,-84,-188,-84,-340r0,-694r184,0r0,694v1,183,52,293,219,293v190,0,268,-147,268,-354r0,-633r185,0r0,1118r-185,0r0,-168"},"\u00fa":{"d":"756,-1638r198,0r-325,376r-154,0xm866,-168v-59,119,-166,197,-331,197v-115,0,-200,-38,-256,-113v-56,-75,-84,-188,-84,-340r0,-694r184,0r0,694v1,183,52,293,219,293v190,0,268,-147,268,-354r0,-633r185,0r0,1118r-185,0r0,-168"},"\u00fb":{"d":"543,-1638r147,0r246,376r-139,0r-181,-245r-180,245r-139,0xm866,-168v-59,119,-166,197,-331,197v-115,0,-200,-38,-256,-113v-56,-75,-84,-188,-84,-340r0,-694r184,0r0,694v1,183,52,293,219,293v190,0,268,-147,268,-354r0,-633r185,0r0,1118r-185,0r0,-168"},"\u00fc":{"d":"319,-1552r203,0r0,202r-203,0r0,-202xm711,-1552r202,0r0,202r-202,0r0,-202xm866,-168v-59,119,-166,197,-331,197v-115,0,-200,-38,-256,-113v-56,-75,-84,-188,-84,-340r0,-694r184,0r0,694v1,183,52,293,219,293v190,0,268,-147,268,-354r0,-633r185,0r0,1118r-185,0r0,-168"},"\u00fd":{"d":"756,-1638r198,0r-325,376r-154,0xm858,-360r-117,308v-66,176,-110,283,-133,322v-55,94,-139,156,-276,156r-148,0r0,-154r109,0v54,0,96,-16,127,-47v31,-31,70,-112,117,-243r-433,-1102r195,0r332,876r327,-876r195,0"},"\u00fe":{"d":"674,29v-147,-1,-246,-68,-299,-170r0,567r-185,0r0,-1993r185,0r0,590v55,-101,153,-170,299,-170v135,0,241,52,318,157v77,105,116,250,116,435v0,182,-39,325,-116,429v-77,104,-183,155,-318,155xm915,-559v0,-143,-22,-250,-67,-323v-45,-73,-112,-109,-201,-109v-89,0,-157,36,-203,109v-46,73,-69,181,-69,323v0,141,23,249,69,322v46,73,114,110,203,110v89,0,156,-36,201,-109v45,-73,67,-180,67,-323"},"\u00ff":{"d":"319,-1552r203,0r0,202r-203,0r0,-202xm711,-1552r202,0r0,202r-202,0r0,-202xm858,-360r-117,308v-66,176,-110,283,-133,322v-55,94,-139,156,-276,156r-148,0r0,-154r109,0v54,0,96,-16,127,-47v31,-31,70,-112,117,-243r-433,-1102r195,0r332,876r327,-876r195,0"},"\u0152":{"d":"1217,-170r0,170r-605,0v-197,0,-336,-55,-418,-166v-82,-111,-122,-304,-122,-579v0,-278,41,-473,122,-583v81,-110,221,-165,418,-165r594,0r0,170r-358,0r0,442r328,0r0,170r-328,0r0,541r369,0xm651,-1323v-147,-7,-253,24,-307,115v-45,77,-70,231,-70,463v0,231,24,385,70,461v46,76,128,114,246,114r61,0r0,-1153"},"\u0153":{"d":"1047,-657v7,-175,-7,-336,-164,-338v-58,0,-98,24,-125,69v-29,48,-41,159,-39,269r328,0xm373,-123v68,0,116,-28,143,-84v27,-56,41,-164,41,-323v0,-194,-13,-320,-40,-378v-27,-58,-75,-87,-144,-87v-69,0,-116,27,-143,83v-27,56,-40,174,-40,353v0,179,13,297,40,353v27,56,74,83,143,83xm637,-1020v46,-79,133,-127,254,-127v117,0,199,40,247,119v48,79,72,220,72,424r0,90r-491,0r0,84v0,109,16,187,49,235v33,48,87,72,162,72v115,0,200,-41,258,-104r0,172v-72,52,-145,84,-258,84v-138,0,-233,-50,-293,-133v-63,81,-135,133,-264,133v-126,0,-217,-46,-274,-138v-57,-92,-85,-242,-85,-450v0,-208,28,-358,85,-450v57,-92,148,-138,274,-138v130,0,206,47,264,127"},"\u0178":{"d":"37,-1493r215,0r364,659r363,-659r217,0r-479,823r0,670r-203,0r0,-670xm319,-1870r203,0r0,203r-203,0r0,-203xm711,-1870r202,0r0,203r-202,0r0,-203"},"\u02c6":{"d":"543,-1638r147,0r246,376r-139,0r-181,-245r-180,245r-139,0"},"\u02dc":{"d":"752,-1309v-117,1,-159,-99,-234,-145v-35,-21,-71,-7,-87,27v-12,25,-19,64,-20,118r-124,0v1,-89,19,-158,52,-208v44,-67,130,-92,213,-60v59,24,111,98,164,131v35,21,70,7,86,-27v12,-25,18,-64,19,-118r125,0v-1,89,-18,159,-52,208v-34,49,-81,74,-142,74"},"\u2013":{"d":"0,-633r1233,0r0,141r-1233,0r0,-141"},"\u2014":{"d":"0,-633r1233,0r0,141r-1233,0r0,-141"},"\u2018":{"d":"715,-967r-252,0r0,-207r196,-382r154,0r-98,382r0,207"},"\u2019":{"d":"561,-1556r252,0r0,206r-197,383r-153,0r98,-383r0,-206"},"\u201a":{"d":"502,-303r252,0r0,207r-197,383r-154,0r99,-383r0,-207"},"\u201c":{"d":"924,-967r-252,0r0,-207r196,-382r154,0r-98,382r0,207xm465,-967r-254,0r0,-207r199,-382r153,0r-98,382r0,207"},"\u201d":{"d":"768,-1556r252,0r0,206r-197,383r-153,0r98,-383r0,-206xm309,-1556r252,0r0,206r-196,383r-154,0r98,-383r0,-206"},"\u201e":{"d":"768,-303r252,0r0,207r-197,383r-153,0r98,-383r0,-207xm309,-303r252,0r0,207r-196,383r-154,0r98,-383r0,-207"},"\u2022":{"d":"614,-465v-162,0,-295,-134,-295,-297v0,-162,135,-295,297,-295v161,0,297,135,297,295v0,162,-137,297,-299,297"},"\u2026":{"d":"80,-305r252,0r0,305r-252,0r0,-305xm899,-305r252,0r0,305r-252,0r0,-305xm489,-305r252,0r0,305r-252,0r0,-305"},"\u2039":{"d":"815,-1059r0,191r-301,268r301,268r0,191r-469,-418r0,-82"},"\u203a":{"d":"420,-1059r469,418r0,82r-469,418r0,-191r301,-268r-301,-268r0,-191"},"\u20ac":{"d":"203,-653v-3,-64,-6,-118,0,-187r-166,0r49,-108r125,0v32,-189,94,-332,185,-428v91,-96,211,-144,360,-144v128,0,216,32,305,82r0,207v-74,-69,-178,-129,-303,-129v-97,0,-175,35,-233,104v-58,69,-95,172,-111,308r481,0r-49,108r-442,0v-5,53,-3,125,-1,187r361,0r-49,110r-301,0v15,135,52,237,110,307v58,70,136,105,234,105v127,0,228,-59,303,-129r0,207v-88,51,-177,82,-305,82v-151,0,-272,-48,-364,-144v-92,-96,-152,-239,-181,-428r-174,0r49,-110r117,0"},"\u2122":{"d":"438,-1493r0,94r-162,0r0,484r-114,0r0,-484r-162,0r0,-94r438,0xm692,-1493r137,256r125,-256r172,0r0,578r-114,0r0,-482r-156,301r-55,0r-166,-301r0,482r-113,0r0,-578r170,0"}}}); diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-webfont.eot b/assets/fonts/dejavu/mono/DejaVuSansMono-webfont.eot new file mode 100644 index 0000000..0335100 Binary files /dev/null and b/assets/fonts/dejavu/mono/DejaVuSansMono-webfont.eot differ diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-webfont.svg b/assets/fonts/dejavu/mono/DejaVuSansMono-webfont.svg new file mode 100644 index 0000000..b8bc1d5 --- /dev/null +++ b/assets/fonts/dejavu/mono/DejaVuSansMono-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved._DejaVu changes are in public domain_ +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-webfont.ttf b/assets/fonts/dejavu/mono/DejaVuSansMono-webfont.ttf new file mode 100644 index 0000000..b590c7f Binary files /dev/null and b/assets/fonts/dejavu/mono/DejaVuSansMono-webfont.ttf differ diff --git a/assets/fonts/dejavu/mono/DejaVuSansMono-webfont.woff b/assets/fonts/dejavu/mono/DejaVuSansMono-webfont.woff new file mode 100644 index 0000000..500741b Binary files /dev/null and b/assets/fonts/dejavu/mono/DejaVuSansMono-webfont.woff differ diff --git a/assets/fonts/dejavu/sans/dejavusans-bold-webfont.eot b/assets/fonts/dejavu/sans/dejavusans-bold-webfont.eot new file mode 100644 index 0000000..fc68fd9 Binary files /dev/null and b/assets/fonts/dejavu/sans/dejavusans-bold-webfont.eot differ diff --git a/assets/fonts/dejavu/sans/dejavusans-bold-webfont.svg b/assets/fonts/dejavu/sans/dejavusans-bold-webfont.svg new file mode 100644 index 0000000..0803b63 --- /dev/null +++ b/assets/fonts/dejavu/sans/dejavusans-bold-webfont.svg @@ -0,0 +1,249 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/sans/dejavusans-bold-webfont.ttf b/assets/fonts/dejavu/sans/dejavusans-bold-webfont.ttf new file mode 100644 index 0000000..e541c3a Binary files /dev/null and b/assets/fonts/dejavu/sans/dejavusans-bold-webfont.ttf differ diff --git a/assets/fonts/dejavu/sans/dejavusans-bold-webfont.woff b/assets/fonts/dejavu/sans/dejavusans-bold-webfont.woff new file mode 100644 index 0000000..f25ca82 Binary files /dev/null and b/assets/fonts/dejavu/sans/dejavusans-bold-webfont.woff differ diff --git a/assets/fonts/dejavu/sans/dejavusans-extralight-webfont.eot b/assets/fonts/dejavu/sans/dejavusans-extralight-webfont.eot new file mode 100644 index 0000000..d060c15 Binary files /dev/null and b/assets/fonts/dejavu/sans/dejavusans-extralight-webfont.eot differ diff --git a/assets/fonts/dejavu/sans/dejavusans-extralight-webfont.svg b/assets/fonts/dejavu/sans/dejavusans-extralight-webfont.svg new file mode 100644 index 0000000..5d4737c --- /dev/null +++ b/assets/fonts/dejavu/sans/dejavusans-extralight-webfont.svg @@ -0,0 +1,238 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/sans/dejavusans-extralight-webfont.ttf b/assets/fonts/dejavu/sans/dejavusans-extralight-webfont.ttf new file mode 100644 index 0000000..9d3a592 Binary files /dev/null and b/assets/fonts/dejavu/sans/dejavusans-extralight-webfont.ttf differ diff --git a/assets/fonts/dejavu/sans/dejavusans-extralight-webfont.woff b/assets/fonts/dejavu/sans/dejavusans-extralight-webfont.woff new file mode 100644 index 0000000..7ad6d64 Binary files /dev/null and b/assets/fonts/dejavu/sans/dejavusans-extralight-webfont.woff differ diff --git a/assets/fonts/dejavu/sans/dejavusans-webfont.eot b/assets/fonts/dejavu/sans/dejavusans-webfont.eot new file mode 100644 index 0000000..d4d127e Binary files /dev/null and b/assets/fonts/dejavu/sans/dejavusans-webfont.eot differ diff --git a/assets/fonts/dejavu/sans/dejavusans-webfont.svg b/assets/fonts/dejavu/sans/dejavusans-webfont.svg new file mode 100644 index 0000000..3a56093 --- /dev/null +++ b/assets/fonts/dejavu/sans/dejavusans-webfont.svg @@ -0,0 +1,5478 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/sans/dejavusans-webfont.ttf b/assets/fonts/dejavu/sans/dejavusans-webfont.ttf new file mode 100644 index 0000000..902c460 Binary files /dev/null and b/assets/fonts/dejavu/sans/dejavusans-webfont.ttf differ diff --git a/assets/fonts/dejavu/sans/dejavusans-webfont.woff b/assets/fonts/dejavu/sans/dejavusans-webfont.woff new file mode 100644 index 0000000..42bd76f Binary files /dev/null and b/assets/fonts/dejavu/sans/dejavusans-webfont.woff differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-Bold-cufon.js b/assets/fonts/dejavu/serif/DejaVuSerif-Bold-cufon.js new file mode 100644 index 0000000..092fae9 --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerif-Bold-cufon.js @@ -0,0 +1,18 @@ +/*! + * The following copyright notice may not be removed under any circumstances. + * + * Copyright: + * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + * DejaVu changes are in public domain + * + * + * Manufacturer: + * DejaVu fonts team + * + * Vendor URL: + * http://dejavu.sourceforge.net + * + * License information: + * http://dejavu.sourceforge.net/wiki/index.php/License + */ +Cufon.registerFont({"w":1425,"face":{"font-family":"DejaVu Serif","font-weight":700,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 6 8 3 5 6 5 2 2 4","ascent":"1556","descent":"-492","x-height":"29","bbox":"-152 -1923 2324 483","underline-thickness":"90","underline-position":"-85","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":713},"!":{"d":"449,29v-102,0,-189,-89,-189,-191v0,-101,88,-190,189,-190v101,0,190,89,190,190v0,102,-89,191,-190,191xm262,-1493r375,0r-119,842r0,190r-139,0r0,-190","w":899},"\"":{"d":"432,-1493r0,555r-237,0r0,-555r237,0xm872,-1493r0,555r-237,0r0,-555r237,0","w":1067},"#":{"d":"1024,-872r-264,0r-70,274r264,0xm911,-1470r-96,385r264,0r97,-385r221,0r-97,385r277,0r0,213r-330,0r-69,274r284,0r0,215r-336,0r-96,383r-221,0r96,-383r-264,0r-96,383r-223,0r96,-383r-279,0r0,-215r328,0r70,-274r-283,0r0,-213r338,0r96,-385r223,0","w":1716},"$":{"d":"647,29v-168,-4,-315,-38,-452,-88r0,-291r120,0v23,180,128,270,332,266r0,-405v-166,-37,-285,-87,-357,-150v-72,-63,-108,-149,-108,-258v2,-258,196,-389,465,-393r0,-269r121,0r0,269v158,9,291,38,414,88r0,272r-121,0v-20,-151,-126,-245,-293,-247r0,372v179,39,305,93,378,159v73,66,109,159,109,279v0,123,-43,219,-127,287v-84,68,-204,105,-360,109r0,270r-121,0r0,-270xm647,-1178v-97,11,-184,61,-184,156v0,47,15,84,43,113v28,29,75,52,141,71r0,-340xm768,-84v117,-13,205,-58,205,-172v0,-49,-17,-90,-49,-122v-32,-32,-84,-58,-156,-79r0,373"},"%":{"d":"442,-1419v-43,0,-71,24,-92,69v-35,77,-35,396,0,473v21,46,49,70,92,70v43,0,72,-24,93,-70v35,-77,35,-396,0,-473v-21,-45,-50,-69,-93,-69xm49,-1114v0,-258,138,-406,393,-406v256,0,394,147,394,406v0,259,-138,407,-394,407v-255,0,-393,-149,-393,-407xm1354,-1520r172,0r-934,1549r-172,0xm1110,-379v0,-257,138,-405,393,-405v256,0,393,147,393,405v0,259,-137,408,-393,408v-255,0,-393,-150,-393,-408xm1503,-684v-43,0,-72,25,-93,70v-35,77,-36,396,0,472v21,46,50,70,93,70v43,0,72,-24,93,-70v35,-77,35,-395,0,-472v-21,-45,-50,-70,-93,-70","w":1946},"&":{"d":"1618,-795v-23,194,-83,342,-182,459r206,215r170,0r0,121r-479,0r-127,-131v-123,99,-276,160,-485,160v-200,0,-356,-43,-469,-128v-113,-85,-170,-203,-170,-352v0,-109,28,-202,86,-279v58,-77,149,-143,272,-198v-54,-73,-102,-142,-102,-246v0,-109,46,-194,138,-255v92,-61,220,-91,386,-91v134,0,260,23,395,47r0,312r-129,0v-23,-151,-82,-235,-241,-238v-124,-2,-217,62,-217,178v0,61,60,153,179,274r30,29r460,482v79,-89,125,-205,137,-359r-182,0r0,-120r500,0r0,120r-176,0xm436,-516v-5,219,160,391,377,387v126,-2,214,-42,299,-100r-565,-588v-65,79,-109,172,-111,301","w":1849},"'":{"d":"432,-1493r0,555r-237,0r0,-555r237,0","w":627},"(":{"d":"862,319v-225,-83,-392,-203,-503,-358v-111,-155,-166,-348,-166,-579v0,-231,55,-423,164,-576v109,-153,278,-274,505,-362r0,120v-105,64,-179,160,-228,284v-89,225,-90,841,0,1066v50,124,123,221,228,285r0,120","w":969},")":{"d":"104,319r0,-120v105,-64,179,-161,228,-285v90,-225,89,-841,0,-1066v-50,-124,-123,-220,-228,-284r0,-120v227,88,396,209,506,362v110,153,164,345,164,576v0,231,-55,424,-166,579v-111,155,-279,275,-504,358","w":969},"*":{"d":"1026,-1212r-360,168r360,170r-98,155r-328,-239r27,389r-183,0r27,-389r-328,239r-98,-155r361,-170r-361,-168r98,-158r328,242r-27,-392r183,0r-27,392r328,-242","w":1071},"+":{"d":"973,-1284r0,526r526,0r0,230r-526,0r0,526r-230,0r0,-526r-526,0r0,-230r526,0r0,-526r230,0","w":1716},",":{"d":"27,197v126,-103,199,-221,202,-430r0,-86r285,0v-2,337,-144,524,-377,657","w":713},"-":{"d":"111,-684r628,0r0,270r-628,0r0,-270","w":850},".":{"d":"356,29v-101,0,-190,-89,-190,-191v0,-101,89,-190,190,-190v102,0,191,89,191,190v0,102,-89,191,-191,191","w":713},"\/":{"d":"526,-1493r222,0r-527,1683r-221,0","w":748},"0":{"d":"713,-88v80,0,135,-36,165,-109v30,-73,44,-255,44,-548v0,-291,-14,-473,-44,-547v-30,-74,-85,-111,-165,-111v-80,0,-135,36,-165,109v-30,73,-44,256,-44,549v0,293,14,475,44,548v30,73,85,109,165,109xm713,29v-199,0,-352,-66,-458,-199v-106,-133,-159,-325,-159,-575v0,-250,53,-442,159,-575v106,-133,259,-200,458,-200v199,0,351,67,457,200v106,133,159,325,159,575v0,250,-53,442,-159,575v-106,133,-258,199,-457,199"},"1":{"d":"281,0r0,-121r280,0r0,-1208r-311,184r0,-149r375,-226r315,0r0,1399r281,0r0,121r-940,0"},"2":{"d":"549,-1403v-173,0,-257,114,-279,279r-120,0r0,-322v149,-45,301,-73,483,-74v190,0,339,38,445,116v106,78,159,186,159,325v0,99,-29,187,-88,265v-59,78,-171,171,-336,279r-416,273r707,0r0,-176r137,0r0,438r-1104,0r0,-244r221,-153v189,-130,314,-241,377,-332v63,-91,94,-198,94,-320v1,-213,-82,-354,-280,-354"},"3":{"d":"567,-1403v-165,0,-253,97,-270,252r-121,0r0,-299v157,-42,316,-70,498,-70v180,0,318,32,414,96v96,64,145,157,145,277v0,203,-136,298,-326,332v240,38,387,154,387,412v0,139,-56,247,-166,321v-110,74,-270,111,-479,111v-186,0,-346,-34,-506,-80r0,-328r121,0v13,182,115,291,305,291v203,1,318,-120,318,-324v0,-213,-120,-339,-332,-338r-66,0r0,-120r52,0v190,0,294,-86,295,-271v1,-170,-98,-263,-269,-262"},"4":{"d":"1307,0r-822,0r0,-121r222,0r0,-272r-623,0r0,-115r625,-1012r376,0r0,998r256,0r0,129r-256,0r0,272r222,0r0,121xm707,-522r0,-725r-445,725r445,0"},"5":{"d":"582,-883v-120,0,-186,53,-246,129r-100,0r0,-739r919,0r0,262r-799,0r0,328v80,-62,185,-102,318,-103v347,-5,597,187,596,519v0,342,-248,520,-608,516v-188,-2,-338,-32,-494,-82r0,-326r120,0v8,189,94,290,285,291v98,0,171,-32,218,-98v47,-66,71,-166,71,-301v0,-133,-24,-231,-70,-297v-46,-66,-116,-99,-210,-99"},"6":{"d":"1116,-1196v-31,-129,-120,-206,-274,-207v-119,0,-205,41,-258,122v-53,81,-79,213,-80,396v81,-65,184,-103,321,-104v305,-3,490,195,490,502v0,338,-217,518,-565,516v-430,-3,-621,-276,-621,-727v0,-271,58,-476,175,-614v117,-138,290,-208,519,-208v147,0,280,26,414,60r0,264r-121,0xm727,-88v69,0,114,-32,147,-88v55,-96,55,-510,0,-606v-33,-56,-78,-88,-147,-88v-69,0,-115,31,-147,88v-55,96,-55,510,0,606v32,56,78,88,147,88"},"7":{"d":"1255,-1239r-616,1239r-203,0r600,-1210r-737,0r0,202r-137,0r0,-485r1093,0r0,254"},"8":{"d":"106,-397v0,-237,145,-364,363,-398v-105,-24,-183,-65,-235,-121v-52,-56,-78,-127,-78,-214v0,-127,47,-223,142,-290v95,-67,232,-100,413,-100v180,0,318,33,413,100v95,67,142,163,142,290v0,87,-26,158,-78,214v-52,56,-131,97,-236,121v220,34,363,160,363,398v0,137,-51,243,-155,316v-104,73,-254,110,-449,110v-195,0,-345,-37,-449,-110v-104,-73,-156,-179,-156,-316xm842,-910v48,-64,46,-371,-1,-434v-28,-38,-69,-59,-130,-59v-62,0,-103,21,-131,59v-47,63,-47,371,0,434v28,37,69,58,131,58v62,0,103,-21,131,-58xm918,-414v0,-122,-15,-206,-46,-252v-31,-46,-85,-69,-161,-69v-77,0,-130,23,-161,69v-31,46,-46,130,-46,252v0,123,15,209,46,256v31,47,85,70,161,70v75,0,129,-23,160,-70v31,-47,47,-133,47,-256"},"9":{"d":"698,-1403v-69,0,-114,30,-146,87v-55,96,-55,512,0,608v32,56,77,87,146,87v69,0,114,-31,147,-87v55,-96,55,-512,0,-608v-33,-56,-78,-87,-147,-87xm309,-295v31,130,120,206,275,207v117,0,203,-40,256,-122v53,-82,80,-215,81,-398v-81,65,-184,105,-321,106v-304,2,-489,-195,-489,-502v0,-339,215,-518,563,-516v429,3,622,277,622,727v0,271,-58,477,-175,615v-117,138,-290,207,-519,207v-147,0,-280,-26,-414,-60r0,-264r121,0"},":":{"d":"377,-625v-102,0,-189,-86,-189,-188v0,-102,87,-191,189,-191v101,0,190,90,190,191v0,102,-88,188,-190,188xm377,29v-102,0,-189,-89,-189,-191v0,-101,88,-190,189,-190v101,0,190,89,190,190v0,102,-89,191,-190,191","w":756},";":{"d":"377,-625v-102,0,-189,-86,-189,-188v0,-102,87,-191,189,-191v101,0,190,90,190,191v0,102,-88,188,-190,188xm53,188v127,-101,200,-219,203,-428r0,-88r285,0v-4,334,-146,526,-377,658","w":756},"<":{"d":"1499,-979r-979,338r979,336r0,239r-1282,-464r0,-226r1282,-463r0,240","w":1716},"=":{"d":"217,-528r1282,0r0,227r-1282,0r0,-227xm217,-983r1282,0r0,227r-1282,0r0,-227","w":1716},">":{"d":"217,-979r0,-240r1282,463r0,226r-1282,464r0,-239r979,-336","w":1716},"?":{"d":"532,29v-101,0,-190,-89,-190,-191v0,-101,89,-190,190,-190v102,0,191,89,191,190v0,102,-89,191,-191,191xm492,-1407v-159,0,-227,102,-238,262r-121,0r0,-307v146,-40,287,-67,453,-68v312,-3,522,134,522,426v0,135,-43,240,-130,318v-87,78,-213,123,-376,135r0,205r-139,0r0,-299v177,-55,268,-161,270,-381v1,-180,-72,-291,-241,-291","w":1200},"@":{"d":"1047,-219v145,-1,228,-128,225,-285r0,-76v3,-157,-80,-285,-225,-286v-66,0,-117,31,-159,88v-79,108,-79,363,0,471v42,57,93,88,159,88xm1903,-676v3,379,-237,597,-631,584r0,-148v-53,88,-146,147,-277,148v-261,1,-409,-182,-409,-451v0,-270,148,-451,409,-450v131,1,224,60,277,147r0,-125r219,0r0,742v187,-49,301,-213,299,-449v-2,-221,-90,-360,-223,-473v-113,-97,-280,-162,-480,-162v-343,0,-555,173,-669,409v-90,188,-101,445,-28,654v67,193,209,341,384,418v93,41,194,61,303,61v185,-2,331,-55,453,-135r57,94v-150,99,-325,168,-549,168v-286,0,-490,-99,-645,-252v-153,-151,-258,-365,-258,-647v0,-282,105,-497,258,-647v159,-157,363,-250,660,-250v254,0,441,73,585,195v158,134,263,304,265,569","w":2048},"A":{"d":"-16,0r0,-121r122,0r562,-1372r239,0r563,1372r142,0r0,121r-699,0r0,-121r146,0r-123,-305r-561,0r-125,305r178,0r0,121r-444,0xm424,-547r463,0r-230,-571","w":1589},"B":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r885,0v182,0,319,31,410,92v91,61,137,154,137,277v0,89,-31,159,-94,211v-63,52,-157,85,-281,98v150,14,265,54,345,120v80,66,120,154,120,263v0,148,-56,257,-168,327v-112,70,-286,105,-524,105r-830,0xm1141,-1124v0,-194,-124,-247,-338,-248r-131,0r0,502r131,0v209,0,338,-63,338,-254xm1190,-432v0,-226,-137,-319,-375,-318r-143,0r0,629r143,0v240,0,375,-84,375,-311","w":1731},"C":{"d":"903,-1520v220,3,400,56,582,129r0,367r-127,0v-26,-125,-73,-220,-142,-282v-69,-62,-159,-93,-272,-93v-145,0,-253,54,-324,161v-71,107,-106,271,-106,493v0,222,35,386,106,493v71,107,179,160,326,160v99,0,181,-28,244,-83v63,-55,108,-139,137,-251r199,0v-76,297,-263,451,-623,455v-489,5,-817,-294,-817,-774v0,-481,328,-782,817,-775","w":1630},"D":{"d":"672,-121r139,0v156,0,271,-50,343,-150v72,-100,108,-259,108,-477v0,-217,-36,-374,-108,-474v-72,-100,-186,-150,-343,-150r-139,0r0,1251xm1690,-748v0,499,-314,748,-828,748r-766,0r0,-121r191,0r0,-1251r-191,0r0,-121r766,0v515,-3,827,247,828,745","w":1776},"E":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r1342,0r0,352r-138,0r0,-215r-628,0r0,479r391,0r0,-190r137,0r0,516r-137,0r0,-190r-391,0r0,604r647,0r0,-215r137,0r0,352r-1360,0","w":1561},"F":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r1331,0r0,352r-137,0r0,-215r-616,0r0,479r379,0r0,-190r137,0r0,516r-137,0r0,-190r-379,0r0,620r235,0r0,121r-813,0","w":1454},"G":{"d":"909,-1520v243,3,439,51,627,129r0,367r-127,0v-58,-245,-165,-375,-446,-375v-155,0,-269,52,-341,157v-72,105,-108,271,-108,497v0,224,35,389,104,495v69,106,177,158,324,158v118,0,213,-28,287,-76r0,-410r-180,0r0,-120r538,0r0,573v-201,93,-409,152,-678,154v-496,6,-823,-288,-823,-774v0,-487,327,-780,823,-775","w":1749},"H":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r768,0r0,121r-192,0r0,502r594,0r0,-502r-191,0r0,-121r768,0r0,121r-192,0r0,1251r192,0r0,121r-768,0r0,-121r191,0r0,-612r-594,0r0,612r192,0r0,121r-768,0","w":1935},"I":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r768,0r0,121r-192,0r0,1251r192,0r0,121r-768,0","w":958},"J":{"d":"188,426v-129,0,-236,-28,-338,-68r0,-235r130,0v8,115,47,182,159,182v65,0,109,-25,135,-75v26,-50,39,-142,39,-279r0,-1323r-217,0r0,-121r795,0r0,121r-191,0r0,1331v-3,336,-166,467,-512,467","w":969},"K":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r768,0r0,121r-192,0r0,545r633,-545r-160,0r0,-121r557,0r0,121r-199,0r-536,461r729,790r147,0r0,121r-506,0r-665,-725r0,604r192,0r0,121r-768,0","w":1780},"L":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r768,0r0,121r-192,0r0,1235r588,0r0,-236r135,0r0,373r-1299,0","w":1440},"M":{"d":"86,0r0,-121r190,0r0,-1251r-190,0r0,-121r616,0r426,958r428,-958r615,0r0,121r-191,0r0,1251r191,0r0,121r-768,0r0,-121r190,0r0,-1139r-463,1041r-253,0r-461,-1041r0,1139r190,0r0,121r-520,0","w":2267},"N":{"d":"90,0r0,-121r191,0r0,-1251r-191,0r0,-121r467,0r901,1057r0,-936r-190,0r0,-121r522,0r0,121r-191,0r0,1372r-262,0r-915,-1079r0,958r190,0r0,121r-522,0","w":1872},"O":{"d":"891,-92v127,0,222,-54,284,-161v62,-107,93,-271,93,-492v0,-221,-31,-386,-93,-493v-62,-107,-157,-161,-284,-161v-127,0,-221,55,-283,163v-62,108,-94,272,-94,491v0,219,32,383,94,491v62,108,156,162,283,162xm1696,-745v0,484,-315,774,-805,774v-491,0,-805,-289,-805,-774v0,-484,315,-775,805,-775v492,0,805,289,805,775","w":1784},"P":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r850,0v166,0,298,40,396,119v98,79,147,184,147,317v0,133,-49,239,-147,319v-98,80,-231,120,-396,120r-274,0r0,497r241,0r0,121r-817,0xm1069,-1057v0,-184,-107,-316,-285,-315r-112,0r0,633r112,0v178,1,285,-134,285,-318","w":1540},"Q":{"d":"1063,16v80,89,200,111,377,107r0,246v-303,4,-451,-120,-555,-340v-489,-3,-799,-287,-799,-774v0,-484,315,-775,805,-775v492,0,805,289,805,775v0,436,-244,705,-633,761xm891,-92v127,0,222,-54,284,-161v62,-107,93,-271,93,-492v0,-221,-31,-386,-93,-493v-62,-107,-157,-161,-284,-161v-127,0,-221,55,-283,163v-62,108,-94,272,-94,491v0,219,32,383,94,491v62,108,156,162,283,162","w":1784},"R":{"d":"1087,-729v132,21,200,85,256,192r218,416r153,0r0,121r-491,0r-238,-451v-46,-93,-85,-153,-117,-179v-43,-36,-115,-41,-196,-38r0,547r192,0r0,121r-768,0r0,-121r191,0r0,-1251r-191,0r0,-121r852,0v173,0,308,35,402,105v94,70,141,168,141,296v0,104,-34,186,-101,246v-67,60,-168,100,-303,117xm1094,-1081v0,-187,-105,-292,-291,-291r-131,0r0,584r131,0v186,1,291,-106,291,-293","w":1702},"S":{"d":"741,29v-221,0,-404,-40,-583,-101r0,-354r127,0v38,222,178,334,436,334v103,0,182,-20,236,-59v54,-39,81,-97,81,-173v0,-60,-19,-106,-55,-140v-68,-65,-315,-113,-451,-148v-146,-37,-249,-90,-308,-156v-59,-66,-89,-160,-89,-283v1,-312,230,-472,561,-469v205,2,389,37,566,88r0,330r-127,0v-40,-206,-162,-296,-406,-297v-99,0,-173,17,-223,51v-50,34,-76,86,-76,154v0,62,19,108,52,142v59,59,339,121,479,155v139,35,239,89,301,162v62,73,94,174,94,303v0,151,-52,266,-156,344v-104,78,-257,117,-459,117","w":1479},"T":{"d":"371,0r0,-121r198,0r0,-1235r-409,0r0,236r-137,0r0,-373r1480,0r0,373r-135,0r0,-236r-412,0r0,1235r199,0r0,121r-784,0","w":1524},"U":{"d":"905,29v-464,0,-645,-173,-645,-635r0,-766r-190,0r0,-121r768,0r0,121r-191,0r0,747v0,186,29,317,87,391v58,74,157,111,298,111v137,0,234,-38,292,-113v58,-75,87,-204,87,-389r0,-747r-190,0r0,-121r520,0r0,121r-191,0r0,768v-5,464,-178,633,-645,633","w":1786},"V":{"d":"1618,-1493r0,121r-125,0r-563,1372r-238,0r-563,-1372r-141,0r0,-121r700,0r0,121r-145,0r403,989r406,-989r-178,0r0,-121r444,0","w":1589},"W":{"d":"1745,0r-258,0r-338,-1087r-338,1087r-258,0r-426,-1372r-145,0r0,-121r708,0r0,121r-160,0r285,917r322,-1038r284,0r328,1055r291,-934r-178,0r0,-121r462,0r0,121r-153,0","w":2300},"X":{"d":"694,-575r-311,454r184,0r0,121r-530,0r0,-121r184,0r393,-571r-467,-680r-137,0r0,-121r742,0r0,121r-164,0r289,420r286,-420r-174,0r0,-121r520,0r0,121r-184,0r-369,536r490,715r141,0r0,121r-745,0r0,-121r166,0","w":1589},"Y":{"d":"352,0r0,-121r201,0r0,-497r-444,-754r-127,0r0,-121r716,0r0,121r-166,0r336,569r334,-569r-149,0r0,-121r428,0r0,121r-127,0r-414,702r0,549r201,0r0,121r-789,0","w":1462},"Z":{"d":"76,0r0,-141r891,-1215r-715,0r0,223r-137,0r0,-360r1296,0r0,141r-881,1215r754,0r0,-209r137,0r0,346r-1345,0","w":1495},"[":{"d":"256,-1556r567,0r0,120r-213,0r0,1586r213,0r0,120r-567,0r0,-1826","w":969},"\\":{"d":"221,-1493r527,1683r-222,0r-526,-1683r221,0","w":748},"]":{"d":"713,-1556r0,1826r-568,0r0,-120r213,0r0,-1586r-213,0r0,-120r568,0","w":969},"^":{"d":"973,-1493r536,557r-213,0r-438,-315r-438,315r-213,0r543,-557r223,0","w":1716},"_":{"d":"1024,293r0,190r-1024,0r0,-190r1024,0","w":1024},"`":{"d":"420,-1638r258,376r-164,0r-373,-376r279,0","w":1024},"a":{"d":"166,-1024v121,-43,253,-68,412,-68v190,0,330,35,418,106v88,71,132,182,132,333r0,532r152,0r0,121r-506,0r0,-135v-84,101,-184,162,-352,164v-216,2,-339,-122,-338,-338v0,-119,42,-209,126,-268v84,-59,209,-89,378,-89r186,0r0,-63v0,-172,-78,-252,-250,-252v-150,0,-213,60,-245,186r-113,0r0,-229xm592,-137v111,1,182,-83,182,-197r0,-213r-133,0v-132,-1,-206,76,-205,209v0,124,41,199,156,201","w":1327},"b":{"d":"862,29v-157,-1,-252,-58,-309,-164r0,135r-506,0r0,-121r152,0r0,-1315r-152,0r0,-120r506,0r0,628v57,-106,152,-163,309,-164v314,-1,488,232,488,560v0,329,-173,562,-488,561xm553,-479v0,124,15,214,47,269v32,55,83,83,154,83v73,0,124,-29,154,-88v30,-59,44,-164,44,-317v0,-153,-14,-258,-44,-316v-30,-58,-81,-88,-154,-88v-71,0,-122,28,-154,83v-32,55,-47,145,-47,269r0,105","w":1432},"c":{"d":"739,-84v154,-1,234,-100,250,-248r166,0v-49,236,-197,359,-475,361v-368,2,-596,-200,-596,-561v0,-354,224,-563,582,-560v171,1,316,34,454,84r0,295r-112,0v-20,-164,-87,-266,-256,-266v-99,0,-168,33,-210,100v-42,67,-63,182,-63,347v0,161,20,275,61,344v41,69,107,104,199,104","w":1247},"d":{"d":"879,-479r0,-105v0,-124,-16,-214,-48,-269v-32,-55,-83,-83,-153,-83v-73,0,-124,30,-154,88v-30,58,-45,163,-45,316v0,153,15,258,45,317v30,59,81,88,154,88v70,0,121,-28,153,-83v32,-55,48,-145,48,-269xm569,-1092v157,1,253,58,310,164r0,-508r-152,0r0,-120r506,0r0,1435r151,0r0,121r-505,0r0,-135v-57,106,-153,163,-310,164v-313,1,-485,-233,-485,-561v0,-329,171,-560,485,-560","w":1432},"e":{"d":"821,-600v0,-140,-13,-238,-39,-294v-26,-56,-70,-85,-133,-85v-61,0,-104,28,-131,83v-27,55,-40,166,-39,296r342,0xm84,-532v0,-351,218,-562,571,-560v371,2,546,233,555,611r-731,0v-1,138,20,244,62,305v41,61,108,92,200,92v162,-1,253,-93,277,-238r166,0v-60,245,-224,350,-529,351v-364,2,-571,-200,-571,-561","w":1303},"f":{"d":"666,-1556v119,0,226,14,325,38r0,228r-112,0v-10,-97,-52,-153,-152,-154v-53,0,-90,21,-116,58v-40,58,-36,210,-36,323r267,0r0,121r-267,0r0,821r205,0r0,121r-710,0r0,-121r151,0r0,-821r-158,0r0,-121r158,0r0,-133v2,-254,174,-361,445,-360","w":881},"g":{"d":"569,-1092v157,1,253,58,310,164r0,-135r505,0r0,121r-151,0r0,928v0,149,-53,264,-159,346v-106,82,-257,123,-451,123v-162,-1,-302,-27,-439,-66r0,-254r113,0v21,144,115,207,283,207v237,0,296,-104,299,-356r0,-121v-57,106,-153,163,-310,164v-313,1,-485,-233,-485,-561v0,-329,171,-560,485,-560xm879,-584v0,-124,-16,-214,-48,-269v-32,-55,-83,-83,-153,-83v-73,0,-124,30,-154,88v-30,58,-45,163,-45,316v0,153,15,258,45,317v30,59,81,88,154,88v70,0,121,-28,153,-83v32,-55,48,-145,48,-269r0,-105","w":1432},"h":{"d":"928,-1092v250,0,362,156,362,416r0,555r152,0r0,121r-635,0r0,-121r129,0r0,-565v0,-90,-11,-153,-34,-188v-23,-35,-63,-52,-120,-52v-71,0,-124,26,-157,78v-33,52,-50,136,-50,250r0,477r130,0r0,121r-635,0r0,-121r151,0r0,-1315r-158,0r0,-120r512,0r0,643v81,-118,168,-179,353,-179","w":1489},"i":{"d":"381,-1174v-105,0,-193,-86,-193,-190v0,-105,88,-192,193,-192v103,0,190,88,190,192v0,103,-87,190,-190,190xm575,-121r152,0r0,121r-657,0r0,-121r151,0r0,-821r-151,0r0,-121r505,0r0,942","w":778},"j":{"d":"371,-1174v-105,0,-193,-86,-193,-190v0,-106,87,-192,193,-192v102,0,190,89,190,192v0,103,-87,190,-190,190xm117,455v-95,-1,-185,-17,-269,-39r0,-226r113,1v3,100,31,149,127,151v49,0,83,-16,102,-47v19,-31,29,-88,29,-170r0,-1067r-151,0r0,-121r505,0r0,1188v0,109,-38,191,-115,247v-77,56,-191,83,-341,83","w":741},"k":{"d":"709,0r-639,0r0,-121r151,0r0,-1315r-151,0r0,-120r505,0r0,999r429,-385r-127,0r0,-121r485,0r0,121r-197,0r-274,246r448,575r115,0r0,121r-610,0r0,-121r125,0r-295,-379r-99,88r0,291r134,0r0,121","w":1419},"l":{"d":"575,-121r152,0r0,121r-657,0r0,-121r151,0r0,-1315r-151,0r0,-120r505,0r0,1435","w":778},"m":{"d":"907,-1092v183,0,279,70,336,203v88,-123,177,-203,361,-203v256,0,365,150,364,416r0,555r152,0r0,121r-633,0r0,-121r127,0r0,-502v0,-133,-10,-216,-30,-251v-20,-35,-59,-52,-114,-52v-141,0,-198,121,-198,279r0,526r127,0r0,121r-608,0r0,-121r127,0r0,-502v0,-133,-10,-216,-31,-251v-21,-35,-58,-52,-113,-52v-142,0,-199,121,-199,279r0,526r127,0r0,121r-632,0r0,-121r151,0r0,-821r-151,0r0,-121r505,0r0,150v75,-111,164,-179,332,-179","w":2167},"n":{"d":"928,-1092v250,0,362,156,362,416r0,555r152,0r0,121r-635,0r0,-121r129,0r0,-565v0,-90,-11,-153,-34,-188v-23,-35,-63,-52,-120,-52v-71,0,-124,26,-157,78v-33,52,-50,136,-50,250r0,477r130,0r0,121r-635,0r0,-121r151,0r0,-821r-151,0r0,-121r505,0r0,150v81,-118,168,-179,353,-179","w":1489},"o":{"d":"684,-84v75,0,128,-32,158,-96v30,-64,45,-181,45,-352v0,-171,-15,-288,-45,-352v-30,-64,-83,-95,-158,-95v-75,0,-128,33,-159,97v-31,64,-46,181,-46,350v0,169,15,286,46,351v31,65,84,97,159,97xm1284,-532v0,354,-238,561,-600,561v-363,0,-600,-206,-600,-561v0,-356,237,-560,600,-560v364,0,600,204,600,560","w":1366},"p":{"d":"553,-584r0,105v0,124,15,214,47,269v32,55,83,83,154,83v73,0,124,-29,154,-88v30,-59,44,-164,44,-317v0,-153,-14,-258,-44,-316v-30,-58,-81,-88,-154,-88v-71,0,-122,28,-154,83v-32,55,-47,145,-47,269xm862,29v-157,-1,-252,-58,-309,-164r0,440r164,0r0,121r-670,0r0,-121r152,0r0,-1247r-152,0r0,-121r506,0r0,135v57,-106,152,-163,309,-164v314,-1,488,232,488,560v0,329,-173,562,-488,561","w":1432},"q":{"d":"569,-1092v157,1,253,58,310,164r0,-135r505,0r0,121r-151,0r0,1247r151,0r0,121r-669,0r0,-121r164,0r0,-440v-57,106,-153,163,-310,164v-313,1,-485,-233,-485,-561v0,-329,171,-560,485,-560xm879,-584v0,-124,-16,-214,-48,-269v-32,-55,-83,-83,-153,-83v-73,0,-124,30,-154,88v-30,58,-45,163,-45,316v0,153,15,258,45,317v30,59,81,88,154,88v70,0,121,-28,153,-83v32,-55,48,-145,48,-269r0,-105","w":1432},"r":{"d":"922,-1092v58,0,116,9,178,17r0,317r-113,0v-7,-107,-54,-167,-162,-168v-77,0,-138,34,-183,102v-45,68,-67,162,-67,283r0,420r193,0r0,121r-698,0r0,-121r151,0r0,-821r-162,0r0,-121r516,0r0,189v64,-135,163,-218,347,-218","w":1079},"s":{"d":"541,29v-158,0,-302,-26,-445,-60r0,-297r113,0v18,157,120,244,293,244v72,0,128,-13,166,-38v38,-25,57,-60,57,-107v0,-43,-13,-75,-37,-99v-46,-46,-198,-75,-287,-98v-110,-29,-190,-67,-239,-118v-49,-51,-74,-119,-74,-206v0,-115,40,-202,120,-258v80,-56,203,-84,370,-84v158,0,291,27,436,64r0,268r-113,0v-13,-149,-108,-219,-274,-219v-72,0,-126,12,-163,35v-37,23,-56,56,-56,100v0,93,55,114,147,137r145,37v139,35,236,79,289,131v53,52,80,124,80,217v0,120,-43,209,-129,266v-86,57,-218,85,-399,85","w":1153},"t":{"d":"578,29v-280,0,-375,-55,-375,-320r0,-651r-154,0r0,-121r154,0r0,-330r354,0r0,330r295,0r0,121r-295,0r0,651v0,93,7,150,22,173v15,23,41,34,80,34v97,0,125,-70,128,-176r149,0v-17,226,-109,289,-358,289","w":946},"u":{"d":"561,29v-250,0,-362,-156,-362,-416r0,-555r-152,0r0,-121r506,0r0,621v0,132,11,216,33,252v22,36,62,53,121,53v71,0,124,-26,157,-79v33,-53,49,-136,49,-251r0,-475r-129,0r0,-121r484,0r0,942r151,0r0,121r-506,0r0,-150v-80,118,-168,179,-352,179","w":1489},"v":{"d":"457,0r-377,-942r-117,0r0,-121r610,0r0,121r-129,0r269,672r268,-672r-139,0r0,-121r399,0r0,121r-123,0r-377,942r-284,0","w":1190},"w":{"d":"1104,-1063r242,709r200,-588r-139,0r0,-121r397,0r0,121r-125,0r-321,942r-244,0r-225,-666r-227,666r-242,0r-322,-942r-116,0r0,-121r602,0r0,121r-125,0r196,575r238,-696r211,0","w":1763},"x":{"d":"719,-678r188,-264r-131,0r0,-121r414,0r0,121r-141,0r-271,379r316,442r141,0r0,121r-676,0r0,-121r137,0r-200,-280r-201,280r143,0r0,121r-438,0r0,-121r152,0r282,-397r-305,-424r-119,0r0,-121r649,0r0,121r-129,0","w":1221},"y":{"d":"523,406v-103,77,-295,48,-423,6r0,-222r113,1v4,97,42,150,137,151v43,0,77,-14,105,-36v31,-25,70,-108,96,-171r-463,-1077r-115,0r0,-121r613,0r0,121r-127,0r270,629r252,-629r-141,0r0,-121r399,0r0,121r-129,0r-471,1182v-32,78,-71,133,-116,166","w":1190},"z":{"d":"72,0r0,-121r610,-825r-459,0r0,182r-119,0r0,-299r990,0r0,119r-611,825r492,0r0,-192r119,0r0,311r-1022,0","w":1163},"{":{"d":"836,-16v3,172,31,225,194,229r103,0r0,121v-148,1,-403,-2,-466,-24v-86,-30,-152,-82,-173,-178v-21,-98,-11,-289,-13,-417v-3,-200,-52,-263,-248,-266r-61,0r0,-121r61,0v196,-3,245,-66,248,-266v2,-130,-8,-316,13,-416v20,-96,87,-148,173,-178v63,-22,318,-25,466,-24r0,120r-103,0v-163,4,-194,57,-194,230r0,270v-3,217,-53,279,-228,324v175,50,228,105,228,325r0,271","w":1317},"|":{"d":"479,-1565r0,2048r-215,0r0,-2048r215,0","w":745},"}":{"d":"1083,-551v-195,3,-244,67,-247,266v-2,130,9,317,-12,417v-20,96,-88,148,-174,178v-63,22,-316,25,-464,24r0,-121r101,0v161,-4,194,-57,194,-229r0,-271v3,-219,55,-275,230,-325v-175,-44,-230,-108,-230,-324r0,-270v-3,-173,-32,-226,-194,-230r-101,0r0,-120v148,-1,402,2,464,24v86,30,154,82,174,178v21,98,10,288,12,416v3,199,52,263,247,266r62,0r0,121r-62,0","w":1317},"~":{"d":"1499,-625v-105,96,-211,162,-381,168v-68,2,-200,-39,-292,-75v-114,-45,-204,-66,-269,-66v-51,0,-105,12,-161,36v-56,24,-115,60,-179,109r0,-206v64,-58,127,-101,189,-127v156,-64,263,-52,438,16v102,40,247,84,315,84v51,0,105,-12,161,-36v56,-24,115,-60,179,-109r0,206","w":1716},"\u00a0":{"w":713},"\u00a1":{"d":"449,-1520v101,0,190,90,190,191v0,101,-89,188,-190,188v-102,0,-189,-86,-189,-188v0,-102,87,-191,189,-191xm637,0r-375,0r117,-842r0,-190r139,0r0,190","w":899},"\u00a2":{"d":"739,-94r0,-875v-66,17,-111,59,-143,125v-55,115,-55,508,0,623v31,65,76,109,143,127xm860,-88v125,-23,192,-107,207,-244r166,0v-40,202,-163,328,-373,355r0,276r-121,0r0,-270v-358,-5,-579,-204,-579,-561v0,-357,222,-554,579,-560r0,-264r121,0r0,269v119,11,214,41,338,79r0,295r-113,0v-19,-156,-79,-247,-225,-266r0,891"},"\u00a3":{"d":"881,-1520v121,0,237,17,366,35r0,283r-120,0v-6,-120,-70,-204,-189,-205v-78,0,-134,25,-168,75v-34,50,-51,132,-51,249r0,268r352,0r0,121r-352,0r0,557r420,0r0,-228r137,0r0,365r-1129,0r0,-121r193,0r0,-573r-193,0r0,-121r193,0r0,-277v0,-144,45,-251,134,-322v89,-71,224,-106,407,-106"},"\u00a4":{"d":"434,-641v0,121,98,219,219,219v119,0,219,-100,219,-219v0,-120,-99,-219,-219,-219v-119,0,-219,100,-219,219xm653,-213v-87,-1,-156,-23,-217,-55r-209,207r-151,-154r209,-209v-39,-58,-60,-125,-60,-217v0,-90,23,-160,60,-217r-209,-205r153,-158r207,211v59,-37,127,-59,217,-59v88,0,155,25,221,59r205,-211r152,154r-209,205v35,64,59,134,59,221v0,91,-22,156,-59,215r209,211r-156,154r-207,-211v-58,38,-124,59,-215,59","w":1303},"\u00a5":{"d":"326,0r0,-121r190,0r0,-346r-403,0r0,-117r403,0r0,-59r-61,-135r-342,0r0,-117r286,0r-223,-477r-137,0r0,-121r694,0r0,121r-170,0r258,551r256,-551r-151,0r0,-121r436,0r0,121r-135,0r-221,477r292,0r0,117r-350,0r-53,116r0,78r403,0r0,117r-403,0r0,346r190,0r0,121r-759,0"},"\u00a6":{"d":"479,-1432r0,758r-215,0r0,-758r215,0xm479,-408r0,758r-215,0r0,-758r215,0","w":745},"\u00a7":{"d":"545,-1520v123,0,235,21,352,45r0,240r-119,0v-8,-117,-80,-172,-207,-172v-100,0,-172,46,-172,141v0,31,9,58,27,80v41,48,179,113,252,152v125,67,213,126,260,182v47,56,70,122,70,199v0,161,-96,245,-228,295v98,57,160,125,160,264v0,91,-36,162,-109,213v-73,51,-176,76,-309,76v-131,-1,-247,-20,-366,-45r0,-240r118,0v12,124,80,171,218,172v107,1,179,-44,180,-143v0,-31,-8,-58,-26,-80v-40,-48,-180,-112,-253,-152v-124,-68,-212,-127,-259,-183v-47,-56,-71,-122,-71,-198v0,-161,98,-242,230,-293v-98,-55,-162,-127,-162,-264v0,-91,36,-162,109,-213v73,-51,174,-76,305,-76xm674,-436v49,-39,92,-83,92,-156v0,-40,-15,-77,-46,-111v-61,-69,-225,-143,-325,-198v-49,38,-90,82,-90,156v0,41,15,78,45,112v61,70,224,143,324,197","w":1071},"\u00a8":{"d":"289,-1321v-77,0,-148,-70,-148,-147v0,-78,70,-146,148,-146v78,0,145,68,145,146v0,77,-68,147,-145,147xm735,-1321v-77,0,-147,-70,-147,-147v0,-78,69,-146,147,-146v78,0,148,68,148,146v0,77,-71,147,-148,147","w":1024},"\u00a9":{"d":"740,-1430v172,-72,396,-72,568,0v171,72,332,232,403,404v70,171,71,397,0,568v-71,171,-232,332,-403,403v-172,72,-396,72,-568,0v-171,-72,-332,-232,-403,-403v-71,-171,-70,-397,0,-568v71,-172,232,-332,403,-404xm1248,-1288v-136,-56,-313,-57,-449,0v-135,57,-264,184,-320,320v-56,135,-56,317,0,452v57,136,183,263,319,319v136,56,317,57,452,1v135,-55,263,-185,319,-320v56,-135,56,-317,0,-452v-56,-136,-187,-264,-321,-320xm1059,-399v113,0,168,-78,194,-181r138,0v-35,181,-153,277,-365,279v-251,2,-420,-185,-420,-440v0,-263,169,-446,430,-443v128,2,226,31,326,76r0,223r-105,0v-13,-114,-80,-199,-198,-200v-69,0,-121,31,-163,91v-77,110,-78,394,-1,504v41,59,94,91,164,91","w":2048},"\u00aa":{"d":"113,-639r798,0r0,135r-798,0r0,-135xm123,-1473v93,-29,193,-47,311,-47v143,0,247,25,313,74v66,49,99,127,99,234r0,362r115,0r0,94r-379,0r0,-92v-63,70,-140,110,-265,111v-159,1,-256,-81,-256,-236v0,-85,32,-149,95,-191v63,-42,158,-63,286,-63r140,0v7,-139,-54,-207,-189,-207v-99,0,-160,43,-174,127r-96,0r0,-166xm444,-864v83,0,138,-54,138,-137r0,-132r-101,0v-92,-1,-155,51,-155,140v-1,80,40,129,118,129","w":997},"\u00ab":{"d":"1087,-1069r0,147r-239,322r239,321r0,148r-469,-385r0,-168xm627,-1069r0,147r-240,322r240,321r0,148r-469,-385r0,-168","w":1280},"\u00ac":{"d":"217,-903r1282,0r0,616r-229,0r0,-389r-1053,0r0,-227","w":1716},"\u00ad":{"d":"111,-684r628,0r0,270r-628,0r0,-270","w":850},"\u00ae":{"d":"1360,-954v0,125,-74,190,-194,200v55,16,95,54,118,105r100,215r60,0r0,82r-223,0r-117,-254v-21,-45,-42,-76,-62,-90v-23,-18,-64,-23,-110,-21r0,283r86,0r0,82r-369,0r0,-82r86,0r0,-643r-86,0r0,-82r453,0v147,-2,258,69,258,205xm1163,-938v0,-94,-65,-140,-164,-139r-67,0r0,278r67,0v99,1,164,-45,164,-139xm740,-1430v172,-72,396,-72,568,0v171,72,332,232,403,404v70,171,71,397,0,568v-71,171,-232,332,-403,403v-172,72,-396,72,-568,0v-171,-72,-332,-232,-403,-403v-71,-171,-70,-397,0,-568v71,-172,232,-332,403,-404xm1248,-1288v-136,-56,-313,-57,-449,0v-135,57,-264,184,-320,320v-56,135,-56,317,0,452v57,136,183,263,319,319v136,56,317,57,452,1v135,-55,263,-185,319,-320v56,-135,56,-317,0,-452v-56,-136,-187,-264,-321,-320","w":2048},"\u00af":{"d":"197,-1548r630,0r0,188r-630,0r0,-188","w":1024},"\u00b0":{"d":"178,-1200v0,-226,231,-404,461,-308v115,48,205,150,205,308v0,156,-90,259,-204,306v-231,95,-462,-78,-462,-306xm684,-1200v0,-93,-80,-172,-172,-172v-94,0,-172,78,-172,172v0,94,77,170,172,170v93,0,172,-77,172,-170","w":1024},"\u00b1":{"d":"217,-227r1282,0r0,227r-1282,0r0,-227xm973,-1284r0,358r526,0r0,228r-526,0r0,358r-230,0r0,-358r-526,0r0,-228r526,0r0,-358r230,0","w":1716},"\u00b2":{"d":"346,-1436v-89,0,-150,67,-158,152r-94,0r0,-195v167,-51,455,-64,584,23v66,44,100,102,100,178v0,55,-18,103,-54,146v-80,94,-322,214,-456,294r414,0r0,-96r100,0r0,250r-696,0r0,-133r129,-84v125,-82,204,-146,237,-193v33,-47,50,-101,50,-163v1,-106,-55,-179,-156,-179","w":897},"\u00b3":{"d":"508,-1303v0,-87,-59,-133,-150,-133v-89,0,-145,54,-151,137r-96,1r0,-183v100,-21,194,-38,301,-39v120,0,211,17,273,52v62,35,93,86,93,153v0,114,-92,165,-207,182v141,19,244,78,244,220v0,81,-35,141,-102,183v-133,83,-449,73,-623,19r0,-200r96,0v9,103,63,159,172,159v114,1,181,-56,181,-168v0,-111,-74,-168,-189,-167r-41,0r0,-84v115,6,198,-29,199,-132","w":897},"\u00b4":{"d":"604,-1638r279,0r-373,376r-164,0","w":1024},"\u00b5":{"d":"686,29v-52,0,-85,-18,-123,-41r0,317r152,0r0,121r-658,0r0,-121r152,0r0,-1247r-152,0r0,-121r506,0r0,596v0,147,11,238,34,275v23,37,63,55,122,55v71,0,122,-26,155,-79v33,-53,50,-137,50,-251r0,-475r-131,0r0,-121r485,0r0,942r152,0r0,121r-506,0r0,-125v-37,55,-74,95,-110,119v-36,24,-79,35,-128,35","w":1499},"\u00b6":{"d":"147,-1071v-2,-261,204,-422,476,-422r555,0r0,125r-113,0r0,1565r-152,0r0,-1565r-163,0r0,1565r-152,0r0,-846v-143,-11,-254,-53,-333,-127v-79,-74,-118,-172,-118,-295","w":1303},"\u00b7":{"d":"356,-522v-101,0,-190,-88,-190,-189v0,-101,89,-190,190,-190v102,0,191,89,191,190v0,102,-89,189,-191,189","w":713},"\u00b8":{"d":"428,254v73,0,122,-26,123,-92v0,-19,-6,-39,-17,-61v-11,-22,-33,-56,-67,-101r127,0v41,43,72,82,92,118v20,36,29,72,29,107v-3,129,-107,177,-250,176v-72,0,-140,-10,-202,-26r-1,-156v50,19,106,34,166,35","w":1024},"\u00b9":{"d":"162,-684r0,-94r164,0r0,-613r-183,101r0,-105r222,-125r227,0r0,742r164,0r0,94r-594,0","w":897},"\u00ba":{"d":"113,-639r798,0r0,135r-798,0r0,-135xm512,-823v51,0,85,-25,110,-71v43,-80,42,-390,0,-469v-25,-46,-59,-71,-110,-71v-51,0,-86,25,-110,70v-42,78,-42,393,0,471v24,45,59,70,110,70xm963,-1128v0,254,-185,391,-451,391v-267,0,-451,-136,-451,-391v0,-254,185,-392,451,-392v267,0,451,138,451,392","w":1024},"\u00bb":{"d":"193,-1069r469,385r0,168r-469,385r0,-148r239,-321r-239,-322r0,-147xm653,-1069r469,385r0,168r-469,385r0,-148r240,-321r-240,-322r0,-147","w":1280},"\u00bc":{"d":"162,-684r0,-94r164,0r0,-613r-183,101r0,-105r222,-125r227,0r0,742r164,0r0,94r-594,0xm2044,-16r-518,0r0,-94r125,0r0,-121r-363,0r0,-88r379,-533r252,0r0,527r147,0r0,94r-147,0r0,121r125,0r0,94xm1651,-325r0,-334r-240,334r240,0xm1450,-1520r170,0r-934,1549r-170,0","w":2136},"\u00bd":{"d":"1585,-768v-89,0,-150,67,-158,152r-94,0r0,-195v167,-51,455,-64,584,23v66,44,100,102,100,178v0,55,-19,103,-55,146v-80,94,-321,214,-455,294r414,0r0,-96r100,0r0,250r-696,0r0,-133r129,-84v125,-82,204,-146,237,-193v33,-47,50,-101,50,-163v1,-106,-55,-179,-156,-179xm162,-684r0,-94r164,0r0,-613r-183,101r0,-105r222,-125r227,0r0,742r164,0r0,94r-594,0xm1450,-1520r170,0r-934,1549r-170,0","w":2136},"\u00be":{"d":"508,-1303v0,-87,-59,-133,-150,-133v-89,0,-145,54,-151,137r-96,1r0,-183v100,-21,194,-38,301,-39v120,0,211,17,273,52v62,35,93,86,93,153v0,114,-92,165,-207,182v141,19,244,78,244,220v0,81,-35,141,-102,183v-133,83,-449,73,-623,19r0,-200r96,0v9,103,63,159,172,159v114,1,181,-56,181,-168v0,-111,-74,-168,-189,-167r-41,0r0,-84v115,6,198,-29,199,-132xm2044,-16r-518,0r0,-94r125,0r0,-121r-363,0r0,-88r379,-533r252,0r0,527r147,0r0,94r-147,0r0,121r125,0r0,94xm1651,-325r0,-334r-240,334r240,0xm1450,-1520r170,0r-934,1549r-170,0","w":2136},"\u00bf":{"d":"668,-1520v101,0,190,90,190,191v0,101,-89,188,-190,188v-102,0,-189,-86,-189,-188v0,-102,87,-191,189,-191xm709,-84v159,0,226,-103,238,-262r120,0r0,307v-146,40,-287,67,-453,68v-312,3,-522,-134,-522,-426v0,-135,43,-241,130,-319v87,-78,213,-122,376,-134r0,-205r139,0r0,299v-175,55,-268,163,-270,381v-1,181,71,291,242,291","w":1200},"\u00c0":{"d":"-16,0r0,-121r122,0r562,-1372r239,0r563,1372r142,0r0,121r-699,0r0,-121r146,0r-123,-305r-561,0r-125,305r178,0r0,121r-444,0xm424,-547r463,0r-230,-571xm756,-1899r182,264r-164,0r-297,-264r279,0","w":1589},"\u00c1":{"d":"-16,0r0,-121r122,0r562,-1372r239,0r563,1372r142,0r0,121r-699,0r0,-121r146,0r-123,-305r-561,0r-125,305r178,0r0,121r-444,0xm424,-547r463,0r-230,-571xm788,-1899r279,0r-297,264r-164,0","w":1589},"\u00c2":{"d":"-16,0r0,-121r122,0r562,-1372r239,0r563,1372r142,0r0,121r-699,0r0,-121r146,0r-123,-305r-561,0r-125,305r178,0r0,121r-444,0xm424,-547r463,0r-230,-571xm618,-1899r308,0r223,264r-164,0r-213,-161r-213,161r-164,0","w":1589},"\u00c3":{"d":"-16,0r0,-121r122,0r562,-1372r239,0r563,1372r142,0r0,121r-699,0r0,-121r146,0r-123,-305r-561,0r-125,305r178,0r0,121r-444,0xm424,-547r463,0r-230,-571xm658,-1726v-76,-23,-138,14,-134,91r-110,0v-4,-160,62,-265,208,-268v87,-2,191,72,272,95v71,20,131,-19,126,-93r110,0v5,160,-61,268,-208,268v-107,0,-174,-66,-264,-93","w":1589},"\u00c4":{"d":"-16,0r0,-121r122,0r562,-1372r239,0r563,1372r142,0r0,121r-699,0r0,-121r146,0r-123,-305r-561,0r-125,305r178,0r0,121r-444,0xm424,-547r463,0r-230,-571xm549,-1630v-78,0,-148,-68,-148,-146v0,-77,70,-147,148,-147v77,0,145,70,145,147v0,78,-66,146,-145,146xm995,-1630v-77,0,-147,-69,-147,-146v0,-77,70,-147,147,-147v78,0,148,70,148,147v0,78,-70,146,-148,146","w":1589},"\u00c5":{"d":"788,-1747v-69,0,-131,61,-131,131v0,70,62,131,131,131v71,0,132,-61,132,-131v0,-70,-62,-131,-132,-131xm1073,-1616v-2,110,-49,185,-121,232r518,1263r142,0r0,121r-699,0r0,-121r146,0r-123,-305r-561,0r-125,305r178,0r0,121r-444,0r0,-121r122,0r519,-1263v-71,-44,-119,-124,-121,-232v-3,-152,132,-285,284,-285v153,0,288,133,285,285xm424,-547r463,0r-228,-571","w":1589},"\u00c6":{"d":"401,-545r465,0r0,-827r-75,0xm676,0r0,-121r190,0r0,-303r-522,0r-143,303r164,0r0,121r-428,0r0,-121r114,0r592,-1251r-201,0r0,-121r1551,0r0,352r-138,0r0,-215r-602,0r0,479r367,0r0,-190r135,0r0,516r-135,0r0,-190r-367,0r0,604r623,0r0,-215r135,0r0,352r-1335,0","w":2118},"\u00c7":{"d":"795,254v73,0,122,-26,123,-92v0,-19,-5,-39,-16,-61v-11,-22,-34,-56,-68,-101r127,0v41,43,71,82,91,118v20,36,30,72,30,107v-3,129,-107,177,-250,176v-72,0,-140,-10,-202,-26r-1,-156v50,19,106,34,166,35xm903,-1520v220,3,400,56,582,129r0,367r-127,0v-26,-125,-73,-220,-142,-282v-69,-62,-159,-93,-272,-93v-145,0,-253,54,-324,161v-71,107,-106,271,-106,493v0,222,35,386,106,493v71,107,179,160,326,160v99,0,181,-28,244,-83v63,-55,108,-139,137,-251r199,0v-76,297,-263,451,-623,455v-489,5,-817,-294,-817,-774v0,-481,328,-782,817,-775","w":1630},"\u00c8":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r1342,0r0,352r-138,0r0,-215r-628,0r0,479r391,0r0,-190r137,0r0,516r-137,0r0,-190r-391,0r0,604r647,0r0,-215r137,0r0,352r-1360,0xm799,-1899r182,264r-164,0r-297,-264r279,0","w":1561},"\u00c9":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r1342,0r0,352r-138,0r0,-215r-628,0r0,479r391,0r0,-190r137,0r0,516r-137,0r0,-190r-391,0r0,604r647,0r0,-215r137,0r0,352r-1360,0xm831,-1899r279,0r-297,264r-164,0","w":1561},"\u00ca":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r1342,0r0,352r-138,0r0,-215r-628,0r0,479r391,0r0,-190r137,0r0,516r-137,0r0,-190r-391,0r0,604r647,0r0,-215r137,0r0,352r-1360,0xm661,-1899r308,0r223,264r-164,0r-213,-161r-213,161r-164,0","w":1561},"\u00cb":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r1342,0r0,352r-138,0r0,-215r-628,0r0,479r391,0r0,-190r137,0r0,516r-137,0r0,-190r-391,0r0,604r647,0r0,-215r137,0r0,352r-1360,0xm592,-1630v-78,0,-148,-68,-148,-146v0,-77,70,-147,148,-147v77,0,145,70,145,147v0,77,-67,146,-145,146xm1038,-1630v-77,0,-147,-68,-147,-146v0,-78,69,-147,147,-147v78,0,148,70,148,147v0,78,-70,146,-148,146","w":1561},"\u00cc":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r768,0r0,121r-192,0r0,1251r192,0r0,121r-768,0xm463,-1899r182,264r-164,0r-297,-264r279,0","w":958},"\u00cd":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r768,0r0,121r-192,0r0,1251r192,0r0,121r-768,0xm495,-1899r279,0r-297,264r-164,0","w":958},"\u00ce":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r768,0r0,121r-192,0r0,1251r192,0r0,121r-768,0xm325,-1899r308,0r223,264r-164,0r-213,-161r-213,161r-164,0","w":958},"\u00cf":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r768,0r0,121r-192,0r0,1251r192,0r0,121r-768,0xm256,-1630v-78,0,-148,-68,-148,-146v0,-77,70,-147,148,-147v77,0,145,70,145,147v0,77,-67,146,-145,146xm702,-1630v-77,0,-147,-68,-147,-146v0,-78,69,-147,147,-147v78,0,148,70,148,147v0,78,-70,146,-148,146","w":958},"\u00d0":{"d":"686,-121r139,0v156,0,269,-49,341,-149v72,-100,108,-259,108,-478v0,-217,-36,-376,-108,-475v-72,-99,-185,-149,-341,-149r-139,0r0,522r332,0r0,137r-332,0r0,592xm1702,-748v0,498,-312,748,-825,748r-768,0r0,-121r192,0r0,-592r-213,0r0,-137r213,0r0,-522r-192,0r0,-121r768,0v513,-3,825,247,825,745","w":1790},"\u00d1":{"d":"90,0r0,-121r191,0r0,-1251r-191,0r0,-121r467,0r901,1057r0,-936r-190,0r0,-121r522,0r0,121r-191,0r0,1372r-262,0r-915,-1079r0,958r190,0r0,121r-522,0xm822,-1726v-76,-23,-138,14,-134,91r-110,0v-4,-160,62,-265,208,-268v87,-2,191,72,272,95v71,20,131,-19,126,-93r110,0v5,160,-61,268,-208,268v-107,0,-174,-66,-264,-93","w":1872},"\u00d2":{"d":"891,-92v127,0,222,-54,284,-161v62,-107,93,-271,93,-492v0,-221,-31,-386,-93,-493v-62,-107,-157,-161,-284,-161v-127,0,-221,55,-283,163v-62,108,-94,272,-94,491v0,219,32,383,94,491v62,108,156,162,283,162xm1696,-745v0,484,-315,774,-805,774v-491,0,-805,-289,-805,-774v0,-484,315,-775,805,-775v492,0,805,289,805,775xm877,-1899r182,264r-164,0r-297,-264r279,0","w":1784},"\u00d3":{"d":"891,-92v127,0,222,-54,284,-161v62,-107,93,-271,93,-492v0,-221,-31,-386,-93,-493v-62,-107,-157,-161,-284,-161v-127,0,-221,55,-283,163v-62,108,-94,272,-94,491v0,219,32,383,94,491v62,108,156,162,283,162xm1696,-745v0,484,-315,774,-805,774v-491,0,-805,-289,-805,-774v0,-484,315,-775,805,-775v492,0,805,289,805,775xm909,-1899r279,0r-297,264r-164,0","w":1784},"\u00d4":{"d":"891,-92v127,0,222,-54,284,-161v62,-107,93,-271,93,-492v0,-221,-31,-386,-93,-493v-62,-107,-157,-161,-284,-161v-127,0,-221,55,-283,163v-62,108,-94,272,-94,491v0,219,32,383,94,491v62,108,156,162,283,162xm1696,-745v0,484,-315,774,-805,774v-491,0,-805,-289,-805,-774v0,-484,315,-775,805,-775v492,0,805,289,805,775xm739,-1899r308,0r223,264r-164,0r-213,-161r-213,161r-164,0","w":1784},"\u00d5":{"d":"891,-92v127,0,222,-54,284,-161v62,-107,93,-271,93,-492v0,-221,-31,-386,-93,-493v-62,-107,-157,-161,-284,-161v-127,0,-221,55,-283,163v-62,108,-94,272,-94,491v0,219,32,383,94,491v62,108,156,162,283,162xm1696,-745v0,484,-315,774,-805,774v-491,0,-805,-289,-805,-774v0,-484,315,-775,805,-775v492,0,805,289,805,775xm780,-1726v-76,-23,-138,15,-135,91r-110,0v-4,-160,62,-265,208,-268v87,-2,191,72,272,95v71,20,130,-20,126,-93r110,0v6,160,-60,269,-208,268v-106,1,-174,-66,-263,-93","w":1784},"\u00d6":{"d":"891,-92v127,0,222,-54,284,-161v62,-107,93,-271,93,-492v0,-221,-31,-386,-93,-493v-62,-107,-157,-161,-284,-161v-127,0,-221,55,-283,163v-62,108,-94,272,-94,491v0,219,32,383,94,491v62,108,156,162,283,162xm1696,-745v0,484,-315,774,-805,774v-491,0,-805,-289,-805,-774v0,-484,315,-775,805,-775v492,0,805,289,805,775xm670,-1630v-78,0,-148,-68,-148,-146v0,-77,70,-147,148,-147v77,0,145,70,145,147v0,77,-67,146,-145,146xm1116,-1630v-77,0,-147,-68,-147,-146v0,-78,69,-147,147,-147v78,0,148,70,148,147v0,78,-70,146,-148,146","w":1784},"\u00d7":{"d":"1452,-1081r-440,440r440,440r-154,154r-440,-440r-440,440r-154,-154r441,-440r-441,-440r154,-156r440,440r440,-440","w":1716},"\u00d8":{"d":"1212,-1157v-50,-142,-147,-242,-321,-242v-127,0,-221,55,-283,163v-62,108,-94,272,-94,491v0,98,6,185,21,266xm571,-334v54,144,142,242,320,242v130,0,223,-57,287,-167v70,-119,107,-397,86,-641v-3,-34,-10,-64,-19,-93xm891,-1520v223,2,398,56,530,154r203,-203r90,90r-198,199v113,131,179,302,180,535v4,484,-315,778,-805,774v-223,-2,-396,-57,-529,-156r-204,205r-90,-90r200,-201v-115,-128,-181,-300,-182,-532v-4,-484,315,-779,805,-775","w":1784},"\u00d9":{"d":"905,29v-464,0,-645,-173,-645,-635r0,-766r-190,0r0,-121r768,0r0,121r-191,0r0,747v0,186,29,317,87,391v58,74,157,111,298,111v137,0,234,-38,292,-113v58,-75,87,-204,87,-389r0,-747r-190,0r0,-121r520,0r0,121r-191,0r0,768v-5,464,-178,633,-645,633xm928,-1899r182,264r-164,0r-297,-264r279,0","w":1786},"\u00da":{"d":"905,29v-464,0,-645,-173,-645,-635r0,-766r-190,0r0,-121r768,0r0,121r-191,0r0,747v0,186,29,317,87,391v58,74,157,111,298,111v137,0,234,-38,292,-113v58,-75,87,-204,87,-389r0,-747r-190,0r0,-121r520,0r0,121r-191,0r0,768v-5,464,-178,633,-645,633xm960,-1899r279,0r-297,264r-164,0","w":1786},"\u00db":{"d":"905,29v-464,0,-645,-173,-645,-635r0,-766r-190,0r0,-121r768,0r0,121r-191,0r0,747v0,186,29,317,87,391v58,74,157,111,298,111v137,0,234,-38,292,-113v58,-75,87,-204,87,-389r0,-747r-190,0r0,-121r520,0r0,121r-191,0r0,768v-5,464,-178,633,-645,633xm790,-1899r308,0r223,264r-164,0r-213,-161r-213,161r-164,0","w":1786},"\u00dc":{"d":"905,29v-464,0,-645,-173,-645,-635r0,-766r-190,0r0,-121r768,0r0,121r-191,0r0,747v0,186,29,317,87,391v58,74,157,111,298,111v137,0,234,-38,292,-113v58,-75,87,-204,87,-389r0,-747r-190,0r0,-121r520,0r0,121r-191,0r0,768v-5,464,-178,633,-645,633xm721,-1630v-78,0,-148,-68,-148,-146v0,-77,70,-147,148,-147v77,0,145,70,145,147v0,78,-66,146,-145,146xm1167,-1630v-77,0,-147,-69,-147,-146v0,-77,70,-147,147,-147v78,0,148,70,148,147v0,78,-70,146,-148,146","w":1786},"\u00dd":{"d":"352,0r0,-121r201,0r0,-497r-444,-754r-127,0r0,-121r716,0r0,121r-166,0r336,569r334,-569r-149,0r0,-121r428,0r0,121r-127,0r-414,702r0,549r201,0r0,121r-789,0xm747,-1899r279,0r-297,264r-164,0","w":1462},"\u00de":{"d":"96,0r0,-121r191,0r0,-1251r-191,0r0,-121r815,0r0,121r-239,0r0,170r274,0v166,0,298,39,396,118v98,79,147,185,147,318v0,133,-49,238,-147,318v-98,80,-231,120,-396,120r-274,0r0,207r241,0r0,121r-817,0xm1069,-766v0,-184,-107,-316,-285,-315r-112,0r0,632r112,0v178,1,285,-133,285,-317","w":1550},"\u00df":{"d":"983,-84v98,2,171,-64,170,-160v0,-70,-55,-144,-164,-222r-121,-87v-116,-87,-192,-163,-192,-336v0,-89,27,-162,80,-217v53,-55,134,-93,241,-115v-11,-159,-55,-223,-215,-223v-158,0,-206,85,-207,254r0,1190r-505,0r0,-121r151,0r0,-1026v0,-134,47,-236,140,-305v93,-69,230,-104,409,-104v349,1,521,130,559,440v-108,-2,-201,15,-257,46v-74,41,-104,132,-56,208v25,39,137,117,194,157v118,85,193,154,226,207v33,53,49,115,49,187v0,107,-42,190,-125,250v-83,60,-199,90,-348,90v-130,0,-241,-26,-355,-60r0,-258r121,0v17,132,67,203,205,205","w":1556},"\u00e0":{"d":"508,-1638r258,376r-164,0r-373,-376r279,0xm166,-1024v121,-43,253,-68,412,-68v190,0,330,35,418,106v88,71,132,182,132,333r0,532r152,0r0,121r-506,0r0,-135v-84,101,-184,162,-352,164v-216,2,-339,-122,-338,-338v0,-119,42,-209,126,-268v84,-59,209,-89,378,-89r186,0r0,-63v0,-172,-78,-252,-250,-252v-150,0,-213,60,-245,186r-113,0r0,-229xm592,-137v111,1,182,-83,182,-197r0,-213r-133,0v-132,-1,-206,76,-205,209v0,124,41,199,156,201","w":1327},"\u00e1":{"d":"692,-1638r279,0r-373,376r-164,0xm166,-1024v121,-43,253,-68,412,-68v190,0,330,35,418,106v88,71,132,182,132,333r0,532r152,0r0,121r-506,0r0,-135v-84,101,-184,162,-352,164v-216,2,-339,-122,-338,-338v0,-119,42,-209,126,-268v84,-59,209,-89,378,-89r186,0r0,-63v0,-172,-78,-252,-250,-252v-150,0,-213,60,-245,186r-113,0r0,-229xm592,-137v111,1,182,-83,182,-197r0,-213r-133,0v-132,-1,-206,76,-205,209v0,124,41,199,156,201","w":1327},"\u00e2":{"d":"479,-1638r242,0r256,376r-164,0r-213,-225r-213,225r-164,0xm166,-1024v121,-43,253,-68,412,-68v190,0,330,35,418,106v88,71,132,182,132,333r0,532r152,0r0,121r-506,0r0,-135v-84,101,-184,162,-352,164v-216,2,-339,-122,-338,-338v0,-119,42,-209,126,-268v84,-59,209,-89,378,-89r186,0r0,-63v0,-172,-78,-252,-250,-252v-150,0,-213,60,-245,186r-113,0r0,-229xm592,-137v111,1,182,-83,182,-197r0,-213r-133,0v-132,-1,-206,76,-205,209v0,124,41,199,156,201","w":1327},"\u00e3":{"d":"442,-1440v-62,1,-91,60,-90,131r-110,0v-3,-179,48,-313,208,-313v100,0,160,62,228,104v30,18,56,29,80,29v62,-1,91,-60,90,-131r110,0v3,179,-48,313,-208,313v-99,0,-160,-61,-227,-103v-31,-19,-57,-30,-81,-30xm166,-1024v121,-43,253,-68,412,-68v190,0,330,35,418,106v88,71,132,182,132,333r0,532r152,0r0,121r-506,0r0,-135v-84,101,-184,162,-352,164v-216,2,-339,-122,-338,-338v0,-119,42,-209,126,-268v84,-59,209,-89,378,-89r186,0r0,-63v0,-172,-78,-252,-250,-252v-150,0,-213,60,-245,186r-113,0r0,-229xm592,-137v111,1,182,-83,182,-197r0,-213r-133,0v-132,-1,-206,76,-205,209v0,124,41,199,156,201","w":1327},"\u00e4":{"d":"377,-1321v-77,0,-148,-70,-148,-147v0,-78,70,-146,148,-146v78,0,145,68,145,146v0,77,-68,147,-145,147xm823,-1321v-77,0,-147,-70,-147,-147v0,-78,69,-146,147,-146v78,0,148,68,148,146v0,77,-71,147,-148,147xm166,-1024v121,-43,253,-68,412,-68v190,0,330,35,418,106v88,71,132,182,132,333r0,532r152,0r0,121r-506,0r0,-135v-84,101,-184,162,-352,164v-216,2,-339,-122,-338,-338v0,-119,42,-209,126,-268v84,-59,209,-89,378,-89r186,0r0,-63v0,-172,-78,-252,-250,-252v-150,0,-213,60,-245,186r-113,0r0,-229xm592,-137v111,1,182,-83,182,-197r0,-213r-133,0v-132,-1,-206,76,-205,209v0,124,41,199,156,201","w":1327},"\u00e5":{"d":"166,-1024v121,-43,253,-68,412,-68v190,0,330,35,418,106v88,71,132,182,132,333r0,532r152,0r0,121r-506,0r0,-135v-84,101,-184,162,-352,164v-216,2,-339,-122,-338,-338v0,-119,42,-209,126,-268v84,-59,209,-89,378,-89r186,0r0,-63v0,-172,-78,-252,-250,-252v-150,0,-213,60,-245,186r-113,0r0,-229xm592,-137v111,1,182,-83,182,-197r0,-213r-133,0v-132,-1,-206,76,-205,209v0,124,41,199,156,201xm600,-1249v-153,0,-285,-132,-285,-285v0,-153,132,-285,285,-285v153,0,285,132,285,285v0,153,-132,285,-285,285xm731,-1534v0,-70,-61,-131,-131,-131v-71,0,-131,60,-131,131v0,71,60,131,131,131v71,0,131,-60,131,-131","w":1327},"\u00e6":{"d":"1513,-600v0,-140,-13,-238,-39,-294v-26,-56,-70,-85,-133,-85v-61,0,-104,28,-131,83v-27,55,-40,166,-39,296r342,0xm578,-1092v186,0,313,52,397,156v92,-93,204,-156,373,-156v370,0,545,233,554,611r-731,0v-1,138,20,244,62,305v41,61,108,92,201,92v162,-1,250,-92,274,-238r168,0v-60,245,-223,351,-528,351v-190,0,-322,-56,-420,-156v-108,94,-238,154,-424,156v-255,1,-420,-101,-420,-338v0,-120,43,-210,128,-269v85,-59,213,-88,386,-88r186,0r0,-63v1,-156,-105,-252,-264,-250v-147,1,-210,61,-241,184r-113,0r0,-229v121,-43,253,-68,412,-68xm604,-115v121,0,180,-87,180,-215r0,-217r-133,0v-147,0,-215,74,-215,223v0,140,38,209,168,209","w":1997},"\u00e7":{"d":"567,254v73,0,122,-26,123,-92v0,-19,-5,-39,-16,-61v-11,-22,-34,-56,-68,-101r127,0v41,43,71,82,91,118v20,36,30,72,30,107v-3,129,-107,177,-250,176v-72,0,-140,-10,-202,-26r-1,-156v50,19,106,34,166,35xm739,-84v154,-1,234,-100,250,-248r166,0v-49,236,-197,359,-475,361v-368,2,-596,-200,-596,-561v0,-354,224,-563,582,-560v171,1,316,34,454,84r0,295r-112,0v-20,-164,-87,-266,-256,-266v-99,0,-168,33,-210,100v-42,67,-63,182,-63,347v0,161,20,275,61,344v41,69,107,104,199,104","w":1247},"\u00e8":{"d":"559,-1638r258,376r-164,0r-373,-376r279,0xm821,-600v0,-140,-13,-238,-39,-294v-26,-56,-70,-85,-133,-85v-61,0,-104,28,-131,83v-27,55,-40,166,-39,296r342,0xm84,-532v0,-351,218,-562,571,-560v371,2,546,233,555,611r-731,0v-1,138,20,244,62,305v41,61,108,92,200,92v162,-1,253,-93,277,-238r166,0v-60,245,-224,350,-529,351v-364,2,-571,-200,-571,-561","w":1303},"\u00e9":{"d":"743,-1638r279,0r-373,376r-164,0xm821,-600v0,-140,-13,-238,-39,-294v-26,-56,-70,-85,-133,-85v-61,0,-104,28,-131,83v-27,55,-40,166,-39,296r342,0xm84,-532v0,-351,218,-562,571,-560v371,2,546,233,555,611r-731,0v-1,138,20,244,62,305v41,61,108,92,200,92v162,-1,253,-93,277,-238r166,0v-60,245,-224,350,-529,351v-364,2,-571,-200,-571,-561","w":1303},"\u00ea":{"d":"530,-1638r242,0r256,376r-164,0r-213,-225r-213,225r-164,0xm821,-600v0,-140,-13,-238,-39,-294v-26,-56,-70,-85,-133,-85v-61,0,-104,28,-131,83v-27,55,-40,166,-39,296r342,0xm84,-532v0,-351,218,-562,571,-560v371,2,546,233,555,611r-731,0v-1,138,20,244,62,305v41,61,108,92,200,92v162,-1,253,-93,277,-238r166,0v-60,245,-224,350,-529,351v-364,2,-571,-200,-571,-561","w":1303},"\u00eb":{"d":"428,-1321v-77,0,-148,-70,-148,-147v0,-78,70,-146,148,-146v78,0,145,68,145,146v0,77,-68,147,-145,147xm874,-1321v-77,0,-147,-70,-147,-147v0,-78,69,-146,147,-146v78,0,148,68,148,146v0,77,-71,147,-148,147xm821,-600v0,-140,-13,-238,-39,-294v-26,-56,-70,-85,-133,-85v-61,0,-104,28,-131,83v-27,55,-40,166,-39,296r342,0xm84,-532v0,-351,218,-562,571,-560v371,2,546,233,555,611r-731,0v-1,138,20,244,62,305v41,61,108,92,200,92v162,-1,253,-93,277,-238r166,0v-60,245,-224,350,-529,351v-364,2,-571,-200,-571,-561","w":1303},"\u00ec":{"d":"297,-1638r258,376r-164,0r-373,-376r279,0xm575,-121r152,0r0,121r-657,0r0,-121r151,0r0,-821r-151,0r0,-121r505,0r0,942","w":778},"\u00ed":{"d":"481,-1638r279,0r-373,376r-164,0xm575,-121r152,0r0,121r-657,0r0,-121r151,0r0,-821r-151,0r0,-121r505,0r0,942","w":778},"\u00ee":{"d":"268,-1638r242,0r256,376r-164,0r-213,-225r-213,225r-164,0xm575,-121r152,0r0,121r-657,0r0,-121r151,0r0,-821r-151,0r0,-121r505,0r0,942","w":778},"\u00ef":{"d":"166,-1321v-77,0,-148,-70,-148,-147v0,-78,70,-146,148,-146v78,0,145,68,145,146v0,77,-68,147,-145,147xm612,-1321v-77,0,-147,-70,-147,-147v0,-78,69,-146,147,-146v78,0,148,68,148,146v0,77,-71,147,-148,147xm575,-121r152,0r0,121r-657,0r0,-121r151,0r0,-821r-151,0r0,-121r505,0r0,942","w":778},"\u00f0":{"d":"319,-1556v182,22,340,70,465,145r330,-154r47,103r-266,125v125,99,222,217,289,351v67,134,100,277,100,429v0,367,-230,586,-600,586v-348,0,-600,-202,-600,-537v0,-332,284,-576,648,-526v29,4,58,10,87,18v-30,-90,-74,-159,-133,-225r-319,149r-50,-100r279,-131v-79,-57,-185,-96,-305,-123xm887,-508v0,-144,-17,-270,-49,-383v-52,-20,-95,-37,-154,-37v-74,0,-127,32,-158,96v-31,64,-47,171,-47,324v0,156,16,266,47,329v31,63,84,95,158,95v74,0,126,-31,157,-94v31,-63,46,-173,46,-330","w":1366},"\u00f1":{"d":"569,-1440v-62,1,-91,60,-90,131r-110,0v-3,-179,48,-313,208,-313v100,0,160,62,228,104v30,18,56,29,80,29v62,-1,91,-60,90,-131r110,0v3,179,-48,313,-208,313v-99,0,-160,-61,-227,-103v-31,-19,-57,-30,-81,-30xm928,-1092v250,0,362,156,362,416r0,555r152,0r0,121r-635,0r0,-121r129,0r0,-565v0,-90,-11,-153,-34,-188v-23,-35,-63,-52,-120,-52v-71,0,-124,26,-157,78v-33,52,-50,136,-50,250r0,477r130,0r0,121r-635,0r0,-121r151,0r0,-821r-151,0r0,-121r505,0r0,150v81,-118,168,-179,353,-179","w":1489},"\u00f2":{"d":"592,-1638r258,376r-164,0r-373,-376r279,0xm684,-84v75,0,128,-32,158,-96v30,-64,45,-181,45,-352v0,-171,-15,-288,-45,-352v-30,-64,-83,-95,-158,-95v-75,0,-128,33,-159,97v-31,64,-46,181,-46,350v0,169,15,286,46,351v31,65,84,97,159,97xm1284,-532v0,354,-238,561,-600,561v-363,0,-600,-206,-600,-561v0,-356,237,-560,600,-560v364,0,600,204,600,560","w":1366},"\u00f3":{"d":"776,-1638r279,0r-373,376r-164,0xm684,-84v75,0,128,-32,158,-96v30,-64,45,-181,45,-352v0,-171,-15,-288,-45,-352v-30,-64,-83,-95,-158,-95v-75,0,-128,33,-159,97v-31,64,-46,181,-46,350v0,169,15,286,46,351v31,65,84,97,159,97xm1284,-532v0,354,-238,561,-600,561v-363,0,-600,-206,-600,-561v0,-356,237,-560,600,-560v364,0,600,204,600,560","w":1366},"\u00f4":{"d":"563,-1638r242,0r256,376r-164,0r-213,-225r-213,225r-164,0xm684,-84v75,0,128,-32,158,-96v30,-64,45,-181,45,-352v0,-171,-15,-288,-45,-352v-30,-64,-83,-95,-158,-95v-75,0,-128,33,-159,97v-31,64,-46,181,-46,350v0,169,15,286,46,351v31,65,84,97,159,97xm1284,-532v0,354,-238,561,-600,561v-363,0,-600,-206,-600,-561v0,-356,237,-560,600,-560v364,0,600,204,600,560","w":1366},"\u00f5":{"d":"526,-1440v-62,1,-91,60,-90,131r-110,0v-3,-179,48,-313,208,-313v100,0,160,62,228,104v30,18,56,29,80,29v62,-1,91,-60,90,-131r110,0v3,179,-48,313,-208,313v-99,0,-160,-61,-227,-103v-31,-19,-57,-30,-81,-30xm684,-84v75,0,128,-32,158,-96v30,-64,45,-181,45,-352v0,-171,-15,-288,-45,-352v-30,-64,-83,-95,-158,-95v-75,0,-128,33,-159,97v-31,64,-46,181,-46,350v0,169,15,286,46,351v31,65,84,97,159,97xm1284,-532v0,354,-238,561,-600,561v-363,0,-600,-206,-600,-561v0,-356,237,-560,600,-560v364,0,600,204,600,560","w":1366},"\u00f6":{"d":"461,-1321v-77,0,-148,-70,-148,-147v0,-78,70,-146,148,-146v78,0,145,68,145,146v0,77,-68,147,-145,147xm907,-1321v-77,0,-147,-70,-147,-147v0,-78,69,-146,147,-146v78,0,148,68,148,146v0,77,-71,147,-148,147xm684,-84v75,0,128,-32,158,-96v30,-64,45,-181,45,-352v0,-171,-15,-288,-45,-352v-30,-64,-83,-95,-158,-95v-75,0,-128,33,-159,97v-31,64,-46,181,-46,350v0,169,15,286,46,351v31,65,84,97,159,97xm1284,-532v0,354,-238,561,-600,561v-363,0,-600,-206,-600,-561v0,-356,237,-560,600,-560v364,0,600,204,600,560","w":1366},"\u00f7":{"d":"858,-862v-79,0,-149,-70,-149,-150v0,-79,70,-149,149,-149v80,0,150,70,150,149v0,80,-70,150,-150,150xm858,-123v-79,0,-149,-70,-149,-149v0,-80,70,-150,149,-150v80,0,150,70,150,150v0,79,-70,149,-150,149xm217,-756r1282,0r0,228r-1282,0r0,-228","w":1716},"\u00f8":{"d":"868,-801v-21,-108,-68,-178,-184,-178v-73,0,-125,31,-156,95v-31,64,-47,174,-47,331r0,137xm500,-262v18,107,69,178,184,178v73,0,124,-31,155,-94v31,-63,46,-173,46,-330r0,-141xm684,-1092v157,1,283,35,377,99r168,-168r86,86r-164,162v83,91,132,214,133,381v2,354,-238,564,-600,561v-157,-1,-276,-36,-377,-99r-172,172r-84,-86r164,-163v-81,-94,-130,-218,-131,-385v-2,-356,237,-563,600,-560","w":1366},"\u00f9":{"d":"615,-1638r258,376r-164,0r-373,-376r279,0xm561,29v-250,0,-362,-156,-362,-416r0,-555r-152,0r0,-121r506,0r0,621v0,132,11,216,33,252v22,36,62,53,121,53v71,0,124,-26,157,-79v33,-53,49,-136,49,-251r0,-475r-129,0r0,-121r484,0r0,942r151,0r0,121r-506,0r0,-150v-80,118,-168,179,-352,179","w":1489},"\u00fa":{"d":"799,-1638r279,0r-373,376r-164,0xm561,29v-250,0,-362,-156,-362,-416r0,-555r-152,0r0,-121r506,0r0,621v0,132,11,216,33,252v22,36,62,53,121,53v71,0,124,-26,157,-79v33,-53,49,-136,49,-251r0,-475r-129,0r0,-121r484,0r0,942r151,0r0,121r-506,0r0,-150v-80,118,-168,179,-352,179","w":1489},"\u00fb":{"d":"586,-1638r242,0r256,376r-164,0r-213,-225r-213,225r-164,0xm561,29v-250,0,-362,-156,-362,-416r0,-555r-152,0r0,-121r506,0r0,621v0,132,11,216,33,252v22,36,62,53,121,53v71,0,124,-26,157,-79v33,-53,49,-136,49,-251r0,-475r-129,0r0,-121r484,0r0,942r151,0r0,121r-506,0r0,-150v-80,118,-168,179,-352,179","w":1489},"\u00fc":{"d":"484,-1321v-77,0,-148,-70,-148,-147v0,-78,70,-146,148,-146v78,0,145,68,145,146v0,77,-68,147,-145,147xm930,-1321v-77,0,-147,-70,-147,-147v0,-78,69,-146,147,-146v78,0,148,68,148,146v0,77,-71,147,-148,147xm561,29v-250,0,-362,-156,-362,-416r0,-555r-152,0r0,-121r506,0r0,621v0,132,11,216,33,252v22,36,62,53,121,53v71,0,124,-26,157,-79v33,-53,49,-136,49,-251r0,-475r-129,0r0,-121r484,0r0,942r151,0r0,121r-506,0r0,-150v-80,118,-168,179,-352,179","w":1489},"\u00fd":{"d":"688,-1638r279,0r-373,376r-164,0xm523,406v-103,77,-295,48,-423,6r0,-222r113,1v4,97,42,150,137,151v43,0,77,-14,105,-36v31,-25,70,-108,96,-171r-463,-1077r-115,0r0,-121r613,0r0,121r-127,0r270,629r252,-629r-141,0r0,-121r399,0r0,121r-129,0r-471,1182v-32,78,-71,133,-116,166","w":1190},"\u00fe":{"d":"553,-584r0,105v0,124,15,214,47,269v32,55,83,83,154,83v73,0,124,-29,154,-88v30,-59,44,-164,44,-317v0,-153,-14,-258,-44,-316v-30,-58,-81,-88,-154,-88v-71,0,-122,28,-154,83v-32,55,-47,145,-47,269xm862,29v-157,-1,-252,-58,-309,-164r0,440r164,0r0,121r-670,0r0,-121r152,0r0,-1741r-152,0r0,-120r506,0r0,628v57,-106,152,-163,309,-164v314,-1,488,232,488,560v0,329,-173,562,-488,561","w":1432},"\u00ff":{"d":"373,-1321v-77,0,-148,-70,-148,-147v0,-78,70,-146,148,-146v78,0,145,68,145,146v0,77,-68,147,-145,147xm819,-1321v-77,0,-147,-70,-147,-147v0,-78,69,-146,147,-146v78,0,148,68,148,146v0,77,-71,147,-148,147xm523,406v-103,77,-295,48,-423,6r0,-222r113,1v4,97,42,150,137,151v43,0,77,-14,105,-36v31,-25,70,-108,96,-171r-463,-1077r-115,0r0,-121r613,0r0,121r-127,0r270,629r252,-629r-141,0r0,-121r399,0r0,121r-129,0r-471,1182v-32,78,-71,133,-116,166","w":1190},"\u0152":{"d":"506,-748v0,396,156,624,532,627r127,0r0,-1251r-127,0v-372,2,-532,234,-532,624xm2312,0r-1321,0v-256,-1,-424,-25,-579,-109v-201,-109,-326,-336,-326,-639v0,-302,126,-526,326,-636v155,-85,320,-108,579,-109r1303,0r0,352r-137,0r0,-215r-605,0r0,479r367,0r0,-190r137,0r0,516r-137,0r0,-190r-367,0r0,604r623,0r0,-215r137,0r0,352","w":2417},"\u0153":{"d":"684,-84v75,0,128,-32,158,-96v30,-64,45,-181,45,-352v0,-171,-15,-288,-45,-352v-30,-64,-83,-95,-158,-95v-75,0,-128,33,-159,97v-31,64,-46,181,-46,350v0,169,15,286,46,351v31,65,84,97,159,97xm1624,-600v0,-140,-14,-238,-40,-294v-26,-56,-70,-85,-132,-85v-60,0,-102,28,-129,82v-27,54,-40,166,-39,297r340,0xm684,-1092v182,2,308,57,401,156v92,-98,203,-156,379,-156v365,0,542,238,551,610r-731,1v-1,139,19,246,61,306v41,61,107,91,199,91v162,-1,253,-93,277,-238r166,0v-51,230,-220,351,-500,351v-185,-1,-310,-55,-402,-156v-90,100,-232,154,-417,156v-351,3,-584,-215,-584,-561v0,-356,237,-563,600,-560","w":2105},"\u0178":{"d":"352,0r0,-121r201,0r0,-497r-444,-754r-127,0r0,-121r716,0r0,121r-166,0r336,569r334,-569r-149,0r0,-121r428,0r0,121r-127,0r-414,702r0,549r201,0r0,121r-789,0xm508,-1630v-78,0,-148,-68,-148,-146v0,-77,70,-147,148,-147v77,0,145,70,145,147v0,77,-67,146,-145,146xm954,-1630v-77,0,-147,-68,-147,-146v0,-78,69,-147,147,-147v78,0,148,70,148,147v0,78,-70,146,-148,146","w":1462},"\u02c6":{"d":"391,-1638r242,0r256,376r-164,0r-213,-225r-213,225r-164,0","w":1024},"\u02dc":{"d":"354,-1440v-62,1,-91,60,-90,131r-110,0v-3,-179,48,-313,208,-313v100,0,160,62,228,104v30,18,56,29,80,29v62,-1,91,-60,90,-131r110,0v3,179,-48,313,-208,313v-99,0,-160,-61,-227,-103v-31,-19,-57,-30,-81,-30","w":1024},"\u2013":{"d":"110,-664r804,0r0,240r-804,0r0,-240","w":1024},"\u2014":{"d":"110,-664r1828,0r0,240r-1828,0r0,-240","w":2048},"\u2018":{"d":"594,-1384v-134,92,-192,224,-184,450r-269,0v15,-301,134,-466,348,-586","w":713},"\u2019":{"d":"98,-1042v135,-92,191,-223,183,-451r270,0v-15,304,-134,464,-348,586","w":713},"\u201a":{"d":"61,131v135,-92,191,-223,183,-450r270,0v-15,301,-134,465,-348,585","w":713},"\u201c":{"d":"1059,-1384v-134,92,-193,224,-185,450r-270,0v15,-302,136,-465,350,-586xm594,-1384v-134,92,-192,224,-184,450r-269,0v15,-301,134,-466,348,-586","w":1178},"\u201d":{"d":"563,-1042v135,-92,189,-224,182,-451r271,0v-15,304,-134,464,-348,586xm98,-1042v135,-92,191,-223,183,-451r270,0v-15,304,-134,464,-348,586","w":1178},"\u201e":{"d":"524,131v134,-92,193,-224,185,-450r270,0v-15,301,-134,465,-348,585xm61,131v135,-92,191,-223,183,-450r270,0v-15,301,-134,465,-348,585","w":1178},"\u2022":{"d":"322,-622v-35,-86,-35,-193,0,-279v35,-86,110,-159,195,-193v86,-35,192,-36,277,1v124,53,220,162,220,331v0,170,-99,281,-222,334v-85,37,-191,36,-277,0v-86,-36,-157,-108,-193,-194","w":1309},"\u2026":{"d":"1692,29v-102,0,-191,-89,-191,-191v0,-101,89,-190,191,-190v101,0,190,89,190,190v0,102,-89,191,-190,191xm1024,29v-101,0,-190,-89,-190,-191v0,-101,89,-190,190,-190v101,0,190,89,190,190v0,102,-89,191,-190,191xm356,29v-101,0,-190,-89,-190,-191v0,-101,89,-190,190,-190v102,0,191,89,191,190v0,102,-89,191,-191,191","w":2048},"\u2039":{"d":"627,-1069r0,147r-240,322r240,321r0,148r-469,-385r0,-168","w":819},"\u203a":{"d":"193,-1069r469,385r0,168r-469,385r0,-148r239,-321r-239,-322r0,-147","w":819},"\u20ac":{"d":"569,-729r4,80r338,0r-53,119r-276,0v13,148,44,259,94,332v50,73,119,110,207,110v75,0,137,-28,185,-86v48,-58,81,-142,99,-252r162,0v-46,276,-204,455,-506,455v-169,0,-309,-49,-421,-146v-112,-97,-185,-235,-220,-413r-190,0r53,-119r121,0v-4,-64,-4,-129,0,-193r-174,0r53,-119r137,0v35,-178,108,-316,220,-413v112,-97,252,-146,421,-146v190,0,322,56,477,129r0,367r-118,0v-27,-131,-64,-227,-112,-288v-48,-61,-112,-91,-189,-91v-87,0,-155,36,-204,109v-49,73,-82,184,-97,333r471,0r-54,119r-423,0"},"\u2122":{"d":"238,-1493r565,0r0,180r-76,0r0,-98r-131,0r0,416r86,0r0,80r-324,0r0,-80r86,0r0,-416r-131,0r0,98r-75,0r0,-180xm1143,-1493r166,293r166,-293r245,0r0,82r-86,0r0,416r86,0r0,80r-323,0r0,-80r86,0r0,-359r-162,285r-113,0r-161,-285r0,359r86,0r0,80r-256,0r0,-80r84,0r0,-416r-84,0r0,-82r266,0","w":2048}}}); diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-Bold-webfont.eot b/assets/fonts/dejavu/serif/DejaVuSerif-Bold-webfont.eot new file mode 100644 index 0000000..a2e32c9 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerif-Bold-webfont.eot differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-Bold-webfont.svg b/assets/fonts/dejavu/serif/DejaVuSerif-Bold-webfont.svg new file mode 100644 index 0000000..a76bf7f --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerif-Bold-webfont.svg @@ -0,0 +1,241 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved._DejaVu changes are in public domain_ +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-Bold-webfont.ttf b/assets/fonts/dejavu/serif/DejaVuSerif-Bold-webfont.ttf new file mode 100644 index 0000000..0257d47 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerif-Bold-webfont.ttf differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-Bold-webfont.woff b/assets/fonts/dejavu/serif/DejaVuSerif-Bold-webfont.woff new file mode 100644 index 0000000..40174cb Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerif-Bold-webfont.woff differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-cufon.js b/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-cufon.js new file mode 100644 index 0000000..dd61a8a --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-cufon.js @@ -0,0 +1,18 @@ +/*! + * The following copyright notice may not be removed under any circumstances. + * + * Copyright: + * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + * DejaVu changes are in public domain + * + * + * Manufacturer: + * DejaVu fonts team + * + * Vendor URL: + * http://dejavu.sourceforge.net + * + * License information: + * http://dejavu.sourceforge.net/wiki/index.php/License + */ +Cufon.registerFont({"w":1425,"face":{"font-family":"DejaVu Serif","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"2048","panose-1":"2 6 8 3 5 3 5 11 2 4","ascent":"1556","descent":"-492","x-height":"29","bbox":"-340 -1923 2469 483","underline-thickness":"90","underline-position":"-85","slope":"-11","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":713},"!":{"d":"149,-162v17,-95,119,-190,226,-190v99,0,172,86,153,190v-18,96,-120,191,-227,191v-100,0,-171,-86,-152,-191xm410,-1493r375,0r-283,842r-37,190r-139,0r37,-190","w":899},"\"":{"d":"432,-1493r0,555r-237,0r0,-555r237,0xm872,-1493r0,555r-237,0r0,-555r237,0","w":1067},"#":{"d":"1024,-872r-264,0r-70,274r264,0xm911,-1470r-96,385r264,0r97,-385r221,0r-97,385r277,0r0,213r-330,0r-69,274r284,0r0,215r-336,0r-96,383r-221,0r96,-383r-264,0r-96,383r-223,0r96,-383r-279,0r0,-215r328,0r70,-274r-283,0r0,-213r338,0r96,-385r223,0","w":1716},"$":{"d":"261,-350v-12,190,86,270,280,266r79,-405v-159,-37,-268,-87,-328,-150v-60,-63,-79,-149,-58,-258v46,-243,255,-388,541,-393r53,-269r121,0r-53,269v153,9,282,37,397,88r-53,272r-121,0v10,-159,-86,-246,-245,-247r-72,372v172,39,288,93,348,159v60,66,77,159,54,279v-49,253,-262,390,-564,396r-53,270r-121,0r53,-270v-165,-4,-305,-37,-435,-88r57,-291r120,0xm754,-1178v-105,12,-197,66,-215,156v-9,47,-2,84,21,113v23,29,65,52,127,71xm662,-84v126,-13,215,-64,238,-172v10,-49,2,-90,-24,-122v-26,-32,-74,-58,-142,-79"},"%":{"d":"573,-1419v-43,0,-74,25,-105,69v-42,61,-113,372,-92,473v10,47,35,70,78,70v43,0,78,-23,106,-70v28,-47,53,-126,75,-237v21,-111,27,-190,17,-236v-10,-46,-36,-69,-79,-69xm593,-1520v251,-1,366,141,315,406v-47,244,-199,405,-473,407v-250,1,-366,-142,-315,-407v47,-243,200,-404,473,-406xm1505,-1520r172,0r-1236,1549r-172,0xm1510,-784v250,-1,366,141,315,405v-47,244,-199,406,-473,408v-250,2,-364,-143,-313,-408v47,-242,199,-403,471,-405xm1491,-684v-43,0,-76,26,-107,70v-42,61,-113,371,-91,472v10,47,36,70,79,70v43,0,78,-23,106,-70v28,-47,53,-126,75,-237v21,-111,27,-189,17,-235v-10,-46,-36,-70,-79,-70","w":1946},"&":{"d":"1628,-795v-60,190,-147,339,-272,459r165,215r170,0r-24,121r-479,0r-101,-131v-139,96,-301,160,-517,160v-200,0,-348,-43,-444,-128v-96,-85,-130,-201,-101,-352v21,-109,67,-202,140,-279v73,-77,176,-143,310,-198v-40,-76,-72,-144,-54,-246v19,-110,84,-194,187,-255v139,-82,356,-109,575,-79v64,8,136,20,215,35r-60,312r-129,0v6,-156,-46,-239,-195,-238v-139,1,-254,71,-254,201v0,61,43,145,128,251v11,13,20,22,25,29r366,482v98,-92,166,-209,207,-359r23,-120r318,0r-23,120r-176,0xm382,-427v0,179,130,302,311,298v130,-3,224,-43,319,-100r-451,-588v-97,99,-179,211,-179,390","w":1849},"'":{"d":"432,-1493r0,555r-237,0r0,-555r237,0","w":627},"(":{"d":"680,319v-209,-83,-354,-203,-434,-358v-80,-155,-99,-349,-53,-579v99,-495,393,-773,851,-938r-23,120v-118,64,-212,158,-283,284v-71,126,-128,304,-173,534v-45,229,-56,406,-34,532v22,126,79,221,172,285","w":969},")":{"d":"-78,319r23,-120v118,-64,212,-159,283,-285v71,-126,128,-303,173,-532v45,-230,56,-408,34,-534v-22,-126,-79,-220,-172,-284r23,-120v211,88,356,209,436,362v80,153,98,346,52,576v-97,490,-397,781,-852,937","w":969},"*":{"d":"1026,-1212r-360,168r360,170r-98,155r-328,-239r27,389r-183,0r27,-389r-328,239r-98,-155r361,-170r-361,-168r98,-158r328,242r-27,-392r183,0r-27,392r328,-242","w":1071},"+":{"d":"973,-1284r0,526r526,0r0,230r-526,0r0,526r-230,0r0,-526r-526,0r0,-230r526,0r0,-526r230,0","w":1716},",":{"d":"-9,197v150,-105,244,-229,285,-430r17,-86r285,0v-64,322,-237,520,-505,657","w":713},"-":{"d":"137,-684r628,0r-52,270r-628,0","w":850},".":{"d":"166,-162v17,-95,120,-190,227,-190v100,0,173,86,154,190v-18,96,-120,191,-228,191v-100,0,-172,-86,-153,-191","w":713},"\/":{"d":"690,-1493r222,0r-855,1683r-221,0","w":748},"0":{"d":"585,-88v80,0,142,-36,186,-109v44,-73,94,-255,151,-548v57,-291,77,-473,62,-547v-15,-74,-63,-111,-143,-111v-80,0,-142,36,-186,109v-44,73,-94,256,-151,549v-57,293,-77,475,-62,548v15,73,63,109,143,109xm562,29v-199,0,-339,-66,-419,-199v-80,-133,-96,-325,-47,-575v49,-250,139,-442,271,-575v132,-133,298,-200,497,-200v199,0,338,67,418,200v80,133,96,325,47,575v-49,250,-139,442,-271,575v-132,133,-297,199,-496,199"},"1":{"d":"133,0r24,-121r280,0r235,-1208r-347,184r29,-149r419,-226r315,0r-272,1399r281,0r-24,121r-940,0"},"2":{"d":"341,-1124r-120,0r62,-322v157,-44,312,-73,498,-74v190,0,330,38,421,116v91,78,124,186,97,325v-19,99,-65,187,-139,265v-74,78,-205,171,-391,279r-469,273r707,0r34,-176r137,0r-85,438r-1104,0r48,-244r250,-153v214,-130,361,-241,442,-332v81,-91,132,-198,156,-320v43,-217,-18,-353,-211,-354v-79,0,-146,23,-203,71v-57,48,-100,117,-130,208"},"3":{"d":"695,-1403v-175,2,-275,105,-319,252r-121,0r58,-299v164,-41,327,-70,512,-70v180,0,311,32,395,96v84,64,114,157,91,277v-38,192,-185,297,-390,332v125,21,214,65,265,133v51,68,64,161,41,279v-27,139,-103,245,-227,321v-169,104,-476,136,-742,91v-81,-13,-164,-33,-250,-60r64,-328r121,0v-23,190,65,292,248,291v216,-1,344,-133,381,-324v42,-219,-59,-340,-266,-338r-66,0r23,-120v122,4,219,-14,287,-68v58,-46,96,-113,113,-203v34,-174,-51,-264,-218,-262"},"4":{"d":"1159,0r-822,0r24,-121r222,0r53,-272r-623,0r22,-115r822,-1012r376,0r-194,998r256,0r-25,129r-256,0r-53,272r222,0xm661,-522r141,-725r-586,725r445,0"},"5":{"d":"611,-883v-125,0,-198,55,-271,129r-100,0r144,-739r919,0r-51,262r-799,0r-64,328v90,-61,201,-103,338,-103v184,0,320,47,409,140v89,93,116,219,86,379v-60,321,-326,518,-708,516v-184,-1,-329,-31,-478,-82r63,-326r120,0v-29,195,44,291,229,291v98,0,177,-32,237,-98v60,-66,103,-166,129,-301v26,-133,22,-231,-12,-297v-34,-66,-97,-99,-191,-99"},"6":{"d":"1204,-1196v-8,-137,-88,-207,-234,-207v-119,0,-213,41,-282,122v-69,81,-121,213,-157,396v91,-63,199,-103,341,-104v299,-4,453,188,393,502v-61,318,-296,517,-666,516v-420,-1,-570,-266,-479,-727v54,-271,150,-476,294,-614v181,-175,436,-240,750,-193v67,10,137,25,212,45r-51,264r-121,0xm599,-88v69,0,123,-30,164,-88v41,-58,75,-159,103,-303v28,-144,33,-245,15,-303v-18,-58,-61,-88,-130,-88v-69,0,-123,30,-163,88v-40,58,-75,159,-103,303v-28,144,-33,245,-15,303v18,58,60,88,129,88"},"7":{"d":"1351,-1239r-857,1239r-203,0r835,-1210r-737,0r-39,202r-137,0r94,-485r1093,0"},"8":{"d":"962,-795v209,34,331,156,285,398v-55,291,-321,426,-687,426v-195,0,-338,-37,-428,-110v-90,-73,-121,-179,-94,-316v43,-225,204,-362,441,-398v-100,-24,-171,-65,-212,-121v-41,-56,-53,-127,-36,-214v54,-268,293,-390,631,-390v180,0,311,33,393,100v82,67,112,164,86,290v-39,190,-178,292,-379,335xm953,-1126v21,-105,23,-178,5,-218v-18,-40,-58,-59,-119,-59v-62,0,-109,19,-142,59v-33,40,-59,113,-80,218v-21,105,-23,177,-5,216v18,39,58,58,120,58v62,0,110,-19,142,-58v32,-39,58,-111,79,-216xm854,-414v23,-122,24,-206,2,-252v-22,-46,-71,-69,-147,-69v-77,0,-135,23,-175,69v-40,46,-71,130,-94,252v-24,123,-26,209,-4,256v22,47,71,70,147,70v75,0,133,-23,174,-70v41,-47,73,-133,97,-256"},"9":{"d":"826,-1403v-69,0,-124,29,-164,87v-40,58,-74,160,-102,304v-28,144,-34,246,-16,304v18,58,61,87,130,87v69,0,123,-29,164,-87v41,-58,75,-160,103,-304v28,-144,33,-246,15,-304v-18,-58,-61,-87,-130,-87xm221,-295v8,137,89,207,235,207v117,0,211,-40,280,-122v69,-82,122,-215,158,-398v-91,64,-199,105,-341,106v-298,3,-452,-187,-392,-502v61,-319,293,-516,664,-516v420,0,571,267,480,727v-54,271,-151,477,-295,615v-181,175,-435,239,-749,192v-67,-10,-137,-25,-212,-45r51,-264r121,0"},":":{"d":"280,-680v-101,-137,46,-324,197,-324v99,0,172,87,153,191v-18,95,-118,189,-226,188v-53,0,-96,-17,-124,-55xm125,-162v18,-95,119,-190,226,-190v99,0,173,86,153,190v-18,95,-119,191,-227,191v-100,0,-172,-86,-152,-191","w":756},";":{"d":"281,-813v18,-96,119,-191,226,-191v99,0,173,87,153,191v-18,95,-119,188,-227,188v-100,0,-172,-83,-152,-188xm-49,188v151,-104,245,-227,286,-428r17,-88r285,0v-64,321,-238,522,-505,658","w":756},"<":{"d":"1499,-979r-979,338r979,336r0,239r-1282,-464r0,-226r1282,-463r0,240","w":1716},"=":{"d":"217,-528r1282,0r0,227r-1282,0r0,-227xm217,-983r1282,0r0,227r-1282,0r0,-227","w":1716},">":{"d":"217,-979r0,-240r1282,463r0,226r-1282,464r0,-239r979,-336","w":1716},"?":{"d":"229,-162v18,-95,120,-190,227,-190v100,0,174,86,154,190v-18,96,-120,191,-229,191v-100,0,-172,-86,-152,-191xm621,-1407v-169,0,-250,111,-289,262r-121,0r59,-307v152,-39,297,-68,467,-68v168,0,289,36,365,110v76,74,101,179,74,316v-55,277,-276,432,-594,453r-40,205r-139,0r58,-299v196,-58,302,-172,344,-381v36,-184,-18,-291,-184,-291","w":1200},"@":{"d":"1162,-296v67,-66,96,-168,117,-284v29,-160,-27,-286,-169,-286v-66,0,-124,30,-176,88v-52,58,-88,136,-107,235v-19,99,-14,177,15,236v29,59,76,88,142,88v67,0,126,-26,178,-77xm1445,188v-165,97,-351,168,-582,168v-275,0,-467,-94,-596,-252v-125,-153,-185,-371,-131,-647v53,-273,196,-493,383,-647v184,-152,400,-250,709,-250v245,0,422,69,547,195v132,134,203,306,154,569v-66,356,-324,594,-744,584r28,-148v-68,85,-167,146,-305,148v-256,2,-377,-175,-322,-451v28,-140,86,-251,174,-331v88,-80,196,-119,323,-119v124,0,211,57,248,147r24,-125r219,0r-144,742v207,-53,344,-224,386,-449v40,-220,-20,-359,-131,-473v-97,-99,-256,-163,-448,-162v-195,1,-349,56,-477,139v-206,132,-365,357,-418,631v-41,212,-6,403,83,531v103,147,266,241,502,241v191,0,344,-57,479,-135","w":2048},"A":{"d":"-161,0r23,-121r122,0r829,-1372r239,0r296,1372r142,0r-23,121r-699,0r23,-121r146,0r-63,-305r-561,0r-185,305r178,0r-23,121r-444,0xm385,-547r463,0r-119,-571","w":1589},"B":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r885,0v182,0,313,31,392,92v79,61,108,154,83,277v-39,196,-206,286,-435,309v147,14,255,54,322,120v67,66,90,154,69,263v-29,148,-106,257,-231,327v-125,70,-307,105,-545,105r-830,0xm696,-870r131,0v221,0,351,-75,387,-254v17,-87,3,-150,-43,-189v-46,-39,-128,-59,-246,-59r-131,0xm550,-121r143,0v255,-1,396,-98,436,-311v44,-232,-81,-318,-313,-318r-143,0","w":1731},"C":{"d":"1412,-1024v-2,-241,-106,-374,-341,-375v-145,0,-264,54,-355,161v-91,107,-159,271,-202,493v-43,222,-40,386,10,493v50,107,148,160,295,160v99,0,185,-28,259,-83v74,-55,136,-139,187,-251r199,0v-69,154,-162,268,-279,343v-117,75,-261,112,-433,112v-252,0,-437,-70,-556,-209v-119,-139,-156,-327,-110,-565v46,-239,157,-428,330,-567v231,-186,556,-254,908,-176v92,21,187,54,286,97r-71,367r-127,0","w":1630},"D":{"d":"550,-121r139,0v156,0,280,-50,372,-150v92,-100,159,-259,201,-477v42,-217,36,-374,-16,-474v-52,-100,-156,-150,-313,-150r-139,0xm-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r766,0v268,0,460,64,577,192v117,128,151,312,106,553v-88,469,-426,748,-973,748r-766,0","w":1776},"E":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r1342,0r-68,352r-138,0r41,-215r-628,0r-93,479r391,0r37,-190r137,0r-100,516r-137,0r37,-190r-391,0r-117,604r647,0r41,-215r137,0r-68,352r-1360,0","w":1561},"F":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r1331,0r-68,352r-137,0r41,-215r-616,0r-93,479r379,0r37,-190r137,0r-100,516r-137,0r37,-190r-379,0r-121,620r235,0r-23,121r-813,0","w":1454},"G":{"d":"1463,-1024v-9,-260,-110,-375,-373,-375v-155,0,-278,52,-371,157v-93,105,-161,271,-205,497v-43,224,-41,389,8,495v49,106,146,158,293,158v122,-1,220,-29,302,-76r79,-410r-180,0r24,-120r538,0r-112,573v-215,91,-432,154,-708,154v-256,0,-444,-69,-563,-207v-119,-138,-153,-327,-109,-567v84,-458,446,-777,974,-775v237,1,426,50,601,129r-71,367r-127,0","w":1749},"H":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r768,0r-23,121r-192,0r-98,502r594,0r98,-502r-191,0r23,-121r768,0r-23,121r-192,0r-244,1251r192,0r-23,121r-768,0r23,-121r191,0r119,-612r-594,0r-119,612r192,0r-23,121r-768,0","w":1935},"I":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r768,0r-23,121r-192,0r-244,1251r192,0r-23,121r-768,0","w":958},"J":{"d":"-323,358r45,-235r130,0v-15,119,16,181,124,182v65,0,115,-25,150,-75v35,-50,66,-142,93,-279r257,-1323r-217,0r24,-121r795,0r-24,121r-191,0r-259,1331v-63,317,-234,467,-603,467v-125,0,-228,-27,-324,-68","w":969},"K":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r768,0r-23,121r-192,0r-106,545r739,-545r-160,0r23,-121r557,0r-23,121r-199,0r-626,461r575,790r147,0r-23,121r-506,0r-524,-725r-118,604r192,0r-23,121r-768,0","w":1780},"L":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r768,0r-23,121r-192,0r-240,1235r588,0r45,-236r135,0r-72,373r-1299,0","w":1440},"M":{"d":"-59,0r23,-121r190,0r244,-1251r-190,0r23,-121r616,0r240,958r614,-958r615,0r-23,121r-191,0r-244,1251r191,0r-23,121r-768,0r23,-121r190,0r222,-1139r-666,1041r-253,0r-258,-1041r-222,1139r190,0r-23,121r-520,0","w":2267},"N":{"d":"-55,0r23,-121r191,0r244,-1251r-191,0r23,-121r467,0r696,1057r182,-936r-190,0r23,-121r522,0r-23,121r-191,0r-267,1372r-262,0r-705,-1079r-187,958r190,0r-23,121r-522,0","w":1872},"O":{"d":"764,-92v127,0,233,-54,316,-161v83,-107,145,-271,188,-492v43,-221,43,-386,2,-493v-41,-107,-125,-161,-252,-161v-127,0,-232,55,-315,163v-83,108,-146,272,-189,491v-43,219,-43,383,-2,491v41,108,125,162,252,162xm740,29v-481,0,-751,-277,-654,-774v47,-241,155,-431,325,-569v170,-138,380,-206,631,-206v482,0,751,277,654,775v-47,241,-155,431,-325,568v-170,137,-380,206,-631,206","w":1784},"P":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r850,0v166,0,290,40,373,119v83,79,110,184,85,317v-50,266,-306,443,-628,439r-274,0r-97,497r241,0r-23,121r-817,0xm671,-739r112,0v189,-1,313,-145,346,-318v36,-188,-48,-317,-223,-315r-112,0","w":1540},"Q":{"d":"771,29v-251,-4,-433,-75,-548,-210v-117,-138,-145,-342,-101,-564v47,-241,156,-431,326,-569v170,-138,379,-206,630,-206v251,0,434,69,551,206v119,139,147,344,103,569v-81,413,-358,699,-781,761v28,38,66,65,113,82v110,39,210,58,300,58r193,0r-48,246r-171,0v-169,0,-305,-38,-408,-115v-75,-55,-128,-141,-159,-258xm800,-92v127,0,233,-54,316,-161v83,-107,145,-271,188,-492v22,-113,33,-212,33,-295v0,-79,-10,-145,-30,-198v-41,-107,-126,-161,-253,-161v-127,0,-232,55,-315,163v-83,108,-146,272,-189,491v-21,111,-32,207,-32,290v0,80,10,147,30,201v41,108,125,162,252,162","w":1784},"R":{"d":"1084,-729v122,19,182,81,218,192r137,416r153,0r-23,121r-491,0r-150,-451v-28,-93,-57,-152,-83,-179v-36,-36,-111,-41,-188,-38r-107,547r192,0r-23,121r-768,0r23,-121r191,0r244,-1251r-191,0r23,-121r852,0v173,0,300,35,381,105v81,70,110,168,84,296v-45,226,-218,331,-474,363xm680,-788r131,0v198,-1,315,-118,348,-293v36,-191,-52,-292,-234,-291r-131,0","w":1702},"S":{"d":"1204,-1102v-1,-218,-119,-296,-348,-297v-185,0,-309,60,-339,205v-12,62,-2,109,25,142v48,60,318,121,448,155v132,35,222,89,270,162v48,73,60,174,35,303v-62,313,-318,463,-705,461v-216,-1,-393,-39,-563,-101r69,-354r127,0v-4,235,128,334,371,334v197,0,331,-73,362,-232v12,-60,2,-106,-28,-140v-57,-66,-296,-113,-422,-148v-139,-37,-232,-90,-278,-156v-46,-66,-57,-160,-34,-283v56,-294,301,-471,653,-469v201,1,379,36,548,88r-64,330r-127,0","w":1479},"T":{"d":"226,0r23,-121r198,0r240,-1235r-409,0r-45,236r-137,0r72,-373r1480,0r-72,373r-135,0r45,-236r-412,0r-240,1235r199,0r-23,121r-784,0","w":1524},"U":{"d":"384,-1372r-190,0r24,-121r768,0r-24,121r-191,0r-145,747v-36,186,-32,317,12,391v44,74,135,111,276,111v137,0,242,-38,314,-113v72,-75,126,-204,162,-389r145,-747r-190,0r24,-121r520,0r-24,121r-191,0r-149,768v-44,228,-125,391,-243,488v-118,97,-292,145,-525,145v-231,0,-387,-49,-467,-147v-80,-98,-98,-261,-54,-488","w":1786},"V":{"d":"1763,-1493r-23,121r-125,0r-830,1372r-238,0r-296,-1372r-141,0r23,-121r700,0r-23,121r-145,0r210,989r599,-989r-178,0r23,-121r444,0","w":1589},"W":{"d":"1600,0r-258,0r-127,-1087r-549,1087r-258,0r-159,-1372r-145,0r23,-121r708,0r-23,121r-160,0r106,917r524,-1038r284,0r123,1055r473,-934r-178,0r23,-121r462,0r-23,121r-153,0","w":2300},"X":{"d":"661,-575r-400,454r184,0r-23,121r-530,0r23,-121r184,0r504,-571r-334,-680r-137,0r23,-121r742,0r-23,121r-164,0r207,420r368,-420r-174,0r23,-121r520,0r-23,121r-184,0r-474,536r351,715r141,0r-23,121r-745,0r23,-121r166,0","w":1589},"Y":{"d":"207,0r23,-121r201,0r97,-497r-297,-754r-127,0r23,-121r716,0r-23,121r-166,0r225,569r445,-569r-149,0r23,-121r428,0r-23,121r-127,0r-551,702r-107,549r201,0r-23,121r-789,0","w":1462},"Z":{"d":"-69,0r27,-141r1127,-1215r-715,0r-43,223r-137,0r70,-360r1296,0r-27,141r-1117,1215r754,0r40,-209r137,0r-67,346r-1345,0","w":1495},"[":{"d":"433,-1556r567,0r-23,120r-213,0r-308,1586r213,0r-23,120r-567,0","w":969},"\\":{"d":"385,-1493r199,1683r-222,0r-198,-1683r221,0","w":748},"]":{"d":"890,-1556r-354,1826r-568,0r23,-120r213,0r308,-1586r-213,0r23,-120r568,0","w":969},"^":{"d":"973,-1493r536,557r-213,0r-438,-315r-438,315r-213,0r543,-557r223,0","w":1716},"_":{"d":"1024,293r0,190r-1024,0r0,-190r1024,0","w":1024},"`":{"d":"542,-1638r184,376r-164,0r-299,-376r279,0","w":1024},"a":{"d":"841,-876v-2,-40,-22,-60,-60,-60v-89,0,-178,53,-265,160v-41,49,-77,156,-109,321v-24,123,-27,209,-10,257v17,48,58,71,121,71v62,0,113,-28,152,-83v39,-55,70,-145,94,-269xm1181,-1031r-175,910r133,-2r-24,123r-444,0r26,-135v-73,109,-175,164,-305,164v-262,2,-379,-191,-321,-477v30,-148,107,-287,235,-416v151,-152,328,-228,531,-228v200,0,315,20,344,61","w":1327},"b":{"d":"708,29v-150,0,-238,-53,-277,-164r-26,135r-354,0r279,-1436r-152,0r23,-120r506,0r-122,628v75,-102,176,-162,341,-164v249,-3,396,148,396,398v0,249,-94,448,-228,573v-106,100,-235,150,-386,150xm935,-761v2,-113,-41,-175,-147,-175v-71,0,-127,28,-170,83v-43,55,-76,145,-100,269v-15,80,-40,199,-40,275v0,114,43,183,152,182v73,0,129,-29,170,-88v41,-59,77,-164,107,-317v19,-95,28,-171,28,-229","w":1432},"c":{"d":"652,-84v163,0,256,-108,298,-248r166,0v-90,225,-251,361,-545,361v-189,0,-325,-50,-411,-147v-87,-99,-107,-250,-76,-414v62,-333,311,-560,691,-560v167,1,307,34,438,84r-58,295r-112,0v14,-164,-45,-266,-204,-266v-99,0,-175,33,-230,100v-55,67,-98,182,-130,347v-17,86,-25,159,-25,218v-2,149,57,230,198,230","w":1247},"d":{"d":"407,-304v0,115,41,176,147,177v70,0,127,-28,170,-83v43,-55,76,-145,100,-269v15,-80,39,-197,39,-274v0,-115,-43,-183,-151,-183v-73,0,-131,30,-172,88v-41,58,-76,163,-106,316v-18,94,-27,170,-27,228xm633,-1092v150,0,239,53,278,164r99,-508r-152,0r23,-120r506,0r-302,1556r-354,0r26,-135v-75,102,-177,162,-342,164v-248,4,-393,-150,-393,-398v0,-249,92,-450,226,-574v106,-99,234,-149,385,-149","w":1432},"e":{"d":"478,-519v242,4,382,-92,382,-313v0,-98,-41,-147,-124,-147v-63,0,-114,29,-151,89v-37,60,-73,184,-107,371xm1143,-322v-101,233,-275,351,-597,351v-184,0,-315,-49,-395,-145v-82,-99,-97,-252,-67,-413v62,-331,303,-562,675,-563v127,0,235,23,323,74v104,60,151,140,127,266v-41,216,-294,333,-755,352v-4,23,-6,58,-6,105v1,141,69,211,206,211v171,0,274,-100,323,-238r166,0","w":1303},"f":{"d":"1016,-1290v11,-96,-28,-154,-122,-154v-53,0,-94,21,-127,58v-52,59,-78,214,-99,323r267,0r-23,121r-267,0r-189,971v-27,139,-82,230,-165,269v-128,61,-266,91,-412,91r23,-112v53,0,96,-19,127,-57v31,-38,55,-101,72,-187r190,-975r-158,0r23,-121r158,0r26,-133v45,-238,228,-361,515,-360v118,0,222,14,318,38r-45,228r-112,0","w":881},"g":{"d":"987,-876v-3,-40,-26,-60,-69,-60v-121,0,-220,53,-296,160v-47,67,-85,174,-114,321v-24,123,-26,209,-6,257v20,48,67,71,140,71v69,0,125,-28,168,-83v43,-55,76,-145,100,-269xm209,135v-8,152,85,208,243,207v109,0,191,-26,246,-78v55,-52,96,-145,122,-278r23,-121v-81,109,-197,164,-347,164v-288,0,-446,-176,-386,-477v35,-181,137,-337,306,-468v151,-117,338,-176,560,-176v179,0,309,32,389,96r-191,982v-32,164,-108,279,-227,346v-201,114,-422,146,-686,106v-71,-11,-142,-27,-215,-49r50,-254r113,0","w":1432},"h":{"d":"932,-804v1,-86,-34,-122,-121,-122v-71,0,-129,26,-173,78v-44,52,-76,136,-98,250r-116,598r-354,0r279,-1436r-158,0r23,-120r512,0r-125,643v102,-113,195,-179,388,-179v192,0,294,91,295,281v0,41,-5,86,-14,135r-108,555r152,0r-23,121r-506,0r133,-686v9,-47,14,-86,14,-118","w":1489},"i":{"d":"458,-1174v-102,0,-176,-80,-156,-190v18,-99,118,-192,230,-192v100,0,173,82,153,192v-17,96,-119,190,-227,190xm447,-121r152,0r-23,121r-506,0r183,-942r-151,0r23,-121r505,0","w":778},"j":{"d":"492,-1174v-102,0,-176,-80,-156,-190v18,-99,117,-192,230,-192v99,0,173,82,153,192v-18,96,-119,190,-227,190xm-188,245v0,69,32,96,103,97v49,0,86,-16,111,-47v25,-31,46,-88,62,-170r207,-1067r-151,0r24,-121r505,0r-231,1188v-46,228,-235,331,-520,330v-93,-1,-182,-17,-262,-39r44,-226r113,1v-3,20,-5,38,-5,54","w":741},"k":{"d":"424,0r-354,0r279,-1436r-151,0r23,-120r505,0r-194,999r504,-385r-127,0r23,-121r288,0r-23,121r-322,246r336,575r115,0r-23,121r-391,0r-292,-500r-116,88","w":1419},"l":{"d":"447,-121r152,0r-23,121r-506,0r279,-1436r-151,0r23,-120r505,0","w":778},"m":{"d":"1013,-1092v173,0,264,63,297,203v63,-71,126,-123,190,-155v64,-32,133,-48,210,-48v195,1,297,85,298,277v0,42,-5,88,-15,139r-108,555r152,0r-23,121r-506,0r121,-623v17,-87,25,-153,25,-198v1,-79,-32,-105,-110,-105v-63,0,-116,24,-160,72v-44,48,-75,118,-92,207r-126,647r-354,0r121,-623v17,-86,25,-151,25,-196v0,-81,-33,-107,-110,-107v-63,0,-117,24,-161,72v-44,48,-75,118,-92,207r-126,647r-354,0r183,-942r-151,0r23,-121r505,0r-29,150v94,-108,191,-179,367,-179","w":2167},"n":{"d":"977,-804v1,-86,-34,-122,-121,-122v-71,0,-128,26,-172,78v-44,52,-77,136,-99,250r-116,598r-354,0r183,-942r-151,0r23,-121r505,0r-29,150v102,-113,195,-177,388,-179v192,-2,295,92,296,281v0,41,-5,86,-15,135r-108,555r152,0r-23,121r-506,0r133,-686v9,-47,14,-86,14,-118","w":1489},"o":{"d":"447,-270v0,118,42,186,150,186v75,0,133,-32,176,-96v43,-64,81,-181,114,-352v22,-111,33,-200,33,-266v0,-115,-41,-181,-149,-181v-75,0,-135,33,-178,97v-43,64,-81,181,-114,350v-21,109,-32,197,-32,262xm575,29v-187,0,-324,-50,-411,-149v-89,-101,-111,-247,-80,-412v62,-335,323,-561,709,-560v188,0,325,50,412,148v89,100,110,248,79,412v-63,333,-324,562,-709,561","w":1366},"p":{"d":"1018,-761v0,-114,-42,-174,-147,-175v-71,0,-127,28,-169,83v-42,55,-76,145,-100,269v-16,79,-40,198,-40,275v0,114,43,183,152,182v73,0,129,-29,170,-88v41,-59,77,-164,107,-317v18,-95,27,-171,27,-229xm792,29v-149,0,-239,-53,-277,-164r-110,561r-354,0r266,-1368r-152,0r24,-121r506,0r-26,135v75,-102,176,-162,341,-164v249,-3,396,148,396,398v0,249,-94,448,-228,573v-106,100,-235,150,-386,150","w":1432},"q":{"d":"1362,-996r-252,1296r161,2r-24,122r-516,2r110,-561v-82,109,-198,164,-347,164v-288,0,-445,-176,-386,-477v36,-181,136,-337,305,-468v151,-117,338,-176,560,-176v179,0,309,32,389,96xm985,-876v-4,-40,-27,-60,-70,-60v-121,0,-220,53,-296,160v-47,67,-85,174,-114,321v-24,123,-26,209,-5,257v21,48,67,71,139,71v69,0,125,-28,168,-83v43,-55,76,-145,100,-269","w":1432},"r":{"d":"639,-874v95,-146,231,-238,463,-214v29,3,63,8,101,13r-62,317r-113,0v15,-103,-26,-168,-129,-168v-77,0,-145,34,-203,102v-58,68,-99,162,-122,283r-105,541r-354,0r183,-942r-162,0r23,-121r516,0","w":1079},"s":{"d":"169,-328v-11,158,77,244,236,244v155,0,242,-48,261,-145v7,-40,6,-73,-22,-104v-37,-41,-186,-72,-264,-93v-104,-29,-174,-63,-207,-106v-48,-62,-60,-128,-43,-218v45,-235,242,-342,525,-342v145,0,297,21,456,64r-53,268r-113,0v18,-145,-59,-219,-223,-219v-151,0,-236,45,-253,135v-2,11,-3,24,-3,39v0,43,41,76,123,98r138,37v133,35,217,76,254,120v52,63,66,134,47,228v-23,120,-83,209,-180,266v-97,57,-235,85,-416,85v-131,0,-276,-20,-433,-60r57,-297r113,0","w":1153},"t":{"d":"854,-260v-57,213,-150,289,-414,289v-146,0,-240,-23,-284,-69v-49,-51,-47,-157,-29,-251r127,-651r-154,0r23,-121r154,0r64,-330r354,0r-64,330r295,0r-23,121r-295,0r-127,651v-11,59,-17,104,-17,134v-2,58,24,73,79,73v104,0,138,-76,162,-176r149,0","w":946},"u":{"d":"514,-250v-1,85,34,113,119,113v71,0,129,-26,172,-79v43,-53,76,-136,98,-251r116,-596r355,0r-183,942r151,0r-23,121r-506,0r29,-150v-101,114,-194,177,-387,179v-193,2,-295,-92,-296,-281v0,-41,5,-86,15,-135r108,-555r-152,0r23,-121r506,0r-121,621v-16,83,-24,147,-24,192","w":1489},"v":{"d":"638,0r-284,0r-194,-942r-117,0r23,-121r433,0r163,793v17,0,81,-70,187,-214v99,-135,169,-289,212,-458r-117,0r24,-123r237,2v2,166,-64,360,-199,583v-127,211,-249,371,-368,480","w":1190},"w":{"d":"1317,-300v6,-5,57,-65,150,-182v96,-121,161,-275,199,-460r-140,2r24,-123r272,0v-38,255,-99,447,-182,578v-129,203,-258,365,-385,485r-244,0r-96,-666r-356,666r-242,0r-139,-942r-116,0r23,-121r436,0r102,696r373,-696r211,0","w":1763},"x":{"d":"747,-678r349,-385r143,0r-455,500r230,442r141,0r-23,121r-453,0r-208,-401r-366,401r-142,0r468,-518r-222,-424r-119,0r23,-121r433,0","w":1221},"y":{"d":"113,235v-3,93,68,110,159,110v74,0,149,-24,224,-72r-284,-1215r-115,0r24,-121r434,0r238,1028v186,-279,253,-471,345,-905r-142,-1r23,-121r287,-1r-61,293v-59,271,-125,469,-200,594v-195,327,-371,520,-528,580v-89,34,-197,51,-325,51v-63,0,-140,-14,-231,-43r43,-222r113,1v-3,16,-4,31,-4,44","w":1190},"z":{"d":"902,-1005v64,0,160,-40,196,-60r99,2r-23,119r-700,749v22,8,42,18,62,29v84,46,153,68,206,68v80,0,180,-48,300,-145r-31,158v-118,112,-230,168,-337,168v-55,0,-126,-25,-211,-68v-96,-48,-162,-73,-199,-73v-64,0,-160,40,-196,60r-99,-2r23,-121r698,-748v-21,-7,-41,-18,-60,-28v-84,-46,-153,-68,-206,-68v-80,0,-180,48,-300,145r31,-158v118,-112,230,-168,337,-168v55,0,126,25,211,68v96,48,162,73,199,73","w":1163},"{":{"d":"973,213r-24,121v-146,1,-403,-2,-461,-24v-78,-30,-139,-77,-139,-178v0,-116,49,-298,69,-417v36,-204,-6,-263,-197,-266r-61,0r24,-121v112,4,216,-10,266,-58v42,-40,75,-107,95,-208v27,-129,53,-315,93,-416v37,-92,114,-148,208,-178v68,-22,320,-25,471,-24r-24,120r-103,0v-75,0,-129,16,-162,47v-33,31,-59,92,-76,183r-53,270v-43,207,-98,277,-291,324v83,23,136,56,160,100v24,44,26,119,5,225r-53,271v-31,176,-8,225,150,229r103,0","w":1317},"|":{"d":"479,-1565r0,2048r-215,0r0,-2048r215,0","w":745},"}":{"d":"26,213r101,0v74,0,127,-16,161,-47v34,-31,60,-92,77,-182r53,-271v44,-208,99,-273,293,-325v-164,-44,-210,-106,-167,-324r53,-270v31,-176,8,-226,-150,-230r-101,0r24,-120v145,-1,402,2,459,24v78,30,139,78,139,178v0,115,-47,298,-68,416v-36,204,6,263,195,266r62,0r-24,121v-112,-4,-217,9,-267,57v-42,40,-73,109,-93,209v-26,129,-54,315,-94,417v-37,92,-114,147,-208,178v-67,22,-318,25,-469,24","w":1317},"~":{"d":"1499,-625v-105,96,-211,162,-381,168v-68,2,-200,-39,-292,-75v-114,-45,-204,-66,-269,-66v-51,0,-105,12,-161,36v-56,24,-115,60,-179,109r0,-206v64,-58,127,-101,189,-127v156,-64,263,-52,438,16v102,40,247,84,315,84v51,0,105,-12,161,-36v56,-24,115,-60,179,-109r0,206","w":1716},"\u00a0":{"w":713},"\u00a1":{"d":"720,-1464v102,139,-46,323,-197,323v-100,0,-172,-83,-152,-188v18,-96,119,-192,226,-191v52,0,94,17,123,56xm489,0r-375,0r281,-842r37,-190r139,0r-37,190","w":899},"\u00a2":{"d":"655,-94r170,-875v-69,17,-125,58,-167,125v-42,67,-77,171,-104,312v-27,141,-34,244,-18,311v16,67,56,109,119,127xm774,-88v136,-25,215,-114,255,-244r166,0v-77,193,-217,325,-442,355r-54,276r-121,0r53,-270v-349,-4,-539,-195,-470,-561v64,-337,306,-551,688,-560r51,-264r121,0r-52,269v115,11,204,41,322,79r-57,295r-113,0v11,-161,-37,-249,-173,-266"},"\u00a3":{"d":"1333,-1202r-120,0v18,-124,-34,-205,-149,-205v-78,0,-138,25,-182,75v-44,50,-77,132,-100,249r-52,268r352,0r-24,121r-352,0r-108,557r420,0r44,-228r137,0r-71,365r-1129,0r24,-121r193,0r111,-573r-193,0r24,-121r193,0r54,-277v58,-294,266,-429,624,-428v120,0,233,17,359,35"},"\u00a4":{"d":"434,-641v0,121,98,219,219,219v119,0,219,-100,219,-219v0,-120,-99,-219,-219,-219v-119,0,-219,100,-219,219xm653,-213v-87,-1,-156,-23,-217,-55r-209,207r-151,-154r209,-209v-39,-58,-60,-125,-60,-217v0,-90,23,-160,60,-217r-209,-205r153,-158r207,211v59,-37,127,-59,217,-59v88,0,155,25,221,59r205,-211r152,154r-209,205v35,64,59,134,59,221v0,91,-22,156,-59,215r209,211r-156,154r-207,-211v-58,38,-124,59,-215,59","w":1303},"\u00a5":{"d":"181,0r23,-121r190,0r68,-346r-403,0r22,-117r403,0r12,-59r-35,-135r-342,0r23,-117r286,0r-130,-477r-137,0r23,-121r694,0r-23,121r-170,0r150,551r364,-551r-151,0r23,-121r436,0r-23,121r-135,0r-314,477r292,0r-23,117r-350,0r-75,116r-16,78r403,0r-22,117r-403,0r-68,346r190,0r-23,121r-759,0"},"\u00a6":{"d":"479,-1432r0,758r-215,0r0,-758r215,0xm479,-408r0,758r-215,0r0,-758r215,0","w":745},"\u00a7":{"d":"1055,-1475r-47,240r-119,0v15,-121,-51,-172,-173,-172v-106,0,-184,52,-200,141v-6,31,-2,58,12,80v32,49,157,113,222,152v112,67,188,126,224,182v77,120,24,295,-60,377v-49,48,-112,88,-193,117v87,57,134,125,108,264v-37,195,-228,292,-474,289v-129,-1,-241,-19,-357,-45r47,-240r118,0v-13,130,52,171,184,172v113,1,191,-50,208,-143v6,-31,2,-58,-11,-80v-31,-49,-159,-113,-223,-152v-112,-68,-187,-127,-223,-183v-36,-56,-48,-122,-33,-198v31,-154,139,-240,287,-293v-87,-55,-136,-127,-110,-264v36,-192,228,-292,470,-289v122,1,229,20,343,45xm441,-901v-58,38,-105,85,-120,156v-9,41,-1,78,23,112v48,71,198,143,286,197v58,-39,107,-86,122,-156v9,-40,0,-77,-24,-111v-49,-70,-199,-143,-287,-198","w":1071},"\u00a8":{"d":"359,-1365v-81,-107,36,-249,152,-249v76,0,133,65,117,146v-14,72,-91,148,-173,147v-40,0,-73,-14,-96,-44xm806,-1365v-80,-107,35,-249,151,-249v76,0,135,66,120,146v-13,71,-95,148,-176,147v-40,0,-73,-14,-95,-44","w":1024},"\u00a9":{"d":"740,-1430v172,-72,396,-72,568,0v171,72,332,232,403,404v70,171,71,397,0,568v-71,171,-232,332,-403,403v-172,72,-396,72,-568,0v-171,-72,-332,-232,-403,-403v-71,-171,-70,-397,0,-568v71,-172,232,-332,403,-404xm1248,-1288v-136,-56,-313,-57,-449,0v-135,57,-264,184,-320,320v-56,135,-56,317,0,452v57,136,183,263,319,319v136,56,317,57,452,1v135,-55,263,-185,319,-320v56,-135,56,-317,0,-452v-56,-136,-187,-264,-321,-320xm1059,-399v113,0,168,-78,194,-181r138,0v-35,181,-153,277,-365,279v-251,2,-420,-185,-420,-440v0,-263,169,-446,430,-443v128,2,226,31,326,76r0,223r-105,0v-13,-114,-80,-199,-198,-200v-69,0,-121,31,-163,91v-77,110,-78,394,-1,504v41,59,94,91,164,91","w":2048},"\u00aa":{"d":"328,-1106v-25,116,-12,273,114,249v116,-22,197,-150,220,-279v7,-44,21,-100,21,-145v0,-87,-43,-154,-132,-136v-51,10,-96,43,-137,99v-41,56,-68,127,-86,212xm532,-1520v93,-18,163,18,187,88r17,-89r161,0r-115,592r115,0r-29,150r-276,0r25,-129v-65,96,-155,172,-301,175v-122,2,-188,-89,-185,-219v4,-175,65,-322,152,-422v69,-79,152,-127,249,-146xm40,-639r798,0r-26,135r-798,0","w":997},"\u00ab":{"d":"1178,-1069r-28,147r-302,322r177,321r-29,148r-394,-385r32,-168xm718,-1069r-28,147r-303,322r178,321r-29,148r-394,-385r32,-168","w":1280},"\u00ac":{"d":"217,-903r1282,0r0,616r-229,0r0,-389r-1053,0r0,-227","w":1716},"\u00ad":{"d":"137,-684r628,0r-52,270r-628,0","w":850},"\u00ae":{"d":"1360,-954v0,125,-74,190,-194,200v55,16,95,54,118,105r100,215r60,0r0,82r-223,0r-117,-254v-21,-45,-42,-76,-62,-90v-23,-18,-64,-23,-110,-21r0,283r86,0r0,82r-369,0r0,-82r86,0r0,-643r-86,0r0,-82r453,0v147,-2,258,69,258,205xm1163,-938v0,-94,-65,-140,-164,-139r-67,0r0,278r67,0v99,1,164,-45,164,-139xm740,-1430v172,-72,396,-72,568,0v171,72,332,232,403,404v70,171,71,397,0,568v-71,171,-232,332,-403,403v-172,72,-396,72,-568,0v-171,-72,-332,-232,-403,-403v-71,-171,-70,-397,0,-568v71,-172,232,-332,403,-404xm1248,-1288v-136,-56,-313,-57,-449,0v-135,57,-264,184,-320,320v-56,135,-56,317,0,452v57,136,183,263,319,319v136,56,317,57,452,1v135,-55,263,-185,319,-320v56,-135,56,-317,0,-452v-56,-136,-187,-264,-321,-320","w":2048},"\u00af":{"d":"355,-1548r630,0r-36,188r-630,0","w":1024},"\u00b0":{"d":"178,-1200v0,-226,231,-404,461,-308v115,48,205,150,205,308v0,156,-90,259,-204,306v-231,95,-462,-78,-462,-306xm684,-1200v0,-93,-80,-172,-172,-172v-94,0,-172,78,-172,172v0,94,77,170,172,170v93,0,172,-77,172,-170","w":1024},"\u00b1":{"d":"217,-227r1282,0r0,227r-1282,0r0,-227xm973,-1284r0,358r526,0r0,228r-526,0r0,358r-230,0r0,-358r-526,0r0,-228r526,0r0,-358r230,0","w":1716},"\u00b2":{"d":"411,-1436v-94,1,-164,72,-188,152r-94,0r38,-195v231,-65,696,-88,645,201v-10,55,-38,103,-83,146v-97,93,-360,214,-512,294r414,0r18,-96r100,0r-48,250r-696,0r26,-133r145,-84v141,-82,232,-146,274,-193v42,-47,70,-101,82,-163v22,-108,-22,-180,-121,-179","w":897},"\u00b3":{"d":"150,-911v-11,108,37,159,142,159v121,0,193,-63,213,-168v22,-114,-43,-168,-156,-167r-41,0r16,-84v122,6,206,-35,225,-132v17,-89,-36,-134,-125,-133v-94,1,-157,58,-177,137r-96,1r35,-183v104,-21,201,-39,309,-39v120,0,208,17,263,52v55,35,77,87,63,153v-22,108,-118,164,-242,182v77,11,133,34,167,71v34,37,46,87,34,149v-16,81,-63,141,-138,183v-142,80,-450,76,-626,19r38,-200r96,0","w":897},"\u00b4":{"d":"797,-1638r279,0r-447,376r-164,0","w":1024},"\u00b5":{"d":"564,-251v0,87,37,114,120,114v71,0,128,-26,171,-79v43,-53,76,-137,98,-251r116,-596r354,0r-183,942r152,0r-24,121r-506,0r24,-125v-47,55,-91,95,-132,119v-41,24,-87,35,-136,35v-50,-1,-81,-17,-115,-41r-85,438r-354,0r266,-1368r-152,0r24,-121r506,0r-116,596v-19,95,-28,167,-28,216","w":1499},"\u00b6":{"d":"787,-1493r555,0r-24,125r-113,0r-304,1565r-152,0r304,-1565r-163,0r-304,1565r-152,0r164,-846v-141,-11,-244,-53,-308,-127v-64,-74,-83,-172,-61,-295v45,-245,270,-422,558,-422","w":1303},"\u00b7":{"d":"196,-578v-103,-138,46,-323,197,-323v100,0,173,86,154,190v-18,95,-120,191,-228,189v-52,0,-94,-18,-123,-56","w":713},"\u00b8":{"d":"258,219v94,44,283,63,300,-57v3,-19,3,-39,-4,-61v-7,-22,-23,-56,-48,-101r127,0v33,43,59,81,69,118v52,184,-85,286,-276,283v-71,-1,-137,-10,-197,-26","w":1024},"\u00b9":{"d":"81,-684r18,-94r164,0r119,-613r-202,101r20,-105r246,-125r227,0r-144,742r164,0r-18,94r-594,0","w":897},"\u00ba":{"d":"40,-639r798,0r-26,135r-798,0xm475,-823v51,0,91,-24,123,-71v32,-47,59,-125,80,-234v21,-109,25,-188,12,-235v-13,-47,-45,-71,-96,-71v-51,0,-93,23,-124,70v-31,47,-56,125,-78,236v-22,110,-27,188,-14,235v13,47,46,70,97,70xm459,-737v-141,0,-245,-35,-311,-104v-66,-69,-87,-165,-64,-287v45,-239,244,-394,527,-392v141,0,245,34,311,104v66,70,87,166,64,288v-45,239,-244,393,-527,391","w":1024},"\u00bb":{"d":"284,-1069r394,385r-32,168r-544,385r29,-148r301,-321r-176,-322xm744,-1069r394,385r-32,168r-544,385r29,-148r302,-321r-177,-322","w":1280},"\u00bc":{"d":"81,-684r18,-94r164,0r119,-613r-202,101r20,-105r246,-125r227,0r-144,742r164,0r-18,94r-594,0xm1833,-16r-518,0r18,-94r125,0r24,-121r-363,0r17,-88r482,-533r252,0r-102,527r147,0r-18,94r-147,0r-24,121r125,0xm1500,-325r65,-334r-305,334r240,0xm1601,-1520r170,0r-1236,1549r-170,0","w":2136},"\u00bd":{"d":"1520,-768v-94,1,-164,72,-188,152r-94,0r38,-195v231,-65,696,-88,645,201v-10,55,-38,103,-83,146v-97,93,-360,214,-512,294r414,0r18,-96r100,0r-48,250r-696,0r26,-133r145,-84v141,-82,233,-146,275,-193v42,-47,69,-101,81,-163v22,-108,-22,-180,-121,-179xm81,-684r18,-94r164,0r119,-613r-202,101r20,-105r246,-125r227,0r-144,742r164,0r-18,94r-594,0xm1601,-1520r170,0r-1236,1549r-170,0","w":2136},"\u00be":{"d":"150,-911v-11,108,37,159,142,159v121,0,193,-63,213,-168v22,-114,-43,-168,-156,-167r-41,0r16,-84v122,6,206,-35,225,-132v17,-89,-36,-134,-125,-133v-94,1,-157,58,-177,137r-96,1r35,-183v104,-21,201,-39,309,-39v120,0,208,17,263,52v55,35,77,87,63,153v-22,108,-118,164,-242,182v77,11,133,34,167,71v34,37,46,87,34,149v-16,81,-63,141,-138,183v-142,80,-450,76,-626,19r38,-200r96,0xm1833,-16r-518,0r18,-94r125,0r24,-121r-363,0r17,-88r482,-533r252,0r-102,527r147,0r-18,94r-147,0r-24,121r125,0xm1500,-325r65,-334r-305,334r240,0xm1601,-1520r170,0r-1236,1549r-170,0","w":2136},"\u00bf":{"d":"942,-1464v102,139,-46,323,-197,323v-101,0,-173,-83,-153,-188v18,-96,119,-192,227,-191v52,0,94,17,123,56xm580,-84v169,0,249,-111,289,-262r120,0r-59,307v-152,39,-297,68,-467,68v-168,0,-289,-37,-365,-111v-76,-74,-101,-178,-74,-315v55,-277,276,-432,594,-453r40,-205r139,0r-58,299v-194,57,-302,173,-344,381v-36,185,18,291,185,291","w":1200},"\u00c0":{"d":"-161,0r23,-121r122,0r829,-1372r239,0r296,1372r142,0r-23,121r-699,0r23,-121r146,0r-63,-305r-561,0r-185,305r178,0r-23,121r-444,0xm385,-547r463,0r-119,-571xm949,-1899r130,264r-164,0r-245,-264r279,0","w":1589},"\u00c1":{"d":"-161,0r23,-121r122,0r829,-1372r239,0r296,1372r142,0r-23,121r-699,0r23,-121r146,0r-63,-305r-561,0r-185,305r178,0r-23,121r-444,0xm385,-547r463,0r-119,-571xm1026,-1899r279,0r-349,264r-164,0","w":1589},"\u00c2":{"d":"-161,0r23,-121r122,0r829,-1372r239,0r296,1372r142,0r-23,121r-699,0r23,-121r146,0r-63,-305r-561,0r-185,305r178,0r-23,121r-444,0xm385,-547r463,0r-119,-571xm833,-1899r308,0r171,264r-164,0r-181,-161r-245,161r-164,0","w":1589},"\u00c3":{"d":"-161,0r23,-121r122,0r829,-1372r239,0r296,1372r142,0r-23,121r-699,0r23,-121r146,0r-63,-305r-561,0r-185,305r178,0r-23,121r-444,0xm385,-547r463,0r-119,-571xm852,-1726v-79,-25,-142,23,-152,91r-110,0v25,-150,103,-264,260,-268v86,-2,178,74,254,96v76,22,135,-28,144,-94r110,0v-26,150,-102,264,-260,268v-103,2,-161,-67,-246,-93","w":1589},"\u00c4":{"d":"-161,0r23,-121r122,0r829,-1372r239,0r296,1372r142,0r-23,121r-699,0r23,-121r146,0r-63,-305r-561,0r-185,305r178,0r-23,121r-444,0xm385,-547r463,0r-119,-571xm638,-1673v-82,-106,37,-250,152,-250v75,0,133,67,117,147v-14,72,-90,147,-173,146v-40,0,-73,-13,-96,-43xm1084,-1673v-53,-68,-15,-159,41,-206v62,-52,158,-64,207,0v82,106,-36,251,-152,249v-40,0,-73,-14,-96,-43","w":1589},"\u00c5":{"d":"943,-1747v-73,0,-145,66,-157,131v-13,72,38,131,106,131v75,0,146,-65,158,-131v14,-72,-38,-131,-107,-131xm-201,0r24,-121r122,0r764,-1263v-63,-44,-94,-124,-76,-232v24,-143,179,-285,340,-285v150,0,262,129,229,285v-22,106,-82,183,-166,232r273,1263r142,0r-24,121r-699,0r24,-121r146,0r-64,-305r-561,0r-184,305r178,0r-24,121r-444,0xm346,-547r463,0r-117,-571","w":1589},"\u00c6":{"d":"362,-545r465,0r161,-827r-75,0xm531,0r23,-121r190,0r59,-303r-522,0r-202,303r164,0r-23,121r-428,0r23,-121r114,0r836,-1251r-201,0r23,-121r1551,0r-68,352r-138,0r41,-215r-602,0r-93,479r367,0r37,-190r135,0r-100,516r-135,0r37,-190r-367,0r-117,604r623,0r41,-215r135,0r-68,352r-1335,0","w":2118},"\u00c7":{"d":"460,219v94,44,283,63,300,-57v3,-19,3,-39,-4,-61v-7,-22,-23,-56,-48,-101r127,0v33,43,59,81,69,118v52,184,-85,286,-276,283v-71,-1,-137,-10,-197,-26xm1412,-1024v-2,-241,-106,-374,-341,-375v-145,0,-264,54,-355,161v-91,107,-159,271,-202,493v-43,222,-40,386,10,493v50,107,148,160,295,160v99,0,185,-28,259,-83v74,-55,136,-139,187,-251r199,0v-69,154,-162,268,-279,343v-117,75,-261,112,-433,112v-252,0,-437,-70,-556,-209v-119,-139,-156,-327,-110,-565v46,-239,157,-428,330,-567v231,-186,556,-254,908,-176v92,21,187,54,286,97r-71,367r-127,0","w":1630},"\u00c8":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r1342,0r-68,352r-138,0r41,-215r-628,0r-93,479r391,0r37,-190r137,0r-100,516r-137,0r37,-190r-391,0r-117,604r647,0r41,-215r137,0r-68,352r-1360,0xm993,-1899r130,264r-164,0r-245,-264r279,0","w":1561},"\u00c9":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r1342,0r-68,352r-138,0r41,-215r-628,0r-93,479r391,0r37,-190r137,0r-100,516r-137,0r37,-190r-391,0r-117,604r647,0r41,-215r137,0r-68,352r-1360,0xm1070,-1899r279,0r-349,264r-164,0","w":1561},"\u00ca":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r1342,0r-68,352r-138,0r41,-215r-628,0r-93,479r391,0r37,-190r137,0r-100,516r-137,0r37,-190r-391,0r-117,604r647,0r41,-215r137,0r-68,352r-1360,0xm877,-1899r308,0r171,264r-164,0r-181,-161r-245,161r-164,0","w":1561},"\u00cb":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r1342,0r-68,352r-138,0r41,-215r-628,0r-93,479r391,0r37,-190r137,0r-100,516r-137,0r37,-190r-391,0r-117,604r647,0r41,-215r137,0r-68,352r-1360,0xm724,-1673v-82,-106,37,-250,152,-250v75,0,133,67,117,147v-14,72,-90,147,-173,146v-40,0,-73,-13,-96,-43xm1170,-1673v-53,-68,-15,-159,41,-206v62,-52,158,-64,207,0v82,106,-36,251,-152,249v-40,0,-73,-14,-96,-43","w":1561},"\u00cc":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r768,0r-23,121r-192,0r-244,1251r192,0r-23,121r-768,0xm657,-1899r130,264r-164,0r-245,-264r279,0","w":958},"\u00cd":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r768,0r-23,121r-192,0r-244,1251r192,0r-23,121r-768,0xm734,-1899r279,0r-349,264r-164,0","w":958},"\u00ce":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r768,0r-23,121r-192,0r-244,1251r192,0r-23,121r-768,0xm541,-1899r308,0r171,264r-164,0r-181,-161r-245,161r-164,0","w":958},"\u00cf":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r768,0r-23,121r-192,0r-244,1251r192,0r-23,121r-768,0xm311,-1673v-82,-106,37,-250,152,-250v75,0,133,67,117,147v-14,72,-90,147,-173,146v-40,0,-73,-13,-96,-43xm757,-1673v-53,-68,-15,-159,41,-206v62,-52,158,-64,207,0v82,106,-36,251,-152,249v-40,0,-73,-14,-96,-43","w":958},"\u00d0":{"d":"564,-121r139,0v156,0,280,-49,371,-149v91,-100,158,-259,200,-478v42,-217,38,-376,-14,-475v-52,-99,-157,-149,-313,-149r-139,0r-102,522r332,0r-27,137r-332,0xm-36,0r23,-121r192,0r115,-592r-213,0r27,-137r213,0r102,-522r-192,0r23,-121r768,0v267,0,459,63,576,191v117,128,150,312,104,554v-89,469,-424,748,-970,748r-768,0","w":1790},"\u00d1":{"d":"-55,0r23,-121r191,0r244,-1251r-191,0r23,-121r467,0r696,1057r182,-936r-190,0r23,-121r522,0r-23,121r-191,0r-267,1372r-262,0r-705,-1079r-187,958r190,0r-23,121r-522,0xm1016,-1726v-79,-25,-142,23,-152,91r-110,0v25,-150,103,-264,260,-268v86,-2,178,74,254,96v76,22,135,-28,144,-94r110,0v-26,150,-102,264,-260,268v-103,2,-161,-67,-246,-93","w":1872},"\u00d2":{"d":"764,-92v127,0,233,-54,316,-161v83,-107,145,-271,188,-492v43,-221,43,-386,2,-493v-41,-107,-125,-161,-252,-161v-127,0,-232,55,-315,163v-83,108,-146,272,-189,491v-43,219,-43,383,-2,491v41,108,125,162,252,162xm740,29v-481,0,-751,-277,-654,-774v47,-241,155,-431,325,-569v170,-138,380,-206,631,-206v482,0,751,277,654,775v-47,241,-155,431,-325,568v-170,137,-380,206,-631,206xm1071,-1899r130,264r-164,0r-245,-264r279,0","w":1784},"\u00d3":{"d":"764,-92v127,0,233,-54,316,-161v83,-107,145,-271,188,-492v43,-221,43,-386,2,-493v-41,-107,-125,-161,-252,-161v-127,0,-232,55,-315,163v-83,108,-146,272,-189,491v-43,219,-43,383,-2,491v41,108,125,162,252,162xm740,29v-481,0,-751,-277,-654,-774v47,-241,155,-431,325,-569v170,-138,380,-206,631,-206v482,0,751,277,654,775v-47,241,-155,431,-325,568v-170,137,-380,206,-631,206xm1148,-1899r279,0r-349,264r-164,0","w":1784},"\u00d4":{"d":"764,-92v127,0,233,-54,316,-161v83,-107,145,-271,188,-492v43,-221,43,-386,2,-493v-41,-107,-125,-161,-252,-161v-127,0,-232,55,-315,163v-83,108,-146,272,-189,491v-43,219,-43,383,-2,491v41,108,125,162,252,162xm740,29v-481,0,-751,-277,-654,-774v47,-241,155,-431,325,-569v170,-138,380,-206,631,-206v482,0,751,277,654,775v-47,241,-155,431,-325,568v-170,137,-380,206,-631,206xm955,-1899r308,0r171,264r-164,0r-181,-161r-245,161r-164,0","w":1784},"\u00d5":{"d":"764,-92v127,0,233,-54,316,-161v83,-107,145,-271,188,-492v43,-221,43,-386,2,-493v-41,-107,-125,-161,-252,-161v-127,0,-232,55,-315,163v-83,108,-146,272,-189,491v-43,219,-43,383,-2,491v41,108,125,162,252,162xm740,29v-481,0,-751,-277,-654,-774v47,-241,155,-431,325,-569v170,-138,380,-206,631,-206v482,0,751,277,654,775v-47,241,-155,431,-325,568v-170,137,-380,206,-631,206xm974,-1726v-79,-25,-142,23,-152,91r-110,0v25,-150,103,-264,260,-268v86,-2,178,74,254,96v76,22,135,-28,144,-94r110,0v-26,150,-102,264,-260,268v-103,2,-161,-67,-246,-93","w":1784},"\u00d6":{"d":"764,-92v127,0,233,-54,316,-161v83,-107,145,-271,188,-492v43,-221,43,-386,2,-493v-41,-107,-125,-161,-252,-161v-127,0,-232,55,-315,163v-83,108,-146,272,-189,491v-43,219,-43,383,-2,491v41,108,125,162,252,162xm740,29v-481,0,-751,-277,-654,-774v47,-241,155,-431,325,-569v170,-138,380,-206,631,-206v482,0,751,277,654,775v-47,241,-155,431,-325,568v-170,137,-380,206,-631,206xm802,-1673v-82,-106,37,-250,152,-250v75,0,133,67,117,147v-14,72,-90,147,-173,146v-40,0,-73,-13,-96,-43xm1248,-1673v-53,-68,-15,-159,41,-206v62,-52,158,-64,207,0v82,106,-36,251,-152,249v-40,0,-73,-14,-96,-43","w":1784},"\u00d7":{"d":"1452,-1081r-440,440r440,440r-154,154r-440,-440r-440,440r-154,-154r441,-440r-441,-440r154,-156r440,440r440,-440","w":1716},"\u00d8":{"d":"1292,-1157v-23,-149,-110,-241,-274,-242v-127,0,-232,55,-315,163v-83,108,-146,272,-189,491v-17,88,-30,172,-31,266xm491,-334v26,152,106,242,273,242v130,0,237,-56,320,-167v83,-111,147,-286,193,-525v14,-73,23,-133,16,-209xm1042,-1520v216,0,383,53,500,154r242,-203r73,90r-237,199v93,138,119,315,76,535v-47,241,-155,431,-325,568v-170,137,-380,206,-631,206v-216,0,-380,-54,-498,-156r-244,205r-73,-90r239,-201v-94,-135,-121,-313,-78,-532v47,-241,155,-431,325,-569v170,-138,380,-206,631,-206","w":1784},"\u00d9":{"d":"384,-1372r-190,0r24,-121r768,0r-24,121r-191,0r-145,747v-36,186,-32,317,12,391v44,74,135,111,276,111v137,0,242,-38,314,-113v72,-75,126,-204,162,-389r145,-747r-190,0r24,-121r520,0r-24,121r-191,0r-149,768v-44,228,-125,391,-243,488v-118,97,-292,145,-525,145v-231,0,-387,-49,-467,-147v-80,-98,-98,-261,-54,-488xm1121,-1899r130,264r-164,0r-245,-264r279,0","w":1786},"\u00da":{"d":"384,-1372r-190,0r24,-121r768,0r-24,121r-191,0r-145,747v-36,186,-32,317,12,391v44,74,135,111,276,111v137,0,242,-38,314,-113v72,-75,126,-204,162,-389r145,-747r-190,0r24,-121r520,0r-24,121r-191,0r-149,768v-44,228,-125,391,-243,488v-118,97,-292,145,-525,145v-231,0,-387,-49,-467,-147v-80,-98,-98,-261,-54,-488xm1198,-1899r279,0r-349,264r-164,0","w":1786},"\u00db":{"d":"384,-1372r-190,0r24,-121r768,0r-24,121r-191,0r-145,747v-36,186,-32,317,12,391v44,74,135,111,276,111v137,0,242,-38,314,-113v72,-75,126,-204,162,-389r145,-747r-190,0r24,-121r520,0r-24,121r-191,0r-149,768v-44,228,-125,391,-243,488v-118,97,-292,145,-525,145v-231,0,-387,-49,-467,-147v-80,-98,-98,-261,-54,-488xm1005,-1899r308,0r171,264r-164,0r-181,-161r-245,161r-164,0","w":1786},"\u00dc":{"d":"384,-1372r-190,0r24,-121r768,0r-24,121r-191,0r-145,747v-36,186,-32,317,12,391v44,74,135,111,276,111v137,0,242,-38,314,-113v72,-75,126,-204,162,-389r145,-747r-190,0r24,-121r520,0r-24,121r-191,0r-149,768v-44,228,-125,391,-243,488v-118,97,-292,145,-525,145v-231,0,-387,-49,-467,-147v-80,-98,-98,-261,-54,-488xm852,-1673v-82,-106,37,-250,152,-250v75,0,133,67,117,147v-14,72,-90,147,-173,146v-40,0,-73,-13,-96,-43xm1298,-1673v-53,-68,-15,-159,41,-206v62,-52,158,-64,207,0v82,106,-36,251,-152,249v-40,0,-73,-14,-96,-43","w":1786},"\u00dd":{"d":"207,0r23,-121r201,0r97,-497r-297,-754r-127,0r23,-121r716,0r-23,121r-166,0r225,569r445,-569r-149,0r23,-121r428,0r-23,121r-127,0r-551,702r-107,549r201,0r-23,121r-789,0xm986,-1899r279,0r-349,264r-164,0","w":1462},"\u00de":{"d":"-49,0r23,-121r191,0r244,-1251r-191,0r23,-121r815,0r-23,121r-239,0r-33,170r274,0v166,0,291,39,373,118v82,79,109,185,84,318v-49,265,-306,442,-627,438r-274,0r-41,207r241,0r-23,121r-817,0xm614,-449r112,0v189,-1,314,-144,347,-317v36,-188,-49,-317,-224,-315r-112,0","w":1550},"\u00df":{"d":"686,-289v-10,138,34,204,165,205v104,1,185,-70,201,-160v13,-70,-27,-144,-121,-222r-104,-87v-58,-49,-97,-100,-117,-153v-20,-52,-24,-113,-10,-183v39,-194,180,-292,386,-332v21,-164,-18,-223,-172,-223v-169,0,-225,95,-256,254r-237,1219v-27,139,-82,230,-165,269v-128,61,-266,91,-412,91r23,-112v53,0,96,-19,127,-57v31,-38,55,-101,72,-187r230,-1180v55,-278,285,-411,628,-409v333,1,494,115,474,440v-109,-2,-204,13,-266,46v-59,30,-94,75,-105,134v-5,27,-3,51,8,74v19,43,115,116,164,157v101,84,162,153,185,207v23,53,27,115,13,187v-43,223,-259,343,-539,340v-128,-1,-234,-26,-343,-60r50,-258r121,0","w":1556},"\u00e0":{"d":"630,-1638r184,376r-164,0r-299,-376r279,0xm841,-876v-2,-40,-22,-60,-60,-60v-89,0,-178,53,-265,160v-41,49,-77,156,-109,321v-24,123,-27,209,-10,257v17,48,58,71,121,71v62,0,113,-28,152,-83v39,-55,70,-145,94,-269xm1181,-1031r-175,910r133,-2r-24,123r-444,0r26,-135v-73,109,-175,164,-305,164v-262,2,-379,-191,-321,-477v30,-148,107,-287,235,-416v151,-152,328,-228,531,-228v200,0,315,20,344,61","w":1327},"\u00e1":{"d":"885,-1638r279,0r-447,376r-164,0xm841,-876v-2,-40,-22,-60,-60,-60v-89,0,-178,53,-265,160v-41,49,-77,156,-109,321v-24,123,-27,209,-10,257v17,48,58,71,121,71v62,0,113,-28,152,-83v39,-55,70,-145,94,-269xm1181,-1031r-175,910r133,-2r-24,123r-444,0r26,-135v-73,109,-175,164,-305,164v-262,2,-379,-191,-321,-477v30,-148,107,-287,235,-416v151,-152,328,-228,531,-228v200,0,315,20,344,61","w":1327},"\u00e2":{"d":"634,-1638r242,0r182,376r-164,0r-169,-225r-257,225r-164,0xm841,-876v-2,-40,-22,-60,-60,-60v-89,0,-178,53,-265,160v-41,49,-77,156,-109,321v-24,123,-27,209,-10,257v17,48,58,71,121,71v62,0,113,-28,152,-83v39,-55,70,-145,94,-269xm1181,-1031r-175,910r133,-2r-24,123r-444,0r26,-135v-73,109,-175,164,-305,164v-262,2,-379,-191,-321,-477v30,-148,107,-287,235,-416v151,-152,328,-228,531,-228v200,0,315,20,344,61","w":1327},"\u00e3":{"d":"587,-1440v-66,0,-103,64,-115,131r-110,0v18,-101,52,-185,99,-237v59,-65,146,-96,240,-64v45,15,98,61,137,92v26,19,51,29,75,29v66,0,103,-64,115,-131r110,0v-18,101,-51,186,-99,238v-59,65,-146,94,-240,62v-45,-16,-97,-61,-137,-90v-26,-20,-51,-30,-75,-30xm841,-876v-2,-40,-22,-60,-60,-60v-89,0,-178,53,-265,160v-41,49,-77,156,-109,321v-24,123,-27,209,-10,257v17,48,58,71,121,71v62,0,113,-28,152,-83v39,-55,70,-145,94,-269xm1181,-1031r-175,910r133,-2r-24,123r-444,0r26,-135v-73,109,-175,164,-305,164v-262,2,-379,-191,-321,-477v30,-148,107,-287,235,-416v151,-152,328,-228,531,-228v200,0,315,20,344,61","w":1327},"\u00e4":{"d":"447,-1365v-81,-107,36,-249,152,-249v76,0,133,65,117,146v-14,72,-91,148,-173,147v-40,0,-73,-14,-96,-44xm894,-1365v-80,-107,35,-249,151,-249v76,0,135,66,120,146v-13,71,-95,148,-176,147v-40,0,-73,-14,-95,-44xm841,-876v-2,-40,-22,-60,-60,-60v-89,0,-178,53,-265,160v-41,49,-77,156,-109,321v-24,123,-27,209,-10,257v17,48,58,71,121,71v62,0,113,-28,152,-83v39,-55,70,-145,94,-269xm1181,-1031r-175,910r133,-2r-24,123r-444,0r26,-135v-73,109,-175,164,-305,164v-262,2,-379,-191,-321,-477v30,-148,107,-287,235,-416v151,-152,328,-228,531,-228v200,0,315,20,344,61","w":1327},"\u00e5":{"d":"841,-876v-2,-40,-22,-60,-60,-60v-89,0,-178,53,-265,160v-41,49,-77,156,-109,321v-24,123,-27,209,-10,257v17,48,58,71,121,71v62,0,113,-28,152,-83v39,-55,70,-145,94,-269xm1181,-1031r-175,910r133,-2r-24,123r-444,0r26,-135v-73,109,-175,164,-305,164v-262,2,-379,-191,-321,-477v30,-148,107,-287,235,-416v151,-152,328,-228,531,-228v200,0,315,20,344,61xm475,-1534v27,-143,177,-285,340,-285v151,0,260,127,230,285v-27,143,-177,285,-340,285v-151,0,-260,-127,-230,-285xm785,-1665v-75,0,-143,65,-156,131v-14,74,37,131,106,131v75,0,144,-65,156,-131v13,-72,-38,-131,-106,-131","w":1327},"\u00e6":{"d":"1083,-519v250,-3,382,-95,382,-312v0,-99,-41,-148,-124,-148v-63,0,-110,30,-147,85v-37,56,-87,227,-111,375xm387,-288v0,114,32,161,130,161v63,0,114,-28,153,-83v39,-55,70,-145,94,-269r77,-397v-2,-40,-22,-60,-60,-60v-89,0,-178,53,-265,160v-41,49,-72,132,-95,249v-23,117,-34,197,-34,239xm392,29v-212,0,-336,-126,-336,-339v0,-202,79,-382,238,-542v159,-160,340,-240,543,-240v145,0,245,11,300,32v175,-54,415,-39,551,42v103,62,150,140,126,266v-41,216,-293,333,-754,352v-5,23,-7,45,-7,66v0,167,69,250,206,250v171,0,274,-100,323,-238r166,0v-102,234,-275,349,-602,351v-157,0,-277,-37,-358,-111v-98,74,-230,111,-396,111","w":1908},"\u00e7":{"d":"293,219v94,44,283,63,300,-57v3,-19,3,-39,-4,-61v-7,-22,-23,-56,-48,-101r127,0v33,43,58,81,68,118v52,184,-84,286,-275,283v-71,-1,-137,-10,-197,-26xm652,-84v163,0,256,-108,298,-248r166,0v-90,225,-251,361,-545,361v-189,0,-325,-50,-411,-147v-87,-99,-107,-250,-76,-414v62,-333,311,-560,691,-560v167,1,307,34,438,84r-58,295r-112,0v14,-164,-45,-266,-204,-266v-99,0,-175,33,-230,100v-55,67,-98,182,-130,347v-17,86,-25,159,-25,218v-2,149,57,230,198,230","w":1247},"\u00e8":{"d":"681,-1638r184,376r-164,0r-299,-376r279,0xm478,-519v242,4,382,-92,382,-313v0,-98,-41,-147,-124,-147v-63,0,-114,29,-151,89v-37,60,-73,184,-107,371xm1143,-322v-101,233,-275,351,-597,351v-184,0,-315,-49,-395,-145v-82,-99,-97,-252,-67,-413v62,-331,303,-562,675,-563v127,0,235,23,323,74v104,60,151,140,127,266v-41,216,-294,333,-755,352v-4,23,-6,58,-6,105v1,141,69,211,206,211v171,0,274,-100,323,-238r166,0","w":1303},"\u00e9":{"d":"936,-1638r279,0r-447,376r-164,0xm478,-519v242,4,382,-92,382,-313v0,-98,-41,-147,-124,-147v-63,0,-114,29,-151,89v-37,60,-73,184,-107,371xm1143,-322v-101,233,-275,351,-597,351v-184,0,-315,-49,-395,-145v-82,-99,-97,-252,-67,-413v62,-331,303,-562,675,-563v127,0,235,23,323,74v104,60,151,140,127,266v-41,216,-294,333,-755,352v-4,23,-6,58,-6,105v1,141,69,211,206,211v171,0,274,-100,323,-238r166,0","w":1303},"\u00ea":{"d":"685,-1638r242,0r182,376r-164,0r-169,-225r-257,225r-164,0xm478,-519v242,4,382,-92,382,-313v0,-98,-41,-147,-124,-147v-63,0,-114,29,-151,89v-37,60,-73,184,-107,371xm1143,-322v-101,233,-275,351,-597,351v-184,0,-315,-49,-395,-145v-82,-99,-97,-252,-67,-413v62,-331,303,-562,675,-563v127,0,235,23,323,74v104,60,151,140,127,266v-41,216,-294,333,-755,352v-4,23,-6,58,-6,105v1,141,69,211,206,211v171,0,274,-100,323,-238r166,0","w":1303},"\u00eb":{"d":"498,-1365v-81,-107,36,-249,152,-249v76,0,133,65,117,146v-14,72,-91,148,-173,147v-40,0,-73,-14,-96,-44xm945,-1365v-80,-107,35,-249,151,-249v76,0,135,66,120,146v-13,71,-95,148,-176,147v-40,0,-73,-14,-95,-44xm478,-519v242,4,382,-92,382,-313v0,-98,-41,-147,-124,-147v-63,0,-114,29,-151,89v-37,60,-73,184,-107,371xm1143,-322v-101,233,-275,351,-597,351v-184,0,-315,-49,-395,-145v-82,-99,-97,-252,-67,-413v62,-331,303,-562,675,-563v127,0,235,23,323,74v104,60,151,140,127,266v-41,216,-294,333,-755,352v-4,23,-6,58,-6,105v1,141,69,211,206,211v171,0,274,-100,323,-238r166,0","w":1303},"\u00ec":{"d":"419,-1638r184,376r-164,0r-299,-376r279,0xm495,-121r152,0r-23,121r-506,0r183,-942r-151,0r23,-121r505,0","w":778},"\u00ed":{"d":"674,-1638r279,0r-447,376r-164,0xm495,-121r152,0r-23,121r-506,0r183,-942r-151,0r23,-121r505,0","w":778},"\u00ee":{"d":"423,-1638r242,0r182,376r-164,0r-169,-225r-257,225r-164,0xm495,-121r152,0r-23,121r-506,0r183,-942r-151,0r23,-121r505,0","w":778},"\u00ef":{"d":"236,-1365v-81,-107,36,-249,152,-249v76,0,133,65,117,146v-14,72,-91,148,-173,147v-40,0,-73,-14,-96,-44xm683,-1365v-80,-107,35,-249,151,-249v76,0,135,66,120,146v-13,71,-95,148,-176,147v-40,0,-73,-14,-95,-44xm495,-121r152,0r-23,121r-506,0r183,-942r-151,0r23,-121r505,0","w":778},"\u00f0":{"d":"472,-1556v174,21,324,68,437,145r360,-154r27,103r-290,125v106,99,179,217,220,351v41,134,45,277,17,429v-63,345,-321,586,-714,586v-183,0,-320,-49,-409,-147v-89,-98,-118,-227,-87,-390v30,-153,107,-282,234,-381v148,-116,306,-169,517,-145v28,4,56,10,83,18v-14,-92,-43,-160,-89,-225r-348,149r-31,-100r305,-131v-70,-58,-169,-96,-281,-123xm862,-891v-48,-21,-90,-37,-147,-37v-74,0,-133,32,-177,96v-44,64,-80,171,-110,324v-30,156,-35,266,-16,329v19,63,65,95,139,95v74,0,130,-33,175,-94v60,-82,126,-353,137,-532v4,-64,4,-124,-1,-181","w":1366},"\u00f1":{"d":"714,-1440v-66,0,-103,64,-115,131r-110,0v18,-101,52,-185,99,-237v59,-65,146,-96,240,-64v45,15,98,61,137,92v26,19,51,29,75,29v66,0,103,-64,115,-131r110,0v-18,101,-51,186,-99,238v-59,65,-146,94,-240,62v-45,-16,-97,-61,-137,-90v-26,-20,-51,-30,-75,-30xm977,-804v1,-86,-34,-122,-121,-122v-71,0,-128,26,-172,78v-44,52,-77,136,-99,250r-116,598r-354,0r183,-942r-151,0r23,-121r505,0r-29,150v102,-113,195,-177,388,-179v192,-2,295,92,296,281v0,41,-5,86,-15,135r-108,555r152,0r-23,121r-506,0r133,-686v9,-47,14,-86,14,-118","w":1489},"\u00f2":{"d":"714,-1638r184,376r-164,0r-299,-376r279,0xm447,-270v0,118,42,186,150,186v75,0,133,-32,176,-96v43,-64,81,-181,114,-352v22,-111,33,-200,33,-266v0,-115,-41,-181,-149,-181v-75,0,-135,33,-178,97v-43,64,-81,181,-114,350v-21,109,-32,197,-32,262xm575,29v-187,0,-324,-50,-411,-149v-89,-101,-111,-247,-80,-412v62,-335,323,-561,709,-560v188,0,325,50,412,148v89,100,110,248,79,412v-63,333,-324,562,-709,561","w":1366},"\u00f3":{"d":"969,-1638r279,0r-447,376r-164,0xm447,-270v0,118,42,186,150,186v75,0,133,-32,176,-96v43,-64,81,-181,114,-352v22,-111,33,-200,33,-266v0,-115,-41,-181,-149,-181v-75,0,-135,33,-178,97v-43,64,-81,181,-114,350v-21,109,-32,197,-32,262xm575,29v-187,0,-324,-50,-411,-149v-89,-101,-111,-247,-80,-412v62,-335,323,-561,709,-560v188,0,325,50,412,148v89,100,110,248,79,412v-63,333,-324,562,-709,561","w":1366},"\u00f4":{"d":"718,-1638r242,0r182,376r-164,0r-169,-225r-257,225r-164,0xm447,-270v0,118,42,186,150,186v75,0,133,-32,176,-96v43,-64,81,-181,114,-352v22,-111,33,-200,33,-266v0,-115,-41,-181,-149,-181v-75,0,-135,33,-178,97v-43,64,-81,181,-114,350v-21,109,-32,197,-32,262xm575,29v-187,0,-324,-50,-411,-149v-89,-101,-111,-247,-80,-412v62,-335,323,-561,709,-560v188,0,325,50,412,148v89,100,110,248,79,412v-63,333,-324,562,-709,561","w":1366},"\u00f5":{"d":"671,-1440v-66,0,-103,64,-115,131r-110,0v18,-101,52,-185,99,-237v59,-65,146,-96,240,-64v45,15,98,61,137,92v26,19,51,29,75,29v66,0,103,-64,115,-131r110,0v-18,101,-51,186,-99,238v-59,65,-146,94,-240,62v-45,-16,-97,-61,-137,-90v-26,-20,-51,-30,-75,-30xm447,-270v0,118,42,186,150,186v75,0,133,-32,176,-96v43,-64,81,-181,114,-352v22,-111,33,-200,33,-266v0,-115,-41,-181,-149,-181v-75,0,-135,33,-178,97v-43,64,-81,181,-114,350v-21,109,-32,197,-32,262xm575,29v-187,0,-324,-50,-411,-149v-89,-101,-111,-247,-80,-412v62,-335,323,-561,709,-560v188,0,325,50,412,148v89,100,110,248,79,412v-63,333,-324,562,-709,561","w":1366},"\u00f6":{"d":"531,-1365v-81,-107,36,-249,152,-249v76,0,133,65,117,146v-14,72,-91,148,-173,147v-40,0,-73,-14,-96,-44xm978,-1365v-80,-107,35,-249,151,-249v76,0,135,66,120,146v-13,71,-95,148,-176,147v-40,0,-73,-14,-95,-44xm447,-270v0,118,42,186,150,186v75,0,133,-32,176,-96v43,-64,81,-181,114,-352v22,-111,33,-200,33,-266v0,-115,-41,-181,-149,-181v-75,0,-135,33,-178,97v-43,64,-81,181,-114,350v-21,109,-32,197,-32,262xm575,29v-187,0,-324,-50,-411,-149v-89,-101,-111,-247,-80,-412v62,-335,323,-561,709,-560v188,0,325,50,412,148v89,100,110,248,79,412v-63,333,-324,562,-709,561","w":1366},"\u00f7":{"d":"858,-862v-79,0,-149,-70,-149,-150v0,-79,70,-149,149,-149v80,0,150,70,150,149v0,80,-70,150,-150,150xm858,-123v-79,0,-149,-70,-149,-149v0,-80,70,-150,149,-150v80,0,150,70,150,150v0,79,-70,149,-150,149xm217,-756r1282,0r0,228r-1282,0r0,-228","w":1716},"\u00f8":{"d":"921,-801v0,-114,-41,-177,-150,-178v-73,0,-132,31,-175,95v-43,64,-80,174,-110,331r-27,137xm448,-262v-3,113,41,177,149,178v73,0,130,-31,173,-94v43,-63,80,-173,111,-330r27,-141xm793,-1092v152,0,274,33,358,99r201,-168r69,86r-195,162v69,95,87,222,58,381v-61,334,-324,562,-709,561v-153,0,-266,-34,-357,-99r-206,172r-67,-86r196,-163v-67,-98,-87,-226,-57,-385v62,-335,323,-561,709,-560","w":1366},"\u00f9":{"d":"737,-1638r184,376r-164,0r-299,-376r279,0xm514,-250v-1,85,34,113,119,113v71,0,129,-26,172,-79v43,-53,76,-136,98,-251r116,-596r355,0r-183,942r151,0r-23,121r-506,0r29,-150v-101,114,-194,177,-387,179v-193,2,-295,-92,-296,-281v0,-41,5,-86,15,-135r108,-555r-152,0r23,-121r506,0r-121,621v-16,83,-24,147,-24,192","w":1489},"\u00fa":{"d":"992,-1638r279,0r-447,376r-164,0xm514,-250v-1,85,34,113,119,113v71,0,129,-26,172,-79v43,-53,76,-136,98,-251r116,-596r355,0r-183,942r151,0r-23,121r-506,0r29,-150v-101,114,-194,177,-387,179v-193,2,-295,-92,-296,-281v0,-41,5,-86,15,-135r108,-555r-152,0r23,-121r506,0r-121,621v-16,83,-24,147,-24,192","w":1489},"\u00fb":{"d":"741,-1638r242,0r182,376r-164,0r-169,-225r-257,225r-164,0xm514,-250v-1,85,34,113,119,113v71,0,129,-26,172,-79v43,-53,76,-136,98,-251r116,-596r355,0r-183,942r151,0r-23,121r-506,0r29,-150v-101,114,-194,177,-387,179v-193,2,-295,-92,-296,-281v0,-41,5,-86,15,-135r108,-555r-152,0r23,-121r506,0r-121,621v-16,83,-24,147,-24,192","w":1489},"\u00fc":{"d":"554,-1365v-81,-107,36,-249,152,-249v76,0,133,65,117,146v-14,72,-91,148,-173,147v-40,0,-73,-14,-96,-44xm1001,-1365v-80,-107,35,-249,151,-249v76,0,135,66,120,146v-13,71,-95,148,-176,147v-40,0,-73,-14,-95,-44xm514,-250v-1,85,34,113,119,113v71,0,129,-26,172,-79v43,-53,76,-136,98,-251r116,-596r355,0r-183,942r151,0r-23,121r-506,0r29,-150v-101,114,-194,177,-387,179v-193,2,-295,-92,-296,-281v0,-41,5,-86,15,-135r108,-555r-152,0r23,-121r506,0r-121,621v-16,83,-24,147,-24,192","w":1489},"\u00fd":{"d":"881,-1638r279,0r-447,376r-164,0xm113,235v-3,93,68,110,159,110v74,0,149,-24,224,-72r-284,-1215r-115,0r24,-121r434,0r238,1028v186,-279,253,-471,345,-905r-142,-1r23,-121r287,-1r-61,293v-59,271,-125,469,-200,594v-195,327,-371,520,-528,580v-89,34,-197,51,-325,51v-63,0,-140,-14,-231,-43r43,-222r113,1v-3,16,-4,31,-4,44","w":1190},"\u00fe":{"d":"973,-761v0,-114,-42,-174,-147,-175v-71,0,-128,28,-170,83v-42,55,-75,145,-99,269v-16,79,-40,198,-40,275v0,116,44,182,152,182v73,0,130,-29,171,-88v41,-59,76,-164,106,-317v18,-95,27,-171,27,-229xm747,29v-150,0,-239,-53,-278,-164r-109,561r-354,0r362,-1862r-152,0r24,-120r506,0r-122,628v75,-102,175,-162,340,-164v248,-3,396,147,396,398v0,251,-92,448,-226,573v-106,100,-236,150,-387,150","w":1432},"\u00ff":{"d":"443,-1365v-81,-107,36,-249,152,-249v76,0,133,65,117,146v-14,72,-91,148,-173,147v-40,0,-73,-14,-96,-44xm890,-1365v-80,-107,35,-249,151,-249v76,0,135,66,120,146v-13,71,-95,148,-176,147v-40,0,-73,-14,-95,-44xm113,235v-3,93,68,110,159,110v74,0,149,-24,224,-72r-284,-1215r-115,0r24,-121r434,0r238,1028v186,-279,253,-471,345,-905r-142,-1r23,-121r287,-1r-61,293v-59,271,-125,469,-200,594v-195,327,-371,520,-528,580v-89,34,-197,51,-325,51v-63,0,-140,-14,-231,-43r43,-222r113,1v-3,16,-4,31,-4,44","w":1190},"\u0152":{"d":"1043,-121r244,-1251r-127,0v-176,0,-318,52,-428,157v-110,105,-185,260,-226,467v-79,404,43,625,410,627r127,0xm2167,0r-1321,0v-250,-1,-415,-23,-558,-109v-180,-108,-263,-337,-202,-639v78,-384,311,-647,700,-720v93,-17,209,-25,350,-25r1303,0r-68,352r-137,0r41,-215r-605,0r-93,479r367,0r37,-190r137,0r-100,516r-137,0r37,-190r-367,0r-117,604r623,0r41,-215r137,0","w":2417},"\u0153":{"d":"1947,-322v-102,234,-275,349,-602,351v-157,0,-275,-37,-356,-110v-115,73,-260,110,-434,110v-174,0,-304,-50,-391,-149v-89,-101,-113,-247,-80,-412v34,-175,114,-313,240,-412v126,-99,276,-148,451,-148v175,0,306,37,393,112v111,-75,236,-112,376,-112v140,0,251,22,332,68v114,64,160,155,137,272v-42,216,-294,333,-755,352v-4,23,-6,58,-6,105v1,141,69,211,206,211v171,0,274,-100,323,-238r166,0xm1657,-762v24,-118,-9,-217,-118,-217v-63,0,-113,28,-148,86v-38,62,-74,187,-110,374v218,6,343,-75,376,-243xm920,-774v0,-136,-31,-205,-149,-205v-75,0,-135,33,-178,97v-43,64,-78,166,-105,305v-27,139,-41,234,-41,285v0,51,3,88,10,111v18,65,65,97,140,97v75,0,133,-32,176,-96v43,-64,77,-167,105,-308v28,-141,42,-236,42,-286","w":2105},"\u0178":{"d":"207,0r23,-121r201,0r97,-497r-297,-754r-127,0r23,-121r716,0r-23,121r-166,0r225,569r445,-569r-149,0r23,-121r428,0r-23,121r-127,0r-551,702r-107,549r201,0r-23,121r-789,0xm640,-1673v-82,-106,37,-250,152,-250v75,0,133,67,117,147v-14,72,-90,147,-173,146v-40,0,-73,-13,-96,-43xm1086,-1673v-53,-68,-15,-159,41,-206v62,-52,158,-64,207,0v82,106,-36,251,-152,249v-40,0,-73,-14,-96,-43","w":1462},"\u02c6":{"d":"546,-1638r242,0r182,376r-164,0r-169,-225r-257,225r-164,0","w":1024},"\u02dc":{"d":"499,-1440v-66,0,-103,64,-115,131r-110,0v18,-101,52,-185,99,-237v59,-65,146,-96,240,-64v45,15,98,61,137,92v26,19,51,29,75,29v66,0,103,-64,115,-131r110,0v-18,101,-51,186,-99,238v-59,65,-146,94,-240,62v-45,-16,-97,-61,-137,-90v-26,-20,-51,-30,-75,-30","w":1024},"\u2013":{"d":"133,-664r804,0r-46,240r-804,0","w":1024},"\u2014":{"d":"133,-664r1828,0r-46,240r-1828,0","w":2048},"\u2018":{"d":"625,-1384v-160,94,-237,234,-272,450r-269,0v69,-290,216,-462,462,-586","w":713},"\u2019":{"d":"67,-1042v159,-95,236,-234,271,-451r270,0v-70,292,-216,460,-462,586","w":713},"\u201a":{"d":"30,131v159,-95,236,-234,271,-450r270,0v-69,290,-216,461,-462,585","w":713},"\u201c":{"d":"1090,-1384v-159,95,-238,234,-273,450r-270,0v69,-291,218,-461,464,-586xm625,-1384v-160,94,-237,234,-272,450r-269,0v69,-290,216,-462,462,-586","w":1178},"\u201d":{"d":"532,-1042v159,-95,235,-234,270,-451r271,0v-70,292,-216,460,-462,586xm67,-1042v159,-95,236,-234,271,-451r270,0v-70,292,-216,460,-462,586","w":1178},"\u201e":{"d":"493,131v158,-95,239,-234,273,-450r270,0v-69,290,-216,461,-462,585xm30,131v159,-95,236,-234,271,-450r270,0v-69,290,-216,461,-462,585","w":1178},"\u2022":{"d":"322,-622v-35,-86,-35,-193,0,-279v35,-86,110,-159,195,-193v86,-35,192,-36,277,1v124,53,220,162,220,331v0,170,-99,281,-222,334v-85,37,-191,36,-277,0v-86,-36,-157,-108,-193,-194","w":1309},"\u2026":{"d":"1501,-162v17,-95,120,-190,228,-190v99,0,172,86,153,190v-18,96,-120,191,-227,191v-101,0,-173,-86,-154,-191xm834,-162v17,-95,120,-190,227,-190v99,0,172,86,153,190v-18,96,-120,191,-227,191v-100,0,-172,-86,-153,-191xm166,-162v17,-95,120,-190,227,-190v100,0,173,86,154,190v-18,96,-120,191,-228,191v-100,0,-172,-86,-153,-191","w":2048},"\u2039":{"d":"718,-1069r-28,147r-303,322r178,321r-29,148r-394,-385r32,-168","w":819},"\u203a":{"d":"284,-1069r394,385r-32,168r-544,385r29,-148r301,-321r-176,-322","w":819},"\u20ac":{"d":"672,29v-342,1,-535,-211,-532,-559r-190,0r76,-119r121,0v11,-69,14,-104,34,-177v2,-7,3,-12,4,-16r-174,0r76,-119r137,0v69,-178,169,-316,300,-413v182,-136,415,-184,667,-115v73,21,151,53,234,98r-71,367r-118,0v-1,-131,-20,-227,-56,-288v-36,-61,-94,-91,-171,-91v-87,0,-161,36,-225,109v-64,73,-118,184,-162,333r471,0r-77,119r-423,0v-8,29,-13,52,-17,68v-10,39,-15,82,-22,125r338,0r-76,119r-276,0v-15,148,-5,259,30,332v35,73,97,110,185,110v75,0,141,-28,201,-86v60,-58,110,-142,149,-252r162,0v-54,149,-132,262,-233,339v-101,77,-222,116,-362,116"},"\u2122":{"d":"238,-1493r565,0r0,180r-76,0r0,-98r-131,0r0,416r86,0r0,80r-324,0r0,-80r86,0r0,-416r-131,0r0,98r-75,0r0,-180xm1143,-1493r166,293r166,-293r245,0r0,82r-86,0r0,416r86,0r0,80r-323,0r0,-80r86,0r0,-359r-162,285r-113,0r-161,-285r0,359r86,0r0,80r-256,0r0,-80r84,0r0,-416r-84,0r0,-82r266,0","w":2048}}}); diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-webfont.eot b/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-webfont.eot new file mode 100644 index 0000000..ffeb401 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-webfont.eot differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-webfont.svg b/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-webfont.svg new file mode 100644 index 0000000..2d6f176 --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-webfont.svg @@ -0,0 +1,241 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved._DejaVu changes are in public domain_ +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-webfont.ttf b/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-webfont.ttf new file mode 100644 index 0000000..9a2822a Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-webfont.ttf differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-webfont.woff b/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-webfont.woff new file mode 100644 index 0000000..3f70000 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerif-BoldItalic-webfont.woff differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-Italic-cufon.js b/assets/fonts/dejavu/serif/DejaVuSerif-Italic-cufon.js new file mode 100644 index 0000000..7987246 --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerif-Italic-cufon.js @@ -0,0 +1,18 @@ +/*! + * The following copyright notice may not be removed under any circumstances. + * + * Copyright: + * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + * DejaVu changes are in public domain + * + * + * Manufacturer: + * DejaVu fonts team + * + * Vendor URL: + * http://dejavu.sourceforge.net + * + * License information: + * http://dejavu.sourceforge.net/wiki/index.php/License + */ +Cufon.registerFont({"w":1303,"face":{"font-family":"DejaVu Serif","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"2048","panose-1":"2 6 6 3 5 3 5 11 2 4","ascent":"1556","descent":"-492","x-height":"29","bbox":"-375 -1901 2293 483","underline-thickness":"90","underline-position":"-85","slope":"-11","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":651},"!":{"d":"176,-10v-69,-97,31,-228,140,-228v71,0,121,60,107,134v-13,67,-83,134,-159,133v-38,0,-69,-12,-88,-39xm431,-1493r258,0r-228,821r-49,252r-123,0r49,-252","w":823},"\"":{"d":"360,-1493r0,555r-159,0r0,-555r159,0xm741,-1493r0,555r-159,0r0,-555r159,0","w":942},"#":{"d":"1042,-901r-282,0r-84,334r285,0xm901,-1470r-102,415r282,0r103,-415r172,0r-105,415r308,0r0,154r-347,0r-82,334r314,0r0,153r-352,0r-103,414r-172,0r105,-414r-283,0r-104,414r-170,0r102,-414r-309,0r0,-153r348,0r82,-334r-316,0r0,-154r355,0r104,-415r170,0","w":1716},"$":{"d":"581,-68v147,-12,249,-84,274,-215v11,-57,1,-106,-31,-146v-32,-40,-83,-70,-155,-91xm699,-1187v-136,8,-233,81,-256,200v-11,53,-1,98,27,133v28,35,77,64,147,86xm68,-72r54,-276r108,0v-31,193,63,277,251,280r95,-485v-145,-43,-244,-91,-295,-147v-51,-56,-68,-130,-50,-222v41,-218,234,-353,487,-366r52,-268r100,0r-52,268v140,11,255,46,358,98r-51,262r-109,0v15,-160,-69,-249,-217,-259r-88,452v155,45,261,95,315,153v54,58,72,135,53,232v-45,231,-248,365,-517,381r-52,270r-100,0r52,-270v-153,-5,-276,-45,-394,-103"},"%":{"d":"591,-1427v-59,0,-109,28,-153,83v-44,55,-76,133,-95,232v-19,98,-17,175,6,231v23,56,63,84,120,84v57,0,107,-27,151,-83v44,-56,75,-133,94,-232v19,-99,18,-176,-4,-232v-22,-56,-62,-83,-119,-83xm1479,-694v-58,0,-109,28,-153,84v-44,56,-76,134,-95,233v-19,98,-17,175,5,231v22,56,63,83,120,83v57,0,108,-27,152,-83v44,-56,74,-133,93,-231v19,-99,18,-177,-4,-233v-22,-56,-61,-84,-118,-84xm1496,-784v216,-2,315,169,266,407v-26,124,-75,224,-152,297v-77,73,-167,109,-272,109v-218,2,-315,-167,-267,-406v25,-125,75,-224,151,-297v76,-73,168,-110,274,-110xm1515,-1520r152,0r-1236,1549r-152,0xm608,-1520v216,-1,315,168,267,406v-26,126,-75,225,-151,298v-76,73,-168,109,-274,109v-217,1,-314,-168,-265,-407v25,-124,75,-223,151,-296v76,-73,167,-110,272,-110","w":1946},"&":{"d":"299,-483v-47,231,110,395,326,391v158,-3,284,-60,381,-139r-463,-613v-120,92,-211,202,-244,361xm1517,-741v-60,183,-158,331,-287,452r137,183r235,0r-21,106r-401,0r-109,-145v-143,102,-297,174,-515,174v-172,0,-300,-44,-383,-132v-84,-88,-111,-212,-81,-358v17,-89,58,-172,124,-249v66,-77,157,-149,274,-216v-45,-71,-68,-145,-51,-248v44,-256,332,-397,647,-329v57,12,122,28,194,51r-50,258r-113,0v10,-144,-67,-219,-209,-219v-137,0,-250,87,-271,203v-8,44,-4,82,11,122v14,39,50,96,108,173r410,544v106,-99,186,-219,230,-370r21,-107r293,0r-21,107r-172,0","w":1823},"'":{"d":"360,-1493r0,555r-159,0r0,-555r159,0","w":563},"(":{"d":"471,319v-296,-145,-400,-465,-309,-937v87,-453,305,-784,673,-938r-19,98v-116,71,-208,170,-278,298v-70,128,-128,309,-173,542v-45,232,-59,412,-39,540v20,128,75,228,164,299","w":799},")":{"d":"-37,319r19,-98v116,-71,209,-171,279,-299v70,-128,128,-308,173,-540v45,-233,58,-414,38,-542v-20,-128,-75,-227,-164,-298r19,-98v297,145,401,464,310,938v-87,452,-305,783,-674,937","w":799},"*":{"d":"991,-1237r-391,182r391,185r-76,118r-348,-217r13,381r-136,0r13,-381r-348,217r-76,-118r391,-183r-391,-184r76,-119r348,217r-13,-381r136,0r-13,381r348,-217","w":1024},"+":{"d":"938,-1284r0,561r561,0r0,162r-561,0r0,561r-160,0r0,-561r-561,0r0,-162r561,0r0,-561r160,0","w":1716},",":{"d":"40,199v149,-94,231,-222,265,-426r197,0v-60,245,-192,392,-397,506","w":651},"-":{"d":"105,-627r512,0r-30,156r-512,0","w":692},".":{"d":"212,-10v-69,-97,31,-228,140,-228v71,0,121,60,107,134v-13,67,-83,134,-159,133v-38,0,-69,-12,-88,-39","w":651},"\/":{"d":"694,-1493r160,0r-858,1683r-160,0","w":690},"0":{"d":"520,-70v102,0,190,-56,262,-168v72,-112,130,-281,174,-507v44,-227,51,-396,22,-508v-29,-112,-94,-168,-196,-168v-102,0,-190,56,-262,168v-72,112,-130,281,-174,508v-44,226,-51,395,-22,507v29,112,94,168,196,168xm500,29v-162,0,-276,-68,-340,-204v-64,-136,-72,-326,-25,-570v47,-245,129,-435,247,-571v118,-136,258,-204,420,-204v163,0,276,68,340,204v64,136,72,326,25,571v-47,244,-130,434,-247,570v-117,136,-257,204,-420,204"},"1":{"d":"143,0r21,-106r260,0r241,-1242r-339,195r26,-131r410,-236r138,0r-275,1414r260,0r-21,106r-721,0"},"2":{"d":"703,-1421v-209,2,-317,110,-368,284r-112,0r52,-266v133,-64,279,-117,451,-117v155,0,271,38,346,113v75,75,100,178,75,307v-28,146,-164,321,-408,524r-493,412r623,0r36,-184r117,0r-68,348r-963,0r21,-109r541,-452v119,-100,208,-191,267,-275v59,-84,98,-172,116,-264v40,-198,-49,-322,-233,-321"},"3":{"d":"739,-1421v-192,1,-301,97,-346,254r-112,0r51,-263v140,-48,283,-90,444,-90v146,0,254,31,324,94v70,63,93,151,71,263v-37,191,-192,310,-393,348v217,29,353,164,306,412v-53,283,-286,434,-629,432v-172,-1,-308,-39,-430,-101r56,-290r112,0v-25,201,86,292,286,292v215,0,359,-141,394,-331v45,-240,-60,-358,-289,-357r-95,0r20,-102v259,10,416,-79,457,-291v34,-180,-54,-271,-227,-270"},"4":{"d":"666,-506r154,-794r-664,794r510,0xm1007,0r-680,0r21,-106r240,0r57,-293r-652,0r21,-109r851,-1012r198,0r-197,1014r285,0r-21,107r-285,0r-57,293r240,0"},"5":{"d":"634,-874v-140,0,-228,52,-306,131r-86,0r146,-750r790,0r-32,164r-684,0r-83,428v76,-46,172,-71,291,-72v308,-3,486,181,425,500v-58,303,-286,504,-637,502v-161,-1,-292,-41,-412,-101r56,-290r113,0v-26,194,72,293,262,292v105,0,193,-35,263,-104v70,-69,119,-169,144,-299v48,-246,-28,-401,-250,-401"},"6":{"d":"539,-70v94,0,173,-35,237,-104v64,-69,109,-168,134,-297v25,-129,19,-228,-18,-297v-37,-69,-103,-104,-197,-104v-95,0,-174,33,-237,100v-63,67,-107,163,-132,289v-26,133,-21,235,16,306v37,71,103,107,197,107xm1074,-1214v11,-140,-72,-208,-212,-207v-129,0,-236,49,-318,147v-82,98,-144,249,-185,452v97,-89,210,-147,377,-149v292,-4,443,190,385,500v-53,283,-287,501,-610,500v-169,0,-286,-63,-352,-189v-66,-126,-76,-305,-31,-538v51,-261,143,-465,279,-607v172,-179,375,-248,659,-200v56,10,112,25,169,45r-48,246r-113,0"},"7":{"d":"1280,-1391r-854,1391r-149,0r815,-1329r-690,0r-36,184r-117,0r68,-348r983,0"},"8":{"d":"520,-70v211,-2,331,-145,368,-338v40,-209,-43,-338,-237,-337v-211,2,-332,145,-369,337v-40,210,44,340,238,338xm670,-844v181,-2,286,-124,318,-289v34,-179,-40,-289,-206,-288v-180,2,-287,125,-318,288v-34,179,41,290,206,289xm508,-795v-175,-31,-283,-136,-247,-338v43,-239,256,-387,541,-387v145,0,251,35,320,104v69,69,92,163,69,283v-36,188,-179,305,-376,338v202,25,327,158,284,387v-51,278,-269,438,-599,437v-165,0,-284,-37,-358,-113v-74,-76,-98,-184,-71,-324v40,-213,208,-359,437,-387"},"9":{"d":"228,-279v-8,139,72,209,212,209v129,0,236,-48,318,-146v82,-98,144,-249,185,-453v-96,89,-211,147,-379,149v-291,3,-440,-191,-382,-500v53,-283,287,-501,610,-500v169,0,286,62,352,188v66,126,75,306,30,539v-51,261,-143,465,-279,607v-172,180,-375,248,-658,200v-56,-10,-112,-25,-169,-45r48,-248r112,0xm764,-1421v-95,0,-174,34,-238,103v-64,69,-107,169,-132,298v-25,129,-20,229,17,298v37,69,102,104,197,104v95,0,174,-33,237,-100v63,-67,107,-164,132,-290v26,-133,20,-235,-17,-306v-37,-71,-102,-107,-196,-107"},":":{"d":"170,-10v-69,-97,31,-228,139,-228v72,0,121,59,107,134v-13,69,-81,134,-159,133v-38,0,-68,-12,-87,-39xm296,-662v-71,-96,31,-227,139,-227v73,0,121,57,107,133v-13,70,-79,134,-158,133v-37,0,-68,-12,-88,-39","w":690},";":{"d":"-24,199v148,-95,232,-222,265,-426r197,0v-61,245,-192,392,-398,506xm325,-662v-70,-97,31,-227,139,-227v71,0,120,59,107,133v-12,68,-82,134,-159,133v-37,0,-68,-12,-87,-39","w":690},"<":{"d":"1499,-1020r-1038,379r1038,377r0,170r-1282,-465r0,-166r1282,-465r0,170","w":1716},"=":{"d":"217,-926r1282,0r0,160r-1282,0r0,-160xm217,-518r1282,0r0,160r-1282,0r0,-160","w":1716},">":{"d":"217,-1020r0,-170r1282,465r0,166r-1282,465r0,-170r1038,-377","w":1716},"?":{"d":"255,-10v-70,-97,31,-228,140,-228v71,0,121,59,107,134v-12,67,-84,134,-159,133v-38,0,-69,-12,-88,-39xm647,-1421v-174,3,-278,111,-329,254r-97,0r50,-260v128,-51,250,-93,400,-93v148,0,257,36,329,107v72,71,98,168,73,289v-56,271,-250,411,-536,473r-50,254r-123,0r64,-328v230,-53,389,-177,434,-401v37,-180,-48,-297,-215,-295","w":1098},"@":{"d":"1444,170v-152,113,-337,186,-581,186v-395,0,-657,-219,-730,-546v-24,-109,-23,-227,2,-353v54,-268,200,-482,386,-637v177,-148,421,-262,717,-262v298,0,511,125,623,322v69,121,99,272,66,452v-62,341,-333,579,-721,582r31,-162v-86,93,-178,159,-331,162v-236,5,-358,-194,-305,-451v28,-134,83,-242,172,-325v89,-83,191,-125,308,-125v139,0,216,63,268,162r27,-142r156,0r-150,772v239,-48,405,-231,451,-475v29,-159,4,-288,-59,-393v-99,-166,-284,-274,-537,-274v-140,0,-257,31,-367,77v-285,118,-501,384,-565,717v-43,226,-9,417,88,551v107,149,289,244,533,244v199,0,349,-63,479,-152xm972,-203v164,0,285,-133,311,-282r20,-105v34,-163,-51,-280,-203,-280v-81,0,-150,30,-206,88v-56,58,-94,140,-115,245v-40,197,20,334,193,334","w":2048},"A":{"d":"370,-541r548,0r-136,-710xm-157,0r20,-106r131,0r802,-1387r168,0r264,1387r146,0r-20,106r-543,0r20,-106r166,0r-61,-328r-628,0r-189,328r164,0r-20,106r-420,0","w":1479},"B":{"d":"381,-106r299,0v252,-2,368,-107,410,-326v45,-238,-52,-323,-283,-324r-299,0xm528,-862r254,0v219,-1,331,-79,366,-262v38,-201,-63,-262,-264,-262r-254,0xm-32,0r20,-106r190,0r249,-1280r-190,0r21,-107r737,0v151,0,259,31,323,93v64,62,84,153,60,276v-35,183,-171,287,-372,309v124,16,213,56,266,121v53,65,68,153,47,262v-63,309,-279,432,-661,432r-690,0","w":1505},"C":{"d":"699,-78v253,0,400,-130,493,-317r184,0v-71,139,-167,244,-284,317v-176,110,-463,146,-675,57v-158,-66,-276,-220,-310,-401v-18,-95,-15,-203,8,-323v45,-232,149,-419,311,-561v221,-193,492,-260,824,-182v88,21,181,54,278,97r-66,344r-113,0v-3,-257,-126,-365,-390,-366v-159,0,-291,56,-395,169v-104,113,-177,280,-220,499v-43,219,-34,384,26,497v60,113,170,170,329,170","w":1567},"D":{"d":"381,-106r186,0v194,0,354,-55,479,-166v125,-111,208,-269,248,-476v82,-413,-91,-640,-478,-638r-186,0xm-32,0r20,-106r190,0r249,-1280r-190,0r21,-107r594,0v257,0,446,66,564,197v118,131,152,314,108,548v-84,452,-438,748,-962,748r-594,0","w":1642},"E":{"d":"-32,0r20,-106r190,0r249,-1280r-190,0r21,-107r1202,0r-64,332r-123,0r40,-209r-686,0r-97,500r489,0r36,-187r123,0r-96,496r-123,0r36,-187r-489,0r-121,625r702,0r40,-209r123,0r-64,332r-1218,0","w":1495},"F":{"d":"-32,0r20,-106r190,0r249,-1280r-190,0r21,-107r1222,0r-64,332r-123,0r40,-209r-706,0r-97,500r510,0r36,-187r123,0r-96,496r-123,0r36,-187r-510,0r-125,642r239,0r-20,106r-632,0","w":1421},"G":{"d":"1370,-1047v0,-255,-125,-366,-384,-366v-172,0,-312,55,-418,166v-106,111,-181,278,-224,502v-43,219,-31,385,34,498v65,113,183,169,352,169v173,0,311,-46,434,-112r75,-385r-281,0r21,-107r484,0r-109,557v-181,94,-387,151,-645,154v-442,5,-688,-307,-594,-774v48,-236,151,-425,314,-565v220,-190,512,-253,849,-180v87,20,177,49,272,89r-68,354r-112,0","w":1636},"H":{"d":"-32,0r20,-106r190,0r249,-1280r-190,0r21,-107r583,0r-21,107r-190,0r-100,516r774,0r100,-516r-190,0r21,-107r583,0r-21,107r-190,0r-249,1280r190,0r-20,106r-583,0r20,-106r191,0r124,-642r-774,0r-125,642r190,0r-20,106r-583,0","w":1786},"I":{"d":"381,-106r190,0r-20,106r-583,0r20,-106r190,0r249,-1280r-190,0r21,-107r583,0r-21,107r-190,0","w":809},"J":{"d":"-345,358r45,-235r114,0v-21,129,21,196,141,196v79,0,140,-25,181,-75v41,-50,75,-148,104,-293r260,-1337r-232,0r21,-107r625,0r-21,107r-190,0r-262,1345v-32,165,-90,282,-169,357v-102,96,-299,135,-481,93v-47,-11,-92,-28,-136,-51","w":821},"K":{"d":"-32,0r20,-106r190,0r249,-1280r-190,0r21,-107r583,0r-21,107r-190,0r-110,565r753,-565r-162,0r21,-107r496,0r-21,107r-168,0r-750,563r577,717r170,0r-20,106r-347,0r-570,-709r-118,603r190,0r-20,106r-583,0","w":1530},"L":{"d":"-32,0r20,-106r190,0r249,-1280r-190,0r21,-107r583,0r-21,107r-190,0r-245,1263r682,0r48,-250r123,0r-72,373r-1198,0","w":1360},"M":{"d":"-32,0r20,-106r190,0r249,-1280r-201,0r21,-107r435,0r317,1063r731,-1063r408,0r-21,107r-199,0r-248,1280r190,0r-20,106r-584,0r20,-106r190,0r225,-1154r-715,1041r-141,0r-309,-1041r-225,1154r190,0r-20,106r-503,0","w":2097},"N":{"d":"-42,0r20,-106r201,0r249,-1280r-201,0r21,-107r383,0r666,1178r208,-1071r-200,0r21,-107r524,0r-21,107r-201,0r-275,1415r-121,0r-711,-1258r-219,1123r201,0r-20,106r-525,0","w":1792},"O":{"d":"710,-78v163,0,298,-56,403,-168v105,-112,179,-279,222,-499v43,-221,33,-387,-28,-499v-61,-112,-174,-169,-337,-169v-164,0,-299,57,-404,169v-105,112,-179,278,-222,499v-43,220,-33,387,28,499v61,112,174,168,338,168xm978,-20v-169,63,-397,67,-558,-1v-159,-67,-280,-219,-313,-401v-41,-228,36,-494,125,-646v100,-171,272,-331,469,-402v91,-33,187,-50,290,-50v429,0,668,317,574,775v-52,250,-165,436,-334,577v-78,65,-163,114,-253,148","w":1679},"P":{"d":"509,-760r264,0v212,-1,329,-125,365,-313v39,-207,-49,-314,-244,-313r-264,0xm-32,0r20,-106r190,0r249,-1280r-190,0r21,-107r706,0v149,0,260,37,333,113v73,76,95,178,71,307v-46,251,-270,420,-567,420r-313,0r-107,547r231,0r-20,106r-624,0","w":1378},"Q":{"d":"883,12v56,90,146,131,292,131r250,0r-36,185r-117,0v-177,0,-302,-27,-375,-82v-72,-54,-123,-127,-154,-217v-374,5,-619,-209,-619,-577v0,-356,147,-603,353,-775v140,-117,309,-193,543,-197v358,-6,594,222,594,578v0,301,-107,521,-267,694v-125,135,-281,221,-464,260xm347,-501v-1,271,127,423,392,423v163,0,298,-56,403,-168v105,-112,179,-279,222,-499v17,-91,26,-172,26,-245v1,-271,-127,-424,-391,-423v-164,0,-299,57,-404,169v-105,112,-179,278,-222,499v-17,90,-26,171,-26,244","w":1679},"R":{"d":"980,-741v96,29,144,90,174,192r130,443r182,0r-20,106r-352,0r-141,-475v-27,-92,-56,-152,-88,-179v-32,-27,-81,-40,-146,-40r-223,0r-115,588r211,0r-20,106r-604,0r20,-106r190,0r249,-1280r-190,0r21,-107r757,0v270,-3,430,127,378,399v-40,210,-186,325,-413,353xm517,-801r295,0v215,-2,315,-104,352,-293v40,-206,-43,-292,-239,-292r-295,0","w":1542},"S":{"d":"1137,-1114v16,-225,-88,-298,-317,-299v-205,-1,-339,84,-372,252v-14,71,-4,127,29,168v33,41,113,81,240,121r174,55v127,41,214,92,259,155v45,63,58,148,37,254v-58,295,-279,438,-638,437v-188,-1,-345,-40,-490,-101r66,-340r115,1v-37,242,78,333,318,333v228,1,383,-90,419,-276v14,-72,5,-127,-25,-166v-30,-39,-102,-76,-216,-113r-185,-59v-135,-43,-225,-97,-271,-162v-46,-65,-57,-153,-35,-266v49,-258,278,-403,592,-400v171,2,327,40,474,88r-61,318r-113,0","w":1403},"T":{"d":"246,0r20,-106r191,0r247,-1268r-439,0r-45,233r-123,0r68,-352r1326,0r-68,352r-123,0r45,-233r-439,0r-247,1268r191,0r-20,106r-584,0","w":1366},"U":{"d":"414,-1386r-191,0r21,-107r584,0r-21,107r-191,0r-150,772v-68,366,-9,512,317,512v153,0,267,-38,344,-113v77,-75,134,-208,171,-399r150,-772r-191,0r21,-107r504,0r-21,107r-190,0r-154,792v-44,227,-119,388,-225,482v-106,94,-263,141,-472,141v-423,0,-548,-168,-460,-623","w":1726},"V":{"d":"482,-1386r219,1146r662,-1146r-168,0r21,-107r438,0r-21,107r-145,0r-802,1386r-172,0r-261,-1386r-149,0r21,-107r544,0r-21,107r-166,0","w":1479},"W":{"d":"1416,0r-164,0r-106,-1214r-578,1214r-164,0r-122,-1386r-148,0r21,-107r545,0r-21,107r-186,0r97,1103r575,-1210r162,0r108,1223r530,-1116r-172,0r21,-107r430,0r-21,107r-147,0","w":2105},"X":{"d":"657,-639r-469,533r193,0r-20,106r-494,0r20,-106r172,0r552,-627r-309,-653r-160,0r21,-107r592,0r-21,107r-176,0r227,481r422,-481r-192,0r21,-107r489,0r-21,107r-168,0r-506,575r334,705r160,0r-21,106r-592,0r20,-106r178,0","w":1458},"Y":{"d":"242,0r20,-106r191,0r105,-537r-317,-743r-140,0r21,-107r555,0r-21,107r-174,0r256,604r490,-604r-168,0r21,-107r434,0r-21,107r-141,0r-589,724r-109,556r191,0r-20,106r-584,0","w":1352},"Z":{"d":"-53,0r14,-72r1182,-1298r-772,0r-43,223r-123,0r67,-346r1180,0r-14,72r-1182,1298r844,0r40,-209r122,0r-64,332r-1251,0","w":1423},"[":{"d":"353,-1556r465,0r-20,106r-274,0r-314,1614r274,0r-20,106r-465,0","w":799},"\\":{"d":"324,-1493r202,1683r-160,0r-202,-1683r160,0","w":690},"]":{"d":"800,-1556r-354,1826r-465,0r20,-106r274,0r314,-1614r-274,0r20,-106r465,0","w":799},"^":{"d":"956,-1493r543,557r-153,0r-488,-381r-487,381r-154,0r543,-557r196,0","w":1716},"_":{"d":"1024,403r0,80r-1024,0r0,-80r1024,0","w":1024},"`":{"d":"564,-1636r186,376r-117,0r-266,-376r197,0","w":1024},"a":{"d":"396,29v-232,0,-367,-184,-316,-431v48,-235,150,-414,314,-535v139,-103,293,-155,462,-155v113,0,189,10,228,29r-186,957r158,0r-20,106r-324,0r32,-166v-89,130,-205,195,-348,195xm263,-300v0,143,69,214,207,214v84,0,155,-33,212,-100v57,-67,98,-165,123,-293r93,-482v0,-19,-27,-29,-80,-29v-128,0,-242,50,-341,150v-99,100,-166,242,-201,425v-9,43,-13,81,-13,115","w":1221},"b":{"d":"610,29v-170,-1,-262,-65,-306,-195r-32,166r-184,0r281,-1450r-177,0r21,-106r361,0r-128,659v88,-120,194,-191,382,-195v219,-5,357,170,352,400v-5,244,-90,435,-220,566v-103,104,-219,155,-350,155xm968,-712v3,-161,-68,-265,-220,-265v-93,0,-171,34,-233,101v-62,67,-106,165,-130,292v-14,74,-36,171,-36,247v0,157,74,251,226,251v94,0,170,-39,235,-113v85,-97,155,-318,158,-513","w":1311},"c":{"d":"528,-70v183,-3,276,-103,336,-249r148,0v-48,113,-114,200,-200,259v-86,59,-188,89,-305,89v-256,0,-420,-159,-420,-414v0,-248,94,-427,235,-555v156,-142,363,-183,600,-128v64,16,125,39,186,71r-52,272r-107,0v6,-183,-63,-269,-241,-268v-99,0,-182,38,-248,115v-66,77,-113,193,-143,346v-13,70,-20,132,-20,187v-2,170,71,278,231,275","w":1147},"d":{"d":"611,-1092v170,1,260,66,306,195r107,-553r-174,0r21,-106r358,0r-302,1556r-184,0r32,-166v-89,119,-194,191,-382,195v-220,5,-355,-172,-353,-402v0,-49,6,-102,17,-159v33,-167,100,-302,203,-405v103,-103,220,-155,351,-155xm252,-353v-3,162,68,267,220,267v93,0,171,-33,233,-100v62,-67,106,-165,131,-293v14,-73,35,-169,35,-246v0,-156,-73,-252,-225,-252v-95,0,-171,39,-236,112v-85,95,-155,318,-158,512","w":1311},"e":{"d":"482,29v-232,0,-400,-172,-395,-415v5,-246,93,-424,233,-552v112,-103,249,-154,409,-154v261,0,391,92,391,277v0,135,-68,236,-205,302v-139,67,-344,102,-615,105v-3,25,-4,49,-4,72v0,169,85,267,251,266v77,0,135,-12,173,-35v68,-42,110,-90,126,-144r135,0v-27,85,-90,157,-189,216v-69,41,-173,62,-310,62xm813,-632v74,-44,112,-107,112,-190v0,-114,-76,-171,-227,-171v-89,0,-165,34,-227,102v-62,68,-112,194,-150,377v214,-10,378,-50,492,-118","w":1212},"f":{"d":"923,-1305v19,-99,-33,-153,-133,-153v-69,0,-121,18,-156,56v-35,38,-62,105,-81,202r-27,137r297,0r-21,107r-297,0r-198,1022v-43,223,-180,358,-434,360r12,-98v70,0,122,-18,156,-56v36,-40,63,-109,82,-206r198,-1022r-176,0r21,-107r176,0r26,-133v43,-225,180,-360,434,-360v99,0,183,18,258,49r-40,202r-97,0","w":758},"g":{"d":"864,-166v-86,118,-194,191,-376,195v-232,5,-368,-181,-317,-431v48,-235,150,-414,314,-535v139,-103,290,-154,453,-155v149,-1,244,9,285,29r-203,1040v-31,159,-96,275,-194,353v-148,119,-359,150,-581,106v-61,-13,-119,-32,-173,-57r44,-223r96,0v-3,149,82,200,238,200v108,0,193,-31,255,-92v62,-60,106,-156,131,-287xm1019,-956v-1,-23,-37,-34,-109,-34v-130,0,-244,50,-342,150v-98,101,-166,242,-201,425v-19,97,-19,181,18,246v32,56,92,83,177,83v93,0,171,-33,233,-100v62,-67,105,-165,130,-293","w":1311},"h":{"d":"902,-790v1,-122,-49,-166,-171,-166v-85,0,-156,31,-213,93v-57,62,-97,152,-120,271r-115,592r-184,0r282,-1450r-176,0r20,-106r360,0r-132,682v48,-72,103,-126,164,-163v61,-37,128,-55,200,-55v187,1,277,81,278,264v0,45,-6,95,-17,152r-111,570r164,0r-20,106r-349,0r120,-618v13,-69,20,-126,20,-172","w":1319},"i":{"d":"415,-1280v-59,1,-103,-48,-92,-113v10,-56,72,-114,136,-114v51,0,94,42,94,92v0,75,-66,133,-138,135xm308,-106r174,0r-20,106r-358,0r185,-956r-176,0r21,-107r360,0","w":655},"j":{"d":"371,-1370v1,-75,67,-135,139,-137v58,-1,103,50,91,114v-10,58,-69,113,-135,113v-52,0,-95,-38,-95,-90xm-240,216v0,97,45,139,141,140v61,0,109,-21,146,-62v37,-41,64,-104,81,-190r206,-1060r-174,0r20,-107r358,0r-226,1167v-37,207,-198,351,-435,351v-104,0,-182,-25,-252,-66r43,-219r95,0v-2,17,-3,32,-3,46","w":635},"k":{"d":"676,-664r295,558r153,0r-20,106r-295,0r-290,-543r-171,135r-79,408r-184,0r282,-1450r-177,0r20,-106r361,0r-197,1013r529,-413r-153,0r20,-107r299,0r-20,107","w":1241},"l":{"d":"289,-106r174,0r-20,106r-358,0r282,-1450r-177,0r20,-106r361,0","w":655},"m":{"d":"849,-1092v162,-1,265,84,272,236v51,-78,107,-136,170,-176v63,-40,131,-60,204,-60v178,0,266,88,266,267v0,44,-5,94,-16,149r-111,570r166,0r-20,106r-350,0r127,-655v10,-52,15,-97,15,-134v1,-116,-48,-167,-163,-167v-82,0,-150,31,-205,93v-55,62,-95,152,-118,271r-115,592r-184,0r129,-662v9,-50,14,-93,14,-129v1,-116,-49,-165,-164,-165v-82,0,-151,31,-206,93v-55,62,-94,152,-117,271r-115,592r-184,0r186,-958r-176,0r20,-105r360,0r-36,189v47,-71,101,-125,161,-162v60,-37,123,-56,190,-56","w":1942},"n":{"d":"947,-790v1,-122,-49,-168,-171,-168v-85,0,-156,32,-213,94v-57,62,-97,153,-120,272r-115,592r-184,0r186,-956r-176,0r20,-107r360,0r-36,189v48,-72,103,-126,164,-163v61,-37,128,-55,200,-55v187,1,278,80,278,264v0,45,-6,95,-17,152r-111,570r164,0r-20,106r-349,0r120,-618v13,-69,20,-126,20,-172","w":1319},"o":{"d":"297,-348v-2,169,71,278,229,278v99,0,178,-41,246,-117v88,-100,159,-327,163,-530v3,-169,-71,-276,-229,-276v-99,0,-180,39,-246,117v-66,78,-114,192,-143,344v-13,69,-20,131,-20,184xm725,-1092v256,0,420,157,420,413v0,247,-94,427,-235,555v-113,103,-248,153,-403,153v-256,0,-420,-159,-420,-414v0,-247,94,-426,235,-554v113,-102,248,-153,403,-153","w":1233},"p":{"d":"1051,-712v2,-162,-68,-265,-219,-265v-93,0,-171,34,-233,101v-62,67,-105,165,-130,292v-14,73,-36,170,-36,247v0,157,74,251,226,251v94,0,170,-39,235,-113v85,-97,153,-317,157,-513xm694,29v-170,-1,-262,-65,-306,-195r-116,592r-184,0r269,-1382r-177,0r21,-107r361,0r-32,166v88,-120,194,-191,382,-195v219,-5,355,170,351,400v-5,246,-89,434,-219,566v-103,104,-219,155,-350,155","w":1311},"q":{"d":"859,-166v-82,116,-172,191,-348,195v-232,5,-368,-181,-317,-431v48,-235,150,-414,314,-535v139,-103,291,-154,454,-155v129,-1,214,9,255,29r-269,1383r177,0r-21,106r-361,0xm933,-990v-128,0,-242,50,-341,150v-99,100,-167,242,-202,425v-19,97,-19,181,18,246v32,56,92,83,177,83v84,0,154,-33,211,-100v57,-67,98,-165,123,-293r94,-482v1,-19,-26,-29,-80,-29","w":1311},"r":{"d":"498,-874v98,-149,244,-243,481,-211v32,5,66,11,101,20r-52,266r-106,0v15,-99,-28,-157,-127,-157v-91,0,-166,31,-227,94v-61,63,-102,153,-125,270r-115,592r-184,0r186,-958r-176,0r20,-105r360,0","w":979},"s":{"d":"830,-774v21,-141,-63,-219,-214,-219v-157,0,-246,55,-267,164v-8,45,-3,78,29,113v38,40,210,93,296,122v95,31,160,71,195,118v25,33,37,66,37,99v0,140,-56,246,-168,319v-188,123,-505,108,-715,-1r48,-248r106,0v-24,160,55,236,243,237v165,0,260,-61,284,-182v2,-12,3,-29,3,-50v0,-21,-11,-43,-34,-68v-74,-79,-405,-133,-471,-232v-37,-55,-50,-104,-37,-178v36,-194,221,-314,453,-312v118,0,239,29,363,86r-45,232r-106,0","w":1051},"t":{"d":"723,-250v-46,180,-138,279,-349,279v-106,0,-177,-24,-212,-71v-40,-55,-36,-152,-19,-239r131,-675r-162,0r21,-107r162,0r64,-330r185,0r-64,330r346,0r-21,107r-346,0r-131,675v-10,53,-15,94,-15,125v-2,68,28,86,96,86v115,0,151,-71,175,-180r139,0","w":823},"u":{"d":"372,-273v-1,122,48,167,171,167v85,0,156,-31,213,-94v57,-63,97,-154,120,-273r115,-590r184,0r-186,957r174,0r-20,106r-358,0r36,-188v-48,71,-102,125,-163,162v-61,37,-128,55,-199,55v-188,-2,-279,-79,-280,-264v0,-45,6,-95,17,-152r110,-569r-166,0r21,-107r351,0r-120,619v-13,69,-20,126,-20,171","w":1319},"v":{"d":"1135,-1063v-146,532,-260,736,-597,1063r-135,0r-205,-956r-121,0r20,-107r275,0r180,838v77,-67,141,-142,192,-227v107,-176,179,-344,217,-504r-122,0r21,-107r275,0","w":1157},"w":{"d":"1197,-233v89,-96,143,-162,163,-197v73,-133,146,-309,218,-526r-155,1r21,-108r267,0r-21,108r-1,0v-68,247,-133,431,-199,550v-94,171,-195,305,-300,405r-153,0r-109,-795r-417,795r-147,0r-129,-956r-120,2r21,-109r274,0r112,830r435,-830r129,0","w":1753},"x":{"d":"131,0r-125,0r469,-510r-236,-446r-131,0r20,-107r270,0r221,414r381,-414r125,0r-460,500r243,457r139,0r-20,106r-279,0r-226,-424","w":1155},"y":{"d":"58,221v-11,83,22,131,106,131v117,0,227,-51,329,-153r-251,-1155r-121,0r21,-107r275,0r236,1055v107,-161,174,-274,200,-340v84,-208,134,-407,151,-599r-121,0r21,-107r274,0v-66,381,-157,673,-273,874v-170,295,-326,484,-460,576v-81,56,-379,82,-521,28r40,-203r94,0","w":1157},"z":{"d":"815,-975v72,0,143,-29,213,-88r60,0r-16,86r-727,758v60,14,108,45,156,75v62,39,117,57,162,57v87,0,182,-50,285,-150r-24,121v-114,112,-214,168,-301,168v-53,0,-116,-25,-190,-71v-74,-46,-134,-69,-181,-69v-72,0,-143,29,-213,88r-60,0r16,-86r728,-757v-31,-10,-78,-25,-108,-46v-55,-38,-154,-87,-211,-87v-87,0,-182,50,-285,150r24,-121v114,-112,214,-168,301,-168v53,0,116,25,190,71v74,46,134,69,181,69","w":1079},"{":{"d":"884,229r-21,105r-62,0v-166,0,-272,-25,-319,-74v-47,-49,-56,-148,-27,-295r50,-258v36,-204,-7,-263,-198,-266r-61,0r20,-105v113,4,217,-10,268,-58v42,-40,76,-108,95,-208r50,-258v29,-147,76,-245,142,-294v66,-49,182,-74,348,-74r62,0r-21,104r-68,0v-94,0,-158,15,-192,44v-34,29,-61,91,-79,185r-56,287v-43,206,-99,277,-293,324v165,49,210,104,167,325r-56,287v-33,197,-4,224,183,229r68,0"},"|":{"d":"426,-1565r0,2048r-162,0r0,-2048r162,0","w":690},"}":{"d":"93,229r70,0v93,0,157,-14,191,-43v34,-29,60,-91,78,-186r56,-287v44,-207,99,-273,292,-325v-165,-44,-209,-106,-166,-324r56,-287v35,-198,6,-224,-181,-229r-70,0r21,-104r63,0v166,0,272,25,318,74v46,49,55,147,26,294r-50,258v-36,204,7,263,198,266r62,0r-20,105v-113,-4,-218,10,-269,58v-42,40,-76,108,-95,208r-50,258v-29,147,-76,246,-141,295v-65,49,-181,74,-347,74r-63,0"},"~":{"d":"1143,-657v154,0,258,-66,356,-150r0,148v-67,59,-130,102,-190,130v-60,28,-121,42,-183,42v-65,0,-211,-42,-313,-83v-97,-39,-179,-57,-242,-57v-156,0,-254,65,-354,150r0,-152v67,-58,129,-100,189,-127v60,-27,121,-41,184,-41v65,0,209,41,311,82v96,39,177,58,242,58","w":1716},"\u00a0":{"w":651},"\u00a1":{"d":"420,-1294v-68,-98,31,-228,140,-228v70,0,121,60,107,133v-13,68,-83,135,-159,134v-38,0,-69,-12,-88,-39xm135,0r227,-821r49,-252r123,0r-49,252r-92,821r-258,0","w":823},"\u00a2":{"d":"719,-991v-88,10,-161,53,-219,130v-58,77,-101,186,-129,329v-28,143,-27,253,1,330v28,77,84,120,168,130xm640,-72v140,-21,227,-120,275,-247r148,0v-80,191,-216,316,-442,346r-53,270r-100,0r53,-270v-281,-21,-429,-237,-367,-559v57,-299,270,-534,584,-558r52,-266r100,0r-52,266v126,11,229,43,322,93r-53,272r-106,0v6,-158,-47,-248,-182,-266"},"\u00a3":{"d":"1087,-1225v13,-128,-56,-197,-181,-196v-85,0,-152,25,-202,77v-50,52,-87,133,-108,242r-57,295r412,0r-21,107r-412,0r-112,579r478,0r44,-227r116,0r-68,348r-987,0r21,-106r193,0r115,-594r-193,0r21,-107r193,0r57,-295v50,-263,227,-417,532,-418v118,0,223,18,312,50r-48,245r-105,0"},"\u00a4":{"d":"653,-1067v105,0,178,33,248,82r209,-207r94,94r-209,209v50,70,84,142,84,248v0,108,-33,177,-86,244r207,207r-96,94r-207,-205v-67,52,-137,86,-244,86v-103,0,-180,-35,-250,-82r-204,205r-95,-94r205,-207v-47,-72,-82,-144,-82,-248v0,-108,34,-178,86,-246r-207,-207r95,-94r207,207v67,-52,138,-86,245,-86xm653,-373v147,0,269,-123,269,-270v0,-147,-122,-266,-269,-266v-146,0,-268,120,-268,266v0,148,121,270,268,270"},"\u00a5":{"d":"215,0r20,-106r191,0r72,-367r-404,0r20,-105r404,0r13,-65r-55,-141r-322,0r21,-105r263,0r-191,-497r-139,0r21,-107r553,0r-21,107r-175,0r226,604r456,-604r-167,0r21,-107r432,0r-21,107r-142,0r-380,497r272,0r-21,105r-332,0r-94,122r-17,84r403,0r-20,105r-403,0r-72,367r190,0r-20,106r-582,0"},"\u00a6":{"d":"426,-408r0,758r-162,0r0,-758r162,0xm426,-1432r0,758r-162,0r0,-758r162,0","w":690},"\u00a7":{"d":"432,-936v-85,53,-137,88,-158,182v-19,88,82,200,298,335r28,18v77,-44,134,-101,154,-191v10,-50,-4,-97,-42,-142v-38,-45,-131,-112,-280,-202xm985,-1464r-39,202r-92,0v17,-104,-58,-155,-164,-155v-131,0,-230,70,-250,180v-13,65,54,143,200,234r34,22v116,73,190,134,222,184v69,108,21,262,-55,332v-44,41,-106,78,-187,107v83,58,124,126,99,264v-32,178,-214,291,-433,289v-126,-1,-223,-19,-316,-56r41,-209r92,1v-18,121,59,161,185,161v136,0,240,-70,261,-182v15,-75,-46,-155,-182,-240v-118,-74,-240,-166,-269,-215v-30,-51,-42,-108,-29,-174v28,-137,138,-222,277,-258v-81,-56,-134,-126,-111,-254v31,-175,209,-291,422,-289v114,1,208,21,294,56","w":1024},"\u00a8":{"d":"446,-1534v49,-43,126,-51,164,0v62,85,-25,199,-122,199v-65,0,-107,-50,-93,-117v6,-32,24,-58,51,-82xm835,-1534v48,-42,126,-52,164,0v62,84,-25,199,-121,199v-66,0,-108,-49,-94,-117v6,-32,24,-58,51,-82","w":1024},"\u00a9":{"d":"1026,-379v140,-2,205,-71,231,-194r119,0v-33,168,-154,271,-350,272v-252,1,-410,-183,-410,-440v0,-257,160,-445,410,-443v129,2,221,31,322,76r0,213r-84,0v-22,-137,-86,-209,-236,-211v-79,0,-137,33,-180,92v-78,107,-78,437,0,544v43,59,99,91,178,91xm740,-1430v172,-72,396,-72,568,0v171,72,332,232,403,404v70,171,71,397,0,568v-71,171,-232,332,-403,403v-172,72,-396,72,-568,0v-171,-72,-332,-232,-403,-403v-71,-171,-70,-397,0,-568v71,-172,232,-332,403,-404xm1270,-1335v-148,-61,-342,-62,-490,0v-148,62,-286,199,-348,349v-62,149,-62,339,0,488v62,148,200,286,348,348v148,62,342,62,490,0v148,-62,285,-198,346,-347v61,-149,61,-343,0,-491v-62,-149,-198,-286,-346,-347","w":2048},"\u00aa":{"d":"528,-1499v105,-19,175,17,213,89r15,-84r126,0r-126,650r128,0r-17,88r-254,0r34,-178v-81,101,-165,179,-324,184v-121,4,-193,-92,-190,-219v4,-167,61,-285,149,-385v70,-80,153,-128,246,-145xm275,-1004v-4,104,56,166,161,146v124,-24,227,-144,249,-272v8,-45,22,-95,23,-145v2,-96,-66,-155,-166,-134v-168,36,-259,201,-267,405xm92,-639r698,0r-20,104r-698,0","w":973},"\u00ab":{"d":"1150,-1059r-22,115r-364,344r230,344r-22,115r-388,-418r16,-82xm716,-1059r-22,115r-364,344r230,344r-22,115r-388,-418r16,-82","w":1253},"\u00ac":{"d":"217,-862r1282,0r0,575r-160,0r0,-413r-1122,0r0,-162","w":1716},"\u00ad":{"d":"105,-627r512,0r-30,156r-512,0","w":692},"\u00ae":{"d":"1186,-942v0,-102,-61,-150,-166,-150r-125,0r0,301r125,0v107,0,166,-47,166,-151xm1335,-938v0,122,-74,172,-194,184v58,19,95,53,121,105r116,229r76,0r0,68r-190,0r-131,-254v-23,-47,-46,-77,-66,-94v-37,-31,-107,-22,-172,-23r0,303r84,0r0,68r-317,0r0,-68r83,0r0,-672r-83,0r0,-67r415,0v161,-1,258,67,258,221xm1270,-1335v-148,-61,-342,-62,-490,0v-148,62,-286,199,-348,349v-62,149,-62,339,0,488v62,148,200,286,348,348v148,62,342,62,490,0v148,-62,285,-198,346,-347v61,-149,61,-343,0,-491v-62,-149,-198,-286,-346,-347xm740,-1430v172,-72,396,-72,568,0v171,72,332,232,403,404v70,171,71,397,0,568v-71,171,-232,332,-403,403v-172,72,-396,72,-568,0v-171,-72,-332,-232,-403,-403v-71,-171,-70,-397,0,-568v71,-172,232,-332,403,-404","w":2048},"\u00af":{"d":"396,-1526r598,0r-28,148r-598,0","w":1024},"\u00b0":{"d":"692,-1200v0,-97,-84,-182,-180,-182v-99,0,-180,82,-180,182v0,100,80,178,180,178v98,0,180,-80,180,-178xm195,-1200v0,-215,219,-388,440,-296v77,32,140,98,171,173v15,38,23,79,23,123v0,172,-146,315,-319,315v-176,0,-315,-139,-315,-315","w":1024},"\u00b1":{"d":"938,-1284r0,391r561,0r0,162r-561,0r0,391r-160,0r0,-391r-561,0r0,-162r561,0r0,-391r160,0xm217,-160r1282,0r0,160r-1282,0r0,-160","w":1716},"\u00b2":{"d":"422,-1446v-114,1,-181,60,-213,150r-70,0r31,-158v84,-37,180,-65,288,-66v92,0,162,22,210,66v48,44,66,101,53,170v-16,81,-100,180,-252,296r-302,232r385,0r21,-108r74,0r-38,196r-602,0r15,-75r334,-254v67,-51,117,-97,150,-138v33,-41,53,-83,62,-127v22,-114,-37,-186,-146,-184","w":821},"\u00b3":{"d":"441,-1446v-110,0,-176,43,-201,129r-70,0r29,-151v87,-29,176,-52,276,-52v92,0,159,18,202,54v43,36,58,87,45,153v-21,106,-120,170,-238,189v138,19,223,84,195,235v-30,161,-181,238,-384,236v-105,0,-192,-21,-268,-56r33,-170r69,1v-12,108,54,152,166,151v126,0,209,-63,229,-170v25,-131,-38,-189,-166,-188r-53,0r14,-74v138,5,230,-37,252,-148v19,-95,-36,-140,-130,-139","w":821},"\u00b4":{"d":"858,-1638r199,0r-414,376r-117,0","w":1024},"\u00b5":{"d":"425,-274v-1,123,49,168,171,168v85,0,156,-31,213,-94v57,-63,97,-154,120,-273r115,-590r184,0r-187,959r174,0r-20,104r-358,0r37,-188v-49,71,-102,125,-158,162v-56,37,-114,55,-174,55v-81,0,-136,-27,-176,-72r-91,469r-184,0r269,-1382r-166,0r21,-107r350,0r-121,619v-13,68,-19,125,-19,170","w":1331},"\u00b6":{"d":"797,-1493r538,0r-21,107r-118,0r-307,1583r-107,0r307,-1583r-231,0r-307,1583r-107,0r164,-846v-141,-11,-244,-53,-308,-127v-64,-74,-82,-172,-60,-295v45,-245,270,-422,557,-422"},"\u00b7":{"d":"210,-616v-70,-97,31,-228,140,-228v70,0,121,59,107,133v-13,68,-83,134,-159,133v-38,0,-69,-12,-88,-38","w":651},"\u00b8":{"d":"283,240v66,32,180,54,243,8v43,-31,62,-75,40,-144v-9,-29,-25,-64,-47,-104r97,0v35,43,60,82,72,120v67,203,-126,304,-344,269v-29,-4,-58,-10,-87,-18","w":1024},"\u00b9":{"d":"95,-668r16,-84r172,0r123,-634r-221,106r18,-94r265,-129r102,0r-146,751r173,0r-16,84r-486,0","w":821},"\u00ba":{"d":"439,-813v71,0,129,-26,175,-79v46,-53,80,-132,100,-236v20,-104,18,-183,-8,-236v-26,-53,-74,-80,-144,-80v-69,0,-127,27,-174,81v-47,54,-80,132,-100,235v-20,103,-18,182,8,235v26,53,73,80,143,80xm425,-737v-226,0,-356,-154,-311,-391v41,-218,218,-392,463,-392v226,0,356,154,311,392v-42,218,-216,391,-463,391xm61,-639r688,0r-20,104r-688,0","w":963},"\u00bb":{"d":"716,-1059r388,418r-16,82r-550,418r22,-115r364,-344r-230,-344xm282,-1059r388,418r-16,82r-550,418r22,-115r363,-344r-229,-344","w":1253},"\u00bc":{"d":"95,-668r16,-84r172,0r123,-634r-221,106r18,-94r265,-129r102,0r-146,751r173,0r-16,84r-486,0xm1462,-303r79,-407r-387,407r308,0xm1691,0r-434,0r16,-84r146,0r27,-137r-398,0r16,-84r503,-530r141,0r-103,532r164,0r-16,82r-164,0r-27,137r145,0xm1539,-1520r150,0r-1244,1549r-150,0","w":1985},"\u00bd":{"d":"1455,-778v-114,1,-181,60,-213,150r-70,0r31,-158v84,-37,180,-65,288,-66v92,0,163,22,211,66v48,44,65,101,52,170v-16,81,-100,180,-252,296r-302,232r385,0r21,-108r74,0r-38,196r-602,0r15,-75r334,-254v67,-51,117,-97,150,-138v33,-41,53,-83,62,-127v22,-114,-37,-186,-146,-184xm95,-668r16,-84r172,0r123,-634r-221,106r18,-94r265,-129r102,0r-146,751r173,0r-16,84r-486,0xm1539,-1520r150,0r-1244,1549r-150,0","w":1985},"\u00be":{"d":"441,-1446v-110,0,-176,43,-201,129r-70,0r29,-151v87,-29,176,-52,276,-52v92,0,159,18,202,54v43,36,58,87,45,153v-21,106,-120,170,-238,189v138,19,223,84,195,235v-30,161,-181,238,-384,236v-105,0,-192,-21,-268,-56r33,-170r69,1v-12,108,54,152,166,151v126,0,209,-63,229,-170v25,-131,-38,-189,-166,-188r-53,0r14,-74v138,5,230,-37,252,-148v19,-95,-36,-140,-130,-139xm1462,-303r79,-407r-387,407r308,0xm1691,0r-434,0r16,-84r146,0r27,-137r-398,0r16,-84r503,-530r141,0r-103,532r164,0r-16,82r-164,0r-27,137r145,0xm1539,-1520r150,0r-1244,1549r-150,0","w":1985},"\u00bf":{"d":"884,-1484v69,97,-32,229,-140,229v-71,0,-121,-59,-107,-134v12,-67,84,-134,159,-133v38,0,69,11,88,38xm492,-72v173,-3,278,-111,329,-254r96,0r-50,260v-129,51,-249,93,-400,93v-147,0,-257,-36,-329,-107v-72,-71,-98,-168,-73,-289v56,-271,251,-411,537,-473r50,-254r123,0r-64,328v-230,53,-390,177,-435,401v-38,180,49,298,216,295","w":1098},"\u00c0":{"d":"370,-541r548,0r-136,-710xm-157,0r20,-106r131,0r802,-1387r168,0r264,1387r146,0r-20,106r-543,0r20,-106r166,0r-61,-328r-628,0r-189,328r164,0r-20,106r-420,0xm866,-1899r131,264r-117,0r-210,-264r196,0","w":1479},"\u00c1":{"d":"370,-541r548,0r-136,-710xm-157,0r20,-106r131,0r802,-1387r168,0r264,1387r146,0r-20,106r-543,0r20,-106r166,0r-61,-328r-628,0r-189,328r164,0r-20,106r-420,0xm1051,-1899r197,0r-314,264r-117,0","w":1479},"\u00c2":{"d":"370,-541r548,0r-136,-710xm-157,0r20,-106r131,0r802,-1387r168,0r264,1387r146,0r-20,106r-543,0r20,-106r166,0r-61,-328r-628,0r-189,328r164,0r-20,106r-420,0xm852,-1899r176,0r179,264r-116,0r-171,-161r-235,161r-116,0","w":1479},"\u00c3":{"d":"370,-541r548,0r-136,-710xm-157,0r20,-106r131,0r802,-1387r168,0r264,1387r146,0r-20,106r-543,0r20,-106r166,0r-61,-328r-628,0r-189,328r164,0r-20,106r-420,0xm1289,-1886v-26,126,-102,217,-241,219v-45,1,-92,-20,-135,-48v-34,-22,-64,-55,-115,-55v-59,0,-101,50,-115,103r-96,-1v25,-136,136,-251,297,-209v45,12,112,67,163,86v76,27,135,-28,145,-95r97,0","w":1479},"\u00c4":{"d":"370,-541r548,0r-136,-710xm-157,0r20,-106r131,0r802,-1387r168,0r264,1387r146,0r-20,106r-543,0r20,-106r166,0r-61,-328r-628,0r-189,328r164,0r-20,106r-420,0xm661,-1849v48,-43,126,-51,164,0v64,85,-26,198,-121,198v-63,0,-108,-51,-93,-117v6,-31,23,-58,50,-81xm1050,-1849v48,-43,126,-51,164,0v63,85,-26,198,-120,198v-64,0,-109,-50,-94,-117v6,-31,23,-58,50,-81","w":1479},"\u00c5":{"d":"837,-1475v87,0,166,-75,181,-151v16,-84,-42,-152,-122,-152v-89,0,-166,73,-181,152v-16,85,41,151,122,151xm330,-541r546,0r-134,-710xm-197,0r21,-106r131,0r737,-1278v-79,-45,-120,-119,-100,-242v23,-139,171,-275,328,-275v146,0,252,123,221,275v-23,113,-99,200,-197,242r244,1278r147,0r-21,106r-543,0r21,-106r166,0r-61,-328r-628,0r-189,328r164,0r-21,106r-420,0","w":1479},"\u00c6":{"d":"386,-541r489,0r164,-845r-100,0xm580,0r20,-106r190,0r64,-328r-538,0r-216,328r164,0r-20,106r-424,0r20,-106r131,0r839,-1280r-215,0r21,-107r1456,0r-64,332r-123,0r40,-209r-688,0r-97,500r492,0r36,-187r123,0r-96,496r-123,0r36,-187r-492,0r-121,625r705,0r40,-209r123,0r-64,332r-1219,0","w":2050},"\u00c7":{"d":"405,240v66,32,180,54,243,8v43,-31,62,-75,40,-144v-9,-29,-25,-64,-47,-104r97,0v35,43,60,82,72,120v67,203,-126,304,-344,269v-29,-4,-58,-10,-87,-18xm699,-78v253,0,400,-130,493,-317r184,0v-71,139,-167,244,-284,317v-176,110,-463,146,-675,57v-158,-66,-276,-220,-310,-401v-18,-95,-15,-203,8,-323v45,-232,149,-419,311,-561v221,-193,492,-260,824,-182v88,21,181,54,278,97r-66,344r-113,0v-3,-257,-126,-365,-390,-366v-159,0,-291,56,-395,169v-104,113,-177,280,-220,499v-43,219,-34,384,26,497v60,113,170,170,329,170","w":1567},"\u00c8":{"d":"-32,0r20,-106r190,0r249,-1280r-190,0r21,-107r1202,0r-64,332r-123,0r40,-209r-686,0r-97,500r489,0r36,-187r123,0r-96,496r-123,0r36,-187r-489,0r-121,625r702,0r40,-209r123,0r-64,332r-1218,0xm946,-1899r131,264r-117,0r-210,-264r196,0","w":1495},"\u00c9":{"d":"-32,0r20,-106r190,0r249,-1280r-190,0r21,-107r1202,0r-64,332r-123,0r40,-209r-686,0r-97,500r489,0r36,-187r123,0r-96,496r-123,0r36,-187r-489,0r-121,625r702,0r40,-209r123,0r-64,332r-1218,0xm1059,-1899r197,0r-314,264r-117,0","w":1495},"\u00ca":{"d":"-32,0r20,-106r190,0r249,-1280r-190,0r21,-107r1202,0r-64,332r-123,0r40,-209r-686,0r-97,500r489,0r36,-187r123,0r-96,496r-123,0r36,-187r-489,0r-121,625r702,0r40,-209r123,0r-64,332r-1218,0xm908,-1899r176,0r179,264r-116,0r-171,-161r-235,161r-116,0","w":1495},"\u00cb":{"d":"-32,0r20,-106r190,0r249,-1280r-190,0r21,-107r1202,0r-64,332r-123,0r40,-209r-686,0r-97,500r489,0r36,-187r123,0r-96,496r-123,0r36,-187r-489,0r-121,625r702,0r40,-209r123,0r-64,332r-1218,0xm723,-1849v48,-43,126,-51,164,0v64,85,-26,198,-121,198v-63,0,-108,-51,-93,-117v6,-31,23,-58,50,-81xm1112,-1849v48,-43,126,-51,164,0v63,85,-26,198,-120,198v-64,0,-109,-50,-94,-117v6,-31,23,-58,50,-81","w":1495},"\u00cc":{"d":"381,-106r190,0r-20,106r-583,0r20,-106r190,0r249,-1280r-190,0r21,-107r583,0r-21,107r-190,0xm569,-1899r131,264r-117,0r-210,-264r196,0","w":809},"\u00cd":{"d":"381,-106r190,0r-20,106r-583,0r20,-106r190,0r249,-1280r-190,0r21,-107r583,0r-21,107r-190,0xm718,-1899r197,0r-314,264r-117,0","w":809},"\u00ce":{"d":"381,-106r190,0r-20,106r-583,0r20,-106r190,0r249,-1280r-190,0r21,-107r583,0r-21,107r-190,0xm567,-1899r176,0r179,264r-116,0r-171,-161r-235,161r-116,0","w":809},"\u00cf":{"d":"381,-106r190,0r-20,106r-583,0r20,-106r190,0r249,-1280r-190,0r21,-107r583,0r-21,107r-190,0xm346,-1849v48,-43,126,-51,164,0v64,85,-26,198,-121,198v-63,0,-108,-51,-93,-117v6,-31,23,-58,50,-81xm735,-1849v48,-43,126,-51,164,0v63,85,-26,198,-120,198v-64,0,-109,-50,-94,-117v6,-31,23,-58,50,-81","w":809},"\u00d0":{"d":"389,-106r188,0v194,0,353,-55,479,-166v126,-111,210,-269,250,-476v82,-413,-93,-640,-480,-638r-188,0r-105,542r336,0r-24,125r-336,0xm-22,0r20,-106r190,0r120,-613r-200,0r24,-125r200,0r105,-542r-190,0r21,-107r594,0v257,0,446,66,564,197v118,131,152,314,108,548v-84,452,-438,748,-962,748r-594,0","w":1653},"\u00d1":{"d":"-42,0r20,-106r201,0r249,-1280r-201,0r21,-107r383,0r666,1178r208,-1071r-200,0r21,-107r524,0r-21,107r-201,0r-275,1415r-121,0r-711,-1258r-219,1123r201,0r-20,106r-525,0xm1483,-1886v-26,126,-102,217,-241,219v-45,1,-92,-20,-135,-48v-34,-22,-64,-55,-115,-55v-59,0,-101,50,-115,103r-96,-1v25,-136,136,-251,297,-209v45,12,112,67,163,86v76,27,135,-28,145,-95r97,0","w":1792},"\u00d2":{"d":"710,-78v163,0,298,-56,403,-168v105,-112,179,-279,222,-499v43,-221,33,-387,-28,-499v-61,-112,-174,-169,-337,-169v-164,0,-299,57,-404,169v-105,112,-179,278,-222,499v-43,220,-33,387,28,499v61,112,174,168,338,168xm978,-20v-169,63,-397,67,-558,-1v-159,-67,-280,-219,-313,-401v-41,-228,36,-494,125,-646v100,-171,272,-331,469,-402v91,-33,187,-50,290,-50v429,0,668,317,574,775v-52,250,-165,436,-334,577v-78,65,-163,114,-253,148xm1038,-1899r131,264r-117,0r-210,-264r196,0","w":1679},"\u00d3":{"d":"710,-78v163,0,298,-56,403,-168v105,-112,179,-279,222,-499v43,-221,33,-387,-28,-499v-61,-112,-174,-169,-337,-169v-164,0,-299,57,-404,169v-105,112,-179,278,-222,499v-43,220,-33,387,28,499v61,112,174,168,338,168xm978,-20v-169,63,-397,67,-558,-1v-159,-67,-280,-219,-313,-401v-41,-228,36,-494,125,-646v100,-171,272,-331,469,-402v91,-33,187,-50,290,-50v429,0,668,317,574,775v-52,250,-165,436,-334,577v-78,65,-163,114,-253,148xm1151,-1899r197,0r-314,264r-117,0","w":1679},"\u00d4":{"d":"710,-78v163,0,298,-56,403,-168v105,-112,179,-279,222,-499v43,-221,33,-387,-28,-499v-61,-112,-174,-169,-337,-169v-164,0,-299,57,-404,169v-105,112,-179,278,-222,499v-43,220,-33,387,28,499v61,112,174,168,338,168xm978,-20v-169,63,-397,67,-558,-1v-159,-67,-280,-219,-313,-401v-41,-228,36,-494,125,-646v100,-171,272,-331,469,-402v91,-33,187,-50,290,-50v429,0,668,317,574,775v-52,250,-165,436,-334,577v-78,65,-163,114,-253,148xm1000,-1899r176,0r179,264r-116,0r-171,-161r-235,161r-116,0","w":1679},"\u00d5":{"d":"710,-78v163,0,298,-56,403,-168v105,-112,179,-279,222,-499v43,-221,33,-387,-28,-499v-61,-112,-174,-169,-337,-169v-164,0,-299,57,-404,169v-105,112,-179,278,-222,499v-43,220,-33,387,28,499v61,112,174,168,338,168xm978,-20v-169,63,-397,67,-558,-1v-159,-67,-280,-219,-313,-401v-41,-228,36,-494,125,-646v100,-171,272,-331,469,-402v91,-33,187,-50,290,-50v429,0,668,317,574,775v-52,250,-165,436,-334,577v-78,65,-163,114,-253,148xm1425,-1886v-26,126,-102,217,-241,219v-45,1,-92,-20,-135,-48v-34,-22,-64,-55,-115,-55v-59,0,-101,50,-115,103r-96,-1v25,-136,136,-251,297,-209v45,12,112,67,163,86v76,27,135,-28,145,-95r97,0","w":1679},"\u00d6":{"d":"710,-78v163,0,298,-56,403,-168v105,-112,179,-279,222,-499v43,-221,33,-387,-28,-499v-61,-112,-174,-169,-337,-169v-164,0,-299,57,-404,169v-105,112,-179,278,-222,499v-43,220,-33,387,28,499v61,112,174,168,338,168xm978,-20v-169,63,-397,67,-558,-1v-159,-67,-280,-219,-313,-401v-41,-228,36,-494,125,-646v100,-171,272,-331,469,-402v91,-33,187,-50,290,-50v429,0,668,317,574,775v-52,250,-165,436,-334,577v-78,65,-163,114,-253,148xm815,-1849v48,-43,126,-51,164,0v64,85,-26,198,-121,198v-63,0,-108,-51,-93,-117v6,-31,23,-58,50,-81xm1204,-1849v48,-43,126,-51,164,0v63,85,-26,198,-120,198v-64,0,-109,-50,-94,-117v6,-31,23,-58,50,-81","w":1679},"\u00d7":{"d":"1434,-1104r-463,463r463,461r-115,112r-461,-460r-461,460r-114,-112r460,-461r-460,-463r114,-113r461,461r461,-461","w":1716},"\u00d8":{"d":"1310,-1239v-62,-114,-169,-173,-340,-174v-164,0,-299,57,-404,169v-105,112,-179,278,-222,499v-26,139,-38,262,-11,393xm368,-256v59,116,171,178,342,178v163,0,298,-56,403,-168v105,-112,180,-279,222,-499v26,-137,37,-266,10,-396xm990,-1520v198,0,345,63,445,168r216,-198r66,71r-223,203v87,142,113,314,71,531v-45,230,-147,416,-309,559v-162,143,-351,215,-567,215v-202,-1,-341,-65,-446,-172r-221,200r-65,-69r227,-207v-88,-139,-110,-311,-69,-526v45,-231,147,-418,309,-561v162,-143,351,-214,566,-214","w":1679},"\u00d9":{"d":"414,-1386r-191,0r21,-107r584,0r-21,107r-191,0r-150,772v-68,366,-9,512,317,512v153,0,267,-38,344,-113v77,-75,134,-208,171,-399r150,-772r-191,0r21,-107r504,0r-21,107r-190,0r-154,792v-44,227,-119,388,-225,482v-106,94,-263,141,-472,141v-423,0,-548,-168,-460,-623xm1102,-1899r131,264r-117,0r-210,-264r196,0","w":1726},"\u00da":{"d":"414,-1386r-191,0r21,-107r584,0r-21,107r-191,0r-150,772v-68,366,-9,512,317,512v153,0,267,-38,344,-113v77,-75,134,-208,171,-399r150,-772r-191,0r21,-107r504,0r-21,107r-190,0r-154,792v-44,227,-119,388,-225,482v-106,94,-263,141,-472,141v-423,0,-548,-168,-460,-623xm1215,-1899r197,0r-314,264r-117,0","w":1726},"\u00db":{"d":"414,-1386r-191,0r21,-107r584,0r-21,107r-191,0r-150,772v-68,366,-9,512,317,512v153,0,267,-38,344,-113v77,-75,134,-208,171,-399r150,-772r-191,0r21,-107r504,0r-21,107r-190,0r-154,792v-44,227,-119,388,-225,482v-106,94,-263,141,-472,141v-423,0,-548,-168,-460,-623xm1064,-1899r176,0r179,264r-116,0r-171,-161r-235,161r-116,0","w":1726},"\u00dc":{"d":"414,-1386r-191,0r21,-107r584,0r-21,107r-191,0r-150,772v-68,366,-9,512,317,512v153,0,267,-38,344,-113v77,-75,134,-208,171,-399r150,-772r-191,0r21,-107r504,0r-21,107r-190,0r-154,792v-44,227,-119,388,-225,482v-106,94,-263,141,-472,141v-423,0,-548,-168,-460,-623xm879,-1849v48,-43,126,-51,164,0v64,85,-26,198,-121,198v-63,0,-108,-51,-93,-117v6,-31,23,-58,50,-81xm1268,-1849v48,-43,126,-51,164,0v63,85,-26,198,-120,198v-64,0,-109,-50,-94,-117v6,-31,23,-58,50,-81","w":1726},"\u00dd":{"d":"242,0r20,-106r191,0r105,-537r-317,-743r-140,0r21,-107r555,0r-21,107r-174,0r256,604r490,-604r-168,0r21,-107r434,0r-21,107r-141,0r-589,724r-109,556r191,0r-20,106r-584,0xm987,-1899r197,0r-314,264r-117,0","w":1352},"\u00de":{"d":"445,-434r264,0v212,-1,330,-125,366,-314v39,-206,-49,-313,-244,-313r-264,0xm-32,0r20,-106r190,0r249,-1280r-190,0r21,-107r624,0r-21,107r-231,0r-42,219r313,0v149,0,260,37,333,113v73,76,94,178,71,306v-46,252,-271,422,-568,422r-313,0r-43,220r231,0r-20,106r-624,0","w":1384},"\u00df":{"d":"1027,-1210v21,-160,-63,-249,-218,-248v-192,3,-272,96,-306,268r-244,1256v-43,223,-180,358,-434,360r12,-98v70,0,122,-18,156,-56v36,-40,63,-109,82,-206r243,-1252v43,-233,233,-370,510,-370v279,0,406,132,367,419v-186,-6,-343,60,-373,201v-7,35,-4,64,8,90v22,47,112,104,163,141v91,65,149,127,178,184v29,57,35,123,21,199v-36,203,-242,354,-484,351v-123,-1,-230,-29,-318,-72r45,-233r109,0v-20,137,44,206,177,206v152,0,259,-93,282,-225v11,-56,5,-103,-12,-143v-23,-54,-138,-137,-207,-185v-61,-44,-103,-87,-124,-129v-21,-43,-27,-92,-16,-147v36,-175,190,-283,383,-311","w":1368},"\u00e0":{"d":"621,-1636r186,376r-117,0r-266,-376r197,0xm396,29v-232,0,-367,-184,-316,-431v48,-235,150,-414,314,-535v139,-103,293,-155,462,-155v113,0,189,10,228,29r-186,957r158,0r-20,106r-324,0r32,-166v-89,130,-205,195,-348,195xm263,-300v0,143,69,214,207,214v84,0,155,-33,212,-100v57,-67,98,-165,123,-293r93,-482v0,-19,-27,-29,-80,-29v-128,0,-242,50,-341,150v-99,100,-166,242,-201,425v-9,43,-13,81,-13,115","w":1221},"\u00e1":{"d":"915,-1638r199,0r-414,376r-117,0xm396,29v-232,0,-367,-184,-316,-431v48,-235,150,-414,314,-535v139,-103,293,-155,462,-155v113,0,189,10,228,29r-186,957r158,0r-20,106r-324,0r32,-166v-89,130,-205,195,-348,195xm263,-300v0,143,69,214,207,214v84,0,155,-33,212,-100v57,-67,98,-165,123,-293r93,-482v0,-19,-27,-29,-80,-29v-128,0,-242,50,-341,150v-99,100,-166,242,-201,425v-9,43,-13,81,-13,115","w":1221},"\u00e2":{"d":"714,-1638r168,0r161,376r-116,0r-152,-260r-254,260r-116,0xm396,29v-232,0,-367,-184,-316,-431v48,-235,150,-414,314,-535v139,-103,293,-155,462,-155v113,0,189,10,228,29r-186,957r158,0r-20,106r-324,0r32,-166v-89,130,-205,195,-348,195xm263,-300v0,143,69,214,207,214v84,0,155,-33,212,-100v57,-67,98,-165,123,-293r93,-482v0,-19,-27,-29,-80,-29v-128,0,-242,50,-341,150v-99,100,-166,242,-201,425v-9,43,-13,81,-13,115","w":1221},"\u00e3":{"d":"888,-1309v-92,1,-128,-65,-174,-116v-23,-26,-33,-39,-70,-39v-28,0,-53,13,-74,40v-21,26,-38,64,-51,115r-96,0v19,-90,50,-160,93,-209v57,-64,138,-93,224,-59v40,16,77,67,106,102v21,25,33,39,70,39v29,0,54,-13,75,-40v21,-27,38,-65,50,-115r96,0v-19,90,-50,160,-93,209v-43,49,-95,73,-156,73xm396,29v-232,0,-367,-184,-316,-431v48,-235,150,-414,314,-535v139,-103,293,-155,462,-155v113,0,189,10,228,29r-186,957r158,0r-20,106r-324,0r32,-166v-89,130,-205,195,-348,195xm263,-300v0,143,69,214,207,214v84,0,155,-33,212,-100v57,-67,98,-165,123,-293r93,-482v0,-19,-27,-29,-80,-29v-128,0,-242,50,-341,150v-99,100,-166,242,-201,425v-9,43,-13,81,-13,115","w":1221},"\u00e4":{"d":"503,-1534v49,-43,126,-51,164,0v62,85,-25,199,-122,199v-65,0,-107,-50,-93,-117v6,-32,24,-58,51,-82xm892,-1534v48,-42,126,-52,164,0v62,84,-25,199,-121,199v-66,0,-108,-49,-94,-117v6,-32,24,-58,51,-82xm396,29v-232,0,-367,-184,-316,-431v48,-235,150,-414,314,-535v139,-103,293,-155,462,-155v113,0,189,10,228,29r-186,957r158,0r-20,106r-324,0r32,-166v-89,130,-205,195,-348,195xm263,-300v0,143,69,214,207,214v84,0,155,-33,212,-100v57,-67,98,-165,123,-293r93,-482v0,-19,-27,-29,-80,-29v-128,0,-242,50,-341,150v-99,100,-166,242,-201,425v-9,43,-13,81,-13,115","w":1221},"\u00e5":{"d":"396,29v-232,0,-367,-184,-316,-431v48,-235,150,-414,314,-535v139,-103,293,-155,462,-155v113,0,189,10,228,29r-186,957r158,0r-20,106r-324,0r32,-166v-89,130,-205,195,-348,195xm263,-300v0,143,69,214,207,214v84,0,155,-33,212,-100v57,-67,98,-165,123,-293r93,-482v0,-19,-27,-29,-80,-29v-128,0,-242,50,-341,150v-99,100,-166,242,-201,425v-9,43,-13,81,-13,115xm1033,-1524v-26,140,-169,275,-327,275v-147,0,-249,-121,-221,-275v26,-140,169,-274,327,-274v147,0,249,120,221,274xm730,-1372v88,0,167,-74,181,-152v16,-85,-42,-151,-123,-151v-90,0,-166,73,-181,151v-17,87,40,152,123,152","w":1221},"\u00e6":{"d":"1526,-632v75,-44,112,-107,112,-190v0,-114,-76,-171,-227,-171v-89,0,-165,34,-227,102v-62,68,-112,194,-150,377v211,-9,375,-49,492,-118xm1009,-336v0,169,85,267,251,266v77,0,135,-12,173,-35v68,-42,110,-90,126,-144r135,0v-27,85,-90,157,-189,216v-69,41,-173,62,-310,62v-159,0,-273,-65,-344,-196v-99,134,-248,196,-455,196v-232,0,-367,-184,-316,-431v48,-235,150,-414,314,-535v139,-103,293,-155,462,-155v113,0,189,10,228,29r-19,97v106,-84,232,-126,377,-126v261,0,391,92,391,277v0,266,-273,402,-820,407v-3,25,-4,49,-4,72xm276,-415v-9,43,-13,83,-13,118v0,141,69,211,207,211v84,0,155,-33,212,-100v57,-67,98,-165,123,-293r93,-482v0,-19,-27,-29,-80,-29v-128,0,-242,50,-341,150v-99,100,-166,242,-201,425","w":1925},"\u00e7":{"d":"223,240v66,32,180,54,243,8v43,-31,62,-75,40,-144v-9,-29,-25,-64,-47,-104r97,0v35,43,60,82,72,120v67,203,-126,304,-344,269v-29,-4,-58,-10,-87,-18xm528,-70v183,-3,276,-103,336,-249r148,0v-48,113,-114,200,-200,259v-86,59,-188,89,-305,89v-256,0,-420,-159,-420,-414v0,-248,94,-427,235,-555v156,-142,363,-183,600,-128v64,16,125,39,186,71r-52,272r-107,0v6,-183,-63,-269,-241,-268v-99,0,-182,38,-248,115v-66,77,-113,193,-143,346v-13,70,-20,132,-20,187v-2,170,71,278,231,275","w":1147},"\u00e8":{"d":"658,-1636r186,376r-117,0r-266,-376r197,0xm482,29v-232,0,-400,-172,-395,-415v5,-246,93,-424,233,-552v112,-103,249,-154,409,-154v261,0,391,92,391,277v0,135,-68,236,-205,302v-139,67,-344,102,-615,105v-3,25,-4,49,-4,72v0,169,85,267,251,266v77,0,135,-12,173,-35v68,-42,110,-90,126,-144r135,0v-27,85,-90,157,-189,216v-69,41,-173,62,-310,62xm813,-632v74,-44,112,-107,112,-190v0,-114,-76,-171,-227,-171v-89,0,-165,34,-227,102v-62,68,-112,194,-150,377v214,-10,378,-50,492,-118","w":1212},"\u00e9":{"d":"952,-1638r199,0r-414,376r-117,0xm482,29v-232,0,-400,-172,-395,-415v5,-246,93,-424,233,-552v112,-103,249,-154,409,-154v261,0,391,92,391,277v0,135,-68,236,-205,302v-139,67,-344,102,-615,105v-3,25,-4,49,-4,72v0,169,85,267,251,266v77,0,135,-12,173,-35v68,-42,110,-90,126,-144r135,0v-27,85,-90,157,-189,216v-69,41,-173,62,-310,62xm813,-632v74,-44,112,-107,112,-190v0,-114,-76,-171,-227,-171v-89,0,-165,34,-227,102v-62,68,-112,194,-150,377v214,-10,378,-50,492,-118","w":1212},"\u00ea":{"d":"751,-1638r168,0r161,376r-116,0r-152,-260r-254,260r-116,0xm482,29v-232,0,-400,-172,-395,-415v5,-246,93,-424,233,-552v112,-103,249,-154,409,-154v261,0,391,92,391,277v0,135,-68,236,-205,302v-139,67,-344,102,-615,105v-3,25,-4,49,-4,72v0,169,85,267,251,266v77,0,135,-12,173,-35v68,-42,110,-90,126,-144r135,0v-27,85,-90,157,-189,216v-69,41,-173,62,-310,62xm813,-632v74,-44,112,-107,112,-190v0,-114,-76,-171,-227,-171v-89,0,-165,34,-227,102v-62,68,-112,194,-150,377v214,-10,378,-50,492,-118","w":1212},"\u00eb":{"d":"540,-1534v49,-43,126,-51,164,0v62,85,-25,199,-122,199v-65,0,-107,-50,-93,-117v6,-32,24,-58,51,-82xm929,-1534v48,-42,126,-52,164,0v62,84,-25,199,-121,199v-66,0,-108,-49,-94,-117v6,-32,24,-58,51,-82xm482,29v-232,0,-400,-172,-395,-415v5,-246,93,-424,233,-552v112,-103,249,-154,409,-154v261,0,391,92,391,277v0,135,-68,236,-205,302v-139,67,-344,102,-615,105v-3,25,-4,49,-4,72v0,169,85,267,251,266v77,0,135,-12,173,-35v68,-42,110,-90,126,-144r135,0v-27,85,-90,157,-189,216v-69,41,-173,62,-310,62xm813,-632v74,-44,112,-107,112,-190v0,-114,-76,-171,-227,-171v-89,0,-165,34,-227,102v-62,68,-112,194,-150,377v214,-10,378,-50,492,-118","w":1212},"\u00ec":{"d":"380,-1636r186,376r-117,0r-266,-376r197,0xm351,-106r174,0r-20,106r-358,0r186,-956r-176,0r20,-107r360,0","w":655},"\u00ed":{"d":"674,-1638r199,0r-414,376r-117,0xm351,-106r174,0r-20,106r-358,0r186,-956r-176,0r20,-107r360,0","w":655},"\u00ee":{"d":"473,-1638r168,0r161,376r-116,0r-152,-260r-254,260r-116,0xm351,-106r174,0r-20,106r-358,0r186,-956r-176,0r20,-107r360,0","w":655},"\u00ef":{"d":"262,-1534v49,-43,126,-51,164,0v62,85,-25,199,-122,199v-65,0,-107,-50,-93,-117v6,-32,24,-58,51,-82xm651,-1534v48,-42,126,-52,164,0v62,84,-25,199,-121,199v-66,0,-108,-49,-94,-117v6,-32,24,-58,51,-82xm351,-106r174,0r-20,106r-358,0r186,-956r-176,0r20,-107r360,0","w":655},"\u00f0":{"d":"853,-928v-53,-11,-103,-18,-163,-18v-115,0,-207,36,-276,107v-69,71,-118,182,-147,331v-27,140,-21,248,16,324v37,76,103,114,198,114v96,0,176,-39,244,-114v127,-140,208,-493,128,-744xm422,-1556v155,35,280,99,384,188r351,-150r21,78r-312,133v100,111,169,233,206,363v37,130,41,267,13,412v-33,169,-105,306,-219,408v-114,102,-249,153,-404,153v-301,0,-473,-226,-408,-547v32,-157,103,-284,216,-381v149,-128,327,-170,556,-131v-19,-82,-57,-150,-103,-215r-351,149r-22,-78r319,-135v-68,-79,-163,-132,-282,-161","w":1233},"\u00f1":{"d":"918,-1309v-92,1,-128,-65,-174,-116v-23,-26,-33,-39,-70,-39v-28,0,-53,13,-74,40v-21,26,-38,64,-51,115r-96,0v19,-90,50,-160,93,-209v57,-64,138,-93,224,-59v40,16,77,67,106,102v21,25,33,39,70,39v29,0,54,-13,75,-40v21,-27,38,-65,50,-115r96,0v-19,90,-50,160,-93,209v-43,49,-95,73,-156,73xm947,-790v1,-122,-49,-168,-171,-168v-85,0,-156,32,-213,94v-57,62,-97,153,-120,272r-115,592r-184,0r186,-956r-176,0r20,-107r360,0r-36,189v48,-72,103,-126,164,-163v61,-37,128,-55,200,-55v187,1,278,80,278,264v0,45,-6,95,-17,152r-111,570r164,0r-20,106r-349,0r120,-618v13,-69,20,-126,20,-172","w":1319},"\u00f2":{"d":"668,-1636r186,376r-117,0r-266,-376r197,0xm297,-348v-2,169,71,278,229,278v99,0,178,-41,246,-117v88,-100,159,-327,163,-530v3,-169,-71,-276,-229,-276v-99,0,-180,39,-246,117v-66,78,-114,192,-143,344v-13,69,-20,131,-20,184xm725,-1092v256,0,420,157,420,413v0,247,-94,427,-235,555v-113,103,-248,153,-403,153v-256,0,-420,-159,-420,-414v0,-247,94,-426,235,-554v113,-102,248,-153,403,-153","w":1233},"\u00f3":{"d":"962,-1638r199,0r-414,376r-117,0xm297,-348v-2,169,71,278,229,278v99,0,178,-41,246,-117v88,-100,159,-327,163,-530v3,-169,-71,-276,-229,-276v-99,0,-180,39,-246,117v-66,78,-114,192,-143,344v-13,69,-20,131,-20,184xm725,-1092v256,0,420,157,420,413v0,247,-94,427,-235,555v-113,103,-248,153,-403,153v-256,0,-420,-159,-420,-414v0,-247,94,-426,235,-554v113,-102,248,-153,403,-153","w":1233},"\u00f4":{"d":"761,-1638r168,0r161,376r-116,0r-152,-260r-254,260r-116,0xm297,-348v-2,169,71,278,229,278v99,0,178,-41,246,-117v88,-100,159,-327,163,-530v3,-169,-71,-276,-229,-276v-99,0,-180,39,-246,117v-66,78,-114,192,-143,344v-13,69,-20,131,-20,184xm725,-1092v256,0,420,157,420,413v0,247,-94,427,-235,555v-113,103,-248,153,-403,153v-256,0,-420,-159,-420,-414v0,-247,94,-426,235,-554v113,-102,248,-153,403,-153","w":1233},"\u00f5":{"d":"935,-1309v-92,1,-128,-65,-174,-116v-23,-26,-33,-39,-70,-39v-28,0,-53,13,-74,40v-21,26,-38,64,-51,115r-96,0v19,-90,50,-160,93,-209v57,-64,138,-93,224,-59v40,16,77,67,106,102v21,25,33,39,70,39v29,0,54,-13,75,-40v21,-27,38,-65,50,-115r96,0v-19,90,-50,160,-93,209v-43,49,-95,73,-156,73xm297,-348v-2,169,71,278,229,278v99,0,178,-41,246,-117v88,-100,159,-327,163,-530v3,-169,-71,-276,-229,-276v-99,0,-180,39,-246,117v-66,78,-114,192,-143,344v-13,69,-20,131,-20,184xm725,-1092v256,0,420,157,420,413v0,247,-94,427,-235,555v-113,103,-248,153,-403,153v-256,0,-420,-159,-420,-414v0,-247,94,-426,235,-554v113,-102,248,-153,403,-153","w":1233},"\u00f6":{"d":"550,-1534v49,-43,126,-51,164,0v62,85,-25,199,-122,199v-65,0,-107,-50,-93,-117v6,-32,24,-58,51,-82xm939,-1534v48,-42,126,-52,164,0v62,84,-25,199,-121,199v-66,0,-108,-49,-94,-117v6,-32,24,-58,51,-82xm297,-348v-2,169,71,278,229,278v99,0,178,-41,246,-117v88,-100,159,-327,163,-530v3,-169,-71,-276,-229,-276v-99,0,-180,39,-246,117v-66,78,-114,192,-143,344v-13,69,-20,131,-20,184xm725,-1092v256,0,420,157,420,413v0,247,-94,427,-235,555v-113,103,-248,153,-403,153v-256,0,-420,-159,-420,-414v0,-247,94,-426,235,-554v113,-102,248,-153,403,-153","w":1233},"\u00f7":{"d":"858,-879v-74,0,-133,-59,-133,-133v0,-73,60,-133,133,-133v71,0,133,62,133,133v0,72,-61,133,-133,133xm858,-139v-74,0,-133,-60,-133,-133v0,-73,60,-134,133,-134v72,0,133,62,133,134v0,71,-62,133,-133,133xm217,-723r1282,0r0,162r-1282,0r0,-162","w":1716},"\u00f8":{"d":"908,-879v-34,-73,-99,-114,-202,-114v-98,0,-179,40,-246,117v-83,94,-146,288,-161,475v-3,39,-2,75,1,108xm325,-190v35,77,95,119,201,120v98,0,178,-41,246,-118v84,-95,147,-293,162,-480v3,-40,2,-78,-1,-112xm725,-1092v130,0,229,37,298,101r172,-166r63,63r-178,172v65,99,80,234,50,390v-32,169,-106,306,-220,408v-114,102,-248,153,-403,153v-133,0,-230,-39,-300,-107r-177,172r-63,-63r183,-178v-61,-102,-77,-231,-48,-385v33,-169,106,-305,220,-407v114,-102,248,-153,403,-153","w":1233},"\u00f9":{"d":"636,-1636r186,376r-117,0r-266,-376r197,0xm372,-273v-1,122,48,167,171,167v85,0,156,-31,213,-94v57,-63,97,-154,120,-273r115,-590r184,0r-186,957r174,0r-20,106r-358,0r36,-188v-48,71,-102,125,-163,162v-61,37,-128,55,-199,55v-188,-2,-279,-79,-280,-264v0,-45,6,-95,17,-152r110,-569r-166,0r21,-107r351,0r-120,619v-13,69,-20,126,-20,171","w":1319},"\u00fa":{"d":"930,-1638r199,0r-414,376r-117,0xm372,-273v-1,122,48,167,171,167v85,0,156,-31,213,-94v57,-63,97,-154,120,-273r115,-590r184,0r-186,957r174,0r-20,106r-358,0r36,-188v-48,71,-102,125,-163,162v-61,37,-128,55,-199,55v-188,-2,-279,-79,-280,-264v0,-45,6,-95,17,-152r110,-569r-166,0r21,-107r351,0r-120,619v-13,69,-20,126,-20,171","w":1319},"\u00fb":{"d":"729,-1638r168,0r161,376r-116,0r-152,-260r-254,260r-116,0xm372,-273v-1,122,48,167,171,167v85,0,156,-31,213,-94v57,-63,97,-154,120,-273r115,-590r184,0r-186,957r174,0r-20,106r-358,0r36,-188v-48,71,-102,125,-163,162v-61,37,-128,55,-199,55v-188,-2,-279,-79,-280,-264v0,-45,6,-95,17,-152r110,-569r-166,0r21,-107r351,0r-120,619v-13,69,-20,126,-20,171","w":1319},"\u00fc":{"d":"518,-1534v49,-43,126,-51,164,0v62,85,-25,199,-122,199v-65,0,-107,-50,-93,-117v6,-32,24,-58,51,-82xm907,-1534v48,-42,126,-52,164,0v62,84,-25,199,-121,199v-66,0,-108,-49,-94,-117v6,-32,24,-58,51,-82xm372,-273v-1,122,48,167,171,167v85,0,156,-31,213,-94v57,-63,97,-154,120,-273r115,-590r184,0r-186,957r174,0r-20,106r-358,0r36,-188v-48,71,-102,125,-163,162v-61,37,-128,55,-199,55v-188,-2,-279,-79,-280,-264v0,-45,6,-95,17,-152r110,-569r-166,0r21,-107r351,0r-120,619v-13,69,-20,126,-20,171","w":1319},"\u00fd":{"d":"926,-1638r199,0r-414,376r-117,0xm58,221v-11,83,22,131,106,131v117,0,227,-51,329,-153r-251,-1155r-121,0r21,-107r275,0r236,1055v107,-161,174,-274,200,-340v84,-208,134,-407,151,-599r-121,0r21,-107r274,0v-66,381,-157,673,-273,874v-170,295,-326,484,-460,576v-81,56,-379,82,-521,28r40,-203r94,0","w":1157},"\u00fe":{"d":"1006,-712v2,-162,-68,-265,-219,-265v-93,0,-171,34,-233,101v-62,67,-105,165,-130,292v-14,73,-36,170,-36,247v0,157,74,251,226,251v94,0,171,-39,236,-113v85,-97,152,-317,156,-513xm649,29v-170,-1,-261,-66,-307,-195r-115,592r-184,0r365,-1876r-177,0r21,-106r361,0r-128,659v88,-119,193,-191,381,-195v219,-5,356,170,352,400v-5,246,-89,434,-219,566v-103,104,-219,155,-350,155","w":1311},"\u00ff":{"d":"514,-1534v49,-43,126,-51,164,0v62,85,-25,199,-122,199v-65,0,-107,-50,-93,-117v6,-32,24,-58,51,-82xm903,-1534v48,-42,126,-52,164,0v62,84,-25,199,-121,199v-66,0,-108,-49,-94,-117v6,-32,24,-58,51,-82xm58,221v-11,83,22,131,106,131v117,0,227,-51,329,-153r-251,-1155r-121,0r21,-107r275,0r236,1055v107,-161,174,-274,200,-340v84,-208,134,-407,151,-599r-121,0r21,-107r274,0v-66,381,-157,673,-273,874v-170,295,-326,484,-460,576v-81,56,-379,82,-521,28r40,-203r94,0","w":1157},"\u0152":{"d":"1012,-106r249,-1280r-187,0v-195,0,-354,55,-478,164v-124,109,-206,267,-247,472v-82,413,90,646,476,644r187,0xm2020,0r-1229,0v-257,0,-445,-66,-563,-198v-118,-132,-152,-316,-108,-552v84,-451,436,-743,961,-743r1212,0r-64,332r-123,0r40,-209r-686,0r-97,500r492,0r36,-187r121,0r-96,496r-121,0r36,-187r-492,0r-121,625r703,0r40,-209r123,0","w":2329},"\u0153":{"d":"526,-70v99,0,180,-39,246,-117v66,-78,114,-193,143,-345v29,-152,26,-266,-9,-344v-35,-78,-101,-117,-200,-117v-99,0,-180,39,-246,117v-66,78,-114,192,-143,344v-29,152,-26,267,9,345v35,78,102,117,200,117xm1626,-632v75,-44,112,-107,112,-190v0,-114,-76,-171,-227,-171v-89,0,-165,34,-227,102v-62,68,-112,194,-150,377v213,-10,377,-49,492,-118xm1094,-899v106,-117,270,-193,448,-193v261,0,391,92,391,277v0,135,-68,236,-205,302v-139,67,-344,102,-615,105v-3,25,-4,49,-4,72v0,169,85,267,251,266v77,0,135,-12,173,-35v68,-42,110,-90,126,-144r135,0v-27,85,-90,157,-189,216v-69,41,-173,62,-310,62v-155,0,-277,-74,-343,-194v-106,115,-271,194,-445,194v-256,0,-420,-159,-420,-414v0,-247,94,-426,235,-554v113,-102,248,-153,403,-153v175,0,302,69,369,193","w":2025},"\u0178":{"d":"242,0r20,-106r191,0r105,-537r-317,-743r-140,0r21,-107r555,0r-21,107r-174,0r256,604r490,-604r-168,0r21,-107r434,0r-21,107r-141,0r-589,724r-109,556r191,0r-20,106r-584,0xm651,-1849v48,-43,126,-51,164,0v64,85,-26,198,-121,198v-63,0,-108,-51,-93,-117v6,-31,23,-58,50,-81xm1040,-1849v48,-43,126,-51,164,0v63,85,-26,198,-120,198v-64,0,-109,-50,-94,-117v6,-31,23,-58,50,-81","w":1352},"\u02c6":{"d":"657,-1638r168,0r161,376r-116,0r-152,-260r-254,260r-116,0","w":1024},"\u02dc":{"d":"831,-1309v-92,1,-128,-65,-174,-116v-23,-26,-33,-39,-70,-39v-28,0,-53,13,-74,40v-21,26,-38,64,-51,115r-96,0v19,-90,50,-160,93,-209v57,-64,138,-93,224,-59v40,16,77,67,106,102v21,25,33,39,70,39v29,0,54,-13,75,-40v21,-27,38,-65,50,-115r96,0v-19,90,-50,160,-93,209v-43,49,-95,73,-156,73","w":1024},"\u2013":{"d":"103,-610r844,0r-26,133r-844,0","w":1024},"\u2014":{"d":"103,-610r1868,0r-26,133r-1868,0","w":2048},"\u2018":{"d":"583,-1440v-137,94,-198,226,-229,426r-194,0v52,-248,164,-390,360,-506","w":651},"\u2019":{"d":"111,-1067v138,-92,199,-227,231,-426r194,0v-51,248,-166,390,-362,506","w":651},"\u201a":{"d":"56,199v150,-94,231,-221,265,-426r197,0v-60,245,-192,392,-397,506","w":651},"\u201c":{"d":"978,-1440v-136,95,-197,226,-228,426r-195,0v53,-249,164,-389,360,-506xm583,-1440v-137,94,-198,226,-229,426r-194,0v52,-248,164,-390,360,-506","w":1047},"\u201d":{"d":"111,-1067v138,-92,199,-227,231,-426r194,0v-51,248,-166,390,-362,506xm509,-1067v136,-93,197,-227,228,-426r194,0v-52,249,-164,389,-359,506","w":1047},"\u201e":{"d":"56,199v150,-94,231,-221,265,-426r197,0v-60,245,-192,392,-397,506xm451,199v150,-94,232,-221,266,-426r196,0v-59,245,-191,393,-397,506","w":1061},"\u2022":{"d":"604,-465v-163,0,-297,-134,-297,-297v0,-162,136,-295,299,-295v161,0,295,134,295,295v0,163,-134,297,-297,297","w":1208},"\u2026":{"d":"1592,-10v-69,-97,32,-228,140,-228v71,0,121,60,107,134v-13,67,-83,134,-159,133v-38,0,-69,-12,-88,-39xm910,-10v-69,-97,32,-228,140,-228v71,0,121,60,107,134v-13,67,-83,134,-159,133v-38,0,-69,-12,-88,-39xm228,-10v-69,-97,32,-228,140,-228v71,0,121,60,107,134v-13,67,-83,134,-159,133v-38,0,-69,-12,-88,-39","w":2048},"\u2039":{"d":"716,-1059r-22,115r-364,344r230,344r-22,115r-388,-418r16,-82","w":819},"\u203a":{"d":"282,-1059r388,418r-16,82r-550,418r22,-115r363,-344r-229,-344","w":819},"\u20ac":{"d":"1069,-395v-55,137,-129,242,-220,315v-91,73,-195,109,-310,109v-126,0,-224,-51,-295,-152v-71,-101,-105,-240,-102,-416r-190,0r65,-104r135,0r16,-102r24,-105r-180,0r66,-104r145,0v65,-176,153,-314,263,-415v158,-144,329,-188,547,-120v62,20,130,54,204,100r-66,342r-106,0v10,-120,-4,-212,-43,-277v-39,-65,-99,-97,-180,-97v-91,0,-172,40,-242,119v-70,79,-127,195,-170,348r504,0r-68,104r-463,0r-24,105r-18,102r375,0r-67,104r-320,0v-15,153,-2,269,37,349v39,80,104,120,194,120v77,0,147,-28,208,-84v61,-56,110,-136,148,-241r133,0"},"\u2122":{"d":"1118,-1493r174,270r181,-270r219,0r0,66r-86,0r0,446r86,0r0,66r-285,0r0,-66r86,0r0,-426r-209,311r-43,0r-199,-311r0,426r84,0r0,66r-241,0r0,-66r86,0r0,-446r-86,0r0,-66r233,0xm242,-1493r557,0r0,170r-68,0r0,-104r-153,0r0,446r86,0r0,66r-287,0r0,-66r86,0r0,-446r-156,0r0,104r-65,0r0,-170","w":2048}}}); diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-Italic-webfont.eot b/assets/fonts/dejavu/serif/DejaVuSerif-Italic-webfont.eot new file mode 100644 index 0000000..bc8dc85 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerif-Italic-webfont.eot differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-Italic-webfont.svg b/assets/fonts/dejavu/serif/DejaVuSerif-Italic-webfont.svg new file mode 100644 index 0000000..3bbd7ed --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerif-Italic-webfont.svg @@ -0,0 +1,241 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved._DejaVu changes are in public domain_ +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-Italic-webfont.ttf b/assets/fonts/dejavu/serif/DejaVuSerif-Italic-webfont.ttf new file mode 100644 index 0000000..1a9bec4 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerif-Italic-webfont.ttf differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-Italic-webfont.woff b/assets/fonts/dejavu/serif/DejaVuSerif-Italic-webfont.woff new file mode 100644 index 0000000..ccc1954 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerif-Italic-webfont.woff differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-cufon.js b/assets/fonts/dejavu/serif/DejaVuSerif-cufon.js new file mode 100644 index 0000000..5eeaa6c --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerif-cufon.js @@ -0,0 +1,18 @@ +/*! + * The following copyright notice may not be removed under any circumstances. + * + * Copyright: + * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + * DejaVu changes are in public domain + * + * + * Manufacturer: + * DejaVu fonts team + * + * Vendor URL: + * http://dejavu.sourceforge.net + * + * License information: + * http://dejavu.sourceforge.net/wiki/index.php/License + */ +Cufon.registerFont({"w":1303,"face":{"font-family":"DejaVu Serif","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 6 6 3 5 6 5 2 2 4","ascent":"1556","descent":"-492","x-height":"29","bbox":"-197 -1901 2165 483","underline-thickness":"90","underline-position":"-85","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":651},"!":{"d":"412,29v-74,0,-133,-60,-133,-133v0,-73,59,-134,133,-134v72,0,133,62,133,134v0,71,-62,133,-133,133xm283,-1493r258,0r-68,821r0,252r-123,0r0,-252","w":823},"\"":{"d":"360,-1493r0,555r-159,0r0,-555r159,0xm741,-1493r0,555r-159,0r0,-555r159,0","w":942},"#":{"d":"1042,-901r-282,0r-84,334r285,0xm901,-1470r-102,415r282,0r103,-415r172,0r-105,415r308,0r0,154r-347,0r-82,334r314,0r0,153r-352,0r-103,414r-172,0r105,-414r-283,0r-104,414r-170,0r102,-414r-309,0r0,-153r348,0r82,-334r-316,0r0,-154r355,0r104,-415r170,0","w":1716},"$":{"d":"690,-68v138,-11,230,-76,232,-215v0,-57,-20,-106,-59,-146v-39,-40,-97,-70,-173,-91r0,452xm590,-1187v-127,7,-216,74,-217,200v0,53,18,98,53,133v35,35,89,64,164,86r0,-419xm590,31v-157,-5,-287,-46,-414,-103r0,-276r108,0v6,188,111,277,306,280r0,-485v-153,-43,-261,-91,-323,-147v-62,-56,-93,-130,-93,-222v2,-232,179,-355,416,-366r0,-268r100,0r0,268v144,12,266,47,377,98r0,262r-109,0v-15,-153,-111,-248,-268,-259r0,452v164,45,278,95,344,153v66,58,99,135,99,232v0,111,-39,199,-116,266v-77,67,-186,105,-327,115r0,270r-100,0r0,-270"},"%":{"d":"594,-1344v-65,-109,-208,-107,-272,0v-61,103,-62,360,0,463v66,108,207,110,272,1v61,-103,61,-361,0,-464xm1624,-610v-65,-110,-208,-109,-272,0v-61,103,-61,361,1,464v65,108,207,109,271,0v61,-104,61,-361,0,-464xm1143,-377v0,-234,124,-407,346,-407v220,-1,344,175,344,407v0,233,-124,406,-344,406v-222,1,-346,-173,-346,-406xm1364,-1520r152,0r-934,1549r-152,0xm113,-1114v0,-232,124,-406,344,-406v220,-1,346,173,346,406v0,235,-123,407,-346,407v-222,0,-344,-173,-344,-407","w":1946},"&":{"d":"350,-483v-5,219,181,395,402,391v152,-3,270,-58,354,-139r-582,-613v-99,90,-170,197,-174,361xm1518,-741v-25,187,-96,333,-199,452r172,183r235,0r0,106r-401,0r-137,-145v-126,105,-271,171,-481,174v-325,5,-561,-178,-560,-490v0,-89,26,-172,77,-249v51,-77,128,-149,231,-216v-58,-70,-99,-139,-99,-248v0,-225,185,-350,426,-346v127,3,239,33,361,68r0,258r-113,0v-17,-138,-101,-217,-252,-219v-129,-1,-232,79,-231,203v0,41,11,82,34,122v23,40,70,98,142,173r516,544v84,-98,142,-215,158,-370r-180,0r0,-107r473,0r0,107r-172,0","w":1823},"'":{"d":"360,-1493r0,555r-159,0r0,-555r159,0","w":563},"(":{"d":"653,319v-325,-145,-491,-466,-491,-937v0,-472,166,-793,491,-938r0,98v-103,71,-173,171,-221,298v-86,230,-86,852,0,1082v48,127,118,228,221,299r0,98","w":799},")":{"d":"145,-1556v326,145,492,466,492,938v0,472,-166,792,-492,937r0,-98v103,-71,173,-172,221,-299v87,-231,87,-852,0,-1082v-48,-127,-118,-227,-221,-298r0,-98","w":799},"*":{"d":"991,-1237r-391,182r391,185r-76,118r-348,-217r13,381r-136,0r13,-381r-348,217r-76,-118r391,-183r-391,-184r76,-119r348,217r-13,-381r136,0r-13,381r348,-217","w":1024},"+":{"d":"938,-1284r0,561r561,0r0,162r-561,0r0,561r-160,0r0,-561r-561,0r0,-162r561,0r0,-561r160,0","w":1716},",":{"d":"74,199v125,-92,187,-213,182,-426r197,0v-15,254,-121,396,-299,506","w":651},"-":{"d":"90,-627r512,0r0,156r-512,0r0,-156","w":692},".":{"d":"326,29v-74,0,-133,-60,-133,-133v0,-73,59,-134,133,-134v72,0,133,62,133,134v0,71,-62,133,-133,133","w":651},"\/":{"d":"530,-1493r160,0r-530,1683r-160,0","w":690},"0":{"d":"651,-70v102,0,178,-56,229,-168v51,-112,76,-281,76,-507v0,-227,-25,-396,-76,-508v-51,-112,-127,-168,-229,-168v-102,0,-178,56,-229,168v-51,112,-76,281,-76,508v0,226,25,395,76,507v51,112,127,168,229,168xm651,29v-162,0,-288,-68,-379,-204v-91,-136,-137,-326,-137,-570v0,-245,46,-435,137,-571v91,-136,217,-204,379,-204v163,0,289,68,380,204v91,136,136,326,136,571v0,244,-45,434,-136,570v-91,136,-217,204,-380,204"},"1":{"d":"291,0r0,-106r260,0r0,-1242r-301,195r0,-131r364,-236r138,0r0,1414r260,0r0,106r-721,0"},"2":{"d":"575,-1421v-197,1,-295,100,-313,284r-112,0r0,-266v123,-65,261,-115,428,-117v289,-4,503,147,503,420v0,146,-102,321,-306,524r-413,412r623,0r0,-184r117,0r0,348r-963,0r0,-109r453,-452v100,-100,171,-191,214,-275v43,-84,64,-172,64,-264v0,-194,-107,-322,-295,-321"},"3":{"d":"608,-1421v-182,0,-280,88,-297,254r-112,0r0,-263v132,-49,269,-90,426,-90v146,0,260,31,342,94v82,63,123,151,123,263v0,201,-141,312,-326,348v227,30,386,168,387,412v0,139,-47,247,-141,321v-94,74,-228,111,-404,111v-177,0,-318,-40,-450,-101r0,-290r112,0v13,193,134,292,342,292v202,0,330,-128,330,-331v0,-234,-124,-357,-358,-357r-95,0r0,-102v243,10,400,-66,400,-291v1,-176,-102,-271,-279,-270"},"4":{"d":"715,-506r0,-794r-510,794r510,0xm1155,0r-680,0r0,-106r240,0r0,-293r-652,0r0,-109r654,-1012r198,0r0,1014r285,0r0,107r-285,0r0,293r240,0r0,106"},"5":{"d":"606,-874v-134,0,-216,50,-280,131r-86,0r0,-750r790,0r0,164r-684,0r0,428v69,-48,161,-71,277,-72v315,-3,522,189,522,500v0,322,-209,506,-539,502v-166,-2,-303,-43,-432,-101r0,-290r113,0v11,187,122,293,319,292v225,-1,328,-162,328,-403v0,-241,-102,-401,-328,-401"},"6":{"d":"670,-70v94,0,166,-35,217,-104v51,-69,76,-168,76,-297v0,-129,-25,-228,-76,-297v-51,-69,-123,-104,-217,-104v-95,0,-168,33,-218,100v-50,67,-75,163,-75,289v0,133,25,235,76,306v51,71,123,107,217,107xm983,-1214v-15,-133,-105,-207,-252,-207v-129,0,-226,49,-289,147v-63,98,-96,249,-98,452v83,-91,187,-147,348,-149v298,-3,482,198,482,500v0,301,-208,500,-512,500v-169,0,-298,-63,-389,-189v-91,-126,-136,-305,-136,-538v0,-261,54,-464,161,-607v107,-143,259,-215,454,-215v125,1,239,25,344,60r0,246r-113,0"},"7":{"d":"1155,-1391r-584,1391r-149,0r557,-1329r-690,0r0,184r-117,0r0,-348r983,0r0,102"},"8":{"d":"651,-70v198,0,303,-133,303,-338v0,-204,-105,-337,-303,-337v-198,0,-303,133,-303,337v0,205,105,338,303,338xm651,-844v170,1,262,-114,262,-289v0,-174,-93,-288,-262,-288v-168,0,-262,114,-262,288v0,175,93,289,262,289xm1116,-1133v0,198,-129,307,-311,338v211,26,360,162,360,387v0,295,-203,437,-514,437v-310,0,-514,-142,-514,-437v0,-225,150,-362,361,-387v-183,-31,-312,-139,-312,-338v0,-253,196,-387,465,-387v269,0,465,133,465,387"},"9":{"d":"319,-279v16,132,105,209,252,209v129,0,226,-48,289,-146v63,-98,96,-249,98,-453v-82,92,-189,147,-350,149v-297,3,-479,-199,-479,-500v0,-301,208,-500,512,-500v169,0,299,62,389,188v90,126,135,306,135,539v0,261,-54,464,-161,607v-107,143,-258,215,-453,215v-125,-1,-239,-25,-344,-60r0,-248r112,0xm633,-1421v-95,0,-167,34,-217,103v-50,69,-76,169,-76,298v0,129,26,229,76,298v50,69,122,104,217,104v95,0,167,-33,217,-100v50,-67,76,-164,76,-290v0,-133,-25,-235,-76,-306v-51,-71,-123,-107,-217,-107"},":":{"d":"346,29v-74,0,-133,-60,-133,-133v0,-73,60,-134,133,-134v73,0,133,61,133,134v0,73,-59,133,-133,133xm346,-623v-73,0,-133,-60,-133,-133v0,-73,60,-133,133,-133v74,0,133,59,133,133v0,74,-59,133,-133,133","w":690},";":{"d":"74,199v125,-92,187,-213,182,-426r197,0v-15,254,-121,396,-299,506xm350,-623v-73,0,-133,-60,-133,-133v0,-73,60,-133,133,-133v72,0,133,61,133,133v0,73,-60,133,-133,133","w":690},"<":{"d":"1499,-1020r-1038,379r1038,377r0,170r-1282,-465r0,-166r1282,-465r0,170","w":1716},"=":{"d":"217,-926r1282,0r0,160r-1282,0r0,-160xm217,-518r1282,0r0,160r-1282,0r0,-160","w":1716},">":{"d":"217,-1020r0,-170r1282,465r0,166r-1282,465r0,-170r1038,-377","w":1716},"?":{"d":"494,29v-74,0,-134,-60,-134,-133v0,-73,60,-134,134,-134v72,0,133,62,133,134v0,71,-62,133,-133,133xm516,-1421v-164,1,-256,103,-280,254r-97,0r0,-260v118,-52,237,-90,381,-93v274,-4,478,139,479,396v0,124,-37,225,-111,304v-74,79,-184,135,-333,169r0,254r-123,0r0,-328v118,-29,206,-77,266,-144v60,-67,90,-153,90,-257v0,-176,-101,-296,-272,-295","w":1098},"@":{"d":"1583,170v-134,116,-309,186,-545,186v-272,0,-493,-110,-641,-256v-154,-153,-262,-360,-262,-643v0,-276,111,-487,262,-637v153,-152,381,-262,666,-262v312,0,542,133,686,322v89,117,152,263,154,452v3,361,-244,583,-608,582r-1,-162v-70,96,-153,160,-299,162v-241,3,-393,-200,-393,-451v0,-252,152,-453,393,-450v145,2,230,67,299,162r0,-142r156,0r0,772v218,-45,359,-218,358,-475v-1,-166,-55,-292,-135,-393v-127,-160,-325,-274,-590,-274v-137,0,-249,31,-352,77v-252,113,-426,369,-426,717v0,377,186,619,453,733v99,42,208,62,323,62v192,-1,333,-60,449,-152xm1038,-203v154,2,259,-123,256,-282r0,-105v3,-160,-103,-282,-258,-280v-176,2,-256,142,-256,333v0,193,81,332,258,334","w":2048},"A":{"d":"410,-541r548,0r-274,-710xm-12,0r0,-106r131,0r532,-1387r168,0r533,1387r147,0r0,106r-543,0r0,-106r166,0r-125,-328r-628,0r-125,328r164,0r0,106r-420,0","w":1479},"B":{"d":"1151,-432v0,-232,-109,-323,-346,-324r-299,0r0,650r299,0v237,-1,346,-93,346,-326xm1075,-1124v0,-196,-109,-261,-315,-262r-254,0r0,524r254,0v206,-1,315,-67,315,-262xm1305,-1124v0,193,-125,288,-312,309v127,16,223,56,289,121v66,65,98,153,98,262v0,148,-47,257,-140,327v-93,70,-239,105,-437,105r-690,0r0,-106r190,0r0,-1280r-190,0r0,-107r737,0v281,-1,455,105,455,369","w":1505},"C":{"d":"829,-78v240,0,372,-121,431,-317r184,0v-82,265,-281,424,-615,424v-216,0,-377,-80,-493,-197v-139,-139,-218,-315,-221,-577v-6,-449,290,-781,731,-775v209,3,381,58,557,129r0,344r-113,0v-48,-242,-181,-366,-461,-366v-159,0,-280,56,-362,169v-82,113,-123,280,-123,499v0,219,41,384,123,497v82,113,203,170,362,170","w":1567},"D":{"d":"1294,-748v0,-403,-206,-638,-602,-638r-186,0r0,1280r186,0v395,1,602,-240,602,-642xm1524,-748v0,480,-324,748,-817,748r-594,0r0,-106r190,0r0,-1280r-190,0r0,-107r594,0v495,-5,817,265,817,745","w":1642},"E":{"d":"113,0r0,-106r190,0r0,-1280r-190,0r0,-107r1202,0r0,332r-123,0r0,-209r-686,0r0,500r489,0r0,-187r123,0r0,496r-123,0r0,-187r-489,0r0,625r702,0r0,-209r123,0r0,332r-1218,0","w":1495},"F":{"d":"113,0r0,-106r190,0r0,-1280r-190,0r0,-107r1222,0r0,332r-123,0r0,-209r-706,0r0,500r510,0r0,-187r123,0r0,496r-123,0r0,-187r-510,0r0,642r239,0r0,106r-632,0","w":1421},"G":{"d":"868,-1520v211,3,380,52,555,119r0,354r-112,0v-45,-240,-179,-366,-455,-366v-172,0,-300,55,-385,166v-85,111,-127,278,-127,502v0,219,44,385,131,498v87,113,216,169,385,169v168,0,300,-44,412,-112r0,-385r-281,0r0,-107r484,0r0,557v-166,97,-365,152,-615,154v-450,4,-745,-318,-745,-774v0,-462,295,-780,753,-775","w":1636},"H":{"d":"113,0r0,-106r190,0r0,-1280r-190,0r0,-107r583,0r0,107r-190,0r0,516r774,0r0,-516r-190,0r0,-107r583,0r0,107r-190,0r0,1280r190,0r0,106r-583,0r0,-106r190,0r0,-642r-774,0r0,642r190,0r0,106r-583,0","w":1786},"I":{"d":"506,-106r190,0r0,106r-583,0r0,-106r190,0r0,-1280r-190,0r0,-107r583,0r0,107r-190,0r0,1280","w":809},"J":{"d":"119,426v-111,0,-207,-28,-291,-68r0,-235r114,0v4,126,55,195,179,196v79,0,135,-25,166,-75v31,-50,47,-148,47,-293r0,-1337r-232,0r0,-107r625,0r0,107r-190,0r0,1345v-2,319,-110,467,-418,467","w":821},"K":{"d":"113,0r0,-106r190,0r0,-1280r-190,0r0,-107r583,0r0,107r-190,0r0,565r643,-565r-162,0r0,-107r496,0r0,107r-168,0r-641,563r717,717r170,0r0,106r-347,0r-708,-709r0,603r190,0r0,106r-583,0","w":1530},"L":{"d":"113,0r0,-106r190,0r0,-1280r-190,0r0,-107r583,0r0,107r-190,0r0,1263r682,0r0,-250r123,0r0,373r-1198,0","w":1360},"M":{"d":"113,0r0,-106r190,0r0,-1280r-201,0r0,-107r435,0r524,1063r524,-1063r408,0r0,107r-199,0r0,1280r191,0r0,106r-584,0r0,-106r190,0r0,-1154r-512,1041r-141,0r-512,-1041r0,1154r190,0r0,106r-503,0","w":2097},"N":{"d":"100,0r0,-106r201,0r0,-1280r-201,0r0,-107r383,0r895,1178r0,-1071r-200,0r0,-107r524,0r0,107r-201,0r0,1415r-121,0r-956,-1258r0,1123r201,0r0,106r-525,0","w":1792},"O":{"d":"840,-78v163,0,287,-56,370,-168v83,-112,125,-279,125,-499v0,-221,-42,-387,-125,-499v-83,-112,-207,-169,-370,-169v-164,0,-288,57,-371,169v-83,112,-125,278,-125,499v0,220,42,387,125,499v83,112,207,168,371,168xm1119,-20v-164,66,-394,64,-559,-1v-179,-70,-322,-226,-390,-401v-71,-183,-71,-463,0,-646v68,-176,212,-334,390,-402v84,-33,177,-50,280,-50v217,0,392,71,525,213v133,142,200,329,200,562v0,259,-83,440,-222,577v-65,65,-140,115,-224,148","w":1679},"P":{"d":"1075,-1073v0,-202,-105,-313,-305,-313r-264,0r0,626r264,0v199,1,305,-113,305,-313xm1305,-1073v0,266,-206,420,-486,420r-313,0r0,547r231,0r0,106r-624,0r0,-106r190,0r0,-1280r-190,0r0,-107r706,0v281,-4,486,152,486,420","w":1378},"Q":{"d":"1350,328v-244,-13,-392,-123,-486,-299v-456,5,-754,-314,-749,-774v3,-262,82,-439,221,-578v120,-120,279,-197,504,-197v217,0,392,71,525,213v133,142,200,329,200,562v0,402,-225,688,-564,757v74,93,182,135,349,131r0,185xm840,-78v163,0,287,-56,370,-168v83,-112,125,-279,125,-499v0,-221,-42,-387,-125,-499v-83,-112,-207,-169,-370,-169v-164,0,-288,57,-371,169v-83,112,-125,278,-125,499v0,220,42,387,125,499v83,112,207,168,371,168","w":1679},"R":{"d":"1325,-1094v0,222,-133,327,-344,353v106,31,162,93,211,192r217,443r182,0r0,106r-352,0r-233,-475v-45,-92,-86,-152,-123,-179v-37,-27,-89,-40,-154,-40r-223,0r0,588r211,0r0,106r-604,0r0,-106r190,0r0,-1280r-190,0r0,-107r757,0v276,-2,455,134,455,399xm1096,-1094v0,-201,-94,-291,-295,-292r-295,0r0,585r295,0v201,-1,295,-92,295,-293","w":1542},"S":{"d":"700,29v-192,0,-356,-41,-510,-101r0,-340r115,1v8,234,135,333,383,333v119,0,210,-23,272,-70v62,-47,93,-116,93,-206v0,-72,-21,-126,-57,-166v-60,-67,-302,-132,-435,-172v-143,-43,-243,-97,-301,-162v-58,-65,-88,-153,-88,-266v0,-127,45,-225,135,-295v90,-70,216,-105,379,-105v175,0,337,41,492,88r0,318r-113,0v-25,-215,-135,-298,-375,-299v-193,-1,-323,73,-323,252v0,71,21,127,62,168v41,41,129,81,263,121r185,55v135,41,231,92,289,155v58,63,87,148,87,254v0,145,-46,254,-139,327v-93,73,-231,110,-414,110","w":1403},"T":{"d":"391,0r0,-106r191,0r0,-1268r-439,0r0,233r-123,0r0,-352r1326,0r0,352r-123,0r0,-233r-439,0r0,1268r191,0r0,106r-584,0","w":1366},"U":{"d":"868,29v-434,0,-581,-178,-581,-623r0,-792r-191,0r0,-107r584,0r0,107r-191,0r0,772v0,191,31,324,93,399v62,75,170,113,323,113v153,0,261,-38,323,-113v62,-75,93,-208,93,-399r0,-772r-191,0r0,-107r504,0r0,107r-190,0r0,792v-4,447,-140,623,-576,623","w":1726},"V":{"d":"358,-1386r441,1146r440,-1146r-168,0r0,-107r438,0r0,107r-145,0r-533,1386r-172,0r-530,-1386r-149,0r0,-107r544,0r0,107r-166,0","w":1479},"W":{"d":"1561,0r-164,0r-342,-1214r-342,1214r-164,0r-391,-1386r-148,0r0,-107r545,0r0,107r-186,0r311,1103r340,-1210r162,0r346,1223r313,-1116r-172,0r0,-107r430,0r0,107r-147,0","w":2105},"X":{"d":"678,-639r-365,533r193,0r0,106r-494,0r0,-106r172,0r430,-627r-436,-653r-160,0r0,-107r592,0r0,107r-176,0r320,481r329,-481r-192,0r0,-107r489,0r0,107r-168,0r-395,575r471,705r160,0r0,106r-592,0r0,-106r178,0","w":1458},"Y":{"d":"387,0r0,-106r191,0r0,-537r-461,-743r-140,0r0,-107r555,0r0,107r-174,0r373,604r373,-604r-168,0r0,-107r434,0r0,107r-141,0r-449,724r0,556r191,0r0,106r-584,0","w":1352},"Z":{"d":"92,0r0,-72r930,-1298r-772,0r0,223r-123,0r0,-346r1180,0r0,72r-930,1298r844,0r0,-209r122,0r0,332r-1251,0","w":1423},"[":{"d":"176,-1556r465,0r0,106r-274,0r0,1614r274,0r0,106r-465,0r0,-1826","w":799},"\\":{"d":"160,-1493r530,1683r-160,0r-530,-1683r160,0","w":690},"]":{"d":"623,-1556r0,1826r-465,0r0,-106r274,0r0,-1614r-274,0r0,-106r465,0","w":799},"^":{"d":"956,-1493r543,557r-153,0r-488,-381r-487,381r-154,0r543,-557r196,0","w":1716},"_":{"d":"1024,403r0,80r-1024,0r0,-80r1024,0","w":1024},"`":{"d":"367,-1636r260,376r-117,0r-340,-376r197,0","w":1024},"a":{"d":"559,-78v151,0,256,-106,256,-256r0,-225r-237,0v-176,0,-270,70,-271,240v-1,149,101,241,252,241xm547,-1092v288,-2,452,145,452,428r0,558r164,0r0,106r-348,0r0,-115v-76,92,-171,143,-328,144v-225,3,-386,-130,-385,-348v0,-110,40,-195,119,-256v79,-61,191,-91,336,-91r258,0r0,-73v0,-166,-110,-254,-280,-254v-148,0,-235,69,-256,198r-95,0r0,-215v111,-47,224,-81,363,-82","w":1221},"b":{"d":"764,29v-179,0,-277,-71,-344,-195r0,166r-361,0r0,-106r177,0r0,-1344r-177,0r0,-106r361,0r0,659v68,-124,165,-195,344,-195v131,0,237,52,320,155v83,103,124,238,124,405v0,167,-41,302,-124,406v-83,104,-189,155,-320,155xm420,-479v0,128,25,226,74,293v49,67,120,100,213,100v94,0,165,-38,213,-113v48,-75,73,-186,73,-333v0,-147,-25,-258,-73,-333v-48,-75,-119,-112,-213,-112v-93,0,-164,34,-213,101v-49,67,-74,165,-74,292r0,105","w":1311},"c":{"d":"618,-70v173,0,255,-95,287,-249r148,0v-48,213,-188,346,-437,348v-314,2,-514,-237,-514,-561v0,-325,199,-563,514,-560v157,1,284,39,402,95r0,272r-107,0v-27,-175,-104,-268,-293,-268v-99,0,-174,38,-225,115v-51,77,-76,193,-76,346v0,153,25,269,75,346v50,77,126,116,226,116","w":1147},"d":{"d":"547,-1092v179,0,277,71,344,195r0,-553r-174,0r0,-106r358,0r0,1450r176,0r0,106r-360,0r0,-166v-68,124,-165,195,-344,195v-131,0,-238,-51,-321,-155v-83,-104,-124,-239,-124,-406v0,-167,41,-302,124,-405v83,-103,190,-155,321,-155xm891,-479r0,-105v0,-127,-24,-225,-73,-292v-49,-67,-121,-101,-214,-101v-95,0,-166,37,-214,112v-48,75,-73,186,-73,333v0,147,25,258,73,333v48,75,119,113,214,113v93,0,165,-33,214,-100v49,-67,73,-165,73,-293","w":1311},"e":{"d":"102,-532v0,-319,196,-562,504,-560v340,2,500,227,504,580r-793,0v-1,146,26,258,81,332v54,73,134,110,239,110v176,0,270,-99,307,-252r148,0v-56,223,-205,349,-474,351v-315,2,-516,-237,-516,-561xm893,-618v-4,-124,-31,-217,-79,-280v-48,-63,-117,-95,-208,-95v-85,0,-151,32,-200,95v-49,63,-78,157,-89,280r576,0","w":1212},"f":{"d":"614,-1556v101,1,188,19,267,49r0,202r-97,0v-1,-101,-59,-155,-163,-153v-157,3,-184,83,-187,258r0,137r297,0r0,107r-297,0r0,850r236,0r0,106r-596,0r0,-106r176,0r0,-850r-176,0r0,-107r176,0r0,-133v0,-237,126,-360,364,-360","w":758},"g":{"d":"547,-1092v179,0,277,71,344,195r0,-166r360,0r0,107r-176,0r0,933v1,305,-178,480,-485,478v-150,0,-275,-28,-385,-76r0,-223r96,0v25,141,111,200,277,200v232,0,312,-133,313,-379r0,-143v-68,124,-165,195,-344,195v-131,0,-238,-51,-321,-155v-83,-104,-124,-239,-124,-406v0,-167,41,-302,124,-405v83,-103,190,-155,321,-155xm891,-584v0,-127,-24,-225,-73,-292v-49,-67,-121,-101,-214,-101v-95,0,-166,37,-214,112v-48,75,-73,186,-73,333v0,147,25,258,73,333v48,75,119,113,214,113v93,0,165,-33,214,-100v49,-67,73,-165,73,-293r0,-105","w":1311},"h":{"d":"756,-1092v252,0,341,148,342,416r0,570r164,0r0,106r-508,0r0,-106r159,0r0,-512v0,-130,-15,-218,-47,-266v-32,-48,-89,-72,-170,-72v-85,0,-150,31,-195,93v-45,62,-67,152,-67,271r0,486r160,0r0,106r-510,0r0,-106r166,0r0,-1344r-176,0r0,-106r360,0r0,682v60,-127,156,-218,322,-218","w":1319},"i":{"d":"313,-1280v-61,0,-114,-52,-114,-113v0,-60,54,-114,114,-114v60,0,113,55,113,114v0,61,-52,113,-113,113xm434,-106r174,0r0,106r-534,0r0,-106r176,0r0,-850r-176,0r0,-107r360,0r0,957","w":655},"j":{"d":"319,-1280v-61,0,-114,-52,-114,-113v0,-60,54,-114,114,-114v60,0,113,55,113,114v0,61,-51,113,-113,113xm72,356v137,0,178,-99,178,-252r0,-1060r-174,0r0,-107r358,0r0,1167v2,220,-143,353,-366,351v-107,-1,-190,-26,-265,-66r0,-219r95,0v9,119,55,186,174,186","w":635},"k":{"d":"586,0r-516,0r0,-106r166,0r0,-1344r-177,0r0,-106r361,0r0,1013r448,-413r-153,0r0,-107r481,0r0,107r-182,0r-316,292r404,558r153,0r0,106r-524,0r0,-106r152,0r-318,-437r-145,135r0,302r166,0r0,106","w":1241},"l":{"d":"420,-106r174,0r0,106r-535,0r0,-106r177,0r0,-1344r-177,0r0,-106r361,0r0,1450","w":655},"m":{"d":"743,-1092v172,-2,284,93,318,236v35,-78,80,-136,135,-176v55,-40,120,-60,193,-60v241,3,331,158,331,416r0,570r166,0r0,106r-510,0r0,-106r160,0r0,-549v0,-109,-16,-186,-48,-232v-32,-46,-85,-69,-159,-69v-82,0,-144,31,-187,93v-43,62,-65,152,-65,271r0,486r160,0r0,106r-504,0r0,-106r160,0r0,-556v0,-106,-16,-181,-48,-226v-32,-45,-85,-68,-159,-68v-82,0,-145,31,-188,93v-43,62,-64,152,-64,271r0,486r160,0r0,106r-510,0r0,-106r166,0r0,-852r-176,0r0,-105r360,0r0,189v58,-122,151,-216,309,-218","w":1942},"n":{"d":"756,-1092v252,0,341,148,342,416r0,570r164,0r0,106r-508,0r0,-106r159,0r0,-512v0,-130,-16,-220,-48,-268v-32,-48,-88,-72,-169,-72v-85,0,-150,32,-195,94v-45,62,-67,153,-67,272r0,486r160,0r0,106r-510,0r0,-106r166,0r0,-850r-176,0r0,-107r360,0r0,189v60,-127,156,-218,322,-218","w":1319},"o":{"d":"616,-70v99,0,174,-39,224,-117v50,-78,75,-193,75,-345v0,-152,-25,-266,-75,-344v-50,-78,-125,-117,-224,-117v-99,0,-174,39,-224,117v-50,78,-75,192,-75,344v0,152,25,267,76,345v51,78,125,117,223,117xm1130,-532v0,325,-198,561,-514,561v-314,0,-514,-237,-514,-561v0,-325,198,-560,514,-560v316,0,514,236,514,560","w":1233},"p":{"d":"420,-584r0,105v0,128,25,226,74,293v49,67,120,100,213,100v94,0,165,-38,213,-113v48,-75,73,-186,73,-333v0,-147,-25,-258,-73,-333v-48,-75,-119,-112,-213,-112v-93,0,-164,34,-213,101v-49,67,-74,165,-74,292xm764,29v-179,0,-277,-71,-344,-195r0,485r174,0r0,107r-535,0r0,-107r177,0r0,-1275r-177,0r0,-107r361,0r0,166v68,-124,165,-195,344,-195v131,0,237,52,320,155v83,103,124,238,124,405v0,167,-41,302,-124,406v-83,104,-189,155,-320,155","w":1311},"q":{"d":"547,-1092v179,0,277,71,344,195r0,-166r360,0r0,107r-176,0r0,1275r176,0r0,107r-534,0r0,-107r174,0r0,-485v-68,124,-165,195,-344,195v-131,0,-238,-51,-321,-155v-83,-104,-124,-239,-124,-406v0,-167,41,-302,124,-405v83,-103,190,-155,321,-155xm891,-584v0,-127,-24,-225,-73,-292v-49,-67,-121,-101,-214,-101v-95,0,-166,37,-214,112v-48,75,-73,186,-73,333v0,147,25,258,73,333v48,75,119,113,214,113v93,0,165,-33,214,-100v49,-67,73,-165,73,-293r0,-105","w":1311},"r":{"d":"780,-1092v71,0,135,12,199,27r0,266r-106,0v-6,-101,-54,-157,-158,-157v-197,0,-281,150,-281,364r0,486r213,0r0,106r-563,0r0,-106r166,0r0,-852r-176,0r0,-105r360,0r0,189v66,-134,163,-218,346,-218","w":979},"s":{"d":"512,29v-156,-1,-280,-35,-397,-88r0,-248r106,0v6,165,106,237,283,237v148,1,254,-49,254,-182v0,-47,-18,-83,-48,-113v-45,-45,-233,-103,-333,-137v-91,-30,-158,-66,-199,-110v-41,-44,-61,-100,-61,-168v2,-211,174,-315,403,-312v138,2,258,39,369,86r0,232r-106,0v-5,-140,-107,-220,-257,-219v-138,1,-235,40,-235,164v0,45,16,79,45,107v48,47,227,97,326,128v101,31,174,71,218,118v44,47,66,107,66,181v0,101,-39,179,-116,237v-77,58,-183,87,-318,87","w":1051},"t":{"d":"512,29v-219,0,-291,-87,-291,-310r0,-675r-162,0r0,-107r162,0r0,-330r185,0r0,330r346,0r0,107r-346,0r0,675v0,90,9,148,26,173v17,25,49,38,96,38v107,0,137,-65,140,-180r139,0v-11,191,-97,279,-295,279","w":823},"u":{"d":"565,29v-253,0,-344,-147,-344,-416r0,-569r-166,0r0,-107r351,0r0,619v0,129,16,218,48,266v32,48,88,72,169,72v85,0,150,-31,195,-94v45,-63,67,-154,67,-273r0,-483r-160,0r0,-107r344,0r0,957r174,0r0,106r-358,0r0,-188v-60,124,-155,217,-320,217","w":1319},"v":{"d":"506,0r-391,-956r-121,0r0,-107r489,0r0,107r-170,0r299,731r299,-731r-159,0r0,-107r399,0r0,107r-119,0r-391,956r-135,0","w":1157},"w":{"d":"983,-1063r272,830r240,-723r-154,0r0,-107r385,0r0,107r-118,0r-316,956r-153,0r-262,-795r-263,795r-147,0r-315,-956r-119,0r0,-107r481,0r0,107r-172,0r238,723r274,-830r129,0","w":1753},"x":{"d":"596,-649r223,-307r-143,0r0,-107r409,0r0,107r-141,0r-285,393r332,457r139,0r0,106r-491,0r0,-106r135,0r-231,-318r-232,318r138,0r0,106r-404,0r0,-106r141,0r293,-404r-323,-446r-131,0r0,-107r475,0r0,107r-127,0","w":1155},"y":{"d":"160,221v8,85,36,125,123,127v37,0,67,-9,89,-30v56,-54,101,-211,140,-300r-397,-974r-121,0r0,-107r489,0r0,107r-170,0r299,731r299,-731r-159,0r0,-107r399,0r0,107r-119,0r-487,1196v-33,83,-71,139,-111,170v-81,64,-261,50,-368,14r0,-203r94,0","w":1157},"z":{"d":"82,0r0,-86r666,-870r-527,0r0,184r-106,0r0,-291r870,0r0,86r-666,871r578,0r0,-193r107,0r0,299r-922,0","w":1079},"{":{"d":"752,0v5,193,34,224,227,229r68,0r0,105r-62,0v-166,0,-277,-25,-333,-74v-56,-49,-85,-148,-85,-295r0,-258v-3,-199,-54,-263,-250,-266r-61,0r0,-105r61,0v196,-3,250,-67,250,-266r0,-258v0,-147,29,-245,85,-294v56,-49,167,-74,333,-74r62,0r0,104r-68,0v-193,5,-227,36,-227,229r0,287v-3,216,-55,280,-230,324v175,50,230,106,230,325r0,287"},"|":{"d":"426,-1565r0,2048r-162,0r0,-2048r162,0","w":690},"}":{"d":"985,-559v-196,3,-250,67,-250,266r0,258v0,147,-27,246,-83,295v-56,49,-167,74,-333,74r-63,0r0,-105r70,0v192,-5,225,-36,225,-229r0,-287v3,-218,55,-275,229,-325v-175,-44,-229,-108,-229,-324r0,-287v-5,-193,-32,-224,-225,-229r-70,0r0,-104r63,0v166,0,277,25,333,74v56,49,83,147,83,294r0,258v3,199,54,263,250,266r62,0r0,105r-62,0"},"~":{"d":"1143,-657v154,0,258,-66,356,-150r0,148v-67,59,-130,102,-190,130v-60,28,-121,42,-183,42v-65,0,-211,-42,-313,-83v-97,-39,-179,-57,-242,-57v-156,0,-254,65,-354,150r0,-152v67,-58,129,-100,189,-127v60,-27,121,-41,184,-41v65,0,209,41,311,82v96,39,177,58,242,58","w":1716},"\u00a0":{"w":651},"\u00a1":{"d":"412,-1255v-74,0,-133,-61,-133,-134v0,-73,59,-133,133,-133v71,0,133,62,133,133v0,72,-61,134,-133,134xm283,0r67,-821r0,-252r123,0r0,252r68,821r-258,0","w":823},"\u00a2":{"d":"629,-991v-86,10,-147,55,-193,130v-84,138,-83,522,0,659v46,75,107,120,193,130r0,-919xm729,-72v130,-19,202,-115,227,-247r148,0v-45,198,-165,319,-375,346r0,270r-100,0r0,-270v-291,-22,-475,-243,-475,-559v0,-317,183,-538,475,-558r0,-266r100,0r0,266v131,12,240,44,340,93r0,272r-106,0v-24,-152,-88,-246,-234,-266r0,919"},"\u00a3":{"d":"780,-1520v120,0,228,18,322,50r0,245r-105,0v-12,-122,-88,-196,-219,-196v-186,0,-248,118,-248,319r0,295r412,0r0,107r-412,0r0,579r478,0r0,-227r116,0r0,348r-987,0r0,-106r193,0r0,-594r-193,0r0,-107r193,0r0,-295v0,-280,164,-419,450,-418"},"\u00a4":{"d":"653,-1067v105,0,178,33,248,82r209,-207r94,94r-209,209v50,70,84,142,84,248v0,108,-33,177,-86,244r207,207r-96,94r-207,-205v-67,52,-137,86,-244,86v-103,0,-180,-35,-250,-82r-204,205r-95,-94r205,-207v-47,-72,-82,-144,-82,-248v0,-108,34,-178,86,-246r-207,-207r95,-94r207,207v67,-52,138,-86,245,-86xm653,-373v147,0,269,-123,269,-270v0,-147,-122,-266,-269,-266v-146,0,-268,120,-268,266v0,148,121,270,268,270"},"\u00a5":{"d":"360,0r0,-106r191,0r0,-367r-404,0r0,-105r404,0r0,-65r-82,-141r-322,0r0,-105r263,0r-287,-497r-139,0r0,-107r553,0r0,107r-175,0r343,604r339,-604r-167,0r0,-107r432,0r0,107r-142,0r-284,497r272,0r0,105r-332,0r-71,122r0,84r403,0r0,105r-403,0r0,367r190,0r0,106r-582,0"},"\u00a6":{"d":"426,-408r0,758r-162,0r0,-758r162,0xm426,-1432r0,758r-162,0r0,-758r162,0","w":690},"\u00a7":{"d":"651,-401v65,-43,117,-98,117,-191v0,-50,-24,-97,-70,-142v-46,-45,-152,-112,-319,-202v-45,31,-77,60,-95,88v-18,28,-28,59,-28,94v0,88,121,200,363,335xm524,-1520v116,2,214,22,305,56r0,202r-92,0v-3,-101,-85,-155,-194,-155v-124,0,-215,63,-215,180v0,65,82,143,246,234r38,22v130,73,215,135,258,184v77,88,85,243,10,332v-35,42,-91,78,-167,107v94,58,151,126,151,264v0,190,-169,292,-377,289v-128,-2,-230,-19,-327,-56r0,-209r92,1v5,117,87,161,217,161v128,0,225,-63,225,-182v0,-75,-76,-155,-228,-240v-133,-73,-274,-167,-311,-215v-40,-51,-63,-108,-63,-174v0,-144,101,-223,227,-258v-93,-56,-161,-126,-161,-254v0,-186,165,-292,366,-289","w":1024},"\u00a8":{"d":"201,-1452v0,-62,55,-117,116,-117v62,0,117,55,117,117v0,67,-50,117,-117,117v-66,0,-116,-51,-116,-117xm590,-1452v0,-62,55,-117,117,-117v61,0,116,55,116,117v0,66,-50,117,-116,117v-67,0,-117,-50,-117,-117","w":1024},"\u00a9":{"d":"1026,-379v140,-2,205,-71,231,-194r119,0v-33,168,-154,271,-350,272v-252,1,-410,-183,-410,-440v0,-257,160,-445,410,-443v129,2,221,31,322,76r0,213r-84,0v-22,-137,-86,-209,-236,-211v-79,0,-137,33,-180,92v-78,107,-78,437,0,544v43,59,99,91,178,91xm740,-1430v172,-72,396,-72,568,0v171,72,332,232,403,404v70,171,71,397,0,568v-71,171,-232,332,-403,403v-172,72,-396,72,-568,0v-171,-72,-332,-232,-403,-403v-71,-171,-70,-397,0,-568v71,-172,232,-332,403,-404xm1270,-1335v-148,-61,-342,-62,-490,0v-148,62,-286,199,-348,349v-62,149,-62,339,0,488v62,148,200,286,348,348v148,62,342,62,490,0v148,-62,285,-198,346,-347v61,-149,61,-343,0,-491v-62,-149,-198,-286,-346,-347","w":2048},"\u00aa":{"d":"477,-1520v221,-1,361,92,361,301r0,379r80,0r0,84r-228,0r0,-80v-62,65,-137,98,-260,99v-172,2,-304,-82,-305,-242v0,-76,32,-135,95,-178v63,-43,152,-64,265,-64r205,0r0,-45v-1,-120,-92,-178,-221,-178v-114,0,-184,46,-203,139r-76,0r0,-157v88,-33,180,-57,287,-58xm487,-821v115,0,203,-67,203,-176r0,-148r-188,0v-127,0,-213,43,-213,158v0,115,77,166,198,166xm166,-639r698,0r0,104r-698,0r0,-104","w":973},"\u00ab":{"d":"1061,-1059r0,115r-297,344r297,344r0,115r-469,-418r0,-82xm627,-1059r0,115r-297,344r297,344r0,115r-469,-418r0,-82","w":1253},"\u00ac":{"d":"217,-862r1282,0r0,575r-160,0r0,-413r-1122,0r0,-162","w":1716},"\u00ad":{"d":"90,-627r512,0r0,156r-512,0r0,-156","w":692},"\u00ae":{"d":"1186,-942v0,-102,-61,-150,-166,-150r-125,0r0,301r125,0v107,0,166,-47,166,-151xm1335,-938v0,122,-74,172,-194,184v58,19,95,53,121,105r116,229r76,0r0,68r-190,0r-131,-254v-23,-47,-46,-77,-66,-94v-37,-31,-107,-22,-172,-23r0,303r84,0r0,68r-317,0r0,-68r83,0r0,-672r-83,0r0,-67r415,0v161,-1,258,67,258,221xm1270,-1335v-148,-61,-342,-62,-490,0v-148,62,-286,199,-348,349v-62,149,-62,339,0,488v62,148,200,286,348,348v148,62,342,62,490,0v148,-62,285,-198,346,-347v61,-149,61,-343,0,-491v-62,-149,-198,-286,-346,-347xm740,-1430v172,-72,396,-72,568,0v171,72,332,232,403,404v70,171,71,397,0,568v-71,171,-232,332,-403,403v-172,72,-396,72,-568,0v-171,-72,-332,-232,-403,-403v-71,-171,-70,-397,0,-568v71,-172,232,-332,403,-404","w":2048},"\u00af":{"d":"213,-1526r598,0r0,148r-598,0r0,-148","w":1024},"\u00b0":{"d":"692,-1200v0,-97,-84,-182,-180,-182v-99,0,-180,82,-180,182v0,100,80,178,180,178v98,0,180,-80,180,-178xm195,-1200v0,-215,219,-388,440,-296v77,32,140,98,171,173v15,38,23,79,23,123v0,172,-146,315,-319,315v-176,0,-315,-139,-315,-315","w":1024},"\u00b1":{"d":"938,-1284r0,391r561,0r0,162r-561,0r0,391r-160,0r0,-391r-561,0r0,-162r561,0r0,-391r160,0xm217,-160r1282,0r0,160r-1282,0r0,-160","w":1716},"\u00b2":{"d":"354,-1446v-107,0,-169,55,-184,150r-70,0r0,-158v78,-38,169,-64,275,-66v165,-3,308,85,309,236v0,81,-65,180,-194,296r-257,232r385,0r0,-108r74,0r0,196r-602,0r0,-75r285,-254v57,-51,98,-97,123,-138v25,-41,37,-83,37,-127v1,-112,-70,-185,-181,-184","w":821},"\u00b3":{"d":"371,-1446v-105,0,-165,38,-176,129r-70,0r0,-151v83,-29,168,-52,266,-52v92,0,163,18,213,54v50,36,74,87,74,153v0,111,-93,171,-201,189v144,19,240,87,240,235v0,76,-29,134,-87,175v-58,41,-142,61,-251,61v-107,-1,-197,-22,-279,-56r0,-170r70,1v8,104,79,151,195,151v119,0,196,-56,196,-170v0,-127,-72,-188,-203,-188r-53,0r0,-74v130,5,222,-30,223,-148v0,-93,-60,-140,-157,-139","w":821},"\u00b4":{"d":"651,-1638r199,0r-340,376r-117,0","w":1024},"\u00b5":{"d":"610,29v-84,-1,-143,-28,-190,-72r0,362r174,0r0,107r-535,0r0,-107r177,0r0,-1275r-166,0r0,-107r350,0r0,619v0,129,16,218,48,266v32,48,88,72,169,72v85,0,150,-31,195,-94v45,-63,67,-154,67,-273r0,-483r-160,0r0,-107r344,0r0,959r174,0r0,104r-358,0r0,-188v-35,71,-76,125,-125,162v-49,37,-104,55,-164,55","w":1331},"\u00b6":{"d":"158,-1071v-2,-260,204,-422,475,-422r538,0r0,107r-118,0r0,1583r-107,0r0,-1583r-231,0r0,1583r-107,0r0,-846v-143,-11,-254,-53,-332,-127v-78,-74,-118,-172,-118,-295"},"\u00b7":{"d":"324,-578v-74,0,-134,-59,-134,-133v0,-73,60,-133,134,-133v71,0,133,62,133,133v0,72,-61,133,-133,133","w":651},"\u00b8":{"d":"446,274v70,1,122,-34,123,-98v0,-19,-7,-43,-22,-72v-15,-29,-37,-64,-66,-104r97,0v43,43,75,83,96,120v21,37,31,72,31,105v-2,120,-105,171,-238,170v-64,0,-121,-10,-176,-24r0,-131v46,19,97,33,155,34","w":1024},"\u00b9":{"d":"176,-668r0,-84r172,0r0,-634r-201,106r0,-94r240,-129r102,0r0,751r173,0r0,84r-486,0","w":821},"\u00ba":{"d":"481,-813v71,0,121,-28,159,-79v69,-95,70,-378,0,-472v-38,-52,-89,-80,-159,-80v-69,0,-121,29,-159,81v-70,96,-70,375,0,470v38,52,89,80,159,80xm868,-1128v0,232,-155,391,-387,391v-231,0,-387,-160,-387,-391v0,-232,156,-392,387,-392v231,0,387,160,387,392xm137,-639r688,0r0,104r-688,0r0,-104","w":963},"\u00bb":{"d":"627,-1059r469,418r0,82r-469,418r0,-115r297,-344r-297,-344r0,-115xm193,-1059r469,418r0,82r-469,418r0,-115r296,-344r-296,-344r0,-115","w":1253},"\u00bc":{"d":"176,-668r0,-84r172,0r0,-634r-201,106r0,-94r240,-129r102,0r0,751r173,0r0,84r-486,0xm1614,-303r0,-407r-308,407r308,0xm1902,0r-434,0r0,-84r146,0r0,-137r-398,0r0,-84r400,-530r141,0r0,532r164,0r0,82r-164,0r0,137r145,0r0,84xm1388,-1520r150,0r-942,1549r-150,0","w":1985},"\u00bd":{"d":"1517,-778v-107,0,-169,55,-184,150r-70,0r0,-158v78,-38,169,-64,275,-66v165,-3,308,85,309,236v0,81,-65,180,-194,296r-257,232r385,0r0,-108r74,0r0,196r-602,0r0,-75r285,-254v57,-51,98,-97,123,-138v25,-41,37,-83,37,-127v1,-112,-70,-185,-181,-184xm176,-668r0,-84r172,0r0,-634r-201,106r0,-94r240,-129r102,0r0,751r173,0r0,84r-486,0xm1388,-1520r150,0r-942,1549r-150,0","w":1985},"\u00be":{"d":"371,-1446v-105,0,-165,38,-176,129r-70,0r0,-151v83,-29,168,-52,266,-52v92,0,163,18,213,54v50,36,74,87,74,153v0,111,-93,171,-201,189v144,19,240,87,240,235v0,76,-29,134,-87,175v-58,41,-142,61,-251,61v-107,-1,-197,-22,-279,-56r0,-170r70,1v8,104,79,151,195,151v119,0,196,-56,196,-170v0,-127,-72,-188,-203,-188r-53,0r0,-74v130,5,222,-30,223,-148v0,-93,-60,-140,-157,-139xm1614,-303r0,-407r-308,407r308,0xm1902,0r-434,0r0,-84r146,0r0,-137r-398,0r0,-84r400,-530r141,0r0,532r164,0r0,82r-164,0r0,137r145,0r0,84xm1388,-1520r150,0r-942,1549r-150,0","w":1985},"\u00bf":{"d":"645,-1522v74,0,133,60,133,133v0,73,-60,134,-133,134v-72,0,-133,-62,-133,-134v0,-71,62,-133,133,-133xm623,-72v163,-1,256,-104,280,-254r96,0r0,260v-118,52,-236,90,-381,93v-273,4,-479,-139,-479,-396v0,-124,37,-225,111,-304v74,-79,185,-135,334,-169r0,-254r123,0r0,328v-118,29,-207,77,-267,144v-60,67,-90,153,-90,257v0,176,102,296,273,295","w":1098},"\u00c0":{"d":"410,-541r548,0r-274,-710xm-12,0r0,-106r131,0r532,-1387r168,0r533,1387r147,0r0,106r-543,0r0,-106r166,0r-125,-328r-628,0r-125,328r164,0r0,106r-420,0xm669,-1899r183,264r-117,0r-262,-264r196,0","w":1479},"\u00c1":{"d":"410,-541r548,0r-274,-710xm-12,0r0,-106r131,0r532,-1387r168,0r533,1387r147,0r0,106r-543,0r0,-106r166,0r-125,-328r-628,0r-125,328r164,0r0,106r-420,0xm802,-1899r197,0r-262,264r-117,0","w":1479},"\u00c2":{"d":"410,-541r548,0r-274,-710xm-12,0r0,-106r131,0r532,-1387r168,0r533,1387r147,0r0,106r-543,0r0,-106r166,0r-125,-328r-628,0r-125,328r164,0r0,106r-420,0xm651,-1899r176,0r231,264r-116,0r-203,-161r-203,161r-116,0","w":1479},"\u00c3":{"d":"410,-541r548,0r-274,-710xm-12,0r0,-106r131,0r532,-1387r168,0r533,1387r147,0r0,106r-543,0r0,-106r166,0r-125,-328r-628,0r-125,328r164,0r0,106r-420,0xm1069,-1886v0,134,-69,217,-199,219v-82,2,-163,-69,-232,-96v-72,-28,-130,26,-133,96r-96,-1v-2,-148,105,-251,256,-209v48,13,125,67,180,86v72,26,130,-23,127,-95r97,0","w":1479},"\u00c4":{"d":"410,-541r548,0r-274,-710xm-12,0r0,-106r131,0r532,-1387r168,0r533,1387r147,0r0,106r-543,0r0,-106r166,0r-125,-328r-628,0r-125,328r164,0r0,106r-420,0xm428,-1768v0,-60,55,-116,116,-116v62,0,117,56,117,116v0,65,-52,117,-117,117v-63,0,-116,-53,-116,-117xm934,-1651v-65,0,-117,-52,-117,-117v0,-60,55,-116,117,-116v61,0,116,56,116,116v0,64,-53,117,-116,117","w":1479},"\u00c5":{"d":"735,-1475v82,0,152,-69,152,-151v0,-82,-70,-152,-152,-152v-84,0,-151,68,-151,152v0,82,68,151,151,151xm410,-541r546,0r-272,-710xm1010,-1626v-2,118,-63,201,-150,242r492,1278r147,0r0,106r-543,0r0,-106r166,0r-125,-328r-628,0r-125,328r164,0r0,106r-420,0r0,-106r131,0r489,-1278v-87,-45,-145,-120,-147,-242v-3,-148,126,-275,274,-275v148,0,278,127,275,275","w":1479},"\u00c6":{"d":"426,-541r489,0r0,-845r-100,0xm725,0r0,-106r190,0r0,-328r-538,0r-152,328r164,0r0,106r-424,0r0,-106r131,0r590,-1280r-215,0r0,-107r1456,0r0,332r-123,0r0,-209r-688,0r0,500r492,0r0,-187r123,0r0,496r-123,0r0,-187r-492,0r0,625r705,0r0,-209r123,0r0,332r-1219,0","w":2050},"\u00c7":{"d":"778,274v70,1,122,-34,123,-98v0,-19,-7,-43,-22,-72v-15,-29,-37,-64,-66,-104r97,0v43,43,75,83,96,120v21,37,31,72,31,105v-2,120,-105,171,-238,170v-64,0,-121,-10,-176,-24r0,-131v46,19,97,33,155,34xm829,-78v240,0,372,-121,431,-317r184,0v-82,265,-281,424,-615,424v-216,0,-377,-80,-493,-197v-139,-139,-218,-315,-221,-577v-6,-449,290,-781,731,-775v209,3,381,58,557,129r0,344r-113,0v-48,-242,-181,-366,-461,-366v-159,0,-280,56,-362,169v-82,113,-123,280,-123,499v0,219,41,384,123,497v82,113,203,170,362,170","w":1567},"\u00c8":{"d":"113,0r0,-106r190,0r0,-1280r-190,0r0,-107r1202,0r0,332r-123,0r0,-209r-686,0r0,500r489,0r0,-187r123,0r0,496r-123,0r0,-187r-489,0r0,625r702,0r0,-209r123,0r0,332r-1218,0xm678,-1899r183,264r-117,0r-262,-264r196,0","w":1495},"\u00c9":{"d":"113,0r0,-106r190,0r0,-1280r-190,0r0,-107r1202,0r0,332r-123,0r0,-209r-686,0r0,500r489,0r0,-187r123,0r0,496r-123,0r0,-187r-489,0r0,625r702,0r0,-209r123,0r0,332r-1218,0xm811,-1899r197,0r-262,264r-117,0","w":1495},"\u00ca":{"d":"113,0r0,-106r190,0r0,-1280r-190,0r0,-107r1202,0r0,332r-123,0r0,-209r-686,0r0,500r489,0r0,-187r123,0r0,496r-123,0r0,-187r-489,0r0,625r702,0r0,-209r123,0r0,332r-1218,0xm660,-1899r176,0r231,264r-116,0r-203,-161r-203,161r-116,0","w":1495},"\u00cb":{"d":"113,0r0,-106r190,0r0,-1280r-190,0r0,-107r1202,0r0,332r-123,0r0,-209r-686,0r0,500r489,0r0,-187r123,0r0,496r-123,0r0,-187r-489,0r0,625r702,0r0,-209r123,0r0,332r-1218,0xm553,-1651v-64,0,-116,-52,-116,-117v0,-59,55,-116,116,-116v62,0,117,55,117,116v0,64,-53,117,-117,117xm826,-1768v0,-61,55,-116,117,-116v61,0,116,57,116,116v0,65,-52,117,-116,117v-64,0,-117,-53,-117,-117","w":1495},"\u00cc":{"d":"506,-106r190,0r0,106r-583,0r0,-106r190,0r0,-1280r-190,0r0,-107r583,0r0,107r-190,0r0,1280xm336,-1899r183,264r-117,0r-262,-264r196,0","w":809},"\u00cd":{"d":"506,-106r190,0r0,106r-583,0r0,-106r190,0r0,-1280r-190,0r0,-107r583,0r0,107r-190,0r0,1280xm469,-1899r197,0r-262,264r-117,0","w":809},"\u00ce":{"d":"506,-106r190,0r0,106r-583,0r0,-106r190,0r0,-1280r-190,0r0,-107r583,0r0,107r-190,0r0,1280xm318,-1899r176,0r231,264r-116,0r-203,-161r-203,161r-116,0","w":809},"\u00cf":{"d":"506,-106r190,0r0,106r-583,0r0,-106r190,0r0,-1280r-190,0r0,-107r583,0r0,107r-190,0r0,1280xm211,-1651v-64,0,-116,-52,-116,-117v0,-59,55,-116,116,-116v62,0,117,55,117,116v0,64,-53,117,-117,117xm484,-1768v0,-61,55,-116,117,-116v61,0,116,57,116,116v0,65,-52,117,-116,117v-64,0,-117,-53,-117,-117","w":809},"\u00d0":{"d":"1305,-748v0,-403,-207,-639,-603,-638r-188,0r0,542r336,0r0,125r-336,0r0,613r188,0v395,1,603,-240,603,-642xm1534,-748v0,480,-324,748,-817,748r-594,0r0,-106r190,0r0,-613r-200,0r0,-125r200,0r0,-542r-190,0r0,-107r594,0v495,-5,817,265,817,745","w":1653},"\u00d1":{"d":"100,0r0,-106r201,0r0,-1280r-201,0r0,-107r383,0r895,1178r0,-1071r-200,0r0,-107r524,0r0,107r-201,0r0,1415r-121,0r-956,-1258r0,1123r201,0r0,106r-525,0xm1227,-1886v0,134,-69,217,-199,219v-82,2,-163,-69,-232,-96v-72,-28,-130,26,-133,96r-96,-1v-2,-148,105,-251,256,-209v48,13,125,67,180,86v72,26,130,-23,127,-95r97,0","w":1792},"\u00d2":{"d":"840,-78v163,0,287,-56,370,-168v83,-112,125,-279,125,-499v0,-221,-42,-387,-125,-499v-83,-112,-207,-169,-370,-169v-164,0,-288,57,-371,169v-83,112,-125,278,-125,499v0,220,42,387,125,499v83,112,207,168,371,168xm1119,-20v-164,66,-394,64,-559,-1v-179,-70,-322,-226,-390,-401v-71,-183,-71,-463,0,-646v68,-176,212,-334,390,-402v84,-33,177,-50,280,-50v217,0,392,71,525,213v133,142,200,329,200,562v0,259,-83,440,-222,577v-65,65,-140,115,-224,148xm770,-1899r183,264r-117,0r-262,-264r196,0","w":1679},"\u00d3":{"d":"840,-78v163,0,287,-56,370,-168v83,-112,125,-279,125,-499v0,-221,-42,-387,-125,-499v-83,-112,-207,-169,-370,-169v-164,0,-288,57,-371,169v-83,112,-125,278,-125,499v0,220,42,387,125,499v83,112,207,168,371,168xm1119,-20v-164,66,-394,64,-559,-1v-179,-70,-322,-226,-390,-401v-71,-183,-71,-463,0,-646v68,-176,212,-334,390,-402v84,-33,177,-50,280,-50v217,0,392,71,525,213v133,142,200,329,200,562v0,259,-83,440,-222,577v-65,65,-140,115,-224,148xm903,-1899r197,0r-262,264r-117,0","w":1679},"\u00d4":{"d":"840,-78v163,0,287,-56,370,-168v83,-112,125,-279,125,-499v0,-221,-42,-387,-125,-499v-83,-112,-207,-169,-370,-169v-164,0,-288,57,-371,169v-83,112,-125,278,-125,499v0,220,42,387,125,499v83,112,207,168,371,168xm1119,-20v-164,66,-394,64,-559,-1v-179,-70,-322,-226,-390,-401v-71,-183,-71,-463,0,-646v68,-176,212,-334,390,-402v84,-33,177,-50,280,-50v217,0,392,71,525,213v133,142,200,329,200,562v0,259,-83,440,-222,577v-65,65,-140,115,-224,148xm752,-1899r176,0r231,264r-116,0r-203,-161r-203,161r-116,0","w":1679},"\u00d5":{"d":"840,-78v163,0,287,-56,370,-168v83,-112,125,-279,125,-499v0,-221,-42,-387,-125,-499v-83,-112,-207,-169,-370,-169v-164,0,-288,57,-371,169v-83,112,-125,278,-125,499v0,220,42,387,125,499v83,112,207,168,371,168xm1119,-20v-164,66,-394,64,-559,-1v-179,-70,-322,-226,-390,-401v-71,-183,-71,-463,0,-646v68,-176,212,-334,390,-402v84,-33,177,-50,280,-50v217,0,392,71,525,213v133,142,200,329,200,562v0,259,-83,440,-222,577v-65,65,-140,115,-224,148xm1170,-1886v-1,133,-70,216,-199,219v-82,2,-163,-69,-233,-96v-72,-28,-129,27,-132,96r-96,-1v-2,-148,105,-251,256,-209v48,13,125,67,180,86v72,26,131,-22,127,-95r97,0","w":1679},"\u00d6":{"d":"840,-78v163,0,287,-56,370,-168v83,-112,125,-279,125,-499v0,-221,-42,-387,-125,-499v-83,-112,-207,-169,-370,-169v-164,0,-288,57,-371,169v-83,112,-125,278,-125,499v0,220,42,387,125,499v83,112,207,168,371,168xm1119,-20v-164,66,-394,64,-559,-1v-179,-70,-322,-226,-390,-401v-71,-183,-71,-463,0,-646v68,-176,212,-334,390,-402v84,-33,177,-50,280,-50v217,0,392,71,525,213v133,142,200,329,200,562v0,259,-83,440,-222,577v-65,65,-140,115,-224,148xm645,-1651v-64,0,-116,-52,-116,-117v0,-59,55,-116,116,-116v62,0,117,55,117,116v0,64,-53,117,-117,117xm918,-1768v0,-61,55,-116,117,-116v61,0,116,57,116,116v0,65,-52,117,-116,117v-64,0,-117,-53,-117,-117","w":1679},"\u00d7":{"d":"1434,-1104r-463,463r463,461r-115,112r-461,-460r-461,460r-114,-112r460,-461r-460,-463r114,-113r461,461r461,-461","w":1716},"\u00d8":{"d":"1214,-1239v-81,-110,-194,-174,-374,-174v-164,0,-288,57,-371,169v-83,112,-125,278,-125,499v0,157,20,283,66,393xm463,-256v80,111,197,178,377,178v163,0,287,-56,370,-168v83,-112,125,-279,125,-499v0,-156,-21,-286,-67,-396xm840,-1520v205,0,360,66,477,168r178,-198r80,71r-184,203v108,135,171,301,174,531v6,443,-291,779,-725,774v-210,-2,-358,-68,-480,-172r-182,200r-78,-69r187,-207v-109,-131,-172,-297,-172,-526v0,-231,67,-418,201,-561v134,-143,309,-214,524,-214","w":1679},"\u00d9":{"d":"868,29v-434,0,-581,-178,-581,-623r0,-792r-191,0r0,-107r584,0r0,107r-191,0r0,772v0,191,31,324,93,399v62,75,170,113,323,113v153,0,261,-38,323,-113v62,-75,93,-208,93,-399r0,-772r-191,0r0,-107r504,0r0,107r-190,0r0,792v-4,447,-140,623,-576,623xm833,-1899r183,264r-117,0r-262,-264r196,0","w":1726},"\u00da":{"d":"868,29v-434,0,-581,-178,-581,-623r0,-792r-191,0r0,-107r584,0r0,107r-191,0r0,772v0,191,31,324,93,399v62,75,170,113,323,113v153,0,261,-38,323,-113v62,-75,93,-208,93,-399r0,-772r-191,0r0,-107r504,0r0,107r-190,0r0,792v-4,447,-140,623,-576,623xm966,-1899r197,0r-262,264r-117,0","w":1726},"\u00db":{"d":"868,29v-434,0,-581,-178,-581,-623r0,-792r-191,0r0,-107r584,0r0,107r-191,0r0,772v0,191,31,324,93,399v62,75,170,113,323,113v153,0,261,-38,323,-113v62,-75,93,-208,93,-399r0,-772r-191,0r0,-107r504,0r0,107r-190,0r0,792v-4,447,-140,623,-576,623xm815,-1899r176,0r231,264r-116,0r-203,-161r-203,161r-116,0","w":1726},"\u00dc":{"d":"868,29v-434,0,-581,-178,-581,-623r0,-792r-191,0r0,-107r584,0r0,107r-191,0r0,772v0,191,31,324,93,399v62,75,170,113,323,113v153,0,261,-38,323,-113v62,-75,93,-208,93,-399r0,-772r-191,0r0,-107r504,0r0,107r-190,0r0,792v-4,447,-140,623,-576,623xm592,-1768v0,-60,55,-116,116,-116v62,0,117,56,117,116v0,65,-52,117,-117,117v-63,0,-116,-53,-116,-117xm1098,-1651v-65,0,-117,-52,-117,-117v0,-60,55,-116,117,-116v61,0,116,56,116,116v0,64,-53,117,-116,117","w":1726},"\u00dd":{"d":"387,0r0,-106r191,0r0,-537r-461,-743r-140,0r0,-107r555,0r0,107r-174,0r373,604r373,-604r-168,0r0,-107r434,0r0,107r-141,0r-449,724r0,556r191,0r0,106r-584,0xm739,-1899r197,0r-262,264r-117,0","w":1352},"\u00de":{"d":"1075,-748v0,-201,-106,-314,-305,-313r-264,0r0,627r264,0v200,1,305,-113,305,-314xm1305,-748v0,268,-206,422,-486,422r-313,0r0,220r231,0r0,106r-624,0r0,-106r190,0r0,-1280r-190,0r0,-107r624,0r0,107r-231,0r0,219r313,0v280,-4,486,152,486,419","w":1384},"\u00df":{"d":"856,-70v143,0,239,-85,238,-225v0,-56,-15,-103,-40,-143v-34,-55,-163,-136,-243,-185v-69,-43,-119,-86,-149,-129v-75,-108,-51,-267,40,-351v58,-53,136,-90,238,-107v-9,-154,-105,-248,-266,-248v-180,1,-253,85,-254,268r0,1190r-361,0r0,-106r177,0r0,-1080v1,-247,177,-372,438,-370v289,2,432,142,448,419v-105,-2,-190,17,-250,54v-81,50,-110,154,-57,237v30,47,129,103,189,141v104,65,174,127,214,184v40,57,60,123,60,199v1,216,-188,355,-416,351v-127,-2,-237,-30,-332,-72r0,-233r109,0v5,133,80,206,217,206","w":1368},"\u00e0":{"d":"424,-1636r260,376r-117,0r-340,-376r197,0xm559,-78v151,0,256,-106,256,-256r0,-225r-237,0v-176,0,-270,70,-271,240v-1,149,101,241,252,241xm547,-1092v288,-2,452,145,452,428r0,558r164,0r0,106r-348,0r0,-115v-76,92,-171,143,-328,144v-225,3,-386,-130,-385,-348v0,-110,40,-195,119,-256v79,-61,191,-91,336,-91r258,0r0,-73v0,-166,-110,-254,-280,-254v-148,0,-235,69,-256,198r-95,0r0,-215v111,-47,224,-81,363,-82","w":1221},"\u00e1":{"d":"708,-1638r199,0r-340,376r-117,0xm559,-78v151,0,256,-106,256,-256r0,-225r-237,0v-176,0,-270,70,-271,240v-1,149,101,241,252,241xm547,-1092v288,-2,452,145,452,428r0,558r164,0r0,106r-348,0r0,-115v-76,92,-171,143,-328,144v-225,3,-386,-130,-385,-348v0,-110,40,-195,119,-256v79,-61,191,-91,336,-91r258,0r0,-73v0,-166,-110,-254,-280,-254v-148,0,-235,69,-256,198r-95,0r0,-215v111,-47,224,-81,363,-82","w":1221},"\u00e2":{"d":"485,-1638r168,0r235,376r-116,0r-203,-260r-203,260r-116,0xm559,-78v151,0,256,-106,256,-256r0,-225r-237,0v-176,0,-270,70,-271,240v-1,149,101,241,252,241xm547,-1092v288,-2,452,145,452,428r0,558r164,0r0,106r-348,0r0,-115v-76,92,-171,143,-328,144v-225,3,-386,-130,-385,-348v0,-110,40,-195,119,-256v79,-61,191,-91,336,-91r258,0r0,-73v0,-166,-110,-254,-280,-254v-148,0,-235,69,-256,198r-95,0r0,-215v111,-47,224,-81,363,-82","w":1221},"\u00e3":{"d":"670,-1444v91,34,132,-52,133,-147r96,0v-1,90,-20,159,-53,209v-44,66,-129,91,-212,59v-60,-23,-112,-105,-168,-133v-40,-20,-81,-5,-102,32v-16,26,-26,64,-29,115r-96,0v1,-90,20,-159,53,-209v44,-66,129,-91,212,-59v44,18,90,68,126,102v15,15,28,27,40,31xm559,-78v151,0,256,-106,256,-256r0,-225r-237,0v-176,0,-270,70,-271,240v-1,149,101,241,252,241xm547,-1092v288,-2,452,145,452,428r0,558r164,0r0,106r-348,0r0,-115v-76,92,-171,143,-328,144v-225,3,-386,-130,-385,-348v0,-110,40,-195,119,-256v79,-61,191,-91,336,-91r258,0r0,-73v0,-166,-110,-254,-280,-254v-148,0,-235,69,-256,198r-95,0r0,-215v111,-47,224,-81,363,-82","w":1221},"\u00e4":{"d":"258,-1452v0,-62,55,-117,116,-117v62,0,117,55,117,117v0,67,-50,117,-117,117v-66,0,-116,-51,-116,-117xm647,-1452v0,-62,55,-117,117,-117v61,0,116,55,116,117v0,66,-50,117,-116,117v-67,0,-117,-50,-117,-117xm559,-78v151,0,256,-106,256,-256r0,-225r-237,0v-176,0,-270,70,-271,240v-1,149,101,241,252,241xm547,-1092v288,-2,452,145,452,428r0,558r164,0r0,106r-348,0r0,-115v-76,92,-171,143,-328,144v-225,3,-386,-130,-385,-348v0,-110,40,-195,119,-256v79,-61,191,-91,336,-91r258,0r0,-73v0,-166,-110,-254,-280,-254v-148,0,-235,69,-256,198r-95,0r0,-215v111,-47,224,-81,363,-82","w":1221},"\u00e5":{"d":"559,-78v151,0,256,-106,256,-256r0,-225r-237,0v-176,0,-270,70,-271,240v-1,149,101,241,252,241xm547,-1092v288,-2,452,145,452,428r0,558r164,0r0,106r-348,0r0,-115v-76,92,-171,143,-328,144v-225,3,-386,-130,-385,-348v0,-110,40,-195,119,-256v79,-61,191,-91,336,-91r258,0r0,-73v0,-166,-110,-254,-280,-254v-148,0,-235,69,-256,198r-95,0r0,-215v111,-47,224,-81,363,-82xm569,-1798v149,0,274,125,274,274v0,150,-125,275,-274,275v-149,0,-274,-125,-274,-275v0,-149,125,-274,274,-274xm569,-1372v83,0,152,-69,152,-152v0,-82,-69,-151,-152,-151v-84,0,-152,67,-152,151v0,84,68,152,152,152","w":1221},"\u00e6":{"d":"559,-78v151,0,256,-106,256,-256r0,-225r-237,0v-176,0,-270,70,-271,240v-1,149,101,241,252,241xm1331,29v-182,0,-315,-74,-407,-179v-100,109,-220,176,-410,179v-246,2,-411,-115,-412,-348v0,-110,40,-195,120,-256v80,-61,191,-91,335,-91r258,0r0,-73v1,-162,-107,-254,-272,-254v-154,0,-243,66,-264,198r-95,0r0,-215v111,-47,224,-82,363,-82v190,0,316,58,389,177v89,-105,206,-177,383,-177v340,0,501,227,503,580r-792,0v-1,146,25,258,80,332v54,73,134,110,240,110v176,0,270,-99,307,-252r147,0v-54,223,-205,351,-473,351xm1606,-618v-4,-124,-30,-217,-78,-280v-48,-63,-118,-95,-209,-95v-85,0,-152,32,-201,95v-49,63,-78,157,-88,280r576,0","w":1925},"\u00e7":{"d":"546,274v70,1,122,-34,123,-98v0,-19,-7,-43,-22,-72v-15,-29,-37,-64,-66,-104r97,0v43,43,75,83,96,120v21,37,31,72,31,105v-2,120,-105,171,-238,170v-64,0,-121,-10,-176,-24r0,-131v46,19,97,33,155,34xm618,-70v173,0,255,-95,287,-249r148,0v-48,213,-188,346,-437,348v-314,2,-514,-237,-514,-561v0,-325,199,-563,514,-560v157,1,284,39,402,95r0,272r-107,0v-27,-175,-104,-268,-293,-268v-99,0,-174,38,-225,115v-51,77,-76,193,-76,346v0,153,25,269,75,346v50,77,126,116,226,116","w":1147},"\u00e8":{"d":"461,-1636r260,376r-117,0r-340,-376r197,0xm102,-532v0,-319,196,-562,504,-560v340,2,500,227,504,580r-793,0v-1,146,26,258,81,332v54,73,134,110,239,110v176,0,270,-99,307,-252r148,0v-56,223,-205,349,-474,351v-315,2,-516,-237,-516,-561xm893,-618v-4,-124,-31,-217,-79,-280v-48,-63,-117,-95,-208,-95v-85,0,-151,32,-200,95v-49,63,-78,157,-89,280r576,0","w":1212},"\u00e9":{"d":"745,-1638r199,0r-340,376r-117,0xm102,-532v0,-319,196,-562,504,-560v340,2,500,227,504,580r-793,0v-1,146,26,258,81,332v54,73,134,110,239,110v176,0,270,-99,307,-252r148,0v-56,223,-205,349,-474,351v-315,2,-516,-237,-516,-561xm893,-618v-4,-124,-31,-217,-79,-280v-48,-63,-117,-95,-208,-95v-85,0,-151,32,-200,95v-49,63,-78,157,-89,280r576,0","w":1212},"\u00ea":{"d":"522,-1638r168,0r235,376r-116,0r-203,-260r-203,260r-116,0xm102,-532v0,-319,196,-562,504,-560v340,2,500,227,504,580r-793,0v-1,146,26,258,81,332v54,73,134,110,239,110v176,0,270,-99,307,-252r148,0v-56,223,-205,349,-474,351v-315,2,-516,-237,-516,-561xm893,-618v-4,-124,-31,-217,-79,-280v-48,-63,-117,-95,-208,-95v-85,0,-151,32,-200,95v-49,63,-78,157,-89,280r576,0","w":1212},"\u00eb":{"d":"295,-1452v0,-62,55,-117,116,-117v62,0,117,55,117,117v0,67,-50,117,-117,117v-66,0,-116,-51,-116,-117xm684,-1452v0,-62,55,-117,117,-117v61,0,116,55,116,117v0,66,-50,117,-116,117v-67,0,-117,-50,-117,-117xm102,-532v0,-319,196,-562,504,-560v340,2,500,227,504,580r-793,0v-1,146,26,258,81,332v54,73,134,110,239,110v176,0,270,-99,307,-252r148,0v-56,223,-205,349,-474,351v-315,2,-516,-237,-516,-561xm893,-618v-4,-124,-31,-217,-79,-280v-48,-63,-117,-95,-208,-95v-85,0,-151,32,-200,95v-49,63,-78,157,-89,280r576,0","w":1212},"\u00ec":{"d":"183,-1636r260,376r-117,0r-340,-376r197,0xm434,-106r174,0r0,106r-534,0r0,-106r176,0r0,-850r-176,0r0,-107r360,0r0,957","w":655},"\u00ed":{"d":"467,-1638r199,0r-340,376r-117,0xm434,-106r174,0r0,106r-534,0r0,-106r176,0r0,-850r-176,0r0,-107r360,0r0,957","w":655},"\u00ee":{"d":"244,-1638r168,0r235,376r-116,0r-203,-260r-203,260r-116,0xm434,-106r174,0r0,106r-534,0r0,-106r176,0r0,-850r-176,0r0,-107r360,0r0,957","w":655},"\u00ef":{"d":"17,-1452v0,-62,55,-117,116,-117v62,0,117,55,117,117v0,67,-50,117,-117,117v-66,0,-116,-51,-116,-117xm406,-1452v0,-62,55,-117,117,-117v61,0,116,55,116,117v0,66,-50,117,-116,117v-67,0,-117,-50,-117,-117xm434,-106r174,0r0,106r-534,0r0,-106r176,0r0,-850r-176,0r0,-107r360,0r0,957","w":655},"\u00f0":{"d":"915,-512v-1,-162,-36,-302,-94,-416v-55,-11,-105,-18,-166,-18v-115,0,-200,36,-255,107v-55,71,-83,182,-83,331v0,140,27,248,79,324v52,76,125,114,220,114v96,0,170,-38,222,-114v52,-76,77,-186,77,-328xm268,-1556v165,36,302,101,420,188r322,-150r37,78r-287,133v122,111,214,233,276,363v62,130,94,267,94,412v0,325,-198,561,-514,561v-307,0,-514,-234,-514,-547v0,-330,230,-560,582,-523v25,2,55,6,90,11v-34,-81,-86,-150,-145,-215r-322,149r-37,-78r293,-135v-81,-77,-186,-132,-313,-161","w":1233},"\u00f1":{"d":"760,-1444v91,34,132,-52,133,-147r96,0v-1,90,-20,159,-53,209v-44,66,-129,91,-212,59v-60,-23,-112,-105,-168,-133v-40,-20,-81,-5,-102,32v-16,26,-26,64,-29,115r-96,0v1,-90,20,-159,53,-209v44,-66,129,-91,212,-59v44,18,90,68,126,102v15,15,28,27,40,31xm756,-1092v252,0,341,148,342,416r0,570r164,0r0,106r-508,0r0,-106r159,0r0,-512v0,-130,-16,-220,-48,-268v-32,-48,-88,-72,-169,-72v-85,0,-150,32,-195,94v-45,62,-67,153,-67,272r0,486r160,0r0,106r-510,0r0,-106r166,0r0,-850r-176,0r0,-107r360,0r0,189v60,-127,156,-218,322,-218","w":1319},"\u00f2":{"d":"471,-1636r260,376r-117,0r-340,-376r197,0xm616,-70v99,0,174,-39,224,-117v50,-78,75,-193,75,-345v0,-152,-25,-266,-75,-344v-50,-78,-125,-117,-224,-117v-99,0,-174,39,-224,117v-50,78,-75,192,-75,344v0,152,25,267,76,345v51,78,125,117,223,117xm1130,-532v0,325,-198,561,-514,561v-314,0,-514,-237,-514,-561v0,-325,198,-560,514,-560v316,0,514,236,514,560","w":1233},"\u00f3":{"d":"755,-1638r199,0r-340,376r-117,0xm616,-70v99,0,174,-39,224,-117v50,-78,75,-193,75,-345v0,-152,-25,-266,-75,-344v-50,-78,-125,-117,-224,-117v-99,0,-174,39,-224,117v-50,78,-75,192,-75,344v0,152,25,267,76,345v51,78,125,117,223,117xm1130,-532v0,325,-198,561,-514,561v-314,0,-514,-237,-514,-561v0,-325,198,-560,514,-560v316,0,514,236,514,560","w":1233},"\u00f4":{"d":"532,-1638r168,0r235,376r-116,0r-203,-260r-203,260r-116,0xm616,-70v99,0,174,-39,224,-117v50,-78,75,-193,75,-345v0,-152,-25,-266,-75,-344v-50,-78,-125,-117,-224,-117v-99,0,-174,39,-224,117v-50,78,-75,192,-75,344v0,152,25,267,76,345v51,78,125,117,223,117xm1130,-532v0,325,-198,561,-514,561v-314,0,-514,-237,-514,-561v0,-325,198,-560,514,-560v316,0,514,236,514,560","w":1233},"\u00f5":{"d":"717,-1444v91,34,132,-52,133,-147r96,0v-1,90,-20,159,-53,209v-44,66,-129,91,-212,59v-60,-23,-113,-105,-169,-133v-40,-20,-80,-5,-101,32v-16,26,-26,64,-29,115r-96,0v1,-90,20,-159,53,-209v44,-66,129,-91,212,-59v44,18,90,68,126,102v15,15,28,27,40,31xm616,-70v99,0,174,-39,224,-117v50,-78,75,-193,75,-345v0,-152,-25,-266,-75,-344v-50,-78,-125,-117,-224,-117v-99,0,-174,39,-224,117v-50,78,-75,192,-75,344v0,152,25,267,76,345v51,78,125,117,223,117xm1130,-532v0,325,-198,561,-514,561v-314,0,-514,-237,-514,-561v0,-325,198,-560,514,-560v316,0,514,236,514,560","w":1233},"\u00f6":{"d":"305,-1452v0,-62,55,-117,116,-117v62,0,117,55,117,117v0,67,-50,117,-117,117v-66,0,-116,-51,-116,-117xm694,-1452v0,-62,55,-117,117,-117v61,0,116,55,116,117v0,66,-50,117,-116,117v-67,0,-117,-50,-117,-117xm616,-70v99,0,174,-39,224,-117v50,-78,75,-193,75,-345v0,-152,-25,-266,-75,-344v-50,-78,-125,-117,-224,-117v-99,0,-174,39,-224,117v-50,78,-75,192,-75,344v0,152,25,267,76,345v51,78,125,117,223,117xm1130,-532v0,325,-198,561,-514,561v-314,0,-514,-237,-514,-561v0,-325,198,-560,514,-560v316,0,514,236,514,560","w":1233},"\u00f7":{"d":"858,-879v-74,0,-133,-59,-133,-133v0,-73,60,-133,133,-133v71,0,133,62,133,133v0,72,-61,133,-133,133xm858,-139v-74,0,-133,-60,-133,-133v0,-73,60,-134,133,-134v72,0,133,62,133,134v0,71,-62,133,-133,133xm217,-723r1282,0r0,162r-1282,0r0,-162","w":1716},"\u00f8":{"d":"840,-879v-46,-70,-115,-113,-224,-114v-98,0,-172,39,-223,117v-51,78,-76,193,-76,344v0,92,9,170,29,239xm391,-190v48,74,114,120,225,120v98,0,172,-40,223,-118v51,-78,76,-193,76,-344v0,-97,-9,-175,-30,-248xm616,-1092v134,0,239,39,318,101r139,-166r76,63r-145,172v79,93,124,225,126,390v4,324,-198,564,-514,561v-138,-1,-239,-41,-321,-107r-143,172r-76,-63r149,-178v-76,-96,-121,-221,-123,-385v-4,-325,198,-563,514,-560","w":1233},"\u00f9":{"d":"439,-1636r260,376r-117,0r-340,-376r197,0xm565,29v-253,0,-344,-147,-344,-416r0,-569r-166,0r0,-107r351,0r0,619v0,129,16,218,48,266v32,48,88,72,169,72v85,0,150,-31,195,-94v45,-63,67,-154,67,-273r0,-483r-160,0r0,-107r344,0r0,957r174,0r0,106r-358,0r0,-188v-60,124,-155,217,-320,217","w":1319},"\u00fa":{"d":"723,-1638r199,0r-340,376r-117,0xm565,29v-253,0,-344,-147,-344,-416r0,-569r-166,0r0,-107r351,0r0,619v0,129,16,218,48,266v32,48,88,72,169,72v85,0,150,-31,195,-94v45,-63,67,-154,67,-273r0,-483r-160,0r0,-107r344,0r0,957r174,0r0,106r-358,0r0,-188v-60,124,-155,217,-320,217","w":1319},"\u00fb":{"d":"500,-1638r168,0r235,376r-116,0r-203,-260r-203,260r-116,0xm565,29v-253,0,-344,-147,-344,-416r0,-569r-166,0r0,-107r351,0r0,619v0,129,16,218,48,266v32,48,88,72,169,72v85,0,150,-31,195,-94v45,-63,67,-154,67,-273r0,-483r-160,0r0,-107r344,0r0,957r174,0r0,106r-358,0r0,-188v-60,124,-155,217,-320,217","w":1319},"\u00fc":{"d":"273,-1452v0,-62,55,-117,116,-117v62,0,117,55,117,117v0,67,-50,117,-117,117v-66,0,-116,-51,-116,-117xm662,-1452v0,-62,55,-117,117,-117v61,0,116,55,116,117v0,66,-50,117,-116,117v-67,0,-117,-50,-117,-117xm565,29v-253,0,-344,-147,-344,-416r0,-569r-166,0r0,-107r351,0r0,619v0,129,16,218,48,266v32,48,88,72,169,72v85,0,150,-31,195,-94v45,-63,67,-154,67,-273r0,-483r-160,0r0,-107r344,0r0,957r174,0r0,106r-358,0r0,-188v-60,124,-155,217,-320,217","w":1319},"\u00fd":{"d":"719,-1638r199,0r-340,376r-117,0xm160,221v8,85,36,125,123,127v37,0,67,-9,89,-30v56,-54,101,-211,140,-300r-397,-974r-121,0r0,-107r489,0r0,107r-170,0r299,731r299,-731r-159,0r0,-107r399,0r0,107r-119,0r-487,1196v-33,83,-71,139,-111,170v-81,64,-261,50,-368,14r0,-203r94,0","w":1157},"\u00fe":{"d":"420,-584r0,105v0,128,25,226,74,293v49,67,120,100,213,100v94,0,165,-38,213,-113v48,-75,73,-186,73,-333v0,-147,-25,-258,-73,-333v-48,-75,-119,-112,-213,-112v-93,0,-164,34,-213,101v-49,67,-74,165,-74,292xm764,29v-179,0,-277,-71,-344,-195r0,485r174,0r0,107r-535,0r0,-107r177,0r0,-1769r-177,0r0,-106r361,0r0,659v68,-124,165,-195,344,-195v131,0,237,52,320,155v83,103,124,238,124,405v0,167,-41,302,-124,406v-83,104,-189,155,-320,155","w":1311},"\u00ff":{"d":"269,-1452v0,-62,55,-117,116,-117v62,0,117,55,117,117v0,67,-50,117,-117,117v-66,0,-116,-51,-116,-117xm658,-1452v0,-62,55,-117,117,-117v61,0,116,55,116,117v0,66,-50,117,-116,117v-67,0,-117,-50,-117,-117xm160,221v8,85,36,125,123,127v37,0,67,-9,89,-30v56,-54,101,-211,140,-300r-397,-974r-121,0r0,-107r489,0r0,107r-170,0r299,731r299,-731r-159,0r0,-107r399,0r0,107r-119,0r-487,1196v-33,83,-71,139,-111,170v-81,64,-261,50,-368,14r0,-203r94,0","w":1157},"\u0152":{"d":"348,-750v0,404,207,645,602,644r187,0r0,-1280r-187,0v-395,-1,-602,235,-602,636xm119,-750v0,-480,323,-743,817,-743r1212,0r0,332r-123,0r0,-209r-686,0r0,500r492,0r0,-187r121,0r0,496r-121,0r0,-187r-492,0r0,625r703,0r0,-209r123,0r0,332r-1229,0v-495,5,-817,-268,-817,-750","w":2329},"\u0153":{"d":"616,-70v99,0,174,-39,224,-117v50,-78,75,-193,75,-345v0,-152,-25,-266,-75,-344v-50,-78,-125,-117,-224,-117v-99,0,-174,39,-224,117v-50,78,-75,192,-75,344v0,152,25,267,76,345v51,78,125,117,223,117xm1024,-897v87,-115,211,-195,395,-195v342,0,500,226,504,580r-793,0v-1,146,26,258,81,332v54,73,134,110,239,110v176,0,270,-99,307,-252r148,0v-55,223,-205,351,-473,351v-191,0,-322,-77,-410,-195v-84,118,-217,193,-406,195v-314,3,-514,-237,-514,-561v0,-325,198,-563,514,-560v191,1,323,77,408,195xm1706,-618v-4,-124,-30,-217,-78,-280v-48,-63,-118,-95,-209,-95v-85,0,-151,32,-200,95v-49,63,-78,157,-89,280r576,0","w":2025},"\u0178":{"d":"387,0r0,-106r191,0r0,-537r-461,-743r-140,0r0,-107r555,0r0,107r-174,0r373,604r373,-604r-168,0r0,-107r434,0r0,107r-141,0r-449,724r0,556r191,0r0,106r-584,0xm481,-1651v-64,0,-116,-52,-116,-117v0,-59,55,-116,116,-116v62,0,117,55,117,116v0,64,-53,117,-117,117xm754,-1768v0,-61,55,-116,117,-116v61,0,116,57,116,116v0,65,-52,117,-116,117v-64,0,-117,-53,-117,-117","w":1352},"\u02c6":{"d":"428,-1638r168,0r235,376r-116,0r-203,-260r-203,260r-116,0","w":1024},"\u02dc":{"d":"613,-1444v91,34,132,-52,133,-147r96,0v-1,90,-20,159,-53,209v-44,66,-129,91,-212,59v-60,-23,-113,-105,-169,-133v-40,-20,-80,-5,-101,32v-16,26,-26,64,-29,115r-96,0v1,-90,20,-159,53,-209v44,-66,129,-91,212,-59v44,18,90,68,126,102v15,15,28,27,40,31","w":1024},"\u2013":{"d":"90,-610r844,0r0,133r-844,0r0,-133","w":1024},"\u2014":{"d":"90,-610r1868,0r0,133r-1868,0r0,-133","w":2048},"\u2018":{"d":"549,-1440v-114,91,-153,218,-146,426r-194,0v4,-258,95,-393,262,-506","w":651},"\u2019":{"d":"145,-1067v115,-89,155,-218,148,-426r194,0v-5,257,-97,393,-264,506","w":651},"\u201a":{"d":"90,199v127,-91,187,-213,182,-426r197,0v-15,254,-121,396,-299,506","w":651},"\u201c":{"d":"944,-1440v-112,91,-152,218,-145,426r-195,0v6,-258,94,-392,262,-506xm549,-1440v-114,91,-153,218,-146,426r-194,0v4,-258,95,-393,262,-506","w":1047},"\u201d":{"d":"145,-1067v115,-89,155,-218,148,-426r194,0v-5,257,-97,393,-264,506xm543,-1067v113,-90,152,-219,145,-426r194,0v-4,258,-95,392,-261,506","w":1047},"\u201e":{"d":"90,199v127,-91,187,-213,182,-426r197,0v-15,254,-121,396,-299,506xm485,199v127,-91,188,-212,183,-426r196,0v-14,255,-121,396,-299,506","w":1061},"\u2022":{"d":"604,-465v-163,0,-297,-134,-297,-297v0,-162,136,-295,299,-295v161,0,295,134,295,295v0,163,-134,297,-297,297","w":1208},"\u2026":{"d":"1706,29v-74,0,-133,-60,-133,-133v0,-73,60,-134,133,-134v72,0,133,62,133,134v0,71,-62,133,-133,133xm1024,29v-74,0,-133,-60,-133,-133v0,-73,60,-134,133,-134v72,0,133,62,133,134v0,71,-62,133,-133,133xm342,29v-74,0,-133,-60,-133,-133v0,-73,60,-134,133,-134v72,0,133,62,133,134v0,71,-62,133,-133,133","w":2048},"\u2039":{"d":"627,-1059r0,115r-297,344r297,344r0,115r-469,-418r0,-82","w":819},"\u203a":{"d":"193,-1059r469,418r0,82r-469,418r0,-115r296,-344r-296,-344r0,-115","w":819},"\u20ac":{"d":"379,-745r2,102r375,0r-47,104r-320,0v15,153,50,269,105,349v55,80,127,120,217,120v77,0,141,-28,191,-84v50,-56,85,-136,102,-241r133,0v-29,137,-82,242,-159,315v-77,73,-173,109,-288,109v-126,0,-234,-51,-325,-152v-91,-101,-152,-240,-183,-416r-190,0r45,-104r135,0r-4,-102v0,-23,0,-42,1,-58r3,-47r-180,0r45,-104r145,0v31,-176,92,-314,182,-415v90,-101,199,-151,326,-151v176,0,284,56,422,131r0,342r-106,0v-13,-120,-45,-212,-96,-277v-51,-65,-118,-97,-199,-97v-91,0,-164,40,-219,119v-55,79,-89,195,-103,348r504,0r-47,104r-463,0"},"\u2122":{"d":"1118,-1493r174,270r181,-270r219,0r0,66r-86,0r0,446r86,0r0,66r-285,0r0,-66r86,0r0,-426r-209,311r-43,0r-199,-311r0,426r84,0r0,66r-241,0r0,-66r86,0r0,-446r-86,0r0,-66r233,0xm242,-1493r557,0r0,170r-68,0r0,-104r-153,0r0,446r86,0r0,66r-287,0r0,-66r86,0r0,-446r-156,0r0,104r-65,0r0,-170","w":2048}}}); diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-webfont.eot b/assets/fonts/dejavu/serif/DejaVuSerif-webfont.eot new file mode 100644 index 0000000..a502511 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerif-webfont.eot differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-webfont.svg b/assets/fonts/dejavu/serif/DejaVuSerif-webfont.svg new file mode 100644 index 0000000..9ab9040 --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerif-webfont.svg @@ -0,0 +1,241 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved._DejaVu changes are in public domain_ +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-webfont.ttf b/assets/fonts/dejavu/serif/DejaVuSerif-webfont.ttf new file mode 100644 index 0000000..0baa457 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerif-webfont.ttf differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerif-webfont.woff b/assets/fonts/dejavu/serif/DejaVuSerif-webfont.woff new file mode 100644 index 0000000..79384c9 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerif-webfont.woff differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-cufon.js b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-cufon.js new file mode 100644 index 0000000..8ee9569 --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-cufon.js @@ -0,0 +1,18 @@ +/*! + * The following copyright notice may not be removed under any circumstances. + * + * Copyright: + * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + * DejaVu changes are in public domain + * + * + * Manufacturer: + * DejaVu fonts team + * + * Vendor URL: + * http://dejavu.sourceforge.net + * + * License information: + * http://dejavu.sourceforge.net/wiki/index.php/License + */ +Cufon.registerFont({"w":1282,"face":{"font-family":"DejaVu Serif Condensed","font-weight":700,"font-stretch":"semi-condensed","units-per-em":"2048","panose-1":"2 6 8 6 5 6 5 2 2 4","ascent":"1556","descent":"-492","x-height":"29","bbox":"-137 -1923 2092 483","underline-thickness":"90","underline-position":"-85","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":641},"!":{"d":"404,29v-94,0,-170,-93,-170,-191v0,-98,76,-190,170,-190v94,0,171,93,171,190v0,98,-77,191,-171,191xm236,-1493r337,0r-107,842r0,190r-125,0r0,-190","w":809},"\"":{"d":"389,-1493r0,555r-213,0r0,-555r213,0xm785,-1493r0,555r-213,0r0,-555r213,0","w":960},"#":{"d":"922,-872r-238,0r-63,274r238,0xm820,-1470r-86,385r237,0r87,-385r199,0r-87,385r249,0r0,213r-297,0r-62,274r256,0r0,215r-303,0r-86,383r-199,0r86,-383r-237,0r-87,383r-200,0r86,-383r-251,0r0,-215r295,0r63,-274r-254,0r0,-213r304,0r86,-385r201,0","w":1544},"$":{"d":"582,29v-153,-4,-284,-39,-406,-88r0,-291r108,0v19,174,107,269,298,266r0,-405v-149,-37,-256,-87,-321,-150v-65,-63,-97,-149,-97,-258v0,-249,167,-388,418,-393r0,-269r109,0r0,269v144,9,262,39,373,88r0,272r-109,0v-18,-147,-108,-244,-264,-247r0,372v161,39,275,93,341,159v66,66,98,159,98,279v-1,259,-174,391,-439,396r0,270r-109,0r0,-270xm582,-1178v-89,12,-165,65,-165,156v0,114,64,150,165,184r0,-340xm691,-84v109,-13,185,-61,185,-172v0,-122,-76,-165,-185,-201r0,373"},"%":{"d":"398,-1419v-39,0,-64,23,-83,69v-31,77,-31,397,0,473v19,46,44,70,83,70v39,0,65,-24,84,-70v32,-77,32,-396,0,-473v-19,-45,-45,-69,-84,-69xm44,-1114v0,-249,116,-406,354,-406v239,0,354,157,354,406v0,250,-114,407,-354,407v-238,0,-354,-158,-354,-407xm1219,-1520r154,0r-840,1549r-155,0xm999,-379v0,-248,116,-404,354,-405v239,0,353,156,353,405v0,250,-113,407,-353,408v-238,0,-354,-159,-354,-408xm1353,-684v-39,0,-65,24,-84,70v-32,77,-31,396,1,472v19,46,44,70,83,70v39,0,64,-24,83,-70v32,-77,32,-395,0,-472v-19,-45,-44,-70,-83,-70","w":1751},"&":{"d":"1456,-795v-20,192,-73,340,-164,459r186,215r153,0r0,121r-431,0r-115,-131v-110,97,-244,160,-436,160v-180,0,-321,-43,-423,-128v-102,-85,-152,-203,-152,-352v0,-109,26,-202,78,-279v52,-77,133,-143,244,-198v-50,-74,-92,-144,-92,-246v0,-109,41,-194,124,-255v83,-61,199,-91,348,-91v120,0,235,23,355,47r0,312r-116,0v-20,-147,-68,-235,-217,-238v-116,-3,-195,66,-195,178v0,61,54,153,161,274v12,13,21,23,27,29r414,482v72,-91,112,-208,123,-359r-163,0r0,-120r450,0r0,120r-159,0xm392,-516v-4,211,137,390,340,387v115,-2,193,-43,269,-100r-509,-588v-58,80,-98,175,-100,301","w":1664},"'":{"d":"389,-1493r0,555r-213,0r0,-555r213,0","w":564},"(":{"d":"776,319v-203,-83,-354,-203,-453,-358v-99,-155,-149,-348,-149,-579v0,-231,50,-423,148,-576v98,-153,249,-274,454,-362r0,120v-95,64,-160,159,-205,284v-81,225,-81,841,0,1066v45,125,110,221,205,285r0,120","w":872},")":{"d":"94,319r0,-120v95,-64,159,-160,204,-285v81,-225,80,-842,0,-1066v-45,-125,-109,-220,-204,-284r0,-120v204,88,355,209,454,362v99,153,149,345,149,576v0,231,-50,424,-150,579v-100,155,-251,275,-453,358","w":872},"*":{"d":"923,-1212r-324,168r324,170r-88,155r-295,-239r24,389r-164,0r24,-389r-295,239r-89,-155r325,-170r-325,-168r89,-158r295,242r-24,-392r164,0r-24,392r295,-242","w":963},"+":{"d":"876,-1284r0,526r473,0r0,230r-473,0r0,526r-207,0r0,-526r-474,0r0,-230r474,0r0,-526r207,0","w":1544},",":{"d":"24,197v116,-104,180,-226,182,-430r0,-86r257,0v-1,328,-125,521,-340,657","w":641},"-":{"d":"100,-684r565,0r0,270r-565,0r0,-270","w":765},".":{"d":"320,29v-94,0,-171,-93,-171,-191v0,-98,77,-190,171,-190v96,0,172,92,172,190v0,99,-75,191,-172,191","w":641},"\/":{"d":"473,-1493r200,0r-474,1683r-199,0","w":673},"0":{"d":"642,-88v72,0,121,-36,148,-109v27,-73,40,-255,40,-548v0,-291,-13,-473,-40,-547v-27,-74,-76,-111,-148,-111v-72,0,-121,36,-148,109v-27,73,-40,256,-40,549v0,293,13,475,40,548v27,73,76,109,148,109xm642,29v-179,0,-316,-66,-412,-199v-96,-133,-144,-325,-144,-575v0,-250,48,-442,144,-575v96,-133,233,-200,412,-200v179,0,316,67,411,200v95,133,143,325,143,575v0,250,-48,442,-143,575v-95,133,-232,199,-411,199"},"1":{"d":"253,0r0,-121r252,0r0,-1208r-280,184r0,-149r337,-226r284,0r0,1399r253,0r0,121r-846,0"},"2":{"d":"494,-1403v-160,0,-232,119,-251,279r-108,0r0,-322v134,-45,270,-73,435,-74v171,0,304,38,400,116v96,78,143,186,143,325v0,99,-26,187,-79,265v-53,78,-154,171,-302,279r-375,273r637,0r0,-176r123,0r0,438r-994,0r0,-244r199,-153v170,-130,284,-241,340,-332v56,-91,84,-198,84,-320v0,-115,-21,-203,-64,-263v-43,-60,-106,-91,-188,-91"},"3":{"d":"510,-1403v-154,1,-228,102,-243,252r-109,0r0,-299v141,-41,283,-70,449,-70v162,0,286,32,373,96v87,64,130,157,130,277v0,196,-118,297,-294,332v223,39,349,162,349,412v0,139,-50,247,-149,321v-99,74,-243,111,-432,111v-168,0,-313,-34,-455,-80r0,-328r109,0v11,176,97,290,274,291v189,1,286,-127,286,-324v0,-206,-100,-338,-298,-338r-60,0r0,-120v205,12,312,-75,312,-271v0,-164,-82,-263,-242,-262"},"4":{"d":"1176,0r-740,0r0,-121r200,0r0,-272r-560,0r0,-115r562,-1012r338,0r0,998r231,0r0,129r-231,0r0,272r200,0r0,121xm636,-522r0,-725r-400,725r400,0"},"5":{"d":"524,-883v-111,0,-169,54,-222,129r-90,0r0,-739r828,0r0,262r-720,0r0,328v72,-61,165,-102,287,-103v324,-4,536,199,536,519v0,330,-211,519,-547,516v-171,-1,-305,-33,-445,-82r0,-326r108,0v8,183,78,291,257,291v88,0,153,-32,196,-98v43,-66,64,-166,64,-301v0,-133,-20,-231,-62,-297v-42,-66,-105,-99,-190,-99"},"6":{"d":"1004,-1196v-27,-126,-103,-207,-246,-207v-107,0,-184,41,-232,122v-48,81,-72,213,-72,396v71,-64,163,-103,288,-104v285,-1,442,206,442,502v0,326,-184,516,-509,516v-183,0,-322,-62,-417,-185v-95,-123,-142,-303,-142,-542v0,-271,53,-476,158,-614v105,-138,260,-208,467,-208v134,0,252,26,372,60r0,264r-109,0xm654,-88v62,0,103,-31,132,-88v50,-96,50,-511,0,-606v-29,-57,-70,-88,-132,-88v-61,0,-103,31,-132,88v-50,96,-50,511,0,606v29,57,71,88,132,88"},"7":{"d":"1130,-1239r-555,1239r-183,0r540,-1210r-663,0r0,202r-123,0r0,-485r984,0r0,254"},"8":{"d":"1139,-1130v0,194,-113,293,-282,335v203,35,326,168,327,398v0,137,-47,243,-140,316v-93,73,-228,110,-404,110v-176,0,-310,-37,-404,-110v-94,-73,-141,-179,-141,-316v0,-229,125,-363,327,-398v-170,-43,-282,-141,-282,-335v0,-127,43,-223,128,-290v85,-67,209,-100,372,-100v162,0,286,33,371,100v85,67,128,163,128,290xm758,-910v42,-63,41,-371,-1,-434v-26,-38,-62,-59,-117,-59v-56,0,-93,21,-118,59v-42,63,-42,371,0,434v25,37,62,58,118,58v56,0,93,-21,118,-58xm826,-414v0,-122,-14,-206,-42,-252v-28,-46,-76,-69,-144,-69v-69,0,-118,23,-145,69v-27,46,-41,130,-41,252v0,123,14,209,42,256v28,47,75,70,144,70v68,0,116,-23,144,-70v28,-47,42,-133,42,-256"},"9":{"d":"628,-1403v-61,0,-103,30,-132,87v-50,96,-50,513,0,608v29,57,71,87,132,87v62,0,103,-30,132,-87v50,-96,50,-513,0,-608v-29,-57,-70,-87,-132,-87xm278,-295v28,126,103,207,248,207v105,0,182,-40,230,-122v48,-82,72,-215,73,-398v-72,65,-163,105,-289,106v-284,1,-440,-206,-440,-502v0,-327,182,-518,507,-516v183,0,322,62,417,185v95,123,142,304,142,542v0,271,-53,477,-158,615v-105,138,-260,207,-466,207v-134,0,-253,-26,-373,-60r0,-264r109,0"},":":{"d":"339,-625v-95,0,-170,-90,-170,-188v0,-98,75,-191,170,-191v95,0,171,93,171,191v0,98,-76,188,-171,188xm339,29v-94,0,-170,-93,-170,-191v0,-98,76,-190,170,-190v95,0,171,92,171,190v0,99,-75,191,-171,191","w":680},";":{"d":"339,-625v-95,0,-170,-90,-170,-188v0,-98,75,-191,170,-191v95,0,171,93,171,191v0,98,-76,188,-171,188xm48,188v116,-103,180,-224,182,-428r0,-88r257,0v-3,326,-126,523,-339,658","w":680},"<":{"d":"1349,-979r-881,338r881,336r0,239r-1154,-464r0,-226r1154,-463r0,240","w":1544},"=":{"d":"195,-528r1154,0r0,227r-1154,0r0,-227xm195,-983r1154,0r0,227r-1154,0r0,-227","w":1544},">":{"d":"195,-979r0,-240r1154,463r0,226r-1154,464r0,-239r881,-336","w":1544},"?":{"d":"479,29v-94,0,-171,-93,-171,-191v0,-98,77,-190,171,-190v95,0,172,92,172,190v0,99,-77,191,-172,191xm443,-1407v-148,0,-205,107,-214,262r-109,0r0,-307v129,-39,256,-67,407,-68v291,-2,470,144,470,426v-1,284,-179,433,-455,453r0,205r-125,0r0,-299v163,-56,242,-167,243,-381v0,-174,-59,-291,-217,-291","w":1080},"@":{"d":"942,-219v135,0,203,-133,203,-285v0,-117,-7,-217,-56,-284v-38,-52,-86,-78,-147,-78v-59,0,-106,31,-144,88v-71,107,-71,364,0,471v38,58,85,88,144,88xm1713,-676v3,365,-199,596,-568,584r0,-148v-47,86,-128,148,-249,148v-243,0,-369,-191,-369,-451v0,-260,125,-450,369,-450v120,0,203,63,249,147r0,-125r197,0r0,742v174,-52,271,-220,269,-449v-2,-216,-80,-358,-201,-473v-100,-95,-249,-162,-432,-162v-173,0,-302,55,-405,139v-159,130,-265,353,-265,631v0,346,158,597,390,711v84,41,174,61,271,61v169,0,299,-56,408,-135r51,94v-133,98,-288,168,-494,168v-262,0,-443,-103,-580,-252v-140,-153,-232,-370,-232,-647v0,-277,91,-495,232,-647v141,-154,320,-250,594,-250v232,0,398,75,526,195v145,136,237,310,239,569","w":1843},"A":{"d":"-14,0r0,-121r109,0r506,-1372r215,0r507,1372r128,0r0,121r-629,0r0,-121r131,0r-111,-305r-504,0r-113,305r160,0r0,121r-399,0xm382,-547r416,0r-207,-571","w":1430},"B":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r797,0v164,0,287,31,369,92v82,61,123,154,123,277v0,89,-28,159,-85,211v-57,52,-141,85,-252,98v135,14,238,54,310,120v72,66,108,154,108,263v0,148,-50,257,-150,327v-100,70,-258,105,-473,105r-747,0xm1027,-1124v0,-187,-105,-247,-304,-248r-118,0r0,502r118,0v195,0,304,-70,304,-254xm1071,-432v0,-218,-115,-318,-337,-318r-129,0r0,629r129,0v223,0,337,-93,337,-311","w":1557},"C":{"d":"813,-1520v200,2,362,57,523,129r0,367r-114,0v-23,-125,-66,-220,-128,-282v-62,-62,-143,-93,-244,-93v-131,0,-229,54,-292,161v-63,107,-95,271,-95,493v0,222,32,386,95,493v63,107,161,160,293,160v90,0,163,-28,220,-83v57,-55,98,-139,123,-251r179,0v-67,288,-226,451,-560,455v-457,4,-736,-311,-736,-774v0,-464,278,-780,736,-775","w":1467},"D":{"d":"605,-121r125,0v140,0,243,-50,308,-150v65,-100,98,-259,98,-477v0,-217,-33,-374,-98,-474v-65,-100,-167,-150,-308,-150r-125,0r0,1251xm1521,-748v0,481,-265,748,-745,748r-690,0r0,-121r172,0r0,-1251r-172,0r0,-121r690,0v480,-2,745,265,745,745","w":1598},"E":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r1208,0r0,352r-124,0r0,-215r-565,0r0,479r352,0r0,-190r123,0r0,516r-123,0r0,-190r-352,0r0,604r582,0r0,-215r123,0r0,352r-1224,0","w":1404},"F":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r1198,0r0,352r-123,0r0,-215r-554,0r0,479r341,0r0,-190r123,0r0,516r-123,0r0,-190r-341,0r0,620r211,0r0,121r-732,0","w":1308},"G":{"d":"818,-1520v222,2,397,52,564,129r0,367r-114,0v-27,-132,-71,-227,-134,-286v-63,-59,-152,-89,-267,-89v-139,0,-242,52,-307,157v-65,105,-97,271,-97,497v0,224,31,389,93,495v62,106,160,158,292,158v107,0,193,-29,258,-76r0,-410r-162,0r0,-120r484,0r0,573v-179,92,-364,151,-610,154v-463,4,-741,-305,-741,-774v0,-470,277,-779,741,-775","w":1574},"H":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r692,0r0,121r-173,0r0,502r534,0r0,-502r-171,0r0,-121r691,0r0,121r-173,0r0,1251r173,0r0,121r-691,0r0,-121r171,0r0,-612r-534,0r0,612r173,0r0,121r-692,0","w":1741},"I":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r692,0r0,121r-173,0r0,1251r173,0r0,121r-692,0","w":862},"J":{"d":"169,426v-117,0,-213,-28,-304,-68r0,-235r117,0v6,111,39,182,143,182v58,0,99,-25,122,-75v23,-50,35,-142,35,-279r0,-1323r-196,0r0,-121r716,0r0,121r-172,0r0,1331v-2,325,-137,467,-461,467","w":872},"K":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r692,0r0,121r-173,0r0,545r569,-545r-144,0r0,-121r502,0r0,121r-179,0r-483,461r656,790r133,0r0,121r-456,0r-598,-725r0,604r173,0r0,121r-692,0","w":1602},"L":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r692,0r0,121r-173,0r0,1235r529,0r0,-236r122,0r0,373r-1170,0","w":1296},"M":{"d":"77,0r0,-121r171,0r0,-1251r-171,0r0,-121r555,0r383,958r385,-958r554,0r0,121r-172,0r0,1251r172,0r0,121r-691,0r0,-121r171,0r0,-1139r-417,1041r-228,0r-415,-1041r0,1139r171,0r0,121r-468,0","w":2040},"N":{"d":"81,0r0,-121r172,0r0,-1251r-172,0r0,-121r420,0r811,1057r0,-936r-171,0r0,-121r470,0r0,121r-172,0r0,1372r-236,0r-823,-1079r0,958r171,0r0,121r-470,0","w":1684},"O":{"d":"802,-92v115,0,200,-54,256,-161v56,-107,83,-271,83,-492v0,-221,-27,-386,-83,-493v-56,-107,-141,-161,-256,-161v-114,0,-199,55,-255,163v-56,108,-84,272,-84,491v0,219,28,383,84,491v56,108,141,162,255,162xm1526,-745v0,467,-267,774,-724,774v-458,0,-725,-307,-725,-774v0,-467,268,-775,725,-775v459,0,724,307,724,775","w":1605},"P":{"d":"1340,-1057v0,274,-205,444,-489,439r-246,0r0,497r217,0r0,121r-736,0r0,-121r172,0r0,-1251r-172,0r0,-121r765,0v285,-5,489,163,489,436xm962,-1057v0,-177,-89,-315,-256,-315r-101,0r0,633r101,0v166,0,256,-141,256,-318","w":1386},"Q":{"d":"957,16v69,87,176,111,339,107r0,246v-129,3,-229,-23,-312,-82v-76,-55,-139,-141,-188,-258v-456,-5,-719,-304,-719,-774v0,-467,268,-775,725,-775v459,0,724,307,724,775v0,422,-208,701,-569,761xm802,-92v115,0,200,-54,256,-161v56,-107,83,-271,83,-492v0,-221,-27,-386,-83,-493v-56,-107,-141,-161,-256,-161v-114,0,-199,55,-255,163v-56,108,-84,272,-84,491v0,219,28,383,84,491v56,108,141,162,255,162","w":1605},"R":{"d":"1342,-1092v0,231,-143,332,-364,363v121,22,181,87,231,192r196,416r138,0r0,121r-442,0r-215,-451v-41,-93,-78,-153,-106,-179v-38,-36,-101,-41,-175,-38r0,547r173,0r0,121r-692,0r0,-121r172,0r0,-1251r-172,0r0,-121r767,0v290,-3,489,128,489,401xm985,-1081v0,-180,-88,-291,-262,-291r-118,0r0,584r118,0v174,0,262,-113,262,-293","w":1531},"S":{"d":"667,29v-201,-1,-366,-40,-525,-101r0,-354r114,0v34,215,153,333,393,334v173,1,284,-69,285,-232v0,-60,-18,-106,-50,-140v-60,-64,-281,-113,-405,-148v-131,-37,-224,-90,-277,-156v-53,-66,-80,-160,-80,-283v-1,-301,196,-472,504,-469v187,1,352,37,510,88r0,330r-114,0v-36,-199,-139,-295,-366,-297v-162,0,-269,56,-269,205v0,62,17,109,47,142v53,59,304,119,431,155v234,66,355,184,355,465v0,321,-213,463,-553,461","w":1331},"T":{"d":"334,0r0,-121r178,0r0,-1235r-368,0r0,236r-123,0r0,-373r1332,0r0,373r-122,0r0,-236r-371,0r0,1235r180,0r0,121r-706,0","w":1371},"U":{"d":"814,29v-433,0,-580,-190,-580,-635r0,-766r-171,0r0,-121r691,0r0,121r-172,0r0,747v0,186,26,317,78,391v52,74,142,111,269,111v123,0,211,-38,263,-113v52,-75,78,-204,78,-389r0,-747r-171,0r0,-121r468,0r0,121r-172,0r0,768v-4,448,-144,633,-581,633","w":1607},"V":{"d":"1456,-1493r0,121r-112,0r-507,1372r-214,0r-507,-1372r-127,0r0,-121r630,0r0,121r-130,0r362,989r366,-989r-160,0r0,-121r399,0","w":1430},"W":{"d":"1570,0r-232,0r-304,-1087r-304,1087r-232,0r-384,-1372r-130,0r0,-121r637,0r0,121r-144,0r257,917r289,-1038r256,0r295,1055r262,-934r-160,0r0,-121r416,0r0,121r-138,0","w":2070},"X":{"d":"625,-575r-280,454r165,0r0,121r-477,0r0,-121r166,0r354,-571r-421,-680r-123,0r0,-121r668,0r0,121r-148,0r260,420r258,-420r-157,0r0,-121r468,0r0,121r-166,0r-332,536r441,715r127,0r0,121r-670,0r0,-121r149,0","w":1430},"Y":{"d":"317,0r0,-121r181,0r0,-497r-400,-754r-114,0r0,-121r644,0r0,121r-149,0r302,569r301,-569r-134,0r0,-121r385,0r0,121r-114,0r-373,702r0,549r181,0r0,121r-710,0","w":1315},"Z":{"d":"68,0r0,-141r802,-1215r-643,0r0,223r-123,0r0,-360r1166,0r0,141r-793,1215r679,0r0,-209r123,0r0,346r-1211,0","w":1345},"[":{"d":"230,-1556r511,0r0,120r-192,0r0,1586r192,0r0,120r-511,0r0,-1826","w":872},"\\":{"d":"199,-1493r474,1683r-200,0r-473,-1683r199,0","w":673},"]":{"d":"642,-1556r0,1826r-512,0r0,-120r192,0r0,-1586r-192,0r0,-120r512,0","w":872},"^":{"d":"876,-1493r482,557r-192,0r-394,-315r-394,315r-192,0r489,-557r201,0","w":1544},"_":{"d":"922,293r0,190r-922,0r0,-190r922,0","w":921},"`":{"d":"378,-1638r232,376r-147,0r-336,-376r251,0","w":921},"a":{"d":"520,-1092v330,1,495,121,495,439r0,532r137,0r0,121r-455,0r0,-135v-75,99,-162,163,-317,164v-202,2,-306,-129,-304,-338v3,-259,174,-358,453,-357r168,0r0,-63v0,-166,-65,-252,-225,-252v-140,0,-192,63,-221,186r-102,0r0,-229v109,-43,226,-68,371,-68xm533,-137v104,2,164,-87,164,-197r0,-213r-120,0v-123,0,-186,81,-185,209v0,120,34,199,141,201","w":1194},"b":{"d":"776,29v-145,-1,-228,-61,-278,-164r0,135r-456,0r0,-121r137,0r0,-1315r-137,0r0,-120r456,0r0,628v50,-104,133,-164,278,-164v136,0,244,50,322,150v78,100,117,236,117,410v0,174,-39,311,-117,411v-78,100,-186,150,-322,150xm498,-479v0,124,14,214,42,269v28,55,75,83,139,83v65,0,108,-31,138,-88v50,-94,50,-540,0,-633v-30,-57,-73,-88,-138,-88v-64,0,-108,29,-139,83v-37,66,-42,237,-42,374","w":1288},"c":{"d":"665,-84v142,0,212,-105,225,-248r150,0v-44,229,-169,359,-428,361v-344,2,-536,-213,-536,-561v0,-341,190,-562,523,-560v155,1,286,35,409,84r0,295r-101,0v-9,-90,-33,-157,-71,-201v-38,-44,-91,-65,-159,-65v-89,0,-151,33,-189,100v-38,67,-57,182,-57,347v0,161,18,275,55,344v37,69,96,104,179,104","w":1122},"d":{"d":"748,-210v38,-66,43,-236,43,-374v0,-124,-14,-214,-43,-269v-29,-55,-75,-83,-138,-83v-66,0,-112,30,-139,88v-27,58,-40,163,-40,316v0,153,14,258,41,317v27,59,73,88,138,88v63,0,107,-29,138,-83xm512,-1092v145,1,229,61,279,164r0,-508r-137,0r0,-120r456,0r0,1435r136,0r0,121r-455,0r0,-135v-50,104,-134,164,-279,164v-135,0,-242,-50,-320,-150v-78,-100,-116,-237,-116,-411v0,-175,38,-312,116,-411v78,-99,185,-149,320,-149","w":1288},"e":{"d":"739,-600v0,-140,-12,-238,-35,-294v-23,-56,-63,-85,-120,-85v-55,0,-94,28,-118,83v-24,55,-36,167,-35,296r308,0xm76,-532v0,-340,183,-561,514,-560v158,0,279,52,364,156v85,104,130,255,135,455r-658,0v-1,138,18,244,56,305v37,61,97,92,180,92v150,-2,228,-97,249,-238r150,0v-52,237,-193,350,-476,351v-340,1,-514,-213,-514,-561","w":1172},"f":{"d":"599,-1556v108,0,205,14,293,38r0,228r-101,0v-9,-94,-44,-154,-137,-154v-48,0,-81,21,-104,58v-36,58,-32,212,-32,323r240,0r0,121r-240,0r0,821r184,0r0,121r-639,0r0,-121r136,0r0,-821r-142,0r0,-121r142,0r0,-133v1,-244,147,-361,400,-360","w":792},"g":{"d":"512,-1092v145,1,229,61,279,164r0,-135r455,0r0,121r-136,0r0,928v0,313,-220,472,-549,469v-147,-1,-273,-27,-395,-66r0,-254r101,0v19,139,98,207,255,207v222,0,266,-113,269,-356r0,-121v-50,104,-134,164,-279,164v-135,0,-242,-50,-320,-150v-78,-100,-116,-237,-116,-411v0,-175,38,-312,116,-411v78,-99,185,-149,320,-149xm791,-584v0,-124,-14,-214,-43,-269v-29,-55,-75,-83,-138,-83v-66,0,-112,30,-139,88v-27,58,-40,163,-40,316v0,153,14,258,41,317v27,59,73,88,138,88v63,0,107,-29,138,-83v38,-66,43,-236,43,-374","w":1288},"h":{"d":"835,-1092v233,0,326,165,326,416r0,555r137,0r0,121r-572,0r0,-121r116,0r0,-565v0,-90,-10,-153,-31,-188v-21,-35,-56,-52,-107,-52v-64,0,-111,26,-141,78v-30,52,-45,136,-45,250r0,477r116,0r0,121r-571,0r0,-121r136,0r0,-1315r-142,0r0,-120r461,0r0,643v71,-115,147,-179,317,-179","w":1340},"i":{"d":"343,-1174v-98,0,-174,-89,-174,-190v0,-102,76,-192,174,-192v96,0,171,91,171,192v0,99,-75,190,-171,190xm518,-121r136,0r0,121r-591,0r0,-121r136,0r0,-821r-136,0r0,-121r455,0r0,942","w":700},"j":{"d":"334,-1174v-98,0,-174,-89,-174,-190v0,-102,75,-192,174,-192v95,0,171,93,171,192v0,99,-75,190,-171,190xm105,455v-86,-1,-167,-17,-242,-39r0,-226r102,1v3,96,25,151,114,151v44,0,75,-16,92,-47v17,-31,26,-88,26,-170r0,-1067r-136,0r0,-121r455,0r0,1188v-3,234,-160,331,-411,330","w":666},"k":{"d":"638,0r-575,0r0,-121r136,0r0,-1315r-136,0r0,-120r455,0r0,999r386,-385r-115,0r0,-121r437,0r0,121r-178,0r-246,246r403,575r104,0r0,121r-549,0r0,-121r112,0r-265,-379r-89,88r0,291r120,0r0,121","w":1277},"l":{"d":"518,-121r136,0r0,121r-591,0r0,-121r136,0r0,-1315r-136,0r0,-120r455,0r0,1435","w":700},"m":{"d":"816,-1092v169,0,253,74,303,203v44,-71,91,-123,143,-155v52,-32,113,-48,182,-48v238,3,328,159,327,416r0,555r137,0r0,121r-570,0r0,-121r115,0r0,-502v0,-133,-9,-216,-27,-251v-18,-35,-53,-52,-103,-52v-57,0,-100,24,-131,72v-31,48,-47,118,-47,207r0,526r114,0r0,121r-547,0r0,-121r114,0r0,-502v0,-133,-9,-216,-28,-251v-19,-35,-52,-52,-101,-52v-57,0,-102,24,-133,72v-31,48,-46,118,-46,207r0,526r114,0r0,121r-569,0r0,-121r136,0r0,-821r-136,0r0,-121r455,0r0,150v66,-109,143,-179,298,-179","w":1950},"n":{"d":"835,-1092v233,0,326,165,326,416r0,555r137,0r0,121r-572,0r0,-121r116,0r0,-565v0,-90,-10,-153,-31,-188v-21,-35,-56,-52,-107,-52v-64,0,-111,26,-141,78v-30,52,-45,136,-45,250r0,477r116,0r0,121r-571,0r0,-121r136,0r0,-821r-136,0r0,-121r455,0r0,150v71,-115,147,-179,317,-179","w":1340},"o":{"d":"616,-84v67,0,114,-32,141,-96v27,-64,41,-181,41,-352v0,-171,-13,-288,-40,-352v-27,-64,-75,-95,-142,-95v-68,0,-116,33,-144,97v-28,64,-41,181,-41,350v0,169,13,286,41,351v28,65,76,97,144,97xm1156,-532v0,342,-203,561,-540,561v-338,0,-540,-219,-540,-561v0,-343,201,-560,540,-560v339,0,540,217,540,560","w":1229},"p":{"d":"540,-853v-37,66,-42,237,-42,374v0,124,14,214,42,269v28,55,75,83,139,83v65,0,108,-31,138,-88v50,-94,50,-540,0,-633v-30,-57,-73,-88,-138,-88v-64,0,-108,29,-139,83xm776,29v-145,-1,-228,-61,-278,-164r0,440r147,0r0,121r-603,0r0,-121r137,0r0,-1247r-137,0r0,-121r456,0r0,135v50,-104,133,-164,278,-164v136,0,244,50,322,150v78,100,117,236,117,410v0,174,-39,311,-117,411v-78,100,-186,150,-322,150","w":1288},"q":{"d":"512,-1092v145,1,229,61,279,164r0,-135r455,0r0,121r-136,0r0,1247r136,0r0,121r-602,0r0,-121r147,0r0,-440v-50,104,-134,164,-279,164v-135,0,-242,-50,-320,-150v-78,-100,-116,-237,-116,-411v0,-175,38,-312,116,-411v78,-99,185,-149,320,-149xm791,-584v0,-124,-14,-214,-43,-269v-29,-55,-75,-83,-138,-83v-66,0,-112,30,-139,88v-27,58,-40,163,-40,316v0,153,14,258,41,317v27,59,73,88,138,88v63,0,107,-29,138,-83v38,-66,43,-236,43,-374","w":1288},"r":{"d":"830,-1092v53,0,105,9,160,17r0,317r-102,0v-6,-104,-45,-168,-146,-168v-69,0,-124,34,-164,102v-40,68,-60,162,-60,283r0,420r173,0r0,121r-628,0r0,-121r136,0r0,-821r-146,0r0,-121r465,0r0,189v55,-133,142,-218,312,-218","w":971},"s":{"d":"487,29v-144,0,-273,-26,-401,-60r0,-297r102,0v16,151,103,244,264,244v116,1,200,-41,200,-145v0,-111,-54,-130,-160,-160r-131,-37v-99,-27,-171,-67,-215,-118v-44,-51,-67,-119,-67,-206v0,-115,36,-202,108,-258v72,-56,183,-84,333,-84v144,0,262,27,393,64r0,268r-102,0v-11,-145,-92,-219,-247,-219v-114,0,-197,34,-197,135v0,91,48,113,133,137r130,37v125,35,212,79,260,131v48,52,72,124,72,217v0,120,-39,209,-116,266v-77,57,-196,85,-359,85","w":1037},"t":{"d":"520,29v-261,0,-337,-65,-337,-320r0,-651r-139,0r0,-121r139,0r0,-330r318,0r0,330r266,0r0,121r-266,0r0,651v0,93,7,150,20,173v13,23,37,34,72,34v91,0,112,-73,115,-176r134,0v-14,218,-90,289,-322,289","w":851},"u":{"d":"505,29v-233,0,-326,-165,-326,-416r0,-555r-137,0r0,-121r456,0r0,621v0,132,10,216,30,252v20,36,55,53,108,53v65,0,112,-26,142,-79v30,-53,44,-136,44,-251r0,-475r-116,0r0,-121r435,0r0,942r136,0r0,121r-455,0r0,-150v-71,115,-147,179,-317,179","w":1340},"v":{"d":"411,0r-339,-942r-105,0r0,-121r549,0r0,121r-116,0r242,672r241,-672r-125,0r0,-121r359,0r0,121r-111,0r-339,942r-256,0","w":1071},"w":{"d":"994,-1063r217,709r180,-588r-125,0r0,-121r358,0r0,121r-113,0r-289,942r-219,0r-203,-666r-204,666r-218,0r-290,-942r-104,0r0,-121r542,0r0,121r-113,0r177,575r214,-696r190,0","w":1586},"x":{"d":"647,-678r169,-264r-118,0r0,-121r373,0r0,121r-127,0r-244,379r285,442r127,0r0,121r-609,0r0,-121r123,0r-180,-280r-180,280r128,0r0,121r-394,0r0,-121r137,0r254,-397r-275,-424r-107,0r0,-121r584,0r0,121r-116,0","w":1098},"y":{"d":"306,455v-78,0,-146,-20,-216,-43r0,-222r102,1v2,94,35,149,123,151v39,0,70,-14,95,-36v28,-25,64,-108,86,-171r-417,-1077r-103,0r0,-121r551,0r0,121r-114,0r243,629r227,-629r-127,0r0,-121r359,0r0,121r-116,0r-424,1182v-29,78,-63,133,-104,166v-41,33,-96,49,-165,49","w":1071},"z":{"d":"65,0r0,-121r549,-825r-413,0r0,182r-107,0r0,-299r891,0r0,119r-550,825r443,0r0,-192r107,0r0,311r-920,0","w":1046},"{":{"d":"752,-16v4,166,23,224,175,229r93,0r0,121v-135,1,-363,-2,-420,-24v-78,-31,-138,-85,-156,-178v-19,-99,-9,-289,-11,-417v-3,-193,-40,-262,-223,-266r-55,0r0,-121r55,0v183,-4,223,-74,223,-266r0,-250v1,-129,3,-191,49,-258v28,-41,70,-67,118,-86v57,-22,285,-25,420,-24r0,120r-93,0v-153,4,-175,63,-175,230r0,270v-2,210,-43,278,-205,324v163,51,205,111,205,325r0,271","w":1185},"|":{"d":"431,-1565r0,2048r-193,0r0,-2048r193,0","w":670},"}":{"d":"975,-551v-182,4,-223,74,-223,266r0,250v-1,128,-3,192,-48,258v-29,42,-71,68,-119,87v-57,22,-283,25,-418,24r0,-121r91,0v151,-4,175,-63,175,-229r0,-271v3,-212,44,-274,207,-325v-163,-46,-207,-114,-207,-324r0,-270v-3,-167,-23,-225,-175,-230r-91,0r0,-120v135,-1,361,2,418,24v79,30,138,85,156,178v18,99,9,289,11,416v3,192,41,262,223,266r55,0r0,121r-55,0","w":1185},"~":{"d":"1349,-831r0,206v-56,57,-111,101,-168,127v-142,65,-238,51,-397,-17v-90,-39,-223,-83,-283,-83v-46,0,-94,12,-144,36v-50,24,-104,60,-162,109r0,-206v58,-58,114,-101,170,-127v140,-64,238,-52,395,16v91,40,222,84,283,84v46,0,95,-12,145,-36v50,-24,104,-60,161,-109","w":1544},"\u00a0":{"w":641},"\u00a1":{"d":"404,-1520v94,0,171,94,171,191v0,98,-77,188,-171,188v-95,0,-170,-90,-170,-188v0,-98,75,-191,170,-191xm573,0r-337,0r105,-842r0,-190r125,0r0,190","w":809},"\u00a2":{"d":"665,-94r0,-875v-59,17,-100,59,-128,125v-50,115,-50,508,-1,623v28,66,69,109,129,127xm774,-88v116,-24,174,-111,186,-244r150,0v-36,197,-142,327,-336,355r0,276r-109,0r0,-270v-333,-6,-521,-217,-521,-561v0,-345,188,-552,521,-560r0,-264r109,0r0,269v108,11,193,41,304,79r0,295r-102,0v-16,-152,-67,-246,-202,-266r0,891"},"\u00a3":{"d":"793,-1520v109,1,214,17,329,35r0,283r-108,0v-5,-117,-58,-205,-170,-205v-70,0,-120,25,-151,75v-31,50,-46,132,-46,249r0,268r317,0r0,121r-317,0r0,557r378,0r0,-228r123,0r0,365r-1016,0r0,-121r174,0r0,-573r-174,0r0,-121r174,0r0,-277v2,-302,172,-430,487,-428"},"\u00a4":{"d":"391,-641v0,117,84,219,197,219v111,0,197,-104,197,-219v0,-115,-86,-219,-197,-219v-111,0,-197,104,-197,219xm588,-213v-79,0,-141,-23,-196,-55r-188,207r-136,-154r188,-209v-34,-59,-54,-127,-54,-217v0,-88,21,-159,54,-217r-188,-205r138,-158r186,211v53,-36,113,-59,196,-59v80,0,140,25,199,59r184,-211r137,154r-188,205v31,65,53,135,53,221v0,90,-19,156,-53,215r188,211r-140,154r-187,-211v-50,37,-111,59,-193,59","w":1172},"\u00a5":{"d":"293,0r0,-121r171,0r0,-346r-362,0r0,-117r362,0r0,-59r-54,-135r-308,0r0,-117r257,0r-201,-477r-123,0r0,-121r625,0r0,121r-153,0r232,551r230,-551r-136,0r0,-121r393,0r0,121r-122,0r-199,477r263,0r0,117r-315,0r-47,116r0,78r362,0r0,117r-362,0r0,346r170,0r0,121r-683,0"},"\u00a6":{"d":"431,-1432r0,758r-193,0r0,-758r193,0xm431,-408r0,758r-193,0r0,-758r193,0","w":670},"\u00a7":{"d":"490,-1520v112,1,212,21,317,45r0,240r-107,0v-6,-113,-68,-172,-186,-172v-94,-1,-155,50,-155,141v0,31,9,58,25,80v36,48,160,112,226,152v112,67,192,126,234,182v42,56,63,122,63,199v0,157,-82,244,-205,295v91,58,144,128,144,264v0,199,-158,291,-376,289v-119,-1,-223,-20,-330,-45r0,-240r107,0v10,120,67,171,196,172v99,1,162,-47,162,-143v0,-31,-8,-58,-24,-80v-36,-48,-161,-112,-227,-152v-112,-68,-192,-127,-234,-183v-42,-56,-63,-122,-63,-198v0,-157,84,-241,207,-293v-91,-56,-146,-130,-146,-264v0,-197,159,-292,372,-289xm607,-436v44,-39,82,-86,82,-156v0,-40,-13,-77,-41,-111v-54,-69,-202,-143,-292,-198v-45,38,-82,84,-82,156v0,41,14,78,41,112v54,70,201,142,292,197","w":963},"\u00a8":{"d":"260,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v73,0,131,71,131,146v0,75,-60,147,-131,147xm662,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v72,0,133,71,133,146v0,74,-61,147,-133,147","w":921},"\u00a9":{"d":"666,-1430v155,-72,355,-72,510,0v157,73,302,235,364,404v63,171,64,397,0,568v-63,169,-207,330,-364,403v-156,72,-355,72,-510,0v-157,-73,-299,-234,-362,-403v-64,-171,-63,-397,0,-568v62,-169,205,-331,362,-404xm1124,-1288v-123,-57,-282,-57,-404,0v-124,57,-239,186,-289,320v-51,135,-51,317,0,452v50,134,163,262,288,319v123,56,284,57,406,1v123,-56,237,-187,287,-320v51,-135,51,-317,0,-452v-50,-134,-164,-263,-288,-320xm953,-399v106,0,151,-81,175,-181r124,0v-30,176,-132,278,-329,279v-234,1,-378,-194,-378,-440v0,-254,144,-445,387,-443v117,1,205,32,294,76r0,223r-95,0v-12,-110,-68,-200,-178,-200v-62,0,-109,31,-147,91v-70,110,-70,394,0,504v37,59,84,91,147,91","w":1843},"\u00aa":{"d":"102,-639r718,0r0,135r-718,0r0,-135xm391,-1520v242,1,370,79,370,308r0,362r104,0r0,94r-341,0r0,-92v-56,69,-124,110,-239,111v-148,1,-232,-87,-230,-236v3,-190,135,-254,343,-254r126,0v7,-133,-44,-208,-170,-207v-93,0,-145,45,-157,127r-86,0r0,-166v82,-29,173,-47,280,-47xm400,-864v77,0,124,-57,124,-137r0,-132r-91,0v-86,-1,-140,54,-140,140v0,77,34,129,107,129","w":897},"\u00ab":{"d":"978,-1069r0,147r-215,322r215,321r0,148r-422,-385r0,-168xm564,-1069r0,147r-216,322r216,321r0,148r-422,-385r0,-168","w":1152},"\u00ac":{"d":"195,-903r1154,0r0,616r-206,0r0,-389r-948,0r0,-227","w":1544},"\u00ad":{"d":"100,-684r565,0r0,270r-565,0r0,-270","w":765},"\u00ae":{"d":"1224,-954v0,121,-63,189,-175,200v51,17,85,55,107,105r90,215r54,0r0,82r-201,0r-105,-254v-19,-45,-38,-76,-56,-90v-21,-18,-57,-23,-99,-21r0,283r77,0r0,82r-332,0r0,-82r78,0r0,-643r-78,0r0,-82r408,0v137,-2,232,74,232,205xm1047,-938v0,-91,-56,-140,-148,-139r-60,0r0,278r60,0v92,1,148,-48,148,-139xm666,-1430v155,-72,355,-72,510,0v157,73,302,235,364,404v63,171,64,397,0,568v-63,169,-207,330,-364,403v-156,72,-355,72,-510,0v-157,-73,-299,-234,-362,-403v-64,-171,-63,-397,0,-568v62,-169,205,-331,362,-404xm1124,-1288v-123,-57,-282,-57,-404,0v-124,57,-239,186,-289,320v-51,135,-51,317,0,452v50,134,163,262,288,319v123,56,284,57,406,1v123,-56,237,-187,287,-320v51,-135,51,-317,0,-452v-50,-134,-164,-263,-288,-320","w":1843},"\u00af":{"d":"177,-1548r567,0r0,188r-567,0r0,-188","w":921},"\u00b0":{"d":"160,-1200v0,-216,199,-407,415,-308v107,49,185,155,185,308v0,152,-78,258,-184,306v-216,97,-416,-88,-416,-306xm616,-1200v0,-90,-69,-172,-155,-172v-87,0,-155,82,-155,172v0,91,66,170,155,170v87,0,155,-81,155,-170","w":921},"\u00b1":{"d":"195,-227r1154,0r0,227r-1154,0r0,-227xm876,-1284r0,358r473,0r0,228r-473,0r0,358r-207,0r0,-358r-474,0r0,-228r474,0r0,-358r207,0","w":1544},"\u00b2":{"d":"311,-1436v-82,0,-136,70,-142,152r-84,0r0,-195v149,-51,411,-63,525,23v59,44,90,102,90,178v0,55,-16,103,-49,146v-71,94,-288,214,-410,294r373,0r0,-96r90,0r0,250r-627,0r0,-133r117,-84v112,-82,183,-146,213,-193v30,-47,45,-101,45,-163v1,-103,-46,-179,-141,-179","w":807},"\u00b3":{"d":"457,-1303v0,-84,-50,-134,-135,-133v-82,0,-131,57,-136,137r-86,1r0,-183v90,-21,174,-39,271,-39v108,0,189,17,245,52v56,35,84,86,84,153v0,111,-79,164,-186,182v131,19,220,83,220,220v0,81,-31,141,-92,183v-119,83,-405,73,-561,19r0,-200r86,0v9,100,53,158,155,159v106,1,163,-60,163,-168v0,-107,-62,-168,-170,-167r-37,0r0,-84v108,6,179,-33,179,-132","w":807},"\u00b4":{"d":"544,-1638r251,0r-336,376r-148,0","w":921},"\u00b5":{"d":"617,29v-46,0,-78,-18,-110,-41r0,317r137,0r0,121r-593,0r0,-121r137,0r0,-1247r-137,0r0,-121r456,0r0,596v0,147,11,238,31,275v20,37,56,55,109,55v63,0,110,-26,140,-79v30,-53,45,-137,45,-251r0,-475r-118,0r0,-121r436,0r0,942r137,0r0,121r-455,0r0,-125v-33,55,-66,95,-99,119v-33,24,-71,35,-116,35","w":1349},"\u00b6":{"d":"132,-1071v-2,-252,175,-422,429,-422r499,0r0,125r-102,0r0,1565r-136,0r0,-1565r-147,0r0,1565r-137,0r0,-846v-244,-19,-404,-167,-406,-422","w":1172},"\u00b7":{"d":"320,-522v-94,0,-171,-92,-171,-189v0,-98,77,-190,171,-190v96,0,172,92,172,190v0,98,-76,189,-172,189","w":641},"\u00b8":{"d":"385,254v67,0,111,-28,111,-92v0,-19,-5,-39,-15,-61v-10,-22,-30,-56,-61,-101r115,0v57,70,109,126,109,225v0,124,-93,177,-226,176v-65,0,-125,-11,-181,-26r-1,-156v44,19,95,34,149,35","w":921},"\u00b9":{"d":"146,-684r0,-94r147,0r0,-613r-164,101r0,-105r199,-125r205,0r0,742r147,0r0,94r-534,0","w":807},"\u00ba":{"d":"102,-639r718,0r0,135r-718,0r0,-135xm461,-823v45,0,77,-25,99,-71v39,-80,38,-390,0,-469v-23,-46,-54,-71,-99,-71v-46,0,-77,24,-99,70v-38,77,-38,394,0,471v22,46,53,70,99,70xm867,-1128v0,245,-157,391,-406,391v-249,0,-406,-146,-406,-391v0,-245,157,-392,406,-392v249,0,406,147,406,392","w":921},"\u00bb":{"d":"174,-1069r422,385r0,168r-422,385r0,-148r215,-321r-215,-322r0,-147xm588,-1069r422,385r0,168r-422,385r0,-148r216,-321r-216,-322r0,-147","w":1152},"\u00bc":{"d":"146,-684r0,-94r147,0r0,-613r-164,101r0,-105r199,-125r205,0r0,742r147,0r0,94r-534,0xm1839,-16r-466,0r0,-94r113,0r0,-121r-327,0r0,-88r341,-533r227,0r0,527r132,0r0,94r-132,0r0,121r112,0r0,94xm1486,-325r0,-334r-216,334r216,0xm1305,-1520r153,0r-841,1549r-153,0","w":1922},"\u00bd":{"d":"1426,-768v-82,0,-136,70,-142,152r-84,0r0,-195v149,-51,411,-63,525,23v59,44,90,102,90,178v0,55,-16,103,-49,146v-71,94,-288,214,-410,294r373,0r0,-96r90,0r0,250r-627,0r0,-133r117,-84v112,-82,183,-146,213,-193v30,-47,45,-101,45,-163v1,-103,-46,-179,-141,-179xm146,-684r0,-94r147,0r0,-613r-164,101r0,-105r199,-125r205,0r0,742r147,0r0,94r-534,0xm1305,-1520r153,0r-841,1549r-153,0","w":1922},"\u00be":{"d":"457,-1303v0,-84,-50,-134,-135,-133v-82,0,-131,57,-136,137r-86,1r0,-183v90,-21,174,-39,271,-39v108,0,189,17,245,52v56,35,84,86,84,153v0,111,-79,164,-186,182v131,19,220,83,220,220v0,81,-31,141,-92,183v-119,83,-405,73,-561,19r0,-200r86,0v9,100,53,158,155,159v106,1,163,-60,163,-168v0,-107,-62,-168,-170,-167r-37,0r0,-84v108,6,179,-33,179,-132xm1839,-16r-466,0r0,-94r113,0r0,-121r-327,0r0,-88r341,-533r227,0r0,527r132,0r0,94r-132,0r0,121r112,0r0,94xm1486,-325r0,-334r-216,334r216,0xm1305,-1520r153,0r-841,1549r-153,0","w":1922},"\u00bf":{"d":"601,-1520v94,0,171,94,171,191v0,98,-77,188,-171,188v-95,0,-170,-90,-170,-188v0,-98,75,-191,170,-191xm638,-84v148,0,204,-108,214,-262r108,0r0,307v-129,39,-256,67,-407,68v-291,2,-470,-144,-470,-426v1,-284,179,-433,455,-453r0,-205r125,0r0,299v-162,56,-242,169,-243,381v0,175,58,291,218,291","w":1080},"\u00c0":{"d":"-14,0r0,-121r109,0r506,-1372r215,0r507,1372r128,0r0,121r-629,0r0,-121r131,0r-111,-305r-504,0r-113,305r160,0r0,121r-399,0xm382,-547r416,0r-207,-571xm681,-1899r164,264r-148,0r-267,-264r251,0","w":1430},"\u00c1":{"d":"-14,0r0,-121r109,0r506,-1372r215,0r507,1372r128,0r0,121r-629,0r0,-121r131,0r-111,-305r-504,0r-113,305r160,0r0,121r-399,0xm382,-547r416,0r-207,-571xm710,-1899r251,0r-268,264r-147,0","w":1430},"\u00c2":{"d":"-14,0r0,-121r109,0r506,-1372r215,0r507,1372r128,0r0,121r-629,0r0,-121r131,0r-111,-305r-504,0r-113,305r160,0r0,121r-399,0xm382,-547r416,0r-207,-571xm557,-1899r277,0r200,264r-147,0r-192,-161r-191,161r-148,0","w":1430},"\u00c3":{"d":"-14,0r0,-121r109,0r506,-1372r215,0r507,1372r128,0r0,121r-629,0r0,-121r131,0r-111,-305r-504,0r-113,305r160,0r0,121r-399,0xm382,-547r416,0r-207,-571xm593,-1726v-71,-24,-125,18,-121,91r-99,0v-2,-154,50,-264,187,-268v79,-1,173,72,245,95v66,21,117,-23,113,-93r99,0v4,154,-48,267,-187,268v-97,0,-157,-66,-237,-93","w":1430},"\u00c4":{"d":"-14,0r0,-121r109,0r506,-1372r215,0r507,1372r128,0r0,121r-629,0r0,-121r131,0r-111,-305r-504,0r-113,305r160,0r0,121r-399,0xm382,-547r416,0r-207,-571xm494,-1630v-72,0,-133,-71,-133,-146v0,-75,61,-147,133,-147v73,0,131,73,131,147v0,75,-58,146,-131,146xm896,-1630v-72,0,-132,-71,-132,-146v0,-75,59,-147,132,-147v72,0,133,72,133,147v0,75,-61,146,-133,146","w":1430},"\u00c5":{"d":"709,-1747v-63,0,-118,64,-118,131v0,67,54,131,118,131v67,0,119,-63,119,-131v0,-68,-53,-131,-119,-131xm966,-1616v-2,107,-43,184,-109,232r466,1263r128,0r0,121r-629,0r0,-121r131,0r-111,-305r-504,0r-113,305r160,0r0,121r-399,0r0,-121r109,0r467,-1263v-65,-45,-106,-127,-108,-232v-3,-146,114,-285,255,-285v142,0,260,139,257,285xm382,-547r416,0r-205,-571","w":1430},"\u00c6":{"d":"361,-545r418,0r0,-827r-67,0xm608,0r0,-121r171,0r0,-303r-469,0r-129,303r147,0r0,121r-385,0r0,-121r103,0r533,-1251r-181,0r0,-121r1396,0r0,352r-124,0r0,-215r-542,0r0,479r330,0r0,-190r122,0r0,516r-122,0r0,-190r-330,0r0,604r560,0r0,-215r122,0r0,352r-1202,0","w":1906},"\u00c7":{"d":"715,254v67,0,111,-28,111,-92v0,-19,-5,-39,-15,-61v-10,-22,-30,-56,-61,-101r115,0v57,70,109,126,109,225v0,124,-93,177,-226,176v-65,0,-125,-11,-181,-26r-1,-156v44,19,95,34,149,35xm813,-1520v200,2,362,57,523,129r0,367r-114,0v-23,-125,-66,-220,-128,-282v-62,-62,-143,-93,-244,-93v-131,0,-229,54,-292,161v-63,107,-95,271,-95,493v0,222,32,386,95,493v63,107,161,160,293,160v90,0,163,-28,220,-83v57,-55,98,-139,123,-251r179,0v-67,288,-226,451,-560,455v-457,4,-736,-311,-736,-774v0,-464,278,-780,736,-775","w":1467},"\u00c8":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r1208,0r0,352r-124,0r0,-215r-565,0r0,479r352,0r0,-190r123,0r0,516r-123,0r0,-190r-352,0r0,604r582,0r0,-215r123,0r0,352r-1224,0xm719,-1899r164,264r-148,0r-267,-264r251,0","w":1404},"\u00c9":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r1208,0r0,352r-124,0r0,-215r-565,0r0,479r352,0r0,-190r123,0r0,516r-123,0r0,-190r-352,0r0,604r582,0r0,-215r123,0r0,352r-1224,0xm748,-1899r251,0r-268,264r-147,0","w":1404},"\u00ca":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r1208,0r0,352r-124,0r0,-215r-565,0r0,479r352,0r0,-190r123,0r0,516r-123,0r0,-190r-352,0r0,604r582,0r0,-215r123,0r0,352r-1224,0xm595,-1899r277,0r200,264r-147,0r-192,-161r-191,161r-148,0","w":1404},"\u00cb":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r1208,0r0,352r-124,0r0,-215r-565,0r0,479r352,0r0,-190r123,0r0,516r-123,0r0,-190r-352,0r0,604r582,0r0,-215r123,0r0,352r-1224,0xm532,-1630v-72,0,-133,-71,-133,-146v0,-75,61,-147,133,-147v73,0,131,73,131,147v0,75,-58,146,-131,146xm934,-1630v-72,0,-132,-71,-132,-146v0,-75,59,-147,132,-147v72,0,133,72,133,147v0,75,-61,146,-133,146","w":1404},"\u00cc":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r692,0r0,121r-173,0r0,1251r173,0r0,121r-692,0xm417,-1899r164,264r-148,0r-267,-264r251,0","w":862},"\u00cd":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r692,0r0,121r-173,0r0,1251r173,0r0,121r-692,0xm446,-1899r251,0r-268,264r-147,0","w":862},"\u00ce":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r692,0r0,121r-173,0r0,1251r173,0r0,121r-692,0xm293,-1899r277,0r200,264r-147,0r-192,-161r-191,161r-148,0","w":862},"\u00cf":{"d":"86,0r0,-121r172,0r0,-1251r-172,0r0,-121r692,0r0,121r-173,0r0,1251r173,0r0,121r-692,0xm230,-1630v-72,0,-133,-71,-133,-146v0,-75,61,-147,133,-147v73,0,131,73,131,147v0,75,-58,146,-131,146xm632,-1630v-72,0,-132,-71,-132,-146v0,-75,59,-147,132,-147v72,0,133,72,133,147v0,75,-61,146,-133,146","w":862},"\u00d0":{"d":"617,-121r125,0v141,0,243,-49,308,-149v65,-100,97,-259,97,-478v0,-217,-32,-376,-97,-475v-65,-99,-167,-149,-308,-149r-125,0r0,522r299,0r0,137r-299,0r0,592xm1532,-748v0,481,-264,748,-743,748r-691,0r0,-121r173,0r0,-592r-192,0r0,-137r192,0r0,-522r-173,0r0,-121r691,0v479,-2,743,265,743,745","w":1611},"\u00d1":{"d":"81,0r0,-121r172,0r0,-1251r-172,0r0,-121r420,0r811,1057r0,-936r-171,0r0,-121r470,0r0,121r-172,0r0,1372r-236,0r-823,-1079r0,958r171,0r0,121r-470,0xm740,-1726v-71,-24,-125,18,-121,91r-99,0v-3,-154,49,-264,187,-268v79,-1,173,72,245,95v66,21,117,-23,113,-93r99,0v4,154,-48,267,-187,268v-98,0,-156,-66,-237,-93","w":1684},"\u00d2":{"d":"802,-92v115,0,200,-54,256,-161v56,-107,83,-271,83,-492v0,-221,-27,-386,-83,-493v-56,-107,-141,-161,-256,-161v-114,0,-199,55,-255,163v-56,108,-84,272,-84,491v0,219,28,383,84,491v56,108,141,162,255,162xm1526,-745v0,467,-267,774,-724,774v-458,0,-725,-307,-725,-774v0,-467,268,-775,725,-775v459,0,724,307,724,775xm789,-1899r164,264r-148,0r-267,-264r251,0","w":1605},"\u00d3":{"d":"802,-92v115,0,200,-54,256,-161v56,-107,83,-271,83,-492v0,-221,-27,-386,-83,-493v-56,-107,-141,-161,-256,-161v-114,0,-199,55,-255,163v-56,108,-84,272,-84,491v0,219,28,383,84,491v56,108,141,162,255,162xm1526,-745v0,467,-267,774,-724,774v-458,0,-725,-307,-725,-774v0,-467,268,-775,725,-775v459,0,724,307,724,775xm818,-1899r251,0r-268,264r-147,0","w":1605},"\u00d4":{"d":"802,-92v115,0,200,-54,256,-161v56,-107,83,-271,83,-492v0,-221,-27,-386,-83,-493v-56,-107,-141,-161,-256,-161v-114,0,-199,55,-255,163v-56,108,-84,272,-84,491v0,219,28,383,84,491v56,108,141,162,255,162xm1526,-745v0,467,-267,774,-724,774v-458,0,-725,-307,-725,-774v0,-467,268,-775,725,-775v459,0,724,307,724,775xm665,-1899r277,0r200,264r-147,0r-192,-161r-191,161r-148,0","w":1605},"\u00d5":{"d":"802,-92v115,0,200,-54,256,-161v56,-107,83,-271,83,-492v0,-221,-27,-386,-83,-493v-56,-107,-141,-161,-256,-161v-114,0,-199,55,-255,163v-56,108,-84,272,-84,491v0,219,28,383,84,491v56,108,141,162,255,162xm1526,-745v0,467,-267,774,-724,774v-458,0,-725,-307,-725,-774v0,-467,268,-775,725,-775v459,0,724,307,724,775xm701,-1726v-71,-24,-125,18,-121,91r-99,0v-2,-154,50,-264,187,-268v79,-1,173,72,245,95v66,21,117,-23,113,-93r99,0v4,154,-48,267,-187,268v-97,0,-157,-66,-237,-93","w":1605},"\u00d6":{"d":"802,-92v115,0,200,-54,256,-161v56,-107,83,-271,83,-492v0,-221,-27,-386,-83,-493v-56,-107,-141,-161,-256,-161v-114,0,-199,55,-255,163v-56,108,-84,272,-84,491v0,219,28,383,84,491v56,108,141,162,255,162xm1526,-745v0,467,-267,774,-724,774v-458,0,-725,-307,-725,-774v0,-467,268,-775,725,-775v459,0,724,307,724,775xm602,-1630v-72,0,-133,-71,-133,-146v0,-75,61,-147,133,-147v73,0,131,73,131,147v0,75,-58,146,-131,146xm1004,-1630v-72,0,-132,-71,-132,-146v0,-75,59,-147,132,-147v72,0,133,72,133,147v0,75,-61,146,-133,146","w":1605},"\u00d7":{"d":"1307,-1081r-396,440r396,440r-139,154r-396,-440r-396,440r-138,-154r396,-440r-396,-440r138,-156r396,440r396,-440","w":1544},"\u00d8":{"d":"1091,-1157v-44,-138,-128,-242,-289,-242v-114,0,-199,55,-255,163v-56,108,-84,272,-84,491v0,98,5,185,19,266xm514,-334v27,81,64,142,112,182v48,40,107,60,176,60v117,0,200,-57,258,-167v63,-119,97,-399,78,-641v-3,-34,-10,-64,-18,-93xm802,-1520v204,1,360,57,477,154r183,-203r81,90r-179,199v104,133,160,306,162,535v4,467,-267,777,-724,774v-203,-1,-359,-59,-476,-156r-184,205r-81,-90r180,-201v-105,-130,-162,-305,-164,-532v-4,-467,268,-778,725,-775","w":1605},"\u00d9":{"d":"814,29v-433,0,-580,-190,-580,-635r0,-766r-171,0r0,-121r691,0r0,121r-172,0r0,747v0,186,26,317,78,391v52,74,142,111,269,111v123,0,211,-38,263,-113v52,-75,78,-204,78,-389r0,-747r-171,0r0,-121r468,0r0,121r-172,0r0,768v-4,448,-144,633,-581,633xm835,-1899r164,264r-148,0r-267,-264r251,0","w":1607},"\u00da":{"d":"814,29v-433,0,-580,-190,-580,-635r0,-766r-171,0r0,-121r691,0r0,121r-172,0r0,747v0,186,26,317,78,391v52,74,142,111,269,111v123,0,211,-38,263,-113v52,-75,78,-204,78,-389r0,-747r-171,0r0,-121r468,0r0,121r-172,0r0,768v-4,448,-144,633,-581,633xm864,-1899r251,0r-268,264r-147,0","w":1607},"\u00db":{"d":"814,29v-433,0,-580,-190,-580,-635r0,-766r-171,0r0,-121r691,0r0,121r-172,0r0,747v0,186,26,317,78,391v52,74,142,111,269,111v123,0,211,-38,263,-113v52,-75,78,-204,78,-389r0,-747r-171,0r0,-121r468,0r0,121r-172,0r0,768v-4,448,-144,633,-581,633xm711,-1899r277,0r200,264r-147,0r-192,-161r-191,161r-148,0","w":1607},"\u00dc":{"d":"814,29v-433,0,-580,-190,-580,-635r0,-766r-171,0r0,-121r691,0r0,121r-172,0r0,747v0,186,26,317,78,391v52,74,142,111,269,111v123,0,211,-38,263,-113v52,-75,78,-204,78,-389r0,-747r-171,0r0,-121r468,0r0,121r-172,0r0,768v-4,448,-144,633,-581,633xm648,-1630v-72,0,-133,-71,-133,-146v0,-75,61,-147,133,-147v73,0,131,73,131,147v0,75,-58,146,-131,146xm1050,-1630v-72,0,-132,-71,-132,-146v0,-75,59,-147,132,-147v72,0,133,72,133,147v0,75,-61,146,-133,146","w":1607},"\u00dd":{"d":"317,0r0,-121r181,0r0,-497r-400,-754r-114,0r0,-121r644,0r0,121r-149,0r302,569r301,-569r-134,0r0,-121r385,0r0,121r-114,0r-373,702r0,549r181,0r0,121r-710,0xm673,-1899r251,0r-268,264r-147,0","w":1315},"\u00de":{"d":"1340,-766v0,273,-206,443,-489,438r-246,0r0,207r217,0r0,121r-736,0r0,-121r172,0r0,-1251r-172,0r0,-121r734,0r0,121r-215,0r0,170r246,0v285,-5,489,163,489,436xm962,-766v0,-177,-89,-315,-256,-315r-101,0r0,632r101,0v166,0,256,-140,256,-317","w":1395},"\u00df":{"d":"608,-889v0,-198,113,-292,289,-332v-10,-154,-43,-223,-193,-223v-147,0,-186,91,-186,254r0,1190r-455,0r0,-121r136,0r0,-1026v2,-285,192,-411,494,-409v325,2,470,140,503,440v-98,-2,-179,15,-230,46v-67,41,-94,133,-52,208v22,39,124,116,175,157v106,85,174,154,203,207v29,53,44,115,44,187v-2,229,-179,343,-425,340v-119,-1,-218,-26,-320,-60r0,-258r109,0v15,128,56,202,185,205v91,2,153,-67,153,-160v0,-70,-49,-144,-148,-222r-109,-87v-106,-88,-173,-167,-173,-336","w":1400},"\u00e0":{"d":"457,-1638r232,376r-147,0r-336,-376r251,0xm520,-1092v330,1,495,121,495,439r0,532r137,0r0,121r-455,0r0,-135v-75,99,-162,163,-317,164v-202,2,-306,-129,-304,-338v3,-259,174,-358,453,-357r168,0r0,-63v0,-166,-65,-252,-225,-252v-140,0,-192,63,-221,186r-102,0r0,-229v109,-43,226,-68,371,-68xm533,-137v104,2,164,-87,164,-197r0,-213r-120,0v-123,0,-186,81,-185,209v0,120,34,199,141,201","w":1194},"\u00e1":{"d":"623,-1638r251,0r-336,376r-148,0xm520,-1092v330,1,495,121,495,439r0,532r137,0r0,121r-455,0r0,-135v-75,99,-162,163,-317,164v-202,2,-306,-129,-304,-338v3,-259,174,-358,453,-357r168,0r0,-63v0,-166,-65,-252,-225,-252v-140,0,-192,63,-221,186r-102,0r0,-229v109,-43,226,-68,371,-68xm533,-137v104,2,164,-87,164,-197r0,-213r-120,0v-123,0,-186,81,-185,209v0,120,34,199,141,201","w":1194},"\u00e2":{"d":"431,-1638r218,0r230,376r-148,0r-191,-225r-192,225r-147,0xm520,-1092v330,1,495,121,495,439r0,532r137,0r0,121r-455,0r0,-135v-75,99,-162,163,-317,164v-202,2,-306,-129,-304,-338v3,-259,174,-358,453,-357r168,0r0,-63v0,-166,-65,-252,-225,-252v-140,0,-192,63,-221,186r-102,0r0,-229v109,-43,226,-68,371,-68xm533,-137v104,2,164,-87,164,-197r0,-213r-120,0v-123,0,-186,81,-185,209v0,120,34,199,141,201","w":1194},"\u00e3":{"d":"398,-1440v-58,2,-82,63,-81,131r-99,0v-1,-101,15,-185,48,-237v42,-67,120,-94,204,-64v45,17,99,63,140,92v27,19,51,29,72,29v58,-2,82,-63,81,-131r99,0v1,101,-15,185,-48,238v-41,67,-121,93,-204,62v-43,-16,-100,-60,-139,-90v-27,-21,-52,-30,-73,-30xm520,-1092v330,1,495,121,495,439r0,532r137,0r0,121r-455,0r0,-135v-75,99,-162,163,-317,164v-202,2,-306,-129,-304,-338v3,-259,174,-358,453,-357r168,0r0,-63v0,-166,-65,-252,-225,-252v-140,0,-192,63,-221,186r-102,0r0,-229v109,-43,226,-68,371,-68xm533,-137v104,2,164,-87,164,-197r0,-213r-120,0v-123,0,-186,81,-185,209v0,120,34,199,141,201","w":1194},"\u00e4":{"d":"339,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v73,0,131,71,131,146v0,75,-60,147,-131,147xm741,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v72,0,133,71,133,146v0,74,-61,147,-133,147xm520,-1092v330,1,495,121,495,439r0,532r137,0r0,121r-455,0r0,-135v-75,99,-162,163,-317,164v-202,2,-306,-129,-304,-338v3,-259,174,-358,453,-357r168,0r0,-63v0,-166,-65,-252,-225,-252v-140,0,-192,63,-221,186r-102,0r0,-229v109,-43,226,-68,371,-68xm533,-137v104,2,164,-87,164,-197r0,-213r-120,0v-123,0,-186,81,-185,209v0,120,34,199,141,201","w":1194},"\u00e5":{"d":"520,-1092v330,1,495,121,495,439r0,532r137,0r0,121r-455,0r0,-135v-75,99,-162,163,-317,164v-202,2,-306,-129,-304,-338v3,-259,174,-358,453,-357r168,0r0,-63v0,-166,-65,-252,-225,-252v-140,0,-192,63,-221,186r-102,0r0,-229v109,-43,226,-68,371,-68xm533,-137v104,2,164,-87,164,-197r0,-213r-120,0v-123,0,-186,81,-185,209v0,120,34,199,141,201xm540,-1249v-142,0,-257,-138,-257,-285v0,-148,115,-285,257,-285v143,0,256,138,256,285v0,147,-113,285,-256,285xm540,-1665v-66,0,-118,62,-118,131v0,69,51,131,118,131v66,0,118,-62,118,-131v0,-68,-54,-131,-118,-131","w":1194},"\u00e6":{"d":"1362,-600v0,-140,-12,-238,-35,-294v-23,-56,-63,-85,-120,-85v-55,0,-93,28,-117,83v-24,55,-37,167,-36,296r308,0xm520,-1092v172,1,283,54,358,156v82,-92,180,-156,335,-156v158,0,279,52,364,155v85,103,130,255,135,456r-658,0v-1,138,18,244,56,305v37,61,98,92,181,92v150,0,225,-96,246,-238r151,0v-51,238,-192,351,-475,351v-174,0,-292,-58,-378,-156v-95,93,-211,154,-381,156v-238,2,-377,-109,-378,-338v0,-120,38,-210,114,-269v76,-59,193,-88,348,-88r168,0r0,-63v2,-151,-89,-251,-238,-250v-137,2,-189,64,-217,184r-102,0r0,-229v109,-43,226,-68,371,-68xm544,-115v113,0,162,-91,162,-215r0,-217r-120,0v-137,1,-194,79,-194,223v1,136,30,209,152,209","w":1797},"\u00e7":{"d":"510,254v67,0,111,-28,111,-92v0,-19,-5,-39,-15,-61v-10,-22,-30,-56,-61,-101r115,0v57,70,109,126,109,225v0,124,-93,177,-226,176v-65,0,-125,-11,-181,-26r-1,-156v44,19,95,34,149,35xm665,-84v142,0,212,-105,225,-248r150,0v-44,229,-169,359,-428,361v-344,2,-536,-213,-536,-561v0,-341,190,-562,523,-560v155,1,286,35,409,84r0,295r-101,0v-9,-90,-33,-157,-71,-201v-38,-44,-91,-65,-159,-65v-89,0,-151,33,-189,100v-38,67,-57,182,-57,347v0,161,18,275,55,344v37,69,96,104,179,104","w":1122},"\u00e8":{"d":"503,-1638r232,376r-147,0r-336,-376r251,0xm739,-600v0,-140,-12,-238,-35,-294v-23,-56,-63,-85,-120,-85v-55,0,-94,28,-118,83v-24,55,-36,167,-35,296r308,0xm76,-532v0,-340,183,-561,514,-560v158,0,279,52,364,156v85,104,130,255,135,455r-658,0v-1,138,18,244,56,305v37,61,97,92,180,92v150,-2,228,-97,249,-238r150,0v-52,237,-193,350,-476,351v-340,1,-514,-213,-514,-561","w":1172},"\u00e9":{"d":"669,-1638r251,0r-336,376r-148,0xm739,-600v0,-140,-12,-238,-35,-294v-23,-56,-63,-85,-120,-85v-55,0,-94,28,-118,83v-24,55,-36,167,-35,296r308,0xm76,-532v0,-340,183,-561,514,-560v158,0,279,52,364,156v85,104,130,255,135,455r-658,0v-1,138,18,244,56,305v37,61,97,92,180,92v150,-2,228,-97,249,-238r150,0v-52,237,-193,350,-476,351v-340,1,-514,-213,-514,-561","w":1172},"\u00ea":{"d":"477,-1638r218,0r230,376r-148,0r-191,-225r-192,225r-147,0xm739,-600v0,-140,-12,-238,-35,-294v-23,-56,-63,-85,-120,-85v-55,0,-94,28,-118,83v-24,55,-36,167,-35,296r308,0xm76,-532v0,-340,183,-561,514,-560v158,0,279,52,364,156v85,104,130,255,135,455r-658,0v-1,138,18,244,56,305v37,61,97,92,180,92v150,-2,228,-97,249,-238r150,0v-52,237,-193,350,-476,351v-340,1,-514,-213,-514,-561","w":1172},"\u00eb":{"d":"385,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v73,0,131,71,131,146v0,75,-60,147,-131,147xm787,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v72,0,133,71,133,146v0,74,-61,147,-133,147xm739,-600v0,-140,-12,-238,-35,-294v-23,-56,-63,-85,-120,-85v-55,0,-94,28,-118,83v-24,55,-36,167,-35,296r308,0xm76,-532v0,-340,183,-561,514,-560v158,0,279,52,364,156v85,104,130,255,135,455r-658,0v-1,138,18,244,56,305v37,61,97,92,180,92v150,-2,228,-97,249,-238r150,0v-52,237,-193,350,-476,351v-340,1,-514,-213,-514,-561","w":1172},"\u00ec":{"d":"267,-1638r232,376r-147,0r-336,-376r251,0xm518,-121r136,0r0,121r-591,0r0,-121r136,0r0,-821r-136,0r0,-121r455,0r0,942","w":700},"\u00ed":{"d":"433,-1638r251,0r-336,376r-148,0xm518,-121r136,0r0,121r-591,0r0,-121r136,0r0,-821r-136,0r0,-121r455,0r0,942","w":700},"\u00ee":{"d":"241,-1638r218,0r230,376r-148,0r-191,-225r-192,225r-147,0xm518,-121r136,0r0,121r-591,0r0,-121r136,0r0,-821r-136,0r0,-121r455,0r0,942","w":700},"\u00ef":{"d":"149,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v73,0,131,71,131,146v0,75,-60,147,-131,147xm551,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v72,0,133,71,133,146v0,74,-61,147,-133,147xm518,-121r136,0r0,121r-591,0r0,-121r136,0r0,-821r-136,0r0,-121r455,0r0,942","w":700},"\u00f0":{"d":"287,-1556v165,22,308,71,419,145r297,-154r42,103r-239,125v113,99,200,217,260,351v60,134,90,277,90,429v0,353,-196,586,-540,586v-325,0,-540,-214,-540,-537v0,-296,215,-537,506,-532v57,0,108,10,155,24v-27,-89,-65,-159,-120,-225r-287,149r-45,-100r251,-131v-70,-57,-166,-96,-274,-123xm798,-508v0,-143,-15,-270,-44,-383v-45,-20,-85,-37,-138,-37v-67,0,-110,34,-142,96v-54,106,-53,550,0,653v32,62,75,95,142,95v67,0,114,-31,141,-94v27,-63,41,-173,41,-330","w":1229},"\u00f1":{"d":"513,-1440v-58,2,-82,63,-81,131r-99,0v-1,-101,14,-185,47,-237v42,-67,121,-94,205,-64v45,17,99,63,140,92v27,19,51,29,72,29v58,-2,82,-63,81,-131r99,0v1,101,-14,185,-47,238v-41,67,-123,93,-206,62v-43,-16,-99,-60,-138,-90v-27,-21,-52,-30,-73,-30xm835,-1092v233,0,326,165,326,416r0,555r137,0r0,121r-572,0r0,-121r116,0r0,-565v0,-90,-10,-153,-31,-188v-21,-35,-56,-52,-107,-52v-64,0,-111,26,-141,78v-30,52,-45,136,-45,250r0,477r116,0r0,121r-571,0r0,-121r136,0r0,-821r-136,0r0,-121r455,0r0,150v71,-115,147,-179,317,-179","w":1340},"\u00f2":{"d":"533,-1638r232,376r-147,0r-336,-376r251,0xm616,-84v67,0,114,-32,141,-96v27,-64,41,-181,41,-352v0,-171,-13,-288,-40,-352v-27,-64,-75,-95,-142,-95v-68,0,-116,33,-144,97v-28,64,-41,181,-41,350v0,169,13,286,41,351v28,65,76,97,144,97xm1156,-532v0,342,-203,561,-540,561v-338,0,-540,-219,-540,-561v0,-343,201,-560,540,-560v339,0,540,217,540,560","w":1229},"\u00f3":{"d":"699,-1638r251,0r-336,376r-148,0xm616,-84v67,0,114,-32,141,-96v27,-64,41,-181,41,-352v0,-171,-13,-288,-40,-352v-27,-64,-75,-95,-142,-95v-68,0,-116,33,-144,97v-28,64,-41,181,-41,350v0,169,13,286,41,351v28,65,76,97,144,97xm1156,-532v0,342,-203,561,-540,561v-338,0,-540,-219,-540,-561v0,-343,201,-560,540,-560v339,0,540,217,540,560","w":1229},"\u00f4":{"d":"507,-1638r218,0r230,376r-148,0r-191,-225r-192,225r-147,0xm616,-84v67,0,114,-32,141,-96v27,-64,41,-181,41,-352v0,-171,-13,-288,-40,-352v-27,-64,-75,-95,-142,-95v-68,0,-116,33,-144,97v-28,64,-41,181,-41,350v0,169,13,286,41,351v28,65,76,97,144,97xm1156,-532v0,342,-203,561,-540,561v-338,0,-540,-219,-540,-561v0,-343,201,-560,540,-560v339,0,540,217,540,560","w":1229},"\u00f5":{"d":"474,-1440v-58,2,-82,63,-81,131r-99,0v-1,-101,15,-185,48,-237v42,-67,120,-94,204,-64v45,17,99,63,140,92v27,19,51,29,72,29v58,-2,82,-63,81,-131r99,0v1,101,-15,185,-48,238v-41,67,-121,93,-204,62v-43,-16,-100,-60,-139,-90v-27,-21,-52,-30,-73,-30xm616,-84v67,0,114,-32,141,-96v27,-64,41,-181,41,-352v0,-171,-13,-288,-40,-352v-27,-64,-75,-95,-142,-95v-68,0,-116,33,-144,97v-28,64,-41,181,-41,350v0,169,13,286,41,351v28,65,76,97,144,97xm1156,-532v0,342,-203,561,-540,561v-338,0,-540,-219,-540,-561v0,-343,201,-560,540,-560v339,0,540,217,540,560","w":1229},"\u00f6":{"d":"415,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v73,0,131,71,131,146v0,75,-60,147,-131,147xm817,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v72,0,133,71,133,146v0,74,-61,147,-133,147xm616,-84v67,0,114,-32,141,-96v27,-64,41,-181,41,-352v0,-171,-13,-288,-40,-352v-27,-64,-75,-95,-142,-95v-68,0,-116,33,-144,97v-28,64,-41,181,-41,350v0,169,13,286,41,351v28,65,76,97,144,97xm1156,-532v0,342,-203,561,-540,561v-338,0,-540,-219,-540,-561v0,-343,201,-560,540,-560v339,0,540,217,540,560","w":1229},"\u00f7":{"d":"772,-862v-74,0,-134,-73,-134,-150v0,-76,60,-149,134,-149v75,0,135,72,135,149v0,78,-60,150,-135,150xm772,-123v-74,0,-134,-73,-134,-149v0,-77,60,-150,134,-150v75,0,135,72,135,150v0,77,-60,149,-135,149xm195,-756r1154,0r0,228r-1154,0r0,-228","w":1544},"\u00f8":{"d":"781,-801v-18,-105,-58,-178,-165,-178v-66,0,-113,31,-141,95v-28,64,-42,174,-42,331r0,137xm450,-262v17,105,58,178,166,178v65,0,112,-31,139,-94v27,-63,41,-173,41,-330r0,-141xm616,-1092v143,0,256,36,339,99r151,-168r78,86r-148,162v76,92,119,217,120,381v3,342,-203,564,-540,561v-144,-1,-250,-37,-340,-99r-154,172r-76,-86r148,-163v-75,-95,-117,-221,-118,-385v-3,-343,201,-562,540,-560","w":1229},"\u00f9":{"d":"554,-1638r232,376r-147,0r-336,-376r251,0xm505,29v-233,0,-326,-165,-326,-416r0,-555r-137,0r0,-121r456,0r0,621v0,132,10,216,30,252v20,36,55,53,108,53v65,0,112,-26,142,-79v30,-53,44,-136,44,-251r0,-475r-116,0r0,-121r435,0r0,942r136,0r0,121r-455,0r0,-150v-71,115,-147,179,-317,179","w":1340},"\u00fa":{"d":"720,-1638r251,0r-336,376r-148,0xm505,29v-233,0,-326,-165,-326,-416r0,-555r-137,0r0,-121r456,0r0,621v0,132,10,216,30,252v20,36,55,53,108,53v65,0,112,-26,142,-79v30,-53,44,-136,44,-251r0,-475r-116,0r0,-121r435,0r0,942r136,0r0,121r-455,0r0,-150v-71,115,-147,179,-317,179","w":1340},"\u00fb":{"d":"528,-1638r218,0r230,376r-148,0r-191,-225r-192,225r-147,0xm505,29v-233,0,-326,-165,-326,-416r0,-555r-137,0r0,-121r456,0r0,621v0,132,10,216,30,252v20,36,55,53,108,53v65,0,112,-26,142,-79v30,-53,44,-136,44,-251r0,-475r-116,0r0,-121r435,0r0,942r136,0r0,121r-455,0r0,-150v-71,115,-147,179,-317,179","w":1340},"\u00fc":{"d":"436,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v73,0,131,71,131,146v0,75,-60,147,-131,147xm838,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v72,0,133,71,133,146v0,74,-61,147,-133,147xm505,29v-233,0,-326,-165,-326,-416r0,-555r-137,0r0,-121r456,0r0,621v0,132,10,216,30,252v20,36,55,53,108,53v65,0,112,-26,142,-79v30,-53,44,-136,44,-251r0,-475r-116,0r0,-121r435,0r0,942r136,0r0,121r-455,0r0,-150v-71,115,-147,179,-317,179","w":1340},"\u00fd":{"d":"620,-1638r251,0r-336,376r-148,0xm306,455v-78,0,-146,-20,-216,-43r0,-222r102,1v2,94,35,149,123,151v39,0,70,-14,95,-36v28,-25,64,-108,86,-171r-417,-1077r-103,0r0,-121r551,0r0,121r-114,0r243,629r227,-629r-127,0r0,-121r359,0r0,121r-116,0r-424,1182v-29,78,-63,133,-104,166v-41,33,-96,49,-165,49","w":1071},"\u00fe":{"d":"540,-853v-37,66,-42,237,-42,374v0,124,14,214,42,269v28,55,75,83,139,83v65,0,108,-31,138,-88v50,-94,50,-540,0,-633v-30,-57,-73,-88,-138,-88v-64,0,-108,29,-139,83xm776,29v-145,-1,-228,-61,-278,-164r0,440r147,0r0,121r-603,0r0,-121r137,0r0,-1741r-137,0r0,-120r456,0r0,628v50,-104,133,-164,278,-164v136,0,244,50,322,150v78,100,117,236,117,410v0,174,-39,311,-117,411v-78,100,-186,150,-322,150","w":1288},"\u00ff":{"d":"336,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v73,0,131,71,131,146v0,75,-60,147,-131,147xm738,-1321v-72,0,-133,-73,-133,-147v0,-75,61,-146,133,-146v72,0,133,71,133,146v0,74,-61,147,-133,147xm306,455v-78,0,-146,-20,-216,-43r0,-222r102,1v2,94,35,149,123,151v39,0,70,-14,95,-36v28,-25,64,-108,86,-171r-417,-1077r-103,0r0,-121r551,0r0,121r-114,0r243,629r227,-629r-127,0r0,-121r359,0r0,121r-116,0r-424,1182v-29,78,-63,133,-104,166v-41,33,-96,49,-165,49","w":1071},"\u0152":{"d":"1048,-121r0,-1251r-114,0v-158,0,-277,52,-358,157v-81,105,-121,260,-121,467v0,209,40,366,120,470v80,104,200,157,359,157r114,0xm2081,0r-1189,0v-393,5,-614,-100,-738,-361v-101,-211,-101,-560,0,-771v85,-177,219,-289,428,-336v80,-17,183,-25,310,-25r1173,0r0,352r-124,0r0,-215r-544,0r0,479r330,0r0,-190r123,0r0,516r-123,0r0,-190r-330,0r0,604r561,0r0,-215r123,0r0,352","w":2175},"\u0153":{"d":"616,-84v67,0,114,-32,141,-96v27,-64,41,-181,41,-352v0,-171,-13,-288,-40,-352v-27,-64,-75,-95,-142,-95v-68,0,-116,33,-144,97v-28,64,-41,181,-41,350v0,169,13,286,41,351v28,65,76,97,144,97xm1462,-600v0,-140,-12,-238,-36,-294v-24,-56,-64,-85,-119,-85v-54,0,-92,28,-116,82v-24,54,-36,167,-35,297r306,0xm616,-1092v167,1,278,59,360,156v82,-96,179,-156,342,-156v156,0,276,52,360,157v84,105,130,256,136,453r-658,1v-1,138,17,246,54,306v36,61,97,91,180,91v150,-2,228,-97,249,-238r149,0v-44,224,-190,351,-450,351v-170,0,-281,-57,-362,-156v-78,98,-205,156,-375,156v-328,3,-525,-227,-525,-561v0,-343,201,-562,540,-560","w":1894},"\u0178":{"d":"317,0r0,-121r181,0r0,-497r-400,-754r-114,0r0,-121r644,0r0,121r-149,0r302,569r301,-569r-134,0r0,-121r385,0r0,121r-114,0r-373,702r0,549r181,0r0,121r-710,0xm457,-1630v-71,0,-133,-71,-133,-146v0,-74,62,-147,133,-147v74,0,131,72,131,147v0,76,-57,146,-131,146xm859,-1630v-72,0,-132,-71,-132,-146v0,-75,59,-147,132,-147v71,0,133,73,133,147v0,75,-62,146,-133,146","w":1315},"\u02c6":{"d":"352,-1638r218,0r230,376r-148,0r-191,-225r-192,225r-147,0","w":921},"\u02dc":{"d":"319,-1440v-58,2,-82,63,-81,131r-99,0v-1,-101,14,-185,47,-237v42,-67,121,-94,205,-64v45,17,99,63,140,92v27,19,51,29,72,29v58,-2,82,-63,81,-131r99,0v1,101,-14,185,-47,238v-41,67,-123,93,-206,62v-43,-16,-99,-60,-138,-90v-27,-21,-52,-30,-73,-30","w":921},"\u2013":{"d":"99,-664r724,0r0,240r-724,0r0,-240","w":921},"\u2014":{"d":"99,-664r1645,0r0,240r-1645,0r0,-240","w":1843},"\u2018":{"d":"535,-1384v-124,93,-173,230,-166,450r-242,0v12,-294,117,-464,313,-586","w":641},"\u2019":{"d":"88,-1042v125,-94,172,-229,165,-451r243,0v-12,297,-116,462,-313,586","w":641},"\u201a":{"d":"55,131v124,-94,172,-229,165,-450r243,0v-13,294,-117,463,-314,585","w":641},"\u201c":{"d":"953,-1384v-123,94,-173,230,-166,450r-243,0v12,-295,118,-463,315,-586xm535,-1384v-124,93,-173,230,-166,450r-242,0v12,-294,117,-464,313,-586","w":1060},"\u201d":{"d":"507,-1042v124,-94,170,-230,163,-451r244,0v-12,297,-116,462,-313,586xm88,-1042v125,-94,172,-229,165,-451r243,0v-12,297,-116,462,-313,586","w":1060},"\u201e":{"d":"472,131v123,-94,173,-230,166,-450r243,0v-12,294,-117,463,-313,585xm55,131v124,-94,172,-229,165,-450r243,0v-13,294,-117,463,-314,585","w":1060},"\u2022":{"d":"290,-622v-31,-86,-31,-193,0,-279v30,-85,98,-158,176,-193v77,-35,171,-36,248,1v115,55,199,167,199,331v0,165,-85,279,-200,334v-77,37,-172,36,-249,0v-78,-36,-143,-109,-174,-194","w":1178},"\u2026":{"d":"1523,29v-95,0,-172,-92,-172,-191v0,-98,77,-190,172,-190v94,0,171,93,171,190v0,98,-77,191,-171,191xm922,29v-95,0,-171,-92,-171,-191v0,-98,76,-190,171,-190v94,0,171,93,171,190v0,98,-77,191,-171,191xm320,29v-94,0,-171,-93,-171,-191v0,-98,77,-190,171,-190v96,0,172,92,172,190v0,99,-75,191,-172,191","w":1843},"\u2039":{"d":"564,-1069r0,147r-216,322r216,321r0,148r-422,-385r0,-168","w":737},"\u203a":{"d":"174,-1069r422,385r0,168r-422,385r0,-148r215,-321r-215,-322r0,-147","w":737},"\u20ac":{"d":"512,-729r4,80r304,0r-48,119r-248,0v12,148,40,259,85,332v45,73,107,110,186,110v67,0,123,-28,166,-86v43,-58,73,-142,89,-252r146,0v-23,149,-73,262,-150,339v-77,77,-179,116,-305,116v-153,0,-279,-49,-379,-146v-100,-97,-167,-235,-198,-413r-171,0r47,-119r109,0r-3,-96r3,-97r-156,0r47,-119r124,0v31,-178,98,-316,198,-413v100,-97,226,-146,379,-146v173,0,291,57,429,129r0,367r-106,0v-24,-131,-58,-227,-102,-288v-44,-61,-100,-91,-169,-91v-78,0,-139,36,-183,109v-44,73,-74,184,-88,333r424,0r-49,119r-380,0"},"\u2122":{"d":"214,-1493r509,0r0,180r-69,0r0,-98r-118,0r0,416r78,0r0,80r-292,0r0,-80r78,0r0,-416r-118,0r0,98r-68,0r0,-180xm1029,-1493r149,293r150,-293r220,0r0,82r-77,0r0,416r77,0r0,80r-291,0r0,-80r78,0r0,-359r-146,285r-102,0r-145,-285r0,359r78,0r0,80r-231,0r0,-80r76,0r0,-416r-76,0r0,-82r240,0","w":1843}}}); diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-webfont.eot b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-webfont.eot new file mode 100644 index 0000000..e5a85f5 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-webfont.eot differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-webfont.svg b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-webfont.svg new file mode 100644 index 0000000..2882c4f --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-webfont.svg @@ -0,0 +1,241 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved._DejaVu changes are in public domain_ +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-webfont.ttf b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-webfont.ttf new file mode 100644 index 0000000..401550e Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-webfont.ttf differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-webfont.woff b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-webfont.woff new file mode 100644 index 0000000..f019c04 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Bold-webfont.woff differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-cufon.js b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-cufon.js new file mode 100644 index 0000000..2901161 --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-cufon.js @@ -0,0 +1,18 @@ +/*! + * The following copyright notice may not be removed under any circumstances. + * + * Copyright: + * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + * DejaVu changes are in public domain + * + * + * Manufacturer: + * DejaVu fonts team + * + * Vendor URL: + * http://dejavu.sourceforge.net + * + * License information: + * http://dejavu.sourceforge.net/wiki/index.php/License + */ +Cufon.registerFont({"w":1282,"face":{"font-family":"DejaVu Serif Condensed","font-weight":700,"font-style":"italic","font-stretch":"semi-condensed","units-per-em":"2048","panose-1":"2 6 8 6 5 3 5 11 2 4","ascent":"1556","descent":"-492","x-height":"29","bbox":"-306 -1922.62 2222 483","underline-thickness":"90","underline-position":"-85","slope":"-11","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":641},"!":{"d":"160,-27v-90,-133,35,-325,178,-325v93,0,154,90,137,190v-16,93,-104,191,-204,191v-47,0,-85,-18,-111,-56xm369,-1493r337,0r-254,842r-33,190r-125,0r33,-190","w":809},"\"":{"d":"389,-1493r0,555r-213,0r0,-555r213,0xm785,-1493r0,555r-213,0r0,-555r213,0","w":960},"#":{"d":"922,-872r-238,0r-63,274r238,0xm820,-1470r-86,385r237,0r87,-385r199,0r-87,385r249,0r0,213r-297,0r-62,274r256,0r0,215r-303,0r-86,383r-199,0r86,-383r-237,0r-87,383r-200,0r86,-383r-251,0r0,-215r295,0r63,-274r-254,0r0,-213r304,0r86,-385r201,0","w":1544},"$":{"d":"235,-350v-12,183,70,270,252,266r71,-405v-143,-37,-242,-87,-296,-150v-54,-63,-69,-149,-51,-258v39,-236,221,-386,487,-393r47,-269r109,0r-47,269v139,9,254,38,357,88r-48,272r-109,0v9,-153,-72,-245,-220,-247r-65,372v155,39,258,93,312,159v54,66,70,159,49,279v-42,246,-226,389,-507,396r-47,270r-109,0r47,-270v-150,-4,-275,-38,-391,-88r51,-291r108,0xm678,-1178v-96,12,-180,69,-193,156v-18,115,39,151,134,184xm596,-84v117,-13,195,-67,214,-172v9,-49,1,-90,-22,-122v-23,-32,-66,-58,-127,-79"},"%":{"d":"516,-1419v-39,0,-68,24,-96,69v-38,61,-101,373,-82,473v9,47,32,70,71,70v39,0,67,-25,95,-70v38,-61,102,-373,83,-473v-9,-46,-32,-69,-71,-69xm533,-1520v235,0,329,151,283,406v-23,131,-71,232,-144,302v-73,70,-166,105,-281,105v-234,0,-329,-153,-283,-407v23,-131,71,-232,144,-302v73,-70,167,-104,281,-104xm1354,-1520r155,0r-1112,1549r-154,0xm1359,-784v234,0,329,151,283,405v-24,131,-71,233,-144,303v-73,70,-166,105,-281,105v-234,0,-328,-154,-282,-408v24,-130,70,-231,143,-301v73,-70,167,-104,281,-104xm1342,-684v-39,0,-69,25,-96,70v-38,62,-102,373,-82,472v9,47,32,70,71,70v39,0,67,-25,95,-70v38,-62,104,-373,84,-472v-9,-46,-33,-70,-72,-70","w":1751},"&":{"d":"1465,-795v-53,188,-130,337,-244,459r148,215r153,0r-22,121r-431,0r-91,-131v-124,95,-267,160,-465,160v-180,0,-313,-43,-400,-128v-87,-85,-119,-204,-91,-352v46,-246,188,-376,406,-477v-38,-76,-65,-145,-49,-246v42,-273,347,-386,685,-334v58,9,123,20,195,35r-55,312r-116,0v8,-147,-36,-239,-175,-238v-130,1,-219,77,-229,201v-5,62,71,184,137,280r330,482v90,-93,149,-211,186,-359r21,-120r286,0r-21,120r-158,0xm344,-427v-3,172,112,303,280,298v118,-3,202,-44,286,-100r-405,-588v-89,100,-158,215,-161,390","w":1664},"'":{"d":"389,-1493r0,555r-213,0r0,-555r213,0","w":564},"(":{"d":"612,319v-188,-83,-318,-203,-390,-358v-72,-155,-89,-348,-48,-579v87,-485,344,-769,766,-938r-21,120v-106,64,-191,158,-255,284v-64,126,-115,304,-156,534v-40,229,-50,406,-30,532v20,126,71,221,155,285","w":872},")":{"d":"-70,319r21,-120v106,-64,191,-159,255,-285v64,-126,115,-303,155,-532v40,-230,51,-408,31,-534v-20,-126,-72,-220,-155,-284r21,-120v189,88,319,209,391,362v72,153,87,345,47,576v-85,479,-348,777,-766,937","w":872},"*":{"d":"923,-1212r-324,168r324,170r-88,155r-295,-239r24,389r-164,0r24,-389r-295,239r-89,-155r325,-170r-325,-168r89,-158r295,242r-24,-392r164,0r-24,392r295,-242","w":963},"+":{"d":"876,-1284r0,526r473,0r0,230r-473,0r0,526r-207,0r0,-526r-474,0r0,-230r474,0r0,-526r207,0","w":1544},",":{"d":"-9,197v138,-107,221,-233,258,-430r15,-86r256,0v-54,317,-209,517,-454,657","w":641},"-":{"d":"124,-684r565,0r-48,270r-565,0","w":765},".":{"d":"176,-27v-91,-134,36,-325,178,-325v94,0,155,90,138,190v-16,94,-104,191,-205,191v-47,0,-85,-18,-111,-56","w":641},"\/":{"d":"621,-1493r199,0r-768,1683r-199,0","w":673},"0":{"d":"527,-88v72,0,128,-36,167,-109v39,-73,85,-255,136,-548v51,-291,70,-473,56,-547v-14,-74,-57,-111,-129,-111v-72,0,-127,36,-167,109v-40,73,-85,256,-136,549v-51,293,-70,475,-56,548v14,73,57,109,129,109xm506,29v-179,0,-305,-66,-377,-199v-72,-133,-87,-325,-43,-575v44,-250,125,-442,244,-575v119,-133,268,-200,447,-200v179,0,305,67,377,200v72,133,86,325,42,575v-44,250,-125,442,-244,575v-119,133,-267,199,-446,199"},"1":{"d":"120,0r21,-121r252,0r211,-1208r-312,184r26,-149r377,-226r284,0r-245,1399r253,0r-21,121r-846,0"},"2":{"d":"307,-1124r-108,0r56,-322v139,-44,280,-74,448,-74v171,0,297,38,379,116v82,78,112,186,87,325v-17,99,-59,187,-125,265v-66,78,-185,171,-352,279r-422,273r636,0r31,-176r124,0r-77,438r-994,0r43,-244r226,-153v193,-130,325,-241,397,-332v72,-91,120,-198,141,-320v20,-115,13,-203,-19,-263v-32,-60,-89,-91,-171,-91v-71,0,-132,23,-183,71v-51,48,-90,117,-117,208"},"3":{"d":"625,-1403v-162,2,-248,109,-287,252r-109,0r53,-299v146,-41,292,-70,460,-70v162,0,281,32,356,96v75,64,103,157,82,277v-33,187,-161,296,-352,332v214,38,321,159,277,412v-50,291,-299,434,-656,432v-167,-1,-304,-33,-442,-80r58,-328r108,0v-19,182,53,291,224,291v201,0,311,-138,343,-324v36,-210,-46,-339,-240,-338r-59,0r21,-120v217,12,328,-86,360,-271v29,-167,-40,-264,-197,-262"},"4":{"d":"1043,0r-739,0r21,-121r200,0r47,-272r-561,0r21,-115r739,-1012r338,0r-174,998r230,0r-22,129r-231,0r-47,272r200,0xm595,-522r126,-725r-527,725r401,0"},"5":{"d":"550,-883v-115,0,-178,56,-244,129r-90,0r130,-739r827,0r-46,262r-719,0r-58,328v81,-60,179,-101,305,-103v318,-5,502,191,445,519v-54,311,-282,517,-637,516v-168,-1,-298,-32,-431,-82r57,-326r108,0v-26,188,33,290,206,291v88,0,159,-32,213,-98v54,-66,94,-166,117,-301v23,-133,19,-231,-11,-297v-30,-66,-87,-99,-172,-99"},"6":{"d":"1083,-1196v-5,-133,-75,-207,-210,-207v-107,0,-191,41,-253,122v-62,81,-109,213,-142,396v81,-62,177,-102,307,-104v279,-2,406,200,353,502v-54,308,-255,515,-598,516v-184,0,-313,-62,-386,-185v-73,-123,-88,-303,-46,-542v47,-271,136,-476,265,-614v164,-174,386,-240,674,-193v60,10,124,25,191,45r-46,264r-109,0xm540,-88v62,0,110,-30,147,-88v37,-58,68,-159,93,-303v25,-144,29,-245,13,-303v-16,-58,-55,-88,-117,-88v-62,0,-112,30,-148,88v-36,58,-67,159,-92,303v-25,144,-29,245,-13,303v16,58,55,88,117,88"},"7":{"d":"1216,-1239r-771,1239r-183,0r751,-1210r-663,0r-35,202r-123,0r84,-485r984,0"},"8":{"d":"865,-795v196,35,298,165,258,398v-48,281,-279,426,-619,426v-176,0,-303,-37,-384,-110v-81,-73,-110,-179,-86,-316v38,-219,178,-360,397,-398v-161,-43,-256,-139,-223,-335v43,-261,253,-392,567,-390v162,0,280,33,354,100v74,67,101,163,78,290v-33,185,-157,291,-342,335xm858,-1126v18,-105,20,-178,4,-218v-16,-40,-52,-59,-107,-59v-56,0,-99,19,-128,59v-29,40,-53,113,-72,218v-18,105,-19,177,-3,216v16,39,50,58,106,58v56,0,99,-19,128,-58v29,-39,54,-111,72,-216xm768,-414v21,-122,22,-206,2,-252v-20,-46,-63,-69,-132,-69v-69,0,-120,23,-156,69v-36,46,-65,130,-86,252v-22,123,-24,209,-4,256v20,47,64,70,133,70v68,0,121,-23,157,-70v36,-47,65,-133,86,-256"},"9":{"d":"744,-1403v-62,0,-112,29,-148,87v-36,58,-67,160,-92,304v-25,144,-30,246,-14,304v16,58,54,87,116,87v62,0,111,-29,148,-87v37,-58,68,-160,93,-304v25,-144,29,-246,13,-304v-16,-58,-54,-87,-116,-87xm199,-295v6,133,76,207,212,207v105,0,189,-40,251,-122v62,-82,110,-215,143,-398v-82,63,-177,104,-308,106v-278,2,-406,-200,-352,-502v55,-309,252,-514,597,-516v184,0,313,62,386,185v73,123,88,304,47,542v-47,271,-136,477,-265,615v-164,174,-387,239,-675,192v-60,-10,-124,-25,-191,-45r46,-264r109,0"},":":{"d":"252,-680v-89,-133,36,-324,178,-324v93,0,155,91,138,191v-16,93,-104,188,-205,188v-47,0,-86,-17,-111,-55xm138,-27v-90,-133,35,-325,178,-325v93,0,154,90,137,190v-16,93,-104,191,-204,191v-47,0,-85,-18,-111,-56","w":680},";":{"d":"279,-680v-90,-133,35,-324,177,-324v93,0,155,91,138,191v-16,93,-103,188,-204,188v-47,0,-86,-17,-111,-55xm-44,188v138,-105,221,-231,257,-428r16,-88r256,0v-56,315,-210,519,-454,658","w":680},"<":{"d":"1349,-979r-881,338r881,336r0,239r-1154,-464r0,-226r1154,-463r0,240","w":1544},"=":{"d":"195,-528r1154,0r0,227r-1154,0r0,-227xm195,-983r1154,0r0,227r-1154,0r0,-227","w":1544},">":{"d":"195,-979r0,-240r1154,463r0,226r-1154,464r0,-239r881,-336","w":1544},"?":{"d":"232,-27v-90,-134,36,-325,178,-325v94,0,156,90,139,190v-16,93,-105,191,-206,191v-47,0,-85,-18,-111,-56xm243,-1452v136,-39,265,-66,420,-68v285,-2,444,138,395,426v-46,270,-240,430,-534,453r-36,205r-125,0r52,-299v180,-59,274,-177,310,-381v31,-177,-11,-291,-166,-291v-66,0,-121,22,-165,66v-44,44,-75,109,-96,196r-108,0","w":1080},"@":{"d":"1046,-296v58,-67,86,-171,105,-284v26,-154,-20,-284,-152,-286v-59,0,-112,30,-159,88v-47,58,-79,136,-96,235v-17,99,-11,177,14,236v53,125,207,104,288,11xm1301,188v-148,95,-312,168,-524,168v-252,0,-422,-98,-536,-252v-115,-155,-166,-376,-119,-647v47,-269,175,-491,345,-647v163,-150,354,-250,638,-250v224,0,382,71,492,195v121,137,182,312,139,569v-32,184,-104,328,-217,430v-120,108,-263,158,-453,154r26,-148v-60,83,-148,147,-275,148v-239,2,-337,-186,-289,-451v25,-140,76,-251,155,-331v79,-80,176,-119,291,-119v115,0,192,59,224,147r22,-125r197,0r-130,742v191,-55,311,-230,348,-449v35,-214,-16,-357,-118,-473v-86,-98,-227,-162,-404,-162v-178,0,-314,57,-429,139v-188,134,-330,362,-376,631v-37,208,-8,401,74,531v91,144,235,241,452,241v175,0,312,-58,432,-135","w":1843},"A":{"d":"-145,0r21,-121r110,0r746,-1372r215,0r267,1372r127,0r-21,121r-629,0r21,-121r132,0r-58,-305r-505,0r-165,305r160,0r-21,121r-400,0xm347,-547r416,0r-107,-571","w":1430},"B":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r796,0v164,0,281,31,353,92v72,61,97,154,75,277v-35,190,-179,285,-391,309v133,14,230,54,290,120v60,66,80,154,61,263v-26,148,-95,257,-208,327v-113,70,-276,105,-490,105r-747,0xm626,-870r118,0v206,0,319,-80,349,-254v32,-191,-67,-247,-261,-248r-118,0xm495,-121r129,0v237,-1,356,-104,392,-311v39,-223,-65,-318,-282,-318r-129,0","w":1557},"C":{"d":"1271,-1024v-2,-233,-87,-375,-307,-375v-131,0,-238,54,-320,161v-82,107,-143,271,-182,493v-39,222,-35,386,10,493v45,107,133,160,265,160v89,0,167,-28,233,-83v66,-55,123,-139,168,-251r180,0v-63,154,-147,268,-252,343v-105,75,-234,112,-389,112v-448,0,-686,-301,-600,-774v43,-238,141,-428,297,-567v208,-186,496,-255,818,-176v83,20,168,54,257,97r-64,367r-114,0","w":1467},"D":{"d":"495,-121r125,0v141,0,252,-50,335,-150v83,-100,143,-259,181,-477v38,-217,33,-374,-14,-474v-47,-100,-142,-150,-283,-150r-125,0xm-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r689,0v471,-3,701,255,615,745v-42,242,-138,428,-289,556v-151,128,-346,192,-587,192r-689,0","w":1598},"E":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r1208,0r-62,352r-124,0r38,-215r-566,0r-83,479r352,0r33,-190r123,0r-90,516r-124,0r34,-190r-352,0r-106,604r582,0r38,-215r123,0r-61,352r-1224,0","w":1404},"F":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r1198,0r-62,352r-123,0r38,-215r-555,0r-84,479r342,0r33,-190r123,0r-90,516r-123,0r33,-190r-341,0r-109,620r212,0r-21,121r-732,0","w":1308},"G":{"d":"1317,-1024v-9,-251,-90,-375,-336,-375v-139,0,-251,52,-334,157v-83,105,-145,271,-184,497v-39,224,-37,389,7,495v44,106,131,158,263,158v112,-1,199,-30,272,-76r72,-410r-162,0r21,-120r484,0r-100,573v-192,90,-386,151,-637,154v-455,5,-692,-295,-606,-774v43,-240,141,-430,297,-568v156,-138,349,-207,580,-207v217,0,384,51,541,129r-64,367r-114,0","w":1574},"H":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r691,0r-21,121r-173,0r-88,502r535,0r88,-502r-172,0r21,-121r691,0r-21,121r-173,0r-219,1251r173,0r-21,121r-691,0r21,-121r172,0r107,-612r-535,0r-107,612r173,0r-21,121r-691,0","w":1741},"I":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r691,0r-21,121r-173,0r-219,1251r173,0r-21,121r-691,0","w":862},"J":{"d":"-291,358r41,-235r117,0v-13,114,10,182,111,182v59,0,104,-25,136,-75v32,-50,59,-142,83,-279r231,-1323r-195,0r21,-121r716,0r-21,121r-172,0r-233,1331v-56,307,-199,467,-543,467v-114,0,-207,-28,-292,-68","w":872},"K":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r691,0r-21,121r-173,0r-95,545r665,-545r-144,0r21,-121r501,0r-21,121r-179,0r-563,461r518,790r132,0r-21,121r-455,0r-472,-725r-106,604r173,0r-21,121r-691,0","w":1602},"L":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r691,0r-21,121r-173,0r-216,1235r529,0r42,-236r121,0r-65,373r-1169,0","w":1296},"M":{"d":"-53,0r21,-121r171,0r219,-1251r-171,0r21,-121r554,0r216,958r553,-958r553,0r-21,121r-172,0r-218,1251r171,0r-21,121r-691,0r21,-121r171,0r200,-1139r-599,1041r-228,0r-233,-1041r-199,1139r171,0r-21,121r-468,0","w":2040},"N":{"d":"-50,0r22,-121r171,0r219,-1251r-172,0r22,-121r420,0r626,1057r164,-936r-171,0r21,-121r470,0r-22,121r-171,0r-240,1372r-236,0r-635,-1079r-168,958r171,0r-21,121r-470,0","w":1684},"O":{"d":"688,-92v114,0,208,-54,283,-161v75,-107,131,-271,170,-492v39,-221,40,-386,3,-493v-37,-107,-113,-161,-228,-161v-114,0,-209,55,-284,163v-75,108,-131,272,-169,491v-38,219,-39,383,-2,491v37,108,113,162,227,162xm666,29v-450,0,-675,-296,-588,-774v44,-241,139,-431,292,-569v153,-138,342,-206,567,-206v451,0,676,296,589,775v-44,241,-139,431,-292,568v-153,137,-342,206,-568,206","w":1605},"P":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r765,0v278,-5,459,156,412,436v-43,258,-267,442,-565,439r-247,0r-87,497r217,0r-21,121r-735,0xm603,-739r101,0v78,0,145,-29,202,-87v57,-58,92,-135,110,-231v34,-181,-38,-316,-201,-315r-101,0","w":1386},"Q":{"d":"970,-1520v377,0,607,207,607,579v0,305,-103,546,-257,712v-122,132,-276,214,-464,245v25,38,59,65,102,82v99,39,189,58,270,58r173,0r-43,246r-154,0v-151,0,-274,-38,-367,-115v-67,-55,-114,-141,-143,-258v-375,-3,-599,-206,-602,-578v0,-61,6,-126,18,-196v42,-241,139,-431,292,-569v153,-138,343,-206,568,-206xm720,-92v115,0,209,-54,284,-161v75,-107,131,-271,170,-492v19,-113,29,-212,29,-295v0,-79,-9,-145,-27,-198v-37,-107,-112,-161,-227,-161v-114,0,-208,55,-283,163v-75,108,-133,272,-171,491v-32,182,-48,343,-2,491v34,109,113,162,227,162","w":1605},"R":{"d":"975,-729v113,20,165,83,197,192r123,416r138,0r-21,121r-442,0r-135,-451v-25,-93,-51,-153,-75,-179v-32,-36,-97,-41,-169,-38r-96,547r173,0r-21,121r-691,0r21,-121r172,0r219,-1251r-172,0r21,-121r767,0v156,0,270,35,343,105v73,70,98,168,75,296v-39,219,-191,331,-427,363xm612,-788r118,0v184,-2,283,-123,313,-293v32,-184,-41,-291,-211,-291r-118,0","w":1531},"S":{"d":"1084,-1102v0,-211,-100,-296,-314,-297v-171,0,-280,64,-305,205v-11,62,-1,109,23,142v43,60,284,121,403,155v119,35,200,89,243,162v43,73,54,174,32,303v-53,303,-275,462,-635,461v-197,-1,-355,-40,-507,-101r62,-354r115,0v-5,227,107,334,334,334v182,1,300,-78,325,-232v11,-60,2,-106,-24,-140v-50,-65,-266,-113,-381,-148v-125,-37,-207,-90,-249,-156v-42,-66,-52,-160,-31,-283v48,-285,260,-470,587,-469v183,1,343,36,494,88r-58,330r-114,0","w":1331},"T":{"d":"203,0r21,-121r179,0r216,-1235r-368,0r-42,236r-123,0r65,-373r1332,0r-65,373r-121,0r41,-236r-371,0r-216,1235r179,0r-21,121r-706,0","w":1371},"U":{"d":"346,-1372r-171,0r21,-121r691,0r-21,121r-172,0r-130,747v-33,186,-29,317,10,391v39,74,121,111,248,111v124,0,219,-38,284,-113v65,-75,113,-204,145,-389r131,-747r-171,0r21,-121r468,0r-21,121r-172,0r-134,768v-40,228,-113,391,-219,488v-106,97,-264,145,-473,145v-423,0,-548,-181,-469,-635","w":1607},"V":{"d":"1587,-1493r-21,121r-113,0r-747,1372r-214,0r-266,-1372r-127,0r21,-121r630,0r-21,121r-131,0r190,989r538,-989r-160,0r21,-121r400,0","w":1430},"W":{"d":"1440,0r-232,0r-114,-1087r-495,1087r-232,0r-143,-1372r-131,0r21,-121r638,0r-22,121r-144,0r97,917r471,-1038r255,0r111,1055r425,-934r-160,0r21,-121r416,0r-21,121r-138,0","w":2070},"X":{"d":"595,-575r-360,454r166,0r-21,121r-477,0r21,-121r165,0r454,-571r-301,-680r-124,0r22,-121r667,0r-21,121r-147,0r186,420r331,-420r-156,0r21,-121r468,0r-21,121r-166,0r-426,536r316,715r127,0r-21,121r-671,0r21,-121r150,0","w":1430},"Y":{"d":"186,0r21,-121r181,0r87,-497r-267,-754r-115,0r21,-121r645,0r-21,121r-150,0r203,569r400,-569r-134,0r21,-121r385,0r-21,121r-114,0r-495,702r-96,549r180,0r-21,121r-710,0","w":1315},"Z":{"d":"-62,0r24,-141r1015,-1215r-644,0r-39,223r-123,0r63,-360r1166,0r-24,141r-1006,1215r679,0r37,-209r123,0r-61,346r-1210,0","w":1345},"[":{"d":"390,-1556r510,0r-21,120r-191,0r-278,1586r192,0r-21,120r-510,0","w":872},"\\":{"d":"346,-1493r180,1683r-200,0r-179,-1683r199,0","w":673},"]":{"d":"801,-1556r-319,1826r-511,0r21,-120r191,0r278,-1586r-192,0r21,-120r511,0","w":872},"^":{"d":"876,-1493r482,557r-192,0r-394,-315r-394,315r-192,0r489,-557r201,0","w":1544},"_":{"d":"922,293r0,190r-922,0r0,-190r922,0","w":921},"`":{"d":"488,-1638r165,376r-147,0r-269,-376r251,0","w":921},"a":{"d":"757,-876v-2,-40,-20,-60,-54,-60v-81,0,-160,53,-239,160v-36,49,-69,156,-98,321v-21,123,-24,209,-9,257v15,48,52,71,110,71v55,0,100,-28,135,-83v35,-55,64,-145,85,-269xm1063,-1031r-158,910r120,-2r-21,123r-400,0r23,-135v-66,109,-157,164,-274,164v-245,0,-340,-202,-289,-477v27,-148,96,-288,211,-416v136,-152,296,-228,478,-228v180,0,283,20,310,61","w":1194},"b":{"d":"637,29v-139,0,-215,-56,-249,-164r-24,135r-318,0r251,-1436r-137,0r21,-120r455,0r-110,628v67,-100,155,-162,307,-164v230,-4,361,159,357,398v-4,241,-84,449,-205,573v-97,99,-212,150,-348,150xm841,-761v0,-109,-35,-175,-132,-175v-64,0,-113,29,-153,83v-49,66,-87,239,-108,374v-10,67,-17,123,-17,170v-2,109,36,183,136,182v65,0,116,-29,153,-88v37,-59,69,-164,96,-317v17,-95,25,-171,25,-229","w":1288},"c":{"d":"409,-314v0,143,48,230,178,230v64,0,119,-21,165,-64v46,-43,81,-104,103,-184r150,0v-44,121,-106,212,-187,272v-81,60,-183,89,-304,89v-283,2,-452,-141,-452,-417v0,-245,90,-434,224,-556v150,-137,369,-177,609,-127v65,14,131,35,196,63r-51,295r-101,0v13,-157,-35,-266,-184,-266v-89,0,-158,33,-207,100v-49,67,-88,182,-117,347v-15,86,-22,159,-22,218","w":1122},"d":{"d":"366,-304v0,109,35,178,133,177v63,0,113,-28,152,-83v39,-55,68,-145,90,-269v14,-79,36,-197,36,-274v0,-111,-37,-184,-137,-183v-66,0,-117,30,-154,88v-37,58,-68,163,-95,316v-17,94,-25,170,-25,228xm570,-1092v138,0,216,56,250,164r89,-508r-137,0r21,-120r455,0r-272,1556r-318,0r23,-135v-67,100,-156,162,-308,164v-229,4,-357,-160,-353,-398v4,-242,84,-451,204,-574v96,-99,210,-149,346,-149","w":1288},"e":{"d":"430,-519v221,6,344,-98,344,-313v0,-98,-37,-147,-112,-147v-57,0,-102,29,-136,89v-34,60,-65,184,-96,371xm491,29v-275,2,-430,-139,-430,-408v0,-246,89,-444,223,-565v109,-98,241,-148,399,-148v115,0,212,24,291,74v94,60,136,144,114,266v-38,216,-264,333,-679,352v-4,23,-6,58,-6,105v1,141,63,211,186,211v158,0,248,-103,290,-238r150,0v-90,227,-239,348,-538,351","w":1172},"f":{"d":"915,-1290v8,-93,-22,-156,-110,-154v-48,0,-85,21,-115,58v-47,59,-70,215,-89,323r241,0r-21,121r-241,0r-170,971v-24,139,-73,229,-148,269v-116,61,-240,91,-371,91r21,-112v48,0,86,-19,114,-57v28,-38,50,-101,65,-187r171,-975r-143,0r22,-121r142,0r23,-133v40,-232,196,-360,464,-360v106,0,201,14,285,38r-39,228r-101,0","w":792},"g":{"d":"889,-876v-3,-40,-24,-60,-63,-60v-109,0,-198,53,-266,160v-43,67,-78,174,-103,321v-21,123,-23,209,-5,257v18,48,61,71,126,71v63,0,114,-28,152,-83v38,-55,68,-145,89,-269xm188,135v-4,147,70,207,218,207v99,0,172,-26,222,-78v50,-52,87,-145,110,-278r21,-121v-73,109,-177,164,-312,164v-270,0,-400,-188,-348,-477v32,-181,124,-337,276,-468v136,-117,303,-176,504,-176v161,0,277,32,349,96r-172,982v-29,164,-97,279,-204,346v-181,113,-376,147,-617,106v-63,-11,-128,-27,-193,-49r44,-254r102,0","w":1288},"h":{"d":"839,-804v1,-82,-30,-121,-109,-122v-65,0,-117,26,-156,78v-39,52,-68,136,-88,250r-105,598r-318,0r251,-1436r-142,0r21,-120r461,0r-113,643v89,-111,172,-177,349,-179v177,-2,267,100,266,281v0,41,-4,86,-13,135r-97,555r137,0r-21,121r-456,0r120,-686v9,-47,13,-86,13,-118","w":1340},"i":{"d":"412,-1174v-95,0,-158,-85,-140,-190v17,-96,103,-191,207,-192v93,-1,155,87,137,192v-16,94,-103,190,-204,190xm403,-121r136,0r-21,121r-455,0r165,-942r-136,0r21,-121r454,0","w":700},"j":{"d":"443,-1174v-95,0,-158,-85,-140,-190v17,-97,102,-192,207,-192v92,0,155,88,137,192v-17,93,-103,190,-204,190xm-169,245v-1,67,27,96,92,97v44,0,77,-16,100,-47v23,-31,41,-88,56,-170r187,-1067r-136,0r21,-121r454,0r-207,1188v-39,221,-204,331,-469,330v-85,-1,-163,-17,-235,-39r40,-226r101,1v-3,20,-4,38,-4,54","w":666},"k":{"d":"381,0r-318,0r251,-1436r-136,0r21,-120r455,0r-175,999r453,-385r-114,0r21,-121r259,0r-21,121r-289,246r302,575r104,0r-22,121r-351,0r-263,-500r-105,88","w":1277},"l":{"d":"403,-121r136,0r-21,121r-455,0r251,-1436r-136,0r21,-120r455,0","w":700},"m":{"d":"912,-1092v161,0,238,67,267,203v57,-71,114,-123,171,-155v57,-32,120,-48,189,-48v181,0,268,94,268,277v0,42,-4,88,-13,139r-97,555r137,0r-22,121r-455,0r109,-623v15,-87,23,-153,23,-198v0,-76,-29,-105,-100,-105v-56,0,-103,24,-143,72v-40,48,-68,118,-84,207r-113,647r-318,0r109,-623v15,-86,22,-151,22,-196v0,-78,-28,-107,-99,-107v-57,0,-105,24,-145,72v-40,48,-67,118,-83,207r-113,647r-319,0r165,-942r-136,0r21,-121r455,0r-26,150v84,-106,168,-179,330,-179","w":1950},"n":{"d":"879,-804v2,-83,-29,-121,-109,-122v-64,0,-115,26,-154,78v-39,52,-69,136,-89,250r-105,598r-319,0r165,-942r-136,0r21,-121r455,0r-26,150v90,-112,171,-177,349,-179v177,-2,267,100,266,281v0,41,-4,86,-13,135r-97,555r136,0r-21,121r-455,0r120,-686v8,-47,12,-86,12,-118","w":1340},"o":{"d":"403,-270v0,114,36,187,134,186v67,0,120,-32,159,-96v39,-64,72,-181,102,-352v19,-111,30,-200,30,-266v0,-109,-35,-182,-134,-181v-68,0,-121,33,-160,97v-39,64,-73,181,-103,350v-19,109,-28,197,-28,262xm714,-1092v281,0,455,146,455,421v0,245,-90,428,-229,551v-113,100,-254,149,-422,149v-280,0,-455,-148,-455,-423v0,-244,91,-429,229,-550v113,-99,253,-148,422,-148","w":1229},"p":{"d":"916,-761v0,-109,-35,-175,-132,-175v-63,0,-114,28,-152,83v-38,55,-68,145,-90,269v-14,79,-36,198,-36,275v0,110,36,183,137,182v65,0,116,-29,153,-88v37,-59,69,-164,96,-317v16,-95,24,-171,24,-229xm712,29v-138,0,-215,-56,-249,-164r-98,561r-319,0r240,-1368r-137,0r21,-121r455,0r-23,135v67,-100,155,-162,307,-164v229,-4,360,159,356,398v-4,242,-84,449,-205,573v-96,99,-211,150,-348,150","w":1288},"q":{"d":"1226,-996r-227,1296r145,2r-22,122r-464,2r98,-561v-73,109,-177,164,-312,164v-270,0,-399,-188,-347,-477v33,-181,123,-337,275,-468v136,-117,304,-176,504,-176v161,0,278,32,350,96xm886,-876v-3,-40,-24,-60,-63,-60v-109,0,-198,53,-266,160v-43,67,-77,174,-103,321v-21,123,-23,209,-4,257v19,48,60,71,125,71v63,0,113,-28,151,-83v38,-55,69,-145,91,-269","w":1288},"r":{"d":"575,-874v84,-142,202,-238,417,-214v26,3,57,8,91,13r-56,317r-102,0v14,-98,-21,-168,-116,-168v-69,0,-131,34,-183,102v-52,68,-88,162,-109,283r-95,541r-319,0r165,-942r-146,0r22,-121r464,0","w":971},"s":{"d":"111,-677v0,-282,191,-415,479,-415v131,0,267,21,410,64r-48,268r-102,0v18,-141,-52,-219,-200,-219v-136,0,-212,45,-228,135v-14,80,17,110,108,137r124,37v119,35,195,76,228,120v47,63,59,135,43,228v-46,253,-226,351,-536,351v-118,0,-248,-20,-390,-60r51,-297r102,0v-11,151,64,246,212,244v159,-3,237,-55,239,-192v0,-18,-8,-37,-23,-57v-31,-42,-167,-71,-238,-93v-94,-29,-156,-63,-186,-106v-30,-43,-45,-92,-45,-145","w":1037},"t":{"d":"769,-260v-52,206,-127,289,-373,289v-131,0,-217,-23,-256,-69v-44,-51,-42,-159,-26,-251r114,-651r-138,0r21,-121r138,0r58,-330r319,0r-58,330r265,0r-21,121r-265,0r-114,651v-11,59,-16,104,-16,134v-1,55,20,73,71,73v39,0,70,-14,94,-43v24,-29,41,-73,52,-133r135,0","w":851},"u":{"d":"463,-250v0,83,30,113,107,113v64,0,115,-26,154,-79v39,-53,69,-136,89,-251r104,-596r320,0r-165,942r136,0r-21,121r-456,0r26,-150v-89,112,-170,177,-348,179v-178,2,-267,-100,-266,-281v0,-41,4,-86,13,-135r97,-555r-136,0r21,-121r455,0r-108,621v-15,83,-22,147,-22,192","w":1340},"v":{"d":"574,0r-256,0r-174,-942r-105,0r21,-121r389,0r147,793v15,0,73,-70,168,-214v89,-135,152,-289,191,-458r-106,0r22,-123r214,2v1,166,-58,360,-179,583v-115,211,-225,371,-332,480","w":1071},"w":{"d":"1185,-300v5,-5,52,-65,135,-182v87,-121,145,-275,179,-460r-125,2r21,-123r245,0v-34,255,-89,447,-164,578v-117,203,-232,365,-347,485r-219,0r-86,-666r-321,666r-218,0r-125,-942r-104,0r21,-121r392,0r92,696r336,-696r190,0","w":1586},"x":{"d":"673,-678r314,-385r128,0r-409,500r207,442r127,0r-21,121r-408,0r-187,-401r-330,401r-128,0r422,-518r-200,-424r-107,0r21,-121r390,0","w":1098},"y":{"d":"102,235v-2,90,56,110,143,110v67,0,134,-24,202,-72r-256,-1215r-104,0r21,-121r391,0r215,1028v168,-282,228,-474,310,-905r-128,-1r21,-121r258,-1v-15,85,-33,183,-55,293v-53,271,-113,469,-180,594v-175,327,-334,520,-475,580v-80,34,-177,51,-292,51v-57,0,-126,-14,-208,-43r39,-222r101,1v-2,16,-3,31,-3,44","w":1071},"z":{"d":"812,-1005v58,0,145,-41,176,-60r90,2r-21,119r-631,749v21,8,39,18,56,29v75,46,138,68,186,68v72,0,162,-48,270,-145r-28,158v-107,112,-208,168,-304,168v-49,0,-112,-25,-189,-68v-86,-49,-145,-73,-179,-73v-58,0,-145,41,-177,60r-89,-2r21,-121r628,-748v-19,-7,-37,-17,-54,-28v-75,-46,-138,-68,-185,-68v-72,0,-162,48,-270,145r27,-158v107,-112,208,-168,304,-168v50,0,113,25,189,68v86,49,146,73,180,73","w":1046},"{":{"d":"876,213r-22,121v-132,1,-362,-2,-414,-24v-71,-30,-126,-80,-126,-178v0,-116,43,-298,62,-417v31,-196,2,-262,-177,-266r-55,0r21,-121v103,4,195,-10,241,-58v38,-39,67,-107,84,-208r44,-250v23,-127,35,-189,94,-258v35,-42,82,-67,133,-86v61,-22,287,-25,424,-24r-21,120r-93,0v-67,0,-115,16,-145,47v-30,31,-53,93,-70,183v-31,161,-51,403,-131,496v-37,45,-97,78,-178,98v152,51,187,110,149,325r-48,271v-25,169,-14,225,135,229r93,0","w":1185},"|":{"d":"431,-1565r0,2048r-193,0r0,-2048r193,0","w":670},"}":{"d":"23,213r91,0v67,0,116,-16,146,-47v30,-31,52,-92,69,-182v31,-161,51,-402,131,-495v37,-45,97,-78,180,-101v-153,-45,-187,-113,-150,-324r47,-270v27,-170,14,-226,-134,-230r-91,0r21,-120v132,-1,361,2,413,24v71,30,126,81,126,178v0,114,-43,297,-62,416v-31,196,-3,262,175,266r56,0r-21,121v-103,-4,-194,9,-240,57v-37,39,-68,108,-85,209r-43,250v-24,126,-36,190,-94,258v-36,43,-83,68,-134,87v-60,22,-285,25,-422,24","w":1185},"~":{"d":"1349,-831r0,206v-56,57,-111,101,-168,127v-142,65,-238,51,-397,-17v-90,-39,-223,-83,-283,-83v-46,0,-94,12,-144,36v-50,24,-104,60,-162,109r0,-206v58,-58,114,-101,170,-127v140,-64,238,-52,395,16v91,40,222,84,283,84v46,0,95,-12,145,-36v50,-24,104,-60,161,-109","w":1544},"\u00a0":{"w":641},"\u00a1":{"d":"648,-1464v90,134,-34,323,-177,323v-94,0,-154,-87,-137,-188v16,-93,103,-191,203,-191v47,0,85,18,111,56xm440,0r-337,0r252,-842r34,-190r125,0r-33,190","w":809},"\u00a2":{"d":"589,-94r153,-875v-62,17,-112,58,-150,125v-38,67,-69,171,-94,312v-25,141,-30,244,-16,311v14,67,50,109,107,127xm697,-88v126,-26,194,-116,229,-244r149,0v-67,190,-189,323,-397,355r-49,276r-109,0r48,-270v-327,-5,-484,-209,-424,-561v56,-327,266,-549,620,-560r46,-264r109,0r-47,269v104,11,185,41,290,79r-52,295r-101,0v10,-157,-29,-248,-156,-266"},"\u00a3":{"d":"1200,-1202r-108,0v15,-120,-27,-204,-135,-205v-70,0,-125,25,-164,75v-39,50,-69,132,-89,249r-47,268r317,0r-22,121r-316,0r-98,557r378,0r40,-228r123,0r-64,365r-1016,0r22,-121r173,0r100,-573r-173,0r21,-121r174,0r48,-277v51,-286,229,-428,562,-428v108,0,210,17,323,35"},"\u00a4":{"d":"391,-641v0,117,84,219,197,219v111,0,197,-104,197,-219v0,-115,-86,-219,-197,-219v-111,0,-197,104,-197,219xm588,-213v-79,0,-141,-23,-196,-55r-188,207r-136,-154r188,-209v-34,-59,-54,-127,-54,-217v0,-88,21,-159,54,-217r-188,-205r138,-158r186,211v53,-36,113,-59,196,-59v80,0,140,25,199,59r184,-211r137,154r-188,205v31,65,53,135,53,221v0,90,-19,156,-53,215r188,211r-140,154r-187,-211v-50,37,-111,59,-193,59","w":1172},"\u00a5":{"d":"163,0r21,-121r171,0r61,-346r-363,0r20,-117r363,0r10,-59r-31,-135r-308,0r21,-117r257,0r-117,-477r-123,0r21,-121r624,0r-21,121r-153,0r136,551r327,-551r-136,0r21,-121r392,0r-21,121r-121,0r-283,477r263,0r-20,117r-315,0r-68,116r-14,78r363,0r-21,117r-362,0r-61,346r171,0r-21,121r-683,0"},"\u00a6":{"d":"431,-1432r0,758r-193,0r0,-758r193,0xm431,-408r0,758r-193,0r0,-758r193,0","w":670},"\u00a7":{"d":"146,-90v-10,125,42,171,167,172v105,0,172,-53,187,-143v5,-31,2,-58,-10,-80v-28,-48,-143,-113,-201,-152v-100,-68,-168,-127,-201,-183v-69,-118,-23,-291,54,-374v44,-47,101,-88,175,-117v-81,-56,-122,-130,-100,-264v31,-186,198,-291,424,-289v109,1,208,20,308,45r-42,240r-107,0v14,-117,-42,-172,-156,-172v-99,0,-165,54,-179,141v-5,31,-3,58,10,80v29,49,141,113,200,152v101,67,169,126,202,182v70,119,22,294,-54,377v-44,48,-101,88,-174,117v80,58,120,129,98,264v-31,189,-198,291,-427,289v-117,-1,-218,-19,-322,-45r42,-240r106,0xm397,-901v-53,39,-94,86,-108,156v-7,41,0,78,21,112v43,70,177,143,257,197v53,-40,97,-87,110,-156v7,-40,0,-77,-22,-111v-44,-69,-178,-143,-258,-198","w":963},"\u00a8":{"d":"323,-1365v-71,-104,28,-248,137,-249v71,-1,119,69,105,146v-13,70,-78,147,-155,147v-36,0,-66,-14,-87,-44xm726,-1365v-71,-103,26,-248,135,-249v71,-1,121,69,108,146v-12,70,-82,148,-158,147v-36,0,-65,-14,-85,-44","w":921},"\u00a9":{"d":"666,-1430v155,-72,355,-72,510,0v157,73,302,235,364,404v63,171,64,397,0,568v-63,169,-207,330,-364,403v-155,72,-355,72,-510,0v-157,-73,-299,-234,-362,-403v-64,-171,-63,-397,0,-568v62,-169,205,-331,362,-404xm1124,-1288v-123,-56,-282,-57,-404,0v-124,58,-239,186,-289,320v-51,135,-51,317,0,452v50,133,163,262,288,319v122,56,284,57,406,1v123,-56,237,-187,287,-320v51,-135,51,-317,0,-452v-50,-134,-164,-263,-288,-320xm953,-399v106,0,151,-81,175,-181r124,0v-30,176,-132,278,-329,279v-234,1,-378,-194,-378,-440v0,-254,144,-445,387,-443v117,1,205,32,294,76r0,223r-95,0v-12,-110,-68,-200,-178,-200v-62,0,-109,31,-147,91v-70,110,-70,394,0,504v37,59,84,91,147,91","w":1843},"\u00aa":{"d":"295,-1106v-21,111,-15,273,103,249v107,-21,178,-153,197,-279v7,-43,20,-100,20,-145v0,-83,-36,-154,-119,-136v-45,9,-86,43,-123,99v-37,56,-62,127,-78,212xm479,-1520v86,-19,147,20,168,88r16,-89r145,0r-104,592r104,0r-27,150r-248,0r23,-129v-59,94,-135,175,-271,175v-114,0,-170,-93,-167,-219v4,-171,58,-322,137,-422v62,-79,137,-128,224,-146xm36,-639r718,0r-23,135r-719,0","w":897},"\u00ab":{"d":"1060,-1069r-25,147r-272,322r159,321r-26,148r-354,-385r29,-168xm646,-1069r-25,147r-273,322r160,321r-26,148r-354,-385r29,-168","w":1152},"\u00ac":{"d":"195,-903r1154,0r0,616r-206,0r0,-389r-948,0r0,-227","w":1544},"\u00ad":{"d":"124,-684r565,0r-48,270r-565,0","w":765},"\u00ae":{"d":"1224,-954v0,121,-63,189,-175,200v51,17,85,55,107,105r90,215r54,0r0,82r-201,0r-105,-254v-19,-45,-38,-76,-56,-90v-21,-18,-57,-23,-99,-21r0,283r77,0r0,82r-332,0r0,-82r78,0r0,-643r-78,0r0,-82r408,0v137,-2,232,74,232,205xm1047,-938v0,-91,-56,-140,-148,-139r-60,0r0,278r60,0v92,1,148,-48,148,-139xm666,-1430v155,-72,355,-72,510,0v157,73,302,235,364,404v63,171,64,397,0,568v-63,169,-207,330,-364,403v-155,72,-355,72,-510,0v-157,-73,-299,-234,-362,-403v-64,-171,-63,-397,0,-568v62,-169,205,-331,362,-404xm1124,-1288v-123,-56,-282,-57,-404,0v-124,58,-239,186,-289,320v-51,135,-51,317,0,452v50,133,163,262,288,319v122,56,284,57,406,1v123,-56,237,-187,287,-320v51,-135,51,-317,0,-452v-50,-134,-164,-263,-288,-320","w":1843},"\u00af":{"d":"320,-1548r566,0r-32,188r-567,0","w":921},"\u00b0":{"d":"160,-1200v0,-216,199,-407,415,-308v107,49,185,155,185,308v0,152,-78,258,-184,306v-216,97,-416,-88,-416,-306xm616,-1200v0,-90,-69,-172,-155,-172v-87,0,-155,82,-155,172v0,91,66,170,155,170v87,0,155,-81,155,-170","w":921},"\u00b1":{"d":"195,-227r1154,0r0,227r-1154,0r0,-227xm876,-1284r0,358r473,0r0,228r-473,0r0,358r-207,0r0,-358r-474,0r0,-228r474,0r0,-358r207,0","w":1544},"\u00b2":{"d":"370,-1436v-87,0,-149,73,-169,152r-85,0r35,-195v148,-48,415,-67,521,23v52,44,72,102,59,178v-9,55,-35,103,-75,146v-87,93,-324,213,-461,294r373,0r16,-96r90,0r-43,250r-627,0r24,-133r130,-84v127,-82,210,-146,248,-193v38,-47,62,-101,73,-163v19,-104,-16,-179,-109,-179","w":807},"\u00b3":{"d":"135,-911v-9,103,29,159,127,159v114,-1,175,-66,193,-168v19,-109,-35,-168,-141,-167r-37,0r15,-84v113,6,186,-39,202,-132v15,-86,-28,-134,-112,-133v-87,1,-142,61,-160,137r-86,1r32,-183v92,-21,180,-39,277,-39v108,0,187,17,237,52v50,35,69,87,57,153v-19,105,-104,163,-218,182v125,19,205,81,181,220v-31,177,-185,246,-408,245v-105,0,-196,-16,-280,-43r35,-200r86,0","w":807},"\u00b4":{"d":"717,-1638r251,0r-402,376r-148,0","w":921},"\u00b5":{"d":"508,-251v0,83,31,114,107,114v64,0,116,-26,155,-79v39,-53,68,-137,88,-251r104,-596r318,0r-164,942r136,0r-21,121r-455,0r22,-125v-43,55,-83,95,-120,119v-37,24,-77,35,-121,35v-46,-1,-74,-17,-104,-41r-77,438r-318,0r239,-1368r-137,0r22,-121r455,0r-104,596v-17,95,-25,167,-25,216","w":1349},"\u00b6":{"d":"538,-649v-237,-18,-375,-162,-332,-422v39,-238,234,-422,503,-422r499,0r-22,125r-102,0r-273,1565r-137,0r274,-1565r-147,0r-274,1565r-137,0","w":1172},"\u00b7":{"d":"176,-578v-91,-133,35,-323,178,-323v94,0,155,90,139,190v-15,93,-106,189,-206,189v-47,0,-85,-18,-111,-56","w":641},"\u00b8":{"d":"233,219v61,30,168,54,229,11v34,-25,52,-72,36,-129v-6,-22,-20,-56,-43,-101r115,0v46,70,83,127,69,225v-17,118,-115,177,-256,176v-64,0,-123,-10,-177,-26","w":921},"\u00b9":{"d":"73,-684r16,-94r148,0r107,-613r-182,101r18,-105r222,-125r204,0r-130,742r148,0r-17,94r-534,0","w":807},"\u00ba":{"d":"36,-639r719,0r-24,135r-718,0xm428,-823v45,0,82,-24,110,-71v28,-47,53,-125,72,-234v19,-109,22,-188,10,-235v-12,-47,-40,-71,-85,-71v-47,0,-84,23,-112,70v-28,47,-52,125,-71,236v-19,110,-22,188,-11,235v11,47,40,70,87,70xm412,-737v-244,0,-380,-140,-337,-391v39,-232,213,-392,475,-392v244,0,380,141,337,392v-39,232,-212,391,-475,391","w":921},"\u00bb":{"d":"256,-1069r354,385r-29,168r-489,385r26,-148r271,-321r-159,-322xm670,-1069r354,385r-29,168r-489,385r26,-148r272,-321r-160,-322","w":1152},"\u00bc":{"d":"73,-684r16,-94r148,0r107,-613r-182,101r18,-105r222,-125r204,0r-130,742r148,0r-17,94r-534,0xm1649,-16r-466,0r17,-94r112,0r21,-121r-326,0r15,-88r434,-533r227,0r-92,527r132,0r-16,94r-133,0r-21,121r113,0xm1350,-325r58,-334r-274,334r216,0xm1440,-1520r153,0r-1111,1549r-153,0","w":1922},"\u00bd":{"d":"1368,-768v-87,0,-149,73,-169,152r-85,0r35,-195v148,-48,415,-67,521,23v52,44,72,102,59,178v-9,55,-35,103,-75,146v-87,93,-324,213,-461,294r373,0r16,-96r90,0r-43,250r-627,0r24,-133r130,-84v127,-82,210,-146,248,-193v38,-47,62,-101,73,-163v19,-104,-16,-179,-109,-179xm73,-684r16,-94r148,0r107,-613r-182,101r18,-105r222,-125r204,0r-130,742r148,0r-17,94r-534,0xm1440,-1520r153,0r-1111,1549r-153,0","w":1922},"\u00be":{"d":"135,-911v-9,103,29,159,127,159v114,-1,175,-66,193,-168v19,-109,-35,-168,-141,-167r-37,0r15,-84v113,6,186,-39,202,-132v15,-86,-28,-134,-112,-133v-87,1,-142,61,-160,137r-86,1r32,-183v92,-21,180,-39,277,-39v108,0,187,17,237,52v50,35,69,87,57,153v-19,105,-104,163,-218,182v125,19,205,81,181,220v-31,177,-185,246,-408,245v-105,0,-196,-16,-280,-43r35,-200r86,0xm1649,-16r-466,0r17,-94r112,0r21,-121r-326,0r15,-88r434,-533r227,0r-92,527r132,0r-16,94r-133,0r-21,121r113,0xm1350,-325r58,-334r-274,334r216,0xm1440,-1520r153,0r-1111,1549r-153,0","w":1922},"\u00bf":{"d":"848,-1464v90,134,-34,323,-178,323v-94,0,-154,-88,-137,-188v16,-93,102,-191,203,-191v47,0,86,18,112,56xm837,-39v-136,39,-265,66,-420,68v-285,2,-444,-138,-395,-426v46,-270,240,-430,534,-453r36,-205r125,0r-52,299v-178,59,-274,178,-310,381v-31,178,11,291,167,291v65,0,120,-22,164,-66v44,-44,75,-109,96,-196r108,0","w":1080},"\u00c0":{"d":"-145,0r21,-121r110,0r746,-1372r215,0r267,1372r127,0r-21,121r-629,0r21,-121r132,0r-58,-305r-505,0r-165,305r160,0r-21,121r-400,0xm347,-547r416,0r-107,-571xm855,-1899r117,264r-148,0r-220,-264r251,0","w":1430},"\u00c1":{"d":"-145,0r21,-121r110,0r746,-1372r215,0r267,1372r127,0r-21,121r-629,0r21,-121r132,0r-58,-305r-505,0r-165,305r160,0r-21,121r-400,0xm347,-547r416,0r-107,-571xm924,-1899r251,0r-314,264r-148,0","w":1430},"\u00c2":{"d":"-145,0r21,-121r110,0r746,-1372r215,0r267,1372r127,0r-21,121r-629,0r21,-121r132,0r-58,-305r-505,0r-165,305r160,0r-21,121r-400,0xm347,-547r416,0r-107,-571xm750,-1899r277,0r154,264r-147,0r-163,-161r-221,161r-147,0","w":1430},"\u00c3":{"d":"-145,0r21,-121r110,0r746,-1372r215,0r267,1372r127,0r-21,121r-629,0r21,-121r132,0r-58,-305r-505,0r-165,305r160,0r-21,121r-400,0xm347,-547r416,0r-107,-571xm768,-1726v-73,-25,-130,24,-137,91r-99,0v11,-88,42,-155,83,-202v72,-81,187,-80,281,-21v38,24,74,55,130,55v57,0,90,-44,98,-98r99,0v-14,85,-42,156,-84,202v-51,56,-125,80,-209,57v-47,-14,-110,-66,-162,-84","w":1430},"\u00c4":{"d":"-145,0r21,-121r110,0r746,-1372r215,0r267,1372r127,0r-21,121r-629,0r21,-121r132,0r-58,-305r-505,0r-165,305r160,0r-21,121r-400,0xm347,-547r416,0r-107,-571xm574,-1673v-48,-67,-14,-158,37,-206v56,-52,143,-64,185,0v68,102,-26,249,-135,249v-37,0,-66,-14,-87,-43xm976,-1673v-46,-67,-14,-159,37,-206v56,-52,141,-62,186,0v72,102,-28,249,-137,249v-36,0,-66,-14,-86,-43","w":1430},"\u00c5":{"d":"849,-1747v-99,1,-187,131,-123,223v39,56,118,46,168,0v46,-43,74,-124,32,-184v-19,-26,-45,-39,-77,-39xm-181,0r21,-121r110,0r688,-1263v-56,-45,-84,-127,-68,-232v21,-139,156,-285,305,-285v141,0,236,135,207,285v-20,104,-72,182,-149,232r245,1263r128,0r-21,121r-630,0r22,-121r131,0r-57,-305r-505,0r-166,305r160,0r-21,121r-400,0xm311,-547r417,0r-106,-571","w":1430},"\u00c6":{"d":"326,-545r418,0r145,-827r-68,0xm478,0r21,-121r171,0r53,-303r-470,0r-182,303r148,0r-21,121r-385,0r21,-121r102,0r752,-1251r-181,0r21,-121r1396,0r-61,352r-124,0r37,-215r-542,0r-83,479r330,0r33,-190r122,0r-91,516r-121,0r33,-190r-330,0r-106,604r561,0r37,-215r122,0r-62,352r-1201,0","w":1906},"\u00c7":{"d":"415,219v61,30,168,54,229,11v34,-25,52,-72,36,-129v-6,-22,-20,-56,-43,-101r115,0v46,70,83,127,69,225v-17,118,-115,177,-256,176v-64,0,-123,-10,-177,-26xm1271,-1024v-2,-233,-87,-375,-307,-375v-131,0,-238,54,-320,161v-82,107,-143,271,-182,493v-39,222,-35,386,10,493v45,107,133,160,265,160v89,0,167,-28,233,-83v66,-55,123,-139,168,-251r180,0v-63,154,-147,268,-252,343v-105,75,-234,112,-389,112v-448,0,-686,-301,-600,-774v43,-238,141,-428,297,-567v208,-186,496,-255,818,-176v83,20,168,54,257,97r-64,367r-114,0","w":1467},"\u00c8":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r1208,0r-62,352r-124,0r38,-215r-566,0r-83,479r352,0r33,-190r123,0r-90,516r-124,0r34,-190r-352,0r-106,604r582,0r38,-215r123,0r-61,352r-1224,0xm894,-1899r117,264r-148,0r-220,-264r251,0","w":1404},"\u00c9":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r1208,0r-62,352r-124,0r38,-215r-566,0r-83,479r352,0r33,-190r123,0r-90,516r-124,0r34,-190r-352,0r-106,604r582,0r38,-215r123,0r-61,352r-1224,0xm963,-1899r251,0r-314,264r-148,0","w":1404},"\u00ca":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r1208,0r-62,352r-124,0r38,-215r-566,0r-83,479r352,0r33,-190r123,0r-90,516r-124,0r34,-190r-352,0r-106,604r582,0r38,-215r123,0r-61,352r-1224,0xm789,-1899r277,0r154,264r-147,0r-163,-161r-221,161r-147,0","w":1404},"\u00cb":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r1208,0r-62,352r-124,0r38,-215r-566,0r-83,479r352,0r33,-190r123,0r-90,516r-124,0r34,-190r-352,0r-106,604r582,0r38,-215r123,0r-61,352r-1224,0xm652,-1673v-48,-67,-15,-158,36,-206v56,-52,141,-63,185,0v46,67,15,158,-36,206v-55,51,-140,61,-185,0xm1053,-1673v-47,-67,-15,-158,37,-206v56,-52,141,-62,186,0v72,102,-28,249,-137,249v-36,0,-65,-14,-86,-43","w":1404},"\u00cc":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r691,0r-21,121r-173,0r-219,1251r173,0r-21,121r-691,0xm591,-1899r117,264r-148,0r-220,-264r251,0","w":862},"\u00cd":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r691,0r-21,121r-173,0r-219,1251r173,0r-21,121r-691,0xm660,-1899r251,0r-314,264r-148,0","w":862},"\u00ce":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r691,0r-21,121r-173,0r-219,1251r173,0r-21,121r-691,0xm486,-1899r277,0r154,264r-147,0r-163,-161r-221,161r-147,0","w":862},"\u00cf":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r691,0r-21,121r-173,0r-219,1251r173,0r-21,121r-691,0xm280,-1673v-48,-67,-15,-158,36,-206v56,-52,141,-63,185,0v46,67,15,158,-36,206v-55,51,-140,61,-185,0xm681,-1673v-47,-67,-15,-158,37,-206v57,-52,141,-62,186,0v72,102,-28,249,-137,249v-36,0,-65,-14,-86,-43","w":862},"\u00d0":{"d":"508,-121r125,0v141,0,251,-49,333,-149v82,-100,142,-259,181,-478v38,-217,34,-376,-13,-475v-47,-99,-141,-149,-282,-149r-125,0r-91,522r298,0r-24,137r-298,0xm-32,0r21,-121r172,0r104,-592r-192,0r24,-137r192,0r91,-522r-172,0r21,-121r691,0v470,-3,698,255,612,745v-42,242,-138,428,-288,556v-150,128,-345,192,-585,192r-691,0","w":1611},"\u00d1":{"d":"-50,0r22,-121r171,0r219,-1251r-172,0r22,-121r420,0r626,1057r164,-936r-171,0r21,-121r470,0r-22,121r-171,0r-240,1372r-236,0r-635,-1079r-168,958r171,0r-21,121r-470,0xm914,-1726v-73,-25,-129,24,-136,91r-99,0v11,-88,42,-155,83,-202v72,-81,187,-80,281,-21v38,24,74,55,130,55v57,0,90,-44,98,-98r99,0v-14,85,-42,156,-84,202v-51,56,-126,81,-210,57v-48,-14,-109,-66,-162,-84","w":1684},"\u00d2":{"d":"688,-92v114,0,208,-54,283,-161v75,-107,131,-271,170,-492v39,-221,40,-386,3,-493v-37,-107,-113,-161,-228,-161v-114,0,-209,55,-284,163v-75,108,-131,272,-169,491v-38,219,-39,383,-2,491v37,108,113,162,227,162xm666,29v-450,0,-675,-296,-588,-774v44,-241,139,-431,292,-569v153,-138,342,-206,567,-206v451,0,676,296,589,775v-44,241,-139,431,-292,568v-153,137,-342,206,-568,206xm964,-1899r117,264r-148,0r-220,-264r251,0","w":1605},"\u00d3":{"d":"688,-92v114,0,208,-54,283,-161v75,-107,131,-271,170,-492v39,-221,40,-386,3,-493v-37,-107,-113,-161,-228,-161v-114,0,-209,55,-284,163v-75,108,-131,272,-169,491v-38,219,-39,383,-2,491v37,108,113,162,227,162xm666,29v-450,0,-675,-296,-588,-774v44,-241,139,-431,292,-569v153,-138,342,-206,567,-206v451,0,676,296,589,775v-44,241,-139,431,-292,568v-153,137,-342,206,-568,206xm1033,-1899r251,0r-314,264r-148,0","w":1605},"\u00d4":{"d":"688,-92v114,0,208,-54,283,-161v75,-107,131,-271,170,-492v39,-221,40,-386,3,-493v-37,-107,-113,-161,-228,-161v-114,0,-209,55,-284,163v-75,108,-131,272,-169,491v-38,219,-39,383,-2,491v37,108,113,162,227,162xm666,29v-450,0,-675,-296,-588,-774v44,-241,139,-431,292,-569v153,-138,342,-206,567,-206v451,0,676,296,589,775v-44,241,-139,431,-292,568v-153,137,-342,206,-568,206xm859,-1899r277,0r154,264r-147,0r-163,-161r-221,161r-147,0","w":1605},"\u00d5":{"d":"688,-92v114,0,208,-54,283,-161v75,-107,131,-271,170,-492v39,-221,40,-386,3,-493v-37,-107,-113,-161,-228,-161v-114,0,-209,55,-284,163v-75,108,-131,272,-169,491v-38,219,-39,383,-2,491v37,108,113,162,227,162xm666,29v-450,0,-675,-296,-588,-774v44,-241,139,-431,292,-569v153,-138,342,-206,567,-206v451,0,676,296,589,775v-44,241,-139,431,-292,568v-153,137,-342,206,-568,206xm876,-1726v-73,-25,-129,24,-136,91r-99,0v11,-88,42,-155,83,-202v72,-81,187,-80,281,-21v38,24,74,55,130,55v57,0,90,-44,98,-98r99,0v-14,85,-42,156,-84,202v-51,56,-126,81,-210,57v-48,-14,-109,-66,-162,-84","w":1605},"\u00d6":{"d":"688,-92v114,0,208,-54,283,-161v75,-107,131,-271,170,-492v39,-221,40,-386,3,-493v-37,-107,-113,-161,-228,-161v-114,0,-209,55,-284,163v-75,108,-131,272,-169,491v-38,219,-39,383,-2,491v37,108,113,162,227,162xm666,29v-450,0,-675,-296,-588,-774v44,-241,139,-431,292,-569v153,-138,342,-206,567,-206v451,0,676,296,589,775v-44,241,-139,431,-292,568v-153,137,-342,206,-568,206xm722,-1673v-48,-67,-15,-158,36,-206v56,-52,141,-63,185,0v46,67,15,158,-36,206v-55,51,-140,61,-185,0xm1123,-1673v-47,-67,-15,-158,37,-206v57,-52,141,-62,186,0v72,102,-28,249,-137,249v-36,0,-65,-14,-86,-43","w":1605},"\u00d7":{"d":"1307,-1081r-396,440r396,440r-139,154r-396,-440r-396,440r-138,-154r396,-440r-396,-440r138,-156r396,440r396,-440","w":1544},"\u00d8":{"d":"1163,-1157v-20,-145,-94,-242,-247,-242v-114,0,-209,55,-284,163v-75,108,-131,272,-169,491v-16,88,-27,173,-28,266xm442,-334v23,148,90,242,246,242v117,0,211,-57,287,-167v83,-121,163,-384,189,-641v3,-34,3,-64,0,-93xm937,-1520v198,0,347,54,450,154r219,-203r65,90r-213,199v85,140,106,318,68,535v-42,241,-139,431,-292,568v-153,137,-342,206,-568,206v-197,0,-345,-56,-448,-156r-220,205r-65,-90r215,-201v-86,-136,-109,-316,-71,-532v42,-241,140,-431,293,-569v153,-138,342,-206,567,-206","w":1605},"\u00d9":{"d":"346,-1372r-171,0r21,-121r691,0r-21,121r-172,0r-130,747v-33,186,-29,317,10,391v39,74,121,111,248,111v124,0,219,-38,284,-113v65,-75,113,-204,145,-389r131,-747r-171,0r21,-121r468,0r-21,121r-172,0r-134,768v-40,228,-113,391,-219,488v-106,97,-264,145,-473,145v-423,0,-548,-181,-469,-635xm1010,-1899r117,264r-148,0r-220,-264r251,0","w":1607},"\u00da":{"d":"346,-1372r-171,0r21,-121r691,0r-21,121r-172,0r-130,747v-33,186,-29,317,10,391v39,74,121,111,248,111v124,0,219,-38,284,-113v65,-75,113,-204,145,-389r131,-747r-171,0r21,-121r468,0r-21,121r-172,0r-134,768v-40,228,-113,391,-219,488v-106,97,-264,145,-473,145v-423,0,-548,-181,-469,-635xm1079,-1899r251,0r-314,264r-148,0","w":1607},"\u00db":{"d":"346,-1372r-171,0r21,-121r691,0r-21,121r-172,0r-130,747v-33,186,-29,317,10,391v39,74,121,111,248,111v124,0,219,-38,284,-113v65,-75,113,-204,145,-389r131,-747r-171,0r21,-121r468,0r-21,121r-172,0r-134,768v-40,228,-113,391,-219,488v-106,97,-264,145,-473,145v-423,0,-548,-181,-469,-635xm905,-1899r277,0r154,264r-147,0r-163,-161r-221,161r-147,0","w":1607},"\u00dc":{"d":"346,-1372r-171,0r21,-121r691,0r-21,121r-172,0r-130,747v-33,186,-29,317,10,391v39,74,121,111,248,111v124,0,219,-38,284,-113v65,-75,113,-204,145,-389r131,-747r-171,0r21,-121r468,0r-21,121r-172,0r-134,768v-40,228,-113,391,-219,488v-106,97,-264,145,-473,145v-423,0,-548,-181,-469,-635xm768,-1673v-48,-67,-15,-158,36,-206v56,-52,141,-63,185,0v46,67,15,158,-36,206v-55,51,-140,61,-185,0xm1169,-1673v-47,-67,-15,-158,37,-206v57,-52,141,-62,186,0v72,102,-28,249,-137,249v-36,0,-65,-14,-86,-43","w":1607},"\u00dd":{"d":"186,0r21,-121r181,0r87,-497r-267,-754r-115,0r21,-121r645,0r-21,121r-150,0r203,569r400,-569r-134,0r21,-121r385,0r-21,121r-114,0r-495,702r-96,549r180,0r-21,121r-710,0xm887,-1899r251,0r-314,264r-148,0","w":1315},"\u00de":{"d":"-44,0r21,-121r172,0r219,-1251r-172,0r21,-121r733,0r-21,121r-215,0r-30,170r247,0v278,-5,459,156,413,436v-43,257,-268,441,-566,438r-246,0r-37,207r217,0r-21,121r-735,0xm553,-449r101,0v78,0,146,-29,202,-86v56,-57,93,-134,110,-231v34,-181,-38,-316,-202,-315r-101,0","w":1395},"\u00df":{"d":"617,-289v-8,134,26,204,149,205v96,1,167,-73,181,-160v11,-70,-24,-144,-109,-222r-94,-87v-90,-87,-142,-169,-114,-336v32,-189,157,-291,347,-332v19,-158,-10,-223,-154,-223v-65,0,-117,20,-153,60v-36,40,-62,104,-78,194r-213,1219v-25,139,-74,229,-149,269v-115,61,-239,91,-370,91r20,-112v48,0,86,-19,114,-57v28,-38,50,-101,65,-187r207,-1180v48,-269,247,-410,566,-409v310,1,446,127,426,440v-177,-4,-308,42,-334,180v-5,27,-2,51,8,74v17,43,103,116,147,157v91,84,146,153,167,207v20,53,24,115,11,187v-37,217,-225,342,-485,340v-116,-1,-211,-26,-309,-60r45,-258r109,0","w":1400},"\u00e0":{"d":"567,-1638r165,376r-147,0r-269,-376r251,0xm757,-876v-2,-40,-20,-60,-54,-60v-81,0,-160,53,-239,160v-36,49,-69,156,-98,321v-21,123,-24,209,-9,257v15,48,52,71,110,71v55,0,100,-28,135,-83v35,-55,64,-145,85,-269xm1063,-1031r-158,910r120,-2r-21,123r-400,0r23,-135v-66,109,-157,164,-274,164v-245,0,-340,-202,-289,-477v27,-148,96,-288,211,-416v136,-152,296,-228,478,-228v180,0,283,20,310,61","w":1194},"\u00e1":{"d":"796,-1638r251,0r-402,376r-148,0xm757,-876v-2,-40,-20,-60,-54,-60v-81,0,-160,53,-239,160v-36,49,-69,156,-98,321v-21,123,-24,209,-9,257v15,48,52,71,110,71v55,0,100,-28,135,-83v35,-55,64,-145,85,-269xm1063,-1031r-158,910r120,-2r-21,123r-400,0r23,-135v-66,109,-157,164,-274,164v-245,0,-340,-202,-289,-477v27,-148,96,-288,211,-416v136,-152,296,-228,478,-228v180,0,283,20,310,61","w":1194},"\u00e2":{"d":"570,-1638r218,0r164,376r-148,0r-152,-225r-231,225r-148,0xm757,-876v-2,-40,-20,-60,-54,-60v-81,0,-160,53,-239,160v-36,49,-69,156,-98,321v-21,123,-24,209,-9,257v15,48,52,71,110,71v55,0,100,-28,135,-83v35,-55,64,-145,85,-269xm1063,-1031r-158,910r120,-2r-21,123r-400,0r23,-135v-66,109,-157,164,-274,164v-245,0,-340,-202,-289,-477v27,-148,96,-288,211,-416v136,-152,296,-228,478,-228v180,0,283,20,310,61","w":1194},"\u00e3":{"d":"528,-1440v-61,0,-93,66,-103,131r-99,0v14,-102,47,-185,89,-237v53,-65,130,-96,216,-64v41,15,88,62,123,92v23,19,46,29,67,29v62,0,93,-66,104,-131r99,0v-16,100,-46,186,-89,238v-53,65,-130,94,-216,62v-41,-16,-88,-61,-123,-90v-23,-20,-46,-30,-68,-30xm757,-876v-2,-40,-20,-60,-54,-60v-81,0,-160,53,-239,160v-36,49,-69,156,-98,321v-21,123,-24,209,-9,257v15,48,52,71,110,71v55,0,100,-28,135,-83v35,-55,64,-145,85,-269xm1063,-1031r-158,910r120,-2r-21,123r-400,0r23,-135v-66,109,-157,164,-274,164v-245,0,-340,-202,-289,-477v27,-148,96,-288,211,-416v136,-152,296,-228,478,-228v180,0,283,20,310,61","w":1194},"\u00e4":{"d":"402,-1365v-71,-104,28,-248,137,-249v71,-1,119,69,105,146v-13,70,-78,147,-155,147v-36,0,-66,-14,-87,-44xm804,-1365v-71,-103,27,-248,136,-249v71,-1,121,69,108,146v-12,70,-82,148,-158,147v-36,0,-66,-14,-86,-44xm757,-876v-2,-40,-20,-60,-54,-60v-81,0,-160,53,-239,160v-36,49,-69,156,-98,321v-21,123,-24,209,-9,257v15,48,52,71,110,71v55,0,100,-28,135,-83v35,-55,64,-145,85,-269xm1063,-1031r-158,910r120,-2r-21,123r-400,0r23,-135v-66,109,-157,164,-274,164v-245,0,-340,-202,-289,-477v27,-148,96,-288,211,-416v136,-152,296,-228,478,-228v180,0,283,20,310,61","w":1194},"\u00e5":{"d":"757,-876v-2,-40,-20,-60,-54,-60v-81,0,-160,53,-239,160v-36,49,-69,156,-98,321v-21,123,-24,209,-9,257v15,48,52,71,110,71v55,0,100,-28,135,-83v35,-55,64,-145,85,-269xm1063,-1031r-158,910r120,-2r-21,123r-400,0r23,-135v-66,109,-157,164,-274,164v-245,0,-340,-202,-289,-477v27,-148,96,-288,211,-416v136,-152,296,-228,478,-228v180,0,283,20,310,61xm428,-1534v23,-139,154,-285,305,-285v141,0,233,132,207,285v-23,140,-155,285,-306,285v-141,0,-231,-133,-206,-285xm706,-1665v-99,0,-185,133,-122,224v38,56,118,45,167,-1v46,-43,74,-124,32,-184v-19,-26,-44,-39,-77,-39","w":1194},"\u00e6":{"d":"975,-519v225,-1,343,-101,343,-312v0,-99,-37,-148,-111,-148v-57,0,-100,30,-133,85v-33,56,-77,228,-99,375xm348,-288v0,109,28,161,118,161v56,0,101,-28,136,-83v35,-55,64,-145,86,-269r69,-397v-2,-40,-20,-60,-54,-60v-81,0,-160,53,-239,160v-36,49,-64,132,-85,249v-21,117,-31,197,-31,239xm353,29v-196,0,-303,-136,-303,-339v0,-202,72,-382,215,-542v143,-160,306,-240,488,-240v131,0,221,11,270,32v249,-84,619,-5,615,252v0,18,-2,37,-5,56v-38,216,-264,333,-679,352v-4,23,-6,45,-6,66v0,167,62,250,185,250v159,0,248,-103,291,-238r149,0v-90,229,-239,351,-542,351v-141,0,-249,-37,-322,-111v-88,74,-207,111,-356,111","w":1717},"\u00e7":{"d":"265,219v61,30,168,54,229,11v34,-25,52,-72,36,-129v-6,-22,-20,-56,-43,-101r115,0v46,70,83,127,69,225v-17,118,-115,177,-256,176v-64,0,-123,-10,-177,-26xm409,-314v0,143,48,230,178,230v64,0,119,-21,165,-64v46,-43,81,-104,103,-184r150,0v-44,121,-106,212,-187,272v-81,60,-183,89,-304,89v-283,2,-452,-141,-452,-417v0,-245,90,-434,224,-556v150,-137,369,-177,609,-127v65,14,131,35,196,63r-51,295r-101,0v13,-157,-35,-266,-184,-266v-89,0,-158,33,-207,100v-49,67,-88,182,-117,347v-15,86,-22,159,-22,218","w":1122},"\u00e8":{"d":"613,-1638r165,376r-147,0r-269,-376r251,0xm430,-519v221,6,344,-98,344,-313v0,-98,-37,-147,-112,-147v-57,0,-102,29,-136,89v-34,60,-65,184,-96,371xm491,29v-275,2,-430,-139,-430,-408v0,-246,89,-444,223,-565v109,-98,241,-148,399,-148v115,0,212,24,291,74v94,60,136,144,114,266v-38,216,-264,333,-679,352v-4,23,-6,58,-6,105v1,141,63,211,186,211v158,0,248,-103,290,-238r150,0v-90,227,-239,348,-538,351","w":1172},"\u00e9":{"d":"842,-1638r251,0r-402,376r-148,0xm430,-519v221,6,344,-98,344,-313v0,-98,-37,-147,-112,-147v-57,0,-102,29,-136,89v-34,60,-65,184,-96,371xm491,29v-275,2,-430,-139,-430,-408v0,-246,89,-444,223,-565v109,-98,241,-148,399,-148v115,0,212,24,291,74v94,60,136,144,114,266v-38,216,-264,333,-679,352v-4,23,-6,58,-6,105v1,141,63,211,186,211v158,0,248,-103,290,-238r150,0v-90,227,-239,348,-538,351","w":1172},"\u00ea":{"d":"616,-1638r218,0r164,376r-148,0r-152,-225r-231,225r-148,0xm430,-519v221,6,344,-98,344,-313v0,-98,-37,-147,-112,-147v-57,0,-102,29,-136,89v-34,60,-65,184,-96,371xm491,29v-275,2,-430,-139,-430,-408v0,-246,89,-444,223,-565v109,-98,241,-148,399,-148v115,0,212,24,291,74v94,60,136,144,114,266v-38,216,-264,333,-679,352v-4,23,-6,58,-6,105v1,141,63,211,186,211v158,0,248,-103,290,-238r150,0v-90,227,-239,348,-538,351","w":1172},"\u00eb":{"d":"448,-1365v-71,-104,28,-248,137,-249v71,-1,119,69,105,146v-13,70,-78,147,-155,147v-36,0,-66,-14,-87,-44xm850,-1365v-71,-103,27,-248,136,-249v71,-1,121,69,108,146v-12,70,-82,148,-158,147v-36,0,-66,-14,-86,-44xm430,-519v221,6,344,-98,344,-313v0,-98,-37,-147,-112,-147v-57,0,-102,29,-136,89v-34,60,-65,184,-96,371xm491,29v-275,2,-430,-139,-430,-408v0,-246,89,-444,223,-565v109,-98,241,-148,399,-148v115,0,212,24,291,74v94,60,136,144,114,266v-38,216,-264,333,-679,352v-4,23,-6,58,-6,105v1,141,63,211,186,211v158,0,248,-103,290,-238r150,0v-90,227,-239,348,-538,351","w":1172},"\u00ec":{"d":"377,-1638r165,376r-147,0r-269,-376r251,0xm446,-121r136,0r-21,121r-455,0r165,-942r-136,0r21,-121r454,0","w":700},"\u00ed":{"d":"606,-1638r251,0r-402,376r-148,0xm446,-121r136,0r-21,121r-455,0r165,-942r-136,0r21,-121r454,0","w":700},"\u00ee":{"d":"380,-1638r218,0r164,376r-148,0r-152,-225r-231,225r-148,0xm446,-121r136,0r-21,121r-455,0r165,-942r-136,0r21,-121r454,0","w":700},"\u00ef":{"d":"212,-1365v-71,-104,28,-248,137,-249v71,-1,119,69,105,146v-13,70,-78,147,-155,147v-36,0,-66,-14,-87,-44xm614,-1365v-71,-103,27,-248,136,-249v71,-1,121,69,108,146v-12,70,-82,148,-158,147v-36,0,-66,-14,-86,-44xm446,-121r136,0r-21,121r-455,0r165,-942r-136,0r21,-121r454,0","w":700},"\u00f0":{"d":"425,-1556v158,22,293,69,393,145r324,-154r24,103r-261,125v171,176,271,438,214,780v-31,184,-105,327,-219,431v-114,104,-255,155,-424,155v-318,0,-506,-207,-446,-537v28,-153,95,-282,210,-381v133,-116,273,-169,466,-145v25,4,49,10,74,18v-10,-91,-39,-160,-80,-225r-313,149r-28,-100r274,-131v-62,-57,-151,-96,-252,-123xm776,-891v-43,-20,-80,-37,-132,-37v-67,0,-120,32,-159,96v-39,64,-72,171,-99,324v-27,156,-33,266,-16,329v17,63,59,95,126,95v67,0,117,-33,158,-94v54,-82,114,-355,123,-532v3,-64,3,-124,-1,-181","w":1229},"\u00f1":{"d":"643,-1440v-61,0,-93,66,-103,131r-99,0v14,-102,47,-185,89,-237v53,-65,130,-96,216,-64v41,15,88,62,123,92v23,19,46,29,67,29v62,0,93,-66,104,-131r99,0v-16,100,-46,186,-89,238v-53,65,-130,94,-216,62v-41,-16,-88,-61,-123,-90v-23,-20,-46,-30,-68,-30xm879,-804v2,-83,-29,-121,-109,-122v-64,0,-115,26,-154,78v-39,52,-69,136,-89,250r-105,598r-319,0r165,-942r-136,0r21,-121r455,0r-26,150v90,-112,171,-177,349,-179v177,-2,267,100,266,281v0,41,-4,86,-13,135r-97,555r136,0r-21,121r-455,0r120,-686v8,-47,12,-86,12,-118","w":1340},"\u00f2":{"d":"643,-1638r165,376r-147,0r-269,-376r251,0xm403,-270v0,114,36,187,134,186v67,0,120,-32,159,-96v39,-64,72,-181,102,-352v19,-111,30,-200,30,-266v0,-109,-35,-182,-134,-181v-68,0,-121,33,-160,97v-39,64,-73,181,-103,350v-19,109,-28,197,-28,262xm714,-1092v281,0,455,146,455,421v0,245,-90,428,-229,551v-113,100,-254,149,-422,149v-280,0,-455,-148,-455,-423v0,-244,91,-429,229,-550v113,-99,253,-148,422,-148","w":1229},"\u00f3":{"d":"872,-1638r251,0r-402,376r-148,0xm403,-270v0,114,36,187,134,186v67,0,120,-32,159,-96v39,-64,72,-181,102,-352v19,-111,30,-200,30,-266v0,-109,-35,-182,-134,-181v-68,0,-121,33,-160,97v-39,64,-73,181,-103,350v-19,109,-28,197,-28,262xm714,-1092v281,0,455,146,455,421v0,245,-90,428,-229,551v-113,100,-254,149,-422,149v-280,0,-455,-148,-455,-423v0,-244,91,-429,229,-550v113,-99,253,-148,422,-148","w":1229},"\u00f4":{"d":"646,-1638r218,0r164,376r-148,0r-152,-225r-231,225r-148,0xm403,-270v0,114,36,187,134,186v67,0,120,-32,159,-96v39,-64,72,-181,102,-352v19,-111,30,-200,30,-266v0,-109,-35,-182,-134,-181v-68,0,-121,33,-160,97v-39,64,-73,181,-103,350v-19,109,-28,197,-28,262xm714,-1092v281,0,455,146,455,421v0,245,-90,428,-229,551v-113,100,-254,149,-422,149v-280,0,-455,-148,-455,-423v0,-244,91,-429,229,-550v113,-99,253,-148,422,-148","w":1229},"\u00f5":{"d":"604,-1440v-61,0,-93,66,-103,131r-99,0v14,-102,47,-185,89,-237v53,-65,130,-96,216,-64v41,15,88,62,123,92v23,19,46,29,67,29v62,0,93,-66,104,-131r99,0v-16,100,-46,186,-89,238v-53,65,-130,94,-216,62v-41,-16,-88,-61,-123,-90v-23,-20,-46,-30,-68,-30xm403,-270v0,114,36,187,134,186v67,0,120,-32,159,-96v39,-64,72,-181,102,-352v19,-111,30,-200,30,-266v0,-109,-35,-182,-134,-181v-68,0,-121,33,-160,97v-39,64,-73,181,-103,350v-19,109,-28,197,-28,262xm714,-1092v281,0,455,146,455,421v0,245,-90,428,-229,551v-113,100,-254,149,-422,149v-280,0,-455,-148,-455,-423v0,-244,91,-429,229,-550v113,-99,253,-148,422,-148","w":1229},"\u00f6":{"d":"478,-1365v-71,-104,28,-248,137,-249v71,-1,119,69,105,146v-13,70,-78,147,-155,147v-36,0,-66,-14,-87,-44xm880,-1365v-71,-103,27,-248,136,-249v71,-1,121,69,108,146v-12,70,-82,148,-158,147v-36,0,-66,-14,-86,-44xm403,-270v0,114,36,187,134,186v67,0,120,-32,159,-96v39,-64,72,-181,102,-352v19,-111,30,-200,30,-266v0,-109,-35,-182,-134,-181v-68,0,-121,33,-160,97v-39,64,-73,181,-103,350v-19,109,-28,197,-28,262xm714,-1092v281,0,455,146,455,421v0,245,-90,428,-229,551v-113,100,-254,149,-422,149v-280,0,-455,-148,-455,-423v0,-244,91,-429,229,-550v113,-99,253,-148,422,-148","w":1229},"\u00f7":{"d":"772,-862v-74,0,-134,-73,-134,-150v0,-76,60,-149,134,-149v75,0,135,72,135,149v0,78,-60,150,-135,150xm772,-123v-74,0,-134,-73,-134,-149v0,-77,60,-150,134,-150v75,0,135,72,135,150v0,77,-60,149,-135,149xm195,-756r1154,0r0,228r-1154,0r0,-228","w":1544},"\u00f8":{"d":"829,-801v0,-110,-33,-178,-135,-178v-66,0,-119,31,-158,95v-39,64,-72,174,-99,331r-24,137xm403,-262v-2,110,34,178,135,178v65,0,118,-31,156,-94v38,-63,71,-173,99,-330r24,-141xm714,-1092v139,0,248,34,322,99r181,-168r62,86r-176,162v63,97,79,224,53,381v-54,324,-280,560,-638,561v-140,0,-242,-35,-322,-99r-185,172r-61,-86r177,-163v-61,-100,-77,-229,-51,-385v53,-325,279,-559,638,-560","w":1229},"\u00f9":{"d":"664,-1638r165,376r-147,0r-269,-376r251,0xm463,-250v0,83,30,113,107,113v64,0,115,-26,154,-79v39,-53,69,-136,89,-251r104,-596r320,0r-165,942r136,0r-21,121r-456,0r26,-150v-89,112,-170,177,-348,179v-178,2,-267,-100,-266,-281v0,-41,4,-86,13,-135r97,-555r-136,0r21,-121r455,0r-108,621v-15,83,-22,147,-22,192","w":1340},"\u00fa":{"d":"893,-1638r251,0r-402,376r-148,0xm463,-250v0,83,30,113,107,113v64,0,115,-26,154,-79v39,-53,69,-136,89,-251r104,-596r320,0r-165,942r136,0r-21,121r-456,0r26,-150v-89,112,-170,177,-348,179v-178,2,-267,-100,-266,-281v0,-41,4,-86,13,-135r97,-555r-136,0r21,-121r455,0r-108,621v-15,83,-22,147,-22,192","w":1340},"\u00fb":{"d":"667,-1638r218,0r164,376r-148,0r-152,-225r-231,225r-148,0xm463,-250v0,83,30,113,107,113v64,0,115,-26,154,-79v39,-53,69,-136,89,-251r104,-596r320,0r-165,942r136,0r-21,121r-456,0r26,-150v-89,112,-170,177,-348,179v-178,2,-267,-100,-266,-281v0,-41,4,-86,13,-135r97,-555r-136,0r21,-121r455,0r-108,621v-15,83,-22,147,-22,192","w":1340},"\u00fc":{"d":"499,-1365v-71,-104,28,-248,137,-249v71,-1,119,69,105,146v-13,70,-78,147,-155,147v-36,0,-66,-14,-87,-44xm902,-1365v-71,-103,26,-248,135,-249v71,-1,121,69,108,146v-12,70,-82,148,-158,147v-36,0,-65,-14,-85,-44xm463,-250v0,83,30,113,107,113v64,0,115,-26,154,-79v39,-53,69,-136,89,-251r104,-596r320,0r-165,942r136,0r-21,121r-456,0r26,-150v-89,112,-170,177,-348,179v-178,2,-267,-100,-266,-281v0,-41,4,-86,13,-135r97,-555r-136,0r21,-121r455,0r-108,621v-15,83,-22,147,-22,192","w":1340},"\u00fd":{"d":"793,-1638r251,0r-402,376r-148,0xm102,235v-2,90,56,110,143,110v67,0,134,-24,202,-72r-256,-1215r-104,0r21,-121r391,0r215,1028v168,-282,228,-474,310,-905r-128,-1r21,-121r258,-1v-15,85,-33,183,-55,293v-53,271,-113,469,-180,594v-175,327,-334,520,-475,580v-80,34,-177,51,-292,51v-57,0,-126,-14,-208,-43r39,-222r101,1v-2,16,-3,31,-3,44","w":1071},"\u00fe":{"d":"876,-761v0,-108,-35,-175,-133,-175v-63,0,-112,29,-152,83v-49,66,-87,239,-108,374v-11,67,-18,123,-18,170v0,110,38,183,137,182v65,0,117,-29,154,-88v37,-59,68,-164,95,-317v17,-95,25,-171,25,-229xm672,29v-139,0,-216,-56,-250,-164r-98,561r-318,0r325,-1862r-136,0r21,-120r455,0r-110,628v67,-100,155,-162,307,-164v229,-4,360,158,356,398v-4,242,-83,449,-204,573v-97,99,-212,150,-348,150","w":1288},"\u00ff":{"d":"399,-1365v-71,-104,28,-248,137,-249v71,-1,119,69,105,146v-13,70,-78,147,-155,147v-36,0,-66,-14,-87,-44xm802,-1365v-71,-103,26,-248,135,-249v71,-1,121,69,108,146v-12,70,-82,148,-158,147v-36,0,-65,-14,-85,-44xm102,235v-2,90,56,110,143,110v67,0,134,-24,202,-72r-256,-1215r-104,0r21,-121r391,0r215,1028v168,-282,228,-474,310,-905r-128,-1r21,-121r258,-1v-15,85,-33,183,-55,293v-53,271,-113,469,-180,594v-175,327,-334,520,-475,580v-80,34,-177,51,-292,51v-57,0,-126,-14,-208,-43r39,-222r101,1v-2,16,-3,31,-3,44","w":1071},"\u0152":{"d":"939,-121r219,-1251r-114,0v-159,0,-287,52,-386,157v-99,105,-166,260,-202,467v-37,209,-24,366,37,470v61,104,172,157,332,157r114,0xm1950,0r-1189,0v-227,-1,-376,-24,-502,-109v-166,-112,-232,-344,-181,-639v49,-285,193,-518,404,-636v147,-82,300,-108,540,-109r1173,0r-61,352r-124,0r38,-215r-545,0r-83,479r330,0r33,-190r123,0r-90,516r-123,0r33,-190r-330,0r-106,604r561,0r37,-215r124,0","w":2175},"\u0153":{"d":"500,29v-264,0,-437,-158,-437,-423v0,-244,91,-429,229,-550v113,-99,248,-148,406,-148v157,0,274,37,353,112v100,-75,213,-112,339,-112v126,0,225,23,298,68v103,65,144,155,124,272v-38,216,-265,333,-680,352v-3,23,-5,58,-5,105v1,141,62,211,185,211v159,0,248,-103,291,-238r149,0v-90,228,-240,351,-542,351v-141,0,-247,-37,-320,-110v-104,73,-234,110,-390,110xm1491,-762v20,-112,-4,-217,-106,-217v-57,0,-102,28,-133,86v-34,62,-66,187,-99,374v196,6,308,-75,338,-243xm402,-292v0,132,28,208,135,208v67,0,121,-32,159,-96v38,-64,69,-167,94,-308v25,-141,38,-236,38,-286v0,-130,-25,-205,-134,-205v-68,0,-121,33,-160,97v-39,64,-71,166,-95,305v-25,139,-37,234,-37,285","w":1894},"\u0178":{"d":"186,0r21,-121r181,0r87,-497r-267,-754r-115,0r21,-121r645,0r-21,121r-150,0r203,569r400,-569r-134,0r21,-121r385,0r-21,121r-114,0r-495,702r-96,549r180,0r-21,121r-710,0xm576,-1673v-48,-67,-15,-158,36,-206v56,-52,141,-63,185,0v46,67,15,158,-36,206v-55,51,-140,61,-185,0xm977,-1673v-47,-67,-15,-158,37,-206v57,-52,141,-62,186,0v72,102,-28,249,-137,249v-36,0,-65,-14,-86,-43","w":1315},"\u02c6":{"d":"491,-1638r218,0r164,376r-148,0r-152,-225r-231,225r-148,0","w":921},"\u02dc":{"d":"449,-1440v-61,0,-93,66,-103,131r-99,0v14,-102,47,-185,89,-237v53,-65,130,-96,216,-64v41,15,88,62,123,92v23,19,46,29,67,29v62,0,93,-66,104,-131r99,0v-16,100,-46,186,-89,238v-53,65,-130,94,-216,62v-41,-16,-88,-61,-123,-90v-23,-20,-46,-30,-68,-30","w":921},"\u2013":{"d":"120,-664r724,0r-42,240r-724,0","w":921},"\u2014":{"d":"120,-664r1645,0r-42,240r-1645,0","w":1843},"\u2018":{"d":"562,-1384v-144,97,-215,238,-244,450r-242,0v60,-284,191,-460,415,-586","w":641},"\u2019":{"d":"61,-1042v145,-97,213,-237,243,-451r243,0v-62,287,-190,457,-416,586","w":641},"\u201a":{"d":"27,131v145,-97,213,-239,244,-450r243,0v-62,284,-191,458,-416,585","w":641},"\u201c":{"d":"981,-1384v-146,96,-215,239,-246,450r-243,0v62,-285,192,-458,418,-586xm562,-1384v-144,97,-215,238,-244,450r-242,0v60,-284,191,-460,415,-586","w":1060},"\u201d":{"d":"479,-1042v146,-97,211,-239,243,-451r244,0v-62,287,-190,457,-416,586xm61,-1042v145,-97,213,-237,243,-451r243,0v-62,287,-190,457,-416,586","w":1060},"\u201e":{"d":"444,131v144,-97,216,-238,245,-450r243,0v-60,284,-191,458,-415,585xm27,131v145,-97,213,-239,244,-450r243,0v-62,284,-191,458,-416,585","w":1060},"\u2022":{"d":"290,-622v-31,-86,-31,-193,0,-279v30,-85,98,-158,176,-193v77,-35,171,-36,248,1v115,55,199,167,199,331v0,165,-85,279,-200,334v-77,37,-172,36,-249,0v-78,-36,-143,-109,-174,-194","w":1178},"\u2026":{"d":"1378,-27v-90,-134,35,-325,178,-325v93,0,156,90,138,190v-16,93,-104,191,-205,191v-47,0,-85,-18,-111,-56xm778,-27v-90,-134,35,-325,177,-325v93,0,155,90,138,190v-16,93,-105,191,-205,191v-47,0,-84,-18,-110,-56xm176,-27v-91,-134,36,-325,178,-325v94,0,155,90,138,190v-16,94,-104,191,-205,191v-47,0,-85,-18,-111,-56","w":1843},"\u2039":{"d":"646,-1069r-25,147r-273,322r160,321r-26,148r-354,-385r29,-168","w":737},"\u203a":{"d":"256,-1069r354,385r-29,168r-489,385r26,-148r271,-321r-159,-322","w":737},"\u20ac":{"d":"605,29v-319,0,-483,-224,-479,-559r-171,0r69,-119r109,0v1,-5,1,-12,2,-22v5,-35,8,-60,11,-74r20,-97r-156,0r68,-119r124,0v62,-178,152,-316,270,-413v164,-135,370,-185,600,-115v66,20,136,53,211,98r-64,367r-106,0v-1,-131,-18,-227,-51,-288v-33,-61,-85,-91,-154,-91v-78,0,-145,36,-202,109v-57,73,-106,184,-146,333r424,0r-70,119r-381,0v-10,51,-22,86,-27,143r-7,50r304,0r-69,119r-248,0v-14,148,-5,259,27,332v32,73,88,110,167,110v67,0,126,-28,180,-86v54,-58,99,-142,134,-252r146,0v-49,149,-119,262,-210,339v-91,77,-199,116,-325,116"},"\u2122":{"d":"214,-1493r509,0r0,180r-69,0r0,-98r-118,0r0,416r78,0r0,80r-292,0r0,-80r78,0r0,-416r-118,0r0,98r-68,0r0,-180xm1029,-1493r149,293r150,-293r220,0r0,82r-77,0r0,416r77,0r0,80r-291,0r0,-80r78,0r0,-359r-146,285r-102,0r-145,-285r0,359r78,0r0,80r-231,0r0,-80r76,0r0,-416r-76,0r0,-82r240,0","w":1843}}}); diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-webfont.eot b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-webfont.eot new file mode 100644 index 0000000..ee07ad3 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-webfont.eot differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-webfont.svg b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-webfont.svg new file mode 100644 index 0000000..e3e36ff --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-webfont.svg @@ -0,0 +1,241 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved._DejaVu changes are in public domain_ +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-webfont.ttf b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-webfont.ttf new file mode 100644 index 0000000..6996418 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-webfont.ttf differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-webfont.woff b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-webfont.woff new file mode 100644 index 0000000..ca42793 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-BoldItalic-webfont.woff differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-cufon.js b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-cufon.js new file mode 100644 index 0000000..13a6af5 --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-cufon.js @@ -0,0 +1,18 @@ +/*! + * The following copyright notice may not be removed under any circumstances. + * + * Copyright: + * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + * DejaVu changes are in public domain + * + * + * Manufacturer: + * DejaVu fonts team + * + * Vendor URL: + * http://dejavu.sourceforge.net + * + * License information: + * http://dejavu.sourceforge.net/wiki/index.php/License + */ +Cufon.registerFont({"w":1172,"face":{"font-family":"DejaVu Serif Condensed","font-weight":400,"font-style":"italic","font-stretch":"semi-condensed","units-per-em":"2048","panose-1":"2 6 6 6 5 3 5 11 2 4","ascent":"1556","descent":"-492","x-height":"29","bbox":"-337 -1901 2064 483","underline-thickness":"90","underline-position":"-85","slope":"-11","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":585},"!":{"d":"158,-10v-60,-94,24,-228,126,-228v67,0,109,63,97,134v-11,65,-73,133,-143,133v-35,0,-63,-13,-80,-39xm388,-1493r232,0r-205,821r-44,252r-111,0r45,-252","w":740},"\"":{"d":"324,-1493r0,555r-143,0r0,-555r143,0xm667,-1493r0,555r-143,0r0,-555r143,0","w":847},"#":{"d":"938,-901r-254,0r-76,334r257,0xm811,-1470r-92,415r254,0r93,-415r154,0r-94,415r277,0r0,154r-312,0r-74,334r283,0r0,153r-317,0r-93,414r-155,0r95,-414r-255,0r-93,414r-154,0r92,-414r-278,0r0,-153r313,0r74,-334r-284,0r0,-154r319,0r94,-415r153,0","w":1544},"$":{"d":"523,-68v137,-13,227,-88,247,-215v22,-135,-58,-202,-168,-237xm629,-1187v-125,9,-213,84,-230,200v-19,131,51,181,157,219xm737,-1288v126,12,230,46,322,98r-46,262r-98,0v12,-154,-57,-248,-196,-259r-79,452v139,45,234,95,283,153v49,58,65,135,48,232v-38,224,-216,364,-465,381r-47,270r-90,0r47,-270v-139,-5,-250,-46,-355,-103r49,-276r97,0v-28,186,51,276,226,280r85,-485v-131,-43,-219,-91,-265,-147v-46,-56,-61,-130,-45,-222v35,-213,204,-352,439,-366r46,-268r90,0"},"%":{"d":"532,-1427v-53,0,-99,28,-138,83v-39,55,-68,133,-85,232v-17,98,-16,175,5,231v21,56,57,84,108,84v51,0,97,-27,136,-83v39,-56,68,-133,85,-232v17,-99,16,-176,-4,-232v-20,-56,-56,-83,-107,-83xm1331,-694v-52,0,-97,28,-137,84v-40,56,-69,134,-86,233v-17,98,-15,175,5,231v20,56,55,83,107,83v52,0,98,-27,137,-83v39,-56,67,-133,84,-231v17,-99,17,-177,-3,-233v-20,-56,-56,-84,-107,-84xm1347,-784v202,1,281,178,239,407v-23,124,-67,224,-136,297v-69,73,-151,109,-245,109v-204,0,-283,-177,-241,-406v23,-125,67,-224,136,-297v69,-73,152,-110,247,-110xm1363,-1520r137,0r-1112,1549r-136,0xm547,-1520v202,1,283,177,240,406v-23,126,-67,225,-136,298v-69,73,-151,109,-247,109v-204,-1,-281,-177,-238,-407v23,-124,67,-223,136,-296v69,-73,150,-110,245,-110","w":1751},"&":{"d":"269,-483v-41,221,92,395,293,391v145,-2,258,-61,343,-139r-416,-613v-109,93,-190,205,-220,361xm1365,-741v-53,181,-140,329,-258,452r123,183r212,0r-19,106r-361,0r-98,-145v-127,101,-263,169,-463,174v-294,7,-475,-186,-418,-490v17,-88,53,-172,112,-249v59,-77,141,-149,246,-216v-41,-72,-62,-147,-46,-248v38,-247,288,-399,583,-329v51,12,109,28,174,51r-45,258r-102,0v10,-138,-55,-220,-188,-219v-166,1,-287,149,-234,325v12,39,45,96,97,173r370,544v96,-101,167,-221,207,-370r18,-107r264,0r-19,107r-155,0","w":1640},"'":{"d":"324,-1493r0,555r-143,0r0,-555r143,0","w":506},"(":{"d":"424,319v-274,-150,-359,-478,-278,-937v41,-237,113,-434,215,-592v102,-158,232,-273,391,-346r-17,98v-105,71,-189,170,-252,298v-63,128,-114,309,-155,542v-40,232,-52,412,-34,540v18,128,67,228,147,299","w":719},")":{"d":"-34,319r18,-98v105,-71,189,-171,252,-299v63,-128,114,-308,155,-540v41,-233,51,-414,33,-542v-18,-128,-67,-227,-147,-298r18,-98v274,150,358,478,278,938v-77,444,-267,779,-607,937","w":719},"*":{"d":"892,-1237r-352,182r352,185r-68,118r-314,-217r12,381r-122,0r11,-381r-313,217r-68,-118r352,-183r-352,-184r68,-119r313,217r-11,-381r122,0r-12,381r314,-217","w":921},"+":{"d":"844,-1284r0,561r505,0r0,162r-505,0r0,561r-144,0r0,-561r-505,0r0,-162r505,0r0,-561r144,0","w":1544},",":{"d":"36,199v137,-96,209,-227,239,-426r177,0v-53,240,-170,390,-358,506","w":585},"-":{"d":"95,-627r460,0r-27,156r-461,0","w":622},".":{"d":"192,-10v-61,-94,22,-228,125,-228v66,0,109,63,97,134v-11,65,-73,133,-144,133v-34,0,-61,-13,-78,-39","w":585},"\/":{"d":"624,-1493r144,0r-771,1683r-144,0","w":621},"0":{"d":"468,-70v92,0,170,-56,235,-168v65,-112,118,-281,157,-507v40,-227,47,-396,21,-508v-26,-112,-85,-168,-177,-168v-92,0,-171,56,-236,168v-65,112,-117,281,-157,508v-39,226,-46,395,-20,507v26,112,85,168,177,168xm450,29v-145,0,-248,-68,-306,-204v-58,-136,-66,-326,-23,-570v43,-245,117,-435,223,-571v106,-136,232,-204,377,-204v147,0,249,68,307,204v58,136,65,326,22,571v-43,244,-117,434,-222,570v-105,136,-231,204,-378,204"},"1":{"d":"129,0r18,-106r234,0r218,-1242r-305,195r23,-131r369,-236r124,0r-248,1414r234,0r-18,106r-649,0"},"2":{"d":"633,-1421v-194,2,-287,115,-331,284r-101,0r46,-266v120,-63,249,-114,406,-117v265,-4,427,151,379,420v-25,146,-148,321,-367,524r-443,412r560,0r32,-184r106,0r-61,348r-867,0r19,-109r487,-452v107,-100,187,-191,240,-275v53,-84,87,-172,104,-264v35,-191,-37,-323,-209,-321"},"3":{"d":"666,-1421v-178,1,-273,101,-312,254r-101,0r46,-263v125,-48,252,-88,399,-90v242,-4,397,117,356,357v-32,186,-168,309,-354,348v203,30,318,173,276,412v-47,274,-246,433,-566,432v-157,-1,-278,-39,-387,-101r50,-290r101,0v-22,193,70,293,257,292v200,-2,324,-146,355,-331v39,-231,-46,-357,-260,-357r-86,0r18,-102v242,11,376,-86,411,-291v30,-173,-41,-271,-203,-270"},"4":{"d":"599,-506r139,-794r-598,794r459,0xm907,0r-612,0r18,-106r216,0r51,-293r-586,0r19,-109r765,-1012r178,0r-177,1014r257,0r-19,107r-257,0r-51,293r216,0"},"5":{"d":"570,-874v-129,0,-205,54,-275,131r-77,0r131,-750r711,0r-29,164r-615,0r-75,428v67,-46,153,-72,262,-72v288,-3,435,193,382,500v-51,294,-247,502,-573,502v-147,0,-264,-42,-371,-101r51,-290r102,0v-23,187,57,293,236,292v95,0,173,-35,236,-104v63,-69,106,-169,129,-299v23,-129,15,-228,-24,-297v-39,-69,-106,-104,-201,-104"},"6":{"d":"485,-70v85,0,155,-35,213,-104v58,-69,98,-168,121,-297v23,-129,17,-228,-17,-297v-34,-69,-92,-104,-177,-104v-86,0,-157,33,-214,100v-57,67,-96,163,-118,289v-23,133,-18,235,15,306v33,71,92,107,177,107xm967,-1214v10,-134,-60,-207,-191,-207v-117,0,-212,49,-286,147v-74,98,-130,249,-167,452v87,-87,186,-147,339,-149v274,-3,401,203,347,500v-28,151,-89,272,-189,363v-100,91,-220,137,-360,137v-151,0,-256,-63,-316,-189v-60,-126,-70,-305,-29,-538v46,-261,128,-465,251,-607v155,-179,332,-248,593,-200v51,10,101,25,152,45r-43,246r-101,0"},"7":{"d":"1152,-1391r-769,1391r-134,0r734,-1329r-621,0r-32,184r-105,0r60,-348r885,0"},"8":{"d":"800,-408v37,-201,-33,-337,-214,-337v-86,0,-159,30,-217,89v-58,59,-96,141,-115,248v-37,202,33,337,214,338v86,0,158,-29,216,-88v58,-59,97,-143,116,-250xm603,-844v168,0,259,-129,286,-289v29,-172,-29,-289,-185,-288v-167,2,-258,129,-286,288v-30,172,30,289,185,289xm733,-795v188,26,293,166,256,387v-46,270,-232,437,-539,437v-283,0,-435,-147,-386,-437v35,-208,182,-358,393,-387v-162,-32,-255,-143,-222,-338v38,-231,222,-387,487,-387v246,0,395,137,350,387v-32,183,-156,304,-339,338"},"9":{"d":"205,-279v-7,133,60,210,191,209v116,0,212,-48,286,-146v74,-98,130,-249,167,-453v-87,87,-187,147,-341,149v-273,3,-398,-203,-344,-500v28,-151,90,-273,190,-364v100,-91,219,-136,358,-136v152,0,258,62,317,188v59,126,69,306,28,539v-46,261,-128,465,-251,607v-155,179,-332,248,-592,200v-50,-10,-102,-25,-153,-45r44,-248r100,0xm688,-1421v-85,0,-157,34,-214,103v-57,69,-97,169,-120,298v-23,129,-17,229,16,298v33,69,93,104,178,104v85,0,155,-33,212,-100v57,-67,97,-164,119,-290v23,-133,18,-235,-15,-306v-33,-71,-91,-107,-176,-107"},":":{"d":"152,-10v-61,-94,24,-228,126,-228v67,0,109,62,96,134v-12,67,-70,133,-143,133v-34,0,-62,-13,-79,-39xm267,-662v-61,-93,23,-227,125,-227v68,0,109,60,96,133v-12,68,-70,133,-143,133v-33,0,-61,-13,-78,-39","w":621},";":{"d":"-22,199v137,-96,209,-227,239,-426r177,0v-54,241,-169,391,-358,506xm292,-662v-62,-93,24,-227,126,-227v67,0,108,62,96,133v-11,67,-72,133,-144,133v-34,0,-61,-13,-78,-39","w":621},"<":{"d":"1349,-1020r-934,379r934,377r0,170r-1154,-465r0,-166r1154,-465r0,170","w":1544},"=":{"d":"195,-926r1154,0r0,160r-1154,0r0,-160xm195,-518r1154,0r0,160r-1154,0r0,-160","w":1544},">":{"d":"195,-1020r0,-170r1154,465r0,166r-1154,465r0,-170r935,-377","w":1544},"?":{"d":"230,-10v-62,-94,24,-228,126,-228v65,0,109,63,96,134v-12,65,-72,133,-143,133v-34,0,-62,-13,-79,-39xm244,-1427v114,-51,223,-90,359,-93v251,-5,407,142,362,396v-47,264,-219,410,-482,473r-44,254r-111,0r57,-328v213,-54,351,-183,391,-401v33,-173,-37,-295,-193,-295v-69,0,-128,21,-179,65v-51,44,-91,107,-118,189r-87,0","w":988},"@":{"d":"1300,170v-136,111,-299,186,-523,186v-369,0,-593,-231,-657,-546v-22,-109,-21,-227,2,-353v47,-263,177,-481,347,-637v158,-145,373,-262,645,-262v275,0,463,130,561,322v63,122,90,275,60,452v-30,179,-105,320,-221,424v-116,104,-259,156,-428,158r27,-162v-76,91,-157,160,-297,162v-221,4,-321,-204,-275,-451v25,-134,75,-242,155,-325v80,-83,172,-125,277,-125v129,0,195,65,241,162r25,-142r140,0r-135,772v220,-50,364,-237,405,-475v49,-287,-73,-495,-249,-596v-124,-71,-288,-91,-450,-52v-220,53,-377,169,-498,340v-89,126,-149,270,-178,435v-64,352,53,620,280,733v82,42,176,62,280,62v182,0,315,-64,431,-152xm875,-203v151,-2,259,-137,279,-282r19,-105v31,-157,-41,-281,-183,-280v-73,0,-134,30,-185,88v-51,58,-85,140,-104,245v-19,106,-13,189,18,247v31,58,83,87,156,87","w":1843},"A":{"d":"333,-541r493,0r-122,-710xm-141,0r18,-106r118,0r721,-1387r152,0r237,1387r132,0r-18,106r-489,0r18,-106r150,0r-55,-328r-566,0r-169,328r147,0r-18,106r-378,0","w":1331},"B":{"d":"343,-106r269,0v234,-3,332,-114,369,-326v39,-228,-38,-324,-255,-324r-269,0xm476,-862r228,0v204,-1,299,-84,330,-262v33,-192,-50,-261,-238,-262r-229,0xm906,-815v206,29,322,148,281,383v-52,300,-240,431,-595,432r-621,0r19,-106r171,0r224,-1280r-171,0r18,-107r664,0v256,-1,390,110,345,369v-31,178,-148,286,-335,309","w":1354},"C":{"d":"1214,-1047v-2,-248,-105,-365,-351,-366v-143,0,-261,56,-355,169v-94,113,-160,280,-198,499v-38,219,-31,384,23,497v54,113,153,170,296,170v101,0,188,-27,262,-80v74,-53,135,-132,182,-237r165,0v-64,139,-149,244,-254,317v-158,110,-417,146,-608,57v-145,-68,-251,-223,-280,-401v-16,-95,-14,-203,7,-323v41,-232,133,-419,279,-561v198,-192,440,-261,744,-182v79,21,162,54,250,97r-61,344r-101,0","w":1410},"D":{"d":"343,-106r168,0v175,0,318,-55,431,-166v113,-111,186,-269,223,-476v71,-397,-68,-637,-430,-638r-168,0xm-29,0r19,-106r171,0r224,-1280r-171,0r18,-107r535,0v452,-5,690,273,605,745v-41,235,-138,418,-291,550v-153,132,-344,198,-575,198r-535,0","w":1477},"E":{"d":"-29,0r19,-106r171,0r224,-1280r-171,0r18,-107r1082,0r-58,332r-111,0r37,-209r-618,0r-87,500r440,0r33,-187r111,0r-87,496r-111,0r33,-187r-440,0r-110,625r632,0r37,-209r110,0r-58,332r-1096,0","w":1345},"F":{"d":"-29,0r19,-106r171,0r224,-1280r-171,0r18,-107r1100,0r-58,332r-111,0r37,-209r-636,0r-87,500r459,0r33,-187r110,0r-86,496r-111,0r33,-187r-459,0r-113,642r215,0r-18,106r-569,0","w":1278},"G":{"d":"1233,-1047v1,-246,-104,-365,-346,-366v-155,0,-279,55,-375,166v-96,111,-163,278,-202,502v-38,219,-29,385,30,498v59,113,165,169,317,169v158,0,281,-46,391,-112r67,-385r-253,0r19,-107r435,0r-97,557v-161,93,-345,154,-580,154v-203,0,-354,-70,-451,-211v-97,-141,-126,-329,-85,-563v41,-236,136,-425,283,-565v198,-189,455,-254,764,-180v78,20,160,49,245,89r-62,354r-100,0","w":1472},"H":{"d":"-29,0r19,-106r171,0r224,-1280r-171,0r18,-107r525,0r-19,107r-171,0r-90,516r697,0r90,-516r-171,0r19,-107r524,0r-18,107r-171,0r-224,1280r171,0r-19,106r-525,0r19,-106r171,0r112,-642r-696,0r-113,642r171,0r-18,106r-525,0","w":1607},"I":{"d":"343,-106r171,0r-18,106r-525,0r19,-106r171,0r224,-1280r-171,0r18,-107r525,0r-19,107r-171,0","w":728},"J":{"d":"-311,358r41,-235r103,0v-19,124,15,195,127,196v71,0,125,-25,162,-75v37,-50,69,-148,94,-293r234,-1337r-209,0r19,-107r562,0r-19,107r-171,0r-235,1345v-29,165,-80,283,-151,357v-92,96,-268,135,-434,93v-42,-11,-83,-28,-123,-51","w":738},"K":{"d":"-29,0r19,-106r171,0r224,-1280r-171,0r18,-107r525,0r-19,107r-171,0r-99,565r678,-565r-146,0r19,-107r446,0r-18,107r-152,0r-675,563r520,717r153,0r-19,106r-312,0r-513,-709r-106,603r171,0r-18,106r-525,0","w":1377},"L":{"d":"-29,0r19,-106r171,0r224,-1280r-171,0r18,-107r525,0r-19,107r-171,0r-221,1263r614,0r44,-250r111,0r-66,373r-1078,0","w":1224},"M":{"d":"-29,0r19,-106r171,0r224,-1280r-181,0r18,-107r392,0r286,1063r657,-1063r367,0r-18,107r-180,0r-223,1280r171,0r-18,106r-526,0r19,-106r171,0r202,-1154r-643,1041r-127,0r-279,-1041r-202,1154r171,0r-18,106r-453,0","w":1887},"N":{"d":"-38,0r18,-106r181,0r224,-1280r-181,0r19,-107r345,0r599,1178r188,-1071r-180,0r18,-107r472,0r-19,107r-181,0r-247,1415r-109,0r-640,-1258r-197,1123r181,0r-19,106r-472,0","w":1612},"O":{"d":"639,-78v147,0,268,-56,363,-168v95,-112,161,-279,199,-499v39,-221,30,-387,-25,-499v-55,-112,-156,-169,-303,-169v-148,0,-269,57,-364,169v-95,112,-161,278,-199,499v-38,220,-30,387,25,499v55,112,157,168,304,168xm880,-20v-152,63,-357,66,-502,-1v-147,-68,-253,-222,-282,-401v-36,-224,32,-492,113,-646v89,-169,242,-329,422,-402v81,-33,168,-50,260,-50v195,0,340,71,435,213v95,142,123,329,82,562v-43,247,-145,434,-300,577v-71,65,-147,114,-228,148","w":1511},"P":{"d":"458,-760r237,0v197,-3,299,-130,330,-313v34,-198,-37,-313,-220,-313r-238,0xm-29,0r19,-106r171,0r224,-1280r-171,0r18,-107r636,0v257,-4,408,156,364,420v-41,243,-235,420,-511,420r-282,0r-96,547r208,0r-18,106r-562,0","w":1240},"Q":{"d":"795,12v47,88,129,131,263,131r225,0r-33,185r-105,0v-159,0,-272,-27,-338,-82v-65,-54,-111,-127,-139,-217v-346,6,-563,-226,-557,-577v6,-346,128,-600,319,-775v125,-114,273,-193,488,-197v331,-6,540,237,535,578v-4,294,-96,521,-241,694v-114,134,-252,221,-417,260xm1251,-990v3,-258,-109,-423,-352,-423v-147,0,-268,57,-363,169v-95,112,-160,278,-200,499v-32,179,-39,368,25,499v55,112,157,168,304,168v147,0,268,-56,363,-168v95,-112,161,-279,200,-499v15,-91,23,-172,23,-245","w":1511},"R":{"d":"882,-741v89,30,130,91,156,192r118,443r164,0r-19,106r-316,0r-127,-475v-24,-92,-51,-152,-80,-179v-29,-27,-72,-40,-131,-40r-201,0r-103,588r190,0r-18,106r-544,0r19,-106r171,0r224,-1280r-171,0r18,-107r682,0v252,-2,386,138,339,399v-36,205,-160,324,-371,353xm465,-801r265,0v199,-3,285,-109,317,-293v34,-198,-30,-291,-214,-292r-266,0","w":1387},"S":{"d":"1023,-1114v15,-216,-71,-298,-285,-299v-190,0,-307,90,-335,252v-13,71,-3,127,27,168v30,41,102,81,215,121r157,55v115,41,192,92,233,155v41,63,52,148,34,254v-49,286,-241,437,-574,437v-171,0,-313,-41,-442,-101r60,-340r103,1v-33,232,62,333,286,333v212,1,347,-95,377,-276v13,-72,6,-127,-21,-166v-27,-39,-92,-76,-195,-113r-167,-59v-121,-43,-203,-97,-244,-162v-41,-65,-51,-153,-32,-266v43,-250,240,-402,533,-400v155,1,296,40,427,88r-55,318r-102,0","w":1262},"T":{"d":"221,0r19,-106r172,0r222,-1268r-396,0r-40,233r-111,0r62,-352r1193,0r-62,352r-110,0r40,-233r-395,0r-221,1268r171,0r-18,106r-526,0","w":1229},"U":{"d":"373,-1386r-172,0r19,-107r525,0r-19,107r-171,0r-136,772v-33,191,-28,324,15,399v43,75,133,113,270,113v137,0,241,-38,310,-113v69,-75,121,-208,154,-399r135,-772r-172,0r19,-107r454,0r-19,107r-171,0r-139,792v-39,227,-106,388,-201,482v-95,94,-237,141,-426,141v-397,0,-491,-186,-414,-623","w":1553},"V":{"d":"434,-1386r196,1146r597,-1146r-151,0r18,-107r395,0r-19,107r-131,0r-722,1386r-154,0r-235,-1386r-134,0r19,-107r489,0r-19,107r-149,0","w":1331},"W":{"d":"1274,0r-147,0r-96,-1214r-520,1214r-147,0r-110,-1386r-133,0r19,-107r490,0r-19,107r-167,0r87,1103r518,-1210r145,0r98,1223r477,-1116r-155,0r19,-107r387,0r-19,107r-132,0","w":1894},"X":{"d":"591,-639r-421,533r173,0r-18,106r-445,0r19,-106r155,0r496,-627r-278,-653r-144,0r19,-107r533,0r-19,107r-159,0r204,481r381,-481r-173,0r18,-107r441,0r-19,107r-151,0r-456,575r300,705r144,0r-18,106r-533,0r18,-106r161,0","w":1312},"Y":{"d":"218,0r18,-106r172,0r94,-537r-285,-743r-126,0r19,-107r499,0r-18,107r-157,0r230,604r441,-604r-151,0r19,-107r391,0r-19,107r-127,0r-531,724r-97,556r172,0r-19,106r-525,0","w":1216},"Z":{"d":"-48,0r13,-72r1064,-1298r-695,0r-39,223r-111,0r61,-346r1062,0r-13,72r-1064,1298r760,0r36,-209r110,0r-58,332r-1126,0","w":1280},"[":{"d":"318,-1556r419,0r-19,106r-247,0r-282,1614r247,0r-19,106r-418,0","w":719},"\\":{"d":"291,-1493r183,1683r-144,0r-183,-1683r144,0","w":621},"]":{"d":"720,-1556r-319,1826r-419,0r19,-106r247,0r282,-1614r-247,0r19,-106r418,0","w":719},"^":{"d":"860,-1493r489,557r-138,0r-439,-381r-438,381r-139,0r489,-557r176,0","w":1544},"_":{"d":"922,403r0,80r-922,0r0,-80r922,0","w":921},"`":{"d":"508,-1636r167,376r-105,0r-240,-376r178,0","w":921},"a":{"d":"357,29v-181,0,-297,-135,-295,-323v0,-34,3,-70,10,-108v41,-235,135,-414,282,-535v126,-104,265,-155,416,-155v102,0,171,10,206,29r-168,957r143,0r-19,106r-291,0r29,-166v-81,130,-185,195,-313,195xm237,-300v0,143,62,214,186,214v75,0,139,-33,191,-100v52,-67,88,-165,110,-293r85,-482v0,-19,-24,-29,-73,-29v-115,0,-218,50,-307,150v-89,100,-149,242,-181,425v-7,43,-11,81,-11,115","w":1098},"b":{"d":"549,29v-158,-1,-235,-69,-276,-195r-29,166r-165,0r253,-1450r-159,0r19,-106r325,0r-116,659v79,-117,170,-195,344,-195v117,0,204,52,261,155v59,107,68,257,41,405v-30,167,-90,302,-183,406v-93,104,-198,155,-315,155xm871,-712v3,-154,-57,-265,-197,-265v-84,0,-154,34,-210,101v-56,67,-95,165,-117,292v-13,74,-33,171,-33,247v0,150,64,251,204,251v85,0,153,-39,212,-113v77,-97,138,-322,141,-513","w":1179},"c":{"d":"267,-345v-2,162,60,277,208,275v72,0,133,-21,183,-62v50,-41,89,-104,119,-187r134,0v-43,113,-104,200,-181,259v-77,59,-168,89,-274,89v-236,0,-382,-171,-378,-414v4,-241,84,-428,212,-555v141,-141,321,-184,539,-128v57,16,114,39,169,71r-48,272r-96,0v5,-174,-51,-269,-217,-268v-89,0,-162,40,-223,115v-80,98,-144,334,-147,533","w":1032},"d":{"d":"550,-1092v157,1,236,69,275,195r97,-553r-157,0r19,-106r322,0r-272,1556r-166,0r29,-166v-78,117,-170,195,-343,195v-118,0,-205,-52,-262,-155v-60,-107,-68,-257,-41,-406v30,-167,91,-302,183,-405v92,-103,197,-155,316,-155xm227,-353v-3,155,57,267,198,267v84,0,154,-33,210,-100v56,-67,95,-165,117,-293v12,-74,32,-170,32,-246v0,-150,-63,-252,-203,-252v-85,0,-154,39,-213,112v-76,95,-138,322,-141,512","w":1179},"e":{"d":"434,29v-215,0,-362,-182,-356,-415v6,-239,84,-424,210,-552v101,-103,224,-154,368,-154v235,0,352,92,352,277v0,135,-61,236,-184,302v-126,67,-311,102,-554,105v-23,190,44,338,222,338v70,0,122,-12,156,-35v61,-42,99,-90,113,-144r122,0v-24,85,-81,157,-170,216v-63,41,-155,62,-279,62xm732,-632v67,-44,100,-107,100,-190v0,-114,-68,-171,-204,-171v-80,0,-148,34,-204,102v-56,68,-101,194,-135,377v193,-10,340,-49,443,-118","w":1090},"f":{"d":"831,-1305v16,-95,-26,-153,-120,-153v-62,0,-108,20,-141,56v-50,54,-77,226,-96,339r267,0r-19,107r-267,0r-179,1022v-37,217,-154,357,-390,360r10,-98v63,0,110,-19,141,-56v32,-40,56,-109,73,-206r179,-1022r-158,0r19,-107r158,0r23,-133v21,-119,66,-208,131,-269v88,-82,229,-109,378,-79v39,8,77,20,114,37r-36,202r-87,0","w":682},"g":{"d":"778,-166v-77,116,-170,191,-339,195v-173,4,-287,-124,-294,-298v-2,-41,1,-85,9,-133v41,-235,136,-414,283,-535v125,-103,261,-154,408,-155v134,-1,219,9,255,29r-182,1040v-27,159,-87,275,-175,353v-133,118,-319,150,-522,106v-55,-13,-107,-32,-156,-57r39,-223r86,0v-2,144,68,200,215,200v97,0,173,-31,229,-92v55,-60,96,-156,119,-287xm917,-956v0,-23,-33,-34,-98,-34v-117,0,-219,50,-307,150v-89,101,-149,242,-181,425v-17,96,-19,180,15,246v28,56,82,83,159,83v84,0,154,-33,210,-100v56,-67,95,-165,118,-293","w":1179},"h":{"d":"812,-790v2,-117,-42,-166,-154,-166v-77,0,-141,31,-192,93v-51,62,-87,152,-108,271r-104,592r-165,0r254,-1450r-159,0r19,-106r324,0r-120,682v43,-72,93,-126,148,-163v55,-37,115,-55,180,-55v173,1,251,88,250,264v0,45,-5,95,-15,152r-99,570r147,0r-18,106r-314,0r108,-618v12,-69,18,-126,18,-172","w":1187},"i":{"d":"289,-1370v0,-73,58,-134,125,-137v47,-2,84,44,83,92v0,73,-56,132,-123,135v-48,2,-86,-41,-85,-90xm277,-106r157,0r-19,106r-322,0r167,-956r-158,0r19,-107r324,0","w":589},"j":{"d":"334,-1370v0,-73,58,-134,125,-137v47,-2,84,44,83,92v0,73,-55,132,-123,135v-48,2,-86,-41,-85,-90xm-216,216v-1,93,38,139,127,140v54,0,98,-21,131,-62v33,-41,58,-104,73,-190r185,-1060r-156,0r18,-107r323,0r-205,1167v-32,238,-239,405,-511,334v-38,-10,-73,-27,-106,-49r38,-219r85,0v-1,17,-2,32,-2,46","w":571},"k":{"d":"608,-664r266,558r138,0r-19,106r-265,0r-261,-543r-154,135r-71,408r-166,0r254,-1450r-159,0r18,-106r325,0r-177,1013r475,-413r-137,0r18,-107r269,0r-18,107","w":1116},"l":{"d":"260,-106r157,0r-19,106r-322,0r254,-1450r-159,0r18,-106r325,0","w":589},"m":{"d":"764,-1092v151,-1,240,89,245,236v45,-78,96,-136,153,-176v57,-40,118,-60,184,-60v164,0,241,96,239,267v0,44,-5,94,-14,149r-100,570r149,0r-18,106r-315,0r114,-655v9,-52,14,-97,14,-134v2,-111,-41,-166,-147,-167v-74,0,-136,31,-186,93v-50,62,-84,152,-105,271r-103,592r-166,0r116,-662v9,-50,13,-93,13,-129v1,-110,-42,-164,-148,-165v-74,0,-136,31,-185,93v-49,62,-84,152,-105,271r-104,592r-166,0r168,-958r-158,0r18,-105r324,0r-33,189v43,-71,91,-125,145,-162v54,-37,111,-56,171,-56","w":1747},"n":{"d":"852,-790v2,-117,-42,-168,-154,-168v-77,0,-141,32,-192,94v-51,62,-86,153,-107,272r-104,592r-166,0r168,-956r-159,0r19,-107r324,0r-33,189v43,-72,93,-126,148,-163v55,-37,115,-55,180,-55v172,0,251,89,250,264v0,45,-5,95,-15,152r-100,570r148,0r-19,106r-314,0r108,-618v12,-69,18,-126,18,-172","w":1187},"o":{"d":"267,-348v-3,162,60,278,207,278v89,0,161,-41,222,-117v80,-100,143,-332,146,-530v3,-161,-61,-276,-207,-276v-89,0,-160,41,-221,117v-79,99,-143,331,-147,528xm652,-1092v237,0,383,168,379,413v-4,241,-83,427,-211,555v-102,102,-224,153,-364,153v-236,0,-382,-171,-378,-414v4,-241,84,-427,212,-554v102,-102,222,-153,362,-153","w":1109},"p":{"d":"946,-712v3,-155,-58,-265,-197,-265v-84,0,-154,34,-210,101v-56,67,-95,165,-117,292v-12,74,-32,171,-32,247v0,149,62,251,203,251v85,0,154,-39,212,-113v76,-97,138,-321,141,-513xm624,29v-157,-1,-236,-69,-275,-195r-104,592r-165,0r241,-1382r-159,0r19,-107r325,0r-29,166v78,-117,170,-195,343,-195v118,0,204,52,261,155v59,107,68,257,41,405v-30,167,-90,302,-182,406v-92,104,-198,155,-316,155","w":1179},"q":{"d":"773,-166v-73,114,-151,191,-313,195v-216,5,-330,-193,-285,-431v45,-235,135,-414,282,-535v125,-103,262,-154,409,-155v116,-1,192,9,229,29r-242,1383r159,0r-18,106r-325,0xm840,-990v-115,0,-218,50,-307,150v-89,100,-150,242,-182,425v-17,96,-18,180,16,246v29,56,82,83,159,83v76,0,140,-33,191,-100v51,-67,88,-165,110,-293r85,-482v1,-19,-23,-29,-72,-29","w":1179},"r":{"d":"830,-799v12,-96,-21,-157,-115,-157v-81,0,-149,31,-204,94v-55,63,-92,153,-112,270r-104,592r-166,0r168,-958r-158,0r18,-105r324,0r-33,189v45,-74,98,-127,154,-164v99,-65,247,-64,370,-27r-47,266r-95,0","w":881},"s":{"d":"815,-377v4,254,-188,406,-451,406v-121,0,-236,-29,-343,-88r43,-248r95,0v-20,156,49,238,219,237v149,0,237,-60,256,-182v7,-47,4,-82,-28,-118v-68,-77,-365,-134,-424,-232v-33,-55,-46,-105,-34,-178v30,-188,192,-313,408,-312v107,0,216,29,327,86r-41,232r-95,0v20,-134,-51,-222,-193,-219v-158,3,-240,66,-244,211v0,21,11,42,30,66v33,42,188,93,267,122v85,31,143,71,175,118v22,33,33,66,33,99","w":945},"t":{"d":"336,29v-152,0,-218,-49,-219,-194v0,-34,4,-73,12,-116r118,-675r-146,0r19,-107r146,0r57,-330r167,0r-58,330r311,0r-18,107r-312,0r-118,675v-9,53,-14,94,-14,125v-1,64,25,86,87,86v107,0,135,-74,158,-180r125,0v-41,175,-118,279,-315,279","w":740},"u":{"d":"335,-273v-2,117,41,167,154,167v77,0,140,-31,191,-94v51,-63,88,-154,109,-273r103,-590r166,0r-168,957r157,0r-19,106r-322,0r33,-188v-43,71,-92,125,-147,162v-55,37,-115,55,-179,55v-173,-1,-253,-87,-252,-264v0,-45,5,-95,15,-152r100,-569r-150,0r19,-107r316,0r-108,619v-12,69,-18,126,-18,171","w":1187},"v":{"d":"1022,-1063v-132,526,-231,732,-538,1063r-121,0r-185,-956r-109,0r18,-107r248,0r162,838v69,-67,126,-142,173,-227v96,-176,161,-344,195,-504r-110,0r19,-107r248,0","w":1041},"w":{"d":"1077,-233v80,-96,129,-162,147,-197v66,-133,131,-309,196,-526r-139,1r19,-108r240,0r-19,108r-1,0v-61,247,-120,431,-179,550v-85,170,-176,305,-270,405r-138,0r-98,-795r-375,795r-133,0r-116,-956r-107,2r19,-109r246,0r101,830r392,-830r116,0","w":1577},"x":{"d":"118,0r-113,0r422,-510r-212,-446r-118,0r18,-107r243,0r199,414r343,-414r113,0r-414,500r218,457r126,0r-19,106r-251,0r-203,-424","w":1039},"y":{"d":"52,221v-10,79,17,131,96,131v105,0,204,-51,296,-153r-226,-1155r-109,0r19,-107r247,0r213,1055v97,-161,157,-274,180,-340v75,-207,121,-407,136,-599r-109,0r19,-107r246,0v-59,381,-141,673,-246,874v-153,295,-294,483,-414,576v-72,56,-342,82,-468,28r36,-203r84,0","w":1041},"z":{"d":"733,-975v65,0,129,-29,192,-88r54,0r-15,86r-654,758v55,14,98,46,141,75v56,39,105,57,145,57v79,0,164,-50,257,-150r-21,121v-103,112,-194,168,-271,168v-47,0,-104,-25,-171,-71v-67,-46,-121,-69,-163,-69v-65,0,-129,29,-192,88r-54,0r15,-86r654,-757v-28,-11,-70,-25,-97,-46v-48,-37,-139,-87,-189,-87v-79,0,-164,50,-257,150r21,-121v103,-112,194,-168,272,-168v47,0,103,25,170,71v67,46,122,69,163,69","w":971},"{":{"d":"795,229r-18,105r-56,0v-149,0,-245,-25,-287,-74v-42,-49,-50,-148,-24,-295r45,-258v31,-196,0,-263,-179,-266r-55,0r19,-105v103,4,195,-10,241,-58v38,-40,68,-108,85,-208r45,-258v26,-147,70,-243,128,-294v63,-55,211,-78,369,-74r-19,104r-61,0v-85,0,-142,15,-173,44v-31,29,-54,91,-71,185r-50,287v-39,201,-85,276,-264,324v153,50,187,111,150,325r-50,287v-29,190,-12,224,164,229r61,0"},"|":{"d":"383,-1565r0,2048r-145,0r0,-2048r145,0","w":621},"}":{"d":"83,229r63,0v84,0,141,-14,172,-43v31,-29,54,-91,71,-186r50,-287v39,-203,84,-272,263,-325v-154,-45,-186,-113,-149,-324r50,-287v29,-190,13,-224,-162,-229r-63,0r18,-104r56,0v150,0,246,25,287,74v41,49,49,147,23,294r-45,258v-31,196,0,263,179,266r56,0r-19,105v-104,-4,-196,10,-242,58v-38,40,-68,108,-85,208r-45,258v-26,147,-70,244,-127,295v-62,56,-210,78,-369,74"},"~":{"d":"1029,-657v142,0,232,-67,320,-150r0,148v-60,59,-117,102,-171,130v-54,28,-109,42,-165,42v-58,0,-190,-42,-281,-83v-88,-40,-161,-57,-218,-57v-143,0,-230,66,-319,150r0,-152v60,-58,117,-100,171,-127v54,-27,108,-41,165,-41v58,0,189,40,280,82v87,39,159,58,218,58","w":1544},"\u00a0":{"w":585},"\u00a1":{"d":"378,-1294v-60,-94,23,-228,126,-228v65,0,108,63,96,133v-11,66,-72,134,-143,134v-34,0,-62,-12,-79,-39xm122,0r203,-821r45,-252r110,0r-44,252r-82,821r-232,0","w":740},"\u00a2":{"d":"647,-991v-79,10,-145,53,-197,130v-52,77,-91,186,-116,329v-25,143,-24,253,1,330v25,77,76,120,151,130xm576,-72v129,-22,205,-123,248,-247r133,0v-71,186,-190,314,-398,346r-47,270r-90,0r47,-270v-263,-23,-386,-249,-330,-559v29,-161,89,-292,183,-392v94,-100,208,-155,342,-166r47,-266r90,0r-47,266v116,12,208,44,290,93r-48,272r-95,0v5,-154,-38,-247,-164,-266"},"\u00a3":{"d":"979,-1225v10,-123,-46,-196,-163,-196v-76,0,-137,25,-182,77v-45,52,-78,133,-97,242r-52,295r371,0r-19,107r-370,0r-102,579r430,0r40,-227r105,0r-61,348r-889,0r19,-106r174,0r104,-594r-174,0r19,-107r173,0r52,-295v43,-256,195,-416,478,-418v107,0,202,18,281,50r-43,245r-94,0"},"\u00a4":{"d":"588,-1067v96,0,161,34,223,82r188,-207r85,94r-188,209v45,71,75,144,75,248v0,106,-29,176,-77,244r186,207r-86,94r-187,-205v-59,51,-121,86,-219,86v-94,0,-163,-36,-225,-82r-184,205r-85,-94r184,-207v-43,-72,-74,-146,-74,-248v0,-106,30,-177,78,-246r-187,-207r86,-94r186,207v60,-51,123,-86,221,-86xm588,-373v137,0,242,-129,242,-270v0,-141,-105,-266,-242,-266v-136,0,-242,125,-242,266v0,143,105,270,242,270"},"\u00a5":{"d":"193,0r19,-106r172,0r64,-367r-364,0r19,-105r363,0r12,-65r-49,-141r-290,0r18,-105r237,0r-171,-497r-126,0r19,-107r498,0r-19,107r-157,0r203,604r410,-604r-150,0r19,-107r389,0r-19,107r-128,0r-342,497r244,0r-18,105r-299,0r-85,122r-15,84r363,0r-18,105r-363,0r-64,367r171,0r-19,106r-524,0"},"\u00a6":{"d":"383,-408r0,758r-145,0r0,-758r145,0xm383,-1432r0,758r-145,0r0,-758r145,0","w":621},"\u00a7":{"d":"389,-936v-78,54,-124,90,-143,182v-18,87,74,200,269,335r25,18v70,-45,123,-103,139,-191v9,-50,-4,-97,-38,-142v-34,-45,-118,-112,-252,-202xm886,-1464r-35,202r-83,0v16,-100,-48,-155,-147,-155v-122,0,-208,74,-225,180v-10,65,48,143,180,234v96,66,203,156,230,206v59,108,20,261,-49,332v-40,41,-95,78,-169,107v76,59,112,130,90,264v-28,173,-186,291,-390,289v-114,-1,-202,-19,-284,-56r36,-209r83,1v-16,116,49,161,167,161v126,0,216,-73,234,-182v12,-76,-41,-155,-163,-240v-106,-73,-216,-167,-242,-215v-60,-112,-21,-261,55,-335v44,-43,99,-76,168,-97v-75,-57,-119,-129,-100,-254v26,-170,182,-291,380,-289v103,0,188,22,264,56","w":921},"\u00a8":{"d":"401,-1534v44,-43,114,-51,148,0v54,82,-18,199,-110,199v-60,0,-96,-53,-83,-117v6,-32,21,-59,45,-82xm752,-1534v43,-42,114,-51,147,0v54,82,-18,199,-109,199v-61,0,-97,-52,-84,-117v5,-32,22,-58,46,-82","w":921},"\u00a9":{"d":"923,-379v131,0,185,-74,208,-194r107,0v-28,163,-133,271,-315,272v-235,1,-369,-192,-369,-440v0,-248,136,-444,369,-443v117,1,200,32,290,76r0,213r-75,0v-20,-133,-72,-211,-213,-211v-71,0,-122,33,-161,92v-70,107,-71,437,-1,544v38,59,89,91,160,91xm666,-1430v155,-72,355,-72,510,0v157,73,302,235,364,404v63,171,64,397,0,568v-63,169,-207,330,-364,403v-155,72,-355,72,-510,0v-157,-73,-299,-234,-362,-403v-64,-171,-63,-397,0,-568v62,-169,205,-331,362,-404xm1142,-1335v-134,-62,-306,-62,-440,0v-136,63,-258,202,-313,349v-56,149,-57,339,0,488v55,146,177,285,313,348v134,62,306,62,440,0v135,-63,259,-201,313,-347v55,-148,54,-343,-1,-491v-55,-147,-176,-284,-312,-347","w":1843},"\u00aa":{"d":"475,-1499v97,-20,159,19,192,89r14,-84r113,0r-114,650r116,0r-16,88r-228,0r31,-178v-62,88,-130,152,-238,178v-145,34,-230,-72,-226,-213v5,-162,55,-285,135,-385v63,-79,137,-128,221,-145xm256,-1096v-24,125,-2,268,136,238v114,-25,206,-146,225,-272v7,-45,20,-95,20,-145v2,-93,-55,-155,-149,-134v-132,30,-203,163,-232,313xm83,-639r628,0r-18,104r-628,0","w":875},"\u00ab":{"d":"1035,-1059r-20,115r-327,344r207,344r-20,115r-349,-418r14,-82xm645,-1059r-21,115r-327,344r207,344r-20,115r-349,-418r14,-82","w":1127},"\u00ac":{"d":"195,-862r1154,0r0,575r-144,0r0,-413r-1010,0r0,-162","w":1544},"\u00ad":{"d":"95,-627r460,0r-27,156r-461,0","w":622},"\u00ae":{"d":"1067,-942v0,-98,-50,-150,-149,-150r-112,0r0,301r112,0v100,0,149,-51,149,-151xm1202,-938v-1,117,-64,172,-175,184v53,20,86,53,109,105r104,229r69,0r0,68r-171,0r-118,-254v-21,-47,-42,-78,-60,-94v-33,-30,-94,-22,-154,-23r0,303r75,0r0,68r-285,0r0,-68r74,0r0,-672r-74,0r0,-67r373,0v150,0,233,73,233,221xm1142,-1335v-134,-62,-306,-62,-440,0v-136,63,-258,202,-313,349v-56,149,-57,339,0,488v55,146,177,285,313,348v134,62,306,62,440,0v135,-63,259,-201,313,-347v55,-148,54,-343,-1,-491v-55,-147,-176,-284,-312,-347xm666,-1430v155,-72,355,-72,510,0v157,73,302,235,364,404v63,171,64,397,0,568v-63,169,-207,330,-364,403v-155,72,-355,72,-510,0v-157,-73,-299,-234,-362,-403v-64,-171,-63,-397,0,-568v62,-169,205,-331,362,-404","w":1843},"\u00af":{"d":"356,-1526r539,0r-26,148r-538,0","w":921},"\u00b0":{"d":"623,-1200v0,-93,-73,-182,-162,-182v-93,0,-162,86,-162,182v0,96,69,178,162,178v91,0,162,-84,162,-178xm176,-1200v0,-206,188,-389,396,-296v36,16,64,41,91,71v50,55,81,127,83,225v4,167,-125,315,-287,315v-164,0,-283,-146,-283,-315","w":921},"\u00b1":{"d":"844,-1284r0,391r505,0r0,162r-505,0r0,391r-144,0r0,-391r-505,0r0,-162r505,0r0,-391r144,0xm195,-160r1154,0r0,160r-1154,0r0,-160","w":1544},"\u00b2":{"d":"380,-1446v-105,2,-164,62,-192,150r-63,0r28,-158v75,-37,160,-64,259,-66v151,-3,262,88,237,236v-15,81,-90,180,-227,296r-271,232r346,0r19,-108r67,0r-35,196r-542,0r14,-75r301,-254v60,-51,105,-97,134,-138v29,-41,48,-83,56,-127v21,-110,-29,-185,-131,-184","w":738},"\u00b3":{"d":"397,-1446v-102,0,-159,45,-181,129r-63,0r26,-151v78,-29,158,-50,249,-52v150,-1,246,62,222,207v-17,103,-106,170,-214,189v128,19,199,90,175,235v-26,156,-157,237,-346,236v-96,0,-173,-22,-241,-56r30,-170r63,1v-12,104,44,152,149,151v117,0,188,-67,206,-170v21,-125,-30,-188,-150,-188r-48,0r13,-74v129,5,209,-41,227,-148v15,-91,-29,-140,-117,-139","w":738},"\u00b4":{"d":"772,-1638r179,0r-372,376r-106,0","w":921},"\u00b5":{"d":"382,-274v-1,116,41,168,154,168v77,0,141,-31,192,-94v51,-63,87,-154,108,-273r103,-590r166,0r-168,959r157,0r-18,104r-323,0r33,-188v-43,71,-90,125,-141,162v-51,37,-103,55,-157,55v-75,-1,-122,-28,-158,-72r-82,469r-166,0r242,-1382r-149,0r18,-107r315,0r-108,619v-12,68,-18,125,-18,170","w":1197},"\u00b6":{"d":"547,-649v-237,-18,-373,-162,-331,-422v39,-238,235,-422,502,-422r484,0r-19,107r-106,0r-277,1583r-96,0r277,-1583r-208,0r-277,1583r-97,0"},"\u00b7":{"d":"189,-616v-62,-93,23,-228,126,-228v65,0,108,63,96,133v-11,66,-72,133,-143,133v-34,0,-62,-12,-79,-38","w":585},"\u00b8":{"d":"254,240v59,31,162,54,220,8v39,-32,55,-77,35,-144v-8,-29,-22,-64,-42,-104r88,0v31,43,53,83,65,120v59,194,-104,305,-310,269v-26,-4,-52,-10,-78,-18","w":921},"\u00b9":{"d":"85,-668r15,-84r155,0r111,-634r-200,106r17,-94r238,-129r92,0r-131,751r155,0r-14,84r-438,0","w":738},"\u00ba":{"d":"395,-813v64,0,117,-26,158,-79v41,-53,71,-132,89,-236v18,-104,15,-183,-8,-236v-23,-53,-65,-80,-128,-80v-63,0,-115,27,-157,81v-42,54,-72,132,-90,235v-18,103,-16,182,7,235v23,53,66,80,129,80xm382,-737v-211,0,-322,-164,-280,-391v22,-118,70,-212,146,-284v76,-72,167,-108,272,-108v212,0,321,164,279,392v-22,118,-69,213,-145,284v-76,71,-167,107,-272,107xm55,-639r620,0r-19,104r-619,0","w":866},"\u00bb":{"d":"645,-1059r349,418r-15,82r-495,418r20,-115r328,-344r-208,-344xm254,-1059r349,418r-14,82r-496,418r21,-115r326,-344r-206,-344","w":1127},"\u00bc":{"d":"85,-668r15,-84r155,0r111,-634r-200,106r17,-94r238,-129r92,0r-131,751r155,0r-14,84r-438,0xm1316,-303r71,-407r-348,407r277,0xm1522,0r-391,0r15,-84r132,0r24,-137r-359,0r15,-84r453,-530r127,0r-93,532r147,0r-14,82r-148,0r-24,137r131,0xm1385,-1520r135,0r-1119,1549r-135,0","w":1786},"\u00bd":{"d":"1310,-778v-105,2,-164,62,-192,150r-63,0r28,-158v75,-37,160,-64,259,-66v151,-3,262,88,237,236v-15,81,-90,180,-227,296r-271,232r346,0r19,-108r67,0r-35,196r-542,0r14,-75r301,-254v60,-51,105,-97,134,-138v29,-41,48,-83,56,-127v21,-110,-29,-185,-131,-184xm85,-668r15,-84r155,0r111,-634r-200,106r17,-94r238,-129r92,0r-131,751r155,0r-14,84r-438,0xm1385,-1520r135,0r-1119,1549r-135,0","w":1786},"\u00be":{"d":"397,-1446v-102,0,-159,45,-181,129r-63,0r26,-151v78,-29,158,-50,249,-52v150,-1,246,62,222,207v-17,103,-106,170,-214,189v128,19,199,90,175,235v-26,156,-157,237,-346,236v-96,0,-173,-22,-241,-56r30,-170r63,1v-12,104,44,152,149,151v117,0,188,-67,206,-170v21,-125,-30,-188,-150,-188r-48,0r13,-74v129,5,209,-41,227,-148v15,-91,-29,-140,-117,-139xm1316,-303r71,-407r-348,407r277,0xm1522,0r-391,0r15,-84r132,0r24,-137r-359,0r15,-84r453,-530r127,0r-93,532r147,0r-14,82r-148,0r-24,137r131,0xm1385,-1520r135,0r-1119,1549r-135,0","w":1786},"\u00bf":{"d":"794,-1484v61,94,-23,229,-125,229v-65,0,-109,-63,-96,-134v12,-65,72,-133,143,-133v34,0,61,12,78,38xm780,-66v-114,51,-222,90,-359,93v-250,5,-407,-143,-362,-396v47,-264,221,-410,483,-473r45,-254r110,0r-57,328v-213,54,-352,183,-392,401v-33,173,38,295,195,295v67,0,127,-22,179,-66v52,-44,90,-106,117,-188r86,0","w":988},"\u00c0":{"d":"333,-541r493,0r-122,-710xm-141,0r18,-106r118,0r721,-1387r152,0r237,1387r132,0r-18,106r-489,0r18,-106r150,0r-55,-328r-566,0r-169,328r147,0r-18,106r-378,0xm779,-1899r117,264r-105,0r-189,-264r177,0","w":1331},"\u00c1":{"d":"333,-541r493,0r-122,-710xm-141,0r18,-106r118,0r721,-1387r152,0r237,1387r132,0r-18,106r-489,0r18,-106r150,0r-55,-328r-566,0r-169,328r147,0r-18,106r-378,0xm945,-1899r178,0r-283,264r-105,0","w":1331},"\u00c2":{"d":"333,-541r493,0r-122,-710xm-141,0r18,-106r118,0r721,-1387r152,0r237,1387r132,0r-18,106r-489,0r18,-106r150,0r-55,-328r-566,0r-169,328r147,0r-18,106r-378,0xm766,-1899r159,0r161,264r-104,0r-154,-161r-212,161r-104,0","w":1331},"\u00c3":{"d":"333,-541r493,0r-122,-710xm-141,0r18,-106r118,0r721,-1387r152,0r237,1387r132,0r-18,106r-489,0r18,-106r150,0r-55,-328r-566,0r-169,328r147,0r-18,106r-378,0xm1160,-1886v-23,122,-87,214,-217,219v-57,2,-119,-44,-160,-76v-17,-14,-39,-27,-65,-27v-54,0,-92,51,-103,103r-87,-1v13,-67,39,-119,76,-159v49,-52,114,-72,191,-50v40,12,101,68,147,86v71,28,123,-31,131,-95r87,0","w":1331},"\u00c4":{"d":"333,-541r493,0r-122,-710xm-141,0r18,-106r118,0r721,-1387r152,0r237,1387r132,0r-18,106r-489,0r18,-106r150,0r-55,-328r-566,0r-169,328r147,0r-18,106r-378,0xm595,-1849v44,-43,113,-51,148,0v56,82,-20,198,-109,198v-59,0,-97,-53,-84,-117v5,-31,20,-58,45,-81xm945,-1849v44,-43,113,-51,148,0v56,82,-20,198,-108,198v-59,0,-98,-52,-85,-117v6,-31,20,-58,45,-81","w":1331},"\u00c5":{"d":"753,-1475v81,0,150,-77,163,-151v14,-81,-35,-153,-110,-152v-82,1,-149,75,-162,152v-13,81,33,151,109,151xm297,-541r492,0r-121,-710xm-177,0r18,-106r118,0r664,-1278v-72,-46,-108,-123,-90,-242v20,-135,149,-275,295,-275v136,0,227,129,199,275v-21,110,-87,199,-177,242r219,1278r132,0r-18,106r-489,0r19,-106r149,0r-55,-328r-565,0r-170,328r147,0r-18,106r-378,0","w":1331},"\u00c6":{"d":"347,-541r441,0r147,-845r-90,0xm522,0r18,-106r171,0r58,-328r-484,0r-195,328r148,0r-18,106r-382,0r18,-106r118,0r755,-1280r-193,0r18,-107r1311,0r-58,332r-111,0r37,-209r-620,0r-87,500r443,0r33,-187r110,0r-87,496r-110,0r32,-187r-442,0r-110,625r635,0r36,-209r111,0r-58,332r-1097,0","w":1845},"\u00c7":{"d":"364,240v59,31,162,54,220,8v39,-32,55,-77,35,-144v-8,-29,-22,-64,-42,-104r88,0v31,43,53,83,65,120v59,194,-104,305,-310,269v-26,-4,-52,-10,-78,-18xm1214,-1047v-2,-248,-105,-365,-351,-366v-143,0,-261,56,-355,169v-94,113,-160,280,-198,499v-38,219,-31,384,23,497v54,113,153,170,296,170v101,0,188,-27,262,-80v74,-53,135,-132,182,-237r165,0v-64,139,-149,244,-254,317v-158,110,-417,146,-608,57v-145,-68,-251,-223,-280,-401v-16,-95,-14,-203,7,-323v41,-232,133,-419,279,-561v198,-192,440,-261,744,-182v79,21,162,54,250,97r-61,344r-101,0","w":1410},"\u00c8":{"d":"-29,0r19,-106r171,0r224,-1280r-171,0r18,-107r1082,0r-58,332r-111,0r37,-209r-618,0r-87,500r440,0r33,-187r111,0r-87,496r-111,0r33,-187r-440,0r-110,625r632,0r37,-209r110,0r-58,332r-1096,0xm852,-1899r117,264r-105,0r-189,-264r177,0","w":1345},"\u00c9":{"d":"-29,0r19,-106r171,0r224,-1280r-171,0r18,-107r1082,0r-58,332r-111,0r37,-209r-618,0r-87,500r440,0r33,-187r111,0r-87,496r-111,0r33,-187r-440,0r-110,625r632,0r37,-209r110,0r-58,332r-1096,0xm953,-1899r178,0r-283,264r-105,0","w":1345},"\u00ca":{"d":"-29,0r19,-106r171,0r224,-1280r-171,0r18,-107r1082,0r-58,332r-111,0r37,-209r-618,0r-87,500r440,0r33,-187r111,0r-87,496r-111,0r33,-187r-440,0r-110,625r632,0r37,-209r110,0r-58,332r-1096,0xm817,-1899r159,0r161,264r-104,0r-154,-161r-212,161r-104,0","w":1345},"\u00cb":{"d":"-29,0r19,-106r171,0r224,-1280r-171,0r18,-107r1082,0r-58,332r-111,0r37,-209r-618,0r-87,500r440,0r33,-187r111,0r-87,496r-111,0r33,-187r-440,0r-110,625r632,0r37,-209r110,0r-58,332r-1096,0xm651,-1849v44,-43,113,-51,148,0v56,82,-20,198,-109,198v-59,0,-97,-53,-84,-117v5,-31,20,-58,45,-81xm1001,-1849v44,-43,113,-51,148,0v56,82,-20,198,-108,198v-59,0,-98,-52,-85,-117v6,-31,20,-58,45,-81","w":1345},"\u00cc":{"d":"343,-106r171,0r-18,106r-525,0r19,-106r171,0r224,-1280r-171,0r18,-107r525,0r-19,107r-171,0xm512,-1899r117,264r-105,0r-189,-264r177,0","w":728},"\u00cd":{"d":"343,-106r171,0r-18,106r-525,0r19,-106r171,0r224,-1280r-171,0r18,-107r525,0r-19,107r-171,0xm645,-1899r178,0r-283,264r-105,0","w":728},"\u00ce":{"d":"343,-106r171,0r-18,106r-525,0r19,-106r171,0r224,-1280r-171,0r18,-107r525,0r-19,107r-171,0xm509,-1899r159,0r161,264r-104,0r-154,-161r-212,161r-104,0","w":728},"\u00cf":{"d":"343,-106r171,0r-18,106r-525,0r19,-106r171,0r224,-1280r-171,0r18,-107r525,0r-19,107r-171,0xm311,-1849v44,-43,113,-51,148,0v56,82,-20,198,-109,198v-59,0,-97,-53,-84,-117v5,-31,20,-58,45,-81xm661,-1849v44,-43,113,-51,148,0v56,82,-20,198,-108,198v-59,0,-98,-52,-85,-117v6,-31,20,-58,45,-81","w":728},"\u00d0":{"d":"351,-106r169,0v175,0,319,-55,432,-166v113,-111,186,-269,223,-476v71,-397,-69,-637,-431,-638r-170,0r-94,542r302,0r-22,125r-302,0xm-20,0r19,-106r171,0r107,-613r-180,0r22,-125r180,0r95,-542r-171,0r18,-107r535,0v452,-5,690,273,605,745v-41,235,-138,418,-291,550v-153,132,-344,198,-575,198r-535,0","w":1487},"\u00d1":{"d":"-38,0r18,-106r181,0r224,-1280r-181,0r19,-107r345,0r599,1178r188,-1071r-180,0r18,-107r472,0r-19,107r-181,0r-247,1415r-109,0r-640,-1258r-197,1123r181,0r-19,106r-472,0xm1334,-1886v-23,122,-87,214,-217,219v-57,2,-119,-44,-160,-76v-17,-14,-39,-27,-65,-27v-54,0,-92,51,-103,103r-87,-1v13,-67,39,-119,76,-159v49,-52,114,-72,191,-50v40,12,101,68,147,86v71,28,123,-31,131,-95r87,0","w":1612},"\u00d2":{"d":"639,-78v147,0,268,-56,363,-168v95,-112,161,-279,199,-499v39,-221,30,-387,-25,-499v-55,-112,-156,-169,-303,-169v-148,0,-269,57,-364,169v-95,112,-161,278,-199,499v-38,220,-30,387,25,499v55,112,157,168,304,168xm880,-20v-152,63,-357,66,-502,-1v-147,-68,-253,-222,-282,-401v-36,-224,32,-492,113,-646v89,-169,242,-329,422,-402v81,-33,168,-50,260,-50v195,0,340,71,435,213v95,142,123,329,82,562v-43,247,-145,434,-300,577v-71,65,-147,114,-228,148xm935,-1899r117,264r-105,0r-189,-264r177,0","w":1511},"\u00d3":{"d":"639,-78v147,0,268,-56,363,-168v95,-112,161,-279,199,-499v39,-221,30,-387,-25,-499v-55,-112,-156,-169,-303,-169v-148,0,-269,57,-364,169v-95,112,-161,278,-199,499v-38,220,-30,387,25,499v55,112,157,168,304,168xm880,-20v-152,63,-357,66,-502,-1v-147,-68,-253,-222,-282,-401v-36,-224,32,-492,113,-646v89,-169,242,-329,422,-402v81,-33,168,-50,260,-50v195,0,340,71,435,213v95,142,123,329,82,562v-43,247,-145,434,-300,577v-71,65,-147,114,-228,148xm1036,-1899r178,0r-283,264r-105,0","w":1511},"\u00d4":{"d":"639,-78v147,0,268,-56,363,-168v95,-112,161,-279,199,-499v39,-221,30,-387,-25,-499v-55,-112,-156,-169,-303,-169v-148,0,-269,57,-364,169v-95,112,-161,278,-199,499v-38,220,-30,387,25,499v55,112,157,168,304,168xm880,-20v-152,63,-357,66,-502,-1v-147,-68,-253,-222,-282,-401v-36,-224,32,-492,113,-646v89,-169,242,-329,422,-402v81,-33,168,-50,260,-50v195,0,340,71,435,213v95,142,123,329,82,562v-43,247,-145,434,-300,577v-71,65,-147,114,-228,148xm900,-1899r159,0r161,264r-104,0r-154,-161r-212,161r-104,0","w":1511},"\u00d5":{"d":"639,-78v147,0,268,-56,363,-168v95,-112,161,-279,199,-499v39,-221,30,-387,-25,-499v-55,-112,-156,-169,-303,-169v-148,0,-269,57,-364,169v-95,112,-161,278,-199,499v-38,220,-30,387,25,499v55,112,157,168,304,168xm880,-20v-152,63,-357,66,-502,-1v-147,-68,-253,-222,-282,-401v-36,-224,32,-492,113,-646v89,-169,242,-329,422,-402v81,-33,168,-50,260,-50v195,0,340,71,435,213v95,142,123,329,82,562v-43,247,-145,434,-300,577v-71,65,-147,114,-228,148xm1283,-1886v-23,122,-87,214,-217,219v-57,2,-119,-44,-160,-76v-17,-14,-39,-27,-65,-27v-54,0,-92,51,-103,103r-87,-1v13,-67,39,-119,76,-159v49,-52,114,-72,191,-50v40,12,101,68,147,86v71,28,123,-31,131,-95r87,0","w":1511},"\u00d6":{"d":"639,-78v147,0,268,-56,363,-168v95,-112,161,-279,199,-499v39,-221,30,-387,-25,-499v-55,-112,-156,-169,-303,-169v-148,0,-269,57,-364,169v-95,112,-161,278,-199,499v-38,220,-30,387,25,499v55,112,157,168,304,168xm880,-20v-152,63,-357,66,-502,-1v-147,-68,-253,-222,-282,-401v-36,-224,32,-492,113,-646v89,-169,242,-329,422,-402v81,-33,168,-50,260,-50v195,0,340,71,435,213v95,142,123,329,82,562v-43,247,-145,434,-300,577v-71,65,-147,114,-228,148xm734,-1849v44,-43,113,-51,148,0v56,82,-20,198,-109,198v-59,0,-97,-53,-84,-117v5,-31,20,-58,45,-81xm1084,-1849v44,-43,113,-51,148,0v56,82,-20,198,-108,198v-59,0,-98,-52,-85,-117v6,-31,20,-58,45,-81","w":1511},"\u00d7":{"d":"1291,-1104r-417,463r417,461r-104,112r-415,-460r-415,460r-102,-112r414,-461r-414,-463r102,-113r415,461r415,-461","w":1544},"\u00d8":{"d":"1179,-1239v-54,-111,-148,-173,-306,-174v-148,0,-269,57,-364,169v-95,112,-162,278,-200,499v-24,139,-33,263,-9,393xm331,-256v53,113,150,177,308,178v147,0,268,-56,363,-168v95,-112,161,-279,199,-499v25,-137,33,-266,9,-396xm891,-1520v182,1,311,65,400,168r195,-198r60,71r-201,203v79,144,100,317,63,531v-40,230,-133,416,-278,559v-145,143,-315,215,-510,215v-186,0,-309,-67,-402,-172r-198,200r-58,-69r204,-207v-80,-141,-100,-313,-63,-526v41,-231,133,-418,279,-561v146,-143,316,-214,509,-214","w":1511},"\u00d9":{"d":"373,-1386r-172,0r19,-107r525,0r-19,107r-171,0r-136,772v-33,191,-28,324,15,399v43,75,133,113,270,113v137,0,241,-38,310,-113v69,-75,121,-208,154,-399r135,-772r-172,0r19,-107r454,0r-19,107r-171,0r-139,792v-39,227,-106,388,-201,482v-95,94,-237,141,-426,141v-397,0,-491,-186,-414,-623xm992,-1899r117,264r-105,0r-189,-264r177,0","w":1553},"\u00da":{"d":"373,-1386r-172,0r19,-107r525,0r-19,107r-171,0r-136,772v-33,191,-28,324,15,399v43,75,133,113,270,113v137,0,241,-38,310,-113v69,-75,121,-208,154,-399r135,-772r-172,0r19,-107r454,0r-19,107r-171,0r-139,792v-39,227,-106,388,-201,482v-95,94,-237,141,-426,141v-397,0,-491,-186,-414,-623xm1093,-1899r178,0r-283,264r-105,0","w":1553},"\u00db":{"d":"373,-1386r-172,0r19,-107r525,0r-19,107r-171,0r-136,772v-33,191,-28,324,15,399v43,75,133,113,270,113v137,0,241,-38,310,-113v69,-75,121,-208,154,-399r135,-772r-172,0r19,-107r454,0r-19,107r-171,0r-139,792v-39,227,-106,388,-201,482v-95,94,-237,141,-426,141v-397,0,-491,-186,-414,-623xm957,-1899r159,0r161,264r-104,0r-154,-161r-212,161r-104,0","w":1553},"\u00dc":{"d":"373,-1386r-172,0r19,-107r525,0r-19,107r-171,0r-136,772v-33,191,-28,324,15,399v43,75,133,113,270,113v137,0,241,-38,310,-113v69,-75,121,-208,154,-399r135,-772r-172,0r19,-107r454,0r-19,107r-171,0r-139,792v-39,227,-106,388,-201,482v-95,94,-237,141,-426,141v-397,0,-491,-186,-414,-623xm791,-1849v44,-43,113,-51,148,0v56,82,-20,198,-109,198v-59,0,-97,-53,-84,-117v5,-31,20,-58,45,-81xm1141,-1849v44,-43,113,-51,148,0v56,82,-20,198,-108,198v-59,0,-98,-52,-85,-117v6,-31,20,-58,45,-81","w":1553},"\u00dd":{"d":"218,0r18,-106r172,0r94,-537r-285,-743r-126,0r19,-107r499,0r-18,107r-157,0r230,604r441,-604r-151,0r19,-107r391,0r-19,107r-127,0r-531,724r-97,556r172,0r-19,106r-525,0xm888,-1899r178,0r-283,264r-105,0","w":1216},"\u00de":{"d":"401,-434r237,0v198,-3,298,-130,330,-314v34,-197,-37,-313,-220,-313r-238,0xm-29,0r19,-106r171,0r224,-1280r-171,0r18,-107r562,0r-19,107r-208,0r-38,219r282,0v256,-4,408,156,364,419v-41,244,-235,423,-511,422r-282,0r-39,220r208,0r-18,106r-562,0","w":1245},"\u00df":{"d":"924,-1210v19,-154,-51,-250,-196,-248v-179,2,-245,101,-275,268r-220,1256v-37,218,-154,357,-391,360r11,-98v63,0,111,-18,141,-56v32,-40,57,-108,74,-206r218,-1252v37,-226,201,-370,459,-370v261,1,365,143,331,419v-173,-6,-313,63,-336,201v-16,96,19,126,83,176v83,66,201,167,231,239v24,58,31,123,19,199v-31,197,-211,353,-436,351v-112,-1,-208,-30,-286,-72r41,-233r98,0v-19,132,35,206,159,206v141,0,234,-97,254,-225v9,-56,4,-103,-11,-143v-21,-54,-124,-136,-186,-185v-55,-44,-93,-87,-112,-129v-19,-43,-24,-92,-14,-147v29,-170,166,-282,344,-311","w":1231},"\u00e0":{"d":"559,-1636r167,376r-105,0r-240,-376r178,0xm357,29v-181,0,-297,-135,-295,-323v0,-34,3,-70,10,-108v41,-235,135,-414,282,-535v126,-104,265,-155,416,-155v102,0,171,10,206,29r-168,957r143,0r-19,106r-291,0r29,-166v-81,130,-185,195,-313,195xm237,-300v0,143,62,214,186,214v75,0,139,-33,191,-100v52,-67,88,-165,110,-293r85,-482v0,-19,-24,-29,-73,-29v-115,0,-218,50,-307,150v-89,100,-149,242,-181,425v-7,43,-11,81,-11,115","w":1098},"\u00e1":{"d":"823,-1638r179,0r-372,376r-106,0xm357,29v-181,0,-297,-135,-295,-323v0,-34,3,-70,10,-108v41,-235,135,-414,282,-535v126,-104,265,-155,416,-155v102,0,171,10,206,29r-168,957r143,0r-19,106r-291,0r29,-166v-81,130,-185,195,-313,195xm237,-300v0,143,62,214,186,214v75,0,139,-33,191,-100v52,-67,88,-165,110,-293r85,-482v0,-19,-24,-29,-73,-29v-115,0,-218,50,-307,150v-89,100,-149,242,-181,425v-7,43,-11,81,-11,115","w":1098},"\u00e2":{"d":"642,-1638r151,0r145,376r-104,0r-137,-260r-228,260r-105,0xm357,29v-181,0,-297,-135,-295,-323v0,-34,3,-70,10,-108v41,-235,135,-414,282,-535v126,-104,265,-155,416,-155v102,0,171,10,206,29r-168,957r143,0r-19,106r-291,0r29,-166v-81,130,-185,195,-313,195xm237,-300v0,143,62,214,186,214v75,0,139,-33,191,-100v52,-67,88,-165,110,-293r85,-482v0,-19,-24,-29,-73,-29v-115,0,-218,50,-307,150v-89,100,-149,242,-181,425v-7,43,-11,81,-11,115","w":1098},"\u00e3":{"d":"799,-1309v-104,0,-126,-107,-189,-147v-37,-23,-72,-3,-97,32v-19,26,-35,64,-46,115r-87,0v17,-90,45,-160,84,-209v39,-49,86,-73,141,-73v85,0,116,66,156,116v19,25,29,39,63,39v26,0,49,-13,68,-40v19,-27,34,-65,45,-115r86,0v-17,90,-45,160,-84,209v-39,49,-85,73,-140,73xm357,29v-181,0,-297,-135,-295,-323v0,-34,3,-70,10,-108v41,-235,135,-414,282,-535v126,-104,265,-155,416,-155v102,0,171,10,206,29r-168,957r143,0r-19,106r-291,0r29,-166v-81,130,-185,195,-313,195xm237,-300v0,143,62,214,186,214v75,0,139,-33,191,-100v52,-67,88,-165,110,-293r85,-482v0,-19,-24,-29,-73,-29v-115,0,-218,50,-307,150v-89,100,-149,242,-181,425v-7,43,-11,81,-11,115","w":1098},"\u00e4":{"d":"452,-1534v44,-43,114,-51,148,0v54,82,-18,199,-110,199v-60,0,-96,-53,-83,-117v6,-32,21,-59,45,-82xm803,-1534v43,-42,114,-51,147,0v54,82,-18,199,-109,199v-61,0,-97,-52,-84,-117v5,-32,22,-58,46,-82xm357,29v-181,0,-297,-135,-295,-323v0,-34,3,-70,10,-108v41,-235,135,-414,282,-535v126,-104,265,-155,416,-155v102,0,171,10,206,29r-168,957r143,0r-19,106r-291,0r29,-166v-81,130,-185,195,-313,195xm237,-300v0,143,62,214,186,214v75,0,139,-33,191,-100v52,-67,88,-165,110,-293r85,-482v0,-19,-24,-29,-73,-29v-115,0,-218,50,-307,150v-89,100,-149,242,-181,425v-7,43,-11,81,-11,115","w":1098},"\u00e5":{"d":"357,29v-181,0,-297,-135,-295,-323v0,-34,3,-70,10,-108v41,-235,135,-414,282,-535v126,-104,265,-155,416,-155v102,0,171,10,206,29r-168,957r143,0r-19,106r-291,0r29,-166v-81,130,-185,195,-313,195xm237,-300v0,143,62,214,186,214v75,0,139,-33,191,-100v52,-67,88,-165,110,-293r85,-482v0,-19,-24,-29,-73,-29v-115,0,-218,50,-307,150v-89,100,-149,242,-181,425v-7,43,-11,81,-11,115xm930,-1524v-23,136,-148,273,-294,275v-138,2,-225,-127,-200,-275v23,-137,146,-272,294,-274v137,-2,225,126,200,274xm657,-1372v116,0,213,-152,142,-259v-42,-64,-141,-53,-195,-1v-51,48,-86,149,-37,216v21,29,51,44,90,44","w":1098},"\u00e6":{"d":"1373,-632v67,-44,101,-107,101,-190v0,-114,-68,-171,-204,-171v-81,0,-148,34,-204,102v-56,68,-101,194,-135,377v190,-9,337,-49,442,-118xm912,-408v-23,190,44,338,222,338v69,0,121,-12,156,-35v61,-42,99,-90,113,-144r122,0v-24,85,-81,157,-171,216v-62,41,-155,62,-278,62v-143,0,-247,-65,-310,-196v-90,134,-222,196,-410,196v-180,0,-296,-135,-294,-323v0,-34,3,-70,10,-108v41,-235,135,-414,283,-535v125,-103,264,-155,415,-155v102,0,171,10,206,29r-18,97v96,-84,209,-126,340,-126v235,0,352,92,352,277v0,266,-246,402,-738,407xm248,-415v-7,43,-11,83,-11,118v0,141,62,211,186,211v75,0,139,-33,190,-100v51,-67,88,-165,111,-293r84,-482v0,-19,-24,-29,-72,-29v-115,0,-218,50,-307,150v-89,100,-149,242,-181,425","w":1732},"\u00e7":{"d":"200,240v59,31,162,54,220,8v39,-32,55,-77,35,-144v-8,-29,-22,-64,-42,-104r88,0v31,43,53,83,65,120v59,194,-104,305,-310,269v-26,-4,-52,-10,-78,-18xm267,-345v-2,162,60,277,208,275v72,0,133,-21,183,-62v50,-41,89,-104,119,-187r134,0v-43,113,-104,200,-181,259v-77,59,-168,89,-274,89v-236,0,-382,-171,-378,-414v4,-241,84,-428,212,-555v141,-141,321,-184,539,-128v57,16,114,39,169,71r-48,272r-96,0v5,-174,-51,-269,-217,-268v-89,0,-162,40,-223,115v-80,98,-144,334,-147,533","w":1032},"\u00e8":{"d":"593,-1636r167,376r-105,0r-240,-376r178,0xm434,29v-215,0,-362,-182,-356,-415v6,-239,84,-424,210,-552v101,-103,224,-154,368,-154v235,0,352,92,352,277v0,135,-61,236,-184,302v-126,67,-311,102,-554,105v-23,190,44,338,222,338v70,0,122,-12,156,-35v61,-42,99,-90,113,-144r122,0v-24,85,-81,157,-170,216v-63,41,-155,62,-279,62xm732,-632v67,-44,100,-107,100,-190v0,-114,-68,-171,-204,-171v-80,0,-148,34,-204,102v-56,68,-101,194,-135,377v193,-10,340,-49,443,-118","w":1090},"\u00e9":{"d":"857,-1638r179,0r-372,376r-106,0xm434,29v-215,0,-362,-182,-356,-415v6,-239,84,-424,210,-552v101,-103,224,-154,368,-154v235,0,352,92,352,277v0,135,-61,236,-184,302v-126,67,-311,102,-554,105v-23,190,44,338,222,338v70,0,122,-12,156,-35v61,-42,99,-90,113,-144r122,0v-24,85,-81,157,-170,216v-63,41,-155,62,-279,62xm732,-632v67,-44,100,-107,100,-190v0,-114,-68,-171,-204,-171v-80,0,-148,34,-204,102v-56,68,-101,194,-135,377v193,-10,340,-49,443,-118","w":1090},"\u00ea":{"d":"676,-1638r151,0r145,376r-104,0r-137,-260r-228,260r-105,0xm434,29v-215,0,-362,-182,-356,-415v6,-239,84,-424,210,-552v101,-103,224,-154,368,-154v235,0,352,92,352,277v0,135,-61,236,-184,302v-126,67,-311,102,-554,105v-23,190,44,338,222,338v70,0,122,-12,156,-35v61,-42,99,-90,113,-144r122,0v-24,85,-81,157,-170,216v-63,41,-155,62,-279,62xm732,-632v67,-44,100,-107,100,-190v0,-114,-68,-171,-204,-171v-80,0,-148,34,-204,102v-56,68,-101,194,-135,377v193,-10,340,-49,443,-118","w":1090},"\u00eb":{"d":"486,-1534v44,-43,114,-51,148,0v54,82,-18,199,-110,199v-60,0,-96,-53,-83,-117v6,-32,21,-59,45,-82xm837,-1534v43,-42,114,-51,147,0v54,82,-18,199,-109,199v-61,0,-97,-52,-84,-117v5,-32,22,-58,46,-82xm434,29v-215,0,-362,-182,-356,-415v6,-239,84,-424,210,-552v101,-103,224,-154,368,-154v235,0,352,92,352,277v0,135,-61,236,-184,302v-126,67,-311,102,-554,105v-23,190,44,338,222,338v70,0,122,-12,156,-35v61,-42,99,-90,113,-144r122,0v-24,85,-81,157,-170,216v-63,41,-155,62,-279,62xm732,-632v67,-44,100,-107,100,-190v0,-114,-68,-171,-204,-171v-80,0,-148,34,-204,102v-56,68,-101,194,-135,377v193,-10,340,-49,443,-118","w":1090},"\u00ec":{"d":"342,-1636r167,376r-105,0r-240,-376r178,0xm316,-106r156,0r-18,106r-322,0r168,-956r-159,0r18,-107r324,0","w":589},"\u00ed":{"d":"606,-1638r179,0r-372,376r-106,0xm316,-106r156,0r-18,106r-322,0r168,-956r-159,0r18,-107r324,0","w":589},"\u00ee":{"d":"425,-1638r151,0r145,376r-104,0r-137,-260r-228,260r-105,0xm316,-106r156,0r-18,106r-322,0r168,-956r-159,0r18,-107r324,0","w":589},"\u00ef":{"d":"235,-1534v44,-43,114,-51,148,0v54,82,-18,199,-110,199v-60,0,-96,-53,-83,-117v6,-32,21,-59,45,-82xm586,-1534v43,-42,114,-51,147,0v54,82,-18,199,-109,199v-61,0,-97,-52,-84,-117v5,-32,22,-58,46,-82xm316,-106r156,0r-18,106r-322,0r168,-956r-159,0r18,-107r324,0","w":589},"\u00f0":{"d":"768,-928v-48,-11,-93,-18,-147,-18v-103,0,-186,36,-248,107v-62,71,-106,182,-132,331v-25,140,-21,248,13,324v34,76,94,114,179,114v87,0,158,-39,219,-114v115,-143,187,-495,116,-744xm380,-1556v140,36,253,100,345,188r316,-150r20,78r-282,133v91,111,152,233,185,363v33,130,37,267,12,412v-29,169,-96,306,-198,408v-102,102,-223,153,-362,153v-281,0,-425,-239,-367,-547v30,-157,91,-284,193,-381v134,-127,291,-170,501,-131v-16,-82,-51,-150,-93,-215r-316,149r-19,-78r287,-135v-60,-77,-145,-132,-253,-161","w":1109},"\u00f1":{"d":"826,-1309v-104,0,-126,-107,-189,-147v-37,-23,-72,-3,-97,32v-19,26,-35,64,-46,115r-87,0v17,-90,45,-160,84,-209v39,-49,86,-73,141,-73v85,0,116,66,156,116v19,25,29,39,63,39v26,0,48,-13,67,-40v19,-27,35,-65,46,-115r86,0v-17,90,-45,160,-84,209v-39,49,-85,73,-140,73xm852,-790v2,-117,-42,-168,-154,-168v-77,0,-141,32,-192,94v-51,62,-86,153,-107,272r-104,592r-166,0r168,-956r-159,0r19,-107r324,0r-33,189v43,-72,93,-126,148,-163v55,-37,115,-55,180,-55v172,0,251,89,250,264v0,45,-5,95,-15,152r-100,570r148,0r-19,106r-314,0r108,-618v12,-69,18,-126,18,-172","w":1187},"\u00f2":{"d":"602,-1636r167,376r-105,0r-240,-376r178,0xm267,-348v-3,162,60,278,207,278v89,0,161,-41,222,-117v80,-100,143,-332,146,-530v3,-161,-61,-276,-207,-276v-89,0,-160,41,-221,117v-79,99,-143,331,-147,528xm652,-1092v237,0,383,168,379,413v-4,241,-83,427,-211,555v-102,102,-224,153,-364,153v-236,0,-382,-171,-378,-414v4,-241,84,-427,212,-554v102,-102,222,-153,362,-153","w":1109},"\u00f3":{"d":"866,-1638r179,0r-372,376r-106,0xm267,-348v-3,162,60,278,207,278v89,0,161,-41,222,-117v80,-100,143,-332,146,-530v3,-161,-61,-276,-207,-276v-89,0,-160,41,-221,117v-79,99,-143,331,-147,528xm652,-1092v237,0,383,168,379,413v-4,241,-83,427,-211,555v-102,102,-224,153,-364,153v-236,0,-382,-171,-378,-414v4,-241,84,-427,212,-554v102,-102,222,-153,362,-153","w":1109},"\u00f4":{"d":"685,-1638r151,0r145,376r-104,0r-137,-260r-228,260r-105,0xm267,-348v-3,162,60,278,207,278v89,0,161,-41,222,-117v80,-100,143,-332,146,-530v3,-161,-61,-276,-207,-276v-89,0,-160,41,-221,117v-79,99,-143,331,-147,528xm652,-1092v237,0,383,168,379,413v-4,241,-83,427,-211,555v-102,102,-224,153,-364,153v-236,0,-382,-171,-378,-414v4,-241,84,-427,212,-554v102,-102,222,-153,362,-153","w":1109},"\u00f5":{"d":"842,-1309v-104,0,-126,-107,-189,-147v-37,-23,-72,-3,-97,32v-19,26,-35,64,-46,115r-87,0v17,-90,45,-160,84,-209v39,-49,86,-73,141,-73v85,0,116,66,156,116v19,25,29,39,63,39v26,0,48,-13,67,-40v19,-27,35,-65,46,-115r86,0v-17,90,-45,160,-84,209v-39,49,-85,73,-140,73xm267,-348v-3,162,60,278,207,278v89,0,161,-41,222,-117v80,-100,143,-332,146,-530v3,-161,-61,-276,-207,-276v-89,0,-160,41,-221,117v-79,99,-143,331,-147,528xm652,-1092v237,0,383,168,379,413v-4,241,-83,427,-211,555v-102,102,-224,153,-364,153v-236,0,-382,-171,-378,-414v4,-241,84,-427,212,-554v102,-102,222,-153,362,-153","w":1109},"\u00f6":{"d":"495,-1534v44,-43,114,-51,148,0v54,82,-18,199,-110,199v-60,0,-96,-53,-83,-117v6,-32,21,-59,45,-82xm846,-1534v43,-42,114,-51,147,0v54,82,-18,199,-109,199v-61,0,-97,-52,-84,-117v5,-32,22,-58,46,-82xm267,-348v-3,162,60,278,207,278v89,0,161,-41,222,-117v80,-100,143,-332,146,-530v3,-161,-61,-276,-207,-276v-89,0,-160,41,-221,117v-79,99,-143,331,-147,528xm652,-1092v237,0,383,168,379,413v-4,241,-83,427,-211,555v-102,102,-224,153,-364,153v-236,0,-382,-171,-378,-414v4,-241,84,-427,212,-554v102,-102,222,-153,362,-153","w":1109},"\u00f7":{"d":"772,-879v-69,0,-120,-61,-120,-133v0,-70,53,-133,120,-133v67,0,120,64,120,133v0,70,-53,133,-120,133xm772,-139v-69,0,-120,-63,-120,-133v0,-70,53,-134,120,-134v67,0,120,64,120,134v0,69,-53,133,-120,133xm195,-723r1154,0r0,162r-1154,0r0,-162","w":1544},"\u00f8":{"d":"817,-879v-30,-71,-86,-113,-182,-114v-88,0,-162,39,-221,117v-88,114,-155,353,-144,583xm292,-190v31,75,84,120,182,120v88,0,160,-41,221,-118v75,-95,133,-296,146,-480v3,-40,2,-78,-1,-112xm652,-1092v120,0,208,38,269,101r154,-166r58,63r-161,172v58,100,72,236,45,390v-30,169,-95,306,-197,408v-102,102,-224,153,-364,153v-122,-1,-207,-40,-270,-107r-159,172r-57,-63r165,-178v-55,-103,-70,-233,-43,-385v29,-169,96,-305,198,-407v102,-102,223,-153,362,-153","w":1109},"\u00f9":{"d":"573,-1636r167,376r-105,0r-240,-376r178,0xm335,-273v-2,117,41,167,154,167v77,0,140,-31,191,-94v51,-63,88,-154,109,-273r103,-590r166,0r-168,957r157,0r-19,106r-322,0r33,-188v-43,71,-92,125,-147,162v-55,37,-115,55,-179,55v-173,-1,-253,-87,-252,-264v0,-45,5,-95,15,-152r100,-569r-150,0r19,-107r316,0r-108,619v-12,69,-18,126,-18,171","w":1187},"\u00fa":{"d":"837,-1638r179,0r-372,376r-106,0xm335,-273v-2,117,41,167,154,167v77,0,140,-31,191,-94v51,-63,88,-154,109,-273r103,-590r166,0r-168,957r157,0r-19,106r-322,0r33,-188v-43,71,-92,125,-147,162v-55,37,-115,55,-179,55v-173,-1,-253,-87,-252,-264v0,-45,5,-95,15,-152r100,-569r-150,0r19,-107r316,0r-108,619v-12,69,-18,126,-18,171","w":1187},"\u00fb":{"d":"656,-1638r151,0r145,376r-104,0r-137,-260r-228,260r-105,0xm335,-273v-2,117,41,167,154,167v77,0,140,-31,191,-94v51,-63,88,-154,109,-273r103,-590r166,0r-168,957r157,0r-19,106r-322,0r33,-188v-43,71,-92,125,-147,162v-55,37,-115,55,-179,55v-173,-1,-253,-87,-252,-264v0,-45,5,-95,15,-152r100,-569r-150,0r19,-107r316,0r-108,619v-12,69,-18,126,-18,171","w":1187},"\u00fc":{"d":"466,-1534v44,-43,114,-51,148,0v54,82,-18,199,-110,199v-60,0,-96,-53,-83,-117v6,-32,21,-59,45,-82xm817,-1534v43,-42,114,-51,147,0v54,82,-18,199,-109,199v-61,0,-97,-52,-84,-117v5,-32,22,-58,46,-82xm335,-273v-2,117,41,167,154,167v77,0,140,-31,191,-94v51,-63,88,-154,109,-273r103,-590r166,0r-168,957r157,0r-19,106r-322,0r33,-188v-43,71,-92,125,-147,162v-55,37,-115,55,-179,55v-173,-1,-253,-87,-252,-264v0,-45,5,-95,15,-152r100,-569r-150,0r19,-107r316,0r-108,619v-12,69,-18,126,-18,171","w":1187},"\u00fd":{"d":"833,-1638r179,0r-372,376r-106,0xm52,221v-10,79,17,131,96,131v105,0,204,-51,296,-153r-226,-1155r-109,0r19,-107r247,0r213,1055v97,-161,157,-274,180,-340v75,-207,121,-407,136,-599r-109,0r19,-107r246,0v-59,381,-141,673,-246,874v-153,295,-294,483,-414,576v-72,56,-342,82,-468,28r36,-203r84,0","w":1041},"\u00fe":{"d":"906,-712v2,-154,-58,-265,-198,-265v-84,0,-154,34,-210,101v-56,67,-95,165,-117,292v-13,74,-32,171,-32,247v0,150,64,251,204,251v84,0,153,-39,211,-113v77,-97,138,-322,142,-513xm584,29v-158,-1,-237,-69,-276,-195r-103,592r-166,0r328,-1876r-159,0r18,-106r325,0r-115,659v79,-117,170,-195,344,-195v117,0,204,52,261,155v59,107,66,257,40,405v-30,166,-89,302,-182,406v-93,104,-198,155,-315,155","w":1179},"\u00ff":{"d":"462,-1534v44,-43,114,-51,148,0v54,82,-18,199,-110,199v-60,0,-96,-53,-83,-117v6,-32,21,-59,45,-82xm813,-1534v43,-42,114,-51,147,0v54,82,-18,199,-109,199v-61,0,-97,-52,-84,-117v5,-32,22,-58,46,-82xm52,221v-10,79,17,131,96,131v105,0,204,-51,296,-153r-226,-1155r-109,0r19,-107r247,0r213,1055v97,-161,157,-274,180,-340v75,-207,121,-407,136,-599r-109,0r19,-107r246,0v-59,381,-141,673,-246,874v-153,295,-294,483,-414,576v-72,56,-342,82,-468,28r36,-203r84,0","w":1041},"\u0152":{"d":"911,-106r224,-1280r-168,0v-175,0,-319,55,-431,164v-112,109,-185,267,-222,472v-72,397,67,644,429,644r168,0xm1818,0r-1106,0v-453,4,-689,-275,-604,-750v42,-234,138,-416,290,-547v152,-131,344,-196,575,-196r1091,0r-58,332r-111,0r37,-209r-618,0r-87,500r443,0r32,-187r109,0r-87,496r-109,0r33,-187r-443,0r-109,625r633,0r36,-209r111,0","w":2096},"\u0153":{"d":"474,-70v89,0,163,-39,222,-117v59,-78,102,-193,128,-345v26,-152,24,-266,-8,-344v-32,-78,-92,-117,-181,-117v-89,0,-162,39,-221,117v-59,78,-102,192,-128,344v-26,152,-24,267,8,345v32,78,91,117,180,117xm1463,-632v67,-44,101,-107,101,-190v0,-114,-68,-171,-204,-171v-81,0,-148,34,-204,102v-56,68,-101,194,-136,377v192,-10,340,-49,443,-118xm652,-1092v157,0,274,70,332,193v11,-13,23,-26,36,-39v101,-103,224,-154,368,-154v235,0,352,92,352,277v0,135,-62,236,-185,302v-125,67,-310,102,-553,105v-3,25,-4,49,-4,72v-2,163,73,268,226,266v70,0,122,-12,156,-35v61,-42,99,-90,113,-144r122,0v-24,85,-81,157,-171,216v-62,41,-154,62,-278,62v-140,0,-252,-78,-310,-194v-11,14,-24,28,-37,41v-102,102,-223,153,-363,153v-236,0,-382,-171,-378,-414v4,-241,84,-427,212,-554v102,-102,222,-153,362,-153","w":1822},"\u0178":{"d":"218,0r18,-106r172,0r94,-537r-285,-743r-126,0r19,-107r499,0r-18,107r-157,0r230,604r441,-604r-151,0r19,-107r391,0r-19,107r-127,0r-531,724r-97,556r172,0r-19,106r-525,0xm586,-1849v44,-43,113,-51,148,0v56,82,-20,198,-109,198v-59,0,-97,-53,-84,-117v5,-31,20,-58,45,-81xm936,-1849v44,-43,113,-51,148,0v56,82,-20,198,-108,198v-59,0,-98,-52,-85,-117v6,-31,20,-58,45,-81","w":1216},"\u02c6":{"d":"591,-1638r151,0r145,376r-104,0r-137,-260r-228,260r-105,0","w":921},"\u02dc":{"d":"748,-1309v-104,0,-126,-107,-189,-147v-37,-23,-72,-3,-97,32v-19,26,-35,64,-46,115r-87,0v17,-90,45,-160,84,-209v39,-49,86,-73,141,-73v85,0,116,66,156,116v19,25,29,39,63,39v26,0,48,-13,67,-40v19,-27,35,-65,46,-115r86,0v-17,90,-45,160,-84,209v-39,49,-85,73,-140,73","w":921},"\u2013":{"d":"93,-610r759,0r-23,133r-760,0","w":921},"\u2014":{"d":"93,-610r1681,0r-23,133r-1682,0","w":1843},"\u2018":{"d":"524,-1440v-124,96,-178,231,-206,426r-174,0v45,-244,146,-388,324,-506","w":585},"\u2019":{"d":"100,-1067v126,-94,180,-231,208,-426r175,0v-47,243,-147,388,-327,506","w":585},"\u201a":{"d":"51,199v136,-96,209,-226,238,-426r177,0v-53,240,-169,390,-357,506","w":585},"\u201c":{"d":"880,-1440v-124,96,-177,231,-205,426r-176,0v48,-244,144,-387,325,-506xm524,-1440v-124,96,-178,231,-206,426r-174,0v45,-244,146,-388,324,-506","w":942},"\u201d":{"d":"100,-1067v126,-94,180,-231,208,-426r175,0v-47,243,-147,388,-327,506xm458,-1067v124,-95,177,-231,205,-426r175,0v-44,244,-146,387,-323,506","w":942},"\u201e":{"d":"51,199v136,-96,209,-226,238,-426r177,0v-53,240,-169,390,-357,506xm406,199v137,-96,210,-225,239,-426r177,0v-52,241,-169,391,-358,506","w":954},"\u2022":{"d":"544,-465v-152,0,-268,-140,-268,-297v0,-156,117,-295,269,-295v151,0,266,139,266,295v0,157,-116,297,-267,297","w":1087},"\u2026":{"d":"1434,-10v-61,-94,23,-228,125,-228v65,0,109,63,96,134v-12,65,-72,133,-143,133v-34,0,-61,-13,-78,-39xm820,-10v-61,-94,24,-228,125,-228v65,0,108,63,96,134v-11,65,-72,133,-143,133v-34,0,-61,-13,-78,-39xm206,-10v-61,-94,24,-228,125,-228v66,0,108,62,96,134v-11,65,-72,133,-143,133v-34,0,-61,-13,-78,-39","w":1843},"\u2039":{"d":"645,-1059r-21,115r-327,344r207,344r-20,115r-349,-418r14,-82","w":737},"\u203a":{"d":"254,-1059r349,418r-14,82r-496,418r21,-115r326,-344r-206,-344","w":737},"\u20ac":{"d":"962,-395v-50,137,-116,242,-198,315v-82,73,-175,109,-278,109v-114,0,-202,-51,-266,-152v-64,-101,-95,-240,-92,-416r-171,0r58,-104r122,0r14,-102v4,-23,8,-42,11,-58v3,-16,7,-32,11,-47r-162,0r59,-104r130,0v59,-176,138,-314,237,-415v142,-144,293,-189,493,-120v56,19,117,54,183,100r-59,342r-96,0v9,-120,-3,-212,-38,-277v-35,-65,-89,-97,-162,-97v-81,0,-154,40,-217,119v-63,79,-115,195,-154,348r453,0r-60,104r-417,0r-22,105r-16,102r337,0r-60,104r-288,0v-13,153,-2,269,33,349v35,80,94,120,175,120v69,0,131,-28,186,-84v55,-56,100,-136,134,-241r120,0"},"\u2122":{"d":"1006,-1493r157,270r163,-270r197,0r0,66r-78,0r0,446r78,0r0,66r-257,0r0,-66r78,0r0,-426r-188,311r-39,0r-179,-311r0,426r75,0r0,66r-217,0r0,-66r78,0r0,-446r-78,0r0,-66r210,0xm218,-1493r501,0r0,170r-61,0r0,-104r-138,0r0,446r78,0r0,66r-259,0r0,-66r78,0r0,-446r-141,0r0,104r-58,0r0,-170","w":1843}}}); diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-webfont.eot b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-webfont.eot new file mode 100644 index 0000000..8d86eb1 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-webfont.eot differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-webfont.svg b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-webfont.svg new file mode 100644 index 0000000..1c66dc1 --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-webfont.svg @@ -0,0 +1,241 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved._DejaVu changes are in public domain_ +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-webfont.ttf b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-webfont.ttf new file mode 100644 index 0000000..eea3330 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-webfont.ttf differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-webfont.woff b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-webfont.woff new file mode 100644 index 0000000..0b7c0a5 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-Italic-webfont.woff differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-cufon.js b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-cufon.js new file mode 100644 index 0000000..eaa9c8b --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-cufon.js @@ -0,0 +1,18 @@ +/*! + * The following copyright notice may not be removed under any circumstances. + * + * Copyright: + * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + * DejaVu changes are in public domain + * + * + * Manufacturer: + * DejaVu fonts team + * + * Vendor URL: + * http://dejavu.sourceforge.net + * + * License information: + * http://dejavu.sourceforge.net/wiki/index.php/License + */ +Cufon.registerFont({"w":1172,"face":{"font-family":"DejaVu Serif Condensed","font-weight":400,"font-stretch":"semi-condensed","units-per-em":"2048","panose-1":"2 6 6 6 5 6 5 2 2 4","ascent":"1556","descent":"-492","x-height":"29","bbox":"-177 -1901 1948 483","underline-thickness":"90","underline-position":"-85","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":585},"!":{"d":"371,29v-69,0,-120,-63,-120,-133v0,-71,51,-134,120,-134v66,0,119,65,119,134v0,69,-53,133,-119,133xm255,-1493r232,0r-61,821r0,252r-111,0r0,-252","w":740},"\"":{"d":"324,-1493r0,555r-143,0r0,-555r143,0xm667,-1493r0,555r-143,0r0,-555r143,0","w":847},"#":{"d":"938,-901r-254,0r-76,334r257,0xm811,-1470r-92,415r254,0r93,-415r154,0r-94,415r277,0r0,154r-312,0r-74,334r283,0r0,153r-317,0r-93,414r-155,0r95,-414r-255,0r-93,414r-154,0r92,-414r-278,0r0,-153r313,0r74,-334r-284,0r0,-154r319,0r94,-415r153,0","w":1544},"$":{"d":"621,-68v128,-12,209,-81,209,-215v0,-134,-91,-202,-209,-237r0,452xm531,-1187v-118,8,-195,78,-195,200v0,130,81,181,195,219r0,-419xm531,31v-143,-6,-260,-47,-373,-103r0,-276r98,0v4,182,94,276,275,280r0,-485v-138,-43,-235,-91,-291,-147v-56,-56,-83,-130,-83,-222v0,-223,154,-354,374,-366r0,-268r90,0r0,268v131,12,239,47,339,98r0,262r-98,0v-13,-149,-95,-247,-241,-259r0,452v147,45,251,95,310,153v59,58,89,135,89,232v-1,236,-165,366,-399,381r0,270r-90,0r0,-270"},"%":{"d":"534,-1344v-58,-109,-186,-108,-244,0v-55,102,-56,361,0,463v59,109,185,110,244,1v55,-102,54,-362,0,-464xm1462,-610v-58,-110,-186,-109,-244,0v-55,103,-55,361,0,464v59,109,186,109,244,0v55,-103,54,-361,0,-464xm1340,-784v95,0,168,38,226,110v110,135,110,460,0,594v-59,71,-132,109,-226,109v-96,0,-170,-38,-228,-109v-109,-134,-108,-460,1,-594v58,-71,132,-110,227,-110xm1228,-1520r136,0r-840,1549r-137,0xm411,-1520v95,0,168,39,227,110v111,134,110,461,0,594v-59,71,-132,109,-227,109v-95,0,-169,-38,-226,-109v-108,-134,-108,-460,1,-594v58,-71,130,-110,225,-110","w":1751},"&":{"d":"315,-483v-5,211,155,394,362,391v140,-2,245,-59,318,-139r-523,-613v-92,91,-154,200,-157,361xm1366,-741v-22,184,-85,332,-179,452r155,183r211,0r0,106r-361,0r-123,-145v-111,104,-240,171,-433,174v-303,4,-507,-189,-504,-490v0,-89,23,-172,69,-249v46,-77,116,-149,209,-216v-53,-71,-89,-141,-90,-248v-2,-218,158,-351,384,-346v116,2,215,33,325,68r0,258r-102,0v-16,-133,-86,-217,-227,-219v-120,-1,-210,84,-208,203v0,41,10,82,31,122v21,40,63,98,128,173r464,544v77,-99,128,-217,142,-370r-162,0r0,-107r426,0r0,107r-155,0","w":1640},"'":{"d":"324,-1493r0,555r-143,0r0,-555r143,0","w":506},"(":{"d":"588,319v-300,-150,-442,-478,-442,-937v0,-461,142,-788,442,-938r0,98v-93,71,-157,171,-200,298v-78,230,-78,852,0,1082v43,127,107,228,200,299r0,98","w":719},")":{"d":"130,-1556v301,150,443,477,443,938v0,460,-142,787,-443,937r0,-98v93,-71,157,-172,200,-299v79,-230,78,-852,0,-1082v-44,-127,-107,-227,-200,-298r0,-98","w":719},"*":{"d":"892,-1237r-352,182r352,185r-68,118r-314,-217r12,381r-122,0r11,-381r-313,217r-68,-118r352,-183r-352,-184r68,-119r313,217r-11,-381r122,0r-12,381r314,-217","w":921},"+":{"d":"844,-1284r0,561r505,0r0,162r-505,0r0,561r-144,0r0,-561r-505,0r0,-162r505,0r0,-561r144,0","w":1544},",":{"d":"67,199v115,-93,168,-219,163,-426r178,0v-14,248,-106,393,-269,506","w":585},"-":{"d":"81,-627r461,0r0,156r-461,0r0,-156","w":622},".":{"d":"293,29v-69,0,-119,-63,-119,-133v0,-71,50,-134,119,-134v67,0,120,64,120,134v0,69,-53,133,-120,133","w":585},"\/":{"d":"477,-1493r144,0r-477,1683r-144,0","w":621},"0":{"d":"586,-70v92,0,161,-56,206,-168v45,-112,68,-281,68,-507v0,-227,-23,-396,-68,-508v-45,-112,-114,-168,-206,-168v-92,0,-160,56,-206,168v-46,112,-69,281,-69,508v0,226,23,395,69,507v46,112,114,168,206,168xm586,29v-146,0,-260,-68,-342,-204v-82,-136,-122,-326,-122,-570v0,-245,40,-435,122,-571v82,-136,196,-204,342,-204v147,0,261,68,342,204v81,136,122,326,122,571v0,244,-41,434,-122,570v-81,136,-195,204,-342,204"},"1":{"d":"262,0r0,-106r234,0r0,-1242r-271,195r0,-131r328,-236r124,0r0,1414r234,0r0,106r-649,0"},"2":{"d":"518,-1421v-183,0,-268,106,-282,284r-101,0r0,-266v109,-65,233,-114,385,-117v270,-4,455,157,453,420v0,146,-92,321,-275,524r-33,35r-339,377r560,0r0,-184r106,0r0,348r-867,0r0,-109r408,-452v90,-100,155,-191,193,-275v38,-84,57,-172,57,-264v0,-187,-90,-321,-265,-321"},"3":{"d":"547,-1421v-169,1,-252,94,-267,254r-101,0r0,-263v117,-49,241,-87,383,-90v248,-3,419,122,419,357v0,195,-122,311,-293,348v210,31,348,177,348,412v0,290,-189,434,-491,432v-161,-1,-288,-41,-405,-101r0,-290r101,0v11,187,114,292,308,292v189,1,297,-135,297,-331v0,-226,-104,-356,-322,-357r-86,0r0,-102v229,10,360,-74,360,-291v0,-170,-85,-270,-251,-270"},"4":{"d":"644,-506r0,-794r-460,794r460,0xm1040,0r-612,0r0,-106r216,0r0,-293r-587,0r0,-109r588,-1012r179,0r0,1014r256,0r0,107r-256,0r0,293r216,0r0,106"},"5":{"d":"545,-874v-124,0,-195,51,-252,131r-77,0r0,-750r711,0r0,164r-616,0r0,428v61,-47,144,-72,250,-72v293,-2,469,201,469,500v0,311,-176,505,-485,502v-150,-1,-274,-43,-388,-101r0,-290r101,0v9,181,104,292,287,292v95,0,168,-35,219,-104v51,-69,77,-169,77,-299v0,-129,-26,-228,-77,-297v-51,-69,-124,-104,-219,-104"},"6":{"d":"603,-70v85,0,147,-37,195,-104v89,-124,89,-470,0,-594v-48,-67,-110,-104,-195,-104v-86,0,-150,35,-197,100v-90,124,-84,472,2,595v48,69,110,107,195,107xm885,-1214v-13,-129,-90,-207,-227,-207v-117,0,-203,49,-260,147v-57,98,-87,249,-88,452v73,-90,165,-148,313,-149v278,-2,434,209,434,500v0,291,-177,500,-461,500v-152,0,-268,-63,-350,-189v-82,-126,-123,-305,-123,-538v0,-261,48,-464,145,-607v97,-143,233,-215,409,-215v114,0,215,26,309,60r0,246r-101,0"},"7":{"d":"1040,-1391r-526,1391r-134,0r501,-1329r-621,0r0,184r-105,0r0,-348r885,0r0,102"},"8":{"d":"586,-70v185,0,273,-140,273,-338v0,-198,-88,-337,-273,-337v-185,0,-273,140,-273,337v0,199,87,338,273,338xm586,-844v159,0,236,-120,236,-289v0,-169,-77,-288,-236,-288v-157,0,-236,120,-236,288v0,169,78,289,236,289xm1004,-1133v-1,192,-110,306,-280,338v197,27,324,169,324,387v1,284,-172,437,-462,437v-289,0,-463,-153,-463,-437v0,-218,129,-360,325,-387v-170,-32,-280,-146,-281,-338v-2,-244,169,-387,419,-387v251,0,419,143,418,387"},"9":{"d":"287,-279v14,128,90,209,227,209v116,0,203,-48,260,-146v57,-98,87,-249,88,-453v-72,90,-167,148,-315,149v-278,2,-431,-209,-431,-500v0,-291,177,-500,461,-500v152,0,268,62,349,188v81,126,122,306,122,539v0,261,-48,464,-144,607v-96,143,-233,215,-408,215v-114,0,-216,-26,-310,-60r0,-248r101,0xm570,-1421v-85,0,-148,36,-196,103v-88,124,-88,472,0,596v48,68,111,104,196,104v85,0,149,-35,196,-100v90,-124,84,-472,-1,-596v-48,-70,-110,-107,-195,-107"},":":{"d":"311,29v-69,0,-119,-63,-119,-133v0,-70,51,-134,119,-134v69,0,120,64,120,134v0,71,-50,133,-120,133xm311,-623v-68,0,-119,-63,-119,-133v0,-70,51,-133,119,-133v70,0,120,61,120,133v0,72,-50,133,-120,133","w":621},";":{"d":"67,199v115,-93,168,-219,163,-426r178,0v-14,248,-106,393,-269,506xm315,-623v-67,0,-120,-63,-120,-133v0,-70,53,-133,120,-133v67,0,120,64,120,133v0,70,-53,133,-120,133","w":621},"<":{"d":"1349,-1020r-934,379r934,377r0,170r-1154,-465r0,-166r1154,-465r0,170","w":1544},"=":{"d":"195,-926r1154,0r0,160r-1154,0r0,-160xm195,-518r1154,0r0,160r-1154,0r0,-160","w":1544},">":{"d":"195,-1020r0,-170r1154,465r0,166r-1154,465r0,-170r935,-377","w":1544},"?":{"d":"445,29v-70,0,-121,-62,-121,-133v0,-71,51,-134,121,-134v66,0,119,65,119,134v0,69,-53,133,-119,133xm464,-1421v-152,0,-231,108,-252,254r-87,0r0,-260v106,-52,210,-91,343,-93v256,-5,432,148,431,396v0,124,-33,225,-99,304v-66,79,-167,135,-300,169r0,254r-111,0r0,-328v194,-52,317,-172,320,-401v2,-170,-85,-295,-245,-295","w":988},"@":{"d":"1425,170v-118,114,-275,186,-491,186v-392,0,-640,-247,-752,-546v-80,-213,-79,-486,0,-700v80,-215,240,-394,445,-484v212,-93,482,-90,681,15v169,89,308,253,370,452v24,77,35,156,35,239v4,348,-208,581,-547,582r-1,-162v-61,94,-135,162,-269,162v-105,0,-188,-43,-256,-125v-128,-155,-129,-497,0,-651v68,-81,151,-125,256,-125v133,0,208,69,269,162r0,-142r140,0r0,772v202,-47,323,-226,322,-475v-1,-163,-48,-291,-121,-393v-112,-157,-286,-274,-531,-274v-124,0,-226,32,-317,77v-232,116,-384,378,-384,717v1,366,160,615,408,733v89,42,187,62,291,62v176,0,302,-62,404,-152xm934,-203v144,1,234,-129,231,-282r0,-105v3,-154,-88,-281,-233,-280v-72,0,-126,31,-169,88v-79,106,-79,387,0,492v43,57,98,87,171,87","w":1843},"A":{"d":"369,-541r493,0r-246,-710xm-11,0r0,-106r118,0r479,-1387r151,0r480,1387r132,0r0,106r-489,0r0,-106r150,0r-113,-328r-565,0r-112,328r147,0r0,106r-378,0","w":1331},"B":{"d":"1036,-432v0,-224,-91,-324,-312,-324r-269,0r0,650r269,0v221,-1,312,-102,312,-326xm968,-1124v0,-189,-91,-261,-284,-262r-229,0r0,524r229,0v193,-1,284,-74,284,-262xm1242,-432v0,317,-184,432,-519,432r-621,0r0,-106r171,0r0,-1280r-171,0r0,-107r663,0v261,-1,409,115,409,369v0,186,-107,288,-280,309v215,29,348,151,348,383","w":1354},"C":{"d":"746,-78v222,0,337,-126,388,-317r166,0v-73,258,-244,424,-554,424v-199,0,-341,-82,-444,-197v-126,-141,-198,-321,-198,-577v0,-232,60,-419,180,-561v120,-142,280,-214,477,-214v192,0,344,58,502,129r0,344r-102,0v-42,-235,-154,-366,-415,-366v-143,0,-252,56,-326,169v-74,113,-110,280,-110,499v0,219,36,384,110,497v74,113,183,170,326,170","w":1410},"D":{"d":"1165,-748v0,-390,-172,-636,-542,-638r-168,0r0,1280r168,0v368,-1,542,-254,542,-642xm1372,-748v0,463,-275,748,-736,748r-534,0r0,-106r171,0r0,-1280r-171,0r0,-107r534,0v462,-4,736,282,736,745","w":1477},"E":{"d":"102,0r0,-106r171,0r0,-1280r-171,0r0,-107r1082,0r0,332r-111,0r0,-209r-618,0r0,500r441,0r0,-187r110,0r0,496r-110,0r0,-187r-441,0r0,625r632,0r0,-209r111,0r0,332r-1096,0","w":1345},"F":{"d":"102,0r0,-106r171,0r0,-1280r-171,0r0,-107r1100,0r0,332r-111,0r0,-209r-636,0r0,500r459,0r0,-187r111,0r0,496r-111,0r0,-187r-459,0r0,642r215,0r0,106r-568,0","w":1278},"G":{"d":"781,-1520v192,0,344,52,500,119r0,354r-101,0v-41,-234,-152,-366,-410,-366v-155,0,-270,55,-346,166v-76,111,-114,278,-114,502v0,219,40,385,118,498v78,113,193,169,346,169v154,0,271,-45,371,-112r0,-385r-253,0r0,-107r436,0r0,557v-149,95,-324,154,-554,154v-203,0,-365,-70,-487,-211v-122,-141,-183,-329,-183,-563v0,-236,62,-425,184,-565v122,-140,286,-210,493,-210","w":1472},"H":{"d":"102,0r0,-106r171,0r0,-1280r-171,0r0,-107r524,0r0,107r-171,0r0,516r697,0r0,-516r-171,0r0,-107r525,0r0,107r-171,0r0,1280r171,0r0,106r-525,0r0,-106r171,0r0,-642r-697,0r0,642r171,0r0,106r-524,0","w":1607},"I":{"d":"455,-106r171,0r0,106r-524,0r0,-106r171,0r0,-1280r-171,0r0,-107r524,0r0,107r-171,0r0,1280","w":728},"J":{"d":"107,426v-102,0,-186,-29,-262,-68r0,-235r103,0v2,122,46,196,161,196v71,0,121,-25,149,-75v28,-50,43,-148,43,-293r0,-1337r-209,0r0,-107r562,0r0,107r-171,0r0,1345v0,165,-30,284,-89,357v-59,73,-155,110,-287,110","w":738},"K":{"d":"102,0r0,-106r171,0r0,-1280r-171,0r0,-107r524,0r0,107r-171,0r0,565r579,-565r-146,0r0,-107r447,0r0,107r-151,0r-577,563r645,717r153,0r0,106r-312,0r-638,-709r0,603r171,0r0,106r-524,0","w":1377},"L":{"d":"102,0r0,-106r171,0r0,-1280r-171,0r0,-107r524,0r0,107r-171,0r0,1263r614,0r0,-250r111,0r0,373r-1078,0","w":1224},"M":{"d":"102,0r0,-106r171,0r0,-1280r-181,0r0,-107r391,0r472,1063r471,-1063r368,0r0,107r-179,0r0,1280r171,0r0,106r-525,0r0,-106r171,0r0,-1154r-461,1041r-127,0r-461,-1041r0,1154r171,0r0,106r-452,0","w":1887},"N":{"d":"90,0r0,-106r181,0r0,-1280r-181,0r0,-107r345,0r805,1178r0,-1071r-180,0r0,-107r472,0r0,107r-181,0r0,1415r-109,0r-860,-1258r0,1123r180,0r0,106r-472,0","w":1612},"O":{"d":"756,-78v147,0,258,-56,333,-168v75,-112,113,-279,113,-499v0,-221,-38,-387,-113,-499v-75,-112,-186,-169,-333,-169v-147,0,-259,57,-334,169v-75,112,-112,278,-112,499v0,220,37,387,112,499v75,112,187,168,334,168xm1007,-20v-147,66,-355,64,-503,-1v-163,-72,-291,-228,-351,-401v-64,-183,-64,-463,0,-646v60,-173,189,-332,351,-402v75,-33,159,-50,252,-50v195,0,352,71,472,213v120,142,180,329,180,562v-1,254,-72,438,-199,577v-59,65,-127,115,-202,148","w":1511},"P":{"d":"968,-1073v0,-194,-88,-312,-275,-313r-238,0r0,626r238,0v186,0,275,-120,275,-313xm1174,-1073v0,257,-175,420,-437,420r-282,0r0,547r208,0r0,106r-561,0r0,-106r171,0r0,-1280r-171,0r0,-107r635,0v262,-3,437,162,437,420","w":1240},"Q":{"d":"1215,328v-224,-14,-355,-126,-437,-299v-206,0,-370,-71,-492,-211v-122,-140,-182,-328,-182,-563v1,-256,71,-437,198,-578v107,-119,246,-197,454,-197v195,0,352,71,472,213v120,142,180,329,180,562v0,390,-194,684,-507,757v66,91,159,135,314,131r0,185xm756,-78v147,0,258,-56,333,-168v75,-112,113,-279,113,-499v0,-221,-38,-387,-113,-499v-75,-112,-186,-169,-333,-169v-147,0,-259,57,-334,169v-75,112,-112,278,-112,499v0,220,37,387,112,499v75,112,187,168,334,168","w":1511},"R":{"d":"1192,-1094v-1,215,-113,326,-309,353v97,31,147,94,190,192r195,443r164,0r0,106r-317,0r-210,-475v-40,-92,-78,-151,-111,-179v-69,-59,-216,-35,-339,-40r0,588r190,0r0,106r-543,0r0,-106r171,0r0,-1280r-171,0r0,-107r681,0v258,-2,410,144,409,399xm986,-1094v0,-194,-77,-292,-265,-292r-266,0r0,585r266,0v188,-1,265,-99,265,-293","w":1387},"S":{"d":"630,29v-176,-1,-321,-42,-459,-101r0,-340r103,1v7,226,113,332,345,333v201,1,328,-86,329,-276v0,-72,-19,-126,-51,-166v-54,-67,-270,-131,-392,-172v-129,-43,-219,-97,-271,-162v-52,-65,-79,-153,-79,-266v0,-264,186,-403,462,-400v160,2,304,41,443,88r0,318r-102,0v-21,-208,-113,-297,-337,-299v-180,-1,-290,80,-291,252v0,71,19,127,56,168v37,41,116,81,237,121r166,55v122,41,209,92,261,155v52,63,78,148,78,254v-1,303,-183,439,-498,437","w":1262},"T":{"d":"352,0r0,-106r172,0r0,-1268r-395,0r0,233r-111,0r0,-352r1193,0r0,352r-110,0r0,-233r-395,0r0,1268r172,0r0,106r-526,0","w":1229},"U":{"d":"258,-1386r-172,0r0,-107r526,0r0,107r-172,0r0,772v0,191,28,324,84,399v56,75,153,113,290,113v138,0,235,-38,291,-113v56,-75,84,-208,84,-399r0,-772r-172,0r0,-107r454,0r0,107r-171,0r0,792v0,227,-39,388,-118,482v-79,94,-212,141,-401,141v-188,0,-323,-47,-403,-142v-80,-95,-120,-255,-120,-481r0,-792","w":1553},"V":{"d":"322,-1386r397,1146r396,-1146r-151,0r0,-107r394,0r0,107r-130,0r-480,1386r-155,0r-477,-1386r-134,0r0,-107r490,0r0,107r-150,0","w":1331},"W":{"d":"1405,0r-148,0r-307,-1214r-308,1214r-148,0r-352,-1386r-133,0r0,-107r491,0r0,107r-168,0r280,1103r306,-1210r146,0r311,1223r282,-1116r-155,0r0,-107r387,0r0,107r-132,0","w":1894},"X":{"d":"610,-639r-328,533r173,0r0,106r-444,0r0,-106r155,0r387,-627r-393,-653r-144,0r0,-107r533,0r0,107r-158,0r288,481r296,-481r-173,0r0,-107r440,0r0,107r-151,0r-356,575r424,705r144,0r0,106r-533,0r0,-106r161,0","w":1312},"Y":{"d":"348,0r0,-106r172,0r0,-537r-415,-743r-126,0r0,-107r500,0r0,107r-157,0r336,604r336,-604r-152,0r0,-107r391,0r0,107r-127,0r-404,724r0,556r172,0r0,106r-526,0","w":1216},"Z":{"d":"83,0r0,-72r837,-1298r-695,0r0,223r-111,0r0,-346r1062,0r0,72r-837,1298r760,0r0,-209r110,0r0,332r-1126,0","w":1280},"[":{"d":"158,-1556r419,0r0,106r-247,0r0,1614r247,0r0,106r-419,0r0,-1826","w":719},"\\":{"d":"144,-1493r477,1683r-144,0r-477,-1683r144,0","w":621},"]":{"d":"561,-1556r0,1826r-419,0r0,-106r247,0r0,-1614r-247,0r0,-106r419,0","w":719},"^":{"d":"860,-1493r489,557r-138,0r-439,-381r-438,381r-139,0r489,-557r176,0","w":1544},"_":{"d":"922,403r0,80r-922,0r0,-80r922,0","w":921},"`":{"d":"330,-1636r234,376r-105,0r-306,-376r177,0","w":921},"a":{"d":"503,-78v141,0,231,-111,231,-256r0,-225r-214,0v-164,0,-243,77,-244,240v-1,143,87,241,227,241xm492,-1092v269,-2,407,155,407,428r0,558r148,0r0,106r-313,0r0,-115v-67,90,-151,142,-296,144v-210,2,-347,-138,-346,-348v2,-231,165,-350,409,-347r233,0r0,-73v1,-159,-94,-255,-252,-254v-139,0,-212,73,-231,198r-85,0r0,-215v98,-47,200,-81,326,-82","w":1098},"b":{"d":"688,29v-166,0,-250,-74,-310,-195r0,166r-325,0r0,-106r159,0r0,-1344r-159,0r0,-106r325,0r0,659v60,-121,144,-195,310,-195v117,0,214,52,288,155v74,103,111,238,111,405v0,167,-37,302,-111,406v-74,104,-171,155,-288,155xm378,-479v0,128,22,226,66,293v44,67,108,100,192,100v85,0,145,-39,192,-113v84,-133,84,-534,0,-666v-47,-73,-107,-112,-192,-112v-84,0,-148,34,-192,101v-44,67,-66,165,-66,292r0,105","w":1179},"c":{"d":"556,-70v160,0,231,-100,258,-249r134,0v-42,208,-162,348,-394,348v-139,0,-250,-51,-335,-153v-85,-102,-127,-239,-127,-408v0,-170,42,-306,127,-408v85,-102,196,-152,335,-152v144,0,257,39,362,95r0,272r-96,0v-24,-170,-88,-268,-264,-268v-89,0,-156,38,-202,115v-46,77,-69,193,-69,346v0,153,23,269,68,346v45,77,113,116,203,116","w":1032},"d":{"d":"492,-1092v166,0,250,74,310,195r0,-553r-157,0r0,-106r323,0r0,1450r158,0r0,106r-324,0r0,-166v-60,121,-144,195,-310,195v-117,0,-213,-51,-288,-155v-75,-104,-112,-239,-112,-406v0,-167,38,-302,112,-405v74,-103,170,-155,288,-155xm802,-479r0,-105v0,-127,-22,-225,-66,-292v-44,-67,-108,-101,-192,-101v-85,0,-150,37,-194,112v-44,75,-65,186,-65,333v0,147,21,258,65,333v44,75,109,113,194,113v84,0,148,-33,192,-100v44,-67,66,-165,66,-293","w":1179},"e":{"d":"983,-322v-49,217,-176,351,-427,351v-140,0,-252,-51,-337,-153v-85,-102,-127,-239,-127,-408v0,-168,42,-303,125,-406v83,-103,193,-154,328,-154v145,0,256,49,333,148v77,99,118,243,121,432r-714,0v-1,145,23,258,73,332v49,73,120,110,215,110v164,0,244,-104,277,-252r133,0xm804,-618v-4,-124,-28,-217,-71,-280v-43,-63,-106,-95,-188,-95v-76,0,-135,32,-179,95v-44,63,-71,157,-81,280r519,0","w":1090},"f":{"d":"553,-1556v91,1,170,19,240,49r0,202r-87,0v-1,-97,-50,-153,-147,-153v-62,0,-104,20,-131,56v-40,54,-38,222,-37,339r267,0r0,107r-267,0r0,850r212,0r0,106r-536,0r0,-106r158,0r0,-850r-158,0r0,-107r158,0r0,-133v-1,-229,106,-359,328,-360","w":682},"g":{"d":"492,-1092v166,0,250,74,310,195r0,-166r324,0r0,107r-158,0r0,933v2,295,-150,478,-437,478v-138,-1,-248,-29,-347,-76r0,-223r87,0v21,136,95,199,249,200v97,0,169,-31,214,-92v45,-61,68,-156,68,-287r0,-143v-60,121,-144,195,-310,195v-117,0,-213,-51,-288,-155v-75,-104,-112,-239,-112,-406v0,-167,38,-302,112,-405v74,-103,170,-155,288,-155xm802,-584v0,-127,-22,-225,-66,-292v-44,-67,-108,-101,-192,-101v-85,0,-150,37,-194,112v-44,75,-65,186,-65,333v0,147,21,258,65,333v44,75,109,113,194,113v84,0,148,-33,192,-100v44,-67,66,-165,66,-293r0,-105","w":1179},"h":{"d":"391,-874v52,-124,136,-218,289,-218v106,0,184,34,234,101v50,67,74,172,74,315r0,570r148,0r0,106r-457,0r0,-106r143,0r0,-512v0,-130,-14,-218,-43,-266v-29,-48,-80,-72,-153,-72v-77,0,-135,31,-175,93v-40,62,-60,152,-60,271r0,486r144,0r0,106r-459,0r0,-106r149,0r0,-1344r-158,0r0,-106r324,0r0,682","w":1187},"i":{"d":"282,-1280v-58,0,-103,-54,-103,-113v0,-58,46,-114,103,-114v55,0,101,57,101,114v0,59,-44,113,-101,113xm391,-106r156,0r0,106r-480,0r0,-106r158,0r0,-850r-158,0r0,-107r324,0r0,957","w":589},"j":{"d":"287,-1280v-56,0,-103,-54,-103,-113v0,-58,47,-114,103,-114v55,0,102,57,102,114v0,59,-44,113,-102,113xm-92,170v8,116,46,186,157,186v55,0,95,-21,121,-62v26,-41,39,-104,39,-190r0,-1060r-157,0r0,-107r323,0r0,1167v2,212,-122,352,-330,351v-98,-1,-172,-26,-238,-66r0,-219r85,0","w":571},"k":{"d":"527,0r-464,0r0,-106r149,0r0,-1344r-159,0r0,-106r325,0r0,1013r403,-413r-137,0r0,-107r432,0r0,107r-163,0r-285,292r364,558r138,0r0,106r-472,0r0,-106r137,0r-287,-437r-130,135r0,302r149,0r0,106","w":1116},"l":{"d":"378,-106r157,0r0,106r-482,0r0,-106r159,0r0,-1344r-159,0r0,-106r325,0r0,1450","w":589},"m":{"d":"669,-1092v159,1,257,97,286,236v32,-78,73,-136,122,-176v49,-40,107,-60,173,-60v100,0,175,35,224,104v49,69,74,173,74,312r0,570r149,0r0,106r-459,0r0,-106r144,0r0,-549v0,-109,-14,-186,-43,-232v-29,-46,-76,-69,-143,-69v-74,0,-130,31,-169,93v-39,62,-58,152,-58,271r0,486r144,0r0,106r-453,0r0,-106r144,0r0,-556v0,-106,-15,-181,-44,-226v-29,-45,-76,-68,-143,-68v-73,0,-129,31,-168,93v-39,62,-58,152,-58,271r0,486r144,0r0,106r-459,0r0,-106r149,0r0,-852r-158,0r0,-105r324,0r0,189v30,-71,69,-125,117,-162v48,-37,101,-56,161,-56","w":1747},"n":{"d":"391,-874v52,-124,136,-218,289,-218v106,0,184,34,234,101v50,67,74,172,74,315r0,570r148,0r0,106r-457,0r0,-106r143,0r0,-512v0,-130,-15,-220,-44,-268v-29,-48,-79,-72,-152,-72v-77,0,-135,32,-175,94v-40,62,-60,153,-60,272r0,486r144,0r0,106r-459,0r0,-106r149,0r0,-850r-158,0r0,-107r324,0r0,189","w":1187},"o":{"d":"554,-70v89,0,157,-39,202,-117v45,-78,68,-193,68,-345v0,-152,-23,-266,-68,-344v-45,-78,-113,-117,-202,-117v-89,0,-156,39,-201,117v-45,78,-68,192,-68,344v0,152,23,267,69,345v46,78,112,117,200,117xm554,29v-139,0,-250,-51,-335,-153v-85,-102,-127,-239,-127,-408v0,-169,42,-305,126,-407v84,-102,197,-153,336,-153v140,0,252,51,336,153v84,102,127,238,127,407v0,169,-43,306,-127,408v-84,102,-196,153,-336,153","w":1109},"p":{"d":"378,-584r0,105v0,128,22,226,66,293v44,67,108,100,192,100v85,0,145,-39,192,-113v84,-133,84,-534,0,-666v-47,-73,-107,-112,-192,-112v-84,0,-148,34,-192,101v-44,67,-66,165,-66,292xm688,29v-166,0,-250,-74,-310,-195r0,485r157,0r0,107r-482,0r0,-107r159,0r0,-1275r-159,0r0,-107r325,0r0,166v60,-121,144,-195,310,-195v117,0,214,52,288,155v74,103,111,238,111,405v0,167,-37,302,-111,406v-74,104,-171,155,-288,155","w":1179},"q":{"d":"492,-1092v166,0,250,74,310,195r0,-166r324,0r0,107r-158,0r0,1275r158,0r0,107r-481,0r0,-107r157,0r0,-485v-60,121,-144,195,-310,195v-117,0,-213,-51,-288,-155v-75,-104,-112,-239,-112,-406v0,-167,38,-302,112,-405v74,-103,170,-155,288,-155xm802,-584v0,-127,-22,-225,-66,-292v-44,-67,-108,-101,-192,-101v-85,0,-150,37,-194,112v-44,75,-65,186,-65,333v0,147,21,258,65,333v44,75,109,113,194,113v84,0,148,-33,192,-100v44,-67,66,-165,66,-293r0,-105","w":1179},"r":{"d":"702,-1092v64,0,123,12,179,27r0,266r-95,0v-6,-98,-45,-157,-142,-157v-82,0,-145,31,-188,94v-43,63,-65,153,-65,270r0,486r191,0r0,106r-506,0r0,-106r149,0r0,-852r-158,0r0,-105r324,0r0,189v57,-131,142,-218,311,-218","w":881},"s":{"d":"461,29v-143,-1,-252,-36,-357,-88r0,-248r95,0v4,160,90,237,255,237v137,1,227,-54,228,-182v0,-47,-15,-83,-42,-113v-40,-45,-210,-103,-301,-137v-82,-30,-142,-66,-179,-110v-37,-44,-55,-100,-55,-168v0,-203,150,-315,363,-312v126,2,233,39,332,86r0,232r-95,0v-4,-136,-91,-219,-232,-219v-128,0,-209,45,-211,164v0,45,14,79,40,107v43,47,204,97,294,128v91,31,156,71,196,118v40,47,59,107,59,181v0,213,-164,327,-390,324","w":945},"t":{"d":"461,29v-204,0,-262,-95,-262,-310r0,-675r-146,0r0,-107r146,0r0,-330r166,0r0,330r312,0r0,107r-312,0r0,675v0,90,7,148,23,173v16,25,45,38,87,38v101,0,122,-69,126,-180r125,0v-9,184,-81,279,-265,279","w":740},"u":{"d":"796,-188v-52,122,-136,217,-288,217v-106,0,-184,-34,-234,-101v-50,-67,-75,-172,-75,-315r0,-569r-149,0r0,-107r315,0r0,619v0,129,14,218,43,266v29,48,80,72,153,72v77,0,135,-31,175,-94v40,-63,60,-154,60,-273r0,-483r-144,0r0,-107r310,0r0,957r157,0r0,106r-323,0r0,-188","w":1187},"v":{"d":"455,0r-351,-956r-109,0r0,-107r440,0r0,107r-153,0r269,731r269,-731r-143,0r0,-107r359,0r0,107r-107,0r-352,956r-122,0","w":1041},"w":{"d":"885,-1063r245,830r216,-723r-139,0r0,-107r346,0r0,107r-106,0r-284,956r-138,0r-236,-795r-236,795r-133,0r-283,-956r-107,0r0,-107r433,0r0,107r-155,0r214,723r247,-830r116,0","w":1577},"x":{"d":"536,-649r201,-307r-129,0r0,-107r368,0r0,107r-126,0r-257,393r299,457r125,0r0,106r-442,0r0,-106r122,0r-208,-318r-209,318r124,0r0,106r-364,0r0,-106r127,0r264,-404r-291,-446r-118,0r0,-107r428,0r0,107r-114,0","w":1039},"y":{"d":"144,221v7,83,30,125,111,127v33,0,59,-10,79,-30v50,-55,93,-211,127,-300r-357,-974r-109,0r0,-107r440,0r0,107r-153,0r269,731r269,-731r-143,0r0,-107r359,0r0,107r-107,0r-439,1196v-29,83,-63,139,-99,170v-73,64,-236,50,-332,14r0,-203r85,0","w":1041},"z":{"d":"74,0r0,-86r599,-870r-474,0r0,184r-95,0r0,-291r782,0r0,86r-599,871r520,0r0,-193r97,0r0,299r-830,0","w":971},"{":{"d":"677,0v5,186,24,224,204,229r61,0r0,105r-56,0v-304,-6,-370,-66,-376,-369r0,-258v-3,-192,-41,-262,-225,-266r-55,0r0,-105r55,0v183,-3,225,-74,225,-266r0,-258v6,-303,72,-361,376,-368r56,0r0,104r-61,0v-180,4,-204,43,-204,229r0,287v-2,210,-44,278,-207,324v163,51,207,112,207,325r0,287"},"|":{"d":"383,-1565r0,2048r-145,0r0,-2048r145,0","w":621},"}":{"d":"662,-35v-6,303,-71,362,-375,369r-57,0r0,-105r63,0v180,-5,203,-43,203,-229r0,-287v3,-212,44,-274,206,-325v-163,-46,-206,-114,-206,-324r0,-287v-5,-186,-23,-224,-203,-229r-63,0r0,-104r57,0v304,7,369,65,375,368r0,258v3,192,41,262,224,266r56,0r0,105r-56,0v-182,3,-224,75,-224,266r0,258"},"~":{"d":"1029,-657v142,0,232,-67,320,-150r0,148v-60,59,-117,102,-171,130v-54,28,-109,42,-165,42v-58,0,-190,-42,-281,-83v-88,-40,-161,-57,-218,-57v-143,0,-230,66,-319,150r0,-152v60,-58,117,-100,171,-127v54,-27,108,-41,165,-41v58,0,189,40,280,82v87,39,159,58,218,58","w":1544},"\u00a0":{"w":585},"\u00a1":{"d":"371,-1255v-69,0,-120,-64,-120,-134v0,-71,51,-133,120,-133v66,0,119,64,119,133v0,70,-53,134,-119,134xm255,0r60,-821r0,-252r111,0r0,252r61,821r-232,0","w":740},"\u00a2":{"d":"566,-991v-77,10,-133,55,-174,130v-75,137,-75,522,0,659v41,75,97,120,174,130r0,-919xm656,-72v120,-20,183,-118,204,-247r134,0v-40,193,-143,317,-338,346r0,270r-90,0r0,-270v-270,-24,-427,-254,-427,-559v0,-307,155,-536,427,-558r0,-266r90,0r0,266v120,12,216,44,306,93r0,272r-95,0v-21,-148,-76,-245,-211,-266r0,919"},"\u00a3":{"d":"702,-1520v109,0,206,19,290,50r0,245r-95,0v-10,-119,-74,-195,-197,-196v-76,0,-132,25,-168,77v-36,52,-55,133,-55,242r0,295r371,0r0,107r-371,0r0,579r430,0r0,-227r105,0r0,348r-889,0r0,-106r174,0r0,-594r-174,0r0,-107r174,0r0,-295v-1,-270,138,-418,405,-418"},"\u00a4":{"d":"588,-1067v96,0,161,34,223,82r188,-207r85,94r-188,209v45,71,75,144,75,248v0,106,-29,176,-77,244r186,207r-86,94r-187,-205v-59,51,-121,86,-219,86v-94,0,-163,-36,-225,-82r-184,205r-85,-94r184,-207v-43,-72,-74,-146,-74,-248v0,-106,30,-177,78,-246r-187,-207r86,-94r186,207v60,-51,123,-86,221,-86xm588,-373v136,0,242,-129,242,-270v0,-141,-105,-266,-242,-266v-136,0,-242,125,-242,266v0,143,104,270,242,270"},"\u00a5":{"d":"324,0r0,-106r172,0r0,-367r-364,0r0,-105r364,0r0,-65r-74,-141r-290,0r0,-105r237,0r-258,-497r-125,0r0,-107r497,0r0,107r-157,0r308,604r306,-604r-151,0r0,-107r389,0r0,107r-128,0r-255,497r245,0r0,105r-299,0r-64,122r0,84r363,0r0,105r-363,0r0,367r171,0r0,106r-524,0"},"\u00a6":{"d":"383,-408r0,758r-145,0r0,-758r145,0xm383,-1432r0,758r-145,0r0,-758r145,0","w":621},"\u00a7":{"d":"586,-401v60,-44,105,-100,105,-191v0,-50,-21,-97,-63,-142v-42,-45,-137,-112,-287,-202v-66,53,-111,87,-111,182v0,88,109,200,327,335xm472,-1520v105,2,194,22,274,56r0,202r-83,0v-1,-98,-73,-155,-174,-155v-116,0,-195,67,-194,180v0,65,74,143,222,234v108,67,230,155,265,206v36,51,57,108,57,174v0,150,-79,212,-197,265v86,59,135,129,136,264v1,183,-147,292,-340,289v-117,-2,-208,-20,-294,-56r0,-209r83,1v4,113,74,161,195,161v119,0,204,-67,203,-182v0,-75,-69,-155,-206,-240v-119,-74,-245,-167,-279,-215v-36,-51,-57,-108,-57,-174v2,-140,87,-222,204,-258v-86,-57,-143,-129,-145,-254v-2,-179,142,-292,330,-289","w":921},"\u00a8":{"d":"181,-1452v0,-60,47,-117,104,-117v58,0,106,57,106,117v0,64,-44,117,-106,117v-61,0,-104,-53,-104,-117xm531,-1452v0,-60,47,-117,105,-117v58,0,105,57,105,117v0,64,-44,117,-105,117v-62,0,-105,-53,-105,-117","w":921},"\u00a9":{"d":"923,-379v131,0,185,-74,208,-194r107,0v-28,163,-133,271,-315,272v-235,1,-369,-192,-369,-440v0,-248,136,-444,369,-443v117,1,200,32,290,76r0,213r-75,0v-20,-133,-72,-211,-213,-211v-71,0,-122,33,-161,92v-70,107,-71,437,-1,544v38,59,89,91,160,91xm666,-1430v155,-72,355,-72,510,0v157,73,302,235,364,404v63,171,64,397,0,568v-63,169,-207,330,-364,403v-156,72,-355,72,-510,0v-157,-73,-299,-234,-362,-403v-64,-171,-63,-397,0,-568v62,-169,205,-331,362,-404xm1142,-1335v-134,-62,-306,-62,-440,0v-136,63,-258,202,-313,349v-56,149,-57,339,0,488v55,146,177,285,313,348v134,62,306,62,440,0v135,-63,259,-201,313,-347v55,-148,54,-343,-1,-491v-55,-147,-176,-284,-312,-347","w":1843},"\u00aa":{"d":"429,-1520v207,-1,325,100,325,301r0,379r72,0r0,84r-205,0r0,-80v-54,64,-122,98,-234,99v-161,2,-276,-88,-275,-242v1,-166,142,-242,324,-242r185,0r0,-45v0,-116,-78,-179,-199,-178v-106,1,-166,49,-183,139r-68,0r0,-157v78,-33,161,-57,258,-58xm438,-821v107,0,183,-70,183,-176r0,-148r-169,0v-118,-1,-191,47,-192,158v-1,110,65,166,178,166xm149,-639r629,0r0,104r-629,0r0,-104","w":875},"\u00ab":{"d":"955,-1059r0,115r-267,344r267,344r0,115r-422,-418r0,-82xm564,-1059r0,115r-267,344r267,344r0,115r-422,-418r0,-82","w":1127},"\u00ac":{"d":"195,-862r1154,0r0,575r-144,0r0,-413r-1010,0r0,-162","w":1544},"\u00ad":{"d":"81,-627r461,0r0,156r-461,0r0,-156","w":622},"\u00ae":{"d":"1067,-942v0,-98,-50,-150,-149,-150r-112,0r0,301r112,0v100,0,149,-51,149,-151xm1202,-938v-1,117,-64,172,-175,184v53,20,86,53,109,105r104,229r69,0r0,68r-171,0r-118,-254v-21,-47,-42,-78,-60,-94v-33,-30,-94,-22,-154,-23r0,303r75,0r0,68r-285,0r0,-68r74,0r0,-672r-74,0r0,-67r373,0v150,0,233,73,233,221xm1142,-1335v-134,-62,-306,-62,-440,0v-136,63,-258,202,-313,349v-56,149,-57,339,0,488v55,146,177,285,313,348v134,62,306,62,440,0v135,-63,259,-201,313,-347v55,-148,54,-343,-1,-491v-55,-147,-176,-284,-312,-347xm666,-1430v155,-72,355,-72,510,0v157,73,302,235,364,404v63,171,64,397,0,568v-63,169,-207,330,-364,403v-156,72,-355,72,-510,0v-157,-73,-299,-234,-362,-403v-64,-171,-63,-397,0,-568v62,-169,205,-331,362,-404","w":1843},"\u00af":{"d":"192,-1526r538,0r0,148r-538,0r0,-148","w":921},"\u00b0":{"d":"623,-1200v0,-93,-73,-182,-162,-182v-93,0,-162,86,-162,182v0,96,69,178,162,178v91,0,162,-84,162,-178xm176,-1200v0,-206,188,-389,396,-296v36,16,64,41,91,71v50,55,81,127,83,225v4,167,-125,315,-287,315v-164,0,-283,-146,-283,-315","w":921},"\u00b1":{"d":"844,-1284r0,391r505,0r0,162r-505,0r0,391r-144,0r0,-391r-505,0r0,-162r505,0r0,-391r144,0xm195,-160r1154,0r0,160r-1154,0r0,-160","w":1544},"\u00b2":{"d":"319,-1446v-101,1,-153,58,-166,150r-63,0r0,-158v69,-38,151,-64,248,-66v153,-3,279,91,278,236v0,81,-58,180,-175,296r-231,232r346,0r0,-108r67,0r0,196r-542,0r0,-75r257,-254v51,-51,88,-97,110,-138v22,-41,34,-83,34,-127v2,-107,-60,-184,-163,-184","w":738},"\u00b3":{"d":"334,-1446v-97,0,-150,41,-158,129r-64,0r0,-151v74,-29,151,-51,240,-52v153,-1,258,65,258,207v0,108,-80,170,-181,189v133,19,216,92,216,235v0,165,-125,237,-304,236v-98,-1,-178,-22,-251,-56r0,-170r63,1v7,100,67,151,175,151v111,0,177,-60,177,-170v0,-123,-61,-188,-183,-188r-48,0r0,-74v122,5,201,-35,201,-148v0,-89,-51,-140,-141,-139","w":738},"\u00b4":{"d":"586,-1638r179,0r-306,376r-105,0","w":921},"\u00b5":{"d":"549,29v-77,-1,-129,-29,-171,-72r0,362r157,0r0,107r-482,0r0,-107r159,0r0,-1275r-149,0r0,-107r315,0r0,619v0,129,14,218,43,266v29,48,79,72,152,72v77,0,135,-31,175,-94v40,-63,61,-154,61,-273r0,-483r-144,0r0,-107r310,0r0,959r156,0r0,104r-322,0r0,-188v-31,71,-69,125,-113,162v-44,37,-93,55,-147,55","w":1197},"\u00b6":{"d":"142,-1071v-2,-251,175,-422,428,-422r484,0r0,107r-106,0r0,1583r-97,0r0,-1583r-207,0r0,1583r-97,0r0,-846v-245,-19,-403,-167,-405,-422"},"\u00b7":{"d":"292,-578v-70,0,-121,-61,-121,-133v0,-71,51,-133,121,-133v66,0,119,64,119,133v0,70,-52,133,-119,133","w":585},"\u00b8":{"d":"512,176v-4,-66,-42,-117,-79,-176r87,0v39,43,67,83,86,120v19,37,28,72,28,105v-1,116,-90,171,-214,170v-58,0,-109,-10,-158,-24r0,-131v41,19,87,33,139,34v65,1,114,-36,111,-98","w":921},"\u00b9":{"d":"158,-668r0,-84r155,0r0,-634r-181,106r0,-94r216,-129r92,0r0,751r156,0r0,84r-438,0","w":738},"\u00ba":{"d":"433,-813v63,0,109,-27,143,-79v63,-94,63,-378,0,-472v-35,-52,-80,-80,-143,-80v-63,0,-108,28,-143,81v-63,96,-63,375,0,470v34,52,80,80,143,80xm781,-1128v0,224,-132,391,-348,391v-216,0,-348,-168,-348,-391v0,-224,132,-392,348,-392v215,0,348,169,348,392xm123,-639r619,0r0,104r-619,0r0,-104","w":866},"\u00bb":{"d":"564,-1059r422,418r0,82r-422,418r0,-115r268,-344r-268,-344r0,-115xm174,-1059r422,418r0,82r-422,418r0,-115r266,-344r-266,-344r0,-115","w":1127},"\u00bc":{"d":"158,-668r0,-84r155,0r0,-634r-181,106r0,-94r216,-129r92,0r0,751r156,0r0,84r-438,0xm1453,-303r0,-407r-277,407r277,0xm1712,0r-391,0r0,-84r132,0r0,-137r-358,0r0,-84r360,-530r127,0r0,532r147,0r0,82r-147,0r0,137r130,0r0,84xm1249,-1520r135,0r-847,1549r-136,0","w":1786},"\u00bd":{"d":"1366,-778v-101,1,-153,58,-166,150r-63,0r0,-158v69,-38,151,-64,248,-66v153,-3,279,91,278,236v0,81,-58,180,-175,296r-231,232r346,0r0,-108r67,0r0,196r-542,0r0,-75r257,-254v51,-51,89,-97,111,-138v22,-41,33,-83,33,-127v2,-107,-60,-184,-163,-184xm158,-668r0,-84r155,0r0,-634r-181,106r0,-94r216,-129r92,0r0,751r156,0r0,84r-438,0xm1249,-1520r135,0r-847,1549r-136,0","w":1786},"\u00be":{"d":"334,-1446v-97,0,-150,41,-158,129r-64,0r0,-151v74,-29,151,-51,240,-52v153,-1,258,65,258,207v0,108,-80,170,-181,189v133,19,216,92,216,235v0,165,-125,237,-304,236v-98,-1,-178,-22,-251,-56r0,-170r63,1v7,100,67,151,175,151v111,0,177,-60,177,-170v0,-123,-61,-188,-183,-188r-48,0r0,-74v122,5,201,-35,201,-148v0,-89,-51,-140,-141,-139xm1453,-303r0,-407r-277,407r277,0xm1712,0r-391,0r0,-84r132,0r0,-137r-358,0r0,-84r360,-530r127,0r0,532r147,0r0,82r-147,0r0,137r130,0r0,84xm1249,-1520r135,0r-847,1549r-136,0","w":1786},"\u00bf":{"d":"580,-1522v70,0,120,62,120,133v0,71,-51,134,-120,134v-66,0,-119,-65,-119,-134v0,-69,53,-133,119,-133xm561,-72v151,0,231,-108,252,-254r86,0r0,260v-106,52,-210,91,-343,93v-255,4,-433,-149,-431,-396v0,-124,33,-225,100,-304v67,-79,167,-135,301,-169r0,-254r110,0r0,328v-194,52,-318,172,-321,401v-2,170,86,295,246,295","w":988},"\u00c0":{"d":"369,-541r493,0r-246,-710xm-11,0r0,-106r118,0r479,-1387r151,0r480,1387r132,0r0,106r-489,0r0,-106r150,0r-113,-328r-565,0r-112,328r147,0r0,106r-378,0xm602,-1899r165,264r-105,0r-236,-264r176,0","w":1331},"\u00c1":{"d":"369,-541r493,0r-246,-710xm-11,0r0,-106r118,0r479,-1387r151,0r480,1387r132,0r0,106r-489,0r0,-106r150,0r-113,-328r-565,0r-112,328r147,0r0,106r-378,0xm722,-1899r177,0r-236,264r-105,0","w":1331},"\u00c2":{"d":"369,-541r493,0r-246,-710xm-11,0r0,-106r118,0r479,-1387r151,0r480,1387r132,0r0,106r-489,0r0,-106r150,0r-113,-328r-565,0r-112,328r147,0r0,106r-378,0xm586,-1899r158,0r208,264r-104,0r-183,-161r-183,161r-104,0","w":1331},"\u00c3":{"d":"369,-541r493,0r-246,-710xm-11,0r0,-106r118,0r479,-1387r151,0r480,1387r132,0r0,106r-489,0r0,-106r150,0r-113,-328r-565,0r-112,328r147,0r0,106r-378,0xm962,-1886v-2,129,-57,216,-179,219v-74,2,-147,-69,-209,-96v-66,-29,-118,30,-119,96r-87,-1v-2,-141,88,-251,230,-209v43,13,113,67,162,86v69,27,118,-25,115,-95r87,0","w":1331},"\u00c4":{"d":"369,-541r493,0r-246,-710xm-11,0r0,-106r118,0r479,-1387r151,0r480,1387r132,0r0,106r-489,0r0,-106r150,0r-113,-328r-565,0r-112,328r147,0r0,106r-378,0xm385,-1768v0,-58,48,-116,105,-116v57,0,105,58,105,116v0,63,-44,117,-105,117v-60,0,-105,-55,-105,-117xm735,-1768v0,-58,49,-116,106,-116v56,0,104,59,104,116v0,62,-44,117,-104,117v-61,0,-106,-55,-106,-117","w":1331},"\u00c5":{"d":"662,-1475v76,0,136,-72,136,-151v0,-79,-60,-152,-136,-152v-79,0,-136,71,-136,152v0,80,58,151,136,151xm369,-541r491,0r-244,-710xm909,-1626v-2,115,-55,200,-135,242r443,1278r132,0r0,106r-489,0r0,-106r150,0r-113,-328r-565,0r-112,328r147,0r0,106r-378,0r0,-106r118,0r440,-1278v-81,-46,-130,-123,-132,-242v-3,-143,109,-275,247,-275v137,0,250,133,247,275","w":1331},"\u00c6":{"d":"383,-541r441,0r0,-845r-90,0xm652,0r0,-106r172,0r0,-328r-485,0r-137,328r148,0r0,106r-382,0r0,-106r118,0r531,-1280r-193,0r0,-107r1310,0r0,332r-110,0r0,-209r-620,0r0,500r443,0r0,-187r111,0r0,496r-111,0r0,-187r-443,0r0,625r635,0r0,-209r111,0r0,332r-1098,0","w":1845},"\u00c7":{"d":"811,176v-4,-66,-42,-117,-79,-176r87,0v39,43,67,83,86,120v19,37,28,72,28,105v-1,116,-90,171,-214,170v-58,0,-109,-10,-158,-24r0,-131v41,19,87,33,139,34v65,1,114,-36,111,-98xm746,-78v222,0,337,-126,388,-317r166,0v-73,258,-244,424,-554,424v-199,0,-341,-82,-444,-197v-126,-141,-198,-321,-198,-577v0,-232,60,-419,180,-561v120,-142,280,-214,477,-214v192,0,344,58,502,129r0,344r-102,0v-42,-235,-154,-366,-415,-366v-143,0,-252,56,-326,169v-74,113,-110,280,-110,499v0,219,36,384,110,497v74,113,183,170,326,170","w":1410},"\u00c8":{"d":"102,0r0,-106r171,0r0,-1280r-171,0r0,-107r1082,0r0,332r-111,0r0,-209r-618,0r0,500r441,0r0,-187r110,0r0,496r-110,0r0,-187r-441,0r0,625r632,0r0,-209r111,0r0,332r-1096,0xm610,-1899r165,264r-105,0r-236,-264r176,0","w":1345},"\u00c9":{"d":"102,0r0,-106r171,0r0,-1280r-171,0r0,-107r1082,0r0,332r-111,0r0,-209r-618,0r0,500r441,0r0,-187r110,0r0,496r-110,0r0,-187r-441,0r0,625r632,0r0,-209r111,0r0,332r-1096,0xm730,-1899r177,0r-236,264r-105,0","w":1345},"\u00ca":{"d":"102,0r0,-106r171,0r0,-1280r-171,0r0,-107r1082,0r0,332r-111,0r0,-209r-618,0r0,500r441,0r0,-187r110,0r0,496r-110,0r0,-187r-441,0r0,625r632,0r0,-209r111,0r0,332r-1096,0xm594,-1899r158,0r208,264r-104,0r-183,-161r-183,161r-104,0","w":1345},"\u00cb":{"d":"102,0r0,-106r171,0r0,-1280r-171,0r0,-107r1082,0r0,332r-111,0r0,-209r-618,0r0,500r441,0r0,-187r110,0r0,496r-110,0r0,-187r-441,0r0,625r632,0r0,-209r111,0r0,332r-1096,0xm393,-1768v0,-58,48,-116,105,-116v57,0,105,58,105,116v0,63,-44,117,-105,117v-60,0,-105,-55,-105,-117xm743,-1768v0,-58,49,-116,106,-116v56,0,104,59,104,116v0,62,-44,117,-104,117v-61,0,-106,-55,-106,-117","w":1345},"\u00cc":{"d":"455,-106r171,0r0,106r-524,0r0,-106r171,0r0,-1280r-171,0r0,-107r524,0r0,107r-171,0r0,1280xm302,-1899r165,264r-105,0r-236,-264r176,0","w":728},"\u00cd":{"d":"455,-106r171,0r0,106r-524,0r0,-106r171,0r0,-1280r-171,0r0,-107r524,0r0,107r-171,0r0,1280xm422,-1899r177,0r-236,264r-105,0","w":728},"\u00ce":{"d":"455,-106r171,0r0,106r-524,0r0,-106r171,0r0,-1280r-171,0r0,-107r524,0r0,107r-171,0r0,1280xm286,-1899r158,0r208,264r-104,0r-183,-161r-183,161r-104,0","w":728},"\u00cf":{"d":"455,-106r171,0r0,106r-524,0r0,-106r171,0r0,-1280r-171,0r0,-107r524,0r0,107r-171,0r0,1280xm85,-1768v0,-58,48,-116,105,-116v57,0,105,58,105,116v0,63,-44,117,-105,117v-60,0,-105,-55,-105,-117xm435,-1768v0,-58,49,-116,106,-116v56,0,104,59,104,116v0,62,-44,117,-104,117v-61,0,-106,-55,-106,-117","w":728},"\u00d0":{"d":"1174,-748v0,-390,-172,-636,-542,-638r-169,0r0,542r302,0r0,125r-302,0r0,613r169,0v368,-1,542,-254,542,-642xm1381,-748v0,463,-275,748,-736,748r-534,0r0,-106r171,0r0,-613r-180,0r0,-125r180,0r0,-542r-171,0r0,-107r534,0v462,-4,736,282,736,745","w":1487},"\u00d1":{"d":"90,0r0,-106r181,0r0,-1280r-181,0r0,-107r345,0r805,1178r0,-1071r-180,0r0,-107r472,0r0,107r-181,0r0,1415r-109,0r-860,-1258r0,1123r180,0r0,106r-472,0xm1104,-1886v-2,129,-57,216,-179,219v-74,2,-147,-69,-209,-96v-66,-29,-118,30,-119,96r-87,-1v-2,-141,88,-251,230,-209v43,13,113,67,162,86v69,27,118,-25,115,-95r87,0","w":1612},"\u00d2":{"d":"756,-78v147,0,258,-56,333,-168v75,-112,113,-279,113,-499v0,-221,-38,-387,-113,-499v-75,-112,-186,-169,-333,-169v-147,0,-259,57,-334,169v-75,112,-112,278,-112,499v0,220,37,387,112,499v75,112,187,168,334,168xm1007,-20v-147,66,-355,64,-503,-1v-163,-72,-291,-228,-351,-401v-64,-183,-64,-463,0,-646v60,-173,189,-332,351,-402v75,-33,159,-50,252,-50v195,0,352,71,472,213v120,142,180,329,180,562v-1,254,-72,438,-199,577v-59,65,-127,115,-202,148xm693,-1899r165,264r-105,0r-236,-264r176,0","w":1511},"\u00d3":{"d":"756,-78v147,0,258,-56,333,-168v75,-112,113,-279,113,-499v0,-221,-38,-387,-113,-499v-75,-112,-186,-169,-333,-169v-147,0,-259,57,-334,169v-75,112,-112,278,-112,499v0,220,37,387,112,499v75,112,187,168,334,168xm1007,-20v-147,66,-355,64,-503,-1v-163,-72,-291,-228,-351,-401v-64,-183,-64,-463,0,-646v60,-173,189,-332,351,-402v75,-33,159,-50,252,-50v195,0,352,71,472,213v120,142,180,329,180,562v-1,254,-72,438,-199,577v-59,65,-127,115,-202,148xm813,-1899r177,0r-236,264r-105,0","w":1511},"\u00d4":{"d":"756,-78v147,0,258,-56,333,-168v75,-112,113,-279,113,-499v0,-221,-38,-387,-113,-499v-75,-112,-186,-169,-333,-169v-147,0,-259,57,-334,169v-75,112,-112,278,-112,499v0,220,37,387,112,499v75,112,187,168,334,168xm1007,-20v-147,66,-355,64,-503,-1v-163,-72,-291,-228,-351,-401v-64,-183,-64,-463,0,-646v60,-173,189,-332,351,-402v75,-33,159,-50,252,-50v195,0,352,71,472,213v120,142,180,329,180,562v-1,254,-72,438,-199,577v-59,65,-127,115,-202,148xm677,-1899r158,0r208,264r-104,0r-183,-161r-183,161r-104,0","w":1511},"\u00d5":{"d":"756,-78v147,0,258,-56,333,-168v75,-112,113,-279,113,-499v0,-221,-38,-387,-113,-499v-75,-112,-186,-169,-333,-169v-147,0,-259,57,-334,169v-75,112,-112,278,-112,499v0,220,37,387,112,499v75,112,187,168,334,168xm1007,-20v-147,66,-355,64,-503,-1v-163,-72,-291,-228,-351,-401v-64,-183,-64,-463,0,-646v60,-173,189,-332,351,-402v75,-33,159,-50,252,-50v195,0,352,71,472,213v120,142,180,329,180,562v-1,254,-72,438,-199,577v-59,65,-127,115,-202,148xm1053,-1886v-2,129,-57,216,-179,219v-75,2,-147,-69,-210,-96v-66,-28,-118,29,-118,96r-87,-1v-2,-141,88,-251,231,-209v56,15,123,89,197,93v52,3,80,-46,79,-102r87,0","w":1511},"\u00d6":{"d":"756,-78v147,0,258,-56,333,-168v75,-112,113,-279,113,-499v0,-221,-38,-387,-113,-499v-75,-112,-186,-169,-333,-169v-147,0,-259,57,-334,169v-75,112,-112,278,-112,499v0,220,37,387,112,499v75,112,187,168,334,168xm1007,-20v-147,66,-355,64,-503,-1v-163,-72,-291,-228,-351,-401v-64,-183,-64,-463,0,-646v60,-173,189,-332,351,-402v75,-33,159,-50,252,-50v195,0,352,71,472,213v120,142,180,329,180,562v-1,254,-72,438,-199,577v-59,65,-127,115,-202,148xm476,-1768v0,-58,48,-116,105,-116v57,0,105,58,105,116v0,63,-44,117,-105,117v-61,0,-105,-55,-105,-117xm826,-1768v0,-58,50,-116,106,-116v56,0,104,59,104,116v0,62,-44,117,-104,117v-62,0,-106,-54,-106,-117","w":1511},"\u00d7":{"d":"1291,-1104r-417,463r417,461r-104,112r-415,-460r-415,460r-102,-112r414,-461r-414,-463r102,-113r415,461r415,-461","w":1544},"\u00d8":{"d":"1093,-1239v-72,-107,-171,-174,-337,-174v-147,0,-259,57,-334,169v-75,112,-112,278,-112,499v0,156,17,282,59,393xm417,-256v69,109,174,178,339,178v147,0,258,-56,333,-168v75,-112,113,-279,113,-499v0,-154,-19,-285,-61,-396xm756,-1520v188,0,326,68,429,168r161,-198r72,71r-166,203v99,137,155,305,156,531v0,230,-60,416,-180,559v-120,143,-277,215,-472,215v-192,0,-323,-70,-432,-172r-164,200r-70,-69r168,-207v-100,-134,-153,-301,-154,-526v0,-231,60,-418,180,-561v120,-143,278,-214,472,-214","w":1511},"\u00d9":{"d":"258,-1386r-172,0r0,-107r526,0r0,107r-172,0r0,772v0,191,28,324,84,399v56,75,153,113,290,113v138,0,235,-38,291,-113v56,-75,84,-208,84,-399r0,-772r-172,0r0,-107r454,0r0,107r-171,0r0,792v0,227,-39,388,-118,482v-79,94,-212,141,-401,141v-188,0,-323,-47,-403,-142v-80,-95,-120,-255,-120,-481r0,-792xm750,-1899r165,264r-105,0r-236,-264r176,0","w":1553},"\u00da":{"d":"258,-1386r-172,0r0,-107r526,0r0,107r-172,0r0,772v0,191,28,324,84,399v56,75,153,113,290,113v138,0,235,-38,291,-113v56,-75,84,-208,84,-399r0,-772r-172,0r0,-107r454,0r0,107r-171,0r0,792v0,227,-39,388,-118,482v-79,94,-212,141,-401,141v-188,0,-323,-47,-403,-142v-80,-95,-120,-255,-120,-481r0,-792xm870,-1899r177,0r-236,264r-105,0","w":1553},"\u00db":{"d":"258,-1386r-172,0r0,-107r526,0r0,107r-172,0r0,772v0,191,28,324,84,399v56,75,153,113,290,113v138,0,235,-38,291,-113v56,-75,84,-208,84,-399r0,-772r-172,0r0,-107r454,0r0,107r-171,0r0,792v0,227,-39,388,-118,482v-79,94,-212,141,-401,141v-188,0,-323,-47,-403,-142v-80,-95,-120,-255,-120,-481r0,-792xm734,-1899r158,0r208,264r-104,0r-183,-161r-183,161r-104,0","w":1553},"\u00dc":{"d":"258,-1386r-172,0r0,-107r526,0r0,107r-172,0r0,772v0,191,28,324,84,399v56,75,153,113,290,113v138,0,235,-38,291,-113v56,-75,84,-208,84,-399r0,-772r-172,0r0,-107r454,0r0,107r-171,0r0,792v0,227,-39,388,-118,482v-79,94,-212,141,-401,141v-188,0,-323,-47,-403,-142v-80,-95,-120,-255,-120,-481r0,-792xm533,-1768v0,-58,48,-116,105,-116v57,0,105,58,105,116v0,63,-44,117,-105,117v-60,0,-105,-55,-105,-117xm883,-1768v0,-58,49,-116,106,-116v56,0,104,59,104,116v0,62,-44,117,-104,117v-61,0,-106,-55,-106,-117","w":1553},"\u00dd":{"d":"348,0r0,-106r172,0r0,-537r-415,-743r-126,0r0,-107r500,0r0,107r-157,0r336,604r336,-604r-152,0r0,-107r391,0r0,107r-127,0r-404,724r0,556r172,0r0,106r-526,0xm665,-1899r177,0r-236,264r-105,0","w":1216},"\u00de":{"d":"968,-748v0,-193,-89,-313,-275,-313r-238,0r0,627r238,0v186,0,275,-120,275,-314xm1174,-748v0,259,-175,422,-437,422r-282,0r0,220r208,0r0,106r-561,0r0,-106r171,0r0,-1280r-171,0r0,-107r561,0r0,107r-208,0r0,219r282,0v262,-4,437,162,437,419","w":1245},"\u00df":{"d":"556,-899v2,-179,124,-283,290,-311v-7,-149,-89,-248,-239,-248v-168,0,-229,92,-229,268r0,1190r-325,0r0,-106r159,0r0,-1080v-1,-239,151,-372,395,-370v268,2,390,152,403,419v-165,-6,-301,57,-301,201v0,96,43,125,115,176v96,67,230,167,272,239v34,58,54,123,54,199v0,208,-162,354,-374,351v-116,-2,-215,-30,-299,-72r0,-233r98,0v4,128,68,205,195,206v134,1,217,-90,215,-225v0,-56,-14,-103,-36,-143v-30,-54,-147,-135,-219,-185v-63,-43,-107,-86,-134,-129v-27,-43,-40,-92,-40,-147","w":1231},"\u00e0":{"d":"381,-1636r234,376r-105,0r-306,-376r177,0xm503,-78v141,0,231,-111,231,-256r0,-225r-214,0v-164,0,-243,77,-244,240v-1,143,87,241,227,241xm492,-1092v269,-2,407,155,407,428r0,558r148,0r0,106r-313,0r0,-115v-67,90,-151,142,-296,144v-210,2,-347,-138,-346,-348v2,-231,165,-350,409,-347r233,0r0,-73v1,-159,-94,-255,-252,-254v-139,0,-212,73,-231,198r-85,0r0,-215v98,-47,200,-81,326,-82","w":1098},"\u00e1":{"d":"637,-1638r179,0r-306,376r-105,0xm503,-78v141,0,231,-111,231,-256r0,-225r-214,0v-164,0,-243,77,-244,240v-1,143,87,241,227,241xm492,-1092v269,-2,407,155,407,428r0,558r148,0r0,106r-313,0r0,-115v-67,90,-151,142,-296,144v-210,2,-347,-138,-346,-348v2,-231,165,-350,409,-347r233,0r0,-73v1,-159,-94,-255,-252,-254v-139,0,-212,73,-231,198r-85,0r0,-215v98,-47,200,-81,326,-82","w":1098},"\u00e2":{"d":"436,-1638r151,0r212,376r-104,0r-183,-260r-183,260r-104,0xm503,-78v141,0,231,-111,231,-256r0,-225r-214,0v-164,0,-243,77,-244,240v-1,143,87,241,227,241xm492,-1092v269,-2,407,155,407,428r0,558r148,0r0,106r-313,0r0,-115v-67,90,-151,142,-296,144v-210,2,-347,-138,-346,-348v2,-231,165,-350,409,-347r233,0r0,-73v1,-159,-94,-255,-252,-254v-139,0,-212,73,-231,198r-85,0r0,-215v98,-47,200,-81,326,-82","w":1098},"\u00e3":{"d":"633,-1309v-109,0,-144,-107,-215,-147v-36,-20,-72,-4,-90,32v-14,26,-24,64,-27,115r-86,0v1,-90,18,-159,47,-209v39,-66,117,-92,192,-59v40,18,81,69,113,102v23,25,34,39,70,39v26,0,47,-13,61,-40v14,-27,22,-65,24,-115r87,0v-1,90,-17,160,-48,209v-31,49,-73,73,-128,73xm503,-78v141,0,231,-111,231,-256r0,-225r-214,0v-164,0,-243,77,-244,240v-1,143,87,241,227,241xm492,-1092v269,-2,407,155,407,428r0,558r148,0r0,106r-313,0r0,-115v-67,90,-151,142,-296,144v-210,2,-347,-138,-346,-348v2,-231,165,-350,409,-347r233,0r0,-73v1,-159,-94,-255,-252,-254v-139,0,-212,73,-231,198r-85,0r0,-215v98,-47,200,-81,326,-82","w":1098},"\u00e4":{"d":"232,-1452v0,-60,47,-117,104,-117v58,0,106,57,106,117v0,64,-44,117,-106,117v-61,0,-104,-53,-104,-117xm582,-1452v0,-60,47,-117,105,-117v58,0,105,57,105,117v0,64,-44,117,-105,117v-62,0,-105,-53,-105,-117xm503,-78v141,0,231,-111,231,-256r0,-225r-214,0v-164,0,-243,77,-244,240v-1,143,87,241,227,241xm492,-1092v269,-2,407,155,407,428r0,558r148,0r0,106r-313,0r0,-115v-67,90,-151,142,-296,144v-210,2,-347,-138,-346,-348v2,-231,165,-350,409,-347r233,0r0,-73v1,-159,-94,-255,-252,-254v-139,0,-212,73,-231,198r-85,0r0,-215v98,-47,200,-81,326,-82","w":1098},"\u00e5":{"d":"503,-78v141,0,231,-111,231,-256r0,-225r-214,0v-164,0,-243,77,-244,240v-1,143,87,241,227,241xm492,-1092v269,-2,407,155,407,428r0,558r148,0r0,106r-313,0r0,-115v-67,90,-151,142,-296,144v-210,2,-347,-138,-346,-348v2,-231,165,-350,409,-347r233,0r0,-73v1,-159,-94,-255,-252,-254v-139,0,-212,73,-231,198r-85,0r0,-215v98,-47,200,-81,326,-82xm512,-1798v137,0,246,132,246,274v0,144,-108,275,-246,275v-140,0,-247,-131,-247,-275v0,-144,108,-274,247,-274xm512,-1372v77,0,137,-72,137,-152v0,-79,-60,-151,-137,-151v-79,0,-137,70,-137,151v0,81,58,152,137,152","w":1098},"\u00e6":{"d":"503,-78v141,0,231,-111,231,-256r0,-225r-214,0v-164,0,-243,77,-244,240v-1,143,87,241,227,241xm1198,29v-168,0,-284,-75,-366,-179v-89,107,-194,177,-369,179v-230,3,-372,-123,-371,-348v0,-231,166,-350,409,-347r233,0r0,-73v2,-157,-91,-255,-245,-254v-144,0,-219,70,-238,198r-85,0r0,-215v98,-47,200,-82,326,-82v175,0,287,60,350,177v79,-103,182,-177,345,-177v145,0,256,50,333,149v77,99,117,243,120,431r-713,0v-1,145,24,258,73,332v48,73,120,110,215,110v164,0,243,-104,276,-252r133,0v-48,217,-177,351,-426,351xm1445,-618v-3,-124,-27,-217,-70,-280v-43,-63,-106,-95,-188,-95v-76,0,-137,32,-181,95v-44,63,-70,157,-79,280r518,0","w":1732},"\u00e7":{"d":"602,176v-4,-66,-42,-117,-79,-176r87,0v39,43,67,83,86,120v19,37,28,72,28,105v-1,116,-90,171,-214,170v-58,0,-109,-10,-158,-24r0,-131v41,19,87,33,139,34v65,1,114,-36,111,-98xm556,-70v160,0,231,-100,258,-249r134,0v-42,208,-162,348,-394,348v-139,0,-250,-51,-335,-153v-85,-102,-127,-239,-127,-408v0,-170,42,-306,127,-408v85,-102,196,-152,335,-152v144,0,257,39,362,95r0,272r-96,0v-24,-170,-88,-268,-264,-268v-89,0,-156,38,-202,115v-46,77,-69,193,-69,346v0,153,23,269,68,346v45,77,113,116,203,116","w":1032},"\u00e8":{"d":"415,-1636r234,376r-105,0r-306,-376r177,0xm983,-322v-49,217,-176,351,-427,351v-140,0,-252,-51,-337,-153v-85,-102,-127,-239,-127,-408v0,-168,42,-303,125,-406v83,-103,193,-154,328,-154v145,0,256,49,333,148v77,99,118,243,121,432r-714,0v-1,145,23,258,73,332v49,73,120,110,215,110v164,0,244,-104,277,-252r133,0xm804,-618v-4,-124,-28,-217,-71,-280v-43,-63,-106,-95,-188,-95v-76,0,-135,32,-179,95v-44,63,-71,157,-81,280r519,0","w":1090},"\u00e9":{"d":"671,-1638r179,0r-306,376r-105,0xm983,-322v-49,217,-176,351,-427,351v-140,0,-252,-51,-337,-153v-85,-102,-127,-239,-127,-408v0,-168,42,-303,125,-406v83,-103,193,-154,328,-154v145,0,256,49,333,148v77,99,118,243,121,432r-714,0v-1,145,23,258,73,332v49,73,120,110,215,110v164,0,244,-104,277,-252r133,0xm804,-618v-4,-124,-28,-217,-71,-280v-43,-63,-106,-95,-188,-95v-76,0,-135,32,-179,95v-44,63,-71,157,-81,280r519,0","w":1090},"\u00ea":{"d":"470,-1638r151,0r212,376r-104,0r-183,-260r-183,260r-104,0xm983,-322v-49,217,-176,351,-427,351v-140,0,-252,-51,-337,-153v-85,-102,-127,-239,-127,-408v0,-168,42,-303,125,-406v83,-103,193,-154,328,-154v145,0,256,49,333,148v77,99,118,243,121,432r-714,0v-1,145,23,258,73,332v49,73,120,110,215,110v164,0,244,-104,277,-252r133,0xm804,-618v-4,-124,-28,-217,-71,-280v-43,-63,-106,-95,-188,-95v-76,0,-135,32,-179,95v-44,63,-71,157,-81,280r519,0","w":1090},"\u00eb":{"d":"266,-1452v0,-60,47,-117,104,-117v58,0,106,57,106,117v0,64,-44,117,-106,117v-61,0,-104,-53,-104,-117xm616,-1452v0,-60,47,-117,105,-117v58,0,105,57,105,117v0,64,-44,117,-105,117v-62,0,-105,-53,-105,-117xm983,-322v-49,217,-176,351,-427,351v-140,0,-252,-51,-337,-153v-85,-102,-127,-239,-127,-408v0,-168,42,-303,125,-406v83,-103,193,-154,328,-154v145,0,256,49,333,148v77,99,118,243,121,432r-714,0v-1,145,23,258,73,332v49,73,120,110,215,110v164,0,244,-104,277,-252r133,0xm804,-618v-4,-124,-28,-217,-71,-280v-43,-63,-106,-95,-188,-95v-76,0,-135,32,-179,95v-44,63,-71,157,-81,280r519,0","w":1090},"\u00ec":{"d":"164,-1636r234,376r-105,0r-306,-376r177,0xm391,-106r156,0r0,106r-480,0r0,-106r158,0r0,-850r-158,0r0,-107r324,0r0,957","w":589},"\u00ed":{"d":"420,-1638r179,0r-306,376r-105,0xm391,-106r156,0r0,106r-480,0r0,-106r158,0r0,-850r-158,0r0,-107r324,0r0,957","w":589},"\u00ee":{"d":"219,-1638r151,0r212,376r-104,0r-183,-260r-183,260r-104,0xm391,-106r156,0r0,106r-480,0r0,-106r158,0r0,-850r-158,0r0,-107r324,0r0,957","w":589},"\u00ef":{"d":"15,-1452v0,-60,47,-117,104,-117v58,0,106,57,106,117v0,64,-44,117,-106,117v-61,0,-104,-53,-104,-117xm365,-1452v0,-60,47,-117,105,-117v58,0,105,57,105,117v0,64,-44,117,-105,117v-62,0,-105,-53,-105,-117xm391,-106r156,0r0,106r-480,0r0,-106r158,0r0,-850r-158,0r0,-107r324,0r0,957","w":589},"\u00f0":{"d":"824,-512v0,-160,-33,-301,-85,-416v-50,-11,-94,-18,-149,-18v-104,0,-180,36,-230,107v-50,71,-75,182,-75,331v0,140,24,248,71,324v47,76,113,114,198,114v87,0,153,-38,200,-114v47,-76,70,-186,70,-328xm241,-1556v150,37,272,101,378,188r290,-150r33,78r-258,133v110,111,192,233,249,363v113,255,121,627,-43,820v-86,101,-196,153,-336,153v-286,2,-462,-245,-462,-547v0,-296,177,-528,459,-526v54,0,93,5,146,14v-31,-80,-77,-149,-131,-215r-290,149r-33,-78r264,-135v-72,-76,-166,-131,-282,-161","w":1109},"\u00f1":{"d":"714,-1309v-109,0,-143,-107,-214,-147v-36,-20,-74,-4,-92,32v-14,26,-23,64,-26,115r-86,0v1,-90,19,-159,48,-209v39,-66,115,-92,190,-59v40,18,82,69,114,102v23,25,34,39,70,39v26,0,46,-13,60,-40v14,-27,23,-65,25,-115r87,0v-1,90,-17,160,-48,209v-31,49,-73,73,-128,73xm391,-874v52,-124,136,-218,289,-218v106,0,184,34,234,101v50,67,74,172,74,315r0,570r148,0r0,106r-457,0r0,-106r143,0r0,-512v0,-130,-15,-220,-44,-268v-29,-48,-79,-72,-152,-72v-77,0,-135,32,-175,94v-40,62,-60,153,-60,272r0,486r144,0r0,106r-459,0r0,-106r149,0r0,-850r-158,0r0,-107r324,0r0,189","w":1187},"\u00f2":{"d":"424,-1636r234,376r-105,0r-306,-376r177,0xm554,-70v89,0,157,-39,202,-117v45,-78,68,-193,68,-345v0,-152,-23,-266,-68,-344v-45,-78,-113,-117,-202,-117v-89,0,-156,39,-201,117v-45,78,-68,192,-68,344v0,152,23,267,69,345v46,78,112,117,200,117xm554,29v-139,0,-250,-51,-335,-153v-85,-102,-127,-239,-127,-408v0,-169,42,-305,126,-407v84,-102,197,-153,336,-153v140,0,252,51,336,153v84,102,127,238,127,407v0,169,-43,306,-127,408v-84,102,-196,153,-336,153","w":1109},"\u00f3":{"d":"680,-1638r179,0r-306,376r-105,0xm554,-70v89,0,157,-39,202,-117v45,-78,68,-193,68,-345v0,-152,-23,-266,-68,-344v-45,-78,-113,-117,-202,-117v-89,0,-156,39,-201,117v-45,78,-68,192,-68,344v0,152,23,267,69,345v46,78,112,117,200,117xm554,29v-139,0,-250,-51,-335,-153v-85,-102,-127,-239,-127,-408v0,-169,42,-305,126,-407v84,-102,197,-153,336,-153v140,0,252,51,336,153v84,102,127,238,127,407v0,169,-43,306,-127,408v-84,102,-196,153,-336,153","w":1109},"\u00f4":{"d":"479,-1638r151,0r212,376r-104,0r-183,-260r-183,260r-104,0xm554,-70v89,0,157,-39,202,-117v45,-78,68,-193,68,-345v0,-152,-23,-266,-68,-344v-45,-78,-113,-117,-202,-117v-89,0,-156,39,-201,117v-45,78,-68,192,-68,344v0,152,23,267,69,345v46,78,112,117,200,117xm554,29v-139,0,-250,-51,-335,-153v-85,-102,-127,-239,-127,-408v0,-169,42,-305,126,-407v84,-102,197,-153,336,-153v140,0,252,51,336,153v84,102,127,238,127,407v0,169,-43,306,-127,408v-84,102,-196,153,-336,153","w":1109},"\u00f5":{"d":"676,-1309v-109,0,-143,-107,-214,-147v-36,-20,-74,-4,-92,32v-14,26,-23,64,-26,115r-86,0v1,-90,19,-159,48,-209v39,-66,115,-92,190,-59v40,18,82,69,114,102v23,25,34,39,70,39v26,0,46,-13,60,-40v14,-27,23,-65,25,-115r87,0v-1,90,-17,160,-48,209v-31,49,-73,73,-128,73xm554,-70v89,0,157,-39,202,-117v45,-78,68,-193,68,-345v0,-152,-23,-266,-68,-344v-45,-78,-113,-117,-202,-117v-89,0,-156,39,-201,117v-45,78,-68,192,-68,344v0,152,23,267,69,345v46,78,112,117,200,117xm554,29v-139,0,-250,-51,-335,-153v-85,-102,-127,-239,-127,-408v0,-169,42,-305,126,-407v84,-102,197,-153,336,-153v140,0,252,51,336,153v84,102,127,238,127,407v0,169,-43,306,-127,408v-84,102,-196,153,-336,153","w":1109},"\u00f6":{"d":"275,-1452v0,-60,47,-117,104,-117v58,0,106,57,106,117v0,64,-44,117,-106,117v-61,0,-104,-53,-104,-117xm625,-1452v0,-60,47,-117,105,-117v58,0,105,57,105,117v0,64,-44,117,-105,117v-62,0,-105,-53,-105,-117xm554,-70v89,0,157,-39,202,-117v45,-78,68,-193,68,-345v0,-152,-23,-266,-68,-344v-45,-78,-113,-117,-202,-117v-89,0,-156,39,-201,117v-45,78,-68,192,-68,344v0,152,23,267,69,345v46,78,112,117,200,117xm554,29v-139,0,-250,-51,-335,-153v-85,-102,-127,-239,-127,-408v0,-169,42,-305,126,-407v84,-102,197,-153,336,-153v140,0,252,51,336,153v84,102,127,238,127,407v0,169,-43,306,-127,408v-84,102,-196,153,-336,153","w":1109},"\u00f7":{"d":"772,-879v-69,0,-120,-61,-120,-133v0,-70,53,-133,120,-133v67,0,120,64,120,133v0,70,-53,133,-120,133xm772,-139v-69,0,-120,-63,-120,-133v0,-70,53,-134,120,-134v67,0,120,64,120,134v0,69,-53,133,-120,133xm195,-723r1154,0r0,162r-1154,0r0,-162","w":1544},"\u00f8":{"d":"756,-879v-41,-69,-102,-114,-202,-114v-88,0,-154,39,-200,117v-46,78,-69,193,-69,344v0,91,9,169,26,239xm352,-190v43,72,100,120,202,120v89,0,156,-40,202,-118v46,-78,68,-193,68,-344v0,-96,-8,-175,-28,-248xm554,-1092v124,1,216,40,287,101r125,-166r68,63r-130,172v71,95,113,228,113,390v0,169,-43,306,-127,408v-84,102,-196,153,-336,153v-126,0,-216,-42,-288,-107r-129,172r-69,-63r134,-178v-69,-98,-110,-224,-110,-385v0,-169,42,-305,126,-407v84,-102,197,-153,336,-153","w":1109},"\u00f9":{"d":"395,-1636r234,376r-105,0r-306,-376r177,0xm796,-188v-52,122,-136,217,-288,217v-106,0,-184,-34,-234,-101v-50,-67,-75,-172,-75,-315r0,-569r-149,0r0,-107r315,0r0,619v0,129,14,218,43,266v29,48,80,72,153,72v77,0,135,-31,175,-94v40,-63,60,-154,60,-273r0,-483r-144,0r0,-107r310,0r0,957r157,0r0,106r-323,0r0,-188","w":1187},"\u00fa":{"d":"651,-1638r179,0r-306,376r-105,0xm796,-188v-52,122,-136,217,-288,217v-106,0,-184,-34,-234,-101v-50,-67,-75,-172,-75,-315r0,-569r-149,0r0,-107r315,0r0,619v0,129,14,218,43,266v29,48,80,72,153,72v77,0,135,-31,175,-94v40,-63,60,-154,60,-273r0,-483r-144,0r0,-107r310,0r0,957r157,0r0,106r-323,0r0,-188","w":1187},"\u00fb":{"d":"450,-1638r151,0r212,376r-104,0r-183,-260r-183,260r-104,0xm796,-188v-52,122,-136,217,-288,217v-106,0,-184,-34,-234,-101v-50,-67,-75,-172,-75,-315r0,-569r-149,0r0,-107r315,0r0,619v0,129,14,218,43,266v29,48,80,72,153,72v77,0,135,-31,175,-94v40,-63,60,-154,60,-273r0,-483r-144,0r0,-107r310,0r0,957r157,0r0,106r-323,0r0,-188","w":1187},"\u00fc":{"d":"246,-1452v0,-60,47,-117,104,-117v58,0,106,57,106,117v0,64,-44,117,-106,117v-61,0,-104,-53,-104,-117xm596,-1452v0,-60,47,-117,105,-117v58,0,105,57,105,117v0,64,-44,117,-105,117v-62,0,-105,-53,-105,-117xm796,-188v-52,122,-136,217,-288,217v-106,0,-184,-34,-234,-101v-50,-67,-75,-172,-75,-315r0,-569r-149,0r0,-107r315,0r0,619v0,129,14,218,43,266v29,48,80,72,153,72v77,0,135,-31,175,-94v40,-63,60,-154,60,-273r0,-483r-144,0r0,-107r310,0r0,957r157,0r0,106r-323,0r0,-188","w":1187},"\u00fd":{"d":"647,-1638r179,0r-306,376r-105,0xm144,221v7,83,30,125,111,127v33,0,59,-10,79,-30v50,-55,93,-211,127,-300r-357,-974r-109,0r0,-107r440,0r0,107r-153,0r269,731r269,-731r-143,0r0,-107r359,0r0,107r-107,0r-439,1196v-29,83,-63,139,-99,170v-73,64,-236,50,-332,14r0,-203r85,0","w":1041},"\u00fe":{"d":"378,-584r0,105v0,128,22,226,66,293v44,67,108,100,192,100v85,0,145,-39,192,-113v84,-133,84,-534,0,-666v-47,-73,-107,-112,-192,-112v-84,0,-148,34,-192,101v-44,67,-66,165,-66,292xm688,29v-166,0,-250,-74,-310,-195r0,485r157,0r0,107r-482,0r0,-107r159,0r0,-1769r-159,0r0,-106r325,0r0,659v60,-121,144,-195,310,-195v117,0,214,52,288,155v74,103,111,238,111,405v0,167,-37,302,-111,406v-74,104,-171,155,-288,155","w":1179},"\u00ff":{"d":"242,-1452v0,-60,47,-117,104,-117v58,0,106,57,106,117v0,64,-44,117,-106,117v-61,0,-104,-53,-104,-117xm592,-1452v0,-60,47,-117,105,-117v58,0,105,57,105,117v0,64,-44,117,-105,117v-62,0,-105,-53,-105,-117xm144,221v7,83,30,125,111,127v33,0,59,-10,79,-30v50,-55,93,-211,127,-300r-357,-974r-109,0r0,-107r440,0r0,107r-153,0r269,731r269,-731r-143,0r0,-107r359,0r0,107r-107,0r-439,1196v-29,83,-63,139,-99,170v-73,64,-236,50,-332,14r0,-203r85,0","w":1041},"\u0152":{"d":"855,-1386v-369,1,-542,249,-542,636v0,207,47,367,140,478v93,111,227,166,402,166r168,0r0,-1280r-168,0xm107,-750v0,-463,274,-743,735,-743r1091,0r0,332r-111,0r0,-209r-617,0r0,500r443,0r0,-187r109,0r0,496r-109,0r0,-187r-443,0r0,625r633,0r0,-209r110,0r0,332r-1106,0v-461,3,-735,-285,-735,-750","w":2096},"\u0153":{"d":"554,-70v89,0,157,-39,202,-117v45,-78,68,-193,68,-345v0,-152,-23,-266,-68,-344v-45,-78,-113,-117,-202,-117v-89,0,-156,39,-201,117v-45,78,-68,192,-68,344v0,152,23,267,69,345v46,78,112,117,200,117xm922,-897v76,-113,185,-195,355,-195v145,0,256,49,333,148v77,99,118,243,121,432r-714,0v-1,145,23,258,73,332v49,73,120,110,215,110v164,0,243,-104,276,-252r133,0v-48,217,-176,351,-425,351v-176,0,-291,-79,-369,-195v-74,116,-192,195,-366,195v-139,0,-250,-51,-335,-153v-85,-102,-127,-239,-127,-408v0,-169,42,-305,126,-407v84,-102,197,-153,336,-153v176,0,293,79,368,195xm1535,-618v-3,-124,-27,-217,-70,-280v-43,-63,-106,-95,-188,-95v-76,0,-136,32,-180,95v-44,63,-71,157,-80,280r518,0","w":1822},"\u0178":{"d":"348,0r0,-106r172,0r0,-537r-415,-743r-126,0r0,-107r500,0r0,107r-157,0r336,604r336,-604r-152,0r0,-107r391,0r0,107r-127,0r-404,724r0,556r172,0r0,106r-526,0xm328,-1768v0,-58,48,-116,105,-116v57,0,105,58,105,116v0,63,-44,117,-105,117v-61,0,-105,-55,-105,-117xm678,-1768v0,-58,50,-116,106,-116v56,0,104,59,104,116v0,62,-44,117,-104,117v-62,0,-106,-54,-106,-117","w":1216},"\u02c6":{"d":"385,-1638r151,0r212,376r-104,0r-183,-260r-183,260r-104,0","w":921},"\u02dc":{"d":"582,-1309v-109,0,-143,-107,-214,-147v-36,-20,-74,-4,-92,32v-14,26,-23,64,-26,115r-86,0v1,-90,19,-159,48,-209v39,-66,115,-92,190,-59v40,18,82,69,114,102v23,25,34,39,70,39v26,0,46,-13,60,-40v14,-27,23,-65,25,-115r87,0v-1,90,-17,160,-48,209v-31,49,-73,73,-128,73","w":921},"\u2013":{"d":"81,-610r760,0r0,133r-760,0r0,-133","w":921},"\u2014":{"d":"81,-610r1681,0r0,133r-1681,0r0,-133","w":1843},"\u2018":{"d":"494,-1440v-104,93,-137,223,-131,426r-175,0v3,-252,83,-391,236,-506","w":585},"\u2019":{"d":"130,-1067v107,-91,140,-223,134,-426r174,0v-4,251,-83,391,-237,506","w":585},"\u201a":{"d":"81,199v116,-93,169,-219,164,-426r177,0v-12,248,-106,394,-269,506","w":585},"\u201c":{"d":"850,-1440v-104,93,-137,223,-131,426r-175,0v3,-252,82,-391,235,-506xm494,-1440v-104,93,-137,223,-131,426r-175,0v3,-252,83,-391,236,-506","w":942},"\u201d":{"d":"130,-1067v107,-91,140,-223,134,-426r174,0v-4,251,-83,391,-237,506xm489,-1067v103,-92,136,-224,130,-426r175,0v-3,252,-83,390,-235,506","w":942},"\u201e":{"d":"81,199v116,-93,169,-219,164,-426r177,0v-12,248,-106,394,-269,506xm436,199v117,-93,170,-218,165,-426r177,0v-13,249,-105,394,-270,506","w":954},"\u2022":{"d":"544,-465v-152,0,-268,-140,-268,-297v0,-156,117,-295,269,-295v151,0,266,139,266,295v0,157,-116,297,-267,297","w":1087},"\u2026":{"d":"1535,29v-69,0,-119,-63,-119,-133v0,-70,51,-134,119,-134v67,0,120,64,120,134v0,69,-53,133,-120,133xm922,29v-70,0,-120,-62,-120,-133v0,-71,51,-134,120,-134v66,0,119,65,119,134v0,69,-53,133,-119,133xm308,29v-70,0,-120,-62,-120,-133v0,-71,51,-134,120,-134v66,0,120,65,120,134v0,69,-54,133,-120,133","w":1843},"\u2039":{"d":"564,-1059r0,115r-267,344r267,344r0,115r-422,-418r0,-82","w":737},"\u203a":{"d":"174,-1059r422,418r0,82r-422,418r0,-115r266,-344r-266,-344r0,-115","w":737},"\u20ac":{"d":"341,-745r2,102r337,0r-42,104r-288,0v14,153,45,269,94,349v49,80,115,120,196,120v69,0,127,-28,172,-84v45,-56,76,-136,92,-241r119,0v-25,137,-73,242,-142,315v-69,73,-156,109,-260,109v-113,0,-211,-51,-293,-152v-82,-101,-136,-240,-164,-416r-171,0r40,-104r122,0r-4,-102v0,-23,0,-42,1,-58r3,-47r-162,0r40,-104r131,0v28,-176,83,-314,164,-415v81,-101,179,-151,293,-151v161,0,256,57,380,131r0,342r-96,0v-12,-120,-41,-212,-87,-277v-46,-65,-105,-97,-178,-97v-81,0,-146,40,-196,119v-50,79,-81,195,-94,348r454,0r-43,104r-416,0"},"\u2122":{"d":"1006,-1493r157,270r163,-270r197,0r0,66r-78,0r0,446r78,0r0,66r-257,0r0,-66r78,0r0,-426r-188,311r-39,0r-179,-311r0,426r75,0r0,66r-217,0r0,-66r78,0r0,-446r-78,0r0,-66r210,0xm218,-1493r501,0r0,170r-61,0r0,-104r-138,0r0,446r78,0r0,66r-259,0r0,-66r78,0r0,-446r-141,0r0,104r-58,0r0,-170","w":1843}}}); diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-webfont.eot b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-webfont.eot new file mode 100644 index 0000000..485aba1 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-webfont.eot differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-webfont.svg b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-webfont.svg new file mode 100644 index 0000000..53b0a00 --- /dev/null +++ b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-webfont.svg @@ -0,0 +1,241 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved._DejaVu changes are in public domain_ +Foundry : DejaVu fonts team +Foundry URL : http://dejavu.sourceforge.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-webfont.ttf b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-webfont.ttf new file mode 100644 index 0000000..de8a7d3 Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-webfont.ttf differ diff --git a/assets/fonts/dejavu/serif/DejaVuSerifCondensed-webfont.woff b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-webfont.woff new file mode 100644 index 0000000..b8dbc1e Binary files /dev/null and b/assets/fonts/dejavu/serif/DejaVuSerifCondensed-webfont.woff differ diff --git a/assets/fonts/opensans/Apache License Version 2.txt b/assets/fonts/opensans/Apache License Version 2.txt new file mode 100644 index 0000000..4df74b8 --- /dev/null +++ b/assets/fonts/opensans/Apache License Version 2.txt @@ -0,0 +1,53 @@ +Apache License + +Version 2.0, January 2004 + +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. \ No newline at end of file diff --git a/assets/fonts/opensans/OpenSans-Bold-webfont.eot b/assets/fonts/opensans/OpenSans-Bold-webfont.eot new file mode 100644 index 0000000..089161e Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Bold-webfont.eot differ diff --git a/assets/fonts/opensans/OpenSans-Bold-webfont.svg b/assets/fonts/opensans/OpenSans-Bold-webfont.svg new file mode 100644 index 0000000..42049d7 --- /dev/null +++ b/assets/fonts/opensans/OpenSans-Bold-webfont.svg @@ -0,0 +1,958 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Digitized data copyright 20102011 Google Corporation +Foundry : Ascender Corporation +Foundry URL : httpwwwascendercorpcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/opensans/OpenSans-Bold-webfont.ttf b/assets/fonts/opensans/OpenSans-Bold-webfont.ttf new file mode 100644 index 0000000..ae3e3fc Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Bold-webfont.ttf differ diff --git a/assets/fonts/opensans/OpenSans-Bold-webfont.woff b/assets/fonts/opensans/OpenSans-Bold-webfont.woff new file mode 100644 index 0000000..0d1c891 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Bold-webfont.woff differ diff --git a/assets/fonts/opensans/OpenSans-BoldItalic-webfont.eot b/assets/fonts/opensans/OpenSans-BoldItalic-webfont.eot new file mode 100644 index 0000000..a980f07 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-BoldItalic-webfont.eot differ diff --git a/assets/fonts/opensans/OpenSans-BoldItalic-webfont.svg b/assets/fonts/opensans/OpenSans-BoldItalic-webfont.svg new file mode 100644 index 0000000..9b5d9f3 --- /dev/null +++ b/assets/fonts/opensans/OpenSans-BoldItalic-webfont.svg @@ -0,0 +1,958 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Digitized data copyright 20102011 Google Corporation +Foundry : Ascender Corporation +Foundry URL : httpwwwascendercorpcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/opensans/OpenSans-BoldItalic-webfont.ttf b/assets/fonts/opensans/OpenSans-BoldItalic-webfont.ttf new file mode 100644 index 0000000..e80460b Binary files /dev/null and b/assets/fonts/opensans/OpenSans-BoldItalic-webfont.ttf differ diff --git a/assets/fonts/opensans/OpenSans-BoldItalic-webfont.woff b/assets/fonts/opensans/OpenSans-BoldItalic-webfont.woff new file mode 100644 index 0000000..e4e2588 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-BoldItalic-webfont.woff differ diff --git a/assets/fonts/opensans/OpenSans-ExtraBold-webfont.eot b/assets/fonts/opensans/OpenSans-ExtraBold-webfont.eot new file mode 100644 index 0000000..117a123 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-ExtraBold-webfont.eot differ diff --git a/assets/fonts/opensans/OpenSans-ExtraBold-webfont.svg b/assets/fonts/opensans/OpenSans-ExtraBold-webfont.svg new file mode 100644 index 0000000..d476955 --- /dev/null +++ b/assets/fonts/opensans/OpenSans-ExtraBold-webfont.svg @@ -0,0 +1,958 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Digitized data copyright 2011 Google Corporation +Foundry : Ascender Corporation +Foundry URL : httpwwwascendercorpcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/opensans/OpenSans-ExtraBold-webfont.ttf b/assets/fonts/opensans/OpenSans-ExtraBold-webfont.ttf new file mode 100644 index 0000000..ff91ee1 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-ExtraBold-webfont.ttf differ diff --git a/assets/fonts/opensans/OpenSans-ExtraBold-webfont.woff b/assets/fonts/opensans/OpenSans-ExtraBold-webfont.woff new file mode 100644 index 0000000..2d77916 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-ExtraBold-webfont.woff differ diff --git a/assets/fonts/opensans/OpenSans-ExtraBoldItalic-webfont.eot b/assets/fonts/opensans/OpenSans-ExtraBoldItalic-webfont.eot new file mode 100644 index 0000000..b1f6993 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-ExtraBoldItalic-webfont.eot differ diff --git a/assets/fonts/opensans/OpenSans-ExtraBoldItalic-webfont.svg b/assets/fonts/opensans/OpenSans-ExtraBoldItalic-webfont.svg new file mode 100644 index 0000000..f474fe5 --- /dev/null +++ b/assets/fonts/opensans/OpenSans-ExtraBoldItalic-webfont.svg @@ -0,0 +1,958 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Digitized data copyright 20102011 Google Corporation +Foundry : Ascender Corporation +Foundry URL : httpwwwascendercorpcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/opensans/OpenSans-ExtraBoldItalic-webfont.ttf b/assets/fonts/opensans/OpenSans-ExtraBoldItalic-webfont.ttf new file mode 100644 index 0000000..7b8d7da Binary files /dev/null and b/assets/fonts/opensans/OpenSans-ExtraBoldItalic-webfont.ttf differ diff --git a/assets/fonts/opensans/OpenSans-ExtraBoldItalic-webfont.woff b/assets/fonts/opensans/OpenSans-ExtraBoldItalic-webfont.woff new file mode 100644 index 0000000..766fcbc Binary files /dev/null and b/assets/fonts/opensans/OpenSans-ExtraBoldItalic-webfont.woff differ diff --git a/assets/fonts/opensans/OpenSans-Italic-webfont.eot b/assets/fonts/opensans/OpenSans-Italic-webfont.eot new file mode 100644 index 0000000..90861f1 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Italic-webfont.eot differ diff --git a/assets/fonts/opensans/OpenSans-Italic-webfont.svg b/assets/fonts/opensans/OpenSans-Italic-webfont.svg new file mode 100644 index 0000000..0bef74c --- /dev/null +++ b/assets/fonts/opensans/OpenSans-Italic-webfont.svg @@ -0,0 +1,958 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Digitized data copyright 20102011 Google Corporation +Foundry : Ascender Corporation +Foundry URL : httpwwwascendercorpcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/opensans/OpenSans-Italic-webfont.ttf b/assets/fonts/opensans/OpenSans-Italic-webfont.ttf new file mode 100644 index 0000000..fb83732 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Italic-webfont.ttf differ diff --git a/assets/fonts/opensans/OpenSans-Italic-webfont.woff b/assets/fonts/opensans/OpenSans-Italic-webfont.woff new file mode 100644 index 0000000..1a8e70a Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Italic-webfont.woff differ diff --git a/assets/fonts/opensans/OpenSans-Light-webfont.eot b/assets/fonts/opensans/OpenSans-Light-webfont.eot new file mode 100644 index 0000000..df3f0e5 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Light-webfont.eot differ diff --git a/assets/fonts/opensans/OpenSans-Light-webfont.svg b/assets/fonts/opensans/OpenSans-Light-webfont.svg new file mode 100644 index 0000000..7c19685 --- /dev/null +++ b/assets/fonts/opensans/OpenSans-Light-webfont.svg @@ -0,0 +1,958 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Digitized data copyright 20102011 Google Corporation +Foundry : Ascender Corporation +Foundry URL : httpwwwascendercorpcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/opensans/OpenSans-Light-webfont.ttf b/assets/fonts/opensans/OpenSans-Light-webfont.ttf new file mode 100644 index 0000000..bf55b30 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Light-webfont.ttf differ diff --git a/assets/fonts/opensans/OpenSans-Light-webfont.woff b/assets/fonts/opensans/OpenSans-Light-webfont.woff new file mode 100644 index 0000000..d02d040 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Light-webfont.woff differ diff --git a/assets/fonts/opensans/OpenSans-LightItalic-webfont.eot b/assets/fonts/opensans/OpenSans-LightItalic-webfont.eot new file mode 100644 index 0000000..78e1ce6 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-LightItalic-webfont.eot differ diff --git a/assets/fonts/opensans/OpenSans-LightItalic-webfont.svg b/assets/fonts/opensans/OpenSans-LightItalic-webfont.svg new file mode 100644 index 0000000..727cf8c --- /dev/null +++ b/assets/fonts/opensans/OpenSans-LightItalic-webfont.svg @@ -0,0 +1,958 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Digitized data copyright 20102011 Google Corporation +Foundry : Ascender Corporation +Foundry URL : httpwwwascendercorpcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/opensans/OpenSans-LightItalic-webfont.ttf b/assets/fonts/opensans/OpenSans-LightItalic-webfont.ttf new file mode 100644 index 0000000..9c4986d Binary files /dev/null and b/assets/fonts/opensans/OpenSans-LightItalic-webfont.ttf differ diff --git a/assets/fonts/opensans/OpenSans-LightItalic-webfont.woff b/assets/fonts/opensans/OpenSans-LightItalic-webfont.woff new file mode 100644 index 0000000..1618625 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-LightItalic-webfont.woff differ diff --git a/assets/fonts/opensans/OpenSans-Regular-webfont.eot b/assets/fonts/opensans/OpenSans-Regular-webfont.eot new file mode 100644 index 0000000..9397cc3 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Regular-webfont.eot differ diff --git a/assets/fonts/opensans/OpenSans-Regular-webfont.svg b/assets/fonts/opensans/OpenSans-Regular-webfont.svg new file mode 100644 index 0000000..fadba9b --- /dev/null +++ b/assets/fonts/opensans/OpenSans-Regular-webfont.svg @@ -0,0 +1,958 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Digitized data copyright 20102011 Google Corporation +Foundry : Ascender Corporation +Foundry URL : httpwwwascendercorpcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/opensans/OpenSans-Regular-webfont.ttf b/assets/fonts/opensans/OpenSans-Regular-webfont.ttf new file mode 100644 index 0000000..9a5ced2 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Regular-webfont.ttf differ diff --git a/assets/fonts/opensans/OpenSans-Regular-webfont.woff b/assets/fonts/opensans/OpenSans-Regular-webfont.woff new file mode 100644 index 0000000..4e6b9e0 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Regular-webfont.woff differ diff --git a/assets/fonts/opensans/OpenSans-Semibold-webfont.eot b/assets/fonts/opensans/OpenSans-Semibold-webfont.eot new file mode 100644 index 0000000..fccb399 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Semibold-webfont.eot differ diff --git a/assets/fonts/opensans/OpenSans-Semibold-webfont.svg b/assets/fonts/opensans/OpenSans-Semibold-webfont.svg new file mode 100644 index 0000000..cc91c39 --- /dev/null +++ b/assets/fonts/opensans/OpenSans-Semibold-webfont.svg @@ -0,0 +1,958 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Digitized data copyright 2011 Google Corporation +Foundry : Ascender Corporation +Foundry URL : httpwwwascendercorpcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/opensans/OpenSans-Semibold-webfont.ttf b/assets/fonts/opensans/OpenSans-Semibold-webfont.ttf new file mode 100644 index 0000000..a205568 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Semibold-webfont.ttf differ diff --git a/assets/fonts/opensans/OpenSans-Semibold-webfont.woff b/assets/fonts/opensans/OpenSans-Semibold-webfont.woff new file mode 100644 index 0000000..4612c47 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-Semibold-webfont.woff differ diff --git a/assets/fonts/opensans/OpenSans-SemiboldItalic-webfont.eot b/assets/fonts/opensans/OpenSans-SemiboldItalic-webfont.eot new file mode 100644 index 0000000..4704cc4 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-SemiboldItalic-webfont.eot differ diff --git a/assets/fonts/opensans/OpenSans-SemiboldItalic-webfont.svg b/assets/fonts/opensans/OpenSans-SemiboldItalic-webfont.svg new file mode 100644 index 0000000..9f7bbde --- /dev/null +++ b/assets/fonts/opensans/OpenSans-SemiboldItalic-webfont.svg @@ -0,0 +1,958 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Digitized data copyright 20102011 Google Corporation +Foundry : Ascender Corporation +Foundry URL : httpwwwascendercorpcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/opensans/OpenSans-SemiboldItalic-webfont.ttf b/assets/fonts/opensans/OpenSans-SemiboldItalic-webfont.ttf new file mode 100644 index 0000000..9859fe6 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-SemiboldItalic-webfont.ttf differ diff --git a/assets/fonts/opensans/OpenSans-SemiboldItalic-webfont.woff b/assets/fonts/opensans/OpenSans-SemiboldItalic-webfont.woff new file mode 100644 index 0000000..bac88c5 Binary files /dev/null and b/assets/fonts/opensans/OpenSans-SemiboldItalic-webfont.woff differ diff --git a/assets/fonts/opensans/demo.html b/assets/fonts/opensans/demo.html new file mode 100644 index 0000000..e96b3b1 --- /dev/null +++ b/assets/fonts/opensans/demo.html @@ -0,0 +1,78 @@ + + + + + + + Font Face Demo + + + + + +
+

Font-face Demo for the Open Sans Font

+ + + +

Open Sans Light - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+ + + +

Open Sans Light Italic - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+ + + +

Open Sans Regular - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+ + + +

Open Sans Italic - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+ + + +

Open Sans Semibold - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+ + + +

Open Sans Semibold Italic - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+ + + +

Open Sans Bold - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+ + + +

Open Sans Bold Italic - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+ + + +

Open Sans Extrabold - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+ + + +

Open Sans Extrabold Italic - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+ +
+ + diff --git a/assets/fonts/opensans/opensans.css b/assets/fonts/opensans/opensans.css new file mode 100644 index 0000000..5fb16ff --- /dev/null +++ b/assets/fonts/opensans/opensans.css @@ -0,0 +1,123 @@ +/* Generated by Font Squirrel (http://www.fontsquirrel.com) on November 15, 2011 05:31:35 AM America/New_York */ + + + +@font-face { + font-family: 'OpenSans'; + src: url('OpenSans-Light-webfont.eot'); + src: url('OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'), + url('OpenSans-Light-webfont.woff') format('woff'), + url('OpenSans-Light-webfont.ttf') format('truetype'), + url('OpenSans-Light-webfont.svg#OpenSansLight') format('svg'); + font-weight: 200; + font-style: normal; + +} + +@font-face { + font-family: 'OpenSans'; + src: url('OpenSans-LightItalic-webfont.eot'); + src: url('OpenSans-LightItalic-webfont.eot?#iefix') format('embedded-opentype'), + url('OpenSans-LightItalic-webfont.woff') format('woff'), + url('OpenSans-LightItalic-webfont.ttf') format('truetype'), + url('OpenSans-LightItalic-webfont.svg#OpenSansLightItalic') format('svg'); + font-weight: 200; + font-style: italic; + +} + +@font-face { + font-family: 'OpenSans'; + src: url('OpenSans-Regular-webfont.eot'); + src: url('OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'), + url('OpenSans-Regular-webfont.woff') format('woff'), + url('OpenSans-Regular-webfont.ttf') format('truetype'), + url('OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg'); + font-weight: normal; + font-style: normal; + +} + +@font-face { + font-family: 'OpenSans'; + src: url('OpenSans-Italic-webfont.eot'); + src: url('OpenSans-Italic-webfont.eot?#iefix') format('embedded-opentype'), + url('OpenSans-Italic-webfont.woff') format('woff'), + url('OpenSans-Italic-webfont.ttf') format('truetype'), + url('OpenSans-Italic-webfont.svg#OpenSansItalic') format('svg'); + font-weight: normal; + font-style: italic; + +} + +@font-face { + font-family: 'OpenSans'; + src: url('OpenSans-Semibold-webfont.eot'); + src: url('OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'), + url('OpenSans-Semibold-webfont.woff') format('woff'), + url('OpenSans-Semibold-webfont.ttf') format('truetype'), + url('OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg'); + font-weight: 600; + font-style: normal; + +} + +@font-face { + font-family: 'OpenSans'; + src: url('OpenSans-SemiboldItalic-webfont.eot'); + src: url('OpenSans-SemiboldItalic-webfont.eot?#iefix') format('embedded-opentype'), + url('OpenSans-SemiboldItalic-webfont.woff') format('woff'), + url('OpenSans-SemiboldItalic-webfont.ttf') format('truetype'), + url('OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg'); + font-weight: 600; + font-style: italic; + +} + +@font-face { + font-family: 'OpenSans'; + src: url('OpenSans-Bold-webfont.eot'); + src: url('OpenSans-Bold-webfont.eot?#iefix') format('embedded-opentype'), + url('OpenSans-Bold-webfont.woff') format('woff'), + url('OpenSans-Bold-webfont.ttf') format('truetype'), + url('OpenSans-Bold-webfont.svg#OpenSansBold') format('svg'); + font-weight: 700; + font-style: normal; + +} + +@font-face { + font-family: 'OpenSans'; + src: url('OpenSans-BoldItalic-webfont.eot'); + src: url('OpenSans-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'), + url('OpenSans-BoldItalic-webfont.woff') format('woff'), + url('OpenSans-BoldItalic-webfont.ttf') format('truetype'), + url('OpenSans-BoldItalic-webfont.svg#OpenSansBoldItalic') format('svg'); + font-weight: 700; + font-style: italic; + +} + +@font-face { + font-family: 'OpenSans'; + src: url('OpenSans-ExtraBold-webfont.eot'); + src: url('OpenSans-ExtraBold-webfont.eot?#iefix') format('embedded-opentype'), + url('OpenSans-ExtraBold-webfont.woff') format('woff'), + url('OpenSans-ExtraBold-webfont.ttf') format('truetype'), + url('OpenSans-ExtraBold-webfont.svg#OpenSansExtrabold') format('svg'); + font-weight: 900; + font-style: normal; + +} + +@font-face { + font-family: 'OpenSans'; + src: url('OpenSans-ExtraBoldItalic-webfont.eot'); + src: url('OpenSans-ExtraBoldItalic-webfont.eot?#iefix') format('embedded-opentype'), + url('OpenSans-ExtraBoldItalic-webfont.woff') format('woff'), + url('OpenSans-ExtraBoldItalic-webfont.ttf') format('truetype'), + url('OpenSans-ExtraBoldItalic-webfont.svg#OpenSansExtraboldItalic') format('svg'); + font-weight: 900; + font-style: italic; + +} diff --git a/assets/js/css-regions-polyfill.min.js b/assets/js/css-regions-polyfill.min.js new file mode 100644 index 0000000..21a167a --- /dev/null +++ b/assets/js/css-regions-polyfill.min.js @@ -0,0 +1,6 @@ +/*! CSS-REGIONS-POLYFILL - v3.0.0 - 2015-12-13 - https://github.com/FremyCompany/css-regions-polyfill - Copyright (c) 2015 François REMY; MIT-Licensed !*/ + +!function(){"use strict";var a={exports:{}},b=function(){var b={},c=function(a){return b[a]};return c.define=function(c){b[c]=a.exports,a.exports={}},c}();if(!function(a,b){a.console||(a.console={backlog:"",log:function(b){this.backlog+=b+"\n",a.debug&&alert(b)},dir:function(b){try{var c=function(a){return a.innerHTML?{tagName:a.tagName,className:a.className,id:a.id,innerHTML:a.innerHTML.substr(0,100)}:{nodeName:a.nodeName,nodeValue:a.nodeValue}},d=function(b){var d=[],e=JSON.stringify(b,function(b,e){if("object"==typeof e){if(!d.indexOf(e))return"__cycle__";if(e instanceof a.Node)return c(e);d.push(e)}return e});return e};this.log(d(b))}catch(e){this.log(b)}},warn:function(a){this.log(a)},error:function(a){this.log("ERROR:"),this.log(a)}},a.onerror||(a.onerror=function(){console.log([].slice.call(arguments,0).join("\n"))})),a.cssConsole={enabled:!!a.debug,warnEnabled:!0,log:function(a){this.enabled&&console.log(a)},dir:function(a){this.enabled&&console.dir(a)},warn:function(a){this.warnEnabled&&console.warn(a)},error:function(a){console.error(a)}}}(window,document),b.define("src/core/polyfill-dom-console.js"),a.exports=function(a,c){b("src/core/polyfill-dom-console.js");var d={cloneMouseEvent:function(a){var b=c.createEvent("MouseEvent");return b.initMouseEvent(a.type,a.canBubble||a.bubbles,a.cancelable,a.view,a.detail,a.screenX,a.screenY,a.clientX,a.clientY,a.ctrlKey,a.altKey,a.shiftKey,a.metaKey,a.button,a.relatedTarget),b},cloneKeyboardEvent:function(a){return d.cloneCustomEvent(a)},cloneCustomEvent:function(a){var b=c.createEvent("CustomEvent");b.initCustomEvent(a.type,a.canBubble||a.bubbles,a.cancelable,"detail"in a?a.detail:a);for(var d in a)try{if(a[d]!=b[d]&&a[d]!=a.target)try{b[d]=a[d]}catch(e){Object.defineProperty(b,d,{get:function(){return a[d]}})}}catch(e){}return b},cloneEvent:function(a){return a instanceof MouseEvent?d.cloneMouseEvent(a):a instanceof KeyboardEvent?d.cloneKeyboardEvent(a):d.cloneCustomEvent(a)},EventTarget:{implementsIn:function(a,b){b||"function"!=typeof a||(a=a.prototype),a.dispatchEvent=d.EventTarget.prototype.dispatchEvent,a.addEventListener=d.EventTarget.prototype.addEventListener,a.removeEventListener=d.EventTarget.prototype.removeEventListener},prototype:{}}};return d.EventTarget.prototype.addEventListener=function(a,b){this.eventListeners||(this.eventListeners=[]);var c=this.eventListeners[a]||(this.eventListeners[a]=[]);-1==c.indexOf(b)&&c.push(b)},d.EventTarget.prototype.removeEventListener=function(a,b){this.eventListeners||(this.eventListeners=[]);var c,d=this.eventListeners[a]||(this.eventListeners[a]=[]);-1!==(c=d.indexOf(b))&&d.splice(c,1)},d.EventTarget.prototype.dispatchEvent=function(a){function b(a,b,c){Object.defineProperty(b,c,{get:function(){var b=a[c];return"function"==typeof b?b.bind(a):b},set:function(b){a[c]=b}})}function d(a,c){try{Object.defineProperty(a,"target",{get:function(){return c}})}catch(e){}finally{if(a.target!==c){var f=Object.create(Object.getPrototypeOf(a));f=d(f,c);for(key in a)"target"!=key&&b(a,f,key);return f}return a}}if(this.eventListeners||(this.eventListeners=[]),"string"==typeof a){if(!this.eventListeners[a]||0==this.eventListeners[a].length)return}else if(!this.eventListeners[a.type]||0==this.eventListeners[a.type].length)return;var e=a;if("object"==typeof e)try{e=d(e,this)}catch(f){}else{if("string"!=typeof e)throw new Error("dispatchEvent expect an Event object or a string containing the event type");e=c.createEvent("CustomEvent"),e.initCustomEvent(a,!0,!1,this);try{e=d(e,this)}catch(f){}}for(var g=this.eventListeners[e.type]||(this.eventListeners[e.type]=[]),h=g.length;h--;)try{g[h](e)}catch(f){setImmediate(function(){throw f})}return e.isDefaultPrevented},d}(window,document),b.define("src/core/dom-events.js"),a.exports=function(a,b){function c(){var a=[];return a.toCSSString=d,a}function d(a){return a?this.map(function(a){return a.toCSSString()}).join(a):this.asCSSString||(this.asCSSString=this.map(function(a){return a.toCSSString()}).join("/**/").replace(/( +\/\*\*\/ *| * | *\/\*\*\/ +)/g," ").replace(/( +\/\*\*\/ *| * | *\/\*\*\/ +)/g," ").replace(/(\!|\:|\;|\@|\.|\,|\*|\=|\&|\\|\/|\<|\>|\[|\{|\(|\]|\}|\)|\|)\/\*\*\//g,"$1").replace(/\/\*\*\/(\!|\:|\;|\@|\.|\,|\*|\=|\&|\\|\/|\<|\>|\[|\{|\(|\]|\}|\)|\|)/g,"$1"))}function e(a,b,c){return a>=b&&c>=a}function f(a){return e(a,48,57)}function g(a){return f(a)||e(a,65,70)||e(a,97,102)}function h(a){return e(a,65,90)}function i(a){return e(a,97,122)}function j(a){return h(a)||i(a)}function k(a){return a>=128}function l(a){return j(a)||k(a)||95==a}function m(a){return l(a)||f(a)||45==a}function n(a){return e(a,0,8)||11==a||e(a,14,31)||127==a}function o(a){return 10==a}function p(a){return o(a)||9==a||32==a}function q(a){this.message=a}function r(a){for(var b=[],c=0;c=a)return String.fromCharCode(a);a-=Math.pow(2,21);var b=Math.floor(a/Math.pow(2,10))+55296,c=a%Math.pow(2,10);return String.fromCharCode(b)+String.fromCharCode(c)}function t(a){a=r(a);for(var b,d=-1,e=new c,h=0,i=0,j=0,k=function(){h+=1,j=i,i=0},q={line:h,column:i},t=function(b){return b>=a.length?-1:a[b]},u=function(a){if(void 0===a&&(a=1),a>3)throw"Spec Error: no more than three codepoints of lookahead.";return t(d+a)},D=function(a){return void 0===a&&(a=1),d+=a,b=t(d),o(b)?k():i+=a,!0},S=function(){return d-=1,o(b)?(h-=1,i=j):i-=1,q.line=h,q.column=i,!0},aa=function(a){return void 0===a&&(a=b),-1==a},ba=function(){},ca=function(){return console.log("Parse error at index "+d+", processing codepoint 0x"+b.toString(16)+"."),!0},da=function(){if(ea(),D(),p(b)){for(;p(u());)D();return new x}if(34==b)return ha();if(35==b){if(m(u())||ka(u(1),u(2))){var a=new W;return ma(u(1),u(2),u(3))&&(a.type="id"),a.value=qa(),a}return new R(b)}return 36==b?61==u()?(D(),new N):new R(b):39==b?ha():40==b?new I:41==b?new J:42==b?61==u()?(D(),new O):new R(b):43==b?pa()?(S(),fa()):new R(b):44==b?new C:45==b?pa()?(S(),fa()):45==u(1)&&62==u(2)?(D(2),new z):na()?(S(),ga()):new R(b):46==b?pa()?(S(),fa()):new R(b):58==b?new A:59==b?new B:60==b?33==u(1)&&45==u(2)&&45==u(3)?(D(3),new y):new R(b):64==b?ma(u(1),u(2),u(3))?new V(qa()):new R(b):91==b?new G:92==b?la()?(S(),ga()):(ca(),new R(b)):93==b?new H:94==b?61==u()?(D(),new M):new R(b):123==b?new E:124==b?61==u()?(D(),new L):124==u()?(D(),new P):new R(b):125==b?new F:126==b?61==u()?(D(),new K):new R(b):f(b)?(S(),fa()):l(b)?(S(),ga()):aa()?new Q:new R(b)},ea=function(){for(;47==u(1)&&42==u(2);)for(D(2);;){if(D(),42==b&&47==u()){D();break}if(aa())return void ca()}},fa=function(){var a=ra();if(ma(u(1),u(2),u(3))){var b=new _;return b.value=a.value,b.repr=a.repr,b.type=a.type,b.unit=qa(),b}if(37==u()){D();var b=new $;return b.value=a.value,b.repr=a.repr,b}var b=new Z;return b.value=a.value,b.repr=a.repr,b.type=a.type,b},ga=function(){var a=qa();if("url"==a.toLowerCase()&&40==u()){for(D();p(u(1))&&p(u(2));)D();return 34==u()||39==u()?new U(a):!p(u())||34!=u(2)&&39!=u(2)?ia():new U(a)}return 40==u()?(D(),new U(a)):new T(a)},ha=function(a){void 0===a&&(a=b);for(var c="";D();){if(b==a||aa())return new X(c);if(o(b))return ca(),S(),new v;92==b?aa(u())?ba():o(u())?D():c+=s(ja()):c+=s(b)}},ia=function(){for(var a=new Y("");p(u());)D();if(aa(u()))return a;for(;D();){if(41==b||aa())return a;if(p(b)){for(;p(u());)D();return 41==u()||aa(u())?(D(),a):(ta(),new w)}if(34==b||39==b||40==b||n(b))return ca(),ta(),new w;if(92==b){if(!la())return ca(),ta(),new w;a.value+=s(ja())}else a.value+=s(b)}},ja=function(){if(D(),g(b)){for(var a=[b],c=0;5>c&&g(u());c++)D(),a.push(b);p(u())&&D();var d=parseInt(a.map(function(a){return String.fromCharCode(a)}).join(""),16);return d>Ga&&(d=65533),d}return aa()?65533:b},ka=function(a,b){return 92!=a?!1:o(b)?!1:!0},la=function(){return ka(b,u())},ma=function(a,b,c){return 45==a?l(b)||45==b||ka(b,c):l(a)?!0:92==a?ka(a,b):!1},na=function(){return ma(b,u(1),u(2))},oa=function(a,b,c){return 43==a||45==a?f(b)?!0:46==b&&f(c)?!0:!1:46==a?f(b)?!0:!1:f(a)?!0:!1},pa=function(){return oa(b,u(1),u(2))},qa=function(){for(var a="";D();)if(m(b))a+=s(b);else{if(!la())return S(),a;a+=s(ja())}},ra=function(){var a="",c="integer";for((43==u()||45==u())&&(D(),a+=s(b));f(u());)D(),a+=s(b);if(46==u(1)&&f(u(2)))for(D(),a+=s(b),D(),a+=s(b),c="number";f(u());)D(),a+=s(b);var d=u(1),e=u(2),g=u(3);if(69!=d&&101!=d||!f(e)){if((69==d||101==d)&&(43==e||45==e)&&f(g))for(D(),a+=s(b),D(),a+=s(b),D(),a+=s(b),c="number";f(u());)D(),a+=s(b)}else for(D(),a+=s(b),D(),a+=s(b),c="number";f(u());)D(),a+=s(b);var h=sa(a);return{type:c,value:h,repr:a}},sa=function(a){return+a},ta=function(){for(;D();){if(45==b||aa())return;la()?(ja(),ba()):ba()}},ua=0;!aa(u());)if(e.push(da()),ua++>2*a.length)throw new Error("The CSS Tokenizer is infinite-looping");return e}function u(){return this}function v(){return this}function w(){return this}function x(){return this}function y(){return this}function z(){return this}function A(){return this}function B(){return this}function C(){return this}function D(){return this}function E(){return this.value="{",this.mirror="}",this}function F(){return this.value="}",this.mirror="{",this}function G(){return this.value="[",this.mirror="]",this}function H(){return this.value="]",this.mirror="[",this}function I(){return this.value="(",this.mirror=")",this}function J(){return this.value=")",this.mirror="(",this}function K(){return this}function L(){return this}function M(){return this}function N(){return this}function O(){return this}function P(){return this}function Q(){return this}function R(a){return this.value=s(a),this}function S(){return this}function T(a){this.value=a}function U(a){this.value=a,this.mirror=")"}function V(a){this.value=a}function W(a){this.value=a,this.type="unrestricted"}function X(a){this.value=a}function Y(a){this.value=a}function Z(){this.value=null,this.type="integer",this.repr=""}function $(){this.value=null,this.repr=""}function _(){this.value=null,this.type="integer",this.repr="",this.unit=""}function aa(a){a=""+a;for(var b="",c=a.charCodeAt(0),d=0;d=128||45==f||95==f||e(f,48,57)||e(f,65,90)||e(f,97,122)?a[d]:"\\"+a[d]}return b}function ba(a){a=""+a;for(var b="",c=(a.charCodeAt(0),0);c=128||45==d||95==d||e(d,48,57)||e(d,65,90)||e(d,97,122)?a[c]:"\\"+d.toString(16)+" "}return b}function ca(a){a=""+a;for(var b="",c=0;c=0;d--)if(!(b.value[d]instanceof x)){if(!(b.value[d]instanceof T&&b.value[d].ASCIIMatch("important"))){if(c&&b.value[d]instanceof R&&"!"==b.value[d].value){b.value.splice(d,b.value.length),b.important=!0;break}break}c=!0}return b}function la(a){return a.consume(),a.token instanceof E||a.token instanceof G||a.token instanceof I?ma(a):a.token instanceof U?na(a):a.token}function ma(a){for(var b=a.token.mirror,c=new Ca(a.token.value);a.consume();){if(a.token instanceof Q||a.token instanceof D&&a.token.value==b)return c;a.reconsume(),c.value.push(la(a))}}function na(a){for(var b=new Da(a.token.value);a.consume();){if(a.token instanceof Q||a.token instanceof J)return b;a.reconsume(),b.value.push(la(a))}}function oa(a){if("string"==typeof a)return new da(t(a));if(a instanceof da)return a;if(void 0!==a.length)return new da(a);throw SyntaxError(a)}function pa(a){a=oa(a);var b=new ya;return b.value=ga(a,"top-level"),b}function qa(a){return a=oa(a),ga(a)}function ra(a){for(a=oa(a);a.next()instanceof x;)a.consume();if(a.next()instanceof Q)throw SyntaxError();if(a.next()instanceof V)var b=ha(a);else{var b=ia(a);if(!b)throw SyntaxError()}for(;a.next()instanceof x;)a.consume();if(a.next()instanceof Q)return b;throw SyntaxError()}function sa(a){for(a=oa(a);a.next()instanceof x;)a.consume();if(!(a.next()instanceof T))throw SyntaxError();var b=ka(a);if(!b)throw new SyntaxError;return b}function ta(a){return a=oa(a),ja(a)}function ua(a){for(a=oa(a);a.next()instanceof x;)a.consume();if(a.next()instanceof Q)throw SyntaxError();var b=la(a);if(!b)throw SyntaxError();for(;a.next()instanceof x;)a.consume();if(!(a.next()instanceof Q))throw new SyntaxError;return b}function va(a){a=oa(a);for(var b=new c;;){var d=la(a);if(d instanceof Q)return b;b.push(d)}}function wa(a){a=oa(a);for(var b=new c;;)for(var d=new c;;){var e=la(a);if(e instanceof Q)return b.push(d),b;if(e instanceof C){b.push(d);break}d.push(e)}}function xa(){return this}function ya(){return this.value=new c,this}function za(a){return this.name=a,this.prelude=new c,this.value=null,this}function Aa(){return this.prelude=new c,this.selector=this.prelude,this.value=null,this}function Ba(a){return this.name=a,this.value=new c,this.important=!1,this}function Ca(a){return this.name=a,this.value=new c,this}function Da(a){return this.name=a,this.value=new c,this}function Ea(){return this.value=new c,this}var Fa={tokenize:function(a){},parse:function(a){}};Fa.TokenList=c,Fa.TokenListToCSSString=d;var Ga=1114111;return q.prototype=new Error,q.prototype.name="InvalidCharacterError",u.prototype.toJSON=function(){return{token:this.tokenType}},u.prototype.toString=function(){return this.tokenType},u.prototype.toCSSString=function(){return""+this},v.prototype=new u,v.prototype.tokenType="BADSTRING",v.prototype.toCSSString=function(){return"'"},w.prototype=new u,w.prototype.tokenType="BADURL",w.prototype.toCSSString=function(){return"url("},x.prototype=new u,x.prototype.tokenType="WHITESPACE",x.prototype.toString=function(){return"WS"},x.prototype.toCSSString=function(){return" "},y.prototype=new u,y.prototype.tokenType="CDO",y.prototype.toCSSString=function(){return""},A.prototype=new u,A.prototype.tokenType=":",B.prototype=new u,B.prototype.tokenType=";",C.prototype=new u,C.prototype.tokenType=",",C.prototype.value=";",D.prototype=new u,E.prototype=new D,E.prototype.tokenType="{",F.prototype=new D,F.prototype.tokenType="}",G.prototype=new D,G.prototype.tokenType="[",H.prototype=new D,H.prototype.tokenType="]",I.prototype=new D,I.prototype.tokenType="(",J.prototype=new D,J.prototype.tokenType=")",K.prototype=new u,K.prototype.tokenType="~=",L.prototype=new u,L.prototype.tokenType="|=",M.prototype=new u,M.prototype.tokenType="^=",N.prototype=new u,N.prototype.tokenType="$=",O.prototype=new u,O.prototype.tokenType="*=",P.prototype=new u,P.prototype.tokenType="||",Q.prototype=new u,Q.prototype.tokenType="EOF",Q.prototype.toCSSString=function(){return""},R.prototype=new u,R.prototype.tokenType="DELIM",R.prototype.toString=function(){return"DELIM("+this.value+")"},R.prototype.toCSSString=function(){return"\\"==this.value?"\\\n":this.value},S.prototype=new u,S.prototype.ASCIIMatch=function(a){return this.value.toLowerCase()==a.toLowerCase()},T.prototype=new S,T.prototype.tokenType="IDENT",T.prototype.toString=function(){return"IDENT("+this.value+")"},T.prototype.toCSSString=function(){return aa(this.value)},U.prototype=new S,U.prototype.tokenType="FUNCTION",U.prototype.toString=function(){return"FUNCTION("+this.value+")"},U.prototype.toCSSString=function(){return aa(this.value)+"("},V.prototype=new S,V.prototype.tokenType="AT-KEYWORD",V.prototype.toString=function(){return"AT("+this.value+")"},V.prototype.toCSSString=function(){return"@"+aa(this.value)},W.prototype=new S,W.prototype.tokenType="HASH",W.prototype.toString=function(){return"HASH("+this.value+")"},W.prototype.toCSSString=function(){var a="id"==this.type?aa:ba;return"#"+a(this.value)},X.prototype=new S,X.prototype.tokenType="STRING",X.prototype.toString=function(){return'"'+ca(this.value)+'"'},Y.prototype=new S,Y.prototype.tokenType="URL",Y.prototype.toString=function(){return"URL("+this.value+")"},Y.prototype.toCSSString=function(){return'url("'+ca(this.value)+'")'},Z.prototype=new u,Z.prototype.tokenType="NUMBER",Z.prototype.toString=function(){return"integer"==this.type?"INT("+this.value+")":"NUMBER("+this.value+")"},Z.prototype.toJSON=function(){var a=this.constructor.prototype.constructor.prototype.toJSON.call(this);return a.value=this.value,a.type=this.type,a.repr=this.repr,a},Z.prototype.toCSSString=function(){return this.repr},$.prototype=new u,$.prototype.tokenType="PERCENTAGE",$.prototype.toString=function(){return"PERCENTAGE("+this.value+")"},$.prototype.toCSSString=function(){return this.repr+"%"},_.prototype=new u,_.prototype.tokenType="DIMENSION",_.prototype.toString=function(){return"DIM("+this.value+","+this.unit+")"},_.prototype.toCSSString=function(){var a=this.repr,b=aa(this.unit);return"e"!=b[0].toLowerCase()||"-"!=b[1]&&!e(b.charCodeAt(1),48,57)||(b="\\65 "+b.slice(1,b.length)),a+b},Fa.tokenize=t,Fa.IdentToken=T,Fa.IdentifierToken=T,Fa.FunctionToken=U,Fa.AtKeywordToken=V,Fa.HashToken=W,Fa.StringToken=X,Fa.BadStringToken=v,Fa.URLToken=Y,Fa.BadURLToken=w,Fa.DelimToken=R,Fa.NumberToken=Z,Fa.PercentageToken=$,Fa.DimensionToken=_,Fa.IncludeMatchToken=K,Fa.DashMatchToken=L,Fa.PrefixMatchToken=M,Fa.SuffixMatchToken=N,Fa.SubstringMatchToken=O,Fa.ColumnToken=P,Fa.WhitespaceToken=x,Fa.CDOToken=y,Fa.CDCToken=z,Fa.ColonToken=A,Fa.SemicolonToken=B,Fa.CommaToken=C,Fa.OpenParenToken=I,Fa.CloseParenToken=J,Fa.OpenSquareToken=G,Fa.CloseSquareToken=H,Fa.OpenCurlyToken=E,Fa.CloseCurlyToken=F,Fa.EOFToken=Q,Fa.CSSParserToken=u,Fa.GroupingToken=D,da.prototype.tokenAt=function(a){return a0||b.length>0)&&a.push(b),a},Ea.prototype=new xa,Ea.prototype.type="FUNCTION-ARG",Ea.prototype.toCSSString=function(){return this.value.toCSSString()+", "},Fa.CSSParserRule=xa,Fa.Stylesheet=ya,Fa.AtRule=za,Fa.StyleRule=Aa,Fa.Declaration=Ba,Fa.SimpleBlock=Ca,Fa.Func=Da,Fa.parseAStylesheet=pa,Fa.parseAListOfRules=qa,Fa.parseARule=ra,Fa.parseADeclaration=sa,Fa.parseAListOfDeclarations=ta,Fa.parseAComponentValue=ua,Fa.parseAListOfComponentValues=va,Fa.parseACommaSeparatedListOfComponentValues=wa,Fa.parse=pa,Fa.parseCSSValue=va,Fa}(),b.define("src/core/css-syntax.js"),void function(){for(var a=["webkit","moz","ms","o"],b=0;b=0&&a255&&(numberOfIds=255),c>255&&(c=255),e>255&&(e=255),256*(256*b+c)+e},findAllMatchingRules:function(a){return this.findAllMatchingRulesWithPseudo(a)},findAllMatchingRulesWithPseudo:function(a,b){b=b?(""+b).toLowerCase():b;for(var c=[],e=function(f){try{for(var h=f.length;h--;){var i=f[h];if(!i.disabled)if(i instanceof d.StyleRule)for(var j=i.subRules||g.splitRule(i),k=j.length;k--;){var l=j[k].selector.toCSSString().replace(/ *(\/\*\*\/| ) */g," ").trim();if(b){var m=l.toLowerCase(),n=l.length-b.length-1;if(0>=n)continue;if(m.lastIndexOf("::"+b)==n-1)l=l.substr(0,n-1);else{if(m.lastIndexOf(":"+b)!=n)continue;l=l.substr(0,n)}0==l.trim().length?l="*":" "==l[l.length-1]?l+="*":"+"==l[l.length-1]?l+="*":">"==l[l.length-1]?l+="*":"~"==l[l.length-1]&&(l+="*")}var o=!1;try{if(a.matches)o=a.matches(l);else if(a.matchesSelector)o=a.matchesSelector(l);else if(a.oMatchesSelector)o=a.oMatchesSelector(l);else if(a.msMatchesSelector)o=a.msMatchesSelector(l);else if(a.mozMatchesSelector)o=a.mozMatchesSelector(l);else{if(!a.webkitMatchesSelector)throw new Error("no element.matches?");o=a.webkitMatchesSelector(l)}}catch(p){setImmediate(function(){throw p})}o&&c.push(j[k])}else i instanceof d.AtRule&&"media"==i.name&&e(i.toStylesheet().value)}}catch(p){setImmediate(function(){throw p})}},f=g.stylesheets.length;f--;){var h=g.stylesheets[f];e(h)}return c},allCSSProperties:null,getAllCSSProperties:function(){if(this.allCSSProperties)return this.allCSSProperties;for(var a=getComputedStyle(c.documentElement),b=new Array(a.length),d=a.length;d--;)b[d]=a[d];return-1==b.indexOf("content")&&b.push("content"),-1==b.indexOf("counter-reset")&&(b.push("counter-reset"),b.push("counter-increment"),g.computationUnsafeProperties["counter-reset"]=!0),this.allCSSProperties=b},computationUnsafeProperties:{bottom:!0,direction:!0,display:!0,"font-size":!0,height:!0,left:!0,"line-height":!0,"margin-left":!0,"margin-right":!0,"margin-bottom":!0,"margin-top":!0,"max-height":!0,"max-width":!0,"min-height":!0,"min-width":!0,"padding-left":!0,"padding-right":!0,"padding-bottom":!0,"padding-top":!0,right:!0,"text-align":!0,"text-align-last":!0,top:!0,width:!0,__proto__:null},inheritingProperties:{"border-collapse":!0,"border-spacing":!0,"caption-side":!0,color:!0,cursor:!0,direction:!0,"empty-cells":!0,"font-family":!0,"font-size":!0,"font-style":!0,"font-variant":!0,"font-weight":!0,font:!0,"letter-spacing":!0,"line-height":!0,"list-style-image":!0,"list-style-position":!0,"list-style-type":!0,"list-style":!0,orphans:!0,quotes:!0,"text-align":!0,"text-indent":!0,"text-transform":!0,visibility:!0,"white-space":!0,widows:!0,"word-break":!0,"word-spacing":!0,"word-wrap":!0,__proto__:null},defaultStylesForTag:Object.create?Object.create(null):{},getDefaultStyleForTag:function(a){ +var b=this.defaultStylesForTag[a];if(b)return b;var d=c.createElement(a),e=this.defaultStylesForTag[a]=getComputedStyle(d);return e.display?e:(c.head.insertBefore(d,c.head.firstChild),e)},getSpecifiedStyle:function(b,e,f){var h;if((h=b.getAttribute("data-css-regions-fragment-of"))&&(h=c.querySelector('[data-css-regions-fragment-source="'+h+'"]')))return g.getSpecifiedStyle(h,e);if(b.currentStyle&&!a.opera){var i=b.myStyle[e]||b.currentStyle[e]||"";return d.parseAListOfComponentValues(i)}try{if(i=b.style.getPropertyValue(e)||b.myStyle[e])return d.parseAListOfComponentValues(i)}catch(j){}var k=!1,l=0,i=new d.TokenList,m=f||(e in g.monitoredProperties?b.myMatchedRules||[]:g.findAllMatchingRules(b)),n=function(a){for(var b=a.length;b--;)if(!a[b].disabled)if(a[b]instanceof d.StyleRule){for(var c=a[b].getDeclarations(),f=c.length-1;f>=0;f--)if("DECLARATION"==c[f].type&&c[f].name==e){var h=g.computeSelectorPriorityOf(a[b].selector);k?c[f].important&&h>=l&&(l=h,i=c[f].value):c[f].important?(k=!0,l=h,i=c[f].value):h>=l&&(l=h,i=c[f].value)}}else a[b]instanceof d.AtRule&&"media"==a[b].name&&n(a[b].toStylesheet())};return n(m),i||null},stylesheets:[],loadStyleSheet:function(a,b){var c=d.parse(a).value;"undefined"!=typeof b?g.stylesheets[b]=c:b=g.stylesheets.push(c),g.startMonitoringStylesheet(c)},loadStyleSheetTag:function(a,b){if(!a.hasAttribute("data-css-polyfilled")){if("LINK"==a.tagName)try{g.stylesheets[b]=new d.TokenList;var c=new XMLHttpRequest;c.href=a.href,c.open("GET",a.href,!0),c.ruleIndex=b,c.onreadystatechange=function(){4==this.readyState&&(200==this.status||0==this.status?g.loadStyleSheet(this.responseText,this.ruleIndex):cssConsole.log("css-cascade polyfill failled to load: "+this.href))},c.send()}catch(e){cssConsole.log("css-cascade polyfill failled to load: "+a.href)}else g.loadStyleSheet(a.textContent,b);a.setAttribute("data-css-polyfilled",!0)}},selectorForStylesheets:"style:not([data-no-css-polyfill]):not([data-css-polyfilled]), link[rel=stylesheet]:not([data-no-css-polyfill]):not([data-css-polyfilled])",loadAllStyleSheets:function(){var a=c.head||c.documentElement,b=a.querySelectorAll(g.selectorForStylesheets),d=this.stylesheets.length;this.stylesheets.length+=b.length;for(var e=b.length;e--;){var f=b[e];g.loadStyleSheetTag(f,d+e)}},monitoredProperties:Object.create?Object.create(null):{},monitoredPropertiesHandler:{onupdate:function(a,b){for(var c=g.monitoredProperties,d=b.getDeclarations(),e=d.length-1;e>=0;e--)if("DECLARATION"==d[e].type&&d[e].name in c){for(var f=c[d[e].name],h=f.length;h--;)f[h].onupdate(a,b);break}}},startMonitoringProperties:function(a,b){for(var c=a.length;c--;){var d=a[c],e=g.monitoredProperties[d]||(g.monitoredProperties[d]=[]);e.push(b)}for(var f=0;f=0;f--)if("DECLARATION"==e[f].type&&e[f].name in g.monitoredProperties){g.startMonitoringRule(b[c]);break}}else b[c]instanceof d.AtRule&&"media"==b[c].name&&a.matchMedia&&g.startMonitoringMedia(b[c])},startMonitoringMedia:function(b){try{var c=a.matchMedia(b.prelude.toCSSString()),d=b.toStylesheet().value;g.updateMedia(d,!c.matches,!1),c.addListener(function(a){g.updateMedia(d,!a.matches,!0)}),g.startMonitoringStylesheet(d)}catch(e){setImmediate(function(){throw e})}},updateMedia:function(a,b,d){for(var e=a.length;e--;){a[e].disabled=b;var f=a[e].subRules;if(f)for(var h=f.length;h--;)f[h].disabled=b}if(d)for(var e=a.length;e--;)for(var i=c.querySelectorAll(a[e].selector.toCSSString()),h=i.length;h--;)g.monitoredPropertiesHandler.onupdate(i[h],a[e])},splitRule:function(a){var b=[],c=new d.StyleRule;c.disabled=a.disabled;for(var e=0;e0?c.toCSSString():""}},set:function(b){this.clip=void 0===this.clip?"":this.clip;try{if(!this.parentElement)throw new Error("Please use the anHTMLElement.myStyle property to set polyfilled properties")}catch(c){return void setImmediate(function(){throw c})}this.parentElement.getAttribute("data-style-"+a)!=b&&this.parentElement.setAttribute("data-style-"+a,b)}},e=[];try{e.push(Object.getPrototypeOf(c.documentElement.style)||CSSStyleDeclaration)}catch(f){}for(var h=e.length;h--;){var i=e[h];Object.defineProperty(i,a,b),Object.defineProperty(i,g.toCamelCase(a),b)}g.startMonitoringRule(d.parse('[style*="'+a+'"]{'+a+":attr(style)}").value[0]),g.startMonitoringRule(d.parse("[data-style-"+a+"]{"+a+":attr(style)}").value[0]),g.getAllCSSProperties().push(a),g.computationUnsafeProperties[a]=!0}};return e.EventTarget.implementsIn(g),Object.defineProperty(Element.prototype,"myStyle",{get:function(){var a=this.style;return a.parentElement||(a.parentElement=this),a}}),"no_auto_stylesheet_detection"in a||(g.loadAllStyleSheets(),c.addEventListener("DOMContentLoaded",function(){g.loadAllStyleSheets(),f(g.selectorForStylesheets,{onadded:function(a){g.loadStyleSheetTag(a),g.dispatchEvent("stylesheetadded")}})})),g}(window,document),b.define("src/core/css-cascade.js"),a.exports=function(a,c){var d=(b("src/core/css-syntax.js"),b("src/core/css-cascade.js")),e={isReplacedElement:function(a){if(!(a instanceof Element))return!1;var b=/^(SVG|MATH|IMG|VIDEO|PICTURE|OBJECT|EMBED|IFRAME|TEXTAREA|BUTTON|INPUT)$/;return b.test(a.tagName)},isScrollable:function(a,b){return a instanceof Element?("undefined"==typeof b&&(b=getComputedStyle(a).overflow),"visible"!==b&&"hidden"!==b):!1},isSingleLineOfTextComponent:function(a,b,c,d,e){return a instanceof Element?("undefined"==typeof b&&(b=getComputedStyle(a)),"undefined"==typeof c&&(c=b.display),"undefined"==typeof d&&(d=b.position),"undefined"==typeof e&&(e=this.isReplacedElement(a)),!("inline-block"!==c&&"inline-table"!==c&&"inline-flex"!==c&&"inline-grid"!==c||"static"!==d&&"relative"!==d)):!0},hasAnyInlineFlow:function(a){function b(a){return a instanceof Element?!e.isOutOfFlowElement(a)&&e.isSingleLineOfTextComponent(a):!/^\s*$/.test(a.nodeValue)}for(var c=a.firstChild;c;){if(b(c))return!0;c=c.nextSibling}return!1},isLineBreakingElement:function(a,b,c,d){return a instanceof Element?("undefined"==typeof b&&(b=getComputedStyle(a)),"undefined"==typeof c&&(c=b.display),"undefined"==typeof d&&(d=b.position),"block"===c&&!this.isOutOfFlowElement(a,b,c,d)||"BR"===a.tagName&&"none"!==c):!1},isLinePreBreakingElement:function(a,b,c,f){if(!(a instanceof Element))return!1;var g=d.getSpecifiedStyle(a,"break-before").toCSSString();return"region"==g||"all"==g||e.isLineBreakingElement(a,b,c,f)},isLinePostBreakingElement:function(a,b,c,f){if(!(a instanceof Element))return!1;var g=d.getSpecifiedStyle(a,"break-after").toCSSString();return"region"==g||"all"==g||e.isLineBreakingElement(a,b,c,f)},isOutOfFlowElement:function(a,b,c,d,e){return a instanceof Element?("undefined"==typeof b&&(b=getComputedStyle(a)),"undefined"==typeof c&&(c=b.display),"undefined"==typeof d&&(d=b.position),"undefined"==typeof e&&(e=b["float"]||b.styleFloat||b.cssFloat),"absolute"===d||"fixed"===d||"none"!==e||"none"===c):!1},areInSameSingleLine:function(a,b){function c(a,b,c){return{top:a.top+c,bottom:a.bottom+c,left:a.left+b,right:a.right+b}}if(a.nextSibling!=b){if(b.nextSibling!=a)throw"I gave up!";var d=a;a=b,b=d}if(this.isLinePostBreakingElement(a))return!1;if(this.isLinePreBreakingElement(b))return!1;if(this.isOutOfFlowElement(a))return!0;if(!this.isSingleLineOfTextComponent(a))return!1;var e=Node.getBoundingClientRect(a),f=Node.getBoundingClientRect(b);if(a instanceof Element){var g=getComputedStyle(a);e=c(e,parseFloat(g.marginLeft),parseFloat(g.marginTop)),"relative"==g.position&&(e=c(e,parseFloat(g.left),parseFloat(g.top)))}if(b instanceof Element){var h=getComputedStyle(b);f=c(f,parseFloat(h.marginLeft),parseFloat(h.marginTop)),"relative"==h.position&&(f=c(f,parseFloat(h.left),parseFloat(h.top)))}var i="rtl"==getComputedStyle(a.parentNode).direction?f:e,j="rtl"==getComputedStyle(a.parentNode).direction?e:f;return i.right<=j.left},isHiddenOverflowing:function(a,b){return a instanceof Element?("undefined"==typeof b&&(b=getComputedStyle(a).display),"hidden"==b&&a.offsetHeight!=a.scrollHeight):!1},hasBigRadius:function(a,b){if(!(a instanceof Element))return!1;if("undefined"==typeof b&&(b=getComputedStyle(a)),"borderTopLeftRadius"in b){var c=parseFloat(b.borderTopLeftRadius),d=parseFloat(b.borderTopRightRadius),e=parseFloat(b.borderBottomLeftRadius),f=parseFloat(b.borderBottomRightRadius);if(15>c&&15>d&&15>e&&15>f)return!1;var g=parseFloat(b.borderTopWidth),h=parseFloat(b.borderBottomWidth),i=parseFloat(b.borderLeftWidth),j=parseFloat(b.borderRightWidth);if(c>g)return!0;if(c>i)return!0;if(d>g)return!0;if(d>j)return!0;if(e>h)return!0;if(e>i)return!0;if(f>h)return!0;if(f>j)return!0}return!1},isBreakInsideAvoid:function(a,b){var c=d.getSpecifiedStyle(a,"break-inside",void 0,!0).toCSSString().trim().toLowerCase();return"avoid"==c||"avoid-region"==c},isMonolithic:function(a){if(!(a instanceof Element))return!1;var b=getComputedStyle(a),c=b.overflow,d=b.display,e=this.isReplacedElement(a),f=this.isScrollable(a,c),g=this.isSingleLineOfTextComponent(a,b,d,void 0,e),h=this.isHiddenOverflowing(a,c),i=this.hasBigRadius(a,b),j=this.isBreakInsideAvoid(a,b);return e||f||g||h||i||j},isPossibleBreakPoint:function(a,b){if(!(a instanceof Range))return!1;if(!a.collapsed)return!1;for(var c=a.startContainer;c&&c!==b;){if(e.isMonolithic(c))return!1;c=c.parentNode}for(var c=a.startContainer,d=a.startContainer.childNodes[a.startOffset];c&&d!==b;){if(d&&d.previousSibling&&this.areInSameSingleLine(d,d.previousSibling))return!1;d=c,c=c.parentNode}if(0==a.startOffset){var f=a.startContainer.childNodes[0];if(!f)return!1;var g=Node.getBoundingClientRect(f),h=a.startContainer.getBoundingClientRect();if(g.top==h.top)return!1}return!0}};return e}(window,document),b.define("src/core/css-break.js"),!document.caretRangeFromPoint)if(document.caretPositionFromPoint)document.caretRangeFromPoint=function(a,b){var c=document.createRange(),d=document.caretPositionFromPoint(a,b);return d.offsetNode&&(c.setStart(d.offsetNode,d.offset),c.setEnd(d.offsetNode,d.offset)),c};else if((document.body||document.createElement("body")).createTextRange){var c={convertToDOMRange:function(a,b){var c=function(a,c,d){var e=b.createElement("a"),f=c.duplicate();f.collapse(d);var g=f.parentElement();do g.insertBefore(e,e.previousSibling),f.moveToElementText(e);while(f.compareEndPoints(d?"StartToStart":"StartToEnd",c)>0&&e.previousSibling);-1==f.compareEndPoints(d?"StartToStart":"StartToEnd",c)&&e.nextSibling?(f.setEndPoint(d?"EndToStart":"EndToEnd",c),a[d?"setStart":"setEnd"](e.nextSibling,f.text.length)):a[d?"setStartBefore":"setEndBefore"](e),e.parentNode.removeChild(e)};b||(b=window.document);var d=b.createRange();return c(d,a,!0),c(d,a,!1),d},convertFromDOMRange:function(a){var b=function(a,b,c){var d=b[c?"startContainer":"endContainer"],e=b[c?"startOffset":"endOffset"],f=0,g=DOMUtils.isDataNode(d)?d:d.childNodes[e],h=DOMUtils.isDataNode(d)?d.parentNode:d;(3==d.nodeType||4==d.nodeType)&&(f=e);var i=b._document.createElement("a");h.insertBefore(i,g);var j=b._document.body.createTextRange();j.moveToElementText(i),i.parentNode.removeChild(i),a.setEndPoint(c?"StartToStart":"EndToStart",j),a[c?"moveStart":"moveEnd"]("character",f)},c=a._document.body.createTextRange();return b(c,a,!0),b(c,a,!1),c}};document.caretRangeFromPoint=function(a,b){for(var d=40,e=document.body.createTextRange(),f=d;f;f-=4){var g=a;try{return e.moveToPoint(g,f+b-d),c.convertToDOMRange(e)}catch(h){}}try{var i=document.elementFromPoint(a-1,b-1),e=document.createRange();return e.setStartAfter(i),e}catch(h){return null}}}Range.prototype.myMoveOneCharLeft=function(){var a=this;if(a.endOffset>0){var b=a.endContainer.childNodes[a.endOffset-1];b&&b.lastChild?a.setEndAfter(b.lastChild):b&&b.nodeType==b.TEXT_NODE?a.setEnd(b,b.nodeValue.length):a.setEnd(a.endContainer,a.endOffset-1)}else a.setEndBefore(a.endContainer)},Range.prototype.myMoveOneCharRight=function(){var a=this,b=a.startContainer.nodeType==a.startContainer.TEXT_NODE?a.startContainer.nodeValue.length:a.startContainer.childNodes.length;if(a.startOffsetf&&/^\w$/.test(g);)g=e[f++];a.setStart(a.startContainer,f)}else a.setStart(a.startContainer,a.startOffset+1)}else a.setStartAfter(a.endContainer);a.setEnd(a.startContainer,a.startOffset)},Range.prototype.myMoveEndOneCharLeft=function(){var a=this;if(a.endOffset>0){var b=a.endContainer.childNodes[a.endOffset-1];b&&b.lastChild?a.setEndAfter(b.lastChild):b&&b.nodeType==b.TEXT_NODE?a.setEnd(b,b.nodeValue.length):a.setEnd(a.endContainer,a.endOffset-1)}else a.setEndBefore(a.endContainer)},Range.prototype.myMoveEndOneCharRight=function(){var a=this,b=a.endContainer.nodeType==a.endContainer.TEXT_NODE?a.endContainer.nodeValue.length:a.endContainer.childNodes.length;if(a.endOffset0||navigator.userAgent.indexOf("Trident")>0)&&-1==f.listOfTextNodesForIE.indexOf(a)&&f.listOfTextNodesForIE.push(a));break;case 1:if(a.hasAttribute("data-css-regions-cloning")&&(a.removeAttribute("data-css-regions-cloning"),a.setAttribute("data-css-regions-cloned",!0),a.currentStyle&&a.currentStyle.display.toString()),"undefined"==typeof c)return;case 9:case 11:for(d=a.firstChild;d;)e=d.nextSibling,b(d),d=e}}a.forEach(b)},unhideTextNodesFromFragmentSource:function(a){function b(a){var c,d;switch(a.nodeType){case 3:"cssRegionsSavedNodeValue"in a&&(a.nodeValue=a.cssRegionsSavedNodeValue,delete a.cssRegionsSavedNodeValue);break;case 1:if("undefined"==typeof k)return;case 9:case 11:for(c=a.firstChild;c;)d=c.nextSibling,b(c),c=d}}a.forEach(b)},unmarkNodesAsFragmentSource:function(a){function b(a,c){var d,e;switch(a.nodeType){case 3:"cssRegionsSavedNodeValue"in a&&(a.nodeValue=a.cssRegionsSavedNodeValue,delete a.cssRegionsSavedNodeValue);break;case 1:a.removeAttribute("data-css-regions-cloned"),a.removeAttribute("data-css-regions-fragment-source"),a.currentStyle&&a.currentStyle.display.toString(),"OL"==a.tagName&&f.unexpandListValues(a),"undefined"!=typeof c&&"LI"==a.tagName&&f.unexpandListValues(a.parentNode);case 9:case 11:for(d=a.firstChild;d;)e=d.nextSibling,b(d),d=e}}a.forEach(b)},transformFragmentSourceToFragments:function(a){function b(a){var c,d;switch(a.nodeType){case 1:var e=a.getAttribute("data-css-regions-fragment-source");a.removeAttribute("data-css-regions-fragment-source"),a.removeAttribute("data-css-regions-cloning"),a.removeAttribute("data-css-regions-cloned"),a.setAttribute("data-css-regions-fragment-of",e),a.id&&(a.id+="--fragment");case 9:case 11:for(c=a.firstChild;c;)d=c.nextSibling,b(c),c=d}}a.forEach(b)},embedTrailingWhiteSpaceNodes:function(a){function b(a){var d,e;switch(a.nodeType){case 3:if(!a.previousSibling){"pre"!==getComputedStyle(a.parentNode).whiteSpace.substring(0,3)&&c.test(a.nodeValue)&&(a.parentNode.setAttribute("data-whitespace-before",a.nodeValue),a.parentNode.removeChild(a));break}if(!a.nextSibling){"pre"!==getComputedStyle(a.parentNode).whiteSpace.substring(0,3)&&c.test(a.nodeValue)&&(a.parentNode.setAttribute("data-whitespace-after",a.nodeValue),a.parentNode.removeChild(a));break}break;case 1:case 9:case 11:for(d=a.firstChild;d;)e=d.nextSibling,b(d),d=e}}var c=/^\s*$/;b(a)},unembedTrailingWhiteSpaceNodes:function(a){function b(a){var d,e;switch(a.nodeType){case 1:var f="";(f=a.getAttribute("data-whitespace-before"))&&""==a.getAttribute("data-starting-fragment")&&a.getAttribute("data-special-starting-fragment","")&&a.insertBefore(c.createTextNode(f),a.firstChild),a.removeAttribute("data-whitespace-before"),(f=a.getAttribute("data-whitespace-after"))&&""==a.getAttribute("data-continued-fragment")&&a.getAttribute("data-special-continued-fragment","")&&a.insertAfter(c.createTextNode(f),a.lastChild),a.removeAttribute("data-whitespace-after");case 9:case 11:for(d=a.firstChild;d;)e=d.nextSibling,b(d),d=e}}b(a)},copyStyle:function(b,d){function g(b,d,h){var i,j,k,l;switch(b.nodeType){case 1:for(var m=b.currentStyle&&!a.opera?void 0:e.findAllMatchingRules(b),n=e.allCSSProperties||e.getAllCSSProperties(),o=n.length;o--;)if(n[o]in e.computationUnsafeProperties||"-"==n[o][0]){var p=e.getSpecifiedStyle(b,n[o],m);if(p&&p.length)d.style.setProperty(n[o],p.toCSSString());else if(h&&b.parentNode&&"-"!=n[o][0]){if(!(n[o]in e.inheritingProperties))continue;if("font-size"==n[o]||!(n[o]in e.computationUnsafeProperties)&&"-"!=n[o][0]){var q=getComputedStyle(b).getPropertyValue(n[o]);d.style.setProperty(n[o],q);continue}var p=e.getSpecifiedStyle(b,n[o],m);p&&p.length&&d.style.setProperty(n[o],p.toCSSString())}}else{var q=getComputedStyle(b).getPropertyValue(n[o]),r=e.getDefaultStyleForTag(b.tagName).getPropertyValue(n[o]);q!=r&&d.style.setProperty(n[o],q)}var s=function(a,b,d){var f=!!e.findAllMatchingRulesWithPseudo(a,d.substr(1)).length;if(f){var g=getComputedStyle(a,d);if("none"!=g.content){var h=c.createElement("style");h.setAttribute("data-no-css-polyfill",!0);for(var i="",j=e.allCSSProperties||e.getAllCSSProperties(),k=j.length;k--;){var l=g.getPropertyValue(j[k]);i+=j[k]+":"+l+";"}h.textContent='[data-css-regions-fragment-of="'+a.getAttribute("data-css-regions-fragment-source")+'"]:not([data-css-regions-starting-fragment]):not([data-css-regions-special-starting-fragment]):'+d+"{"+i+"}",b.parentNode.insertBefore(h,b)}}};s(b,d,":before"),s(b,d,":after"),f.retargetEvents(b,d);case 9:case 11:for(i=b.firstChild,k=d.firstChild;i;)j=i.nextSibling,l=k.nextSibling,i.cssRegionsLastFlowIntoName&&"element"===i.cssRegionsLastFlowIntoType?d.removeChild(k):g(i,k),i=j,k=l}}g(b,d,!0)},retargetEvents:function(a,b){var c="cssRegionsHelpers.retargetEvent(this,event)";b.setAttribute("onclick",c),b.setAttribute("ondblclick",c),b.setAttribute("onmousedown",c),b.setAttribute("onmouseup",c),b.setAttribute("onmousein",c),b.setAttribute("onmouseout",c),b.setAttribute("onmouseenter",c),b.setAttribute("onmouseleave",c)},retargetEvent:function(a,b){var e=a.cssRegionsFragmentSource||(a.cssRegionsFragmentSource=c.querySelector('[data-css-regions-fragment-source="'+a.getAttribute("data-css-regions-fragment-of")+'"]'));if(e){var f=d.cloneEvent(b);if(e.dispatchEvent(f),b.stopImmediatePropagation?b.stopImmediatePropagation():b.stopPropagation(),f.isDefaultPrevented||f.defaultPrevented)return b.preventDefault(),!1}}});return f}(window,document),b.define("src/css-regions/lib/helpers.js"),a.exports=function(a,c,d){var e=b("src/core/dom-events.js"),f=(b("src/core/css-syntax.js"),b("src/core/css-cascade.js")),g=(b("src/core/css-break.js"),b("src/css-regions/lib/helpers.js")),h=b("src/core/dom-experimental-event-streams.js");d.Flow=function(a){this.name=a,Object.defineProperty(this,"name",{get:function(){return a}}),this.overset=!1,this.firstEmptyRegionIndex=-1,this.content=[],this.lastContent=[],this.regions=[],this.lastRegions=[],this.eventListeners={regionfragmentchange:[],regionoversetchange:[]};var b=this;b.update=function(a){a.schedule(b.update),b.relayout()},b.lastStylesheetAdded=0,f.addEventListener("stylesheetadded",function(){b.lastStylesheetAdded-Date()>100?(b.lastStylesheetAdded=+Date(),b.relayout()):cssConsole.warn("Please don't add stylesheets as a response to region events. Operation cancelled.")}),b.failedLayoutCount=0,b.lastEventRAF=0,b.restartLayout=!1},d.Flow.prototype.removeFromContent=function(a){this.removeEventListenersOf(a);var b=this.content.indexOf(a);b>=0&&this.content.splice(b,1)},d.Flow.prototype.removeFromRegions=function(a){this.removeEventListenersOf(a);var b=this.regions.indexOf(a);b>=0&&this.regions.splice(b,1)},d.Flow.prototype.addToContent=function(a){var b=this.content,d=c.createTreeWalker(c.documentElement,NodeFilter.SHOW_ELEMENT,function(a){return b.indexOf(a)>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_REJECT},!1);d.currentNode=a,d.nextNode()?b.splice(b.indexOf(d.currentNode),0,a):b.push(a)},d.Flow.prototype.addToRegions=function(a){var b=this.regions,d=c.createTreeWalker(c.documentElement,NodeFilter.SHOW_ELEMENT,function(a){return b.indexOf(a)>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_REJECT},!1);d.currentNode=a,d.nextNode()?b.splice(this.regions.indexOf(d.currentNode),0,a):b.push(a)},d.Flow.prototype.generateContentFragment=function(){for(var a=c.createDocumentFragment(),b=0;b0&&!e.restartLayout){var g=!1;g=g||e.regions.some(function(a){return!c.documentElement.contains(a)}),g=g||e.content.some(function(a){return!c.documentElement.contains(a)}),g?(cssConsole.warn("Buggy css regions layout: the page changed; we need to restart."),e.restartLayout=!0):e.lastEventRAF=requestAnimationFrame(function(){e.dispatchEvent("regionfragmentchange"),e.dispatchEvent("regionoversetchange")})}c.documentElement.scrollTop=f,c.body.scrollTop=h,e.relayoutInProgress=!1,e.failedLayoutCount=0,e.restartLayout&&(e.restartLayout=!1,e.relayout())}})}catch(k){setImmediate(function(){throw k}),e.failedLayoutCount++,e.failedLayoutCount<7?requestAnimationFrame(function(){e._relayout()}):(e.failedLayoutCount=0,e.relayoutScheduled=!1,e.relayoutInProgress=!1,e.restartLayout=!1)}},d.Flow.prototype.relayoutIfSizeChanged=function(){for(var a=this.regions,b=a.length;b--;)if(a[b].offsetHeight!==a[b].cssRegionsLastOffsetHeight||a[b].offsetWidth!==a[b].cssRegionsLastOffsetWidth)return void this.relayout()},d.Flow.prototype.addEventListenersTo=function(a){var b=this;a instanceof Element&&(a=[a]),a.forEach(function(a){a.cssRegionsEventStream||(a.cssRegionsEventStream=new h.DOMUpdateEventStream({target:a}),a.cssRegionsEventStream.schedule(b.update))})},d.Flow.prototype.removeEventListenersOf=function(a){a instanceof Element&&(a=[a]),a.forEach(function(a){a.cssRegionsEventStream&&(a.cssRegionsEventStream.dispose(),delete a.cssRegionsEventStream)})},d.NamedFlow=d.Flow,d.NamedFlow.prototype.getContent=function(){return this.content.slice(0)},d.NamedFlow.prototype.getRegions=function(){return this.regions.slice(0)},d.NamedFlow.prototype.getRegionsByContent=function(a){for(var b=[],d=c.querySelectorAll('[data-css-regions-fragment-of="'+a.getAttribute("data-css-regions-fragment-source")+'"]'),e=0;e*,[data-css-regions-fragment-source]:not([data-css-regions-cloning]),[data-css-regions-fragment-source][data-css-regions-cloned]{display:none!important}[data-css-region]>cssregion:last-of-type{display:inline!important}[data-css-region]{content:normal!important}[data-css-special-continued-fragment]{counter-reset:none!important;counter-increment:none!important;margin-bottom:0!important;border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}[data-css-continued-fragment]{counter-reset:none!important;counter-increment:none!important;margin-bottom:0!important;padding-bottom:0!important;border-bottom:none!important;border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}[data-css-continued-fragment]::after{content:none!important;display:none!important}[data-css-special-starting-fragment]{text-indent:0!important;margin-top:0!important}[data-css-starting-fragment]{text-indent:0!important;margin-top:0!important;padding-top:0!important;border-top:none!important;border-top-left-radius:0!important;border-top-right-radius:0!important}[data-css-starting-fragment]::before{content:none!important;display:none!important}[data-css-continued-block-fragment][data-css-continued-fragment]:not(:empty)::after{content:''!important;display:inline-block!important;width:100%!important;height:0!important;font-size:0!important;line-height:0!important;margin:0!important;padding:0!important;border:0!important}",j={layoutContent:function(a,b,c,d){if(!a)return c.ondone(!!b.hasChildNodes());if(!a.length)return c.ondone(!!b.hasChildNodes());d||(d=Date.now());for(var e=a.pop();;){var f=getComputedStyle(e).display;if("none"==f||-1!==f.indexOf("inline")){if(e=a.pop())continue;return c.ondone(!!b.hasChildNodes())}break}if(e.cssRegionsWrapper?(e.cssRegionsWrapper.cssRegionHost=e,e=e.cssRegionsWrapper):e.cssRegionHost=e,e.innerHTML="",!b.hasChildNodes()){e.cssRegionHost.cssRegionsLastOffsetHeight=e.cssRegionHost.offsetHeight,e.cssRegionHost.cssRegionsLastOffsetWidth=e.cssRegionHost.offsetWidth,e.cssRegionHost.regionOverset="empty";var g={ondone:function(){},onprogress:function(a){a()}};return j.layoutContent(a,b,g,d),c.ondone(!1)}return e.appendChild(b),0!==a.length?this.layoutContentInNextRegionsWhenReady(e,a,b,c,d):this.layoutContentInLastRegionWhenReady(e,a,b,c,d)},layoutContentInNextRegionsWhenReady:function(a,b,d,f,g){for(var h=a.getElementsByTagName("img"),i=h.length;i--;)if(!h[i].complete&&!h[i].hasAttribute("height"))return setTimeout(function(){this.layoutContentInNextRegionsWhenReady(a,b,d,f,g+32)}.bind(this),16);var k=a.cssRegionHost.scrollHeight!=a.cssRegionHost.offsetHeight,l=k;if(!l)for(var m=a.firstElementChild,n=a.lastElementChild,o=m;o;){if(o!=m&&/(region|all|always)/i.test(e.getSpecifiedStyle(o,"break-before",void 0,!0).toCSSString())){l=!0;break}if(o!=n&&/(region|all|always)/i.test(e.getSpecifiedStyle(o,"break-after",void 0,!0).toCSSString())){o=o.nextElementSibling,l=!0;break}o=o.nextElementSibling}return d=l?this.extractOverflowingContent(a):c.createDocumentFragment(),d.hasChildNodes()?a.cssRegionHost.regionOverset="overset":a.cssRegionHost.regionOverset="fit",a.cssRegionHost.cssRegionsLastOffsetHeight=a.cssRegionHost.offsetHeight,a.cssRegionHost.cssRegionsLastOffsetWidth=a.cssRegionHost.offsetWidth,g+200>Date.now()?j.layoutContent(b,d,f,g):f.onprogress(function(){j.layoutContent(b,d,f)})},layoutContentInLastRegionWhenReady:function(a,b,c,d,f){for(var g=a.getElementsByTagName("img"),h=g.length;h--;)if(!g[h].complete&&!g[h].hasAttribute("height"))return setTimeout(function(){this.layoutContentInLastRegionWhenReady(a,b,c,d,f+32)}.bind(this),32);if("break"==e.getSpecifiedStyle(a.cssRegionHost,"region-fragment",void 0,!0).toCSSString().trim().toLowerCase()){var i=this.extractOverflowingContent(a).hasChildNodes();return a.cssRegionHost.cssRegionsLastOffsetHeight=a.cssRegionHost.offsetHeight,a.cssRegionHost.cssRegionsLastOffsetWidth=a.cssRegionHost.offsetWidth,d.ondone(i)}return a.cssRegionHost.cssRegionsLastOffsetHeight=a.cssRegionHost.offsetHeight,a.cssRegionHost.cssRegionsLastOffsetWidth=a.cssRegionHost.offsetWidth,d.ondone(a.cssRegionHost.offsetHeight!=a.cssRegionHost.scrollHeight)},extractOverflowingContent:function(a,b){g.embedTrailingWhiteSpaceNodes(a);var d=a.cssRegionHost.offsetHeight,h=a.cssRegionHost.offsetWidth,i=a.cssRegionHost.getBoundingClientRect();i={top:i.top,bottom:i.bottom,left:i.left,right:i.right};var j=parseInt(getComputedStyle(a.cssRegionHost).paddingBottom);j+=parseInt(getComputedStyle(a.cssRegionHost).borderBottomWidth),i.bottom-=j,d-=j;try{var k=b?c.createRange():c.caretRangeFromPoint(i.left+h-1,i.top+d-1)}catch(l){try{cssConsole.error(l.message),cssConsole.dir(l)}catch(l){}}var m=function(){},n=function(){if(0==o.bottom&&0==o.top&&0==o.left&&0==o.right){var a=-(c.documentElement.scrollTop||c.body.scrollTop),b=-(c.documentElement.scrollLeft||c.body.scrollLeft);o={width:0,heigth:0,top:a,bottom:a,left:b,right:b}}};(!k||a!==k.endContainer&&!Node.contains(a,k.endContainer))&&(k&&k.endContainer===a.cssRegionHost&&k.endOffset==k.endContainer.childNodes.length?(k.setStart(a,a.childNodes.length),k.setEnd(a,a.childNodes.length)):(k=k||c.createRange(),k.setStart(a,0),k.setEnd(a,0),b=!0));do{var o=k.myGetExtensionRect();for(n(),m();(k.endContainer!=a||k.endOffset!=k.endContainer.childNodes.length)&&o.bottom<=i.top+d;){m();var p=k.endContainer.childNodes[k.endOffset],q=!p||Node.getBoundingClientRect(p);p&&q.bottom<=i.top+d?(k.setStartAfter(p),k.setEndAfter(p),o=q,n()):(k.myMoveTowardRight(),o=k.myGetExtensionRect(),n())}for(;(k.endContainer!=a||0!=k.endOffset)&&o.bottom>i.top+d;)m(),k.myMoveOneCharLeft(),o=k.myGetExtensionRect(),n();m();var r=!1;if(!b)for(var s=k.endContainer;s=g.getAllLevelPreviousSibling(s,a);)if(Node.getBoundingClientRect(s).bottom>i.top+d){k.setStart(a,0),k.setEnd(a,0),r=!0,b=!0;break}}while(r);for(var s=k.endContainer;s!==a;)f.isMonolithic(s)&&k.setEndBefore(s),s=s.parentNode;(!k||a!==k.endContainer&&!Node.contains(a,k.endContainer))&&(cssConsole.dir(k.cloneRange()),k.setStart(a,a.childNodes.length),k.setEnd(a,a.childNodes.length));var t=k.startContainer.childNodes[k.startOffset],s=t;if(f.hasAnyInlineFlow(k.startContainer))for(;s&&(s=s.previousSibling)&&f.areInSameSingleLine(s,t);)if(t=s,s instanceof Element)k.setEndBefore(s);else{var u=Node.getClientRects(s);if(u.length>1){var v=u[u.length-2].bottom;for(k.setEnd(s,s.nodeValue.length);o.bottom>v;)k.myMoveOneCharLeft(),o=k.myGetExtensionRect(),n();k.endContainer!==s&&k.setEndBefore(s)}else k.setEndBefore(s)}if((!k||a!==k.endContainer&&!Node.contains(a,k.endContainer))&&(cssConsole.dir(k.cloneRange()),k.setStart(a,a.childNodes.length),k.setEnd(a,a.childNodes.length)),k.endContainer===a&&0===k.endOffset&&k.endOffset!==a.childNodes.length)do{k.myMoveTowardRight();for(var s=k.endContainer;s&&s!==a;)f.isMonolithic(s)&&(k.setStartAfter(s),k.setEndAfter(s)),s=s.parentNode}while(!f.isPossibleBreakPoint(k,a)&&(k.endContainer!==a||k.endOffset!==a.childNodes.length));(!k||a!==k.endContainer&&!Node.contains(a,k.endContainer))&&(cssConsole.dir(k.cloneRange()),k.setStart(a,a.childNodes.length),k.setEnd(a,a.childNodes.length));var s=k.endContainer;s.hasChildNodes()&&k.endOffset>0&&(s=s.childNodes[k.endOffset-1]);var t=k.endContainer.firstChild;do s.style&&(s!=t&&/(region|all|always)/i.test(e.getSpecifiedStyle(s,"break-before",void 0,!0).toCSSString())&&(k.setStartBefore(s),k.setEndBefore(s),b=!0),s!==a&&/(region|all|always)/i.test(e.getSpecifiedStyle(s,"break-after",void 0,!0).toCSSString())&&(k.setStartAfter(s),k.setEndAfter(s),b=!0));while(s=g.getAllLevelPreviousSibling(s,a));var s=k.endContainer,w=[];for(s.nodeType!==s.ELEMENT_NODE&&(s=s.parentNode);s!==a;)w.push(s),s=s.parentNode;if(k.endOffset==k.endContainer.childNodes.length&&k.endContainer!==a){var x=k.endContainer.getBoundingClientRect(),y=x.bottom-(i.top+d),z=getComputedStyle(k.endContainer),A=parseFloat(z.borderBottomWidth),B=parseFloat(z.paddingBottom),C=y;if(y>A){C=A,y-=C;var D=y;D>B?(D=B,y-=D):y=0}else y=0;if("number"==typeof C&&0!==C){var E=parseInt(z.borderBottomLeftRadius)>0||parseInt(z.borderBottomRightRadius)>0;E&&(C=A)}}if(0==k.endOffset&&k.endContainer!==a){var x=k.endContainer.getBoundingClientRect(),F=i.top+d-i.top,z=getComputedStyle(k.endContainer),A=parseFloat(z.borderTopWidth),B=parseFloat(z.paddingTop),y=A+B-F;if(y>0){var G=y;if(y>B){G=B,y-=G;var H=y;H>A?(H=A,y-=H):y=0}else y=0}}for(var I=w.length-1;I>=0;I--)w[I].setAttribute("data-css-continued-fragment",!0),getComputedStyle(w[I]).display.indexOf("block")>=0&&w[I].setAttribute("data-css-continued-block-fragment",!0);"number"==typeof C&&(w[0].removeAttribute("data-css-continued-fragment"),w[0].setAttribute("data-css-special-continued-fragment",!0),w[0].style.borderBottomWidth=A-C+"px"),"number"==typeof D&&(w[0].removeAttribute("data-css-continued-fragment"),w[0].setAttribute("data-css-special-continued-fragment",!0),w[0].style.paddingBottom=B-D+"px"),"number"==typeof H&&(w[0].removeAttribute("data-css-continued-fragment"),w[0].setAttribute("data-css-continued-fragment",!0),w[0].style.borderTopWidth=A-H+"px"),"number"==typeof G&&(w[0].removeAttribute("data-css-continued-fragment"),w[0].setAttribute("data-css-special-continued-fragment",!0),w[0].style.paddingTop=B-G+"px"),k.setEnd(a,a.childNodes.length);var J=k.extractContents(),K=w[0];if(K&&(K=K.lastChild)&&!K.tagName&&K.nodeValue){var L=K.nodeValue.replace(/(\s|\r|\n)*$/,"");L?(/\u00AD$/.test(L)&&(L=L.replace(/\u00AD$/,"-")),K.nodeValue=L):K.parentNode.removeChild(K)}for(var M=J.querySelectorAll("[data-css-continued-fragment]"),I=M.length;I--;)M[I].removeAttribute("data-css-continued-fragment"),M[I].setAttribute("data-css-starting-fragment",!0);var N=J.querySelector("[data-css-special-continued-fragment]");if(N)N.removeAttribute("data-css-special-continued-fragment"),N.setAttribute("data-css-starting-fragment",!0),"number"==typeof C&&(N.style.borderBottomWidth=C+"px"),"number"==typeof D?N.style.paddingBottom=D:N.style.paddingBottom="0px","number"==typeof H&&(N.removeAttribute("data-css-starting-fragment"),N.setAttribute("data-css-special-starting-fragment",!0),N.style.borderTopWidth=H+"px"),"number"==typeof G&&(N.removeAttribute("data-css-starting-fragment"),N.setAttribute("data-css-special-starting-fragment",!0),N.style.paddingTop=G+"px",N.style.paddingBottom="0px",N.style.borderBottomWidth="0px");else if("number"==typeof C)try{throw new Error}catch(l){setImmediate(function(){throw l})}else if("number"==typeof G)try{throw new Error}catch(l){setImmediate(function(){throw l})}return g.unembedTrailingWhiteSpaceNodes(a),g.unembedTrailingWhiteSpaceNodes(J),J},enablePolyfill:function(){var b=c.createElement("style");b.setAttribute("data-css-no-polyfill",!0),b.textContent=i;var f=c.head||c.getElementsByTagName("head")[0];f.appendChild(b),e.startMonitoringProperties(["flow-into","flow-from","region-fragment"],{onupdate:function(a,b){if(!a.getAttributeNode("data-css-regions-fragment-of")){cssConsole.dir({message:"onupdate",element:a,selector:b.selector.toCSSString(),rule:b});var c=e.getSpecifiedStyle(a,"flow-into").filter(function(a){return a instanceof d.IdentifierToken}),f=c[0]?c[0].toCSSString().toLowerCase():"";("none"==f||"initial"==f||"inherit"==f||"default"==f)&&(f="");var g=c[1]?c[1].toCSSString().toLowerCase():"";"content"!=g&&(g="element");var c=f?f+" "+g:"",h=e.getSpecifiedStyle(a,"flow-from").filter(function(a){return a instanceof d.IdentifierToken}),i=h[0]?h[0].toCSSString().toLowerCase():"";("none"==i||"initial"==i||"inherit"==i||"default"==i)&&(i="");var h=i;if(a.cssRegionsLastFlowInto!=c||a.cssRegionsLastFlowFrom!=h){var k=a.regionOverset,l=j.flows[a.cssRegionsLastFlowFromName],m=j.flows[a.cssRegionsLastFlowIntoName];if(l&&l.removeFromRegions(a),m&&m.removeFromContent(a),l&&"empty"!=k&&l.relayout(),m&&m.relayout(),a.cssRegionsLastFlowInto=c,a.cssRegionsLastFlowFrom=h,a.cssRegionsLastFlowIntoName=f,a.cssRegionsLastFlowFromName=i,a.cssRegionsLastFlowIntoType=g,i){var l=j.flows[i]=j.flows[i]||new j.Flow(i);l&&l.addToRegions(a),l&&l.relayout()}if(f){var m=j.flows[f]=j.flows[f]||new j.Flow(f);m&&m.addToContent(a),m&&m.relayout()}}}}}),e.startMonitoringProperties(["break-before","break-after"],{onupdate:function(a){if(!a.getAttribute("data-css-regions-fragment-of"))for(;a;){if(a.cssRegionsLastFlowIntoName)return void j.flows[a.cssRegionsLastFlowIntoName].relayout();a=a.parentNode}}}),j.enablePolyfillObjectModel(),a.addEventListener("load",function(){for(var a=c.getNamedFlows(),b=0;bg||(a[b].relayoutInProgress?a[b].relayout():a[b].relayoutIfSizeChanged())},k=function(){for(var a=c.getNamedFlows(),b=0;bg)&&a[b].relayoutInProgress)return!0;return!1},l=function(){for(var a=c.getNamedFlows(),b=0;bg||a[b].relayoutInProgress&&a[b].relayout()};a.addEventListener("resize",function(){g=+new Date,h.timeout||(k()?(setTimeout(l,16),h.timeout=setTimeout(h,500)):h.timeout=setTimeout(h,200))})},flows:Object.create?Object.create(null):{}};return h(a,c,j),j}(window,document),b.define("src/css-regions/polyfill.js"),b("src/css-regions/polyfill.js"),b.define("src/requirements.js"),window.cssPolyfills={require:b}}(); +//# sourceMappingURL=css-regions-polyfill.min.js.map \ No newline at end of file diff --git a/assets/js/jquery.min.js b/assets/js/jquery.min.js new file mode 100644 index 0000000..fad9ab1 --- /dev/null +++ b/assets/js/jquery.min.js @@ -0,0 +1,5 @@ +/*! jQuery v2.1.4 | (c) 2005, 2015 jQuery Foundation, Inc. | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)+1>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b="length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,aa=/[+~]/,ba=/'|\\/g,ca=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),da=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ea=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fa){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(ba,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+ra(o[l]);w=aa.test(a)&&pa(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function pa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",ea,!1):e.attachEvent&&e.attachEvent("onunload",ea)),p=!f(g),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){var b=g.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===g||a.ownerDocument===v&&t(v,a)?-1:b===g||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?la(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ca,da),a[3]=(a[3]||a[4]||a[5]||"").replace(ca,da),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ca,da).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(Q," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(ca,da),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return W.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(ca,da).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:oa(function(){return[0]}),last:oa(function(a,b){return[b-1]}),eq:oa(function(a,b,c){return[0>c?c+b:c]}),even:oa(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:oa(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:oa(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:oa(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function sa(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function ta(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ua(a,b,c){for(var d=0,e=b.length;e>d;d++)ga(a,b[d],c);return c}function va(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function wa(a,b,c,d,e,f){return d&&!d[u]&&(d=wa(d)),e&&!e[u]&&(e=wa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ua(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:va(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=va(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=va(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sa(function(a){return a===b},h,!0),l=sa(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[sa(ta(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return wa(i>1&&ta(m),i>1&&ra(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xa(a.slice(i,e)),f>e&&xa(a=a.slice(e)),f>e&&ra(a))}m.push(c)}return ta(m)}function ya(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=va(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&ga.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,ya(e,d)),f.selector=a}return f},i=ga.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ca,da),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ca,da),aa.test(j[0].type)&&pa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&ra(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,aa.test(a)&&pa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+K.uid++}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){ +return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b)},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthx",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,ba=/<([\w:]+)/,ca=/<|&#?\w+;/,da=/<(?:script|style|link)/i,ea=/checked\s*(?:[^=]|=\s*.checked.)/i,fa=/^$|\/(?:java|ecma)script/i,ga=/^true\/(.*)/,ha=/^\s*\s*$/g,ia={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ia.optgroup=ia.option,ia.tbody=ia.tfoot=ia.colgroup=ia.caption=ia.thead,ia.th=ia.td;function ja(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function ka(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function la(a){var b=ga.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function ma(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function na(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function oa(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pa(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=oa(h),f=oa(a),d=0,e=f.length;e>d;d++)pa(f[d],g[d]);if(b)if(c)for(f=f||oa(a),g=g||oa(h),d=0,e=f.length;e>d;d++)na(f[d],g[d]);else na(a,h);return g=oa(h,"script"),g.length>0&&ma(g,!i&&oa(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(ca.test(e)){f=f||k.appendChild(b.createElement("div")),g=(ba.exec(e)||["",""])[1].toLowerCase(),h=ia[g]||ia._default,f.innerHTML=h[1]+e.replace(aa,"<$1>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=oa(k.appendChild(e),"script"),i&&ma(f),c)){j=0;while(e=f[j++])fa.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=ja(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=ja(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(oa(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&ma(oa(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(oa(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!da.test(a)&&!ia[(ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(aa,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(oa(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(oa(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&ea.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(oa(c,"script"),ka),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,oa(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,la),j=0;g>j;j++)h=f[j],fa.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(ha,"")))}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qa,ra={};function sa(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function ta(a){var b=l,c=ra[a];return c||(c=sa(a,b),"none"!==c&&c||(qa=(qa||n("