feat: factory creation and initial theme work

This commit is contained in:
Paul Couture 2023-07-29 01:05:43 -05:00
parent 1833524f7f
commit 5c218918ee
213 changed files with 46351 additions and 1923 deletions

1
.gitignore vendored
View File

@ -29,3 +29,4 @@ Homestead.json
/.vagrant
.phpunit.result.cache
site/.yarn/releases/yarn-1.22.19.cjs

5
site/.yarnrc Normal file
View File

@ -0,0 +1,5 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
yarn-path ".yarn/releases/yarn-1.22.19.cjs"

View File

@ -0,0 +1,15 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\Artwork;
class PageController extends Controller
{
public function landing()
{
$user = auth()->user();
return view('home.page');
}
}

View File

@ -59,6 +59,8 @@
'asset_url' => env('ASSET_URL'),
'static_asset_url' => env('STATIC_ASSET_URL'),
/*
|--------------------------------------------------------------------------
| Application Timezone

View File

@ -2,10 +2,19 @@
namespace Database\Factories;
use App\Models\Artist;
use App\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
class ArtistFactory extends Factory
{
/**
* The name of the factory's corresponding model
*
* @var string
*/
protected $model = Artist::class;
/**
* Define the model's default state.
*
@ -14,7 +23,13 @@ class ArtistFactory extends Factory
public function definition()
{
return [
//
'user_id' => User::factory(),
'name' => fake()->name(),
'avatar' => fake()->imageUrl(512, 512),
'header' => fake()->imageUrl(270, 185),
'location' => fake()->city() . ', ' . fake()->state(),
'website' => rand(0, 1) ? fake()->url : null,
'bio' => fake()->paragraphs(rand(1,3, true)),
];
}
}

View File

@ -3,9 +3,23 @@
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
use App\Models\Artist;
use App\Models\Artwork;
use App\Models\Episode;
use App\Models\Podcast;
use App\Models\Overlay;
class ArtworkFactory extends Factory
{
/**
* The name of the factory's corresponding model
*
* @var string
*/
protected $model = Artwork::class;
/**
* Define the model's default state.
*
@ -14,7 +28,13 @@ class ArtworkFactory extends Factory
public function definition()
{
return [
//
'title' => fake()->name(),
'description' => rand(0, 1) ? fake()->paragraphs(rand((1, 3, true))) : null,
'artist_id' => Artist::factory(),
'podcast_id' => Podcast::factory(),
'episode_id' => Episode::factory(),
'overlay_id' => rand(0, 1) ? Overlay::factory() : null,
'filename' => fake()->imageUrl(3000, 3000),
];
}
}

View File

@ -2,10 +2,21 @@
namespace Database\Factories;
use App\Models\Episode;
use App\Models\Podcast;
use App\Models\Artwork;
use Illuminate\Database\Eloquent\Factories\Factory;
class EpisodeFactory extends Factory
{
/**
* The name of the factory's corresponding model
*
* @var string
*/
protected $model = Episode::class;
/**
* Define the model's default state.
*
@ -14,7 +25,10 @@ class EpisodeFactory extends Factory
public function definition()
{
return [
//
'podcast_id' => Podcast::factory(),
'artwork_id' => Artwork::factory(),
'published' => fake()->boolean(),
'title' => fake()->name()
];
}
}

View File

@ -3,6 +3,10 @@
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
use App\Models\Podcast;
use App\Models\Artist;
class OverlayFactory extends Factory
{
@ -13,8 +17,14 @@ class OverlayFactory extends Factory
*/
public function definition()
{
$name = fake()->name();
$slug = Str::slug($name);
return [
//
'name' => $name,
'artist_id' => Artist::factory(),
'podcast_id' => Podcast::factory(),
'available' => fake()->boolean(),
'filename' => fake()->imageUrl(3000, 3000),
];
}
}

View File

