lato-rails 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +57 -0
- data/Rakefile +10 -0
- data/app/assets/fonts/Black/Lato-Black.eot +0 -0
- data/app/assets/fonts/Black/Lato-Black.svg +288 -0
- data/app/assets/fonts/Black/Lato-Black.ttf +0 -0
- data/app/assets/fonts/Black/Lato-Black.woff +0 -0
- data/app/assets/fonts/Black/Lato-Black.woff2 +0 -0
- data/app/assets/fonts/BlackItalic/Lato-BlackItalic.eot +0 -0
- data/app/assets/fonts/BlackItalic/Lato-BlackItalic.svg +288 -0
- data/app/assets/fonts/BlackItalic/Lato-BlackItalic.ttf +0 -0
- data/app/assets/fonts/BlackItalic/Lato-BlackItalic.woff +0 -0
- data/app/assets/fonts/BlackItalic/Lato-BlackItalic.woff2 +0 -0
- data/app/assets/fonts/Bold/Lato-Bold.eot +0 -0
- data/app/assets/fonts/Bold/Lato-Bold.svg +288 -0
- data/app/assets/fonts/Bold/Lato-Bold.ttf +0 -0
- data/app/assets/fonts/Bold/Lato-Bold.woff +0 -0
- data/app/assets/fonts/Bold/Lato-Bold.woff2 +0 -0
- data/app/assets/fonts/BoldItalic/Lato-BoldItalic.eot +0 -0
- data/app/assets/fonts/BoldItalic/Lato-BoldItalic.svg +288 -0
- data/app/assets/fonts/BoldItalic/Lato-BoldItalic.ttf +0 -0
- data/app/assets/fonts/BoldItalic/Lato-BoldItalic.woff +0 -0
- data/app/assets/fonts/BoldItalic/Lato-BoldItalic.woff2 +0 -0
- data/app/assets/fonts/Hairline/Lato-Hairline.eot +0 -0
- data/app/assets/fonts/Hairline/Lato-Hairline.svg +288 -0
- data/app/assets/fonts/Hairline/Lato-Hairline.ttf +0 -0
- data/app/assets/fonts/Hairline/Lato-Hairline.woff +0 -0
- data/app/assets/fonts/Hairline/Lato-Hairline.woff2 +0 -0
- data/app/assets/fonts/HairlineItalic/Lato-HairlineItalic.eot +0 -0
- data/app/assets/fonts/HairlineItalic/Lato-HairlineItalic.svg +288 -0
- data/app/assets/fonts/HairlineItalic/Lato-HairlineItalic.ttf +0 -0
- data/app/assets/fonts/HairlineItalic/Lato-HairlineItalic.woff +0 -0
- data/app/assets/fonts/HairlineItalic/Lato-HairlineItalic.woff2 +0 -0
- data/app/assets/fonts/Italic/Lato-Italic.eot +0 -0
- data/app/assets/fonts/Italic/Lato-Italic.svg +288 -0
- data/app/assets/fonts/Italic/Lato-Italic.ttf +0 -0
- data/app/assets/fonts/Italic/Lato-Italic.woff +0 -0
- data/app/assets/fonts/Italic/Lato-Italic.woff2 +0 -0
- data/app/assets/fonts/Light/Lato-Light.eot +0 -0
- data/app/assets/fonts/Light/Lato-Light.svg +288 -0
- data/app/assets/fonts/Light/Lato-Light.ttf +0 -0
- data/app/assets/fonts/Light/Lato-Light.woff +0 -0
- data/app/assets/fonts/Light/Lato-Light.woff2 +0 -0
- data/app/assets/fonts/LightItalic/Lato-LightItalic.eot +0 -0
- data/app/assets/fonts/LightItalic/Lato-LightItalic.svg +288 -0
- data/app/assets/fonts/LightItalic/Lato-LightItalic.ttf +0 -0
- data/app/assets/fonts/LightItalic/Lato-LightItalic.woff +0 -0
- data/app/assets/fonts/LightItalic/Lato-LightItalic.woff2 +0 -0
- data/app/assets/fonts/Regular/Lato-Regular.eot +0 -0
- data/app/assets/fonts/Regular/Lato-Regular.svg +288 -0
- data/app/assets/fonts/Regular/Lato-Regular.ttf +0 -0
- data/app/assets/fonts/Regular/Lato-Regular.woff +0 -0
- data/app/assets/fonts/Regular/Lato-Regular.woff2 +0 -0
- data/app/assets/stylesheets/lato.scss +13 -0
- data/app/assets/stylesheets/sass/_Black.scss +8 -0
- data/app/assets/stylesheets/sass/_BlackItalic.scss +8 -0
- data/app/assets/stylesheets/sass/_Bold.scss +8 -0
- data/app/assets/stylesheets/sass/_BoldItalic.scss +8 -0
- data/app/assets/stylesheets/sass/_Hairline.scss +8 -0
- data/app/assets/stylesheets/sass/_HairlineItalic.scss +8 -0
- data/app/assets/stylesheets/sass/_Italic.scss +8 -0
- data/app/assets/stylesheets/sass/_Light.scss +8 -0
- data/app/assets/stylesheets/sass/_LightItalic.scss +8 -0
- data/app/assets/stylesheets/sass/_Regular.scss +8 -0
- data/app/assets/stylesheets/sass/_mixins.scss +14 -0
- data/app/assets/stylesheets/sass/_variables.scss +1 -0
- data/app/assets/stylesheets/sass/lato.scss +1 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lato-rails.gemspec +32 -0
- data/lib/lato-rails.rb +2 -0
- data/lib/lato-rails/engine.rb +6 -0
- data/lib/lato-rails/version.rb +6 -0
- metadata +212 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: fc0e6db51c29f23593b1e5da6eb48e82c4feea71
|
|
4
|
+
data.tar.gz: 631104f487f1fc498c2def13690608d823e4e9cc
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: ab463a847e05c9cb9b4e40145aaa5457a74118bebe35d4b929e251fed6a2bcf9bf35a612cf4231eff0a2bbe7025fbd5783aae71ed23135a2f85f61582a43289d
|
|
7
|
+
data.tar.gz: adda5be8f4161427f961c5fa0cf8a29ca25bcb4653995e46151b76291b8ab0d8b6f53b7c5930a06140d01ee366003a4bb890ad75392b6ede789b3bc4fe14a7d2
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2016 Juergen Fesslmeier
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# lato-rails
|
|
2
|
+
|
|
3
|
+
lato-rails provides the Lato web fonts and
|
|
4
|
+
stylesheets as a Rails engine for use with the asset pipeline.
|
|
5
|
+
|
|
6
|
+
## Installation
|
|
7
|
+
|
|
8
|
+
Add this line to your application's Gemfile:
|
|
9
|
+
|
|
10
|
+
```ruby
|
|
11
|
+
gem 'lato-rails'
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
And then execute:
|
|
15
|
+
|
|
16
|
+
$ bundle
|
|
17
|
+
|
|
18
|
+
Or install it yourself as:
|
|
19
|
+
|
|
20
|
+
$ gem install lato-rails
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
For example, import the lato fonts inside your `application.scss`, with Sprockets:
|
|
25
|
+
|
|
26
|
+
```css
|
|
27
|
+
/*
|
|
28
|
+
*= require lato
|
|
29
|
+
*/
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Sass Support
|
|
33
|
+
|
|
34
|
+
If you prefer [SCSS](http://sass-lang.com/documentation/file.SASS_REFERENCE.html), add this to your
|
|
35
|
+
`application.css.scss` file:
|
|
36
|
+
|
|
37
|
+
```scss
|
|
38
|
+
@import "lato";
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
If you use the
|
|
42
|
+
[Sass indented syntax](http://sass-lang.com/docs/yardoc/file.INDENTED_SYNTAX.html),
|
|
43
|
+
add this to your `application.css.sass` file:
|
|
44
|
+
|
|
45
|
+
```sass
|
|
46
|
+
@import font-awesome
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Contributing
|
|
50
|
+
|
|
51
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/chinshr/lato-rails.
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
## License
|
|
55
|
+
|
|
56
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
57
|
+
|
data/Rakefile
ADDED
|
Binary file
|
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<defs>
|
|
5
|
+
<font id="Lato-Black" horiz-adv-x="1160">
|
|
6
|
+
<font-face underline-position="-6" font-weight="900" descent="-390" panose-1="2 15 10 2 2 2 4 3 2 3" units-per-em="2000" unicode-range="U+000D-FB02" bbox="-166 -357 2334 1904" x-height="1037" underline-thickness="194" font-family="Lato Black" ascent="1610" cap-height="1457"/>
|
|
7
|
+
<missing-glyph d="M230 1152q62 48 140 79.5t183 31.5q78 0 137.5 -20t100.5 -56t62 -87t21 -113q0 -55 -13 -95t-32.5 -69t-43 -50t-45.5 -39t-39 -35t-23 -38l-27 -90h-212l-22 112q-8 39 1.5 66.5t28.5 49t43.5 39t46 36.5t36 41t14.5 53q0 23 -13 38.5t-49 15.5q-32 0 -53 -5 t-36.5 -11.5t-29 -11.5t-31.5 -5q-43 0 -63 36zM374 331q0 33 12 61.5t34 49.5t51 33t64 12q33 0 62 -12t50.5 -33t34 -49.5t12.5 -61.5t-12.5 -61.5t-34 -49.5t-50.5 -33t-62 -12q-35 0 -64 12t-51 33t-34 49.5t-12 61.5zM40 1457h1043v-1457h-1043v1457zM117 80h879v1297 h-879v-1297z" horiz-adv-x="1123"/>
|
|
8
|
+
<glyph glyph-name="fi" horiz-adv-x="1258" unicode="fi" d="M166 0v824l-68 14q-35 8 -56.5 25t-21.5 50v122h146v15q0 94 32.5 177.5t100.5 145t173.5 97.5t251.5 36q45 0 93 -4.5t83 -13.5l-10 -157q-2 -25 -25 -33t-49 -8q-104 0 -172 -16t-107.5 -47.5t-55 -78.5t-15.5 -108v-5h658v-1035h-310v823h-338v-823h-310z"/>
|
|
9
|
+
<glyph glyph-name="fl" horiz-adv-x="1276" unicode="fl" d="M166 0v824l-68 14q-35 8 -56.5 25t-21.5 50v122h146v36q0 79 26 154.5t80 134t138 94t200 35.5q98 0 184.5 -6t175.5 -6h174v-1477h-308v1269q-51 2 -98.5 4.5t-77.5 2.5q-95 0 -144.5 -52.5t-49.5 -152.5v-36h224v-212h-214v-823h-310z"/>
|
|
10
|
+
<glyph glyph-name=".notdef" d="M230 1152q62 48 140 79.5t183 31.5q78 0 137.5 -20t100.5 -56t62 -87t21 -113q0 -55 -13 -95t-32.5 -69t-43 -50t-45.5 -39t-39 -35t-23 -38l-27 -90h-212l-22 112q-8 39 1.5 66.5t28.5 49t43.5 39t46 36.5t36 41t14.5 53q0 23 -13 38.5t-49 15.5q-32 0 -53 -5 t-36.5 -11.5t-29 -11.5t-31.5 -5q-43 0 -63 36zM374 331q0 33 12 61.5t34 49.5t51 33t64 12q33 0 62 -12t50.5 -33t34 -49.5t12.5 -61.5t-12.5 -61.5t-34 -49.5t-50.5 -33t-62 -12q-35 0 -64 12t-51 33t-34 49.5t-12 61.5zM40 1457h1043v-1457h-1043v1457zM117 80h879v1297 h-879v-1297z" horiz-adv-x="1123"/>
|
|
11
|
+
<glyph glyph-name="NULL" horiz-adv-x="0"/>
|
|
12
|
+
<glyph glyph-name="NULL" horiz-adv-x="0"/>
|
|
13
|
+
<glyph glyph-name="nonmarkingreturn" horiz-adv-x="0" unicode="
|
|
14
|
+
<glyph glyph-name="space" horiz-adv-x="386" unicode=" "/>
|
|
15
|
+
<glyph glyph-name="exclam" horiz-adv-x="752" unicode="!" d="M524 1457v-572q0 -92 -11 -182.5t-29 -184.5h-210q-18 94 -29 184.5t-11 182.5v572h290zM200 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5 z"/>
|
|
16
|
+
<glyph glyph-name="quotedbl" horiz-adv-x="890" unicode='"' d="M380 1457v-286l-28 -158q-9 -54 -32 -82.5t-76 -28.5q-45 0 -70.5 28.5t-35.5 82.5l-28 158v286h270zM780 1457v-286l-28 -158q-9 -54 -32 -82.5t-76 -28.5q-45 0 -70.5 28.5t-35.5 82.5l-28 158v286h270z"/>
|
|
17
|
+
<glyph glyph-name="numbersign" d="M862 395l-70 -395h-144q-19 0 -35.5 8t-28.5 21.5t-19 32t-7 39.5q0 5 0.5 11t1.5 11l48 272h-165l-49 -287q-5 -29 -18 -49.5t-32 -33.5t-41.5 -19t-46.5 -6h-138l70 395h-88q-38 0 -59 18.5t-21 62.5q0 9 1 19t3 21l16 96h177l42 236h-199l24 126q9 46 39.5 68t96.5 22 h68l52 293q8 47 45 73.5t85 26.5h142l-70 -393h166l70 393h138q44 0 71.5 -24t27.5 -62v-7.5t-1 -8.5l-52 -291h194l-24 -126q-9 -47 -39.5 -68.5t-96.5 -21.5h-63l-42 -236h109q38 0 59 -18.5t21 -62.5q0 -9 -1 -19t-3 -21l-16 -96h-198zM471 612h166l42 236h-166z" unicode="#"/>
|
|
18
|
+
<glyph glyph-name="dollar" d="M430 -5q-115 19 -219.5 66.5t-176.5 114.5l96 139q12 17 32.5 28.5t43.5 11.5q24 0 49 -12.5t54.5 -30.5t64.5 -36.5t80 -30.5l37 378q-72 20 -143 47t-128 73t-92.5 117t-35.5 178q0 79 32 154t93.5 135t151.5 98.5t206 44.5l11 111q3 28 25 50.5t57 22.5h114l-20 -197 q108 -20 186 -64.5t132 -95.5l-76 -111q-17 -25 -34.5 -36.5t-41.5 -11.5q-16 0 -36 7t-44 17.5t-51.5 22.5t-58.5 21l-35 -355q48 -14 96 -30.5t92.5 -38t83 -49.5t67 -66t44.5 -87.5t16 -112.5q0 -95 -32 -178.5t-94 -147.5t-152 -104.5t-206 -49.5l-12 -125 q-3 -28 -25 -50.5t-57 -22.5h-114zM808 421q0 57 -36.5 91t-96.5 57l-32 -330q165 29 165 182zM384 1068q0 -59 37.5 -95.5t98.5 -61.5l30 302q-46 -7 -77.5 -20.5t-51 -32.5t-28.5 -42.5t-9 -49.5z" unicode="$"/>
|
|
19
|
+
<glyph glyph-name="percent" horiz-adv-x="1636" unicode="%" d="M748 1104q0 -80 -29 -146t-77 -113.5t-111.5 -73.5t-132.5 -26q-76 0 -139.5 26t-110 73.5t-72.5 113.5t-26 146q0 83 26 150.5t72.5 115.5t110 74.5t139.5 26.5t140.5 -26.5t111 -74.5t72.5 -115.5t26 -150.5zM510 1104q0 51 -8.5 84.5t-23.5 53.5t-35.5 28t-44.5 8 t-44 -8t-34 -28t-22 -53.5t-8 -84.5q0 -48 8 -80t22 -51t34 -27t44 -8t44.5 8t35.5 27t23.5 51t8.5 80zM1206 1411q15 17 37 31.5t61 14.5h226l-1098 -1413q-15 -19 -37.5 -31.5t-54.5 -12.5h-232zM1586 342q0 -80 -29 -146.5t-77 -114t-111.5 -73.5t-132.5 -26 q-76 0 -139.5 26t-110 73.5t-72.5 114t-26 146.5q0 83 26 150.5t72.5 115.5t110 74.5t139.5 26.5t140.5 -26.5t111 -74.5t72.5 -115.5t26 -150.5zM1348 342q0 50 -8.5 83.5t-23.5 53.5t-35.5 28t-44.5 8t-44 -8t-34 -28t-22 -53.5t-8 -83.5q0 -48 8 -80t22 -51t34 -27t44 -8 t44.5 8t35.5 27t23.5 51t8.5 80z"/>
|
|
20
|
+
<glyph glyph-name="ampersand" horiz-adv-x="1446" unicode="&" d="M664 1473q97 0 171 -28.5t125 -75t80 -107.5t36 -125l-200 -40q-5 -1 -8.5 -1.5t-7.5 -0.5q-42 0 -62 44q-23 52 -53.5 79t-80.5 27q-35 0 -61 -13t-43.5 -34t-26.5 -49t-9 -58q0 -26 4.5 -50t15 -48.5t29 -50.5t47.5 -56l360 -380q27 60 43 125t23 135q2 28 18.5 44 t43.5 16h196q0 -146 -39 -272.5t-111 -231.5l306 -322h-306q-23 0 -41 2.5t-33.5 8.5t-29.5 17t-30 28l-63 66q-95 -66 -207.5 -102t-239.5 -36q-87 0 -170.5 30t-148.5 85.5t-105 134.5t-40 177q0 66 20.5 125t57.5 109.5t88.5 92t112.5 72.5q-47 73 -68 143t-21 136 q0 78 28.5 147.5t83 122t134 83.5t182.5 31zM362 436q0 -48 14.5 -87t41.5 -67t64.5 -43.5t83.5 -15.5q67 0 124.5 17.5t107.5 49.5l-335 355q-55 -45 -78 -98t-23 -111z"/>
|
|
21
|
+
<glyph glyph-name="quotesingle" horiz-adv-x="490" unicode="'" d="M380 1457v-286l-28 -158q-9 -54 -32 -82.5t-76 -28.5q-45 0 -70.5 28.5t-35.5 82.5l-28 158v286h270z"/>
|
|
22
|
+
<glyph glyph-name="parenleft" horiz-adv-x="600" unicode="(" d="M348 626q0 -99 11.5 -199t34 -197t55 -189t73.5 -176q14 -29 14 -53t-13 -39t-31 -26l-138 -80q-73 112 -125 228t-85 235.5t-48.5 243.5t-15.5 252t15.5 252t48.5 243.5t85 235.5t125 229l138 -80q17 -11 30 -26t13 -38q0 -11 -3.5 -24t-11.5 -29q-42 -83 -74 -175.5 t-54 -190t-33 -198t-11 -199.5z"/>
|
|
23
|
+
<glyph glyph-name="parenright" horiz-adv-x="600" unicode=")" d="M252 626q0 99 -11 199.5t-33 198t-54 190t-74 175.5q-8 16 -11.5 29t-3.5 24q0 23 13 38t30 26l138 80q145 -226 209.5 -465t64.5 -495q0 -257 -64.5 -495.5t-209.5 -463.5l-138 80q-18 11 -31 26t-13 39t14 53q41 84 73.5 176t55 189t34 197t11.5 199z"/>
|
|
24
|
+
<glyph glyph-name="asterisk" horiz-adv-x="800" unicode="*" d="M326 815v173q0 20 2.5 40.5t8.5 37.5q-13 -14 -29 -25t-34 -22l-146 -85l-72 119l146 85q19 11 38 19t39 12q-20 4 -39 12.5t-38 19.5l-146 87l72 120l146 -88q18 -11 34.5 -22.5t29.5 -25.5q-12 34 -12 77v175h146v-173q0 -21 -2.5 -41t-8.5 -38q13 14 29 25.5t34 22.5 l146 86l72 -120l-146 -85q-20 -11 -39 -19t-39 -12q20 -4 39.5 -12.5t38.5 -19.5l146 -87l-72 -119l-146 87q-19 11 -35 22.5t-30 25.5q13 -35 13 -77v-175h-146z"/>
|
|
25
|
+
<glyph glyph-name="plus" d="M704 1179v-396h370v-222h-370v-398h-252v398h-368v222h368v396h252z" unicode="+"/>
|
|
26
|
+
<glyph glyph-name="comma" horiz-adv-x="472" unicode="," d="M68 176q0 32 12 59.5t34.5 48t53 32.5t68.5 12q45 0 78 -15.5t55 -42t32.5 -61t10.5 -72.5q0 -50 -16 -106.5t-47.5 -113.5t-78.5 -112t-108 -100l-54 48q-11 11 -16.5 20.5t-5.5 23.5q0 10 7 21.5t17 20.5q12 12 28 29t32 38t29.5 46t20.5 53q-35 3 -63 17t-47.5 37 t-30.5 52.5t-11 64.5z"/>
|
|
27
|
+
<glyph glyph-name="hyphen" horiz-adv-x="740" unicode="-" d="M100 733h540v-250h-540v250z"/>
|
|
28
|
+
<glyph glyph-name="period" horiz-adv-x="472" unicode="." d="M60 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5z"/>
|
|
29
|
+
<glyph glyph-name="slash" horiz-adv-x="800" unicode="/" d="M270 12q-11 -27 -28.5 -48t-39 -35t-46 -21t-48.5 -7h-132l568 1491q20 51 61 78t95 27h132z"/>
|
|
30
|
+
<glyph glyph-name="zero" d="M1120 729q0 -191 -41 -331t-113.5 -232t-172 -137t-215.5 -45t-214.5 45t-170.5 137t-112.5 232t-40.5 331t40.5 331t112.5 232t170.5 136.5t214.5 44.5t215.5 -44.5t172 -136.5t113.5 -232t41 -331zM800 729q0 151 -19 247.5t-50.5 151.5t-71.5 75.5t-81 20.5 t-80.5 -20.5t-70 -75.5t-49 -151.5t-18.5 -247.5q0 -152 18.5 -248t49 -151.5t70 -76t80.5 -20.5t81 20.5t71.5 76t50.5 151.5t19 248z" unicode="0"/>
|
|
31
|
+
<glyph glyph-name="one" d="M252 224h280v735q0 54 3 113l-165 -137q-16 -13 -32 -18.5t-31 -5.5q-26 0 -46.5 11.5t-30.5 24.5l-98 130l454 381h256v-1234h240v-224h-830v224z" unicode="1"/>
|
|
32
|
+
<glyph glyph-name="two" d="M602 1473q108 0 194.5 -31.5t147.5 -87.5t93.5 -133.5t32.5 -170.5q0 -80 -22.5 -148t-61.5 -129.5t-90.5 -119t-109.5 -116.5l-285 -292q55 16 108.5 25.5t100.5 9.5h272q50 0 79 -27.5t29 -72.5v-180h-1024v100q0 29 12 62t42 60l420 423q54 54 94 103t66 96.5t39 95 t13 100.5q0 87 -41.5 133.5t-126.5 46.5q-35 0 -64 -10t-52 -27t-39.5 -40t-26.5 -50q-16 -45 -40.5 -65t-66.5 -20q-10 0 -21.5 1t-23.5 3l-164 29q16 109 61.5 190t113 135t154.5 80.5t187 26.5z" unicode="2"/>
|
|
33
|
+
<glyph glyph-name="three" d="M630 1473q108 0 192 -30.5t142 -82.5t88 -120.5t30 -144.5q0 -69 -14 -121.5t-41.5 -91t-68 -65.5t-92.5 -45q242 -84 242 -329q0 -116 -42 -202t-112.5 -143t-163.5 -85.5t-194 -28.5q-104 0 -185 22.5t-144 70t-110.5 121.5t-82.5 176l138 56q18 8 35.5 11t34.5 3 q32 0 57.5 -12.5t38.5 -36.5q45 -83 95.5 -120.5t118.5 -37.5q52 0 90.5 17.5t64 45t38.5 62.5t13 71q0 47 -6.5 84.5t-36.5 64.5t-90.5 41.5t-168.5 14.5v214q91 0 147 14t86.5 38.5t40.5 59.5t10 77q0 86 -41.5 132.5t-126.5 46.5q-35 0 -64 -10t-52 -27t-39.5 -40 t-26.5 -50q-16 -45 -40.5 -65t-66.5 -20q-10 0 -21.5 1t-23.5 3l-164 29q16 109 61.5 190t113 135t154.5 80.5t187 26.5z" unicode="3"/>
|
|
34
|
+
<glyph glyph-name="four" d="M976 566h150v-174q0 -23 -15.5 -40t-44.5 -17h-90v-335h-270v335h-586q-29 0 -52.5 18t-29.5 45l-32 153l674 906h296v-891zM706 946q0 35 2.5 75.5t7.5 83.5l-385 -539h375v380z" unicode="4"/>
|
|
35
|
+
<glyph glyph-name="five" d="M998 1329q0 -32 -10 -58t-31.5 -45.5t-56.5 -30t-84 -10.5h-348l-41 -241q41 7 79 10.5t74 3.5q115 0 203 -35t148 -95.5t90.5 -142t30.5 -174.5q0 -117 -41.5 -213.5t-115.5 -166.5t-176.5 -108.5t-224.5 -38.5q-71 0 -135.5 15t-121 40.5t-104.5 59t-87 71.5l96 128 q15 20 35 30.5t43 10.5q30 0 56.5 -16.5t58 -36t73.5 -35.5t104 -16t106 20.5t71.5 56t40 83t12.5 101.5q0 106 -60 161.5t-170 55.5q-98 0 -192 -37l-192 52l124 729h746v-128z" unicode="5"/>
|
|
36
|
+
<glyph glyph-name="six" d="M688 923q79 0 156 -26t138 -80t98.5 -136.5t37.5 -194.5q0 -102 -38 -193.5t-107.5 -160t-167.5 -108.5t-217 -40q-122 0 -219 38.5t-164.5 107.5t-103 165t-35.5 211q0 109 42 217t124 220l328 443q22 30 66 50.5t100 20.5h276l-432 -516q-10 -11 -19.5 -22.5 t-18.5 -22.5q35 13 73.5 20t82.5 7zM364 464q0 -54 13 -97t40 -74t68 -47.5t97 -16.5q48 0 89.5 18t71.5 49.5t47.5 74t17.5 92.5q0 56 -16.5 100t-46.5 74t-72.5 46t-94.5 16q-47 0 -86 -16.5t-67.5 -47.5t-44.5 -74t-16 -97z" unicode="6"/>
|
|
37
|
+
<glyph glyph-name="seven" d="M1106 1457v-130q0 -55 -12 -89t-23 -58l-509 -1078q-20 -43 -59 -72.5t-103 -29.5h-226l520 1043q21 43 45.5 77t53.5 65h-641q-14 0 -26.5 5.5t-22 15t-15.5 22t-6 25.5v204h1024z" unicode="7"/>
|
|
38
|
+
<glyph glyph-name="eight" d="M580 -16q-116 0 -212 31t-164.5 87.5t-106 136.5t-37.5 178q0 59 13.5 111.5t43 96t76 77.5t112.5 57q-100 45 -148.5 125t-48.5 192q0 85 35 157.5t98 125.5t149.5 83.5t189.5 30.5t189.5 -30.5t149.5 -83.5t98 -125.5t35 -157.5q0 -112 -49 -192t-148 -125 q65 -23 111.5 -57t76 -77.5t43.5 -96t14 -111.5q0 -98 -37.5 -178t-106 -136.5t-164.5 -87.5t-212 -31zM580 218q52 0 90 16t62.5 43.5t36 65t11.5 80.5q0 47 -10 86t-33 66.5t-61.5 43t-95.5 15.5t-95.5 -15.5t-61.5 -43t-33 -66.5t-10 -86q0 -43 11.5 -80.5t36 -65 t62 -43.5t90.5 -16zM580 870q52 0 85 17t52 45t26 64t7 74q0 34 -9 66t-29.5 56.5t-53 39.5t-78.5 15q-47 0 -79 -15t-52.5 -39.5t-29.5 -56.5t-9 -66q0 -38 7 -74t26 -64t52 -45t85 -17z" unicode="8"/>
|
|
39
|
+
<glyph glyph-name="nine" d="M512 568q-71 0 -142 25.5t-128.5 77.5t-93.5 131t-36 187q0 99 36.5 187t104 154t161.5 104.5t210 38.5q118 0 211 -36t157.5 -101t99 -154.5t34.5 -197.5q0 -72 -11.5 -135t-32 -120.5t-49.5 -110t-65 -103.5l-314 -446q-20 -29 -63 -49t-97 -20h-286l462 552 q14 17 26.5 32.5t24.5 31.5q-45 -24 -98 -36t-111 -12zM830 1012q0 53 -15.5 93.5t-43 67.5t-66.5 41t-85 14q-47 0 -83.5 -16.5t-62 -45.5t-39 -68.5t-13.5 -85.5q0 -218 202 -218q99 0 152.5 59.5t53.5 158.5z" unicode="9"/>
|
|
40
|
+
<glyph glyph-name="colon" horiz-adv-x="552" unicode=":" d="M100 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5zM100 840q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54 t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5z"/>
|
|
41
|
+
<glyph glyph-name="semicolon" horiz-adv-x="552" unicode=";" d="M108 176q0 32 12 59.5t34.5 48t53 32.5t68.5 12q45 0 78 -15.5t55 -42t32.5 -61t10.5 -72.5q0 -50 -16 -106.5t-47.5 -113.5t-78.5 -112t-108 -100l-54 48q-11 11 -16.5 20.5t-5.5 23.5q0 10 7 21.5t17 20.5q12 12 28 29t32 38t29.5 46t20.5 53q-35 3 -63 17t-47.5 37 t-30.5 52.5t-11 64.5zM100 840q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5z"/>
|
|
42
|
+
<glyph glyph-name="less" d="M130 735l810 424v-215q0 -23 -12 -42.5t-38 -33.5l-284 -153q-26 -14 -55 -23.5t-61 -17.5q32 -8 61 -16.5t55 -22.5l284 -154q26 -14 38 -33t12 -42v-215l-810 423v121z" unicode="<"/>
|
|
43
|
+
<glyph glyph-name="equal" d="M124 599h910v-222h-910v222zM124 966h910v-223h-910v223z" unicode="="/>
|
|
44
|
+
<glyph glyph-name="greater" d="M1030 614l-810 -423v215q0 23 12 42t38 33l284 154q25 14 54.5 22.5t61.5 16.5q-32 8 -61.5 17.5t-54.5 23.5l-284 153q-26 14 -38 33.5t-12 42.5v215l810 -424v-121z" unicode=">"/>
|
|
45
|
+
<glyph glyph-name="question" horiz-adv-x="882" unicode="?" d="M38 1324q37 31 80.5 58t93.5 47.5t107.5 32t124.5 11.5q94 0 169.5 -25t128.5 -71.5t81.5 -112t28.5 -145.5q0 -77 -21 -132t-53.5 -96t-71 -70.5t-73 -55.5t-60 -51t-31.5 -56l-28 -140h-212l-22 161q-1 6 -1.5 12t-0.5 12q0 44 21 77t53 60.5t69 53t69 55t53 66 t21 86.5q0 60 -39.5 95.5t-108.5 35.5q-53 0 -88.5 -11t-61 -24.5t-44.5 -24.5t-38 -11q-43 0 -64 37zM222 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5 t-13.5 67.5z"/>
|
|
46
|
+
<glyph glyph-name="at" horiz-adv-x="1646" unicode="@" d="M1166 182q-32 0 -62 6.5t-56.5 21t-48 38t-34.5 57.5q-60 -66 -125 -94t-140 -28q-65 0 -114 22.5t-82 62.5t-49.5 95t-16.5 120q0 57 14.5 116t43.5 113.5t73.5 103t104.5 84t136.5 56.5t169.5 21q44 0 80 -3.5t67 -9.5t58.5 -15.5t56.5 -21.5l-98 -379q-15 -59 -15 -94 q0 -50 22.5 -69t60.5 -19q36 0 67.5 25.5t54.5 70.5t36.5 106t13.5 133q0 124 -37 218.5t-105.5 158.5t-165 97t-214.5 33q-129 0 -237 -48t-186 -131.5t-121.5 -195t-43.5 -238.5q0 -160 48.5 -281t134 -202t203 -121.5t254.5 -40.5q79 0 145.5 8.5t120.5 22t96 30.5t72 34 q22 12 41 12q35 0 49 -37l42 -108q-50 -33 -110.5 -61t-131 -49t-151.5 -32.5t-173 -11.5q-188 0 -346 58.5t-273.5 167.5t-180 264t-64.5 347q0 105 28 206t80 190t125 164t163 129.5t195 84.5t221 30q97 0 189.5 -22t175 -64t152 -103t119.5 -138.5t78 -171t28 -199.5 q0 -107 -32.5 -201.5t-91 -165t-139 -111.5t-175.5 -41zM762 374q22 0 43.5 7t40.5 23.5t34.5 43.5t25.5 67l70 273q-24 3 -48 3q-50 0 -96 -24t-80.5 -65t-55 -95.5t-20.5 -115.5q0 -59 22.5 -88t63.5 -29z"/>
|
|
47
|
+
<glyph glyph-name="A" horiz-adv-x="1474" unicode="A" d="M1476 0h-262q-44 0 -72.5 20.5t-39.5 52.5l-86 254h-554l-86 -254q-10 -28 -39 -50.5t-71 -22.5h-264l564 1457h346zM540 557h398l-134 399q-13 38 -30.5 89.5t-34.5 111.5q-16 -61 -33 -113t-32 -90z"/>
|
|
48
|
+
<glyph glyph-name="B" horiz-adv-x="1312" unicode="B" d="M120 0v1457h536q151 0 257 -28t173 -79t97.5 -124t30.5 -163q0 -49 -14 -94.5t-44 -85.5t-77 -72.5t-113 -56.5q144 -35 213 -113.5t69 -201.5q0 -93 -36 -173t-105.5 -139.5t-171.5 -93t-233 -33.5h-582zM458 618v-363h238q67 0 109.5 17t66.5 44t33 61t9 69 q0 40 -10.5 72t-36 54t-67.5 34t-106 12h-236zM458 844h176q56 0 101 8t76.5 28t48 55t16.5 88q0 52 -13 86.5t-40 55.5t-68.5 30t-98.5 9h-198v-360z"/>
|
|
49
|
+
<glyph glyph-name="C" horiz-adv-x="1314" unicode="C" d="M1099 377q12 0 24 -4.5t23 -15.5l134 -141q-88 -115 -220.5 -173.5t-313.5 -58.5q-166 0 -297.5 56.5t-223 156t-140.5 236t-49 296.5q0 163 56 299.5t156.5 235.5t240.5 154t309 55q82 0 154.5 -14.5t135.5 -40t116 -61t94 -78.5l-114 -153q-11 -14 -26 -25.5t-42 -11.5 q-18 0 -34 8t-34 19.5t-39.5 25t-51 25t-69 19.5t-92.5 8q-92 0 -168 -32.5t-130.5 -93t-85 -146.5t-30.5 -193q0 -112 30.5 -199t83 -146.5t122.5 -90.5t150 -31q46 0 84 4.5t70.5 15.5t62 28.5t59.5 43.5q12 10 26 16.5t29 6.5z"/>
|
|
50
|
+
<glyph glyph-name="D" horiz-adv-x="1484" unicode="D" d="M1442 729q0 -158 -54.5 -291.5t-153.5 -231t-238.5 -152t-309.5 -54.5h-566v1457h566q170 0 309.5 -55t238.5 -152t153.5 -230.5t54.5 -290.5zM1096 729q0 108 -28 195t-80.5 147.5t-128.5 93t-173 32.5h-226v-937h226q97 0 173 32.5t128.5 93t80.5 147.5t28 196z"/>
|
|
51
|
+
<glyph glyph-name="E" horiz-adv-x="1130" unicode="E" d="M1058 1457v-260h-598v-340h458v-250h-458v-347h598v-260h-938v1457h938z"/>
|
|
52
|
+
<glyph glyph-name="F" horiz-adv-x="1114" unicode="F" d="M1058 1457v-260h-598v-369h498v-261h-498v-567h-340v1457h938z"/>
|
|
53
|
+
<glyph glyph-name="G" horiz-adv-x="1424" unicode="G" d="M806 244q70 0 124 12t102 32v221h-144q-32 0 -50 17t-18 43v186h518v-615q-56 -41 -116.5 -70.5t-129 -48.5t-146 -28t-166.5 -9q-160 0 -296 56.5t-235.5 156t-156 236t-56.5 296.5q0 163 54 299.5t154.5 235.5t243 154t318.5 55q91 0 171 -15t147.5 -41t123.5 -62 t100 -78l-98 -149q-14 -21 -33.5 -33t-42.5 -12q-30 0 -62 20q-40 24 -75.5 41.5t-72.5 28.5t-78 16t-92 5q-95 0 -171 -33.5t-129.5 -94.5t-82.5 -146.5t-29 -190.5q0 -116 32 -206t88.5 -152t134 -94.5t169.5 -32.5z"/>
|
|
54
|
+
<glyph glyph-name="H" horiz-adv-x="1512" unicode="H" d="M1392 0h-340v616h-592v-616h-340v1457h340v-609h592v609h340v-1457z"/>
|
|
55
|
+
<glyph glyph-name="I" horiz-adv-x="640" unicode="I" d="M490 0h-340v1457h340v-1457z"/>
|
|
56
|
+
<glyph glyph-name="J" horiz-adv-x="860" unicode="J" d="M740 528q0 -122 -30.5 -222t-92 -171.5t-154.5 -111t-219 -39.5q-57 0 -112.5 6t-115.5 20l18 197q2 26 20.5 42t51.5 16q17 0 42 -5.5t60 -5.5q49 0 85.5 13.5t60.5 45t36 82.5t12 126v936h338v-929z"/>
|
|
57
|
+
<glyph glyph-name="K" horiz-adv-x="1428" unicode="K" d="M458 867h54q75 0 108 47l328 476q27 39 61.5 53t84.5 14h294l-432 -589q-23 -32 -48 -53t-51 -35q38 -14 69.5 -38.5t57.5 -65.5l440 -676h-302q-29 0 -49.5 4t-35.5 12t-26 19.5t-21 26.5l-330 507q-18 28 -45.5 39.5t-74.5 11.5h-82v-620h-338v1457h338v-590z"/>
|
|
58
|
+
<glyph glyph-name="L" horiz-adv-x="1038" unicode="L" d="M458 270h540v-270h-878v1457h338v-1187z"/>
|
|
59
|
+
<glyph glyph-name="M" horiz-adv-x="1878" unicode="M" d="M865 666q20 -38 38.5 -79t35.5 -84q17 44 36 85.5t39 80.5l374 736q10 19 20.5 29.5t23.5 15.5t29.5 6t38.5 1h258v-1457h-298v838q0 61 6 132l-386 -749q-18 -35 -48.5 -53t-69.5 -18h-46q-39 0 -69.5 18t-48.5 53l-388 750q4 -35 6 -69.5t2 -63.5v-838h-298v1457h258 q22 0 38.5 -1t29.5 -6t23.5 -15.5t20.5 -29.5l375 -739v0z"/>
|
|
60
|
+
<glyph glyph-name="N" horiz-adv-x="1512" unicode="N" d="M298 1457q22 0 37 -2t27 -7.5t23 -15.5t25 -27l692 -875q-4 42 -6 81.5t-2 74.5v771h298v-1457h-176q-39 0 -66 12t-52 44l-687 868q3 -38 5 -74.5t2 -68.5v-781h-298v1457h178v0z"/>
|
|
61
|
+
<glyph glyph-name="O" horiz-adv-x="1600" unicode="O" d="M1558 729q0 -158 -54.5 -294t-153.5 -236.5t-238.5 -157.5t-309.5 -57t-310 57t-239.5 157.5t-154 236.5t-54.5 294t54.5 294t154 236t239.5 157t310 57t309.5 -57.5t238.5 -157.5t153.5 -236t54.5 -293zM1212 729q0 108 -28 194.5t-80.5 146.5t-128.5 92t-173 32 q-98 0 -174.5 -32t-129 -92t-80.5 -146.5t-28 -194.5q0 -109 28 -195.5t80.5 -146.5t129 -91.5t174.5 -31.5q97 0 173 31.5t128.5 91.5t80.5 146.5t28 195.5z"/>
|
|
62
|
+
<glyph glyph-name="P" horiz-adv-x="1276" unicode="P" d="M458 487v-487h-338v1457h514q154 0 264.5 -36.5t182 -100.5t105.5 -151t34 -188q0 -109 -35 -200t-107 -156t-182.5 -101.5t-261.5 -36.5h-176zM458 742h176q132 0 190 63t58 176q0 50 -15 91t-45.5 70.5t-77 45.5t-110.5 16h-176v-462z"/>
|
|
63
|
+
<glyph glyph-name="Q" horiz-adv-x="1600" unicode="Q" d="M1558 729q0 -94 -19.5 -180.5t-56 -162.5t-90 -141t-121.5 -115l369 -403h-278q-60 0 -109 14.5t-87 58.5l-181 203q-44 -9 -89.5 -14t-93.5 -5q-170 0 -310 57t-239.5 157.5t-154 236.5t-54.5 294t54.5 294t154 236t239.5 157t310 57t309.5 -57.5t238.5 -157.5 t153.5 -236t54.5 -293zM1212 729q0 108 -28 194.5t-80.5 146.5t-128.5 92t-173 32q-98 0 -174.5 -32t-129 -92t-80.5 -146.5t-28 -194.5q0 -109 28 -195.5t80.5 -146.5t129 -91.5t174.5 -31.5q97 0 173 31.5t128.5 91.5t80.5 146.5t28 195.5z"/>
|
|
64
|
+
<glyph glyph-name="R" horiz-adv-x="1330" unicode="R" d="M458 539v-539h-338v1457h474q158 0 269.5 -32.5t182 -90.5t102.5 -137t32 -172q0 -71 -19 -134t-56.5 -116.5t-92 -95.5t-125.5 -69q34 -17 63.5 -42t51.5 -61l310 -507h-306q-85 0 -122 64l-242 423q-16 28 -37.5 40t-60.5 12h-86zM458 772h136q69 0 117.5 17.5 t79.5 48.5t45 72.5t14 89.5q0 96 -62.5 150t-193.5 54h-136v-432z"/>
|
|
65
|
+
<glyph glyph-name="S" horiz-adv-x="1084" unicode="S" d="M932 1161q-15 -24 -31.5 -36t-42.5 -12q-23 0 -49.5 14.5t-60 32.5t-76.5 32.5t-98 14.5q-95 0 -141.5 -40.5t-46.5 -109.5q0 -44 28 -73t73.5 -50t104 -38.5t119.5 -39t119.5 -50.5t104 -74t73.5 -109.5t28 -155.5q0 -101 -35 -189t-101.5 -153.5t-164 -103 t-221.5 -37.5q-68 0 -138.5 14t-136.5 39.5t-124 60.5t-101 78l100 158q11 18 31 29t43 11q30 0 60.5 -19t69 -42t88.5 -42t118 -19q92 0 143 40.5t51 128.5q0 51 -28 83t-73.5 53t-103.5 37t-119 35.5t-119 48t-103.5 75t-73.5 116t-28 171.5q0 82 33 160t97 139t157 97.5 t213 36.5q67 0 130.5 -10.5t120.5 -31t106.5 -49t88.5 -64.5z"/>
|
|
66
|
+
<glyph glyph-name="T" horiz-adv-x="1198" unicode="T" d="M1178 1457v-268h-410v-1189h-338v1189h-410v268h1158z"/>
|
|
67
|
+
<glyph glyph-name="U" horiz-adv-x="1452" unicode="U" d="M726 267q68 0 121.5 22.5t90.5 64.5t56.5 102.5t19.5 137.5v863h338v-863q0 -134 -43.5 -246t-124.5 -193t-197 -126t-261 -45q-146 0 -262 45t-197 126t-124 193t-43 246v863h338v-862q0 -77 19.5 -137.5t56.5 -103t90.5 -65t121.5 -22.5z"/>
|
|
68
|
+
<glyph glyph-name="V" horiz-adv-x="1474" unicode="V" d="M0 1457h272q44 0 72 -20t40 -53l282 -780q19 -51 38.5 -111t36.5 -126q14 66 32.5 126t36.5 111l280 780q10 28 39 50.5t71 22.5h274l-584 -1457h-306z"/>
|
|
69
|
+
<glyph glyph-name="W" horiz-adv-x="2142" unicode="W" d="M10 1457h284q44 0 73.5 -20t38.5 -53l200 -760q10 -37 20 -79t15 -88q10 47 22 88.5t23 78.5l236 760q9 28 38.5 50.5t71.5 22.5h100q44 0 72.5 -19.5t39.5 -53.5l234 -760q11 -35 23 -74.5t21 -84.5q8 44 16.5 84t17.5 75l200 760q8 29 38 51t72 22h266l-450 -1457h-306 l-274 903q-7 21 -14.5 46t-14.5 53q-7 -28 -14.5 -53t-14.5 -46l-278 -903h-306z"/>
|
|
70
|
+
<glyph glyph-name="X" horiz-adv-x="1424" unicode="X" d="M479 749l-451 708h338q33 0 48.5 -8.5t27.5 -28.5l290 -491q5 13 11.5 25t14.5 25l254 436q25 42 68 42h324l-457 -693l467 -764h-338q-33 0 -53.5 16t-32.5 38l-292 510q-8 -22 -18 -38l-272 -472q-12 -21 -32 -37.5t-50 -16.5h-316z"/>
|
|
71
|
+
<glyph glyph-name="Y" horiz-adv-x="1354" unicode="Y" d="M846 554v-554h-338v554l-528 903h298q44 0 70 -20.5t42 -52.5l206 -424q25 -51 46 -94t37 -85q15 43 36 86t45 93l204 424q6 13 16.5 26t24 23.5t31 17t38.5 6.5h300z"/>
|
|
72
|
+
<glyph glyph-name="Z" horiz-adv-x="1220" unicode="Z" d="M1186 1457v-122q0 -26 -8.5 -51t-23.5 -47l-684 -977h694v-260h-1124v130q0 23 8 45.5t22 41.5l686 980h-660v260h1090z"/>
|
|
73
|
+
<glyph glyph-name="bracketleft" horiz-adv-x="600" unicode="[" d="M90 -324v1881h448v-118q0 -31 -22.5 -53t-57.5 -22h-110v-1495h110q35 0 57.5 -22t22.5 -52v-119h-448z"/>
|
|
74
|
+
<glyph glyph-name="backslash" horiz-adv-x="808" unicode="\" d="M-36 1497h132q54 0 95 -27t61 -78l568 -1491h-132q-24 0 -48.5 7t-46 21t-39.5 35t-28 48z"/>
|
|
75
|
+
<glyph glyph-name="bracketright" horiz-adv-x="600" unicode="]" d="M62 1557h448v-1881h-448v119q0 30 22.5 52t57.5 22h110v1495h-110q-35 0 -57.5 22t-22.5 53v118z"/>
|
|
76
|
+
<glyph glyph-name="asciicircum" d="M1062 768h-228q-27 0 -45 13.5t-29 34.5l-124 237q-17 32 -31.5 61t-25.5 58q-10 -29 -23 -58t-30 -61l-120 -237q-11 -20 -29.5 -34t-48.5 -14h-240l386 689h202z" unicode="^"/>
|
|
77
|
+
<glyph glyph-name="underscore" horiz-adv-x="788" unicode="_" d="M788 -108v-194h-788v194h788z"/>
|
|
78
|
+
<glyph glyph-name="grave" horiz-adv-x="660" unicode="`" d="M252 1473q47 0 70 -15.5t40 -44.5l136 -245h-176q-35 0 -56 9.5t-44 32.5l-260 263h290z"/>
|
|
79
|
+
<glyph glyph-name="a" horiz-adv-x="1078" unicode="a" d="M836 0q-44 0 -66.5 12t-37.5 50l-22 57q-39 -33 -75 -58t-74.5 -42.5t-82 -26t-96.5 -8.5q-71 0 -129 18.5t-98.5 54.5t-62.5 89.5t-22 123.5q0 55 28 113t97 105.5t186 79.5t295 36v44q0 91 -37.5 131.5t-106.5 40.5q-55 0 -90 -12t-62.5 -27t-53.5 -27t-62 -12 q-32 0 -54.5 15.5t-35.5 38.5l-56 97q94 83 208.5 123.5t245.5 40.5q94 0 169.5 -30.5t128 -85t80.5 -129.5t28 -164v-648h-142zM480 189q60 0 105 21t91 68v144q-93 -4 -153 -16t-95 -30t-48.5 -41t-13.5 -50q0 -53 29 -74.5t85 -21.5z"/>
|
|
80
|
+
<glyph glyph-name="b" d="M120 0v1497h310v-570q58 57 131.5 91.5t172.5 34.5q81 0 150 -35t119 -102.5t78.5 -165.5t28.5 -223q0 -117 -32.5 -216t-91 -172t-140 -114t-180.5 -41q-46 0 -82.5 9t-67 25.5t-56 39.5t-49.5 50l-11 -52q-7 -32 -25.5 -44t-48.5 -12h-206zM626 820q-34 0 -61.5 -6.5 t-51 -18.5t-43.5 -30.5t-40 -42.5v-440q35 -39 76 -54.5t86 -15.5q43 0 79 17t62.5 54.5t41.5 97.5t15 146q0 82 -12 138t-33.5 90.5t-51.5 49.5t-67 15z" unicode="b"/>
|
|
81
|
+
<glyph glyph-name="c" horiz-adv-x="972" unicode="c" d="M868 791q-14 -17 -27 -27t-37 -10q-23 0 -41.5 11t-41.5 24.5t-54 24.5t-77 11q-57 0 -98.5 -21t-68.5 -60t-40 -95.5t-13 -127.5q0 -149 57.5 -229t158.5 -80q54 0 85.5 13.5t53.5 30t40.5 30.5t46.5 14q37 0 56 -27l90 -111q-48 -55 -101 -89.5t-108.5 -54t-111.5 -27 t-109 -7.5q-95 0 -181.5 36t-152 104.5t-104 168.5t-38.5 228q0 112 33.5 209.5t99 169t162 112.5t223.5 41q122 0 214 -39t166 -114z"/>
|
|
82
|
+
<glyph glyph-name="d" d="M848 0q-29 0 -48.5 13t-27.5 39l-24 79q-31 -33 -65 -60t-73.5 -46.5t-85 -30t-98.5 -10.5q-81 0 -150 36t-119 104t-78.5 166.5t-28.5 224.5q0 116 32 215.5t90.5 172t140.5 113.5t181 41q80 0 135.5 -23.5t100.5 -61.5v525h310v-1497h-192zM534 222q34 0 61.5 6.5 t50.5 18.5t43.5 30t40.5 42v440q-36 39 -76.5 54.5t-85.5 15.5q-43 0 -79 -17t-62.5 -54.5t-41.5 -97.5t-15 -145q0 -82 12 -138t33.5 -90.5t51.5 -49.5t67 -15z" unicode="d"/>
|
|
83
|
+
<glyph glyph-name="e" horiz-adv-x="1088" unicode="e" d="M564 1053q103 0 188.5 -32t147 -93t96 -149.5t34.5 -200.5q0 -35 -3 -57t-11 -35t-21.5 -18t-34.5 -5h-598q15 -130 79 -188.5t165 -58.5q54 0 93 13t69.5 29t56 29t53.5 13q37 0 56 -27l90 -111q-48 -55 -103.5 -89.5t-114 -54t-117 -27t-111.5 -7.5q-109 0 -204.5 35.5 t-167 105.5t-113 174t-41.5 242q0 104 35.5 197t102 163t161 111t213.5 41zM570 839q-89 0 -139 -50.5t-66 -145.5h387q0 37 -9.5 72t-31 62.5t-56.5 44.5t-85 17z"/>
|
|
84
|
+
<glyph glyph-name="f" horiz-adv-x="724" unicode="f" d="M166 0v824l-68 14q-35 8 -56.5 25t-21.5 50v122h146v59q0 89 28.5 161t82 123t130.5 79t175 28q38 0 70.5 -4.5t67.5 -14.5l-6 -151q-1 -16 -8.5 -26.5t-18.5 -17t-24.5 -9.5t-26.5 -3q-41 0 -73 -8t-53.5 -28.5t-32.5 -54t-11 -84.5v-49h244v-212h-234v-823h-310z"/>
|
|
85
|
+
<glyph glyph-name="g" horiz-adv-x="1046" unicode="g" d="M486 1055q66 0 124.5 -13t108.5 -37h313v-113q0 -26 -14.5 -41t-49.5 -23l-76 -17q14 -45 14 -93q0 -78 -32.5 -140t-89 -105.5t-133.5 -67t-165 -23.5q-49 0 -92 6q-34 -20 -34 -46t27.5 -37.5t72.5 -16t103 -6t118 -7t118 -18.5t103 -42t72.5 -77.5t27.5 -123.5 q0 -70 -34 -137t-100 -119t-162 -83.5t-220 -31.5q-122 0 -210.5 23t-147 60.5t-86.5 86.5t-28 102q0 69 42 116.5t115 74.5q-35 23 -56 59t-21 91q0 23 8 48.5t25 49.5t43 46t62 39q-81 43 -127.5 114t-46.5 165q0 78 33 140.5t90.5 106t135.5 67t169 23.5zM716 -38 q0 25 -15.5 40t-42 24t-62 13t-76.5 6t-85 3.5t-87 6.5q-29 -20 -47.5 -44.5t-18.5 -55.5q0 -22 9.5 -40t33.5 -31t64.5 -20.5t102.5 -7.5q67 0 110 8t68.5 22t35.5 33.5t10 42.5zM486 573q77 0 111.5 38.5t34.5 99.5q0 63 -34.5 99t-111.5 36t-111.5 -36t-34.5 -99 q0 -30 8.5 -55t26.5 -43.5t45.5 -29t65.5 -10.5z"/>
|
|
86
|
+
<glyph glyph-name="h" d="M120 0v1497h310v-551q56 48 121.5 77.5t156.5 29.5q85 0 150.5 -29.5t110.5 -82t68 -125t23 -157.5v-659h-310v659q0 76 -35 118.5t-103 42.5q-51 0 -96 -22t-86 -59v-739h-310z" unicode="h"/>
|
|
87
|
+
<glyph glyph-name="i" horiz-adv-x="570" unicode="i" d="M440 1037v-1037h-310v1037h310zM476 1321q0 -37 -15 -69.5t-41 -57t-60.5 -39t-73.5 -14.5q-38 0 -71 14.5t-58.5 39t-40 57t-14.5 69.5q0 38 14.5 71t40 58t58.5 39t71 14q39 0 73.5 -14t60.5 -39t41 -58t15 -71z"/>
|
|
88
|
+
<glyph glyph-name="j" horiz-adv-x="566" unicode="j" d="M440 1037v-1039q0 -73 -18.5 -137.5t-61 -113t-112 -76.5t-172.5 -28q-38 0 -70.5 4.5t-67.5 13.5l10 163q2 21 14 31t48 10t59 6t36.5 21t19 40.5t5.5 65.5v1039h310zM476 1321q0 -37 -15 -69.5t-41 -57t-60.5 -39t-73.5 -14.5q-38 0 -71 14.5t-58.5 39t-40 57 t-14.5 69.5q0 38 14.5 71t40 58t58.5 39t71 14q39 0 73.5 -14t60.5 -39t41 -58t15 -71z"/>
|
|
89
|
+
<glyph glyph-name="k" horiz-adv-x="1152" unicode="k" d="M430 1497v-839h46q29 0 44.5 8t29.5 29l196 292q17 26 40.5 38t59.5 12h284l-268 -369q-19 -26 -41.5 -46t-48.5 -36q45 -34 78 -90l292 -496h-280q-35 0 -60.5 11.5t-41.5 40.5l-196 367q-14 25 -29 32.5t-45 7.5h-60v-459h-310v1497h310z"/>
|
|
90
|
+
<glyph glyph-name="l" horiz-adv-x="570" unicode="l" d="M440 1497v-1497h-310v1497h310z"/>
|
|
91
|
+
<glyph glyph-name="m" horiz-adv-x="1722" unicode="m" d="M120 0v1037h192q29 0 48.5 -13t27.5 -39l17 -56q26 27 54 49.5t60.5 39t70 26t82.5 9.5q94 0 155.5 -48.5t93.5 -129.5q26 48 63.5 82t81 55t92 31t96.5 10q89 0 158 -26.5t115.5 -77t70.5 -124t24 -166.5v-659h-310v659q0 161 -138 161q-63 0 -104.5 -41.5t-41.5 -119.5 v-659h-310v659q0 89 -35 125t-103 36q-42 0 -79.5 -19t-70.5 -51v-750h-310z"/>
|
|
92
|
+
<glyph glyph-name="n" d="M120 0v1037h192q29 0 48.5 -13t27.5 -39l18 -60q30 28 62 52t68.5 40.5t79 26t92.5 9.5q85 0 150.5 -29.5t110.5 -82t68 -125t23 -157.5v-659h-310v659q0 76 -35 118.5t-103 42.5q-51 0 -96 -22t-86 -59v-739h-310z" unicode="n"/>
|
|
93
|
+
<glyph glyph-name="o" d="M582 1053q118 0 215 -37t166.5 -106t108 -167.5t38.5 -221.5q0 -124 -38.5 -223.5t-108 -169t-166.5 -107t-215 -37.5q-119 0 -216.5 37.5t-168 107t-109 169t-38.5 223.5q0 123 38.5 221.5t109 167.5t168 106t216.5 37zM582 214q107 0 157.5 75.5t50.5 229.5t-50.5 229 t-157.5 75q-110 0 -161 -75t-51 -229t51 -229.5t161 -75.5z" unicode="o"/>
|
|
94
|
+
<glyph glyph-name="p" horiz-adv-x="1156" unicode="p" d="M120 -329v1366h192q29 0 48.5 -13t27.5 -39l23 -76q30 33 64.5 60t74 46.5t85 30.5t99.5 11q81 0 150 -36t119 -104t78.5 -166.5t28.5 -223.5q0 -117 -32.5 -216t-91 -172t-140 -114t-180.5 -41q-81 0 -136 23t-100 62v-398h-310zM626 820q-34 0 -61.5 -6.5t-51 -18.5 t-43.5 -30.5t-40 -42.5v-440q35 -39 76 -54.5t86 -15.5q43 0 79 17t62.5 54.5t41.5 97.5t15 146q0 82 -12 138t-33.5 90.5t-51.5 49.5t-67 15z"/>
|
|
95
|
+
<glyph glyph-name="q" d="M1040 1037v-1366h-310v442q-59 -58 -132 -93.5t-172 -35.5q-81 0 -150 36t-119 104t-78.5 166.5t-28.5 224.5q0 116 32 215.5t90.5 172t140.5 113.5t181 41q47 0 85 -8t69.5 -23t58.5 -36t52 -46l13 41q18 52 76 52h192zM534 222q34 0 61.5 6.5t50.5 18.5t43.5 30 t40.5 42v440q-36 38 -76.5 54t-85.5 16q-43 0 -79 -17t-62.5 -54.5t-41.5 -97.5t-15 -145q0 -82 12 -138t33.5 -90.5t51.5 -49.5t67 -15z" unicode="q"/>
|
|
96
|
+
<glyph glyph-name="r" horiz-adv-x="826" unicode="r" d="M120 0v1037h184q23 0 38.5 -4t26 -12.5t16 -22.5t9.5 -34l17 -97q57 88 128 139t155 51q71 0 114 -34l-40 -228q-4 -21 -16 -29.5t-32 -8.5q-17 0 -40 4.5t-58 4.5q-122 0 -192 -130v-636h-310z"/>
|
|
97
|
+
<glyph glyph-name="s" horiz-adv-x="880" unicode="s" d="M754 810q-12 -19 -25.5 -27t-34.5 -8q-22 0 -44 9.5t-47.5 20.5t-57.5 20.5t-73 9.5q-59 0 -90.5 -22.5t-31.5 -62.5q0 -29 20.5 -48t54.5 -33.5t77 -27.5t88 -29t88 -37.5t77 -53t54.5 -76.5t20.5 -108q0 -77 -28 -142t-83.5 -112t-137 -73t-187.5 -26q-53 0 -106 10 t-102.5 27t-91.5 40.5t-72 50.5l72 114q13 20 31 31.5t47 11.5q27 0 48.5 -12t46.5 -26t58.5 -26t84.5 -12q36 0 61 7.5t40 20.5t22 29t7 33q0 31 -21 51t-55 34.5t-77.5 27t-88.5 28.5t-88.5 38.5t-77.5 57t-55 84.5t-21 121q0 66 25.5 125.5t76.5 104.5t128 71.5t180 26.5 q56 0 108.5 -10t98.5 -28t84 -42.5t67 -53.5z"/>
|
|
98
|
+
<glyph glyph-name="t" horiz-adv-x="800" unicode="t" d="M484 -16q-74 0 -130.5 21.5t-95 61t-58.5 95.5t-20 125v536h-88q-24 0 -41 15.5t-17 45.5v121l165 32l61 253q12 48 68 48h162v-303h252v-212h-252v-515q0 -36 17.5 -59.5t50.5 -23.5q17 0 28.5 3.5t20 8t16 8t17.5 3.5q14 0 22.5 -6.5t17.5 -20.5l94 -147 q-60 -45 -135 -67.5t-155 -22.5z"/>
|
|
99
|
+
<glyph glyph-name="u" d="M410 1037v-658q0 -77 35 -119t103 -42q51 0 95.5 21t86.5 59v739h310v-1037h-192q-58 0 -76 52l-19 60q-30 -29 -62 -52.5t-68.5 -40t-78.5 -26t-92 -9.5q-85 0 -150.5 29.5t-110.5 82.5t-68 125t-23 158v658h310z" unicode="u"/>
|
|
100
|
+
<glyph glyph-name="v" horiz-adv-x="1106" unicode="v" d="M694 0h-282l-402 1037h258q33 0 55.5 -15.5t30.5 -38.5l144 -465q17 -57 32.5 -111t26.5 -108q11 54 27 108t34 111l150 465q8 23 30 38.5t52 15.5h246z"/>
|
|
101
|
+
<glyph glyph-name="w" horiz-adv-x="1626" unicode="w" d="M0 1037h248q33 0 57 -15t29 -39l104 -465q12 -53 22 -103t18 -99q14 49 29.5 98.5t30.5 103.5l130 466q6 23 29 38.5t53 15.5h138q33 0 56.5 -15.5t29.5 -38.5l124 -466q14 -53 28.5 -103t27.5 -101q8 50 19.5 99.5t24.5 104.5l110 465q5 24 28.5 39t53.5 15h236 l-322 -1037h-252q-20 0 -34 12t-22 40l-148 517q-10 35 -19 69t-16 68q-7 -35 -15.5 -69.5t-19.5 -69.5l-150 -515q-15 -52 -66 -52h-240z"/>
|
|
102
|
+
<glyph glyph-name="x" horiz-adv-x="1146" unicode="x" d="M368 536l-334 501h298q33 0 48.5 -8.5t27.5 -28.5l185 -307q6 18 15 35t20 36l132 231q13 23 29 32.5t39 9.5h284l-334 -487l348 -550h-298q-33 0 -53 16t-33 38l-185 318q-5 -17 -12 -32t-15 -28l-152 -258q-12 -21 -32 -37.5t-50 -16.5h-276z"/>
|
|
103
|
+
<glyph glyph-name="y" horiz-adv-x="1106" unicode="y" d="M544 -269q-14 -31 -34 -45.5t-64 -14.5h-232l200 420l-414 946h274q36 0 56 -16t28 -38l170 -447q24 -62 39 -124q10 32 22 63t23 63l154 445q8 23 31.5 38.5t50.5 15.5h250z"/>
|
|
104
|
+
<glyph glyph-name="z" horiz-adv-x="954" unicode="z" d="M894 913q0 -32 -12 -61t-28 -50l-433 -572h463v-230h-820v126q0 19 10.5 47.5t29.5 54.5l437 579h-449v230h802v-124z"/>
|
|
105
|
+
<glyph glyph-name="braceleft" horiz-adv-x="600" unicode="{" d="M120 397q0 60 -23 96.5t-83 36.5v173q30 0 50.5 10t32.5 27.5t17.5 42t5.5 53.5q0 44 -5.5 89t-12.5 90t-12.5 91t-5.5 92q0 81 23.5 147.5t73 113.5t125.5 72.5t182 25.5h52v-134q0 -16 -7 -27t-17 -18t-21 -10.5t-19 -3.5q-63 0 -92.5 -39t-29.5 -108q0 -55 4.5 -104 t9.5 -94.5t9.5 -89.5t4.5 -89q0 -38 -10 -73t-30.5 -64.5t-50.5 -52t-69 -34.5q39 -12 69 -34t50.5 -51.5t30.5 -65t10 -72.5q0 -45 -4.5 -89t-9.5 -89.5t-9.5 -94.5t-4.5 -104q0 -69 29.5 -108t92.5 -39q8 0 19 -3.5t21 -10.5t17 -18t7 -27v-134h-52q-106 0 -182 25.5 t-125.5 73t-73 113.5t-23.5 147q0 46 5.5 92t12.5 91t12.5 90t5.5 89z"/>
|
|
106
|
+
<glyph glyph-name="bar" horiz-adv-x="600" unicode="|" d="M180 1557h240v-1886h-240v1886z"/>
|
|
107
|
+
<glyph glyph-name="braceright" horiz-adv-x="600" unicode="}" d="M480 397q0 -44 5.5 -89t12.5 -90t12.5 -91t5.5 -92q0 -81 -23.5 -147t-73 -113.5t-125.5 -73t-182 -25.5h-52v134q0 16 7 27t17 18t21 10.5t19 3.5q63 0 92.5 39t29.5 108q0 55 -4.5 104t-9.5 94.5t-9.5 89.5t-4.5 89q0 37 10 72.5t30.5 65t50 51.5t68.5 34 q-39 12 -68.5 34.5t-50 52t-30.5 64.5t-10 73q0 45 4.5 89t9.5 89.5t9.5 94.5t4.5 104q0 69 -29.5 108t-92.5 39q-8 0 -19 3.5t-21 10.5t-17 18t-7 27v134h52q106 0 182 -25.5t125.5 -72.5t73 -113.5t23.5 -147.5q0 -46 -5.5 -92t-12.5 -91t-12.5 -90t-5.5 -89 q0 -29 5.5 -53.5t17.5 -42t32.5 -27.5t50.5 -10v-173q-60 0 -83 -36.5t-23 -96.5z"/>
|
|
108
|
+
<glyph glyph-name="asciitilde" d="M730 677q48 0 74 31t26 91h250q0 -85 -22.5 -153t-64.5 -115.5t-103.5 -73t-139.5 -25.5q-53 0 -99.5 11.5t-86.5 26t-73.5 26t-60.5 11.5q-48 0 -74 -31t-26 -91h-250q0 85 22.5 153t64.5 115.5t103.5 73t139.5 25.5q53 0 99.5 -11.5t86.5 -26t73.5 -26t60.5 -11.5z" unicode="~"/>
|
|
109
|
+
<glyph glyph-name="uni00A0" horiz-adv-x="386" unicode=" "/>
|
|
110
|
+
<glyph glyph-name="exclamdown" horiz-adv-x="752" unicode="¡" d="M234 -329v527q0 92 11 183t29 184h210q18 -93 29 -184t11 -183v-527h-290zM200 882q0 36 13.5 67.5t37 54.5t55.5 36t70 13q37 0 69 -13t56 -36t37.5 -54.5t13.5 -67.5t-13.5 -67t-37.5 -54t-56 -36.5t-69 -13.5q-38 0 -70 13.5t-55.5 36.5t-37 54t-13.5 67z"/>
|
|
111
|
+
<glyph glyph-name="cent" d="M518 -6q-86 16 -161 58t-130.5 109t-87 157t-31.5 201q0 108 33.5 202.5t99.5 165.5t162.5 114t222.5 49l14 140q3 27 25 50t57 23h114l-23 -227q75 -17 138 -51t117 -85l-80 -105q-13 -17 -25.5 -26t-36.5 -9q-15 0 -29 5t-30 12.5t-35 16t-42 16.5l-61 -598 q43 6 72 19.5t51.5 27t41.5 23.5t42 10q18 0 32.5 -7t23.5 -18l86 -107q-40 -44 -84.5 -74.5t-91.5 -51t-96.5 -31.5t-99.5 -15l-12 -126q-3 -27 -25 -50t-57 -23h-114zM414 519q0 -108 33 -179t96 -104l59 584q-98 -20 -143 -98t-45 -203z" unicode="¢"/>
|
|
112
|
+
<glyph glyph-name="sterling" d="M28 685q0 40 25.5 69.5t76.5 29.5h84v216q0 95 29 180.5t88.5 150.5t149 103.5t211.5 38.5q81 0 146.5 -20.5t117 -57t90.5 -86t68 -106.5l-124 -78q-37 -20 -71 -20q-46 0 -83 38q-38 39 -69 58t-75 19q-81 0 -120.5 -56.5t-39.5 -162.5v-217h380v-118q0 -15 -6.5 -28.5 t-18 -24.5t-27 -17.5t-34.5 -6.5h-294v-156q0 -60 -22.5 -108.5t-60.5 -90.5q45 10 90 15.5t91 5.5h502v-127q0 -22 -9.5 -45t-26.5 -41.5t-41.5 -30t-54.5 -11.5h-954v186q33 6 63.5 19t53.5 33t37 48t14 65v238h-186v96z" unicode="£"/>
|
|
113
|
+
<glyph glyph-name="currency" d="M200 674q0 49 11.5 94t32.5 85l-154 153l156 148l150 -148q41 22 87 34t97 12q48 0 92.5 -11.5t84.5 -32.5l153 152l154 -150l-153 -151q23 -41 36 -87.5t13 -97.5q0 -49 -11.5 -94t-33.5 -85l155 -152l-156 -149l-151 148q-41 -22 -87 -34t-96 -12q-48 0 -92.5 11 t-84.5 31l-153 -150l-154 150l152 150q-23 41 -35.5 88t-12.5 98zM428 674q0 -32 12 -61t32.5 -51t48 -34.5t59.5 -12.5t60 12.5t49 34.5t33 51t12 61q0 34 -12 63t-33 51t-49 34.5t-60 12.5t-59.5 -12.5t-48 -34.5t-32.5 -51t-12 -63z" unicode="¤"/>
|
|
114
|
+
<glyph glyph-name="yen" d="M122 639h248l-390 818h258q44 0 71 -19.5t41 -53.5l166 -425q21 -54 37.5 -98.5t26.5 -88.5q9 45 24.5 89.5t35.5 97.5l164 425q11 29 39.5 51t70.5 22h260l-391 -818h249v-165h-300v-88h300v-165h-300v-221h-310v221h-300v165h300v88h-300v165z" unicode="¥"/>
|
|
115
|
+
<glyph glyph-name="brokenbar" horiz-adv-x="600" unicode="¦" d="M180 1557h240v-819h-240v819zM180 490h240v-819h-240v819z"/>
|
|
116
|
+
<glyph glyph-name="section" horiz-adv-x="1014" unicode="§" d="M834 1228q-12 -19 -25.5 -26.5t-34.5 -7.5q-22 0 -44 9t-47.5 20.5t-57.5 20.5t-73 9q-72 0 -107 -27t-35 -69q0 -26 23 -47t61 -40t86.5 -38t99.5 -41t99.5 -49t86.5 -62.5t61 -81.5t23 -105q0 -80 -37 -146.5t-119 -108.5q43 -37 69.5 -85.5t26.5 -116.5 q0 -77 -28 -142t-83.5 -112t-137 -73t-187.5 -26q-53 0 -106 10t-102.5 27t-91.5 40.5t-72 50.5l72 114q13 20 31 31.5t47 11.5q27 0 48.5 -12t48 -26t62 -26t91.5 -12q65 0 101.5 23.5t36.5 70.5q0 37 -23.5 62.5t-61.5 45.5t-87 37t-100 37t-100 45t-87 60.5t-61.5 84.5 t-23.5 117q0 78 39 141t119 101q-44 40 -71 94t-27 132q0 66 25.5 125.5t76.5 104.5t128 71.5t180 26.5q56 0 108.5 -10t98.5 -28t84 -42.5t67 -53.5zM350 724q0 -35 24 -61t63 -47.5t89 -41t102 -41.5q28 17 40 41t12 51q0 36 -24 61.5t-63 46.5t-88.5 40t-100.5 42 q-29 -19 -41.5 -40.5t-12.5 -50.5z"/>
|
|
117
|
+
<glyph glyph-name="dieresis" horiz-adv-x="660" unicode="¨" d="M298 1295q0 -32 -13 -60t-35.5 -48.5t-52 -32.5t-63.5 -12q-32 0 -60.5 12t-50 32.5t-34.5 48.5t-13 60q0 33 13 62t34.5 50.5t50 34t60.5 12.5q34 0 63.5 -12.5t52 -34t35.5 -50.5t13 -62zM684 1295q0 -32 -12.5 -60t-34.5 -48.5t-51.5 -32.5t-63.5 -12q-33 0 -62 12 t-51 32.5t-34.5 48.5t-12.5 60q0 33 12.5 62t34.5 50.5t51 34t62 12.5q34 0 63.5 -12.5t51.5 -34t34.5 -50.5t12.5 -62z"/>
|
|
118
|
+
<glyph glyph-name="copyright" horiz-adv-x="1570" unicode="©" d="M984 542q12 0 23 -6t19 -15l102 -105q-54 -75 -141.5 -113.5t-202.5 -38.5q-101 0 -182.5 36.5t-138.5 100t-88 148.5t-31 183q0 102 36 187.5t98.5 148t146.5 97t181 34.5q115 0 198 -40t134 -100l-82 -109q-8 -8 -20 -18.5t-32 -10.5t-34.5 9t-32.5 20t-44.5 20 t-70.5 9q-101 0 -152.5 -66.5t-51.5 -180.5q0 -60 13.5 -106t37.5 -77t57.5 -47t73.5 -16q47 0 74.5 8.5t45.5 18.5t31 19t33 10zM40 729q0 103 26.5 198t75 177.5t116.5 150.5t151 116.5t177.5 75t197.5 26.5t198.5 -26.5t178 -75t151 -116.5t117 -150.5t75 -177.5 t26.5 -198q0 -102 -26.5 -197t-75 -177.5t-117 -150.5t-151 -116.5t-178 -75t-198.5 -26.5q-102 0 -197 26.5t-178 75t-151 116.5t-116.5 150.5t-75 177t-26.5 197.5zM206 729q0 -127 44.5 -237t122.5 -191.5t183.5 -128t227.5 -46.5q123 0 229.5 46.5t185.5 128t124 191.5 t45 237q0 85 -20.5 163t-58 145.5t-90.5 123t-118 94.5t-140 60.5t-157 21.5q-122 0 -227.5 -47t-183.5 -129.5t-122.5 -193.5t-44.5 -238z"/>
|
|
119
|
+
<glyph glyph-name="ordfeminine" horiz-adv-x="706" unicode="ª" d="M646 842h-104q-30 0 -45.5 8t-28.5 34l-12 27q-23 -20 -44 -34t-43.5 -24t-48 -14.5t-56.5 -4.5q-91 0 -142.5 46t-51.5 130q0 32 15.5 66.5t55.5 64t110 49.5t179 23v16q0 46 -19.5 62.5t-52.5 16.5q-30 0 -49 -6t-34.5 -13t-31.5 -13t-41 -6q-23 0 -38 13t-26 27 l-38 69q59 53 131 76.5t155 23.5q59 0 107 -19t82 -53t52.5 -79.5t18.5 -98.5v-387zM336 980q27 0 48.5 8.5t45.5 31.5v63q-47 -2 -76 -7.5t-45 -14t-21.5 -19.5t-5.5 -22q0 -23 12 -31.5t42 -8.5z"/>
|
|
120
|
+
<glyph glyph-name="guillemotleft" horiz-adv-x="1012" unicode="«" d="M110 525v39l262 402l102 -46q24 -11 35.5 -27t11.5 -36q0 -24 -15 -51l-120 -215q-17 -30 -36 -47q18 -16 36 -46l120 -216q15 -26 15 -50q0 -20 -11.5 -36t-35.5 -27l-102 -46zM470 525v39l262 402l102 -46q24 -11 35.5 -27t11.5 -36q0 -24 -15 -51l-120 -215 q-17 -30 -36 -47q18 -16 36 -46l120 -216q15 -26 15 -50q0 -20 -11.5 -36t-35.5 -27l-102 -46z"/>
|
|
121
|
+
<glyph glyph-name="logicalnot" d="M124 783h910v-501h-262v279h-648v222z" unicode="¬"/>
|
|
122
|
+
<glyph glyph-name="uni00AD" horiz-adv-x="740" unicode="" d="M100 733h540v-250h-540v250z"/>
|
|
123
|
+
<glyph glyph-name="registered" horiz-adv-x="1570" unicode="®" d="M40 729q0 103 26.5 198t75 177.5t116.5 150.5t151 116.5t177.5 75t197.5 26.5t198.5 -26.5t178 -75t151 -116.5t117 -150.5t75 -177.5t26.5 -198q0 -102 -26.5 -197t-75 -177.5t-117 -150.5t-151 -116.5t-178 -75t-198.5 -26.5q-102 0 -197 26.5t-178 75t-151 116.5 t-116.5 150.5t-75 177t-26.5 197.5zM206 729q0 -127 44.5 -237t122.5 -191.5t183.5 -128t227.5 -46.5q115 0 215.5 41t178.5 114h-216q-55 0 -76 39l-92 231q-11 17 -23.5 24.5t-36.5 7.5h-32v-302h-268v901h352q100 0 172.5 -18t119 -52t68.5 -84t22 -114q0 -42 -10 -80.5 t-30.5 -71t-53 -58.5t-77.5 -43q29 -15 49 -38.5t36 -56.5l124 -257q76 81 119 188t43 232q0 85 -20.5 163t-58 145.5t-90.5 123t-118 94.5t-140 60.5t-157 21.5q-122 0 -227.5 -47t-183.5 -129.5t-122.5 -193.5t-44.5 -238zM702 767h64q48 0 75.5 7.5t41.5 21.5t17.5 35.5 t3.5 48.5q0 26 -3.5 45.5t-15.5 33t-35.5 20.5t-63.5 7h-84v-219z"/>
|
|
124
|
+
<glyph glyph-name="macron" horiz-adv-x="660" unicode="¯" d="M20 1391h620v-190h-620v190z"/>
|
|
125
|
+
<glyph glyph-name="degree" horiz-adv-x="810" unicode="°" d="M40 1119q0 74 28 139t77 113t115.5 76t143.5 28t144 -28t116.5 -76t77.5 -113t28 -139q0 -72 -28 -136.5t-77.5 -112.5t-116.5 -76.5t-144 -28.5t-143.5 28.5t-115.5 76.5t-77 112.5t-28 136.5zM254 1117q0 -33 11 -61.5t31 -50t47.5 -33.5t60.5 -12t60.5 12t47.5 33.5 t31 50t11 61.5q0 34 -11 63.5t-31 51t-47.5 34t-60.5 12.5t-60.5 -12.5t-47.5 -34t-31 -51t-11 -63.5z"/>
|
|
126
|
+
<glyph glyph-name="plusminus" d="M704 1272v-336h370v-223h-370v-319h-252v319h-368v223h368v336h252zM84 302h990v-222h-990v222z" unicode="±"/>
|
|
127
|
+
<glyph glyph-name="twosuperior" horiz-adv-x="668" unicode="²" d="M352 1658q64 0 112.5 -18t81 -49t48.5 -71.5t16 -85.5q0 -41 -12.5 -75t-33 -65t-47.5 -60t-55 -59l-101 -103q33 10 65 16t58 6h68q35 0 54.5 -18.5t19.5 -49.5v-126h-570v69q0 20 8 43t28 42l198 194q20 20 37.5 43.5t30.5 47t20.5 46t7.5 41.5q0 24 -10 42.5t-36 18.5 q-21 0 -33.5 -10t-24.5 -32q-14 -20 -29 -31.5t-43 -11.5q-14 0 -30 3l-124 19q9 61 34 105t63.5 72.5t89 42.5t109.5 14z"/>
|
|
128
|
+
<glyph glyph-name="threesuperior" horiz-adv-x="668" unicode="³" d="M364 1658q62 0 109.5 -17.5t79 -46t47.5 -63.5t16 -70q0 -62 -23.5 -105.5t-78.5 -69.5q57 -19 85.5 -54t28.5 -92q0 -66 -24.5 -113t-63.5 -77t-88 -44t-98 -14q-52 0 -95.5 8.5t-79.5 32t-64.5 63.5t-50.5 103l96 38q25 9 48 9q47 0 64 -32q14 -26 33 -36t37 -10 q30 0 47 17.5t17 46.5q0 25 -5.5 40t-20 23t-39 10.5t-61.5 2.5v140q40 0 64.5 5t38 14t17.5 23t4 32q0 26 -10 43.5t-42 17.5q-24 0 -36.5 -9t-21.5 -27q-13 -23 -26.5 -34t-38.5 -11q-14 0 -33 3l-114 19q9 61 34 105t62 72.5t84.5 42.5t101.5 14z"/>
|
|
129
|
+
<glyph glyph-name="acute" horiz-adv-x="660" unicode="´" d="M726 1473l-260 -263q-23 -23 -44 -32.5t-56 -9.5h-186l136 245q17 29 40 44.5t70 15.5h300z"/>
|
|
130
|
+
<glyph glyph-name="mu" d="M410 1037v-666q0 -73 36 -113t102 -40q51 0 95.5 21t86.5 59v739h310v-1037h-192q-29 0 -48.5 13t-27.5 39l-19 61q-29 -26 -55 -43.5t-52.5 -28t-55 -15t-62.5 -4.5q-48 0 -89 13.5t-75 38.5q15 -46 20.5 -97.5t5.5 -96.5v-209h-154q-65 0 -100.5 32t-35.5 92v1242h310z " unicode="µ"/>
|
|
131
|
+
<glyph glyph-name="paragraph" horiz-adv-x="1458" unicode="¶" d="M1432 1457v-251h-210v-1422h-270v1422h-196v-1422h-270v822q-104 0 -189.5 34t-146 91.5t-93.5 134t-33 162.5q0 94 33 173t93.5 136t146 88.5t189.5 31.5h946z"/>
|
|
132
|
+
<glyph glyph-name="periodcentered" horiz-adv-x="570" unicode="·" d="M60 596q0 45 17.5 85t48 69.5t71 46.5t87.5 17t88.5 -17t72 -46.5t48 -69.5t17.5 -85t-17.5 -84.5t-48 -69t-72 -46.5t-88.5 -17t-87.5 17t-71 46.5t-48 69t-17.5 84.5z"/>
|
|
133
|
+
<glyph glyph-name="cedilla" horiz-adv-x="660" unicode="¸" d="M194 -210q15 0 29 -4t35 -4q26 0 37 9.5t11 20.5q0 21 -30.5 31.5t-103.5 20.5l46 153h192l-17 -60q45 -12 75 -28t47.5 -35t25 -41.5t7.5 -46.5q0 -35 -19.5 -63t-54.5 -48t-84.5 -31t-109.5 -11q-41 0 -75.5 4t-72.5 12l28 94q6 27 34 27z"/>
|
|
134
|
+
<glyph glyph-name="onesuperior" horiz-adv-x="668" unicode="¹" d="M150 1036h130v298l6 54l-50 -37q-20 -14 -42 -14q-18 0 -32.5 7.5t-21.5 16.5l-68 90l242 199h186v-614h102v-136h-452v136z"/>
|
|
135
|
+
<glyph glyph-name="ordmasculine" horiz-adv-x="788" unicode="º" d="M396 1477q75 0 138 -22t108 -63.5t70.5 -101t25.5 -134.5q0 -76 -25.5 -136.5t-70.5 -102.5t-108 -64.5t-138 -22.5q-76 0 -139.5 22.5t-109.5 64.5t-71.5 102.5t-25.5 136.5q0 75 25.5 134.5t71.5 101t109.5 63.5t139.5 22zM396 1004q51 0 75.5 34.5t24.5 115.5 t-24.5 115t-75.5 34q-56 0 -80 -34t-24 -115t24 -115.5t80 -34.5z"/>
|
|
136
|
+
<glyph glyph-name="guillemotright" horiz-adv-x="1012" unicode="»" d="M280 123l-102 46q-24 11 -35.5 27t-11.5 36q0 24 15 50l120 216q15 28 36 46q-10 9 -19 21t-17 26l-120 215q-15 27 -15 51q0 20 11.5 36t35.5 27l102 46l262 -402v-39zM902 564v-39l-262 -402l-102 46q-24 11 -35.5 27t-11.5 36q0 24 15 50l120 216q15 28 36 46 q-10 9 -19 21t-17 26l-120 215q-15 27 -15 51q0 20 11.5 36t35.5 27l102 46z"/>
|
|
137
|
+
<glyph glyph-name="onequarter" horiz-adv-x="1424" unicode="¼" d="M1342 295h80v-107q0 -15 -11 -27t-29 -12h-40v-149h-184v149h-274q-29 0 -45.5 12.5t-20.5 31.5l-18 92l328 465h214v-455zM130 844h130v298l6 54l-50 -37q-20 -14 -42 -14q-18 0 -32.5 7.5t-21.5 16.5l-68 90l242 199h186v-614h102v-136h-452v136zM1158 404q0 26 1.5 57 t5.5 64l-166 -230h159v109zM476 85q-16 -25 -32.5 -41.5t-35 -26t-39.5 -13.5t-45 -4h-132l848 1359q30 47 68 72.5t92 25.5h132z"/>
|
|
138
|
+
<glyph glyph-name="onehalf" horiz-adv-x="1424" unicode="½" d="M1128 758q64 0 112.5 -18t81 -49t48.5 -71.5t16 -85.5q0 -41 -12.5 -75t-33 -65t-47.5 -60t-55 -59l-101 -103q33 10 65 16t58 6h68q35 0 54.5 -18.5t19.5 -49.5v-126h-570v69q0 20 8 43t28 42l198 194q20 20 37.5 43.5t30.5 47t20.5 46t7.5 41.5q0 24 -10 42.5t-36 18.5 q-21 0 -33.5 -10t-24.5 -32q-14 -20 -29 -31.5t-43 -11.5q-14 0 -30 3l-124 19q9 61 34 105t63.5 72.5t89 42.5t109.5 14zM130 844h130v298l6 54l-50 -37q-20 -14 -42 -14q-18 0 -32.5 7.5t-21.5 16.5l-68 90l242 199h186v-614h102v-136h-452v136zM438 85 q-16 -25 -32.5 -41.5t-35 -26t-39.5 -13.5t-45 -4h-132l848 1359q30 47 68 72.5t92 25.5h132z"/>
|
|
139
|
+
<glyph glyph-name="threequarters" horiz-adv-x="1424" unicode="¾" d="M1342 295h80v-107q0 -15 -11 -27t-29 -12h-40v-149h-184v149h-274q-29 0 -45.5 12.5t-20.5 31.5l-18 92l328 465h214v-455zM344 1466q62 0 109.5 -17.5t79 -46t47.5 -63.5t16 -70q0 -62 -23.5 -105.5t-78.5 -69.5q57 -19 85.5 -54t28.5 -92q0 -66 -24.5 -113t-63.5 -77 t-88 -44t-98 -14q-52 0 -95.5 8.5t-79.5 32t-64.5 63.5t-50.5 103l96 38q25 9 48 9q47 0 64 -32q14 -26 33 -36t37 -10q30 0 47 17.5t17 46.5q0 25 -5.5 40t-20 23t-39 10.5t-61.5 2.5v140q40 0 64.5 5t38 14t17.5 23t4 32q0 26 -10 43.5t-42 17.5q-24 0 -36.5 -9t-21.5 -27 q-13 -23 -26.5 -34t-38.5 -11q-14 0 -33 3l-114 19q9 61 34 105t62 72.5t84.5 42.5t101.5 14zM1158 404q0 26 1.5 57t5.5 64l-166 -230h159v109zM476 85q-16 -25 -32.5 -41.5t-35 -26t-39.5 -13.5t-45 -4h-132l848 1359q30 47 68 72.5t92 25.5h132z"/>
|
|
140
|
+
<glyph glyph-name="questiondown" horiz-adv-x="882" unicode="¿" d="M864 -196q-38 -31 -81 -58t-93 -47.5t-107.5 -32t-124.5 -11.5q-94 0 -169.5 24t-128.5 68.5t-81.5 108.5t-28.5 144q0 76 21 129t53.5 89.5t71 62t73 47t60 44t31.5 54.5l28 139h212l22 -160q1 -9 1.5 -15.5t0.5 -12.5q0 -46 -21 -77t-53 -54t-69 -42.5t-69 -43t-53 -55 t-21 -78.5q0 -60 39.5 -95.5t108.5 -35.5q52 0 88 11t61.5 24.5t44.5 24.5t38 11q43 0 64 -37zM324 883q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5 t-13.5 67.5z"/>
|
|
141
|
+
<glyph glyph-name="Agrave" horiz-adv-x="1474" unicode="À" d="M1476 0h-262q-44 0 -72.5 20.5t-39.5 52.5l-86 254h-554l-86 -254q-10 -28 -39 -50.5t-71 -22.5h-264l564 1457h346zM540 557h398l-134 399q-13 38 -30.5 89.5t-34.5 111.5q-16 -61 -33 -113t-32 -90zM612 1798q23 0 40.5 -2.5t31 -8t25.5 -15t25 -23.5l182 -198h-246 q-18 0 -31 1t-24.5 4.5t-22 9t-22.5 14.5l-300 218h342z"/>
|
|
142
|
+
<glyph glyph-name="Aacute" horiz-adv-x="1474" unicode="Á" d="M1476 0h-262q-44 0 -72.5 20.5t-39.5 52.5l-86 254h-554l-86 -254q-10 -28 -39 -50.5t-71 -22.5h-264l564 1457h346zM540 557h398l-134 399q-13 38 -30.5 89.5t-34.5 111.5q-16 -61 -33 -113t-32 -90zM1162 1798l-295 -214q-26 -20 -48.5 -26.5t-56.5 -6.5h-246l181 197 q13 15 25.5 24.5t26.5 15.5t31 8t40 2h342z"/>
|
|
143
|
+
<glyph glyph-name="Acircumflex" horiz-adv-x="1474" unicode="Â" d="M1476 0h-262q-44 0 -72.5 20.5t-39.5 52.5l-86 254h-554l-86 -254q-10 -28 -39 -50.5t-71 -22.5h-264l564 1457h346zM540 557h398l-134 399q-13 38 -30.5 89.5t-34.5 111.5q-16 -61 -33 -113t-32 -90zM1138 1551h-234q-18 0 -39 5t-35 13l-74 45q-5 2 -9 5t-9 6 q-5 -3 -9 -6t-9 -5l-74 -45q-14 -8 -35 -13t-39 -5h-234l244 227h312z"/>
|
|
144
|
+
<glyph glyph-name="Atilde" horiz-adv-x="1474" unicode="Ã" d="M1476 0h-262q-44 0 -72.5 20.5t-39.5 52.5l-86 254h-554l-86 -254q-10 -28 -39 -50.5t-71 -22.5h-264l564 1457h346zM540 557h398l-134 399q-13 38 -30.5 89.5t-34.5 111.5q-16 -61 -33 -113t-32 -90zM862 1729q21 0 35.5 11t14.5 40h168q0 -55 -14.5 -100t-41.5 -77.5 t-66 -50t-88 -17.5q-37 0 -72.5 9t-67 20.5t-57.5 20.5t-45 9q-21 0 -34.5 -12.5t-13.5 -40.5h-170q0 55 15 100t42 77.5t66 50.5t87 18q37 0 72.5 -9t67 -20t57.5 -20t45 -9z"/>
|
|
145
|
+
<glyph glyph-name="Adieresis" horiz-adv-x="1474" unicode="Ä" d="M1476 0h-262q-44 0 -72.5 20.5t-39.5 52.5l-86 254h-554l-86 -254q-10 -28 -39 -50.5t-71 -22.5h-264l564 1457h346zM540 557h398l-134 399q-13 38 -30.5 89.5t-34.5 111.5q-16 -61 -33 -113t-32 -90zM674 1668q0 -32 -12.5 -59t-34.5 -47.5t-51 -32t-62 -11.5 q-30 0 -57.5 11.5t-48.5 32t-33.5 47.5t-12.5 59q0 31 12.5 59t33.5 49t48.5 33t57.5 12q33 0 62 -12t51 -33t34.5 -49t12.5 -59zM1114 1668q0 -32 -12.5 -59t-33.5 -47.5t-49.5 -32t-60.5 -11.5t-60.5 11.5t-49.5 32t-33.5 47.5t-12.5 59q0 31 12.5 59t33.5 49t49.5 33 t60.5 12t60.5 -12t49.5 -33t33.5 -49t12.5 -59z"/>
|
|
146
|
+
<glyph glyph-name="Aring" horiz-adv-x="1474" unicode="Å" d="M1476 0h-262q-44 0 -72.5 20.5t-39.5 52.5l-86 254h-554l-86 -254q-10 -28 -39 -50.5t-71 -22.5h-264l564 1457h346zM540 557h398l-134 399q-13 38 -30.5 89.5t-34.5 111.5q-16 -61 -33 -113t-32 -90zM518 1701q0 46 18.5 83.5t49 64t70.5 41t84 14.5q46 0 87 -14.5 t72.5 -41t50 -64t18.5 -83.5q0 -44 -18.5 -80.5t-50 -62.5t-72.5 -40t-87 -14q-44 0 -84 14t-70.5 40t-49 62.5t-18.5 80.5zM664 1701q0 -35 19.5 -57.5t60.5 -22.5q36 0 57 22.5t21 57.5q0 38 -21 60t-57 22q-41 0 -60.5 -22t-19.5 -60z"/>
|
|
147
|
+
<glyph glyph-name="AE" horiz-adv-x="1876" unicode="Æ" d="M684 1457h1120v-260h-645l41 -340h464v-250h-434l42 -347h532v-260h-820l-40 327h-483l-111 -254q-14 -33 -47.5 -53t-78.5 -20h-256zM562 557h354l-78 652q-20 -59 -40 -110t-40 -94z"/>
|
|
148
|
+
<glyph glyph-name="Ccedilla" horiz-adv-x="1314" unicode="Ç" d="M622 -210q15 0 29 -4t35 -4q26 0 37 9.5t11 20.5q0 21 -30.5 31.5t-103.5 20.5l38 127q-142 18 -253.5 80.5t-189 159.5t-118.5 224t-41 274q0 163 56 299.5t156.5 235.5t240.5 154t309 55q82 0 154.5 -14.5t135.5 -40t116 -61t94 -78.5l-114 -153q-11 -14 -26 -25.5 t-42 -11.5q-18 0 -34 8t-34 19.5t-39.5 25t-51 25t-69 19.5t-92.5 8q-92 0 -168 -32.5t-130.5 -93t-85 -146.5t-30.5 -193q0 -112 30.5 -199t83 -146.5t122.5 -90.5t150 -31q46 0 84 4.5t70.5 15.5t62 28.5t59.5 43.5q12 10 26 16.5t29 6.5q12 0 24 -4.5t23 -15.5l134 -141 q-77 -101 -189.5 -158.5t-261.5 -69.5l-8 -31q45 -12 75 -28t47.5 -35t25 -41.5t7.5 -46.5q0 -35 -19.5 -63t-54.5 -48t-84.5 -31t-109.5 -11q-41 0 -75.5 4t-72.5 12l28 94q6 27 34 27z"/>
|
|
149
|
+
<glyph glyph-name="Egrave" horiz-adv-x="1130" unicode="È" d="M1058 1457v-260h-598v-340h458v-250h-458v-347h598v-260h-938v1457h938zM480 1798q23 0 40.5 -2.5t31 -8t25.5 -15t25 -23.5l182 -198h-246q-18 0 -31 1t-24.5 4.5t-22 9t-22.5 14.5l-300 218h342z"/>
|
|
150
|
+
<glyph glyph-name="Eacute" horiz-adv-x="1130" unicode="É" d="M1058 1457v-260h-598v-340h458v-250h-458v-347h598v-260h-938v1457h938zM1030 1798l-295 -214q-26 -20 -48.5 -26.5t-56.5 -6.5h-246l181 197q13 15 25.5 24.5t26.5 15.5t31 8t40 2h342z"/>
|
|
151
|
+
<glyph glyph-name="Ecircumflex" horiz-adv-x="1130" unicode="Ê" d="M1058 1457v-260h-598v-340h458v-250h-458v-347h598v-260h-938v1457h938zM1006 1551h-234q-18 0 -39 5t-35 13l-74 45q-5 2 -9 5t-9 6q-5 -3 -9 -6t-9 -5l-74 -45q-14 -8 -35 -13t-39 -5h-234l244 227h312z"/>
|
|
152
|
+
<glyph glyph-name="Edieresis" horiz-adv-x="1130" unicode="Ë" d="M1058 1457v-260h-598v-340h458v-250h-458v-347h598v-260h-938v1457h938zM542 1668q0 -32 -12.5 -59t-34.5 -47.5t-51 -32t-62 -11.5q-30 0 -57.5 11.5t-48.5 32t-33.5 47.5t-12.5 59q0 31 12.5 59t33.5 49t48.5 33t57.5 12q33 0 62 -12t51 -33t34.5 -49t12.5 -59z M982 1668q0 -32 -12.5 -59t-33.5 -47.5t-49.5 -32t-60.5 -11.5t-60.5 11.5t-49.5 32t-33.5 47.5t-12.5 59q0 31 12.5 59t33.5 49t49.5 33t60.5 12t60.5 -12t49.5 -33t33.5 -49t12.5 -59z"/>
|
|
153
|
+
<glyph glyph-name="Igrave" horiz-adv-x="640" unicode="Ì" d="M490 0h-340v1457h340v-1457zM199 1798q23 0 40.5 -2.5t31 -8t25.5 -15t25 -23.5l182 -198h-246q-18 0 -31 1t-24.5 4.5t-22 9t-22.5 14.5l-300 218h342z"/>
|
|
154
|
+
<glyph glyph-name="Iacute" horiz-adv-x="640" unicode="Í" d="M490 0h-340v1457h340v-1457zM749 1798l-295 -214q-26 -20 -48.5 -26.5t-56.5 -6.5h-246l181 197q13 15 25.5 24.5t26.5 15.5t31 8t40 2h342z"/>
|
|
155
|
+
<glyph glyph-name="Icircumflex" horiz-adv-x="640" unicode="Î" d="M490 0h-340v1457h340v-1457zM725 1551h-234q-18 0 -39 5t-35 13l-74 45q-5 2 -9 5t-9 6q-5 -3 -9 -6t-9 -5l-74 -45q-14 -8 -35 -13t-39 -5h-234l244 227h312z"/>
|
|
156
|
+
<glyph glyph-name="Idieresis" horiz-adv-x="640" unicode="Ï" d="M490 0h-340v1457h340v-1457zM261 1668q0 -32 -12.5 -59t-34.5 -47.5t-51 -32t-62 -11.5q-30 0 -57.5 11.5t-48.5 32t-33.5 47.5t-12.5 59q0 31 12.5 59t33.5 49t48.5 33t57.5 12q33 0 62 -12t51 -33t34.5 -49t12.5 -59zM701 1668q0 -32 -12.5 -59t-33.5 -47.5t-49.5 -32 t-60.5 -11.5t-60.5 11.5t-49.5 32t-33.5 47.5t-12.5 59q0 31 12.5 59t33.5 49t49.5 33t60.5 12t60.5 -12t49.5 -33t33.5 -49t12.5 -59z"/>
|
|
157
|
+
<glyph glyph-name="Eth" horiz-adv-x="1584" unicode="Ð" d="M54 823h166v634h566q170 0 309.5 -55t238.5 -152t153.5 -230.5t54.5 -290.5q0 -158 -54.5 -291.5t-153.5 -231t-238.5 -152t-309.5 -54.5h-566v639h-166v184zM1196 729q0 108 -28 195t-80.5 147.5t-128.5 93t-173 32.5h-226v-374h344v-184h-344v-379h226q97 0 173 32.5 t128.5 93t80.5 147.5t28 196z"/>
|
|
158
|
+
<glyph glyph-name="Ntilde" horiz-adv-x="1512" unicode="Ñ" d="M298 1457q22 0 37 -2t27 -7.5t23 -15.5t25 -27l692 -875q-4 42 -6 81.5t-2 74.5v771h298v-1457h-176q-39 0 -66 12t-52 44l-687 868q3 -38 5 -74.5t2 -68.5v-781h-298v1457h178v0zM888 1729q21 0 35.5 11t14.5 40h168q0 -55 -14.5 -100t-41.5 -77.5t-66 -50t-88 -17.5 q-37 0 -72.5 9t-67 20.5t-57.5 20.5t-45 9q-21 0 -34.5 -12.5t-13.5 -40.5h-170q0 55 15 100t42 77.5t66 50.5t87 18q37 0 72.5 -9t67 -20t57.5 -20t45 -9z"/>
|
|
159
|
+
<glyph glyph-name="Ograve" horiz-adv-x="1600" unicode="Ò" d="M1558 729q0 -158 -54.5 -294t-153.5 -236.5t-238.5 -157.5t-309.5 -57t-310 57t-239.5 157.5t-154 236.5t-54.5 294t54.5 294t154 236t239.5 157t310 57t309.5 -57.5t238.5 -157.5t153.5 -236t54.5 -293zM1212 729q0 108 -28 194.5t-80.5 146.5t-128.5 92t-173 32 q-98 0 -174.5 -32t-129 -92t-80.5 -146.5t-28 -194.5q0 -109 28 -195.5t80.5 -146.5t129 -91.5t174.5 -31.5q97 0 173 31.5t128.5 91.5t80.5 146.5t28 195.5zM678 1798q23 0 40.5 -2.5t31 -8t25.5 -15t25 -23.5l182 -198h-246q-18 0 -31 1t-24.5 4.5t-22 9t-22.5 14.5 l-300 218h342z"/>
|
|
160
|
+
<glyph glyph-name="Oacute" horiz-adv-x="1600" unicode="Ó" d="M1558 729q0 -158 -54.5 -294t-153.5 -236.5t-238.5 -157.5t-309.5 -57t-310 57t-239.5 157.5t-154 236.5t-54.5 294t54.5 294t154 236t239.5 157t310 57t309.5 -57.5t238.5 -157.5t153.5 -236t54.5 -293zM1212 729q0 108 -28 194.5t-80.5 146.5t-128.5 92t-173 32 q-98 0 -174.5 -32t-129 -92t-80.5 -146.5t-28 -194.5q0 -109 28 -195.5t80.5 -146.5t129 -91.5t174.5 -31.5q97 0 173 31.5t128.5 91.5t80.5 146.5t28 195.5zM1228 1798l-295 -214q-26 -20 -48.5 -26.5t-56.5 -6.5h-246l181 197q13 15 25.5 24.5t26.5 15.5t31 8t40 2h342z "/>
|
|
161
|
+
<glyph glyph-name="Ocircumflex" horiz-adv-x="1600" unicode="Ô" d="M1558 729q0 -158 -54.5 -294t-153.5 -236.5t-238.5 -157.5t-309.5 -57t-310 57t-239.5 157.5t-154 236.5t-54.5 294t54.5 294t154 236t239.5 157t310 57t309.5 -57.5t238.5 -157.5t153.5 -236t54.5 -293zM1212 729q0 108 -28 194.5t-80.5 146.5t-128.5 92t-173 32 q-98 0 -174.5 -32t-129 -92t-80.5 -146.5t-28 -194.5q0 -109 28 -195.5t80.5 -146.5t129 -91.5t174.5 -31.5q97 0 173 31.5t128.5 91.5t80.5 146.5t28 195.5zM1204 1551h-234q-18 0 -39 5t-35 13l-74 45q-5 2 -9 5t-9 6q-5 -3 -9 -6t-9 -5l-74 -45q-14 -8 -35 -13t-39 -5 h-234l244 227h312z"/>
|
|
162
|
+
<glyph glyph-name="Otilde" horiz-adv-x="1600" unicode="Õ" d="M1558 729q0 -158 -54.5 -294t-153.5 -236.5t-238.5 -157.5t-309.5 -57t-310 57t-239.5 157.5t-154 236.5t-54.5 294t54.5 294t154 236t239.5 157t310 57t309.5 -57.5t238.5 -157.5t153.5 -236t54.5 -293zM1212 729q0 108 -28 194.5t-80.5 146.5t-128.5 92t-173 32 q-98 0 -174.5 -32t-129 -92t-80.5 -146.5t-28 -194.5q0 -109 28 -195.5t80.5 -146.5t129 -91.5t174.5 -31.5q97 0 173 31.5t128.5 91.5t80.5 146.5t28 195.5zM928 1729q21 0 35.5 11t14.5 40h168q0 -55 -14.5 -100t-41.5 -77.5t-66 -50t-88 -17.5q-37 0 -72.5 9t-67 20.5 t-57.5 20.5t-45 9q-21 0 -34.5 -12.5t-13.5 -40.5h-170q0 55 15 100t42 77.5t66 50.5t87 18q37 0 72.5 -9t67 -20t57.5 -20t45 -9z"/>
|
|
163
|
+
<glyph glyph-name="Odieresis" horiz-adv-x="1600" unicode="Ö" d="M1558 729q0 -158 -54.5 -294t-153.5 -236.5t-238.5 -157.5t-309.5 -57t-310 57t-239.5 157.5t-154 236.5t-54.5 294t54.5 294t154 236t239.5 157t310 57t309.5 -57.5t238.5 -157.5t153.5 -236t54.5 -293zM1212 729q0 108 -28 194.5t-80.5 146.5t-128.5 92t-173 32 q-98 0 -174.5 -32t-129 -92t-80.5 -146.5t-28 -194.5q0 -109 28 -195.5t80.5 -146.5t129 -91.5t174.5 -31.5q97 0 173 31.5t128.5 91.5t80.5 146.5t28 195.5zM740 1668q0 -32 -12.5 -59t-34.5 -47.5t-51 -32t-62 -11.5q-30 0 -57.5 11.5t-48.5 32t-33.5 47.5t-12.5 59 q0 31 12.5 59t33.5 49t48.5 33t57.5 12q33 0 62 -12t51 -33t34.5 -49t12.5 -59zM1180 1668q0 -32 -12.5 -59t-33.5 -47.5t-49.5 -32t-60.5 -11.5t-60.5 11.5t-49.5 32t-33.5 47.5t-12.5 59q0 31 12.5 59t33.5 49t49.5 33t60.5 12t60.5 -12t49.5 -33t33.5 -49t12.5 -59z"/>
|
|
164
|
+
<glyph glyph-name="multiply" d="M1048 982l-310 -310l330 -329l-164 -157l-326 326l-328 -328l-164 157l331 331l-311 312l162 157l309 -309l307 307z" unicode="×"/>
|
|
165
|
+
<glyph glyph-name="Oslash" horiz-adv-x="1600" unicode="Ø" d="M1558 729q0 -158 -54.5 -294t-153.5 -236.5t-238.5 -157.5t-309.5 -57q-94 0 -178 17.5t-159 50.5l-57 -79q-17 -24 -39 -40.5t-46 -26.5t-49.5 -14.5t-49.5 -4.5h-132l199 276q-118 102 -182.5 247t-64.5 319q0 158 54.5 294t154 236t239.5 157t310 57q105 0 197.5 -22 t173.5 -64l41 57q16 22 29.5 37t28.5 24.5t34 13.5t46 4h172l-184 -255q105 -102 161.5 -240t56.5 -299zM390 729q0 -192 84 -311l527 731q-42 22 -92 33.5t-107 11.5q-98 0 -174.5 -32t-129 -92t-80.5 -146.5t-28 -194.5zM1212 729q0 81 -16 150t-46 124l-512 -711 q71 -28 164 -28q97 0 173 31.5t128.5 91.5t80.5 146.5t28 195.5z"/>
|
|
166
|
+
<glyph glyph-name="Ugrave" horiz-adv-x="1452" unicode="Ù" d="M726 267q68 0 121.5 22.5t90.5 64.5t56.5 102.5t19.5 137.5v863h338v-863q0 -134 -43.5 -246t-124.5 -193t-197 -126t-261 -45q-146 0 -262 45t-197 126t-124 193t-43 246v863h338v-862q0 -77 19.5 -137.5t56.5 -103t90.5 -65t121.5 -22.5zM600 1798q23 0 40.5 -2.5 t31 -8t25.5 -15t25 -23.5l182 -198h-246q-18 0 -31 1t-24.5 4.5t-22 9t-22.5 14.5l-300 218h342z"/>
|
|
167
|
+
<glyph glyph-name="Uacute" horiz-adv-x="1452" unicode="Ú" d="M726 267q68 0 121.5 22.5t90.5 64.5t56.5 102.5t19.5 137.5v863h338v-863q0 -134 -43.5 -246t-124.5 -193t-197 -126t-261 -45q-146 0 -262 45t-197 126t-124 193t-43 246v863h338v-862q0 -77 19.5 -137.5t56.5 -103t90.5 -65t121.5 -22.5zM1150 1798l-295 -214 q-26 -20 -48.5 -26.5t-56.5 -6.5h-246l181 197q13 15 25.5 24.5t26.5 15.5t31 8t40 2h342z"/>
|
|
168
|
+
<glyph glyph-name="Ucircumflex" horiz-adv-x="1452" unicode="Û" d="M726 267q68 0 121.5 22.5t90.5 64.5t56.5 102.5t19.5 137.5v863h338v-863q0 -134 -43.5 -246t-124.5 -193t-197 -126t-261 -45q-146 0 -262 45t-197 126t-124 193t-43 246v863h338v-862q0 -77 19.5 -137.5t56.5 -103t90.5 -65t121.5 -22.5zM1126 1551h-234q-18 0 -39 5 t-35 13l-74 45q-5 2 -9 5t-9 6q-5 -3 -9 -6t-9 -5l-74 -45q-14 -8 -35 -13t-39 -5h-234l244 227h312z"/>
|
|
169
|
+
<glyph glyph-name="Udieresis" horiz-adv-x="1452" unicode="Ü" d="M726 267q68 0 121.5 22.5t90.5 64.5t56.5 102.5t19.5 137.5v863h338v-863q0 -134 -43.5 -246t-124.5 -193t-197 -126t-261 -45q-146 0 -262 45t-197 126t-124 193t-43 246v863h338v-862q0 -77 19.5 -137.5t56.5 -103t90.5 -65t121.5 -22.5zM662 1668q0 -32 -12.5 -59 t-34.5 -47.5t-51 -32t-62 -11.5q-30 0 -57.5 11.5t-48.5 32t-33.5 47.5t-12.5 59q0 31 12.5 59t33.5 49t48.5 33t57.5 12q33 0 62 -12t51 -33t34.5 -49t12.5 -59zM1102 1668q0 -32 -12.5 -59t-33.5 -47.5t-49.5 -32t-60.5 -11.5t-60.5 11.5t-49.5 32t-33.5 47.5t-12.5 59 q0 31 12.5 59t33.5 49t49.5 33t60.5 12t60.5 -12t49.5 -33t33.5 -49t12.5 -59z"/>
|
|
170
|
+
<glyph glyph-name="Yacute" horiz-adv-x="1354" unicode="Ý" d="M846 554v-554h-338v554l-528 903h298q44 0 70 -20.5t42 -52.5l206 -424q25 -51 46 -94t37 -85q15 43 36 86t45 93l204 424q6 13 16.5 26t24 23.5t31 17t38.5 6.5h300zM1104 1798l-295 -214q-26 -20 -48.5 -26.5t-56.5 -6.5h-246l181 197q13 15 25.5 24.5t26.5 15.5t31 8 t40 2h342z"/>
|
|
171
|
+
<glyph glyph-name="Thorn" horiz-adv-x="1276" unicode="Þ" d="M458 252v-252h-338v1457h338v-235h176q154 0 264.5 -36.5t182 -100.5t105.5 -151t34 -188q0 -109 -35 -200t-107 -156t-182.5 -101.5t-261.5 -36.5h-176zM458 507h176q132 0 190 63t58 176q0 50 -15 91t-45.5 70.5t-77 45.5t-110.5 16h-176v-462z"/>
|
|
172
|
+
<glyph glyph-name="germandbls" horiz-adv-x="1316" unicode="ß" d="M724 1485q130 0 220 -37t145.5 -92t80 -117t24.5 -113q0 -56 -18 -96t-45 -69t-58 -50.5t-58 -40.5t-45 -38.5t-18 -45.5q0 -28 23.5 -50.5t58 -46.5t75.5 -52t75.5 -67.5t58 -94t23.5 -130.5q0 -91 -34.5 -158.5t-91.5 -112.5t-132 -67.5t-156 -22.5q-44 0 -90 10 t-89.5 27t-82 40.5t-68.5 50.5l72 114q13 20 31 31.5t47 11.5q27 0 49 -12t44.5 -26t49.5 -26t65 -12q39 0 67.5 28.5t28.5 75.5q0 40 -26 68t-65 52t-84 48.5t-84 59t-65 82t-26 118.5q0 60 19.5 103t49.5 74.5t64 56.5t64 49t49.5 51.5t19.5 64.5q0 67 -43.5 105.5 t-138.5 38.5q-63 0 -107.5 -20.5t-72.5 -59t-41 -94.5t-13 -126v-968h-310v978q0 107 37.5 199.5t109.5 161t175.5 107.5t235.5 39z"/>
|
|
173
|
+
<glyph glyph-name="agrave" horiz-adv-x="1078" unicode="à" d="M836 0q-44 0 -66.5 12t-37.5 50l-22 57q-39 -33 -75 -58t-74.5 -42.5t-82 -26t-96.5 -8.5q-71 0 -129 18.5t-98.5 54.5t-62.5 89.5t-22 123.5q0 55 28 113t97 105.5t186 79.5t295 36v44q0 91 -37.5 131.5t-106.5 40.5q-55 0 -90 -12t-62.5 -27t-53.5 -27t-62 -12 q-32 0 -54.5 15.5t-35.5 38.5l-56 97q94 83 208.5 123.5t245.5 40.5q94 0 169.5 -30.5t128 -85t80.5 -129.5t28 -164v-648h-142zM480 189q60 0 105 21t91 68v144q-93 -4 -153 -16t-95 -30t-48.5 -41t-13.5 -50q0 -53 29 -74.5t85 -21.5zM484 1473q47 0 70 -15.5t40 -44.5 l136 -245h-176q-35 0 -56 9.5t-44 32.5l-260 263h290z"/>
|
|
174
|
+
<glyph glyph-name="aacute" horiz-adv-x="1078" unicode="á" d="M836 0q-44 0 -66.5 12t-37.5 50l-22 57q-39 -33 -75 -58t-74.5 -42.5t-82 -26t-96.5 -8.5q-71 0 -129 18.5t-98.5 54.5t-62.5 89.5t-22 123.5q0 55 28 113t97 105.5t186 79.5t295 36v44q0 91 -37.5 131.5t-106.5 40.5q-55 0 -90 -12t-62.5 -27t-53.5 -27t-62 -12 q-32 0 -54.5 15.5t-35.5 38.5l-56 97q94 83 208.5 123.5t245.5 40.5q94 0 169.5 -30.5t128 -85t80.5 -129.5t28 -164v-648h-142zM480 189q60 0 105 21t91 68v144q-93 -4 -153 -16t-95 -30t-48.5 -41t-13.5 -50q0 -53 29 -74.5t85 -21.5zM958 1473l-260 -263 q-23 -23 -44 -32.5t-56 -9.5h-186l136 245q17 29 40 44.5t70 15.5h300z"/>
|
|
175
|
+
<glyph glyph-name="acircumflex" horiz-adv-x="1078" unicode="â" d="M836 0q-44 0 -66.5 12t-37.5 50l-22 57q-39 -33 -75 -58t-74.5 -42.5t-82 -26t-96.5 -8.5q-71 0 -129 18.5t-98.5 54.5t-62.5 89.5t-22 123.5q0 55 28 113t97 105.5t186 79.5t295 36v44q0 91 -37.5 131.5t-106.5 40.5q-55 0 -90 -12t-62.5 -27t-53.5 -27t-62 -12 q-32 0 -54.5 15.5t-35.5 38.5l-56 97q94 83 208.5 123.5t245.5 40.5q94 0 169.5 -30.5t128 -85t80.5 -129.5t28 -164v-648h-142zM480 189q60 0 105 21t91 68v144q-93 -4 -153 -16t-95 -30t-48.5 -41t-13.5 -50q0 -53 29 -74.5t85 -21.5zM942 1168h-206q-18 0 -33 5.5 t-27 14.5l-84 72q-7 5 -13 11t-12 14q-6 -8 -12.5 -14t-12.5 -11l-86 -72q-9 -8 -25.5 -14t-34.5 -6h-214l234 289h292z"/>
|
|
176
|
+
<glyph glyph-name="atilde" horiz-adv-x="1078" unicode="ã" d="M836 0q-44 0 -66.5 12t-37.5 50l-22 57q-39 -33 -75 -58t-74.5 -42.5t-82 -26t-96.5 -8.5q-71 0 -129 18.5t-98.5 54.5t-62.5 89.5t-22 123.5q0 55 28 113t97 105.5t186 79.5t295 36v44q0 91 -37.5 131.5t-106.5 40.5q-55 0 -90 -12t-62.5 -27t-53.5 -27t-62 -12 q-32 0 -54.5 15.5t-35.5 38.5l-56 97q94 83 208.5 123.5t245.5 40.5q94 0 169.5 -30.5t128 -85t80.5 -129.5t28 -164v-648h-142zM480 189q60 0 105 21t91 68v144q-93 -4 -153 -16t-95 -30t-48.5 -41t-13.5 -50q0 -53 29 -74.5t85 -21.5zM666 1387q24 0 39 12.5t15 53.5h188 q0 -63 -17.5 -113.5t-48.5 -86t-73 -54.5t-91 -19q-37 0 -69 11.5t-59.5 25.5t-50 25.5t-39.5 11.5q-24 0 -38 -13.5t-14 -54.5h-190q0 63 18 113.5t49 86.5t73 55.5t90 19.5q37 0 69.5 -11.5t59.5 -25.5t49.5 -25.5t39.5 -11.5z"/>
|
|
177
|
+
<glyph glyph-name="adieresis" horiz-adv-x="1078" unicode="ä" d="M836 0q-44 0 -66.5 12t-37.5 50l-22 57q-39 -33 -75 -58t-74.5 -42.5t-82 -26t-96.5 -8.5q-71 0 -129 18.5t-98.5 54.5t-62.5 89.5t-22 123.5q0 55 28 113t97 105.5t186 79.5t295 36v44q0 91 -37.5 131.5t-106.5 40.5q-55 0 -90 -12t-62.5 -27t-53.5 -27t-62 -12 q-32 0 -54.5 15.5t-35.5 38.5l-56 97q94 83 208.5 123.5t245.5 40.5q94 0 169.5 -30.5t128 -85t80.5 -129.5t28 -164v-648h-142zM480 189q60 0 105 21t91 68v144q-93 -4 -153 -16t-95 -30t-48.5 -41t-13.5 -50q0 -53 29 -74.5t85 -21.5zM530 1295q0 -32 -13 -60t-35.5 -48.5 t-52 -32.5t-63.5 -12q-32 0 -60.5 12t-50 32.5t-34.5 48.5t-13 60q0 33 13 62t34.5 50.5t50 34t60.5 12.5q34 0 63.5 -12.5t52 -34t35.5 -50.5t13 -62zM916 1295q0 -32 -12.5 -60t-34.5 -48.5t-51.5 -32.5t-63.5 -12q-33 0 -62 12t-51 32.5t-34.5 48.5t-12.5 60 q0 33 12.5 62t34.5 50.5t51 34t62 12.5q34 0 63.5 -12.5t51.5 -34t34.5 -50.5t12.5 -62z"/>
|
|
178
|
+
<glyph glyph-name="aring" horiz-adv-x="1078" unicode="å" d="M836 0q-44 0 -66.5 12t-37.5 50l-22 57q-39 -33 -75 -58t-74.5 -42.5t-82 -26t-96.5 -8.5q-71 0 -129 18.5t-98.5 54.5t-62.5 89.5t-22 123.5q0 55 28 113t97 105.5t186 79.5t295 36v44q0 91 -37.5 131.5t-106.5 40.5q-55 0 -90 -12t-62.5 -27t-53.5 -27t-62 -12 q-32 0 -54.5 15.5t-35.5 38.5l-56 97q94 83 208.5 123.5t245.5 40.5q94 0 169.5 -30.5t128 -85t80.5 -129.5t28 -164v-648h-142zM480 189q60 0 105 21t91 68v144q-93 -4 -153 -16t-95 -30t-48.5 -41t-13.5 -50q0 -53 29 -74.5t85 -21.5zM320 1334q0 50 20 90.5t53 69.5 t77 44.5t92 15.5q49 0 94 -15.5t79.5 -44.5t54.5 -69.5t20 -90.5q0 -49 -20 -88.5t-54.5 -67.5t-79.5 -43.5t-94 -15.5q-48 0 -92 15.5t-77 43.5t-53 67.5t-20 88.5zM486 1334q0 -35 19.5 -57.5t60.5 -22.5q36 0 57 22.5t21 57.5q0 38 -21 60t-57 22q-41 0 -60.5 -22 t-19.5 -60z"/>
|
|
179
|
+
<glyph glyph-name="ae" horiz-adv-x="1668" unicode="æ" d="M1180 1053q92 0 171 -35t136.5 -99.5t90 -156t32.5 -204.5q0 -35 -3 -57t-10.5 -35t-20.5 -18t-34 -5h-570q17 -119 77.5 -173t152.5 -54q67 0 106.5 12t65 26t44 26t44.5 12q43 0 62 -27l84 -103q-48 -55 -102.5 -89.5t-111.5 -54t-113.5 -27t-108.5 -7.5 q-51 0 -101 10.5t-96 33t-86.5 57.5t-73.5 83q-32 -48 -76.5 -83t-97.5 -57.5t-113 -33t-124 -10.5q-160 0 -247 78t-87 219q0 37 12 76t39.5 76.5t73 71t113 59.5t158.5 42t210 19v23q0 91 -37.5 136t-106.5 45q-55 0 -90 -13.5t-62.5 -30t-53.5 -30t-62 -13.5 q-32 0 -54.5 15.5t-35.5 38.5l-56 97q94 83 196 123.5t224 40.5q113 0 188 -39t117 -108q59 66 143 104.5t194 38.5zM1166 839q-88 0 -135.5 -55.5t-60.5 -160.5h364q0 37 -8.5 75.5t-28 69.5t-52 51t-79.5 20zM676 443q-93 -5 -153 -18.5t-95 -33.5t-48.5 -44.5 t-13.5 -50.5q0 -54 29 -80.5t85 -26.5q42 0 78 12.5t62 40.5t41 73.5t15 111.5v16z"/>
|
|
180
|
+
<glyph glyph-name="ccedilla" horiz-adv-x="972" unicode="ç" d="M410 -210q15 0 29 -4t35 -4q26 0 37 9.5t11 20.5q0 21 -30.5 31.5t-103.5 20.5l39 131q-78 16 -146.5 59t-119.5 110t-80 156.5t-29 200.5q0 112 33.5 209.5t99 169t162 112.5t223.5 41q122 0 214 -39t166 -114l-82 -109q-14 -17 -27 -27t-37 -10q-23 0 -41.5 11 t-41.5 24.5t-54 24.5t-77 11q-57 0 -98.5 -21t-68.5 -60t-40 -95.5t-13 -127.5q0 -149 57.5 -229t158.5 -80q54 0 85.5 13.5t53.5 30t40.5 30.5t46.5 14q37 0 56 -27l90 -111q-38 -44 -79.5 -74.5t-85 -50.5t-87.5 -31.5t-88 -16.5l-9 -32q45 -12 75 -28t47.5 -35t25 -41.5 t7.5 -46.5q0 -35 -19.5 -63t-54.5 -48t-84.5 -31t-109.5 -11q-41 0 -75.5 4t-72.5 12l28 94q6 27 34 27z"/>
|
|
181
|
+
<glyph glyph-name="egrave" horiz-adv-x="1088" unicode="è" d="M564 1053q103 0 188.5 -32t147 -93t96 -149.5t34.5 -200.5q0 -35 -3 -57t-11 -35t-21.5 -18t-34.5 -5h-598q15 -130 79 -188.5t165 -58.5q54 0 93 13t69.5 29t56 29t53.5 13q37 0 56 -27l90 -111q-48 -55 -103.5 -89.5t-114 -54t-117 -27t-111.5 -7.5q-109 0 -204.5 35.5 t-167 105.5t-113 174t-41.5 242q0 104 35.5 197t102 163t161 111t213.5 41zM570 839q-89 0 -139 -50.5t-66 -145.5h387q0 37 -9.5 72t-31 62.5t-56.5 44.5t-85 17zM494 1473q47 0 70 -15.5t40 -44.5l136 -245h-176q-35 0 -56 9.5t-44 32.5l-260 263h290z"/>
|
|
182
|
+
<glyph glyph-name="eacute" horiz-adv-x="1088" unicode="é" d="M564 1053q103 0 188.5 -32t147 -93t96 -149.5t34.5 -200.5q0 -35 -3 -57t-11 -35t-21.5 -18t-34.5 -5h-598q15 -130 79 -188.5t165 -58.5q54 0 93 13t69.5 29t56 29t53.5 13q37 0 56 -27l90 -111q-48 -55 -103.5 -89.5t-114 -54t-117 -27t-111.5 -7.5q-109 0 -204.5 35.5 t-167 105.5t-113 174t-41.5 242q0 104 35.5 197t102 163t161 111t213.5 41zM570 839q-89 0 -139 -50.5t-66 -145.5h387q0 37 -9.5 72t-31 62.5t-56.5 44.5t-85 17zM968 1473l-260 -263q-23 -23 -44 -32.5t-56 -9.5h-186l136 245q17 29 40 44.5t70 15.5h300z"/>
|
|
183
|
+
<glyph glyph-name="ecircumflex" horiz-adv-x="1088" unicode="ê" d="M564 1053q103 0 188.5 -32t147 -93t96 -149.5t34.5 -200.5q0 -35 -3 -57t-11 -35t-21.5 -18t-34.5 -5h-598q15 -130 79 -188.5t165 -58.5q54 0 93 13t69.5 29t56 29t53.5 13q37 0 56 -27l90 -111q-48 -55 -103.5 -89.5t-114 -54t-117 -27t-111.5 -7.5q-109 0 -204.5 35.5 t-167 105.5t-113 174t-41.5 242q0 104 35.5 197t102 163t161 111t213.5 41zM570 839q-89 0 -139 -50.5t-66 -145.5h387q0 37 -9.5 72t-31 62.5t-56.5 44.5t-85 17zM952 1168h-206q-18 0 -33 5.5t-27 14.5l-84 72q-7 5 -13 11t-12 14q-6 -8 -12.5 -14t-12.5 -11l-86 -72 q-9 -8 -25.5 -14t-34.5 -6h-214l234 289h292z"/>
|
|
184
|
+
<glyph glyph-name="edieresis" horiz-adv-x="1088" unicode="ë" d="M564 1053q103 0 188.5 -32t147 -93t96 -149.5t34.5 -200.5q0 -35 -3 -57t-11 -35t-21.5 -18t-34.5 -5h-598q15 -130 79 -188.5t165 -58.5q54 0 93 13t69.5 29t56 29t53.5 13q37 0 56 -27l90 -111q-48 -55 -103.5 -89.5t-114 -54t-117 -27t-111.5 -7.5q-109 0 -204.5 35.5 t-167 105.5t-113 174t-41.5 242q0 104 35.5 197t102 163t161 111t213.5 41zM570 839q-89 0 -139 -50.5t-66 -145.5h387q0 37 -9.5 72t-31 62.5t-56.5 44.5t-85 17zM540 1295q0 -32 -13 -60t-35.5 -48.5t-52 -32.5t-63.5 -12q-32 0 -60.5 12t-50 32.5t-34.5 48.5t-13 60 q0 33 13 62t34.5 50.5t50 34t60.5 12.5q34 0 63.5 -12.5t52 -34t35.5 -50.5t13 -62zM926 1295q0 -32 -12.5 -60t-34.5 -48.5t-51.5 -32.5t-63.5 -12q-33 0 -62 12t-51 32.5t-34.5 48.5t-12.5 60q0 33 12.5 62t34.5 50.5t51 34t62 12.5q34 0 63.5 -12.5t51.5 -34t34.5 -50.5 t12.5 -62z"/>
|
|
185
|
+
<glyph glyph-name="igrave" horiz-adv-x="570" unicode="ì" d="M440 1037v-1037h-310v1037h310zM217 1473q47 0 70 -15.5t40 -44.5l136 -245h-176q-35 0 -56 9.5t-44 32.5l-260 263h290z"/>
|
|
186
|
+
<glyph glyph-name="iacute" horiz-adv-x="570" unicode="í" d="M440 1037v-1037h-310v1037h310zM691 1473l-260 -263q-23 -23 -44 -32.5t-56 -9.5h-186l136 245q17 29 40 44.5t70 15.5h300z"/>
|
|
187
|
+
<glyph glyph-name="icircumflex" horiz-adv-x="570" unicode="î" d="M440 1037v-1037h-310v1037h310zM675 1168h-206q-18 0 -33 5.5t-27 14.5l-84 72q-7 5 -13 11t-12 14q-6 -8 -12.5 -14t-12.5 -11l-86 -72q-9 -8 -25.5 -14t-34.5 -6h-214l234 289h292z"/>
|
|
188
|
+
<glyph glyph-name="idieresis" horiz-adv-x="570" unicode="ï" d="M440 1037v-1037h-310v1037h310zM263 1295q0 -32 -13 -60t-35.5 -48.5t-52 -32.5t-63.5 -12q-32 0 -60.5 12t-50 32.5t-34.5 48.5t-13 60q0 33 13 62t34.5 50.5t50 34t60.5 12.5q34 0 63.5 -12.5t52 -34t35.5 -50.5t13 -62zM649 1295q0 -32 -12.5 -60t-34.5 -48.5 t-51.5 -32.5t-63.5 -12q-33 0 -62 12t-51 32.5t-34.5 48.5t-12.5 60q0 33 12.5 62t34.5 50.5t51 34t62 12.5q34 0 63.5 -12.5t51.5 -34t34.5 -50.5t12.5 -62z"/>
|
|
189
|
+
<glyph glyph-name="eth" horiz-adv-x="1162" unicode="ð" d="M358 1059q-13 21 -13 40q0 17 10.5 32t30.5 24l46 22q-20 7 -40 13.5t-42 12.5q-31 8 -50.5 29.5t-19.5 57.5q0 24 10 53l36 103q106 -17 203 -49t182 -81l183 107l62 -98q11 -17 11 -36q0 -17 -9 -31.5t-26 -22.5l-66 -33q109 -103 171.5 -249.5t62.5 -341.5 q0 -150 -35.5 -266.5t-104 -197t-168.5 -122t-228 -41.5q-109 0 -202 33.5t-161 97.5t-106.5 156t-38.5 209q0 90 33.5 172.5t95 145.5t147.5 100t190 37q90 0 160.5 -28t127.5 -79q-20 82 -63 145t-119 114l-212 -124zM572 212q45 0 86 16.5t73.5 56t52.5 107t23 169.5 q-29 63 -82.5 104.5t-138.5 41.5q-54 0 -95.5 -18t-69.5 -49t-42.5 -72.5t-14.5 -89.5q0 -65 16 -115t44 -83.5t66 -50.5t82 -17z"/>
|
|
190
|
+
<glyph glyph-name="ntilde" d="M120 0v1037h192q29 0 48.5 -13t27.5 -39l18 -60q30 28 62 52t68.5 40.5t79 26t92.5 9.5q85 0 150.5 -29.5t110.5 -82t68 -125t23 -157.5v-659h-310v659q0 76 -35 118.5t-103 42.5q-51 0 -96 -22t-86 -59v-739h-310zM694 1387q24 0 39 12.5t15 53.5h188 q0 -63 -17.5 -113.5t-48.5 -86t-73 -54.5t-91 -19q-37 0 -69 11.5t-59.5 25.5t-50 25.5t-39.5 11.5q-24 0 -38 -13.5t-14 -54.5h-190q0 63 18 113.5t49 86.5t73 55.5t90 19.5q37 0 69.5 -11.5t59.5 -25.5t49.5 -25.5t39.5 -11.5z" unicode="ñ"/>
|
|
191
|
+
<glyph glyph-name="ograve" d="M582 1053q118 0 215 -37t166.5 -106t108 -167.5t38.5 -221.5q0 -124 -38.5 -223.5t-108 -169t-166.5 -107t-215 -37.5q-119 0 -216.5 37.5t-168 107t-109 169t-38.5 223.5q0 123 38.5 221.5t109 167.5t168 106t216.5 37zM582 214q107 0 157.5 75.5t50.5 229.5t-50.5 229 t-157.5 75q-110 0 -161 -75t-51 -229t51 -229.5t161 -75.5zM504 1473q47 0 70 -15.5t40 -44.5l136 -245h-176q-35 0 -56 9.5t-44 32.5l-260 263h290z" unicode="ò"/>
|
|
192
|
+
<glyph glyph-name="oacute" d="M582 1053q118 0 215 -37t166.5 -106t108 -167.5t38.5 -221.5q0 -124 -38.5 -223.5t-108 -169t-166.5 -107t-215 -37.5q-119 0 -216.5 37.5t-168 107t-109 169t-38.5 223.5q0 123 38.5 221.5t109 167.5t168 106t216.5 37zM582 214q107 0 157.5 75.5t50.5 229.5t-50.5 229 t-157.5 75q-110 0 -161 -75t-51 -229t51 -229.5t161 -75.5zM978 1473l-260 -263q-23 -23 -44 -32.5t-56 -9.5h-186l136 245q17 29 40 44.5t70 15.5h300z" unicode="ó"/>
|
|
193
|
+
<glyph glyph-name="ocircumflex" d="M582 1053q118 0 215 -37t166.5 -106t108 -167.5t38.5 -221.5q0 -124 -38.5 -223.5t-108 -169t-166.5 -107t-215 -37.5q-119 0 -216.5 37.5t-168 107t-109 169t-38.5 223.5q0 123 38.5 221.5t109 167.5t168 106t216.5 37zM582 214q107 0 157.5 75.5t50.5 229.5t-50.5 229 t-157.5 75q-110 0 -161 -75t-51 -229t51 -229.5t161 -75.5zM962 1168h-206q-18 0 -33 5.5t-27 14.5l-84 72q-7 5 -13 11t-12 14q-6 -8 -12.5 -14t-12.5 -11l-86 -72q-9 -8 -25.5 -14t-34.5 -6h-214l234 289h292z" unicode="ô"/>
|
|
194
|
+
<glyph glyph-name="otilde" d="M582 1053q118 0 215 -37t166.5 -106t108 -167.5t38.5 -221.5q0 -124 -38.5 -223.5t-108 -169t-166.5 -107t-215 -37.5q-119 0 -216.5 37.5t-168 107t-109 169t-38.5 223.5q0 123 38.5 221.5t109 167.5t168 106t216.5 37zM582 214q107 0 157.5 75.5t50.5 229.5t-50.5 229 t-157.5 75q-110 0 -161 -75t-51 -229t51 -229.5t161 -75.5zM686 1387q24 0 39 12.5t15 53.5h188q0 -63 -17.5 -113.5t-48.5 -86t-73 -54.5t-91 -19q-37 0 -69 11.5t-59.5 25.5t-50 25.5t-39.5 11.5q-24 0 -38 -13.5t-14 -54.5h-190q0 63 18 113.5t49 86.5t73 55.5t90 19.5 q37 0 69.5 -11.5t59.5 -25.5t49.5 -25.5t39.5 -11.5z" unicode="õ"/>
|
|
195
|
+
<glyph glyph-name="odieresis" d="M582 1053q118 0 215 -37t166.5 -106t108 -167.5t38.5 -221.5q0 -124 -38.5 -223.5t-108 -169t-166.5 -107t-215 -37.5q-119 0 -216.5 37.5t-168 107t-109 169t-38.5 223.5q0 123 38.5 221.5t109 167.5t168 106t216.5 37zM582 214q107 0 157.5 75.5t50.5 229.5t-50.5 229 t-157.5 75q-110 0 -161 -75t-51 -229t51 -229.5t161 -75.5zM550 1295q0 -32 -13 -60t-35.5 -48.5t-52 -32.5t-63.5 -12q-32 0 -60.5 12t-50 32.5t-34.5 48.5t-13 60q0 33 13 62t34.5 50.5t50 34t60.5 12.5q34 0 63.5 -12.5t52 -34t35.5 -50.5t13 -62zM936 1295 q0 -32 -12.5 -60t-34.5 -48.5t-51.5 -32.5t-63.5 -12q-33 0 -62 12t-51 32.5t-34.5 48.5t-12.5 60q0 33 12.5 62t34.5 50.5t51 34t62 12.5q34 0 63.5 -12.5t51.5 -34t34.5 -50.5t12.5 -62z" unicode="ö"/>
|
|
196
|
+
<glyph glyph-name="divide" d="M84 783h990v-222h-990v222zM402 1028q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5zM402 316q0 36 13.5 67t37 54t55.5 36.5t70 13.5 q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5z" unicode="÷"/>
|
|
197
|
+
<glyph glyph-name="oslash" d="M974 899q65 -69 100.5 -164.5t35.5 -213.5q0 -124 -38.5 -223.5t-108 -169t-166.5 -107t-215 -37.5q-135 0 -245 49l-17 -24q-17 -25 -38.5 -41.5t-46 -26.5t-50 -14.5t-49.5 -4.5h-112l161 219q-65 69 -100 165t-35 215q0 123 38.5 221.5t109 167.5t168 106t216.5 37 q132 0 238 -47l46 62q16 21 29.5 36t28.5 24.5t34 13.5t46 4h152zM582 205q107 0 167.5 80t60.5 234q0 78 -14 137l-318 -431q43 -20 104 -20zM350 519q0 -80 13 -135l316 430q-41 19 -97 19q-110 0 -171 -80t-61 -234z" unicode="ø"/>
|
|
198
|
+
<glyph glyph-name="ugrave" d="M410 1037v-658q0 -77 35 -119t103 -42q51 0 95.5 21t86.5 59v739h310v-1037h-192q-58 0 -76 52l-19 60q-30 -29 -62 -52.5t-68.5 -40t-78.5 -26t-92 -9.5q-85 0 -150.5 29.5t-110.5 82.5t-68 125t-23 158v658h310zM500 1473q47 0 70 -15.5t40 -44.5l136 -245h-176 q-35 0 -56 9.5t-44 32.5l-260 263h290z" unicode="ù"/>
|
|
199
|
+
<glyph glyph-name="uacute" d="M410 1037v-658q0 -77 35 -119t103 -42q51 0 95.5 21t86.5 59v739h310v-1037h-192q-58 0 -76 52l-19 60q-30 -29 -62 -52.5t-68.5 -40t-78.5 -26t-92 -9.5q-85 0 -150.5 29.5t-110.5 82.5t-68 125t-23 158v658h310zM974 1473l-260 -263q-23 -23 -44 -32.5t-56 -9.5h-186 l136 245q17 29 40 44.5t70 15.5h300z" unicode="ú"/>
|
|
200
|
+
<glyph glyph-name="ucircumflex" d="M410 1037v-658q0 -77 35 -119t103 -42q51 0 95.5 21t86.5 59v739h310v-1037h-192q-58 0 -76 52l-19 60q-30 -29 -62 -52.5t-68.5 -40t-78.5 -26t-92 -9.5q-85 0 -150.5 29.5t-110.5 82.5t-68 125t-23 158v658h310zM958 1168h-206q-18 0 -33 5.5t-27 14.5l-84 72 q-7 5 -13 11t-12 14q-6 -8 -12.5 -14t-12.5 -11l-86 -72q-9 -8 -25.5 -14t-34.5 -6h-214l234 289h292z" unicode="û"/>
|
|
201
|
+
<glyph glyph-name="udieresis" d="M410 1037v-658q0 -77 35 -119t103 -42q51 0 95.5 21t86.5 59v739h310v-1037h-192q-58 0 -76 52l-19 60q-30 -29 -62 -52.5t-68.5 -40t-78.5 -26t-92 -9.5q-85 0 -150.5 29.5t-110.5 82.5t-68 125t-23 158v658h310zM546 1295q0 -32 -13 -60t-35.5 -48.5t-52 -32.5 t-63.5 -12q-32 0 -60.5 12t-50 32.5t-34.5 48.5t-13 60q0 33 13 62t34.5 50.5t50 34t60.5 12.5q34 0 63.5 -12.5t52 -34t35.5 -50.5t13 -62zM932 1295q0 -32 -12.5 -60t-34.5 -48.5t-51.5 -32.5t-63.5 -12q-33 0 -62 12t-51 32.5t-34.5 48.5t-12.5 60q0 33 12.5 62 t34.5 50.5t51 34t62 12.5q34 0 63.5 -12.5t51.5 -34t34.5 -50.5t12.5 -62z" unicode="ü"/>
|
|
202
|
+
<glyph glyph-name="yacute" horiz-adv-x="1106" unicode="ý" d="M544 -269q-14 -31 -34 -45.5t-64 -14.5h-232l200 420l-414 946h274q36 0 56 -16t28 -38l170 -447q24 -62 39 -124q10 32 22 63t23 63l154 445q8 23 31.5 38.5t50.5 15.5h250zM966 1473l-260 -263q-23 -23 -44 -32.5t-56 -9.5h-186l136 245q17 29 40 44.5t70 15.5h300z "/>
|
|
203
|
+
<glyph glyph-name="thorn" horiz-adv-x="1156" unicode="þ" d="M120 -329v1826h310v-570q58 57 131.5 91.5t172.5 34.5q81 0 150 -35t119 -102.5t78.5 -165.5t28.5 -223q0 -117 -32.5 -216t-91 -172t-140 -114t-180.5 -41q-41 0 -75 7.5t-62.5 21t-52.5 32.5t-46 42v-416h-310zM626 820q-34 0 -61.5 -6.5t-51 -18.5t-43.5 -30.5 t-40 -42.5v-440q35 -39 76 -54.5t86 -15.5q43 0 79 17t62.5 54.5t41.5 97.5t15 146q0 82 -12 138t-33.5 90.5t-51.5 49.5t-67 15z"/>
|
|
204
|
+
<glyph glyph-name="ydieresis" horiz-adv-x="1106" unicode="ÿ" d="M544 -269q-14 -31 -34 -45.5t-64 -14.5h-232l200 420l-414 946h274q36 0 56 -16t28 -38l170 -447q24 -62 39 -124q10 32 22 63t23 63l154 445q8 23 31.5 38.5t50.5 15.5h250zM538 1295q0 -32 -13 -60t-35.5 -48.5t-52 -32.5t-63.5 -12q-32 0 -60.5 12t-50 32.5 t-34.5 48.5t-13 60q0 33 13 62t34.5 50.5t50 34t60.5 12.5q34 0 63.5 -12.5t52 -34t35.5 -50.5t13 -62zM924 1295q0 -32 -12.5 -60t-34.5 -48.5t-51.5 -32.5t-63.5 -12q-33 0 -62 12t-51 32.5t-34.5 48.5t-12.5 60q0 33 12.5 62t34.5 50.5t51 34t62 12.5q34 0 63.5 -12.5 t51.5 -34t34.5 -50.5t12.5 -62z"/>
|
|
205
|
+
<glyph glyph-name="Aogonek" horiz-adv-x="1474" unicode="Ą" d="M1426 -167q21 0 28 -19l46 -111q-35 -21 -87 -35.5t-111 -14.5q-107 0 -162.5 42t-55.5 107q0 51 33.5 102t108.5 96h-12q-44 0 -72.5 20.5t-39.5 52.5l-86 254h-554l-86 -254q-10 -28 -39 -50.5t-71 -22.5h-264l564 1457h346l564 -1457h-68q-39 -21 -66.5 -52.5 t-27.5 -69.5q0 -24 13.5 -38.5t40.5 -14.5q15 0 24 1t15 2.5t10 3t9 1.5zM540 557h398l-134 399q-15 38 -32 89.5t-34 111.5q-16 -61 -32.5 -113t-31.5 -90z"/>
|
|
206
|
+
<glyph glyph-name="aogonek" horiz-adv-x="1078" unicode="ą" d="M996 -167q21 0 28 -19l46 -111q-35 -21 -87 -35.5t-111 -14.5q-107 0 -162.5 42t-55.5 107q0 52 35 103.5t111 96.5q-26 4 -41.5 17.5t-26.5 42.5l-22 57q-39 -33 -75 -58t-74.5 -42.5t-82 -26t-96.5 -8.5q-71 0 -129 18.5t-98.5 54.5t-62.5 89.5t-22 123.5q0 55 28 113 t97 105.5t186 79.5t295 36v44q0 91 -37.5 131.5t-106.5 40.5q-55 0 -90 -12t-62.5 -27t-53.5 -27t-62 -12q-32 0 -54.5 15.5t-35.5 38.5l-56 97q94 83 208.5 123.5t245.5 40.5q94 0 169.5 -30.5t128 -85t80.5 -129.5t28 -164v-648q-39 -21 -66.5 -52.5t-27.5 -69.5 q0 -24 13.5 -38.5t40.5 -14.5q15 0 24 1t15 2.5t10 3t9 1.5zM480 189q60 0 105 21t91 68v144q-93 -4 -153 -16t-95 -30t-48.5 -41t-13.5 -50q0 -53 29 -74.5t85 -21.5z"/>
|
|
207
|
+
<glyph glyph-name="Cacute" horiz-adv-x="1314" unicode="Ć" d="M1099 377q12 0 24 -4.5t23 -15.5l134 -141q-88 -115 -220.5 -173.5t-313.5 -58.5q-166 0 -297.5 56.5t-223 156t-140.5 236t-49 296.5q0 163 56 299.5t156.5 235.5t240.5 154t309 55q82 0 154.5 -14.5t135.5 -40t116 -61t94 -78.5l-114 -153q-11 -14 -26 -25.5t-42 -11.5 q-18 0 -34 8t-34 19.5t-39.5 25t-51 25t-69 19.5t-92.5 8q-92 0 -168 -32.5t-130.5 -93t-85 -146.5t-30.5 -193q0 -112 30.5 -199t83 -146.5t122.5 -90.5t150 -31q46 0 84 4.5t70.5 15.5t62 28.5t59.5 43.5q12 10 26 16.5t29 6.5zM1210 1798l-295 -214q-26 -20 -48.5 -26.5 t-56.5 -6.5h-246l181 197q13 15 25.5 24.5t26.5 15.5t31 8t40 2h342z"/>
|
|
208
|
+
<glyph glyph-name="cacute" horiz-adv-x="972" unicode="ć" d="M868 791q-14 -17 -27 -27t-37 -10q-23 0 -41.5 11t-41.5 24.5t-54 24.5t-77 11q-57 0 -98.5 -21t-68.5 -60t-40 -95.5t-13 -127.5q0 -149 57.5 -229t158.5 -80q54 0 85.5 13.5t53.5 30t40.5 30.5t46.5 14q37 0 56 -27l90 -111q-48 -55 -101 -89.5t-108.5 -54t-111.5 -27 t-109 -7.5q-95 0 -181.5 36t-152 104.5t-104 168.5t-38.5 228q0 112 33.5 209.5t99 169t162 112.5t223.5 41q122 0 214 -39t166 -114zM962 1473l-260 -263q-23 -23 -44 -32.5t-56 -9.5h-186l136 245q17 29 40 44.5t70 15.5h300z"/>
|
|
209
|
+
<glyph glyph-name="Eogonek" horiz-adv-x="1130" unicode="Ę" d="M984 -167q21 0 28 -19l46 -111q-35 -21 -87 -35.5t-111 -14.5q-107 0 -162.5 42t-55.5 107q0 51 33.5 102t108.5 96h-664v1457h938v-260h-598v-340h458v-250h-458v-347h598v-260h-92q-39 -21 -66.5 -52.5t-27.5 -69.5q0 -24 13.5 -38.5t40.5 -14.5q15 0 24 1t15 2.5t10 3 t9 1.5z"/>
|
|
210
|
+
<glyph glyph-name="eogonek" horiz-adv-x="1088" unicode="ę" d="M744 -167q21 0 28 -19l46 -111q-35 -21 -87 -35.5t-111 -14.5q-107 0 -162.5 42t-55.5 107q0 48 29 95.5t92 89.5q-99 8 -185 47.5t-149.5 109t-100 169t-36.5 228.5q0 104 35.5 197t102 163t161 111t213.5 41q103 0 188.5 -32t147 -93t96 -149.5t34.5 -200.5 q0 -35 -3 -57t-11 -35t-21.5 -18t-34.5 -5h-598q15 -130 79 -188.5t165 -58.5q54 0 93 13t69.5 29t56 29t53.5 13q37 0 56 -27l90 -111q-66 -76 -146 -114t-160 -52q-36 -21 -61 -51t-25 -67q0 -24 13.5 -38.5t40.5 -14.5q15 0 24 1t15 2.5t10 3t9 1.5zM570 839 q-89 0 -139 -50.5t-66 -145.5h387q0 37 -9.5 72t-31 62.5t-56.5 44.5t-85 17z"/>
|
|
211
|
+
<glyph glyph-name="dotlessi" horiz-adv-x="570" unicode="ı" d="M440 1037v-1037h-310v1037h310z"/>
|
|
212
|
+
<glyph glyph-name="Lslash" horiz-adv-x="1116" unicode="Ł" d="M536 923l334 165v-221q0 -48 -40 -62l-294 -152v-383h540v-270h-878v505l-174 -85v228q0 39 36 54l138 71v684h338v-534z"/>
|
|
213
|
+
<glyph glyph-name="lslash" horiz-adv-x="710" unicode="ł" d="M510 1497v-546l150 59v-174q0 -45 -40 -62l-110 -46v-728h-310v624l-150 -58v180q0 39 36 54l114 47v650h310z"/>
|
|
214
|
+
<glyph glyph-name="Nacute" horiz-adv-x="1512" unicode="Ń" d="M298 1457q22 0 37 -2t27 -7.5t23 -15.5t25 -27l692 -875q-4 42 -6 81.5t-2 74.5v771h298v-1457h-176q-39 0 -66 12t-52 44l-687 868q3 -38 5 -74.5t2 -68.5v-781h-298v1457h178v0zM1188 1798l-295 -214q-26 -20 -48.5 -26.5t-56.5 -6.5h-246l181 197q13 15 25.5 24.5 t26.5 15.5t31 8t40 2h342z"/>
|
|
215
|
+
<glyph glyph-name="nacute" d="M120 0v1037h192q29 0 48.5 -13t27.5 -39l18 -60q30 28 62 52t68.5 40.5t79 26t92.5 9.5q85 0 150.5 -29.5t110.5 -82t68 -125t23 -157.5v-659h-310v659q0 76 -35 118.5t-103 42.5q-51 0 -96 -22t-86 -59v-739h-310zM994 1473l-260 -263q-23 -23 -44 -32.5t-56 -9.5h-186 l136 245q17 29 40 44.5t70 15.5h300z" unicode="ń"/>
|
|
216
|
+
<glyph glyph-name="OE" horiz-adv-x="2136" unicode="Œ" d="M2064 1457v-260h-598v-340h458v-250h-458v-347h598v-260h-898v148q-86 -78 -196.5 -121t-243.5 -43q-154 0 -279.5 57t-215 157.5t-138.5 236.5t-49 294t49 294t138.5 236t215 157t279.5 57q133 0 243.5 -43.5t196.5 -121.5v149h898zM1126 729q0 108 -24.5 196 t-71.5 149.5t-115 95t-155 33.5q-89 0 -157.5 -33.5t-116 -95t-72 -149.5t-24.5 -196q0 -109 24.5 -197t72 -149.5t116 -95t157.5 -33.5q87 0 155 33.5t115 95t71.5 149.5t24.5 197z"/>
|
|
217
|
+
<glyph glyph-name="oe" horiz-adv-x="1762" unicode="œ" d="M1274 1053q92 0 171 -35t136.5 -99.5t90 -156t32.5 -204.5q0 -35 -3 -57t-10.5 -35t-20.5 -18t-34 -5h-570q17 -119 77.5 -173t152.5 -54q51 0 87.5 13t65 29t53.5 29t54 13q17 0 30.5 -7.5t23.5 -19.5l92 -111q-48 -55 -102.5 -89.5t-111.5 -54t-113.5 -27t-108.5 -7.5 q-51 0 -100 10.5t-94.5 32.5t-86 55.5t-72.5 79.5q-63 -86 -159 -132t-220 -46q-103 0 -191.5 37.5t-153.5 107t-102 169t-37 223.5q0 123 37.5 221.5t103.5 167.5t157 106t198 37q118 0 210.5 -45t155.5 -130q58 81 148.5 128t213.5 47zM564 214q100 0 146 75.5t46 229.5 t-46 229t-146 75q-101 0 -147.5 -75t-46.5 -229t46.5 -229.5t147.5 -75.5zM1260 839q-88 0 -135.5 -55.5t-60.5 -160.5h364q0 37 -8.5 75.5t-28 69.5t-52 51t-79.5 20z"/>
|
|
218
|
+
<glyph glyph-name="Sacute" horiz-adv-x="1118" unicode="Ś" d="M932 1161q-15 -24 -31.5 -36t-42.5 -12q-23 0 -49.5 14.5t-60 32.5t-76.5 32.5t-98 14.5q-95 0 -141.5 -40.5t-46.5 -109.5q0 -44 28 -73t73.5 -50t104 -38.5t119.5 -39t119.5 -50.5t104 -74t73.5 -109.5t28 -155.5q0 -101 -35 -189t-101.5 -153.5t-164 -103 t-221.5 -37.5q-68 0 -138.5 14t-136.5 39.5t-124 60.5t-101 78l100 158q11 18 31 29t43 11q30 0 60.5 -19t69 -42t88.5 -42t118 -19q92 0 143 40.5t51 128.5q0 51 -28 83t-73.5 53t-103.5 37t-119 35.5t-119 48t-103.5 75t-73.5 116t-28 171.5q0 82 33 160t97 139t157 97.5 t213 36.5q67 0 130.5 -10.5t120.5 -31t106.5 -49t88.5 -64.5zM1028 1798l-295 -214q-26 -20 -48.5 -26.5t-56.5 -6.5h-246l181 197q13 15 25.5 24.5t26.5 15.5t31 8t40 2h342z"/>
|
|
219
|
+
<glyph glyph-name="sacute" horiz-adv-x="880" unicode="ś" d="M754 810q-12 -19 -25.5 -27t-34.5 -8q-22 0 -44 9.5t-47.5 20.5t-57.5 20.5t-73 9.5q-59 0 -90.5 -22.5t-31.5 -62.5q0 -29 20.5 -48t54.5 -33.5t77 -27.5t88 -29t88 -37.5t77 -53t54.5 -76.5t20.5 -108q0 -77 -28 -142t-83.5 -112t-137 -73t-187.5 -26q-53 0 -106 10 t-102.5 27t-91.5 40.5t-72 50.5l72 114q13 20 31 31.5t47 11.5q27 0 48.5 -12t46.5 -26t58.5 -26t84.5 -12q36 0 61 7.5t40 20.5t22 29t7 33q0 31 -21 51t-55 34.5t-77.5 27t-88.5 28.5t-88.5 38.5t-77.5 57t-55 84.5t-21 121q0 66 25.5 125.5t76.5 104.5t128 71.5t180 26.5 q56 0 108.5 -10t98.5 -28t84 -42.5t67 -53.5zM860 1473l-260 -263q-23 -23 -44 -32.5t-56 -9.5h-186l136 245q17 29 40 44.5t70 15.5h300z"/>
|
|
220
|
+
<glyph glyph-name="Scaron" horiz-adv-x="1084" unicode="Š" d="M932 1161q-15 -24 -31.5 -36t-42.5 -12q-23 0 -49.5 14.5t-60 32.5t-76.5 32.5t-98 14.5q-95 0 -141.5 -40.5t-46.5 -109.5q0 -44 28 -73t73.5 -50t104 -38.5t119.5 -39t119.5 -50.5t104 -74t73.5 -109.5t28 -155.5q0 -101 -35 -189t-101.5 -153.5t-164 -103 t-221.5 -37.5q-68 0 -138.5 14t-136.5 39.5t-124 60.5t-101 78l100 158q11 18 31 29t43 11q30 0 60.5 -19t69 -42t88.5 -42t118 -19q92 0 143 40.5t51 128.5q0 51 -28 83t-73.5 53t-103.5 37t-119 35.5t-119 48t-103.5 75t-73.5 116t-28 171.5q0 82 33 160t97 139t157 97.5 t213 36.5q67 0 130.5 -10.5t120.5 -31t106.5 -49t88.5 -64.5zM186 1778h234q18 0 39 -5t35 -13l74 -45q5 -3 9 -5.5t9 -6.5q4 3 8.5 6t9.5 6l74 45q14 8 35 13t39 5h234l-244 -227h-312z"/>
|
|
221
|
+
<glyph glyph-name="scaron" horiz-adv-x="880" unicode="š" d="M754 810q-12 -19 -25.5 -27t-34.5 -8q-22 0 -44 9.5t-47.5 20.5t-57.5 20.5t-73 9.5q-59 0 -90.5 -22.5t-31.5 -62.5q0 -29 20.5 -48t54.5 -33.5t77 -27.5t88 -29t88 -37.5t77 -53t54.5 -76.5t20.5 -108q0 -77 -28 -142t-83.5 -112t-137 -73t-187.5 -26q-53 0 -106 10 t-102.5 27t-91.5 40.5t-72 50.5l72 114q13 20 31 31.5t47 11.5q27 0 48.5 -12t46.5 -26t58.5 -26t84.5 -12q36 0 61 7.5t40 20.5t22 29t7 33q0 31 -21 51t-55 34.5t-77.5 27t-88.5 28.5t-88.5 38.5t-77.5 57t-55 84.5t-21 121q0 66 25.5 125.5t76.5 104.5t128 71.5t180 26.5 q56 0 108.5 -10t98.5 -28t84 -42.5t67 -53.5zM82 1457h214q18 0 34.5 -5.5t25.5 -13.5l84 -72q6 -5 13 -12t13 -15q11 16 26 27l84 72q9 6 25.5 12.5t34.5 6.5h206l-234 -289h-292z"/>
|
|
222
|
+
<glyph glyph-name="Ydieresis" horiz-adv-x="1354" unicode="Ÿ" d="M846 554v-554h-338v554l-528 903h298q44 0 70 -20.5t42 -52.5l206 -424q25 -51 46 -94t37 -85q15 43 36 86t45 93l204 424q6 13 16.5 26t24 23.5t31 17t38.5 6.5h300zM616 1668q0 -32 -12.5 -59t-34.5 -47.5t-51 -32t-62 -11.5q-30 0 -57.5 11.5t-48.5 32t-33.5 47.5 t-12.5 59q0 31 12.5 59t33.5 49t48.5 33t57.5 12q33 0 62 -12t51 -33t34.5 -49t12.5 -59zM1056 1668q0 -32 -12.5 -59t-33.5 -47.5t-49.5 -32t-60.5 -11.5t-60.5 11.5t-49.5 32t-33.5 47.5t-12.5 59q0 31 12.5 59t33.5 49t49.5 33t60.5 12t60.5 -12t49.5 -33t33.5 -49 t12.5 -59z"/>
|
|
223
|
+
<glyph glyph-name="Zacute" horiz-adv-x="1220" unicode="Ź" d="M1186 1457v-122q0 -26 -8.5 -51t-23.5 -47l-684 -977h694v-260h-1124v130q0 23 8 45.5t22 41.5l686 980h-660v260h1090zM1068 1798l-295 -214q-26 -20 -48.5 -26.5t-56.5 -6.5h-246l181 197q13 15 25.5 24.5t26.5 15.5t31 8t40 2h342z"/>
|
|
224
|
+
<glyph glyph-name="zacute" horiz-adv-x="954" unicode="ź" d="M894 913q0 -32 -12 -61t-28 -50l-433 -572h463v-230h-820v126q0 19 10.5 47.5t29.5 54.5l437 579h-449v230h802v-124zM904 1473l-260 -263q-23 -23 -44 -32.5t-56 -9.5h-186l136 245q17 29 40 44.5t70 15.5h300z"/>
|
|
225
|
+
<glyph glyph-name="Zdotaccent" horiz-adv-x="1220" unicode="Ż" d="M1186 1457v-122q0 -26 -8.5 -51t-23.5 -47l-684 -977h694v-260h-1124v130q0 23 8 45.5t22 41.5l686 980h-660v260h1090zM822 1701q0 -34 -14.5 -65t-39 -54t-58 -37t-70.5 -14q-35 0 -66.5 14t-55.5 37t-38 54t-14 65q0 36 14 67.5t38 55.5t55.5 38t66.5 14 q37 0 70.5 -14t58 -38t39 -55.5t14.5 -67.5z"/>
|
|
226
|
+
<glyph glyph-name="zdotaccent" horiz-adv-x="954" unicode="ż" d="M894 913q0 -32 -12 -61t-28 -50l-433 -572h463v-230h-820v126q0 19 10.5 47.5t29.5 54.5l437 579h-449v230h802v-124zM698 1322q0 -37 -15 -70t-41 -57.5t-60.5 -38.5t-73.5 -14q-38 0 -71 14t-58.5 38.5t-40 57.5t-14.5 70t14.5 70.5t40 58t58.5 39t71 14.5 q39 0 73.5 -14.5t60.5 -39t41 -58t15 -70.5z"/>
|
|
227
|
+
<glyph glyph-name="Zcaron" horiz-adv-x="1220" unicode="Ž" d="M1186 1457v-122q0 -26 -8.5 -51t-23.5 -47l-684 -977h694v-260h-1124v130q0 23 8 45.5t22 41.5l686 980h-660v260h1090zM244 1777h234q18 0 39 -5t35 -13l74 -45q5 -3 9 -5.5t9 -6.5q4 3 8.5 6t9.5 6l74 45q14 8 35 13t39 5h234l-244 -227h-312z"/>
|
|
228
|
+
<glyph glyph-name="zcaron" horiz-adv-x="954" unicode="ž" d="M894 913q0 -32 -12 -61t-28 -50l-433 -572h463v-230h-820v126q0 19 10.5 47.5t29.5 54.5l437 579h-449v230h802v-124zM128 1457h214q18 0 34.5 -5.5t25.5 -13.5l84 -72q6 -5 13 -12t13 -15q11 16 26 27l84 72q9 6 25.5 12.5t34.5 6.5h206l-234 -289h-292z"/>
|
|
229
|
+
<glyph glyph-name="florin" d="M737 727l-79 -655q-13 -109 -52.5 -186.5t-108.5 -127.5t-170 -73.5t-237 -23.5v157q0 48 23 70t73 22q36 0 64 9t48 29.5t33 53.5t19 80l79 640l-95 20q-33 8 -50.5 25.5t-17.5 49.5v122h189l17 134q13 102 52 179t108 128.5t170 78t238 26.5v-165q0 -48 -23 -66 t-73 -18q-72 0 -115.5 -39t-56.5 -133l-17 -125h269v-212h-287z" unicode="ƒ"/>
|
|
230
|
+
<glyph glyph-name="circumflex" horiz-adv-x="660" unicode="ˆ" d="M710 1168h-206q-18 0 -33 5.5t-27 14.5l-84 72q-7 5 -13 11t-12 14q-6 -8 -12.5 -14t-12.5 -11l-86 -72q-9 -8 -25.5 -14t-34.5 -6h-214l234 289h292z"/>
|
|
231
|
+
<glyph glyph-name="caron" horiz-adv-x="660" unicode="ˇ" d="M-50 1457h214q18 0 34.5 -5.5t25.5 -13.5l84 -72q6 -5 13 -12t13 -15q11 16 26 27l84 72q9 6 25.5 12.5t34.5 6.5h206l-234 -289h-292z"/>
|
|
232
|
+
<glyph glyph-name="uni02C9" horiz-adv-x="660" unicode="ˉ" d="M20 1391h620v-190h-620v190z"/>
|
|
233
|
+
<glyph glyph-name="breve" horiz-adv-x="660" unicode="˘" d="M330 1159q-94 0 -157 24t-101 64.5t-54 94.5t-16 115h216q0 -27 4.5 -48t17 -34.5t34 -20.5t56.5 -7q34 0 56 7t34.5 20.5t17 34.5t4.5 48h216q0 -61 -16 -115t-54 -94.5t-101 -64.5t-157 -24z"/>
|
|
234
|
+
<glyph glyph-name="dotaccent" horiz-adv-x="660" unicode="˙" d="M518 1322q0 -37 -15 -70t-41 -57.5t-60.5 -38.5t-73.5 -14q-38 0 -71 14t-58.5 38.5t-40 57.5t-14.5 70t14.5 70.5t40 58t58.5 39t71 14.5q39 0 73.5 -14.5t60.5 -39t41 -58t15 -70.5z"/>
|
|
235
|
+
<glyph glyph-name="ring" horiz-adv-x="660" unicode="˚" d="M86 1334q0 50 20 90.5t53 69.5t77 44.5t92 15.5q49 0 94 -15.5t79.5 -44.5t54.5 -69.5t20 -90.5q0 -49 -20 -88.5t-54.5 -67.5t-79.5 -43.5t-94 -15.5q-48 0 -92 15.5t-77 43.5t-53 67.5t-20 88.5zM252 1334q0 -35 19.5 -57.5t60.5 -22.5q36 0 57 22.5t21 57.5 q0 38 -21 60t-57 22q-41 0 -60.5 -22t-19.5 -60z"/>
|
|
236
|
+
<glyph glyph-name="ogonek" horiz-adv-x="660" unicode="˛" d="M470 -167q21 0 28 -19l46 -111q-35 -21 -87 -35.5t-111 -14.5q-107 0 -162.5 42t-55.5 107q0 55 39 109.5t125 100.5l160 -12q-39 -21 -66.5 -52.5t-27.5 -69.5q0 -24 13.5 -38.5t40.5 -14.5q15 0 24 1t15 2.5t10 3t9 1.5z"/>
|
|
237
|
+
<glyph glyph-name="tilde" horiz-adv-x="660" unicode="˜" d="M434 1387q24 0 39 12.5t15 53.5h188q0 -63 -17.5 -113.5t-48.5 -86t-73 -54.5t-91 -19q-37 0 -69 11.5t-59.5 25.5t-50 25.5t-39.5 11.5q-24 0 -38 -13.5t-14 -54.5h-190q0 63 18 113.5t49 86.5t73 55.5t90 19.5q37 0 69.5 -11.5t59.5 -25.5t49.5 -25.5t39.5 -11.5z"/>
|
|
238
|
+
<glyph glyph-name="hungarumlaut" horiz-adv-x="660" unicode="˝" d="M472 1473l-200 -263q-20 -25 -42.5 -33.5t-57.5 -8.5h-126l116 245q14 30 38.5 45t71.5 15h200zM852 1473l-260 -263q-23 -23 -44 -32.5t-56 -9.5h-146l176 245q10 14 19.5 25t22 19t29 12t39.5 4h220z"/>
|
|
239
|
+
<glyph glyph-name="pi" horiz-adv-x="1336" unicode="π" d="M1298 1037v-120q0 -38 -24.5 -65.5t-69.5 -27.5h-80v-824h-310v824h-286v-540q0 -66 -16 -121t-52 -95t-94.5 -62t-143.5 -22q-38 0 -82.5 8.5t-85.5 28.5l8 127q1 20 13 35.5t51 15.5q28 0 46 4.5t28.5 15t14 27.5t3.5 41v537h-170v108q0 17 7.5 35.5t22.5 34t36 25.5 t48 10h1136z"/>
|
|
240
|
+
<glyph glyph-name="endash" d="M170 713h820v-212h-820v212z" unicode="–"/>
|
|
241
|
+
<glyph glyph-name="emdash" horiz-adv-x="1722" unicode="—" d="M170 713h1382v-212h-1382v212z"/>
|
|
242
|
+
<glyph glyph-name="quoteleft" horiz-adv-x="472" unicode="‘" d="M164 949q-40 63 -59.5 125.5t-19.5 124.5q0 107 56 205.5t165 181.5l98 -58q12 -8 17.5 -17.5t5.5 -19.5q0 -11 -5 -21t-12 -17q-11 -12 -24.5 -29.5t-25.5 -41t-20.5 -52t-8.5 -61.5q0 -36 12.5 -77t41.5 -88q10 -16 10 -32q0 -18 -12 -32t-33 -22z"/>
|
|
243
|
+
<glyph glyph-name="quoteright" horiz-adv-x="472" unicode="’" d="M338 1551q40 -63 59.5 -126t19.5 -125q0 -107 -56 -205t-165 -181l-98 58q-12 8 -17.5 17.5t-5.5 19.5q0 11 5 21t12 17q11 12 24.5 29.5t25.5 40.5t20.5 52t8.5 62q0 36 -12.5 77t-41.5 88q-10 16 -10 32q0 18 12 32t33 22z"/>
|
|
244
|
+
<glyph glyph-name="quotesinglbase" horiz-adv-x="472" unicode="‚" d="M338 332q40 -63 59.5 -126t19.5 -125q0 -107 -56 -205t-165 -181l-98 58q-12 8 -17.5 17.5t-5.5 19.5q0 11 5 21t12 17q11 12 24.5 29.5t25.5 40.5t20.5 52t8.5 62q0 36 -12.5 77t-41.5 88q-10 16 -10 32q0 18 12 32t33 22z"/>
|
|
245
|
+
<glyph glyph-name="quotedblleft" horiz-adv-x="830" unicode="“" d="M164 949q-40 63 -59.5 125.5t-19.5 124.5q0 107 56 205.5t165 181.5l98 -58q12 -8 17.5 -17.5t5.5 -19.5q0 -11 -5 -21t-12 -17q-11 -12 -24.5 -29.5t-25.5 -41t-20.5 -52t-8.5 -61.5q0 -36 12.5 -77t41.5 -88q10 -16 10 -32q0 -18 -12 -32t-33 -22zM522 949 q-40 63 -59.5 125.5t-19.5 124.5q0 107 56 205.5t165 181.5l98 -58q12 -8 17.5 -17.5t5.5 -19.5q0 -11 -5 -21t-12 -17q-11 -12 -24.5 -29.5t-25.5 -41t-20.5 -52t-8.5 -61.5q0 -36 12.5 -77t41.5 -88q10 -16 10 -32q0 -18 -12 -32t-33 -22z"/>
|
|
246
|
+
<glyph glyph-name="quotedblright" horiz-adv-x="830" unicode="”" d="M338 1551q40 -63 59.5 -126t19.5 -125q0 -107 -56 -205t-165 -181l-98 58q-12 8 -17.5 17.5t-5.5 19.5q0 11 5 21t12 17q11 12 24.5 29.5t25.5 40.5t20.5 52t8.5 62q0 36 -12.5 77t-41.5 88q-10 16 -10 32q0 18 12 32t33 22zM696 1551q40 -63 59.5 -126t19.5 -125 q0 -107 -56 -205t-165 -181l-98 58q-12 8 -17.5 17.5t-5.5 19.5q0 11 5 21t12 17q11 12 24.5 29.5t25.5 40.5t20.5 52t8.5 62q0 36 -12.5 77t-41.5 88q-10 16 -10 32q0 18 12 32t33 22z"/>
|
|
247
|
+
<glyph glyph-name="quotedblbase" horiz-adv-x="830" unicode="„" d="M338 332q40 -63 59.5 -126t19.5 -125q0 -107 -56 -205t-165 -181l-98 58q-12 8 -17.5 17.5t-5.5 19.5q0 11 5 21t12 17q11 12 24.5 29.5t25.5 40.5t20.5 52t8.5 62q0 36 -12.5 77t-41.5 88q-10 16 -10 32q0 18 12 32t33 22zM696 332q40 -63 59.5 -126t19.5 -125 q0 -107 -56 -205t-165 -181l-98 58q-12 8 -17.5 17.5t-5.5 19.5q0 11 5 21t12 17q11 12 24.5 29.5t25.5 40.5t20.5 52t8.5 62q0 36 -12.5 77t-41.5 88q-10 16 -10 32q0 18 12 32t33 22z"/>
|
|
248
|
+
<glyph glyph-name="dagger" d="M52 909q0 25 8.5 48t26 41t44.5 28.5t65 10.5q28 0 60.5 -5t66.5 -12.5t69.5 -16t70.5 -15.5l-39 489q33 19 74 28.5t86 9.5t86 -9.5t74 -28.5l-40 -489q35 7 70.5 15.5t70 16t66.5 12.5t61 5q37 0 64.5 -10.5t45 -28.5t26 -41t8.5 -48v-100h-412v-304l40 -819 q-33 -19 -74 -29t-86 -10t-86 10t-74 29l40 819v304h-412v100z" unicode="†"/>
|
|
249
|
+
<glyph glyph-name="daggerdbl" d="M52 353h412v456h-412v100q0 25 8.5 48t26 41t44.5 28.5t65 10.5q28 0 60.5 -5t66.5 -12.5t69.5 -16t70.5 -15.5l-39 489q33 19 74 28.5t86 9.5t86 -9.5t74 -28.5l-40 -489q35 7 70.5 15.5t70 16t66.5 12.5t61 5q37 0 64.5 -10.5t45 -28.5t26 -41t8.5 -48v-100h-412v-456 h412v-99q0 -25 -8.5 -48.5t-26 -41.5t-45 -28.5t-64.5 -10.5q-29 0 -61 5t-66.5 12.5t-70 16t-70.5 15.5l40 -488q-33 -19 -74 -29t-86 -10t-86 10t-74 29l39 488q-35 -7 -70.5 -15.5t-69.5 -16t-66.5 -12.5t-60.5 -5q-38 0 -65 10.5t-44.5 28.5t-26 41.5t-8.5 48.5v99z" unicode="‡"/>
|
|
250
|
+
<glyph glyph-name="bullet" d="M84 592q0 100 39 188t106 154t157 104t192 38q103 0 193 -38t157.5 -104t106.5 -154t39 -188q0 -99 -39 -187t-106.5 -153t-157.5 -103t-193 -38q-102 0 -192 38t-157 103t-106 153t-39 187z" unicode="•"/>
|
|
251
|
+
<glyph glyph-name="ellipsis" horiz-adv-x="1576" unicode="…" d="M60 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5zM1164 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54 t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5zM612 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5 t-13.5 67.5z"/>
|
|
252
|
+
<glyph glyph-name="perthousand" horiz-adv-x="2384" unicode="‰" d="M748 1104q0 -80 -29 -146t-77 -113.5t-111.5 -73.5t-132.5 -26q-76 0 -139.5 26t-110 73.5t-72.5 113.5t-26 146q0 83 26 150.5t72.5 115.5t110 74.5t139.5 26.5t140.5 -26.5t111 -74.5t72.5 -115.5t26 -150.5zM510 1104q0 51 -8.5 84.5t-23.5 53.5t-35.5 28t-44.5 8 t-44 -8t-34 -28t-22 -53.5t-8 -84.5q0 -48 8 -80t22 -51t34 -27t44 -8t44.5 8t35.5 27t23.5 51t8.5 80zM1206 1411q15 17 37 31.5t61 14.5h226l-1098 -1413q-15 -19 -37.5 -31.5t-54.5 -12.5h-232zM1586 342q0 -80 -29 -146.5t-77 -114t-111.5 -73.5t-132.5 -26 q-76 0 -139.5 26t-110 73.5t-72.5 114t-26 146.5q0 83 26 150.5t72.5 115.5t110 74.5t139.5 26.5t140.5 -26.5t111 -74.5t72.5 -115.5t26 -150.5zM1348 342q0 50 -8.5 83.5t-23.5 53.5t-35.5 28t-44.5 8t-44 -8t-34 -28t-22 -53.5t-8 -83.5q0 -48 8 -80t22 -51t34 -27t44 -8 t44.5 8t35.5 27t23.5 51t8.5 80zM2334 342q0 -80 -29 -146.5t-77 -114t-111.5 -73.5t-132.5 -26q-76 0 -139.5 26t-110 73.5t-72.5 114t-26 146.5q0 83 26 150.5t72.5 115.5t110 74.5t139.5 26.5t140.5 -26.5t111 -74.5t72.5 -115.5t26 -150.5zM2096 342q0 50 -8.5 83.5 t-23.5 53.5t-35.5 28t-44.5 8t-44 -8t-34 -28t-22 -53.5t-8 -83.5q0 -48 8 -80t22 -51t34 -27t44 -8t44.5 8t35.5 27t23.5 51t8.5 80z"/>
|
|
253
|
+
<glyph glyph-name="guilsinglleft" horiz-adv-x="652" unicode="‹" d="M110 525v39l262 402l102 -46q24 -11 35.5 -27t11.5 -36q0 -24 -15 -51l-120 -215q-17 -30 -36 -47q18 -16 36 -46l120 -216q15 -26 15 -50q0 -20 -11.5 -36t-35.5 -27l-102 -46z"/>
|
|
254
|
+
<glyph glyph-name="guilsinglright" horiz-adv-x="652" unicode="›" d="M280 123l-102 46q-24 11 -35.5 27t-11.5 36q0 24 15 50l120 216q15 28 36 46q-10 9 -19 21t-17 26l-120 215q-15 27 -15 51q0 20 11.5 36t35.5 27l102 46l262 -402v-39z"/>
|
|
255
|
+
<glyph glyph-name="fraction" horiz-adv-x="800" unicode="⁄" d="M118 85q-16 -25 -32.5 -41.5t-35 -26t-39.5 -13.5t-45 -4h-132l848 1359q30 47 68 72.5t92 25.5h132z"/>
|
|
256
|
+
<glyph glyph-name="Euro" d="M40 950h120q25 118 77 214.5t125 164.5t165 105t197 37q142 0 245.5 -56.5t166.5 -149.5l-114 -118q-11 -12 -24.5 -21.5t-35.5 -9.5q-24 0 -40.5 15t-38.5 33.5t-55 33.5t-90 15q-94 0 -160.5 -66.5t-97.5 -196.5h460v-92q0 -13 -6 -26t-17 -23.5t-26.5 -17t-34.5 -6.5 h-397q-1 -14 -1 -28v-28v-35h386v-92q0 -13 -6 -26t-17 -23.5t-26.5 -17t-34.5 -6.5h-286q26 -145 91 -215t159 -70q42 0 72 8.5t51 20.5t35.5 27t27 27t25 20.5t29.5 8.5q14 0 23.5 -4t20.5 -15l136 -121q-69 -113 -181 -171.5t-255 -58.5q-119 0 -213.5 39.5t-164 110.5 t-114 171t-63.5 222h-113v165h98v35v28t1 28h-99v165z" unicode="€"/>
|
|
257
|
+
<glyph glyph-name="trademark" horiz-adv-x="1462" unicode="™" d="M956 1209q19 -42 33 -84q7 21 16 42t19 42l100 217q17 20 29.5 25.5t38.5 5.5h184v-613h-186v252l14 113l-126 -269q-10 -21 -29 -32.5t-43 -11.5h-30q-24 0 -43 11.5t-29 32.5l-120 264l12 -108v-252h-186v613h184q13 0 22.5 -1t17 -4.5t14 -9.5t14.5 -16zM560 1457 v-169h-150v-444h-212v444h-148v169h510z"/>
|
|
258
|
+
<glyph glyph-name="Omega" horiz-adv-x="1468" unicode="Ω" d="M788 0v544q58 8 108.5 30.5t88 62.5t59.5 98.5t22 138.5q0 162 -84.5 250.5t-247.5 88.5q-164 0 -248 -88.5t-84 -250.5q0 -80 22 -138.5t59.5 -98.5t88 -62.5t108.5 -30.5v-544h-510q-51 0 -81.5 28.5t-30.5 73.5v166h362v110q-90 26 -158.5 76t-114 117t-68.5 148.5 t-23 171.5q0 77 21.5 150t62 137.5t99.5 119t134.5 93.5t166 60.5t194.5 21.5t194.5 -21.5t166 -60.5t134.5 -93.5t99.5 -119t62 -137.5t21.5 -150q0 -90 -23 -171.5t-69 -148.5t-114 -117t-158 -76v-110h362v-166q0 -45 -30.5 -73.5t-81.5 -28.5h-510z"/>
|
|
259
|
+
<glyph glyph-name="partialdiff" d="M266 1333q42 32 85 57.5t90.5 43t102.5 27t122 9.5q96 0 178 -38.5t142 -111.5t94 -177t34 -235q0 -212 -38.5 -383t-116.5 -291t-196 -185t-277 -65q-95 0 -176 31t-140 88t-92.5 138t-33.5 182q0 118 41 218.5t112.5 174t168 115.5t206.5 42q91 0 155 -27t109 -77v37 q0 83 -16 145t-44.5 102.5t-68 60.5t-85.5 20q-33 0 -65 -10t-60.5 -22t-52.5 -22t-42 -10q-17 0 -33.5 9.5t-34.5 38.5zM522 216q42 0 83.5 17.5t78 59t65.5 110t47 169.5q-9 34 -23.5 64.5t-37 54t-55 37t-76.5 13.5q-63 0 -108.5 -23t-74.5 -64.5t-43 -99.5t-14 -127 q0 -101 41.5 -156t116.5 -55z" unicode="∂"/>
|
|
260
|
+
<glyph glyph-name="Delta" horiz-adv-x="1534" unicode="∆" d="M614 1457h306l604 -1457h-1514zM453 258h628l-257 698q-12 33 -27.5 75.5t-29.5 92.5q-13 -50 -27.5 -93.5t-27.5 -76.5z"/>
|
|
261
|
+
<glyph glyph-name="product" horiz-adv-x="1376" unicode="∏" d="M1336 1457v-251h-150v-1535h-320v1535h-356v-1535h-320v1535h-150v251h1296z"/>
|
|
262
|
+
<glyph glyph-name="summation" horiz-adv-x="1376" unicode="∑" d="M80 1457h1216v-251h-742l464 -598v-88l-465 -599h743v-250h-1216v103q0 22 8 45.5t24 43.5l564 705l-564 696q-17 20 -24.5 44t-7.5 46v103z"/>
|
|
263
|
+
<glyph glyph-name="minus" d="M124 783h910v-222h-910v222z" unicode="−"/>
|
|
264
|
+
<glyph glyph-name="radical" horiz-adv-x="1182" unicode="√" d="M247 624h-73q-23 0 -44 6.5t-37 21t-25.5 37.5t-9.5 56v96h368q33 0 56.5 -15.5t29.5 -38.5l58 -231q16 -48 26 -97.5t17 -100.5q7 39 15.5 78.5t21.5 81.5l344 1129q8 23 30 38.5t52 15.5h206l-546 -1701h-262z"/>
|
|
265
|
+
<glyph glyph-name="infinity" horiz-adv-x="1376" unicode="∞" d="M997 214q-54 0 -99.5 13t-83 35.5t-68.5 53t-57 65.5q-27 -35 -58 -65.5t-68.5 -53t-82.5 -35.5t-99 -13q-70 0 -133 28t-110.5 78.5t-75.5 119.5t-28 152q0 82 28 151.5t75.5 119.5t110.5 78t133 28q54 0 99 -13t82.5 -36t68.5 -53.5t58 -64.5q26 34 57 64.5t68.5 53.5 t83 36t99.5 13q70 0 133 -28t110.5 -78t75.5 -119.5t28 -151.5q0 -83 -28 -152t-75.5 -119.5t-110.5 -78.5t-133 -28zM394 456q25 0 47.5 10.5t42 28.5t37.5 43t36 54q-18 29 -36 54t-37.5 43t-42 28.5t-47.5 10.5q-23 0 -44 -7t-37.5 -23t-26.5 -42t-10 -64t10 -64 t26.5 -42t37.5 -23t44 -7zM985 456q23 0 44 7t37.5 23t26 42t9.5 64t-10 64t-26 42t-37.5 23t-43.5 7q-26 0 -48 -10.5t-42 -28.5t-38 -43t-36 -54q18 -29 36 -54t38 -43t42 -28.5t48 -10.5z"/>
|
|
266
|
+
<glyph glyph-name="integral" horiz-adv-x="850" unicode="∫" d="M345 1097q10 87 38 156.5t74 118t111.5 75t151.5 26.5q38 0 82.5 -8.5t85.5 -28.5l-14 -147q-1 -11 -4 -23t-9.5 -22.5t-19 -17.5t-31.5 -7q-47 0 -77 -10t-49 -30.5t-29 -51t-15 -70.5l-127 -985q-14 -105 -49 -182t-89 -127.5t-125 -74.5t-156 -24q-38 0 -82.5 8.5 t-85.5 29.5l16 126q2 15 5.5 26.5t11.5 19.5t22.5 12t38.5 4q57 0 93 10t58 31t32 53.5t15 78.5z"/>
|
|
267
|
+
<glyph glyph-name="approxequal" d="M796 926q34 0 65.5 8t57 18.5t43.5 21.5t24 17l34 -191q-21 -27 -49 -46t-59.5 -31t-66.5 -17.5t-69 -5.5q-53 0 -106.5 14.5t-104.5 32.5t-99 32.5t-90 14.5q-35 0 -67 -7.5t-58.5 -18.5t-44.5 -23t-24 -20l-42 184q21 30 49.5 51t62 34.5t70 19.5t74.5 6 q53 0 106.5 -14.5t104.5 -32.5t99 -32.5t90 -14.5zM796 556q34 0 65.5 7.5t57 18t43.5 21.5t24 18l34 -192q-21 -27 -49 -45.5t-59.5 -30.5t-66.5 -17.5t-69 -5.5q-53 0 -106.5 14.5t-104.5 32t-99 32t-90 14.5q-35 0 -67 -7.5t-58.5 -18.5t-44.5 -22.5t-24 -19.5l-42 184 q21 29 49.5 50t62 34.5t70 19.5t74.5 6q53 0 106.5 -14.5t104.5 -32t99 -32t90 -14.5z" unicode="≈"/>
|
|
268
|
+
<glyph glyph-name="notequal" d="M124 966h512l108 204h220l-108 -204h178v-223h-295l-76 -144h371v-222h-487l-117 -223h-220l117 223h-203v222h319l76 144h-395v223z" unicode="≠"/>
|
|
269
|
+
<glyph glyph-name="lessequal" d="M130 878l810 381v-206q0 -23 -13 -43.5t-51 -37.5l-270 -117q-61 -21 -130 -36q36 -8 68.5 -17.5t61.5 -20.5l269 -121q38 -17 51.5 -37.5t13.5 -43.5v-206l-810 384v121zM130 302h810v-222h-810v222z" unicode="≤"/>
|
|
270
|
+
<glyph glyph-name="greaterequal" d="M1030 878v-121l-810 -384v206q0 23 13.5 43.5t51.5 37.5l269 121q29 11 61.5 20.5t67.5 17.5q-71 15 -129 36l-270 117q-38 17 -51 37.5t-13 43.5v206zM1030 80h-810v222h810v-222z" unicode="≥"/>
|
|
271
|
+
<glyph glyph-name="lozenge" d="M100 734l372 804h216l372 -804l-372 -804h-216zM352 734l188 -436q13 -30 22.5 -56.5t17.5 -51.5q8 25 17 51.5t23 56.5l194 436l-194 437q-25 57 -40 107q-8 -25 -18 -51t-22 -56z" unicode="◊"/>
|
|
272
|
+
<glyph glyph-name="uni2669" horiz-adv-x="0" unicode="♩" d="M-2 1497h4v-1826h-4v1826z"/>
|
|
273
|
+
<glyph glyph-name="undercommaaccent" d="M434 -66q16 0 26 -4t14.5 -10.5t6 -13.5t1.5 -13q0 -9 -3.5 -22.5t-14.5 -39.5l-56 -128q-8 -17 -18 -27.5t-23 -16t-29.5 -7t-35.5 -1.5h-110l52 283h190z" horiz-adv-x="660"/>
|
|
274
|
+
<glyph glyph-name="grave.case" d="M224 1798q23 0 40.5 -2.5t31 -8t25.5 -15t25 -23.5l182 -198h-246q-18 0 -31 1t-24.5 4.5t-22 9t-22.5 14.5l-300 218h342z" horiz-adv-x="660"/>
|
|
275
|
+
<glyph glyph-name="dieresis.case" d="M266 1668q0 -32 -12.5 -59t-34.5 -47.5t-51 -32t-62 -11.5q-30 0 -57.5 11.5t-48.5 32t-33.5 47.5t-12.5 59q0 31 12.5 59t33.5 49t48.5 33t57.5 12q33 0 62 -12t51 -33t34.5 -49t12.5 -59zM706 1668q0 -32 -12.5 -59t-33.5 -47.5t-49.5 -32t-60.5 -11.5t-60.5 11.5 t-49.5 32t-33.5 47.5t-12.5 59q0 31 12.5 59t33.5 49t49.5 33t60.5 12t60.5 -12t49.5 -33t33.5 -49t12.5 -59z" horiz-adv-x="660"/>
|
|
276
|
+
<glyph glyph-name="macron.case" d="M40 1725h580v-171h-580v171z" horiz-adv-x="660"/>
|
|
277
|
+
<glyph glyph-name="acute.case" d="M774 1798l-295 -214q-26 -20 -48.5 -26.5t-56.5 -6.5h-246l181 197q13 15 25.5 24.5t26.5 15.5t31 8t40 2h342z" horiz-adv-x="660"/>
|
|
278
|
+
<glyph glyph-name="circumflex.case" d="M730 1551h-234q-18 0 -39 5t-35 13l-74 45q-5 2 -9 5t-9 6q-5 -3 -9 -6t-9 -5l-74 -45q-14 -8 -35 -13t-39 -5h-234l244 227h312z" horiz-adv-x="660"/>
|
|
279
|
+
<glyph glyph-name="caron.case" d="M-70 1778h234q18 0 39 -5t35 -13l74 -45q5 -3 9 -5.5t9 -6.5q4 3 8.5 6t9.5 6l74 45q14 8 35 13t39 5h234l-244 -227h-312z" horiz-adv-x="660"/>
|
|
280
|
+
<glyph glyph-name="breve.case" d="M330 1526q-79 0 -141.5 15t-106 46.5t-67 78.5t-23.5 112h196q0 -43 36.5 -59t105.5 -16t105.5 16t36.5 59h196q0 -57 -23.5 -103.5t-67 -79.5t-106 -51t-141.5 -18z" horiz-adv-x="660"/>
|
|
281
|
+
<glyph glyph-name="dotaccent.case" d="M508 1702q0 -34 -14.5 -65t-39 -54t-58 -37t-70.5 -14q-35 0 -66.5 14t-55.5 37t-38 54t-14 65q0 36 14 67.5t38 55.5t55.5 38t66.5 14q37 0 70.5 -14t58 -38t39 -55.5t14.5 -67.5z" horiz-adv-x="660"/>
|
|
282
|
+
<glyph glyph-name="ring.case" d="M106 1701q0 46 18.5 83.5t49 64t70.5 41t84 14.5q46 0 87 -14.5t72.5 -41t50 -64t18.5 -83.5q0 -44 -18.5 -80.5t-50 -62.5t-72.5 -40t-87 -14q-44 0 -84 14t-70.5 40t-49 62.5t-18.5 80.5zM252 1701q0 -35 19.5 -57.5t60.5 -22.5q36 0 57 22.5t21 57.5q0 38 -21 60 t-57 22q-41 0 -60.5 -22t-19.5 -60z" horiz-adv-x="660"/>
|
|
283
|
+
<glyph glyph-name="tilde.case" d="M454 1729q21 0 35.5 11t14.5 40h168q0 -55 -14.5 -100t-41.5 -77.5t-66 -50t-88 -17.5q-37 0 -72.5 9t-67 20.5t-57.5 20.5t-45 9q-21 0 -34.5 -12.5t-13.5 -40.5h-170q0 55 15 100t42 77.5t66 50.5t87 18q37 0 72.5 -9t67 -20t57.5 -20t45 -9z" horiz-adv-x="660"/>
|
|
284
|
+
<glyph glyph-name="hungarumlaut.case" d="M484 1779l-202 -185q-23 -21 -44 -32t-56 -11h-146l124 168q20 26 48.5 43t75.5 17h200zM874 1779l-262 -185q-27 -19 -51 -31t-59 -12h-166l176 168q25 24 55 42t77 18h230z" horiz-adv-x="660"/>
|
|
285
|
+
<glyph glyph-name="caron.salt" d="M454 1499q16 0 26 -4t14.5 -10.5t6 -13.5t1.5 -13q0 -10 -5 -26t-22 -56l-81 -187q-15 -34 -41 -43t-65 -9h-110l66 362h210z" horiz-adv-x="660"/>
|
|
286
|
+
</font>
|
|
287
|
+
</defs>
|
|
288
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<defs>
|
|
5
|
+
<font id="Lato-BlackItalic" horiz-adv-x="1160">
|
|
6
|
+
<font-face slope="-7" underline-position="-14" font-weight="900" descent="-390" panose-1="2 15 10 2 2 2 4 3 2 3" units-per-em="2000" unicode-range="U+000D-FB02" bbox="-208 -500 2144 1904" x-height="1037" underline-thickness="186" font-family="Lato Black" ascent="1610" font-style="italic" cap-height="1457"/>
|
|
7
|
+
<missing-glyph d="M230 1152q62 48 140 79.5t183 31.5q78 0 137.5 -20t100.5 -56t62 -87t21 -113q0 -55 -13 -95t-32.5 -69t-43 -50t-45.5 -39t-39 -35t-23 -38l-27 -90h-212l-22 112q-3 16 -3 31q0 31 13 54t32 42t41.5 35t41.5 34t32 39t13 50q0 23 -13 38.5t-49 15.5q-32 0 -53 -5 t-36.5 -11.5t-29 -11.5t-31.5 -5q-43 0 -63 36zM374 331q0 33 12 61.5t34 49.5t51 33t64 12q33 0 62 -12t50.5 -33t34 -49.5t12.5 -61.5t-12.5 -61.5t-34 -49.5t-50.5 -33t-62 -12q-35 0 -64 12t-51 33t-34 49.5t-12 61.5zM40 1457h1043v-1457h-1043v1457zM117 80h879v1297 h-879v-1297z" horiz-adv-x="1123"/>
|
|
8
|
+
<glyph glyph-name="fi" horiz-adv-x="1164" unicode="fi" d="M496 1035h613l-126 -1035h-304l102 823h-299l-93 -775l-54 -174q-18 -58 -55 -90t-105 -32h-126l132 1073l-56 13q-30 7 -48.5 21t-18.5 40q0 1 0.5 4.5t2 16.5t4.5 40t8 75h134l2 15q11 94 51.5 176.5t111.5 144t174.5 96.5t240.5 35q42 0 87 -4.5t77 -13.5l-30 -151 q-3 -13 -10 -20.5t-17 -12t-22 -6t-23 -1.5q-98 0 -162 -15.5t-104 -46t-59.5 -77.5t-26.5 -110z"/>
|
|
9
|
+
<glyph glyph-name="fl" horiz-adv-x="1176" unicode="fl" d="M484 823l-95 -775l-54 -174q-18 -58 -55 -90t-105 -32h-126l131 1073l-55 13q-30 7 -48.5 21t-18.5 40q0 1 0.5 4.5t2 16.5t4.5 40t9 75h132l5 38q10 79 43 154t90 132.5t139 92.5t190 35q85 0 159.5 -6t151.5 -6h197l-182 -1475h-300l154 1262q-41 5 -81 9.5t-77 4.5 q-83 0 -133 -50t-59 -153l-4 -38h198l-26 -212h-187z"/>
|
|
10
|
+
<glyph glyph-name=".notdef" d="M230 1152q62 48 140 79.5t183 31.5q78 0 137.5 -20t100.5 -56t62 -87t21 -113q0 -55 -13 -95t-32.5 -69t-43 -50t-45.5 -39t-39 -35t-23 -38l-27 -90h-212l-22 112q-3 16 -3 31q0 31 13 54t32 42t41.5 35t41.5 34t32 39t13 50q0 23 -13 38.5t-49 15.5q-32 0 -53 -5 t-36.5 -11.5t-29 -11.5t-31.5 -5q-43 0 -63 36zM374 331q0 33 12 61.5t34 49.5t51 33t64 12q33 0 62 -12t50.5 -33t34 -49.5t12.5 -61.5t-12.5 -61.5t-34 -49.5t-50.5 -33t-62 -12q-35 0 -64 12t-51 33t-34 49.5t-12 61.5zM40 1457h1043v-1457h-1043v1457zM117 80h879v1297 h-879v-1297z" horiz-adv-x="1123"/>
|
|
11
|
+
<glyph glyph-name="NULL" horiz-adv-x="0"/>
|
|
12
|
+
<glyph glyph-name="NULL" horiz-adv-x="0"/>
|
|
13
|
+
<glyph glyph-name="nonmarkingreturn" horiz-adv-x="0" unicode="
|
|
14
|
+
<glyph glyph-name="space" horiz-adv-x="386" unicode=" "/>
|
|
15
|
+
<glyph glyph-name="exclam" horiz-adv-x="698" unicode="!" d="M610 1457l-70 -574q-11 -91 -33 -181.5t-51 -185.5h-202q-2 38 -3.5 75t-1.5 74q0 55 3 109t10 109l70 574h278zM150 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13 t-55.5 36t-37 54.5t-13.5 67.5z"/>
|
|
16
|
+
<glyph glyph-name="quotedbl" horiz-adv-x="828" unicode='"' d="M476 1455l-36 -286l-46 -158q-15 -52 -41 -79.5t-77 -27.5q-44 0 -64.5 27.5t-23.5 79.5l-8 158l36 286h260zM852 1455l-36 -286l-46 -158q-15 -52 -41 -79.5t-77 -27.5q-44 0 -64.5 27.5t-23.5 79.5l-8 158l36 286h260z"/>
|
|
17
|
+
<glyph glyph-name="numbersign" d="M837 397l-119 -397h-140q-33 0 -53 23.5t-20 59.5q0 8 1 17t4 19l83 278h-173l-86 -293q-8 -28 -23.5 -48t-35 -32.5t-42 -18t-45.5 -5.5h-134l121 397h-93q-33 0 -51.5 14.5t-18.5 46.5q0 25 10 56l28 92h179l73 245h-202l38 121q14 45 46.5 65.5t97.5 20.5h74l90 301 q14 46 52.5 71t85.5 25h138l-121 -397h172l121 397h134q38 0 61 -20t23 -52q0 -14 -4 -26l-89 -299h197l-40 -120q-15 -45 -47 -66t-95 -21h-70l-73 -245h115q33 0 51.5 -14.5t18.5 -46.5q0 -25 -10 -56l-28 -92h-201zM473 606h174l73 245h-172z" unicode="#"/>
|
|
18
|
+
<glyph glyph-name="dollar" d="M375 -6q-56 9 -109.5 26t-101.5 40.5t-89.5 52.5t-72.5 63l110 133q14 17 34.5 28t43.5 11q24 0 47 -13t50.5 -31.5t61.5 -37.5t79 -31l85 392q-64 18 -126.5 43t-112.5 65t-81 100.5t-31 150.5t37 174.5t106.5 151t168.5 108.5t223 48l25 113q6 28 30.5 49.5t57.5 21.5 h110l-43 -196q106 -20 177.5 -63.5t119.5 -95.5l-86 -107q-20 -25 -38 -35.5t-42 -10.5q-15 0 -34 7.5t-42 19t-50 23.5t-58 21l-80 -368q64 -20 128 -45t114.5 -63.5t82 -94.5t31.5 -138q0 -100 -37.5 -190.5t-108 -160.5t-171 -114.5t-227.5 -53.5l-28 -131 q-5 -26 -30 -47.5t-58 -21.5h-110zM808 436q0 53 -34.5 84.5t-88.5 53.5l-76 -346q100 15 149.5 67.5t49.5 140.5zM450 1051q0 -54 34.5 -87.5t89.5 -57.5l69 316q-53 -7 -90 -23t-60 -38.5t-33 -50.5t-10 -59z" unicode="$"/>
|
|
19
|
+
<glyph glyph-name="percent" horiz-adv-x="1512" unicode="%" d="M772 1155q0 -93 -32.5 -169t-85 -130t-119.5 -83.5t-137 -29.5q-64 0 -116 22.5t-89 63.5t-57 98t-20 126q0 93 29 169.5t79 131.5t118 85t146 30q64 0 116.5 -22.5t90 -64t57.5 -99.5t20 -128zM542 1153q0 72 -21.5 101.5t-56.5 29.5q-27 0 -49 -12.5t-37 -40 t-23.5 -71.5t-8.5 -107q0 -69 20.5 -96t55.5 -27q26 0 48 11t38 37t25 69t9 106zM1222 1411q17 16 39.5 30t60.5 14h218l-1190 -1413q-17 -17 -39.5 -29.5t-54.5 -12.5h-222zM1454 394q0 -93 -32.5 -169t-85 -130t-119.5 -83.5t-137 -29.5q-64 0 -116 22.5t-89 63.5t-57 98 t-20 125q0 94 29 171t79 132t118 85t146 30q64 0 116.5 -23t90 -64t57.5 -99.5t20 -128.5zM1224 392q0 73 -21.5 101t-56.5 28q-27 0 -49 -12t-37 -39.5t-23.5 -71.5t-8.5 -107q0 -68 20.5 -95.5t55.5 -27.5q26 0 48 11t38 37.5t25 69.5t9 106z"/>
|
|
20
|
+
<glyph glyph-name="ampersand" horiz-adv-x="1334" unicode="&" d="M732 1471q90 0 157 -27t111.5 -72.5t67 -106.5t22.5 -128l-180 -35q-17 -3 -29 -3q-23 0 -36 10.5t-21 35.5q-34 106 -120 106q-34 0 -60.5 -15.5t-44.5 -41.5t-27.5 -61t-9.5 -74q0 -40 13.5 -84t46.5 -95l272 -359q55 110 79 237q5 27 19.5 44t43.5 17h212 q-19 -147 -70 -274t-127 -230l239 -315h-260q-36 0 -61.5 4.5t-45.5 14.5t-36.5 25.5t-34.5 38.5l-18 23q-88 -59 -187 -90.5t-205 -31.5q-101 0 -179 26.5t-130.5 76t-79.5 119t-27 155.5q0 76 23.5 142.5t64.5 123t98 102t123 78.5q-28 61 -39.5 120.5t-11.5 113.5 q0 87 31 165t89 137t141 93.5t187 34.5zM334 399q0 -41 9 -75t29.5 -58.5t53.5 -38t80 -13.5q52 0 102 18t96 52l-261 357q-62 -53 -85.5 -114t-23.5 -128z"/>
|
|
21
|
+
<glyph glyph-name="quotesingle" horiz-adv-x="454" unicode="'" d="M476 1455l-36 -286l-46 -158q-15 -52 -41 -79.5t-77 -27.5q-44 0 -64.5 27.5t-23.5 79.5l-8 158l36 286h260z"/>
|
|
22
|
+
<glyph glyph-name="parenleft" horiz-adv-x="552" unicode="(" d="M328 427q0 -66 4.5 -139.5t13.5 -148t23.5 -146t34.5 -133.5q4 -12 6.5 -22.5t2.5 -19.5q0 -27 -15 -43.5t-36 -27.5l-142 -77q-40 84 -68.5 176.5t-47 187.5t-27.5 190t-9 182q0 156 20.5 303.5t66.5 291.5t119.5 287.5t179.5 293.5l124 -76q14 -10 24.5 -22.5 t10.5 -31.5q0 -12 -6 -26t-17 -34q-57 -104 -105.5 -216t-83 -233t-54 -250t-19.5 -266z"/>
|
|
23
|
+
<glyph glyph-name="parenright" horiz-adv-x="552" unicode=")" d="M258 825q0 66 -4.5 139.5t-13.5 148t-23.5 146t-34.5 133.5q-4 12 -6.5 22.5t-2.5 19.5q0 27 15 43.5t36 27.5l142 77q40 -84 68.5 -176.5t47 -188t27.5 -190t9 -181.5q0 -156 -20.5 -303.5t-66.5 -291.5t-119.5 -287.5t-179.5 -293.5l-124 76q-14 10 -24.5 22.5 t-10.5 31.5q0 12 6 26t17 34q57 103 105.5 215.5t83 233t54 250t19.5 266.5z"/>
|
|
24
|
+
<glyph glyph-name="asterisk" horiz-adv-x="736" unicode="*" d="M336 819l22 175q5 42 20 77q-14 -14 -30.5 -25t-35.5 -21l-142 -87l-54 115l142 87q20 11 39.5 19t39.5 12q-38 6 -71 30l-122 89l84 116l122 -90q15 -10 29 -21t25 -24q-4 17 -4 42v16.5t2 16.5l22 176h140l-22 -175q-3 -20 -7.5 -44t-13.5 -41q14 14 30.5 29t36.5 25 l142 88l54 -116l-142 -87q-20 -11 -40 -18.5t-40 -11.5q19 -4 37 -11.5t35 -19.5l120 -89l-82 -113l-122 87q-16 10 -29.5 21t-24.5 24q2 -10 3 -20t1 -21q0 -8 -0.5 -16.5t-1.5 -16.5l-22 -177h-140z"/>
|
|
25
|
+
<glyph glyph-name="plus" d="M784 1177l-49 -398h375l-28 -214h-373l-49 -400h-244l50 400h-372l28 214h370l50 398h242z" unicode="+"/>
|
|
26
|
+
<glyph glyph-name="comma" horiz-adv-x="472" unicode="," d="M30 176q0 32 12 59.5t34.5 48t53 32.5t68.5 12q45 0 78 -15.5t55 -42t32.5 -61t10.5 -72.5q0 -50 -16 -106.5t-47.5 -113.5t-78.5 -112t-108 -100l-54 48q-11 11 -16.5 20t-5.5 22q0 16 17.5 36t40 45.5t44.5 57t32 71.5q-34 3 -62 17t-48 36.5t-31 52.5t-11 65z"/>
|
|
27
|
+
<glyph glyph-name="hyphen" horiz-adv-x="686" unicode="-" d="M122 728h502l-32 -242h-500z"/>
|
|
28
|
+
<glyph glyph-name="period" horiz-adv-x="472" unicode="." d="M24 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5z"/>
|
|
29
|
+
<glyph glyph-name="slash" horiz-adv-x="750" unicode="/" d="M204 7q-12 -27 -31.5 -47t-42.5 -33.5t-47.5 -20.5t-46.5 -7h-128l682 1458q23 50 67 76t97 26h126z"/>
|
|
30
|
+
<glyph glyph-name="zero" d="M696 1471q101 0 184 -37t142 -111t91.5 -185.5t32.5 -259.5q0 -227 -49 -395t-134.5 -279t-201.5 -165.5t-249 -54.5q-101 0 -184 37t-142 111.5t-91.5 185.5t-32.5 259q0 227 49 395t134.5 279t201 165.5t249.5 54.5zM552 224q61 0 113 40t89.5 120.5t58.5 202.5t21 286 q0 106 -15.5 175t-40.5 110t-57 57.5t-65 16.5q-62 0 -113.5 -40t-89 -121t-58.5 -203t-21 -285q0 -106 15.5 -175.5t40.5 -110t57 -57t65 -16.5z" unicode="0"/>
|
|
31
|
+
<glyph glyph-name="one" d="M222 217h282l94 784l21 90l-197 -152q-17 -13 -33.5 -17t-30.5 -4q-26 0 -44 10.5t-26 22.5l-78 126l498 381h248l-153 -1241h245l-28 -217h-824z" unicode="1"/>
|
|
32
|
+
<glyph glyph-name="two" d="M714 1471q97 0 174.5 -27.5t131 -77t82 -117.5t28.5 -149q0 -90 -26.5 -164.5t-72.5 -141.5t-108.5 -129t-134.5 -128l-330 -301q56 16 110 25t100 9h290q45 0 69 -23t24 -61q0 -2 -0.5 -6.5t-2.5 -22t-6.5 -54.5t-13.5 -103h-1018l12 96q3 27 19 59.5t47 59.5l476 426 q70 63 119 117t79.5 105t44 101.5t13.5 106.5q0 73 -39 115t-117 42q-36 0 -67.5 -10.5t-57.5 -29t-46 -43.5t-33 -54q-20 -43 -47.5 -62t-68.5 -19q-22 0 -42 4l-154 27q30 108 85 188.5t129 134.5t163.5 80.5t188.5 26.5z" unicode="2"/>
|
|
33
|
+
<glyph glyph-name="three" d="M750 1471q99 0 175 -27.5t127 -74t77.5 -108t26.5 -130.5q0 -79 -16.5 -138t-49 -101t-81 -70t-112.5 -46q103 -42 154 -114.5t51 -175.5q0 -83 -22 -152t-60.5 -125t-92 -98t-116.5 -70.5t-133.5 -42.5t-143.5 -14q-104 0 -183 22.5t-136 70t-94 120.5t-59 175l140 54 q19 8 36.5 11t34.5 3q31 0 53.5 -12t31.5 -35q33 -87 80 -126.5t124 -39.5q58 0 103 20.5t76 55t47 81t16 97.5q0 36 -11 65.5t-42.5 50.5t-87.5 32.5t-147 11.5l28 205q91 1 151.5 16.5t96.5 44t51 70t15 95.5q0 75 -39.5 115.5t-116.5 40.5q-74 0 -127 -39.5t-79 -97.5 q-20 -43 -47.5 -62t-67.5 -19q-9 0 -19.5 1t-21.5 3l-154 27q29 108 84 188.5t128.5 134.5t163 80.5t188.5 26.5z" unicode="3"/>
|
|
34
|
+
<glyph glyph-name="four" d="M988 561h150l-24 -167q-3 -22 -20 -38.5t-46 -16.5h-87l-41 -339h-270l41 339h-584q-29 0 -53 18.5t-27 50.5l-11 139l788 910h294zM766 961q4 30 10.5 64.5t16.5 71.5l-454 -536h379z" unicode="4"/>
|
|
35
|
+
<glyph glyph-name="five" d="M1100 1333q-4 -30 -16.5 -55.5t-36 -44t-58.5 -28.5t-83 -10h-356l-75 -257q41 8 79 11t73 3q107 0 187.5 -30t134 -82.5t80.5 -123.5t27 -153q0 -127 -48 -233.5t-132 -183t-197.5 -119.5t-244.5 -43q-71 0 -133.5 14.5t-115 39.5t-96 58t-77.5 70l108 125q17 20 38 29 t42 9q29 0 53.5 -16t54.5 -35.5t71 -35.5t103 -16q71 0 122.5 25t84.5 66t49 95t16 113q0 88 -54 139.5t-163 51.5q-42 0 -91 -8t-106 -26l-178 50l214 725h740z" unicode="5"/>
|
|
36
|
+
<glyph glyph-name="six" d="M738 919q73 0 141.5 -23.5t121.5 -70.5t85 -118t32 -165q0 -114 -44.5 -215.5t-124 -177.5t-188 -120.5t-235.5 -44.5q-110 0 -196 33.5t-144.5 93t-89 142t-30.5 180.5q0 135 57.5 256.5t168.5 249.5l386 447q25 29 70 49t98 20h266l-537 -564q37 14 77.5 21t85.5 7z M350 423q0 -46 12.5 -83.5t37.5 -64t62.5 -41t87.5 -14.5q54 0 102.5 20.5t84.5 57.5t57.5 87t21.5 109q0 49 -15 87.5t-42 65.5t-66 41.5t-87 14.5q-54 0 -101 -20t-81.5 -56.5t-54 -88t-19.5 -115.5z" unicode="6"/>
|
|
37
|
+
<glyph glyph-name="seven" d="M1224 1457l-14 -115q-5 -40 -14.5 -74t-23.5 -56l-686 -1146q-17 -28 -49 -47t-65 -19h-252l656 1059q25 40 52.5 73t59.5 63h-650q-26 0 -43 18t-17 41q0 11 2.5 33.5t6.5 50.5t8.5 59t8.5 60h1020z" unicode="7"/>
|
|
38
|
+
<glyph glyph-name="eight" d="M518 -16q-107 0 -193 27.5t-147.5 77.5t-94.5 120.5t-33 156.5q0 69 16.5 130t52.5 111.5t92 89t134 63.5q-83 41 -124 109t-41 159q0 95 40 176t110.5 140.5t165 93t204.5 33.5q95 0 173.5 -27.5t134 -75t86 -112.5t30.5 -140q0 -128 -60.5 -219.5t-181.5 -140.5 q111 -42 160.5 -117.5t49.5 -175.5q0 -109 -43 -197.5t-119.5 -151t-182 -96.5t-229.5 -34zM546 210q61 0 105.5 19t74 52t44 78.5t14.5 98.5q0 40 -10 73.5t-32.5 57t-58 36.5t-85.5 13q-66 0 -111 -18.5t-73 -51.5t-40 -78.5t-12 -98.5q0 -39 10.5 -72t33 -57t57.5 -38 t83 -14zM626 864q65 0 105 22.5t62 56.5t29.5 75t7.5 77q0 31 -8.5 59.5t-27 50.5t-48 35t-72.5 13q-54 0 -92.5 -18t-63.5 -48.5t-36.5 -70.5t-11.5 -84q0 -32 7.5 -62t25.5 -53.5t48 -38t75 -14.5z" unicode="8"/>
|
|
39
|
+
<glyph glyph-name="nine" d="M526 570q-66 0 -129.5 22.5t-113.5 67.5t-80.5 113t-30.5 160q0 110 43 207.5t119.5 171t181.5 116.5t228 43q106 0 189 -31.5t139.5 -87.5t86 -133.5t29.5 -170.5q0 -80 -15.5 -149.5t-44.5 -134t-70 -125.5t-92 -122l-372 -450q-24 -29 -66.5 -48t-95.5 -19h-276 l528 554q16 17 31 33.5t29 32.5q-49 -25 -104 -37.5t-114 -12.5zM904 1044q0 46 -14 81.5t-39.5 60t-61.5 37.5t-79 13q-53 0 -96 -19.5t-73.5 -55t-47.5 -83.5t-17 -105q0 -90 46 -137t138 -47q57 0 102 18.5t76.5 52t48.5 80.5t17 104z" unicode="9"/>
|
|
40
|
+
<glyph glyph-name="colon" horiz-adv-x="472" unicode=":" d="M24 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5zM120 840q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54 t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5z"/>
|
|
41
|
+
<glyph glyph-name="semicolon" horiz-adv-x="472" unicode=";" d="M24 176q0 32 12 59.5t34.5 48t53 32.5t68.5 12q45 0 78 -15.5t55 -42t32.5 -61t10.5 -72.5q0 -50 -16 -106.5t-47.5 -113.5t-78.5 -112t-108 -100l-54 48q-11 11 -16.5 20t-5.5 22q0 16 17.5 36t40 45.5t44.5 57t32 71.5q-34 3 -62 17t-48 36.5t-31 52.5t-11 65zM118 840 q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5z"/>
|
|
42
|
+
<glyph glyph-name="less" horiz-adv-x="1067" unicode="<" d="M151 735l862 424l-27 -215q-3 -23 -17 -42.5t-43 -33.5l-302 -153q-27 -14 -57.5 -23.5t-63.5 -17.5q32 -8 59.5 -16.5t51.5 -22.5l267 -154q41 -23 41 -63q0 -8 -1 -12l-28 -215l-757 423z"/>
|
|
43
|
+
<glyph glyph-name="equal" d="M140 597h906l-28 -214h-906zM186 960h904l-26 -215h-906z" unicode="="/>
|
|
44
|
+
<glyph glyph-name="greater" horiz-adv-x="1067" unicode=">" d="M961 615l-862 -424l27 215q3 23 17 42.5t43 33.5l302 153q27 14 57.5 23.5t63.5 17.5q-32 8 -59.5 16.5t-51.5 22.5l-267 154q-41 23 -41 63q0 8 1 12l28 215l757 -423z"/>
|
|
45
|
+
<glyph glyph-name="question" horiz-adv-x="820" unicode="?" d="M138 1322q39 31 82.5 58t92.5 47.5t104 32t117 11.5q85 0 149 -24t106.5 -64.5t63.5 -94t21 -113.5q0 -85 -21.5 -143.5t-55 -100.5t-74 -72.5t-79 -59.5t-69.5 -62t-45 -79l-44 -142h-206v161q0 52 23.5 92.5t59 74.5t76.5 64t76.5 61.5t59 68t23.5 82.5q0 54 -27 86 t-93 32q-47 0 -80.5 -11.5t-58.5 -25t-44 -25t-37 -11.5q-20 0 -34 8.5t-22 27.5zM184 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5z"/>
|
|
46
|
+
<glyph glyph-name="at" horiz-adv-x="1486" unicode="@" d="M1016 182q-28 0 -55 6.5t-49.5 21t-39.5 37.5t-26 56q-63 -65 -127 -92.5t-133 -27.5q-53 0 -92.5 19t-65.5 52t-39 78t-13 98q0 61 16 125.5t47.5 124.5t78.5 113.5t110 93.5t141.5 63t172.5 23q42 0 75 -3t61.5 -9t53 -14.5t50.5 -20.5l-138 -378q-14 -39 -20.5 -68.5 t-6.5 -50.5q0 -38 18 -53t47 -15q39 0 73.5 33.5t60.5 91t41 134.5t15 165q0 103 -27.5 182.5t-80 134t-129 82.5t-173.5 28q-131 0 -241 -56t-189.5 -154.5t-124.5 -231.5t-45 -287q0 -132 35 -232.5t99.5 -168.5t155.5 -103t204 -35q73 0 133 7.5t107 19.5t81.5 26.5 t56.5 28.5q17 10 31.5 13.5t26.5 3.5q26 0 40.5 -15t19.5 -35l22 -81q-50 -33 -108.5 -61t-126 -49t-144 -32.5t-161.5 -11.5q-158 0 -285 51t-216.5 144.5t-138 225.5t-48.5 294q0 124 30 240.5t84.5 219t131.5 188t170 146.5t200.5 95t223.5 34q124 0 232.5 -43.5 t189.5 -123.5t127.5 -192.5t46.5 -251.5q0 -125 -36 -235t-99 -191.5t-148 -129t-183 -47.5zM670 369q19 0 37.5 7t36.5 24.5t35.5 46t32.5 70.5l100 274q-21 3 -42 3q-48 0 -95 -27.5t-84 -73.5t-60 -106.5t-23 -125.5q0 -92 62 -92z"/>
|
|
47
|
+
<glyph glyph-name="A" horiz-adv-x="1326" unicode="A" d="M1288 0h-252q-42 0 -67.5 19.5t-30.5 51.5l-45 262h-495l-108 -262q-11 -28 -43 -49.5t-71 -21.5h-256l696 1457h334zM489 555h366l-71 416q-9 52 -19.5 105.5t-17.5 97.5q-8 -24 -21 -54.5t-25.5 -59.5t-24 -54t-16.5 -37z"/>
|
|
48
|
+
<glyph glyph-name="B" horiz-adv-x="1208" unicode="B" d="M44 0l180 1457h500q127 0 217.5 -24t148 -68.5t84 -107t26.5 -138.5q0 -60 -15.5 -115.5t-49 -102.5t-86.5 -85.5t-128 -64.5q118 -32 174.5 -99.5t56.5 -170.5q0 -101 -38.5 -188.5t-111.5 -152.5t-177.5 -102.5t-236.5 -37.5h-544zM446 622l-46 -377h214q60 0 101 17.5 t66.5 49t37 73.5t11.5 92q0 33 -8.5 60t-29 45.5t-54 29t-82.5 10.5h-210zM472 838h156q55 0 99 11t75.5 37.5t48.5 70.5t17 109q0 81 -42.5 114.5t-131.5 33.5h-176z"/>
|
|
49
|
+
<glyph glyph-name="C" horiz-adv-x="1182" unicode="C" d="M678 252q55 0 95.5 8.5t69.5 21.5t49 28.5t36 28.5t30 21.5t30 8.5t26.5 -5.5t15.5 -12.5l114 -137q-95 -113 -225.5 -171.5t-296.5 -58.5q-138 0 -244.5 48.5t-179.5 133.5t-110.5 201.5t-37.5 251.5q0 125 28 237t79 207t122.5 171t158.5 129t187 81.5t209 28.5 q82 0 149.5 -15.5t122 -43t97.5 -65.5t75 -84l-114 -132q-12 -14 -28 -25t-42 -11q-17 0 -31 8t-28.5 19.5t-32.5 25.5t-43 25.5t-59.5 19.5t-81.5 8q-92 0 -171.5 -39t-138 -111.5t-91.5 -176t-33 -231.5q0 -93 22.5 -166t61.5 -123.5t93 -77t117 -26.5z"/>
|
|
50
|
+
<glyph glyph-name="D" horiz-adv-x="1364" unicode="D" d="M1366 822q0 -119 -27 -225.5t-77 -198t-121.5 -165t-160 -125.5t-193 -80t-219.5 -28h-524l180 1457h524q143 0 257.5 -48.5t194.5 -133.5t123 -201t43 -252zM1032 814q0 89 -20.5 161.5t-61 123.5t-99.5 79t-135 28h-196l-116 -955h196q100 0 180 39.5t136 112.5t86 177 t30 234z"/>
|
|
51
|
+
<glyph glyph-name="E" horiz-adv-x="1036" unicode="E" d="M1060 1206h-539l-44 -352h413l-32 -242h-411l-44 -361h543l-32 -251h-870l180 1457h868z"/>
|
|
52
|
+
<glyph glyph-name="F" horiz-adv-x="1024" unicode="F" d="M1060 1206h-539l-48 -384h451l-34 -251h-448l-70 -571h-328l180 1457h868z"/>
|
|
53
|
+
<glyph glyph-name="G" horiz-adv-x="1306" unicode="G" d="M710 235q60 0 108 10.5t92 29.5l28 238h-124q-28 0 -43 13t-15 35l22 188h486l-76 -609q-56 -41 -116 -70.5t-125.5 -48.5t-138 -28t-154.5 -9q-135 0 -246.5 49.5t-191 136.5t-123 206t-43.5 258q0 121 27.5 230.5t78.5 202.5t122.5 168t159 128t188.5 81.5t212 28.5 q93 0 168.5 -17t135.5 -45.5t107 -66t83 -77.5l-106 -131q-36 -44 -81 -44q-27 0 -55 18q-36 23 -67 40.5t-62.5 29t-67 17.5t-79.5 6q-95 0 -174 -40.5t-136 -114t-88.5 -176.5t-31.5 -227q0 -96 23.5 -172.5t66.5 -129t103 -80.5t133 -28z"/>
|
|
54
|
+
<glyph glyph-name="H" horiz-adv-x="1392" unicode="H" d="M1226 0h-328l76 620h-526l-76 -620h-328l180 1457h328l-76 -615h526l76 615h328z"/>
|
|
55
|
+
<glyph glyph-name="I" horiz-adv-x="592" unicode="I" d="M400 0h-328l178 1457h328z"/>
|
|
56
|
+
<glyph glyph-name="J" horiz-adv-x="788" unicode="J" d="M688 523q-15 -122 -55 -221t-106 -170t-157.5 -109.5t-209.5 -38.5q-53 0 -103.5 6t-104.5 20l24 187q3 25 17.5 41.5t46.5 16.5q24 0 54 -5.5t66 -5.5q81 0 133 63.5t69 207.5l114 942h326z"/>
|
|
57
|
+
<glyph glyph-name="K" horiz-adv-x="1320" unicode="K" d="M474 861h48q35 0 62 11.5t44 36.5l346 483q28 39 64 52t84 13h282l-458 -595q-23 -31 -48 -51t-52 -34q34 -14 60 -37.5t44 -63.5l308 -676h-290q-28 0 -47.5 4t-33 11.5t-22.5 19t-15 25.5l-226 512q-13 29 -37.5 40.5t-66.5 11.5h-75l-77 -624h-324l178 1457h326z"/>
|
|
58
|
+
<glyph glyph-name="L" horiz-adv-x="956" unicode="L" d="M402 260h490l-32 -260h-816l180 1457h326z"/>
|
|
59
|
+
<glyph glyph-name="M" horiz-adv-x="1732" unicode="M" d="M830 640q21 -63 36 -129q16 33 33.5 65t36.5 64l446 767q20 34 50 42t58 8h256l-180 -1457h-286l102 848q3 27 9.5 59.5t14.5 67.5l-438 -752q-20 -34 -52 -50.5t-70 -16.5h-44q-38 0 -66.5 17t-39.5 50l-256 754q-2 -34 -3.5 -66t-4.5 -58l-100 -853h-288l180 1457h248 q21 0 37 -1t28.5 -5.5t21.5 -14.5t15 -29l256 -767v0z"/>
|
|
60
|
+
<glyph glyph-name="N" horiz-adv-x="1392" unicode="N" d="M396 1457q21 0 35.5 -1.5t26 -7t20.5 -15.5t18 -26l511 -900q2 35 6 67t7 60l98 823h288l-180 -1457h-170q-38 0 -63 11t-43 43l-509 899q-2 -28 -4.5 -54t-4.5 -49l-100 -850h-288l180 1457h172v0z"/>
|
|
61
|
+
<glyph glyph-name="O" horiz-adv-x="1464" unicode="O" d="M1468 822q0 -118 -27.5 -226t-78 -201t-122 -169t-160.5 -129.5t-193 -83t-219 -29.5q-144 0 -258.5 50.5t-194.5 138t-122.5 206t-42.5 255.5q0 118 27.5 226.5t78 201.5t122.5 169t161 129.5t193 83t220 29.5q143 0 257.5 -50.5t194 -138.5t122 -207t42.5 -255z M1134 814q0 90 -21.5 163.5t-63 126t-101.5 81t-136 28.5q-100 0 -179 -41.5t-134.5 -116.5t-85 -180.5t-29.5 -233.5q0 -90 21 -163t61.5 -125t100.5 -80.5t137 -28.5q100 0 179.5 41t135 116t85.5 180t30 233z"/>
|
|
62
|
+
<glyph glyph-name="P" horiz-adv-x="1180" unicode="P" d="M428 491l-60 -491h-324l178 1457h482q130 0 222.5 -31.5t152 -87t87.5 -131t28 -162.5q0 -119 -36.5 -220.5t-111.5 -175.5t-190 -116t-272 -42h-156zM518 1214l-59 -478h157q70 0 117.5 20.5t77 58t42.5 89.5t13 114q0 43 -11.5 79t-35.5 62t-60.5 40.5t-86.5 14.5h-154 z"/>
|
|
63
|
+
<glyph glyph-name="Q" horiz-adv-x="1464" unicode="Q" d="M1468 822q0 -111 -24 -213t-69 -191.5t-109 -164t-143 -129.5l291 -398h-268q-57 0 -103 13.5t-75 56.5l-141 203q-77 -15 -159 -15q-144 0 -258.5 50.5t-194.5 138t-122.5 206t-42.5 255.5q0 118 27.5 226.5t78 201.5t122.5 169t161 129.5t193 83t220 29.5 q143 0 257.5 -50.5t194 -138.5t122 -207t42.5 -255zM1134 814q0 90 -21.5 163.5t-63 126t-101.5 81t-136 28.5q-100 0 -179 -41.5t-134.5 -116.5t-85 -180.5t-29.5 -233.5q0 -90 21 -163t61.5 -125t100.5 -80.5t137 -28.5q100 0 179.5 41t135 116t85.5 180t30 233z"/>
|
|
64
|
+
<glyph glyph-name="R" horiz-adv-x="1228" unicode="R" d="M435 544l-67 -544h-324l178 1457h442q134 0 228.5 -28.5t154.5 -78.5t87.5 -118.5t27.5 -148.5q0 -81 -21.5 -153t-62.5 -132.5t-100.5 -107t-135.5 -76.5q30 -17 56.5 -41t41.5 -60l212 -513h-294q-41 0 -69 16t-39 46l-158 431q-11 28 -29.5 39.5t-54.5 11.5h-73z M518 1214l-55 -445h119q70 0 119 21.5t79.5 57.5t44 84t13.5 101q0 41 -12 74.5t-37.5 57t-64 36.5t-90.5 13h-116z"/>
|
|
65
|
+
<glyph glyph-name="S" horiz-adv-x="1000" unicode="S" d="M942 1165q-17 -24 -34.5 -35t-41.5 -11q-23 0 -46 15t-51.5 33t-65.5 33t-87 15q-46 0 -80.5 -13t-57.5 -36t-34.5 -54t-11.5 -68q0 -40 22.5 -67t60 -47.5t84.5 -37.5t96.5 -37t97 -46t85 -65t60 -94t22.5 -132q0 -110 -38 -207t-109 -169.5t-172.5 -115t-228.5 -42.5 q-63 0 -126.5 14t-122 39.5t-108.5 60.5t-85 78l116 152q13 17 34 28t42 11q28 0 54.5 -19.5t58.5 -43t74.5 -43t104.5 -19.5q91 0 140.5 49.5t49.5 146.5q0 45 -22.5 74t-59 49t-83.5 35.5t-96 33.5t-96 42.5t-83.5 64t-59 97t-22.5 141.5q0 97 36.5 186.5t104.5 158.5 t165 110t218 41q62 0 120.5 -13t109.5 -36t93 -54.5t71 -68.5z"/>
|
|
66
|
+
<glyph glyph-name="T" horiz-adv-x="1104" unicode="T" d="M1206 1457l-34 -258h-370l-148 -1199h-324l146 1199h-372l32 258h1070z"/>
|
|
67
|
+
<glyph glyph-name="U" horiz-adv-x="1334" unicode="U" d="M640 256q61 0 111 23.5t88 67t63 105.5t34 139l106 866h326l-106 -866q-17 -133 -70.5 -244.5t-139 -192t-198.5 -125.5t-248 -45q-122 0 -217.5 37t-161 104.5t-99.5 161.5t-34 207q0 47 6 97l104 866h326l-106 -866q-2 -18 -3 -35.5t-1 -34.5q0 -124 56.5 -194.5 t163.5 -70.5z"/>
|
|
68
|
+
<glyph glyph-name="V" horiz-adv-x="1368" unicode="V" d="M118 1457h262q42 0 67 -20t31 -51l152 -803q9 -49 21.5 -110.5t20.5 -124.5q21 63 48 123.5t48 111.5l340 803q6 13 17 26t26.5 23t34 16t38.5 6h264l-716 -1457h-296z"/>
|
|
69
|
+
<glyph glyph-name="W" horiz-adv-x="1980" unicode="W" d="M128 1457h256q42 0 67.5 -19.5t30.5 -51.5l102 -785q4 -28 6 -57.5t4 -53.5q2 -29 2 -56q15 47 31.5 88.5t30.5 78.5l298 785q11 27 42 49t72 22h76q42 0 68.5 -19.5t31.5 -51.5l112 -785q5 -35 10.5 -76.5t9.5 -86.5q13 45 26 86t26 77l288 785q10 28 42.5 49.5 t73.5 21.5h258l-594 -1457h-296l-134 920q-3 22 -7 48.5t-7 55.5q-11 -29 -21.5 -55.5t-18.5 -48.5l-356 -920h-294z"/>
|
|
70
|
+
<glyph glyph-name="X" horiz-adv-x="1324" unicode="X" d="M472 777l-316 680h296q32 0 45.5 -8.5t22.5 -28.5l192 -460q5 10 11 19t13 20l256 416q14 23 30.5 32.5t39.5 9.5h342l-485 -664l351 -793h-292q-32 0 -50 16t-26 36l-215 535q-4 -7 -8.5 -13t-8.5 -12l-322 -510q-19 -29 -44 -40.5t-54 -11.5h-326z"/>
|
|
71
|
+
<glyph glyph-name="Y" horiz-adv-x="1256" unicode="Y" d="M799 558l-69 -558h-326l69 555l-375 902h290q42 0 65.5 -19.5t34.5 -51.5l140 -441q14 -44 25.5 -85t19.5 -79q19 38 42 78.5t49 85.5l248 441q15 27 44 49t70 22h270z"/>
|
|
72
|
+
<glyph glyph-name="Z" horiz-adv-x="1120" unicode="Z" d="M1212 1457l-14 -98q-3 -20 -12.5 -38t-21.5 -35l-736 -1035h616l-32 -251h-1040l12 96q3 20 12.5 38t21.5 35l737 1037h-583l32 251h1008z"/>
|
|
73
|
+
<glyph glyph-name="bracketleft" horiz-adv-x="552" unicode="[" d="M-22 -320l230 1875h420l-14 -114q-4 -29 -28.5 -50t-57.5 -21h-93l-186 -1504h97q30 0 48.5 -18.5t18.5 -45.5q0 -1 -0.5 -4t-2 -14.5t-4.5 -36t-8 -67.5h-420z"/>
|
|
74
|
+
<glyph glyph-name="backslash" horiz-adv-x="748" unicode="\" d="M100 1459h126q53 0 88.5 -27t49.5 -75l324 -1458h-126q-47 0 -87.5 27.5t-54.5 80.5z"/>
|
|
75
|
+
<glyph glyph-name="bracketright" horiz-adv-x="552" unicode="]" d="M-30 -207q5 30 28 51.5t56 21.5h95l186 1504h-97q-31 0 -50 18t-19 44q0 2 0.5 4.5t0.5 4.5l16 114h420l-232 -1875h-420z"/>
|
|
76
|
+
<glyph glyph-name="asciicircum" d="M1114 768h-228q-27 0 -45 13.5t-29 34.5l-124 237q-17 32 -31.5 61t-25.5 58q-10 -29 -23 -58t-30 -61l-120 -237q-11 -20 -29.5 -34t-48.5 -14h-240l386 689h202z" unicode="^"/>
|
|
77
|
+
<glyph glyph-name="underscore" horiz-adv-x="726" unicode="_" d="M652 -114l-24 -186h-726l24 186h726z"/>
|
|
78
|
+
<glyph glyph-name="grave" horiz-adv-x="612" unicode="`" d="M278 1471q44 0 64.5 -14.5t31.5 -43.5l94 -245h-170q-33 0 -52.5 9t-37.5 31l-210 263h280z"/>
|
|
79
|
+
<glyph glyph-name="a" horiz-adv-x="1058" unicode="a" d="M897 0h-166q-29 0 -48.5 7.5t-31 20.5t-16 31t-4.5 39v74q-64 -88 -142 -138t-172 -50q-56 0 -108 22.5t-92 68t-64 116t-24 166.5q0 141 51.5 267.5t144 221.5t219.5 151t279 56q74 0 150 -10t150 -36zM441 229q34 0 66 25.5t60.5 69.5t52.5 103t41 126l36 287h-18 q-76 0 -138.5 -34t-107.5 -92.5t-69.5 -136t-24.5 -165.5q0 -50 8 -85t21.5 -56.5t32 -31.5t40.5 -10z"/>
|
|
80
|
+
<glyph glyph-name="b" horiz-adv-x="1100" unicode="b" d="M43 0l182 1497h304l-77 -623q69 84 150.5 131.5t172.5 47.5q64 0 117 -22.5t91.5 -70.5t60 -122.5t21.5 -177.5q0 -136 -41.5 -258.5t-111.5 -215.5t-161.5 -147.5t-191.5 -54.5q-77 0 -135.5 29.5t-99.5 77.5l-3 -10q-14 -42 -36 -61.5t-72 -19.5h-170zM651 818 q-33 0 -68.5 -25t-68.5 -68.5t-61.5 -102t-47.5 -124.5l-30 -242q29 -24 65 -34t69 -10q54 0 99.5 36t78.5 94.5t51.5 133.5t18.5 153q0 99 -29 144t-77 45z"/>
|
|
81
|
+
<glyph glyph-name="c" horiz-adv-x="876" unicode="c" d="M855 182q-50 -55 -96 -93t-95 -61t-104.5 -33.5t-122.5 -10.5q-91 0 -164 31t-124.5 88t-79.5 138t-28 182q0 127 41.5 241t116 200t176.5 136.5t224 50.5q104 0 178.5 -35.5t133.5 -111.5l-100 -115q-11 -11 -25 -19.5t-31 -8.5q-20 0 -33.5 8.5t-29.5 18t-39 18 t-60 8.5q-46 0 -89.5 -26.5t-77.5 -76.5t-54.5 -123t-20.5 -166q0 -52 12 -90.5t33 -64t49 -38.5t60 -13q48 0 77.5 13.5t51.5 29.5t41 29.5t46 13.5q15 0 29.5 -7t24.5 -19l80 -94v0z"/>
|
|
82
|
+
<glyph glyph-name="d" horiz-adv-x="1102" unicode="d" d="M765 0q-29 0 -48.5 7.5t-31 20.5t-16 31t-4.5 39v87q-71 -94 -157 -147.5t-183 -53.5q-64 0 -117 22.5t-91.5 70.5t-60 122.5t-21.5 178.5q0 90 19 175.5t53 160.5t81 137.5t103.5 107t119.5 69.5t130 25q64 0 115.5 -21.5t90.5 -56.5l66 522h304l-186 -1497h-166z M449 220q32 0 66.5 24t67 66t60.5 98.5t48 121.5l32 252q-29 23 -64.5 33t-67.5 10q-54 0 -99.5 -36t-78.5 -94.5t-51.5 -133.5t-18.5 -153q0 -99 29 -143.5t77 -44.5z"/>
|
|
83
|
+
<glyph glyph-name="e" horiz-adv-x="968" unicode="e" d="M951 782q0 -71 -28 -130t-97.5 -104.5t-187 -77.5t-295.5 -50q2 -106 46.5 -155t131.5 -49q41 0 71 7t52.5 18t40.5 23l34.5 23t34.5 18t41 7q15 0 29 -7.5t25 -19.5l80 -93q-55 -54 -107.5 -93.5t-108 -65t-118 -37.5t-136.5 -12q-92 0 -169 31.5t-132.5 89t-86 138.5 t-30.5 180q0 83 18.5 162t53 148.5t84.5 128t112.5 100.5t137 65.5t158.5 23.5q83 0 147.5 -24t108.5 -62.5t67 -86.5t23 -96zM587 842q-77 0 -135 -61.5t-87 -168.5q97 15 157 31.5t93 36t44.5 42t11.5 48.5t-20 49t-64 23z"/>
|
|
84
|
+
<glyph glyph-name="f" horiz-adv-x="664" unicode="f" d="M484 823l-93 -773l-54 -174q-18 -58 -55 -90t-105 -32h-126l129 1070l-61 14q-26 6 -43.5 21.5t-17.5 42.5q0 7 1 11l16 122h131l7 59q11 89 49 161t97 123t136.5 79t167.5 28q35 0 64.5 -4.5t59.5 -14.5l-28 -156q-5 -26 -28 -34t-46 -8q-77 0 -122.5 -41t-57.5 -143 l-6 -49h210l-28 -212h-197z"/>
|
|
85
|
+
<glyph glyph-name="g" horiz-adv-x="1008" unicode="g" d="M901 727q0 -64 -17.5 -109t-38.5 -85t-38.5 -82t-17.5 -99q0 -41 13.5 -75.5t29.5 -70.5t29.5 -76t13.5 -92q0 -80 -35 -151.5t-101 -125t-162.5 -85t-219.5 -31.5q-101 0 -181 21t-135.5 57t-85.5 85.5t-30 106.5q0 88 44.5 146.5t114.5 94t155 50t166 14.5 q46 0 87.5 -4t76.5 -11q-2 12 -2 24.5v26.5q0 53 27 121q-39 -26 -89.5 -41t-125.5 -15q-59 0 -113 19.5t-95.5 59.5t-66.5 100.5t-25 143.5q0 77 29.5 150.5t88 131t145 92.5t201.5 35q59 0 113.5 -13.5t100.5 -40.5h298l-14 -97q-9 -61 -58 -77l-88 -30q6 -33 6 -68z M469 501q37 0 64.5 19t46 49.5t28 68.5t9.5 77q0 65 -27 101t-83 36q-37 0 -64.5 -17.5t-45.5 -46.5t-27 -67t-9 -79q0 -66 27 -103.5t81 -37.5zM593 14v12t-1 11q-51 8 -93.5 12t-77.5 4q-54 0 -92.5 -8t-63 -21.5t-35.5 -32t-11 -38.5q0 -51 37.5 -77t126.5 -26 q46 0 85 12t66.5 33.5t43 51.5t15.5 67z"/>
|
|
86
|
+
<glyph glyph-name="h" horiz-adv-x="1108" unicode="h" d="M43 0l182 1497h310l-73 -596q71 78 150 115t163 37q58 0 107.5 -21t84.5 -61.5t55 -99.5t20 -136q0 -18 -1.5 -37t-3.5 -39l-78 -659h-310l78 659q2 16 3 29.5t1 25.5q0 54 -19 75t-57 21q-31 0 -65 -18.5t-65.5 -52.5t-59 -82t-45.5 -107l-67 -550h-310z"/>
|
|
87
|
+
<glyph glyph-name="i" horiz-adv-x="540" unicode="i" d="M485 1037l-124 -1037h-306l124 1037h306zM543 1321q0 -37 -16 -69.5t-42 -57t-59.5 -39t-68.5 -14.5t-67 14.5t-56.5 39t-39.5 57t-15 69.5t15 70t40.5 58t57.5 39.5t67 14.5q36 0 69 -14t58.5 -39t41 -58t15.5 -71z"/>
|
|
88
|
+
<glyph glyph-name="j" horiz-adv-x="534" unicode="j" d="M487 1037l-126 -1039q-9 -73 -36.5 -137.5t-75 -113t-115.5 -76.5t-157 -28q-44 0 -75 4.5t-63 13.5l30 163q4 21 17.5 31t46.5 10q32 0 53.5 6t35.5 21t22 40.5t13 65.5l126 1039h304zM533 1321q0 -37 -16 -69.5t-42 -57t-59.5 -39t-68.5 -14.5t-67 14.5t-56.5 39 t-39.5 57t-15 69.5t15 70t40.5 58t57.5 39.5t67 14.5q36 0 69 -14t58.5 -39t41 -58t15.5 -71z"/>
|
|
89
|
+
<glyph glyph-name="k" horiz-adv-x="1074" unicode="k" d="M537 1497l-103 -839h21q26 0 42 8t32 29l214 292q19 26 42 38t56 12h278l-290 -369q-20 -26 -44 -46t-50 -35q21 -17 36.5 -39.5t27.5 -51.5l208 -496h-270q-33 0 -54.5 11.5t-33.5 40.5l-144 367q-11 25 -23.5 32.5t-40.5 7.5h-32l-56 -459h-306l184 1497h306z"/>
|
|
90
|
+
<glyph glyph-name="l" horiz-adv-x="520" unicode="l" d="M43 0l182 1497h306l-182 -1497h-306z"/>
|
|
91
|
+
<glyph glyph-name="m" horiz-adv-x="1594" unicode="m" d="M35 0l126 1037h160q48 0 75 -22.5t27 -73.5v-61q66 88 139 130.5t153 42.5q88 0 146 -57t74 -166q69 115 151 169t185 54q58 0 105.5 -20.5t81 -60.5t52 -98t18.5 -134q0 -19 -1.5 -39.5t-3.5 -41.5l-78 -659h-306l78 659q2 17 3 31t1 27q0 51 -16 71t-48 20 q-31 0 -59.5 -16.5t-54 -48t-46.5 -76t-37 -99.5l-67 -568h-306l78 659q2 17 3 31t1 27q0 51 -16 71t-48 20q-31 0 -60 -17t-54.5 -49t-46.5 -77.5t-37 -101.5l-68 -563h-304z"/>
|
|
92
|
+
<glyph glyph-name="n" horiz-adv-x="1100" unicode="n" d="M641 0l78 659q2 16 3 29.5t1 25.5q0 53 -18.5 73.5t-55.5 20.5q-34 0 -71 -21t-70.5 -59t-61.5 -92.5t-44 -120.5l-57 -515h-310l124 1037h160q48 0 75 -22.5t27 -73.5v-83q75 100 164 147.5t184 47.5q58 0 106.5 -21t83.5 -61.5t55 -99.5t20 -136q0 -18 -1.5 -37 t-3.5 -39l-78 -659h-310z"/>
|
|
93
|
+
<glyph glyph-name="o" horiz-adv-x="1034" unicode="o" d="M471 214q52 0 93 31.5t69.5 86t44 127t15.5 154.5q0 113 -30.5 161.5t-99.5 48.5q-52 0 -93 -31.5t-69.5 -85.5t-44 -127t-15.5 -155q0 -111 30.5 -160.5t99.5 -49.5zM443 -16q-87 0 -162.5 29t-131 84.5t-87 137t-31.5 187.5q0 138 45.5 253.5t122.5 199.5t178.5 131 t213.5 47q87 0 162 -29t130.5 -84.5t87.5 -137t32 -187.5q0 -136 -45.5 -251.5t-122.5 -200t-178.5 -132t-213.5 -47.5z"/>
|
|
94
|
+
<glyph glyph-name="p" horiz-adv-x="1082" unicode="p" d="M-5 -329l166 1366h160q48 0 75 -22.5t27 -73.5v-94q71 96 158 151t186 55q64 0 117 -22.5t91.5 -70.5t60 -122.5t21.5 -177.5q0 -136 -41.5 -258.5t-111.5 -215.5t-161.5 -147.5t-191.5 -54.5q-65 0 -116 21t-90 56l-48 -390h-302zM643 818q-32 0 -67 -24.5t-67.5 -67 t-61 -99.5t-47.5 -122l-31 -250q29 -23 64.5 -33t67.5 -10q54 0 99.5 36t78.5 94.5t51.5 133.5t18.5 153q0 99 -29 144t-77 45z"/>
|
|
95
|
+
<glyph glyph-name="q" horiz-adv-x="1058" unicode="q" d="M855 -329h-204q-26 0 -43 8.5t-28 21.5t-15.5 29t-4.5 32q0 10 1 15l47 365q-61 -75 -133.5 -116.5t-157.5 -41.5q-56 0 -108 22.5t-92 68t-64 116t-24 166.5q0 141 51.5 267.5t144 221.5t219.5 151t279 56q74 0 150 -10t150 -36zM441 229q33 0 65 25.5t60.5 69t52.5 102 t41 124.5l37 290h-18q-76 0 -138.5 -34t-107.5 -92.5t-69.5 -136t-24.5 -165.5q0 -50 8 -85t21.5 -56.5t32 -31.5t40.5 -10z"/>
|
|
96
|
+
<glyph glyph-name="r" horiz-adv-x="750" unicode="r" d="M35 0l126 1037h160q48 0 75 -22.5t27 -73.5v-118q60 106 130 163t145 57q42 0 83 -19l-56 -287q-51 22 -97 22q-77 0 -136.5 -69.5t-96.5 -223.5l-56 -466h-304z"/>
|
|
97
|
+
<glyph glyph-name="s" horiz-adv-x="790" unicode="s" d="M743 819q-14 -18 -26 -26t-32 -8t-39.5 9t-42 20.5t-51 20.5t-65.5 9q-69 0 -98.5 -26.5t-29.5 -68.5q0 -27 16.5 -46t43.5 -34t61.5 -27.5t70.5 -28t70.5 -35.5t61.5 -49t43.5 -69t16.5 -95q0 -78 -31 -147.5t-89 -121t-140.5 -82t-185.5 -30.5q-49 0 -97 10t-90.5 27 t-77.5 40.5t-57 50.5l76 114q14 20 32.5 31.5t45.5 11.5q25 0 43 -12l39 -26t50 -26t76 -12q66 0 98 29.5t32 69.5q0 31 -16.5 51t-43.5 34.5t-61 26t-70 25.5t-70 32.5t-61 46.5t-43.5 69t-16.5 99q0 72 26.5 140t79 120.5t130.5 84.5t182 32t185.5 -36t134.5 -88z"/>
|
|
98
|
+
<glyph glyph-name="t" horiz-adv-x="730" unicode="t" d="M135 224v17t1.5 28.5t5 49t9.5 80.5l53 424h-83q-19 0 -32 12.5t-13 37.5q0 1 2 17.5t4 35t4 34.5t2 18l3 27l157 32l87 253q15 48 68 48h168l-38 -303h232l-26 -212h-232l-50 -407q-5 -41 -7.5 -64.5t-4 -36t-2 -17t-0.5 -5.5q0 -29 13.5 -48.5t42.5 -19.5 q16 0 26.5 3.5t18.5 8t15 8t16 3.5q14 0 21 -6.5t13 -20.5l68 -147q-62 -45 -133 -67.5t-143 -22.5q-60 0 -108 16.5t-82.5 48t-54 75.5t-21.5 100z"/>
|
|
99
|
+
<glyph glyph-name="u" horiz-adv-x="1098" unicode="u" d="M459 1037l-78 -658q-2 -16 -3 -29.5t-1 -25.5q0 -53 18.5 -74t55.5 -21q31 0 65.5 18.5t66.5 52t59.5 81.5t45.5 107l67 549h310l-126 -1037h-158q-110 0 -110 102v66q-75 -94 -161 -139t-179 -45q-58 0 -106.5 21t-84 61.5t-55 100t-19.5 136.5q0 18 1.5 37t3.5 39 l78 658h310z"/>
|
|
100
|
+
<glyph glyph-name="v" horiz-adv-x="1032" unicode="v" d="M63 1037h256q32 0 51 -15.5t23 -38.5l68 -465q9 -59 15 -115.5t10 -113.5q18 56 39.5 112t45.5 117l182 465q9 24 32 39t50 15h246l-504 -1037h-262z"/>
|
|
101
|
+
<glyph glyph-name="w" horiz-adv-x="1510" unicode="w" d="M73 1037h238q30 0 51 -15t23 -39l30 -465q0 -4 0.5 -7.5t0.5 -7.5q3 -48 5 -93t3 -90q18 48 38.5 97t40.5 101l174 466q8 23 31.5 38.5t50.5 15.5h134q32 0 51.5 -15.5t22.5 -38.5l60 -466q7 -51 13.5 -100t11.5 -97q14 48 30 96t33 101l146 465q8 23 30.5 38.5 t49.5 15.5h228l-422 -1037h-242q-18 0 -29.5 12t-16.5 40l-76 517q-3 22 -5.5 43.5t-4.5 43.5q-8 -23 -17 -45t-17 -44l-198 -515q-21 -52 -66 -52h-232z"/>
|
|
102
|
+
<glyph glyph-name="x" horiz-adv-x="1070" unicode="x" d="M346 562l-233 475h284q30 0 43.5 -8t22.5 -28l115 -267q7 13 15 25t16 25l136 211q26 42 66 42h282l-360 -474l258 -563h-284q-30 0 -47.5 16t-26.5 38l-129 317q-5 -11 -11 -21t-12 -18l-184 -278q-14 -21 -33.5 -37.5t-48.5 -16.5h-274z"/>
|
|
103
|
+
<glyph glyph-name="y" horiz-adv-x="1032" unicode="y" d="M421 -270q-16 -31 -39.5 -45t-56.5 -14h-232l237 422l-257 944h262q33 0 49.5 -16t22.5 -38l90 -447q6 -29 11 -57.5t8 -57.5q12 29 26 58.5t27 58.5l192 445q12 23 35 38.5t47 15.5h250z"/>
|
|
104
|
+
<glyph glyph-name="z" horiz-adv-x="892" unicode="z" d="M889 913q-4 -32 -18.5 -61t-31.5 -50l-448 -572h408l-28 -230h-776l16 126q2 19 16 47.5t34 54.5l452 579h-394l28 230h758z"/>
|
|
105
|
+
<glyph glyph-name="braceleft" horiz-adv-x="552" unicode="{" d="M96 432q0 45 -18.5 73.5t-63.5 28.5l22 167q37 0 60 16t36 47.5t17.5 79.5t4.5 112q0 11 -0.5 28t-0.5 35.5t-0.5 35.5t-0.5 29q0 114 25 201.5t77.5 147.5t134.5 91t195 31h46l-16 -130q-2 -15 -9.5 -25t-17.5 -17t-20.5 -10t-18.5 -3q-57 0 -87 -41t-39 -113 q-7 -55 -9 -103.5t-3.5 -94t-3 -89t-6.5 -88.5q-5 -38 -19 -73.5t-36.5 -65.5t-53 -52t-69.5 -34q63 -22 93.5 -74t30.5 -115q0 -57 -11.5 -111.5t-25.5 -108.5t-25.5 -109t-11.5 -114q0 -54 22 -86t70 -32q16 0 34 -12.5t18 -38.5q0 -7 -2 -26t-5 -40.5t-5.5 -41 t-3.5 -27.5h-48q-89 0 -153.5 21.5t-106 61t-61 94.5t-19.5 121q0 64 13 122.5t29 113.5t29 109t13 109z"/>
|
|
106
|
+
<glyph glyph-name="bar" horiz-adv-x="600" unicode="|" d="M120 1557h240v-1886h-240v1886z"/>
|
|
107
|
+
<glyph glyph-name="braceright" horiz-adv-x="552" unicode="}" d="M430 151q0 -114 -25 -201.5t-77.5 -147.5t-134 -91t-193.5 -31h-48l18 128q5 30 28 44t40 14q56 1 85.5 41.5t38.5 111.5q7 54 9.5 102.5t3.5 94t2.5 89t6.5 87.5q4 38 18 73.5t36.5 65.5t53 52t68.5 34q-63 22 -93.5 74.5t-30.5 117.5q0 56 12 110t26 108t26 109.5 t12 114.5q0 53 -21.5 85.5t-68.5 33.5q-8 0 -17.5 2.5t-17.5 8.5t-13.5 15t-5.5 22q0 1 2 17t4 35.5t4 36t2 17.5l4 31h48q88 0 152 -21.5t105.5 -61t61 -95t19.5 -122.5q0 -63 -13 -121.5t-28 -113.5t-28 -109t-13 -108q0 -45 17.5 -73.5t62.5 -28.5l-20 -167 q-37 0 -60 -15.5t-36 -47.5t-17.5 -80t-4.5 -113v-127z"/>
|
|
108
|
+
<glyph glyph-name="asciitilde" d="M670 677q48 0 74 31t26 91h250q0 -85 -22.5 -153t-64.5 -115.5t-103.5 -73t-139.5 -25.5q-53 0 -99.5 11.5t-86.5 26t-73.5 26t-60.5 11.5q-48 0 -74 -31t-26 -91h-250q0 85 22.5 153t64.5 115.5t103.5 73t139.5 25.5q53 0 99.5 -11.5t86.5 -26t73.5 -26t60.5 -11.5z" unicode="~"/>
|
|
109
|
+
<glyph glyph-name="uni00A0" horiz-adv-x="386" unicode=" "/>
|
|
110
|
+
<glyph glyph-name="exclamdown" horiz-adv-x="698" unicode="¡" d="M110 -331l66 529q11 92 33 182.5t51 184.5h204q2 -38 3.5 -74.5t1.5 -73.5q0 -55 -3 -109.5t-10 -109.5l-64 -529h-282zM222 882q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13 t-55.5 36t-37 54.5t-13.5 67.5z"/>
|
|
111
|
+
<glyph glyph-name="cent" d="M461 -7q-77 15 -141 52.5t-111 95t-73 134.5t-26 171q0 123 39.5 230t114.5 187.5t183.5 129.5t246.5 55l32 144q3 13 11 25.5t19.5 22.5t26 16.5t31.5 6.5h110l-51 -229q75 -16 134 -49.5t107 -84.5l-90 -102q-14 -17 -27.5 -24.5t-36.5 -7.5q-15 0 -28.5 5t-29.5 13 t-34.5 16.5t-42.5 16.5l-135 -613q46 6 78 19t56.5 26.5t44.5 24t43 10.5q38 0 52 -23l70 -103q-44 -43 -92 -73.5t-98 -50.5t-101 -31t-101 -15l-28 -129q-6 -28 -30.5 -50t-57.5 -22h-110zM404 460q0 -85 27.5 -144t81.5 -88l132 599q-63 -11 -109 -41t-75 -77.5 t-43 -110.5t-14 -138z" unicode="¢"/>
|
|
112
|
+
<glyph glyph-name="sterling" d="M929 662q-2 -13 -9.5 -26t-19.5 -23t-27.5 -16t-33.5 -6h-342l-19 -165q-8 -63 -29 -112.5t-59 -92.5q49 11 97.5 17.5t96.5 6.5h518l-16 -120q-3 -22 -15 -44t-30.5 -40t-43.5 -29.5t-53 -11.5h-956l24 180q68 14 103.5 52.5t44.5 113.5l30 245h-146l15 117 q2 13 9.5 25.5t19.5 22.5t27.5 16.5t33.5 6.5h64l27 221q12 95 54.5 180.5t113 150t167.5 102.5t217 38q88 0 154 -20t115 -55t82 -84.5t55 -107.5l-130 -77q-17 -11 -35 -14.5t-35 -3.5q-46 0 -76 36q-18 22 -33.5 38t-33 26t-40 14.5t-53.5 4.5q-86 0 -144.5 -58.5 t-71.5 -167.5l-27 -223h424l-14 -117v0z" unicode="£"/>
|
|
113
|
+
<glyph glyph-name="currency" d="M238 674q0 49 11.5 94t32.5 85l-154 153l156 148l150 -148q41 22 87 34t97 12q48 0 92.5 -11.5t84.5 -32.5l153 152l154 -150l-153 -151q23 -41 36 -87.5t13 -97.5q0 -49 -11.5 -94t-33.5 -85l155 -152l-156 -149l-151 148q-41 -22 -87 -34t-96 -12q-48 0 -92.5 11 t-84.5 31l-153 -150l-154 150l152 150q-23 41 -35.5 88t-12.5 98zM466 674q0 -32 12 -61t32.5 -51t48 -34.5t59.5 -12.5t60 12.5t49 34.5t33 51t12 61q0 34 -12 63t-33 51t-49 34.5t-60 12.5t-59.5 -12.5t-48 -34.5t-32.5 -51t-12 -63z" unicode="¤"/>
|
|
114
|
+
<glyph glyph-name="yen" d="M142 637h253l-291 818h250q41 0 65 -19.5t33 -51.5l124 -439q14 -51 24 -94t15 -85q14 42 34.5 85t46.5 94l226 439q14 28 43.5 49.5t70.5 21.5h252l-495 -818h255l-20 -160h-303l-11 -88h302l-20 -159h-302l-28 -230h-298l28 230h-306l22 159h303l11 88h-304z" unicode="¥"/>
|
|
115
|
+
<glyph glyph-name="brokenbar" horiz-adv-x="600" unicode="¦" d="M120 1557h240v-819h-240v819zM120 490h240v-819h-240v819z"/>
|
|
116
|
+
<glyph glyph-name="section" horiz-adv-x="934" unicode="§" d="M860 1232q-14 -19 -28 -27t-34 -8q-21 0 -40.5 9.5t-42 21.5t-49.5 21.5t-64 9.5q-35 0 -60.5 -8.5t-42 -23.5t-25 -35t-8.5 -42q0 -34 32.5 -59t81.5 -49.5t106 -51.5t106 -63.5t81.5 -86.5t32.5 -121q0 -88 -42 -162.5t-137 -121.5q30 -32 48.5 -73.5t18.5 -95.5 q0 -82 -30 -152t-87.5 -121.5t-141.5 -80.5t-193 -29q-49 0 -97.5 9.5t-92 26.5t-80 40t-60.5 50l84 111q14 20 32.5 30t47.5 10q25 0 43.5 -12t40.5 -26t53 -26t81 -12q62 0 97 29.5t35 83.5q0 44 -32.5 73t-81.5 52t-106 46.5t-106 58t-81.5 85.5t-32.5 129q0 91 45 162.5 t136 113.5q-31 35 -50 80t-19 107q0 73 27 139t81 116.5t133.5 80t184.5 29.5q52 0 99.5 -10t88 -27.5t73 -42t55.5 -52.5zM358 714q0 -32 19.5 -56.5t51.5 -45t72 -39.5t82 -40q29 20 41 46t12 56q0 33 -19 57.5t-50.5 44.5t-71.5 38.5t-82 39.5q-30 -20 -42.5 -44.5 t-12.5 -56.5z"/>
|
|
117
|
+
<glyph glyph-name="dieresis" horiz-adv-x="612" unicode="¨" d="M376 1317q0 -32 -13 -60t-35.5 -48.5t-52 -32.5t-63.5 -12q-32 0 -60.5 12t-50 32.5t-34.5 48.5t-13 60q0 33 13 62t34.5 50.5t50 34t60.5 12.5q34 0 63.5 -12.5t52 -34t35.5 -50.5t13 -62zM762 1317q0 -32 -12.5 -60t-34.5 -48.5t-51.5 -32.5t-63.5 -12q-33 0 -62 12 t-51 32.5t-34.5 48.5t-12.5 60q0 33 12.5 62t34.5 50.5t51 34t62 12.5q34 0 63.5 -12.5t51.5 -34t34.5 -50.5t12.5 -62z"/>
|
|
118
|
+
<glyph glyph-name="copyright" horiz-adv-x="1570" unicode="©" d="M1014 542q12 0 23 -6t19 -15l102 -105q-54 -75 -141.5 -113.5t-202.5 -38.5q-101 0 -182.5 36.5t-138.5 100t-88 148.5t-31 183q0 102 36 187.5t98.5 148t146.5 97t181 34.5q115 0 198 -40t134 -100l-82 -109q-7 -9 -19.5 -19t-32.5 -10t-34.5 9t-32.5 20t-44.5 20 t-70.5 9q-101 0 -152.5 -66.5t-51.5 -180.5q0 -60 13.5 -106t37.5 -77t57.5 -47t73.5 -16q47 0 74.5 8.5t45.5 18.5t31 19t33 10zM70 729q0 103 26.5 198t75 177.5t116.5 150.5t151 116.5t177.5 75t197.5 26.5t198.5 -26.5t178 -75t151 -116.5t117 -150.5t75 -177.5 t26.5 -198q0 -102 -26.5 -197t-75 -177.5t-117 -150.5t-151 -116.5t-178 -75t-198.5 -26.5t-197.5 26.5t-177.5 75t-151 116.5t-116.5 150.5t-75 177t-26.5 197.5zM236 729q0 -127 44.5 -237t122.5 -191.5t183.5 -128t227.5 -46.5q123 0 229.5 46.5t185.5 128t124 191.5 t45 237q0 85 -20.5 163t-58 145.5t-90.5 123t-118 94.5t-140 60.5t-157 21.5q-122 0 -227.5 -47t-183.5 -129.5t-122.5 -193.5t-44.5 -238z"/>
|
|
119
|
+
<glyph glyph-name="ordfeminine" horiz-adv-x="652" unicode="ª" d="M542 842q-29 0 -43.5 7.5t-22.5 32.5l-8 27q-23 -19 -44 -33t-42.5 -23.5t-45 -14t-52.5 -4.5q-77 0 -118.5 39t-41.5 109q0 36 14.5 75t53.5 72t108.5 56t179.5 26l2 18q0 15 -1 30t-6 26.5t-15.5 19t-29.5 7.5q-27 0 -44.5 -6.5t-32.5 -14t-30.5 -13.5t-38.5 -6 t-36 11.5t-20 26.5l-30 67q62 53 132.5 76.5t147.5 23.5q48 0 87 -17t67 -47t43.5 -70.5t15.5 -86.5v-13.5t-1 -13.5l-48 -387h-100zM372 974q23 0 42.5 9t42.5 31l8 71q-42 -2 -68 -8.5t-41 -17t-20.5 -24t-5.5 -28.5q0 -18 9.5 -25.5t32.5 -7.5z"/>
|
|
120
|
+
<glyph glyph-name="guillemotleft" horiz-adv-x="964" unicode="«" d="M111 525l6 37l292 400l92 -44q38 -18 38 -52q0 -14 -6 -28t-16 -30l-132 -219q-9 -15 -19.5 -26.5t-21.5 -19.5q8 -9 16 -20t13 -25l80 -219q4 -11 6.5 -21t2.5 -20q0 -47 -53 -71l-104 -44zM449 525l6 37l292 400l92 -44q38 -18 38 -52q0 -14 -6 -28t-16 -30l-132 -219 q-9 -15 -19.5 -26.5t-21.5 -19.5q8 -9 16 -20t13 -25l80 -219q4 -11 6.5 -21t2.5 -20q0 -47 -53 -71l-104 -44z"/>
|
|
121
|
+
<glyph glyph-name="logicalnot" d="M162 779h906l-62 -493h-252l35 279h-653z" unicode="¬"/>
|
|
122
|
+
<glyph glyph-name="uni00AD" horiz-adv-x="686" unicode="" d="M122 728h502l-32 -242h-500z"/>
|
|
123
|
+
<glyph glyph-name="registered" horiz-adv-x="1570" unicode="®" d="M64 729q0 103 26.5 198t75 177.5t116.5 150.5t151 116.5t177.5 75t197.5 26.5t198.5 -26.5t178 -75t151 -116.5t117 -150.5t75 -177.5t26.5 -198q0 -102 -26.5 -197t-75 -177.5t-117 -150.5t-151 -116.5t-178 -75t-198.5 -26.5t-197.5 26.5t-177.5 75t-151 116.5 t-116.5 150.5t-75 177t-26.5 197.5zM230 729q0 -127 44.5 -237t122.5 -191.5t183.5 -128t227.5 -46.5q115 0 215.5 41t178.5 114h-216q-55 0 -76 39l-92 231q-8 18 -22 25t-38 7h-32v-302h-268v901h352q100 0 172.5 -18t119 -52t68.5 -84t22 -114q0 -42 -10 -80.5t-30.5 -71 t-53 -58.5t-77.5 -43q29 -15 49 -38.5t36 -56.5l124 -257q76 81 119 188t43 232q0 85 -20.5 163t-58 145.5t-90.5 123t-118 94.5t-140 60.5t-157 21.5q-122 0 -227.5 -47t-183.5 -129.5t-122.5 -193.5t-44.5 -238zM726 767h64q48 0 75.5 7.5t41.5 21.5t17.5 35.5t3.5 48.5 q0 26 -3.5 45.5t-15.5 33t-35.5 20.5t-63.5 7h-84v-219z"/>
|
|
124
|
+
<glyph glyph-name="macron" horiz-adv-x="612" unicode="¯" d="M132 1387h574l-24 -184h-574z"/>
|
|
125
|
+
<glyph glyph-name="degree" horiz-adv-x="794" unicode="°" d="M112 1119q0 74 28 139t77 113t115.5 76t143.5 28t144 -28t116.5 -76t77.5 -113t28 -139q0 -72 -28 -136.5t-77.5 -112.5t-116.5 -76.5t-144 -28.5t-143.5 28.5t-115.5 76.5t-77 112.5t-28 136.5zM326 1117q0 -33 11 -61.5t31 -50t47.5 -33.5t60.5 -12t60.5 12t47.5 33.5 t31 50t11 61.5q0 34 -11 63.5t-31 51t-47.5 34t-60.5 12.5t-60.5 -12.5t-47.5 -34t-31 -51t-11 -63.5z"/>
|
|
126
|
+
<glyph glyph-name="plusminus" d="M796 1266l-42 -340h374l-28 -214h-372l-40 -324h-242l40 324h-372l26 214h372l42 340h242zM62 295h988l-28 -215h-986z" unicode="±"/>
|
|
127
|
+
<glyph glyph-name="twosuperior" horiz-adv-x="668" unicode="²" d="M492 1656q58 0 101.5 -16t72 -43t42.5 -63t14 -76q0 -46 -15 -84t-40.5 -71.5t-58.5 -64.5t-68 -63l-121 -110q34 10 66.5 15.5t58.5 5.5h80q31 0 46.5 -14.5t15.5 -39.5q0 -5 -2.5 -25.5t-4.5 -44.5q-4 -28 -7 -62h-566l10 67q3 19 13.5 41t30.5 40l224 197 q25 22 46.5 47t38 50t26 49t9.5 45q0 23 -10 39t-34 16q-23 0 -37.5 -11t-30.5 -35q-14 -21 -31 -32t-44 -11q-13 0 -29 3l-116 19q33 120 118 176t202 56z"/>
|
|
128
|
+
<glyph glyph-name="threesuperior" horiz-adv-x="668" unicode="³" d="M514 1656q57 0 99.5 -16t71 -41.5t43 -58t14.5 -65.5q0 -66 -26 -110t-92 -70q45 -18 67.5 -49t22.5 -81q0 -72 -28 -123.5t-71.5 -85t-98 -49t-106.5 -15.5t-94 9t-75 32t-56.5 62.5t-36.5 101.5l98 38q24 9 47 9q22 0 37.5 -8t21.5 -24q9 -25 27 -37t41 -12q36 0 58 22 t22 63q0 38 -27.5 50t-94.5 12l18 144q40 0 66.5 4t42 13.5t21.5 25t6 38.5q0 22 -10.5 37t-39.5 15q-27 0 -41.5 -10t-26.5 -30q-15 -23 -30.5 -34t-39.5 -11q-12 0 -30 3l-108 19q16 60 46.5 103.5t71 72t89 42.5t101.5 14z"/>
|
|
129
|
+
<glyph glyph-name="acute" horiz-adv-x="612" unicode="´" d="M802 1471l-274 -263q-24 -23 -46.5 -31.5t-55.5 -8.5h-178l154 245q18 28 42.5 43t69.5 15h288z"/>
|
|
130
|
+
<glyph glyph-name="mu" horiz-adv-x="1072" unicode="µ" d="M456 1035l-82 -658q-2 -11 -2 -20.5v-18.5q0 -62 25.5 -95t76.5 -33q44 0 85 20.5t81 55.5l94 749h298l-128 -1035h-186q-54 0 -66 50l-10 61q-29 -26 -54 -43.5t-50 -28t-51.5 -15t-56.5 -4.5q-41 0 -75 12t-61 34q6 -39 6 -82q0 -26 -2 -50.5t-4 -47.5l-26 -217h-148 q-57 0 -87 26.5t-30 74.5v9.5t1 9.5l154 1246h298z"/>
|
|
131
|
+
<glyph glyph-name="paragraph" horiz-adv-x="1458" unicode="¶" d="M1550 1457l-32 -251h-209l-175 -1422h-270l175 1422h-196l-175 -1422h-270l101 822q-95 0 -172 28.5t-131 78.5t-83 118t-29 148q0 96 38 182.5t106.5 152.5t164 104.5t211.5 38.5h946z"/>
|
|
132
|
+
<glyph glyph-name="periodcentered" horiz-adv-x="570" unicode="·" d="M78 596q0 45 17.5 85t48 69.5t71 46.5t87.5 17t88.5 -17t72 -46.5t48 -69.5t17.5 -85t-17.5 -84.5t-48 -69t-72 -46.5t-88.5 -17t-87.5 17t-71 46.5t-48 69t-17.5 84.5z"/>
|
|
133
|
+
<glyph glyph-name="cedilla" horiz-adv-x="612" unicode="¸" d="M96 -214q15 0 26.5 -5t29.5 -5q23 0 33.5 12t10.5 26q0 20 -25.5 30.5t-88.5 19.5l60 153h186l-24 -64q71 -21 98.5 -55.5t27.5 -75.5q0 -39 -20.5 -70.5t-56.5 -53.5t-86 -33.5t-109 -11.5q-38 0 -69.5 4t-66.5 14l40 90q5 11 12.5 18t21.5 7z"/>
|
|
134
|
+
<glyph glyph-name="onesuperior" horiz-adv-x="668" unicode="¹" d="M226 1050h129l35 292l12 53l-58 -42q-11 -8 -22 -10.5t-21 -2.5q-17 0 -30 7t-19 16l-54 88l264 197h180l-74 -598h86l-18 -150h-430z"/>
|
|
135
|
+
<glyph glyph-name="ordmasculine" horiz-adv-x="728" unicode="º" d="M486 1475q64 0 116 -19.5t89 -55.5t57 -87t20 -114q0 -85 -27.5 -153.5t-76 -116.5t-114.5 -73.5t-142 -25.5q-65 0 -117.5 19.5t-90 55.5t-58 88t-20.5 117q0 84 28 152t77.5 115t115.5 72.5t143 25.5zM430 998q59 0 82.5 51.5t23.5 149.5q0 107 -70 107 q-37 0 -59 -14.5t-34 -40.5t-15.5 -63t-3.5 -82q0 -108 76 -108z"/>
|
|
136
|
+
<glyph glyph-name="guillemotright" horiz-adv-x="964" unicode="»" d="M532 562l-4 -37l-292 -402l-92 44q-39 19 -39 54q0 14 5.5 28t15.5 30l134 219q8 14 18.5 25t21.5 19q-18 18 -28 47l-82 219q-8 21 -8 38q0 23 13 42t41 30l104 44zM870 562l-4 -37l-292 -402l-92 44q-39 19 -39 54q0 14 5.5 28t15.5 30l134 219q8 14 18.5 25t21.5 19 q-18 18 -28 47l-82 219q-8 21 -8 38q0 23 13 42t41 30l104 44z"/>
|
|
137
|
+
<glyph glyph-name="onequarter" horiz-adv-x="1475" unicode="¼" d="M476 85q-35 -50 -73.5 -67.5t-86.5 -17.5h-122l951 1357q34 48 75.5 73t95.5 25h122zM1322 310h82l-14 -121q-3 -14 -14.5 -26t-29.5 -12h-44l-18 -151h-178l18 151h-276q-27 0 -41.5 12.5t-16.5 31.5l-8 102l388 451h206zM186 858h129l35 292l12 53l-58 -42 q-20 -14 -47 -14q-17 0 -28 7.5t-17 16.5l-54 88l264 197h180l-74 -598h86l-18 -150h-430zM1156 413q6 54 23 123l-189 -226h153z"/>
|
|
138
|
+
<glyph glyph-name="onehalf" horiz-adv-x="1475" unicode="½" d="M448 85q-35 -50 -73.5 -67.5t-86.5 -17.5h-122l951 1357q34 48 75.5 73t95.5 25h122zM1172 756q58 0 101.5 -16t72 -43t42.5 -63t14 -76q0 -46 -15 -84t-40.5 -71.5t-58.5 -64.5t-68 -63l-121 -110q34 10 66.5 15.5t58.5 5.5h80q31 0 46.5 -14.5t15.5 -39.5q0 -2 -0.5 -9 t-3.5 -35l-10 -88h-566l10 67q2 19 13 41t31 40l224 197q25 22 46.5 47t38 50t26 49t9.5 45q0 23 -10 39t-34 16q-23 0 -37.5 -11.5t-30.5 -34.5q-15 -21 -31 -32t-43 -11q-7 0 -16 1t-29 4l-101 17q33 120 118 176t202 56zM196 858h129l35 292l12 53l-58 -42 q-20 -14 -47 -14q-17 0 -28 7.5t-17 16.5l-54 88l264 197h180l-74 -598h86l-18 -150h-430z"/>
|
|
139
|
+
<glyph glyph-name="threequarters" horiz-adv-x="1475" unicode="¾" d="M488 85q-35 -50 -73.5 -67.5t-86.5 -17.5h-122l951 1357q34 48 75.5 73t95.5 25h122zM1332 310h82l-14 -121q-3 -14 -14.5 -26t-29.5 -12h-44l-18 -151h-178l18 151h-276q-27 0 -41.5 12.5t-16.5 31.5l-8 102l388 451h206zM486 1464q57 0 99.5 -16t71 -41.5t43 -58 t14.5 -65.5q0 -66 -26 -110t-92 -70q45 -18 67.5 -49t22.5 -81q0 -72 -28 -123.5t-71.5 -85t-98 -49t-106.5 -15.5t-94 9t-75 32t-56.5 62.5t-36.5 101.5l98 38q24 9 47 9q22 0 37.5 -8t21.5 -24q9 -25 27 -37t41 -12q36 0 58 22t22 63q0 38 -27.5 50t-94.5 12l18 144 q40 0 66.5 4t42 13.5t21.5 25t6 38.5q0 22 -10.5 37t-39.5 15q-27 0 -41.5 -10t-26.5 -30q-15 -23 -30.5 -34t-39.5 -11q-12 0 -30 3l-108 19q16 60 46.5 103.5t71 72t89 42.5t101.5 14zM1166 413q6 54 23 123l-189 -226h153z"/>
|
|
140
|
+
<glyph glyph-name="questiondown" horiz-adv-x="820" unicode="¿" d="M720 -198q-39 -30 -82.5 -57.5t-92.5 -47.5t-104 -32t-117 -12q-80 0 -143.5 21t-107 60t-66.5 94.5t-23 124.5q0 79 22 135.5t56 97.5t75 70.5t78.5 55.5t67 52t39.5 60l44 141h204v-162q0 -47 -21.5 -83t-53.5 -66t-69 -56.5t-69 -54.5t-53.5 -61t-21.5 -76 q0 -61 28.5 -90t69.5 -29q47 0 80.5 11t58.5 24.5t44 25t37 11.5q37 0 56 -34zM322 883q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5z"/>
|
|
141
|
+
<glyph glyph-name="Agrave" horiz-adv-x="1326" unicode="À" d="M1288 0h-252q-42 0 -67.5 19.5t-30.5 51.5l-45 262h-495l-108 -262q-11 -28 -43 -49.5t-71 -21.5h-256l696 1457h334zM489 555h366l-71 416q-9 52 -19.5 105.5t-17.5 97.5q-8 -24 -21 -54.5t-25.5 -59.5t-24 -54t-16.5 -37zM712 1796q22 0 37 -2t27 -6.5t22 -13.5t22 -22 l142 -201h-256q-33 0 -51.5 10.5t-40.5 30.5l-232 204h330z"/>
|
|
142
|
+
<glyph glyph-name="Aacute" horiz-adv-x="1326" unicode="Á" d="M1288 0h-252q-42 0 -67.5 19.5t-30.5 51.5l-45 262h-495l-108 -262q-11 -28 -43 -49.5t-71 -21.5h-256l696 1457h334zM489 555h366l-71 416q-9 52 -19.5 105.5t-17.5 97.5q-8 -24 -21 -54.5t-25.5 -59.5t-24 -54t-16.5 -37zM1274 1796l-282 -204q-32 -23 -57 -32t-56 -9 h-245l192 201q15 13 27 22t25.5 13.5t29 6.5t38.5 2h328z"/>
|
|
143
|
+
<glyph glyph-name="Acircumflex" horiz-adv-x="1326" unicode="Â" d="M1288 0h-252q-42 0 -67.5 19.5t-30.5 51.5l-45 262h-495l-108 -262q-11 -28 -43 -49.5t-71 -21.5h-256l696 1457h334zM489 555h366l-71 416q-9 52 -19.5 105.5t-17.5 97.5q-8 -24 -21 -54.5t-25.5 -59.5t-24 -54t-16.5 -37zM1166 1551h-226q-17 0 -37 4t-31 14l-72 63 l-88 -63q-13 -9 -33.5 -13.5t-38.5 -4.5h-224l252 225h300z"/>
|
|
144
|
+
<glyph glyph-name="Atilde" horiz-adv-x="1326" unicode="Ã" d="M1288 0h-252q-42 0 -67.5 19.5t-30.5 51.5l-45 262h-495l-108 -262q-11 -28 -43 -49.5t-71 -21.5h-256l696 1457h334zM489 555h366l-71 416q-9 52 -19.5 105.5t-17.5 97.5q-8 -24 -21 -54.5t-25.5 -59.5t-24 -54t-16.5 -37zM930 1723q18 0 32.5 12.5t17.5 40.5h162 q-7 -54 -26 -98t-49 -76t-68.5 -49.5t-84.5 -17.5q-34 0 -65.5 10t-59.5 21.5t-51.5 21.5t-39.5 10q-18 0 -31.5 -14t-16.5 -43h-164q7 54 26.5 98.5t49.5 77t68.5 50t83.5 17.5q34 0 66 -9.5t60 -21t50.5 -21t39.5 -9.5z"/>
|
|
145
|
+
<glyph glyph-name="Adieresis" horiz-adv-x="1326" unicode="Ä" d="M1288 0h-252q-42 0 -67.5 19.5t-30.5 51.5l-45 262h-495l-108 -262q-11 -28 -43 -49.5t-71 -21.5h-256l696 1457h334zM489 555h366l-71 416q-9 52 -19.5 105.5t-17.5 97.5q-8 -24 -21 -54.5t-25.5 -59.5t-24 -54t-16.5 -37zM738 1666q0 -28 -11 -52t-30.5 -42t-45.5 -28 t-55 -10q-27 0 -51.5 10t-43.5 28t-30 42t-11 52t11 53.5t30 44t43.5 29.5t51.5 11q29 0 55 -11t45.5 -29.5t30.5 -44t11 -53.5zM1096 1666q0 -28 -11 -52t-30 -42t-44.5 -28t-54.5 -10t-54 10t-43.5 28t-29.5 42t-11 52t11 53.5t29.5 44t43.5 29.5t54 11t54.5 -11 t44.5 -29.5t30 -44t11 -53.5z"/>
|
|
146
|
+
<glyph glyph-name="Aring" horiz-adv-x="1326" unicode="Å" d="M1288 0h-252q-42 0 -67.5 19.5t-30.5 51.5l-45 262h-495l-108 -262q-11 -28 -43 -49.5t-71 -21.5h-256l696 1457h334zM489 555h366l-71 416q-9 52 -19.5 105.5t-17.5 97.5q-8 -24 -21 -54.5t-25.5 -59.5t-24 -54t-16.5 -37zM568 1701q0 46 18.5 83.5t49 64t70.5 41 t84 14.5q46 0 87 -14.5t72.5 -41t50 -64t18.5 -83.5q0 -44 -18.5 -80.5t-50 -62.5t-72.5 -40t-87 -14q-44 0 -84 14t-70.5 40t-49 62.5t-18.5 80.5zM714 1701q0 -35 19.5 -57.5t60.5 -22.5q36 0 57 22.5t21 57.5q0 38 -21 60t-57 22q-41 0 -60.5 -22t-19.5 -60z"/>
|
|
147
|
+
<glyph glyph-name="AE" horiz-adv-x="1716" unicode="Æ" d="M716 1457h1056l-32 -251h-598v-354h426l-30 -242h-396v-359h482l-32 -251h-758v333h-429l-131 -262q-14 -29 -47.5 -50t-74.5 -21h-254zM516 555h318v643q-21 -51 -42 -96t-44 -83z"/>
|
|
148
|
+
<glyph glyph-name="Ccedilla" horiz-adv-x="1182" unicode="Ç" d="M486 -214q15 0 26.5 -5t29.5 -5q23 0 33.5 12t10.5 26q0 20 -25.5 30.5t-88.5 19.5l50 128q-114 17 -202 71t-148 136.5t-91 189.5t-31 230q0 125 28 237t79 207t122.5 171t158.5 129t187 81.5t209 28.5q82 0 149.5 -15.5t122 -43t97.5 -65.5t75 -84l-114 -132 q-12 -14 -28 -25t-42 -11q-17 0 -31 8t-28.5 19.5t-32.5 25.5t-43 25.5t-59.5 19.5t-81.5 8q-92 0 -171.5 -39t-138 -111.5t-91.5 -176t-33 -231.5q0 -93 22.5 -166t61.5 -123.5t93 -77t117 -26.5q55 0 95.5 8.5t69.5 21.5t49 28.5t36 28.5t30 21.5t30 8.5t26.5 -5.5 t15.5 -12.5l114 -137q-83 -98 -192 -155t-245 -71l-13 -35q71 -21 98.5 -55.5t27.5 -75.5q0 -39 -20.5 -70.5t-56.5 -53.5t-86 -33.5t-109 -11.5q-38 0 -69.5 4t-66.5 14l40 90q5 11 12.5 18t21.5 7z"/>
|
|
149
|
+
<glyph glyph-name="Egrave" horiz-adv-x="1036" unicode="È" d="M1060 1206h-539l-44 -352h413l-32 -242h-411l-44 -361h543l-32 -251h-870l180 1457h868zM590 1796q22 0 37 -2t27 -6.5t22 -13.5t22 -22l142 -201h-256q-33 0 -51.5 10.5t-40.5 30.5l-232 204h330z"/>
|
|
150
|
+
<glyph glyph-name="Eacute" horiz-adv-x="1036" unicode="É" d="M1060 1206h-539l-44 -352h413l-32 -242h-411l-44 -361h543l-32 -251h-870l180 1457h868zM1122 1796l-282 -204q-32 -23 -57 -32t-56 -9h-245l192 201q15 13 27 22t25.5 13.5t29 6.5t38.5 2h328z"/>
|
|
151
|
+
<glyph glyph-name="Ecircumflex" horiz-adv-x="1036" unicode="Ê" d="M1060 1206h-539l-44 -352h413l-32 -242h-411l-44 -361h543l-32 -251h-870l180 1457h868zM1044 1551h-226q-17 0 -37 4t-31 14l-72 63l-88 -63q-13 -9 -33.5 -13.5t-38.5 -4.5h-224l252 225h300z"/>
|
|
152
|
+
<glyph glyph-name="Edieresis" horiz-adv-x="1036" unicode="Ë" d="M1060 1206h-539l-44 -352h413l-32 -242h-411l-44 -361h543l-32 -251h-870l180 1457h868zM616 1666q0 -28 -11 -52t-30.5 -42t-45.5 -28t-55 -10q-27 0 -51.5 10t-43.5 28t-30 42t-11 52t11 53.5t30 44t43.5 29.5t51.5 11q29 0 55 -11t45.5 -29.5t30.5 -44t11 -53.5z M974 1666q0 -28 -11 -52t-30 -42t-44.5 -28t-54.5 -10t-54 10t-43.5 28t-29.5 42t-11 52t11 53.5t29.5 44t43.5 29.5t54 11t54.5 -11t44.5 -29.5t30 -44t11 -53.5z"/>
|
|
153
|
+
<glyph glyph-name="Igrave" horiz-adv-x="592" unicode="Ì" d="M400 0h-328l178 1457h328zM349 1796q22 0 37 -2t27 -6.5t22 -13.5t22 -22l142 -201h-256q-33 0 -51.5 10.5t-40.5 30.5l-232 204h330z"/>
|
|
154
|
+
<glyph glyph-name="Iacute" horiz-adv-x="592" unicode="Í" d="M400 0h-328l178 1457h328zM881 1796l-282 -204q-32 -23 -57 -32t-56 -9h-245l192 201q15 13 27 22t25.5 13.5t29 6.5t38.5 2h328z"/>
|
|
155
|
+
<glyph glyph-name="Icircumflex" horiz-adv-x="592" unicode="Î" d="M400 0h-328l178 1457h328zM803 1551h-226q-17 0 -37 4t-31 14l-72 63l-88 -63q-13 -9 -33.5 -13.5t-38.5 -4.5h-224l252 225h300z"/>
|
|
156
|
+
<glyph glyph-name="Idieresis" horiz-adv-x="592" unicode="Ï" d="M400 0h-328l178 1457h328zM375 1666q0 -28 -11 -52t-30.5 -42t-45.5 -28t-55 -10q-27 0 -51.5 10t-43.5 28t-30 42t-11 52t11 53.5t30 44t43.5 29.5t51.5 11q29 0 55 -11t45.5 -29.5t30.5 -44t11 -53.5zM733 1666q0 -28 -11 -52t-30 -42t-44.5 -28t-54.5 -10t-54 10 t-43.5 28t-29.5 42t-11 52t11 53.5t29.5 44t43.5 29.5t54 11t54.5 -11t44.5 -29.5t30 -44t11 -53.5z"/>
|
|
157
|
+
<glyph glyph-name="Eth" horiz-adv-x="1458" unicode="Ð" d="M92 819h148l78 638h524q144 0 258.5 -48.5t194.5 -133.5t122.5 -201t42.5 -252q0 -119 -27 -225.5t-77 -198t-121.5 -165t-160 -125.5t-192 -80t-218.5 -28h-524l78 641h-150zM1126 814q0 89 -20.5 161.5t-61 123.5t-99.5 79t-135 28h-196l-46 -387h312l-22 -178h-312 l-46 -390h196q100 0 179.5 39.5t135 112.5t85.5 177t30 234z"/>
|
|
158
|
+
<glyph glyph-name="Ntilde" horiz-adv-x="1392" unicode="Ñ" d="M396 1457q21 0 35.5 -1.5t26 -7t20.5 -15.5t18 -26l511 -900q2 35 6 67t7 60l98 823h288l-180 -1457h-170q-38 0 -63 11t-43 43l-509 899q-2 -28 -4.5 -54t-4.5 -49l-100 -850h-288l180 1457h172v0zM956 1723q18 0 32.5 12.5t17.5 40.5h162q-7 -54 -26 -98t-49 -76 t-68.5 -49.5t-84.5 -17.5q-34 0 -65.5 10t-59.5 21.5t-51.5 21.5t-39.5 10q-18 0 -31.5 -14t-16.5 -43h-164q7 54 26.5 98.5t49.5 77t68.5 50t83.5 17.5q34 0 66 -9.5t60 -21t50.5 -21t39.5 -9.5z"/>
|
|
159
|
+
<glyph glyph-name="Ograve" horiz-adv-x="1464" unicode="Ò" d="M1468 822q0 -118 -27.5 -226t-78 -201t-122 -169t-160.5 -129.5t-193 -83t-219 -29.5q-144 0 -258.5 50.5t-194.5 138t-122.5 206t-42.5 255.5q0 118 27.5 226.5t78 201.5t122.5 169t161 129.5t193 83t220 29.5q143 0 257.5 -50.5t194 -138.5t122 -207t42.5 -255z M1134 814q0 90 -21.5 163.5t-63 126t-101.5 81t-136 28.5q-100 0 -179 -41.5t-134.5 -116.5t-85 -180.5t-29.5 -233.5q0 -90 21 -163t61.5 -125t100.5 -80.5t137 -28.5q100 0 179.5 41t135 116t85.5 180t30 233zM778 1796q22 0 37 -2t27 -6.5t22 -13.5t22 -22l142 -201h-256 q-33 0 -51.5 10.5t-40.5 30.5l-232 204h330z"/>
|
|
160
|
+
<glyph glyph-name="Oacute" horiz-adv-x="1464" unicode="Ó" d="M1468 822q0 -118 -27.5 -226t-78 -201t-122 -169t-160.5 -129.5t-193 -83t-219 -29.5q-144 0 -258.5 50.5t-194.5 138t-122.5 206t-42.5 255.5q0 118 27.5 226.5t78 201.5t122.5 169t161 129.5t193 83t220 29.5q143 0 257.5 -50.5t194 -138.5t122 -207t42.5 -255z M1134 814q0 90 -21.5 163.5t-63 126t-101.5 81t-136 28.5q-100 0 -179 -41.5t-134.5 -116.5t-85 -180.5t-29.5 -233.5q0 -90 21 -163t61.5 -125t100.5 -80.5t137 -28.5q100 0 179.5 41t135 116t85.5 180t30 233zM1310 1796l-282 -204q-32 -23 -57 -32t-56 -9h-245l192 201 q15 13 27 22t25.5 13.5t29 6.5t38.5 2h328z"/>
|
|
161
|
+
<glyph glyph-name="Ocircumflex" horiz-adv-x="1464" unicode="Ô" d="M1468 822q0 -118 -27.5 -226t-78 -201t-122 -169t-160.5 -129.5t-193 -83t-219 -29.5q-144 0 -258.5 50.5t-194.5 138t-122.5 206t-42.5 255.5q0 118 27.5 226.5t78 201.5t122.5 169t161 129.5t193 83t220 29.5q143 0 257.5 -50.5t194 -138.5t122 -207t42.5 -255z M1134 814q0 90 -21.5 163.5t-63 126t-101.5 81t-136 28.5q-100 0 -179 -41.5t-134.5 -116.5t-85 -180.5t-29.5 -233.5q0 -90 21 -163t61.5 -125t100.5 -80.5t137 -28.5q100 0 179.5 41t135 116t85.5 180t30 233zM1232 1551h-226q-17 0 -37 4t-31 14l-72 63l-88 -63 q-13 -9 -33.5 -13.5t-38.5 -4.5h-224l252 225h300z"/>
|
|
162
|
+
<glyph glyph-name="Otilde" horiz-adv-x="1464" unicode="Õ" d="M1468 822q0 -118 -27.5 -226t-78 -201t-122 -169t-160.5 -129.5t-193 -83t-219 -29.5q-144 0 -258.5 50.5t-194.5 138t-122.5 206t-42.5 255.5q0 118 27.5 226.5t78 201.5t122.5 169t161 129.5t193 83t220 29.5q143 0 257.5 -50.5t194 -138.5t122 -207t42.5 -255z M1134 814q0 90 -21.5 163.5t-63 126t-101.5 81t-136 28.5q-100 0 -179 -41.5t-134.5 -116.5t-85 -180.5t-29.5 -233.5q0 -90 21 -163t61.5 -125t100.5 -80.5t137 -28.5q100 0 179.5 41t135 116t85.5 180t30 233zM996 1723q18 0 32.5 12.5t17.5 40.5h162q-7 -54 -26 -98 t-49 -76t-68.5 -49.5t-84.5 -17.5q-34 0 -65.5 10t-59.5 21.5t-51.5 21.5t-39.5 10q-18 0 -31.5 -14t-16.5 -43h-164q7 54 26.5 98.5t49.5 77t68.5 50t83.5 17.5q34 0 66 -9.5t60 -21t50.5 -21t39.5 -9.5z"/>
|
|
163
|
+
<glyph glyph-name="Odieresis" horiz-adv-x="1464" unicode="Ö" d="M1468 822q0 -118 -27.5 -226t-78 -201t-122 -169t-160.5 -129.5t-193 -83t-219 -29.5q-144 0 -258.5 50.5t-194.5 138t-122.5 206t-42.5 255.5q0 118 27.5 226.5t78 201.5t122.5 169t161 129.5t193 83t220 29.5q143 0 257.5 -50.5t194 -138.5t122 -207t42.5 -255z M1134 814q0 90 -21.5 163.5t-63 126t-101.5 81t-136 28.5q-100 0 -179 -41.5t-134.5 -116.5t-85 -180.5t-29.5 -233.5q0 -90 21 -163t61.5 -125t100.5 -80.5t137 -28.5q100 0 179.5 41t135 116t85.5 180t30 233zM804 1666q0 -28 -11 -52t-30.5 -42t-45.5 -28t-55 -10 q-27 0 -51.5 10t-43.5 28t-30 42t-11 52t11 53.5t30 44t43.5 29.5t51.5 11q29 0 55 -11t45.5 -29.5t30.5 -44t11 -53.5zM1162 1666q0 -28 -11 -52t-30 -42t-44.5 -28t-54.5 -10t-54 10t-43.5 28t-29.5 42t-11 52t11 53.5t29.5 44t43.5 29.5t54 11t54.5 -11t44.5 -29.5 t30 -44t11 -53.5z"/>
|
|
164
|
+
<glyph glyph-name="multiply" d="M1106 985l-351 -312l291 -332l-176 -151l-289 328l-371 -330l-138 151l374 333l-276 315l176 152l274 -312l348 310z" unicode="×"/>
|
|
165
|
+
<glyph glyph-name="Oslash" horiz-adv-x="1464" unicode="Ø" d="M1468 822q0 -118 -27.5 -226t-78 -201t-122 -169t-160.5 -129.5t-193 -83t-219 -29.5q-84 0 -157.5 17t-136.5 49l-62 -79q-19 -24 -42 -40t-47.5 -26t-49.5 -14t-47 -4h-128l221 281q-82 89 -125.5 208t-43.5 258q0 118 27.5 226.5t78 201.5t122.5 169t161 129.5t193 83 t220 29.5q94 0 175 -22t149 -63l44 56q17 22 31.5 37t30.5 24t35 12.5t45 3.5h166l-205 -261q71 -87 108 -198.5t37 -239.5zM384 641q0 -123 39 -213l571 729q-37 27 -82.5 41.5t-99.5 14.5q-100 0 -179 -41.5t-134.5 -116.5t-85 -180.5t-29.5 -233.5zM1134 814 q0 48 -6.5 91.5t-18.5 81.5l-556 -708q65 -35 151 -35q100 0 179.5 41t135 116t85.5 180t30 233z"/>
|
|
166
|
+
<glyph glyph-name="Ugrave" horiz-adv-x="1334" unicode="Ù" d="M640 256q61 0 111 23.5t88 67t63 105.5t34 139l106 866h326l-106 -866q-17 -133 -70.5 -244.5t-139 -192t-198.5 -125.5t-248 -45q-122 0 -217.5 37t-161 104.5t-99.5 161.5t-34 207q0 47 6 97l104 866h326l-106 -866q-2 -18 -3 -35.5t-1 -34.5q0 -124 56.5 -194.5 t163.5 -70.5zM718 1795q22 0 37 -2t27 -6.5t22 -13.5t22 -22l142 -201h-256q-33 0 -51.5 10.5t-40.5 30.5l-232 204h330z"/>
|
|
167
|
+
<glyph glyph-name="Uacute" horiz-adv-x="1334" unicode="Ú" d="M640 256q61 0 111 23.5t88 67t63 105.5t34 139l106 866h326l-106 -866q-17 -133 -70.5 -244.5t-139 -192t-198.5 -125.5t-248 -45q-122 0 -217.5 37t-161 104.5t-99.5 161.5t-34 207q0 47 6 97l104 866h326l-106 -866q-2 -18 -3 -35.5t-1 -34.5q0 -124 56.5 -194.5 t163.5 -70.5zM1250 1795l-282 -204q-32 -23 -57 -32t-56 -9h-245l192 201q15 13 27 22t25.5 13.5t29 6.5t38.5 2h328z"/>
|
|
168
|
+
<glyph glyph-name="Ucircumflex" horiz-adv-x="1334" unicode="Û" d="M640 256q61 0 111 23.5t88 67t63 105.5t34 139l106 866h326l-106 -866q-17 -133 -70.5 -244.5t-139 -192t-198.5 -125.5t-248 -45q-122 0 -217.5 37t-161 104.5t-99.5 161.5t-34 207q0 47 6 97l104 866h326l-106 -866q-2 -18 -3 -35.5t-1 -34.5q0 -124 56.5 -194.5 t163.5 -70.5zM1172 1550h-226q-17 0 -37 4t-31 14l-72 63l-88 -63q-13 -9 -33.5 -13.5t-38.5 -4.5h-224l252 225h300z"/>
|
|
169
|
+
<glyph glyph-name="Udieresis" horiz-adv-x="1334" unicode="Ü" d="M640 256q61 0 111 23.5t88 67t63 105.5t34 139l106 866h326l-106 -866q-17 -133 -70.5 -244.5t-139 -192t-198.5 -125.5t-248 -45q-122 0 -217.5 37t-161 104.5t-99.5 161.5t-34 207q0 47 6 97l104 866h326l-106 -866q-2 -18 -3 -35.5t-1 -34.5q0 -124 56.5 -194.5 t163.5 -70.5zM744 1665q0 -28 -11 -52t-30.5 -42t-45.5 -28t-55 -10q-27 0 -51.5 10t-43.5 28t-30 42t-11 52t11 53.5t30 44t43.5 29.5t51.5 11q29 0 55 -11t45.5 -29.5t30.5 -44t11 -53.5zM1102 1665q0 -28 -11 -52t-30 -42t-44.5 -28t-54.5 -10t-54 10t-43.5 28t-29.5 42 t-11 52t11 53.5t29.5 44t43.5 29.5t54 11t54.5 -11t44.5 -29.5t30 -44t11 -53.5z"/>
|
|
170
|
+
<glyph glyph-name="Yacute" horiz-adv-x="1256" unicode="Ý" d="M799 558l-69 -558h-326l69 555l-375 902h290q42 0 65.5 -19.5t34.5 -51.5l140 -441q14 -44 25.5 -85t19.5 -79q19 38 42 78.5t49 85.5l248 441q15 27 44 49t70 22h270zM1236 1793l-282 -204q-32 -23 -57 -32t-56 -9h-245l192 201q15 13 27 22t25.5 13.5t29 6.5t38.5 2 h328z"/>
|
|
171
|
+
<glyph glyph-name="Thorn" horiz-adv-x="1180" unicode="Þ" d="M578 1216h158q129 0 221.5 -31.5t152.5 -86t88 -129t28 -161.5q0 -120 -36.5 -221.5t-111.5 -175.5t-190 -115.5t-272 -41.5h-157l-31 -254h-324l178 1457h326zM548 973l-59 -474h159q70 0 117.5 20.5t77 58t42.5 89.5t13 114q0 43 -11.5 78t-35.5 60.5t-60.5 39.5 t-86.5 14h-156z"/>
|
|
172
|
+
<glyph glyph-name="germandbls" horiz-adv-x="1214" unicode="ß" d="M785 1483q113 0 189 -33t122 -82.5t65.5 -106.5t19.5 -106q0 -65 -19.5 -110t-48.5 -77t-63 -55t-63 -43.5t-48.5 -42.5t-19.5 -52q0 -26 19 -47t47 -43t61 -47t61 -60t47 -81.5t19 -110.5q0 -101 -37 -176.5t-98 -125.5t-138.5 -75t-158.5 -25q-41 0 -82 10t-79 27 t-71 40.5t-58 50.5l84 110q14 18 33.5 29.5t46.5 11.5q25 0 44 -12t38 -27t41.5 -27t54.5 -12q17 0 34 9t30.5 25.5t21.5 39t8 49.5q0 36 -21.5 62t-53.5 48.5t-70 45.5t-70 53.5t-53.5 71.5t-21.5 100q0 71 22 119.5t54.5 84t70.5 62t70.5 54t54.5 59.5t22 79 q0 57 -35.5 92t-110.5 35q-58 0 -101.5 -34.5t-74.5 -90t-50 -126t-28 -142.5l-100 -831l-54 -174q-18 -58 -55 -90t-105 -32h-126l130 1070l-76 18q-30 7 -48.5 21t-18.5 40q0 1 0.5 4t2 15.5t4.5 38t8 70.5h169q30 89 83 170.5t125 144t161.5 100t193.5 37.5z"/>
|
|
173
|
+
<glyph glyph-name="agrave" horiz-adv-x="1058" unicode="à" d="M897 0h-166q-29 0 -48.5 7.5t-31 20.5t-16 31t-4.5 39v74q-64 -88 -142 -138t-172 -50q-56 0 -108 22.5t-92 68t-64 116t-24 166.5q0 141 51.5 267.5t144 221.5t219.5 151t279 56q74 0 150 -10t150 -36zM441 229q34 0 66 25.5t60.5 69.5t52.5 103t41 126l36 287h-18 q-76 0 -138.5 -34t-107.5 -92.5t-69.5 -136t-24.5 -165.5q0 -50 8 -85t21.5 -56.5t32 -31.5t40.5 -10zM673 1471q44 0 64.5 -14.5t31.5 -43.5l94 -245h-170q-33 0 -52.5 9t-37.5 31l-210 263h280z"/>
|
|
174
|
+
<glyph glyph-name="aacute" horiz-adv-x="1058" unicode="á" d="M897 0h-166q-29 0 -48.5 7.5t-31 20.5t-16 31t-4.5 39v74q-64 -88 -142 -138t-172 -50q-56 0 -108 22.5t-92 68t-64 116t-24 166.5q0 141 51.5 267.5t144 221.5t219.5 151t279 56q74 0 150 -10t150 -36zM441 229q34 0 66 25.5t60.5 69.5t52.5 103t41 126l36 287h-18 q-76 0 -138.5 -34t-107.5 -92.5t-69.5 -136t-24.5 -165.5q0 -50 8 -85t21.5 -56.5t32 -31.5t40.5 -10zM1099 1471l-274 -263q-24 -23 -46.5 -31.5t-55.5 -8.5h-178l154 245q18 28 42.5 43t69.5 15h288z"/>
|
|
175
|
+
<glyph glyph-name="acircumflex" horiz-adv-x="1058" unicode="â" d="M897 0h-166q-29 0 -48.5 7.5t-31 20.5t-16 31t-4.5 39v74q-64 -88 -142 -138t-172 -50q-56 0 -108 22.5t-92 68t-64 116t-24 166.5q0 141 51.5 267.5t144 221.5t219.5 151t279 56q74 0 150 -10t150 -36zM441 229q34 0 66 25.5t60.5 69.5t52.5 103t41 126l36 287h-18 q-76 0 -138.5 -34t-107.5 -92.5t-69.5 -136t-24.5 -165.5q0 -50 8 -85t21.5 -56.5t32 -31.5t40.5 -10zM1043 1168h-198q-17 0 -32.5 6t-21.5 14l-64 75l-10.5 10.5t-10.5 12.5q-8 -7 -14.5 -12.5t-12.5 -10.5l-84 -75q-9 -8 -25.5 -14t-34.5 -6h-206l252 287h282z"/>
|
|
176
|
+
<glyph glyph-name="atilde" horiz-adv-x="1058" unicode="ã" d="M897 0h-166q-29 0 -48.5 7.5t-31 20.5t-16 31t-4.5 39v74q-64 -88 -142 -138t-172 -50q-56 0 -108 22.5t-92 68t-64 116t-24 166.5q0 141 51.5 267.5t144 221.5t219.5 151t279 56q74 0 150 -10t150 -36zM441 229q34 0 66 25.5t60.5 69.5t52.5 103t41 126l36 287h-18 q-76 0 -138.5 -34t-107.5 -92.5t-69.5 -136t-24.5 -165.5q0 -50 8 -85t21.5 -56.5t32 -31.5t40.5 -10zM811 1381q21 0 35.5 13.5t20.5 54.5h180q-8 -61 -30.5 -110.5t-56 -84t-75.5 -53.5t-88 -19q-35 0 -63 12t-51.5 26t-42.5 26t-35 12q-21 0 -35 -14.5t-19 -55.5h-182 q7 61 30.5 110.5t57 85t75.5 54.5t87 19q34 0 62.5 -12t52 -26t42.5 -26t35 -12z"/>
|
|
177
|
+
<glyph glyph-name="adieresis" horiz-adv-x="1058" unicode="ä" d="M897 0h-166q-29 0 -48.5 7.5t-31 20.5t-16 31t-4.5 39v74q-64 -88 -142 -138t-172 -50q-56 0 -108 22.5t-92 68t-64 116t-24 166.5q0 141 51.5 267.5t144 221.5t219.5 151t279 56q74 0 150 -10t150 -36zM441 229q34 0 66 25.5t60.5 69.5t52.5 103t41 126l36 287h-18 q-76 0 -138.5 -34t-107.5 -92.5t-69.5 -136t-24.5 -165.5q0 -50 8 -85t21.5 -56.5t32 -31.5t40.5 -10zM673 1317q0 -32 -13 -60t-35.5 -48.5t-52 -32.5t-63.5 -12q-32 0 -60.5 12t-50 32.5t-34.5 48.5t-13 60q0 33 13 62t34.5 50.5t50 34t60.5 12.5q34 0 63.5 -12.5t52 -34 t35.5 -50.5t13 -62zM1059 1317q0 -32 -12.5 -60t-34.5 -48.5t-51.5 -32.5t-63.5 -12q-33 0 -62 12t-51 32.5t-34.5 48.5t-12.5 60q0 33 12.5 62t34.5 50.5t51 34t62 12.5q34 0 63.5 -12.5t51.5 -34t34.5 -50.5t12.5 -62z"/>
|
|
178
|
+
<glyph glyph-name="aring" horiz-adv-x="1058" unicode="å" d="M897 0h-166q-29 0 -48.5 7.5t-31 20.5t-16 31t-4.5 39v74q-64 -88 -142 -138t-172 -50q-56 0 -108 22.5t-92 68t-64 116t-24 166.5q0 141 51.5 267.5t144 221.5t219.5 151t279 56q74 0 150 -10t150 -36zM441 229q34 0 66 25.5t60.5 69.5t52.5 103t41 126l36 287h-18 q-76 0 -138.5 -34t-107.5 -92.5t-69.5 -136t-24.5 -165.5q0 -50 8 -85t21.5 -56.5t32 -31.5t40.5 -10zM481 1334q0 50 20 90.5t53 69.5t77 44.5t92 15.5q49 0 94 -15.5t79.5 -44.5t54.5 -69.5t20 -90.5q0 -49 -20 -88.5t-54.5 -67.5t-79.5 -43.5t-94 -15.5q-48 0 -92 15.5 t-77 43.5t-53 67.5t-20 88.5zM647 1334q0 -35 19.5 -57.5t60.5 -22.5q36 0 57 22.5t21 57.5q0 38 -21 60t-57 22q-41 0 -60.5 -22t-19.5 -60z"/>
|
|
179
|
+
<glyph glyph-name="ae" horiz-adv-x="1473" unicode="æ" d="M1122 1051q67 0 125.5 -22t102 -60t68 -88.5t24.5 -107.5q0 -36 -9 -73.5t-33 -73t-65 -67t-105.5 -56.5t-154.5 -41.5t-211 -20.5q3 -119 50 -172t132 -53q41 0 71 7t52.5 18t40.5 23l34.5 23t34.5 18t41 7q15 0 29 -7.5t25 -19.5l80 -93q-55 -54 -107.5 -93.5t-108 -65 t-118 -37.5t-136.5 -12q-92 0 -172 43.5t-131 136.5q-35 -47 -77.5 -81t-90 -56t-98 -32.5t-99.5 -10.5q-162 0 -239 67t-77 186q0 42 11.5 86.5t38.5 86t72 79t111.5 66t157 46.5t209.5 21q5 32 6 46t1 25q0 69 -28.5 100.5t-80.5 31.5q-50 0 -82.5 -12.5t-59.5 -27 t-52.5 -27t-59.5 -12.5q-30 0 -50 15t-30 37l-42 94q97 82 197 122.5t213 40.5q103 0 167 -36.5t96 -100.5q63 63 144.5 98t182.5 35zM578 446q-91 -5 -147.5 -20.5t-88 -38.5t-43 -52.5t-11.5 -61.5q0 -92 86 -92q37 0 70.5 13t60 42t45 75.5t26.5 113.5zM1082 844 q-44 0 -78.5 -16.5t-60 -47t-42.5 -73.5t-26 -96q96 9 154.5 24.5t90 34.5t42 41.5t10.5 46.5q0 35 -20 60.5t-70 25.5z"/>
|
|
180
|
+
<glyph glyph-name="ccedilla" horiz-adv-x="876" unicode="ç" d="M293 -214q15 0 26.5 -5t29.5 -5q23 0 33.5 12t10.5 26q0 20 -25.5 30.5t-88.5 19.5l51 132q-67 16 -120.5 53t-91 91.5t-57.5 126t-20 156.5q0 127 41.5 241t116 200t176.5 136.5t224 50.5q104 0 178.5 -35.5t133.5 -111.5l-100 -115q-11 -11 -25 -19.5t-31 -8.5 q-20 0 -33.5 8.5t-29.5 18t-39 18t-60 8.5q-46 0 -89.5 -26.5t-77.5 -76.5t-54.5 -123t-20.5 -166q0 -52 12 -90.5t33 -64t49 -38.5t60 -13q48 0 77.5 13.5t51.5 29.5t41 29.5t46 13.5q15 0 29.5 -7t24.5 -19l80 -94q-42 -47 -81.5 -81.5t-80 -57.5t-84.5 -36.5t-95 -18.5 l-13 -35q71 -21 98.5 -55.5t27.5 -75.5q0 -39 -20.5 -70.5t-56.5 -53.5t-86 -33.5t-109 -11.5q-38 0 -69.5 4t-66.5 14l40 90q5 11 12.5 18t21.5 7z"/>
|
|
181
|
+
<glyph glyph-name="egrave" horiz-adv-x="968" unicode="è" d="M951 782q0 -71 -28 -130t-97.5 -104.5t-187 -77.5t-295.5 -50q2 -106 46.5 -155t131.5 -49q41 0 71 7t52.5 18t40.5 23l34.5 23t34.5 18t41 7q15 0 29 -7.5t25 -19.5l80 -93q-55 -54 -107.5 -93.5t-108 -65t-118 -37.5t-136.5 -12q-92 0 -169 31.5t-132.5 89t-86 138.5 t-30.5 180q0 83 18.5 162t53 148.5t84.5 128t112.5 100.5t137 65.5t158.5 23.5q83 0 147.5 -24t108.5 -62.5t67 -86.5t23 -96zM587 842q-77 0 -135 -61.5t-87 -168.5q97 15 157 31.5t93 36t44.5 42t11.5 48.5t-20 49t-64 23zM553 1471q44 0 64.5 -14.5t31.5 -43.5l94 -245 h-170q-33 0 -52.5 9t-37.5 31l-210 263h280z"/>
|
|
182
|
+
<glyph glyph-name="eacute" horiz-adv-x="968" unicode="é" d="M951 782q0 -71 -28 -130t-97.5 -104.5t-187 -77.5t-295.5 -50q2 -106 46.5 -155t131.5 -49q41 0 71 7t52.5 18t40.5 23l34.5 23t34.5 18t41 7q15 0 29 -7.5t25 -19.5l80 -93q-55 -54 -107.5 -93.5t-108 -65t-118 -37.5t-136.5 -12q-92 0 -169 31.5t-132.5 89t-86 138.5 t-30.5 180q0 83 18.5 162t53 148.5t84.5 128t112.5 100.5t137 65.5t158.5 23.5q83 0 147.5 -24t108.5 -62.5t67 -86.5t23 -96zM587 842q-77 0 -135 -61.5t-87 -168.5q97 15 157 31.5t93 36t44.5 42t11.5 48.5t-20 49t-64 23zM1019 1471l-274 -263q-24 -23 -46.5 -31.5 t-55.5 -8.5h-178l154 245q18 28 42.5 43t69.5 15h288z"/>
|
|
183
|
+
<glyph glyph-name="ecircumflex" horiz-adv-x="968" unicode="ê" d="M951 782q0 -71 -28 -130t-97.5 -104.5t-187 -77.5t-295.5 -50q2 -106 46.5 -155t131.5 -49q41 0 71 7t52.5 18t40.5 23l34.5 23t34.5 18t41 7q15 0 29 -7.5t25 -19.5l80 -93q-55 -54 -107.5 -93.5t-108 -65t-118 -37.5t-136.5 -12q-92 0 -169 31.5t-132.5 89t-86 138.5 t-30.5 180q0 83 18.5 162t53 148.5t84.5 128t112.5 100.5t137 65.5t158.5 23.5q83 0 147.5 -24t108.5 -62.5t67 -86.5t23 -96zM587 842q-77 0 -135 -61.5t-87 -168.5q97 15 157 31.5t93 36t44.5 42t11.5 48.5t-20 49t-64 23zM963 1168h-198q-17 0 -32.5 6t-21.5 14l-64 75 l-10.5 10.5t-10.5 12.5q-8 -7 -14.5 -12.5t-12.5 -10.5l-84 -75q-9 -8 -25.5 -14t-34.5 -6h-206l252 287h282z"/>
|
|
184
|
+
<glyph glyph-name="edieresis" horiz-adv-x="968" unicode="ë" d="M951 782q0 -71 -28 -130t-97.5 -104.5t-187 -77.5t-295.5 -50q2 -106 46.5 -155t131.5 -49q41 0 71 7t52.5 18t40.5 23l34.5 23t34.5 18t41 7q15 0 29 -7.5t25 -19.5l80 -93q-55 -54 -107.5 -93.5t-108 -65t-118 -37.5t-136.5 -12q-92 0 -169 31.5t-132.5 89t-86 138.5 t-30.5 180q0 83 18.5 162t53 148.5t84.5 128t112.5 100.5t137 65.5t158.5 23.5q83 0 147.5 -24t108.5 -62.5t67 -86.5t23 -96zM587 842q-77 0 -135 -61.5t-87 -168.5q97 15 157 31.5t93 36t44.5 42t11.5 48.5t-20 49t-64 23zM593 1317q0 -32 -13 -60t-35.5 -48.5t-52 -32.5 t-63.5 -12q-32 0 -60.5 12t-50 32.5t-34.5 48.5t-13 60q0 33 13 62t34.5 50.5t50 34t60.5 12.5q34 0 63.5 -12.5t52 -34t35.5 -50.5t13 -62zM979 1317q0 -32 -12.5 -60t-34.5 -48.5t-51.5 -32.5t-63.5 -12q-33 0 -62 12t-51 32.5t-34.5 48.5t-12.5 60q0 33 12.5 62 t34.5 50.5t51 34t62 12.5q34 0 63.5 -12.5t51.5 -34t34.5 -50.5t12.5 -62z"/>
|
|
185
|
+
<glyph glyph-name="igrave" horiz-adv-x="540" unicode="ì" d="M485 1037l-124 -1037h-306l124 1037h306zM285 1471q44 0 64.5 -14.5t31.5 -43.5l94 -245h-170q-33 0 -52.5 9t-37.5 31l-210 263h280z"/>
|
|
186
|
+
<glyph glyph-name="iacute" horiz-adv-x="540" unicode="í" d="M485 1037l-124 -1037h-306l124 1037h306zM752 1471l-274 -263q-24 -23 -46.5 -31.5t-55.5 -8.5h-178l154 245q18 28 42.5 43t69.5 15h288z"/>
|
|
187
|
+
<glyph glyph-name="icircumflex" horiz-adv-x="540" unicode="î" d="M485 1037l-124 -1037h-306l124 1037h306zM696 1168h-198q-17 0 -32.5 6t-21.5 14l-64 75l-10.5 10.5t-10.5 12.5q-8 -7 -14.5 -12.5t-12.5 -10.5l-84 -75q-9 -8 -25.5 -14t-34.5 -6h-206l252 287h282z"/>
|
|
188
|
+
<glyph glyph-name="idieresis" horiz-adv-x="540" unicode="ï" d="M485 1037l-124 -1037h-306l124 1037h306zM326 1317q0 -32 -13 -60t-35.5 -48.5t-52 -32.5t-63.5 -12q-32 0 -60.5 12t-50 32.5t-34.5 48.5t-13 60q0 33 13 62t34.5 50.5t50 34t60.5 12.5q34 0 63.5 -12.5t52 -34t35.5 -50.5t13 -62zM712 1317q0 -32 -12.5 -60 t-34.5 -48.5t-51.5 -32.5t-63.5 -12q-33 0 -62 12t-51 32.5t-34.5 48.5t-12.5 60q0 33 12.5 62t34.5 50.5t51 34t62 12.5q34 0 63.5 -12.5t51.5 -34t34.5 -50.5t12.5 -62z"/>
|
|
189
|
+
<glyph glyph-name="eth" horiz-adv-x="1068" unicode="ð" d="M405 1057q-8 12 -8 28q0 14 7.5 25.5t18.5 18.5l104 60q-26 12 -54 22.5t-59 21.5q-61 20 -61 65q0 12 4 25t12 28l46 92q100 -17 188.5 -51.5t163.5 -88.5l191 107l50 -95q8 -16 8 -31q0 -14 -7 -26t-24 -22l-91 -53q69 -86 107 -199t38 -256q0 -174 -40 -312t-115 -234 t-183 -147t-244 -51q-92 0 -168.5 29.5t-131.5 84.5t-85.5 134.5t-30.5 178.5q0 106 37.5 201.5t103.5 167t155.5 113.5t193.5 42q91 0 157.5 -32.5t112.5 -94.5q-5 88 -32.5 157t-85.5 124l-222 -129zM493 205q39 0 77.5 17t72 58t60 110t41.5 174q-10 32 -24.5 59.5 t-36.5 48t-51 32t-67 11.5q-53 0 -95 -22.5t-71.5 -61.5t-45.5 -92t-16 -115q0 -106 43.5 -162.5t112.5 -56.5z"/>
|
|
190
|
+
<glyph glyph-name="ntilde" horiz-adv-x="1100" unicode="ñ" d="M641 0l78 659q2 16 3 29.5t1 25.5q0 53 -18.5 73.5t-55.5 20.5q-34 0 -71 -21t-70.5 -59t-61.5 -92.5t-44 -120.5l-57 -515h-310l124 1037h160q48 0 75 -22.5t27 -73.5v-83q75 100 164 147.5t184 47.5q58 0 106.5 -21t83.5 -61.5t55 -99.5t20 -136q0 -18 -1.5 -37 t-3.5 -39l-78 -659h-310zM771 1383q21 0 35.5 13.5t20.5 54.5h180q-8 -61 -30.5 -110.5t-56 -84t-75.5 -53.5t-88 -19q-35 0 -63 12t-51.5 26t-42.5 26t-35 12q-21 0 -35 -14.5t-19 -55.5h-182q7 61 30.5 110.5t57 85t75.5 54.5t87 19q34 0 62.5 -12t52 -26t42.5 -26t35 -12 z"/>
|
|
191
|
+
<glyph glyph-name="ograve" horiz-adv-x="1034" unicode="ò" d="M471 214q52 0 93 31.5t69.5 86t44 127t15.5 154.5q0 113 -30.5 161.5t-99.5 48.5q-52 0 -93 -31.5t-69.5 -85.5t-44 -127t-15.5 -155q0 -111 30.5 -160.5t99.5 -49.5zM443 -16q-87 0 -162.5 29t-131 84.5t-87 137t-31.5 187.5q0 138 45.5 253.5t122.5 199.5t178.5 131 t213.5 47q87 0 162 -29t130.5 -84.5t87.5 -137t32 -187.5q0 -136 -45.5 -251.5t-122.5 -200t-178.5 -132t-213.5 -47.5zM539 1473q44 0 64.5 -14.5t31.5 -43.5l94 -245h-170q-33 0 -52.5 9t-37.5 31l-210 263h280z"/>
|
|
192
|
+
<glyph glyph-name="oacute" horiz-adv-x="1034" unicode="ó" d="M471 214q52 0 93 31.5t69.5 86t44 127t15.5 154.5q0 113 -30.5 161.5t-99.5 48.5q-52 0 -93 -31.5t-69.5 -85.5t-44 -127t-15.5 -155q0 -111 30.5 -160.5t99.5 -49.5zM443 -16q-87 0 -162.5 29t-131 84.5t-87 137t-31.5 187.5q0 138 45.5 253.5t122.5 199.5t178.5 131 t213.5 47q87 0 162 -29t130.5 -84.5t87.5 -137t32 -187.5q0 -136 -45.5 -251.5t-122.5 -200t-178.5 -132t-213.5 -47.5zM1005 1473l-274 -263q-24 -23 -46.5 -31.5t-55.5 -8.5h-178l154 245q18 28 42.5 43t69.5 15h288z"/>
|
|
193
|
+
<glyph glyph-name="ocircumflex" horiz-adv-x="1034" unicode="ô" d="M471 214q52 0 93 31.5t69.5 86t44 127t15.5 154.5q0 113 -30.5 161.5t-99.5 48.5q-52 0 -93 -31.5t-69.5 -85.5t-44 -127t-15.5 -155q0 -111 30.5 -160.5t99.5 -49.5zM443 -16q-87 0 -162.5 29t-131 84.5t-87 137t-31.5 187.5q0 138 45.5 253.5t122.5 199.5t178.5 131 t213.5 47q87 0 162 -29t130.5 -84.5t87.5 -137t32 -187.5q0 -136 -45.5 -251.5t-122.5 -200t-178.5 -132t-213.5 -47.5zM949 1170h-198q-17 0 -32.5 6t-21.5 14l-64 75l-10.5 10.5t-10.5 12.5q-8 -7 -14.5 -12.5t-12.5 -10.5l-84 -75q-9 -8 -25.5 -14t-34.5 -6h-206l252 287 h282z"/>
|
|
194
|
+
<glyph glyph-name="otilde" horiz-adv-x="1034" unicode="õ" d="M471 214q52 0 93 31.5t69.5 86t44 127t15.5 154.5q0 113 -30.5 161.5t-99.5 48.5q-52 0 -93 -31.5t-69.5 -85.5t-44 -127t-15.5 -155q0 -111 30.5 -160.5t99.5 -49.5zM443 -16q-87 0 -162.5 29t-131 84.5t-87 137t-31.5 187.5q0 138 45.5 253.5t122.5 199.5t178.5 131 t213.5 47q87 0 162 -29t130.5 -84.5t87.5 -137t32 -187.5q0 -136 -45.5 -251.5t-122.5 -200t-178.5 -132t-213.5 -47.5zM717 1383q21 0 35.5 13.5t20.5 54.5h180q-8 -61 -30.5 -110.5t-56 -84t-75.5 -53.5t-88 -19q-35 0 -63 12t-51.5 26t-42.5 26t-35 12q-21 0 -35 -14.5 t-19 -55.5h-182q7 61 30.5 110.5t57 85t75.5 54.5t87 19q34 0 62.5 -12t52 -26t42.5 -26t35 -12z"/>
|
|
195
|
+
<glyph glyph-name="odieresis" horiz-adv-x="1034" unicode="ö" d="M471 214q52 0 93 31.5t69.5 86t44 127t15.5 154.5q0 113 -30.5 161.5t-99.5 48.5q-52 0 -93 -31.5t-69.5 -85.5t-44 -127t-15.5 -155q0 -111 30.5 -160.5t99.5 -49.5zM443 -16q-87 0 -162.5 29t-131 84.5t-87 137t-31.5 187.5q0 138 45.5 253.5t122.5 199.5t178.5 131 t213.5 47q87 0 162 -29t130.5 -84.5t87.5 -137t32 -187.5q0 -136 -45.5 -251.5t-122.5 -200t-178.5 -132t-213.5 -47.5zM579 1319q0 -32 -13 -60t-35.5 -48.5t-52 -32.5t-63.5 -12q-32 0 -60.5 12t-50 32.5t-34.5 48.5t-13 60q0 33 13 62t34.5 50.5t50 34t60.5 12.5 q34 0 63.5 -12.5t52 -34t35.5 -50.5t13 -62zM965 1319q0 -32 -12.5 -60t-34.5 -48.5t-51.5 -32.5t-63.5 -12q-33 0 -62 12t-51 32.5t-34.5 48.5t-12.5 60q0 33 12.5 62t34.5 50.5t51 34t62 12.5q34 0 63.5 -12.5t51.5 -34t34.5 -50.5t12.5 -62z"/>
|
|
196
|
+
<glyph glyph-name="divide" d="M122 779h988l-28 -214h-988zM472 1008q0 39 15.5 73t42 59.5t61.5 40t75 14.5q33 0 61 -11.5t48 -32t31.5 -48t11.5 -58.5q0 -39 -16 -73t-43 -58.5t-62 -38.5t-73 -14q-34 0 -62 11.5t-48 31t-31 46.5t-11 58zM384 296q0 39 15.5 73t42 59.5t61.5 40t75 14.5 q33 0 61 -11.5t48 -32t31.5 -48t11.5 -58.5q0 -39 -16 -73t-43 -58.5t-62 -38.5t-73 -14q-34 0 -62 11.5t-48 31t-31 46.5t-11 58z" unicode="÷"/>
|
|
197
|
+
<glyph glyph-name="oslash" horiz-adv-x="1034" unicode="ø" d="M443 -16q-107 0 -195 43q-36 -38 -81.5 -54t-89.5 -16h-112l141 192q-36 53 -55.5 121t-19.5 152q0 138 45.5 253.5t122.5 199.5t178.5 131t213.5 47q105 0 194 -43q15 20 28 34t28 23t33.5 13t44.5 4h152l-144 -196q36 -53 56 -121t20 -152q0 -136 -45.5 -251.5 t-122.5 -200t-178.5 -132t-213.5 -47.5zM471 195q52 0 96 29.5t76.5 83.5t51 131.5t18.5 173.5q0 5 -0.5 9t-0.5 9l-303 -422q28 -14 62 -14zM321 407l301 422q-28 13 -59 13q-52 0 -96 -29t-76.5 -83t-51 -131.5t-18.5 -174.5v-17z"/>
|
|
198
|
+
<glyph glyph-name="ugrave" horiz-adv-x="1098" unicode="ù" d="M459 1037l-78 -658q-2 -16 -3 -29.5t-1 -25.5q0 -53 18.5 -74t55.5 -21q31 0 65.5 18.5t66.5 52t59.5 81.5t45.5 107l67 549h310l-126 -1037h-158q-110 0 -110 102v66q-75 -94 -161 -139t-179 -45q-58 0 -106.5 21t-84 61.5t-55 100t-19.5 136.5q0 18 1.5 37t3.5 39 l78 658h310zM565 1473q44 0 64.5 -14.5t31.5 -43.5l94 -245h-170q-33 0 -52.5 9t-37.5 31l-210 263h280z"/>
|
|
199
|
+
<glyph glyph-name="uacute" horiz-adv-x="1098" unicode="ú" d="M459 1037l-78 -658q-2 -16 -3 -29.5t-1 -25.5q0 -53 18.5 -74t55.5 -21q31 0 65.5 18.5t66.5 52t59.5 81.5t45.5 107l67 549h310l-126 -1037h-158q-110 0 -110 102v66q-75 -94 -161 -139t-179 -45q-58 0 -106.5 21t-84 61.5t-55 100t-19.5 136.5q0 18 1.5 37t3.5 39 l78 658h310zM1031 1473l-274 -263q-24 -23 -46.5 -31.5t-55.5 -8.5h-178l154 245q18 28 42.5 43t69.5 15h288z"/>
|
|
200
|
+
<glyph glyph-name="ucircumflex" horiz-adv-x="1098" unicode="û" d="M459 1037l-78 -658q-2 -16 -3 -29.5t-1 -25.5q0 -53 18.5 -74t55.5 -21q31 0 65.5 18.5t66.5 52t59.5 81.5t45.5 107l67 549h310l-126 -1037h-158q-110 0 -110 102v66q-75 -94 -161 -139t-179 -45q-58 0 -106.5 21t-84 61.5t-55 100t-19.5 136.5q0 18 1.5 37t3.5 39 l78 658h310zM975 1170h-198q-17 0 -32.5 6t-21.5 14l-64 75l-10.5 10.5t-10.5 12.5q-8 -7 -14.5 -12.5t-12.5 -10.5l-84 -75q-9 -8 -25.5 -14t-34.5 -6h-206l252 287h282z"/>
|
|
201
|
+
<glyph glyph-name="udieresis" horiz-adv-x="1098" unicode="ü" d="M459 1037l-78 -658q-2 -16 -3 -29.5t-1 -25.5q0 -53 18.5 -74t55.5 -21q31 0 65.5 18.5t66.5 52t59.5 81.5t45.5 107l67 549h310l-126 -1037h-158q-110 0 -110 102v66q-75 -94 -161 -139t-179 -45q-58 0 -106.5 21t-84 61.5t-55 100t-19.5 136.5q0 18 1.5 37t3.5 39 l78 658h310zM605 1319q0 -32 -13 -60t-35.5 -48.5t-52 -32.5t-63.5 -12q-32 0 -60.5 12t-50 32.5t-34.5 48.5t-13 60q0 33 13 62t34.5 50.5t50 34t60.5 12.5q34 0 63.5 -12.5t52 -34t35.5 -50.5t13 -62zM991 1319q0 -32 -12.5 -60t-34.5 -48.5t-51.5 -32.5t-63.5 -12 q-33 0 -62 12t-51 32.5t-34.5 48.5t-12.5 60q0 33 12.5 62t34.5 50.5t51 34t62 12.5q34 0 63.5 -12.5t51.5 -34t34.5 -50.5t12.5 -62z"/>
|
|
202
|
+
<glyph glyph-name="yacute" horiz-adv-x="1032" unicode="ý" d="M421 -270q-16 -31 -39.5 -45t-56.5 -14h-232l237 422l-257 944h262q33 0 49.5 -16t22.5 -38l90 -447q6 -29 11 -57.5t8 -57.5q12 29 26 58.5t27 58.5l192 445q12 23 35 38.5t47 15.5h250zM1005 1473l-274 -263q-24 -23 -46.5 -31.5t-55.5 -8.5h-178l154 245 q18 28 42.5 43t69.5 15h288z"/>
|
|
203
|
+
<glyph glyph-name="thorn" horiz-adv-x="1090" unicode="þ" d="M3 -329l222 1826h306l-77 -621q68 82 149 129.5t172 47.5q64 0 117 -22.5t91.5 -70.5t60 -122.5t21.5 -177.5q0 -136 -41.5 -258.5t-111.5 -215.5t-161.5 -147.5t-191.5 -54.5q-65 0 -116 21t-90 56l-36 -292q-2 -19 -11.5 -36.5t-25 -31t-37 -22t-46.5 -8.5h-194z M651 818q-32 0 -67 -24.5t-67.5 -67t-61 -99.5t-47.5 -122l-31 -250q29 -23 64.5 -33t67.5 -10q54 0 99.5 36t78.5 94.5t51.5 133.5t18.5 153q0 99 -29 144t-77 45z"/>
|
|
204
|
+
<glyph glyph-name="ydieresis" horiz-adv-x="1032" unicode="ÿ" d="M421 -270q-16 -31 -39.5 -45t-56.5 -14h-232l237 422l-257 944h262q33 0 49.5 -16t22.5 -38l90 -447q6 -29 11 -57.5t8 -57.5q12 29 26 58.5t27 58.5l192 445q12 23 35 38.5t47 15.5h250zM579 1319q0 -32 -13 -60t-35.5 -48.5t-52 -32.5t-63.5 -12q-32 0 -60.5 12 t-50 32.5t-34.5 48.5t-13 60q0 33 13 62t34.5 50.5t50 34t60.5 12.5q34 0 63.5 -12.5t52 -34t35.5 -50.5t13 -62zM965 1319q0 -32 -12.5 -60t-34.5 -48.5t-51.5 -32.5t-63.5 -12q-33 0 -62 12t-51 32.5t-34.5 48.5t-12.5 60q0 33 12.5 62t34.5 50.5t51 34t62 12.5 q34 0 63.5 -12.5t51.5 -34t34.5 -50.5t12.5 -62z"/>
|
|
205
|
+
<glyph glyph-name="Aogonek" horiz-adv-x="1326" unicode="Ą" d="M1238 -171q21 0 24 -19l30 -107q-35 -21 -85.5 -35.5t-104.5 -14.5q-94 0 -140 38t-46 95q0 56 36.5 111t119.5 103h-36q-42 0 -67.5 19.5t-30.5 51.5l-45 262h-495l-108 -262q-11 -28 -43 -49.5t-71 -21.5h-256l696 1457h334l338 -1457h-42q-42 -23 -71 -57t-29 -77 q0 -20 10 -33t30 -13q27 0 35 4.5t17 4.5zM489 555h366l-71 416q-8 42 -18 94t-20 110q-22 -59 -44 -111.5t-42 -94.5z"/>
|
|
206
|
+
<glyph glyph-name="aogonek" horiz-adv-x="1072" unicode="ą" d="M859 -171q21 0 24 -19l30 -107q-35 -21 -85.5 -35.5t-104.5 -14.5q-94 0 -140 38t-46 95t37.5 112.5t123.5 104.5q-39 8 -53 34t-14 61v74q-64 -88 -142 -138t-172 -50q-56 0 -108 22.5t-92 68t-64 116t-24 166.5q0 141 51.5 267.5t144 221.5t219.5 151t279 56 q74 0 150 -10t150 -36l-126 -1007h-30q-42 -23 -71 -57t-29 -77q0 -20 10 -33t30 -13q27 0 35 4.5t17 4.5zM441 229q34 0 66 25.5t60.5 69.5t52.5 103t41 126l36 287h-18q-76 0 -138.5 -34t-107.5 -92.5t-69.5 -136t-24.5 -165.5q0 -50 8 -85t21.5 -56.5t32 -31.5t40.5 -10z "/>
|
|
207
|
+
<glyph glyph-name="Cacute" horiz-adv-x="1204" unicode="Ć" d="M678 252q55 0 95.5 8.5t69.5 21.5t49 28.5t36 28.5t30 21.5t30 8.5t26.5 -5.5t15.5 -12.5l114 -137q-95 -113 -225.5 -171.5t-296.5 -58.5q-138 0 -244.5 48.5t-179.5 133.5t-110.5 201.5t-37.5 251.5q0 125 28 237t79 207t122.5 171t158.5 129t187 81.5t209 28.5 q82 0 149.5 -15.5t122 -43t97.5 -65.5t75 -84l-114 -132q-12 -14 -28 -25t-42 -11q-17 0 -31 8t-28.5 19.5t-32.5 25.5t-43 25.5t-59.5 19.5t-81.5 8q-92 0 -171.5 -39t-138 -111.5t-91.5 -176t-33 -231.5q0 -93 22.5 -166t61.5 -123.5t93 -77t117 -26.5zM1290 1796 l-282 -204q-32 -23 -57 -32t-56 -9h-245l192 201q15 13 27 22t25.5 13.5t29 6.5t38.5 2h328z"/>
|
|
208
|
+
<glyph glyph-name="cacute" horiz-adv-x="876" unicode="ć" d="M855 182q-50 -55 -96 -93t-95 -61t-104.5 -33.5t-122.5 -10.5q-91 0 -164 31t-124.5 88t-79.5 138t-28 182q0 127 41.5 241t116 200t176.5 136.5t224 50.5q104 0 178.5 -35.5t133.5 -111.5l-100 -115q-11 -11 -25 -19.5t-31 -8.5q-20 0 -33.5 8.5t-29.5 18t-39 18 t-60 8.5q-46 0 -89.5 -26.5t-77.5 -76.5t-54.5 -123t-20.5 -166q0 -52 12 -90.5t33 -64t49 -38.5t60 -13q48 0 77.5 13.5t51.5 29.5t41 29.5t46 13.5q15 0 29.5 -7t24.5 -19l80 -94v0zM983 1473l-274 -263q-24 -23 -46.5 -31.5t-55.5 -8.5h-178l154 245q18 28 42.5 43 t69.5 15h288z"/>
|
|
209
|
+
<glyph glyph-name="Eogonek" horiz-adv-x="1036" unicode="Ę" d="M810 -171q21 0 24 -19l30 -107q-35 -21 -85.5 -35.5t-104.5 -14.5q-94 0 -140 38t-46 95q0 56 36.5 111t119.5 103h-600l180 1457h868l-32 -251h-539l-44 -352h413l-32 -242h-411l-44 -361h543l-32 -251h-96q-42 -23 -71 -57t-29 -77q0 -20 10 -33t30 -13q27 0 35 4.5 t17 4.5z"/>
|
|
210
|
+
<glyph glyph-name="eogonek" horiz-adv-x="968" unicode="ę" d="M595 -171q21 0 24 -19l30 -107q-35 -21 -85.5 -35.5t-104.5 -14.5q-94 0 -140 38t-46 95q0 53 31 104t103 97q-82 9 -149.5 43.5t-115.5 91t-74.5 133t-26.5 168.5q0 83 18.5 162t53 148.5t84.5 128t112.5 100.5t137 65.5t158.5 23.5q83 0 147.5 -24t108.5 -62.5 t67 -86.5t23 -96q0 -71 -28 -130t-97.5 -104.5t-187 -77.5t-295.5 -50q2 -106 46.5 -155t131.5 -49q41 0 71 7t52.5 18t40.5 23l34.5 23t34.5 18t41 7q15 0 29 -7.5t25 -19.5l80 -93q-82 -81 -160 -128.5t-172 -66.5q-40 -23 -67 -56t-27 -75q0 -20 10 -33t30 -13 q27 0 35 4.5t17 4.5zM587 842q-77 0 -135 -61.5t-87 -168.5q97 15 157 31.5t93 36t44.5 42t11.5 48.5t-20 49t-64 23z"/>
|
|
211
|
+
<glyph glyph-name="dotlessi" horiz-adv-x="540" unicode="ı" d="M485 1037l-124 -1037h-306l124 1037h306z"/>
|
|
212
|
+
<glyph glyph-name="Lslash" horiz-adv-x="1030" unicode="Ł" d="M558 926l306 155l-28 -214q-3 -22 -15 -36.5t-29 -23.5l-266 -141l-50 -406h490l-32 -260h-816l63 513l-185 -89l28 218q4 37 40 54l149 74l85 687h326z"/>
|
|
213
|
+
<glyph glyph-name="lslash" horiz-adv-x="664" unicode="ł" d="M67 746q0 39 36 54l113 46l79 651h306l-66 -543l142 56v-174q0 -47 -40 -62l-131 -54l-87 -720h-306l74 613l-120 -47v180z"/>
|
|
214
|
+
<glyph glyph-name="Nacute" horiz-adv-x="1392" unicode="Ń" d="M396 1457q21 0 35.5 -1.5t26 -7t20.5 -15.5t18 -26l511 -900q2 35 6 67t7 60l98 823h288l-180 -1457h-170q-38 0 -63 11t-43 43l-509 899q-2 -28 -4.5 -54t-4.5 -49l-100 -850h-288l180 1457h172v0zM1270 1796l-282 -204q-32 -23 -57 -32t-56 -9h-245l192 201 q15 13 27 22t25.5 13.5t29 6.5t38.5 2h328z"/>
|
|
215
|
+
<glyph glyph-name="nacute" horiz-adv-x="1100" unicode="ń" d="M641 0l78 659q2 16 3 29.5t1 25.5q0 53 -18.5 73.5t-55.5 20.5q-34 0 -71 -21t-70.5 -59t-61.5 -92.5t-44 -120.5l-57 -515h-310l124 1037h160q48 0 75 -22.5t27 -73.5v-83q75 100 164 147.5t184 47.5q58 0 106.5 -21t83.5 -61.5t55 -99.5t20 -136q0 -18 -1.5 -37 t-3.5 -39l-78 -659h-310zM1059 1473l-274 -263q-24 -23 -46.5 -31.5t-55.5 -8.5h-178l154 245q18 28 42.5 43t69.5 15h288z"/>
|
|
216
|
+
<glyph glyph-name="OE" horiz-adv-x="1952" unicode="Œ" d="M1976 1206h-541l-43 -354h412l-30 -242h-412l-44 -359h542l-32 -251h-830l17 136q-86 -72 -191 -112t-226 -40q-128 0 -230 49.5t-172.5 135.5t-108 203t-37.5 252q0 179 55 334t152.5 269.5t231 180t291.5 65.5q123 0 217.5 -46.5t160.5 -127.5l20 158h830zM1056 824 q0 88 -17.5 161t-52 125.5t-86 82t-118.5 29.5q-93 0 -167 -43.5t-125 -122t-78.5 -187t-27.5 -238.5q0 -87 17.5 -160t52.5 -125.5t87 -81.5t121 -29q91 0 164 43.5t124 121.5t78.5 186t27.5 238z"/>
|
|
217
|
+
<glyph glyph-name="oe" horiz-adv-x="1568" unicode="œ" d="M1232 1051q71 0 129.5 -19.5t100 -55t64.5 -85.5t23 -111q0 -70 -28 -128t-96 -103.5t-183.5 -78t-290.5 -50.5q7 -108 53.5 -156t127.5 -48q41 0 71 7t52.5 18t40.5 23l34.5 23t34.5 18t41 7q15 0 29 -7.5t25 -19.5l80 -93q-55 -54 -107.5 -93.5t-108 -65t-118 -37.5 t-136.5 -12q-89 0 -166.5 41t-128.5 128q-75 -81 -173 -125t-213 -44q-85 0 -151 31t-111.5 83.5t-69 121.5t-23.5 146q0 113 22.5 207.5t62 171t93.5 133.5t118 95.5t135 58t144 19.5q92 0 161.5 -35t114.5 -100q65 63 151.5 99t195.5 36zM463 206q58 0 100.5 28.5t71.5 81 t45.5 126.5t22.5 165q1 12 1.5 22.5t0.5 21.5q0 86 -30.5 132t-93.5 46q-59 0 -104.5 -32.5t-76.5 -91.5t-47.5 -141t-16.5 -182q0 -35 6.5 -67t21 -56t39 -38.5t60.5 -14.5zM1183 844q-80 0 -139 -61.5t-82 -182.5q99 15 162 34.5t100 41.5t51 45.5t14 47.5q0 31 -26 53 t-80 22z"/>
|
|
218
|
+
<glyph glyph-name="Sacute" horiz-adv-x="1000" unicode="Ś" d="M942 1165q-17 -24 -34.5 -35t-41.5 -11q-23 0 -46 15t-51.5 33t-65.5 33t-87 15q-46 0 -80.5 -13t-57.5 -36t-34.5 -54t-11.5 -68q0 -40 22.5 -67t60 -47.5t84.5 -37.5t96.5 -37t97 -46t85 -65t60 -94t22.5 -132q0 -110 -38 -207t-109 -169.5t-172.5 -115t-228.5 -42.5 q-63 0 -126.5 14t-122 39.5t-108.5 60.5t-85 78l116 152q13 17 34 28t42 11q28 0 54.5 -19.5t58.5 -43t74.5 -43t104.5 -19.5q91 0 140.5 49.5t49.5 146.5q0 45 -22.5 74t-59 49t-83.5 35.5t-96 33.5t-96 42.5t-83.5 64t-59 97t-22.5 141.5q0 97 36.5 186.5t104.5 158.5 t165 110t218 41q62 0 120.5 -13t109.5 -36t93 -54.5t71 -68.5zM1124 1796l-282 -204q-32 -23 -57 -32t-56 -9h-245l192 201q15 13 27 22t25.5 13.5t29 6.5t38.5 2h328z"/>
|
|
219
|
+
<glyph glyph-name="sacute" horiz-adv-x="790" unicode="ś" d="M743 819q-14 -18 -26 -26t-32 -8t-39.5 9t-42 20.5t-51 20.5t-65.5 9q-69 0 -98.5 -26.5t-29.5 -68.5q0 -27 16.5 -46t43.5 -34t61.5 -27.5t70.5 -28t70.5 -35.5t61.5 -49t43.5 -69t16.5 -95q0 -78 -31 -147.5t-89 -121t-140.5 -82t-185.5 -30.5q-49 0 -97 10t-90.5 27 t-77.5 40.5t-57 50.5l76 114q14 20 32.5 31.5t45.5 11.5q25 0 43 -12l39 -26t50 -26t76 -12q66 0 98 29.5t32 69.5q0 31 -16.5 51t-43.5 34.5t-61 26t-70 25.5t-70 32.5t-61 46.5t-43.5 69t-16.5 99q0 72 26.5 140t79 120.5t130.5 84.5t182 32t185.5 -36t134.5 -88z M919 1473l-274 -263q-24 -23 -46.5 -31.5t-55.5 -8.5h-178l154 245q18 28 42.5 43t69.5 15h288z"/>
|
|
220
|
+
<glyph glyph-name="Scaron" horiz-adv-x="1000" unicode="Š" d="M942 1165q-17 -24 -34.5 -35t-41.5 -11q-23 0 -46 15t-51.5 33t-65.5 33t-87 15q-46 0 -80.5 -13t-57.5 -36t-34.5 -54t-11.5 -68q0 -40 22.5 -67t60 -47.5t84.5 -37.5t96.5 -37t97 -46t85 -65t60 -94t22.5 -132q0 -110 -38 -207t-109 -169.5t-172.5 -115t-228.5 -42.5 q-63 0 -126.5 14t-122 39.5t-108.5 60.5t-85 78l116 152q13 17 34 28t42 11q28 0 54.5 -19.5t58.5 -43t74.5 -43t104.5 -19.5q91 0 140.5 49.5t49.5 146.5q0 45 -22.5 74t-59 49t-83.5 35.5t-96 33.5t-96 42.5t-83.5 64t-59 97t-22.5 141.5q0 97 36.5 186.5t104.5 158.5 t165 110t218 41q62 0 120.5 -13t109.5 -36t93 -54.5t71 -68.5zM308 1776h270l82 -67l8 -6t8 -7q5 4 9 7t9 6l96 67h270l-254 -225h-300z"/>
|
|
221
|
+
<glyph glyph-name="scaron" horiz-adv-x="790" unicode="š" d="M743 819q-14 -18 -26 -26t-32 -8t-39.5 9t-42 20.5t-51 20.5t-65.5 9q-69 0 -98.5 -26.5t-29.5 -68.5q0 -27 16.5 -46t43.5 -34t61.5 -27.5t70.5 -28t70.5 -35.5t61.5 -49t43.5 -69t16.5 -95q0 -78 -31 -147.5t-89 -121t-140.5 -82t-185.5 -30.5q-49 0 -97 10t-90.5 27 t-77.5 40.5t-57 50.5l76 114q14 20 32.5 31.5t45.5 11.5q25 0 43 -12l39 -26t50 -26t76 -12q66 0 98 29.5t32 69.5q0 31 -16.5 51t-43.5 34.5t-61 26t-70 25.5t-70 32.5t-61 46.5t-43.5 69t-16.5 99q0 72 26.5 140t79 120.5t130.5 84.5t182 32t185.5 -36t134.5 -88z M185 1457h206q17 0 31.5 -5.5t22.5 -13.5l64 -78q5 -5 11 -12.5t11 -15.5q7 8 14.5 15t13.5 13l82 78q8 8 25 13.5t35 5.5h198l-252 -287h-282z"/>
|
|
222
|
+
<glyph glyph-name="Ydieresis" horiz-adv-x="1256" unicode="Ÿ" d="M799 558l-69 -558h-326l69 555l-375 902h290q42 0 65.5 -19.5t34.5 -51.5l140 -441q14 -44 25.5 -85t19.5 -79q19 38 42 78.5t49 85.5l248 441q15 27 44 49t70 22h270zM730 1663q0 -28 -11 -52t-30.5 -42t-45.5 -28t-55 -10q-27 0 -51.5 10t-43.5 28t-30 42t-11 52 t11 53.5t30 44t43.5 29.5t51.5 11q29 0 55 -11t45.5 -29.5t30.5 -44t11 -53.5zM1088 1663q0 -28 -11 -52t-30 -42t-44.5 -28t-54.5 -10t-54 10t-43.5 28t-29.5 42t-11 52t11 53.5t29.5 44t43.5 29.5t54 11t54.5 -11t44.5 -29.5t30 -44t11 -53.5z"/>
|
|
223
|
+
<glyph glyph-name="Zacute" horiz-adv-x="1120" unicode="Ź" d="M1212 1457l-14 -98q-3 -20 -12.5 -38t-21.5 -35l-736 -1035h616l-32 -251h-1040l12 96q3 20 12.5 38t21.5 35l737 1037h-583l32 251h1008zM1176 1795l-282 -204q-32 -23 -57 -32t-56 -9h-245l192 201q15 13 27 22t25.5 13.5t29 6.5t38.5 2h328z"/>
|
|
224
|
+
<glyph glyph-name="zacute" horiz-adv-x="892" unicode="ź" d="M889 913q-4 -32 -18.5 -61t-31.5 -50l-448 -572h408l-28 -230h-776l16 126q2 19 16 47.5t34 54.5l452 579h-394l28 230h758zM949 1473l-274 -263q-24 -23 -46.5 -31.5t-55.5 -8.5h-178l154 245q18 28 42.5 43t69.5 15h288z"/>
|
|
225
|
+
<glyph glyph-name="Zdotaccent" horiz-adv-x="1120" unicode="Ż" d="M1212 1457l-14 -98q-3 -20 -12.5 -38t-21.5 -35l-736 -1035h616l-32 -251h-1040l12 96q3 20 12.5 38t21.5 35l737 1037h-583l32 251h1008zM908 1701q0 -34 -14.5 -65t-39 -54t-58 -37t-70.5 -14q-35 0 -66.5 14t-55.5 37t-38 54t-14 65q0 36 14 67.5t38 55.5t55.5 38 t66.5 14q37 0 70.5 -14t58 -38t39 -55.5t14.5 -67.5z"/>
|
|
226
|
+
<glyph glyph-name="zdotaccent" horiz-adv-x="892" unicode="ż" d="M889 913q-4 -32 -18.5 -61t-31.5 -50l-448 -572h408l-28 -230h-776l16 126q2 19 16 47.5t34 54.5l452 579h-394l28 230h758zM745 1324q0 -37 -15 -70t-41 -57.5t-60.5 -38.5t-73.5 -14q-38 0 -71 14t-58.5 38.5t-40 57.5t-14.5 70t14.5 70.5t40 58t58.5 39t71 14.5 q39 0 73.5 -14.5t60.5 -39t41 -58t15 -70.5z"/>
|
|
227
|
+
<glyph glyph-name="Zcaron" horiz-adv-x="1120" unicode="Ž" d="M1212 1457l-14 -98q-3 -20 -12.5 -38t-21.5 -35l-736 -1035h616l-32 -251h-1040l12 96q3 20 12.5 38t21.5 35l737 1037h-583l32 251h1008zM378 1775h270l82 -67l8 -6t8 -7q5 4 9 7t9 6l96 67h270l-254 -225h-300z"/>
|
|
228
|
+
<glyph glyph-name="zcaron" horiz-adv-x="892" unicode="ž" d="M889 913q-4 -32 -18.5 -61t-31.5 -50l-448 -572h408l-28 -230h-776l16 126q2 19 16 47.5t34 54.5l452 579h-394l28 230h758zM215 1457h206q17 0 31.5 -5.5t22.5 -13.5l64 -78q5 -5 11 -12.5t11 -15.5q7 8 14.5 15t13.5 13l82 78q8 8 25 13.5t35 5.5h198l-252 -287h-282z "/>
|
|
229
|
+
<glyph glyph-name="florin" d="M760 730l-160 -662q-26 -108 -74.5 -185.5t-123 -127t-177 -73t-235.5 -23.5l20 151q6 46 31 68t73 22q73 0 120.5 39.5t71.5 138.5l158 648l-98 20q-57 12 -57 59q0 8 1 12l14 118h192l34 138q25 101 73 177.5t122.5 128.5t177.5 78t237 26l-20 -159q-6 -46 -31 -64.5 t-73 -18.5q-74 0 -124 -40t-76 -137l-34 -129h276l-26 -205h-292z" unicode="ƒ"/>
|
|
230
|
+
<glyph glyph-name="circumflex" horiz-adv-x="612" unicode="ˆ" d="M746 1168h-198q-17 0 -32.5 6t-21.5 14l-64 75l-10.5 10.5t-10.5 12.5q-8 -7 -14.5 -12.5t-12.5 -10.5l-84 -75q-9 -8 -25.5 -14t-34.5 -6h-206l252 287h282z"/>
|
|
231
|
+
<glyph glyph-name="caron" horiz-adv-x="612" unicode="ˇ" d="M68 1455h206q17 0 31.5 -5.5t22.5 -13.5l64 -78q5 -5 11 -12.5t11 -15.5q7 8 14.5 15t13.5 13l82 78q8 8 25 13.5t35 5.5h198l-252 -287h-282z"/>
|
|
232
|
+
<glyph glyph-name="uni02C9" horiz-adv-x="612" unicode="ˉ" d="M132 1387h574l-24 -184h-574z"/>
|
|
233
|
+
<glyph glyph-name="breve" horiz-adv-x="612" unicode="˘" d="M390 1159q-77 0 -129.5 18.5t-84.5 50.5t-46 76t-14 94q0 14 1 28.5t3 28.5h208q-3 -21 -3 -38q0 -38 19 -57t70 -19q31 0 51 7.5t32.5 21.5t19 35.5t9.5 49.5h208q-8 -60 -29.5 -114t-62 -94.5t-102.5 -64t-150 -23.5z"/>
|
|
234
|
+
<glyph glyph-name="dotaccent" horiz-adv-x="612" unicode="˙" d="M598 1322q0 -37 -15 -70t-41 -57.5t-60.5 -38.5t-73.5 -14q-38 0 -71 14t-58.5 38.5t-40 57.5t-14.5 70t14.5 70.5t40 58t58.5 39t71 14.5q39 0 73.5 -14.5t60.5 -39t41 -58t15 -70.5z"/>
|
|
235
|
+
<glyph glyph-name="ring" horiz-adv-x="612" unicode="˚" d="M164 1334q0 50 20 90.5t53 69.5t77 44.5t92 15.5q49 0 94 -15.5t79.5 -44.5t54.5 -69.5t20 -90.5q0 -49 -20 -88.5t-54.5 -67.5t-79.5 -43.5t-94 -15.5q-48 0 -92 15.5t-77 43.5t-53 67.5t-20 88.5zM330 1334q0 -35 19.5 -57.5t60.5 -22.5q36 0 57 22.5t21 57.5 q0 38 -21 60t-57 22q-41 0 -60.5 -22t-19.5 -60z"/>
|
|
236
|
+
<glyph glyph-name="ogonek" horiz-adv-x="612" unicode="˛" d="M356 -171q21 0 24 -19l30 -107q-35 -21 -85.5 -35.5t-104.5 -14.5q-94 0 -140 38t-46 95q0 60 41.5 117.5t136.5 108.5l152 -12q-42 -23 -71 -57t-29 -77q0 -20 10 -33t30 -13q27 0 35 4.5t17 4.5z"/>
|
|
237
|
+
<glyph glyph-name="tilde" horiz-adv-x="612" unicode="˜" d="M514 1381q21 0 35.5 13.5t20.5 54.5h180q-8 -61 -30.5 -110.5t-56 -84t-75.5 -53.5t-88 -19q-35 0 -63 12t-51.5 26t-42.5 26t-35 12q-21 0 -35 -14.5t-19 -55.5h-182q7 61 30.5 110.5t57 85t75.5 54.5t87 19q34 0 62.5 -12t52 -26t42.5 -26t35 -12z"/>
|
|
238
|
+
<glyph glyph-name="hungarumlaut" horiz-adv-x="612" unicode="˝" d="M562 1471l-216 -263q-21 -25 -45 -32.5t-57 -7.5h-122l136 245q18 28 42.5 43t69.5 15h192zM918 1471l-274 -263q-23 -23 -45 -31.5t-55 -8.5h-142l192 245q10 13 21 24t24 18.5t29 11.5t38 4h212z"/>
|
|
239
|
+
<glyph glyph-name="pi" horiz-adv-x="1240" unicode="π" d="M1272 1035l-16 -116q-5 -36 -31.5 -62.5t-68.5 -26.5h-68l-102 -830h-298l101 830h-251l-68 -550q-8 -65 -29.5 -119.5t-60.5 -93.5t-96.5 -61t-137.5 -22q-35 0 -76.5 8.5t-77.5 28.5l24 121q4 21 16 35t48 14q26 0 42.5 5t26.5 16.5t15 29t8 42.5l67 546h-155l14 104 q2 16 11.5 34t25.5 33t37.5 24.5t47.5 9.5h1052z"/>
|
|
240
|
+
<glyph glyph-name="endash" horiz-adv-x="1072" unicode="–" d="M186 708h756l-26 -205h-756z"/>
|
|
241
|
+
<glyph glyph-name="emdash" horiz-adv-x="1592" unicode="—" d="M186 708h1276l-26 -205h-1276z"/>
|
|
242
|
+
<glyph glyph-name="quoteleft" horiz-adv-x="438" unicode="‘" d="M206 955q-24 49 -35.5 98t-11.5 98q0 118 65.5 228.5t193.5 202.5l85 -54q9 -5 14 -14.5t5 -19.5q0 -14 -7 -24t-22 -27q-9 -11 -23.5 -30.5t-27.5 -46.5t-22.5 -61t-9.5 -73q0 -31 7.5 -64.5t24.5 -70.5q4 -8 4 -19q0 -18 -14 -33t-38 -23z"/>
|
|
243
|
+
<glyph glyph-name="quoteright" horiz-adv-x="438" unicode="’" d="M436 1543q24 -49 35.5 -98t11.5 -98q0 -118 -65.5 -228.5t-193.5 -202.5l-85 54q-9 5 -14 14.5t-5 19.5q0 14 7 24t21 27q10 10 24 30t27.5 47t23 61t9.5 73q0 31 -7.5 64.5t-24.5 70.5q-4 8 -4 19q0 18 14 33t38 23z"/>
|
|
244
|
+
<glyph glyph-name="quotesinglbase" horiz-adv-x="488" unicode="‚" d="M298 324q24 -49 35.5 -98t11.5 -98q0 -118 -65.5 -228.5t-193.5 -202.5l-85 54q-9 5 -14 14.5t-5 19.5q0 14 7 24t21 27q10 10 24 30t27.5 47t23 61t9.5 73q0 31 -7.5 64.5t-24.5 70.5q-4 8 -4 19q0 18 14 33t38 23z"/>
|
|
245
|
+
<glyph glyph-name="quotedblleft" horiz-adv-x="774" unicode="“" d="M206 955q-24 49 -35.5 98t-11.5 98q0 118 65.5 228.5t193.5 202.5l85 -54q9 -5 14 -14.5t5 -19.5q0 -14 -7 -24t-22 -27q-9 -11 -23.5 -30.5t-27.5 -46.5t-22.5 -61t-9.5 -73q0 -31 7.5 -64.5t24.5 -70.5q4 -8 4 -19q0 -18 -14 -33t-38 -23zM542 955q-24 49 -35.5 98 t-11.5 98q0 118 65.5 228.5t193.5 202.5l85 -54q9 -5 14 -14.5t5 -19.5q0 -14 -7 -24t-22 -27q-9 -11 -23.5 -30.5t-27.5 -46.5t-22.5 -61t-9.5 -73q0 -31 7.5 -64.5t24.5 -70.5q4 -8 4 -19q0 -18 -14 -33t-38 -23z"/>
|
|
246
|
+
<glyph glyph-name="quotedblright" horiz-adv-x="774" unicode="”" d="M436 1543q24 -49 35.5 -98t11.5 -98q0 -118 -65.5 -228.5t-193.5 -202.5l-85 54q-9 5 -14 14.5t-5 19.5q0 14 7 24t21 27q10 10 24 30t27.5 47t23 61t9.5 73q0 31 -7.5 64.5t-24.5 70.5q-4 8 -4 19q0 18 14 33t38 23zM770 1543q24 -49 35.5 -98t11.5 -98 q0 -118 -65.5 -228.5t-193.5 -202.5l-85 54q-9 5 -14 14.5t-5 19.5q0 14 7 24t21 27q10 10 24 30t27.5 47t23 61t9.5 73q0 31 -7.5 64.5t-24.5 70.5q-4 8 -4 19q0 18 14 33t38 23z"/>
|
|
247
|
+
<glyph glyph-name="quotedblbase" horiz-adv-x="774" unicode="„" d="M298 324q24 -49 35.5 -98t11.5 -98q0 -118 -65.5 -228.5t-193.5 -202.5l-85 54q-9 5 -14 14.5t-5 19.5q0 14 7 24t21 27q10 10 24 30t27.5 47t23 61t9.5 73q0 31 -7.5 64.5t-24.5 70.5q-4 8 -4 19q0 18 14 33t38 23zM634 324q24 -49 35.5 -98t11.5 -98 q0 -118 -65.5 -228.5t-193.5 -202.5l-85 54q-9 5 -14 14.5t-5 19.5q0 14 7 24t21 27q10 10 24 30t27.5 47t23 61t9.5 73q0 31 -7.5 64.5t-24.5 70.5q-4 8 -4 19q0 18 14 33t38 23z"/>
|
|
248
|
+
<glyph glyph-name="dagger" horiz-adv-x="1068" unicode="†" d="M98 947q3 24 14 46t30 39t46.5 27.5t63.5 10.5q25 0 53.5 -5t58.5 -12t61.5 -15t62.5 -14l18 451q33 17 73.5 27t84.5 10t81.5 -10t66.5 -27l-92 -451q33 6 66 14t65 15t61.5 12t55.5 5q33 0 56 -8.5t38 -23.5t22 -34t7 -40v-8.5t-1 -8.5l-12 -96h-380l-42 -352l-62 -815 q-35 -19 -75.5 -28t-84.5 -9t-81.5 9t-66.5 28l138 815l42 352h-380z"/>
|
|
249
|
+
<glyph glyph-name="daggerdbl" horiz-adv-x="1068" unicode="‡" d="M20 308h380l67 543h-381l12 96q3 24 14 46t30 39t46.5 27.5t63.5 10.5q25 0 53.5 -5t58.5 -12t61.5 -15t62.5 -14l18 451q33 17 73.5 27t84.5 10t81.5 -10t66.5 -27l-92 -451q33 6 66 14t65 15t61.5 12t55.5 5q33 0 56 -8.5t38 -23.5t22 -34t7 -40v-8.5t-1 -8.5l-12 -96 h-381l-67 -543h382l-12 -96q-3 -24 -14 -47t-30 -40t-46.5 -27.5t-63.5 -10.5q-26 0 -54 5t-58.5 12t-62 15t-62.5 14l-15 -449q-35 -19 -75.5 -28t-84.5 -9t-81.5 9t-66.5 28l91 449q-33 -6 -66 -14t-64.5 -15t-61 -12t-55.5 -5q-65 0 -94 31.5t-29 75.5v9t1 9z"/>
|
|
250
|
+
<glyph glyph-name="bullet" d="M100 592q0 100 39 188t106 154t157 104t192 38q103 0 193 -38t157.5 -104t106.5 -154t39 -188q0 -99 -39 -187t-106.5 -153t-157.5 -103t-193 -38q-102 0 -192 38t-157 103t-106 153t-39 187z" unicode="•"/>
|
|
251
|
+
<glyph glyph-name="ellipsis" horiz-adv-x="1576" unicode="…" d="M24 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5zM576 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54 t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5t-13.5 67.5zM1128 157q0 36 13.5 67t37 54t55.5 36.5t70 13.5q37 0 69 -13.5t56 -36.5t37.5 -54t13.5 -67t-13.5 -67.5t-37.5 -54.5t-56 -36t-69 -13q-38 0 -70 13t-55.5 36t-37 54.5 t-13.5 67.5z"/>
|
|
252
|
+
<glyph glyph-name="perthousand" horiz-adv-x="2202" unicode="‰" d="M772 1155q0 -93 -32.5 -169t-85 -130t-119.5 -83.5t-137 -29.5q-64 0 -116 22.5t-89 63.5t-57 98t-20 126q0 93 29 169.5t79 131.5t118 85t146 30q64 0 116.5 -22.5t90 -64t57.5 -99.5t20 -128zM542 1153q0 72 -21.5 101.5t-56.5 29.5q-27 0 -49 -12.5t-37 -40 t-23.5 -71.5t-8.5 -107q0 -69 20.5 -96t55.5 -27q26 0 48 11t38 37t25 69t9 106zM1222 1411q17 16 39.5 30t60.5 14h218l-1190 -1413q-17 -17 -39.5 -29.5t-54.5 -12.5h-222zM1454 394q0 -93 -32.5 -169t-85 -130t-119.5 -83.5t-137 -29.5q-64 0 -116 22.5t-89 63.5t-57 98 t-20 125q0 94 29 171t79 132t118 85t146 30q64 0 116.5 -23t90 -64t57.5 -99.5t20 -128.5zM1224 392q0 73 -21.5 101t-56.5 28q-27 0 -49 -12t-37 -39.5t-23.5 -71.5t-8.5 -107q0 -68 20.5 -95.5t55.5 -27.5q26 0 48 11t38 37.5t25 69.5t9 106zM2144 394q0 -93 -32.5 -169 t-85 -130t-119.5 -83.5t-137 -29.5q-64 0 -116 22.5t-89 63.5t-57 98t-20 125q0 94 29 171t79 132t118 85t146 30q64 0 116 -23t89.5 -64t58 -99.5t20.5 -128.5zM1914 392q0 73 -21.5 101t-56.5 28q-27 0 -49 -12t-37 -39.5t-23.5 -71.5t-8.5 -107q0 -68 20.5 -95.5 t55.5 -27.5q25 0 47 11t38.5 37.5t25.5 69.5t9 106z"/>
|
|
253
|
+
<glyph glyph-name="guilsinglleft" horiz-adv-x="626" unicode="‹" d="M111 525l6 37l292 400l92 -44q38 -18 38 -52q0 -14 -6 -28t-16 -30l-132 -219q-9 -15 -19.5 -26.5t-21.5 -19.5q8 -9 16 -20t13 -25l80 -219q4 -11 6.5 -21t2.5 -20q0 -47 -53 -71l-104 -44z"/>
|
|
254
|
+
<glyph glyph-name="guilsinglright" horiz-adv-x="626" unicode="›" d="M532 562l-4 -37l-292 -402l-92 44q-39 19 -39 54q0 14 5.5 28t15.5 30l134 219q8 14 18.5 25t21.5 19q-18 18 -28 47l-82 219q-8 21 -8 38q0 23 13 42t41 30l104 44z"/>
|
|
255
|
+
<glyph glyph-name="fraction" horiz-adv-x="756" unicode="⁄" d="M74 85q-35 -50 -73.5 -67.5t-86.5 -17.5h-122l951 1357q34 48 75.5 73t95.5 25h122z"/>
|
|
256
|
+
<glyph glyph-name="Euro" d="M96 946h116q39 121 102 217.5t145.5 164.5t180.5 104.5t206 36.5q70 0 129 -14.5t107 -41.5t85 -64.5t63 -83.5l-120 -111q-14 -13 -28 -22.5t-38 -9.5q-15 0 -26.5 7.5t-23 18t-24.5 23.5t-32 23.5t-46 18t-66 7.5q-103 0 -183.5 -70t-125.5 -204h477l-10 -90 q-2 -12 -9.5 -24.5t-19.5 -22t-28 -16t-35 -6.5h-412q-3 -23 -5.5 -47.5t-4.5 -49.5h398l-12 -88q-2 -13 -9.5 -26t-19.5 -23t-27.5 -16t-33.5 -6h-295q12 -147 70.5 -221.5t152.5 -74.5q65 0 104.5 17.5t66 39t45.5 39t44 17.5q14 0 22.5 -3t17.5 -14l116 -117 q-83 -112 -201.5 -170t-260.5 -58q-117 0 -205 40.5t-148.5 113t-93.5 172.5t-40 219h-117l20 159h100q2 25 4.5 49t6.5 48h-99z" unicode="€"/>
|
|
257
|
+
<glyph glyph-name="trademark" horiz-adv-x="1348" unicode="™" d="M968 1199q6 -20 11 -44t10 -44q9 20 19.5 42.5t23.5 45.5l112 226q11 23 26 26.5t38 3.5h182l-74 -611h-180l32 262l25 105l-141 -271q-11 -21 -31.5 -31.5t-44.5 -10.5h-28q-23 0 -41 11t-23 31l-71 264q0 -28 -0.5 -55t-2.5 -43l-30 -262h-178l74 611h173q25 0 43.5 -4 t23.5 -26zM636 1455l-22 -163h-135l-55 -448h-202l53 448h-133l22 163h472z"/>
|
|
258
|
+
<glyph glyph-name="Omega" horiz-adv-x="1348" unicode="Ω" d="M660 0l68 535q58 10 110.5 37t92.5 75t63.5 119.5t23.5 170.5q0 133 -63.5 208t-192.5 75q-85 0 -148.5 -28t-105.5 -80.5t-63 -127.5t-21 -169q0 -65 16 -114t44.5 -83t67 -54.5t82.5 -28.5l-66 -535h-470q-45 0 -70 23t-25 61q0 9 1 14l20 161h326l15 119 q-69 25 -120.5 68t-85.5 100t-50.5 125t-16.5 143q0 133 51 252.5t144 209.5t222 142.5t285 52.5q133 0 237.5 -42t176 -113.5t109 -166t37.5 -199.5q0 -98 -26 -189.5t-76 -167.5t-124.5 -132.5t-171.5 -85.5l-14 -116h328l-20 -161q-5 -44 -37.5 -71t-82.5 -27h-470z"/>
|
|
259
|
+
<glyph glyph-name="partialdiff" horiz-adv-x="1067" unicode="∂" d="M342 1333q43 31 87 56.5t91.5 43.5t101.5 27.5t119 9.5q79 0 145.5 -31t113.5 -89t73.5 -141.5t26.5 -189.5q0 -26 -1.5 -54t-5.5 -57q-26 -212 -83 -383t-144 -291t-205 -185t-266 -65q-81 0 -148.5 25.5t-116 73.5t-75 116.5t-26.5 154.5q0 84 21.5 162.5t59 147.5 t90 126t115 97.5t132 63t142.5 22.5q80 0 134 -23.5t89 -66.5l3 23q6 49 6 91q0 60 -11.5 104.5t-32 74t-48.5 44t-62 14.5q-29 0 -59 -10t-57.5 -22t-51.5 -22t-42 -10q-17 0 -32.5 9.5t-29.5 38.5zM460 216q35 0 72.5 17.5t74 58.5t70 108t61.5 167q-4 35 -12.5 66.5 t-25.5 55.5t-43 38t-65 14q-62 0 -108 -32t-76 -86t-45 -124.5t-15 -146.5q0 -28 8 -52.5t23 -43t35.5 -29.5t45.5 -11z"/>
|
|
260
|
+
<glyph glyph-name="Delta" horiz-adv-x="1426" unicode="∆" d="M1356 0h-1408l736 1455h296zM397 249h573l-146 722q-4 16 -8 37.5t-7.5 46t-7 50.5t-7.5 50q-10 -24 -20 -50.5t-20 -51t-19 -46.5t-17 -38z"/>
|
|
261
|
+
<glyph glyph-name="product" horiz-adv-x="1376" unicode="∏" d="M1452 1455l-30 -241h-152l-190 -1545h-308l188 1545h-368l-190 -1545h-308l190 1545h-154l30 241h1292z"/>
|
|
262
|
+
<glyph glyph-name="summation" horiz-adv-x="1268" unicode="∑" d="M1323 1457l-32 -251h-656l341 -598l-12 -88l-487 -599h658l-32 -250h-1122l13 103q3 22 15 45t29 43l595 706l-425 695q-11 17 -16 36.5t-5 38.5v6t1.5 15.5t4.5 34t8 63.5h1122z"/>
|
|
263
|
+
<glyph glyph-name="minus" d="M162 779h906l-28 -214h-904z" unicode="−"/>
|
|
264
|
+
<glyph glyph-name="radical" horiz-adv-x="1178" unicode="√" d="M672 0h-252l-152 628h-82q-20 0 -38.5 5t-32 16t-21.5 29t-8 44q0 5 0.5 11t1.5 12l12 92h366q32 0 52.5 -15t23.5 -37l38 -248q8 -48 12.5 -96t4.5 -98q11 38 25.5 77t31.5 81l488 1148q10 23 34 38.5t54 15.5h198z"/>
|
|
265
|
+
<glyph glyph-name="infinity" horiz-adv-x="1267" unicode="∞" d="M881 214q-50 0 -89.5 12.5t-71 34t-56 50.5t-44.5 62q-28 -33 -60 -62t-69 -50.5t-80 -34t-93 -12.5q-60 0 -111.5 23.5t-89.5 66t-59.5 101.5t-21.5 130q0 89 31.5 168t84 138t120 93.5t140.5 34.5q50 0 89.5 -12.5t71.5 -34t56.5 -50.5t44.5 -62q28 33 60 62t69 50.5 t79.5 34t92.5 12.5q60 0 112 -23.5t90.5 -65.5t60 -101t21.5 -130q0 -89 -31.5 -168.5t-84 -138.5t-121 -93.5t-141.5 -34.5zM363 456q45 0 83 38.5t77 96.5q-12 29 -25.5 54t-28.5 43.5t-33.5 29t-40.5 10.5q-23 0 -44 -11.5t-37 -33t-25.5 -52.5t-9.5 -71q0 -57 25 -80.5 t59 -23.5zM900 456q23 0 44 11t37 32.5t25.5 52.5t9.5 71q0 58 -25.5 81.5t-58.5 23.5q-45 0 -83.5 -38.5t-76.5 -96.5q12 -29 25 -54t28.5 -43.5t33.5 -29t41 -10.5z"/>
|
|
266
|
+
<glyph glyph-name="integral" horiz-adv-x="791" unicode="∫" d="M445 1097q20 86 54 155.5t83.5 118.5t114 75.5t146.5 26.5q35 0 77 -8.5t78 -28.5l-33 -147q-2 -11 -5.5 -23t-11 -22.5t-19 -17.5t-28.5 -7q-42 0 -69.5 -10.5t-45.5 -30.5t-29 -50.5t-21 -70.5l-238 -985q-26 -105 -68 -182t-99 -127.5t-126.5 -74.5t-148.5 -24 q-35 0 -76 8.5t-78 29.5l32 126q4 15 8 26.5t12 19.5t21.5 12t34.5 4q52 0 85.5 9.5t54 30.5t32.5 54t22 79z"/>
|
|
267
|
+
<glyph glyph-name="approxequal" d="M850 921q33 0 65 7.5t58.5 17.5t45.5 21t27 18l10 -183q-48 -54 -116.5 -77t-137.5 -23q-53 0 -104.5 15t-100.5 33t-95 33t-88 15q-35 0 -68 -8t-60 -19t-46 -23t-26 -21l-20 178q50 58 121.5 83.5t146.5 25.5q52 0 103.5 -14.5t100.5 -32t95 -32t89 -14.5zM804 552 q33 0 65 7.5t59 18t46 21.5t26 18l10 -184q-48 -52 -116.5 -74.5t-137.5 -22.5q-53 0 -104.5 14.5t-100 32t-94.5 32t-89 14.5q-34 0 -67 -7.5t-60 -18t-46.5 -22t-26.5 -20.5l-18 176q48 58 119.5 84.5t146.5 26.5q53 0 104.5 -15t100.5 -33t95 -33t88 -15z" unicode="≈"/>
|
|
268
|
+
<glyph glyph-name="notequal" d="M186 960h507l135 208h212l-135 -208h185l-26 -215h-298l-95 -148h375l-28 -214h-485l-145 -225h-212l145 225h-209l28 214h319l95 148h-396z" unicode="≠"/>
|
|
269
|
+
<glyph glyph-name="lessequal" horiz-adv-x="1067" unicode="≤" d="M169 878l856 381l-26 -206q-3 -23 -18.5 -43.5t-55.5 -37.5l-284 -117q-61 -21 -134 -36q67 -15 125 -38l256 -121q32 -15 43.5 -32t11.5 -37q0 -2 -0.5 -6.5t-3 -25.5t-8 -64t-15.5 -122l-763 384zM98 302h810l-29 -222h-810z"/>
|
|
270
|
+
<glyph glyph-name="greaterequal" horiz-adv-x="1067" unicode="≥" d="M896 80h-810l29 222h810zM980 757l-856 -381l26 206q3 23 18.5 43.5t55.5 37.5l284 117q61 21 134 36q-67 15 -125 38l-256 121q-32 15 -43.5 32t-11.5 37q0 1 0.5 6t3 26t8 64t15.5 122l763 -384z"/>
|
|
271
|
+
<glyph glyph-name="lozenge" d="M120 734l372 804h216l372 -804l-372 -804h-216zM372 734l188 -436q13 -30 22.5 -56.5t17.5 -51.5q8 25 17 51.5t23 56.5l194 436l-194 437q-25 57 -40 107q-8 -25 -18 -51t-22 -56z" unicode="◊"/>
|
|
272
|
+
<glyph glyph-name="uni2669" horiz-adv-x="0" unicode="♩" d="M-118 -500l242 2000h2l-242 -2000h-2z"/>
|
|
273
|
+
<glyph glyph-name="undercommaaccent" d="M392 -68l-152 -283h-188l84 283h256z" horiz-adv-x="612"/>
|
|
274
|
+
<glyph glyph-name="grave.case" d="M354 1796q22 0 37 -2t27 -6.5t22 -13.5t22 -22l142 -201h-256q-33 0 -51.5 10.5t-40.5 30.5l-232 204h330z" horiz-adv-x="612"/>
|
|
275
|
+
<glyph glyph-name="dieresis.case" d="M380 1666q0 -28 -11 -52t-30.5 -42t-45.5 -28t-55 -10q-27 0 -51.5 10t-43.5 28t-30 42t-11 52t11 53.5t30 44t43.5 29.5t51.5 11q29 0 55 -11t45.5 -29.5t30.5 -44t11 -53.5zM738 1666q0 -28 -11 -52t-30 -42t-44.5 -28t-54.5 -10t-54 10t-43.5 28t-29.5 42t-11 52 t11 53.5t29.5 44t43.5 29.5t54 11t54.5 -11t44.5 -29.5t30 -44t11 -53.5z" horiz-adv-x="612"/>
|
|
276
|
+
<glyph glyph-name="macron.case" d="M146 1721h624l-22 -165h-624z" horiz-adv-x="612"/>
|
|
277
|
+
<glyph glyph-name="acute.case" d="M886 1796l-282 -204q-32 -23 -57 -32t-56 -9h-245l192 201q15 13 27 22t25.5 13.5t29 6.5t38.5 2h328z" horiz-adv-x="612"/>
|
|
278
|
+
<glyph glyph-name="circumflex.case" d="M808 1551h-226q-17 0 -37 4t-31 14l-72 63l-88 -63q-13 -9 -33.5 -13.5t-38.5 -4.5h-224l252 225h300z" horiz-adv-x="612"/>
|
|
279
|
+
<glyph glyph-name="caron.case" d="M88 1776h270l82 -67l8 -6t8 -7q5 4 9 7t9 6l96 67h270l-254 -225h-300z" horiz-adv-x="612"/>
|
|
280
|
+
<glyph glyph-name="breve.case" d="M434 1528q-135 0 -212 51t-77 158q0 20 3 41h188q-1 -5 -1 -13q0 -37 31.5 -51.5t89.5 -14.5q62 0 96.5 17t39.5 62h190q-8 -57 -35.5 -103t-72.5 -78.5t-106 -50.5t-134 -18z" horiz-adv-x="612"/>
|
|
281
|
+
<glyph glyph-name="dotaccent.case" d="M618 1702q0 -34 -14.5 -65t-39 -54t-58 -37t-70.5 -14q-35 0 -66.5 14t-55.5 37t-38 54t-14 65q0 36 14 67.5t38 55.5t55.5 38t66.5 14q37 0 70.5 -14t58 -38t39 -55.5t14.5 -67.5z" horiz-adv-x="612"/>
|
|
282
|
+
<glyph glyph-name="ring.case" d="M206 1701q0 46 18.5 83.5t49 64t70.5 41t84 14.5q46 0 87 -14.5t72.5 -41t50 -64t18.5 -83.5q0 -44 -18.5 -80.5t-50 -62.5t-72.5 -40t-87 -14q-44 0 -84 14t-70.5 40t-49 62.5t-18.5 80.5zM352 1701q0 -35 19.5 -57.5t60.5 -22.5q36 0 57 22.5t21 57.5q0 38 -21 60 t-57 22q-41 0 -60.5 -22t-19.5 -60z" horiz-adv-x="612"/>
|
|
283
|
+
<glyph glyph-name="tilde.case" d="M572 1723q18 0 32.5 12.5t17.5 40.5h162q-7 -54 -26 -98t-49 -76t-68.5 -49.5t-84.5 -17.5q-34 0 -65.5 10t-59.5 21.5t-51.5 21.5t-39.5 10q-18 0 -31.5 -14t-16.5 -43h-164q7 54 26.5 98.5t49.5 77t68.5 50t83.5 17.5q34 0 66 -9.5t60 -21t50.5 -21t39.5 -9.5z" horiz-adv-x="612"/>
|
|
284
|
+
<glyph glyph-name="hungarumlaut.case" d="M610 1779l-210 -187q-13 -10 -24 -17.5t-22.5 -13t-24.5 -8t-29 -2.5h-140l132 168q21 27 51 43.5t75 16.5h192zM974 1779l-266 -187q-28 -20 -52.5 -30.5t-57.5 -10.5h-160l182 168q26 24 57 42t75 18h222z" horiz-adv-x="612"/>
|
|
285
|
+
<glyph glyph-name="caron.salt" d="M548 1497q27 0 34.5 -11t7.5 -22q0 -9 -3 -21.5t-16.5 -40.5t-40.5 -78.5t-76 -134.5q-20 -33 -45 -41.5t-63 -8.5h-106l106 358h202z" horiz-adv-x="612"/>
|
|
286
|
+
</font>
|
|
287
|
+
</defs>
|
|
288
|
+
</svg>
|