Setting up landing page & migartion tables

This commit is contained in:
Nyavokevin 2025-09-03 17:05:06 +03:00
parent f96ec3d299
commit a81ec57958
49 changed files with 2158 additions and 77 deletions

101
WARP.md Normal file
View File

@ -0,0 +1,101 @@
# WARP.md
This file provides guidance to WARP (warp.dev) when working with code in this repository.
Project summary: Laravel 12 backend with Vue 3 + Inertia.js (TypeScript) frontend, Vite build, Tailwind CSS 4, Pest for testing, Laravel Pint for PHP style. CI runs linting and tests on develop/main.
Common commands
- Initial setup
```bash path=null start=null
composer install
npm install
cp .env.example .env
php artisan key:generate
php artisan migrate
```
- Development servers
```bash path=null start=null
# Full stack (PHP server, queue listener, logs, Vite dev)
composer run dev
# Full stack with SSR renderer (builds SSR bundle, starts SSR service)
composer run dev:ssr
# Alternatively run pieces individually
npm run dev # Vite dev server
php artisan serve # Laravel HTTP server
php artisan queue:listen # Queue worker for async jobs
```
- Build assets
```bash path=null start=null
npm run build # Client bundle
npm run build:ssr # Client + SSR bundle
```
- Lint and format
```bash path=null start=null
# PHP code style (Laravel Pint)
vendor/bin/pint
# Frontend format (Prettier)
npm run format # write fixes
npm run format:check # check only
# Frontend lint (ESLint)
npm run lint # with --fix per eslint.config.js
```
- Tests (Pest)
```bash path=null start=null
# Run all tests
./vendor/bin/pest
# Run tests in a file or directory
./vendor/bin/pest tests/Feature/DashboardTest.php
# Filter by test name or pattern
./vendor/bin/pest --filter "authenticated users can visit the dashboard"
# Alternative (uses artisan test via composer)
composer run test
```
Architecture overview
- HTTP and routing
- routes/web.php defines the entry routes, rendering Inertia pages: Welcome and an auth-protected Dashboard. It includes routes/auth.php (auth flows) and routes/settings.php (Profile, Password, Appearance pages).
- Controllers live under app/Http/Controllers with Auth/* and Settings/* for user flows. ProfileController uses a typed FormRequest (ProfileUpdateRequest) for validation; PasswordController validates current_password and updates via Hash.
- Inertia + SSR integration
- Inertia middleware (app/Http/Middleware/HandleInertiaRequests.php) sets the root view to app and shares global props: app name, a random quote, the authenticated user, and sidebarOpen state derived from a cookie.
- SSR is enabled in config/inertia.php ('ssr.enabled' => true) and expects a renderer at http://127.0.0.1:13714. The SSR entry is resources/js/ssr.ts; use composer run dev:ssr or php artisan inertia:start-ssr after building the SSR bundle.
- The Blade root template resources/views/app.blade.php injects Vite assets and adds an inline theme bootstrap so dark mode applies before Vue mounts.
- Frontend structure (Vue 3 + TypeScript)
- Inertia app bootstrap is in resources/js/app.ts (resolvePageComponent to resources/js/pages/**/Name.vue). It sets document titles and a progress bar.
- Pages under resources/js/pages/ render into layouts in resources/js/layouts (for instance, AppLayout wraps AppShell). Global shell and sidebar behavior derive from $page.props shared by middleware.
- Composables (resources/js/composables) include useAppearance for light/dark theme initialization used on page load.
- UI components live under resources/js/components (with a shadcn-vue setup configured by components.json). TypeScript path alias @/* points to resources/js/* (see tsconfig.json).
- Build and tooling
- Vite config (vite.config.ts) wires laravel-vite-plugin, Tailwind CSS 4, Vue plugin, and @laravel/vite-plugin-wayfinder. Entry points: resources/js/app.ts (client) and resources/js/ssr.ts (SSR). Wayfinder provides typed route helpers for the frontend based on backend routes.
- Tailwind is configured for v4 with plugins; Prettier plugins include organize-imports and tailwindcss to keep classes ordered.
- ESLint (eslint.config.js) enables Vue + TypeScript rules and ignores vendor, node_modules, public, bootstrap/ssr, tailwind.config.js, and resources/js/components/ui/*.
- Data, auth, and testing
- Authentication uses the default 'web' session guard (config/auth.php). The User model (app/Models/User.php) uses hashed passwords and standard fillables. Email verification is supported via MustVerifyEmail checks in profile flows.
- phpunit.xml configures an in-memory SQLite database and testing environment variables, so tests run without external DB setup.
- Tests are written with Pest (tests/Feature, tests/Unit). tests/Pest.php binds Tests\TestCase and includes example expectations.
- CI signals (reference)
- .github/workflows/lint.yml runs Laravel Pint, Prettier format, and ESLint on develop/main branches.
- .github/workflows/tests.yml installs dependencies, builds assets, and runs Pest. Node 22 and PHP 8.4 are used in CI.

View File

@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('cards', function (Blueprint $table) {
$table->id();
$table->string('name', 150);
$table->text('description_upright');
$table->text('description_reversed');
$table->json('symbolism')->nullable();
$table->string('image_url', 255)->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('cards');
}
};

View File

@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('offers', function (Blueprint $table) {
$table->id();
$table->string('name', 150);
$table->enum('reading_type', ['free', 'profiling', 'quadrige']);
$table->decimal('price', 10, 2)->default(0.00);
$table->text('description')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('offers');
}
};

View File

@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('payments', function (Blueprint $table) {
$table->id();
$table->decimal('amount', 10, 2);
$table->string('currency', 10)->default('USD');
$table->string('stripe_session_id', 255)->unique();
$table->enum('status', ['pending', 'succeeded', 'failed', 'refunded'])->default('pending');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('payments');
}
};

View File

@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('readings', function (Blueprint $table) {
$table->id();
$table->enum('reading_type', ['free', 'profiling', 'quadrige']);
$table->string('client_name', 150);
$table->string('client_email', 150);
$table->json('cards_drawn')->nullable();
$table->text('result_text')->nullable();
$table->decimal('price', 10, 2)->default(0.00);
$table->enum('payment_status', ['unpaid', 'paid', 'refunded'])->default('unpaid');
$table->foreignId('payment_id')->nullable()->constrained('payments')->nullOnDelete();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('readings');
}
};

View File

@ -0,0 +1,39 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('appointments', function (Blueprint $table) {
$table->id();
$table->foreignId('reading_id')->nullable()->constrained('readings')->nullOnDelete();
$table->string('client_name', 150);
$table->string('client_email', 150);
$table->string('client_phone', 50)->nullable();
$table->enum('reading_type', ['free', 'profiling', 'quadrige']);
$table->enum('status', ['pending', 'confirmed', 'paid', 'canceled'])->default('pending');
$table->dateTime('scheduled_at');
$table->integer('duration_minutes')->default(60);
$table->decimal('price', 10, 2);
$table->enum('payment_status', ['unpaid', 'paid', 'refunded'])->default('unpaid');
$table->foreignId('payment_id')->nullable()->constrained('payments')->nullOnDelete();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('appointments');
}
};

View File

@ -8,7 +8,11 @@
@custom-variant dark (&:is(.dark *));
@theme inline {
--font-sans: Instrument Sans, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
--font-heading: 'Cormorant Garamond', serif;
--font-body: 'Montserrat', sans-serif;
--font-accent: 'Citadel Script', cursive;
--font-sans: var(--font-body);
--radius-lg: var(--radius);
--radius-md: calc(var(--radius) - 2px);
@ -57,7 +61,6 @@
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-ring: var(--sidebar-ring);
}
/*
The default border color has changed to `currentColor` in Tailwind CSS v4,
so we've added these compatibility styles to make sure everything still
@ -79,89 +82,142 @@
@layer utilities {
body,
html {
--font-sans:
'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
font-family: var(--font-body);
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-heading);
}
.font-accent {
font-family: var(--font-accent);
}
}
:root {
--background: hsl(0 0% 100%);
--foreground: hsl(0 0% 3.9%);
--card: hsl(0 0% 100%);
--card-foreground: hsl(0 0% 3.9%);
--popover: hsl(0 0% 100%);
--popover-foreground: hsl(0 0% 3.9%);
--primary: hsl(0 0% 9%);
--primary-foreground: hsl(0 0% 98%);
--secondary: hsl(0 0% 92.1%);
--secondary-foreground: hsl(0 0% 9%);
--muted: hsl(0 0% 96.1%);
--muted-foreground: hsl(0 0% 45.1%);
--accent: hsl(0 0% 96.1%);
--accent-foreground: hsl(0 0% 9%);
--destructive: hsl(0 84.2% 60.2%);
--destructive-foreground: hsl(0 0% 98%);
--border: hsl(0 0% 92.8%);
--input: hsl(0 0% 89.8%);
--ring: hsl(0 0% 3.9%);
--chart-1: hsl(12 76% 61%);
--chart-2: hsl(173 58% 39%);
--chart-3: hsl(197 37% 24%);
--chart-4: hsl(43 74% 66%);
--chart-5: hsl(27 87% 67%);
--radius: 0.5rem;
--sidebar-background: hsl(0 0% 98%);
--sidebar-foreground: hsl(240 5.3% 26.1%);
--sidebar-primary: hsl(0 0% 10%);
--sidebar-primary-foreground: hsl(0 0% 98%);
--sidebar-accent: hsl(0 0% 94%);
--sidebar-accent-foreground: hsl(0 0% 30%);
--sidebar-border: hsl(0 0% 91%);
--sidebar-ring: hsl(217.2 91.2% 59.8%);
--sidebar: hsl(0 0% 98%);
}
/* Palette aliases for use with Tailwind arbitrary values */
--midnight-blue: #1f2a44;
--spiritual-earth: #a06d52;
--subtle-gold: #d7ba8d;
--linen: #d3d1cd;
--pure-white: #ffffff;
--light-ivory: #f8f6f1;
.dark {
--background: hsl(0 0% 3.9%);
--foreground: hsl(0 0% 98%);
--card: hsl(0 0% 3.9%);
--card-foreground: hsl(0 0% 98%);
--popover: hsl(0 0% 3.9%);
--popover-foreground: hsl(0 0% 98%);
--primary: hsl(0 0% 98%);
--primary-foreground: hsl(0 0% 9%);
--secondary: hsl(0 0% 14.9%);
--secondary-foreground: hsl(0 0% 98%);
--muted: hsl(0 0% 16.08%);
--muted-foreground: hsl(0 0% 63.9%);
--accent: hsl(0 0% 14.9%);
--accent-foreground: hsl(0 0% 98%);
--destructive: hsl(0 84% 60%);
--destructive-foreground: hsl(0 0% 98%);
--border: hsl(0 0% 14.9%);
--input: hsl(0 0% 14.9%);
--ring: hsl(0 0% 83.1%);
--chart-1: hsl(220 70% 50%);
--chart-2: hsl(160 60% 45%);
--chart-3: hsl(30 80% 55%);
--chart-4: hsl(280 65% 60%);
--chart-5: hsl(340 75% 55%);
--sidebar-background: hsl(0 0% 7%);
--sidebar-foreground: hsl(0 0% 95.9%);
--sidebar-primary: hsl(360, 100%, 100%);
--sidebar-primary-foreground: hsl(0 0% 100%);
--sidebar-accent: hsl(0 0% 15.9%);
--sidebar-accent-foreground: hsl(240 4.8% 95.9%);
--sidebar-border: hsl(0 0% 15.9%);
--sidebar-ring: hsl(217.2 91.2% 59.8%);
--sidebar: hsl(240 5.9% 10%);
--background: var(--light-ivory);
--foreground: var(--midnight-blue);
--card: var(--pure-white);
--card-foreground: var(--midnight-blue);
--popover: var(--pure-white);
--popover-foreground: var(--midnight-blue);
--primary: var(--midnight-blue);
--primary-foreground: var(--pure-white);
--secondary: var(--linen);
--secondary-foreground: var(--midnight-blue);
--muted: var(--light-ivory);
--muted-foreground: var(--spiritual-earth);
--accent: var(--subtle-gold);
--accent-foreground: var(--midnight-blue);
--destructive: #e63946;
--destructive-foreground: var(--pure-white);
--border: var(--linen);
--input: var(--linen);
--ring: var(--subtle-gold);
--chart-1: var(--midnight-blue);
--chart-2: var(--spiritual-earth);
--chart-3: var(--subtle-gold);
--chart-4: var(--light-ivory);
--chart-5: var(--linen);
--radius: 0.5rem;
/* Sidebar */
--sidebar-background: var(--light-ivory);
--sidebar-foreground: var(--midnight-blue);
--sidebar-primary: var(--midnight-blue);
--sidebar-primary-foreground: var(--pure-white);
--sidebar-accent: var(--subtle-gold);
--sidebar-accent-foreground: var(--midnight-blue);
--sidebar-border: var(--linen);
--sidebar-ring: var(--subtle-gold);
}
@layer base {
* {
@apply border-border outline-ring/50;
}
/* Apply font-family directly to body */
body {
font-family: var(--font-body), sans-serif !important;
@apply bg-background text-foreground;
}
html {
font-family: var(--font-body), sans-serif;
}
}
@layer utilities {
.font-accent {
font-family: var(--font-accent), cursive;
}
.citadel-script {
font-family: var(--font-accent);
}
.bg-blur {
backdrop-filter: blur(8px);
}
.text-shadow-custom {
text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
}
@font-face {
font-family: 'Citadel Script';
src:
url('@/fonts/CitadelScript/CitadelScript.woff2') format('woff2'),
url('@/fonts/CitadelScript/CitadelScript.woff') format('woff'),
url('@/fonts/CitadelScript/CitadelScript.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Montserrat';
src: url('@/fonts/Montserrat/static/Montserrat-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Montserrat';
src: url('@/fonts/Montserrat/static/Montserrat-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Montserrat';
src: url('@/fonts/Montserrat/static/Montserrat-Bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
font-display: swap;
}

View File

@ -0,0 +1,217 @@
<script setup lang="ts">
import AppLogo from '@/components/AppLogo.vue';
import AppLogoIcon from '@/components/AppLogoIcon.vue';
import Breadcrumbs from '@/components/Breadcrumbs.vue';
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar';
import { Button } from '@/components/ui/button';
import { DropdownMenu, DropdownMenuContent, DropdownMenuTrigger } from '@/components/ui/dropdown-menu';
import { NavigationMenu, NavigationMenuItem, NavigationMenuList, navigationMenuTriggerStyle } from '@/components/ui/navigation-menu';
import { Sheet, SheetContent, SheetHeader, SheetTitle, SheetTrigger } from '@/components/ui/sheet';
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '@/components/ui/tooltip';
import UserMenuContent from '@/components/UserMenuContent.vue';
import { getInitials } from '@/composables/useInitials';
import type { BreadcrumbItem, NavItem } from '@/types';
import { InertiaLinkProps, Link, usePage } from '@inertiajs/vue3';
import { BookOpen, Folder } from 'lucide-vue-next';
import { computed } from 'vue';
interface Props {
breadcrumbs?: BreadcrumbItem[];
}
const props = withDefaults(defineProps<Props>(), {
breadcrumbs: () => [],
});
const page = usePage();
const auth = computed(() => page.props.auth);
const isCurrentRoute = computed(() => (url: NonNullable<InertiaLinkProps['href']>) => page.url === (typeof url === 'string' ? url : url.url));
const activeItemStyles = computed(
() => (url: NonNullable<InertiaLinkProps['href']>) =>
isCurrentRoute.value(typeof url === 'string' ? url : url.url)
? 'text-primary dark:bg-card dark:text-primary-foreground'
: 'text-foreground hover:bg-muted',
);
const mainNavItems: NavItem[] = [
{
title: 'Accueil',
href: '/', // Example route
},
{
title: 'Tirage doracle',
href: '/oracle-draw', // Example route
},
{
title: 'Consultations',
href: '/consultations', // Example route
},
{
title: 'Services',
href: '/services', // Example route
},
{
title: 'Contact',
href: '/contact', // Example route
},
];
const rightNavItems: NavItem[] = [
{
title: 'Repository',
href: 'https://github.com/your-repo',
icon: Folder,
},
{
title: 'Documentation',
href: 'https://your-docs.com',
icon: BookOpen,
},
];
</script>
<template>
<div>
<div class="border-b border-border/80">
<div class="mx-auto flex h-16 items-center px-4 md:max-w-7xl">
<div class="lg:hidden">
<Sheet>
<SheetTrigger :as-child="true">
<Button variant="ghost" size="icon" class="mr-2 h-9 w-9">
<Menu class="h-5 w-5" />
</Button>
</SheetTrigger>
<SheetContent side="left" class="w-[300px] bg-background p-6">
<SheetTitle class="sr-only">Navigation Menu</SheetTitle>
<SheetHeader class="flex justify-start text-left">
<AppLogoIcon class="size-6 fill-current text-primary dark:text-primary" />
</SheetHeader>
<div class="flex h-full flex-1 flex-col justify-between space-y-4 py-6">
<nav class="-mx-3 space-y-1">
<Link
v-for="item in mainNavItems"
:key="item.title"
:href="item.href"
class="flex items-center gap-x-3 rounded-lg px-3 py-2 font-body text-sm hover:bg-muted"
:class="isCurrentRoute(item.href) ? 'font-semibold text-primary' : 'text-foreground'"
>
{{ item.title }}
</Link>
</nav>
<div class="flex flex-col space-y-4">
<a
v-for="item in rightNavItems"
:key="item.title"
:href="typeof item.href === 'string' ? item.href : item.href?.url"
target="_blank"
rel="noopener noreferrer"
class="flex items-center space-x-2 font-body text-sm text-foreground"
>
<component v-if="item.icon" :is="item.icon" class="h-5 w-5" />
<span>{{ item.title }}</span>
</a>
</div>
</div>
</SheetContent>
</Sheet>
</div>
<Link href="/" class="flex items-center gap-x-2">
<AppLogo />
</Link>
<div class="hidden h-full lg:flex lg:flex-1">
<NavigationMenu class="ml-10 flex h-full items-stretch">
<NavigationMenuList class="flex h-full items-stretch space-x-2">
<NavigationMenuItem v-for="(item, index) in mainNavItems" :key="index" class="relative flex h-full items-center">
<Link
:class="[navigationMenuTriggerStyle(), activeItemStyles(item.href), 'h-9 cursor-pointer px-3 font-body']"
:href="item.href"
>
{{ item.title }}
</Link>
<div
v-if="isCurrentRoute(item.href)"
class="bg-subtle-gold dark:bg-subtle-gold absolute bottom-0 left-0 h-0.5 w-full translate-y-px"
></div>
</NavigationMenuItem>
</NavigationMenuList>
</NavigationMenu>
</div>
<div class="ml-auto flex items-center space-x-2">
<div class="relative flex items-center space-x-1">
<TooltipProvider :delay-duration="0">
<Tooltip>
<TooltipTrigger>
<Button variant="ghost" size="icon" as-child class="group h-9 w-9 cursor-pointer">
<a href="#" class="flex items-center justify-center">
<span class="sr-only">Rechercher</span>
<Search class="size-5 opacity-80 group-hover:opacity-100" />
</a>
</Button>
</TooltipTrigger>
<TooltipContent>
<p>Rechercher</p>
</TooltipContent>
</Tooltip>
</TooltipProvider>
<div class="hidden space-x-1 lg:flex">
<template v-for="item in rightNavItems" :key="item.title">
<TooltipProvider :delay-duration="0">
<Tooltip>
<TooltipTrigger>
<Button variant="ghost" size="icon" as-child class="group h-9 w-9 cursor-pointer">
<a
:href="typeof item.href === 'string' ? item.href : item.href?.url"
target="_blank"
rel="noopener noreferrer"
>
<span class="sr-only">{{ item.title }}</span>
<component :is="item.icon" class="size-5 opacity-80 group-hover:opacity-100" />
</a>
</Button>
</TooltipTrigger>
<TooltipContent>
<p>{{ item.title }}</p>
</TooltipContent>
</Tooltip>
</TooltipProvider>
</template>
</div>
</div>
<DropdownMenu>
<DropdownMenuTrigger :as-child="true">
<Button
variant="ghost"
size="icon"
class="focus-within:ring-subtle-gold relative size-10 w-auto rounded-full p-1 focus-within:ring-2"
>
<Avatar class="size-8 overflow-hidden rounded-full">
<AvatarImage v-if="auth.user.avatar" :src="auth.user.avatar" :alt="auth.user.name" />
<AvatarFallback
class="bg-linen dark:bg-spiritual-earth dark:text-pure-white rounded-lg font-semibold text-foreground"
>
{{ getInitials(auth.user?.name) }}
</AvatarFallback>
</Avatar>
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end" class="w-56">
<UserMenuContent :user="auth.user" />
</DropdownMenuContent>
</DropdownMenu>
</div>
</div>
</div>
<div v-if="props.breadcrumbs.length > 1" class="flex w-full border-b border-border/70">
<div class="mx-auto flex h-12 w-full items-center justify-start px-4 text-muted-foreground md:max-w-7xl">
<Breadcrumbs :breadcrumbs="breadcrumbs" />
</div>
</div>
</div>
</template>

View File

@ -0,0 +1,17 @@
<template>
<section class="py-20 sm:py-24">
<div class="relative mx-auto max-w-4xl overflow-hidden rounded-2xl bg-[var(--midnight-blue)] p-8 text-center text-white md:p-12">
<div class="absolute -top-10 -left-10 h-40 w-40 rounded-full border-2 border-[var(--subtle-gold)]/20"></div>
<div class="absolute -right-10 -bottom-10 h-40 w-40 rounded-full border-2 border-[var(--subtle-gold)]/20"></div>
<h2 class="text-4xl font-bold md:text-5xl">Amplifiez Votre Oracle</h2>
<p class="mx-auto mt-4 max-w-2xl text-lg text-[var(--linen)]">
Pour une guidance plus approfondie, réservez une consultation personnalisée avec Kris Saint Ange.
</p>
<button
class="mt-8 inline-flex h-12 max-w-[480px] min-w-[120px] flex-shrink-0 cursor-pointer items-center justify-center rounded-full bg-[var(--subtle-gold)] px-8 text-base font-bold tracking-wide text-[var(--midnight-blue)] transition-all duration-300 hover:shadow-[var(--subtle-gold)]/30 hover:shadow-lg"
>
Réserver une Consultation
</button>
</div>
</section>
</template>

View File

@ -0,0 +1,30 @@
<template>
<div class="relative flex items-center justify-center py-20 text-center sm:py-32">
<div class="absolute inset-0 overflow-hidden">
<div
class="absolute inset-0 bg-cover bg-center"
style="
background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuCYwDtbzamxSUEWCWG7j3saRw40YQI6KQIVhrw_IrJI8FZXKKHOYej_hGrkM6B5S_MiY-vZ3sWqQDJdPEiYnuH81hSwoHOwfuZWZqY_QoW2UvbtvqCVIiFzd0wk-P63V9j-AgIYgqtonlEzqX1FvYGPZrsocOKx6sArVQACeo6MrVYkm2IVwDGWFyFL0L5U9bzRD8-Zo7hRvn_1hmJxOPS72z61S3jZnDTZPQe6tX9_jJk8ei7qludF6Gs-Qb92jXbRR68FpIoxPHg');
filter: blur(4px) brightness(0.7);
"
></div>
<div class="absolute inset-0 bg-gradient-to-t from-[var(--light-ivory)] via-transparent to-transparent"></div>
</div>
<div class="relative z-10 flex max-w-3xl flex-col items-center gap-6">
<h1 class="text-5xl font-bold text-[var(--pure-white)] md:text-7xl" style="text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4)">
Révélez Votre
<span class="citadel-script text-6xl text-[var(--subtle-gold)] md:text-8xl">Empire</span>
Intérieur
</h1>
<p class="max-w-2xl text-lg text-[var(--linen)]">
Embrassez la sagesse intemporelle de lOracle de Kris Saint Ange, un guide stratégique pour naviguer votre destin avec clarté et
confiance.
</p>
<button
class="mt-4 flex h-12 max-w-[480px] min-w-[120px] cursor-pointer items-center justify-center overflow-hidden rounded-full bg-[var(--subtle-gold)] px-8 text-base font-bold tracking-wide text-[var(--midnight-blue)] transition-all duration-300 hover:shadow-[var(--subtle-gold)]/30 hover:shadow-lg"
>
<span class="truncate">Découvrir Votre Oracle</span>
</button>
</div>
</div>
</template>

View File

@ -0,0 +1,40 @@
<template>
<section class="py-20 sm:py-24">
<h2 class="mb-16 text-center text-4xl font-bold text-[var(--midnight-blue)] md:text-5xl">Comment Ça Marche</h2>
<div class="relative mx-auto max-w-2xl">
<div class="absolute left-1/2 h-full w-0.5 -translate-x-1/2 bg-[var(--linen)]"></div>
<div class="relative z-10 flex flex-col gap-16">
<div class="flex items-center gap-8">
<div
class="flex h-20 w-20 flex-shrink-0 items-center justify-center rounded-full bg-[var(--subtle-gold)] text-3xl font-bold text-[var(--midnight-blue)] shadow-lg"
>
1
</div>
<div class="bg-[var(--light-ivory)] pl-4">
<h3 class="text-2xl font-bold text-[var(--midnight-blue)]">Choisissez Votre Lecture</h3>
</div>
</div>
<div class="flex items-center justify-end gap-8 text-right">
<div class="bg-[var(--light-ivory)] pr-4">
<h3 class="text-2xl font-bold text-[var(--midnight-blue)]">Recevez Votre Interprétation</h3>
</div>
<div
class="flex h-20 w-20 flex-shrink-0 items-center justify-center rounded-full bg-[var(--subtle-gold)] text-3xl font-bold text-[var(--midnight-blue)] shadow-lg"
>
2
</div>
</div>
<div class="flex items-center gap-8">
<div
class="flex h-20 w-20 flex-shrink-0 items-center justify-center rounded-full bg-[var(--subtle-gold)] text-3xl font-bold text-[var(--midnight-blue)] shadow-lg"
>
3
</div>
<div class="bg-[var(--light-ivory)] pl-4">
<h3 class="text-2xl font-bold text-[var(--midnight-blue)]">Appliquez la Sagesse</h3>
</div>
</div>
</div>
</div>
</section>
</template>

View File

@ -0,0 +1,11 @@
<template>
<section class="py-20 text-center sm:py-24">
<h2 class="text-4xl font-bold text-[var(--midnight-blue)] md:text-5xl">
Plus Quun Guide, <span class="citadel-script text-5xl text-[var(--spiritual-earth)] md:text-6xl">Un Manuscrit Stratégique</span>
</h2>
<p class="mx-auto mt-6 max-w-3xl text-lg text-[var(--midnight-blue)]/80">
L'Oracle de Kris Saint Ange est une boussole pour votre voyage personnel et professionnel. Chaque carte est une clé pour débloquer votre
potentiel et prendre des décisions éclairées.
</p>
</section>
</template>

View File

@ -0,0 +1,115 @@
<template>
<section class="py-20 sm:py-24">
<h2 class="mb-16 text-center text-4xl font-bold text-[var(--midnight-blue)] md:text-5xl">Explorez Nos Lectures</h2>
<div class="grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3">
<div
class="flex flex-col gap-6 rounded-2xl border border-[var(--linen)] bg-[var(--pure-white)] p-8 shadow-lg transition-all duration-300 hover:-translate-y-2 hover:shadow-2xl"
>
<div class="text-center">
<h3 class="text-2xl font-bold text-[var(--midnight-blue)]">Lecture Gratuite</h3>
<p class="mt-2 text-5xl font-bold text-[var(--subtle-gold)]">Gratuit</p>
</div>
<ul class="flex-grow space-y-3 text-[var(--midnight-blue)]/80">
<li class="flex items-center gap-3">
<svg class="h-5 w-5 text-[var(--subtle-gold)]" fill="currentColor" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
<path
d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"
></path></svg
>Lecture d'une carte
</li>
<li class="flex items-center gap-3">
<svg class="h-5 w-5 text-[var(--subtle-gold)]" fill="currentColor" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
<path
d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"
></path></svg
>Interprétation générale
</li>
<li class="flex items-center gap-3">
<svg class="h-5 w-5 text-[var(--subtle-gold)]" fill="currentColor" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
<path
d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"
></path></svg
>Conseils rapides
</li>
</ul>
<button
class="mt-4 flex h-12 w-full items-center justify-center rounded-full bg-[var(--linen)] px-8 font-bold tracking-wide text-[var(--midnight-blue)] transition-all duration-300 hover:bg-[var(--spiritual-earth)] hover:text-[var(--pure-white)]"
>
Commencer
</button>
</div>
<div
class="flex scale-105 flex-col gap-6 rounded-2xl bg-[var(--midnight-blue)] p-8 shadow-lg ring-2 ring-[var(--subtle-gold)] transition-all duration-300 hover:-translate-y-2 hover:shadow-2xl"
>
<div class="text-center">
<h3 class="text-2xl font-bold text-[var(--pure-white)]">Profilage</h3>
<p class="mt-2 text-5xl font-bold text-[var(--subtle-gold)]">29</p>
</div>
<ul class="flex-grow space-y-3 text-[var(--linen)]">
<li class="flex items-center gap-3">
<svg class="h-5 w-5 text-[var(--subtle-gold)]" fill="currentColor" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
<path
d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"
></path></svg
>Lecture de trois cartes
</li>
<li class="flex items-center gap-3">
<svg class="h-5 w-5 text-[var(--subtle-gold)]" fill="currentColor" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
<path
d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"
></path></svg
>Analyse personnalisée
</li>
<li class="flex items-center gap-3">
<svg class="h-5 w-5 text-[var(--subtle-gold)]" fill="currentColor" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
<path
d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"
></path></svg
>Recommandations ciblées
</li>
</ul>
<button
class="mt-4 flex h-12 w-full items-center justify-center rounded-full bg-[var(--subtle-gold)] px-8 font-bold tracking-wide text-[var(--midnight-blue)] transition-all duration-300 hover:bg-[var(--pure-white)]"
>
Découvrir
</button>
</div>
<div
class="flex flex-col gap-6 rounded-2xl border border-[var(--linen)] bg-[var(--pure-white)] p-8 shadow-lg transition-all duration-300 hover:-translate-y-2 hover:shadow-2xl"
>
<div class="text-center">
<h3 class="text-2xl font-bold text-[var(--midnight-blue)]">Quadrige Doré</h3>
<p class="mt-2 text-5xl font-bold text-[var(--subtle-gold)]">99</p>
</div>
<ul class="flex-grow space-y-3 text-[var(--midnight-blue)]/80">
<li class="flex items-center gap-3">
<svg class="h-5 w-5 text-[var(--subtle-gold)]" fill="currentColor" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
<path
d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"
></path></svg
>Lecture de quatre cartes
</li>
<li class="flex items-center gap-3">
<svg class="h-5 w-5 text-[var(--subtle-gold)]" fill="currentColor" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
<path
d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"
></path></svg
>Exploration approfondie
</li>
<li class="flex items-center gap-3">
<svg class="h-5 w-5 text-[var(--subtle-gold)]" fill="currentColor" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
<path
d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"
></path></svg
>Stratégie complète
</li>
</ul>
<button
class="mt-4 flex h-12 w-full items-center justify-center rounded-full bg-[var(--linen)] px-8 font-bold tracking-wide text-[var(--midnight-blue)] transition-all duration-300 hover:bg-[var(--spiritual-earth)] hover:text-[var(--pure-white)]"
>
Explorer
</button>
</div>
</div>
</section>
</template>

View File

@ -0,0 +1,136 @@
<template>
<section class="py-20 sm:py-24">
<h2 class="mb-16 text-center text-4xl font-bold text-[var(--midnight-blue)] md:text-5xl">Ce Que Nos Initiés Disent</h2>
<div class="grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3">
<div class="rounded-2xl border border-[var(--linen)] bg-[var(--pure-white)] p-8 shadow-lg">
<div class="mb-4 flex items-center gap-4">
<div
class="h-14 w-14 rounded-full bg-cover bg-center"
style="
background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuDFCMVcWHXeHbptxH6HmDJlSpMyAhuoQv_qO0rkUx2EAWltD1WisKuZBoojbWd6-4cnE_K2LXTnhhzlULi5nUeWKQAvci7rM2rDsO4-uvHW8Oe7Jl9TLi1m0-oTJg1X5wdyrxunLWT6CZuD5MQiKC0pxYbq34-HFvBJ2iQKbOgmdlkAwV7xYwWNBeEePBjlAsZ7_MSLMqCAFskClsAEFkJU2YBzQflFeD1fmpK0iXqaXYhQS_kABCFx49W9bb73ShytrweHfDUJkJg');
"
></div>
<div>
<p class="text-lg font-bold text-[var(--midnight-blue)]">Sophie Dubois</p>
<div class="flex text-[var(--subtle-gold)]">
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
</div>
</div>
</div>
<p class="text-[var(--midnight-blue)]/80 italic">
"L'Oracle de Kris Saint Ange a été une révélation. Ses conseils m'ont aidée à prendre des décisions importantes avec confiance."
</p>
</div>
<div class="rounded-2xl border border-[var(--linen)] bg-[var(--pure-white)] p-8 shadow-lg">
<div class="mb-4 flex items-center gap-4">
<div
class="h-14 w-14 rounded-full bg-cover bg-center"
style="
background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuCYwDtbzamxSUEWCWG7j3saRw40YQI6KQIVhrw_IrJI8FZXKKHOYej_hGrkM6B5S_MiY-vZ3sWqQDJdPEiYnuH81hSwoHOwfuZWZqY_QoW2UvbtvqCVIiFzd0wk-P63V9j-AgIYgqtonlEzqX1FvYGPZrsocOKx6sArVQACeo6MrVYkm2IVwDGWFyFL0L5U9bzRD8-Zo7hRvn_1hmJxOPS72z61S3jZnDTZPQe6tX9_jJk8ei7qludF6Gs-Qb92jXbRR68FpIoxPHg');
"
></div>
<div>
<p class="text-lg font-bold text-[var(--midnight-blue)]">Jean Martin</p>
<div class="flex text-[var(--subtle-gold)]">
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
<svg class="h-5 w-5 text-[var(--linen)]" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
</div>
</div>
</div>
<p class="text-[var(--midnight-blue)]/80 italic">
"Une expérience enrichissante. Les lectures sont précises et offrent une perspective unique sur les défis."
</p>
</div>
<div class="rounded-2xl border border-[var(--linen)] bg-[var(--pure-white)] p-8 shadow-lg">
<div class="mb-4 flex items-center gap-4">
<div
class="h-14 w-14 rounded-full bg-cover bg-center"
style="
background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuDFCMVcWHXeHbptxH6HmDJlSpMyAhuoQv_qO0rkUx2EAWltD1WisKuZBoojbWd6-4cnE_K2LXTnhhzlULi5nUeWKQAvci7rM2rDsO4-uvHW8Oe7Jl9TLi1m0-oTJg1X5wdyrxunLWT6CZuD5MQiKC0pxYbq34-HFvBJ2iQKbOgmdlkAwV7xYwWNBeEePBjlAsZ7_MSLMqCAFskClsAEFkJU2YBzQflFeD1fmpK0iXqaXYhQS_kABCFx49W9bb73ShytrweHfDUJkJg');
"
></div>
<div>
<p class="text-lg font-bold text-[var(--midnight-blue)]">Isabelle Lefevre</p>
<div class="flex text-[var(--subtle-gold)]">
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
<svg class="h-5 w-5" fill="currentColor" viewBox="0 0 256 256">
<path
d="M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z"
></path>
</svg>
</div>
</div>
</div>
<p class="text-[var(--midnight-blue)]/80 italic">
"Je suis impressionnée par la profondeur des interprétations. L'Oracle est un outil précieux pour la croissance personnelle."
</p>
</div>
</div>
</section>
</template>

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,78 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Citadel Script Fonts Demo</title>
<style type="text/css">
*{margin:0;padding:0;list-style-type:none;}body{font-family:Arial,Helvetica,sans-serif;line-height:1.5;font-size:16px;padding:20px;color:#333;background-image:url(data:image/gif;base64,R0lGODlhCgAKAIAAAP////Dw8CwAAAAACgAKAAACEIwDh5fsv2AzU0UKb5071wIAOw==);}a{color:#66A523;}a:hover,.g:hover{opacity:0.7;}h1{font-size:60px;border-bottom:1px solid #bbb;line-height:20px;color:#000;text-transform:uppercase;margin-top:20px;}h1 a{font-size:18px;color:#66A523;text-decoration:none;text-transform:capitalize;margin-left:10px;}h1 font{font-size:40px;}.info{float:left;font-size:14px;margin-top:30px;color:#666;}.info .inst{font-size:22px;margin-bottom:10px;}.info span,.by span{color:#fff;border-radius:2px;display:inline-block;width:18px;height:18px;text-align:center;margin-right:10px;background-color:#333333;font-size:12px;line-height:18px;}.info .exs{font-size:12px;color:#666;margin-left:35px;display:block;}.info .exs font{color:#f00;line-height:30px;}.demo{float:left;width:100%;height:auto;padding-bottom:10px;margin-top:70px;background-color:#FFF;border-radius:5px;}.demo a{color:#1a73e8;float:left;font-weight:bold;font-size:14px;padding-right:30px;padding-left:30px;position:relative;border-top-width:1px;border-top-style:dotted;border-top-color:#1A73E8;text-decoration:none;border-bottom-width:1px;border-bottom-style:dotted;border-bottom-color:#1A73E8;line-height:40px;margin-top:-40px;}.demo .t{font-size:24px;float:left;width:calc(100% - 20px);color:#000;height:120px;margin-top:20px;line-height:1.2em;overflow-x:hidden;padding:10px;}.by{padding-top:15px;float:left;width:100%;margin-top:10px;margin-right:0;margin-bottom:10px;margin-left:0;font-size:14px;color:#666;}.by .b{padding-top:10px;padding-bottom:10px;color:#333;}.by .a{padding-top:10px;padding-bottom:10px;margin-left:34px;font-size:12px;}.te{width:100%;height:auto;border:0px solid #CCC;resize:none;float:left;margin-top:10px;line-height:16px;overflow:hidden;border-radius:5px;color:#000000;background-color:#FFF;font-size:12px;margin-bottom:20px;text-indent:10px;padding-top:17px;padding-bottom:17px;}pre{color:#000;}
</style>
<style type="text/css">
@font-face{
font-family: "Citadel Script";
src: url("b9583eae10a51eee606cae74cf802753.eot");
src: url("b9583eae10a51eee606cae74cf802753.eot?#iefix")format("embedded-opentype"),
url("b9583eae10a51eee606cae74cf802753.woff")format("woff"),
url("b9583eae10a51eee606cae74cf802753.woff2")format("woff2"),
url("b9583eae10a51eee606cae74cf802753.ttf")format("truetype"),
url("b9583eae10a51eee606cae74cf802753.svg#Citadel Script")format("svg");
font-weight:normal;
font-style:normal;
font-display:swap;
}
</style>
</head>
<body>
<h1> <span>[ <font>Demo</font> ]</span><a href="http://www.onlinewebfonts.com" target="_blank">Web Fonts</a></h1>
<div class="info">
<div class="inst">Instructions:</div>
<span>1</span>Use font-face declaration Fonts.
<div class="exs">
<pre>
@font-face{
font-family: "Citadel Script";
src: url("b9583eae10a51eee606cae74cf802753.eot");
src: url("b9583eae10a51eee606cae74cf802753.eot?#iefix")format("embedded-opentype"),
url("b9583eae10a51eee606cae74cf802753.woff")format("woff"),
url("b9583eae10a51eee606cae74cf802753.woff2")format("woff2"),
url("b9583eae10a51eee606cae74cf802753.ttf")format("truetype"),
url("b9583eae10a51eee606cae74cf802753.svg#Citadel Script")format("svg");
font-weight:normal;
font-style:normal;
font-display:swap;
}
</pre>
</div>
<span>or</span>To embed a font, copy the code into the head of your html
<div class="exs">
<br/><pre>&lt;link href=&quot;https://db.onlinewebfonts.com/c/b9583eae10a51eee606cae74cf802753?family=Citadel+Script&quot; rel=&quot;stylesheet&quot;&gt;</pre><br/>
</div>
<span>2</span>CSS rules to specify families
<div class="exs"><font>Use example:</font> <br/>
<pre>
font-family: &quot;Citadel Script&quot;;
</pre>
</div>
</div>
<!--demo-->
<div class="demo"><a href="https://www.onlinewebfonts.com/download/b9583eae10a51eee606cae74cf802753" target="_blank">Citadel Script</a>
<div class="t" style='font-family:"Citadel Script"'>
OnlineWebFonts.Com Some fonts provided are trial versions of full versions and may not allow embedding
unless a commercial license is purchased or may contain a limited character set.
Please review any files included with your download,
which will usually include information on the usage and licenses of the fonts.
If no information is provided,
please use at your own discretion or contact the author directly.</div>
</div>
<!--demo-->
<div class="by">
<div class="b"><span>3</span>License and attribution:</div>
<div class="a">You must credit the author Copy this link ( <a href="http://www.onlinewebfonts.com" target="_blank">oNlineWebFonts.Com</a> ) on your web</div>
<div class="b"><span>4</span>Copy the Attribution License:</div>
<div class="te">&lt;div&gt;Fonts made from &lt;a href="http://www.onlinewebfonts.com"&gt;Web Fonts&lt;/a&gt;is licensed by CC BY 4.0&lt;/div&gt;</div>
</div>
</body>
</html>

View File

@ -0,0 +1,787 @@
<?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 20230101 at Fri Feb 7 22:18:07 2003
By Unknown
Copyright (C) 1991 Monotype Corporation plc. All Rights Reserved. Citadel Script is a trademark of the Monotype Corporation plc. This product is licensed, not sold, and may only be used in accordance with the terms specified in the License Agreement.
</metadata>
<defs>
<font id="CitadelScript" horiz-adv-x="296" >
<font-face
font-family="Citadel Script"
font-weight="400"
font-stretch="normal"
units-per-em="1000"
panose-1="0 0 4 0 0 0 0 0 0 0"
ascent="800"
descent="-200"
x-height="265"
cap-height="749"
bbox="-248 -308 1424 962"
underline-thickness="0"
underline-position="-308"
unicode-range="U+0020-203A"
/>
<missing-glyph horiz-adv-x="500"
d="M63 0v962h375v-962h-375zM125 63h250v837h-250v-837z" />
<glyph glyph-name=".notdef" horiz-adv-x="500"
d="M63 0v962h375v-962h-375zM125 63h250v837h-250v-837z" />
<glyph glyph-name=".null" horiz-adv-x="0"
/>
<glyph glyph-name="glyph2" horiz-adv-x="259"
/>
<glyph glyph-name="space" unicode=" " horiz-adv-x="259"
/>
<glyph glyph-name="exclam" unicode="!" horiz-adv-x="333"
d="M71 42q0 -15 -12 -28.5t-27 -13.5q-22 0 -22 23q0 16 12 28t28 12q21 0 21 -21zM474 563l-342 -426q-22 -28 -27 -28q-4 0 -4 6q0 5 20 33l312 442q34 48 50 48q24 0 24 -22q0 -12 -33 -53z" />
<glyph glyph-name="quotedbl" unicode="&#x22;" horiz-adv-x="981"
d="M870 121q0 -48 -36 -84t-84 -36q-37 0 -63 19q-29 22 -29 57q0 21 14.5 36t35.5 15q35 0 35 -25q0 -17 -17 -17q-9 0 -20 11q-6 6 -10 6q-8 0 -14.5 -10.5t-6.5 -19.5q0 -27 21 -43t49 -16q46 0 77.5 30.5t31.5 76.5q0 47 -32.5 80t-79.5 33q-74 0 -193 -70
q-35 -21 -46 -32q-16 -17 -22 -50q-25 7 -37 7q-25 0 -71 -27q-105 -62 -177 -62q-64 0 -106.5 39t-42.5 103q0 50 33 83.5t83 33.5q36 0 63.5 -22.5t27.5 -57.5q0 -23 -14 -39.5t-37 -16.5q-35 0 -35 27q0 17 15 17q5 0 17 -7t16 -7q8 0 15 11t7 20q0 27 -23 43.5t-51 16.5
q-44 0 -73 -29.5t-29 -73.5q0 -49 32.5 -81.5t81.5 -32.5q79 0 198 73q30 18 41.5 33.5t13.5 46.5q25 -10 34 -10q29 0 79 30q101 61 175 61q60 0 106.5 -40.5t46.5 -99.5zM516 166q-41 -11 -51 -11q-9 0 -23 4q-9 -31 -40 -62q33 6 44 6t26 -2q7 30 44 65z" />
<glyph glyph-name="numbersign" unicode="#" horiz-adv-x="407"
d="M246 114l-124 -223h-31l124 223h-52l-122 -219h-28l122 219h-54l19 33h53l25 44h-53l18 33h53l118 210h28l-118 -210h52l116 206h31l-116 -206h55l-18 -33h-55l-25 -44h55l-16 -33h-57zM233 147l25 44h-52l-25 -44h52z" />
<glyph glyph-name="dollar" unicode="$" horiz-adv-x="333"
d="M229 134q0 -56 -38.5 -95t-94.5 -39q-10 0 -39 3l-55 -69q-16 -20 -23 -20q-4 0 -4 5q0 8 14 25l55 68q-42 26 -42 60q0 14 9 26t23 12q21 0 21 -18q0 -25 -32 -32q0 -22 32 -35l129 159q-4 32 -4 66q0 53 32 94.5t84 41.5q18 0 43 -5l42 53q5 5 9 5q8 0 8 -7
q0 -2 -9 -13l-37 -47q27 -25 27 -54q0 -19 -10.5 -35t-28.5 -16q-20 0 -20 17q0 27 36 31q4 7 4 14q0 22 -21 28l-115 -144zM97 15q41 0 68 33q26 30 26 72q0 17 -3 47l-119 -148q17 -4 28 -4zM221 231l108 136q-16 4 -33 4q-35 0 -56.5 -32.5t-21.5 -68.5q0 -3 3 -39z" />
<glyph glyph-name="percent" unicode="%" horiz-adv-x="981"
d="M870 141q0 -59 -46.5 -99.5t-106.5 -40.5q-74 0 -175 61q-50 30 -79 30q-9 0 -34 -10q-2 31 -15 48q-10 14 -40 32q-119 73 -198 73q-50 0 -82 -32t-32 -82q0 -44 29 -73.5t73 -29.5q28 0 51 16.5t23 43.5q0 9 -7 20t-15 11q-4 0 -16 -7t-17 -7q-15 0 -15 17q0 27 35 27
q23 0 37 -16.5t14 -39.5q0 -35 -27.5 -57.5t-63.5 -22.5q-50 0 -83 33.5t-33 83.5q0 64 42.5 103t106.5 39q72 0 177 -62q46 -27 71 -27q12 0 37 7q6 -33 22 -50q11 -11 46 -32q119 -70 193 -70q47 0 79.5 33t32.5 80q0 46 -31.5 76.5t-77.5 30.5q-28 0 -49 -16t-21 -43
q0 -9 6.5 -19.5t14.5 -10.5q4 0 10 6q11 11 20 11q17 0 17 -17q0 -25 -35 -25q-21 0 -35.5 15t-14.5 36q0 35 29 57q26 19 63 19q48 0 84 -36t36 -84zM516 96q-19 18 -26 27q-13 17 -18 38q-15 -2 -26 -2t-44 6q31 -31 40 -62q14 4 23 4q10 0 51 -11z" />
<glyph glyph-name="ampersand" unicode="&#x26;" horiz-adv-x="741"
d="M592 39q-69 -39 -131 -39q-45 0 -77 25q-25 19 -52 64q-79 -89 -147 -89q-41 0 -69 26t-28 67q0 62 72 130q37 34 124 94q14 107 38 146q38 61 91 61q40 0 40 -38q0 -39 -55 -92q-23 -20 -70 -61q0 -90 33 -183q33 44 72 89q54 62 91 62q33 0 33 -32q0 -29 -28 -29
q-24 0 -24 23q0 3 2 12q-6 2 -7 2q-13 0 -50 -40q-27 -30 -84 -105q43 -112 124 -112q42 0 94 29l30 17q4 0 4 -6t-26 -21zM202 32q37 0 69 21q20 14 55 50q-34 117 -36 200q-159 -105 -159 -203q0 -31 20 -49.5t51 -18.5zM324 352q37 24 68 58q39 44 39 77q0 25 -23 25
q-74 0 -84 -160z" />
<glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="889"
d="M513 139q-56 -82 -83 -108q-34 -32 -74 -32q-25 0 -42 17t-17 42q0 30 30 67l44 52q-107 79 -107 182q0 71 46 120.5t116 49.5q55 0 96.5 -38.5t41.5 -93.5q0 -57 -49 -124q-12 -16 -90 -103q37 -13 80 -18q71 108 104 141q42 43 88 43q40 0 40 -31q0 -23 -21 -23
q-19 0 -24 21q-4 17 -15 17q-50 0 -154 -166q55 2 115 44l9 -8q-58 -51 -134 -51zM381 190q83 87 97 105q60 74 60 126q0 41 -37 69q-34 25 -76 25q-63 0 -104.5 -45t-41.5 -109q0 -106 102 -171zM364 11q55 0 133 128q-40 5 -83 19l-54 -60q-34 -38 -34 -59q0 -12 12.5 -20
t25.5 -8z" />
<glyph glyph-name="parenleft" unicode="("
d="M397 676q-133 -177 -215 -356q-100 -220 -100 -400q0 -22 -9 -22q-7 0 -7 12q0 206 82 410q62 155 198 325q10 13 36 40q31 32 36 32q4 0 4 -3q0 -5 -25 -38z" />
<glyph glyph-name="parenright" unicode=")"
d="M206 294q-62 -155 -198 -325q-10 -13 -36 -40q-31 -32 -36 -32q-4 0 -4 3q0 5 25 38q133 177 215 356q100 220 100 400q0 22 9 22q7 0 7 -12q0 -206 -82 -410z" />
<glyph glyph-name="asterisk" unicode="*" horiz-adv-x="444"
d="M227 515q0 -7 -11 -7q-6 0 -15 3l-38 13q-21 7 -21 18q0 18 16 18q8 0 21 -8l32 -19q16 -10 16 -18zM230 483q0 -5 -15 -17l-34 -27q-13 -10 -21 -10q-15 0 -15 15q0 10 18 19l42 21q12 6 17 6q8 0 8 -7zM260 454l2 -29q2 -12 2 -21q0 -21 -17 -21q-16 0 -16 21q0 2 3 21
l4 29q3 23 12 23q8 0 10 -23zM262 581l-4 -39q-2 -22 -11 -22q-8 0 -11 21l-5 39q-2 14 -2 17q0 19 18 19q17 0 17 -19q0 4 -2 -16zM350 552q0 -11 -23 -21l-38 -17q-11 -5 -14 -5q-9 0 -9 7q0 9 14 19l33 23q14 10 22 10q15 0 15 -16zM353 453q0 -18 -16 -18q-4 0 -18 9
l-37 24q-15 10 -15 17q0 8 12 8l12 -3l43 -17q19 -8 19 -20z" />
<glyph glyph-name="plus" unicode="+" horiz-adv-x="796"
d="M481 16q38 0 73 43q50 62 50 106q0 16 -10.5 28.5t-26.5 12.5q-38 0 -82 -56q-39 -49 -39 -93q0 -41 35 -41zM691 472l-512 -512h-33l353 346q-104 -65 -163 -65q-32 0 -54 18t-22 49q0 59 55 112.5t114 53.5q49 0 49 -39q0 -35 -27 -35q-17 0 -17 17q0 14 27 28
q-6 15 -23 15q-45 0 -92.5 -54.5t-47.5 -100.5q0 -22 16 -34t38 -12q50 0 151 63q47 29 123 107l42 43h23zM571 48q-45 -49 -98 -49q-28 0 -46 19t-18 47q0 58 48 105.5t106 47.5q62 0 62 -54q0 -57 -54 -116z" />
<glyph glyph-name="comma" unicode="," horiz-adv-x="259"
d="M89 38q0 -27 -129 -152q-44 -43 -50 -43q-7 0 -7 8q0 2 28 29q15 15 31 30q46 48 73 89q-8 12 -8 23q0 14 12 26t26 12q24 0 24 -22z" />
<glyph glyph-name="hyphen" unicode="-" horiz-adv-x="333"
d="M269 165l-22 -33h-205l19 33h208z" />
<glyph glyph-name="hyphen" unicode="&#x2010;" horiz-adv-x="333"
d="M269 165l-22 -33h-205l19 33h208z" />
<glyph glyph-name="hyphen" unicode="&#x2010;" horiz-adv-x="333"
d="M269 165l-22 -33h-205l19 33h208z" />
<glyph glyph-name="period" unicode="." horiz-adv-x="259"
d="M89 38q0 -15 -10 -26.5t-24 -11.5q-26 0 -26 23q0 14 10 25.5t24 11.5q26 0 26 -22z" />
<glyph glyph-name="slash" unicode="/" horiz-adv-x="222"
d="M253 384l-295 -385h-26l295 385h26z" />
<glyph glyph-name="zero" unicode="0" horiz-adv-x="333"
d="M364 327q0 -84 -103 -204q-105 -123 -187 -123q-56 0 -56 71q0 87 104.5 197.5t190.5 110.5q51 0 51 -52zM76 16q66 0 177 123q94 105 94 183q0 40 -36 40q-56 0 -166 -127q-99 -114 -99 -181q0 -38 30 -38z" />
<glyph glyph-name="one" unicode="1" horiz-adv-x="204"
d="M140 170q-31 -48 -76 -144q-12 -26 -35 -26q-21 0 -21 8q0 16 78 135q50 76 125 170q-60 -57 -85 -82q-47 -47 -58 -47q-6 0 -6 8q0 5 8 10q18 12 69 61l83 80q41 39 45 39q10 0 10 -12q0 -5 -11 -18q-42 -50 -126 -182z" />
<glyph glyph-name="two" unicode="2" horiz-adv-x="352"
d="M249 60q-49 -60 -80 -60q-21 0 -46.5 20t-39.5 20q-17 0 -71 -36l-9 -6l-11 9q33 59 75 91q25 20 103 61q169 89 169 164q0 48 -41 48q0 -101 -76 -150q-32 -20 -59 -20q-44 0 -44 42q0 51 55 96q50 42 104 47q0 18 -18 31t-36 13q-3 0 -9 -1.5t-9 -1.5q-15 -3 -20 -3
q-8 0 -8 5q0 15 44 15q65 0 77 -58q79 -5 79 -78q0 -40 -39 -78q-31 -31 -75 -50q-186 -81 -238 -148q58 41 88 41q17 0 40 -19t35 -19q18 0 50 41q21 27 26 27q7 0 7 -7q0 -8 -23 -36zM162 216q43 0 86 58q9 13 21 41.5t12 42.5q0 10 -1 15q-32 -6 -72 -30q-75 -56 -75 -99
q0 -28 29 -28z" />
<glyph glyph-name="three" unicode="3" horiz-adv-x="333"
d="M273 161q0 -63 -61 -112t-125 -49q-93 0 -93 69q0 42 37.5 76.5t80.5 34.5q18 0 33.5 -11t15.5 -29q0 -28 -22 -50t-50 -22q-12 0 -12 3t30 22q11 7 23 22.5t12 27.5q0 22 -32 22q-36 0 -67.5 -29.5t-31.5 -64.5q0 -24 19.5 -40t43.5 -16q21 0 52 18q27 16 44 34
q72 76 72 108q0 13 -4 26q-22 -5 -44 -5q-13 0 -26 7q-16 9 -16 21q0 20 40 20q9 0 58 -21q34 13 64.5 45.5t30.5 65.5q0 14 -19 22q-9 -35 -37 -63q-31 -30 -65 -30q-13 0 -22.5 10t-9.5 23q0 29 46 55q39 23 72 26q0 40 -44 40q-6 0 -17 -3t-16 -3q-10 0 -10 6q0 14 44 14
q55 0 61 -55q45 -14 45 -55t-39 -74q-34 -30 -77 -37q16 -27 16 -49zM199 210q13 0 28 5q-27 16 -41 16q-17 0 -17 -7q0 -14 30 -14zM225 279q25 0 52 30q21 24 34 53q-42 -5 -63 -20q-41 -29 -41 -45q0 -18 18 -18z" />
<glyph glyph-name="four" unicode="4" horiz-adv-x="333"
d="M202 166q-51 -74 -101 -123q-34 -28 -53 -44q-9 -8 -15 -8q-7 0 -7 6q62 64 150 169l-43 3q-46 -42 -79 -42q-24 0 -24 19q0 39 94 39q100 130 112 200q3 19 17 19q24 0 24 -22q0 -30 -55 -103q-39 -53 -79 -95h47q77 114 165 208q46 50 59 50q12 0 12 -9q0 -4 -13 -15
q-106 -87 -196 -232q81 3 125 53q6 7 12 7q5 0 5 -6q0 -11 -25 -31q-19 -15 -35 -22q-34 -16 -97 -21zM60 143q16 0 41 22q-11 1 -24 1q-8 0 -20 -4.5t-12 -11.5t15 -7z" />
<glyph glyph-name="five" unicode="5" horiz-adv-x="333"
d="M169 20q-43 -19 -76 -19q-36 0 -61 15q-29 19 -29 53q0 43 39.5 79.5t82.5 36.5t43 -39q0 -21 -20 -43q-31 -34 -47 -34q-11 0 -11 3q3 4 24 20q34 26 34 54q0 25 -26 25q-35 0 -69.5 -32t-34.5 -67q0 -25 19 -41.5t45 -16.5q56 0 112.5 63.5t56.5 120.5q0 29 -11.5 40.5
t-40.5 11.5q-10 0 -27.5 -6t-21.5 -6q-3 0 -3 3q3 6 21 32l65 93q13 18 16 18q5 0 5 -6t-6 -17q10 3 22 8q29 12 34 12q10 0 33.5 -10.5t35.5 -10.5q6 0 21.5 9.5t17.5 9.5q5 0 5 -7q0 -9 -34 -31q-15 -10 -37 -10q-16 0 -37 12.5t-30 12.5q-32 0 -52 -28l-48 -68q21 5 34 5
q36 0 54.5 -23.5t18.5 -60.5q0 -108 -117 -161z" />
<glyph glyph-name="six" unicode="6" horiz-adv-x="333"
d="M308 198q-1 -68 -71.5 -134t-139.5 -66q-70 0 -70 69q0 84 110 200t194 116q57 0 57 -39q0 -35 -31 -35q-17 0 -17 14q0 15 30 24q0 25 -38 25q-42 0 -106 -63q-43 -44 -81 -99q62 47 104 47q59 0 59 -59zM92 14q43 0 107 68q79 83 79 131q0 29 -32 29
q-49 0 -120.5 -69.5t-71.5 -118.5q0 -40 38 -40z" />
<glyph glyph-name="seven" unicode="7" horiz-adv-x="278"
d="M287 280q-36 -31 -108 -96q-45 -42 -92 -121q-42 -71 -57 -71q-19 0 -19 17q0 14 29 58q24 37 40 56q50 59 116 113q33 28 118 90q-26 1 -44 7q-35 12 -41 13q-37 0 -94 -71q-14 -17 -20 -17t-6 6q0 4 9 17l54 80q8 12 13 12q6 0 6 -10q64 16 71 16q12 0 35.5 -10
t32.5 -10q19 0 27 6q31 13 27 13q6 0 6 -5q0 -2 -24 -23q-16 -14 -79 -70z" />
<glyph glyph-name="eight" unicode="8" horiz-adv-x="315"
d="M227 153q0 -61 -31 -105q-34 -50 -93 -50q-84 0 -84 80q0 57 99 110q36 19 66 36q0 70 26 112q13 20 39.5 34.5t50.5 14.5q18 0 45 -12q24 37 29 56q7 26 16 26q5 0 5 -8q0 -11 -15 -42.5t-24 -42.5q15 -23 15 -37q0 -20 -16.5 -38.5t-36.5 -18.5q-10 0 -10 6q0 5 13 8
q17 4 26 17t9 27q0 13 -9 20q-57 -73 -120 -114v-79zM96 15q45 0 70 37q22 33 22 80v72q-150 -67 -150 -134q0 -23 17.5 -39t40.5 -16zM226 254q24 9 61 46q31 32 50 59q-23 12 -35 12q-41 0 -61 -41q-15 -30 -15 -76z" />
<glyph glyph-name="nine" unicode="9" horiz-adv-x="333"
d="M226 91q-100 -94 -174 -94q-60 0 -60 43q0 13 9 24.5t22 11.5q15 0 15 -16t-29 -22q3 -29 48 -29q48 0 117 70q53 53 89 111q-74 -68 -124 -68q-62 0 -62 57q0 66 75 132t142 66q66 0 66 -67q0 -94 -134 -219zM137 135q52 0 127 70.5t75 122.5q0 35 -39 35q-38 0 -80 -39
q-117 -110 -117 -163q0 -26 34 -26z" />
<glyph glyph-name="colon" unicode=":" horiz-adv-x="259"
d="M50 38q0 -14 -13 -26t-27 -12q-22 0 -22 23q0 14 13 25t27 11q22 0 22 -21zM176 203q0 -14 -13.5 -27t-27.5 -13q-22 0 -22 28q0 14 12 25t26 11q25 0 25 -24z" />
<glyph glyph-name="semicolon" unicode=";" horiz-adv-x="259"
d="M163 201q0 -14 -12 -27t-26 -13q-9 0 -17 9.5t-8 19.5q0 13 12 25t25 12q26 0 26 -26zM38 38q0 -27 -129 -152q-44 -43 -50 -43q-7 0 -7 8q0 2 28 29q15 15 31 30q46 48 73 89q-8 12 -8 23q0 14 12 26t26 12q24 0 24 -22z" />
<glyph glyph-name="less" unicode="&#x3c;" horiz-adv-x="444"
d="M354 374q-84 -89 -136 -89q-37 0 -37 40q0 74 157 196q-11 -1 -19 -1q-9 0 -35 2q-3 1 -17 2q-28 -38 -157 -184q-34 -39 -51 -39q-7 0 -7 6q0 5 8 10q31 19 111 112q72 83 86 107q5 73 38 73q17 0 17 -19q0 -22 -35 -50q19 -6 41 -6q37 0 58 12q6 2 7 2q4 0 4 -4
q0 -5 -11 -16q-30 -31 -41 -43q-115 -127 -115 -169q0 -17 13 -17q27 0 112 87q21 21 25 21q5 0 5 -5q0 -6 -21 -28z" />
<glyph glyph-name="equal" unicode="=" horiz-adv-x="574"
d="M525 368q-105 -87 -197 -87q-60 0 -60 49q0 16 11 29.5t26 13.5q17 0 17 -14q0 -11 -20 -18.5t-20 -18.5q0 -10 9 -17t19 -7q46 0 90 64q53 77 53 139q0 20 -16 55q-117 -138 -201 -215q-61 -56 -104 -56q-37 0 -37 40q0 74 157 196q-11 -1 -19 -1q-9 0 -35 2q-3 1 -17 2
q-28 -38 -157 -184q-34 -39 -51 -39q-7 0 -7 6q0 5 8 10q31 19 111 112q72 83 86 107q5 73 38 73q17 0 17 -19q0 -22 -35 -50q19 -6 41 -6q37 0 58 12q6 2 7 2q4 0 4 -4q0 -5 -11 -16q-30 -31 -41 -43q-115 -127 -115 -169q0 -17 13 -17q23 0 110 81q65 60 172 190
q0 47 26 47q13 0 13 -12t-19 -37q43 -62 43 -97q0 -106 -148 -178q110 27 183 98q8 6 11 6q6 0 6 -6q0 -7 -19 -23z" />
<glyph glyph-name="greater" unicode="&#x3e;" horiz-adv-x="444"
d="M379 366q-103 -85 -194 -85q-61 0 -61 49q0 16 11 29.5t27 13.5t16 -14q0 -10 -20 -18t-20 -19q0 -10 9.5 -17t19.5 -7q47 0 91 65q51 75 51 138q0 23 -16 55q-83 -87 -125 -127q-116 -113 -148 -121q-7 0 -7 6q0 30 29 55q16 13 62 38t63 42q94 91 119 121q0 49 25 49
q14 0 14 -14q0 -12 -20 -37q44 -62 44 -97q0 -57 -48 -110q-42 -46 -101 -68q110 27 184 98q8 6 10 6q7 0 7 -6q0 -7 -22 -25z" />
<glyph glyph-name="question" unicode="?" horiz-adv-x="444"
d="M114 44q0 -16 -12 -30t-28 -14q-22 0 -22 23q0 16 11.5 30t27.5 14q23 0 23 -23zM433 370q-44 -30 -132 -91q-50 -36 -115 -121q-10 -13 -15 -13q-4 0 -4 7t19 31q62 78 123 128q35 27 105 83q33 27 59 71q28 48 28 86q0 77 -75 77q-55 0 -116 -58t-61 -112q0 -18 11 -31
t29 -13q60 0 111 95q27 50 24 50q6 0 6 -21q0 -48 -43 -95t-91 -47q-28 0 -45 19t-17 47q0 62 74 126q65 56 134 56q44 0 72.5 -25.5t28.5 -68.5q0 -102 -110 -180z" />
<glyph glyph-name="at" unicode="@" horiz-adv-x="1093"
d="M1063 341q-65 -97 -129 -203q-100 -168 -100 -207q0 -13 11 -13q36 0 85 41q36 29 73 75q33 41 30 41q3 0 3 -3q0 -18 -84 -97q-90 -84 -131 -84q-16 0 -26.5 12.5t-10.5 29.5q0 59 50 157q27 53 100 172h-105q-137 -142 -232 -192q-135 -71 -250 -71q-77 0 -126 27
q-52 28 -90 93q-55 20 -90 60q-38 44 -38 99q0 123 114 205q53 38 120 57q47 13 131 22q116 59 219 59q68 0 113 -26q55 -33 55 -96q0 -136 -169 -269q-160 -126 -341 -126q-39 0 -93 10q58 -81 159 -81q200 0 435 229h-74q-14 0 -14 7q0 9 14 9h89q97 91 327 304
q141 129 193 129q25 0 25 -19q0 -17 -23 -44q-18 -21 -111 -152zM118 194q0 97 66 197q58 89 146 151q-118 -10 -204 -71q-45 -32 -77 -85q-33 -56 -33 -108q0 -92 109 -140q-7 29 -7 56zM689 354q51 76 51 143q0 55 -47 85q-40 26 -99 26q-89 0 -192 -46q144 -17 144 -43
q0 -5 -5 -5q27 0 -5.5 7.5t-85.5 15.5q-56 8 -82 9q-97 -57 -162 -146q-74 -100 -74 -202q0 -29 11 -65q62 -14 114 -14q116 0 241 68.5t191 166.5zM942 278q111 154 267 328l72 81q0 5 -7 5q-39 0 -124 -81q-5 -4 -307 -333h99z" />
<glyph glyph-name="A" unicode="A" horiz-adv-x="1093"
d="M1064 133q-124 -133 -178 -133q-39 0 -39 45q0 70 87 217h-105q-132 -137 -232 -192q-130 -71 -250 -71q-77 0 -126 27q-52 28 -90 93q-55 20 -90 60q-38 44 -38 99q0 123 114 205q53 38 120 57q47 13 131 22q116 59 219 59q68 0 113 -26q55 -33 55 -96q0 -104 -89 -200
q-79 -86 -202 -141q-119 -54 -219 -54q-39 0 -93 10q58 -81 159 -81q200 0 435 229h-74q-14 0 -14 7q0 9 14 9h89q97 91 327 304q141 129 193 129q25 0 25 -19q0 -17 -23 -44t-111 -151q-77 -109 -109 -156q-167 -248 -167 -297q0 -17 13 -17q31 0 137 106q48 48 51 50
q2 -1 2 -3q0 -10 -35 -47zM118 194q0 97 66 197q58 89 146 151q-118 -10 -204 -71q-45 -32 -77 -85q-33 -56 -33 -108q0 -92 109 -140q-7 29 -7 56zM487 183q132 70 201 173q52 78 52 141q0 55 -47 85q-40 26 -99 26q-89 0 -192 -46q144 -17 144 -43q0 -5 -5 -5
q27 0 -5.5 7.5t-85.5 15.5q-56 8 -82 9q-97 -57 -162 -146q-74 -100 -74 -202q0 -29 11 -65q62 -14 114 -14q109 0 230 64zM942 278q111 154 267 328l72 81q0 5 -7 5q-39 0 -124 -81q-5 -4 -307 -333h99z" />
<glyph glyph-name="B" unicode="B" horiz-adv-x="870"
d="M714 194q0 -85 -71 -141q-67 -53 -176 -53q-64 0 -168 33q-96 -33 -154 -33q-76 0 -76 30q0 37 105 37q46 0 111 -11q51 36 90 88q46 61 127 210q110 202 207 280q62 50 79 50q5 0 5 -6q0 -3 -12 -16q-15 -17 -28 -35l-107 -154q-28 -43 -129 -227q-32 -58 -84 -113
q-56 -58 -110 -86q75 -18 113 -18q87 0 150 54q77 66 77 142q0 62 -56 94q-18 10 -18 18q0 9 24 10q99 4 198 76q110 79 110 173q0 76 -88 118q-69 34 -154 34q-43 0 -119 -14q30 -46 30 -84q0 -130 -144 -279q-150 -155 -273 -155q-48 0 -73.5 29t-25.5 77q0 59 50 138
q43 68 96 114q110 95 315 168q-50 36 -124 36q-142 0 -261 -117q-50 -49 -88 -121q-42 -79 -42 -141q0 -37 9 -68l5 -17q0 -7 -5 -7q-10 0 -17 39q-5 28 -5 48q0 71 40 149q36 71 91 125t127 88q78 37 148 37q86 0 140 -47q89 20 166 20q95 0 169 -34q96 -45 96 -130
q0 -117 -129 -194q-99 -59 -234 -77q93 -46 93 -137zM119 14q76 0 140 26q-44 12 -92 12q-84 0 -84 -22q0 -16 36 -16zM175 230q118 0 262 149q139 144 139 266q0 40 -30 86q-189 -51 -316 -164q-54 -48 -94 -112q-48 -75 -48 -135q0 -90 87 -90z" />
<glyph glyph-name="C" unicode="C" horiz-adv-x="963"
d="M796 136q-96 -100 -201 -121q-46 -51 -72 -70q-46 -34 -92 -34q-40 0 -61 30q-18 27 -18 68q0 15 7 47q-43 70 -43 138q0 95 61 209q-85 3 -134 12q-65 13 -127 46q-45 24 -75 59q-36 43 -36 87q0 90 93 131q67 30 170 30q176 0 280 -63q56 -34 56 -46q0 -4 -4 -4
q-6 0 -40 25q-103 75 -287 75q-98 0 -162 -26q-92 -37 -92 -121q0 -78 114 -138q94 -49 254 -53q151 206 397 303q87 34 129 34q31 0 54 -12q29 -16 29 -44q0 -47 -74 -108q-49 -41 -114 -75q-135 -73 -352 -111q-88 -132 -88 -243q0 -21 8 -52q54 133 165 221
q118 93 232 93q50 0 81 -26.5t31 -75.5q0 -92 -89 -185zM431 -75q66 0 139 83q-46 -9 -73 -9q-62 0 -125 43q-6 -25 -6 -37q0 -32 17 -56t48 -24zM606 30q101 38 176 111q91 87 91 181q0 89 -104 89q-46 0 -106 -24t-97 -55q-68 -58 -107 -107q-41 -53 -76 -130
q46 -76 149 -76q27 0 53 6q29 36 76 150q8 19 12 19t4 -7q0 -31 -71 -157zM470 424q176 21 323 98q61 32 113 73q77 60 77 102q0 40 -50 40q-39 0 -124 -42q-64 -32 -122 -70q-115 -75 -217 -201z" />
<glyph glyph-name="D" unicode="D" horiz-adv-x="1037"
d="M888 171q-174 -171 -349 -171q-55 0 -161 34q-101 -34 -181 -34q-91 0 -91 33q0 42 122 42q53 0 133 -22q70 40 136 123q34 43 104 152q114 178 154 226q47 57 146 134q-83 49 -188 49q-20 0 -50 -3q28 -53 28 -95q0 -75 -43 -158q-38 -72 -97 -133t-136 -106
q-91 -52 -161 -52q-59 0 -93.5 32t-34.5 90q0 75 53 160q48 76 114 128q87 68 158.5 99t180.5 47q-65 45 -144 45q-168 0 -316 -122q-60 -50 -104 -121q-50 -81 -50 -149q0 -22 16 -63.5t16 -36.5q0 -4 -4 -4q-17 0 -30 44q-10 34 -10 58q0 75 50 159q45 76 110 128
q150 119 328 119q90 0 160 -55l50 2q103 4 214 -49q73 49 91 49q4 0 4 -3q-1 -5 -4 -6q-20 -10 -74 -54q99 -80 99 -199q0 -174 -146 -317zM196 13q65 0 144 30q-69 19 -106 19q-113 0 -113 -29q0 -20 75 -20zM254 205q72 0 156 49q70 40 131 102q57 58 94 128q42 81 42 152
q0 55 -33 97q-194 -21 -341 -144q-67 -56 -111 -125q-53 -82 -53 -156q0 -48 33 -75.5t82 -27.5zM527 17q73 0 157 52q69 43 129 109q170 189 170 346q0 94 -63 149q-62 -59 -97 -109q-24 -33 -76 -126q-87 -155 -145 -226q-87 -107 -206 -169q83 -26 131 -26z" />
<glyph glyph-name="E" unicode="E" horiz-adv-x="796"
d="M712 262q0 -99 -165 -208q-39 -50 -86 -85q-60 -45 -110 -45q-83 0 -88 86q-108 44 -108 152q0 107 109 183q83 58 205 85q-12 15 -23 30q-126 -27 -211 -27q-89 0 -147 24q-82 34 -82 111q0 97 120 148q92 39 203 39q104 0 213 -54q113 60 224 60q35 0 62 -11
q35 -15 35 -46q0 -77 -157 -153q-94 -45 -223 -80q6 -19 17 -35q44 6 69 6q89 0 89 -26q0 -29 -60 -29q-62 0 -115 30q-121 -37 -186 -105q-79 -82 -79 -164q0 -62 48 -102q27 116 122 206q101 95 215 95q44 0 74 -20q35 -23 35 -65zM431 532q0 85 98 161q-56 27 -97 36.5
t-102 9.5q-108 0 -194 -34q-117 -46 -117 -138q0 -66 80 -98q57 -23 135 -23q101 0 206 28q-9 36 -9 58zM351 -63q71 0 165 100q-91 -38 -167 -38q-33 0 -74 10q0 -72 76 -72zM572 89q45 34 77 77q38 53 38 100q0 32 -26 50t-59 18q-109 0 -209 -94q-97 -90 -117 -200
q54 -22 97 -22q70 0 169 47q72 113 78 199q1 8 5 8q5 0 5 -15q0 -66 -58 -168zM480 485q107 25 215 75q155 72 155 142q0 23 -29 36q-22 10 -49 10q-78 0 -181 -77q11 -10 24 -23q6 -6 6 -10q-1 -3 -3 -3t-19.5 13t-19.5 14q-99 -89 -99 -177zM595 430q-39 0 -81 -6
q38 -24 83 -24t45 16q0 14 -47 14z" />
<glyph glyph-name="F" unicode="F" horiz-adv-x="815"
d="M656 281q-61 -90 -85 -119q-38 -47 -92 -85q-107 -77 -194 -77q-66 0 -66 51q0 21 14.5 36.5t35.5 15.5q29 0 29 -24q0 -20 -31 -31q-11 -4 -11 -11q0 -21 44 -21q64 0 156 101q68 76 114 158l-90 -6h-17q-12 0 -12 6q0 8 29 10l100 8q107 168 154 228q56 73 136 137
l-64 8q-144 18 -193 18q-33 0 -46 -2q13 -35 13 -67q0 -65 -44 -140q-36 -63 -92 -116q-112 -107 -233 -107q-52 0 -86 33.5t-34 85.5q0 73 57 154q53 73 122 113q124 72 245 90q-56 38 -127 38q-140 0 -255 -102q-118 -105 -118 -243q0 -66 17 -99q5 -10 5 -15q0 -6 -4 -6
q-15 0 -26 51q-8 39 -8 65q0 55 28 123q33 81 89 129q129 111 275 111q82 0 144 -48q68 5 103 5q81 0 145 -11q43 -8 139 -28q71 43 143 43q53 0 53 -37q0 -53 -126 -53q-41 0 -90 5q-50 -49 -94 -116q-19 -30 -75 -130q-34 -60 -67 -113l107 4q3 0 9 1h9q7 0 7 -6t-27 -8z
M448 384q79 80 101 131q14 33 14 101q0 39 -16 66q-264 -5 -391 -175q-51 -68 -51 -135q0 -51 33 -78q30 -26 82 -26q113 0 228 116zM1056 681q44 0 44 25q0 21 -31 21q-58 0 -116 -33q60 -13 103 -13z" />
<glyph glyph-name="G" unicode="G" horiz-adv-x="870"
d="M839 376q-134 -224 -159 -253q-105 -123 -275 -123q-113 0 -113 75q0 25 17 47t42 22q32 0 32 -25q0 -24 -26 -24q-5 0 -16 4.5t-13 4.5q-9 0 -15.5 -11t-6.5 -20q0 -27 29 -44q24 -13 54 -13q88 0 193 83q61 48 166 207q-165 -122 -283 -122q-59 0 -105 42
q-33 30 -39 92q-121 4 -209 53q-109 61 -109 169q0 113 109 175q90 51 212 51q145 0 251 -70q180 112 320 112q99 0 99 -85q0 -67 -74 -151q-60 -67 -132 -112q-204 -127 -437 -141v-19q0 -90 102 -90q61 0 172 59q77 41 159 99q10 5 29.5 22.5t26.5 17.5q9 0 9 -9
q0 -6 -10 -23zM321 332q17 111 83 201q54 73 158 154q-99 65 -243 65q-114 0 -199 -47q-105 -58 -105 -163q0 -104 107 -161q84 -45 199 -49zM355 334q102 2 223 43q111 38 206 97q69 43 126 107q72 80 72 143q0 32 -20.5 51.5t-53.5 19.5q-121 0 -294 -134q59 -66 59 -141
q0 -56 -12 -56q-5 0 -5 6q3 25 3 41q0 79 -56 141q-204 -156 -248 -318z" />
<glyph glyph-name="H" unicode="H" horiz-adv-x="1130"
d="M971 158q-53 -83 -53 -108q0 -14 17 -14q33 0 98 53q48 39 85 80q6 7 11 7t5 -4t-37 -43q-124 -130 -208 -130q-36 0 -36 52q0 63 95 191h-122q-127 -139 -206 -182q-118 -64 -240 -64q-166 0 -240 125q-139 60 -139 178q0 88 70 151q49 44 60 44q6 0 6 -6q0 -3 -25 -22
q-96 -74 -96 -169q0 -103 115 -154q-13 46 -13 87q0 120 110 216q106 92 228 92q77 0 128 -38q57 -42 57 -116q0 -58 -35 -116q-31 -53 -82 -90q-98 -72 -250 -72q-58 0 -114 11q67 -92 186 -92q180 0 379 217h-76q-29 0 -29 8q0 9 11 9l109 -1q207 234 300 317
q-141 -40 -256 -40q-91 0 -171 27q-113 37 -113 110q0 86 111 128q80 30 183 30q101 0 182 -20q66 -16 164 -60q52 -23 52 -36q0 -4 -4 -4q-2 0 -15 7q-181 98 -383 98q-96 0 -170 -26q-106 -38 -106 -117q0 -68 109 -101q75 -22 163 -22q153 0 312 62q56 22 58 22q9 0 9 -8
q0 -4 -8 -11q-117 -101 -209 -219q-45 -58 -111 -137h123q177 217 375 356q33 23 47 23q7 0 7 -6q0 -12 -19 -28t-56 -47q-203 -179 -343 -398zM274 122q131 0 233 64q118 75 118 199q0 68 -52 105q-47 33 -117 33q-124 0 -222 -90q-102 -92 -102 -214q0 -31 16 -82
q68 -15 126 -15z" />
<glyph glyph-name="I" unicode="I" horiz-adv-x="574"
d="M525 312q-196 -312 -415 -312q-106 0 -106 89q0 34 23 66.5t56 32.5q26 0 26 -24q0 -12 -10 -20.5t-22 -8.5q-3 0 -11.5 2.5t-20.5 2.5q-10 0 -19 -23q-7 -19 -7 -32q0 -71 88 -71q151 0 306 248q-97 -34 -183 -44q-2 -24 -2 -35q0 -2 1 -23l1 -25q0 -8 -4 -8
q-11 0 -11 58q0 9 2 31h-35q-71 0 -114 31q-49 35 -49 103q0 83 85 166q64 64 157 112q106 55 298 90q168 31 289 31q22 0 22 -5q0 -7 -9 -10q-69 -32 -134 -105q50 -19 50 -64q0 -73 -94 -153q-69 -59 -158 -100zM218 231q33 161 173 281.5t303 124.5q28 28 85 68
q-292 -14 -490 -97q-97 -41 -164 -98q-91 -77 -91 -159q0 -60 44 -93q40 -29 102 -29q24 0 38 2zM428 283q84 132 114 176q67 96 132 162q-150 -10 -282 -126t-159 -263q84 8 195 51zM543 338q61 23 134 88q86 77 86 138q0 35 -45 52q-33 -42 -93 -142z" />
<glyph glyph-name="J" unicode="J" horiz-adv-x="778"
d="M486 83q-86 -122 -194 -232q-156 -159 -240 -159q-48 0 -48 44q0 37 43 93q33 42 73 76q76 64 272 155q13 23 48 87q-62 -15 -118 -15q-194 0 -194 160q0 96 90 186q73 73 177 118q117 51 264 76q75 11 226 36q41 7 69 14q24 5 20 5q6 0 6 -5q0 -4 -13 -13
q-21 -15 -30 -22q-57 -47 -130 -135q31 -31 31 -65q0 -92 -101 -182q-74 -66 -183 -116l-53 -82q52 20 151 56q44 16 50 16t6 -4q0 -6 -53 -25q-10 -4 -169 -67zM374 34q-170 -77 -250 -144q-104 -87 -104 -149q0 -33 35 -33q75 0 184 130q75 89 135 196zM453 169
q85 139 147 218q54 69 151 168q-10 1 -22 1q-48 0 -103 -31q-48 -27 -85 -67q-62 -68 -90 -167q-8 -29 -12 -29q-5 0 -5 8q11 124 121 224q85 77 184 77q18 0 28 -1l147 122q-86 -25 -167 -46.5t-161 -39.5q-134 -29 -199 -52q-75 -26 -128 -65q-116 -86 -116 -201
q0 -71 53 -108q46 -32 120 -32q86 0 137 21zM572 217q80 34 155 103q96 88 96 168q0 32 -28 52q-120 -150 -223 -323z" />
<glyph glyph-name="K" unicode="K" horiz-adv-x="907"
d="M521 193q-75 -92 -138 -135q-84 -58 -180 -58q-137 0 -137 113q0 51 40 110q-53 18 -77 45q-28 30 -28 82q0 44 27 88q18 29 72 89q66 118 159 177q124 79 235 79q74 0 124 -35q56 -39 56 -110q41 2 83 4l65 4q9 1 30.5 4.5t32.5 3.5q9 0 9 -8q0 -3 -48 -50
q-21 -21 -120 -146zM156 233q161 0 322 121q172 130 182 258q-13 0 -37.5 -1t-37.5 -1q-25 0 -75 1t-75 1q-191 0 -326 -95q-15 -31 -19 -44q-6 -23 -11 -23q-4 0 -4 9q0 7 8 33q-69 -66 -69 -143q0 -93 103 -113q65 58 86 58q5 0 5 -4t-4 -6q-39 -22 -69 -50h12q8 -1 9 -1z
M187 17q105 0 205 104q57 59 208 257q123 161 230 248l-155 -13q-8 -96 -102 -195q-78 -82 -180 -135q-122 -63 -236 -63q-3 0 -34 2q-43 -57 -43 -108q0 -97 107 -97zM660 637q0 63 -51 100q-45 32 -111 32q-114 0 -216 -65q-91 -59 -160 -162q102 58 204 78q85 17 222 17
h112zM877 132q-119 -132 -187 -132q-26 0 -41 17t-15 43q0 45 40.5 129t40.5 92q0 30 -57 30q-17 0 -17 5t27 17q167 74 367 252q145 129 206 129q20 0 20 -8q0 -3 -13 -8l-10 -4q-28 -11 -181 -133q-192 -153 -371 -237q77 -17 77 -62q0 -24 -38 -105.5t-38 -101.5
q0 -28 26 -28q38 0 154 112q40 39 41 39q3 0 3 -4t-34 -42z" />
<glyph glyph-name="L" unicode="L" horiz-adv-x="889"
d="M770 -65q-45 -34 -102 -34q-36 0 -92 25q-28 13 -209 104q-114 -30 -178 -30q-27 0 -52 8q-36 11 -36 32q0 24 43 36q29 9 61 9q59 0 176 -30q101 59 184 213q-177 -74 -280 -74q-198 0 -220 166q-62 56 -62 118q0 66 62 135q25 28 38 28q4 0 4 -4t-6 -7q-32 -18 -61 -72
q-23 -42 -23 -82q0 -50 46 -96q2 150 154 254q137 94 293 94q61 0 105 -24q55 -30 55 -86q0 -124 -156 -218q-138 -82 -271 -82q-87 0 -162 34q23 -144 195 -144q77 0 156 25q52 16 146 60q72 123 98 165q58 95 93 140q58 75 121 118q55 37 95 37q17 0 29.5 -12t12.5 -29
q0 -59 -123 -191q-76 -82 -220 -181q-108 -192 -279 -293q80 -29 161 -59q123 -44 151 -44q43 0 66 20q6 5 10 6q5 0 5 -5q0 -9 -28 -30zM235 332q127 0 264 79q157 90 157 207q0 51 -50 76q-39 20 -95 20q-155 0 -286 -93q-145 -103 -145 -252q76 -37 155 -37zM199 16
q69 0 139 23q-89 31 -149 31q-19 0 -41 -6q-30 -8 -30 -22q0 -26 81 -26zM702 371q139 99 203 171q106 118 106 170q0 26 -26 26q-62 0 -131 -89q-57 -74 -152 -278z" />
<glyph glyph-name="M" unicode="M" horiz-adv-x="1111"
d="M985 47q-66 -48 -97 -48q-49 0 -49 64t48 150q82 147 326 401q83 86 83 96q0 12 -11 12q-27 0 -174 -147q-113 -113 -300 -342q-119 -145 -159 -187q-44 -46 -68 -46q-28 0 -28 48q0 71 163 273q34 44 212 247q91 104 91 118q0 9 -11 9q-17 0 -78 -46q-49 -37 -73 -61
q-113 -111 -318 -332q-114 -123 -253 -193q-129 -65 -227 -65q-83 0 -137 48q-57 50 -57 132q-108 44 -108 168t121 210q109 78 238 78q82 0 82 -15q0 -5 -8 -5q-5 0 -7 1q-20 5 -75 5q-120 0 -223 -78q-113 -84 -113 -200q0 -107 93 -149q25 168 164 284q71 60 159 97
q96 42 180 42q62 0 104 -25q52 -30 52 -87q0 -62 -49 -131q-42 -59 -102 -99q-178 -120 -369 -120q-58 0 -124 18q28 -135 180 -135q126 0 281 91q89 52 226 189q264 263 322 317q83 77 123 77q24 0 24 -23q0 -17 -199 -285q-64 -86 -142 -205q-68 -103 -68 -128
q0 -11 8 -11t80 86q138 164 219 258q152 175 218 237q105 98 137 98q21 0 21 -22q0 -13 -39 -61q-112 -138 -158 -200q-102 -139 -148 -237q-62 -132 -62 -157q0 -27 17 -27q39 0 138 96l59 57q4 0 4 -5t-41.5 -49.5t-97.5 -85.5zM17 168q177 0 354 119q54 36 94 92
q47 64 47 120q0 102 -142 102q-85 0 -174 -37q-85 -35 -152 -94q-78 -69 -114 -137q-30 -57 -46 -146q70 -19 133 -19z" />
<glyph glyph-name="N" unicode="N" horiz-adv-x="1074"
d="M850 173q-89 -108 -117 -138q-33 -35 -49 -35q-19 0 -19 32q0 86 70 222q20 38 114 222q97 189 97 205q0 6 -5 6q-6 0 -125 -146q-145 -177 -245 -275q-273 -266 -480 -266q-95 0 -156.5 53.5t-65.5 147.5q-58 22 -83 52q-30 34 -30 92q0 98 93 173q87 70 187 70
q39 0 39 -7q0 -5 -14 -5q-109 -3 -188 -58q-105 -74 -105 -176q0 -92 102 -127q26 167 177 295q69 58 156 94q93 38 178 38q136 0 136 -97q0 -67 -64 -141q-49 -57 -121 -104q-167 -109 -364 -109q-34 0 -85 8q1 -79 52.5 -128t131.5 -49q157 0 382 175q198 154 477 501
q36 45 53 45q20 0 20 -25q0 -44 -67 -201q-45 -105 -156 -322q-58 -113 -58 -133q0 -11 2 -12q9 0 74 74q77 86 187 230q-48 -7 -72 -7q-7 0 -7 4q0 5 10 5q48 0 83 14q6 6 116 144q101 127 152 169q91 75 121 75q31 0 31 -31q0 -66 -158 -220q-113 -110 -253 -147
q-31 -38 -154 -187zM-34 205q191 0 347 97q72 45 123 100q68 74 68 138q0 89 -127 89q-82 0 -177 -41q-86 -37 -156 -96q-140 -118 -161 -279q45 -8 83 -8zM1014 374q67 23 109 46q121 67 227 209q50 67 50 98q0 19 -18 19q-19 0 -74 -44t-86 -79q-51 -61 -208 -249z" />
<glyph glyph-name="O" unicode="O" horiz-adv-x="741"
d="M619 186q-149 -159 -297 -160q-84 -26 -125 -26q-92 0 -143 62q-49 58 -49 152q0 169 141 337q112 134 243 188q39 16 65 16q5 0 5 -4q-13 -7 -49 -29q-118 -71 -221 -216q-130 -183 -130 -321q0 -65 36 -116q40 -56 102 -56q27 0 78 20q-95 56 -95 181q0 93 46 202
q40 94 105 179q61 80 131 134q91 71 168 71q69 0 104 -56q29 -46 29 -120q0 -60 -26 -132q0 -63 -22 -135q-31 -102 -96 -171zM295 42q139 72 252 215q100 127 164 289q-39 39 -76 39q-61 0 -126 -81q-12 -15 -23 -34q-7 -13 -13 -13q-2 2 -3 5q0 14 25 47q69 91 140 91
q38 0 81 -32q15 53 15 88q0 129 -99 129q-126 0 -274 -181q-67 -82 -112 -184q-50 -115 -50 -209q0 -128 99 -169zM358 41q137 22 240 139q100 113 119 254q-53 -126 -144 -230q-99 -111 -215 -163z" />
<glyph glyph-name="P" unicode="P" horiz-adv-x="741"
d="M587 356q-106 -183 -180 -252q-43 -40 -93 -69q-63 -36 -109 -36q-48 0 -48 35q0 15 12 26t27 11q24 0 24 -19q0 -6 -2.5 -13.5t-2.5 -9.5q0 -9 16 -9q52 0 137 105q64 79 150 246q-20 20 -20 37q0 25 11 25q4 0 4 -6v-7q-1 -6 -1 -8q0 -14 12 -26q79 134 136 200
q65 75 173 149q-72 42 -179 42q-41 0 -82 -7q23 -43 23 -82q0 -92 -83 -205q-78 -107 -189 -182q-117 -78 -209 -78q-51 0 -81.5 30t-30.5 81q0 74 57 156q46 67 117 124q148 120 371 163q-49 42 -124 42q-115 0 -233 -86q-106 -76 -171 -185q-12 -20 -15 -20q-4 0 -4 4
q0 9 37 67q52 82 155 151q122 82 235 82q81 0 136 -51q61 11 105 11q94 0 184 -45q79 41 97 41q4 0 4 -3q-2 -2 -17 -11q-31 -18 -65 -38q72 -54 72 -127q0 -116 -125 -189q-106 -61 -231 -64zM115 237q137 0 310 168q157 153 157 285q0 40 -26 76q-214 -41 -377 -168
q-59 -46 -107 -118q-55 -83 -55 -147q0 -45 26.5 -70.5t71.5 -25.5zM595 371q77 9 116 25q103 41 157 140q29 54 29 97q0 49 -45 91q-81 -61 -149 -161q-44 -65 -108 -192z" />
<glyph glyph-name="Q" unicode="Q" horiz-adv-x="981"
d="M550 169q-59 -30 -178 -90q52 -9 232 -54q127 -32 203 -32q53 0 92 9l38 9q6 0 6 -4q0 -18 -87 -41q-42 -11 -89 -11q-135 0 -351 59q-69 19 -122 31q-146 -47 -208 -47q-82 0 -82 32q0 35 80 54q54 12 107 12q48 0 150 -12q160 80 228 124q75 49 148 124
q148 152 148 293q0 79 -61 126q-55 41 -137 45q62 -45 62 -121q0 -80 -58 -170q-47 -75 -120 -138q-78 -68 -174 -117q-114 -59 -198 -59q-172 0 -172 145q0 132 200 304q76 66 204 118q117 48 186 51q-40 10 -85 10q-126 0 -241 -44q-125 -48 -202 -135l-20 -26
q-16 -19 -23 -19q-4 0 -4 5q0 17 78 92q73 69 189 107q105 35 215 35q62 0 132 -21q20 2 48 2q103 0 172 -59q73 -62 73 -163q0 -79 -57 -163q-99 -146 -322 -261zM169 205q85 0 197 56q95 47 173 114q67 58 117 135q58 91 58 165q0 87 -80 122q-216 -18 -398 -155
q-86 -64 -141 -135q-75 -93 -75 -175q0 -62 44 -96q41 -31 105 -31zM73 12q80 0 187 38q-78 15 -123 15q-33 0 -64 -6q-49 -9 -49 -30q0 -17 49 -17z" />
<glyph glyph-name="R" unicode="R" horiz-adv-x="889"
d="M877 153q-145 -153 -207 -153q-19 0 -31.5 17t-12.5 37q0 60 55 149q30 49 30 72q0 33 -54 58q-9 3 -9 10q0 11 48 11q24 0 86 19q57 18 84 31q52 25 89 72q40 52 40 106q0 62 -48 97q-101 -54 -194 -167q-31 -37 -152 -209q-109 -156 -203 -228q-97 -75 -193 -75
q-35 0 -64 11q-40 16 -40 45q0 14 9.5 25t23.5 11q12 0 21 -10t9 -22q0 -15 -18 -29q27 -16 53 -16q91 0 201 138q73 97 223 289q143 175 307 249q-87 50 -246 53q14 -42 14 -66q0 -104 -102 -215q-82 -89 -193 -149q-135 -73 -258 -74q-139 -1 -139 109q0 82 67 168
q56 72 138 123q101 63 216 91q97 23 233 27q-40 85 -210 85q-92 0 -171 -39q-82 -41 -133 -115q-24 -35 -27 -35q-5 0 -5 5q0 7 46.5 67t130.5 96q80 34 159 34q71 0 128 -20q73 -25 99 -77q89 -4 141 -14q66 -13 134 -45q61 19 73 19q6 0 6 -4q0 -3 -18 -10q-10 -4 -42 -16
q80 -61 80 -138q0 -59 -54 -111q-44 -44 -107 -69q-72 -30 -216 -30q41 -21 58 -39q24 -26 24 -63q0 -32 -30 -87q-48 -89 -48 -102q0 -17 19 -17q36 0 165 121q20 19 23 19q5 0 5 -4q0 -2 -13 -16zM149 253q89 0 192 45q92 41 170 104q172 140 172 279q0 28 -14 62
q-263 0 -435 -106q-87 -53 -143 -120q-71 -85 -71 -168q0 -96 129 -96z" />
<glyph glyph-name="S" unicode="S" horiz-adv-x="741"
d="M619 161q-105 -161 -295 -161q-204 0 -246 187q-70 79 -70 167q0 160 159 254q58 34 101 34q20 0 20 -4q0 -5 -20 -9q-102 -19 -172 -95q-73 -80 -73 -181q0 -81 53 -140q3 151 104 261q113 123 250 123q143 0 143 -127q0 -49 -26 -115q57 43 139 99q28 72 46 105
q27 49 68 92q87 91 156 91q33 0 33 -27q0 -23 -49 -70q-101 -97 -190 -160q-18 -53 -55 -157q-41 -114 -76 -167zM218 164q156 0 277 136q-12 -7 -45 -28q-21 -14 -24 -14q-4 0 -4 4q0 6 15 17q20 12 76 51q45 83 45 140q0 113 -130 113q-128 0 -232.5 -112t-104.5 -240v-32
q62 -35 127 -35zM285 26q128 0 232 107q53 55 95 141q23 46 66 158q-62 -44 -142 -100q-66 -86 -127 -127q-83 -56 -184 -56q-63 0 -130 28q17 -69 68 -110t122 -41zM758 510q71 48 173 141q46 42 46 61q0 17 -20 17q-21 0 -60 -27q-33 -24 -51 -46q-45 -55 -88 -146z" />
<glyph glyph-name="T" unicode="T" horiz-adv-x="852"
d="M724 258q-135 -259 -369 -259q-211 0 -268 166q-45 26 -64 55.5t-19 78.5q0 73 50 141q15 20 53 50q42 33 60 33q7 0 7 -5q0 -3 -9 -8q-17 -8 -27 -14q-121 -81 -121 -197q0 -42 15.5 -68t51.5 -49q0 137 82 232q99 114 218 114q50 0 82 -24q35 -27 35 -75
q0 -51 -33 -108q-30 -49 -74 -87q-99 -85 -221 -85q-25 0 -70 10q62 -136 204 -136q109 0 208 81q47 39 78 81q27 37 111 169t136 189q35 39 120 110q-100 19 -223 56q-60 18 -93 18q-68 0 -110 -37q-45 -39 -45 -106q0 -20 8 -48q3 -10 3 -13q0 -4 -5 -4q-8 0 -14 32
q-5 24 -5 39q0 88 66 139q61 47 151 47q70 0 163 -31q43 -15 159 -52q92 60 154 60q34 0 34 -22q0 -39 -66 -64q-53 -20 -99 -20q-28 0 -57 4q-102 -83 -158 -191q-32 -68 -99 -202zM177 164q107 0 205 79q104 83 104 188q0 41 -29 62.5t-71 21.5q-111 0 -200.5 -98.5
t-89.5 -210.5q0 -2 1 -13v-17q51 -12 80 -12zM1092 677q26 0 58 14q39 16 39 39q0 12 -16 12q-56 0 -139 -55q34 -10 58 -10z" />
<glyph glyph-name="U" unicode="U" horiz-adv-x="1000"
d="M1115 520q-331 -411 -331 -473q0 -23 18 -23q43 0 161 121q31 32 34 32q4 0 4 -5q0 -2 -40 -47q-36 -41 -81 -76q-62 -49 -97 -49q-21 0 -33 20q-10 17 -10 40q0 76 136 274q-118 -106 -211 -185q-175 -149 -234 -149q-25 0 -42 24q-14 20 -14 47q0 87 137 231l127 134
q111 122 111 201q0 78 -62 116q-50 30 -134 30q-34 0 -62 -6q81 -57 81 -152q0 -90 -70 -201q-67 -106 -165 -179q-105 -77 -196 -77q-69 0 -108 40t-39 109q0 73 44 157q38 73 96 133q120 123 315 176q-72 24 -125 24q-172 0 -246 -120q-10 -16 -18 -41q-5 -17 -12 -17
q-4 0 -4 5q0 28 42 84q37 49 108 77q63 24 131 24q63 0 148 -31q50 7 84 7q93 0 156 -43q73 -50 73 -139q0 -138 -224 -352q-158 -151 -158 -213q0 -12 8.5 -22t20.5 -10q75 0 373 276q81 75 251 245q20 21 41 42q28 25 50 25q27 0 27 -9q-7 -8 -61 -75zM142 179
q93 0 199 85q88 70 149 165q70 109 70 197q0 99 -86 148q-196 -43 -320 -165q-146 -143 -146 -294q0 -136 134 -136z" />
<glyph glyph-name="V" unicode="V" horiz-adv-x="870"
d="M1214 671q-150 -120 -432 -389q-296 -282 -358 -282q-33 0 -33 38q0 56 49 129q37 55 121 145t120 140q67 94 67 165q0 26 -19 64q-28 -92 -76 -159q-46 -63 -125 -123t-168 -99q-104 -45 -187 -45q-168 0 -168 151q0 72 51 145q43 62 111 110q72 51 168 80.5t186 29.5
q107 0 194 -49v10q0 58 -46 88q-39 26 -100 26q-10 0 -10 4q0 7 30 7q68 0 105.5 -40t37.5 -108q58 -43 58 -125q0 -128 -159 -294q-51 -52 -172 -181q-49 -55 -49 -77q0 -16 16 -16q15 0 43 20q43 31 153 128q80 70 222 222q146 155 222 223q36 33 89 65q66 41 102 41
q7 0 7 -4q-8 -7 -50 -40zM172 268q84 0 191 49q89 42 169 105q155 122 183 274q-61 63 -197 63q-86 0 -184 -32.5t-169 -83.5q-61 -44 -100 -104q-46 -69 -46 -135q0 -68 43 -103q40 -33 110 -33z" />
<glyph glyph-name="W" unicode="W" horiz-adv-x="1222"
d="M1216 332q-117 -138 -245 -250q-94 -82 -132 -82q-36 0 -36 39q0 61 66 192q46 91 154 248q28 41 28 46q0 3 -3 3q-8 0 -104 -111q-80 -93 -185 -202q-206 -214 -243 -214q-18 0 -18 17q0 5 7 23q26 68 144 271q122 209 122 292q0 67 -44 124q0 -4 1 -12v-13
q0 -125 -97 -257q-83 -115 -203 -192q-134 -87 -257 -87q-76 0 -122 40q-49 43 -49 118q0 122 94 240q80 103 201 169q133 73 262 73q74 0 148 -33q-38 90 -115 90q-27 0 -76 -23q-6 -3 -8 -3q-3 0 -3 3q0 11 38 24q34 11 50 11q90 0 133 -113q92 -73 92 -179
q0 -118 -89 -274q-43 -70 -153 -249q103 76 445 462q55 62 66 62q20 0 20 -24q0 -25 -12 -55q-4 -29 -87 -168l-128 -213q-38 -65 -38 -88q0 -13 14 -13q42 0 175 139q80 85 154 176q62 76 125 172q90 136 90 182q0 42 -37 42q-40 0 -78 -73q-7 -14 -12 -14q-4 0 -4 4
q0 11 27 49q34 47 72 47q56 0 56 -59q0 -114 -206 -357zM528 352q58 56 87 95q19 26 49 82q51 95 51 173q0 20 -4 44q-71 46 -164 46q-191 0 -358 -146q-176 -154 -176 -323q0 -68 43 -105.5t112 -37.5q92 0 195 53q88 46 165 119z" />
<glyph glyph-name="X" unicode="X" horiz-adv-x="1111"
d="M1087 141q-29 -31 -89 -91q-51 -50 -79 -50q-34 0 -43 52q-8 45 -15 231l-317 -347q-10 -11 -16 -11q-4 0 -4 4q0 6 10 17l326 361q-4 191 -38 284q-57 155 -209 155q-156 0 -305 -137q113 46 181 46q89 0 136 -49t47 -138q0 -72 -38 -155q-34 -75 -87 -136
q-118 -136 -243 -136q-88 0 -133 69q-39 58 -39 151q0 91 39 176q4 8 53 103q-206 -173 -206 -361q0 -104 57 -128q13 -6 13 -9q0 -5 -7 -5q-9 0 -26 12q-50 35 -50 138q0 104 65 204q37 57 84 102q19 18 111 96q214 181 367 181q133 0 222 -115q70 -91 76 -271l302 334
q14 15 17 15q6 0 6 -4q0 -3 -14 -19l-310 -345q2 -68 2 -119q0 -198 22 -198q17 0 59 40q20 20 60 59t44 39t4 -4q0 -6 -35 -41zM309 55q129 0 243 145q107 136 107 269q0 79 -42 125t-120 46q-53 0 -97 -14q-36 -12 -137 -57q-117 -163 -117 -305q0 -90 36 -144
q42 -65 127 -65z" />
<glyph glyph-name="Y" unicode="Y" horiz-adv-x="1000"
d="M996 409l-177 -287q-89 -141 -168 -228q-168 -184 -288 -184q-33 0 -56.5 18t-23.5 50q0 26 14.5 46t39.5 20q28 0 28 -23q0 -26 -33 -29q-21 -2 -26 -5q-8 -3 -8 -16q0 -21 19 -34.5t41 -13.5q175 0 484 574q-112 -122 -160 -169q-132 -128 -184 -128q-46 0 -46 61
q0 51 40 121q28 48 104 150q56 75 78 112q41 72 41 128q0 59 -37 97t-97 49q29 -49 29 -101q0 -139 -172 -322q-150 -160 -285 -160q-60 0 -94.5 37.5t-34.5 97.5q0 20 3 51q-23 45 -23 95q0 69 34 140q34 68 88.5 117t134 80t152.5 31q51 0 80.5 -9t69.5 -38
q87 -10 136 -58q53 -51 53 -136q0 -102 -87 -229q-40 -55 -120 -164q-56 -77 -56 -116q0 -17 19 -17q40 0 157 115q142 139 286 318q52 65 64 75q19 16 48 16q7 0 7 -5q0 -8 -74 -127zM233 635q130 101 303 104q-58 32 -113 32q-70 0 -145 -27q-78 -27 -128 -72
q-130 -116 -130 -255q0 -35 12 -74q44 170 201 292zM153 150q96 0 212 94q95 78 159 177q74 115 74 202q0 56 -45 101q-182 0 -326 -112.5t-184 -288.5q13 -22 38 -39q10 -7 10 -12q0 -3 -6 -3q-15 0 -46 34q-2 -24 -2 -31q0 -53 31.5 -87.5t84.5 -34.5z" />
<glyph glyph-name="Z" unicode="Z" horiz-adv-x="722"
d="M681 465q-126 -125 -216 -200q-73 -61 -251 -194q67 7 97 7q39 0 116.5 -9t116.5 -9q37 0 58 14q1 1 13 11q9 8 11 8q6 0 6 -6q0 -12 -41 -47q-48 -41 -118 -41q-47 0 -120 15q-95 19 -119 22t-46 3q-32 0 -52 -8q-11 -4 -44 -27q-46 -31 -71 -31q-21 0 -21 15
q0 37 149 74q71 49 111 85q32 29 150 150q209 214 387 343q-52 11 -176 33q-8 -79 -44 -140q-32 -56 -97 -112.5t-147 -95.5q-94 -46 -168 -46q-71 0 -116 39.5t-45 109.5q0 151 163 247q139 82 301 82q48 0 120 -13q-48 93 -175 93q-80 0 -164.5 -37t-140.5 -96
q-40 -42 -44 -45q-4 0 -4 4q0 13 40 54q59 60 144.5 97t168.5 37q135 0 195 -110q73 -21 133 -41q77 -26 103 -32q131 89 232 89q56 0 56 -37q0 -46 -88 -71q-64 -19 -124 -19q-22 0 -62 4q-43 -36 -177 -169zM165 292q74 0 162 43q76 37 141 94q131 115 138 247
q-137 19 -191 19q-272 0 -367 -162q-30 -51 -30 -101q0 -66 40.5 -103t106.5 -37zM1081 742q-43 0 -102 -28q-51 -23 -91 -56q49 -5 82 -5q38 0 87 16q62 21 62 51q0 22 -38 22z" />
<glyph glyph-name="bracketleft" unicode="["
d="M357 684l-316 -752h102l-8 -19h-140l332 787h132l-5 -16h-97z" />
<glyph glyph-name="backslash" unicode="\" horiz-adv-x="1185"
d="M888 171q-174 -171 -349 -171q-55 0 -161 34q-101 -34 -181 -34q-91 0 -91 33q0 42 122 42q53 0 133 -22q70 40 136 123q34 43 104 152q114 178 154 226q47 57 146 134q-83 49 -188 49q-20 0 -50 -3q28 -53 28 -95q0 -75 -43 -158q-38 -72 -97 -133t-136 -106
q-91 -52 -161 -52q-59 0 -93.5 32t-34.5 90q0 75 53 160q48 76 114 128q87 68 158.5 99t180.5 47q-65 45 -144 45q-168 0 -316 -122q-60 -50 -104 -121q-50 -81 -50 -149q0 -22 16 -63.5t16 -36.5q0 -4 -4 -4q-17 0 -30 44q-10 34 -10 58q0 75 50 159q45 76 110 128
q150 119 328 119q90 0 160 -55l50 2q103 4 214 -49q73 49 91 49q4 0 4 -3q-1 -5 -4 -6q-20 -10 -74 -54q99 -80 99 -199q0 -174 -146 -317zM196 13q65 0 144 30q-69 19 -106 19q-113 0 -113 -29q0 -20 75 -20zM254 205q72 0 156 49q70 40 131 102q57 58 94 128q42 81 42 152
q0 55 -33 97q-194 -21 -341 -144q-67 -56 -111 -125q-53 -82 -53 -156q0 -48 33 -75.5t82 -27.5zM527 17q73 0 157 52q69 43 129 109q170 189 170 346q0 94 -63 149q-62 -59 -97 -109q-24 -33 -76 -126q-87 -155 -145 -226q-87 -107 -206 -169q83 -26 131 -26zM1217 770
q0 -37 -53 -100q-57 -68 -69 -68q-6 0 -6 5q0 3 30 36q41 45 60 88q-12 12 -12 27q0 33 28 33q22 0 22 -21z" />
<glyph glyph-name="bracketright" unicode="]"
d="M382 700l-333 -787h-133l9 19h94l320 751h-101l7 17h137z" />
<glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="926"
d="M619 186q-149 -159 -297 -160q-84 -26 -125 -26q-92 0 -143 62q-49 58 -49 152q0 169 141 337q112 134 243 188q39 16 65 16q5 0 5 -4q-13 -7 -49 -29q-118 -71 -221 -216q-130 -183 -130 -321q0 -65 36 -116q40 -56 102 -56q27 0 78 20q-95 56 -95 181q0 93 46 202
q40 94 105 179q61 80 131 134q91 71 168 71q69 0 104 -56q29 -46 29 -120q0 -60 -26 -132q0 -63 -22 -135q-31 -102 -96 -171zM295 42q139 72 252 215q100 127 164 289q-39 39 -76 39q-61 0 -126 -81q-12 -15 -23 -34q-7 -13 -13 -13q-2 2 -3 5q0 14 25 47q69 91 140 91
q38 0 81 -32q15 53 15 88q0 129 -99 129q-126 0 -274 -181q-67 -82 -112 -184q-50 -115 -50 -209q0 -128 99 -169zM358 41q137 22 240 139q100 113 119 254q-53 -126 -144 -230q-99 -111 -215 -163zM954 770q0 -37 -53 -100q-57 -68 -69 -68q-6 0 -6 5q0 3 30 36
q41 45 60 88q-12 12 -12 27q0 33 28 33q22 0 22 -21z" />
<glyph glyph-name="underscore" unicode="_" horiz-adv-x="1000"
d="M1005 -14q0 -10 -18 -11h-949q-44 0 -44 10q0 11 45 11h920q37 0 26 1q20 -2 20 -11z" />
<glyph glyph-name="grave" unicode="`" horiz-adv-x="200"
d="M137 341q13 -10 13 -16q0 -8 -10 -8q-2 1 -16 9l-93 54q-23 13 -23 23q0 18 17 18q6 0 26 -15z" />
<glyph glyph-name="a" unicode="a" horiz-adv-x="352"
d="M314 130q-134 -130 -199 -130q-38 0 -38 32q0 15 9 39q-76 -71 -110 -71q-25 0 -41 15t-16 40q0 67 93 138q88 67 158 67q38 0 38 -23q0 -2 -2 -10l22 27l57 3l-130 -164q-39 -49 -39 -63q0 -13 16 -13q40 0 172 121l35 32q13 12 15 12q4 0 4 -5q0 -4 -9 -13zM-24 12
q34 0 123 90t89 124q0 20 -20 20q-38 0 -113 -75q-98 -98 -98 -138q0 -21 19 -21z" />
<glyph glyph-name="b" unicode="b" horiz-adv-x="259"
d="M355 418q-91 -86 -231 -138q-157 -205 -157 -244q0 -18 18 -18q55 0 154 122q-19 22 -19 48t20.5 52t45.5 26q23 0 23 -29q0 -32 -49 -95q15 -5 24 -5q32 0 70 40q9 10 13 10q5 0 5 -5q0 -15 -37 -37t-54 -22q-11 0 -32 7q-112 -130 -177 -130q-44 0 -44 46q0 57 135 225
q115 143 176 203q43 42 127 105q48 36 76 36q27 0 27 -29q0 -60 -114 -168zM149 151q45 59 45 82q0 16 -12 16q-18 0 -32.5 -22.5t-14.5 -41.5q0 -20 14 -34zM136 298q185 79 286 218q33 46 33 68q0 18 -16 18q-38 0 -153 -115q-21 -21 -57 -68z" />
<glyph glyph-name="c" unicode="c" horiz-adv-x="241"
d="M236 161q-145 -162 -223 -162q-31 0 -48.5 20t-17.5 52q0 68 72 130t143 62q15 0 27 -9.5t12 -23.5q0 -26 -28 -26q-18 0 -18 15q0 10 23 21q0 9 -14 9q-24 0 -64 -29q-31 -23 -53 -48q-62 -71 -62 -125q0 -31 26 -31q38 0 112 56q62 47 105 97q12 14 16 14q6 0 6 -5
q0 -2 -7 -9t-7 -8z" />
<glyph glyph-name="d" unicode="d" horiz-adv-x="333"
d="M282 112q-105 -113 -153 -113q-46 0 -46 42q0 12 7 32q-82 -73 -126 -73q-49 0 -49 49q0 52 89 137q83 79 149 79q44 0 44 -36q0 -10 -1 -14l216 284h47l-326 -432q-18 -24 -18 -35q0 -18 17 -18q27 0 75 42q28 24 104 104q25 26 29 26q5 0 5 -5q-10 -12 -63 -69z
M105 105q79 78 79 118q0 26 -25 26q-37 0 -118 -84q-90 -93 -90 -129q0 -20 20 -20q44 0 134 89z" />
<glyph glyph-name="e" unicode="e" horiz-adv-x="259"
d="M248 156q-51 -53 -110 -96q-82 -60 -129 -60q-29 0 -49.5 20.5t-20.5 49.5q0 47 61 114q35 38 84 62q39 19 63 19q38 0 38 -30q0 -77 -196 -142q-15 -24 -15 -39q0 -37 37 -37q43 0 120 54q56 40 103 87q24 24 29 24q4 0 4 -4q-5 -6 -19 -22zM-2 109q89 34 118 58
q49 40 49 71q0 15 -17 15q-33 0 -85 -58q-35 -39 -65 -86z" />
<glyph glyph-name="f" unicode="f" horiz-adv-x="204"
d="M185 147q-142 -154 -270 -154q-30 -43 -104 -163l-57 -10q33 53 106 175q-24 8 -24 13q0 3 2 6l4 6q3 5 7 5t13.5 -4t12.5 -5q233 317 348 437q149 156 212 156q31 0 31 -33q0 -31 -46 -87q-33 -42 -70 -74q-88 -76 -236 -147q-95 -123 -189 -259q108 4 238 134
q47 47 52 47t5 -4q-5 -7 -35 -39zM136 295q158 88 223 148q94 87 94 134q0 19 -22 19q-70 0 -295 -301z" />
<glyph glyph-name="g" unicode="g" horiz-adv-x="352"
d="M237 73q-58 -38 -164 -84q-194 -297 -280 -297q-37 0 -37 31q0 51 89 143q60 62 166 121l45 58q-59 -43 -94 -43q-23 0 -37 14t-14 37q0 65 94 141q90 73 157 73q39 0 39 -28q0 -7 -2 -13l27 32l61 7l-200 -253q171 76 260 165q4 6 8 6q5 0 5 -5q0 -10 -58 -57
q-35 -28 -65 -48zM-207 -293q74 0 210 253q-74 -29 -147 -103q-83 -84 -83 -131q0 -19 20 -19zM85 91q27 27 59 67q43 53 43 73t-23 20q-37 0 -117 -79q-98 -97 -98 -133q0 -20 22 -20q40 0 114 72z" />
<glyph glyph-name="h" unicode="h" horiz-adv-x="315"
d="M301 154q-151 -154 -219 -154q-44 0 -44 39q0 25 43 79l42 53q43 54 43 67q0 11 -11 11q-21 0 -63 -34q-24 -20 -41 -35t-45 -50l-103 -127l-59 -3l342 422q42 49 84 88q113 106 160 106q33 0 33 -31q0 -59 -107 -156q-69 -63 -245 -160l-53 -69q77 66 109 66
q39 0 39 -38q0 -22 -31 -62l-46 -59q-51 -65 -51 -75q0 -14 14 -14q58 0 198 140q25 25 30 25q4 0 4 -4q-4 -6 -23 -25zM125 293q155 84 228 150q98 89 98 142q0 18 -18 18q-79 0 -308 -310z" />
<glyph glyph-name="i" unicode="i" horiz-adv-x="185"
d="M172 154q-67 -77 -129 -119q-54 -35 -86 -35q-18 0 -31 11.5t-13 29.5q0 24 27 64q21 31 86 112l33 41l61 6l-96 -119q-76 -94 -76 -115q0 -14 14 -14q37 0 202 145l24 21q4 0 4 -5q0 -9 -20 -23zM171 340q0 -13 -10 -22.5t-23 -9.5q-20 0 -20 20q0 13 10 22.5t23 9.5
q20 0 20 -20z" />
<glyph glyph-name="j" unicode="j"
d="M53 10l-114 -169q-95 -141 -149 -141q-36 0 -36 34q0 60 87 149q77 79 166 128l148 228q-79 -15 -125 -49q-32 -24 -36 -24t-4 3q0 7 28 28q23 17 37 24q56 30 169 47l-154 -232q135 56 212 133q17 17 21 17t4 -4q0 -5 -8 -12q-2 -2 -13 -14q-78 -81 -233 -146z
M-101 -177q45 64 93 163q-97 -69 -143 -119q-78 -85 -78 -128q0 -23 18 -23q34 0 110 107zM287 351q0 -13 -10.5 -23t-23.5 -10q-23 0 -23 22q0 13 11 23t24 10q22 0 22 -22z" />
<glyph glyph-name="k" unicode="k" horiz-adv-x="315"
d="M299 150q-31 -31 -96 -90.5t-115 -59.5q-42 0 -42 34q0 17 38 72q28 40 28 46q0 4 -6 9q-39 -35 -63 -35q-19 0 -19 26l-114 -148l-53 -4q118 165 339 420q169 195 240 195q35 0 35 -30q0 -58 -106 -153q-52 -47 -262 -174l-66 -90q25 16 48 16q9 0 24 -4q100 87 143 87
q30 0 30 -25q0 -23 -22 -23q-18 0 -18 15q0 4 3.5 11t3.5 9t-2 2q-32 0 -124 -80q19 -12 19 -31q0 -21 -30 -65t-30 -51q0 -12 16 -12q52 0 184 134q33 34 38 34t5 -4q-7 -13 -26 -31zM47 138q14 0 48 29q-11 5 -19 5q-10 0 -23.5 -8.5t-13.5 -17.5q0 -8 8 -8zM356 444
q32 27 62 64q39 49 39 77q0 17 -22 17q-81 0 -310 -314q146 85 231 156z" />
<glyph glyph-name="l" unicode="l" horiz-adv-x="204"
d="M192 153q-48 -53 -100 -95q-75 -58 -121 -58q-45 0 -45 45q0 35 41 95q38 56 175 221q63 76 134 143q108 100 159 100q30 0 30 -29q0 -73 -141 -178q-105 -78 -207 -125q-153 -210 -153 -239q0 -17 17 -17q35 0 113 64q59 48 99 93q11 12 16 12t5 -5q-1 -3 -22 -27z
M131 292q75 37 110 60q49 31 102 79q107 96 107 139q0 20 -17 20q-54 0 -167 -125q-82 -91 -135 -173z" />
<glyph glyph-name="m" unicode="m" horiz-adv-x="537"
d="M531 162q-156 -162 -211 -162q-44 0 -44 36q0 24 50 89l52 68q21 27 21 39q0 15 -15 15q-18 0 -58 -35q-74 -65 -116 -120l-70 -92h-52q96 126 159 204q12 15 12 26q0 14 -15 14q-17 0 -43 -19q-73 -53 -129 -127q-23 -32 -70 -97l-53 2l132 169q37 47 37 64q0 13 -14 13
q-19 0 -49 -30q-53 -53 -59 -53q-4 0 -4 4q0 6 8 12l51 48q38 36 64 36q31 0 31 -33q0 -23 -12 -44q85 77 127 77q34 0 34 -33q0 -17 -15 -44q83 78 120 78q40 0 40 -34q0 -18 -25 -53l-65 -90q-33 -46 -33 -59t13 -13q32 0 192 149q12 12 20 19q6 0 6 -5q-3 -4 -17 -19z
" />
<glyph glyph-name="n" unicode="n" horiz-adv-x="389"
d="M384 161q-73 -77 -98 -99q-68 -59 -112 -59q-17 0 -28.5 11.5t-11.5 28.5q0 29 57 100l37 46q31 39 31 51q0 11 -11 11q-20 0 -86 -55q-34 -28 -93 -98l-72 -87l-56 -3l111 135q64 78 64 96q0 14 -12 14q-14 0 -41 -25q-19 -18 -37 -36q-25 -22 -29 -24q-4 0 -4 5
q0 3 22 25q30 30 64 63q14 11 38 11q33 0 33 -35q0 -13 -13 -43q49 39 59 46q40 27 68 27q33 0 33 -32q0 -24 -37 -72l-37 -48q-46 -60 -46 -78q0 -15 14 -15q45 0 181 143q20 21 23 21q4 0 4 -6q0 -3 -15 -19z" />
<glyph glyph-name="o" unicode="o"
d="M157 114q-102 -114 -177 -114q-24 0 -39.5 17.5t-15.5 41.5q0 57 66 119q95 90 171 90q44 0 44 -45q0 -33 -39 -97q61 0 109 37q25 19 23 19q5 0 5 -4q0 -15 -44.5 -40.5t-67.5 -25.5q-24 0 -35 2zM-12 15q50 0 134 84q22 22 44 59q26 42 26 67q0 23 -23 23
q-61 0 -155 -115q-55 -67 -55 -90q0 -28 29 -28z" />
<glyph glyph-name="p" unicode="p"
d="M279 148q-130 -148 -185 -148q-17 0 -29.5 11.5t-12.5 28.5q0 26 37 69l43 50q54 63 54 75q0 10 -12 10q-21 0 -81 -45q-56 -43 -72 -66l-215 -311l-52 -2l416 612l61 4l-166 -240q20 14 59 40q43 28 67 28q35 0 35 -33q0 -23 -52 -86l-43 -52q-38 -46 -38 -56
q0 -13 13 -13q37 0 178 146q13 13 16 13q5 0 5 -4q-4 -6 -26 -31z" />
<glyph glyph-name="q" unicode="q" horiz-adv-x="333"
d="M314 148q-155 -153 -198 -153q-7 0 -16 5q1 -6 1 -14q0 -61 -101 -185q-27 -34 -62 -65q-48 -43 -74 -43q-30 0 -30 28q0 39 104 169l122 153q-57 -43 -98 -43q-21 0 -36 13t-15 33q0 63 91 139t156 76q40 0 40 -29q0 -8 -3 -19l36 43l52 4l-171 -211q-12 -17 -12 -28
q0 -13 17 -13q43 0 191 148q28 28 30 28q4 0 4 -4t-28 -32zM-22 -206q37 41 70 96q42 69 42 108q0 5 -4 16l-183 -219q-53 -63 -53 -78q0 -12 10 -12q37 0 118 89zM95 94q88 88 88 130q0 22 -23 22q-42 0 -126.5 -89.5t-84.5 -122.5q0 -21 23 -21q42 0 123 81z" />
<glyph glyph-name="r" unicode="r" horiz-adv-x="241"
d="M218 142q-143 -138 -189 -138q-44 0 -44 45q0 63 158 191q-14 -4 -30 -4q-18 0 -35 13q-34 -38 -62 -66q-15 -15 -18 -15q-5 0 -5 5q0 3 8 11q18 14 73 80q0 19 8 34q9 20 26 20t17 -22q0 -14 -21 -35q13 -7 26 -7t59 11q7 -6 7 -9t-20 -22q-148 -143 -148 -197
q0 -14 14 -14q31 0 147 108q53 50 54 51q6 0 6 -5t-31 -35z" />
<glyph glyph-name="s" unicode="s"
d="M242 117q-71 -54 -104 -73q-75 -44 -139 -44q-75 -1 -75 43q0 19 12 33.5t30 14.5q23 0 23 -16q0 -17 -30 -19q-20 -1 -20 -17q0 -10 9 -17.5t20 -7.5q52 0 103 74q48 69 48 124q0 33 -18 58q-24 -26 -74 -76q-28 -28 -31 -29q-4 0 -4 5q2 4 11 14q44 45 94 102
q4 49 28 49q14 0 14 -17q0 -16 -21 -40q39 -61 39 -95q0 -101 -140 -170q50 0 136 55q54 35 95 70l51 44q5 0 5 -4q0 -14 -62 -61z" />
<glyph glyph-name="t" unicode="t" horiz-adv-x="185"
d="M175 155q-154 -155 -215 -155q-46 0 -46 43q0 45 80 138l126 146h-55l11 17h58l101 120l56 8l-107 -128h61l-10 -17h-63l-182 -221q-40 -49 -40 -70q0 -20 21 -20q44 0 193 144q22 21 25 23q5 0 5 -4q0 -5 -19 -24z" />
<glyph glyph-name="u" unicode="u"
d="M291 158q-141 -158 -205 -158q-30 0 -30 33q0 22 23 61q-51 -51 -61 -59q-41 -34 -74 -34q-17 0 -28.5 11.5t-11.5 28.5q0 33 103 158l52 63l58 4l-54 -63q-27 -31 -68 -86q-55 -72 -55 -85q0 -16 15 -16q14 0 72 49q81 69 181 197l58 3l-86 -105q-93 -114 -93 -132
q0 -12 10 -12q46 0 190 157q10 11 16 11q3 0 3 -4q0 -5 -15 -22z" />
<glyph glyph-name="v" unicode="v" horiz-adv-x="333"
d="M220 140q-116 -141 -188 -141q-36 0 -36 39q0 38 71 117q53 59 53 80q0 16 -14 16q-16 0 -62.5 -43t-48.5 -43q-4 0 -4 4q0 3 18 22q76 78 112 78q40 0 40 -36q0 -33 -50 -91q-77 -89 -77 -106q0 -18 16 -18q24 0 80 49q47 41 79 81q-14 20 -14 39q0 25 16 51.5t40 26.5
t24 -27q0 -37 -46 -87q15 -7 30 -7q37 0 68 32q11 11 14 11q4 0 4 -4q0 -16 -36 -34q-32 -17 -51 -17q-15 0 -38 8zM218 158q44 47 44 77q0 16 -14 16q-16 0 -29 -25q-11 -21 -11 -39q0 -16 10 -29z" />
<glyph glyph-name="w" unicode="w" horiz-adv-x="370"
d="M278 134q-35 -44 -78 -81q-60 -52 -94 -52q-17 0 -29 11t-12 28t10 44q-61 -54 -80 -68q-23 -17 -43 -17q-41 0 -41 42q0 32 47 93l97 126l58 6l-113 -146q-55 -71 -55 -87q0 -15 15 -15q31 0 102 72q45 46 87 99l57 72l55 5l-119 -152q-46 -59 -46 -77q0 -19 17 -19
q25 0 76 45q43 37 77 80q-11 18 -11 40q0 25 20 52.5t44 27.5q18 0 18 -21q0 -32 -51 -97q8 -6 21 -6q19 0 57 38q10 10 14 10t4 -4t-16 -21q-33 -34 -58 -34q-13 0 -30 6zM275 154q49 61 49 86q0 11 -9 11q-18 0 -33 -30q-14 -26 -14 -46q0 -8 7 -21z" />
<glyph glyph-name="x" unicode="x"
d="M300 170q-87 -87 -167 -142q-41 -28 -72 -28q-45 0 -45 42q0 6 3 22q-53 -44 -65 -52q-19 -12 -41 -12q-31 0 -31 26q0 20 19 20q16 0 16 -17q0 -5 -2 -11q4 -2 10 -2q29 0 106 83q90 97 90 132q0 17 -16 17q-20 0 -82 -60q-24 -23 -28 -23t-4 5q0 3 26 29q37 36 44 42
q29 24 53 24q40 0 40 -36q0 -12 -11 -34q74 69 114 69q26 0 26 -22q0 -20 -21 -20q-9 0 -16 10t-11 10q-14 0 -47 -25q-27 -22 -41 -38q-104 -120 -104 -145q0 -21 21 -21q24 0 64 27q50 34 147 122l11 10q18 16 19 16q3 0 3 -4q0 -6 -8 -14z" />
<glyph glyph-name="y" unicode="y" horiz-adv-x="389"
d="M385 162q-61 -66 -113 -102t-135 -68q-236 -291 -325 -291q-15 0 -26 10t-11 25q0 38 49 92q18 21 42 39q109 85 220 120l56 83q-16 -13 -50.5 -37t-60.5 -24q-36 0 -36 34q0 37 76 126q44 52 44 70q0 11 -13 11q-15 0 -76 -56q-8 -8 -18 -20q-6 -6 -10 -6t-4 4
q0 3 21 26q67 72 104 72q13 0 24.5 -9.5t11.5 -22.5q0 -31 -49 -91l-48 -59q-25 -31 -25 -46t14 -15q37 0 134 101q60 63 116 133l55 6l-199 -253q130 50 224 155q13 15 16 15q5 0 5 -5q0 -3 -13 -17zM-187 -286q47 0 141 105q60 66 116 146q-114 -44 -174 -93
q-107 -87 -107 -134q0 -24 24 -24z" />
<glyph glyph-name="z" unicode="z" horiz-adv-x="333"
d="M319 153q-109 -111 -305 -169q1 -5 1 -15q0 -84 -91 -186q-81 -91 -135 -91q-37 0 -37 42q0 62 84 149q72 76 140 109l-2 12q-33 -10 -48 -10q-29 0 -29 22q0 12 13.5 21t26.5 9q17 0 52 -13q82 48 124 93q63 68 63 103q0 23 -27 23q-58 0 -117 -57q-34 -33 -40 -33
q-4 0 -4 4t34 36q69 66 137 66q55 0 55 -55q0 -103 -207 -193l6 -19q162 46 298 161l32 27q6 0 6 -4q-5 -7 -30 -32zM-119 -215q95 120 95 185q-59 -29 -128 -101q-79 -81 -79 -135q0 -26 20 -26q31 0 92 77zM-69 8q10 0 35 15q-19 8 -27 8q-22 0 -22 -14q0 -9 14 -9z" />
<glyph glyph-name="braceleft" unicode="{" horiz-adv-x="519"
d="M396 89q0 -13 -12 -117q-2 -17 -2 -45q0 -53 34 -96q19 -25 74 -42v-25q-80 9 -140 48q-72 48 -72 122q0 34 14 97t14 93q0 84 -110 127v25q54 30 76 51q35 34 35 80q0 22 -6 50q-20 93 -20 127q0 69 58 117q40 33 151 57v-28q-107 -38 -107 -148q0 -26 6.5 -77.5
t6.5 -77.5q0 -95 -155 -162q155 -64 155 -176z" />
<glyph glyph-name="bar" unicode="|" horiz-adv-x="315"
d="M264 770q0 -37 -53 -100q-57 -68 -69 -68q-6 0 -6 5q0 3 30 36q41 45 60 88q-12 12 -12 27q0 33 28 33q22 0 22 -21zM312 161q-145 -162 -223 -162q-31 0 -48.5 20t-17.5 52q0 68 72 130t143 62q15 0 27 -9.5t12 -23.5q0 -26 -28 -26q-18 0 -18 15q0 10 23 21q0 9 -14 9
q-24 0 -64 -29q-31 -23 -53 -48q-62 -71 -62 -125q0 -31 26 -31q38 0 112 56q62 47 105 97q12 14 16 14q6 0 6 -5q0 -2 -7 -9t-7 -8z" />
<glyph glyph-name="braceright" unicode="}" horiz-adv-x="519"
d="M362 120q0 -24 19 -119q8 -40 8 -63q0 -29 -17 -63t-40 -53q-49 -40 -153 -57v26q59 21 83 56t24 98q0 24 -6.5 71.5t-6.5 71.5q0 107 156 169q-158 57 -158 178q0 14 11 114q4 36 4 49q0 48 -35 92q-22 27 -72 42v27q84 -11 140 -51q69 -49 69 -125q0 -33 -20 -131
q-6 -29 -6 -53q0 -84 110 -128v-26q-110 -53 -110 -125z" />
<glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="426"
d="M415 151q-47 -49 -125 -95q-98 -58 -166 -58q-69 0 -69 50q0 18 12.5 32t30.5 14q22 0 22 -19q0 -14 -16 -16q-32 -3 -32 -19q0 -23 31 -23q47 0 99 74q45 64 45 127q0 20 -16 52q-48 -55 -139 -146q-125 -124 -152 -124q-6 0 -6 6q0 5 12 13q69 46 127 103
q54 52 154 166q5 46 28 46q16 0 16 -16q0 -12 -23 -38q38 -69 38 -96q0 -113 -143 -171q65 8 154 64q56 35 97 73l35 32q6 0 6 -6q0 -4 -20 -25zM341 770q0 -37 -53 -100q-57 -68 -69 -68q-6 0 -6 5q0 3 30 36q41 45 60 88q-12 12 -12 27q0 33 28 33q22 0 22 -21z" />
<glyph glyph-name="cent" unicode="&#xa2;"
d="M167 25q-36 -25 -72 -25q-15 0 -26 1l-45 -59q-9 -15 -17 -15q-6 0 -6 6q0 5 10 18l44 58q-25 27 -25 61q0 54 60 118q69 73 151 73l23 30q9 12 14 12q6 0 6 -6q-4 -8 -7 -11l-21 -29q27 -12 27 -28q0 -10 -8 -17.5t-18 -7.5q-14 0 -14 11q0 10 20 20q-8 8 -19 8
l-164 -226l25 -3q16 0 39 14q15 8 42 25q4 3 6 3q5 0 5 -4q0 -6 -30 -27zM71 31l157 212q-50 -17 -101 -73q-61 -67 -61 -109q0 -17 5 -30z" />
<glyph glyph-name="sterling" unicode="&#xa3;" horiz-adv-x="352"
d="M291 63q0 -10 -26 -33q-21 -19 -36 -27q-32 -18 -74 -18q-37 0 -90 21q-39 -24 -77 -24q-23 0 -41 9q-24 11 -24 31q0 32 49 32q31 0 89 -23q36 46 68 128h-68l7 18h71l21 50q65 155 152 155q30 0 52 -19.5t22 -49.5t-22.5 -49.5t-52.5 -19.5q-11 0 -11 7q0 5 8 6
q61 11 61 56q0 19 -14.5 34.5t-33.5 15.5q-58 0 -117 -137l-21 -49h90l-7 -18h-90q-28 -75 -97 -141q45 -18 72 -18q75 0 125 61q7 7 9 7q6 0 6 -5zM-12 -3q30 0 64 19q-48 23 -83 23q-31 0 -31 -18q0 -24 50 -24z" />
<glyph glyph-name="section" unicode="&#xa7;" horiz-adv-x="537"
d="M446 169q-54 -62 -89 -62q-29 0 -29 23q0 9 5 20q-53 -46 -77 -46q-32 0 -32 30q0 11 6 27q-72 -53 -105 -53q-26 0 -26 24q0 56 109 125q-29 0 -43 8q-90 -93 -151 -146q-15 -13 -18 -13q-6 0 -6 6q0 4 17 18q60 48 150 147q2 36 23 36q12 0 12 -11t-18 -25q14 -7 28 -7
q16 0 27 4q-2 0 6 3q6 -3 6 -7q-2 -1 -14 -14q-96 -100 -96 -118q0 -13 13 -13q8 0 65 35q16 10 26 21l31 34q66 66 114 66q30 0 30 -26l132 176h28l-201 -268q-15 -20 -15 -31q0 -10 9 -10q23 0 79 64q15 17 19 17q5 0 5 -5q0 -6 -20 -29zM219 55l-51 -50q-7 -7 -9 -7
q-5 0 -5 5q1 2 5 9l29 46q6 10 19 10q19 0 19 -3t-7 -10zM264 120q33 0 99 83q33 41 33 55t-14 14q-27 0 -97 -75q-35 -38 -35 -61q0 -16 14 -16zM142 55l-51 -50q-7 -7 -9 -7q-5 0 -5 5q1 2 5 9l29 46q6 10 19 10q19 0 19 -3t-7 -10z" />
<glyph glyph-name="bullet" unicode="&#x2022;" horiz-adv-x="519"
d="M324 185q0 -27 -18 -45.5t-45 -18.5t-45 18.5t-18 45.5q0 26 18.5 45t44.5 19t44.5 -19t18.5 -45z" />
<glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="667"
d="M506 418l-332 -441l-31 -4l331 439zM275 373q-73 -103 -115 -195q-8 -18 -24 -18q-13 0 -13 6q5 10 31 56q42 73 78 121q-15 -17 -56 -60q-12 -12 -21 -12q-4 0 -4 4q0 3 23 26l64 64q26 26 32 26q11 0 11 -5q0 -7 -6 -13zM547 74q0 -35 -38.5 -64t-74.5 -29
q-21 0 -39 11q-21 12 -21 32q0 26 24.5 46t51.5 20q32 0 32 -28q0 -18 -16.5 -29t-35.5 -11q-6 0 -6 3l4 4q35 19 35 38q0 13 -16 13q-19 0 -36.5 -18t-17.5 -37q0 -12 9.5 -21.5t21.5 -9.5q32 0 72 44q21 23 21 46q0 3 -2 13q-49 0 -49 15q0 13 24 13q16 0 38 -12
q49 39 49 68q0 6 -5 12q-28 -46 -57 -46q-25 0 -25 19q0 33 65 47q0 20 -23 20q-4 0 -11 -1t-10 -1q-5 0 -5 4q0 10 30 10q31 0 41 -34q25 -7 25 -30q0 -53 -63 -79q8 -15 8 -28zM497 107q4 0 10 3q-7 4 -13 4t-6 -3q2 -4 9 -4zM518 161q30 0 36 39q-11 0 -28 -10t-17 -20
q0 -9 9 -9z" />
<glyph glyph-name="germandbls" unicode="&#xdf;" horiz-adv-x="444"
d="M365 261q0 -77 -113 -191q-89 -90 -162 -90q-29 0 -53 19l9 11q18 -7 26 -7q61 0 155 91q116 113 116 172q0 33 -32 33q-8 0 -23 -4l-5 12q94 68 161 143q83 94 83 131q0 15 -17 15q-39 0 -143 -111q-66 -71 -213 -266q-67 -89 -152 -213q-68 -99 -175 -194l-26 1
q114 120 184 226q120 182 140 208q275 366 386 366q32 0 32 -31q0 -52 -91 -148q-66 -70 -135 -121q48 -5 48 -52z" />
<glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="200"
d="M231 380l-82 -45q-26 -14 -30 -14q-7 0 -7 8q0 6 28 26l68 48q26 18 33 18q16 0 16 -17q0 -10 -26 -24z" />
<glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="200"
d="M121 362q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27t27.5 12q24 0 24 -19zM242 360q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12q24 0 24 -20z" />
<glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="426"
d="M386 176q-93 -77 -132 -77q-24 0 -24 24q0 8 1 14q-58 -38 -112 -38q-50 0 -50 34q0 14 11 26.5t25 12.5q15 0 15 -13q0 -8 -18 -12t-18 -16q0 -17 21 -17q33 0 58 37q22 33 22 67q0 19 -16 48q-45 -54 -146 -150q-19 -18 -26 -18q-6 0 -6 4q0 3 15 17q118 110 149 157
q0 44 25 44q14 0 14 -12q0 -11 -12 -28q32 -41 32 -69q0 -58 -62 -96q48 15 83 48q20 18 64 74l55 70h-45l13 17h45l54 68l37 6l-58 -74h60l-17 -17h-57l-116 -150q-15 -19 -15 -30q0 -12 12 -12q20 0 115 73l13 10q16 12 20 12t4 -3q0 -4 -33 -31zM224 55l-51 -50
q-7 -7 -9 -7q-5 0 -5 5q1 2 5 9l29 46q6 10 19 10q19 0 19 -3t-7 -10zM147 55l-51 -50q-7 -7 -9 -7q-5 0 -5 5q1 2 5 9l29 46q6 10 19 10q19 0 19 -3t-7 -10z" />
<glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="556"
d="M449 170q-56 -69 -93 -69q-29 0 -29 20q0 16 16 42q14 20 27 39q29 44 29 55q0 5 -5 5q-24 0 -84 -69q-39 -45 -70 -90h-27l72 104q-132 -106 -162 -106q-32 0 -32 26q0 7 3 20q-59 -46 -69 -46q-6 0 -6 6q0 4 7 8q67 38 122 107l69 87h-47l15 16h44l54 69l37 5l-60 -74
h62l-17 -16h-56l-101 -129q-32 -41 -32 -52t13 -11q18 0 137 92q45 35 110 114q71 87 106 119q60 54 88 54q24 0 24 -22q0 -46 -92 -114q-63 -46 -134 -81l-41 -51q61 52 81 52q23 0 23 -21q0 -15 -29 -58q-41 -61 -41 -69q0 -11 11 -11q19 0 85 82q8 10 12 10q6 0 6 -6
q0 -5 -26 -37zM383 302q68 35 125 84q71 61 71 86q0 12 -14 12q-23 0 -96 -80q-56 -61 -86 -102zM181 56l-43 -47q-10 -11 -15 -12q-5 0 -5 6q1 3 6 12l21 38q8 14 23 14q18 0 18 -4q-2 -3 -5 -7zM248 52l-38 -42q-10 -11 -15 -11q-6 0 -6 5q0 3 7 15l24 40q5 9 24 9
q13 0 13 -5q-1 -3 -9 -11z" />
<glyph glyph-name="yen" unicode="&#xa5;" horiz-adv-x="463"
d="M264 148l-70 -148h-56l71 148h-90l10 22h90q4 5 11 30h-94l10 22h89q12 47 12 88q0 28 -13 47q-15 23 -41 23q-9 0 -36 -9q-13 -7 -15 -7q-5 0 -5 4q0 10 27 19q23 9 36 9q40 0 67 -46q23 -39 23 -82q0 -29 -11 -67q59 88 80 115q66 82 106 82q12 0 32.5 -8.5t20.5 -18.5
q0 -6 -6 -6q-3 0 -14 6q-20 11 -31 11q-36 0 -91 -66q-8 -10 -68 -94h88l-10 -22h-93q-7 -12 -19 -30h105l-10 -22h-105z" />
<glyph glyph-name="questiondown" unicode="&#xbf;" horiz-adv-x="204"
d="M226 313l-180 -263q-11 -16 -11 -24q0 -14 30 -16l-7 -10h-121l7 13q25 1 38 12q8 7 26 33l162 241q18 27 18 37q0 18 -29 18l8 11h118l-7 -13q-27 -3 -52 -39z" />
<glyph glyph-name="exclamdown" unicode="&#xa1;" horiz-adv-x="389"
d="M394 297l-283 -310l-11 -3l63 320q4 20 4 24q0 23 -31 26l2 12h111l-3 -13q-23 -1 -31.5 -12.5t-13.5 -36.5l-49 -246l218 240q23 25 23 36q0 17 -30 17l4 15h111l-3 -14q-28 -3 -46 -18q-5 -4 -35 -37z" />
<glyph glyph-name="florin" unicode="&#x192;"
d="M133 72l-73 -206q-20 -56 -49 -101q-42 -65 -83 -65q-31 0 -31 37q0 32 22 32q12 0 12 -15q0 -8 -8 -15t-8 -12q0 -11 11 -11q39 0 95 159l70 197h-66l6 17h66l30 80q42 111 72 155q38 55 75 55q31 0 31 -36q0 -32 -22 -32q-12 0 -12 14q0 9 8 16.5t8 10.5q0 12 -11 12
q-41 0 -109 -195l-28 -80h73l-6 -17h-73z" />
<glyph glyph-name="guillemotleft" unicode="&#xab;" horiz-adv-x="370"
d="M83 141l36 -126h-31l-39 129l88 101h37zM174 135l36 -126h-31l-39 129l97 107h37z" />
<glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="370"
d="M243 110l-88 -101h-37l91 104l-36 126h31zM152 116l-97 -107h-37l100 110l-36 126h31z" />
<glyph glyph-name="emdash" unicode="&#x2014;" horiz-adv-x="667"
d="M620 165l-18 -32h-536l18 32h536z" />
<glyph glyph-name="quotedblleft" unicode="&#x201c;"
d="M370 792q0 -5 -19 -28q-64 -76 -93 -133q19 -8 19 -23q0 -13 -12.5 -24.5t-25.5 -11.5q-20 0 -20 27q0 36 83 134q54 64 65 64q3 -2 3 -5zM480 792q0 -5 -19 -28q-64 -76 -93 -133q19 -8 19 -23q0 -13 -12.5 -24.5t-25.5 -11.5q-20 0 -20 27q0 36 83 134q54 64 65 64
q3 -2 3 -5z" />
<glyph glyph-name="quotedblright" unicode="&#x201d;"
d="M503 771q0 -36 -83 -134q-54 -64 -65 -64q-3 2 -3 5q0 5 19 28q64 76 93 133q-19 8 -19 23q0 13 12.5 24.5t25.5 11.5q20 0 20 -27zM393 771q0 -36 -83 -134q-54 -64 -65 -64q-3 2 -3 5q0 5 19 28q64 76 93 133q-19 8 -19 23q0 13 12.5 24.5t25.5 11.5q20 0 20 -27z" />
<glyph glyph-name="quoteleft" unicode="&#x2018;" horiz-adv-x="185"
d="M341 792q0 -5 -19 -28q-64 -76 -93 -133q19 -8 19 -23q0 -13 -12.5 -24.5t-25.5 -11.5q-20 0 -20 27q0 36 83 134q54 64 65 64q3 -2 3 -5z" />
<glyph glyph-name="quoteright" unicode="&#x2019;" horiz-adv-x="185"
d="M405 771q0 -36 -83 -134q-54 -64 -65 -64q-3 2 -3 5q0 5 19 28q64 76 93 133q-19 8 -19 23q0 13 12.5 24.5t25.5 11.5q20 0 20 -27z" />
<glyph glyph-name="guilsinglleft" unicode="&#x2039;" horiz-adv-x="241"
d="M63 141l36 -126h-31l-39 129l88 101h37z" />
<glyph glyph-name="guilsinglright" unicode="&#x203a;" horiz-adv-x="241"
d="M109 119l-97 -104h-41l105 113l-33 117h30z" />
<glyph glyph-name="quotesinglbase" unicode="&#x201a;" horiz-adv-x="667"
d="M284 373q-73 -103 -115 -195q-8 -18 -24 -18q-13 0 -13 6q5 10 31 56q42 73 78 121q-15 -17 -56 -60q-12 -12 -21 -12q-4 0 -4 4q0 3 23 26l64 64q26 26 32 26q11 0 11 -5q0 -7 -6 -13zM511 418l-325 -445l-31 -4l326 444zM552 95q-27 -13 -80 -40t-83 -61q51 28 59 28
q7 0 20.5 -10.5t20.5 -10.5q13 0 38 37q3 3 7 3q6 0 6 -6q-1 -2 -12 -19q-27 -42 -57 -42q-6 0 -18 5q-24 16 -32 16q-5 0 -20 -9q-24 -14 -26 -15q-8 0 -8 7q0 11 34 48q7 8 113 72q51 31 51 69q0 21 -22 27v-8q0 -33 -31 -66q-24 -26 -49 -26q-28 0 -28 29q0 31 30 55
q25 20 59 28q-5 22 -28 22q-4 0 -13.5 -3t-12.5 -3q-5 0 -5 5q0 13 28 13q22 0 32 -6.5t24 -25.5q48 -12 48 -45q0 -44 -45 -68zM517 154q10 18 10 40q-23 -8 -47 -27q-28 -23 -28 -43q0 -17 17 -17q21 0 48 47z" />
<glyph glyph-name="quotedblbase" unicode="&#x201e;" horiz-adv-x="667"
d="M496 418l-329 -444l-32 -4l328 444zM458 74q-11 -13 -85 -93q-7 -8 -14 -8t-7 7q0 3 11 14q32 32 72 80q-11 0 -21 2q-4 -2 -21 -11.5t-25 -9.5q-20 0 -20 14q0 9 12 13q7 2 42 10q15 10 37 49q20 35 25.5 57.5t15.5 22.5q17 0 17 -12q0 -10 -9 -27q-8 -13 -15 -26
q-12 -25 -51 -66l23 1q59 91 114 139q16 14 24 14q6 0 6 -7q0 -4 -16 -19q-26 -23 -40 -39q-30 -33 -64 -87q34 5 66 30q9 7 13 7t4 -6q0 -2 -9 -11q-33 -33 -85 -38zM372 68q9 0 15 9q-21 0 -21 -6q0 -3 6 -3zM264 373q-73 -103 -115 -195q-8 -18 -24 -18q-13 0 -13 6
q5 10 31 56q42 73 78 121q-15 -17 -56 -60q-12 -12 -21 -12q-4 0 -4 4q0 3 23 26l64 64q26 26 32 26q11 0 11 -5q0 -7 -6 -13z" />
<glyph glyph-name="perthousand" unicode="&#x2030;" horiz-adv-x="667"
d="M536 418l-327 -445l-32 -3l327 444zM501 74q-11 -13 -85 -93q-7 -8 -14 -8t-7 7q0 3 11 14q32 32 72 80q-11 0 -21 2q-4 -2 -21 -11.5t-25 -9.5q-20 0 -20 14q0 9 12 13q7 2 42 10q15 10 37 49q20 35 25.5 57.5t15.5 22.5q17 0 17 -12q0 -10 -9 -27q-8 -13 -15 -26
q-12 -25 -51 -66l23 1q59 91 114 139q16 14 24 14q6 0 6 -7q0 -4 -16 -19q-26 -23 -40 -39q-30 -33 -64 -87q34 5 66 30q9 7 13 7t4 -6q0 -2 -9 -11q-33 -33 -85 -38zM415 68q9 0 15 9q-21 0 -21 -6q0 -3 6 -3zM262 250q0 -35 -38.5 -64t-74.5 -29q-21 0 -39 11
q-21 12 -21 32q0 26 24.5 46t51.5 20q32 0 32 -28q0 -18 -16.5 -29t-35.5 -11q-6 0 -6 3l4 4q35 19 35 38q0 13 -16 13q-19 0 -36.5 -18t-17.5 -37q0 -12 9.5 -21.5t21.5 -9.5q32 0 72 44q21 23 21 46q0 3 -2 13q-49 0 -49 15q0 13 24 13q16 0 38 -12q49 39 49 68q0 6 -5 12
q-28 -46 -57 -46q-25 0 -25 19q0 33 65 47q0 20 -23 20q-4 0 -11 -1t-10 -1q-5 0 -5 4q0 10 30 10q31 0 41 -34q25 -7 25 -30q0 -53 -63 -79q8 -15 8 -28zM212 283q4 0 10 3q-7 4 -13 4t-6 -3q2 -4 9 -4zM233 337q30 0 36 39q-11 0 -28 -10t-17 -20q0 -9 9 -9z" />
<glyph glyph-name="dotlessi" unicode="&#x131;" horiz-adv-x="222"
d="M198 144q-149 -145 -228 -145q-54 0 -54 42q0 24 28 66q20 30 84 109l34 42l61 7l-96 -120q-75 -94 -75 -111q0 -20 24 -20q65 0 241 165q7 7 12 7q3 0 3 -4q0 -5 -34 -38z" />
<glyph glyph-name="circumflex" unicode="&#x2c6;" horiz-adv-x="200"
d="M191 411l13 -59q4 -18 4 -19q0 -13 -9 -13q-8 0 -16 18l-24 55l-82 -61q-16 -12 -24 -12q-11 0 -11 9q0 5 25 27l76 66q14 12 25 12q18 0 23 -23z" />
<glyph glyph-name="tilde" unicode="&#x2dc;" horiz-adv-x="200"
d="M246 362q0 -17 -20 -30t-38 -13q-16 0 -49 11q-39 13 -52 13q-17 0 -37 -20q-5 -5 -8 -5q-7 0 -7 9q0 19 20 32.5t40 13.5q19 0 55 -12.5t46 -12.5q15 0 30 15q9 9 12 9q8 0 8 -10z" />
<glyph glyph-name="dotaccent" unicode="&#x2d9;" horiz-adv-x="200"
d="M243 398l-75 -65q-20 -17 -35 -17q-11 0 -15 6q-2 3 -5 18l-14 61q-3 13 -3 16q0 11 8 11t17 -20l23 -52l86 62q15 11 20 11q10 0 10 -9q0 -7 -17 -22z" />
<glyph glyph-name="ring" unicode="&#x2da;" horiz-adv-x="200"
d="M204 385q0 -23 -17 -40t-40 -17q-24 0 -40.5 16t-16.5 40q0 23 17 40t40 17q24 0 40.5 -16t16.5 -40zM147 355q32 0 32 31t-32 31q-13 0 -22.5 -9t-9.5 -22q0 -31 32 -31z" />
<glyph glyph-name="caron" unicode="&#x2c7;" horiz-adv-x="200"
d="M243 398l-75 -65q-20 -17 -35 -17q-11 0 -15 6q-2 3 -5 18l-14 61q-3 13 -3 16q0 11 8 11t17 -20l23 -52l86 62q15 11 20 11q10 0 10 -9q0 -7 -17 -22z" />
<glyph glyph-name="Scaron" unicode="&#x160;" horiz-adv-x="741"
d="M619 161q-105 -161 -295 -161q-204 0 -246 187q-70 79 -70 167q0 160 159 254q58 34 101 34q20 0 20 -4q0 -5 -20 -9q-102 -19 -172 -95q-73 -80 -73 -181q0 -81 53 -140q3 151 104 261q113 123 250 123q143 0 143 -127q0 -49 -26 -115q57 43 139 99q28 72 46 105
q27 49 68 92q87 91 156 91q33 0 33 -27q0 -23 -49 -70q-101 -97 -190 -160q-18 -53 -55 -157q-41 -114 -76 -167zM218 164q156 0 277 136q-12 -7 -45 -28q-21 -14 -24 -14q-4 0 -4 4q0 6 15 17q20 12 76 51q45 83 45 140q0 113 -130 113q-128 0 -232.5 -112t-104.5 -240v-32
q62 -35 127 -35zM285 26q128 0 232 107q53 55 95 141q23 46 66 158q-62 -44 -142 -100q-66 -86 -127 -127q-83 -56 -184 -56q-63 0 -130 28q17 -69 68 -110t122 -41zM758 510q71 48 173 141q46 42 46 61q0 17 -20 17q-21 0 -60 -27q-33 -24 -51 -46q-45 -55 -88 -146z
M1005 882l-75 -65q-20 -17 -35 -17q-11 0 -15 6q-2 3 -5 18l-14 61q-3 13 -3 16q0 11 8 11t17 -20l23 -52l86 62q15 11 20 11q10 0 10 -9q0 -7 -17 -22z" />
<glyph glyph-name="scaron" unicode="&#x161;"
d="M242 117q-71 -54 -104 -73q-75 -44 -139 -44q-75 -1 -75 43q0 19 12 33.5t30 14.5q23 0 23 -16q0 -17 -30 -19q-20 -1 -20 -17q0 -10 9 -17.5t20 -7.5q52 0 103 74q48 69 48 124q0 33 -18 58q-24 -26 -74 -76q-28 -28 -31 -29q-4 0 -4 5q2 4 11 14q44 45 94 102
q4 49 28 49q14 0 14 -17q0 -16 -21 -40q39 -61 39 -95q0 -101 -140 -170q50 0 136 55q54 35 95 70l51 44q5 0 5 -4q0 -14 -62 -61zM255 437l-75 -65q-20 -17 -35 -17q-11 0 -15 6q-2 3 -5 18l-14 61q-3 13 -3 16q0 11 8 11t17 -20l23 -52l86 62q15 11 20 11q10 0 10 -9
q0 -7 -17 -22z" />
<glyph glyph-name="Yacute" unicode="&#xdd;" horiz-adv-x="1000"
d="M996 409l-177 -287q-89 -141 -168 -228q-168 -184 -288 -184q-33 0 -56.5 18t-23.5 50q0 26 14.5 46t39.5 20q28 0 28 -23q0 -26 -33 -29q-21 -2 -26 -5q-8 -3 -8 -16q0 -21 19 -34.5t41 -13.5q175 0 484 574q-112 -122 -160 -169q-132 -128 -184 -128q-46 0 -46 61
q0 51 40 121q28 48 104 150q56 75 78 112q41 72 41 128q0 59 -37 97t-97 49q29 -49 29 -101q0 -139 -172 -322q-150 -160 -285 -160q-60 0 -94.5 37.5t-34.5 97.5q0 20 3 51q-23 45 -23 95q0 69 34 140q34 68 88.5 117t134 80t152.5 31q51 0 80.5 -9t69.5 -38
q87 -10 136 -58q53 -51 53 -136q0 -102 -87 -229q-40 -55 -120 -164q-56 -77 -56 -116q0 -17 19 -17q40 0 157 115q142 139 286 318q52 65 64 75q19 16 48 16q7 0 7 -5q0 -8 -74 -127zM233 635q130 101 303 104q-58 32 -113 32q-70 0 -145 -27q-78 -27 -128 -72
q-130 -116 -130 -255q0 -35 12 -74q44 170 201 292zM153 150q96 0 212 94q95 78 159 177q74 115 74 202q0 56 -45 101q-182 0 -326 -112.5t-184 -288.5q13 -22 38 -39q10 -7 10 -12q0 -3 -6 -3q-15 0 -46 34q-2 -24 -2 -31q0 -53 31.5 -87.5t84.5 -34.5zM1036 860l-82 -45
q-26 -14 -30 -14q-7 0 -7 8q0 6 28 26l68 48q26 18 33 18q16 0 16 -17q0 -10 -26 -24z" />
<glyph glyph-name="yacute" unicode="&#xfd;" horiz-adv-x="389"
d="M385 162q-61 -66 -113 -102t-135 -68q-236 -291 -325 -291q-15 0 -26 10t-11 25q0 38 49 92q18 21 42 39q109 85 220 120l56 83q-16 -13 -50.5 -37t-60.5 -24q-36 0 -36 34q0 37 76 126q44 52 44 70q0 11 -13 11q-15 0 -76 -56q-8 -8 -18 -20q-6 -6 -10 -6t-4 4
q0 3 21 26q67 72 104 72q13 0 24.5 -9.5t11.5 -22.5q0 -31 -49 -91l-48 -59q-25 -31 -25 -46t14 -15q37 0 134 101q60 63 116 133l55 6l-199 -253q130 50 224 155q13 15 16 15q5 0 5 -5q0 -3 -13 -17zM-187 -286q47 0 141 105q60 66 116 146q-114 -44 -174 -93
q-107 -87 -107 -134q0 -24 24 -24zM327 380l-82 -45q-26 -14 -30 -14q-7 0 -7 8q0 6 28 26l68 48q26 18 33 18q16 0 16 -17q0 -10 -26 -24z" />
<glyph glyph-name="HT" horiz-adv-x="259"
/>
<glyph glyph-name="nonmarkingreturn" horiz-adv-x="259"
/>
<glyph glyph-name="Zcaron" unicode="&#x17d;" horiz-adv-x="722"
d="M681 465q-126 -125 -216 -200q-73 -61 -251 -194q67 7 97 7q39 0 116.5 -9t116.5 -9q37 0 58 14q1 1 13 11q9 8 11 8q6 0 6 -6q0 -12 -41 -47q-48 -41 -118 -41q-47 0 -120 15q-95 19 -119 22t-46 3q-32 0 -52 -8q-11 -4 -44 -27q-46 -31 -71 -31q-21 0 -21 15
q0 37 149 74q71 49 111 85q32 29 150 150q209 214 387 343q-52 11 -176 33q-8 -79 -44 -140q-32 -56 -97 -112.5t-147 -95.5q-94 -46 -168 -46q-71 0 -116 39.5t-45 109.5q0 151 163 247q139 82 301 82q48 0 120 -13q-48 93 -175 93q-80 0 -164.5 -37t-140.5 -96
q-40 -42 -44 -45q-4 0 -4 4q0 13 40 54q59 60 144.5 97t168.5 37q135 0 195 -110q73 -21 133 -41q77 -26 103 -32q131 89 232 89q56 0 56 -37q0 -46 -88 -71q-64 -19 -124 -19q-22 0 -62 4q-43 -36 -177 -169zM165 292q74 0 162 43q76 37 141 94q131 115 138 247
q-137 19 -191 19q-272 0 -367 -162q-30 -51 -30 -101q0 -66 40.5 -103t106.5 -37zM1081 742q-43 0 -102 -28q-51 -23 -91 -56q49 -5 82 -5q38 0 87 16q62 21 62 51q0 22 -38 22zM840 882l-75 -65q-20 -17 -35 -17q-11 0 -15 6q-2 3 -5 18l-14 61q-3 13 -3 16q0 11 8 11
t17 -20l23 -52l86 62q15 11 20 11q10 0 10 -9q0 -7 -17 -22z" />
<glyph glyph-name="zcaron" unicode="&#x17e;" horiz-adv-x="333"
d="M319 153q-109 -111 -305 -169q1 -5 1 -15q0 -84 -91 -186q-81 -91 -135 -91q-37 0 -37 42q0 62 84 149q72 76 140 109l-2 12q-33 -10 -48 -10q-29 0 -29 22q0 12 13.5 21t26.5 9q17 0 52 -13q82 48 124 93q63 68 63 103q0 23 -27 23q-58 0 -117 -57q-34 -33 -40 -33
q-4 0 -4 4t34 36q69 66 137 66q55 0 55 -55q0 -103 -207 -193l6 -19q162 46 298 161l32 27q6 0 6 -4q-5 -7 -30 -32zM-119 -215q95 120 95 185q-59 -29 -128 -101q-79 -81 -79 -135q0 -26 20 -26q31 0 92 77zM-69 8q10 0 35 15q-19 8 -27 8q-22 0 -22 -14q0 -9 14 -9z
M269 398l-75 -65q-20 -17 -35 -17q-11 0 -15 6q-2 3 -5 18l-14 61q-3 13 -3 16q0 11 8 11t17 -20l23 -52l86 62q15 11 20 11q10 0 10 -9q0 -7 -17 -22z" />
<glyph glyph-name="Adieresis" unicode="&#xc4;" horiz-adv-x="1093"
d="M1064 133q-124 -133 -178 -133q-39 0 -39 45q0 70 87 217h-105q-132 -137 -232 -192q-130 -71 -250 -71q-77 0 -126 27q-52 28 -90 93q-55 20 -90 60q-38 44 -38 99q0 123 114 205q53 38 120 57q47 13 131 22q116 59 219 59q68 0 113 -26q55 -33 55 -96q0 -104 -89 -200
q-79 -86 -202 -141q-119 -54 -219 -54q-39 0 -93 10q58 -81 159 -81q200 0 435 229h-74q-14 0 -14 7q0 9 14 9h89q97 91 327 304q141 129 193 129q25 0 25 -19q0 -17 -23 -44t-111 -151q-77 -109 -109 -156q-167 -248 -167 -297q0 -17 13 -17q31 0 137 106q48 48 51 50
q2 -1 2 -3q0 -10 -35 -47zM118 194q0 97 66 197q58 89 146 151q-118 -10 -204 -71q-45 -32 -77 -85q-33 -56 -33 -108q0 -92 109 -140q-7 29 -7 56zM487 183q132 70 201 173q52 78 52 141q0 55 -47 85q-40 26 -99 26q-89 0 -192 -46q144 -17 144 -43q0 -5 -5 -5
q27 0 -5.5 7.5t-85.5 15.5q-56 8 -82 9q-97 -57 -162 -146q-74 -100 -74 -202q0 -29 11 -65q62 -14 114 -14q109 0 230 64zM942 278q111 154 267 328l72 81q0 5 -7 5q-39 0 -124 -81q-5 -4 -307 -333h99zM1277 846q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27
t27.5 12q24 0 24 -19zM1398 844q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12q24 0 24 -20z" />
<glyph glyph-name="Aring" unicode="&#xc5;" horiz-adv-x="1093"
d="M1064 133q-124 -133 -178 -133q-39 0 -39 45q0 70 87 217h-105q-132 -137 -232 -192q-130 -71 -250 -71q-77 0 -126 27q-52 28 -90 93q-55 20 -90 60q-38 44 -38 99q0 123 114 205q53 38 120 57q47 13 131 22q116 59 219 59q68 0 113 -26q55 -33 55 -96q0 -104 -89 -200
q-79 -86 -202 -141q-119 -54 -219 -54q-39 0 -93 10q58 -81 159 -81q200 0 435 229h-74q-14 0 -14 7q0 9 14 9h89q97 91 327 304q141 129 193 129q25 0 25 -19q0 -17 -23 -44t-111 -151q-77 -109 -109 -156q-167 -248 -167 -297q0 -17 13 -17q31 0 137 106q48 48 51 50
q2 -1 2 -3q0 -10 -35 -47zM118 194q0 97 66 197q58 89 146 151q-118 -10 -204 -71q-45 -32 -77 -85q-33 -56 -33 -108q0 -92 109 -140q-7 29 -7 56zM487 183q132 70 201 173q52 78 52 141q0 55 -47 85q-40 26 -99 26q-89 0 -192 -46q144 -17 144 -43q0 -5 -5 -5
q27 0 -5.5 7.5t-85.5 15.5q-56 8 -82 9q-97 -57 -162 -146q-74 -100 -74 -202q0 -29 11 -65q62 -14 114 -14q109 0 230 64zM942 278q111 154 267 328l72 81q0 5 -7 5q-39 0 -124 -81q-5 -4 -307 -333h99z" />
<glyph glyph-name="Ccedilla" unicode="&#xc7;" horiz-adv-x="963"
d="M636 28l-39 -56q58 -8 58 -46q0 -26 -25 -41q-21 -12 -49 -12q-31 0 -81 13l14 18q31 -8 54 -8q18 0 34 6q21 8 21 23q0 17 -26 24q-7 2 -39 5l47 64l-10 -3q-43 -49 -72 -70q-45 -34 -92 -34q-40 0 -61 30q-18 27 -18 68q0 15 7 47q-43 70 -43 138q0 95 61 209
q-253 9 -341 124q-31 39 -31 80q0 34 20 67t50 52q67 42 193 42q176 0 285 -67q51 -31 51 -42q0 -4 -4 -4q-5 5 -47 30q-115 70 -280 70q-96 0 -162 -27q-92 -38 -92 -120t114 -139q97 -48 254 -52q151 208 397 303q88 34 129 34q31 0 54 -12q29 -16 29 -44q0 -47 -74 -108
q-50 -41 -115 -76q-140 -75 -351 -110q-88 -132 -88 -243q0 -21 8 -52q59 130 165 221q43 37 110.5 65t121.5 28q50 0 81 -26.5t31 -76.5q0 -91 -84 -177q-67 -69 -165 -115zM431 -75q65 0 139 83q-46 -9 -73 -9q-62 0 -125 43q-6 -25 -6 -37q0 -32 17 -56t48 -24zM606 30
q101 38 177 111q90 87 90 181q0 89 -104 89q-119 0 -233 -104q-99 -89 -153 -212q46 -76 149 -76q25 0 51 6q46 69 78 150q8 19 12 19t4 -7q0 -31 -71 -157zM470 424q160 13 323 98q61 32 113 73q77 60 77 102q0 40 -50 40q-33 0 -100 -30q-54 -24 -95 -49
q-159 -99 -268 -234z" />
<glyph glyph-name="Eacute" unicode="&#xc9;" horiz-adv-x="796"
d="M712 262q0 -99 -165 -208q-39 -50 -86 -85q-60 -45 -110 -45q-83 0 -88 86q-108 44 -108 152q0 107 109 183q83 58 205 85q-12 15 -23 30q-126 -27 -211 -27q-89 0 -147 24q-82 34 -82 111q0 97 120 148q92 39 203 39q104 0 213 -54q113 60 224 60q35 0 62 -11
q35 -15 35 -46q0 -77 -157 -153q-94 -45 -223 -80q6 -19 17 -35q44 6 69 6q89 0 89 -26q0 -29 -60 -29q-62 0 -115 30q-121 -37 -186 -105q-79 -82 -79 -164q0 -62 48 -102q27 116 122 206q101 95 215 95q44 0 74 -20q35 -23 35 -65zM431 532q0 85 98 161q-56 27 -97 36.5
t-102 9.5q-108 0 -194 -34q-117 -46 -117 -138q0 -66 80 -98q57 -23 135 -23q101 0 206 28q-9 36 -9 58zM351 -63q71 0 165 100q-91 -38 -167 -38q-33 0 -74 10q0 -72 76 -72zM572 89q45 34 77 77q38 53 38 100q0 32 -26 50t-59 18q-109 0 -209 -94q-97 -90 -117 -200
q54 -22 97 -22q70 0 169 47q72 113 78 199q1 8 5 8q5 0 5 -15q0 -66 -58 -168zM480 485q107 25 215 75q155 72 155 142q0 23 -29 36q-22 10 -49 10q-78 0 -181 -77q11 -10 24 -23q6 -6 6 -10q-1 -3 -3 -3t-19.5 13t-19.5 14q-99 -89 -99 -177zM595 430q-39 0 -81 -6
q38 -24 83 -24t45 16q0 14 -47 14zM843 860l-82 -45q-26 -14 -30 -14q-7 0 -7 8q0 6 28 26l68 48q26 18 33 18q16 0 16 -17q0 -10 -26 -24z" />
<glyph glyph-name="Ntilde" unicode="&#xd1;" horiz-adv-x="1074"
d="M850 173q-89 -108 -117 -138q-33 -35 -49 -35q-19 0 -19 32q0 86 70 222q20 38 114 222q97 189 97 205q0 6 -5 6q-6 0 -125 -146q-145 -177 -245 -275q-273 -266 -480 -266q-95 0 -156.5 53.5t-65.5 147.5q-58 22 -83 52q-30 34 -30 92q0 98 93 173q87 70 187 70
q39 0 39 -7q0 -5 -14 -5q-109 -3 -188 -58q-105 -74 -105 -176q0 -92 102 -127q26 167 177 295q69 58 156 94q93 38 178 38q136 0 136 -97q0 -67 -64 -141q-49 -57 -121 -104q-167 -109 -364 -109q-34 0 -85 8q1 -79 52.5 -128t131.5 -49q157 0 382 175q198 154 477 501
q36 45 53 45q20 0 20 -25q0 -44 -67 -201q-45 -105 -156 -322q-58 -113 -58 -133q0 -11 2 -12q9 0 74 74q77 86 187 230q-48 -7 -72 -7q-7 0 -7 4q0 5 10 5q48 0 83 14q6 6 116 144q101 127 152 169q91 75 121 75q31 0 31 -31q0 -66 -158 -220q-113 -110 -253 -147
q-31 -38 -154 -187zM-34 205q191 0 347 97q72 45 123 100q68 74 68 138q0 89 -127 89q-82 0 -177 -41q-86 -37 -156 -96q-140 -118 -161 -279q45 -8 83 -8zM1014 374q67 23 109 46q121 67 227 209q50 67 50 98q0 19 -18 19q-19 0 -74 -44t-86 -79q-51 -61 -208 -249z
M1326 890q0 -17 -20 -30t-38 -13q-16 0 -49 11q-39 13 -52 13q-17 0 -37 -20q-5 -5 -8 -5q-7 0 -7 9q0 19 20 32.5t40 13.5q19 0 55 -12.5t46 -12.5q15 0 30 15q9 9 12 9q8 0 8 -10z" />
<glyph glyph-name="Odieresis" unicode="&#xd6;" horiz-adv-x="741"
d="M619 186q-149 -159 -297 -160q-84 -26 -125 -26q-92 0 -143 62q-49 58 -49 152q0 169 141 337q112 134 243 188q39 16 65 16q5 0 5 -4q-13 -7 -49 -29q-118 -71 -221 -216q-130 -183 -130 -321q0 -65 36 -116q40 -56 102 -56q27 0 78 20q-95 56 -95 181q0 93 46 202
q40 94 105 179q61 80 131 134q91 71 168 71q69 0 104 -56q29 -46 29 -120q0 -60 -26 -132q0 -63 -22 -135q-31 -102 -96 -171zM295 42q139 72 252 215q100 127 164 289q-39 39 -76 39q-61 0 -126 -81q-12 -15 -23 -34q-7 -13 -13 -13q-2 2 -3 5q0 14 25 47q69 91 140 91
q38 0 81 -32q15 53 15 88q0 129 -99 129q-126 0 -274 -181q-67 -82 -112 -184q-50 -115 -50 -209q0 -128 99 -169zM358 41q137 22 240 139q100 113 119 254q-53 -126 -144 -230q-99 -111 -215 -163zM633 894q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27t27.5 12
q24 0 24 -19zM754 892q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12q24 0 24 -20z" />
<glyph glyph-name="Udieresis" unicode="&#xdc;" horiz-adv-x="1000"
d="M1115 520q-331 -411 -331 -473q0 -23 18 -23q43 0 161 121q31 32 34 32q4 0 4 -5q0 -2 -40 -47q-36 -41 -81 -76q-62 -49 -97 -49q-21 0 -33 20q-10 17 -10 40q0 76 136 274q-118 -106 -211 -185q-175 -149 -234 -149q-25 0 -42 24q-14 20 -14 47q0 87 137 231l127 134
q111 122 111 201q0 78 -62 116q-50 30 -134 30q-34 0 -62 -6q81 -57 81 -152q0 -90 -70 -201q-67 -106 -165 -179q-105 -77 -196 -77q-69 0 -108 40t-39 109q0 73 44 157q38 73 96 133q120 123 315 176q-72 24 -125 24q-172 0 -246 -120q-10 -16 -18 -41q-5 -17 -12 -17
q-4 0 -4 5q0 28 42 84q37 49 108 77q63 24 131 24q63 0 148 -31q50 7 84 7q93 0 156 -43q73 -50 73 -139q0 -138 -224 -352q-158 -151 -158 -213q0 -12 8.5 -22t20.5 -10q75 0 373 276q81 75 251 245q20 21 41 42q28 25 50 25q27 0 27 -9q-7 -8 -61 -75zM142 179
q93 0 199 85q88 70 149 165q70 109 70 197q0 99 -86 148q-196 -43 -320 -165q-146 -143 -146 -294q0 -136 134 -136zM997 846q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27t27.5 12q24 0 24 -19zM1118 844q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12
q24 0 24 -20z" />
<glyph glyph-name="aacute" unicode="&#xe1;" horiz-adv-x="352"
d="M314 130q-134 -130 -199 -130q-38 0 -38 32q0 15 9 39q-76 -71 -110 -71q-25 0 -41 15t-16 40q0 67 93 138q88 67 158 67q38 0 38 -23q0 -2 -2 -10l22 27l57 3l-130 -164q-39 -49 -39 -63q0 -13 16 -13q40 0 172 121l35 32q13 12 15 12q4 0 4 -5q0 -4 -9 -13zM-24 12
q34 0 123 90t89 124q0 20 -20 20q-38 0 -113 -75q-98 -98 -98 -138q0 -21 19 -21zM281 380l-82 -45q-26 -14 -30 -14q-7 0 -7 8q0 6 28 26l68 48q26 18 33 18q16 0 16 -17q0 -10 -26 -24z" />
<glyph glyph-name="agrave" unicode="&#xe0;" horiz-adv-x="352"
d="M314 130q-134 -130 -199 -130q-38 0 -38 32q0 15 9 39q-76 -71 -110 -71q-25 0 -41 15t-16 40q0 67 93 138q88 67 158 67q38 0 38 -23q0 -2 -2 -10l22 27l57 3l-130 -164q-39 -49 -39 -63q0 -13 16 -13q40 0 172 121l35 32q13 12 15 12q4 0 4 -5q0 -4 -9 -13zM-24 12
q34 0 123 90t89 124q0 20 -20 20q-38 0 -113 -75q-98 -98 -98 -138q0 -21 19 -21zM249 341q13 -10 13 -16q0 -8 -10 -8q-2 1 -16 9l-93 54q-23 13 -23 23q0 18 17 18q6 0 26 -15z" />
<glyph glyph-name="acircumflex" unicode="&#xe2;" horiz-adv-x="352"
d="M314 130q-134 -130 -199 -130q-38 0 -38 32q0 15 9 39q-76 -71 -110 -71q-25 0 -41 15t-16 40q0 67 93 138q88 67 158 67q38 0 38 -23q0 -2 -2 -10l22 27l57 3l-130 -164q-39 -49 -39 -63q0 -13 16 -13q40 0 172 121l35 32q13 12 15 12q4 0 4 -5q0 -4 -9 -13zM-24 12
q34 0 123 90t89 124q0 20 -20 20q-38 0 -113 -75q-98 -98 -98 -138q0 -21 19 -21zM259 411l13 -59q4 -18 4 -19q0 -13 -9 -13q-8 0 -16 18l-24 55l-82 -61q-16 -12 -24 -12q-11 0 -11 9q0 5 25 27l76 66q14 12 25 12q18 0 23 -23z" />
<glyph glyph-name="adieresis" unicode="&#xe4;" horiz-adv-x="352"
d="M314 130q-134 -130 -199 -130q-38 0 -38 32q0 15 9 39q-76 -71 -110 -71q-25 0 -41 15t-16 40q0 67 93 138q88 67 158 67q38 0 38 -23q0 -2 -2 -10l22 27l57 3l-130 -164q-39 -49 -39 -63q0 -13 16 -13q40 0 172 121l35 32q13 12 15 12q4 0 4 -5q0 -4 -9 -13zM-24 12
q34 0 123 90t89 124q0 20 -20 20q-38 0 -113 -75q-98 -98 -98 -138q0 -21 19 -21zM173 362q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27t27.5 12q24 0 24 -19zM294 360q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12q24 0 24 -20z" />
<glyph glyph-name="atilde" unicode="&#xe3;" horiz-adv-x="352"
d="M314 130q-134 -130 -199 -130q-38 0 -38 32q0 15 9 39q-76 -71 -110 -71q-25 0 -41 15t-16 40q0 67 93 138q88 67 158 67q38 0 38 -23q0 -2 -2 -10l22 27l57 3l-130 -164q-39 -49 -39 -63q0 -13 16 -13q40 0 172 121l35 32q13 12 15 12q4 0 4 -5q0 -4 -9 -13zM-24 12
q34 0 123 90t89 124q0 20 -20 20q-38 0 -113 -75q-98 -98 -98 -138q0 -21 19 -21zM306 362q0 -17 -20 -30t-38 -13q-16 0 -49 11q-39 13 -52 13q-17 0 -37 -20q-5 -5 -8 -5q-7 0 -7 9q0 19 20 32.5t40 13.5q19 0 55 -12.5t46 -12.5q15 0 30 15q9 9 12 9q8 0 8 -10z" />
<glyph glyph-name="aring" unicode="&#xe5;" horiz-adv-x="352"
d="M314 130q-134 -130 -199 -130q-38 0 -38 32q0 15 9 39q-76 -71 -110 -71q-25 0 -41 15t-16 40q0 67 93 138q88 67 158 67q38 0 38 -23q0 -2 -2 -10l22 27l57 3l-130 -164q-39 -49 -39 -63q0 -13 16 -13q40 0 172 121l35 32q13 12 15 12q4 0 4 -5q0 -4 -9 -13zM-24 12
q34 0 123 90t89 124q0 20 -20 20q-38 0 -113 -75q-98 -98 -98 -138q0 -21 19 -21z" />
<glyph glyph-name="ccedilla" unicode="&#xe7;" horiz-adv-x="241"
d="M236 161q-147 -161 -231 -161l-15 -22q37 -11 37 -34q0 -21 -19.5 -33t-41.5 -12q-21 0 -46 11l11 16q21 -7 35 -7q32 0 32 24q0 17 -39 17l27 44q-39 20 -39 67q0 71 72 129q78 63 144 63q14 0 26 -9.5t12 -23.5q0 -26 -28 -26q-18 0 -18 15q0 10 23 21q0 9 -13 9
q-44 0 -104 -62q-76 -79 -76 -140q0 -32 26 -32q35 0 108 55q61 46 109 98q14 15 17 15q5 0 5 -5q0 -2 -14 -17z" />
<glyph glyph-name="eacute" unicode="&#xe9;" horiz-adv-x="259"
d="M248 156q-51 -53 -110 -96q-82 -60 -129 -60q-29 0 -49.5 20.5t-20.5 49.5q0 47 61 114q35 38 84 62q39 19 63 19q38 0 38 -30q0 -77 -196 -142q-15 -24 -15 -39q0 -37 37 -37q43 0 120 54q56 40 103 87q24 24 29 24q4 0 4 -4q-5 -6 -19 -22zM-2 109q89 34 118 58
q49 40 49 71q0 15 -17 15q-33 0 -85 -58q-35 -39 -65 -86zM211 380l-82 -45q-26 -14 -30 -14q-7 0 -7 8q0 6 28 26l68 48q26 18 33 18q16 0 16 -17q0 -10 -26 -24z" />
<glyph glyph-name="egrave" unicode="&#xe8;" horiz-adv-x="259"
d="M248 156q-51 -53 -110 -96q-82 -60 -129 -60q-29 0 -49.5 20.5t-20.5 49.5q0 47 61 114q35 38 84 62q39 19 63 19q38 0 38 -30q0 -77 -196 -142q-15 -24 -15 -39q0 -37 37 -37q43 0 120 54q56 40 103 87q24 24 29 24q4 0 4 -4q-5 -6 -19 -22zM-2 109q89 34 118 58
q49 40 49 71q0 15 -17 15q-33 0 -85 -58q-35 -39 -65 -86zM205 341q13 -10 13 -16q0 -8 -10 -8q-2 1 -16 9l-93 54q-23 13 -23 23q0 18 17 18q6 0 26 -15z" />
<glyph glyph-name="ecircumflex" unicode="&#xea;" horiz-adv-x="259"
d="M248 156q-51 -53 -110 -96q-82 -60 -129 -60q-29 0 -49.5 20.5t-20.5 49.5q0 47 61 114q35 38 84 62q39 19 63 19q38 0 38 -30q0 -77 -196 -142q-15 -24 -15 -39q0 -37 37 -37q43 0 120 54q56 40 103 87q24 24 29 24q4 0 4 -4q-5 -6 -19 -22zM-2 109q89 34 118 58
q49 40 49 71q0 15 -17 15q-33 0 -85 -58q-35 -39 -65 -86zM207 411l13 -59q4 -18 4 -19q0 -13 -9 -13q-8 0 -16 18l-24 55l-82 -61q-16 -12 -24 -12q-11 0 -11 9q0 5 25 27l76 66q14 12 25 12q18 0 23 -23z" />
<glyph glyph-name="edieresis" unicode="&#xeb;" horiz-adv-x="299"
d="M248 156q-51 -53 -110 -96q-82 -60 -129 -60q-29 0 -49.5 20.5t-20.5 49.5q0 47 61 114q35 38 84 62q39 19 63 19q38 0 38 -30q0 -77 -196 -142q-15 -24 -15 -39q0 -37 37 -37q43 0 120 54q56 40 103 87q24 24 29 24q4 0 4 -4q-5 -6 -19 -22zM-2 109q89 34 118 58
q49 40 49 71q0 15 -17 15q-33 0 -85 -58q-35 -39 -65 -86zM121 362q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27t27.5 12q24 0 24 -19zM242 360q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12q24 0 24 -20z" />
<glyph glyph-name="iacute" unicode="&#xed;" horiz-adv-x="222"
d="M199 380l-82 -45q-26 -14 -30 -14q-7 0 -7 8q0 6 28 26l68 48q26 18 33 18q16 0 16 -17q0 -10 -26 -24z" />
<glyph glyph-name="igrave" unicode="&#xec;" horiz-adv-x="222"
d="M169 341q13 -10 13 -16q0 -8 -10 -8q-2 1 -16 9l-93 54q-23 13 -23 23q0 18 17 18q6 0 26 -15z" />
<glyph glyph-name="icircumflex" unicode="&#xee;" horiz-adv-x="222"
d="M179 411l13 -59q4 -18 4 -19q0 -13 -9 -13q-8 0 -16 18l-24 55l-82 -61q-16 -12 -24 -12q-11 0 -11 9q0 5 25 27l76 66q14 12 25 12q18 0 23 -23z" />
<glyph glyph-name="idieresis" unicode="&#xef;" horiz-adv-x="222"
d="M101 362q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27t27.5 12q24 0 24 -19zM222 360q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12q24 0 24 -20z" />
<glyph glyph-name="ntilde" unicode="&#xf1;" horiz-adv-x="389"
d="M384 161q-73 -77 -98 -99q-68 -59 -112 -59q-17 0 -28.5 11.5t-11.5 28.5q0 29 57 100l37 46q31 39 31 51q0 11 -11 11q-20 0 -86 -55q-34 -28 -93 -98l-72 -87l-56 -3l111 135q64 78 64 96q0 14 -12 14q-14 0 -41 -25q-19 -18 -37 -36q-25 -22 -29 -24q-4 0 -4 5
q0 3 22 25q30 30 64 63q14 11 38 11q33 0 33 -35q0 -13 -13 -43q49 39 59 46q40 27 68 27q33 0 33 -32q0 -24 -37 -72l-37 -48q-46 -60 -46 -78q0 -15 14 -15q45 0 181 143q20 21 23 21q4 0 4 -6q0 -3 -15 -19zM330 362q0 -17 -20 -30t-38 -13q-16 0 -49 11q-39 13 -52 13
q-17 0 -37 -20q-5 -5 -8 -5q-7 0 -7 9q0 19 20 32.5t40 13.5q19 0 55 -12.5t46 -12.5q15 0 30 15q9 9 12 9q8 0 8 -10z" />
<glyph glyph-name="oacute" unicode="&#xf3;"
d="M157 114q-102 -114 -177 -114q-24 0 -39.5 17.5t-15.5 41.5q0 57 66 119q95 90 171 90q44 0 44 -45q0 -33 -39 -97q61 0 109 37q25 19 23 19q5 0 5 -4q0 -15 -44.5 -40.5t-67.5 -25.5q-24 0 -35 2zM-12 15q50 0 134 84q22 22 44 59q26 42 26 67q0 23 -23 23
q-61 0 -155 -115q-55 -67 -55 -90q0 -28 29 -28zM256 380l-82 -45q-26 -14 -30 -14q-7 0 -7 8q0 6 28 26l68 48q26 18 33 18q16 0 16 -17q0 -10 -26 -24z" />
<glyph glyph-name="ograve" unicode="&#xf2;"
d="M157 114q-102 -114 -177 -114q-24 0 -39.5 17.5t-15.5 41.5q0 57 66 119q95 90 171 90q44 0 44 -45q0 -33 -39 -97q61 0 109 37q25 19 23 19q5 0 5 -4q0 -15 -44.5 -40.5t-67.5 -25.5q-24 0 -35 2zM-12 15q50 0 134 84q22 22 44 59q26 42 26 67q0 23 -23 23
q-61 0 -155 -115q-55 -67 -55 -90q0 -28 29 -28zM241 341q13 -10 13 -16q0 -8 -10 -8q-2 1 -16 9l-93 54q-23 13 -23 23q0 18 17 18q6 0 26 -15z" />
<glyph glyph-name="ocircumflex" unicode="&#xf4;"
d="M157 114q-102 -114 -177 -114q-24 0 -39.5 17.5t-15.5 41.5q0 57 66 119q95 90 171 90q44 0 44 -45q0 -33 -39 -97q61 0 109 37q25 19 23 19q5 0 5 -4q0 -15 -44.5 -40.5t-67.5 -25.5q-24 0 -35 2zM-12 15q50 0 134 84q22 22 44 59q26 42 26 67q0 23 -23 23
q-61 0 -155 -115q-55 -67 -55 -90q0 -28 29 -28zM239 411l13 -59q4 -18 4 -19q0 -13 -9 -13q-8 0 -16 18l-24 55l-82 -61q-16 -12 -24 -12q-11 0 -11 9q0 5 25 27l76 66q14 12 25 12q18 0 23 -23z" />
<glyph glyph-name="odieresis" unicode="&#xf6;" horiz-adv-x="295"
d="M157 114q-102 -114 -177 -114q-24 0 -39.5 17.5t-15.5 41.5q0 57 66 119q95 90 171 90q44 0 44 -45q0 -33 -39 -97q61 0 109 37q25 19 23 19q5 0 5 -4q0 -15 -44.5 -40.5t-67.5 -25.5q-24 0 -35 2zM-12 15q50 0 134 84q22 22 44 59q26 42 26 67q0 23 -23 23
q-61 0 -155 -115q-55 -67 -55 -90q0 -28 29 -28zM157 362q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27t27.5 12q24 0 24 -19zM278 360q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12q24 0 24 -20z" />
<glyph glyph-name="otilde" unicode="&#xf5;"
d="M157 114q-102 -114 -177 -114q-24 0 -39.5 17.5t-15.5 41.5q0 57 66 119q95 90 171 90q44 0 44 -45q0 -33 -39 -97q61 0 109 37q25 19 23 19q5 0 5 -4q0 -15 -44.5 -40.5t-67.5 -25.5q-24 0 -35 2zM-12 15q50 0 134 84q22 22 44 59q26 42 26 67q0 23 -23 23
q-61 0 -155 -115q-55 -67 -55 -90q0 -28 29 -28zM286 362q0 -17 -20 -30t-38 -13q-16 0 -49 11q-39 13 -52 13q-17 0 -37 -20q-5 -5 -8 -5q-7 0 -7 9q0 19 20 32.5t40 13.5q19 0 55 -12.5t46 -12.5q15 0 30 15q9 9 12 9q8 0 8 -10z" />
<glyph glyph-name="uacute" unicode="&#xfa;"
d="M291 158q-141 -158 -205 -158q-30 0 -30 33q0 22 23 61q-51 -51 -61 -59q-41 -34 -74 -34q-17 0 -28.5 11.5t-11.5 28.5q0 33 103 158l52 63l58 4l-54 -63q-27 -31 -68 -86q-55 -72 -55 -85q0 -16 15 -16q14 0 72 49q81 69 181 197l58 3l-86 -105q-93 -114 -93 -132
q0 -12 10 -12q46 0 190 157q10 11 16 11q3 0 3 -4q0 -5 -15 -22zM255 380l-82 -45q-26 -14 -30 -14q-7 0 -7 8q0 6 28 26l68 48q26 18 33 18q16 0 16 -17q0 -10 -26 -24z" />
<glyph glyph-name="ugrave" unicode="&#xf9;"
d="M291 158q-141 -158 -205 -158q-30 0 -30 33q0 22 23 61q-51 -51 -61 -59q-41 -34 -74 -34q-17 0 -28.5 11.5t-11.5 28.5q0 33 103 158l52 63l58 4l-54 -63q-27 -31 -68 -86q-55 -72 -55 -85q0 -16 15 -16q14 0 72 49q81 69 181 197l58 3l-86 -105q-93 -114 -93 -132
q0 -12 10 -12q46 0 190 157q10 11 16 11q3 0 3 -4q0 -5 -15 -22zM229 341q13 -10 13 -16q0 -8 -10 -8q-2 1 -16 9l-93 54q-23 13 -23 23q0 18 17 18q6 0 26 -15z" />
<glyph glyph-name="ucircumflex" unicode="&#xfb;"
d="M291 158q-141 -158 -205 -158q-30 0 -30 33q0 22 23 61q-51 -51 -61 -59q-41 -34 -74 -34q-17 0 -28.5 11.5t-11.5 28.5q0 33 103 158l52 63l58 4l-54 -63q-27 -31 -68 -86q-55 -72 -55 -85q0 -16 15 -16q14 0 72 49q81 69 181 197l58 3l-86 -105q-93 -114 -93 -132
q0 -12 10 -12q46 0 190 157q10 11 16 11q3 0 3 -4q0 -5 -15 -22zM247 411l13 -59q4 -18 4 -19q0 -13 -9 -13q-8 0 -16 18l-24 55l-82 -61q-16 -12 -24 -12q-11 0 -11 9q0 5 25 27l76 66q14 12 25 12q18 0 23 -23z" />
<glyph glyph-name="udieresis" unicode="&#xfc;"
d="M291 158q-141 -158 -205 -158q-30 0 -30 33q0 22 23 61q-51 -51 -61 -59q-41 -34 -74 -34q-17 0 -28.5 11.5t-11.5 28.5q0 33 103 158l52 63l58 4l-54 -63q-27 -31 -68 -86q-55 -72 -55 -85q0 -16 15 -16q14 0 72 49q81 69 181 197l58 3l-86 -105q-93 -114 -93 -132
q0 -12 10 -12q46 0 190 157q10 11 16 11q3 0 3 -4q0 -5 -15 -22zM161 362q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27t27.5 12q24 0 24 -19zM282 360q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12q24 0 24 -20z" />
<glyph glyph-name="degree" unicode="&#xb0;" horiz-adv-x="389"
d="M225 324q-42 -34 -81 -34q-66 0 -66 71q0 66 72 128t139 62q38 0 38 -26q0 -12 -11.5 -22t-23.5 -10q-16 0 -16 14q0 11 15 19q7 4 7 7q0 5 -12 5q-44 0 -113 -75q-59 -64 -59 -114q0 -46 37 -46q27 0 79 44q20 17 25 17q6 0 6 -5q0 -6 -36 -35z" />
<glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="593"
d="M260 55l-51 -50q-7 -7 -9 -7q-5 0 -5 5q1 2 5 9l29 46q6 10 19 10q19 0 19 -3t-7 -10zM183 55l-51 -50q-7 -7 -9 -7q-5 0 -5 5q1 2 5 9l29 46q6 10 19 10q19 0 19 -3t-7 -10zM524 169q-54 -62 -89 -62q-29 0 -29 23q0 9 5 20q-53 -46 -77 -46q-32 0 -32 30q0 10 -1 17
q-52 -51 -85 -51q-29 0 -29 27q0 19 38 68.5t38 56.5q0 8 -8 8q-19 0 -72 -53q-23 -23 -90 -104l-39 -6l87 106q31 38 31 44q0 10 -11 10t-40 -30q-123 -127 -136 -127q-6 0 -6 5q0 3 26 28q57 54 105 103q39 40 62 40q22 0 22 -20q0 -5 -5 -25q53 45 82 45q25 0 25 -23
q0 -22 -52 -85q-24 -29 -24 -41q0 -10 9 -10q18 0 54 35q20 21 61 63q65 66 114 66q30 0 30 -26l132 176h28l-201 -268q-15 -20 -15 -31q0 -10 9 -10q23 0 79 64q15 17 19 17q5 0 5 -5q0 -6 -20 -29zM342 120q33 0 99 83q33 41 33 55t-14 14q-27 0 -97 -75q-35 -38 -35 -61
q0 -16 14 -16z" />
<glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="0"
d="M-82 81q-56 -49 -89 -67q-20 -15 -27 -15q-6 0 -6 7q0 5 10 10q71 38 158 128q35 36 40 36t5 -5q0 -15 -91 -94z" />
<glyph glyph-name="logicalnot" unicode="&#xac;" horiz-adv-x="389"
d="M243 191l13 -127q3 -28 7 -36q7 -13 31 -18v-10h-104l2 11q33 3 33 25q0 9 -1 19l-11 108l-124 -114q-17 -16 -17 -22q0 -16 34 -16l-3 -11h-112l4 11q35 9 88 58l127 118l-14 126q-3 23 -7 30q-7 11 -29 11l5 12h97v-11q-33 -5 -33 -29q0 -2 1 -9v-9l10 -93l97 89
q27 25 27 36q0 13 -22 13l3 13h106l-2 -9q-20 -4 -34 -12q-9 -5 -36 -30z" />
<glyph glyph-name="nonbreakingspace" unicode="&#xa0;" horiz-adv-x="333"
/>
<glyph glyph-name="Agrave" unicode="&#xc0;" horiz-adv-x="1093"
d="M1064 133q-124 -133 -178 -133q-39 0 -39 45q0 70 87 217h-105q-132 -137 -232 -192q-130 -71 -250 -71q-77 0 -126 27q-52 28 -90 93q-55 20 -90 60q-38 44 -38 99q0 123 114 205q53 38 120 57q47 13 131 22q116 59 219 59q68 0 113 -26q55 -33 55 -96q0 -104 -89 -200
q-79 -86 -202 -141q-119 -54 -219 -54q-39 0 -93 10q58 -81 159 -81q200 0 435 229h-74q-14 0 -14 7q0 9 14 9h89q97 91 327 304q141 129 193 129q25 0 25 -19q0 -17 -23 -44t-111 -151q-77 -109 -109 -156q-167 -248 -167 -297q0 -17 13 -17q31 0 137 106q48 48 51 50
q2 -1 2 -3q0 -10 -35 -47zM118 194q0 97 66 197q58 89 146 151q-118 -10 -204 -71q-45 -32 -77 -85q-33 -56 -33 -108q0 -92 109 -140q-7 29 -7 56zM487 183q132 70 201 173q52 78 52 141q0 55 -47 85q-40 26 -99 26q-89 0 -192 -46q144 -17 144 -43q0 -5 -5 -5
q27 0 -5.5 7.5t-85.5 15.5q-56 8 -82 9q-97 -57 -162 -146q-74 -100 -74 -202q0 -29 11 -65q62 -14 114 -14q109 0 230 64zM942 278q111 154 267 328l72 81q0 5 -7 5q-39 0 -124 -81q-5 -4 -307 -333h99zM1365 825q13 -10 13 -16q0 -8 -10 -8q-2 1 -16 9l-93 54
q-23 13 -23 23q0 18 17 18q6 0 26 -15z" />
<glyph glyph-name="Atilde" unicode="&#xc3;" horiz-adv-x="1093"
d="M1064 133q-124 -133 -178 -133q-39 0 -39 45q0 70 87 217h-105q-132 -137 -232 -192q-130 -71 -250 -71q-77 0 -126 27q-52 28 -90 93q-55 20 -90 60q-38 44 -38 99q0 123 114 205q53 38 120 57q47 13 131 22q116 59 219 59q68 0 113 -26q55 -33 55 -96q0 -104 -89 -200
q-79 -86 -202 -141q-119 -54 -219 -54q-39 0 -93 10q58 -81 159 -81q200 0 435 229h-74q-14 0 -14 7q0 9 14 9h89q97 91 327 304q141 129 193 129q25 0 25 -19q0 -17 -23 -44t-111 -151q-77 -109 -109 -156q-167 -248 -167 -297q0 -17 13 -17q31 0 137 106q48 48 51 50
q2 -1 2 -3q0 -10 -35 -47zM118 194q0 97 66 197q58 89 146 151q-118 -10 -204 -71q-45 -32 -77 -85q-33 -56 -33 -108q0 -92 109 -140q-7 29 -7 56zM487 183q132 70 201 173q52 78 52 141q0 55 -47 85q-40 26 -99 26q-89 0 -192 -46q144 -17 144 -43q0 -5 -5 -5
q27 0 -5.5 7.5t-85.5 15.5q-56 8 -82 9q-97 -57 -162 -146q-74 -100 -74 -202q0 -29 11 -65q62 -14 114 -14q109 0 230 64zM942 278q111 154 267 328l72 81q0 5 -7 5q-39 0 -124 -81q-5 -4 -307 -333h99zM1424 890q0 -17 -20 -30t-38 -13q-16 0 -49 11q-39 13 -52 13
q-17 0 -37 -20q-5 -5 -8 -5q-7 0 -7 9q0 19 20 32.5t40 13.5q19 0 55 -12.5t46 -12.5q15 0 30 15q9 9 12 9q8 0 8 -10z" />
<glyph glyph-name="Otilde" unicode="&#xd5;" horiz-adv-x="741"
d="M619 186q-149 -159 -297 -160q-84 -26 -125 -26q-92 0 -143 62q-49 58 -49 152q0 169 141 337q112 134 243 188q39 16 65 16q5 0 5 -4q-13 -7 -49 -29q-118 -71 -221 -216q-130 -183 -130 -321q0 -65 36 -116q40 -56 102 -56q27 0 78 20q-95 56 -95 181q0 93 46 202
q40 94 105 179q61 80 131 134q91 71 168 71q69 0 104 -56q29 -46 29 -120q0 -60 -26 -132q0 -63 -22 -135q-31 -102 -96 -171zM295 42q139 72 252 215q100 127 164 289q-39 39 -76 39q-61 0 -126 -81q-12 -15 -23 -34q-7 -13 -13 -13q-2 2 -3 5q0 14 25 47q69 91 140 91
q38 0 81 -32q15 53 15 88q0 129 -99 129q-126 0 -274 -181q-67 -82 -112 -184q-50 -115 -50 -209q0 -128 99 -169zM358 41q137 22 240 139q100 113 119 254q-53 -126 -144 -230q-99 -111 -215 -163zM764 906q0 -17 -20 -30t-38 -13q-16 0 -49 11q-39 13 -52 13
q-17 0 -37 -20q-5 -5 -8 -5q-7 0 -7 9q0 19 20 32.5t40 13.5q19 0 55 -12.5t46 -12.5q15 0 30 15q9 9 12 9q8 0 8 -10z" />
<glyph glyph-name="ydieresis" unicode="&#xff;" horiz-adv-x="389"
d="M385 162q-61 -66 -113 -102t-135 -68q-236 -291 -325 -291q-15 0 -26 10t-11 25q0 38 49 92q18 21 42 39q109 85 220 120l56 83q-16 -13 -50.5 -37t-60.5 -24q-36 0 -36 34q0 37 76 126q44 52 44 70q0 11 -13 11q-15 0 -76 -56q-8 -8 -18 -20q-6 -6 -10 -6t-4 4
q0 3 21 26q67 72 104 72q13 0 24.5 -9.5t11.5 -22.5q0 -31 -49 -91l-48 -59q-25 -31 -25 -46t14 -15q37 0 134 101q60 63 116 133l55 6l-199 -253q130 50 224 155q13 15 16 15q5 0 5 -5q0 -3 -13 -17zM-187 -286q47 0 141 105q60 66 116 146q-114 -44 -174 -93
q-107 -87 -107 -134q0 -24 24 -24zM209 362q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27t27.5 12q24 0 24 -19zM330 360q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12q24 0 24 -20z" />
<glyph glyph-name="Ydieresis" unicode="&#x178;" horiz-adv-x="1000"
d="M996 409l-177 -287q-89 -141 -168 -228q-168 -184 -288 -184q-33 0 -56.5 18t-23.5 50q0 26 14.5 46t39.5 20q28 0 28 -23q0 -26 -33 -29q-21 -2 -26 -5q-8 -3 -8 -16q0 -21 19 -34.5t41 -13.5q175 0 484 574q-112 -122 -160 -169q-132 -128 -184 -128q-46 0 -46 61
q0 51 40 121q28 48 104 150q56 75 78 112q41 72 41 128q0 59 -37 97t-97 49q29 -49 29 -101q0 -139 -172 -322q-150 -160 -285 -160q-60 0 -94.5 37.5t-34.5 97.5q0 20 3 51q-23 45 -23 95q0 69 34 140q34 68 88.5 117t134 80t152.5 31q51 0 80.5 -9t69.5 -38
q87 -10 136 -58q53 -51 53 -136q0 -102 -87 -229q-40 -55 -120 -164q-56 -77 -56 -116q0 -17 19 -17q40 0 157 115q142 139 286 318q52 65 64 75q19 16 48 16q7 0 7 -5q0 -8 -74 -127zM233 635q130 101 303 104q-58 32 -113 32q-70 0 -145 -27q-78 -27 -128 -72
q-130 -116 -130 -255q0 -35 12 -74q44 170 201 292zM153 150q96 0 212 94q95 78 159 177q74 115 74 202q0 56 -45 101q-182 0 -326 -112.5t-184 -288.5q13 -22 38 -39q10 -7 10 -12q0 -3 -6 -3q-15 0 -46 34q-2 -24 -2 -31q0 -53 31.5 -87.5t84.5 -34.5zM961 846
q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27t27.5 12q24 0 24 -19zM1082 844q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12q24 0 24 -20z" />
<glyph glyph-name="Acircumflex" unicode="&#xc2;" horiz-adv-x="1093"
d="M1064 133q-124 -133 -178 -133q-39 0 -39 45q0 70 87 217h-105q-132 -137 -232 -192q-130 -71 -250 -71q-77 0 -126 27q-52 28 -90 93q-55 20 -90 60q-38 44 -38 99q0 123 114 205q53 38 120 57q47 13 131 22q116 59 219 59q68 0 113 -26q55 -33 55 -96q0 -104 -89 -200
q-79 -86 -202 -141q-119 -54 -219 -54q-39 0 -93 10q58 -81 159 -81q200 0 435 229h-74q-14 0 -14 7q0 9 14 9h89q97 91 327 304q141 129 193 129q25 0 25 -19q0 -17 -23 -44t-111 -151q-77 -109 -109 -156q-167 -248 -167 -297q0 -17 13 -17q31 0 137 106q48 48 51 50
q2 -1 2 -3q0 -10 -35 -47zM118 194q0 97 66 197q58 89 146 151q-118 -10 -204 -71q-45 -32 -77 -85q-33 -56 -33 -108q0 -92 109 -140q-7 29 -7 56zM487 183q132 70 201 173q52 78 52 141q0 55 -47 85q-40 26 -99 26q-89 0 -192 -46q144 -17 144 -43q0 -5 -5 -5
q27 0 -5.5 7.5t-85.5 15.5q-56 8 -82 9q-97 -57 -162 -146q-74 -100 -74 -202q0 -29 11 -65q62 -14 114 -14q109 0 230 64zM942 278q111 154 267 328l72 81q0 5 -7 5q-39 0 -124 -81q-5 -4 -307 -333h99zM1351 891l13 -59q4 -18 4 -19q0 -13 -9 -13q-8 0 -16 18l-24 55
l-82 -61q-16 -12 -24 -12q-11 0 -11 9q0 5 25 27l76 66q14 12 25 12q18 0 23 -23z" />
<glyph glyph-name="Ecircumflex" unicode="&#xca;" horiz-adv-x="796"
d="M712 262q0 -99 -165 -208q-39 -50 -86 -85q-60 -45 -110 -45q-83 0 -88 86q-108 44 -108 152q0 107 109 183q83 58 205 85q-12 15 -23 30q-126 -27 -211 -27q-89 0 -147 24q-82 34 -82 111q0 97 120 148q92 39 203 39q104 0 213 -54q113 60 224 60q35 0 62 -11
q35 -15 35 -46q0 -77 -157 -153q-94 -45 -223 -80q6 -19 17 -35q44 6 69 6q89 0 89 -26q0 -29 -60 -29q-62 0 -115 30q-121 -37 -186 -105q-79 -82 -79 -164q0 -62 48 -102q27 116 122 206q101 95 215 95q44 0 74 -20q35 -23 35 -65zM431 532q0 85 98 161q-56 27 -97 36.5
t-102 9.5q-108 0 -194 -34q-117 -46 -117 -138q0 -66 80 -98q57 -23 135 -23q101 0 206 28q-9 36 -9 58zM351 -63q71 0 165 100q-91 -38 -167 -38q-33 0 -74 10q0 -72 76 -72zM572 89q45 34 77 77q38 53 38 100q0 32 -26 50t-59 18q-109 0 -209 -94q-97 -90 -117 -200
q54 -22 97 -22q70 0 169 47q72 113 78 199q1 8 5 8q5 0 5 -15q0 -66 -58 -168zM480 485q107 25 215 75q155 72 155 142q0 23 -29 36q-22 10 -49 10q-78 0 -181 -77q11 -10 24 -23q6 -6 6 -10q-1 -3 -3 -3t-19.5 13t-19.5 14q-99 -89 -99 -177zM595 430q-39 0 -81 -6
q38 -24 83 -24t45 16q0 14 -47 14zM831 891l13 -59q4 -18 4 -19q0 -13 -9 -13q-8 0 -16 18l-24 55l-82 -61q-16 -12 -24 -12q-11 0 -11 9q0 5 25 27l76 66q14 12 25 12q18 0 23 -23z" />
<glyph glyph-name="Aacute" unicode="&#xc1;" horiz-adv-x="1093"
d="M1064 133q-124 -133 -178 -133q-39 0 -39 45q0 70 87 217h-105q-132 -137 -232 -192q-130 -71 -250 -71q-77 0 -126 27q-52 28 -90 93q-55 20 -90 60q-38 44 -38 99q0 123 114 205q53 38 120 57q47 13 131 22q116 59 219 59q68 0 113 -26q55 -33 55 -96q0 -104 -89 -200
q-79 -86 -202 -141q-119 -54 -219 -54q-39 0 -93 10q58 -81 159 -81q200 0 435 229h-74q-14 0 -14 7q0 9 14 9h89q97 91 327 304q141 129 193 129q25 0 25 -19q0 -17 -23 -44t-111 -151q-77 -109 -109 -156q-167 -248 -167 -297q0 -17 13 -17q31 0 137 106q48 48 51 50
q2 -1 2 -3q0 -10 -35 -47zM118 194q0 97 66 197q58 89 146 151q-118 -10 -204 -71q-45 -32 -77 -85q-33 -56 -33 -108q0 -92 109 -140q-7 29 -7 56zM487 183q132 70 201 173q52 78 52 141q0 55 -47 85q-40 26 -99 26q-89 0 -192 -46q144 -17 144 -43q0 -5 -5 -5
q27 0 -5.5 7.5t-85.5 15.5q-56 8 -82 9q-97 -57 -162 -146q-74 -100 -74 -202q0 -29 11 -65q62 -14 114 -14q109 0 230 64zM942 278q111 154 267 328l72 81q0 5 -7 5q-39 0 -124 -81q-5 -4 -307 -333h99zM1386 860l-82 -45q-26 -14 -30 -14q-7 0 -7 8q0 6 28 26l68 48
q26 18 33 18q16 0 16 -17q0 -10 -26 -24z" />
<glyph glyph-name="Edieresis" unicode="&#xcb;" horiz-adv-x="796"
d="M712 262q0 -99 -165 -208q-39 -50 -86 -85q-60 -45 -110 -45q-83 0 -88 86q-108 44 -108 152q0 107 109 183q83 58 205 85q-12 15 -23 30q-126 -27 -211 -27q-89 0 -147 24q-82 34 -82 111q0 97 120 148q92 39 203 39q104 0 213 -54q113 60 224 60q35 0 62 -11
q35 -15 35 -46q0 -77 -157 -153q-94 -45 -223 -80q6 -19 17 -35q44 6 69 6q89 0 89 -26q0 -29 -60 -29q-62 0 -115 30q-121 -37 -186 -105q-79 -82 -79 -164q0 -62 48 -102q27 116 122 206q101 95 215 95q44 0 74 -20q35 -23 35 -65zM431 532q0 85 98 161q-56 27 -97 36.5
t-102 9.5q-108 0 -194 -34q-117 -46 -117 -138q0 -66 80 -98q57 -23 135 -23q101 0 206 28q-9 36 -9 58zM351 -63q71 0 165 100q-91 -38 -167 -38q-33 0 -74 10q0 -72 76 -72zM572 89q45 34 77 77q38 53 38 100q0 32 -26 50t-59 18q-109 0 -209 -94q-97 -90 -117 -200
q54 -22 97 -22q70 0 169 47q72 113 78 199q1 8 5 8q5 0 5 -15q0 -66 -58 -168zM480 485q107 25 215 75q155 72 155 142q0 23 -29 36q-22 10 -49 10q-78 0 -181 -77q11 -10 24 -23q6 -6 6 -10q-1 -3 -3 -3t-19.5 13t-19.5 14q-99 -89 -99 -177zM595 430q-39 0 -81 -6
q38 -24 83 -24t45 16q0 14 -47 14zM757 846q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27t27.5 12q24 0 24 -19zM878 844q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12q24 0 24 -20z" />
<glyph glyph-name="Egrave" unicode="&#xc8;" horiz-adv-x="796"
d="M712 262q0 -99 -165 -208q-39 -50 -86 -85q-60 -45 -110 -45q-83 0 -88 86q-108 44 -108 152q0 107 109 183q83 58 205 85q-12 15 -23 30q-126 -27 -211 -27q-89 0 -147 24q-82 34 -82 111q0 97 120 148q92 39 203 39q104 0 213 -54q113 60 224 60q35 0 62 -11
q35 -15 35 -46q0 -77 -157 -153q-94 -45 -223 -80q6 -19 17 -35q44 6 69 6q89 0 89 -26q0 -29 -60 -29q-62 0 -115 30q-121 -37 -186 -105q-79 -82 -79 -164q0 -62 48 -102q27 116 122 206q101 95 215 95q44 0 74 -20q35 -23 35 -65zM431 532q0 85 98 161q-56 27 -97 36.5
t-102 9.5q-108 0 -194 -34q-117 -46 -117 -138q0 -66 80 -98q57 -23 135 -23q101 0 206 28q-9 36 -9 58zM351 -63q71 0 165 100q-91 -38 -167 -38q-33 0 -74 10q0 -72 76 -72zM572 89q45 34 77 77q38 53 38 100q0 32 -26 50t-59 18q-109 0 -209 -94q-97 -90 -117 -200
q54 -22 97 -22q70 0 169 47q72 113 78 199q1 8 5 8q5 0 5 -15q0 -66 -58 -168zM480 485q107 25 215 75q155 72 155 142q0 23 -29 36q-22 10 -49 10q-78 0 -181 -77q11 -10 24 -23q6 -6 6 -10q-1 -3 -3 -3t-19.5 13t-19.5 14q-99 -89 -99 -177zM595 430q-39 0 -81 -6
q38 -24 83 -24t45 16q0 14 -47 14zM833 825q13 -10 13 -16q0 -8 -10 -8q-2 1 -16 9l-93 54q-23 13 -23 23q0 18 17 18q6 0 26 -15z" />
<glyph glyph-name="Iacute" unicode="&#xcd;" horiz-adv-x="574"
d="M525 312q-196 -312 -415 -312q-106 0 -106 89q0 34 23 66.5t56 32.5q26 0 26 -24q0 -12 -10 -20.5t-22 -8.5q-3 0 -11.5 2.5t-20.5 2.5q-10 0 -19 -23q-7 -19 -7 -32q0 -71 88 -71q151 0 306 248q-97 -34 -183 -44q-2 -24 -2 -35q0 -2 1 -23l1 -25q0 -8 -4 -8
q-11 0 -11 58q0 9 2 31h-35q-71 0 -114 31q-49 35 -49 103q0 83 85 166q64 64 157 112q106 55 298 90q168 31 289 31q22 0 22 -5q0 -7 -9 -10q-69 -32 -134 -105q50 -19 50 -64q0 -73 -94 -153q-69 -59 -158 -100zM218 231q33 161 173 281.5t303 124.5q28 28 85 68
q-292 -14 -490 -97q-97 -41 -164 -98q-91 -77 -91 -159q0 -60 44 -93q40 -29 102 -29q24 0 38 2zM428 283q84 132 114 176q67 96 132 162q-150 -10 -282 -126t-159 -263q84 8 195 51zM543 338q61 23 134 88q86 77 86 138q0 35 -45 52q-33 -42 -93 -142zM875 860l-82 -45
q-26 -14 -30 -14q-7 0 -7 8q0 6 28 26l68 48q26 18 33 18q16 0 16 -17q0 -10 -26 -24z" />
<glyph glyph-name="Icircumflex" unicode="&#xce;" horiz-adv-x="574"
d="M525 312q-196 -312 -415 -312q-106 0 -106 89q0 34 23 66.5t56 32.5q26 0 26 -24q0 -12 -10 -20.5t-22 -8.5q-3 0 -11.5 2.5t-20.5 2.5q-10 0 -19 -23q-7 -19 -7 -32q0 -71 88 -71q151 0 306 248q-97 -34 -183 -44q-2 -24 -2 -35q0 -2 1 -23l1 -25q0 -8 -4 -8
q-11 0 -11 58q0 9 2 31h-35q-71 0 -114 31q-49 35 -49 103q0 83 85 166q64 64 157 112q106 55 298 90q168 31 289 31q22 0 22 -5q0 -7 -9 -10q-69 -32 -134 -105q50 -19 50 -64q0 -73 -94 -153q-69 -59 -158 -100zM218 231q33 161 173 281.5t303 124.5q28 28 85 68
q-292 -14 -490 -97q-97 -41 -164 -98q-91 -77 -91 -159q0 -60 44 -93q40 -29 102 -29q24 0 38 2zM428 283q84 132 114 176q67 96 132 162q-150 -10 -282 -126t-159 -263q84 8 195 51zM543 338q61 23 134 88q86 77 86 138q0 35 -45 52q-33 -42 -93 -142zM831 891l13 -59
q4 -18 4 -19q0 -13 -9 -13q-8 0 -16 18l-24 55l-82 -61q-16 -12 -24 -12q-11 0 -11 9q0 5 25 27l76 66q14 12 25 12q18 0 23 -23z" />
<glyph glyph-name="Idieresis" unicode="&#xcf;" horiz-adv-x="574"
d="M525 312q-196 -312 -415 -312q-106 0 -106 89q0 34 23 66.5t56 32.5q26 0 26 -24q0 -12 -10 -20.5t-22 -8.5q-3 0 -11.5 2.5t-20.5 2.5q-10 0 -19 -23q-7 -19 -7 -32q0 -71 88 -71q151 0 306 248q-97 -34 -183 -44q-2 -24 -2 -35q0 -2 1 -23l1 -25q0 -8 -4 -8
q-11 0 -11 58q0 9 2 31h-35q-71 0 -114 31q-49 35 -49 103q0 83 85 166q64 64 157 112q106 55 298 90q168 31 289 31q22 0 22 -5q0 -7 -9 -10q-69 -32 -134 -105q50 -19 50 -64q0 -73 -94 -153q-69 -59 -158 -100zM218 231q33 161 173 281.5t303 124.5q28 28 85 68
q-292 -14 -490 -97q-97 -41 -164 -98q-91 -77 -91 -159q0 -60 44 -93q40 -29 102 -29q24 0 38 2zM428 283q84 132 114 176q67 96 132 162q-150 -10 -282 -126t-159 -263q84 8 195 51zM543 338q61 23 134 88q86 77 86 138q0 35 -45 52q-33 -42 -93 -142zM757 846
q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27t27.5 12q24 0 24 -19zM878 844q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12q24 0 24 -20z" />
<glyph glyph-name="Igrave" unicode="&#xcc;" horiz-adv-x="574"
d="M525 312q-196 -312 -415 -312q-106 0 -106 89q0 34 23 66.5t56 32.5q26 0 26 -24q0 -12 -10 -20.5t-22 -8.5q-3 0 -11.5 2.5t-20.5 2.5q-10 0 -19 -23q-7 -19 -7 -32q0 -71 88 -71q151 0 306 248q-97 -34 -183 -44q-2 -24 -2 -35q0 -2 1 -23l1 -25q0 -8 -4 -8
q-11 0 -11 58q0 9 2 31h-35q-71 0 -114 31q-49 35 -49 103q0 83 85 166q64 64 157 112q106 55 298 90q168 31 289 31q22 0 22 -5q0 -7 -9 -10q-69 -32 -134 -105q50 -19 50 -64q0 -73 -94 -153q-69 -59 -158 -100zM218 231q33 161 173 281.5t303 124.5q28 28 85 68
q-292 -14 -490 -97q-97 -41 -164 -98q-91 -77 -91 -159q0 -60 44 -93q40 -29 102 -29q24 0 38 2zM428 283q84 132 114 176q67 96 132 162q-150 -10 -282 -126t-159 -263q84 8 195 51zM543 338q61 23 134 88q86 77 86 138q0 35 -45 52q-33 -42 -93 -142zM853 825
q13 -10 13 -16q0 -8 -10 -8q-2 1 -16 9l-93 54q-23 13 -23 23q0 18 17 18q6 0 26 -15z" />
<glyph glyph-name="Oacute" unicode="&#xd3;" horiz-adv-x="741"
d="M619 186q-149 -159 -297 -160q-84 -26 -125 -26q-92 0 -143 62q-49 58 -49 152q0 169 141 337q112 134 243 188q39 16 65 16q5 0 5 -4q-13 -7 -49 -29q-118 -71 -221 -216q-130 -183 -130 -321q0 -65 36 -116q40 -56 102 -56q27 0 78 20q-95 56 -95 181q0 93 46 202
q40 94 105 179q61 80 131 134q91 71 168 71q69 0 104 -56q29 -46 29 -120q0 -60 -26 -132q0 -63 -22 -135q-31 -102 -96 -171zM295 42q139 72 252 215q100 127 164 289q-39 39 -76 39q-61 0 -126 -81q-12 -15 -23 -34q-7 -13 -13 -13q-2 2 -3 5q0 14 25 47q69 91 140 91
q38 0 81 -32q15 53 15 88q0 129 -99 129q-126 0 -274 -181q-67 -82 -112 -184q-50 -115 -50 -209q0 -128 99 -169zM358 41q137 22 240 139q100 113 119 254q-53 -126 -144 -230q-99 -111 -215 -163zM719 908l-82 -45q-26 -14 -30 -14q-7 0 -7 8q0 6 28 26l68 48q26 18 33 18
q16 0 16 -17q0 -10 -26 -24z" />
<glyph glyph-name="Ocircumflex" unicode="&#xd4;" horiz-adv-x="741"
d="M619 186q-149 -159 -297 -160q-84 -26 -125 -26q-92 0 -143 62q-49 58 -49 152q0 169 141 337q112 134 243 188q39 16 65 16q5 0 5 -4q-13 -7 -49 -29q-118 -71 -221 -216q-130 -183 -130 -321q0 -65 36 -116q40 -56 102 -56q27 0 78 20q-95 56 -95 181q0 93 46 202
q40 94 105 179q61 80 131 134q91 71 168 71q69 0 104 -56q29 -46 29 -120q0 -60 -26 -132q0 -63 -22 -135q-31 -102 -96 -171zM295 42q139 72 252 215q100 127 164 289q-39 39 -76 39q-61 0 -126 -81q-12 -15 -23 -34q-7 -13 -13 -13q-2 2 -3 5q0 14 25 47q69 91 140 91
q38 0 81 -32q15 53 15 88q0 129 -99 129q-126 0 -274 -181q-67 -82 -112 -184q-50 -115 -50 -209q0 -128 99 -169zM358 41q137 22 240 139q100 113 119 254q-53 -126 -144 -230q-99 -111 -215 -163zM707 939l13 -59q4 -18 4 -19q0 -13 -9 -13q-8 0 -16 18l-24 55l-82 -61
q-16 -12 -24 -12q-11 0 -11 9q0 5 25 27l76 66q14 12 25 12q18 0 23 -23z" />
<glyph glyph-name="Ograve" unicode="&#xd2;" horiz-adv-x="741"
d="M619 186q-149 -159 -297 -160q-84 -26 -125 -26q-92 0 -143 62q-49 58 -49 152q0 169 141 337q112 134 243 188q39 16 65 16q5 0 5 -4q-13 -7 -49 -29q-118 -71 -221 -216q-130 -183 -130 -321q0 -65 36 -116q40 -56 102 -56q27 0 78 20q-95 56 -95 181q0 93 46 202
q40 94 105 179q61 80 131 134q91 71 168 71q69 0 104 -56q29 -46 29 -120q0 -60 -26 -132q0 -63 -22 -135q-31 -102 -96 -171zM295 42q139 72 252 215q100 127 164 289q-39 39 -76 39q-61 0 -126 -81q-12 -15 -23 -34q-7 -13 -13 -13q-2 2 -3 5q0 14 25 47q69 91 140 91
q38 0 81 -32q15 53 15 88q0 129 -99 129q-126 0 -274 -181q-67 -82 -112 -184q-50 -115 -50 -209q0 -128 99 -169zM358 41q137 22 240 139q100 113 119 254q-53 -126 -144 -230q-99 -111 -215 -163zM717 873q13 -10 13 -16q0 -8 -10 -8q-2 1 -16 9l-93 54q-23 13 -23 23
q0 18 17 18q6 0 26 -15z" />
<glyph glyph-name="Uacute" unicode="&#xda;" horiz-adv-x="1000"
d="M1115 520q-331 -411 -331 -473q0 -23 18 -23q43 0 161 121q31 32 34 32q4 0 4 -5q0 -2 -40 -47q-36 -41 -81 -76q-62 -49 -97 -49q-21 0 -33 20q-10 17 -10 40q0 76 136 274q-118 -106 -211 -185q-175 -149 -234 -149q-25 0 -42 24q-14 20 -14 47q0 87 137 231l127 134
q111 122 111 201q0 78 -62 116q-50 30 -134 30q-34 0 -62 -6q81 -57 81 -152q0 -90 -70 -201q-67 -106 -165 -179q-105 -77 -196 -77q-69 0 -108 40t-39 109q0 73 44 157q38 73 96 133q120 123 315 176q-72 24 -125 24q-172 0 -246 -120q-10 -16 -18 -41q-5 -17 -12 -17
q-4 0 -4 5q0 28 42 84q37 49 108 77q63 24 131 24q63 0 148 -31q50 7 84 7q93 0 156 -43q73 -50 73 -139q0 -138 -224 -352q-158 -151 -158 -213q0 -12 8.5 -22t20.5 -10q75 0 373 276q81 75 251 245q20 21 41 42q28 25 50 25q27 0 27 -9q-7 -8 -61 -75zM142 179
q93 0 199 85q88 70 149 165q70 109 70 197q0 99 -86 148q-196 -43 -320 -165q-146 -143 -146 -294q0 -136 134 -136zM1123 860l-82 -45q-26 -14 -30 -14q-7 0 -7 8q0 6 28 26l68 48q26 18 33 18q16 0 16 -17q0 -10 -26 -24z" />
<glyph glyph-name="Ucircumflex" unicode="&#xdb;" horiz-adv-x="1000"
d="M1115 520q-331 -411 -331 -473q0 -23 18 -23q43 0 161 121q31 32 34 32q4 0 4 -5q0 -2 -40 -47q-36 -41 -81 -76q-62 -49 -97 -49q-21 0 -33 20q-10 17 -10 40q0 76 136 274q-118 -106 -211 -185q-175 -149 -234 -149q-25 0 -42 24q-14 20 -14 47q0 87 137 231l127 134
q111 122 111 201q0 78 -62 116q-50 30 -134 30q-34 0 -62 -6q81 -57 81 -152q0 -90 -70 -201q-67 -106 -165 -179q-105 -77 -196 -77q-69 0 -108 40t-39 109q0 73 44 157q38 73 96 133q120 123 315 176q-72 24 -125 24q-172 0 -246 -120q-10 -16 -18 -41q-5 -17 -12 -17
q-4 0 -4 5q0 28 42 84q37 49 108 77q63 24 131 24q63 0 148 -31q50 7 84 7q93 0 156 -43q73 -50 73 -139q0 -138 -224 -352q-158 -151 -158 -213q0 -12 8.5 -22t20.5 -10q75 0 373 276q81 75 251 245q20 21 41 42q28 25 50 25q27 0 27 -9q-7 -8 -61 -75zM142 179
q93 0 199 85q88 70 149 165q70 109 70 197q0 99 -86 148q-196 -43 -320 -165q-146 -143 -146 -294q0 -136 134 -136zM1083 891l13 -59q4 -18 4 -19q0 -13 -9 -13q-8 0 -16 18l-24 55l-82 -61q-16 -12 -24 -12q-11 0 -11 9q0 5 25 27l76 66q14 12 25 12q18 0 23 -23z" />
<glyph glyph-name="Ugrave" unicode="&#xd9;" horiz-adv-x="1000"
d="M1115 520q-331 -411 -331 -473q0 -23 18 -23q43 0 161 121q31 32 34 32q4 0 4 -5q0 -2 -40 -47q-36 -41 -81 -76q-62 -49 -97 -49q-21 0 -33 20q-10 17 -10 40q0 76 136 274q-118 -106 -211 -185q-175 -149 -234 -149q-25 0 -42 24q-14 20 -14 47q0 87 137 231l127 134
q111 122 111 201q0 78 -62 116q-50 30 -134 30q-34 0 -62 -6q81 -57 81 -152q0 -90 -70 -201q-67 -106 -165 -179q-105 -77 -196 -77q-69 0 -108 40t-39 109q0 73 44 157q38 73 96 133q120 123 315 176q-72 24 -125 24q-172 0 -246 -120q-10 -16 -18 -41q-5 -17 -12 -17
q-4 0 -4 5q0 28 42 84q37 49 108 77q63 24 131 24q63 0 148 -31q50 7 84 7q93 0 156 -43q73 -50 73 -139q0 -138 -224 -352q-158 -151 -158 -213q0 -12 8.5 -22t20.5 -10q75 0 373 276q81 75 251 245q20 21 41 42q28 25 50 25q27 0 27 -9q-7 -8 -61 -75zM142 179
q93 0 199 85q88 70 149 165q70 109 70 197q0 99 -86 148q-196 -43 -320 -165q-146 -143 -146 -294q0 -136 134 -136zM1093 825q13 -10 13 -16q0 -8 -10 -8q-2 1 -16 9l-93 54q-23 13 -23 23q0 18 17 18q6 0 26 -15z" />
<glyph glyph-name="ch130" horiz-adv-x="667"
d="M284 373q-73 -103 -115 -195q-8 -18 -24 -18q-13 0 -13 6q5 10 31 56q42 73 78 121q-15 -17 -56 -60q-12 -12 -21 -12q-4 0 -4 4q0 3 23 26l64 64q26 26 32 26q11 0 11 -5q0 -7 -6 -13zM511 418l-325 -445l-31 -4l326 444zM552 95q-27 -13 -80 -40t-83 -61q51 28 59 28
q7 0 20.5 -10.5t20.5 -10.5q13 0 38 37q3 3 7 3q6 0 6 -6q-1 -2 -12 -19q-27 -42 -57 -42q-6 0 -18 5q-24 16 -32 16q-5 0 -20 -9q-24 -14 -26 -15q-8 0 -8 7q0 11 34 48q7 8 113 72q51 31 51 69q0 21 -22 27v-8q0 -33 -31 -66q-24 -26 -49 -26q-28 0 -28 29q0 31 30 55
q25 20 59 28q-5 22 -28 22q-4 0 -13.5 -3t-12.5 -3q-5 0 -5 5q0 13 28 13q22 0 32 -6.5t24 -25.5q48 -12 48 -45q0 -44 -45 -68zM517 154q10 18 10 40q-23 -8 -47 -27q-28 -23 -28 -43q0 -17 17 -17q21 0 48 47z" />
<glyph glyph-name="ch131"
d="M133 72l-73 -206q-20 -56 -49 -101q-42 -65 -83 -65q-31 0 -31 37q0 32 22 32q12 0 12 -15q0 -8 -8 -15t-8 -12q0 -11 11 -11q39 0 95 159l70 197h-66l6 17h66l30 80q42 111 72 155q38 55 75 55q31 0 31 -36q0 -32 -22 -32q-12 0 -12 14q0 9 8 16.5t8 10.5q0 12 -11 12
q-41 0 -109 -195l-28 -80h73l-6 -17h-73z" />
<glyph glyph-name="ch132" horiz-adv-x="667"
d="M496 418l-329 -444l-32 -4l328 444zM458 74q-11 -13 -85 -93q-7 -8 -14 -8t-7 7q0 3 11 14q32 32 72 80q-11 0 -21 2q-4 -2 -21 -11.5t-25 -9.5q-20 0 -20 14q0 9 12 13q7 2 42 10q15 10 37 49q20 35 25.5 57.5t15.5 22.5q17 0 17 -12q0 -10 -9 -27q-8 -13 -15 -26
q-12 -25 -51 -66l23 1q59 91 114 139q16 14 24 14q6 0 6 -7q0 -4 -16 -19q-26 -23 -40 -39q-30 -33 -64 -87q34 5 66 30q9 7 13 7t4 -6q0 -2 -9 -11q-33 -33 -85 -38zM372 68q9 0 15 9q-21 0 -21 -6q0 -3 6 -3zM264 373q-73 -103 -115 -195q-8 -18 -24 -18q-13 0 -13 6
q5 10 31 56q42 73 78 121q-15 -17 -56 -60q-12 -12 -21 -12q-4 0 -4 4q0 3 23 26l64 64q26 26 32 26q11 0 11 -5q0 -7 -6 -13z" />
<glyph glyph-name="ch136" horiz-adv-x="200"
d="M191 411l13 -59q4 -18 4 -19q0 -13 -9 -13q-8 0 -16 18l-24 55l-82 -61q-16 -12 -24 -12q-11 0 -11 9q0 5 25 27l76 66q14 12 25 12q18 0 23 -23z" />
<glyph glyph-name="ch138" horiz-adv-x="741"
d="M619 161q-105 -161 -295 -161q-204 0 -246 187q-70 79 -70 167q0 160 159 254q58 34 101 34q20 0 20 -4q0 -5 -20 -9q-102 -19 -172 -95q-73 -80 -73 -181q0 -81 53 -140q3 151 104 261q113 123 250 123q143 0 143 -127q0 -49 -26 -115q57 43 139 99q28 72 46 105
q27 49 68 92q87 91 156 91q33 0 33 -27q0 -23 -49 -70q-101 -97 -190 -160q-18 -53 -55 -157q-41 -114 -76 -167zM218 164q156 0 277 136q-12 -7 -45 -28q-21 -14 -24 -14q-4 0 -4 4q0 6 15 17q20 12 76 51q45 83 45 140q0 113 -130 113q-128 0 -232.5 -112t-104.5 -240v-32
q62 -35 127 -35zM285 26q128 0 232 107q53 55 95 141q23 46 66 158q-62 -44 -142 -100q-66 -86 -127 -127q-83 -56 -184 -56q-63 0 -130 28q17 -69 68 -110t122 -41zM758 510q71 48 173 141q46 42 46 61q0 17 -20 17q-21 0 -60 -27q-33 -24 -51 -46q-45 -55 -88 -146z
M1005 882l-75 -65q-20 -17 -35 -17q-11 0 -15 6q-2 3 -5 18l-14 61q-3 13 -3 16q0 11 8 11t17 -20l23 -52l86 62q15 11 20 11q10 0 10 -9q0 -7 -17 -22z" />
<glyph glyph-name="ch145" horiz-adv-x="185"
d="M341 792q0 -5 -19 -28q-64 -76 -93 -133q19 -8 19 -23q0 -13 -12.5 -24.5t-25.5 -11.5q-20 0 -20 27q0 36 83 134q54 64 65 64q3 -2 3 -5z" />
<glyph glyph-name="ch146" horiz-adv-x="185"
d="M405 771q0 -36 -83 -134q-54 -64 -65 -64q-3 2 -3 5q0 5 19 28q64 76 93 133q-19 8 -19 23q0 13 12.5 24.5t25.5 11.5q20 0 20 -27z" />
<glyph glyph-name="ch147"
d="M370 792q0 -5 -19 -28q-64 -76 -93 -133q19 -8 19 -23q0 -13 -12.5 -24.5t-25.5 -11.5q-20 0 -20 27q0 36 83 134q54 64 65 64q3 -2 3 -5zM480 792q0 -5 -19 -28q-64 -76 -93 -133q19 -8 19 -23q0 -13 -12.5 -24.5t-25.5 -11.5q-20 0 -20 27q0 36 83 134q54 64 65 64
q3 -2 3 -5z" />
<glyph glyph-name="ch148"
d="M503 771q0 -36 -83 -134q-54 -64 -65 -64q-3 2 -3 5q0 5 19 28q64 76 93 133q-19 8 -19 23q0 13 12.5 24.5t25.5 11.5q20 0 20 -27zM393 771q0 -36 -83 -134q-54 -64 -65 -64q-3 2 -3 5q0 5 19 28q64 76 93 133q-19 8 -19 23q0 13 12.5 24.5t25.5 11.5q20 0 20 -27z" />
<glyph glyph-name="ch151" horiz-adv-x="667"
d="M620 165l-18 -32h-536l18 32h536z" />
<glyph glyph-name="ch152" horiz-adv-x="200"
d="M246 362q0 -17 -20 -30t-38 -13q-16 0 -49 11q-39 13 -52 13q-17 0 -37 -20q-5 -5 -8 -5q-7 0 -7 9q0 19 20 32.5t40 13.5q19 0 55 -12.5t46 -12.5q15 0 30 15q9 9 12 9q8 0 8 -10z" />
<glyph glyph-name="ch154"
d="M242 117q-71 -54 -104 -73q-75 -44 -139 -44q-75 -1 -75 43q0 19 12 33.5t30 14.5q23 0 23 -16q0 -17 -30 -19q-20 -1 -20 -17q0 -10 9 -17.5t20 -7.5q52 0 103 74q48 69 48 124q0 33 -18 58q-24 -26 -74 -76q-28 -28 -31 -29q-4 0 -4 5q2 4 11 14q44 45 94 102
q4 49 28 49q14 0 14 -17q0 -16 -21 -40q39 -61 39 -95q0 -101 -140 -170q50 0 136 55q54 35 95 70l51 44q5 0 5 -4q0 -14 -62 -61zM255 437l-75 -65q-20 -17 -35 -17q-11 0 -15 6q-2 3 -5 18l-14 61q-3 13 -3 16q0 11 8 11t17 -20l23 -52l86 62q15 11 20 11q10 0 10 -9
q0 -7 -17 -22z" />
<glyph glyph-name="ch159" horiz-adv-x="1000"
d="M996 409l-177 -287q-89 -141 -168 -228q-168 -184 -288 -184q-33 0 -56.5 18t-23.5 50q0 26 14.5 46t39.5 20q28 0 28 -23q0 -26 -33 -29q-21 -2 -26 -5q-8 -3 -8 -16q0 -21 19 -34.5t41 -13.5q175 0 484 574q-112 -122 -160 -169q-132 -128 -184 -128q-46 0 -46 61
q0 51 40 121q28 48 104 150q56 75 78 112q41 72 41 128q0 59 -37 97t-97 49q29 -49 29 -101q0 -139 -172 -322q-150 -160 -285 -160q-60 0 -94.5 37.5t-34.5 97.5q0 20 3 51q-23 45 -23 95q0 69 34 140q34 68 88.5 117t134 80t152.5 31q51 0 80.5 -9t69.5 -38
q87 -10 136 -58q53 -51 53 -136q0 -102 -87 -229q-40 -55 -120 -164q-56 -77 -56 -116q0 -17 19 -17q40 0 157 115q142 139 286 318q52 65 64 75q19 16 48 16q7 0 7 -5q0 -8 -74 -127zM233 635q130 101 303 104q-58 32 -113 32q-70 0 -145 -27q-78 -27 -128 -72
q-130 -116 -130 -255q0 -35 12 -74q44 170 201 292zM153 150q96 0 212 94q95 78 159 177q74 115 74 202q0 56 -45 101q-182 0 -326 -112.5t-184 -288.5q13 -22 38 -39q10 -7 10 -12q0 -3 -6 -3q-15 0 -46 34q-2 -24 -2 -31q0 -53 31.5 -87.5t84.5 -34.5zM961 846
q0 -17 -13 -30.5t-30 -13.5q-21 0 -21 24q0 15 12.5 27t27.5 12q24 0 24 -19zM1082 844q0 -17 -13 -30t-30 -13q-22 0 -22 24q0 15 13 27t28 12q24 0 24 -20z" />
<glyph glyph-name="ch256" unicode="&#x251;" horiz-adv-x="519"
d="M324 185q0 -27 -18 -45.5t-45 -18.5t-45 18.5t-18 45.5q0 26 18.5 45t44.5 19t44.5 -19t18.5 -45z" />
<glyph glyph-name="ch257" unicode="&#x253;" horiz-adv-x="667"
d="M536 418l-327 -445l-32 -3l327 444zM501 74q-11 -13 -85 -93q-7 -8 -14 -8t-7 7q0 3 11 14q32 32 72 80q-11 0 -21 2q-4 -2 -21 -11.5t-25 -9.5q-20 0 -20 14q0 9 12 13q7 2 42 10q15 10 37 49q20 35 25.5 57.5t15.5 22.5q17 0 17 -12q0 -10 -9 -27q-8 -13 -15 -26
q-12 -25 -51 -66l23 1q59 91 114 139q16 14 24 14q6 0 6 -7q0 -4 -16 -19q-26 -23 -40 -39q-30 -33 -64 -87q34 5 66 30q9 7 13 7t4 -6q0 -2 -9 -11q-33 -33 -85 -38zM415 68q9 0 15 9q-21 0 -21 -6q0 -3 6 -3zM262 250q0 -35 -38.5 -64t-74.5 -29q-21 0 -39 11
q-21 12 -21 32q0 26 24.5 46t51.5 20q32 0 32 -28q0 -18 -16.5 -29t-35.5 -11q-6 0 -6 3l4 4q35 19 35 38q0 13 -16 13q-19 0 -36.5 -18t-17.5 -37q0 -12 9.5 -21.5t21.5 -9.5q32 0 72 44q21 23 21 46q0 3 -2 13q-49 0 -49 15q0 13 24 13q16 0 38 -12q49 39 49 68q0 6 -5 12
q-28 -46 -57 -46q-25 0 -25 19q0 33 65 47q0 20 -23 20q-4 0 -11 -1t-10 -1q-5 0 -5 4q0 10 30 10q31 0 41 -34q25 -7 25 -30q0 -53 -63 -79q8 -15 8 -28zM212 283q4 0 10 3q-7 4 -13 4t-6 -3q2 -4 9 -4zM233 337q30 0 36 39q-11 0 -28 -10t-17 -20q0 -9 9 -9z" />
<glyph glyph-name="ch258" unicode="&#x256;" horiz-adv-x="241"
d="M63 141l36 -126h-31l-39 129l88 101h37z" />
<glyph glyph-name="ch259" unicode="&#x257;" horiz-adv-x="241"
d="M109 119l-97 -104h-41l105 113l-33 117h30z" />
<glyph glyph-name="glyph210" unicode="&#x2de;" horiz-adv-x="500"
/>
<glyph glyph-name="ch261" unicode="&#x2df;" horiz-adv-x="333"
/>
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 120 KiB

View File

@ -0,0 +1,93 @@
Copyright 2024 The Montserrat.Git Project Authors (https://github.com/JulietaUla/Montserrat.git)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.

View File

@ -0,0 +1,81 @@
Montserrat Variable Font
========================
This download contains Montserrat as both variable fonts and static fonts.
Montserrat is a variable font with this axis:
wght
This means all the styles are contained in these files:
Montserrat/Montserrat-VariableFont_wght.ttf
Montserrat/Montserrat-Italic-VariableFont_wght.ttf
If your app fully supports variable fonts, you can now pick intermediate styles
that arent available as static fonts. Not all apps support variable fonts, and
in those cases you can use the static font files for Montserrat:
Montserrat/static/Montserrat-Thin.ttf
Montserrat/static/Montserrat-ExtraLight.ttf
Montserrat/static/Montserrat-Light.ttf
Montserrat/static/Montserrat-Regular.ttf
Montserrat/static/Montserrat-Medium.ttf
Montserrat/static/Montserrat-SemiBold.ttf
Montserrat/static/Montserrat-Bold.ttf
Montserrat/static/Montserrat-ExtraBold.ttf
Montserrat/static/Montserrat-Black.ttf
Montserrat/static/Montserrat-ThinItalic.ttf
Montserrat/static/Montserrat-ExtraLightItalic.ttf
Montserrat/static/Montserrat-LightItalic.ttf
Montserrat/static/Montserrat-Italic.ttf
Montserrat/static/Montserrat-MediumItalic.ttf
Montserrat/static/Montserrat-SemiBoldItalic.ttf
Montserrat/static/Montserrat-BoldItalic.ttf
Montserrat/static/Montserrat-ExtraBoldItalic.ttf
Montserrat/static/Montserrat-BlackItalic.ttf
Get started
-----------
1. Install the font files you want to use
2. Use your app's font picker to view the font family and all the
available styles
Learn more about variable fonts
-------------------------------
https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
https://variablefonts.typenetwork.com
https://medium.com/variable-fonts
In desktop apps
https://theblog.adobe.com/can-variable-fonts-illustrator-cc
https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
Online
https://developers.google.com/fonts/docs/getting_started
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
Installing fonts
MacOS: https://support.apple.com/en-us/HT201749
Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
Android Apps
https://developers.google.com/fonts/docs/android
https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
License
-------
Please read the full license text (OFL.txt) to understand the permissions,
restrictions and requirements for usage, redistribution, and modification.
You can use them in your products & projects print or digital,
commercial or otherwise.
This isn't legal advice, please consider consulting a lawyer and see the full
license for all details.

View File

@ -0,0 +1,123 @@
<template>
<div class="group/design-root relative flex size-full min-h-screen flex-col overflow-x-hidden">
<div class="layout-container flex h-full grow flex-col">
<header class="bg-light-ivory/80 sticky top-0 z-50 flex items-center justify-between px-10 py-4 whitespace-nowrap backdrop-blur-sm">
<div class="text-midnight-blue flex items-center gap-3">
<svg class="text-subtle-gold h-6 w-6" fill="none" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6_535)">
<path
clip-rule="evenodd"
d="M47.2426 24L24 47.2426L0.757355 24L24 0.757355L47.2426 24ZM12.2426 21H35.7574L24 9.24264L12.2426 21Z"
fill="currentColor"
fill-rule="evenodd"
></path>
</g>
<defs>
<clipPath id="clip0_6_535">
<rect fill="white" height="48" width="48"></rect>
</clipPath>
</defs>
</svg>
<h2 class="text-2xl font-bold tracking-wide">Kris Saint Ange</h2>
</div>
<nav class="flex flex-1 items-center justify-center gap-10">
<a class="text-midnight-blue hover:text-subtle-gold text-sm font-medium transition-colors duration-300" href="#">Accueil</a>
<a class="text-midnight-blue hover:text-subtle-gold text-sm font-medium transition-colors duration-300" href="#">L'Oracle</a>
<a class="text-midnight-blue hover:text-subtle-gold text-sm font-medium transition-colors duration-300" href="#">Lectures</a>
<a class="text-midnight-blue hover:text-subtle-gold text-sm font-medium transition-colors duration-300" href="#">Témoignages</a>
<a class="text-midnight-blue hover:text-subtle-gold text-sm font-medium transition-colors duration-300" href="#">Contact</a>
</nav>
<div class="flex items-center gap-4">
<button
class="bg-midnight-blue text-pure-white hover:bg-spiritual-earth flex h-10 max-w-[480px] min-w-[100px] cursor-pointer items-center justify-center overflow-hidden rounded-full px-6 text-sm font-bold tracking-wide transition-all duration-300"
>
<span class="truncate">Commencer</span>
</button>
</div>
</header>
<main class="flex flex-col items-center">
<slot />
</main>
<footer class="bg-pure-white text-midnight-blue/80 py-12">
<div class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
<div class="flex flex-col items-center gap-8">
<div class="flex flex-wrap justify-center gap-x-8 gap-y-4">
<a class="hover:text-subtle-gold transition-colors" href="#">Accueil</a>
<a class="hover:text-subtle-gold transition-colors" href="#">L'Oracle</a>
<a class="hover:text-subtle-gold transition-colors" href="#">Lectures</a>
<a class="hover:text-subtle-gold transition-colors" href="#">Témoignages</a>
<a class="hover:text-subtle-gold transition-colors" href="#">Contact</a>
<a class="hover:text-subtle-gold transition-colors" href="#">Politique de Confidentialité</a>
<a class="hover:text-subtle-gold transition-colors" href="#">Conditions d'Utilisation</a>
</div>
<div class="flex justify-center gap-6">
<a class="text-midnight-blue/60 hover:text-spiritual-earth transition-colors" href="#">
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 256 256">
<path
d="M128,80a48,48,0,1,0,48,48A48.05,48.05,0,0,0,128,80Zm0,80a32,32,0,1,1,32-32A32,32,0,0,1,128,160ZM176,24H80A56.06,56.06,0,0,0,24,80v96a56.06,56.06,0,0,0,56,56h96a56.06,56.06,0,0,0,56-56V80A56.06,56.06,0,0,0,176,24Zm40,152a40,40,0,0,1-40,40H80a40,40,0,0,1-40-40V80A40,40,0,0,1,80,40h96a40,40,0,0,1,40,40ZM192,76a12,12,0,1,1-12-12A12,12,0,0,1,192,76Z"
></path>
</svg>
</a>
<a class="text-midnight-blue/60 hover:text-spiritual-earth transition-colors" href="#">
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 256 256">
<path
d="M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm8,191.63V152h24a8,8,0,0,0,0-16H136V112a16,16,0,0,1,16-16h16a8,8,0,0,0,0-16H152a32,32,0,0,0-32,32v24H96a8,8,0,0,0,0,16h24v63.63a88,88,0,1,1,16,0Z"
></path>
</svg>
</a>
<a class="text-midnight-blue/60 hover:text-spiritual-earth transition-colors" href="#">
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 256 256">
<path
d="M247.39,68.94A8,8,0,0,0,240,64H209.57A48.66,48.66,0,0,0,168.1,40a46.91,46.91,0,0,0-33.75,13.7A47.9,47.9,0,0,0,120,88v6.09C79.74,83.47,46.81,50.72,46.46,50.37a8,8,0,0,0-13.65,4.92c-4.31,47.79,9.57,79.77,22,98.18a110.93,110.93,0,0,0,21.88,24.2c-15.23,17.53-39.21,26.74-39.47,26.84a8,8,0,0,0-3.85,11.93c.75,1.12,3.75,5.05,11.08,8.72C53.51,229.7,65.48,232,80,232c70.67,0,129.72-54.42,135.75-124.44l29.91-29.9A8,8,0,0,0,247.39,68.94Zm-45,29.41a8,8,0,0,0-2.32,5.14C196,166.58,143.28,216,80,216c-10.56,0-18-1.4-23.22-3.08,11.51-6.25,27.56-17,37.88-32.48A8,8,0,0,0,92,169.08c-.47-.27-43.91-26.34-44-96,16,13,45.25,33.17,78.67,38.79A8,8,0,0,0,136,104V88a32,32,0,0,1,9.6-22.92A30.94,30.94,0,0,1,167.9,56c12.66.16,24.49,7.88,29.44,19.21A8,8,0,0,0,204.67,80h16Z"
></path>
</svg>
</a>
</div>
<p class="text-sm">© 2024 Kris Saint Ange. Tous droits réservés.</p>
</div>
</div>
</footer>
</div>
</div>
</template>
<style scoped>
/* Utility classes for colors */
.text-midnight-blue {
color: var(--midnight-blue);
}
.bg-midnight-blue {
background-color: var(--midnight-blue);
}
.text-spiritual-earth {
color: var(--spiritual-earth);
}
.bg-spiritual-earth {
background-color: var(--spiritual-earth);
}
.text-subtle-gold {
color: var(--subtle-gold);
}
.bg-subtle-gold {
background-color: var(--subtle-gold);
}
.text-linen {
color: var(--linen);
}
.bg-linen {
background-color: var(--linen);
}
.text-pure-white {
color: var(--pure-white);
}
.bg-pure-white {
background-color: var(--pure-white);
}
.text-light-ivory {
color: var(--light-ivory);
}
.bg-light-ivory {
background-color: var(--light-ivory);
}
</style>

View File

@ -0,0 +1,27 @@
<template>
<LandingLayout>
<div class="relative flex size-full min-h-screen flex-col overflow-x-hidden">
<!-- Hero -->
<main class="flex flex-col items-center">
<div class="w-full max-w-7xl px-4 sm:px-6 lg:px-8">
<HeroSection />
<ManuscritSection />
<OfferSection />
<HowSection />
<TestimonialsSection />
<CallBookingSection />
</div>
</main>
</div>
</LandingLayout>
</template>
<script setup lang="ts">
import CallBookingSection from '@/components/landing/CallBookingSection.vue';
import HeroSection from '@/components/landing/HeroSection.vue';
import HowSection from '@/components/landing/HowSection.vue';
import ManuscritSection from '@/components/landing/ManuscritSection.vue';
import OfferSection from '@/components/landing/OfferSection.vue';
import TestimonialsSection from '@/components/landing/TestimonialsSection.vue';
import LandingLayout from '@/layouts/app/LandingLayout.vue';
</script>

View File

@ -36,8 +36,9 @@
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Citadel+Script&display=swap" rel="stylesheet" />
@vite(['resources/js/app.ts', "resources/js/pages/{$page['component']}.vue"])
@inertiaHead

View File

@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
Route::get('/', function () {
return Inertia::render('Welcome');
return Inertia::render('Landing');
})->name('home');
Route::get('dashboard', function () {