@ -4,6 +4,7 @@
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
use App\Models\Podcast;
class PodcastFactory extends Factory
{
@ -14,12 +15,14 @@ class PodcastFactory extends Factory
*/
public function definition()
{
$name = fake()->name();
$slug = Str::slug($name);
return [
'name' => fake()->name(),
'name' => $name,
'description' => fake()->paragraphs(rand(1,3), true),
'website' => 'https://' . fake()->domainName(),
'feed' => fake()->url(),
'slug' => fake()->slug(),
'feed' => 'podcast/' . $slug,
'slug' => $slug,
'published' => fake()->boolean(),
'added_at' => fake()->dateTimeThisDecade(),
];

View File

@ -4,6 +4,7 @@
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
use Illuminate\Support\Facades\Hash;
class UserFactory extends Factory
{
@ -14,11 +15,12 @@ class UserFactory extends Factory
*/
public function definition()
{
$password = Hash::make(Str::random(rand(8, 16)));
return [
'name' => $this->faker->name(),
'email' => $this->faker->unique()->safeEmail(),
'email_verified_at' => now(),
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
'password' => $password,
'remember_token' => Str::random(10),
];
}

View File

@ -15,7 +15,10 @@ public function up()
{
Schema::create('artists', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->constrained();
$table->foreignIdFor(User::class)
->constrained()
->cascadeOnUpdate()
->cascadeOnDelete();
$table->string('name')->unique();
$table->string('avatar')->nullable();
$table->string('header')->nullable();

1779
site/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,17 @@
"postcss": "^8.4.6",
"sass": "^1.63.6",
"tailwindcss": "^3.1.0",
"vite": "^4.0.0"
"vite": "^4.0.0",
"wolfy87-eventemitter": "4.2.0"
},
"version": "0.0.0"
"version": "0.0.0",
"dependencies": {
"aos": "^3.0.0-beta.6",
"isotope-layout": "^3.0.6",
"jquery": "^3.7.0",
"jquery-nice-select": "^1.1.0",
"js.cookie": "^0.0.4",
"slick-carousel": "^1.8.1",
"waypoints": "^4.0.1"
}
}

View File

@ -1,2 +1,2 @@
User-agent: *
Disallow:
Disallow: /

7038
site/resources/css/style.css Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

1
site/resources/css/vendor/aos.css vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
.nice-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;-webkit-box-sizing:border-box;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:normal;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left !important;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.nice-select:hover{border-color:#dbdbdb}.nice-select:active,.nice-select.open,.nice-select:focus{border-color:#999}.nice-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;-o-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.nice-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.nice-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.nice-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.nice-select.disabled:after{border-color:#ccc}.nice-select.wide{width:100%}.nice-select.wide .list{left:0 !important;right:0 !important}.nice-select.right{float:right}.nice-select.right .list{left:auto;right:0}.nice-select.small{font-size:12px;height:36px;line-height:34px}.nice-select.small:after{height:4px;width:4px}.nice-select.small .option{line-height:34px;min-height:34px}.nice-select .list{background-color:#fff;border-radius:5px;-webkit-box-shadow:0 0 0 1px rgba(68,68,68,0.11);box-shadow:0 0 0 1px rgba(68,68,68,0.11);-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(0.75) translateY(-21px);-ms-transform:scale(0.75) translateY(-21px);transform:scale(0.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(0.5,0,0,1.25),opacity .15s ease-out;-o-transition:all .2s cubic-bezier(0.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(0.5,0,0,1.25),opacity .15s ease-out;z-index:9}.nice-select .list:hover .option:not(:hover){background-color:transparent !important}.nice-select .option{cursor:pointer;font-weight:400;line-height:40px;list-style:none;min-height:40px;outline:0;padding-left:18px;padding-right:29px;text-align:left;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s}.nice-select .option:hover,.nice-select .option.focus,.nice-select .option.selected.focus{background-color:#f6f6f6}.nice-select .option.selected{font-weight:bold}.nice-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .nice-select .list{display:none}.no-csspointerevents .nice-select.open .list{display:block}

View File

@ -0,0 +1 @@
@charset 'UTF-8';.slick-loading .slick-list{background:#fff url('../../img/ajax-loader.gif') center center no-repeat}@font-face{font-family:'slick';font-weight:normal;font-style:normal;src:url('../../fonts/slick.eot');src:url('../../fonts/slick.eot?#iefix') format('embedded-opentype'),url('../../fonts/slick.woff') format('woff'),url('../../fonts/slick.ttf') format('truetype'),url('../../fonts/slick.svg#slick') format('svg')}.slick-prev,.slick-next{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;color:transparent;border:0;outline:0;background:transparent}.slick-prev:hover,.slick-prev:focus,.slick-next:hover,.slick-next:focus{color:transparent;outline:0;background:transparent}.slick-prev:hover:before,.slick-prev:focus:before,.slick-next:hover:before,.slick-next:focus:before{opacity:1}.slick-prev.slick-disabled:before,.slick-next.slick-disabled:before{opacity:.25}.slick-prev:before,.slick-next:before{font-family:'slick';font-size:20px;line-height:1;opacity:.75;color:white;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-prev{left:-25px}[dir='rtl'] .slick-prev{right:-25px;left:auto}.slick-prev:before{content:'←'}[dir='rtl'] .slick-prev:before{content:'→'}.slick-next{right:-25px}[dir='rtl'] .slick-next{right:auto;left:-25px}.slick-next:before{content:'→'}[dir='rtl'] .slick-next:before{content:'←'}.slick-dotted.slick-slider{margin-bottom:30px}.slick-dots{position:absolute;bottom:-25px;display:block;width:100%;padding:0;margin:0;list-style:none;text-align:center}.slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.slick-dots li button{font-size:0;line-height:0;display:block;width:20px;height:20px;padding:5px;cursor:pointer;color:transparent;border:0;outline:0;background:transparent}.slick-dots li button:hover,.slick-dots li button:focus{outline:0}.slick-dots li button:hover:before,.slick-dots li button:focus:before{opacity:1}.slick-dots li button:before{font-family:'slick';font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:'•';text-align:center;opacity:.25;color:black;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-dots li.slick-active button:before{opacity:.75;color:black}

1
site/resources/css/vendor/slick.css vendored Normal file
View File

@ -0,0 +1 @@
.slick-slider{position:relative;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir='rtl'] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,637 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<metadata>
Created by FontForge 20170731 at Mon Oct 10 10:26:50 2005
By Aleksey,,,
HTF Gotham Copr. 2003 The Hoefler Type Foundry, Inc. Info: www.typography.com
</metadata>
<defs>
<font id="GothamUltra-Italic" horiz-adv-x="500" >
<font-face
font-family="Gotham Ultra"
font-weight="900"
font-style="italic"
font-stretch="normal"
units-per-em="1000"
panose-1="2 0 6 3 4 0 0 9 0 4"
ascent="800"
descent="-200"
x-height="546"
cap-height="700"
bbox="-154 -173 1375 935"
underline-thickness="20"
underline-position="-153"
slope="-12"
unicode-range="U+0020-FB02"
/>
<missing-glyph
/>
<glyph glyph-name="fi" unicode="fi" horiz-adv-x="725"
d="M534 546h227l-146 -546h-227zM103 371h-64l47 175h64q28 105 86.5 148t158.5 43q38 0 70.5 -4.5t67.5 -15.5l-38 -141q-15 5 -31.5 8t-30.5 3q-28 0 -41.5 -10t-19.5 -33l-1 -4h115l-45 -169h-111l-99 -371h-227zM580 730h235l-39 -145h-235z" />
<glyph glyph-name="fl" unicode="fl" horiz-adv-x="725"
d="M584 730h227l-196 -730h-227zM103 371h-64l47 175h64q28 105 86.5 148t158.5 43q38 0 70.5 -4.5t67.5 -15.5l-38 -141q-15 5 -31.5 8t-30.5 3q-28 0 -41.5 -10t-19.5 -33l-1 -4h115l-45 -169h-111l-99 -371h-227z" />
<glyph glyph-name=".notdef"
/>
<glyph glyph-name=".null" horiz-adv-x="0"
/>
<glyph glyph-name="nonmarkingreturn" horiz-adv-x="254"
/>
<glyph glyph-name="space" unicode=" " horiz-adv-x="254"
/>
<glyph glyph-name="exclam" unicode="!" horiz-adv-x="320"
d="M19 180h232l-48 -180h-232zM107 550l41 150h254l-41 -150l-159 -332h-114z" />
<glyph glyph-name="quotedbl" unicode="&#x22;" horiz-adv-x="551"
d="M142 700h237v-5l-222 -394h-122zM419 700h237v-5l-222 -394h-122z" />
<glyph glyph-name="numbersign" unicode="#" horiz-adv-x="702"
d="M418 305l33 94h-125l-33 -94h125zM79 120h-83l38 193h113l28 78h-96l38 193h126l41 116h157l-41 -116h109l41 116h157l-41 -116h82l-38 -193h-112l-28 -78h95l-38 -193h-125l-43 -120h-157l43 120h-110l-42 -120h-157z" />
<glyph glyph-name="dollar" unicode="$" horiz-adv-x="676"
d="M365 171q38 -1 56 10.5t18 31.5q0 13 -9 22.5t-41 19.5zM382 530q-38 3 -56.5 -8t-18.5 -29q0 -16 12 -24.5t41 -16.5zM222 9q-77 13 -142 41t-113 65l120 148q50 -33 95.5 -53t93.5 -28l27 89q-109 30 -163 73.5t-54 121.5q0 48 21.5 90.5t63 74.5t102.5 50.5t140 18.5
h11l16 58h104l-19 -68q62 -12 112.5 -34t88.5 -50l-110 -158q-26 20 -63 38t-83 29l-24 -82q50 -15 89.5 -32t66.5 -39.5t41.5 -52.5t14.5 -70q0 -52 -22.5 -96t-64.5 -75.5t-102.5 -49.5t-136.5 -18h-9l-27 -98h-104z" />
<glyph glyph-name="percent" unicode="%" horiz-adv-x="966"
d="M725 110q16 0 29.5 8.5t23.5 22t15 31t5 36.5q0 23 -13.5 39.5t-36.5 16.5q-17 0 -30 -8.5t-23 -22t-15 -31t-5 -36.5q0 -23 13.5 -39.5t36.5 -16.5zM259 436q16 0 29.5 8.5t23.5 22t15 31t5 36.5q0 23 -13.5 39.5t-36.5 16.5q-17 0 -30 -8.5t-23 -22t-15 -31t-5 -36.5
q0 -23 13.5 -39.5t36.5 -16.5zM721 -11q-45 0 -78.5 13t-56 36.5t-34 54.5t-11.5 67q0 42 15 82.5t43 72t66.5 51t86.5 19.5q45 0 78.5 -13t56 -36.5t34 -54.5t11.5 -67q0 -42 -15 -82.5t-43 -72t-66.5 -51t-86.5 -19.5zM781 700h151l-706 -700h-151zM255 315
q-45 0 -78.5 13t-56 36.5t-34 54.5t-11.5 67q0 42 15 82.5t43 72t66.5 51t86.5 19.5q45 0 78.5 -13t56 -36.5t34 -54.5t11.5 -67q0 -42 -15 -82.5t-43 -72t-66.5 -51t-86.5 -19.5z" />
<glyph glyph-name="ampersand" unicode="&#x26;" horiz-adv-x="703"
d="M294 150q36 0 78 23l-83 122q-30 -14 -48 -35t-18 -53q0 -26 19.5 -41.5t51.5 -15.5zM378 447q32 14 52.5 32t20.5 45q0 23 -12 34.5t-30 11.5q-21 0 -34.5 -16.5t-13.5 -42.5q0 -32 17 -64zM477 47q-50 -29 -104.5 -44t-110.5 -15q-125 0 -192 53.5t-67 144.5
q0 48 17.5 85t46.5 64t65.5 45.5t75.5 31.5q-27 55 -27 110q0 41 16 76t45 61t69.5 40.5t90.5 14.5q49 0 89.5 -14t70 -39t45.5 -59t16 -74q0 -39 -13 -69t-35 -53t-50 -39.5t-59 -28.5l44 -61q14 17 29 34.5t30 37.5l132 -92q-20 -30 -41 -56t-45 -51l45 -63l-142 -101z
" />
<glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="279"
d="M142 700h242v-5l-222 -394h-127z" />
<glyph glyph-name="parenleft" unicode="(" horiz-adv-x="465"
d="M242 -143q-100 72 -155 161t-55 206q0 97 34.5 177t93.5 142t136.5 104.5t163.5 65.5l57 -145q-72 -30 -123.5 -69.5t-84.5 -83.5t-48.5 -91.5t-15.5 -93.5q0 -33 6.5 -63t20.5 -60t36.5 -61t54.5 -66z" />
<glyph glyph-name="parenright" unicode=")" horiz-adv-x="465"
d="M-46 4q72 30 123.5 69.5t84.5 83.5t48.5 91.5t15.5 93.5q0 33 -6.5 63t-20.5 60t-36.5 61t-54.5 66l121 123q100 -72 155 -161t55 -206q0 -97 -34.5 -177t-93.5 -142t-136.5 -105t-163.5 -65z" />
<glyph glyph-name="asterisk" unicode="*" horiz-adv-x="441"
d="M168 324l70 131l-131 -71l-35 127l149 4l-127 79l94 91l78 -126l4 148l124 -33l-70 -131l131 71l35 -127l-149 -4l127 -79l-94 -91l-78 126l-4 -148z" />
<glyph glyph-name="plus" unicode="+" horiz-adv-x="650"
d="M217 253h-156l53 198h156l44 164h206l-44 -164h156l-53 -198h-156l-44 -164h-206z" />
<glyph glyph-name="comma" unicode="," horiz-adv-x="285"
d="M-86 -85q110 13 131 89h-91l62 230h232l-54 -202q-13 -46 -32.5 -82t-51 -61t-77.5 -39.5t-113 -17.5z" />
<glyph glyph-name="hyphen" unicode="-" horiz-adv-x="422"
d="M73 408h348l-50 -186h-348z" />
<glyph glyph-name="hyphen" unicode="&#xad;" horiz-adv-x="422"
d="M73 408h348l-50 -186h-348z" />
<glyph glyph-name="period" unicode="." horiz-adv-x="285"
d="M15 230h232l-62 -230h-232z" />
<glyph glyph-name="slash" unicode="/" horiz-adv-x="540"
d="M529 798h187l-683 -926h-187z" />
<glyph glyph-name="zero" unicode="0" horiz-adv-x="722"
d="M347 187q34 0 60.5 22t45 56t28 74.5t9.5 77.5q0 50 -21.5 72.5t-52.5 22.5q-34 0 -60.5 -22t-45 -56t-28 -74.5t-9.5 -77.5q0 -50 21.5 -72.5t52.5 -22.5zM326 -16q-69 0 -123 22.5t-90.5 60.5t-55.5 88t-19 106q0 90 29.5 172t83 145t126.5 100t160 37q69 0 123 -22.5
t90.5 -60.5t55.5 -88.5t19 -105.5q0 -90 -29.5 -172t-83 -145t-126.5 -100t-160 -37z" />
<glyph glyph-name="one" unicode="1" horiz-adv-x="426"
d="M205 493l-107 -27l-6 182l224 57h176l-189 -705h-230z" />
<glyph glyph-name="two" unicode="2" horiz-adv-x="640"
d="M12 174l358 220q21 13 33 23.5t18 20t8 18t2 16.5q0 19 -11.5 31t-37.5 12q-30 0 -70.5 -24t-80.5 -63l-132 139q29 31 62 58t71.5 46t82.5 30t96 11q60 0 106.5 -15.5t79 -43t49.5 -65.5t17 -83q0 -32 -9 -63t-32 -62t-62 -62.5t-99 -64.5l-127 -70h264l-49 -183h-584z
" />
<glyph glyph-name="three" unicode="3" horiz-adv-x="617"
d="M270 -15q-95 0 -171.5 33.5t-129.5 102.5l149 133q29 -37 65 -56.5t80 -19.5q48 0 75.5 21t27.5 47q0 21 -17.5 33.5t-65.5 12.5h-89l-3 104l187 122h-260l49 182h538l-44 -161l-203 -127q67 -20 101.5 -64.5t34.5 -101.5q0 -62 -23 -110t-65.5 -82t-102.5 -51.5
t-133 -17.5z" />
<glyph glyph-name="four" unicode="4" horiz-adv-x="698"
d="M387 283l47 176l-199 -176h152zM343 121h-317l-27 170l468 414h260l-112 -419h84l-45 -165h-83l-33 -121h-227z" />
<glyph glyph-name="five" unicode="5" horiz-adv-x="614"
d="M272 -14q-49 0 -94.5 10.5t-85 27.5t-72 39t-55.5 45l136 137q38 -35 78.5 -53t90.5 -18t77 23t27 58q0 26 -19.5 43.5t-60.5 17.5q-29 0 -54.5 -9.5t-48.5 -26.5l-119 74l112 346h500l-50 -185h-326l-24 -74q50 19 107 19q49 0 88.5 -13t67.5 -38t43 -60t15 -78
q0 -63 -24 -115.5t-67.5 -90t-105 -58.5t-136.5 -21z" />
<glyph glyph-name="six" unicode="6" horiz-adv-x="664"
d="M320 150q19 0 35.5 8.5t28.5 22.5t18.5 32t6.5 38q0 27 -18 45.5t-47 18.5q-20 0 -36 -8.5t-28 -22.5t-18.5 -32.5t-6.5 -37.5q0 -28 17 -45q8 -8 20.5 -13.5t27.5 -5.5zM321 -14q-66 0 -119.5 20t-89.5 56q-35 35 -54 83t-19 105q0 45 8.5 91.5t26 91.5t43 86.5
t60.5 76.5q53 53 125.5 85.5t169.5 32.5q72 0 131.5 -18.5t103.5 -53.5l-104 -161q-27 23 -63.5 38.5t-70.5 15.5q-40 0 -75.5 -15t-61.5 -41q-30 -30 -46 -70q30 23 69.5 37t89.5 14q38 0 72 -12.5t60 -36t41.5 -58t15.5 -77.5q0 -62 -24.5 -115t-67.5 -92t-100 -61
t-121 -22z" />
<glyph glyph-name="seven" unicode="7" horiz-adv-x="618"
d="M393 507h-310l52 193h574l-48 -176l-415 -524h-263z" />
<glyph glyph-name="eight" unicode="8" horiz-adv-x="666"
d="M324 151q33 0 58.5 21t25.5 54q0 16 -7 28.5t-17.5 20.5t-23.5 12t-26 4q-33 0 -59 -21t-26 -54q0 -17 7 -29t18 -20t24 -12t26 -4zM381 417q32 0 56.5 20t24.5 52q0 16 -6.5 27.5t-17 19t-23 11.5t-24.5 4q-32 0 -56 -20t-24 -52q0 -16 6.5 -27.5t16.5 -19t22.5 -11.5
t24.5 -4zM310 -10q-60 0 -113.5 13.5t-93.5 38.5t-63.5 61t-23.5 81q0 69 41.5 118t121.5 72q-32 23 -49.5 55t-17.5 73q0 39 19 76.5t56.5 67t92.5 47t127 17.5q62 0 111.5 -15.5t84.5 -41.5t54 -61t19 -75q0 -63 -39 -106t-108 -65q46 -21 72.5 -55t26.5 -85
q0 -48 -23.5 -88t-65.5 -68.5t-100.5 -44t-128.5 -15.5z" />
<glyph glyph-name="nine" unicode="9" horiz-adv-x="664"
d="M361 386q19 0 35.5 8.5t28.5 22.5t18.5 32t6.5 38q0 28 -17 45q-8 8 -20.5 13.5t-27.5 5.5q-20 0 -36 -8.5t-28 -22.5t-18.5 -32.5t-6.5 -37.5q0 -27 18 -45.5t47 -18.5zM233 -13q-72 0 -131.5 18.5t-103.5 53.5l104 161q27 -23 63.5 -38.5t70.5 -15.5q40 0 75.5 15
t61.5 41q29 29 46 70q-30 -23 -69.5 -37t-89.5 -14q-38 0 -72 12.5t-60 36t-41.5 57.5t-15.5 78q0 62 24.5 115t67.5 92t99.5 61t121.5 22q66 0 119.5 -20t89.5 -56q35 -35 54 -83t19 -105q0 -45 -8.5 -92t-26 -92t-43.5 -86.5t-60 -75.5q-53 -53 -125.5 -85.5t-169.5 -32.5
z" />
<glyph glyph-name="colon" unicode=":" horiz-adv-x="295"
d="M20 230h232l-62 -230h-232zM104 546h232l-62 -230h-232z" />
<glyph glyph-name="semicolon" unicode=";" horiz-adv-x="295"
d="M-82 -89q110 13 131 89h-91l62 230h232l-54 -202q-13 -46 -32.5 -82t-51 -61t-77.5 -39.5t-113 -17.5zM104 546h232l-62 -230h-232z" />
<glyph glyph-name="semicolon" unicode="&#x37e;" horiz-adv-x="295"
d="M-82 -89q110 13 131 89h-91l62 230h232l-54 -202q-13 -46 -32.5 -82t-51 -61t-77.5 -39.5t-113 -17.5zM104 546h232l-62 -230h-232z" />
<glyph glyph-name="less" unicode="&#x3c;" horiz-adv-x="648"
d="M65 244l58 214l559 184l-60 -221l-337 -80l295 -80l-54 -201z" />
<glyph glyph-name="equal" unicode="=" horiz-adv-x="638"
d="M75 311h508l-52 -196h-508zM150 589h508l-53 -196h-508z" />
<glyph glyph-name="greater" unicode="&#x3e;" horiz-adv-x="648"
d="M68 281l337 80l-295 80l54 201l461 -184l-58 -214l-559 -184z" />
<glyph glyph-name="question" unicode="?" horiz-adv-x="537"
d="M97 180h232l-49 -180h-232zM175 392l13 11q163 16 163 73q0 17 -12 27t-38 10q-27 0 -58 -10.5t-70 -38.5l-76 169q51 37 114 57.5t135 20.5q52 0 94.5 -13.5t72.5 -37.5t46.5 -58t16.5 -74q0 -41 -13.5 -78t-43 -67.5t-76.5 -52.5t-114 -33l-31 -79h-138z" />
<glyph glyph-name="at" unicode="@" horiz-adv-x="950"
d="M459 216q18 0 32.5 7.5t25.5 21t17 31t6 37.5q0 24 -15.5 39t-38.5 15q-36 0 -58.5 -29t-22.5 -68q0 -24 15 -39t39 -15zM454 -154q-93 0 -169 28t-130.5 79t-84.5 122.5t-30 158.5q0 98 37 185.5t103 153t156.5 104t196.5 38.5q96 0 170 -26t125 -72t77.5 -108.5
t26.5 -135.5q0 -86 -22.5 -147t-58 -100.5t-80 -58t-89.5 -18.5q-60 0 -101.5 25.5t-63.5 62.5q-27 -32 -65.5 -57.5t-92.5 -25.5q-31 0 -58 12.5t-47.5 35.5t-32 55t-11.5 72q0 63 18.5 117.5t50.5 95t75.5 64t93.5 23.5q49 0 79.5 -22.5t46.5 -51.5l24 72l181 -50
l-81 -257q-13 -41 0.5 -67t57.5 -26q21 0 45 16.5t44 48t33 78.5t13 108q0 63 -23.5 117t-69.5 94t-112.5 63t-152.5 23q-98 0 -181 -35.5t-143 -95.5t-94 -140t-34 -170q0 -79 27 -143t76 -109.5t118 -70.5t153 -25q56 0 103.5 10.5t101.5 33.5l16 -37q-55 -25 -108 -36
t-114 -11z" />
<glyph glyph-name="A" unicode="A" horiz-adv-x="784"
d="M458 260l-19 170l-109 -170h128zM394 705h232l106 -705h-249l-12 94h-245l-61 -94h-255z" />
<glyph glyph-name="B" unicode="B" horiz-adv-x="712"
d="M353 177q43 0 67 17t24 43q0 44 -75 44h-101l-28 -104h113zM415 425q45 0 66 17t21 40q0 22 -17 31.5t-55 9.5h-97l-26 -98h108zM153 700h310q81 0 132.5 -13.5t81.5 -36.5t41.5 -53t11.5 -62q0 -64 -41.5 -113.5t-122.5 -70.5q50 -13 82 -48.5t32 -89.5q0 -44 -18.5 -83
t-58.5 -68t-103.5 -45.5t-153.5 -16.5h-381z" />
<glyph glyph-name="C" unicode="C" horiz-adv-x="727"
d="M367 -15q-74 0 -135 21.5t-104.5 61.5t-68 96.5t-24.5 127.5q0 72 27.5 147t83.5 136.5t140.5 100.5t197.5 39q57 0 104.5 -14.5t84.5 -41t62 -64.5t36 -84l-209 -91q-11 43 -40 64t-69 21q-39 0 -71 -16.5t-54.5 -43.5t-35 -61.5t-12.5 -70.5q0 -58 31.5 -89t78.5 -31
q41 0 74 19t62 54l162 -128q-53 -69 -131 -111t-190 -42z" />
<glyph glyph-name="D" unicode="D" horiz-adv-x="746"
d="M295 204q54 0 97.5 15t70.5 42q22 22 36 54.5t14 64.5q0 29 -7.5 48t-21.5 33q-17 17 -44 26t-69 9h-39l-78 -292h41zM153 700h248q102 0 168 -25t106 -65q76 -76 76 -205q0 -79 -29 -149t-86 -127q-63 -63 -154 -96t-213 -33h-304z" />
<glyph glyph-name="E" unicode="E" horiz-adv-x="673"
d="M153 700h597l-52 -192h-367l-19 -71h342l-45 -169h-342l-21 -76h372l-51 -192h-602z" />
<glyph glyph-name="F" unicode="F" horiz-adv-x="641"
d="M153 700h586l-54 -200h-352l-24 -89h327l-49 -182h-327l-61 -229h-234z" />
<glyph glyph-name="G" unicode="G" horiz-adv-x="744"
d="M380 -15q-65 0 -127.5 18t-111 55.5t-78 96.5t-29.5 142q0 86 32.5 162t92.5 133t145.5 90t191.5 33q49 0 94.5 -10t83.5 -26t67.5 -37t47.5 -43l-146 -150q-30 28 -72.5 45.5t-89.5 17.5q-50 0 -89.5 -16t-66.5 -43.5t-41.5 -65t-14.5 -79.5q0 -33 11 -57t29.5 -40.5
t43.5 -24.5t52 -8q36 0 61 11l23 75h-115l38 150h337l-100 -357q-52 -31 -122.5 -51.5t-146.5 -20.5z" />
<glyph glyph-name="H" unicode="H" horiz-adv-x="758"
d="M153 700h234l-67 -247h214l67 247h234l-188 -700h-234l67 251h-214l-67 -251h-234z" />
<glyph glyph-name="I" unicode="I" horiz-adv-x="314"
d="M155 700h234l-188 -700h-234z" />
<glyph glyph-name="J" unicode="J" horiz-adv-x="562"
d="M205 -14q-80 0 -145 34t-102 94l154 135q24 -37 47.5 -51.5t50.5 -14.5q14 0 28.5 5.5t27.5 18.5t23.5 34.5t21.5 62.5l107 396h228l-116 -433q-19 -69 -44.5 -118.5t-60.5 -84.5q-36 -36 -90.5 -57t-129.5 -21z" />
<glyph glyph-name="K" unicode="K" horiz-adv-x="718"
d="M153 700h234l-68 -251l233 251h285l-319 -320l146 -380h-249l-84 225l-98 -98l-34 -127h-234z" />
<glyph glyph-name="L" unicode="L" horiz-adv-x="609"
d="M153 700h234l-134 -500h319l-54 -200h-553z" />
<glyph glyph-name="M" unicode="M" horiz-adv-x="864"
d="M153 700h231l84 -246l216 246h257l-188 -700h-233l93 347l-228 -249h-4l-94 249l-93 -347h-229z" />
<glyph glyph-name="N" unicode="N" horiz-adv-x="776"
d="M153 700h219l159 -334l90 334h232l-188 -700h-208l-166 348l-94 -348h-232z" />
<glyph glyph-name="O" unicode="O" horiz-adv-x="795"
d="M402 192q37 0 66.5 16.5t50.5 42.5t32.5 59t11.5 66q0 28 -8.5 52t-24.5 42t-40.5 28t-55.5 10q-37 0 -66.5 -16.5t-50.5 -42.5t-32.5 -59t-11.5 -66q0 -28 8.5 -52t24.5 -42t40 -28t56 -10zM386 -14q-77 0 -141 24.5t-110 67t-71.5 100.5t-25.5 125q0 81 31.5 155.5
t86.5 131.5t130.5 90.5t163.5 33.5q77 0 141 -24.5t110 -67t71.5 -100.5t25.5 -125q0 -81 -31.5 -155.5t-86.5 -131.5t-130.5 -90.5t-163.5 -33.5z" />
<glyph glyph-name="P" unicode="P" horiz-adv-x="665"
d="M337 357q67 0 98.5 26.5t31.5 66.5q0 24 -17 41q-12 12 -31 17t-39 5h-44l-41 -156h42zM153 700h235q97 0 159 -19t101 -58q28 -28 41.5 -63.5t13.5 -77.5q0 -66 -24 -119.5t-69.5 -92t-111.5 -59.5t-149 -21h-99l-51 -190h-234z" />
<glyph glyph-name="Q" unicode="Q" horiz-adv-x="795"
d="M400 184h12l-64 86l150 98l50 -74q15 37 15 78q0 59 -33 97.5t-96 38.5q-38 0 -68 -16.5t-51 -43t-32.5 -60.5t-11.5 -68q0 -59 33 -97.5t96 -38.5zM544 19q-37 -16 -76.5 -24.5t-81.5 -8.5q-77 0 -141 24.5t-110 67t-71.5 100.5t-25.5 125q0 81 31.5 155.5t86.5 131.5
t130.5 90.5t163.5 33.5q77 0 141 -24.5t110 -67t71.5 -100.5t25.5 -125q0 -77 -29.5 -148t-81.5 -128l51 -69l-150 -98z" />
<glyph glyph-name="R" unicode="R" horiz-adv-x="713"
d="M382 367q59 0 89 23.5t30 56.5q0 22 -15 37q-20 20 -69 20h-83l-37 -137h85zM153 700h273q97 0 160 -20t98 -55q29 -29 42 -66.5t13 -79.5q0 -41 -11 -78.5t-34.5 -69.5t-60.5 -57t-89 -41l97 -233h-252l-78 200h-58l-54 -200h-234z" />
<glyph glyph-name="S" unicode="S" horiz-adv-x="653"
d="M309 -14q-105 0 -193 34.5t-152 92.5l134 160q60 -51 120 -75t116 -24q23 0 37 8t14 23q0 8 -3.5 14.5t-15.5 13t-35 16t-61 23.5q-49 18 -85 36.5t-59.5 41.5t-35 51.5t-11.5 67.5q0 51 22.5 95.5t63.5 77.5t99 52.5t130 19.5q94 0 174.5 -28t137.5 -77l-134 -160
q-40 32 -93 55t-109 23q-23 0 -37 -6.5t-14 -21.5q0 -8 4 -13.5t16 -11.5t34 -14.5t58 -21.5q45 -17 81 -35t61.5 -41.5t39 -54t13.5 -70.5q0 -53 -21.5 -99t-62 -79.5t-99.5 -53t-134 -19.5z" />
<glyph glyph-name="T" unicode="T" horiz-adv-x="670"
d="M279 502h-206l53 198h646l-53 -198h-206l-135 -502h-234z" />
<glyph glyph-name="U" unicode="U" horiz-adv-x="756"
d="M341 -14q-149 0 -226 66.5t-77 185.5q0 56 15 113l94 349h238l-98 -364q-8 -32 -8 -55q0 -44 24.5 -66t71.5 -22q46 0 75 29q16 16 27.5 38.5t22.5 63.5l101 376h238l-111 -412q-37 -137 -110 -210q-50 -50 -121.5 -71t-155.5 -21z" />
<glyph glyph-name="V" unicode="V" horiz-adv-x="754"
d="M94 700h257l30 -393l242 393h263l-473 -705h-224z" />
<glyph glyph-name="W" unicode="W" horiz-adv-x="1096"
d="M105 700h240l9 -336l203 338h202l23 -338l189 336h246l-418 -705h-204l-30 348l-216 -348h-204z" />
<glyph glyph-name="X" unicode="X" horiz-adv-x="725"
d="M246 368l-141 332h253l65 -170l151 170h271l-320 -342l153 -358h-253l-75 198l-177 -198h-271z" />
<glyph glyph-name="Y" unicode="Y" horiz-adv-x="704"
d="M221 267l-137 433h246l57 -234l182 234h277l-398 -462l-64 -238h-234z" />
<glyph glyph-name="Z" unicode="Z" horiz-adv-x="673"
d="M-9 164l399 344h-295l52 192h621l-44 -164l-400 -344h307l-51 -192h-633z" />
<glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="471"
d="M181 700h368l-38 -139h-175l-148 -552h175l-37 -139h-368z" />
<glyph glyph-name="backslash" unicode="\" horiz-adv-x="540"
d="M101 798h179l205 -926h-179z" />
<glyph glyph-name="bracketright" unicode="]" horiz-adv-x="471"
d="M-34 9h175l148 552h-175l37 139h368l-223 -830h-368z" />
<glyph glyph-name="asciicircum" unicode="^"
d="M288 698h152l85 -205h-146l-40 77l-82 -77h-164z" />
<glyph glyph-name="underscore" unicode="_" horiz-adv-x="600"
d="M-87 -44h604l-31 -116h-604z" />
<glyph glyph-name="grave" unicode="`"
d="M193 715l224 57l44 -192h-140z" />
<glyph glyph-name="a" unicode="a" horiz-adv-x="605"
d="M251 117q27 0 52.5 25t35.5 63l6 23q-11 3 -21 4.5t-21 1.5q-43 0 -66 -19.5t-23 -54.5q0 -21 10.5 -32t26.5 -11zM141 -12q-63 0 -104.5 39t-41.5 110q0 87 64 138.5t180 51.5q62 0 124 -18l2 6q2 5 3 12.5t1 14.5q0 53 -84 53q-38 0 -79.5 -6.5t-69.5 -17.5l-30 154
q45 14 105 21.5t120 7.5q136 0 200.5 -48t64.5 -130q0 -37 -10 -76l-80 -300h-227l15 55q-37 -31 -71.5 -49t-81.5 -18z" />
<glyph glyph-name="b" unicode="b" horiz-adv-x="671"
d="M322 173q23 0 42.5 10t34 27.5t22.5 39.5t8 46q0 35 -20.5 56.5t-52.5 21.5q-23 0 -43 -10t-34 -27.5t-22 -39.5t-8 -46q0 -35 20.5 -56.5t52.5 -21.5zM368 -13q-59 0 -98 23.5t-62 59.5l-19 -70h-227l195 730h227l-64 -240q29 30 70.5 49.5t85.5 19.5q36 0 68.5 -14.5
t57 -41.5t39 -66.5t14.5 -90.5q0 -75 -22.5 -140t-61 -114t-91 -77t-112.5 -28z" />
<glyph glyph-name="c" unicode="c" horiz-adv-x="565"
d="M270 -14q-55 0 -101.5 15.5t-81 45.5t-54 73.5t-19.5 98.5q0 70 26 132t71 108t106 72.5t132 26.5q49 0 89.5 -13.5t71 -37.5t50 -56.5t27.5 -70.5l-180 -72q-15 66 -70 66q-24 0 -44 -12t-34 -31.5t-21.5 -43.5t-7.5 -49q0 -31 17.5 -49t44.5 -18q24 0 43.5 11.5
t39.5 34.5l153 -102q-41 -59 -102.5 -94t-155.5 -35z" />
<glyph glyph-name="d" unicode="d" horiz-adv-x="671"
d="M315 172q23 0 42.5 10t34 27.5t22.5 39.5t8 46q0 35 -20.5 56.5t-52.5 21.5q-23 0 -43 -10t-34 -27.5t-22 -39.5t-8 -46q0 -35 20.5 -56.5t52.5 -21.5zM195 -13q-36 0 -68.5 14.5t-57 41.5t-39 66.5t-14.5 90.5q0 75 22.5 140t61 114t91 77t112.5 28q59 0 98 -23.5
t62 -59.5l68 254h227l-195 -730h-227l15 56q-29 -30 -70.5 -49.5t-85.5 -19.5z" />
<glyph glyph-name="e" unicode="e" horiz-adv-x="596"
d="M389 320q4 11 4 24q0 23 -15.5 40.5t-43.5 17.5q-26 0 -54.5 -18t-44.5 -64h154zM221 220q2 -33 23 -53t59 -20q28 0 54.5 11t55.5 33l105 -115q-47 -42 -104.5 -65.5t-129.5 -23.5q-62 0 -112 17.5t-84.5 49t-53 75.5t-18.5 98q0 62 22.5 122t65.5 106.5t104.5 75
t139.5 28.5q67 0 113 -21t74.5 -54.5t40.5 -76t12 -85.5q0 -27 -4 -53t-12 -49h-351z" />
<glyph glyph-name="f" unicode="f" horiz-adv-x="424"
d="M103 371h-64l47 175h64q28 105 86.5 148t158.5 43q38 0 70.5 -4.5t67.5 -15.5l-38 -141q-15 5 -31.5 8t-30.5 3q-28 0 -41.5 -10t-19.5 -33l-1 -4h115l-45 -169h-111l-99 -371h-227z" />
<glyph glyph-name="g" unicode="g" horiz-adv-x="665"
d="M318 204q23 0 41.5 9.5t31 24.5t19.5 34.5t7 39.5q0 29 -20 51t-55 22q-23 0 -41.5 -9t-31 -24.5t-19.5 -35t-7 -40.5q0 -29 20 -50.5t55 -21.5zM226 -162q-38 0 -77.5 5.5t-77 15.5t-71.5 23.5t-60 29.5l90 132q49 -28 99 -40.5t91 -12.5q38 0 63.5 9t45.5 29
q27 27 40 77l2 8q-31 -29 -70.5 -45.5t-90.5 -16.5q-35 0 -68 12t-59.5 36t-42.5 59t-16 80q0 59 18.5 116t53.5 102t86 73t116 28q55 0 98 -24t67 -59l19 71h227l-115 -429q-17 -65 -40.5 -112.5t-58.5 -82.5q-44 -44 -108 -64t-161 -20z" />
<glyph glyph-name="h" unicode="h" horiz-adv-x="641"
d="M158 730h227l-68 -252q27 33 69.5 57t93.5 24q75 0 115.5 -45t40.5 -122q0 -44 -13 -92l-80 -300h-227l73 272q3 11 4.5 22t1.5 19q0 22 -11.5 35t-36.5 13q-34 0 -53.5 -22t-31.5 -67l-73 -272h-227z" />
<glyph glyph-name="i" unicode="i" horiz-adv-x="301"
d="M110 546h227l-146 -546h-227zM156 730h235l-39 -145h-235z" />
<glyph glyph-name="j" unicode="j" horiz-adv-x="304"
d="M-60 -163q-22 0 -39 1.5t-40 5.5l35 131h10q17 0 28.5 3.5t20 12.5t15 25t13.5 42l130 488h227l-139 -518q-16 -57 -38 -93.5t-53 -58.5t-73 -30.5t-97 -8.5zM159 730h235l-39 -145h-235z" />
<glyph glyph-name="k" unicode="k" horiz-adv-x="607"
d="M158 730h227l-91 -337l146 153h259l-239 -234l96 -312h-236l-41 158l-65 -65l-25 -93h-227z" />
<glyph glyph-name="l" unicode="l" horiz-adv-x="301"
d="M160 730h227l-196 -730h-227z" />
<glyph glyph-name="m" unicode="m" horiz-adv-x="987"
d="M108 546h227l-17 -64q27 31 68 54t92 23q57 0 91.5 -25.5t49.5 -64.5q42 44 92 67t108 23q83 0 123.5 -45t40.5 -120q0 -43 -14 -94l-80 -300h-227l73 272q3 11 4.5 22t1.5 19q0 22 -10.5 35t-35.5 13q-59 0 -83 -89l-73 -272h-227l73 272q3 11 4.5 22t1.5 19
q0 22 -10.5 35t-35.5 13q-59 0 -83 -89l-73 -272h-227z" />
<glyph glyph-name="n" unicode="n" horiz-adv-x="641"
d="M108 546h227l-18 -68q27 33 69.5 57t93.5 24q75 0 115.5 -45t40.5 -122q0 -44 -13 -92l-80 -300h-227l73 272q3 11 4.5 22t1.5 19q0 22 -11.5 35t-36.5 13q-34 0 -53.5 -22t-31.5 -67l-73 -272h-227z" />
<glyph glyph-name="o" unicode="o" horiz-adv-x="636"
d="M305 172q21 0 39.5 10t31.5 27t20.5 39.5t7.5 46.5q0 35 -20 57t-53 22q-21 0 -39.5 -10t-31.5 -27t-20.5 -39.5t-7.5 -46.5q0 -35 20 -57t53 -22zM291 -13q-65 0 -115.5 19.5t-85.5 54t-53.5 81t-18.5 99.5q0 63 24.5 120.5t68 101.5t103.5 70t131 26q64 0 115 -19.5
t86 -54t53.5 -81t18.5 -99.5q0 -63 -24.5 -120.5t-68 -101.5t-103.5 -70t-131 -26z" />
<glyph glyph-name="p" unicode="p" horiz-adv-x="671"
d="M322 173q23 0 42.5 10t34 27.5t22.5 39.5t8 46q0 35 -20.5 56.5t-52.5 21.5q-23 0 -43 -10t-34 -27.5t-22 -39.5t-8 -46q0 -35 20.5 -56.5t52.5 -21.5zM108 546h227l-15 -56q29 30 70.5 49.5t85.5 19.5q36 0 68.5 -14.5t57 -41.5t39 -66.5t14.5 -90.5q0 -75 -22.5 -140
t-61 -114t-91 -77t-112.5 -28q-59 0 -98 23.5t-62 59.5l-62 -230h-227z" />
<glyph glyph-name="q" unicode="q" horiz-adv-x="671"
d="M315 172q23 0 42.5 10t34 27.5t22.5 39.5t8 46q0 35 -20.5 56.5t-52.5 21.5q-23 0 -43 -10t-34 -27.5t-22 -39.5t-8 -46q0 -35 20.5 -56.5t52.5 -21.5zM351 56q-29 -30 -70.5 -49.5t-85.5 -19.5q-36 0 -68.5 14.5t-57 41.5t-39 66.5t-14.5 90.5q0 75 22.5 140t61 114
t91 77t112.5 28q59 0 98 -23.5t62 -59.5l19 70h227l-189 -706h-227z" />
<glyph glyph-name="r" unicode="r" horiz-adv-x="441"
d="M108 546h227l-29 -110q38 56 87 88.5t115 29.5l-64 -241h-24q-81 0 -126.5 -43t-68.5 -134l-36 -136h-227z" />
<glyph glyph-name="s" unicode="s" horiz-adv-x="522"
d="M242 -13q-94 0 -167.5 26.5t-124.5 64.5l100 130q18 -15 42.5 -28t50.5 -23.5t53 -16.5t50 -6q17 0 24.5 5.5t7.5 13.5q0 7 -3.5 12.5t-13.5 11t-26.5 12.5t-41.5 16q-33 12 -60.5 26t-47 32.5t-30.5 43t-11 56.5q0 41 17 76.5t49.5 62t80 42t109.5 15.5
q83 0 149.5 -21.5t108.5 -53.5l-100 -130q-16 11 -36 21.5t-42.5 18.5t-45 13t-42.5 5q-36 0 -36 -18q0 -6 3 -10t11.5 -9t24 -11t40.5 -15q33 -12 61 -25.5t49 -32.5t33 -45t12 -62q0 -34 -13 -69t-42 -63.5t-76.5 -46.5t-116.5 -18z" />
<glyph glyph-name="t" unicode="t" horiz-adv-x="444"
d="M235 -12q-190 0 -190 149q0 32 11 76l42 158h-64l47 175h64l37 137h227l-37 -137h126l-47 -175h-126l-31 -117q-7 -25 -7 -42q0 -35 46 -35q14 0 28 2.5t38 9.5l-49 -185q-29 -8 -57.5 -12t-57.5 -4z" />
<glyph glyph-name="u" unicode="u" horiz-adv-x="641"
d="M167 -13q-75 0 -115.5 45t-40.5 122q0 44 13 92l80 300h227l-73 -272q-3 -11 -4.5 -22t-1.5 -19q0 -22 11.5 -35t36.5 -13q34 0 53.5 22t31.5 67l73 272h227l-146 -546h-227l18 68q-27 -33 -69.5 -57t-93.5 -24z" />
<glyph glyph-name="v" unicode="v" horiz-adv-x="650"
d="M78 546h233l15 -274l162 274h240l-368 -550h-208z" />
<glyph glyph-name="w" unicode="w" horiz-adv-x="861"
d="M79 546h212l-3 -220l126 222h181l7 -224l117 222h219l-314 -550h-187l-10 234l-138 -234h-192z" />
<glyph glyph-name="x" unicode="x" horiz-adv-x="599"
d="M182 281l-107 265h231l35 -112l92 112h247l-253 -277l109 -269h-231l-37 116l-95 -116h-247z" />
<glyph glyph-name="y" unicode="y" horiz-adv-x="652"
d="M103 -163q-54 0 -92.5 10.5t-69.5 30.5l88 167q25 -17 47.5 -24.5t43.5 -7.5q18 0 36 6l-75 527h230l19 -287l163 287h236l-337 -527q-33 -51 -65 -86t-67 -56t-73.5 -30.5t-83.5 -9.5z" />
<glyph glyph-name="z" unicode="z" horiz-adv-x="559"
d="M-14 142l285 226h-215l47 178h517l-38 -142l-285 -226h225l-48 -178h-526z" />
<glyph glyph-name="braceleft" unicode="{" horiz-adv-x="504"
d="M336 -141q-73 4 -119.5 16.5t-73.5 31.5t-37 42t-10 49q0 20 4 39.5t9 39.5q6 24 10.5 44t4.5 37q0 29 -19.5 45t-73.5 16h-21l36 136h21q45 0 73 9.5t44.5 28.5t24.5 47.5t14 67.5q7 46 22 84t50.5 65.5t98 42.5t166.5 15l15 -121q-51 -3 -82.5 -16t-49 -33.5t-25 -46.5
t-11.5 -56q-5 -31 -12 -58.5t-24.5 -49.5t-49 -37t-85.5 -22q51 -11 69 -38.5t18 -62.5q0 -16 -2.5 -32.5t-7.5 -32.5q-5 -18 -9 -35t-4 -32q0 -29 19 -46t72 -24z" />
<glyph glyph-name="bar" unicode="|" horiz-adv-x="361"
d="M113 798h168v-926h-168v926z" />
<glyph glyph-name="braceright" unicode="}" horiz-adv-x="504"
d="M-63 -20q51 3 82 16t48.5 33.5t25 46.5t12.5 56q5 31 12 58.5t24.5 49.5t49 37t85.5 22q-51 11 -69 38.5t-18 62.5q0 16 2.5 32.5t7.5 32.5q5 18 9 35t4 32q0 28 -19 45.5t-72 24.5l55 113q73 -4 119.5 -16.5t73.5 -31.5t37 -42.5t10 -48.5q0 -20 -4 -39.5t-9 -39.5
q-6 -24 -10.5 -44t-4.5 -37q0 -29 19.5 -45t73.5 -16h21l-36 -136h-21q-45 0 -73 -9.5t-44.5 -28.5t-24.5 -47.5t-14 -67.5q-7 -46 -22 -84t-50.5 -65.5t-98.5 -42.5t-166 -15z" />
<glyph glyph-name="asciitilde" unicode="~"
d="M27 254q32 81 76.5 117.5t91.5 36.5q26 0 49 -10t40 -22q14 -10 27 -16.5t23 -6.5q19 0 33.5 14.5t28.5 40.5l97 -41q-32 -81 -76.5 -117.5t-91.5 -36.5q-26 0 -49 10t-40 22q-14 10 -27 16.5t-23 6.5q-19 0 -33.5 -14.5t-28.5 -40.5z" />
<glyph glyph-name="nonbreakingspace" unicode="&#xa0;" horiz-adv-x="254"
/>
<glyph glyph-name="exclamdown" unicode="&#xa1;" horiz-adv-x="320"
d="M1 150l159 332h114l-19 -332l-41 -150h-254zM159 700h232l-48 -180h-232z" />
<glyph glyph-name="cent" unicode="&#xa2;" horiz-adv-x="585"
d="M337 485q-26 -2 -47 -17t-35.5 -37.5t-22.5 -50t-8 -53.5q0 -24 7 -41t18 -26zM178 99q-64 28 -99.5 83t-35.5 130q0 69 25 129.5t69.5 106t105.5 72t134 26.5h16l12 30l12 30h116l-33 -85q49 -23 79 -62.5t41 -90.5l-158 -63q-6 41 -31 60l-89 -229q23 3 43.5 18
t39.5 39l134 -89q-45 -64 -107 -97t-143 -33h-12t-12 1l-32 -81h-116z" />
<glyph glyph-name="sterling" unicode="&#xa3;" horiz-adv-x="619"
d="M4 130l82 32l28 102h-74l38 141h74l5 21q17 69 41.5 118.5t62.5 87.5q39 39 94 60t129 21q33 0 65.5 -6.5t61 -18.5t51.5 -28t38 -34l-138 -151q-18 19 -38 29t-45 10q-19 0 -34 -7t-26 -18q-20 -20 -31 -61l-6 -23h187l-38 -141h-187l-24 -90h265l-47 -174h-569z" />
<glyph glyph-name="currency" unicode="&#xa4;" horiz-adv-x="635"
d="M375 -15q-57 0 -106 17t-86.5 48.5t-60.5 77t-27 101.5h-80l28 106h60q2 8 4 17t4 17h-59l28 106h58q21 52 52.5 96t74.5 76t97.5 50t120.5 18q86 0 145.5 -37t93.5 -94l-153 -123q-40 61 -108 61q-33 0 -57.5 -13.5t-42.5 -36.5h145l-27 -102h-156l-4 -18l-4 -18h155
l-27 -102h-133q8 -29 28 -41.5t49 -12.5q30 0 56.5 11.5t54.5 37.5l119 -147q-49 -46 -108.5 -70.5t-133.5 -24.5z" />
<glyph glyph-name="yen" unicode="&#xa5;" horiz-adv-x="724"
d="M196 94h-184l35 131h184l10 39h-183l35 131h136l-119 305h243l62 -202l153 202h274l-278 -305h131l-35 -131h-183l-11 -39h183l-35 -131h-184l-25 -94h-234z" />
<glyph glyph-name="section" unicode="&#xa7;" horiz-adv-x="619"
d="M408 295q17 0 28 6t11 19q0 14 -19.5 25.5t-68.5 29.5q-38 14 -64 22t-43 8t-28 -6t-11 -19q0 -14 19.5 -25.5t68.5 -29.5q38 -14 64 -22t43 -8zM278 -15q-42 0 -83 7t-77 20t-66.5 30t-52.5 38l102 125q17 -15 39.5 -28.5t46.5 -23.5t47.5 -16t43.5 -6q35 0 35 21
q0 6 -4.5 11t-15 10t-28.5 11.5t-45 15.5q-36 12 -66.5 25.5t-52.5 30.5t-34.5 37.5t-12.5 45.5q0 21 5.5 40t18.5 35.5t35.5 30t55.5 22.5q-14 17 -21.5 36.5t-7.5 43.5q0 33 15 63.5t45 53.5t75.5 37t106.5 14q42 0 83 -7t77 -20t66.5 -30t52.5 -38l-102 -125
q-17 15 -39.5 28.5t-46.5 23.5t-48 16t-43 6q-35 0 -35 -21q0 -6 4.5 -11t15 -10t28.5 -11.5t45 -15.5q36 -12 66.5 -25.5t52.5 -30.5t34.5 -37.5t12.5 -45.5q0 -21 -5.5 -40t-18.5 -35.5t-35.5 -30t-55.5 -22.5q14 -17 21.5 -36.5t7.5 -43.5q0 -33 -15 -63.5t-45 -53.5
t-75.5 -37t-106.5 -14z" />
<glyph glyph-name="dieresis" unicode="&#xa8;"
d="M169 730h184l-41 -150h-184zM393 730h184l-41 -150h-184z" />
<glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="830"
d="M445 156q-45 0 -82.5 15t-65 41.5t-42.5 62.5t-15 78v2q0 41 15 77t42.5 63t65.5 43t84 16q65 0 106 -27t66 -72l-106 -63q-11 21 -27 34t-43 13q-32 0 -52 -24t-20 -59v-2q0 -37 20 -60t52 -23q28 0 44.5 13.5t28.5 34.5l106 -60q-25 -43 -66.5 -73t-110.5 -30zM438 25
q69 0 127.5 26t101.5 70t67.5 103.5t24.5 125.5v2q0 66 -24.5 125t-67 103t-101 69.5t-126.5 25.5q-69 0 -127.5 -26t-101.5 -70t-67.5 -103.5t-24.5 -125.5v-2q0 -66 24 -125t67 -103t101.5 -69.5t126.5 -25.5zM438 -15q-76 0 -142 29t-114.5 78.5t-76.5 115.5t-28 140v2
q0 74 28 140t77 116t115.5 79.5t142.5 29.5t142 -29t114.5 -78.5t76.5 -115.5t28 -140v-2q0 -74 -28 -140t-77 -116t-115.5 -79.5t-142.5 -29.5z" />
<glyph glyph-name="ordfeminine" unicode="&#xaa;" horiz-adv-x="400"
d="M237 467q14 0 28.5 13t19.5 34l3 12q-14 5 -26 5q-19 0 -32 -11t-13 -29q0 -11 6 -17.5t14 -6.5zM64 351h308l-24 -87h-308zM176 396q-35 0 -57.5 21.5t-22.5 60.5q0 48 35.5 76.5t98.5 28.5q18 0 32 -2.5t36 -9.5l2 5q2 3 2 7v8q0 29 -44 29q-19 0 -42 -4t-38 -9l-16 84
q24 8 57 12t64 4q74 0 109 -26t35 -71q0 -20 -6 -42l-44 -165h-125l9 30q-20 -17 -39.5 -27t-45.5 -10z" />
<glyph glyph-name="guillemotleft" unicode="&#xab;" horiz-adv-x="617"
d="M261 264l2 8l245 241l122 -111l-166 -161l74 -150l-160 -71zM14 250l24 88l194 191l122 -111l-156 -151l84 -170l-160 -71z" />
<glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="830"
d="M454 370q23 0 36.5 9.5t13.5 27.5v2q0 18 -13.5 27t-35.5 9h-56v-75h55zM270 553h188q51 0 85 -12t54 -32q17 -17 26 -39.5t9 -52.5v-2q0 -42 -20.5 -70.5t-55.5 -45.5l90 -131h-146l-74 110h-2h-25v-110h-129v385zM438 25q69 0 127.5 26t101.5 70t67.5 103.5t24.5 125.5
v2q0 66 -24.5 125t-67 103t-101 69.5t-126.5 25.5q-69 0 -127.5 -26t-101.5 -70t-67.5 -103.5t-24.5 -125.5v-2q0 -66 24 -125t67 -103t101.5 -69.5t126.5 -25.5zM438 -15q-76 0 -142 29t-114.5 78.5t-76.5 115.5t-28 140v2q0 74 28 140t77 116t115.5 79.5t142.5 29.5
t142 -29t114.5 -78.5t76.5 -115.5t28 -140v-2q0 -74 -28 -140t-77 -116t-115.5 -79.5t-142.5 -29.5z" />
<glyph glyph-name="macron" unicode="&#xaf;"
d="M172 710h390l-33 -125h-390z" />
<glyph glyph-name="macron" unicode="&#x2c9;"
d="M172 710h390l-33 -125h-390z" />
<glyph glyph-name="degree" unicode="&#xb0;" horiz-adv-x="459"
d="M277 439q19 0 34 8.5t25 21.5t15 29.5t5 33.5q0 29 -17.5 48t-45.5 19q-20 0 -34.5 -8.5t-24.5 -21.5t-15 -30t-5 -33q0 -29 17.5 -48t45.5 -19zM271 329q-42 0 -75 13.5t-56.5 37t-35.5 54t-12 65.5q0 45 16 83t43.5 66.5t65.5 44.5t82 16q42 0 75 -13.5t56.5 -37
t35.5 -54.5t12 -65q0 -45 -16 -83t-43.5 -66.5t-65.5 -44.5t-82 -16z" />
<glyph glyph-name="plusminus" unicode="&#xb1;" horiz-adv-x="626"
d="M274 -15q-62 0 -110 11t-84.5 29t-64 42t-46.5 50l144 137q36 -45 72.5 -62.5t81.5 -17.5q42 0 65 17.5t23 40.5q0 18 -13.5 28.5t-48.5 10.5h-69l44 164h55q89 0 89 51q0 18 -14.5 29t-36.5 11q-72 0 -154 -63l-111 145q24 21 55 40.5t68.5 34.5t81 23.5t91.5 8.5
q60 0 107 -15t79 -40t48.5 -57.5t16.5 -66.5q0 -40 -12.5 -70.5t-35 -53.5t-54 -38.5t-68.5 -25.5q56 -19 84.5 -53.5t28.5 -90.5q0 -50 -24.5 -90.5t-67 -69t-99.5 -44t-121 -15.5z" />
<glyph glyph-name="acute" unicode="&#xb4;"
d="M341 772l218 -57l-202 -135h-164z" />
<glyph glyph-name="mu" unicode="&#xb5;" horiz-adv-x="795"
d="M400 184h12l-64 86l150 98l50 -74q15 37 15 78q0 59 -33 97.5t-96 38.5q-38 0 -68 -16.5t-51 -43t-32.5 -60.5t-11.5 -68q0 -59 33 -97.5t96 -38.5zM544 19q-37 -16 -76.5 -24.5t-81.5 -8.5q-77 0 -141 24.5t-110 67t-71.5 100.5t-25.5 125q0 81 31.5 155.5t86.5 131.5
t130.5 90.5t163.5 33.5q77 0 141 -24.5t110 -67t71.5 -100.5t25.5 -125q0 -77 -29.5 -148t-81.5 -128l51 -69l-150 -98z" />
<glyph glyph-name="mu" unicode="&#x3bc;" horiz-adv-x="795"
d="M400 184h12l-64 86l150 98l50 -74q15 37 15 78q0 59 -33 97.5t-96 38.5q-38 0 -68 -16.5t-51 -43t-32.5 -60.5t-11.5 -68q0 -59 33 -97.5t96 -38.5zM544 19q-37 -16 -76.5 -24.5t-81.5 -8.5q-77 0 -141 24.5t-110 67t-71.5 100.5t-25.5 125q0 81 31.5 155.5t86.5 131.5
t130.5 90.5t163.5 33.5q77 0 141 -24.5t110 -67t71.5 -100.5t25.5 -125q0 -77 -29.5 -148t-81.5 -128l51 -69l-150 -98z" />
<glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="595"
d="M307 212q-71 5 -119.5 22t-78.5 44t-43.5 62.5t-13.5 78.5q0 63 23.5 115t68.5 88.5t110.5 57t150.5 20.5h267l-187 -700h-234z" />
<glyph glyph-name="periodcentered" unicode="&#xb7;" horiz-adv-x="285"
d="M68 430h232l-62 -230h-232z" />
<glyph glyph-name="periodcentered" unicode="&#x2219;" horiz-adv-x="285"
d="M68 430h232l-62 -230h-232z" />
<glyph glyph-name="cedilla" unicode="&#xb8;"
d="M-2 -98l126 118h147l-109 -193z" />
<glyph glyph-name="ordmasculine" unicode="&#xba;" horiz-adv-x="402"
d="M259 494q23 0 38.5 20t15.5 47q0 19 -11 31.5t-29 12.5q-23 0 -38.5 -20.5t-15.5 -47.5q0 -19 11 -31t29 -12zM69 351h288l-23 -87h-288zM251 392q-35 0 -63 11t-47.5 30t-29.5 45.5t-10 56.5q0 33 13.5 64t37.5 54.5t57 38t72 14.5q71 0 110.5 -40.5t39.5 -101.5
q0 -33 -13.5 -64t-37.5 -55t-57 -38.5t-72 -14.5z" />
<glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="617"
d="M266 137l156 151l-84 170l160 71l108 -224l-24 -88l-194 -191zM-10 153l166 161l-74 150l160 71l117 -244l-2 -8l-245 -241z" />
<glyph glyph-name="questiondown" unicode="&#xbf;" horiz-adv-x="537"
d="M233 -11q-53 0 -95.5 13.5t-72.5 37.5t-46 57.5t-16 74.5q0 40 13.5 77.5t43 68t76.5 52.5t114 33l31 79h138l-15 -174l-13 -11q-163 -16 -163 -73q0 -17 12 -27t38 -10q27 0 58 10.5t70 38.5l76 -169q-51 -37 -114 -57.5t-135 -20.5zM299 700h232l-49 -180h-232z" />
<glyph glyph-name="Agrave" unicode="&#xc0;" horiz-adv-x="784"
d="M326 875l224 57l44 -192h-140zM458 260l-19 170l-109 -170h128zM394 705h232l106 -705h-249l-12 94h-245l-61 -94h-255z" />
<glyph glyph-name="Aacute" unicode="&#xc1;" horiz-adv-x="784"
d="M572 932l218 -57l-202 -135h-164zM458 260l-19 170l-109 -170h128zM394 705h232l106 -705h-249l-12 94h-245l-61 -94h-255z" />
<glyph glyph-name="Acircumflex" unicode="&#xc2;" horiz-adv-x="784"
d="M478 912h164l87 -172h-117l-74 56l-104 -56h-135zM458 260l-19 170l-109 -170h128zM394 705h232l106 -705h-249l-12 94h-245l-61 -94h-255z" />
<glyph glyph-name="Atilde" unicode="&#xc3;" horiz-adv-x="784"
d="M308 781q32 81 76.5 117.5t91.5 36.5q26 0 49 -10t40 -22q14 -10 27 -16.5t23 -6.5q19 0 33.5 14.5t28.5 40.5l97 -41q-32 -81 -76.5 -117.5t-91.5 -36.5q-26 0 -49 10t-40 22q-14 10 -27 16.5t-23 6.5q-19 0 -33.5 -14.5t-28.5 -40.5zM458 260l-19 170l-109 -170h128z
M394 705h232l106 -705h-249l-12 94h-245l-61 -94h-255z" />
<glyph glyph-name="Adieresis" unicode="&#xc4;" horiz-adv-x="784"
d="M351 890h184l-41 -150h-184zM575 890h184l-41 -150h-184zM458 260l-19 170l-109 -170h128zM394 705h232l106 -705h-249l-12 94h-245l-61 -94h-255z" />
<glyph glyph-name="Aring" unicode="&#xc5;" horiz-adv-x="784"
d="M458 260l-19 170l-109 -170h128zM504 682q17 0 31.5 7.5t24.5 20t15.5 28t5.5 32.5q0 23 -14.5 39.5t-40.5 16.5q-17 0 -31.5 -7.5t-24.5 -20t-15.5 -28.5t-5.5 -32q0 -23 14.5 -39.5t40.5 -16.5zM-90 0q131 193 235 343l236 342q-11 25 -11 51q0 32 12.5 60.5t34 49.5
t50.5 33.5t62 12.5q60 0 95.5 -34.5t35.5 -85.5q0 -50 -30 -91l102 -681h-249l-12 94h-245l-61 -94h-255z" />
<glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="1101"
d="M488 260l70 262h-8l-194 -262h132zM445 700h733l-52 -192h-347l-19 -71h322l-45 -169h-322l-21 -76h352l-51 -192h-577l25 94h-210l-69 -94h-255z" />
<glyph glyph-name="Ccedilla" unicode="&#xc7;" horiz-adv-x="727"
d="M137 -98l109 102q-97 29 -154 104t-57 184q0 71 28 145.5t83 136t137 100.5t190 39q58 0 108 -14.5t89 -41.5t65 -64.5t36 -83.5l-206 -91q-12 43 -41 64t-71 21q-39 0 -71 -16.5t-54.5 -43.5t-35 -61t-12.5 -69q0 -57 31.5 -87.5t78.5 -30.5q41 0 74 19t62 54l162 -128
q-50 -66 -122 -106.5t-174 -45.5l-91 -161z" />
<glyph glyph-name="Egrave" unicode="&#xc8;" horiz-adv-x="673"
d="M300 875l224 57l44 -192h-140zM153 700h597l-52 -192h-367l-19 -71h342l-45 -169h-342l-21 -76h372l-51 -192h-602z" />
<glyph glyph-name="Eacute" unicode="&#xc9;" horiz-adv-x="673"
d="M504 932l218 -57l-202 -135h-164zM153 700h597l-52 -192h-367l-19 -71h342l-45 -169h-342l-21 -76h372l-51 -192h-602z" />
<glyph glyph-name="Ecircumflex" unicode="&#xca;" horiz-adv-x="673"
d="M420 912h164l87 -172h-117l-74 56l-104 -56h-135zM153 700h597l-52 -192h-367l-19 -71h342l-45 -169h-342l-21 -76h372l-51 -192h-602z" />
<glyph glyph-name="Edieresis" unicode="&#xcb;" horiz-adv-x="673"
d="M294 890h184l-41 -150h-184zM518 890h184l-41 -150h-184zM153 700h597l-52 -192h-367l-19 -71h342l-45 -169h-342l-21 -76h372l-51 -192h-602z" />
<glyph glyph-name="Igrave" unicode="&#xcc;" horiz-adv-x="314"
d="M97 875l224 57l44 -192h-140zM155 700h234l-188 -700h-234z" />
<glyph glyph-name="Iacute" unicode="&#xcd;" horiz-adv-x="314"
d="M336 932l218 -57l-202 -135h-164zM155 700h234l-188 -700h-234z" />
<glyph glyph-name="Icircumflex" unicode="&#xce;" horiz-adv-x="314"
d="M239 912h164l87 -172h-117l-74 56l-104 -56h-135zM155 700h234l-188 -700h-234z" />
<glyph glyph-name="Idieresis" unicode="&#xcf;" horiz-adv-x="314"
d="M118 890h184l-41 -150h-184zM342 890h184l-41 -150h-184zM155 700h234l-188 -700h-234z" />
<glyph glyph-name="Eth" unicode="&#xd0;" horiz-adv-x="802"
d="M355 193q54 0 101 16t76 45q24 24 40 58.5t16 69.5q0 30 -8.5 51t-22.5 35q-18 18 -47 28t-74 10h-42l-18 -69h86l-45 -169h-86l-20 -75h44zM107 268h-85l45 169h85l71 263h238q102 0 168 -25t106 -65q76 -76 76 -205q0 -79 -29 -149t-86 -127q-63 -63 -154 -96t-213 -33
h-294z" />
<glyph glyph-name="Ntilde" unicode="&#xd1;" horiz-adv-x="776"
d="M290 781q32 81 76.5 117.5t91.5 36.5q26 0 49 -10t40 -22q14 -10 27 -16.5t23 -6.5q19 0 33.5 14.5t28.5 40.5l97 -41q-32 -81 -76.5 -117.5t-91.5 -36.5q-26 0 -49 10t-40 22q-14 10 -27 16.5t-23 6.5q-19 0 -33.5 -14.5t-28.5 -40.5zM153 700h219l159 -334l90 334h232
l-188 -700h-208l-166 348l-94 -348h-232z" />
<glyph glyph-name="Ograve" unicode="&#xd2;" horiz-adv-x="795"
d="M310 875l224 57l44 -192h-140zM402 192q37 0 66.5 16.5t50.5 42.5t32.5 59t11.5 66q0 28 -8.5 52t-24.5 42t-40.5 28t-55.5 10q-37 0 -66.5 -16.5t-50.5 -42.5t-32.5 -59t-11.5 -66q0 -28 8.5 -52t24.5 -42t40 -28t56 -10zM386 -14q-77 0 -141 24.5t-110 67t-71.5 100.5
t-25.5 125q0 81 31.5 155.5t86.5 131.5t130.5 90.5t163.5 33.5q77 0 141 -24.5t110 -67t71.5 -100.5t25.5 -125q0 -81 -31.5 -155.5t-86.5 -131.5t-130.5 -90.5t-163.5 -33.5z" />
<glyph glyph-name="Oacute" unicode="&#xd3;" horiz-adv-x="795"
d="M523 932l218 -57l-202 -135h-164zM402 192q37 0 66.5 16.5t50.5 42.5t32.5 59t11.5 66q0 28 -8.5 52t-24.5 42t-40.5 28t-55.5 10q-37 0 -66.5 -16.5t-50.5 -42.5t-32.5 -59t-11.5 -66q0 -28 8.5 -52t24.5 -42t40 -28t56 -10zM386 -14q-77 0 -141 24.5t-110 67
t-71.5 100.5t-25.5 125q0 81 31.5 155.5t86.5 131.5t130.5 90.5t163.5 33.5q77 0 141 -24.5t110 -67t71.5 -100.5t25.5 -125q0 -81 -31.5 -155.5t-86.5 -131.5t-130.5 -90.5t-163.5 -33.5z" />
<glyph glyph-name="Ocircumflex" unicode="&#xd4;" horiz-adv-x="795"
d="M452 912h164l87 -172h-117l-74 56l-104 -56h-135zM402 192q37 0 66.5 16.5t50.5 42.5t32.5 59t11.5 66q0 28 -8.5 52t-24.5 42t-40.5 28t-55.5 10q-37 0 -66.5 -16.5t-50.5 -42.5t-32.5 -59t-11.5 -66q0 -28 8.5 -52t24.5 -42t40 -28t56 -10zM386 -14q-77 0 -141 24.5
t-110 67t-71.5 100.5t-25.5 125q0 81 31.5 155.5t86.5 131.5t130.5 90.5t163.5 33.5q77 0 141 -24.5t110 -67t71.5 -100.5t25.5 -125q0 -81 -31.5 -155.5t-86.5 -131.5t-130.5 -90.5t-163.5 -33.5z" />
<glyph glyph-name="Otilde" unicode="&#xd5;" horiz-adv-x="795"
d="M283 781q32 81 76.5 117.5t91.5 36.5q26 0 49 -10t40 -22q14 -10 27 -16.5t23 -6.5q19 0 33.5 14.5t28.5 40.5l97 -41q-32 -81 -76.5 -117.5t-91.5 -36.5q-26 0 -49 10t-40 22q-14 10 -27 16.5t-23 6.5q-19 0 -33.5 -14.5t-28.5 -40.5zM402 192q37 0 66.5 16.5t50.5 42.5
t32.5 59t11.5 66q0 28 -8.5 52t-24.5 42t-40.5 28t-55.5 10q-37 0 -66.5 -16.5t-50.5 -42.5t-32.5 -59t-11.5 -66q0 -28 8.5 -52t24.5 -42t40 -28t56 -10zM386 -14q-77 0 -141 24.5t-110 67t-71.5 100.5t-25.5 125q0 81 31.5 155.5t86.5 131.5t130.5 90.5t163.5 33.5
q77 0 141 -24.5t110 -67t71.5 -100.5t25.5 -125q0 -81 -31.5 -155.5t-86.5 -131.5t-130.5 -90.5t-163.5 -33.5z" />
<glyph glyph-name="Odieresis" unicode="&#xd6;" horiz-adv-x="795"
d="M335 890h184l-41 -150h-184zM559 890h184l-41 -150h-184zM402 192q37 0 66.5 16.5t50.5 42.5t32.5 59t11.5 66q0 28 -8.5 52t-24.5 42t-40.5 28t-55.5 10q-37 0 -66.5 -16.5t-50.5 -42.5t-32.5 -59t-11.5 -66q0 -28 8.5 -52t24.5 -42t40 -28t56 -10zM386 -14
q-77 0 -141 24.5t-110 67t-71.5 100.5t-25.5 125q0 81 31.5 155.5t86.5 131.5t130.5 90.5t163.5 33.5q77 0 141 -24.5t110 -67t71.5 -100.5t25.5 -125q0 -81 -31.5 -155.5t-86.5 -131.5t-130.5 -90.5t-163.5 -33.5z" />
<glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="795"
d="M402 187q37 0 68 17t52.5 44t33.5 61t12 68q0 20 -4 35l-233 -209q15 -8 32.5 -12t38.5 -4zM511 492q-30 21 -77 21q-38 0 -68.5 -17t-52 -44t-33.5 -61t-12 -68q0 -24 6 -43zM386 -14q-66 0 -121.5 17.5t-99.5 49.5l-64 -58h-147l141 127q-28 38 -42.5 84t-14.5 97
q0 81 31.5 155.5t86.5 131.5t130.5 90.5t163.5 33.5q68 0 125 -18.5t102 -52.5l69 62h147l-148 -133q26 -37 39.5 -81t13.5 -94q0 -81 -31.5 -155.5t-86.5 -131.5t-130.5 -90.5t-163.5 -33.5z" />
<glyph glyph-name="Ugrave" unicode="&#xd9;" horiz-adv-x="756"
d="M315 870l224 57l44 -192h-140zM341 -14q-149 0 -226 66.5t-77 185.5q0 56 15 113l94 349h238l-98 -364q-8 -32 -8 -55q0 -44 24.5 -66t71.5 -22q46 0 75 29q16 16 27.5 38.5t22.5 63.5l101 376h238l-111 -412q-37 -137 -110 -210q-50 -50 -121.5 -71t-155.5 -21z" />
<glyph glyph-name="Uacute" unicode="&#xda;" horiz-adv-x="756"
d="M542 927l218 -57l-202 -135h-164zM341 -14q-149 0 -226 66.5t-77 185.5q0 56 15 113l94 349h238l-98 -364q-8 -32 -8 -55q0 -44 24.5 -66t71.5 -22q46 0 75 29q16 16 27.5 38.5t22.5 63.5l101 376h238l-111 -412q-37 -137 -110 -210q-50 -50 -121.5 -71t-155.5 -21z" />
<glyph glyph-name="Ucircumflex" unicode="&#xdb;" horiz-adv-x="756"
d="M463 912h164l87 -172h-117l-74 56l-104 -56h-135zM341 -14q-149 0 -226 66.5t-77 185.5q0 56 15 113l94 349h238l-98 -364q-8 -32 -8 -55q0 -44 24.5 -66t71.5 -22q46 0 75 29q16 16 27.5 38.5t22.5 63.5l101 376h238l-111 -412q-37 -137 -110 -210q-50 -50 -121.5 -71
t-155.5 -21z" />
<glyph glyph-name="Udieresis" unicode="&#xdc;" horiz-adv-x="756"
d="M339 890h184l-41 -150h-184zM563 890h184l-41 -150h-184zM341 -14q-149 0 -226 66.5t-77 185.5q0 56 15 113l94 349h238l-98 -364q-8 -32 -8 -55q0 -44 24.5 -66t71.5 -22q46 0 75 29q16 16 27.5 38.5t22.5 63.5l101 376h238l-111 -412q-37 -137 -110 -210
q-50 -50 -121.5 -71t-155.5 -21z" />
<glyph glyph-name="Yacute" unicode="&#xdd;" horiz-adv-x="704"
d="M504 932l218 -57l-202 -135h-164zM221 267l-137 433h246l57 -234l182 234h277l-398 -462l-64 -238h-234z" />
<glyph glyph-name="Thorn" unicode="&#xde;" horiz-adv-x="675"
d="M315 274q67 0 98.5 26.5t31.5 66.5q0 24 -17 41q-12 12 -31 17t-39 5h-44l-41 -156h42zM153 700h234l-25 -98h7q95 0 156 -18.5t99 -56.5q28 -28 41 -63t13 -75q0 -65 -23.5 -117.5t-68.5 -90.5t-109.5 -58.5t-145.5 -20.5h-106l-26 -102h-234z" />
<glyph glyph-name="germandbls" unicode="&#xdf;" horiz-adv-x="646"
d="M283 153q59 3 85.5 26.5t26.5 52.5q0 23 -18 40t-57 19l28 102q57 11 81 39t24 64q0 27 -15 42t-36 15q-32 0 -53.5 -27t-35.5 -78l-120 -448h-227l122 455q19 70 43.5 119.5t58.5 83.5q42 42 94.5 61.5t126.5 19.5q56 0 102.5 -14t79.5 -40.5t51.5 -64t18.5 -84.5
q0 -72 -38 -128t-123 -78q53 -17 81 -52t28 -78q0 -44 -22 -84t-68 -69.5t-115.5 -43.5t-163.5 -6z" />
<glyph glyph-name="agrave" unicode="&#xe0;" horiz-adv-x="605"
d="M209 715l224 57l44 -192h-140zM251 117q27 0 52.5 25t35.5 63l6 23q-11 3 -21 4.5t-21 1.5q-43 0 -66 -19.5t-23 -54.5q0 -21 10.5 -32t26.5 -11zM141 -12q-63 0 -104.5 39t-41.5 110q0 87 64 138.5t180 51.5q62 0 124 -18l2 6q2 5 3 12.5t1 14.5q0 53 -84 53
q-38 0 -79.5 -6.5t-69.5 -17.5l-30 154q45 14 105 21.5t120 7.5q136 0 200.5 -48t64.5 -130q0 -37 -10 -76l-80 -300h-227l15 55q-37 -31 -71.5 -49t-81.5 -18z" />
<glyph glyph-name="aacute" unicode="&#xe1;" horiz-adv-x="605"
d="M423 772l218 -57l-202 -135h-164zM251 117q27 0 52.5 25t35.5 63l6 23q-11 3 -21 4.5t-21 1.5q-43 0 -66 -19.5t-23 -54.5q0 -21 10.5 -32t26.5 -11zM141 -12q-63 0 -104.5 39t-41.5 110q0 87 64 138.5t180 51.5q62 0 124 -18l2 6q2 5 3 12.5t1 14.5q0 53 -84 53
q-38 0 -79.5 -6.5t-69.5 -17.5l-30 154q45 14 105 21.5t120 7.5q136 0 200.5 -48t64.5 -130q0 -37 -10 -76l-80 -300h-227l15 55q-37 -31 -71.5 -49t-81.5 -18z" />
<glyph glyph-name="acircumflex" unicode="&#xe2;" horiz-adv-x="605"
d="M352 752h164l87 -172h-117l-74 56l-104 -56h-135zM251 117q27 0 52.5 25t35.5 63l6 23q-11 3 -21 4.5t-21 1.5q-43 0 -66 -19.5t-23 -54.5q0 -21 10.5 -32t26.5 -11zM141 -12q-63 0 -104.5 39t-41.5 110q0 87 64 138.5t180 51.5q62 0 124 -18l2 6q2 5 3 12.5t1 14.5
q0 53 -84 53q-38 0 -79.5 -6.5t-69.5 -17.5l-30 154q45 14 105 21.5t120 7.5q136 0 200.5 -48t64.5 -130q0 -37 -10 -76l-80 -300h-227l15 55q-37 -31 -71.5 -49t-81.5 -18z" />
<glyph glyph-name="atilde" unicode="&#xe3;" horiz-adv-x="605"
d="M170 621q32 81 76.5 117.5t91.5 36.5q26 0 49 -10t40 -22q14 -10 27 -16.5t23 -6.5q19 0 33.5 14.5t28.5 40.5l97 -41q-32 -81 -76.5 -117.5t-91.5 -36.5q-26 0 -49 10t-40 22q-14 10 -27 16.5t-23 6.5q-19 0 -33.5 -14.5t-28.5 -40.5zM251 117q27 0 52.5 25t35.5 63
l6 23q-11 3 -21 4.5t-21 1.5q-43 0 -66 -19.5t-23 -54.5q0 -21 10.5 -32t26.5 -11zM141 -12q-63 0 -104.5 39t-41.5 110q0 87 64 138.5t180 51.5q62 0 124 -18l2 6q2 5 3 12.5t1 14.5q0 53 -84 53q-38 0 -79.5 -6.5t-69.5 -17.5l-30 154q45 14 105 21.5t120 7.5
q136 0 200.5 -48t64.5 -130q0 -37 -10 -76l-80 -300h-227l15 55q-37 -31 -71.5 -49t-81.5 -18z" />
<glyph glyph-name="adieresis" unicode="&#xe4;" horiz-adv-x="605"
d="M227 731h184l-41 -150h-184zM451 731h184l-41 -150h-184zM251 117q27 0 52.5 25t35.5 63l6 23q-11 3 -21 4.5t-21 1.5q-43 0 -66 -19.5t-23 -54.5q0 -21 10.5 -32t26.5 -11zM141 -12q-63 0 -104.5 39t-41.5 110q0 87 64 138.5t180 51.5q62 0 124 -18l2 6q2 5 3 12.5
t1 14.5q0 53 -84 53q-38 0 -79.5 -6.5t-69.5 -17.5l-30 154q45 14 105 21.5t120 7.5q136 0 200.5 -48t64.5 -130q0 -37 -10 -76l-80 -300h-227l15 55q-37 -31 -71.5 -49t-81.5 -18z" />
<glyph glyph-name="aring" unicode="&#xe5;" horiz-adv-x="605"
d="M416 657q17 0 31.5 7.5t24.5 20t15.5 28t5.5 32.5q0 23 -14.5 39.5t-40.5 16.5q-17 0 -31.5 -7.5t-24.5 -20t-15.5 -28.5t-5.5 -32q0 -23 14.5 -39.5t40.5 -16.5zM413 591q-60 0 -95.5 34.5t-35.5 85.5q0 32 12.5 60.5t34 49.5t50.5 33.5t62 12.5q60 0 95.5 -34.5
t35.5 -85.5q0 -32 -12.5 -60.5t-34 -49.5t-50.5 -33.5t-62 -12.5zM251 117q27 0 52.5 25t35.5 63l6 23q-11 3 -21 4.5t-21 1.5q-43 0 -66 -19.5t-23 -54.5q0 -21 10.5 -32t26.5 -11zM141 -12q-63 0 -104.5 39t-41.5 110q0 87 64 138.5t180 51.5q62 0 124 -18l2 6q2 5 3 12.5
t1 14.5q0 53 -84 53q-38 0 -79.5 -6.5t-69.5 -17.5l-30 154q45 14 105 21.5t120 7.5q136 0 200.5 -48t64.5 -130q0 -37 -10 -76l-80 -300h-227l15 55q-37 -31 -71.5 -49t-81.5 -18z" />
<glyph glyph-name="ae" unicode="&#xe6;" horiz-adv-x="923"
d="M343 228q-11 3 -21.5 4.5t-18.5 1.5q-43 0 -66 -19.5t-23 -54.5q0 -20 12.5 -32t35.5 -12q21 0 45 10t47 30q-11 35 -11 72zM716 320q4 11 4 24q0 23 -15.5 40.5t-43.5 17.5q-26 0 -54.5 -18t-44.5 -64h154zM396 79q-28 -26 -55 -43.5t-54.5 -28t-56 -15t-59.5 -4.5
q-78 0 -127 39t-49 110q0 87 64 138.5t180 51.5q62 0 124 -18l2 6q2 5 3 12.5t1 14.5q0 53 -84 53q-38 0 -79.5 -6.5t-69.5 -17.5l-30 154q45 14 105 21.5t120 7.5q63 0 106 -13t70 -37q40 26 85 40.5t93 14.5q64 0 108 -21t71 -54.5t39 -76t12 -85.5q0 -27 -4 -53t-12 -49
h-351q2 -33 23 -53t59 -20q28 0 54.5 11t55.5 33l105 -115q-47 -42 -106.5 -65.5t-134.5 -23.5q-68 0 -120.5 25t-87.5 67z" />
<glyph glyph-name="ccedilla" unicode="&#xe7;" horiz-adv-x="565"
d="M38 -98l113 106q-63 26 -100 79.5t-37 131.5q0 70 26 132t71 108t106 72.5t132 26.5q49 0 89.5 -13.5t71 -37.5t50 -56.5t27.5 -70.5l-180 -72q-15 66 -70 66q-24 0 -44 -12t-34 -31.5t-21.5 -43.5t-7.5 -49q0 -31 17 -49t40 -18q26 0 46 10t42 36l153 -102
q-38 -55 -95 -89.5t-141 -38.5l-90 -160z" />
<glyph glyph-name="egrave" unicode="&#xe8;" horiz-adv-x="596"
d="M193 715l224 57l44 -192h-140zM389 320q4 11 4 24q0 23 -15.5 40.5t-43.5 17.5q-26 0 -54.5 -18t-44.5 -64h154zM221 220q2 -33 23 -53t59 -20q28 0 54.5 11t55.5 33l105 -115q-47 -42 -104.5 -65.5t-129.5 -23.5q-62 0 -112 17.5t-84.5 49t-53 75.5t-18.5 98
q0 62 22.5 122t65.5 106.5t104.5 75t139.5 28.5q67 0 113 -21t74.5 -54.5t40.5 -76t12 -85.5q0 -27 -4 -53t-12 -49h-351z" />
<glyph glyph-name="eacute" unicode="&#xe9;" horiz-adv-x="596"
d="M410 772l218 -57l-202 -135h-164zM389 320q4 11 4 24q0 23 -15.5 40.5t-43.5 17.5q-26 0 -54.5 -18t-44.5 -64h154zM221 220q2 -33 23 -53t59 -20q28 0 54.5 11t55.5 33l105 -115q-47 -42 -104.5 -65.5t-129.5 -23.5q-62 0 -112 17.5t-84.5 49t-53 75.5t-18.5 98
q0 62 22.5 122t65.5 106.5t104.5 75t139.5 28.5q67 0 113 -21t74.5 -54.5t40.5 -76t12 -85.5q0 -27 -4 -53t-12 -49h-351z" />
<glyph glyph-name="ecircumflex" unicode="&#xea;" horiz-adv-x="596"
d="M332 752h164l87 -172h-117l-74 56l-104 -56h-135zM389 320q4 11 4 24q0 23 -15.5 40.5t-43.5 17.5q-26 0 -54.5 -18t-44.5 -64h154zM221 220q2 -33 23 -53t59 -20q28 0 54.5 11t55.5 33l105 -115q-47 -42 -104.5 -65.5t-129.5 -23.5q-62 0 -112 17.5t-84.5 49t-53 75.5
t-18.5 98q0 62 22.5 122t65.5 106.5t104.5 75t139.5 28.5q67 0 113 -21t74.5 -54.5t40.5 -76t12 -85.5q0 -27 -4 -53t-12 -49h-351z" />
<glyph glyph-name="edieresis" unicode="&#xeb;" horiz-adv-x="596"
d="M209 730h184l-41 -150h-184zM433 730h184l-41 -150h-184zM389 320q4 11 4 24q0 23 -15.5 40.5t-43.5 17.5q-26 0 -54.5 -18t-44.5 -64h154zM221 220q2 -33 23 -53t59 -20q28 0 54.5 11t55.5 33l105 -115q-47 -42 -104.5 -65.5t-129.5 -23.5q-62 0 -112 17.5t-84.5 49
t-53 75.5t-18.5 98q0 62 22.5 122t65.5 106.5t104.5 75t139.5 28.5q67 0 113 -21t74.5 -54.5t40.5 -76t12 -85.5q0 -27 -4 -53t-12 -49h-351z" />
<glyph glyph-name="igrave" unicode="&#xec;" horiz-adv-x="301"
d="M63 715l224 57l44 -192h-140zM110 546h227l-146 -546h-227z" />
<glyph glyph-name="iacute" unicode="&#xed;" horiz-adv-x="301"
d="M276 772l218 -57l-202 -135h-164zM110 546h227l-146 -546h-227z" />
<glyph glyph-name="icircumflex" unicode="&#xee;" horiz-adv-x="301"
d="M189 752h164l87 -172h-117l-74 56l-104 -56h-135zM110 546h227l-146 -546h-227z" />
<glyph glyph-name="idieresis" unicode="&#xef;" horiz-adv-x="301"
d="M67 730h184l-41 -150h-184zM291 730h184l-41 -150h-184zM110 546h227l-146 -546h-227z" />
<glyph glyph-name="eth" unicode="&#xf0;" horiz-adv-x="646"
d="M307 176q42 0 69.5 25.5t27.5 61.5q0 29 -21.5 46.5t-50.5 17.5q-42 0 -69.5 -25.5t-27.5 -61.5q0 -29 21.5 -46.5t50.5 -17.5zM289 -12q-62 0 -113 18t-87 49t-55.5 73.5t-19.5 90.5q0 50 19.5 96t56 81.5t88.5 56.5t117 21q31 0 60 -6t50 -17l-42 93l-127 -40l-47 102
l129 35l-40 89h212l14 -33l124 39l47 -102l-128 -35l40 -91q23 -52 33.5 -100.5t10.5 -93.5q0 -71 -24 -130.5t-68.5 -103t-108 -68t-141.5 -24.5z" />
<glyph glyph-name="ntilde" unicode="&#xf1;" horiz-adv-x="641"
d="M176 621q32 81 76.5 117.5t91.5 36.5q26 0 49 -10t40 -22q14 -10 27 -16.5t23 -6.5q19 0 33.5 14.5t28.5 40.5l97 -41q-32 -81 -76.5 -117.5t-91.5 -36.5q-26 0 -49 10t-40 22q-14 10 -27 16.5t-23 6.5q-19 0 -33.5 -14.5t-28.5 -40.5zM108 546h227l-18 -68
q27 33 69.5 57t93.5 24q75 0 115.5 -45t40.5 -122q0 -44 -13 -92l-80 -300h-227l73 272q3 11 4.5 22t1.5 19q0 22 -11.5 35t-36.5 13q-34 0 -53.5 -22t-31.5 -67l-73 -272h-227z" />
<glyph glyph-name="ograve" unicode="&#xf2;" horiz-adv-x="636"
d="M201 715l224 57l44 -192h-140zM305 172q21 0 39.5 10t31.5 27t20.5 39.5t7.5 46.5q0 35 -20 57t-53 22q-21 0 -39.5 -10t-31.5 -27t-20.5 -39.5t-7.5 -46.5q0 -35 20 -57t53 -22zM291 -13q-65 0 -115.5 19.5t-85.5 54t-53.5 81t-18.5 99.5q0 63 24.5 120.5t68 101.5
t103.5 70t131 26q64 0 115 -19.5t86 -54t53.5 -81t18.5 -99.5q0 -63 -24.5 -120.5t-68 -101.5t-103.5 -70t-131 -26z" />
<glyph glyph-name="oacute" unicode="&#xf3;" horiz-adv-x="636"
d="M423 772l218 -57l-202 -135h-164zM305 172q21 0 39.5 10t31.5 27t20.5 39.5t7.5 46.5q0 35 -20 57t-53 22q-21 0 -39.5 -10t-31.5 -27t-20.5 -39.5t-7.5 -46.5q0 -35 20 -57t53 -22zM291 -13q-65 0 -115.5 19.5t-85.5 54t-53.5 81t-18.5 99.5q0 63 24.5 120.5t68 101.5
t103.5 70t131 26q64 0 115 -19.5t86 -54t53.5 -81t18.5 -99.5q0 -63 -24.5 -120.5t-68 -101.5t-103.5 -70t-131 -26z" />
<glyph glyph-name="ocircumflex" unicode="&#xf4;" horiz-adv-x="636"
d="M334 752h164l87 -172h-117l-74 56l-104 -56h-135zM305 172q21 0 39.5 10t31.5 27t20.5 39.5t7.5 46.5q0 35 -20 57t-53 22q-21 0 -39.5 -10t-31.5 -27t-20.5 -39.5t-7.5 -46.5q0 -35 20 -57t53 -22zM291 -13q-65 0 -115.5 19.5t-85.5 54t-53.5 81t-18.5 99.5
q0 63 24.5 120.5t68 101.5t103.5 70t131 26q64 0 115 -19.5t86 -54t53.5 -81t18.5 -99.5q0 -63 -24.5 -120.5t-68 -101.5t-103.5 -70t-131 -26z" />
<glyph glyph-name="otilde" unicode="&#xf5;" horiz-adv-x="636"
d="M165 621q32 81 76.5 117.5t91.5 36.5q26 0 49 -10t40 -22q14 -10 27 -16.5t23 -6.5q19 0 33.5 14.5t28.5 40.5l97 -41q-32 -81 -76.5 -117.5t-91.5 -36.5q-26 0 -49 10t-40 22q-14 10 -27 16.5t-23 6.5q-19 0 -33.5 -14.5t-28.5 -40.5zM305 172q21 0 39.5 10t31.5 27
t20.5 39.5t7.5 46.5q0 35 -20 57t-53 22q-21 0 -39.5 -10t-31.5 -27t-20.5 -39.5t-7.5 -46.5q0 -35 20 -57t53 -22zM291 -13q-65 0 -115.5 19.5t-85.5 54t-53.5 81t-18.5 99.5q0 63 24.5 120.5t68 101.5t103.5 70t131 26q64 0 115 -19.5t86 -54t53.5 -81t18.5 -99.5
q0 -63 -24.5 -120.5t-68 -101.5t-103.5 -70t-131 -26z" />
<glyph glyph-name="odieresis" unicode="&#xf6;" horiz-adv-x="636"
d="M209 730h184l-41 -150h-184zM433 730h184l-41 -150h-184zM305 172q21 0 39.5 10t31.5 27t20.5 39.5t7.5 46.5q0 35 -20 57t-53 22q-21 0 -39.5 -10t-31.5 -27t-20.5 -39.5t-7.5 -46.5q0 -35 20 -57t53 -22zM291 -13q-65 0 -115.5 19.5t-85.5 54t-53.5 81t-18.5 99.5
q0 63 24.5 120.5t68 101.5t103.5 70t131 26q64 0 115 -19.5t86 -54t53.5 -81t18.5 -99.5q0 -63 -24.5 -120.5t-68 -101.5t-103.5 -70t-131 -26z" />
<glyph glyph-name="oslash" unicode="&#xf8;" horiz-adv-x="636"
d="M304 163q23 0 43 11t35 29.5t23.5 42.5t8.5 51v5l-148 -130q16 -9 38 -9zM379 370q-20 14 -47 14q-23 0 -43 -11t-35 -29.5t-23.5 -42.5t-8.5 -51v-8.5t1 -8.5zM291 -12q-52 0 -94.5 13t-75.5 36l-47 -42h-133l118 105q-41 62 -41 147q0 60 24.5 116t68 99.5t103.5 70
t131 26.5q55 0 99.5 -14t78.5 -40l52 46h133l-127 -112q37 -60 37 -139q0 -60 -24.5 -116.5t-68 -100t-103.5 -69.5t-131 -26z" />
<glyph glyph-name="ugrave" unicode="&#xf9;" horiz-adv-x="641"
d="M236 715l224 57l44 -192h-140zM167 -13q-75 0 -115.5 45t-40.5 122q0 44 13 92l80 300h227l-73 -272q-3 -11 -4.5 -22t-1.5 -19q0 -22 11.5 -35t36.5 -13q34 0 53.5 22t31.5 67l73 272h227l-146 -546h-227l18 68q-27 -33 -69.5 -57t-93.5 -24z" />
<glyph glyph-name="uacute" unicode="&#xfa;" horiz-adv-x="641"
d="M443 772l218 -57l-202 -135h-164zM167 -13q-75 0 -115.5 45t-40.5 122q0 44 13 92l80 300h227l-73 -272q-3 -11 -4.5 -22t-1.5 -19q0 -22 11.5 -35t36.5 -13q34 0 53.5 22t31.5 67l73 272h227l-146 -546h-227l18 68q-27 -33 -69.5 -57t-93.5 -24z" />
<glyph glyph-name="ucircumflex" unicode="&#xfb;" horiz-adv-x="641"
d="M363 752h164l87 -172h-117l-74 56l-104 -56h-135zM167 -13q-75 0 -115.5 45t-40.5 122q0 44 13 92l80 300h227l-73 -272q-3 -11 -4.5 -22t-1.5 -19q0 -22 11.5 -35t36.5 -13q34 0 53.5 22t31.5 67l73 272h227l-146 -546h-227l18 68q-27 -33 -69.5 -57t-93.5 -24z" />
<glyph glyph-name="udieresis" unicode="&#xfc;" horiz-adv-x="641"
d="M244 730h184l-41 -150h-184zM468 730h184l-41 -150h-184zM167 -13q-75 0 -115.5 45t-40.5 122q0 44 13 92l80 300h227l-73 -272q-3 -11 -4.5 -22t-1.5 -19q0 -22 11.5 -35t36.5 -13q34 0 53.5 22t31.5 67l73 272h227l-146 -546h-227l18 68q-27 -33 -69.5 -57t-93.5 -24z
" />
<glyph glyph-name="yacute" unicode="&#xfd;" horiz-adv-x="652"
d="M452 772l218 -57l-202 -135h-164zM103 -163q-54 0 -92.5 10.5t-69.5 30.5l88 167q25 -17 47.5 -24.5t43.5 -7.5q18 0 36 6l-75 527h230l19 -287l163 287h236l-337 -527q-33 -51 -65 -86t-67 -56t-73.5 -30.5t-83.5 -9.5z" />
<glyph glyph-name="thorn" unicode="&#xfe;" horiz-adv-x="671"
d="M322 173q23 0 42.5 10t34 27.5t22.5 39.5t8 46q0 35 -20.5 56.5t-52.5 21.5q-23 0 -43 -10t-34 -27.5t-22 -39.5t-8 -46q0 -35 20.5 -56.5t52.5 -21.5zM157 730h227l-64 -240q29 30 70.5 49.5t85.5 19.5q36 0 68.5 -14.5t57 -41.5t39 -66.5t14.5 -90.5q0 -75 -22.5 -140
t-61 -114t-91 -77t-112.5 -28q-59 0 -98 23.5t-62 59.5l-62 -230h-227z" />
<glyph glyph-name="ydieresis" unicode="&#xff;" horiz-adv-x="652"
d="M242 730h184l-41 -150h-184zM466 730h184l-41 -150h-184zM103 -163q-54 0 -92.5 10.5t-69.5 30.5l88 167q25 -17 47.5 -24.5t43.5 -7.5q18 0 36 6l-75 527h230l19 -287l163 287h236l-337 -527q-33 -51 -65 -86t-67 -56t-73.5 -30.5t-83.5 -9.5z" />
<glyph glyph-name="dotlessi" unicode="&#x131;" horiz-adv-x="301"
d="M110 546h227l-146 -546h-227z" />
<glyph glyph-name="Lslash" unicode="&#x141;" horiz-adv-x="667"
d="M89 228l-83 -22l55 203l83 22l72 269h234l-54 -200l175 47l-55 -203l-174 -47l-26 -97h314l-54 -200h-548z" />
<glyph glyph-name="lslash" unicode="&#x142;" horiz-adv-x="436"
d="M97 248l-94 -25l53 197l94 25l77 285h227l-60 -222l95 25l-53 -198l-95 -25l-83 -310h-227z" />
<glyph glyph-name="OE" unicode="&#x152;" horiz-adv-x="1088"
d="M455 204l78 292h-41q-54 0 -97.5 -15t-70.5 -42q-22 -22 -36 -54.5t-14 -64.5q0 -29 7.5 -48t21.5 -33q17 -17 44 -26t69 -9h39zM386 0q-102 0 -168 25t-106 65q-39 39 -57.5 90t-18.5 115q0 79 29 149t86 127q63 63 154 96t213 33h647l-52 -192h-347l-19 -71h322
l-45 -169h-322l-21 -76h352l-51 -192h-596z" />
<glyph glyph-name="oe" unicode="&#x153;" horiz-adv-x="976"
d="M305 173q21 0 39.5 10t31.5 26.5t20.5 39t7.5 46.5q0 35 -20 57t-53 22q-21 0 -39.5 -10t-31.5 -26.5t-20.5 -39t-7.5 -46.5q0 -35 20 -57t53 -22zM769 320q4 11 4 24q0 23 -15.5 40.5t-43.5 17.5q-26 0 -54.5 -18t-44.5 -64h154zM601 220q2 -33 23 -53t59 -20
q28 0 54.5 11t55.5 33l105 -115q-47 -42 -106.5 -65.5t-134.5 -23.5q-54 0 -98 19.5t-76 51.5q-39 -32 -87.5 -51t-104.5 -19q-65 0 -115.5 20t-85.5 54.5t-53.5 82t-18.5 102.5q0 60 24.5 116t68 99.5t103.5 70t131 26.5q59 0 105.5 -19.5t79.5 -53.5q40 33 90.5 53
t112.5 20q65 0 110 -21t72.5 -54.5t40 -76t12.5 -85.5q0 -27 -4 -53t-12 -49h-351z" />
<glyph glyph-name="Scaron" unicode="&#x160;" horiz-adv-x="653"
d="M272 912h117l74 -56l104 56h135l-179 -172h-164zM309 -14q-105 0 -193 34.5t-152 92.5l134 160q60 -51 120 -75t116 -24q23 0 37 8t14 23q0 8 -3.5 14.5t-15.5 13t-35 16t-61 23.5q-49 18 -85 36.5t-59.5 41.5t-35 51.5t-11.5 67.5q0 51 22.5 95.5t63.5 77.5t99 52.5
t130 19.5q94 0 174.5 -28t137.5 -77l-134 -160q-40 32 -93 55t-109 23q-23 0 -37 -6.5t-14 -21.5q0 -8 4 -13.5t16 -11.5t34 -14.5t58 -21.5q45 -17 81 -35t61.5 -41.5t39 -54t13.5 -70.5q0 -53 -21.5 -99t-62 -79.5t-99.5 -53t-134 -19.5z" />
<glyph glyph-name="scaron" unicode="&#x161;" horiz-adv-x="522"
d="M182 752h117l74 -56l104 56h135l-179 -172h-164zM242 -13q-94 0 -167.5 26.5t-124.5 64.5l100 130q18 -15 42.5 -28t50.5 -23.5t53 -16.5t50 -6q17 0 24.5 5.5t7.5 13.5q0 7 -3.5 12.5t-13.5 11t-26.5 12.5t-41.5 16q-33 12 -60.5 26t-47 32.5t-30.5 43t-11 56.5
q0 41 17 76.5t49.5 62t80 42t109.5 15.5q83 0 149.5 -21.5t108.5 -53.5l-100 -130q-16 11 -36 21.5t-42.5 18.5t-45 13t-42.5 5q-36 0 -36 -18q0 -6 3 -10t11.5 -9t24 -11t40.5 -15q33 -12 61 -25.5t49 -32.5t33 -45t12 -62q0 -34 -13 -69t-42 -63.5t-76.5 -46.5t-116.5 -18
z" />
<glyph glyph-name="Ydieresis" unicode="&#x178;" horiz-adv-x="704"
d="M297 890h184l-41 -150h-184zM521 890h184l-41 -150h-184zM221 267l-137 433h246l57 -234l182 234h277l-398 -462l-64 -238h-234z" />
<glyph glyph-name="Zcaron" unicode="&#x17d;" horiz-adv-x="673"
d="M289 912h117l74 -56l104 56h135l-179 -172h-164zM-9 164l399 344h-295l52 192h621l-44 -164l-400 -344h307l-51 -192h-633z" />
<glyph glyph-name="zcaron" unicode="&#x17e;" horiz-adv-x="559"
d="M192 752h117l74 -56l104 56h135l-179 -172h-164zM-14 142l285 226h-215l47 178h517l-38 -142l-285 -226h225l-48 -178h-526z" />
<glyph glyph-name="florin" unicode="&#x192;" horiz-adv-x="575"
d="M50 -15q-31 0 -56.5 3t-51.5 9l30 155q17 -5 28.5 -6.5t24.5 -1.5q15 0 27 3t22.5 12t20.5 24t21 39l42 93h-54l31 161h95l31 68q21 47 47.5 79.5t61 53t78 29.5t98.5 9q29 0 62 -3.5t56 -8.5l-30 -155q-17 4 -34 6t-29 2q-38 0 -61.5 -15.5t-37.5 -47.5l-8 -17h115
l-31 -161h-156l-61 -138q-24 -54 -52 -91t-61.5 -59.5t-75 -32t-92.5 -9.5z" />
<glyph glyph-name="circumflex" unicode="&#x2c6;"
d="M296 752h164l87 -172h-117l-74 56l-104 -56h-135z" />
<glyph glyph-name="caron" unicode="&#x2c7;"
d="M163 752h117l74 -56l104 56h135l-179 -172h-164z" />
<glyph glyph-name="breve" unicode="&#x2d8;"
d="M359 579q-84 0 -136 42t-52 127v4h122q3 -25 20.5 -40.5t50.5 -15.5q37 0 61 14.5t38 41.5h122q-22 -83 -83.5 -128t-142.5 -45z" />
<glyph glyph-name="dotaccent" unicode="&#x2d9;"
d="M278 730h188l-41 -150h-188z" />
<glyph glyph-name="ring" unicode="&#x2da;"
d="M359 657q17 0 31.5 7.5t24.5 20t15.5 28t5.5 32.5q0 23 -14.5 39.5t-40.5 16.5q-17 0 -31.5 -7.5t-24.5 -20t-15.5 -28.5t-5.5 -32q0 -23 14.5 -39.5t40.5 -16.5zM356 591q-60 0 -95.5 34.5t-35.5 85.5q0 32 12.5 60.5t34 49.5t50.5 33.5t62 12.5q60 0 95.5 -34.5
t35.5 -85.5q0 -32 -12.5 -60.5t-34 -49.5t-50.5 -33.5t-62 -12.5z" />
<glyph glyph-name="ogonek" unicode="&#x2db;"
d="M271 -164q-112 -14 -166 8t-54 70q0 21 11.5 45.5t39.5 50.5h133q-11 -17 -15 -27t-4 -19q0 -15 19.5 -25t61.5 -8z" />
<glyph glyph-name="tilde" unicode="&#x2dc;"
d="M126 621q32 81 76.5 117.5t91.5 36.5q26 0 49 -10t40 -22q14 -10 27 -16.5t23 -6.5q19 0 33.5 14.5t28.5 40.5l97 -41q-32 -81 -76.5 -117.5t-91.5 -36.5q-26 0 -49 10t-40 22q-14 10 -27 16.5t-23 6.5q-19 0 -33.5 -14.5t-28.5 -40.5z" />
<glyph glyph-name="hungarumlaut" unicode="&#x2dd;"
d="M250 580h-151l138 192l172 -49l33 49l200 -57l-177 -135h-151l59 89z" />
<glyph glyph-name="Omega" unicode="&#x3a9;" horiz-adv-x="848"
d="M103 371h-64l47 175h64q28 105 86.5 148t158.5 43q38 0 70.5 -4.5t67.5 -15.5l-38 -141q-15 5 -31.5 8t-30.5 3q-28 0 -41.5 -10t-19.5 -33l-1 -4h115l-45 -169h-111l-99 -371h-227zM527 371h-64l47 175h64q28 105 86.5 148t158.5 43q38 0 70.5 -4.5t67.5 -15.5l-38 -141
q-15 5 -31.5 8t-30.5 3q-28 0 -41.5 -10t-19.5 -33l-1 -4h115l-45 -169h-111l-99 -371h-227z" />
<glyph glyph-name="Omega" unicode="&#x2126;" horiz-adv-x="848"
d="M103 371h-64l47 175h64q28 105 86.5 148t158.5 43q38 0 70.5 -4.5t67.5 -15.5l-38 -141q-15 5 -31.5 8t-30.5 3q-28 0 -41.5 -10t-19.5 -33l-1 -4h115l-45 -169h-111l-99 -371h-227zM527 371h-64l47 175h64q28 105 86.5 148t158.5 43q38 0 70.5 -4.5t67.5 -15.5l-38 -141
q-15 5 -31.5 8t-30.5 3q-28 0 -41.5 -10t-19.5 -33l-1 -4h115l-45 -169h-111l-99 -371h-227z" />
<glyph glyph-name="pi" unicode="&#x3c0;" horiz-adv-x="830"
d="M451 360q25 0 40 11t15 31v2q0 21 -14 31.5t-40 10.5h-35v-86h34zM288 549h173q78 0 125 -34.5t47 -103.5v-2q0 -34 -12.5 -60.5t-35.5 -44.5t-55 -27t-71 -9h-42v-104h-129v385zM438 25q69 0 127.5 26t101.5 70t67.5 103.5t24.5 125.5v2q0 66 -24.5 125t-67 103
t-101 69.5t-126.5 25.5q-69 0 -127.5 -26t-101.5 -70t-67.5 -103.5t-24.5 -125.5v-2q0 -66 24 -125t67 -103t101.5 -69.5t126.5 -25.5zM438 -15q-76 0 -142 29t-114.5 78.5t-76.5 115.5t-28 140v2q0 74 28 140t77 116t115.5 79.5t142.5 29.5t142 -29t114.5 -78.5
t76.5 -115.5t28 -140v-2q0 -74 -28 -140t-77 -116t-115.5 -79.5t-142.5 -29.5z" />
<glyph glyph-name="endash" unicode="&#x2013;" horiz-adv-x="521"
d="M72 406h448l-49 -182h-448z" />
<glyph glyph-name="emdash" unicode="&#x2014;" horiz-adv-x="891"
d="M72 406h818l-49 -182h-818z" />
<glyph glyph-name="quoteleft" unicode="&#x2018;" horiz-adv-x="285"
d="M87 507q12 46 31.5 82t51 61t78 39.5t113.5 17.5l6 -83q-110 -13 -131 -89h91l-62 -230h-232z" />
<glyph glyph-name="quoteright" unicode="&#x2019;" horiz-adv-x="285"
d="M40 381q110 13 131 89h-91l62 230h232l-54 -202q-13 -46 -32.5 -82t-51 -61t-77.5 -39.5t-113 -17.5z" />
<glyph glyph-name="quotesinglbase" unicode="&#x201a;" horiz-adv-x="285"
d="M-87 -89q110 13 131 89h-91l62 230h232l-54 -202q-13 -46 -32.5 -82t-51 -61t-77.5 -39.5t-113 -17.5z" />
<glyph glyph-name="quotedblleft" unicode="&#x201c;" horiz-adv-x="558"
d="M88 506q12 46 30.5 82t49.5 61t76.5 39.5t112.5 17.5l6 -83q-57 -7 -86 -29t-40 -60h86l-62 -230h-227zM366 506q12 46 30.5 82t49.5 61t76.5 39.5t112.5 17.5l6 -83q-57 -7 -86 -29t-40 -60h86l-62 -230h-227z" />
<glyph glyph-name="quotedblright" unicode="&#x201d;" horiz-adv-x="558"
d="M40 381q57 7 86 29t40 60h-86l62 230h227l-54 -202q-13 -46 -31.5 -82t-49 -61t-76 -39.5t-112.5 -17.5zM318 381q57 7 86 29t40 60h-86l62 230h227l-54 -202q-13 -46 -31.5 -82t-49 -61t-76 -39.5t-112.5 -17.5z" />
<glyph glyph-name="quotedblbase" unicode="&#x201e;" horiz-adv-x="558"
d="M-87 -89q57 7 86 29t40 60h-86l62 230h227l-54 -202q-13 -46 -31.5 -82t-49 -61t-76 -39.5t-112.5 -17.5zM191 -89q57 7 86 29t40 60h-86l62 230h227l-54 -202q-13 -46 -31.5 -82t-49 -61t-76 -39.5t-112.5 -17.5z" />
<glyph glyph-name="dagger" unicode="&#x2020;" horiz-adv-x="412"
d="M214 478l-134 -15l33 123l125 -15l16 129h132l-52 -129l133 15l-33 -123l-126 15l-63 -270h-114z" />
<glyph glyph-name="daggerdbl" unicode="&#x2021;" horiz-adv-x="432"
d="M128 129l-132 -15l33 123l127 -15l18 128l52 128l-137 -15l33 123l126 -15l16 129h132l-52 -129l132 15l-33 -123l-127 15l-18 -128l-52 -128l137 15l-33 -123l-126 15l-16 -129h-132z" />
<glyph glyph-name="bullet" unicode="&#x2022;" horiz-adv-x="502"
d="M246 160q-72 0 -112 43.5t-40 109.5q0 42 14.5 83t41.5 74t64.5 53.5t84.5 20.5q72 0 112 -43.5t40 -109.5q0 -42 -14.5 -83t-41.5 -74t-65 -53.5t-84 -20.5z" />
<glyph glyph-name="ellipsis" unicode="&#x2026;" horiz-adv-x="845"
d="M14 228h230l-61 -228h-230zM295 228h230l-61 -228h-230zM576 228h230l-61 -228h-230z" />
<glyph glyph-name="perthousand" unicode="&#x2030;" horiz-adv-x="1409"
d="M725 110q16 0 29.5 8.5t23.5 22t15 31t5 36.5q0 23 -13.5 39.5t-36.5 16.5q-17 0 -30 -8.5t-23 -22t-15 -31t-5 -36.5q0 -23 13.5 -39.5t36.5 -16.5zM1168 110q16 0 29.5 8.5t23.5 22t15 31t5 36.5q0 23 -13.5 39.5t-36.5 16.5q-17 0 -30 -8.5t-23 -22t-15 -31t-5 -36.5
q0 -23 13.5 -39.5t36.5 -16.5zM259 436q16 0 29.5 8.5t23.5 22t15 31t5 36.5q0 23 -13.5 39.5t-36.5 16.5q-17 0 -30 -8.5t-23 -22t-15 -31t-5 -36.5q0 -23 13.5 -39.5t36.5 -16.5zM721 -11q-45 0 -78.5 13t-56 36.5t-34 54.5t-11.5 67q0 42 15 82.5t43 72t66.5 51
t86.5 19.5q45 0 78.5 -13t56 -36.5t34 -54.5t11.5 -67q0 -42 -15 -82.5t-43 -72t-66.5 -51t-86.5 -19.5zM1164 -11q-45 0 -78.5 13t-56 36.5t-34 54.5t-11.5 67q0 42 15 82.5t43 72t66.5 51t86.5 19.5q45 0 78.5 -13t56 -36.5t34 -54.5t11.5 -67q0 -42 -15 -82.5t-43 -72
t-66.5 -51t-86.5 -19.5zM781 700h151l-706 -700h-151zM255 315q-45 0 -78.5 13t-56 36.5t-34 54.5t-11.5 67q0 42 15 82.5t43 72t66.5 51t86.5 19.5q45 0 78.5 -13t56 -36.5t34 -54.5t11.5 -67q0 -42 -15 -82.5t-43 -72t-66.5 -51t-86.5 -19.5z" />
<glyph glyph-name="guilsinglleft" unicode="&#x2039;" horiz-adv-x="341"
d="M10 234l24 88l199 196l122 -111l-161 -156l79 -160l-160 -71z" />
<glyph glyph-name="guilsinglright" unicode="&#x203a;" horiz-adv-x="341"
d="M-17 131l161 156l-79 160l160 71l103 -214l-24 -88l-199 -196z" />
<glyph glyph-name="fraction" unicode="&#x2044;" horiz-adv-x="572"
d="M552 758h182l-694 -856h-182z" />
<glyph glyph-name="fraction" unicode="&#x2215;" horiz-adv-x="572"
d="M552 758h182l-694 -856h-182z" />
<glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="690"
d="M182 612h-91l23 88h284l-23 -88h-91l-59 -220h-102zM431 700h102l37 -108l95 108h113l-82 -308h-103l41 153l-101 -110h-1l-41 110l-41 -153h-101z" />
<glyph glyph-name="radical" unicode="&#x221a;" horiz-adv-x="1149"
d="M1008 730h227l-196 -730h-227zM103 371h-64l47 175h64q28 105 86.5 148t158.5 43q38 0 70.5 -4.5t67.5 -15.5l-38 -141q-15 5 -31.5 8t-30.5 3q-28 0 -41.5 -10t-19.5 -33l-1 -4h115l-45 -169h-111l-99 -371h-227zM527 371h-64l47 175h64q28 105 86.5 148t158.5 43
q38 0 70.5 -4.5t67.5 -15.5l-38 -141q-15 5 -31.5 8t-30.5 3q-28 0 -41.5 -10t-19.5 -33l-1 -4h115l-45 -169h-111l-99 -371h-227z" />
<glyph glyph-name="approxequal" unicode="&#x2248;" horiz-adv-x="1149"
d="M958 546h227l-146 -546h-227zM103 371h-64l47 175h64q28 105 86.5 148t158.5 43q38 0 70.5 -4.5t67.5 -15.5l-38 -141q-15 5 -31.5 8t-30.5 3q-28 0 -41.5 -10t-19.5 -33l-1 -4h115l-45 -169h-111l-99 -371h-227zM527 371h-64l47 175h64q28 105 86.5 148t158.5 43
q38 0 70.5 -4.5t67.5 -15.5l-38 -141q-15 5 -31.5 8t-30.5 3q-28 0 -41.5 -10t-19.5 -33l-1 -4h115l-45 -169h-111l-99 -371h-227zM1004 730h235l-39 -145h-235z" />
<glyph glyph-name="NUL" horiz-adv-x="0"
/>
<glyph glyph-name="apple" horiz-adv-x="967"
d="M417 64q0 -7 -2.5 -12t-9.5 -5q-6 0 -9 5t-3 12q0 16 12 16t12 -16zM352 64h-3q-8 0 -8 8q0 6 7 6q4 0 4 -4v-10zM553 79q4 0 0 -9q-5 9 0 9zM393 182q0 -7 -4 -7h-5q-11 0 -18.5 10t-7.5 22q0 17 14 17h6q3 -1 3.5 -1.5t2.5 -5.5zM716 187q0 -13 -11 -13q-9 0 -17 11.5
t-8 26.5q0 14 11 14q9 0 17 -11.5t8 -27.5zM275 200q-8 0 -11.5 5t-3.5 10q0 9 8 9t9 -5l3 -19h-5zM381 384q-13 0 -13 11t13 11h11v-22h-11zM684 535q0 -13 -11 -13q-9 0 -17 11.5t-8 26.5q0 14 11 14q9 0 17 -11.5t8 -27.5zM272 553q-3 -4 -7 -4t-4 2q0 3 4 3q5 0 7 -1z
M566 553q-3 -4 -7 -4t-4 2q0 3 4 3q5 0 7 -1zM171 548q-8 0 -11.5 5t-3.5 10q0 9 8 9t9 -5l3 -19h-5zM441 -88q0 13 -11 13t-11 -12q0 -13 11 -13t11 12zM800 -88q0 13 -11 13t-11 -12q0 -13 11 -13t11 12zM559 -80l-5 -12h10zM394 -83q0 8 -11 7v-13q11 0 11 6zM525 -82
q0 8 -11 6v-12q11 -1 11 6zM606 -83q0 8 -11 7v-13q11 0 11 6zM309 48q-2 0 -3 1q-3 1 -3 5v20q0 2 3 4q1 1 3 1v2h-18v-2q1 0 3 -1q3 -3 3 -4v-9q-2 0 -4 2l-8 8q-3 1 -1 3q1 1 2 1v2h-14v-2q1 0 3 -1t2.5 -1.5t2.5 -1.5l10 -9l-13 -13q-1 -1 -2 -1.5t-2 -1.5q-2 -1 -3 -2
v-2h17v2q-2 0 -3 1t1 4l8 8q2 2 4 2v-9q0 -2 -3 -5q-2 -1 -3 -1v-2h18v2zM364 48q-2 0 -3 1q-2 2 -2 4v20q0 3 2 5q1 1 3 1v2h-18q-13 0 -13 -9q0 -5 9 -9l-7 -10q-2 -2 -3.5 -2.5t-2.5 -1.5l-2 -1v-2h11l7 12q3 4 7 4v-9q0 -2 -1 -2.5t-2 -1.5t-2 -1v-2h17v2zM425 64
q0 8 -5 13t-15 5t-15 -5t-5 -13t5 -13.5t15 -5.5t15 5.5t5 13.5zM480 81h-15v-2q1 0 2 -1t-1 -4l-6 -9l-6 9q-2 2 0 4q1 1 3 1v2h-15v-2q1 0 3 -1t5 -4l8 -12v-8q0 -2 -3 -5q-1 -1 -2 -1v-2h17v2q-2 0 -3 1q-2 2 -2 5v8l8 12q1 2 2.5 2.5t2.5 1.5t2 1v2zM568 81v-2q1 0 2 -1
t0 -4l-9 -19l-5 10l4 8q1 2 2 2.5t2 1.5l2 2v2h-26l1 -2q1 0 2 -1l2 -2l3 -3l3 -5l-7 -13l-8 18q-2 3 0 5q1 1 2 1v2h-13v-2q1 0 2 -1q3 -3 4 -5l13 -27h1q1 -1 1 0l8 16l9 -16h1l12 27q1 2 2.5 3t2.5 2t2 1v2h-15zM633 48q-2 -1 -3 0q-2 0 -2 5v21q0 3 2 5h3v2h-29l-2 -10
l2 -1q0 2 2 4q2 4 7 4h4q4 0 4 -3v-10h-4q-3 0 -5 2q-1 1 -1 3h-2v-13h2q0 1 1 3q3 3 5 3h4v-11q0 -3 -4 -3h-4q-4 0 -8 4q-2 2 -2 5l-2 -1l2 -11h30v2zM694 48q-2 0 -3 1q-3 1 -3 4v20q0 2 3 4q1 1 3 2v2h-10l-24 -26v18q0 3 3 5q1 1 3 1v2h-15v-2q1 0 3 -1q3 -3 3 -5v-28
h3l25 28v-20q0 -1 -3 -4q-1 -1 -2 -1v-2h14v2zM827 133h-685v-6h685v6zM306 174q-2 0 -4 1t-3.5 2t-2.5 5l-7 35q-1 5 3 7q2 1 4 1l-1 3h-27q-20 0 -20 -15q0 -6 5.5 -10t13.5 -5l-9 -16q-2 -4 -4.5 -5t-4.5 -2q-3 -1 -5 -1l1 -3h19l12 23q1 3 5 3l3 -15q1 -5 -3 -7
q-2 -1 -4 -1l1 -3h29zM413 175q-2 -1 -4 0q-5 2 -6 9l-8 31q-3 9 8 10l-1 3h-30q-9 0 -17 -5.5t-8 -16.5q0 -16 11 -25.5t24 -9.5h32zM522 174q-1 0 -3 1q-5 2 -6 9l-7 32q-1 6 3 8q2 1 5 1l-1 3h-14l-29 -42l-5 30q-1 6 3 8q2 1 4 1l-1 3h-21l1 -3q2 0 4 -1q3 -2 5 -8
l8 -45l3 -1l30 44l6 -30q1 -7 -2 -9q-2 -1 -4 -1l1 -3h21zM620 228h-29l1 -3q2 0 4 -1q5 -2 6 -8l5 -21q2 -10 1 -15t-12 -5q-8 0 -13 6.5t-7 15.5l-4 19q-1 7 3 9q2 1 4 0v3h-24l1 -3q2 0 5 -1q5 -2 6 -8l4 -19q2 -8 8 -17.5t20 -9.5q17 0 19 8t0 16l-5 22q-2 4 -0.5 6
t3.5 3t5 0zM822 174q-2 0 -4 1t-3.5 2t-2.5 5l-7 35q-1 5 3 7q2 1 4 1l-1 3h-45v-10v-7h4q-1 3 1 6q2 7 12 7h4q5 0 6 -6l3 -16h-4q-5 0 -9 4q-2 2 -3 5h-3l5 -23h3q0 2 1 5q2 6 7 6h4l3 -17q1 -5 -3 -7q-2 -1 -4 -1l1 -3h29zM203 217q-3 5 -6.5 9t-11.5 4q-15 0 -14 -23
q-3 10 -8 16.5t-13 6.5q-5 0 -8.5 -3t-3.5 -9l3 -1q0 6 8 6q10 0 15.5 -10.5t8.5 -22.5q2 -7 1 -9.5t-3 -4.5t-4 -1l1 -4h28l-1 4q-2 -1 -4 0q-5 2 -6 9q-5 17 -5 25q0 13 9 13q5 0 7.5 -2.5l4.5 -4.5zM728 192q0 15 -11.5 26.5t-25.5 11.5q-7 0 -15 -5t-8 -17
q0 -16 11.5 -27t25.5 -11q7 0 15 5t8 17zM827 277h-685v-6h685v6zM283 341h-14v65h14v34h-141v-62h41v28h33v-20h-24v-24h24v-21h-33v28h-41v-61h141v33zM458 341h-14v65h14v34h-96q-22 0 -34.5 -11.5t-12.5 -28.5t12.5 -28.5t34.5 -11.5h30v-19h-15v-33h81v33zM648 440h-81
v-34h11l-15 -23l-15 23h10v34h-62v-34h12l37 -46v-19h-14v-33h81v33h-15v20l37 45h14v34zM827 440h-147v-62h36v28h11v-65h-14v-33h81v33h-14v65h11v-28h36v62zM827 481h-685v-6h685v6zM400 521q0 2 -3 5t-10 4q-4 3 -4.5 10.5t-2 16t-6 15t-16.5 6.5q-5 0 -9 -3.5t-4 -6.5
q0 -5 5 -5q4 0 4 6t5 6t6.5 -5t2.5 -12t3.5 -14.5t8.5 -13.5q-11 0 -14.5 -6.5t-8.5 -6.5t-5 4q0 2 1 2.5t1 2.5q0 5 -5 5t-5 -7q0 -5 5 -8.5t10 -3.5q13 0 15 6.5t10 6.5q3 -7 12 -7q4 0 4 3zM202 522q-2 0 -4 1t-3.5 2t-2.5 5l-7 35q-1 5 3 7q2 1 4 1l-1 3h-27
q-20 0 -20 -15q0 -6 5.5 -10t13.5 -5l-9 -16q-2 -4 -4.5 -5t-4.5 -2q-3 -1 -5 -1l1 -3h19l12 23q1 3 5 3l3 -15q1 -5 -3 -7q-2 -1 -4 -1l1 -3h29zM497 522q-2 0 -4 1t-3.5 2t-2.5 5l-7 35q-1 5 3 7q2 1 4 1l-1 3h-45v-10v-7h4q-1 3 1 6q2 7 12 7h4q5 0 6 -6l3 -16h-4
q-5 0 -9 4q-2 2 -3 5h-3l5 -23h3q0 2 1 5q2 6 7 6h4l3 -17q1 -5 -3 -7q-2 -1 -4 -1l1 -3h29zM820 522q-2 0 -4 1t-3.5 2t-2.5 5l-7 35q-1 5 3 7q2 1 4 1l-1 3h-28l1 -3q2 0 4 -1q4 -2 5 -7l3 -15h-24l-3 15q-1 5 3 7q2 1 4 1l-1 3h-29l1 -3q2 0 4 -1q5 -2 6 -7l7 -35
q1 -5 -3 -7q-2 -1 -4 -1l1 -3h29l-1 3q-2 0 -4 1t-3.5 2t-2.5 5l-3 16h24l3 -16q1 -5 -3 -7q-2 -1 -4 -1l1 -3h29zM295 537q0 12 -14 17q5 3 5 9q0 5 -5 10t-16 5q-13 0 -13 -11q0 -6 5 -6q4 0 4 3t-1.5 3.5t-1.5 2.5q0 5 7 5q10 0 10 -12q0 -4 -2 -6q-16 2 -16 -6
q0 -6 8 -6q6 0 11 5q6 -5 6 -15q0 -14 -12 -14t-12 9q0 3 3 3q1 0 2 -1t3 -1q4 0 4 5t-7 5q-9 0 -9 -10q0 -13 16 -13q13 0 19 5.5t6 13.5zM589 537q0 12 -14 17q5 3 5 9q0 5 -5 10t-16 5q-13 0 -13 -11q0 -6 5 -6q4 0 4 3t-1.5 3.5t-1.5 2.5q0 5 7 5q10 0 10 -12
q0 -4 -2 -6q-16 2 -16 -6q0 -6 8 -6q6 0 11 5q6 -5 6 -15q0 -14 -12 -14t-12 9q0 3 3 3q1 0 2 -1t3 -1q4 0 4 5t-7 5q-9 0 -9 -10q0 -13 16 -13q13 0 19 5.5t6 13.5zM696 540q0 15 -11.5 26.5t-25.5 11.5q-7 0 -15 -5t-8 -17q0 -16 11.5 -27t25.5 -11q7 0 15 5t8 17z
M827 624h-685v-6h685v6zM439 664q-2 -1 -3 0q-2 0 -2 5v21q0 3 2 5h3v2h-29l-2 -10l2 -1q0 2 2 4q2 4 7 4h4q4 0 4 -3v-10h-4q-3 0 -5 2q-1 1 -1 3h-2v-13h2q0 1 1 3q3 3 5 3h4v-11q0 -3 -4 -3h-4q-4 0 -8 4q-2 2 -2 5l-2 -1l2 -11h30v2zM504 664q-2 -1 -3 0q-3 0 -3 5v21
q0 3 3 5h3v2h-18v-1v-1h2q3 -3 3 -5v-9h-17v9q0 3 2 5h3v1v1h-17v-2h2q3 -3 3 -5v-21q0 -2 -1 -2.5t-2 -1.5t-2 -1v-2h17v2q-2 0 -3 1q-2 2 -2 4v10h17v-10q0 -5 -3 -5q-1 -1 -2 0v-2h18v2zM559 686v4q0 2 -0.5 4t-0.5 4q-2 -1 -17 -1t-18 1q0 -2 -0.5 -4t-0.5 -4v-4h2
q1 2 3 4q5 5 7 5q3 0 3 -3v-23q0 -5 -3 -5q-1 -1 -2 0v-2h17v2q-2 -1 -3 0q-2 0 -2 5v23q0 3 3 3t8 -5q2 -2 2 -4h2zM284 -101q0 -4 -4 -4t-4 4t4 4t4 -4zM716 -101q0 -4 -4 -4t-4 4t4 4t4 -4zM143 -105h-1l-11 23l-10 -23h-1l-12 34l6 1l7 -23l10 23h1l10 -23l7 22h6z
M199 -105h-1l-11 23l-10 -23h-1l-12 34l6 1l7 -23l10 23h1l10 -23l7 22h6zM255 -105h-1l-11 23l-10 -23h-1l-12 34l6 1l7 -23l10 23h1l10 -23l7 22h6zM323 -76h-12v-28h-6v28h-12v5h30v-5zM351 -90v-14h-6v14l-14 19l6 1l11 -15l9 14h7zM400 -82q0 -12 -17 -12v-10h-6v33
q14 2 18.5 -2t4.5 -9zM447 -87q0 -8 -4.5 -13t-12.5 -5t-12.5 5t-4.5 12q0 8 5 13t13 5q7 0 11.5 -5t4.5 -12zM491 -101q-6 -4 -13 -4q-8 0 -13 4.5t-5 12.5t5.5 13t13.5 5q6 0 12 -4l-2 -5q-4 4 -11 4q-12 0 -12 -13q0 -12 13 -12q2 0 6 2v7h-9v5h15v-15zM527 -104l-8 11
h-5v-11h-6v33q14 2 18.5 -1.5t4.5 -8.5q0 -7 -7 -10l10 -13h-7zM570 -104l-4 8h-14l-3 -8h-6l15 34h2l16 -34h-6zM612 -82q0 -12 -17 -12v-10h-6v33q14 2 18.5 -2t4.5 -9zM650 -104v15h-16v-15h-6v33h6v-13h16v13h6v-33h-6zM689 -90v-14h-6v14l-14 19l6 1l11 -15l9 14h7z
M757 -102q-3 -3 -10 -3q-18 0 -18 17q0 8 5 13t13 5q6 0 11 -3l-2 -5q-3 3 -9 3q-5 0 -8.5 -3.5t-3.5 -8.5q0 -13 13 -13q4 0 10 4zM806 -87q0 -8 -4.5 -13t-12.5 -5t-12.5 5t-4.5 12q0 8 5 13t13 5q7 0 11.5 -5t4.5 -12zM853 -104l-3 20l-10 -21h-2l-10 21l-3 -20h-6l6 34
h1l13 -26l13 26h1l6 -34h-6zM101 0v750h767v-750h-767z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,8 @@
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
font-family: 'Bakbak One Regular';
font-style: normal;
font-weight: normal;
src: local('Bakbak One Regular'), url('BakbakOneRegular.woff') format('woff');
}

View File

@ -0,0 +1,96 @@
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
font-family: 'Chakra Petch Regular';
font-style: normal;
font-weight: normal;
src: local('Chakra Petch Regular'), url('ChakraPetch-Regular.woff') format('woff');
}
@font-face {
font-family: 'Chakra Petch Italic';
font-style: normal;
font-weight: normal;
src: local('Chakra Petch Italic'), url('ChakraPetch-Italic.woff') format('woff');
}
@font-face {
font-family: 'Chakra Petch ExtraLight';
font-style: normal;
font-weight: normal;
src: local('Chakra Petch ExtraLight'), url('ChakraPetch-ExtraLight.woff') format('woff');
}
@font-face {
font-family: 'Chakra Petch ExtraLight Italic';
font-style: normal;
font-weight: normal;
src: local('Chakra Petch ExtraLight Italic'), url('ChakraPetch-ExtraLightItalic.woff') format('woff');
}
@font-face {
font-family: 'Chakra Petch Light';
font-style: normal;
font-weight: normal;
src: local('Chakra Petch Light'), url('ChakraPetch-Light.woff') format('woff');
}
@font-face {
font-family: 'Chakra Petch Light Italic';
font-style: normal;
font-weight: normal;
src: local('Chakra Petch Light Italic'), url('ChakraPetch-LightItalic.woff') format('woff');
}
@font-face {
font-family: 'Chakra Petch Medium';
font-style: normal;
font-weight: normal;
src: local('Chakra Petch Medium'), url('ChakraPetch-Medium.woff') format('woff');
}
@font-face {
font-family: 'Chakra Petch Medium Italic';
font-style: normal;
font-weight: normal;
src: local('Chakra Petch Medium Italic'), url('ChakraPetch-MediumItalic.woff') format('woff');
}
@font-face {
font-family: 'Chakra Petch SemiBold';
font-style: normal;
font-weight: normal;
src: local('Chakra Petch SemiBold'), url('ChakraPetch-SemiBold.woff') format('woff');
}
@font-face {
font-family: 'Chakra Petch SemiBold Italic';
font-style: normal;
font-weight: normal;
src: local('Chakra Petch SemiBold Italic'), url('ChakraPetch-SemiBoldItalic.woff') format('woff');
}
@font-face {
font-family: 'Chakra Petch Bold';
font-style: normal;
font-weight: normal;
src: local('Chakra Petch Bold'), url('ChakraPetch-Bold.woff') format('woff');
}
@font-face {
font-family: 'Chakra Petch Bold Italic';
font-style: normal;
font-weight: normal;
src: local('Chakra Petch Bold Italic'), url('ChakraPetch-BoldItalic.woff') format('woff');
}

View File

@ -0,0 +1,13 @@
@charset 'UTF-8';
@font-face {
font-family: 'Gotham Ultra';
src: url('../fonts/GothamUltra-Italic.eot');
src: url('../fonts/GothamUltra-Italic.eot?#iefix') format('embedded-opentype'),
url('../fonts/GothamUltra-Italic.woff2') format('woff2'),
url('../fonts/GothamUltra-Italic.woff') format('woff'),
url('../fonts/GothamUltra-Italic.svg#GothamUltra-Italic') format('svg');
font-weight: 900;
font-style: italic;
font-display: swap;
}

View File

@ -0,0 +1,144 @@
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
font-family: 'Poppins Regular';
font-style: normal;
font-weight: normal;
src: local('Poppins Regular'), url('Poppins-Regular.woff') format('woff');
}
@font-face {
font-family: 'Poppins Italic';
font-style: normal;
font-weight: normal;
src: local('Poppins Italic'), url('Poppins-Italic.woff') format('woff');
}
@font-face {
font-family: 'Poppins Thin';
font-style: normal;
font-weight: normal;
src: local('Poppins Thin'), url('Poppins-Thin.woff') format('woff');
}
@font-face {
font-family: 'Poppins Thin Italic';
font-style: normal;
font-weight: normal;
src: local('Poppins Thin Italic'), url('Poppins-ThinItalic.woff') format('woff');
}
@font-face {
font-family: 'Poppins ExtraLight';
font-style: normal;
font-weight: normal;
src: local('Poppins ExtraLight'), url('Poppins-ExtraLight.woff') format('woff');
}
@font-face {
font-family: 'Poppins ExtraLight Italic';
font-style: normal;
font-weight: normal;
src: local('Poppins ExtraLight Italic'), url('Poppins-ExtraLightItalic.woff') format('woff');
}
@font-face {
font-family: 'Poppins Light';
font-style: normal;
font-weight: normal;
src: local('Poppins Light'), url('Poppins-Light.woff') format('woff');
}
@font-face {
font-family: 'Poppins Light Italic';
font-style: normal;
font-weight: normal;
src: local('Poppins Light Italic'), url('Poppins-LightItalic.woff') format('woff');
}
@font-face {
font-family: 'Poppins Medium';
font-style: normal;
font-weight: normal;
src: local('Poppins Medium'), url('Poppins-Medium.woff') format('woff');
}
@font-face {
font-family: 'Poppins Medium Italic';
font-style: normal;
font-weight: normal;
src: local('Poppins Medium Italic'), url('Poppins-MediumItalic.woff') format('woff');
}
@font-face {
font-family: 'Poppins SemiBold';
font-style: normal;
font-weight: normal;
src: local('Poppins SemiBold'), url('Poppins-SemiBold.woff') format('woff');
}
@font-face {
font-family: 'Poppins SemiBold Italic';
font-style: normal;
font-weight: normal;
src: local('Poppins SemiBold Italic'), url('Poppins-SemiBoldItalic.woff') format('woff');
}
@font-face {
font-family: 'Poppins Bold';
font-style: normal;
font-weight: normal;
src: local('Poppins Bold'), url('Poppins-Bold.woff') format('woff');
}
@font-face {
font-family: 'Poppins Bold Italic';
font-style: normal;
font-weight: normal;
src: local('Poppins Bold Italic'), url('Poppins-BoldItalic.woff') format('woff');
}
@font-face {
font-family: 'Poppins ExtraBold';
font-style: normal;
font-weight: normal;
src: local('Poppins ExtraBold'), url('Poppins-ExtraBold.woff') format('woff');
}
@font-face {
font-family: 'Poppins ExtraBold Italic';
font-style: normal;
font-weight: normal;
src: local('Poppins ExtraBold Italic'), url('Poppins-ExtraBoldItalic.woff') format('woff');
}
@font-face {
font-family: 'Poppins Black';
font-style: normal;
font-weight: normal;
src: local('Poppins Black'), url('Poppins-Black.woff') format('woff');
}
@font-face {
font-family: 'Poppins Black Italic';
font-style: normal;
font-weight: normal;
src: local('Poppins Black Italic'), url('Poppins-BlackItalic.woff') format('woff');
}

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><defs><style>.cls-1{fill:#db1b1b;}.cls-2{fill:#c11a1a;}.cls-3{fill:#a65c3b;}.cls-4{fill:#9e4830;}.cls-5{fill:none;stroke:#27273d;stroke-linecap:round;stroke-miterlimit:10;stroke-width:7px;}.cls-6{fill:#27273d;}.cls-7{fill:#893d2b;}.cls-8{fill:#fff;}.cls-9{fill:#f6d372;}.cls-10{fill:#f6c752;}.cls-11{fill:#f7db94;}.cls-12{fill:#7cc8fb;}.cls-13{fill:#a0daf9;}</style></defs><title>Avatar Users2</title><g id="BULINE"><circle class="cls-1" cx="256" cy="256.05" r="256"/></g><g id="Icons"><path class="cls-2" d="M484.77,371a256.82,256.82,0,0,1-85,96.82c-.29.21-.59.41-.89.61q-4.33,2.93-8.79,5.67a254.52,254.52,0,0,1-107.87,36.57,259.75,259.75,0,0,1-52.7,0,254.46,254.46,0,0,1-109.93-38q-3.9-2.46-7.71-5.06c-1.38-.94-2.74-1.89-4.1-2.87A257.06,257.06,0,0,1,27.23,371,257.16,257.16,0,0,1,135.81,259.92a.09.09,0,0,1,.06,0,253.67,253.67,0,0,1,47.22-19.35h0l.19-.05q5.38-1.6,10.86-3c2.06-.51,4.14-1,6.22-1.46q7.05-1.56,14.23-2.73,10.66-1.74,21.63-2.58Q246,230,256,230q12.81,0,25.32,1.24a254.1,254.1,0,0,1,27.91,4.31q3.87.81,7.68,1.74,8.25,2,16.27,4.55A256.32,256.32,0,0,1,484.77,371Z"/><path class="cls-3" d="M399.78,467.82c-.29.21-.59.41-.89.61q-4.33,2.93-8.79,5.67a254.52,254.52,0,0,1-107.87,36.57,259.75,259.75,0,0,1-52.7,0,254.46,254.46,0,0,1-109.93-38q-3.9-2.46-7.71-5.06c-1.38-.94-2.74-1.89-4.1-2.87,14.48-20.74,34.08-38.21,60.88-50.95a46.92,46.92,0,0,1,5.78-2.13c12.89-4,37.61-9.46,43-15.67,7.08-8.21,3.79-22.95,3.79-33.6,0-1.56,0-3,0-4.37v-.08c-.4-24.77-3.69-17.34,15.58-23.79a13.4,13.4,0,0,1,2.18-.43h0c10.41-1.55,49-3.5,53.2.43,3.91,3.67,3.44,12.51,2.24,22.09a.5.5,0,0,1,0,.12c-1.36,11.09-3.67,23.13-1.23,29.37,6.86,17.59,21.66,17.34,38.9,25.37.21.09.41.18.62.29C363.19,425.69,384.49,445,399.78,467.82Z"/><path class="cls-3" d="M379.14,160.29v83.16c0,62-49.38,81.9-85.37,113.46a55.39,55.39,0,0,1-73.79,0c-36-31.56-85.37-51.42-85.37-113.46V160.29c0-.28,0-.56,0-.84.29-43.4,23.58-81,57.58-99.75,1.1-.62,2.22-1.21,3.34-1.77A100.93,100.93,0,0,1,237,47.08c1.47-.08,2.95-.11,4.43-.11h31a102.7,102.7,0,0,1,67.89,25.85,105.51,105.51,0,0,1,8.17,8A116.19,116.19,0,0,1,379,154h0C379.09,156.07,379.14,158.17,379.14,160.29Z"/><path class="cls-4" d="M183.3,243.45V160.29c0-59.38,43-108.12,97.86-112.91-2.94-.28-5.91-.41-8.92-.41h-31c-59,0-106.78,50.74-106.78,113.32v41.16a24.47,24.47,0,0,0,0,48.94h.24c3.55,56.62,50.5,76.19,85.12,106.51a55.2,55.2,0,0,0,61.29,8.37,56.46,56.46,0,0,1-12.5-8.37C232.66,325.36,183.3,305.48,183.3,243.45Z"/><circle class="cls-3" cx="379.02" cy="225.92" r="24.47"/><path class="cls-5" d="M167.4,192.32s30.84-17.18,57.47,0"/><ellipse class="cls-6" cx="195.72" cy="222.97" rx="10.22" ry="14.71"/><path class="cls-5" d="M286.22,192.32s30.84-17.18,57.47,0"/><ellipse class="cls-6" cx="314.55" cy="222.97" rx="10.22" ry="14.71"/><rect class="cls-4" x="239.11" y="250.39" width="35.55" height="13.48" rx="6.18"/><path class="cls-5" d="M177.14,212.13s17.65-11.15,37.17,0"/><path class="cls-5" d="M296,212.13s17.66-11.15,37.17,0"/><path class="cls-7" d="M135.21,216.19a9.73,9.73,0,1,0,0,19.46Z"/><path class="cls-4" d="M379,235.65a9.73,9.73,0,1,0,0-19.46Z"/><path class="cls-8" d="M228.5,283.44a2.41,2.41,0,0,0-2.4,2.6c1.31,16.1,14.59,31,30.78,31h0c16.19,0,29.46-14.92,30.77-31a2.4,2.4,0,0,0-2.39-2.6Z"/><path class="cls-9" d="M388.76,136.78s2.71,55.62-9.73,79.41c0,0-3.75-58.48-20.77-75.23-27.47,1.67-65.25-1.66-95.8-25.21,0,0-1.55,13.93,25.26,38.59,0,0-33,3.66-62.86-40.15-49.75,11.2-72,66.94-79.63,92.45a17.91,17.91,0,0,1-17.14,12.78H128c-7-58.23-2.5-103.67-2.5-103.67,18.12-82.77,65.14-72.6,81-66.53,5.18-10.76,17.84-21.55,46.41-26.4,0,0,60.28-35.17,109.6,11.19H333.14s62.21,10.73,62.21,101.15C395.35,135.16,393,135.86,388.76,136.78Z"/><path class="cls-10" d="M395.35,135.16s-91.11-8-132.89-19.41c0,0,32,31,95.8,25.21Z"/><path class="cls-10" d="M224.86,114.19c-49.75,11.2-72,66.94-79.63,92.45a17.91,17.91,0,0,1-17.14,12.78H128c-7-58.23-2.5-103.67-2.5-103.67,18.12-82.77,65.14-72.6,81-66.53C206.46,49.22,174.55,87.05,224.86,114.19Z"/><path class="cls-11" d="M319.88,43.76c1.19,13.5-.18,33.05-13.95,47.78a3.45,3.45,0,0,0,2.73,5.83c9.14-.64,22.53-2.54,29.92-8.07a3.46,3.46,0,0,1,5.35,1.44c1.86,4.82,4.16,12.67,3.17,20.15a3.45,3.45,0,0,0,6.14,2.54c6.6-8.08,12.15-22.48,3.92-46.51a3.46,3.46,0,0,0-6.05-.91l-1.27,1.73a3.46,3.46,0,0,1-5.63-.08l-18-26.15A3.45,3.45,0,0,0,319.88,43.76Z"/><path class="cls-12" d="M399.78,467.82c-.29.21-.59.41-.89.61q-4.33,2.93-8.79,5.67a254.52,254.52,0,0,1-107.87,36.57,259.75,259.75,0,0,1-52.7,0,254.46,254.46,0,0,1-109.93-38q-3.9-2.46-7.71-5.06c-1.38-.94-2.74-1.89-4.1-2.87,14.48-20.74,34.08-38.21,60.88-50.95a46.92,46.92,0,0,1,5.78-2.13s74.71,55.93,157.62,0l.62-.27C363.19,425.69,384.49,445,399.78,467.82Z"/><path class="cls-13" d="M282.23,510.67a259.75,259.75,0,0,1-52.7,0l26.34-26.34Z"/></g></svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><defs><style>.cls-1{fill:#4acc97;}.cls-2{fill:#43b584;}.cls-3{fill:#32314b;}.cls-4{fill:#9e4830;}.cls-5{fill:#893d2b;}.cls-6{fill:none;stroke:#27273d;stroke-linecap:round;stroke-miterlimit:10;stroke-width:7px;}.cls-7{fill:#7a3426;}.cls-8{fill:#27273d;}.cls-9{fill:#3e436d;}.cls-10{fill:#fff;}.cls-11{fill:#db1b1b;}</style></defs><title>Avatar Users2</title><g id="BULINE"><circle class="cls-1" cx="256" cy="256" r="256"/></g><g id="Icons"><path class="cls-2" d="M484.77,371A257,257,0,0,1,394,471.66q-1.94,1.24-3.88,2.44a256.19,256.19,0,0,1-270.5-1.43q-4.17-2.62-8.23-5.42A257.1,257.1,0,0,1,27.23,371,257.15,257.15,0,0,1,129,263.66l0,0a254.09,254.09,0,0,1,49.77-21.8c2.07-.66,4.17-1.29,6.27-1.89q7.76-2.23,15.7-4a258.3,258.3,0,0,1,104.93-1.14q8.63,1.69,17,4a254.14,254.14,0,0,1,58.68,24A257.14,257.14,0,0,1,484.77,371Z"/><path class="cls-3" d="M402.7,104.53c-70.28-68.82-169.52-49-203.13-39.59a54.38,54.38,0,0,0-91.68,39.59s-35.31,55.95,20.23,101.1l6.22-31.47,243.25,6.76,4.88,24.71C438,160.48,402.7,104.53,402.7,104.53Z"/><path class="cls-4" d="M394,471.66q-1.94,1.24-3.88,2.44a256.19,256.19,0,0,1-270.5-1.43q-4.17-2.62-8.23-5.42A153,153,0,0,1,122.44,456q4.66-4.31,9.8-8.3a168.6,168.6,0,0,1,31.23-19.13c.36-.17.77-.35,1.23-.52l.36-.15,1.1-.42c.33-.12.65-.24,1-.35s.86-.3,1.35-.44l1.79-.58,2.13-.64,2.28-.66,4.38-1.24,2.78-.77,2.53-.71c2.39-.66,4.81-1.36,7.2-2.08,8.8-2.61,17.08-5.52,21.12-8.62a8.64,8.64,0,0,0,1.41-1.32c7.39-8.54,4-23.85,4-34.93,0-2.56,0-4.83-.08-6.87v0c-.57-23-3.21-15.94,16.23-22.45a32.71,32.71,0,0,1,4.92-.79c13.53-1.51,48.57-3,52.64.79,3.77,3.52,3.64,11.59,2.63,20.65h0c-1.34,12.14-4.28,26-1.57,33a29.21,29.21,0,0,0,7.15,11c6.59,6.26,15.58,8.41,25.77,12.26,2.16.8,4.37,1.69,6.62,2.72.3.12.6.25.89.39l1.85.89.52.25c.15.07.31.14.45.22,3.75,1.81,7.36,3.69,10.86,5.66a174.7,174.7,0,0,1,23.27,15.61c3.37,2.68,6.59,5.47,9.65,8.34A155.57,155.57,0,0,1,394,471.66Z"/><path class="cls-4" d="M382.25,162.85v86.42c0,64.48-51.31,85.13-88.71,117.93a57.61,57.61,0,0,1-76.71,0c-37.4-32.8-88.72-53.45-88.72-117.93V162.85c0-2.93.1-5.84.3-8.71,4.09-59.37,49.67-106.53,106.08-109,1.52-.08,3.07-.11,4.61-.11h32.17c59.91,0,108.73,50.38,110.89,113.4C382.23,159.92,382.25,161.38,382.25,162.85Z"/><path class="cls-5" d="M178.83,249.28V162.84c0-61.72,44.73-112.37,101.7-117.35-3-.29-6.14-.42-9.27-.42H239.1c-61.3,0-111,52.74-111,117.77v42.79a25.43,25.43,0,0,0,0,50.86h.24c3.69,58.85,52.49,79.19,88.47,110.7,18.22,16,43.07,18.9,63.7,8.7a59.26,59.26,0,0,1-13-8.7C230.13,334.41,178.83,313.75,178.83,249.28Z"/><circle class="cls-4" cx="382.25" cy="231.06" r="25.43"/><path class="cls-6" d="M162.29,189.39s32.06-17.85,59.74,0"/><path class="cls-6" d="M285.79,189.39s32.06-17.85,59.73,0"/><rect class="cls-5" x="237.45" y="256.49" width="36.94" height="14.01" rx="6.42"/><path class="cls-7" d="M128.84,220.94a10.12,10.12,0,0,0,0,20.23Z"/><path class="cls-5" d="M382.25,241.17a10.12,10.12,0,1,0,0-20.23Z"/><ellipse class="cls-8" cx="191.73" cy="227.99" rx="10.62" ry="15.29"/><ellipse class="cls-8" cx="315.23" cy="227.99" rx="10.62" ry="15.29"/><path class="cls-6" d="M172.42,216.72s18.35-11.59,38.63,0"/><path class="cls-6" d="M295.91,216.72s18.36-11.59,38.64,0"/><path class="cls-3" d="M407.68,122.18h0a35.76,35.76,0,0,0-31.11-53.41c-.81,0-1.6,0-2.39.08a41.5,41.5,0,0,0-51.84-27.42,52.34,52.34,0,0,0-90.19-9.87,54.92,54.92,0,0,0-84.72,46.13,55.92,55.92,0,0,0,.43,6.77,27.49,27.49,0,1,0,27.26,40.92,54.71,54.71,0,0,0,27.24,7.24c1.27,0,2.53-.06,3.78-.15a52.35,52.35,0,0,0,98.41,18.63,41.41,41.41,0,0,0,55.62,4h0c85.31,24.49,91.25-32.9,91.25-32.9C421.1,138.7,407.68,122.18,407.68,122.18Z"/><path class="cls-9" d="M332.49,66.16c1.16,13.28-.18,32.52-13.72,47a3.39,3.39,0,0,0,2.68,5.73c9-.63,22.16-2.5,29.44-7.94a3.4,3.4,0,0,1,5.26,1.41c1.83,4.75,4.09,12.47,3.12,19.83a3.39,3.39,0,0,0,6,2.5c6.5-7.95,12-22.11,3.86-45.76a3.4,3.4,0,0,0-6-.9L362,89.75a3.41,3.41,0,0,1-5.54-.08L338.67,64A3.39,3.39,0,0,0,332.49,66.16Z"/><path class="cls-10" d="M227.26,288.83a2.37,2.37,0,0,0-2.35,2.55c1.28,15.84,14.35,30.52,30.27,30.52h0c15.93,0,29-14.68,30.28-30.52a2.37,2.37,0,0,0-2.36-2.55Z"/><path class="cls-11" d="M394,471.66q-1.94,1.24-3.88,2.44a256.19,256.19,0,0,1-270.5-1.43q-4.17-2.62-8.23-5.42A153,153,0,0,1,122.44,456q4.66-4.31,9.8-8.3a168.6,168.6,0,0,1,31.23-19.13c.36-.17.77-.35,1.23-.52l.36-.15,1.1-.42c.33-.12.65-.24,1-.35s.86-.3,1.35-.44l1.79-.58,2.13-.64,2.28-.66,4.38-1.24,2.78-.77,2.53-.71a73.34,73.34,0,0,0,141.4.57c2.16.8,4.37,1.69,6.62,2.72.3.12.6.25.89.39l1.85.89.52.25c.15.07.31.14.45.22,3.75,1.81,7.36,3.69,10.86,5.66a174.7,174.7,0,0,1,23.27,15.61c3.37,2.68,6.59,5.47,9.65,8.34A155.57,155.57,0,0,1,394,471.66Z"/><path class="cls-10" d="M335.16,426.61a82.91,82.91,0,0,1-160.45-1.85l4.38-1.24,2.78-.77,2.53-.71a73.34,73.34,0,0,0,141.4.57c2.16.8,4.37,1.69,6.62,2.72.3.12.6.25.89.39Z"/></g></svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

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