release: v1.8.3 - add static_ip parameter

This commit is contained in:
violettools
2026-01-22 01:42:42 +08:00
parent 1ffaf83adb
commit 5dfab7f1a3
13 changed files with 4592 additions and 2 deletions

View File

@@ -0,0 +1,199 @@
/* ========== 链接样式增强 - 提高可见性 ========== */
/* 内容区域所有链接 */
.content-section a {
color: var(--neon-cyan) !important;
text-decoration: none !important;
border-bottom: 2px solid rgba(0, 245, 255, 0.6) !important;
transition: all 0.3s ease;
font-weight: 600;
padding-bottom: 2px;
}
.content-section a:hover {
color: var(--neon-yellow) !important;
border-bottom-color: var(--neon-yellow) !important;
border-bottom-width: 3px !important;
text-shadow: 0 0 12px rgba(247, 247, 28, 0.8);
}
.content-section a:visited {
color: var(--neon-purple) !important;
border-bottom-color: rgba(189, 147, 249, 0.6) !important;
}
.content-section a:visited:hover {
color: var(--neon-yellow) !important;
border-bottom-color: var(--neon-yellow) !important;
}
/* 列表中的链接 */
.content-section li a {
color: var(--neon-cyan) !important;
text-decoration: none !important;
border-bottom: 2px solid rgba(0, 245, 255, 0.6) !important;
font-weight: 600;
padding-bottom: 2px;
}
.content-section li a:hover {
color: var(--neon-yellow) !important;
border-bottom-color: var(--neon-yellow) !important;
text-shadow: 0 0 12px rgba(247, 247, 28, 0.8);
}
/* 表格中的链接 */
.params-table a {
color: var(--neon-cyan) !important;
text-decoration: none !important;
border-bottom: 2px solid rgba(0, 245, 255, 0.7) !important;
font-weight: 600;
padding-bottom: 2px;
}
.params-table a:hover {
color: var(--neon-yellow) !important;
border-bottom-color: var(--neon-yellow) !important;
text-shadow: 0 0 12px rgba(247, 247, 28, 0.8);
}
/* 返回类型框中的链接 */
.return-type a {
color: var(--neon-cyan) !important;
text-decoration: none !important;
border-bottom: 2px solid rgba(0, 245, 255, 0.7) !important;
font-weight: 600;
padding-bottom: 2px;
}
.return-type a:hover {
color: var(--neon-yellow) !important;
border-bottom-color: var(--neon-yellow) !important;
text-shadow: 0 0 12px rgba(247, 247, 28, 0.8);
}
/* 警告框中的链接 */
.alert a {
color: var(--neon-yellow) !important;
text-decoration: none !important;
border-bottom: 2px solid rgba(247, 247, 28, 0.7) !important;
font-weight: 700;
padding-bottom: 2px;
}
.alert a:hover {
color: #fff !important;
border-bottom-color: #fff !important;
text-shadow: 0 0 15px rgba(255, 255, 255, 1);
}
/* 功能卡片 */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin: 30px 0;
}
.feature-card {
background: var(--card-bg);
border: 1px solid rgba(0, 245, 255, 0.2);
border-radius: 12px;
padding: 25px;
transition: all 0.3s ease;
}
.feature-card:hover {
border-color: rgba(0, 245, 255, 0.4);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}
.feature-card h3 {
color: var(--neon-cyan);
margin-bottom: 12px;
font-size: 20px;
}
.feature-card p {
color: rgba(255, 255, 255, 0.7);
line-height: 1.7;
margin-bottom: 15px;
}
.feature-card a {
color: var(--neon-cyan) !important;
text-decoration: none !important;
border-bottom: 2px solid rgba(0, 245, 255, 0.7) !important;
font-weight: 700;
padding-bottom: 2px;
display: inline-block;
transition: all 0.3s ease;
}
.feature-card a:hover {
color: var(--neon-yellow) !important;
border-bottom-color: var(--neon-yellow) !important;
text-shadow: 0 0 12px rgba(247, 247, 28, 0.8);
transform: translateX(5px);
}
/* 按钮样式 */
.btn {
display: inline-block;
padding: 12px 24px;
border-radius: 8px;
text-decoration: none !important;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid;
}
.btn-primary {
background: linear-gradient(135deg, var(--neon-cyan), #0099ff);
color: #000;
border-color: var(--neon-cyan);
box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}
.btn-secondary {
background: transparent;
color: var(--neon-cyan);
border-color: var(--neon-cyan);
}
.btn-secondary:hover {
background: rgba(0, 245, 255, 0.1);
color: var(--neon-yellow);
border-color: var(--neon-yellow);
transform: translateY(-2px);
}
/* 返回主站链接样式 */
.home-link {
display: block !important;
margin-top: 15px;
padding: 8px 15px;
background: rgba(0, 245, 255, 0.1) !important;
border: 1px solid var(--neon-cyan) !important;
border-radius: 6px;
text-align: center;
color: var(--neon-cyan) !important;
text-decoration: none !important;
transition: all 0.3s ease;
font-size: 14px;
}
.home-link:hover {
background: rgba(0, 245, 255, 0.2) !important;
border-color: var(--neon-yellow) !important;
color: var(--neon-yellow) !important;
transform: translateY(-2px);
box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

521
api-docs/css/style.css Normal file
View File

@@ -0,0 +1,521 @@
/* CFspider API 文档样式 */
:root {
--neon-cyan: #00f5ff;
--neon-magenta: #ff2d95;
--neon-yellow: #f7f71c;
--neon-green: #50fa7b;
--neon-purple: #bd93f9;
--dark-bg: #0a0a0f;
--card-bg: rgba(20, 20, 30, 0.8);
--code-bg: #1a1a2e;
--sidebar-width: 280px;
--header-height: 60px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Noto Sans SC', 'JetBrains Mono', 'Consolas', monospace, sans-serif;
background: var(--dark-bg);
color: #fff;
min-height: 100vh;
overflow-x: hidden;
}
/* 背景效果 */
.bg-animation {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background:
radial-gradient(ellipse at 20% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
radial-gradient(ellipse at 80% 20%, rgba(255, 45, 149, 0.1) 0%, transparent 50%);
}
.grid-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background-image:
linear-gradient(rgba(0, 245, 255, 0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 245, 255, 0.02) 1px, transparent 1px);
background-size: 60px 60px;
}
/* 顶部导航栏 */
.top-header {
position: fixed;
top: 0;
left: var(--sidebar-width);
right: 0;
height: var(--header-height);
background: rgba(20, 20, 30, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 245, 255, 0.2);
display: flex;
align-items: center;
padding: 0 30px;
z-index: 100;
}
.top-header h1 {
font-size: 20px;
font-weight: 600;
background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* 左侧导航栏 */
.sidebar {
position: fixed;
top: 0;
left: 0;
width: var(--sidebar-width);
height: 100vh;
background: rgba(15, 15, 25, 0.95);
backdrop-filter: blur(10px);
border-right: 1px solid rgba(0, 245, 255, 0.2);
overflow-y: auto;
z-index: 200;
padding: 20px 0;
}
.sidebar::-webkit-scrollbar {
width: 6px;
}
.sidebar::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.3);
}
.sidebar::-webkit-scrollbar-thumb {
background: rgba(0, 245, 255, 0.3);
border-radius: 3px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
background: rgba(0, 245, 255, 0.5);
}
.sidebar-header {
padding: 20px;
border-bottom: 1px solid rgba(0, 245, 255, 0.2);
margin-bottom: 20px;
}
.sidebar-header h2 {
font-size: 24px;
font-weight: 700;
background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 5px;
}
.sidebar-header .version {
font-size: 12px;
color: rgba(255, 255, 255, 0.5);
}
.nav-section {
margin-bottom: 30px;
}
.nav-section-title {
padding: 10px 20px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--neon-cyan);
opacity: 0.7;
}
.nav-item {
display: block;
padding: 12px 20px;
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
transition: all 0.3s ease;
border-left: 3px solid transparent;
font-size: 14px;
font-weight: 500;
}
.nav-item:hover {
background: rgba(0, 245, 255, 0.15);
color: var(--neon-cyan);
border-left-color: var(--neon-cyan);
text-shadow: 0 0 8px rgba(0, 245, 255, 0.5);
}
.nav-item.active {
background: rgba(0, 245, 255, 0.2);
color: var(--neon-cyan);
border-left-color: var(--neon-cyan);
font-weight: 600;
text-shadow: 0 0 10px rgba(0, 245, 255, 0.6);
}
.nav-item.sub-item {
padding-left: 40px;
font-size: 13px;
color: rgba(255, 255, 255, 0.8);
}
.nav-item.sub-item:hover {
color: var(--neon-cyan);
}
/* 主内容区 */
.main-content {
margin-left: var(--sidebar-width);
margin-top: var(--header-height);
padding: 40px;
max-width: 1200px;
}
/* 内容卡片 */
.content-section {
background: var(--card-bg);
border: 1px solid rgba(0, 245, 255, 0.2);
border-radius: 12px;
padding: 30px;
margin-bottom: 30px;
backdrop-filter: blur(10px);
}
.content-section h2 {
font-size: 28px;
font-weight: 700;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid rgba(0, 245, 255, 0.3);
background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.content-section h3 {
font-size: 22px;
font-weight: 600;
margin-top: 30px;
margin-bottom: 15px;
color: var(--neon-cyan);
}
.content-section h4 {
font-size: 18px;
font-weight: 600;
margin-top: 25px;
margin-bottom: 12px;
color: var(--neon-purple);
}
.content-section p {
line-height: 1.8;
margin-bottom: 15px;
color: rgba(255, 255, 255, 0.8);
}
/* 内容区域链接样式 */
.content-section a {
color: var(--neon-cyan);
text-decoration: none;
border-bottom: 1px solid rgba(0, 245, 255, 0.3);
transition: all 0.3s ease;
font-weight: 500;
}
.content-section a:hover {
color: var(--neon-yellow);
border-bottom-color: var(--neon-yellow);
text-shadow: 0 0 8px rgba(247, 247, 28, 0.5);
}
.content-section a:visited {
color: var(--neon-purple);
border-bottom-color: rgba(189, 147, 249, 0.3);
}
.content-section a:visited:hover {
color: var(--neon-yellow);
border-bottom-color: var(--neon-yellow);
}
.content-section ul,
.content-section ol {
margin-left: 25px;
margin-bottom: 15px;
line-height: 1.8;
}
.content-section li {
margin-bottom: 8px;
color: rgba(255, 255, 255, 0.8);
}
.content-section li a {
color: var(--neon-cyan);
text-decoration: none;
border-bottom: 1px solid rgba(0, 245, 255, 0.3);
transition: all 0.3s ease;
font-weight: 500;
}
.content-section li a:hover {
color: var(--neon-yellow);
border-bottom-color: var(--neon-yellow);
text-shadow: 0 0 8px rgba(247, 247, 28, 0.5);
}
/* 代码块 */
.code-block {
background: var(--code-bg);
border: 1px solid rgba(0, 245, 255, 0.2);
border-radius: 8px;
padding: 20px;
margin: 20px 0;
overflow-x: auto;
position: relative;
}
.code-block pre {
margin: 0;
font-family: 'JetBrains Mono', 'Consolas', monospace;
font-size: 14px;
line-height: 1.6;
color: #e0e0e0;
}
.code-block code {
font-family: 'JetBrains Mono', 'Consolas', monospace;
}
.code-block .language {
position: absolute;
top: 10px;
right: 15px;
font-size: 11px;
color: rgba(255, 255, 255, 0.4);
text-transform: uppercase;
}
/* 参数表格 */
.params-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: rgba(0, 0, 0, 0.3);
border-radius: 8px;
overflow: hidden;
}
.params-table th {
background: rgba(0, 245, 255, 0.2);
padding: 12px 15px;
text-align: left;
font-weight: 600;
color: var(--neon-cyan);
border-bottom: 2px solid rgba(0, 245, 255, 0.3);
}
.params-table td {
padding: 12px 15px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.8);
}
.params-table tr:last-child td {
border-bottom: none;
}
.params-table .param-name {
font-family: 'JetBrains Mono', monospace;
color: var(--neon-yellow);
font-weight: 600;
}
.params-table a {
color: var(--neon-cyan);
text-decoration: none;
border-bottom: 1px solid rgba(0, 245, 255, 0.4);
font-weight: 500;
}
.params-table a:hover {
color: var(--neon-yellow);
border-bottom-color: var(--neon-yellow);
text-shadow: 0 0 8px rgba(247, 247, 28, 0.5);
}
.params-table .param-type {
font-family: 'JetBrains Mono', monospace;
color: var(--neon-green);
}
.params-table .param-default {
font-family: 'JetBrains Mono', monospace;
color: rgba(255, 255, 255, 0.5);
font-style: italic;
}
/* 标签 */
.badge {
display: inline-block;
padding: 4px 10px;
border-radius: 4px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
margin-left: 8px;
}
.badge.required {
background: rgba(255, 45, 149, 0.3);
color: var(--neon-magenta);
border: 1px solid var(--neon-magenta);
}
.badge.optional {
background: rgba(0, 245, 255, 0.3);
color: var(--neon-cyan);
border: 1px solid var(--neon-cyan);
}
.badge.new {
background: rgba(80, 250, 123, 0.3);
color: var(--neon-green);
border: 1px solid var(--neon-green);
}
/* 警告框 */
.alert {
padding: 15px 20px;
border-radius: 8px;
margin: 20px 0;
border-left: 4px solid;
}
.alert.info {
background: rgba(0, 245, 255, 0.1);
border-color: var(--neon-cyan);
color: var(--neon-cyan);
}
.alert.warning {
background: rgba(247, 247, 28, 0.1);
border-color: var(--neon-yellow);
color: var(--neon-yellow);
}
.alert.error {
background: rgba(255, 45, 149, 0.1);
border-color: var(--neon-magenta);
color: var(--neon-magenta);
}
.alert.success {
background: rgba(80, 250, 123, 0.1);
border-color: var(--neon-green);
color: var(--neon-green);
}
/* 返回类型 */
.return-type {
background: rgba(189, 147, 249, 0.2);
border: 1px solid var(--neon-purple);
border-radius: 8px;
padding: 15px;
margin: 20px 0;
}
.return-type h4 {
color: var(--neon-purple);
margin-top: 0;
margin-bottom: 10px;
}
.return-type a {
color: var(--neon-cyan);
text-decoration: none;
border-bottom: 1px solid rgba(0, 245, 255, 0.4);
font-weight: 500;
}
.return-type a:hover {
color: var(--neon-yellow);
border-bottom-color: var(--neon-yellow);
text-shadow: 0 0 8px rgba(247, 247, 28, 0.5);
}
/* 示例代码 */
.example-section {
margin: 30px 0;
}
.example-section h4 {
margin-bottom: 15px;
}
/* 响应式设计 */
@media (max-width: 768px) {
.sidebar {
transform: translateX(-100%);
transition: transform 0.3s ease;
}
.sidebar.open {
transform: translateX(0);
}
.main-content {
margin-left: 0;
padding: 20px;
}
.top-header {
left: 0;
}
}
/* 滚动条样式 */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
background: rgba(0, 245, 255, 0.3);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(0, 245, 255, 0.5);
}

56
api-docs/js/main.js Normal file
View File

@@ -0,0 +1,56 @@
// API 文档主 JavaScript 文件
// 导航高亮
document.addEventListener('DOMContentLoaded', function() {
// 根据当前页面高亮导航项
const currentPage = window.location.pathname.split('/').pop() || 'index.html';
const navItems = document.querySelectorAll('.nav-item');
navItems.forEach(item => {
const href = item.getAttribute('href');
if (href === currentPage || (currentPage === 'index.html' && href === 'index.html')) {
item.classList.add('active');
} else {
item.classList.remove('active');
}
});
// 平滑滚动
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// 代码块复制功能
document.querySelectorAll('.code-block').forEach(block => {
const pre = block.querySelector('pre');
if (pre) {
const copyBtn = document.createElement('button');
copyBtn.className = 'copy-btn';
copyBtn.textContent = '复制';
copyBtn.style.cssText = 'position: absolute; top: 10px; right: 15px; background: rgba(0, 245, 255, 0.2); border: 1px solid var(--neon-cyan); color: var(--neon-cyan); padding: 6px 12px; border-radius: 4px; cursor: pointer; font-size: 12px;';
block.style.position = 'relative';
block.appendChild(copyBtn);
copyBtn.addEventListener('click', function() {
const text = pre.textContent;
navigator.clipboard.writeText(text).then(() => {
copyBtn.textContent = '已复制!';
setTimeout(() => {
copyBtn.textContent = '复制';
}, 2000);
});
});
}
});
});

View File

@@ -210,7 +210,7 @@ class PlaywrightNotInstalledError(CFSpiderError):
pass
__version__ = "1.8.2"
__version__ = "1.8.3"
__all__ = [
# 同步 API (requests)
"get", "post", "put", "delete", "head", "options", "patch", "request",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 MiB

After

Width:  |  Height:  |  Size: 132 B

View File

@@ -0,0 +1,492 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920" height="1080" viewBox="0 0 1920 1080">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 1.632812 -2.800781 L 0.667969 -2.800781 L 0.667969 -3.269531 L 2.207031 -3.269531 L 2.207031 -0.472656 L 3.179688 -0.472656 L 3.179688 0 L 0.558594 0 L 0.558594 -0.472656 L 1.632812 -0.472656 L 1.632812 -2.800781 M 1.832031 -4.640625 C 1.894531 -4.640625 1.953125 -4.628906 2.007812 -4.605469 C 2.0625 -4.582031 2.109375 -4.550781 2.148438 -4.507812 C 2.191406 -4.46875 2.222656 -4.421875 2.246094 -4.367188 C 2.265625 -4.3125 2.277344 -4.253906 2.277344 -4.191406 C 2.277344 -4.132812 2.265625 -4.074219 2.246094 -4.019531 C 2.222656 -3.964844 2.191406 -3.917969 2.148438 -3.875 C 2.109375 -3.835938 2.0625 -3.804688 2.007812 -3.78125 C 1.953125 -3.757812 1.894531 -3.746094 1.832031 -3.746094 C 1.769531 -3.746094 1.710938 -3.757812 1.65625 -3.78125 C 1.601562 -3.804688 1.554688 -3.835938 1.515625 -3.875 C 1.476562 -3.917969 1.445312 -3.964844 1.421875 -4.019531 C 1.398438 -4.074219 1.386719 -4.132812 1.386719 -4.191406 C 1.386719 -4.253906 1.398438 -4.3125 1.421875 -4.367188 C 1.445312 -4.421875 1.476562 -4.46875 1.515625 -4.507812 C 1.554688 -4.550781 1.601562 -4.582031 1.65625 -4.605469 C 1.710938 -4.628906 1.769531 -4.640625 1.832031 -4.640625 Z "/>
</g>
<g id="glyph-0-1">
<path d="M 2.851562 0 L 2.851562 -2.347656 C 2.851562 -2.449219 2.847656 -2.53125 2.839844 -2.597656 C 2.832031 -2.664062 2.820312 -2.714844 2.804688 -2.753906 C 2.789062 -2.789062 2.765625 -2.816406 2.742188 -2.832031 C 2.71875 -2.847656 2.6875 -2.855469 2.648438 -2.855469 C 2.605469 -2.855469 2.566406 -2.839844 2.527344 -2.816406 C 2.492188 -2.789062 2.453125 -2.746094 2.410156 -2.6875 C 2.367188 -2.628906 2.320312 -2.550781 2.269531 -2.457031 C 2.21875 -2.359375 2.160156 -2.242188 2.089844 -2.101562 L 2.089844 0 L 1.570312 0 L 1.570312 -2.285156 C 1.570312 -2.40625 1.570312 -2.5 1.5625 -2.574219 C 1.554688 -2.648438 1.542969 -2.707031 1.523438 -2.746094 C 1.507812 -2.789062 1.488281 -2.816406 1.460938 -2.832031 C 1.433594 -2.847656 1.402344 -2.855469 1.367188 -2.855469 C 1.328125 -2.855469 1.292969 -2.84375 1.257812 -2.820312 C 1.222656 -2.800781 1.183594 -2.761719 1.140625 -2.703125 C 1.097656 -2.648438 1.050781 -2.570312 1 -2.472656 C 0.945312 -2.375 0.886719 -2.25 0.8125 -2.101562 L 0.8125 0 L 0.292969 0 L 0.292969 -3.269531 L 0.726562 -3.269531 L 0.75 -2.644531 C 0.808594 -2.769531 0.863281 -2.875 0.917969 -2.960938 C 0.96875 -3.050781 1.023438 -3.117188 1.082031 -3.171875 C 1.136719 -3.226562 1.199219 -3.265625 1.261719 -3.289062 C 1.324219 -3.3125 1.394531 -3.328125 1.472656 -3.328125 C 1.648438 -3.328125 1.785156 -3.269531 1.875 -3.152344 C 1.964844 -3.039062 2.011719 -2.859375 2.011719 -2.621094 C 2.0625 -2.734375 2.113281 -2.832031 2.164062 -2.921875 C 2.214844 -3.007812 2.269531 -3.082031 2.324219 -3.144531 C 2.382812 -3.203125 2.445312 -3.25 2.515625 -3.28125 C 2.585938 -3.3125 2.664062 -3.328125 2.757812 -3.328125 C 3.167969 -3.328125 3.371094 -3.011719 3.371094 -2.378906 L 3.371094 0 Z "/>
</g>
<g id="glyph-0-2">
<path d="M 3.3125 -1.691406 C 3.3125 -1.402344 3.273438 -1.148438 3.191406 -0.929688 C 3.109375 -0.714844 2.996094 -0.535156 2.855469 -0.390625 C 2.710938 -0.246094 2.542969 -0.140625 2.347656 -0.0703125 C 2.152344 0.00390625 1.941406 0.0390625 1.710938 0.0390625 C 1.609375 0.0390625 1.503906 0.0351562 1.402344 0.0234375 C 1.296875 0.0117188 1.195312 -0.0078125 1.085938 -0.03125 L 1.085938 1.335938 L 0.519531 1.335938 L 0.519531 -3.269531 L 1.023438 -3.269531 L 1.0625 -2.722656 C 1.222656 -2.945312 1.398438 -3.101562 1.582031 -3.191406 C 1.765625 -3.28125 1.964844 -3.328125 2.179688 -3.328125 C 2.367188 -3.328125 2.53125 -3.289062 2.671875 -3.210938 C 2.8125 -3.132812 2.933594 -3.019531 3.027344 -2.878906 C 3.121094 -2.738281 3.195312 -2.566406 3.242188 -2.363281 C 3.289062 -2.164062 3.3125 -1.941406 3.3125 -1.691406 M 2.734375 -1.667969 C 2.734375 -1.839844 2.722656 -1.996094 2.695312 -2.140625 C 2.671875 -2.28125 2.632812 -2.40625 2.578125 -2.507812 C 2.523438 -2.609375 2.453125 -2.6875 2.371094 -2.746094 C 2.285156 -2.804688 2.183594 -2.832031 2.066406 -2.832031 C 1.996094 -2.832031 1.921875 -2.820312 1.847656 -2.796875 C 1.773438 -2.773438 1.699219 -2.738281 1.621094 -2.683594 C 1.539062 -2.628906 1.457031 -2.558594 1.367188 -2.472656 C 1.28125 -2.382812 1.1875 -2.273438 1.085938 -2.144531 L 1.085938 -0.558594 C 1.191406 -0.515625 1.300781 -0.480469 1.414062 -0.457031 C 1.53125 -0.433594 1.644531 -0.417969 1.753906 -0.417969 C 2.0625 -0.417969 2.300781 -0.523438 2.472656 -0.730469 C 2.648438 -0.9375 2.734375 -1.25 2.734375 -1.667969 Z "/>
</g>
<g id="glyph-0-3">
<path d="M 3.367188 -1.660156 C 3.367188 -1.40625 3.328125 -1.171875 3.257812 -0.960938 C 3.1875 -0.75 3.082031 -0.570312 2.949219 -0.417969 C 2.816406 -0.265625 2.652344 -0.148438 2.457031 -0.0664062 C 2.265625 0.015625 2.046875 0.0585938 1.800781 0.0585938 C 1.566406 0.0585938 1.355469 0.0234375 1.171875 -0.0507812 C 0.984375 -0.125 0.828125 -0.230469 0.699219 -0.371094 C 0.570312 -0.511719 0.46875 -0.6875 0.402344 -0.894531 C 0.332031 -1.101562 0.300781 -1.34375 0.300781 -1.613281 C 0.300781 -1.867188 0.335938 -2.101562 0.40625 -2.308594 C 0.476562 -2.519531 0.582031 -2.699219 0.714844 -2.851562 C 0.851562 -3 1.015625 -3.117188 1.207031 -3.203125 C 1.402344 -3.285156 1.621094 -3.328125 1.863281 -3.328125 C 2.101562 -3.328125 2.308594 -3.289062 2.496094 -3.21875 C 2.679688 -3.144531 2.839844 -3.039062 2.96875 -2.898438 C 3.097656 -2.757812 3.195312 -2.585938 3.261719 -2.375 C 3.332031 -2.167969 3.367188 -1.929688 3.367188 -1.660156 M 2.785156 -1.632812 C 2.785156 -1.835938 2.765625 -2.011719 2.71875 -2.164062 C 2.675781 -2.3125 2.613281 -2.441406 2.527344 -2.539062 C 2.445312 -2.640625 2.347656 -2.71875 2.226562 -2.769531 C 2.109375 -2.820312 1.976562 -2.84375 1.832031 -2.84375 C 1.664062 -2.84375 1.519531 -2.8125 1.398438 -2.746094 C 1.277344 -2.679688 1.179688 -2.589844 1.101562 -2.480469 C 1.023438 -2.371094 0.96875 -2.242188 0.933594 -2.09375 C 0.898438 -1.949219 0.878906 -1.792969 0.878906 -1.632812 C 0.878906 -1.433594 0.902344 -1.253906 0.945312 -1.101562 C 0.988281 -0.953125 1.054688 -0.824219 1.136719 -0.722656 C 1.21875 -0.625 1.316406 -0.546875 1.433594 -0.496094 C 1.550781 -0.445312 1.683594 -0.417969 1.832031 -0.417969 C 2 -0.417969 2.148438 -0.453125 2.265625 -0.519531 C 2.386719 -0.585938 2.488281 -0.671875 2.5625 -0.785156 C 2.640625 -0.894531 2.695312 -1.023438 2.734375 -1.171875 C 2.769531 -1.316406 2.785156 -1.472656 2.785156 -1.632812 Z "/>
</g>
<g id="glyph-0-4">
<path d="M 0.652344 -3.269531 L 1.171875 -3.269531 L 1.1875 -2.664062 C 1.382812 -2.898438 1.570312 -3.066406 1.757812 -3.171875 C 1.945312 -3.273438 2.136719 -3.328125 2.328125 -3.328125 C 2.664062 -3.328125 2.921875 -3.21875 3.097656 -2.996094 C 3.273438 -2.777344 3.351562 -2.453125 3.339844 -2.023438 L 2.765625 -2.023438 C 2.773438 -2.308594 2.730469 -2.515625 2.640625 -2.644531 C 2.550781 -2.773438 2.417969 -2.839844 2.246094 -2.839844 C 2.171875 -2.839844 2.09375 -2.824219 2.015625 -2.796875 C 1.941406 -2.769531 1.859375 -2.726562 1.777344 -2.667969 C 1.699219 -2.609375 1.609375 -2.53125 1.519531 -2.4375 C 1.429688 -2.34375 1.332031 -2.230469 1.226562 -2.101562 L 1.226562 0 L 0.652344 0 Z "/>
</g>
<g id="glyph-0-5">
<path d="M 3.152344 -0.046875 C 3.027344 -0.0117188 2.894531 0.0117188 2.757812 0.0234375 C 2.621094 0.0390625 2.480469 0.046875 2.339844 0.046875 C 1.929688 0.046875 1.625 -0.046875 1.421875 -0.234375 C 1.21875 -0.417969 1.121094 -0.703125 1.121094 -1.085938 L 1.121094 -2.792969 L 0.203125 -2.792969 L 0.203125 -3.269531 L 1.121094 -3.269531 L 1.121094 -4.167969 L 1.6875 -4.3125 L 1.6875 -3.269531 L 3.152344 -3.269531 L 3.152344 -2.792969 L 1.6875 -2.792969 L 1.6875 -1.132812 C 1.6875 -0.898438 1.75 -0.722656 1.875 -0.605469 C 2 -0.492188 2.183594 -0.433594 2.425781 -0.433594 C 2.527344 -0.433594 2.644531 -0.441406 2.765625 -0.457031 C 2.890625 -0.472656 3.019531 -0.5 3.152344 -0.535156 Z "/>
</g>
<g id="glyph-0-6">
</g>
<g id="glyph-0-7">
<path d="M 3.058594 -0.121094 C 2.914062 -0.0625 2.761719 -0.0234375 2.605469 0.00390625 C 2.449219 0.03125 2.289062 0.046875 2.125 0.046875 C 1.609375 0.046875 1.210938 -0.09375 0.933594 -0.375 C 0.652344 -0.652344 0.515625 -1.0625 0.515625 -1.601562 C 0.515625 -1.859375 0.554688 -2.09375 0.632812 -2.304688 C 0.714844 -2.515625 0.828125 -2.695312 0.972656 -2.84375 C 1.117188 -2.996094 1.292969 -3.109375 1.492188 -3.191406 C 1.695312 -3.273438 1.917969 -3.3125 2.160156 -3.3125 C 2.332031 -3.3125 2.488281 -3.300781 2.636719 -3.277344 C 2.785156 -3.253906 2.925781 -3.214844 3.058594 -3.160156 L 3.058594 -2.621094 C 2.917969 -2.695312 2.773438 -2.746094 2.628906 -2.78125 C 2.480469 -2.816406 2.332031 -2.832031 2.175781 -2.832031 C 2.027344 -2.832031 1.890625 -2.804688 1.761719 -2.75 C 1.632812 -2.695312 1.519531 -2.613281 1.421875 -2.507812 C 1.324219 -2.40625 1.246094 -2.277344 1.191406 -2.128906 C 1.136719 -1.980469 1.105469 -1.808594 1.105469 -1.621094 C 1.105469 -1.226562 1.203125 -0.929688 1.394531 -0.734375 C 1.585938 -0.539062 1.851562 -0.4375 2.195312 -0.4375 C 2.347656 -0.4375 2.496094 -0.457031 2.640625 -0.492188 C 2.785156 -0.527344 2.925781 -0.578125 3.058594 -0.648438 Z "/>
</g>
<g id="glyph-0-8">
<path d="M 3.421875 -4.070312 C 3.125 -4.136719 2.867188 -4.167969 2.652344 -4.167969 C 2.144531 -4.167969 1.886719 -3.898438 1.886719 -3.367188 L 1.886719 -2.792969 L 3.320312 -2.792969 L 3.320312 -2.320312 L 1.886719 -2.320312 L 1.886719 0 L 1.3125 0 L 1.3125 -2.320312 L 0.261719 -2.320312 L 0.261719 -2.792969 L 1.3125 -2.792969 L 1.3125 -3.332031 C 1.3125 -4.203125 1.765625 -4.640625 2.671875 -4.640625 C 2.898438 -4.640625 3.148438 -4.613281 3.421875 -4.5625 Z "/>
</g>
<g id="glyph-0-9">
<path d="M 3.109375 -0.890625 C 3.109375 -0.777344 3.089844 -0.671875 3.050781 -0.582031 C 3.011719 -0.492188 2.957031 -0.410156 2.890625 -0.339844 C 2.824219 -0.269531 2.746094 -0.210938 2.65625 -0.160156 C 2.566406 -0.109375 2.472656 -0.0664062 2.371094 -0.0351562 C 2.269531 -0.00390625 2.167969 0.0195312 2.0625 0.0351562 C 1.953125 0.0507812 1.851562 0.0585938 1.746094 0.0585938 C 1.527344 0.0585938 1.324219 0.046875 1.136719 0.0273438 C 0.953125 0.0078125 0.769531 -0.0234375 0.59375 -0.0664062 L 0.59375 -0.585938 C 0.785156 -0.53125 0.972656 -0.492188 1.164062 -0.460938 C 1.351562 -0.433594 1.539062 -0.417969 1.726562 -0.417969 C 1.996094 -0.417969 2.195312 -0.457031 2.328125 -0.53125 C 2.457031 -0.605469 2.523438 -0.710938 2.523438 -0.847656 C 2.523438 -0.90625 2.511719 -0.957031 2.492188 -1.003906 C 2.472656 -1.050781 2.433594 -1.09375 2.378906 -1.136719 C 2.324219 -1.179688 2.242188 -1.222656 2.128906 -1.269531 C 2.011719 -1.316406 1.859375 -1.367188 1.660156 -1.425781 C 1.511719 -1.46875 1.375 -1.519531 1.25 -1.574219 C 1.125 -1.628906 1.019531 -1.695312 0.925781 -1.769531 C 0.835938 -1.847656 0.765625 -1.9375 0.710938 -2.039062 C 0.660156 -2.140625 0.632812 -2.261719 0.632812 -2.398438 C 0.632812 -2.492188 0.65625 -2.589844 0.699219 -2.699219 C 0.742188 -2.808594 0.8125 -2.90625 0.914062 -3 C 1.015625 -3.09375 1.15625 -3.171875 1.328125 -3.234375 C 1.5 -3.296875 1.71875 -3.328125 1.980469 -3.328125 C 2.105469 -3.328125 2.25 -3.320312 2.40625 -3.304688 C 2.5625 -3.292969 2.722656 -3.265625 2.894531 -3.230469 L 2.894531 -2.726562 C 2.714844 -2.769531 2.546875 -2.804688 2.386719 -2.824219 C 2.226562 -2.84375 2.089844 -2.855469 1.972656 -2.855469 C 1.832031 -2.855469 1.710938 -2.84375 1.617188 -2.820312 C 1.519531 -2.800781 1.441406 -2.769531 1.382812 -2.734375 C 1.320312 -2.695312 1.277344 -2.648438 1.253906 -2.597656 C 1.226562 -2.546875 1.214844 -2.492188 1.214844 -2.433594 C 1.214844 -2.375 1.226562 -2.324219 1.25 -2.273438 C 1.269531 -2.226562 1.3125 -2.179688 1.375 -2.136719 C 1.4375 -2.09375 1.523438 -2.046875 1.632812 -2.003906 C 1.746094 -1.960938 1.890625 -1.910156 2.066406 -1.859375 C 2.261719 -1.800781 2.421875 -1.742188 2.554688 -1.679688 C 2.6875 -1.621094 2.796875 -1.550781 2.878906 -1.472656 C 2.960938 -1.398438 3.019531 -1.3125 3.054688 -1.21875 C 3.089844 -1.121094 3.109375 -1.011719 3.109375 -0.890625 Z "/>
</g>
<g id="glyph-0-10">
<path d="M 0.355469 -1.566406 C 0.355469 -1.84375 0.394531 -2.089844 0.46875 -2.304688 C 0.542969 -2.523438 0.652344 -2.703125 0.792969 -2.851562 C 0.933594 -3 1.101562 -3.113281 1.296875 -3.191406 C 1.492188 -3.269531 1.710938 -3.308594 1.953125 -3.308594 C 2.058594 -3.308594 2.160156 -3.300781 2.261719 -3.289062 C 2.363281 -3.273438 2.460938 -3.253906 2.558594 -3.226562 L 2.558594 -4.601562 L 3.128906 -4.601562 L 3.128906 0 L 2.621094 0 L 2.601562 -0.617188 C 2.441406 -0.386719 2.269531 -0.21875 2.085938 -0.105469 C 1.902344 0.00390625 1.703125 0.0585938 1.488281 0.0585938 C 1.300781 0.0585938 1.136719 0.0195312 0.996094 -0.0585938 C 0.851562 -0.136719 0.734375 -0.246094 0.640625 -0.390625 C 0.546875 -0.53125 0.472656 -0.703125 0.425781 -0.902344 C 0.378906 -1.101562 0.355469 -1.324219 0.355469 -1.566406 M 0.933594 -1.601562 C 0.933594 -1.207031 0.992188 -0.910156 1.109375 -0.71875 C 1.222656 -0.523438 1.390625 -0.425781 1.601562 -0.425781 C 1.746094 -0.425781 1.894531 -0.492188 2.054688 -0.617188 C 2.214844 -0.746094 2.382812 -0.9375 2.558594 -1.1875 L 2.558594 -2.703125 C 2.464844 -2.75 2.363281 -2.78125 2.25 -2.804688 C 2.136719 -2.828125 2.023438 -2.839844 1.914062 -2.839844 C 1.605469 -2.839844 1.367188 -2.738281 1.191406 -2.539062 C 1.019531 -2.339844 0.933594 -2.027344 0.933594 -1.601562 Z "/>
</g>
<g id="glyph-0-11">
<path d="M 3.28125 -1.804688 C 3.28125 -1.726562 3.28125 -1.660156 3.277344 -1.605469 C 3.277344 -1.550781 3.273438 -1.5 3.269531 -1.453125 L 0.972656 -1.453125 C 0.972656 -1.117188 1.066406 -0.859375 1.253906 -0.683594 C 1.441406 -0.503906 1.707031 -0.414062 2.0625 -0.414062 C 2.15625 -0.414062 2.25 -0.417969 2.347656 -0.425781 C 2.441406 -0.433594 2.535156 -0.441406 2.625 -0.457031 C 2.710938 -0.46875 2.796875 -0.484375 2.878906 -0.5 C 2.960938 -0.515625 3.035156 -0.535156 3.105469 -0.554688 L 3.105469 -0.0859375 C 2.953125 -0.0429688 2.777344 -0.0078125 2.582031 0.0195312 C 2.390625 0.046875 2.1875 0.0585938 1.980469 0.0585938 C 1.699219 0.0585938 1.457031 0.0195312 1.257812 -0.0546875 C 1.054688 -0.132812 0.890625 -0.242188 0.761719 -0.386719 C 0.632812 -0.53125 0.535156 -0.707031 0.472656 -0.917969 C 0.410156 -1.125 0.378906 -1.363281 0.378906 -1.628906 C 0.378906 -1.859375 0.414062 -2.074219 0.480469 -2.28125 C 0.546875 -2.484375 0.644531 -2.664062 0.769531 -2.820312 C 0.898438 -2.976562 1.050781 -3.097656 1.238281 -3.191406 C 1.421875 -3.28125 1.628906 -3.328125 1.863281 -3.328125 C 2.09375 -3.328125 2.296875 -3.289062 2.46875 -3.21875 C 2.644531 -3.148438 2.792969 -3.046875 2.914062 -2.914062 C 3.035156 -2.785156 3.125 -2.625 3.1875 -2.4375 C 3.25 -2.25 3.28125 -2.039062 3.28125 -1.804688 M 2.691406 -1.886719 C 2.699219 -2.035156 2.683594 -2.167969 2.648438 -2.285156 C 2.613281 -2.40625 2.5625 -2.511719 2.488281 -2.597656 C 2.414062 -2.683594 2.324219 -2.753906 2.21875 -2.800781 C 2.109375 -2.851562 1.980469 -2.875 1.839844 -2.875 C 1.714844 -2.875 1.601562 -2.851562 1.5 -2.800781 C 1.398438 -2.753906 1.3125 -2.6875 1.238281 -2.601562 C 1.164062 -2.515625 1.101562 -2.410156 1.058594 -2.289062 C 1.011719 -2.167969 0.984375 -2.035156 0.972656 -1.886719 Z "/>
</g>
<g id="glyph-1-0">
<path d="M 0.652344 -3.269531 L 1.171875 -3.269531 L 1.1875 -2.664062 C 1.382812 -2.898438 1.570312 -3.066406 1.757812 -3.171875 C 1.945312 -3.273438 2.136719 -3.328125 2.328125 -3.328125 C 2.664062 -3.328125 2.921875 -3.21875 3.097656 -2.996094 C 3.273438 -2.777344 3.351562 -2.453125 3.339844 -2.023438 L 2.765625 -2.023438 C 2.773438 -2.308594 2.730469 -2.515625 2.640625 -2.644531 C 2.550781 -2.773438 2.417969 -2.839844 2.246094 -2.839844 C 2.171875 -2.839844 2.09375 -2.824219 2.015625 -2.796875 C 1.941406 -2.769531 1.859375 -2.726562 1.777344 -2.667969 C 1.699219 -2.609375 1.609375 -2.53125 1.519531 -2.4375 C 1.429688 -2.34375 1.332031 -2.230469 1.226562 -2.101562 L 1.226562 0 L 0.652344 0 Z "/>
</g>
<g id="glyph-1-1">
<path d="M 3.28125 -1.804688 C 3.28125 -1.726562 3.28125 -1.660156 3.277344 -1.605469 C 3.277344 -1.550781 3.273438 -1.5 3.269531 -1.453125 L 0.972656 -1.453125 C 0.972656 -1.117188 1.066406 -0.859375 1.253906 -0.683594 C 1.441406 -0.503906 1.707031 -0.414062 2.0625 -0.414062 C 2.15625 -0.414062 2.25 -0.417969 2.347656 -0.425781 C 2.441406 -0.433594 2.535156 -0.441406 2.625 -0.457031 C 2.710938 -0.46875 2.796875 -0.484375 2.878906 -0.5 C 2.960938 -0.515625 3.035156 -0.535156 3.105469 -0.554688 L 3.105469 -0.0859375 C 2.953125 -0.0429688 2.777344 -0.0078125 2.582031 0.0195312 C 2.390625 0.046875 2.1875 0.0585938 1.980469 0.0585938 C 1.699219 0.0585938 1.457031 0.0195312 1.257812 -0.0546875 C 1.054688 -0.132812 0.890625 -0.242188 0.761719 -0.386719 C 0.632812 -0.53125 0.535156 -0.707031 0.472656 -0.917969 C 0.410156 -1.125 0.378906 -1.363281 0.378906 -1.628906 C 0.378906 -1.859375 0.414062 -2.074219 0.480469 -2.28125 C 0.546875 -2.484375 0.644531 -2.664062 0.769531 -2.820312 C 0.898438 -2.976562 1.050781 -3.097656 1.238281 -3.191406 C 1.421875 -3.28125 1.628906 -3.328125 1.863281 -3.328125 C 2.09375 -3.328125 2.296875 -3.289062 2.46875 -3.21875 C 2.644531 -3.148438 2.792969 -3.046875 2.914062 -2.914062 C 3.035156 -2.785156 3.125 -2.625 3.1875 -2.4375 C 3.25 -2.25 3.28125 -2.039062 3.28125 -1.804688 M 2.691406 -1.886719 C 2.699219 -2.035156 2.683594 -2.167969 2.648438 -2.285156 C 2.613281 -2.40625 2.5625 -2.511719 2.488281 -2.597656 C 2.414062 -2.683594 2.324219 -2.753906 2.21875 -2.800781 C 2.109375 -2.851562 1.980469 -2.875 1.839844 -2.875 C 1.714844 -2.875 1.601562 -2.851562 1.5 -2.800781 C 1.398438 -2.753906 1.3125 -2.6875 1.238281 -2.601562 C 1.164062 -2.515625 1.101562 -2.410156 1.058594 -2.289062 C 1.011719 -2.167969 0.984375 -2.035156 0.972656 -1.886719 Z "/>
</g>
<g id="glyph-1-2">
<path d="M 3.109375 -0.890625 C 3.109375 -0.777344 3.089844 -0.671875 3.050781 -0.582031 C 3.011719 -0.492188 2.957031 -0.410156 2.890625 -0.339844 C 2.824219 -0.269531 2.746094 -0.210938 2.65625 -0.160156 C 2.566406 -0.109375 2.472656 -0.0664062 2.371094 -0.0351562 C 2.269531 -0.00390625 2.167969 0.0195312 2.0625 0.0351562 C 1.953125 0.0507812 1.851562 0.0585938 1.746094 0.0585938 C 1.527344 0.0585938 1.324219 0.046875 1.136719 0.0273438 C 0.953125 0.0078125 0.769531 -0.0234375 0.59375 -0.0664062 L 0.59375 -0.585938 C 0.785156 -0.53125 0.972656 -0.492188 1.164062 -0.460938 C 1.351562 -0.433594 1.539062 -0.417969 1.726562 -0.417969 C 1.996094 -0.417969 2.195312 -0.457031 2.328125 -0.53125 C 2.457031 -0.605469 2.523438 -0.710938 2.523438 -0.847656 C 2.523438 -0.90625 2.511719 -0.957031 2.492188 -1.003906 C 2.472656 -1.050781 2.433594 -1.09375 2.378906 -1.136719 C 2.324219 -1.179688 2.242188 -1.222656 2.128906 -1.269531 C 2.011719 -1.316406 1.859375 -1.367188 1.660156 -1.425781 C 1.511719 -1.46875 1.375 -1.519531 1.25 -1.574219 C 1.125 -1.628906 1.019531 -1.695312 0.925781 -1.769531 C 0.835938 -1.847656 0.765625 -1.9375 0.710938 -2.039062 C 0.660156 -2.140625 0.632812 -2.261719 0.632812 -2.398438 C 0.632812 -2.492188 0.65625 -2.589844 0.699219 -2.699219 C 0.742188 -2.808594 0.8125 -2.90625 0.914062 -3 C 1.015625 -3.09375 1.15625 -3.171875 1.328125 -3.234375 C 1.5 -3.296875 1.71875 -3.328125 1.980469 -3.328125 C 2.105469 -3.328125 2.25 -3.320312 2.40625 -3.304688 C 2.5625 -3.292969 2.722656 -3.265625 2.894531 -3.230469 L 2.894531 -2.726562 C 2.714844 -2.769531 2.546875 -2.804688 2.386719 -2.824219 C 2.226562 -2.84375 2.089844 -2.855469 1.972656 -2.855469 C 1.832031 -2.855469 1.710938 -2.84375 1.617188 -2.820312 C 1.519531 -2.800781 1.441406 -2.769531 1.382812 -2.734375 C 1.320312 -2.695312 1.277344 -2.648438 1.253906 -2.597656 C 1.226562 -2.546875 1.214844 -2.492188 1.214844 -2.433594 C 1.214844 -2.375 1.226562 -2.324219 1.25 -2.273438 C 1.269531 -2.226562 1.3125 -2.179688 1.375 -2.136719 C 1.4375 -2.09375 1.523438 -2.046875 1.632812 -2.003906 C 1.746094 -1.960938 1.890625 -1.910156 2.066406 -1.859375 C 2.261719 -1.800781 2.421875 -1.742188 2.554688 -1.679688 C 2.6875 -1.621094 2.796875 -1.550781 2.878906 -1.472656 C 2.960938 -1.398438 3.019531 -1.3125 3.054688 -1.21875 C 3.089844 -1.121094 3.109375 -1.011719 3.109375 -0.890625 Z "/>
</g>
<g id="glyph-1-3">
<path d="M 3.3125 -1.691406 C 3.3125 -1.402344 3.273438 -1.148438 3.191406 -0.929688 C 3.109375 -0.714844 2.996094 -0.535156 2.855469 -0.390625 C 2.710938 -0.246094 2.542969 -0.140625 2.347656 -0.0703125 C 2.152344 0.00390625 1.941406 0.0390625 1.710938 0.0390625 C 1.609375 0.0390625 1.503906 0.0351562 1.402344 0.0234375 C 1.296875 0.0117188 1.195312 -0.0078125 1.085938 -0.03125 L 1.085938 1.335938 L 0.519531 1.335938 L 0.519531 -3.269531 L 1.023438 -3.269531 L 1.0625 -2.722656 C 1.222656 -2.945312 1.398438 -3.101562 1.582031 -3.191406 C 1.765625 -3.28125 1.964844 -3.328125 2.179688 -3.328125 C 2.367188 -3.328125 2.53125 -3.289062 2.671875 -3.210938 C 2.8125 -3.132812 2.933594 -3.019531 3.027344 -2.878906 C 3.121094 -2.738281 3.195312 -2.566406 3.242188 -2.363281 C 3.289062 -2.164062 3.3125 -1.941406 3.3125 -1.691406 M 2.734375 -1.667969 C 2.734375 -1.839844 2.722656 -1.996094 2.695312 -2.140625 C 2.671875 -2.28125 2.632812 -2.40625 2.578125 -2.507812 C 2.523438 -2.609375 2.453125 -2.6875 2.371094 -2.746094 C 2.285156 -2.804688 2.183594 -2.832031 2.066406 -2.832031 C 1.996094 -2.832031 1.921875 -2.820312 1.847656 -2.796875 C 1.773438 -2.773438 1.699219 -2.738281 1.621094 -2.683594 C 1.539062 -2.628906 1.457031 -2.558594 1.367188 -2.472656 C 1.28125 -2.382812 1.1875 -2.273438 1.085938 -2.144531 L 1.085938 -0.558594 C 1.191406 -0.515625 1.300781 -0.480469 1.414062 -0.457031 C 1.53125 -0.433594 1.644531 -0.417969 1.753906 -0.417969 C 2.0625 -0.417969 2.300781 -0.523438 2.472656 -0.730469 C 2.648438 -0.9375 2.734375 -1.25 2.734375 -1.667969 Z "/>
</g>
<g id="glyph-1-4">
<path d="M 3.367188 -1.660156 C 3.367188 -1.40625 3.328125 -1.171875 3.257812 -0.960938 C 3.1875 -0.75 3.082031 -0.570312 2.949219 -0.417969 C 2.816406 -0.265625 2.652344 -0.148438 2.457031 -0.0664062 C 2.265625 0.015625 2.046875 0.0585938 1.800781 0.0585938 C 1.566406 0.0585938 1.355469 0.0234375 1.171875 -0.0507812 C 0.984375 -0.125 0.828125 -0.230469 0.699219 -0.371094 C 0.570312 -0.511719 0.46875 -0.6875 0.402344 -0.894531 C 0.332031 -1.101562 0.300781 -1.34375 0.300781 -1.613281 C 0.300781 -1.867188 0.335938 -2.101562 0.40625 -2.308594 C 0.476562 -2.519531 0.582031 -2.699219 0.714844 -2.851562 C 0.851562 -3 1.015625 -3.117188 1.207031 -3.203125 C 1.402344 -3.285156 1.621094 -3.328125 1.863281 -3.328125 C 2.101562 -3.328125 2.308594 -3.289062 2.496094 -3.21875 C 2.679688 -3.144531 2.839844 -3.039062 2.96875 -2.898438 C 3.097656 -2.757812 3.195312 -2.585938 3.261719 -2.375 C 3.332031 -2.167969 3.367188 -1.929688 3.367188 -1.660156 M 2.785156 -1.632812 C 2.785156 -1.835938 2.765625 -2.011719 2.71875 -2.164062 C 2.675781 -2.3125 2.613281 -2.441406 2.527344 -2.539062 C 2.445312 -2.640625 2.347656 -2.71875 2.226562 -2.769531 C 2.109375 -2.820312 1.976562 -2.84375 1.832031 -2.84375 C 1.664062 -2.84375 1.519531 -2.8125 1.398438 -2.746094 C 1.277344 -2.679688 1.179688 -2.589844 1.101562 -2.480469 C 1.023438 -2.371094 0.96875 -2.242188 0.933594 -2.09375 C 0.898438 -1.949219 0.878906 -1.792969 0.878906 -1.632812 C 0.878906 -1.433594 0.902344 -1.253906 0.945312 -1.101562 C 0.988281 -0.953125 1.054688 -0.824219 1.136719 -0.722656 C 1.21875 -0.625 1.316406 -0.546875 1.433594 -0.496094 C 1.550781 -0.445312 1.683594 -0.417969 1.832031 -0.417969 C 2 -0.417969 2.148438 -0.453125 2.265625 -0.519531 C 2.386719 -0.585938 2.488281 -0.671875 2.5625 -0.785156 C 2.640625 -0.894531 2.695312 -1.023438 2.734375 -1.171875 C 2.769531 -1.316406 2.785156 -1.472656 2.785156 -1.632812 Z "/>
</g>
<g id="glyph-1-5">
<path d="M 0.519531 -3.269531 L 1.023438 -3.269531 L 1.046875 -2.742188 C 1.144531 -2.855469 1.234375 -2.949219 1.324219 -3.023438 C 1.414062 -3.097656 1.5 -3.15625 1.585938 -3.203125 C 1.671875 -3.25 1.761719 -3.28125 1.847656 -3.300781 C 1.9375 -3.316406 2.03125 -3.328125 2.125 -3.328125 C 2.460938 -3.328125 2.714844 -3.226562 2.890625 -3.027344 C 3.0625 -2.832031 3.148438 -2.53125 3.148438 -2.132812 L 3.148438 0 L 2.582031 0 L 2.582031 -2.085938 C 2.582031 -2.34375 2.535156 -2.53125 2.4375 -2.65625 C 2.34375 -2.777344 2.199219 -2.839844 2.011719 -2.839844 C 1.941406 -2.839844 1.875 -2.828125 1.808594 -2.808594 C 1.742188 -2.785156 1.671875 -2.75 1.601562 -2.699219 C 1.53125 -2.648438 1.453125 -2.582031 1.367188 -2.492188 C 1.285156 -2.40625 1.191406 -2.296875 1.085938 -2.167969 L 1.085938 0 L 0.519531 0 Z "/>
</g>
<g id="glyph-1-6">
</g>
<g id="glyph-1-7">
<path d="M 3.230469 -2.101562 L 0.433594 -2.101562 L 0.433594 -2.582031 L 3.230469 -2.582031 L 3.230469 -2.101562 M 3.230469 -0.96875 L 0.433594 -0.96875 L 0.433594 -1.449219 L 3.230469 -1.449219 Z "/>
</g>
<g id="glyph-1-8">
<path d="M 3.058594 -0.121094 C 2.914062 -0.0625 2.761719 -0.0234375 2.605469 0.00390625 C 2.449219 0.03125 2.289062 0.046875 2.125 0.046875 C 1.609375 0.046875 1.210938 -0.09375 0.933594 -0.375 C 0.652344 -0.652344 0.515625 -1.0625 0.515625 -1.601562 C 0.515625 -1.859375 0.554688 -2.09375 0.632812 -2.304688 C 0.714844 -2.515625 0.828125 -2.695312 0.972656 -2.84375 C 1.117188 -2.996094 1.292969 -3.109375 1.492188 -3.191406 C 1.695312 -3.273438 1.917969 -3.3125 2.160156 -3.3125 C 2.332031 -3.3125 2.488281 -3.300781 2.636719 -3.277344 C 2.785156 -3.253906 2.925781 -3.214844 3.058594 -3.160156 L 3.058594 -2.621094 C 2.917969 -2.695312 2.773438 -2.746094 2.628906 -2.78125 C 2.480469 -2.816406 2.332031 -2.832031 2.175781 -2.832031 C 2.027344 -2.832031 1.890625 -2.804688 1.761719 -2.75 C 1.632812 -2.695312 1.519531 -2.613281 1.421875 -2.507812 C 1.324219 -2.40625 1.246094 -2.277344 1.191406 -2.128906 C 1.136719 -1.980469 1.105469 -1.808594 1.105469 -1.621094 C 1.105469 -1.226562 1.203125 -0.929688 1.394531 -0.734375 C 1.585938 -0.539062 1.851562 -0.4375 2.195312 -0.4375 C 2.347656 -0.4375 2.496094 -0.457031 2.640625 -0.492188 C 2.785156 -0.527344 2.925781 -0.578125 3.058594 -0.648438 Z "/>
</g>
<g id="glyph-1-9">
<path d="M 3.421875 -4.070312 C 3.125 -4.136719 2.867188 -4.167969 2.652344 -4.167969 C 2.144531 -4.167969 1.886719 -3.898438 1.886719 -3.367188 L 1.886719 -2.792969 L 3.320312 -2.792969 L 3.320312 -2.320312 L 1.886719 -2.320312 L 1.886719 0 L 1.3125 0 L 1.3125 -2.320312 L 0.261719 -2.320312 L 0.261719 -2.792969 L 1.3125 -2.792969 L 1.3125 -3.332031 C 1.3125 -4.203125 1.765625 -4.640625 2.671875 -4.640625 C 2.898438 -4.640625 3.148438 -4.613281 3.421875 -4.5625 Z "/>
</g>
<g id="glyph-1-10">
<path d="M 1.632812 -2.800781 L 0.667969 -2.800781 L 0.667969 -3.269531 L 2.207031 -3.269531 L 2.207031 -0.472656 L 3.179688 -0.472656 L 3.179688 0 L 0.558594 0 L 0.558594 -0.472656 L 1.632812 -0.472656 L 1.632812 -2.800781 M 1.832031 -4.640625 C 1.894531 -4.640625 1.953125 -4.628906 2.007812 -4.605469 C 2.0625 -4.582031 2.109375 -4.550781 2.148438 -4.507812 C 2.191406 -4.46875 2.222656 -4.421875 2.246094 -4.367188 C 2.265625 -4.3125 2.277344 -4.253906 2.277344 -4.191406 C 2.277344 -4.132812 2.265625 -4.074219 2.246094 -4.019531 C 2.222656 -3.964844 2.191406 -3.917969 2.148438 -3.875 C 2.109375 -3.835938 2.0625 -3.804688 2.007812 -3.78125 C 1.953125 -3.757812 1.894531 -3.746094 1.832031 -3.746094 C 1.769531 -3.746094 1.710938 -3.757812 1.65625 -3.78125 C 1.601562 -3.804688 1.554688 -3.835938 1.515625 -3.875 C 1.476562 -3.917969 1.445312 -3.964844 1.421875 -4.019531 C 1.398438 -4.074219 1.386719 -4.132812 1.386719 -4.191406 C 1.386719 -4.253906 1.398438 -4.3125 1.421875 -4.367188 C 1.445312 -4.421875 1.476562 -4.46875 1.515625 -4.507812 C 1.554688 -4.550781 1.601562 -4.582031 1.65625 -4.605469 C 1.710938 -4.628906 1.769531 -4.640625 1.832031 -4.640625 Z "/>
</g>
<g id="glyph-1-11">
<path d="M 0.355469 -1.566406 C 0.355469 -1.84375 0.394531 -2.089844 0.46875 -2.304688 C 0.542969 -2.523438 0.652344 -2.703125 0.792969 -2.851562 C 0.933594 -3 1.101562 -3.113281 1.296875 -3.191406 C 1.492188 -3.269531 1.710938 -3.308594 1.953125 -3.308594 C 2.058594 -3.308594 2.160156 -3.300781 2.261719 -3.289062 C 2.363281 -3.273438 2.460938 -3.253906 2.558594 -3.226562 L 2.558594 -4.601562 L 3.128906 -4.601562 L 3.128906 0 L 2.621094 0 L 2.601562 -0.617188 C 2.441406 -0.386719 2.269531 -0.21875 2.085938 -0.105469 C 1.902344 0.00390625 1.703125 0.0585938 1.488281 0.0585938 C 1.300781 0.0585938 1.136719 0.0195312 0.996094 -0.0585938 C 0.851562 -0.136719 0.734375 -0.246094 0.640625 -0.390625 C 0.546875 -0.53125 0.472656 -0.703125 0.425781 -0.902344 C 0.378906 -1.101562 0.355469 -1.324219 0.355469 -1.566406 M 0.933594 -1.601562 C 0.933594 -1.207031 0.992188 -0.910156 1.109375 -0.71875 C 1.222656 -0.523438 1.390625 -0.425781 1.601562 -0.425781 C 1.746094 -0.425781 1.894531 -0.492188 2.054688 -0.617188 C 2.214844 -0.746094 2.382812 -0.9375 2.558594 -1.1875 L 2.558594 -2.703125 C 2.464844 -2.75 2.363281 -2.78125 2.25 -2.804688 C 2.136719 -2.828125 2.023438 -2.839844 1.914062 -2.839844 C 1.605469 -2.839844 1.367188 -2.738281 1.191406 -2.539062 C 1.019531 -2.339844 0.933594 -2.027344 0.933594 -1.601562 Z "/>
</g>
<g id="glyph-1-12">
<path d="M 1.804688 -1.023438 C 1.878906 -1.023438 1.949219 -1.011719 2.015625 -0.984375 C 2.082031 -0.953125 2.140625 -0.914062 2.1875 -0.867188 C 2.238281 -0.816406 2.277344 -0.757812 2.304688 -0.691406 C 2.332031 -0.625 2.347656 -0.554688 2.347656 -0.476562 C 2.347656 -0.40625 2.332031 -0.335938 2.304688 -0.269531 C 2.277344 -0.203125 2.238281 -0.148438 2.1875 -0.0976562 C 2.140625 -0.0507812 2.082031 -0.0117188 2.015625 0.015625 C 1.949219 0.0429688 1.878906 0.0585938 1.804688 0.0585938 C 1.730469 0.0585938 1.660156 0.0429688 1.59375 0.015625 C 1.53125 -0.0117188 1.472656 -0.0507812 1.425781 -0.0976562 C 1.375 -0.148438 1.335938 -0.203125 1.308594 -0.269531 C 1.28125 -0.335938 1.265625 -0.40625 1.265625 -0.476562 C 1.265625 -0.554688 1.28125 -0.625 1.308594 -0.691406 C 1.335938 -0.757812 1.375 -0.816406 1.425781 -0.867188 C 1.472656 -0.914062 1.53125 -0.953125 1.59375 -0.984375 C 1.660156 -1.011719 1.730469 -1.023438 1.804688 -1.023438 Z "/>
</g>
<g id="glyph-1-13">
<path d="M 2.875 -2.804688 C 2.933594 -2.730469 2.980469 -2.640625 3.015625 -2.539062 C 3.050781 -2.441406 3.066406 -2.332031 3.066406 -2.214844 C 3.066406 -2.042969 3.035156 -1.890625 2.972656 -1.75 C 2.910156 -1.609375 2.824219 -1.488281 2.710938 -1.390625 C 2.597656 -1.289062 2.464844 -1.210938 2.304688 -1.15625 C 2.148438 -1.101562 1.976562 -1.074219 1.785156 -1.074219 C 1.648438 -1.074219 1.523438 -1.089844 1.402344 -1.117188 C 1.285156 -1.148438 1.1875 -1.183594 1.121094 -1.226562 C 1.078125 -1.167969 1.042969 -1.109375 1.015625 -1.054688 C 0.988281 -1 0.972656 -0.941406 0.972656 -0.871094 C 0.972656 -0.789062 1.011719 -0.722656 1.09375 -0.667969 C 1.171875 -0.613281 1.277344 -0.582031 1.40625 -0.578125 L 2.265625 -0.546875 C 2.429688 -0.542969 2.578125 -0.523438 2.714844 -0.484375 C 2.855469 -0.449219 2.972656 -0.394531 3.070312 -0.324219 C 3.171875 -0.257812 3.246094 -0.171875 3.300781 -0.0703125 C 3.359375 0.0351562 3.386719 0.152344 3.386719 0.285156 C 3.386719 0.433594 3.355469 0.570312 3.289062 0.699219 C 3.226562 0.828125 3.132812 0.945312 3 1.042969 C 2.867188 1.140625 2.703125 1.21875 2.5 1.277344 C 2.296875 1.335938 2.058594 1.367188 1.78125 1.367188 C 1.515625 1.367188 1.289062 1.347656 1.105469 1.304688 C 0.917969 1.261719 0.765625 1.203125 0.648438 1.128906 C 0.527344 1.054688 0.441406 0.964844 0.386719 0.859375 C 0.332031 0.757812 0.304688 0.644531 0.304688 0.519531 C 0.304688 0.363281 0.34375 0.222656 0.417969 0.105469 C 0.492188 -0.015625 0.605469 -0.128906 0.757812 -0.242188 C 0.703125 -0.265625 0.652344 -0.300781 0.613281 -0.339844 C 0.570312 -0.378906 0.539062 -0.421875 0.511719 -0.46875 C 0.484375 -0.515625 0.464844 -0.5625 0.453125 -0.617188 C 0.4375 -0.667969 0.433594 -0.71875 0.433594 -0.769531 C 0.433594 -0.910156 0.464844 -1.039062 0.53125 -1.15625 C 0.597656 -1.273438 0.675781 -1.382812 0.769531 -1.488281 C 0.726562 -1.539062 0.691406 -1.585938 0.660156 -1.632812 C 0.628906 -1.683594 0.601562 -1.734375 0.578125 -1.789062 C 0.554688 -1.84375 0.539062 -1.902344 0.527344 -1.96875 C 0.515625 -2.03125 0.507812 -2.105469 0.507812 -2.1875 C 0.507812 -2.355469 0.539062 -2.511719 0.601562 -2.652344 C 0.664062 -2.792969 0.75 -2.910156 0.859375 -3.011719 C 0.972656 -3.109375 1.105469 -3.1875 1.265625 -3.242188 C 1.421875 -3.300781 1.597656 -3.328125 1.785156 -3.328125 C 1.867188 -3.328125 1.945312 -3.320312 2.019531 -3.308594 C 2.09375 -3.300781 2.15625 -3.285156 2.214844 -3.269531 L 3.398438 -3.269531 L 3.398438 -2.804688 L 2.875 -2.804688 M 0.90625 0.472656 C 0.90625 0.625 0.988281 0.738281 1.148438 0.808594 C 1.308594 0.878906 1.53125 0.914062 1.820312 0.914062 C 2 0.914062 2.152344 0.898438 2.273438 0.867188 C 2.394531 0.832031 2.496094 0.789062 2.570312 0.738281 C 2.644531 0.683594 2.699219 0.625 2.730469 0.554688 C 2.761719 0.488281 2.78125 0.417969 2.78125 0.34375 C 2.78125 0.210938 2.726562 0.113281 2.617188 0.0507812 C 2.507812 -0.0117188 2.34375 -0.046875 2.117188 -0.0585938 L 1.265625 -0.0859375 C 1.195312 -0.0390625 1.136719 0.0078125 1.089844 0.0507812 C 1.042969 0.0976562 1.007812 0.144531 0.980469 0.191406 C 0.953125 0.238281 0.933594 0.285156 0.925781 0.332031 C 0.914062 0.378906 0.90625 0.425781 0.90625 0.472656 M 1.082031 -2.199219 C 1.082031 -2.097656 1.097656 -2 1.132812 -1.914062 C 1.167969 -1.828125 1.214844 -1.753906 1.277344 -1.691406 C 1.34375 -1.632812 1.417969 -1.585938 1.503906 -1.550781 C 1.589844 -1.515625 1.683594 -1.5 1.785156 -1.5 C 1.898438 -1.5 2 -1.519531 2.089844 -1.558594 C 2.175781 -1.59375 2.25 -1.648438 2.308594 -1.710938 C 2.371094 -1.777344 2.414062 -1.851562 2.445312 -1.9375 C 2.476562 -2.023438 2.492188 -2.109375 2.492188 -2.199219 C 2.492188 -2.304688 2.476562 -2.398438 2.441406 -2.488281 C 2.40625 -2.574219 2.359375 -2.648438 2.296875 -2.707031 C 2.230469 -2.769531 2.15625 -2.816406 2.070312 -2.851562 C 1.984375 -2.882812 1.890625 -2.898438 1.785156 -2.898438 C 1.675781 -2.898438 1.574219 -2.878906 1.484375 -2.839844 C 1.398438 -2.800781 1.324219 -2.75 1.265625 -2.6875 C 1.203125 -2.625 1.160156 -2.546875 1.128906 -2.464844 C 1.097656 -2.378906 1.082031 -2.292969 1.082031 -2.199219 Z "/>
</g>
<g id="glyph-1-14">
<path d="M 3.152344 -0.046875 C 3.027344 -0.0117188 2.894531 0.0117188 2.757812 0.0234375 C 2.621094 0.0390625 2.480469 0.046875 2.339844 0.046875 C 1.929688 0.046875 1.625 -0.046875 1.421875 -0.234375 C 1.21875 -0.417969 1.121094 -0.703125 1.121094 -1.085938 L 1.121094 -2.792969 L 0.203125 -2.792969 L 0.203125 -3.269531 L 1.121094 -3.269531 L 1.121094 -4.167969 L 1.6875 -4.3125 L 1.6875 -3.269531 L 3.152344 -3.269531 L 3.152344 -2.792969 L 1.6875 -2.792969 L 1.6875 -1.132812 C 1.6875 -0.898438 1.75 -0.722656 1.875 -0.605469 C 2 -0.492188 2.183594 -0.433594 2.425781 -0.433594 C 2.527344 -0.433594 2.644531 -0.441406 2.765625 -0.457031 C 2.890625 -0.472656 3.019531 -0.5 3.152344 -0.535156 Z "/>
</g>
<g id="glyph-1-15">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-1-16">
<path d="M 1.558594 -4.601562 L 1.46875 -3.074219 L 0.933594 -3.074219 L 0.839844 -4.601562 L 1.558594 -4.601562 M 2.824219 -4.601562 L 2.734375 -3.074219 L 2.199219 -3.074219 L 2.105469 -4.601562 Z "/>
</g>
<g id="glyph-1-17">
<path d="M 3.148438 0 L 2.582031 0 L 2.582031 -2.085938 C 2.582031 -2.339844 2.535156 -2.527344 2.441406 -2.652344 C 2.34375 -2.777344 2.210938 -2.839844 2.035156 -2.839844 C 1.957031 -2.839844 1.886719 -2.828125 1.820312 -2.808594 C 1.753906 -2.785156 1.6875 -2.75 1.613281 -2.699219 C 1.542969 -2.648438 1.464844 -2.582031 1.378906 -2.492188 C 1.296875 -2.40625 1.199219 -2.296875 1.085938 -2.167969 L 1.085938 0 L 0.519531 0 L 0.519531 -4.601562 L 1.085938 -4.601562 L 1.085938 -3.269531 L 1.066406 -2.753906 C 1.15625 -2.859375 1.242188 -2.949219 1.328125 -3.023438 C 1.414062 -3.09375 1.5 -3.152344 1.585938 -3.199219 C 1.671875 -3.246094 1.761719 -3.277344 1.847656 -3.296875 C 1.9375 -3.316406 2.03125 -3.328125 2.125 -3.328125 C 2.453125 -3.328125 2.703125 -3.226562 2.878906 -3.027344 C 3.058594 -2.832031 3.148438 -2.53125 3.148438 -2.132812 Z "/>
</g>
<g id="glyph-1-18">
<path d="M 1.832031 -3.328125 C 1.898438 -3.328125 1.964844 -3.3125 2.023438 -3.285156 C 2.085938 -3.257812 2.140625 -3.222656 2.183594 -3.175781 C 2.230469 -3.132812 2.265625 -3.078125 2.292969 -3.015625 C 2.320312 -2.957031 2.335938 -2.894531 2.335938 -2.824219 C 2.335938 -2.757812 2.320312 -2.691406 2.292969 -2.632812 C 2.265625 -2.570312 2.230469 -2.519531 2.183594 -2.472656 C 2.140625 -2.429688 2.085938 -2.390625 2.023438 -2.367188 C 1.964844 -2.339844 1.898438 -2.328125 1.832031 -2.328125 C 1.761719 -2.328125 1.699219 -2.339844 1.640625 -2.367188 C 1.578125 -2.390625 1.527344 -2.429688 1.480469 -2.472656 C 1.433594 -2.519531 1.398438 -2.570312 1.375 -2.632812 C 1.347656 -2.691406 1.335938 -2.757812 1.335938 -2.824219 C 1.335938 -2.894531 1.347656 -2.957031 1.375 -3.015625 C 1.398438 -3.078125 1.433594 -3.132812 1.480469 -3.175781 C 1.527344 -3.222656 1.578125 -3.257812 1.640625 -3.285156 C 1.699219 -3.3125 1.761719 -3.328125 1.832031 -3.328125 M 1.832031 -0.941406 C 1.898438 -0.941406 1.964844 -0.925781 2.023438 -0.898438 C 2.085938 -0.871094 2.140625 -0.835938 2.183594 -0.789062 C 2.230469 -0.746094 2.265625 -0.691406 2.292969 -0.632812 C 2.320312 -0.570312 2.335938 -0.507812 2.335938 -0.4375 C 2.335938 -0.371094 2.320312 -0.304688 2.292969 -0.246094 C 2.265625 -0.1875 2.230469 -0.132812 2.183594 -0.0859375 C 2.140625 -0.0429688 2.085938 -0.0078125 2.023438 0.0195312 C 1.964844 0.046875 1.898438 0.0585938 1.832031 0.0585938 C 1.761719 0.0585938 1.699219 0.046875 1.640625 0.0195312 C 1.578125 -0.0078125 1.527344 -0.0429688 1.480469 -0.0859375 C 1.433594 -0.132812 1.398438 -0.1875 1.375 -0.246094 C 1.347656 -0.304688 1.335938 -0.371094 1.335938 -0.4375 C 1.335938 -0.507812 1.347656 -0.570312 1.375 -0.632812 C 1.398438 -0.691406 1.433594 -0.746094 1.480469 -0.789062 C 1.527344 -0.835938 1.578125 -0.871094 1.640625 -0.898438 C 1.699219 -0.925781 1.761719 -0.941406 1.832031 -0.941406 Z "/>
</g>
<g id="glyph-1-19">
<path d="M 3.148438 -4.601562 L 0.914062 0.699219 L 0.375 0.699219 L 2.605469 -4.601562 Z "/>
</g>
<g id="glyph-1-20">
<path d="M 3.3125 -1.691406 C 3.3125 -1.421875 3.277344 -1.179688 3.203125 -0.964844 C 3.125 -0.75 3.019531 -0.570312 2.882812 -0.421875 C 2.746094 -0.273438 2.578125 -0.160156 2.378906 -0.078125 C 2.183594 0 1.960938 0.0390625 1.710938 0.0390625 C 1.519531 0.0390625 1.320312 0.0195312 1.121094 -0.015625 C 0.917969 -0.0546875 0.71875 -0.113281 0.519531 -0.191406 L 0.519531 -4.601562 L 1.085938 -4.601562 L 1.085938 -3.332031 L 1.0625 -2.726562 C 1.222656 -2.945312 1.398438 -3.101562 1.582031 -3.191406 C 1.769531 -3.28125 1.96875 -3.328125 2.179688 -3.328125 C 2.367188 -3.328125 2.53125 -3.289062 2.671875 -3.210938 C 2.8125 -3.132812 2.933594 -3.019531 3.027344 -2.878906 C 3.121094 -2.738281 3.195312 -2.566406 3.242188 -2.363281 C 3.289062 -2.164062 3.3125 -1.941406 3.3125 -1.691406 M 2.734375 -1.667969 C 2.734375 -1.839844 2.722656 -1.996094 2.695312 -2.140625 C 2.671875 -2.28125 2.632812 -2.40625 2.578125 -2.507812 C 2.523438 -2.609375 2.453125 -2.6875 2.371094 -2.746094 C 2.285156 -2.804688 2.183594 -2.832031 2.066406 -2.832031 C 1.996094 -2.832031 1.921875 -2.820312 1.847656 -2.796875 C 1.773438 -2.773438 1.699219 -2.738281 1.621094 -2.683594 C 1.539062 -2.628906 1.457031 -2.558594 1.367188 -2.472656 C 1.28125 -2.382812 1.1875 -2.273438 1.085938 -2.144531 L 1.085938 -0.558594 C 1.199219 -0.515625 1.3125 -0.480469 1.425781 -0.457031 C 1.539062 -0.433594 1.648438 -0.417969 1.753906 -0.417969 C 1.882812 -0.417969 2.007812 -0.441406 2.128906 -0.480469 C 2.246094 -0.523438 2.351562 -0.59375 2.441406 -0.6875 C 2.53125 -0.785156 2.601562 -0.914062 2.65625 -1.074219 C 2.707031 -1.230469 2.734375 -1.429688 2.734375 -1.667969 Z "/>
</g>
<g id="glyph-1-21">
<path d="M 2.851562 0 L 2.851562 -2.347656 C 2.851562 -2.449219 2.847656 -2.53125 2.839844 -2.597656 C 2.832031 -2.664062 2.820312 -2.714844 2.804688 -2.753906 C 2.789062 -2.789062 2.765625 -2.816406 2.742188 -2.832031 C 2.71875 -2.847656 2.6875 -2.855469 2.648438 -2.855469 C 2.605469 -2.855469 2.566406 -2.839844 2.527344 -2.816406 C 2.492188 -2.789062 2.453125 -2.746094 2.410156 -2.6875 C 2.367188 -2.628906 2.320312 -2.550781 2.269531 -2.457031 C 2.21875 -2.359375 2.160156 -2.242188 2.089844 -2.101562 L 2.089844 0 L 1.570312 0 L 1.570312 -2.285156 C 1.570312 -2.40625 1.570312 -2.5 1.5625 -2.574219 C 1.554688 -2.648438 1.542969 -2.707031 1.523438 -2.746094 C 1.507812 -2.789062 1.488281 -2.816406 1.460938 -2.832031 C 1.433594 -2.847656 1.402344 -2.855469 1.367188 -2.855469 C 1.328125 -2.855469 1.292969 -2.84375 1.257812 -2.820312 C 1.222656 -2.800781 1.183594 -2.761719 1.140625 -2.703125 C 1.097656 -2.648438 1.050781 -2.570312 1 -2.472656 C 0.945312 -2.375 0.886719 -2.25 0.8125 -2.101562 L 0.8125 0 L 0.292969 0 L 0.292969 -3.269531 L 0.726562 -3.269531 L 0.75 -2.644531 C 0.808594 -2.769531 0.863281 -2.875 0.917969 -2.960938 C 0.96875 -3.050781 1.023438 -3.117188 1.082031 -3.171875 C 1.136719 -3.226562 1.199219 -3.265625 1.261719 -3.289062 C 1.324219 -3.3125 1.394531 -3.328125 1.472656 -3.328125 C 1.648438 -3.328125 1.785156 -3.269531 1.875 -3.152344 C 1.964844 -3.039062 2.011719 -2.859375 2.011719 -2.621094 C 2.0625 -2.734375 2.113281 -2.832031 2.164062 -2.921875 C 2.214844 -3.007812 2.269531 -3.082031 2.324219 -3.144531 C 2.382812 -3.203125 2.445312 -3.25 2.515625 -3.28125 C 2.585938 -3.3125 2.664062 -3.328125 2.757812 -3.328125 C 3.167969 -3.328125 3.371094 -3.011719 3.371094 -2.378906 L 3.371094 0 Z "/>
</g>
<g id="glyph-1-22">
<path d="M 1.632812 -4.132812 L 0.667969 -4.132812 L 0.667969 -4.601562 L 2.207031 -4.601562 L 2.207031 -0.472656 L 3.179688 -0.472656 L 3.179688 0 L 0.558594 0 L 0.558594 -0.472656 L 1.632812 -0.472656 Z "/>
</g>
<g id="glyph-1-23">
<path d="M 0.773438 0.667969 C 0.886719 0.671875 0.992188 0.660156 1.097656 0.636719 C 1.203125 0.613281 1.292969 0.578125 1.371094 0.53125 C 1.453125 0.484375 1.515625 0.425781 1.5625 0.359375 C 1.609375 0.289062 1.632812 0.210938 1.632812 0.121094 C 1.632812 0.03125 1.617188 -0.0429688 1.585938 -0.101562 C 1.554688 -0.15625 1.519531 -0.210938 1.480469 -0.257812 C 1.441406 -0.304688 1.40625 -0.355469 1.375 -0.410156 C 1.34375 -0.464844 1.328125 -0.539062 1.328125 -0.628906 C 1.328125 -0.671875 1.335938 -0.722656 1.355469 -0.769531 C 1.371094 -0.820312 1.398438 -0.867188 1.433594 -0.90625 C 1.46875 -0.949219 1.515625 -0.984375 1.570312 -1.007812 C 1.625 -1.035156 1.691406 -1.046875 1.765625 -1.046875 C 1.84375 -1.046875 1.917969 -1.03125 1.988281 -1 C 2.058594 -0.96875 2.121094 -0.921875 2.171875 -0.855469 C 2.226562 -0.789062 2.269531 -0.710938 2.300781 -0.613281 C 2.332031 -0.515625 2.347656 -0.398438 2.347656 -0.265625 C 2.347656 -0.0859375 2.3125 0.0859375 2.246094 0.253906 C 2.179688 0.417969 2.082031 0.566406 1.953125 0.691406 C 1.820312 0.820312 1.65625 0.921875 1.460938 1 C 1.261719 1.074219 1.035156 1.113281 0.773438 1.113281 Z "/>
</g>
<g id="glyph-1-24">
<path d="M 2.621094 0 L 2.605469 -0.4375 C 2.429688 -0.265625 2.25 -0.136719 2.066406 -0.0585938 C 1.882812 0.0195312 1.6875 0.0585938 1.488281 0.0585938 C 1.300781 0.0585938 1.140625 0.0351562 1.007812 -0.0117188 C 0.875 -0.0625 0.769531 -0.125 0.683594 -0.210938 C 0.597656 -0.292969 0.535156 -0.390625 0.492188 -0.503906 C 0.453125 -0.617188 0.433594 -0.738281 0.433594 -0.871094 C 0.433594 -1.199219 0.554688 -1.457031 0.800781 -1.640625 C 1.042969 -1.828125 1.402344 -1.921875 1.882812 -1.921875 L 2.558594 -1.921875 L 2.558594 -2.207031 C 2.558594 -2.398438 2.496094 -2.554688 2.375 -2.671875 C 2.25 -2.785156 2.0625 -2.84375 1.804688 -2.84375 C 1.621094 -2.84375 1.441406 -2.824219 1.261719 -2.78125 C 1.082031 -2.742188 0.898438 -2.683594 0.707031 -2.605469 L 0.707031 -3.117188 C 0.777344 -3.144531 0.859375 -3.171875 0.945312 -3.195312 C 1.035156 -3.21875 1.125 -3.242188 1.222656 -3.261719 C 1.320312 -3.28125 1.421875 -3.296875 1.53125 -3.308594 C 1.636719 -3.320312 1.742188 -3.328125 1.851562 -3.328125 C 2.050781 -3.328125 2.226562 -3.304688 2.386719 -3.261719 C 2.542969 -3.21875 2.679688 -3.152344 2.789062 -3.0625 C 2.898438 -2.972656 2.980469 -2.863281 3.039062 -2.726562 C 3.097656 -2.59375 3.128906 -2.433594 3.128906 -2.253906 L 3.128906 0 L 2.621094 0 M 2.558594 -1.488281 L 1.839844 -1.488281 C 1.699219 -1.488281 1.578125 -1.472656 1.472656 -1.445312 C 1.371094 -1.417969 1.289062 -1.375 1.222656 -1.324219 C 1.160156 -1.273438 1.109375 -1.210938 1.078125 -1.136719 C 1.046875 -1.066406 1.03125 -0.984375 1.03125 -0.890625 C 1.03125 -0.828125 1.042969 -0.769531 1.0625 -0.710938 C 1.082031 -0.652344 1.113281 -0.601562 1.15625 -0.558594 C 1.199219 -0.515625 1.253906 -0.476562 1.324219 -0.453125 C 1.394531 -0.425781 1.480469 -0.414062 1.578125 -0.414062 C 1.707031 -0.414062 1.859375 -0.453125 2.027344 -0.53125 C 2.195312 -0.613281 2.371094 -0.738281 2.558594 -0.90625 Z "/>
</g>
<g id="glyph-1-25">
<path d="M 3.386719 -3.757812 L 2.125 -3.757812 L 2.125 0 L 1.539062 0 L 1.539062 -3.757812 L 0.28125 -3.757812 L 0.28125 -4.253906 L 3.386719 -4.253906 Z "/>
</g>
<g id="glyph-1-26">
<path d="M 3.148438 0 L 2.640625 0 L 2.621094 -0.527344 C 2.523438 -0.414062 2.429688 -0.320312 2.34375 -0.246094 C 2.253906 -0.171875 2.167969 -0.109375 2.078125 -0.0664062 C 1.992188 -0.0195312 1.90625 0.0117188 1.816406 0.03125 C 1.730469 0.0507812 1.636719 0.0585938 1.539062 0.0585938 C 1.203125 0.0585938 0.949219 -0.0390625 0.777344 -0.238281 C 0.605469 -0.433594 0.519531 -0.734375 0.519531 -1.132812 L 0.519531 -3.269531 L 1.085938 -3.269531 L 1.085938 -1.179688 C 1.085938 -0.675781 1.277344 -0.425781 1.652344 -0.425781 C 1.722656 -0.425781 1.789062 -0.4375 1.855469 -0.457031 C 1.921875 -0.476562 1.992188 -0.515625 2.066406 -0.566406 C 2.136719 -0.617188 2.214844 -0.683594 2.300781 -0.769531 C 2.382812 -0.859375 2.476562 -0.96875 2.582031 -1.101562 L 2.582031 -3.269531 L 3.148438 -3.269531 Z "/>
</g>
<g id="glyph-1-27">
<path d="M 1.1875 -4.847656 C 2.1875 -3.921875 2.6875 -2.890625 2.6875 -1.753906 C 2.6875 -1.519531 2.664062 -1.277344 2.617188 -1.023438 C 2.570312 -0.773438 2.488281 -0.515625 2.375 -0.253906 C 2.257812 0.0117188 2.101562 0.277344 1.910156 0.550781 C 1.714844 0.820312 1.46875 1.09375 1.175781 1.367188 L 0.847656 1.03125 C 1.269531 0.613281 1.585938 0.175781 1.792969 -0.28125 C 2 -0.734375 2.105469 -1.214844 2.105469 -1.710938 C 2.105469 -2.746094 1.6875 -3.675781 0.847656 -4.5 Z "/>
</g>
<g id="glyph-2-0">
<path d="M 3.152344 -0.046875 C 3.027344 -0.0117188 2.894531 0.0117188 2.757812 0.0234375 C 2.621094 0.0390625 2.480469 0.046875 2.339844 0.046875 C 1.929688 0.046875 1.625 -0.046875 1.421875 -0.234375 C 1.21875 -0.417969 1.121094 -0.703125 1.121094 -1.085938 L 1.121094 -2.792969 L 0.203125 -2.792969 L 0.203125 -3.269531 L 1.121094 -3.269531 L 1.121094 -4.167969 L 1.6875 -4.3125 L 1.6875 -3.269531 L 3.152344 -3.269531 L 3.152344 -2.792969 L 1.6875 -2.792969 L 1.6875 -1.132812 C 1.6875 -0.898438 1.75 -0.722656 1.875 -0.605469 C 2 -0.492188 2.183594 -0.433594 2.425781 -0.433594 C 2.527344 -0.433594 2.644531 -0.441406 2.765625 -0.457031 C 2.890625 -0.472656 3.019531 -0.5 3.152344 -0.535156 Z "/>
</g>
<g id="glyph-2-1">
<path d="M 1.632812 -2.800781 L 0.667969 -2.800781 L 0.667969 -3.269531 L 2.207031 -3.269531 L 2.207031 -0.472656 L 3.179688 -0.472656 L 3.179688 0 L 0.558594 0 L 0.558594 -0.472656 L 1.632812 -0.472656 L 1.632812 -2.800781 M 1.832031 -4.640625 C 1.894531 -4.640625 1.953125 -4.628906 2.007812 -4.605469 C 2.0625 -4.582031 2.109375 -4.550781 2.148438 -4.507812 C 2.191406 -4.46875 2.222656 -4.421875 2.246094 -4.367188 C 2.265625 -4.3125 2.277344 -4.253906 2.277344 -4.191406 C 2.277344 -4.132812 2.265625 -4.074219 2.246094 -4.019531 C 2.222656 -3.964844 2.191406 -3.917969 2.148438 -3.875 C 2.109375 -3.835938 2.0625 -3.804688 2.007812 -3.78125 C 1.953125 -3.757812 1.894531 -3.746094 1.832031 -3.746094 C 1.769531 -3.746094 1.710938 -3.757812 1.65625 -3.78125 C 1.601562 -3.804688 1.554688 -3.835938 1.515625 -3.875 C 1.476562 -3.917969 1.445312 -3.964844 1.421875 -4.019531 C 1.398438 -4.074219 1.386719 -4.132812 1.386719 -4.191406 C 1.386719 -4.253906 1.398438 -4.3125 1.421875 -4.367188 C 1.445312 -4.421875 1.476562 -4.46875 1.515625 -4.507812 C 1.554688 -4.550781 1.601562 -4.582031 1.65625 -4.605469 C 1.710938 -4.628906 1.769531 -4.640625 1.832031 -4.640625 Z "/>
</g>
<g id="glyph-2-2">
<path d="M 1.632812 -4.132812 L 0.667969 -4.132812 L 0.667969 -4.601562 L 2.207031 -4.601562 L 2.207031 -0.472656 L 3.179688 -0.472656 L 3.179688 0 L 0.558594 0 L 0.558594 -0.472656 L 1.632812 -0.472656 Z "/>
</g>
<g id="glyph-2-3">
<path d="M 3.28125 -1.804688 C 3.28125 -1.726562 3.28125 -1.660156 3.277344 -1.605469 C 3.277344 -1.550781 3.273438 -1.5 3.269531 -1.453125 L 0.972656 -1.453125 C 0.972656 -1.117188 1.066406 -0.859375 1.253906 -0.683594 C 1.441406 -0.503906 1.707031 -0.414062 2.0625 -0.414062 C 2.15625 -0.414062 2.25 -0.417969 2.347656 -0.425781 C 2.441406 -0.433594 2.535156 -0.441406 2.625 -0.457031 C 2.710938 -0.46875 2.796875 -0.484375 2.878906 -0.5 C 2.960938 -0.515625 3.035156 -0.535156 3.105469 -0.554688 L 3.105469 -0.0859375 C 2.953125 -0.0429688 2.777344 -0.0078125 2.582031 0.0195312 C 2.390625 0.046875 2.1875 0.0585938 1.980469 0.0585938 C 1.699219 0.0585938 1.457031 0.0195312 1.257812 -0.0546875 C 1.054688 -0.132812 0.890625 -0.242188 0.761719 -0.386719 C 0.632812 -0.53125 0.535156 -0.707031 0.472656 -0.917969 C 0.410156 -1.125 0.378906 -1.363281 0.378906 -1.628906 C 0.378906 -1.859375 0.414062 -2.074219 0.480469 -2.28125 C 0.546875 -2.484375 0.644531 -2.664062 0.769531 -2.820312 C 0.898438 -2.976562 1.050781 -3.097656 1.238281 -3.191406 C 1.421875 -3.28125 1.628906 -3.328125 1.863281 -3.328125 C 2.09375 -3.328125 2.296875 -3.289062 2.46875 -3.21875 C 2.644531 -3.148438 2.792969 -3.046875 2.914062 -2.914062 C 3.035156 -2.785156 3.125 -2.625 3.1875 -2.4375 C 3.25 -2.25 3.28125 -2.039062 3.28125 -1.804688 M 2.691406 -1.886719 C 2.699219 -2.035156 2.683594 -2.167969 2.648438 -2.285156 C 2.613281 -2.40625 2.5625 -2.511719 2.488281 -2.597656 C 2.414062 -2.683594 2.324219 -2.753906 2.21875 -2.800781 C 2.109375 -2.851562 1.980469 -2.875 1.839844 -2.875 C 1.714844 -2.875 1.601562 -2.851562 1.5 -2.800781 C 1.398438 -2.753906 1.3125 -2.6875 1.238281 -2.601562 C 1.164062 -2.515625 1.101562 -2.410156 1.058594 -2.289062 C 1.011719 -2.167969 0.984375 -2.035156 0.972656 -1.886719 Z "/>
</g>
<g id="glyph-2-4">
</g>
<g id="glyph-2-5">
<path d="M 3.230469 -2.101562 L 0.433594 -2.101562 L 0.433594 -2.582031 L 3.230469 -2.582031 L 3.230469 -2.101562 M 3.230469 -0.96875 L 0.433594 -0.96875 L 0.433594 -1.449219 L 3.230469 -1.449219 Z "/>
</g>
<g id="glyph-2-6">
<path d="M 0.652344 -3.269531 L 1.171875 -3.269531 L 1.1875 -2.664062 C 1.382812 -2.898438 1.570312 -3.066406 1.757812 -3.171875 C 1.945312 -3.273438 2.136719 -3.328125 2.328125 -3.328125 C 2.664062 -3.328125 2.921875 -3.21875 3.097656 -2.996094 C 3.273438 -2.777344 3.351562 -2.453125 3.339844 -2.023438 L 2.765625 -2.023438 C 2.773438 -2.308594 2.730469 -2.515625 2.640625 -2.644531 C 2.550781 -2.773438 2.417969 -2.839844 2.246094 -2.839844 C 2.171875 -2.839844 2.09375 -2.824219 2.015625 -2.796875 C 1.941406 -2.769531 1.859375 -2.726562 1.777344 -2.667969 C 1.699219 -2.609375 1.609375 -2.53125 1.519531 -2.4375 C 1.429688 -2.34375 1.332031 -2.230469 1.226562 -2.101562 L 1.226562 0 L 0.652344 0 Z "/>
</g>
<g id="glyph-2-7">
<path d="M 3.109375 -0.890625 C 3.109375 -0.777344 3.089844 -0.671875 3.050781 -0.582031 C 3.011719 -0.492188 2.957031 -0.410156 2.890625 -0.339844 C 2.824219 -0.269531 2.746094 -0.210938 2.65625 -0.160156 C 2.566406 -0.109375 2.472656 -0.0664062 2.371094 -0.0351562 C 2.269531 -0.00390625 2.167969 0.0195312 2.0625 0.0351562 C 1.953125 0.0507812 1.851562 0.0585938 1.746094 0.0585938 C 1.527344 0.0585938 1.324219 0.046875 1.136719 0.0273438 C 0.953125 0.0078125 0.769531 -0.0234375 0.59375 -0.0664062 L 0.59375 -0.585938 C 0.785156 -0.53125 0.972656 -0.492188 1.164062 -0.460938 C 1.351562 -0.433594 1.539062 -0.417969 1.726562 -0.417969 C 1.996094 -0.417969 2.195312 -0.457031 2.328125 -0.53125 C 2.457031 -0.605469 2.523438 -0.710938 2.523438 -0.847656 C 2.523438 -0.90625 2.511719 -0.957031 2.492188 -1.003906 C 2.472656 -1.050781 2.433594 -1.09375 2.378906 -1.136719 C 2.324219 -1.179688 2.242188 -1.222656 2.128906 -1.269531 C 2.011719 -1.316406 1.859375 -1.367188 1.660156 -1.425781 C 1.511719 -1.46875 1.375 -1.519531 1.25 -1.574219 C 1.125 -1.628906 1.019531 -1.695312 0.925781 -1.769531 C 0.835938 -1.847656 0.765625 -1.9375 0.710938 -2.039062 C 0.660156 -2.140625 0.632812 -2.261719 0.632812 -2.398438 C 0.632812 -2.492188 0.65625 -2.589844 0.699219 -2.699219 C 0.742188 -2.808594 0.8125 -2.90625 0.914062 -3 C 1.015625 -3.09375 1.15625 -3.171875 1.328125 -3.234375 C 1.5 -3.296875 1.71875 -3.328125 1.980469 -3.328125 C 2.105469 -3.328125 2.25 -3.320312 2.40625 -3.304688 C 2.5625 -3.292969 2.722656 -3.265625 2.894531 -3.230469 L 2.894531 -2.726562 C 2.714844 -2.769531 2.546875 -2.804688 2.386719 -2.824219 C 2.226562 -2.84375 2.089844 -2.855469 1.972656 -2.855469 C 1.832031 -2.855469 1.710938 -2.84375 1.617188 -2.820312 C 1.519531 -2.800781 1.441406 -2.769531 1.382812 -2.734375 C 1.320312 -2.695312 1.277344 -2.648438 1.253906 -2.597656 C 1.226562 -2.546875 1.214844 -2.492188 1.214844 -2.433594 C 1.214844 -2.375 1.226562 -2.324219 1.25 -2.273438 C 1.269531 -2.226562 1.3125 -2.179688 1.375 -2.136719 C 1.4375 -2.09375 1.523438 -2.046875 1.632812 -2.003906 C 1.746094 -1.960938 1.890625 -1.910156 2.066406 -1.859375 C 2.261719 -1.800781 2.421875 -1.742188 2.554688 -1.679688 C 2.6875 -1.621094 2.796875 -1.550781 2.878906 -1.472656 C 2.960938 -1.398438 3.019531 -1.3125 3.054688 -1.21875 C 3.089844 -1.121094 3.109375 -1.011719 3.109375 -0.890625 Z "/>
</g>
<g id="glyph-2-8">
<path d="M 3.3125 -1.691406 C 3.3125 -1.402344 3.273438 -1.148438 3.191406 -0.929688 C 3.109375 -0.714844 2.996094 -0.535156 2.855469 -0.390625 C 2.710938 -0.246094 2.542969 -0.140625 2.347656 -0.0703125 C 2.152344 0.00390625 1.941406 0.0390625 1.710938 0.0390625 C 1.609375 0.0390625 1.503906 0.0351562 1.402344 0.0234375 C 1.296875 0.0117188 1.195312 -0.0078125 1.085938 -0.03125 L 1.085938 1.335938 L 0.519531 1.335938 L 0.519531 -3.269531 L 1.023438 -3.269531 L 1.0625 -2.722656 C 1.222656 -2.945312 1.398438 -3.101562 1.582031 -3.191406 C 1.765625 -3.28125 1.964844 -3.328125 2.179688 -3.328125 C 2.367188 -3.328125 2.53125 -3.289062 2.671875 -3.210938 C 2.8125 -3.132812 2.933594 -3.019531 3.027344 -2.878906 C 3.121094 -2.738281 3.195312 -2.566406 3.242188 -2.363281 C 3.289062 -2.164062 3.3125 -1.941406 3.3125 -1.691406 M 2.734375 -1.667969 C 2.734375 -1.839844 2.722656 -1.996094 2.695312 -2.140625 C 2.671875 -2.28125 2.632812 -2.40625 2.578125 -2.507812 C 2.523438 -2.609375 2.453125 -2.6875 2.371094 -2.746094 C 2.285156 -2.804688 2.183594 -2.832031 2.066406 -2.832031 C 1.996094 -2.832031 1.921875 -2.820312 1.847656 -2.796875 C 1.773438 -2.773438 1.699219 -2.738281 1.621094 -2.683594 C 1.539062 -2.628906 1.457031 -2.558594 1.367188 -2.472656 C 1.28125 -2.382812 1.1875 -2.273438 1.085938 -2.144531 L 1.085938 -0.558594 C 1.191406 -0.515625 1.300781 -0.480469 1.414062 -0.457031 C 1.53125 -0.433594 1.644531 -0.417969 1.753906 -0.417969 C 2.0625 -0.417969 2.300781 -0.523438 2.472656 -0.730469 C 2.648438 -0.9375 2.734375 -1.25 2.734375 -1.667969 Z "/>
</g>
<g id="glyph-2-9">
<path d="M 3.367188 -1.660156 C 3.367188 -1.40625 3.328125 -1.171875 3.257812 -0.960938 C 3.1875 -0.75 3.082031 -0.570312 2.949219 -0.417969 C 2.816406 -0.265625 2.652344 -0.148438 2.457031 -0.0664062 C 2.265625 0.015625 2.046875 0.0585938 1.800781 0.0585938 C 1.566406 0.0585938 1.355469 0.0234375 1.171875 -0.0507812 C 0.984375 -0.125 0.828125 -0.230469 0.699219 -0.371094 C 0.570312 -0.511719 0.46875 -0.6875 0.402344 -0.894531 C 0.332031 -1.101562 0.300781 -1.34375 0.300781 -1.613281 C 0.300781 -1.867188 0.335938 -2.101562 0.40625 -2.308594 C 0.476562 -2.519531 0.582031 -2.699219 0.714844 -2.851562 C 0.851562 -3 1.015625 -3.117188 1.207031 -3.203125 C 1.402344 -3.285156 1.621094 -3.328125 1.863281 -3.328125 C 2.101562 -3.328125 2.308594 -3.289062 2.496094 -3.21875 C 2.679688 -3.144531 2.839844 -3.039062 2.96875 -2.898438 C 3.097656 -2.757812 3.195312 -2.585938 3.261719 -2.375 C 3.332031 -2.167969 3.367188 -1.929688 3.367188 -1.660156 M 2.785156 -1.632812 C 2.785156 -1.835938 2.765625 -2.011719 2.71875 -2.164062 C 2.675781 -2.3125 2.613281 -2.441406 2.527344 -2.539062 C 2.445312 -2.640625 2.347656 -2.71875 2.226562 -2.769531 C 2.109375 -2.820312 1.976562 -2.84375 1.832031 -2.84375 C 1.664062 -2.84375 1.519531 -2.8125 1.398438 -2.746094 C 1.277344 -2.679688 1.179688 -2.589844 1.101562 -2.480469 C 1.023438 -2.371094 0.96875 -2.242188 0.933594 -2.09375 C 0.898438 -1.949219 0.878906 -1.792969 0.878906 -1.632812 C 0.878906 -1.433594 0.902344 -1.253906 0.945312 -1.101562 C 0.988281 -0.953125 1.054688 -0.824219 1.136719 -0.722656 C 1.21875 -0.625 1.316406 -0.546875 1.433594 -0.496094 C 1.550781 -0.445312 1.683594 -0.417969 1.832031 -0.417969 C 2 -0.417969 2.148438 -0.453125 2.265625 -0.519531 C 2.386719 -0.585938 2.488281 -0.671875 2.5625 -0.785156 C 2.640625 -0.894531 2.695312 -1.023438 2.734375 -1.171875 C 2.769531 -1.316406 2.785156 -1.472656 2.785156 -1.632812 Z "/>
</g>
<g id="glyph-2-10">
<path d="M 0.519531 -3.269531 L 1.023438 -3.269531 L 1.046875 -2.742188 C 1.144531 -2.855469 1.234375 -2.949219 1.324219 -3.023438 C 1.414062 -3.097656 1.5 -3.15625 1.585938 -3.203125 C 1.671875 -3.25 1.761719 -3.28125 1.847656 -3.300781 C 1.9375 -3.316406 2.03125 -3.328125 2.125 -3.328125 C 2.460938 -3.328125 2.714844 -3.226562 2.890625 -3.027344 C 3.0625 -2.832031 3.148438 -2.53125 3.148438 -2.132812 L 3.148438 0 L 2.582031 0 L 2.582031 -2.085938 C 2.582031 -2.34375 2.535156 -2.53125 2.4375 -2.65625 C 2.34375 -2.777344 2.199219 -2.839844 2.011719 -2.839844 C 1.941406 -2.839844 1.875 -2.828125 1.808594 -2.808594 C 1.742188 -2.785156 1.671875 -2.75 1.601562 -2.699219 C 1.53125 -2.648438 1.453125 -2.582031 1.367188 -2.492188 C 1.285156 -2.40625 1.191406 -2.296875 1.085938 -2.167969 L 1.085938 0 L 0.519531 0 Z "/>
</g>
<g id="glyph-2-11">
<path d="M 1.804688 -1.023438 C 1.878906 -1.023438 1.949219 -1.011719 2.015625 -0.984375 C 2.082031 -0.953125 2.140625 -0.914062 2.1875 -0.867188 C 2.238281 -0.816406 2.277344 -0.757812 2.304688 -0.691406 C 2.332031 -0.625 2.347656 -0.554688 2.347656 -0.476562 C 2.347656 -0.40625 2.332031 -0.335938 2.304688 -0.269531 C 2.277344 -0.203125 2.238281 -0.148438 2.1875 -0.0976562 C 2.140625 -0.0507812 2.082031 -0.0117188 2.015625 0.015625 C 1.949219 0.0429688 1.878906 0.0585938 1.804688 0.0585938 C 1.730469 0.0585938 1.660156 0.0429688 1.59375 0.015625 C 1.53125 -0.0117188 1.472656 -0.0507812 1.425781 -0.0976562 C 1.375 -0.148438 1.335938 -0.203125 1.308594 -0.269531 C 1.28125 -0.335938 1.265625 -0.40625 1.265625 -0.476562 C 1.265625 -0.554688 1.28125 -0.625 1.308594 -0.691406 C 1.335938 -0.757812 1.375 -0.816406 1.425781 -0.867188 C 1.472656 -0.914062 1.53125 -0.953125 1.59375 -0.984375 C 1.660156 -1.011719 1.730469 -1.023438 1.804688 -1.023438 Z "/>
</g>
<g id="glyph-2-12">
<path d="M 3.421875 -4.070312 C 3.125 -4.136719 2.867188 -4.167969 2.652344 -4.167969 C 2.144531 -4.167969 1.886719 -3.898438 1.886719 -3.367188 L 1.886719 -2.792969 L 3.320312 -2.792969 L 3.320312 -2.320312 L 1.886719 -2.320312 L 1.886719 0 L 1.3125 0 L 1.3125 -2.320312 L 0.261719 -2.320312 L 0.261719 -2.792969 L 1.3125 -2.792969 L 1.3125 -3.332031 C 1.3125 -4.203125 1.765625 -4.640625 2.671875 -4.640625 C 2.898438 -4.640625 3.148438 -4.613281 3.421875 -4.5625 Z "/>
</g>
<g id="glyph-2-13">
<path d="M 0.355469 -1.566406 C 0.355469 -1.84375 0.394531 -2.089844 0.46875 -2.304688 C 0.542969 -2.523438 0.652344 -2.703125 0.792969 -2.851562 C 0.933594 -3 1.101562 -3.113281 1.296875 -3.191406 C 1.492188 -3.269531 1.710938 -3.308594 1.953125 -3.308594 C 2.058594 -3.308594 2.160156 -3.300781 2.261719 -3.289062 C 2.363281 -3.273438 2.460938 -3.253906 2.558594 -3.226562 L 2.558594 -4.601562 L 3.128906 -4.601562 L 3.128906 0 L 2.621094 0 L 2.601562 -0.617188 C 2.441406 -0.386719 2.269531 -0.21875 2.085938 -0.105469 C 1.902344 0.00390625 1.703125 0.0585938 1.488281 0.0585938 C 1.300781 0.0585938 1.136719 0.0195312 0.996094 -0.0585938 C 0.851562 -0.136719 0.734375 -0.246094 0.640625 -0.390625 C 0.546875 -0.53125 0.472656 -0.703125 0.425781 -0.902344 C 0.378906 -1.101562 0.355469 -1.324219 0.355469 -1.566406 M 0.933594 -1.601562 C 0.933594 -1.207031 0.992188 -0.910156 1.109375 -0.71875 C 1.222656 -0.523438 1.390625 -0.425781 1.601562 -0.425781 C 1.746094 -0.425781 1.894531 -0.492188 2.054688 -0.617188 C 2.214844 -0.746094 2.382812 -0.9375 2.558594 -1.1875 L 2.558594 -2.703125 C 2.464844 -2.75 2.363281 -2.78125 2.25 -2.804688 C 2.136719 -2.828125 2.023438 -2.839844 1.914062 -2.839844 C 1.605469 -2.839844 1.367188 -2.738281 1.191406 -2.539062 C 1.019531 -2.339844 0.933594 -2.027344 0.933594 -1.601562 Z "/>
</g>
<g id="glyph-2-14">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-2-15">
<path d="M 1.558594 -4.601562 L 1.46875 -3.074219 L 0.933594 -3.074219 L 0.839844 -4.601562 L 1.558594 -4.601562 M 2.824219 -4.601562 L 2.734375 -3.074219 L 2.199219 -3.074219 L 2.105469 -4.601562 Z "/>
</g>
<g id="glyph-2-16">
<path d="M 3.148438 0 L 2.582031 0 L 2.582031 -2.085938 C 2.582031 -2.339844 2.535156 -2.527344 2.441406 -2.652344 C 2.34375 -2.777344 2.210938 -2.839844 2.035156 -2.839844 C 1.957031 -2.839844 1.886719 -2.828125 1.820312 -2.808594 C 1.753906 -2.785156 1.6875 -2.75 1.613281 -2.699219 C 1.542969 -2.648438 1.464844 -2.582031 1.378906 -2.492188 C 1.296875 -2.40625 1.199219 -2.296875 1.085938 -2.167969 L 1.085938 0 L 0.519531 0 L 0.519531 -4.601562 L 1.085938 -4.601562 L 1.085938 -3.269531 L 1.066406 -2.753906 C 1.15625 -2.859375 1.242188 -2.949219 1.328125 -3.023438 C 1.414062 -3.09375 1.5 -3.152344 1.585938 -3.199219 C 1.671875 -3.246094 1.761719 -3.277344 1.847656 -3.296875 C 1.9375 -3.316406 2.03125 -3.328125 2.125 -3.328125 C 2.453125 -3.328125 2.703125 -3.226562 2.878906 -3.027344 C 3.058594 -2.832031 3.148438 -2.53125 3.148438 -2.132812 Z "/>
</g>
<g id="glyph-2-17">
<path d="M 3.246094 0 L 0.574219 0 L 0.574219 -0.527344 L 1.667969 -0.527344 L 1.667969 -3.632812 L 0.648438 -3.078125 L 0.4375 -3.5625 L 1.792969 -4.273438 L 2.296875 -4.273438 L 2.296875 -0.527344 L 3.246094 -0.527344 Z "/>
</g>
<g id="glyph-2-18">
<path d="M 1.1875 -4.847656 C 2.1875 -3.921875 2.6875 -2.890625 2.6875 -1.753906 C 2.6875 -1.519531 2.664062 -1.277344 2.617188 -1.023438 C 2.570312 -0.773438 2.488281 -0.515625 2.375 -0.253906 C 2.257812 0.0117188 2.101562 0.277344 1.910156 0.550781 C 1.714844 0.820312 1.46875 1.09375 1.175781 1.367188 L 0.847656 1.03125 C 1.269531 0.613281 1.585938 0.175781 1.792969 -0.28125 C 2 -0.734375 2.105469 -1.214844 2.105469 -1.710938 C 2.105469 -2.746094 1.6875 -3.675781 0.847656 -4.5 Z "/>
</g>
<g id="glyph-3-0">
<path d="M 0.355469 -1.566406 C 0.355469 -1.84375 0.394531 -2.089844 0.46875 -2.304688 C 0.542969 -2.523438 0.652344 -2.703125 0.792969 -2.851562 C 0.933594 -3 1.101562 -3.113281 1.296875 -3.191406 C 1.492188 -3.269531 1.710938 -3.308594 1.953125 -3.308594 C 2.058594 -3.308594 2.160156 -3.300781 2.261719 -3.289062 C 2.363281 -3.273438 2.460938 -3.253906 2.558594 -3.226562 L 2.558594 -4.601562 L 3.128906 -4.601562 L 3.128906 0 L 2.621094 0 L 2.601562 -0.617188 C 2.441406 -0.386719 2.269531 -0.21875 2.085938 -0.105469 C 1.902344 0.00390625 1.703125 0.0585938 1.488281 0.0585938 C 1.300781 0.0585938 1.136719 0.0195312 0.996094 -0.0585938 C 0.851562 -0.136719 0.734375 -0.246094 0.640625 -0.390625 C 0.546875 -0.53125 0.472656 -0.703125 0.425781 -0.902344 C 0.378906 -1.101562 0.355469 -1.324219 0.355469 -1.566406 M 0.933594 -1.601562 C 0.933594 -1.207031 0.992188 -0.910156 1.109375 -0.71875 C 1.222656 -0.523438 1.390625 -0.425781 1.601562 -0.425781 C 1.746094 -0.425781 1.894531 -0.492188 2.054688 -0.617188 C 2.214844 -0.746094 2.382812 -0.9375 2.558594 -1.1875 L 2.558594 -2.703125 C 2.464844 -2.75 2.363281 -2.78125 2.25 -2.804688 C 2.136719 -2.828125 2.023438 -2.839844 1.914062 -2.839844 C 1.605469 -2.839844 1.367188 -2.738281 1.191406 -2.539062 C 1.019531 -2.339844 0.933594 -2.027344 0.933594 -1.601562 Z "/>
</g>
<g id="glyph-3-1">
<path d="M 2.621094 0 L 2.605469 -0.4375 C 2.429688 -0.265625 2.25 -0.136719 2.066406 -0.0585938 C 1.882812 0.0195312 1.6875 0.0585938 1.488281 0.0585938 C 1.300781 0.0585938 1.140625 0.0351562 1.007812 -0.0117188 C 0.875 -0.0625 0.769531 -0.125 0.683594 -0.210938 C 0.597656 -0.292969 0.535156 -0.390625 0.492188 -0.503906 C 0.453125 -0.617188 0.433594 -0.738281 0.433594 -0.871094 C 0.433594 -1.199219 0.554688 -1.457031 0.800781 -1.640625 C 1.042969 -1.828125 1.402344 -1.921875 1.882812 -1.921875 L 2.558594 -1.921875 L 2.558594 -2.207031 C 2.558594 -2.398438 2.496094 -2.554688 2.375 -2.671875 C 2.25 -2.785156 2.0625 -2.84375 1.804688 -2.84375 C 1.621094 -2.84375 1.441406 -2.824219 1.261719 -2.78125 C 1.082031 -2.742188 0.898438 -2.683594 0.707031 -2.605469 L 0.707031 -3.117188 C 0.777344 -3.144531 0.859375 -3.171875 0.945312 -3.195312 C 1.035156 -3.21875 1.125 -3.242188 1.222656 -3.261719 C 1.320312 -3.28125 1.421875 -3.296875 1.53125 -3.308594 C 1.636719 -3.320312 1.742188 -3.328125 1.851562 -3.328125 C 2.050781 -3.328125 2.226562 -3.304688 2.386719 -3.261719 C 2.542969 -3.21875 2.679688 -3.152344 2.789062 -3.0625 C 2.898438 -2.972656 2.980469 -2.863281 3.039062 -2.726562 C 3.097656 -2.59375 3.128906 -2.433594 3.128906 -2.253906 L 3.128906 0 L 2.621094 0 M 2.558594 -1.488281 L 1.839844 -1.488281 C 1.699219 -1.488281 1.578125 -1.472656 1.472656 -1.445312 C 1.371094 -1.417969 1.289062 -1.375 1.222656 -1.324219 C 1.160156 -1.273438 1.109375 -1.210938 1.078125 -1.136719 C 1.046875 -1.066406 1.03125 -0.984375 1.03125 -0.890625 C 1.03125 -0.828125 1.042969 -0.769531 1.0625 -0.710938 C 1.082031 -0.652344 1.113281 -0.601562 1.15625 -0.558594 C 1.199219 -0.515625 1.253906 -0.476562 1.324219 -0.453125 C 1.394531 -0.425781 1.480469 -0.414062 1.578125 -0.414062 C 1.707031 -0.414062 1.859375 -0.453125 2.027344 -0.53125 C 2.195312 -0.613281 2.371094 -0.738281 2.558594 -0.90625 Z "/>
</g>
<g id="glyph-3-2">
<path d="M 3.152344 -0.046875 C 3.027344 -0.0117188 2.894531 0.0117188 2.757812 0.0234375 C 2.621094 0.0390625 2.480469 0.046875 2.339844 0.046875 C 1.929688 0.046875 1.625 -0.046875 1.421875 -0.234375 C 1.21875 -0.417969 1.121094 -0.703125 1.121094 -1.085938 L 1.121094 -2.792969 L 0.203125 -2.792969 L 0.203125 -3.269531 L 1.121094 -3.269531 L 1.121094 -4.167969 L 1.6875 -4.3125 L 1.6875 -3.269531 L 3.152344 -3.269531 L 3.152344 -2.792969 L 1.6875 -2.792969 L 1.6875 -1.132812 C 1.6875 -0.898438 1.75 -0.722656 1.875 -0.605469 C 2 -0.492188 2.183594 -0.433594 2.425781 -0.433594 C 2.527344 -0.433594 2.644531 -0.441406 2.765625 -0.457031 C 2.890625 -0.472656 3.019531 -0.5 3.152344 -0.535156 Z "/>
</g>
<g id="glyph-3-3">
</g>
<g id="glyph-3-4">
<path d="M 3.230469 -2.101562 L 0.433594 -2.101562 L 0.433594 -2.582031 L 3.230469 -2.582031 L 3.230469 -2.101562 M 3.230469 -0.96875 L 0.433594 -0.96875 L 0.433594 -1.449219 L 3.230469 -1.449219 Z "/>
</g>
<g id="glyph-3-5">
<path d="M 0.652344 -3.269531 L 1.171875 -3.269531 L 1.1875 -2.664062 C 1.382812 -2.898438 1.570312 -3.066406 1.757812 -3.171875 C 1.945312 -3.273438 2.136719 -3.328125 2.328125 -3.328125 C 2.664062 -3.328125 2.921875 -3.21875 3.097656 -2.996094 C 3.273438 -2.777344 3.351562 -2.453125 3.339844 -2.023438 L 2.765625 -2.023438 C 2.773438 -2.308594 2.730469 -2.515625 2.640625 -2.644531 C 2.550781 -2.773438 2.417969 -2.839844 2.246094 -2.839844 C 2.171875 -2.839844 2.09375 -2.824219 2.015625 -2.796875 C 1.941406 -2.769531 1.859375 -2.726562 1.777344 -2.667969 C 1.699219 -2.609375 1.609375 -2.53125 1.519531 -2.4375 C 1.429688 -2.34375 1.332031 -2.230469 1.226562 -2.101562 L 1.226562 0 L 0.652344 0 Z "/>
</g>
<g id="glyph-3-6">
<path d="M 3.28125 -1.804688 C 3.28125 -1.726562 3.28125 -1.660156 3.277344 -1.605469 C 3.277344 -1.550781 3.273438 -1.5 3.269531 -1.453125 L 0.972656 -1.453125 C 0.972656 -1.117188 1.066406 -0.859375 1.253906 -0.683594 C 1.441406 -0.503906 1.707031 -0.414062 2.0625 -0.414062 C 2.15625 -0.414062 2.25 -0.417969 2.347656 -0.425781 C 2.441406 -0.433594 2.535156 -0.441406 2.625 -0.457031 C 2.710938 -0.46875 2.796875 -0.484375 2.878906 -0.5 C 2.960938 -0.515625 3.035156 -0.535156 3.105469 -0.554688 L 3.105469 -0.0859375 C 2.953125 -0.0429688 2.777344 -0.0078125 2.582031 0.0195312 C 2.390625 0.046875 2.1875 0.0585938 1.980469 0.0585938 C 1.699219 0.0585938 1.457031 0.0195312 1.257812 -0.0546875 C 1.054688 -0.132812 0.890625 -0.242188 0.761719 -0.386719 C 0.632812 -0.53125 0.535156 -0.707031 0.472656 -0.917969 C 0.410156 -1.125 0.378906 -1.363281 0.378906 -1.628906 C 0.378906 -1.859375 0.414062 -2.074219 0.480469 -2.28125 C 0.546875 -2.484375 0.644531 -2.664062 0.769531 -2.820312 C 0.898438 -2.976562 1.050781 -3.097656 1.238281 -3.191406 C 1.421875 -3.28125 1.628906 -3.328125 1.863281 -3.328125 C 2.09375 -3.328125 2.296875 -3.289062 2.46875 -3.21875 C 2.644531 -3.148438 2.792969 -3.046875 2.914062 -2.914062 C 3.035156 -2.785156 3.125 -2.625 3.1875 -2.4375 C 3.25 -2.25 3.28125 -2.039062 3.28125 -1.804688 M 2.691406 -1.886719 C 2.699219 -2.035156 2.683594 -2.167969 2.648438 -2.285156 C 2.613281 -2.40625 2.5625 -2.511719 2.488281 -2.597656 C 2.414062 -2.683594 2.324219 -2.753906 2.21875 -2.800781 C 2.109375 -2.851562 1.980469 -2.875 1.839844 -2.875 C 1.714844 -2.875 1.601562 -2.851562 1.5 -2.800781 C 1.398438 -2.753906 1.3125 -2.6875 1.238281 -2.601562 C 1.164062 -2.515625 1.101562 -2.410156 1.058594 -2.289062 C 1.011719 -2.167969 0.984375 -2.035156 0.972656 -1.886719 Z "/>
</g>
<g id="glyph-3-7">
<path d="M 3.109375 -0.890625 C 3.109375 -0.777344 3.089844 -0.671875 3.050781 -0.582031 C 3.011719 -0.492188 2.957031 -0.410156 2.890625 -0.339844 C 2.824219 -0.269531 2.746094 -0.210938 2.65625 -0.160156 C 2.566406 -0.109375 2.472656 -0.0664062 2.371094 -0.0351562 C 2.269531 -0.00390625 2.167969 0.0195312 2.0625 0.0351562 C 1.953125 0.0507812 1.851562 0.0585938 1.746094 0.0585938 C 1.527344 0.0585938 1.324219 0.046875 1.136719 0.0273438 C 0.953125 0.0078125 0.769531 -0.0234375 0.59375 -0.0664062 L 0.59375 -0.585938 C 0.785156 -0.53125 0.972656 -0.492188 1.164062 -0.460938 C 1.351562 -0.433594 1.539062 -0.417969 1.726562 -0.417969 C 1.996094 -0.417969 2.195312 -0.457031 2.328125 -0.53125 C 2.457031 -0.605469 2.523438 -0.710938 2.523438 -0.847656 C 2.523438 -0.90625 2.511719 -0.957031 2.492188 -1.003906 C 2.472656 -1.050781 2.433594 -1.09375 2.378906 -1.136719 C 2.324219 -1.179688 2.242188 -1.222656 2.128906 -1.269531 C 2.011719 -1.316406 1.859375 -1.367188 1.660156 -1.425781 C 1.511719 -1.46875 1.375 -1.519531 1.25 -1.574219 C 1.125 -1.628906 1.019531 -1.695312 0.925781 -1.769531 C 0.835938 -1.847656 0.765625 -1.9375 0.710938 -2.039062 C 0.660156 -2.140625 0.632812 -2.261719 0.632812 -2.398438 C 0.632812 -2.492188 0.65625 -2.589844 0.699219 -2.699219 C 0.742188 -2.808594 0.8125 -2.90625 0.914062 -3 C 1.015625 -3.09375 1.15625 -3.171875 1.328125 -3.234375 C 1.5 -3.296875 1.71875 -3.328125 1.980469 -3.328125 C 2.105469 -3.328125 2.25 -3.320312 2.40625 -3.304688 C 2.5625 -3.292969 2.722656 -3.265625 2.894531 -3.230469 L 2.894531 -2.726562 C 2.714844 -2.769531 2.546875 -2.804688 2.386719 -2.824219 C 2.226562 -2.84375 2.089844 -2.855469 1.972656 -2.855469 C 1.832031 -2.855469 1.710938 -2.84375 1.617188 -2.820312 C 1.519531 -2.800781 1.441406 -2.769531 1.382812 -2.734375 C 1.320312 -2.695312 1.277344 -2.648438 1.253906 -2.597656 C 1.226562 -2.546875 1.214844 -2.492188 1.214844 -2.433594 C 1.214844 -2.375 1.226562 -2.324219 1.25 -2.273438 C 1.269531 -2.226562 1.3125 -2.179688 1.375 -2.136719 C 1.4375 -2.09375 1.523438 -2.046875 1.632812 -2.003906 C 1.746094 -1.960938 1.890625 -1.910156 2.066406 -1.859375 C 2.261719 -1.800781 2.421875 -1.742188 2.554688 -1.679688 C 2.6875 -1.621094 2.796875 -1.550781 2.878906 -1.472656 C 2.960938 -1.398438 3.019531 -1.3125 3.054688 -1.21875 C 3.089844 -1.121094 3.109375 -1.011719 3.109375 -0.890625 Z "/>
</g>
<g id="glyph-3-8">
<path d="M 3.3125 -1.691406 C 3.3125 -1.402344 3.273438 -1.148438 3.191406 -0.929688 C 3.109375 -0.714844 2.996094 -0.535156 2.855469 -0.390625 C 2.710938 -0.246094 2.542969 -0.140625 2.347656 -0.0703125 C 2.152344 0.00390625 1.941406 0.0390625 1.710938 0.0390625 C 1.609375 0.0390625 1.503906 0.0351562 1.402344 0.0234375 C 1.296875 0.0117188 1.195312 -0.0078125 1.085938 -0.03125 L 1.085938 1.335938 L 0.519531 1.335938 L 0.519531 -3.269531 L 1.023438 -3.269531 L 1.0625 -2.722656 C 1.222656 -2.945312 1.398438 -3.101562 1.582031 -3.191406 C 1.765625 -3.28125 1.964844 -3.328125 2.179688 -3.328125 C 2.367188 -3.328125 2.53125 -3.289062 2.671875 -3.210938 C 2.8125 -3.132812 2.933594 -3.019531 3.027344 -2.878906 C 3.121094 -2.738281 3.195312 -2.566406 3.242188 -2.363281 C 3.289062 -2.164062 3.3125 -1.941406 3.3125 -1.691406 M 2.734375 -1.667969 C 2.734375 -1.839844 2.722656 -1.996094 2.695312 -2.140625 C 2.671875 -2.28125 2.632812 -2.40625 2.578125 -2.507812 C 2.523438 -2.609375 2.453125 -2.6875 2.371094 -2.746094 C 2.285156 -2.804688 2.183594 -2.832031 2.066406 -2.832031 C 1.996094 -2.832031 1.921875 -2.820312 1.847656 -2.796875 C 1.773438 -2.773438 1.699219 -2.738281 1.621094 -2.683594 C 1.539062 -2.628906 1.457031 -2.558594 1.367188 -2.472656 C 1.28125 -2.382812 1.1875 -2.273438 1.085938 -2.144531 L 1.085938 -0.558594 C 1.191406 -0.515625 1.300781 -0.480469 1.414062 -0.457031 C 1.53125 -0.433594 1.644531 -0.417969 1.753906 -0.417969 C 2.0625 -0.417969 2.300781 -0.523438 2.472656 -0.730469 C 2.648438 -0.9375 2.734375 -1.25 2.734375 -1.667969 Z "/>
</g>
<g id="glyph-3-9">
<path d="M 3.367188 -1.660156 C 3.367188 -1.40625 3.328125 -1.171875 3.257812 -0.960938 C 3.1875 -0.75 3.082031 -0.570312 2.949219 -0.417969 C 2.816406 -0.265625 2.652344 -0.148438 2.457031 -0.0664062 C 2.265625 0.015625 2.046875 0.0585938 1.800781 0.0585938 C 1.566406 0.0585938 1.355469 0.0234375 1.171875 -0.0507812 C 0.984375 -0.125 0.828125 -0.230469 0.699219 -0.371094 C 0.570312 -0.511719 0.46875 -0.6875 0.402344 -0.894531 C 0.332031 -1.101562 0.300781 -1.34375 0.300781 -1.613281 C 0.300781 -1.867188 0.335938 -2.101562 0.40625 -2.308594 C 0.476562 -2.519531 0.582031 -2.699219 0.714844 -2.851562 C 0.851562 -3 1.015625 -3.117188 1.207031 -3.203125 C 1.402344 -3.285156 1.621094 -3.328125 1.863281 -3.328125 C 2.101562 -3.328125 2.308594 -3.289062 2.496094 -3.21875 C 2.679688 -3.144531 2.839844 -3.039062 2.96875 -2.898438 C 3.097656 -2.757812 3.195312 -2.585938 3.261719 -2.375 C 3.332031 -2.167969 3.367188 -1.929688 3.367188 -1.660156 M 2.785156 -1.632812 C 2.785156 -1.835938 2.765625 -2.011719 2.71875 -2.164062 C 2.675781 -2.3125 2.613281 -2.441406 2.527344 -2.539062 C 2.445312 -2.640625 2.347656 -2.71875 2.226562 -2.769531 C 2.109375 -2.820312 1.976562 -2.84375 1.832031 -2.84375 C 1.664062 -2.84375 1.519531 -2.8125 1.398438 -2.746094 C 1.277344 -2.679688 1.179688 -2.589844 1.101562 -2.480469 C 1.023438 -2.371094 0.96875 -2.242188 0.933594 -2.09375 C 0.898438 -1.949219 0.878906 -1.792969 0.878906 -1.632812 C 0.878906 -1.433594 0.902344 -1.253906 0.945312 -1.101562 C 0.988281 -0.953125 1.054688 -0.824219 1.136719 -0.722656 C 1.21875 -0.625 1.316406 -0.546875 1.433594 -0.496094 C 1.550781 -0.445312 1.683594 -0.417969 1.832031 -0.417969 C 2 -0.417969 2.148438 -0.453125 2.265625 -0.519531 C 2.386719 -0.585938 2.488281 -0.671875 2.5625 -0.785156 C 2.640625 -0.894531 2.695312 -1.023438 2.734375 -1.171875 C 2.769531 -1.316406 2.785156 -1.472656 2.785156 -1.632812 Z "/>
</g>
<g id="glyph-3-10">
<path d="M 0.519531 -3.269531 L 1.023438 -3.269531 L 1.046875 -2.742188 C 1.144531 -2.855469 1.234375 -2.949219 1.324219 -3.023438 C 1.414062 -3.097656 1.5 -3.15625 1.585938 -3.203125 C 1.671875 -3.25 1.761719 -3.28125 1.847656 -3.300781 C 1.9375 -3.316406 2.03125 -3.328125 2.125 -3.328125 C 2.460938 -3.328125 2.714844 -3.226562 2.890625 -3.027344 C 3.0625 -2.832031 3.148438 -2.53125 3.148438 -2.132812 L 3.148438 0 L 2.582031 0 L 2.582031 -2.085938 C 2.582031 -2.34375 2.535156 -2.53125 2.4375 -2.65625 C 2.34375 -2.777344 2.199219 -2.839844 2.011719 -2.839844 C 1.941406 -2.839844 1.875 -2.828125 1.808594 -2.808594 C 1.742188 -2.785156 1.671875 -2.75 1.601562 -2.699219 C 1.53125 -2.648438 1.453125 -2.582031 1.367188 -2.492188 C 1.285156 -2.40625 1.191406 -2.296875 1.085938 -2.167969 L 1.085938 0 L 0.519531 0 Z "/>
</g>
<g id="glyph-3-11">
<path d="M 1.804688 -1.023438 C 1.878906 -1.023438 1.949219 -1.011719 2.015625 -0.984375 C 2.082031 -0.953125 2.140625 -0.914062 2.1875 -0.867188 C 2.238281 -0.816406 2.277344 -0.757812 2.304688 -0.691406 C 2.332031 -0.625 2.347656 -0.554688 2.347656 -0.476562 C 2.347656 -0.40625 2.332031 -0.335938 2.304688 -0.269531 C 2.277344 -0.203125 2.238281 -0.148438 2.1875 -0.0976562 C 2.140625 -0.0507812 2.082031 -0.0117188 2.015625 0.015625 C 1.949219 0.0429688 1.878906 0.0585938 1.804688 0.0585938 C 1.730469 0.0585938 1.660156 0.0429688 1.59375 0.015625 C 1.53125 -0.0117188 1.472656 -0.0507812 1.425781 -0.0976562 C 1.375 -0.148438 1.335938 -0.203125 1.308594 -0.269531 C 1.28125 -0.335938 1.265625 -0.40625 1.265625 -0.476562 C 1.265625 -0.554688 1.28125 -0.625 1.308594 -0.691406 C 1.335938 -0.757812 1.375 -0.816406 1.425781 -0.867188 C 1.472656 -0.914062 1.53125 -0.953125 1.59375 -0.984375 C 1.660156 -1.011719 1.730469 -1.023438 1.804688 -1.023438 Z "/>
</g>
<g id="glyph-3-12">
<path d="M 1.632812 -2.800781 L 0.667969 -2.800781 L 0.667969 -3.269531 L 2.207031 -3.269531 L 2.207031 -0.472656 L 3.179688 -0.472656 L 3.179688 0 L 0.558594 0 L 0.558594 -0.472656 L 1.632812 -0.472656 L 1.632812 -2.800781 M 1.832031 -4.640625 C 1.894531 -4.640625 1.953125 -4.628906 2.007812 -4.605469 C 2.0625 -4.582031 2.109375 -4.550781 2.148438 -4.507812 C 2.191406 -4.46875 2.222656 -4.421875 2.246094 -4.367188 C 2.265625 -4.3125 2.277344 -4.253906 2.277344 -4.191406 C 2.277344 -4.132812 2.265625 -4.074219 2.246094 -4.019531 C 2.222656 -3.964844 2.191406 -3.917969 2.148438 -3.875 C 2.109375 -3.835938 2.0625 -3.804688 2.007812 -3.78125 C 1.953125 -3.757812 1.894531 -3.746094 1.832031 -3.746094 C 1.769531 -3.746094 1.710938 -3.757812 1.65625 -3.78125 C 1.601562 -3.804688 1.554688 -3.835938 1.515625 -3.875 C 1.476562 -3.917969 1.445312 -3.964844 1.421875 -4.019531 C 1.398438 -4.074219 1.386719 -4.132812 1.386719 -4.191406 C 1.386719 -4.253906 1.398438 -4.3125 1.421875 -4.367188 C 1.445312 -4.421875 1.476562 -4.46875 1.515625 -4.507812 C 1.554688 -4.550781 1.601562 -4.582031 1.65625 -4.605469 C 1.710938 -4.628906 1.769531 -4.640625 1.832031 -4.640625 Z "/>
</g>
<g id="glyph-3-13">
<path d="M 3.058594 -0.121094 C 2.914062 -0.0625 2.761719 -0.0234375 2.605469 0.00390625 C 2.449219 0.03125 2.289062 0.046875 2.125 0.046875 C 1.609375 0.046875 1.210938 -0.09375 0.933594 -0.375 C 0.652344 -0.652344 0.515625 -1.0625 0.515625 -1.601562 C 0.515625 -1.859375 0.554688 -2.09375 0.632812 -2.304688 C 0.714844 -2.515625 0.828125 -2.695312 0.972656 -2.84375 C 1.117188 -2.996094 1.292969 -3.109375 1.492188 -3.191406 C 1.695312 -3.273438 1.917969 -3.3125 2.160156 -3.3125 C 2.332031 -3.3125 2.488281 -3.300781 2.636719 -3.277344 C 2.785156 -3.253906 2.925781 -3.214844 3.058594 -3.160156 L 3.058594 -2.621094 C 2.917969 -2.695312 2.773438 -2.746094 2.628906 -2.78125 C 2.480469 -2.816406 2.332031 -2.832031 2.175781 -2.832031 C 2.027344 -2.832031 1.890625 -2.804688 1.761719 -2.75 C 1.632812 -2.695312 1.519531 -2.613281 1.421875 -2.507812 C 1.324219 -2.40625 1.246094 -2.277344 1.191406 -2.128906 C 1.136719 -1.980469 1.105469 -1.808594 1.105469 -1.621094 C 1.105469 -1.226562 1.203125 -0.929688 1.394531 -0.734375 C 1.585938 -0.539062 1.851562 -0.4375 2.195312 -0.4375 C 2.347656 -0.4375 2.496094 -0.457031 2.640625 -0.492188 C 2.785156 -0.527344 2.925781 -0.578125 3.058594 -0.648438 Z "/>
</g>
<g id="glyph-3-14">
<path d="M 3.460938 0 L 2.683594 0 L 1.160156 -1.75 L 1.160156 0 L 0.59375 0 L 0.59375 -4.601562 L 1.160156 -4.601562 L 1.160156 -1.773438 L 2.625 -3.269531 L 3.375 -3.269531 L 1.84375 -1.761719 Z "/>
</g>
<g id="glyph-3-15">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-3-16">
<path d="M 1.632812 -4.132812 L 0.667969 -4.132812 L 0.667969 -4.601562 L 2.207031 -4.601562 L 2.207031 -0.472656 L 3.179688 -0.472656 L 3.179688 0 L 0.558594 0 L 0.558594 -0.472656 L 1.632812 -0.472656 Z "/>
</g>
<g id="glyph-3-17">
<path d="M 1.558594 -4.601562 L 1.46875 -3.074219 L 0.933594 -3.074219 L 0.839844 -4.601562 L 1.558594 -4.601562 M 2.824219 -4.601562 L 2.734375 -3.074219 L 2.199219 -3.074219 L 2.105469 -4.601562 Z "/>
</g>
<g id="glyph-3-18">
<path d="M 3.148438 0 L 2.582031 0 L 2.582031 -2.085938 C 2.582031 -2.339844 2.535156 -2.527344 2.441406 -2.652344 C 2.34375 -2.777344 2.210938 -2.839844 2.035156 -2.839844 C 1.957031 -2.839844 1.886719 -2.828125 1.820312 -2.808594 C 1.753906 -2.785156 1.6875 -2.75 1.613281 -2.699219 C 1.542969 -2.648438 1.464844 -2.582031 1.378906 -2.492188 C 1.296875 -2.40625 1.199219 -2.296875 1.085938 -2.167969 L 1.085938 0 L 0.519531 0 L 0.519531 -4.601562 L 1.085938 -4.601562 L 1.085938 -3.269531 L 1.066406 -2.753906 C 1.15625 -2.859375 1.242188 -2.949219 1.328125 -3.023438 C 1.414062 -3.09375 1.5 -3.152344 1.585938 -3.199219 C 1.671875 -3.246094 1.761719 -3.277344 1.847656 -3.296875 C 1.9375 -3.316406 2.03125 -3.328125 2.125 -3.328125 C 2.453125 -3.328125 2.703125 -3.226562 2.878906 -3.027344 C 3.058594 -2.832031 3.148438 -2.53125 3.148438 -2.132812 Z "/>
</g>
<g id="glyph-3-19">
<path d="M 3.246094 0 L 0.574219 0 L 0.574219 -0.527344 L 1.667969 -0.527344 L 1.667969 -3.632812 L 0.648438 -3.078125 L 0.4375 -3.5625 L 1.792969 -4.273438 L 2.296875 -4.273438 L 2.296875 -0.527344 L 3.246094 -0.527344 Z "/>
</g>
<g id="glyph-3-20">
<path d="M 0.773438 0.667969 C 0.886719 0.671875 0.992188 0.660156 1.097656 0.636719 C 1.203125 0.613281 1.292969 0.578125 1.371094 0.53125 C 1.453125 0.484375 1.515625 0.425781 1.5625 0.359375 C 1.609375 0.289062 1.632812 0.210938 1.632812 0.121094 C 1.632812 0.03125 1.617188 -0.0429688 1.585938 -0.101562 C 1.554688 -0.15625 1.519531 -0.210938 1.480469 -0.257812 C 1.441406 -0.304688 1.40625 -0.355469 1.375 -0.410156 C 1.34375 -0.464844 1.328125 -0.539062 1.328125 -0.628906 C 1.328125 -0.671875 1.335938 -0.722656 1.355469 -0.769531 C 1.371094 -0.820312 1.398438 -0.867188 1.433594 -0.90625 C 1.46875 -0.949219 1.515625 -0.984375 1.570312 -1.007812 C 1.625 -1.035156 1.691406 -1.046875 1.765625 -1.046875 C 1.84375 -1.046875 1.917969 -1.03125 1.988281 -1 C 2.058594 -0.96875 2.121094 -0.921875 2.171875 -0.855469 C 2.226562 -0.789062 2.269531 -0.710938 2.300781 -0.613281 C 2.332031 -0.515625 2.347656 -0.398438 2.347656 -0.265625 C 2.347656 -0.0859375 2.3125 0.0859375 2.246094 0.253906 C 2.179688 0.417969 2.082031 0.566406 1.953125 0.691406 C 1.820312 0.820312 1.65625 0.921875 1.460938 1 C 1.261719 1.074219 1.035156 1.113281 0.773438 1.113281 Z "/>
</g>
<g id="glyph-3-21">
<path d="M 3.421875 -4.070312 C 3.125 -4.136719 2.867188 -4.167969 2.652344 -4.167969 C 2.144531 -4.167969 1.886719 -3.898438 1.886719 -3.367188 L 1.886719 -2.792969 L 3.320312 -2.792969 L 3.320312 -2.320312 L 1.886719 -2.320312 L 1.886719 0 L 1.3125 0 L 1.3125 -2.320312 L 0.261719 -2.320312 L 0.261719 -2.792969 L 1.3125 -2.792969 L 1.3125 -3.332031 C 1.3125 -4.203125 1.765625 -4.640625 2.671875 -4.640625 C 2.898438 -4.640625 3.148438 -4.613281 3.421875 -4.5625 Z "/>
</g>
<g id="glyph-3-22">
<path d="M 1.1875 -4.847656 C 2.1875 -3.921875 2.6875 -2.890625 2.6875 -1.753906 C 2.6875 -1.519531 2.664062 -1.277344 2.617188 -1.023438 C 2.570312 -0.773438 2.488281 -0.515625 2.375 -0.253906 C 2.257812 0.0117188 2.101562 0.277344 1.910156 0.550781 C 1.714844 0.820312 1.46875 1.09375 1.175781 1.367188 L 0.847656 1.03125 C 1.269531 0.613281 1.585938 0.175781 1.792969 -0.28125 C 2 -0.734375 2.105469 -1.214844 2.105469 -1.710938 C 2.105469 -2.746094 1.6875 -3.675781 0.847656 -4.5 Z "/>
</g>
<g id="glyph-4-0">
<path d="M 0.355469 -1.566406 C 0.355469 -1.84375 0.394531 -2.089844 0.46875 -2.304688 C 0.542969 -2.523438 0.652344 -2.703125 0.792969 -2.851562 C 0.933594 -3 1.101562 -3.113281 1.296875 -3.191406 C 1.492188 -3.269531 1.710938 -3.308594 1.953125 -3.308594 C 2.058594 -3.308594 2.160156 -3.300781 2.261719 -3.289062 C 2.363281 -3.273438 2.460938 -3.253906 2.558594 -3.226562 L 2.558594 -4.601562 L 3.128906 -4.601562 L 3.128906 0 L 2.621094 0 L 2.601562 -0.617188 C 2.441406 -0.386719 2.269531 -0.21875 2.085938 -0.105469 C 1.902344 0.00390625 1.703125 0.0585938 1.488281 0.0585938 C 1.300781 0.0585938 1.136719 0.0195312 0.996094 -0.0585938 C 0.851562 -0.136719 0.734375 -0.246094 0.640625 -0.390625 C 0.546875 -0.53125 0.472656 -0.703125 0.425781 -0.902344 C 0.378906 -1.101562 0.355469 -1.324219 0.355469 -1.566406 M 0.933594 -1.601562 C 0.933594 -1.207031 0.992188 -0.910156 1.109375 -0.71875 C 1.222656 -0.523438 1.390625 -0.425781 1.601562 -0.425781 C 1.746094 -0.425781 1.894531 -0.492188 2.054688 -0.617188 C 2.214844 -0.746094 2.382812 -0.9375 2.558594 -1.1875 L 2.558594 -2.703125 C 2.464844 -2.75 2.363281 -2.78125 2.25 -2.804688 C 2.136719 -2.828125 2.023438 -2.839844 1.914062 -2.839844 C 1.605469 -2.839844 1.367188 -2.738281 1.191406 -2.539062 C 1.019531 -2.339844 0.933594 -2.027344 0.933594 -1.601562 Z "/>
</g>
<g id="glyph-4-1">
<path d="M 2.621094 0 L 2.605469 -0.4375 C 2.429688 -0.265625 2.25 -0.136719 2.066406 -0.0585938 C 1.882812 0.0195312 1.6875 0.0585938 1.488281 0.0585938 C 1.300781 0.0585938 1.140625 0.0351562 1.007812 -0.0117188 C 0.875 -0.0625 0.769531 -0.125 0.683594 -0.210938 C 0.597656 -0.292969 0.535156 -0.390625 0.492188 -0.503906 C 0.453125 -0.617188 0.433594 -0.738281 0.433594 -0.871094 C 0.433594 -1.199219 0.554688 -1.457031 0.800781 -1.640625 C 1.042969 -1.828125 1.402344 -1.921875 1.882812 -1.921875 L 2.558594 -1.921875 L 2.558594 -2.207031 C 2.558594 -2.398438 2.496094 -2.554688 2.375 -2.671875 C 2.25 -2.785156 2.0625 -2.84375 1.804688 -2.84375 C 1.621094 -2.84375 1.441406 -2.824219 1.261719 -2.78125 C 1.082031 -2.742188 0.898438 -2.683594 0.707031 -2.605469 L 0.707031 -3.117188 C 0.777344 -3.144531 0.859375 -3.171875 0.945312 -3.195312 C 1.035156 -3.21875 1.125 -3.242188 1.222656 -3.261719 C 1.320312 -3.28125 1.421875 -3.296875 1.53125 -3.308594 C 1.636719 -3.320312 1.742188 -3.328125 1.851562 -3.328125 C 2.050781 -3.328125 2.226562 -3.304688 2.386719 -3.261719 C 2.542969 -3.21875 2.679688 -3.152344 2.789062 -3.0625 C 2.898438 -2.972656 2.980469 -2.863281 3.039062 -2.726562 C 3.097656 -2.59375 3.128906 -2.433594 3.128906 -2.253906 L 3.128906 0 L 2.621094 0 M 2.558594 -1.488281 L 1.839844 -1.488281 C 1.699219 -1.488281 1.578125 -1.472656 1.472656 -1.445312 C 1.371094 -1.417969 1.289062 -1.375 1.222656 -1.324219 C 1.160156 -1.273438 1.109375 -1.210938 1.078125 -1.136719 C 1.046875 -1.066406 1.03125 -0.984375 1.03125 -0.890625 C 1.03125 -0.828125 1.042969 -0.769531 1.0625 -0.710938 C 1.082031 -0.652344 1.113281 -0.601562 1.15625 -0.558594 C 1.199219 -0.515625 1.253906 -0.476562 1.324219 -0.453125 C 1.394531 -0.425781 1.480469 -0.414062 1.578125 -0.414062 C 1.707031 -0.414062 1.859375 -0.453125 2.027344 -0.53125 C 2.195312 -0.613281 2.371094 -0.738281 2.558594 -0.90625 Z "/>
</g>
<g id="glyph-4-2">
<path d="M 3.152344 -0.046875 C 3.027344 -0.0117188 2.894531 0.0117188 2.757812 0.0234375 C 2.621094 0.0390625 2.480469 0.046875 2.339844 0.046875 C 1.929688 0.046875 1.625 -0.046875 1.421875 -0.234375 C 1.21875 -0.417969 1.121094 -0.703125 1.121094 -1.085938 L 1.121094 -2.792969 L 0.203125 -2.792969 L 0.203125 -3.269531 L 1.121094 -3.269531 L 1.121094 -4.167969 L 1.6875 -4.3125 L 1.6875 -3.269531 L 3.152344 -3.269531 L 3.152344 -2.792969 L 1.6875 -2.792969 L 1.6875 -1.132812 C 1.6875 -0.898438 1.75 -0.722656 1.875 -0.605469 C 2 -0.492188 2.183594 -0.433594 2.425781 -0.433594 C 2.527344 -0.433594 2.644531 -0.441406 2.765625 -0.457031 C 2.890625 -0.472656 3.019531 -0.5 3.152344 -0.535156 Z "/>
</g>
<g id="glyph-4-3">
<path d="M 1.804688 -1.023438 C 1.878906 -1.023438 1.949219 -1.011719 2.015625 -0.984375 C 2.082031 -0.953125 2.140625 -0.914062 2.1875 -0.867188 C 2.238281 -0.816406 2.277344 -0.757812 2.304688 -0.691406 C 2.332031 -0.625 2.347656 -0.554688 2.347656 -0.476562 C 2.347656 -0.40625 2.332031 -0.335938 2.304688 -0.269531 C 2.277344 -0.203125 2.238281 -0.148438 2.1875 -0.0976562 C 2.140625 -0.0507812 2.082031 -0.0117188 2.015625 0.015625 C 1.949219 0.0429688 1.878906 0.0585938 1.804688 0.0585938 C 1.730469 0.0585938 1.660156 0.0429688 1.59375 0.015625 C 1.53125 -0.0117188 1.472656 -0.0507812 1.425781 -0.0976562 C 1.375 -0.148438 1.335938 -0.203125 1.308594 -0.269531 C 1.28125 -0.335938 1.265625 -0.40625 1.265625 -0.476562 C 1.265625 -0.554688 1.28125 -0.625 1.308594 -0.691406 C 1.335938 -0.757812 1.375 -0.816406 1.425781 -0.867188 C 1.472656 -0.914062 1.53125 -0.953125 1.59375 -0.984375 C 1.660156 -1.011719 1.730469 -1.023438 1.804688 -1.023438 Z "/>
</g>
<g id="glyph-4-4">
<path d="M 3.109375 -0.890625 C 3.109375 -0.777344 3.089844 -0.671875 3.050781 -0.582031 C 3.011719 -0.492188 2.957031 -0.410156 2.890625 -0.339844 C 2.824219 -0.269531 2.746094 -0.210938 2.65625 -0.160156 C 2.566406 -0.109375 2.472656 -0.0664062 2.371094 -0.0351562 C 2.269531 -0.00390625 2.167969 0.0195312 2.0625 0.0351562 C 1.953125 0.0507812 1.851562 0.0585938 1.746094 0.0585938 C 1.527344 0.0585938 1.324219 0.046875 1.136719 0.0273438 C 0.953125 0.0078125 0.769531 -0.0234375 0.59375 -0.0664062 L 0.59375 -0.585938 C 0.785156 -0.53125 0.972656 -0.492188 1.164062 -0.460938 C 1.351562 -0.433594 1.539062 -0.417969 1.726562 -0.417969 C 1.996094 -0.417969 2.195312 -0.457031 2.328125 -0.53125 C 2.457031 -0.605469 2.523438 -0.710938 2.523438 -0.847656 C 2.523438 -0.90625 2.511719 -0.957031 2.492188 -1.003906 C 2.472656 -1.050781 2.433594 -1.09375 2.378906 -1.136719 C 2.324219 -1.179688 2.242188 -1.222656 2.128906 -1.269531 C 2.011719 -1.316406 1.859375 -1.367188 1.660156 -1.425781 C 1.511719 -1.46875 1.375 -1.519531 1.25 -1.574219 C 1.125 -1.628906 1.019531 -1.695312 0.925781 -1.769531 C 0.835938 -1.847656 0.765625 -1.9375 0.710938 -2.039062 C 0.660156 -2.140625 0.632812 -2.261719 0.632812 -2.398438 C 0.632812 -2.492188 0.65625 -2.589844 0.699219 -2.699219 C 0.742188 -2.808594 0.8125 -2.90625 0.914062 -3 C 1.015625 -3.09375 1.15625 -3.171875 1.328125 -3.234375 C 1.5 -3.296875 1.71875 -3.328125 1.980469 -3.328125 C 2.105469 -3.328125 2.25 -3.320312 2.40625 -3.304688 C 2.5625 -3.292969 2.722656 -3.265625 2.894531 -3.230469 L 2.894531 -2.726562 C 2.714844 -2.769531 2.546875 -2.804688 2.386719 -2.824219 C 2.226562 -2.84375 2.089844 -2.855469 1.972656 -2.855469 C 1.832031 -2.855469 1.710938 -2.84375 1.617188 -2.820312 C 1.519531 -2.800781 1.441406 -2.769531 1.382812 -2.734375 C 1.320312 -2.695312 1.277344 -2.648438 1.253906 -2.597656 C 1.226562 -2.546875 1.214844 -2.492188 1.214844 -2.433594 C 1.214844 -2.375 1.226562 -2.324219 1.25 -2.273438 C 1.269531 -2.226562 1.3125 -2.179688 1.375 -2.136719 C 1.4375 -2.09375 1.523438 -2.046875 1.632812 -2.003906 C 1.746094 -1.960938 1.890625 -1.910156 2.066406 -1.859375 C 2.261719 -1.800781 2.421875 -1.742188 2.554688 -1.679688 C 2.6875 -1.621094 2.796875 -1.550781 2.878906 -1.472656 C 2.960938 -1.398438 3.019531 -1.3125 3.054688 -1.21875 C 3.089844 -1.121094 3.109375 -1.011719 3.109375 -0.890625 Z "/>
</g>
<g id="glyph-4-5">
<path d="M 0.214844 -3.269531 L 0.859375 -3.269531 L 1.660156 -1.105469 L 1.832031 -0.578125 L 2.011719 -1.121094 L 2.804688 -3.269531 L 3.425781 -3.269531 L 2.144531 0 L 1.492188 0 Z "/>
</g>
<g id="glyph-4-6">
<path d="M 3.28125 -1.804688 C 3.28125 -1.726562 3.28125 -1.660156 3.277344 -1.605469 C 3.277344 -1.550781 3.273438 -1.5 3.269531 -1.453125 L 0.972656 -1.453125 C 0.972656 -1.117188 1.066406 -0.859375 1.253906 -0.683594 C 1.441406 -0.503906 1.707031 -0.414062 2.0625 -0.414062 C 2.15625 -0.414062 2.25 -0.417969 2.347656 -0.425781 C 2.441406 -0.433594 2.535156 -0.441406 2.625 -0.457031 C 2.710938 -0.46875 2.796875 -0.484375 2.878906 -0.5 C 2.960938 -0.515625 3.035156 -0.535156 3.105469 -0.554688 L 3.105469 -0.0859375 C 2.953125 -0.0429688 2.777344 -0.0078125 2.582031 0.0195312 C 2.390625 0.046875 2.1875 0.0585938 1.980469 0.0585938 C 1.699219 0.0585938 1.457031 0.0195312 1.257812 -0.0546875 C 1.054688 -0.132812 0.890625 -0.242188 0.761719 -0.386719 C 0.632812 -0.53125 0.535156 -0.707031 0.472656 -0.917969 C 0.410156 -1.125 0.378906 -1.363281 0.378906 -1.628906 C 0.378906 -1.859375 0.414062 -2.074219 0.480469 -2.28125 C 0.546875 -2.484375 0.644531 -2.664062 0.769531 -2.820312 C 0.898438 -2.976562 1.050781 -3.097656 1.238281 -3.191406 C 1.421875 -3.28125 1.628906 -3.328125 1.863281 -3.328125 C 2.09375 -3.328125 2.296875 -3.289062 2.46875 -3.21875 C 2.644531 -3.148438 2.792969 -3.046875 2.914062 -2.914062 C 3.035156 -2.785156 3.125 -2.625 3.1875 -2.4375 C 3.25 -2.25 3.28125 -2.039062 3.28125 -1.804688 M 2.691406 -1.886719 C 2.699219 -2.035156 2.683594 -2.167969 2.648438 -2.285156 C 2.613281 -2.40625 2.5625 -2.511719 2.488281 -2.597656 C 2.414062 -2.683594 2.324219 -2.753906 2.21875 -2.800781 C 2.109375 -2.851562 1.980469 -2.875 1.839844 -2.875 C 1.714844 -2.875 1.601562 -2.851562 1.5 -2.800781 C 1.398438 -2.753906 1.3125 -2.6875 1.238281 -2.601562 C 1.164062 -2.515625 1.101562 -2.410156 1.058594 -2.289062 C 1.011719 -2.167969 0.984375 -2.035156 0.972656 -1.886719 Z "/>
</g>
<g id="glyph-4-7">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-4-8">
<path d="M 1.558594 -4.601562 L 1.46875 -3.074219 L 0.933594 -3.074219 L 0.839844 -4.601562 L 1.558594 -4.601562 M 2.824219 -4.601562 L 2.734375 -3.074219 L 2.199219 -3.074219 L 2.105469 -4.601562 Z "/>
</g>
<g id="glyph-4-9">
<path d="M 3.367188 -1.660156 C 3.367188 -1.40625 3.328125 -1.171875 3.257812 -0.960938 C 3.1875 -0.75 3.082031 -0.570312 2.949219 -0.417969 C 2.816406 -0.265625 2.652344 -0.148438 2.457031 -0.0664062 C 2.265625 0.015625 2.046875 0.0585938 1.800781 0.0585938 C 1.566406 0.0585938 1.355469 0.0234375 1.171875 -0.0507812 C 0.984375 -0.125 0.828125 -0.230469 0.699219 -0.371094 C 0.570312 -0.511719 0.46875 -0.6875 0.402344 -0.894531 C 0.332031 -1.101562 0.300781 -1.34375 0.300781 -1.613281 C 0.300781 -1.867188 0.335938 -2.101562 0.40625 -2.308594 C 0.476562 -2.519531 0.582031 -2.699219 0.714844 -2.851562 C 0.851562 -3 1.015625 -3.117188 1.207031 -3.203125 C 1.402344 -3.285156 1.621094 -3.328125 1.863281 -3.328125 C 2.101562 -3.328125 2.308594 -3.289062 2.496094 -3.21875 C 2.679688 -3.144531 2.839844 -3.039062 2.96875 -2.898438 C 3.097656 -2.757812 3.195312 -2.585938 3.261719 -2.375 C 3.332031 -2.167969 3.367188 -1.929688 3.367188 -1.660156 M 2.785156 -1.632812 C 2.785156 -1.835938 2.765625 -2.011719 2.71875 -2.164062 C 2.675781 -2.3125 2.613281 -2.441406 2.527344 -2.539062 C 2.445312 -2.640625 2.347656 -2.71875 2.226562 -2.769531 C 2.109375 -2.820312 1.976562 -2.84375 1.832031 -2.84375 C 1.664062 -2.84375 1.519531 -2.8125 1.398438 -2.746094 C 1.277344 -2.679688 1.179688 -2.589844 1.101562 -2.480469 C 1.023438 -2.371094 0.96875 -2.242188 0.933594 -2.09375 C 0.898438 -1.949219 0.878906 -1.792969 0.878906 -1.632812 C 0.878906 -1.433594 0.902344 -1.253906 0.945312 -1.101562 C 0.988281 -0.953125 1.054688 -0.824219 1.136719 -0.722656 C 1.21875 -0.625 1.316406 -0.546875 1.433594 -0.496094 C 1.550781 -0.445312 1.683594 -0.417969 1.832031 -0.417969 C 2 -0.417969 2.148438 -0.453125 2.265625 -0.519531 C 2.386719 -0.585938 2.488281 -0.671875 2.5625 -0.785156 C 2.640625 -0.894531 2.695312 -1.023438 2.734375 -1.171875 C 2.769531 -1.316406 2.785156 -1.472656 2.785156 -1.632812 Z "/>
</g>
<g id="glyph-4-10">
<path d="M 3.148438 0 L 2.640625 0 L 2.621094 -0.527344 C 2.523438 -0.414062 2.429688 -0.320312 2.34375 -0.246094 C 2.253906 -0.171875 2.167969 -0.109375 2.078125 -0.0664062 C 1.992188 -0.0195312 1.90625 0.0117188 1.816406 0.03125 C 1.730469 0.0507812 1.636719 0.0585938 1.539062 0.0585938 C 1.203125 0.0585938 0.949219 -0.0390625 0.777344 -0.238281 C 0.605469 -0.433594 0.519531 -0.734375 0.519531 -1.132812 L 0.519531 -3.269531 L 1.085938 -3.269531 L 1.085938 -1.179688 C 1.085938 -0.675781 1.277344 -0.425781 1.652344 -0.425781 C 1.722656 -0.425781 1.789062 -0.4375 1.855469 -0.457031 C 1.921875 -0.476562 1.992188 -0.515625 2.066406 -0.566406 C 2.136719 -0.617188 2.214844 -0.683594 2.300781 -0.769531 C 2.382812 -0.859375 2.476562 -0.96875 2.582031 -1.101562 L 2.582031 -3.269531 L 3.148438 -3.269531 Z "/>
</g>
<g id="glyph-4-11">
<path d="M 3.3125 -1.691406 C 3.3125 -1.402344 3.273438 -1.148438 3.191406 -0.929688 C 3.109375 -0.714844 2.996094 -0.535156 2.855469 -0.390625 C 2.710938 -0.246094 2.542969 -0.140625 2.347656 -0.0703125 C 2.152344 0.00390625 1.941406 0.0390625 1.710938 0.0390625 C 1.609375 0.0390625 1.503906 0.0351562 1.402344 0.0234375 C 1.296875 0.0117188 1.195312 -0.0078125 1.085938 -0.03125 L 1.085938 1.335938 L 0.519531 1.335938 L 0.519531 -3.269531 L 1.023438 -3.269531 L 1.0625 -2.722656 C 1.222656 -2.945312 1.398438 -3.101562 1.582031 -3.191406 C 1.765625 -3.28125 1.964844 -3.328125 2.179688 -3.328125 C 2.367188 -3.328125 2.53125 -3.289062 2.671875 -3.210938 C 2.8125 -3.132812 2.933594 -3.019531 3.027344 -2.878906 C 3.121094 -2.738281 3.195312 -2.566406 3.242188 -2.363281 C 3.289062 -2.164062 3.3125 -1.941406 3.3125 -1.691406 M 2.734375 -1.667969 C 2.734375 -1.839844 2.722656 -1.996094 2.695312 -2.140625 C 2.671875 -2.28125 2.632812 -2.40625 2.578125 -2.507812 C 2.523438 -2.609375 2.453125 -2.6875 2.371094 -2.746094 C 2.285156 -2.804688 2.183594 -2.832031 2.066406 -2.832031 C 1.996094 -2.832031 1.921875 -2.820312 1.847656 -2.796875 C 1.773438 -2.773438 1.699219 -2.738281 1.621094 -2.683594 C 1.539062 -2.628906 1.457031 -2.558594 1.367188 -2.472656 C 1.28125 -2.382812 1.1875 -2.273438 1.085938 -2.144531 L 1.085938 -0.558594 C 1.191406 -0.515625 1.300781 -0.480469 1.414062 -0.457031 C 1.53125 -0.433594 1.644531 -0.417969 1.753906 -0.417969 C 2.0625 -0.417969 2.300781 -0.523438 2.472656 -0.730469 C 2.648438 -0.9375 2.734375 -1.25 2.734375 -1.667969 Z "/>
</g>
<g id="glyph-4-12">
<path d="M 2.734375 -3.269531 L 2.734375 -0.0585938 C 2.734375 0.167969 2.703125 0.371094 2.636719 0.546875 C 2.570312 0.726562 2.476562 0.875 2.355469 0.996094 C 2.234375 1.117188 2.085938 1.210938 1.910156 1.273438 C 1.730469 1.335938 1.53125 1.367188 1.3125 1.367188 C 1.152344 1.367188 0.996094 1.351562 0.839844 1.324219 C 0.6875 1.292969 0.550781 1.253906 0.425781 1.203125 L 0.425781 0.660156 C 0.492188 0.695312 0.566406 0.726562 0.644531 0.753906 C 0.71875 0.785156 0.800781 0.808594 0.878906 0.828125 C 0.960938 0.847656 1.042969 0.859375 1.125 0.871094 C 1.207031 0.878906 1.289062 0.886719 1.367188 0.886719 C 1.613281 0.886719 1.808594 0.808594 1.949219 0.652344 C 2.089844 0.496094 2.160156 0.265625 2.160156 -0.0390625 L 2.160156 -2.800781 L 0.558594 -2.800781 L 0.558594 -3.269531 L 2.734375 -3.269531 M 2.390625 -4.640625 C 2.457031 -4.640625 2.515625 -4.628906 2.566406 -4.605469 C 2.621094 -4.582031 2.667969 -4.550781 2.710938 -4.507812 C 2.75 -4.46875 2.78125 -4.417969 2.804688 -4.367188 C 2.828125 -4.3125 2.839844 -4.253906 2.839844 -4.191406 C 2.839844 -4.128906 2.828125 -4.070312 2.804688 -4.019531 C 2.78125 -3.964844 2.75 -3.917969 2.710938 -3.875 C 2.667969 -3.835938 2.621094 -3.804688 2.566406 -3.78125 C 2.515625 -3.757812 2.457031 -3.746094 2.390625 -3.746094 C 2.328125 -3.746094 2.269531 -3.757812 2.21875 -3.78125 C 2.164062 -3.804688 2.117188 -3.835938 2.074219 -3.875 C 2.035156 -3.917969 2.003906 -3.964844 1.980469 -4.019531 C 1.957031 -4.070312 1.945312 -4.128906 1.945312 -4.191406 C 1.945312 -4.253906 1.957031 -4.3125 1.980469 -4.367188 C 2.003906 -4.417969 2.035156 -4.46875 2.074219 -4.507812 C 2.117188 -4.550781 2.164062 -4.582031 2.21875 -4.605469 C 2.269531 -4.628906 2.328125 -4.640625 2.390625 -4.640625 Z "/>
</g>
<g id="glyph-4-13">
<path d="M 0.519531 -3.269531 L 1.023438 -3.269531 L 1.046875 -2.742188 C 1.144531 -2.855469 1.234375 -2.949219 1.324219 -3.023438 C 1.414062 -3.097656 1.5 -3.15625 1.585938 -3.203125 C 1.671875 -3.25 1.761719 -3.28125 1.847656 -3.300781 C 1.9375 -3.316406 2.03125 -3.328125 2.125 -3.328125 C 2.460938 -3.328125 2.714844 -3.226562 2.890625 -3.027344 C 3.0625 -2.832031 3.148438 -2.53125 3.148438 -2.132812 L 3.148438 0 L 2.582031 0 L 2.582031 -2.085938 C 2.582031 -2.34375 2.535156 -2.53125 2.4375 -2.65625 C 2.34375 -2.777344 2.199219 -2.839844 2.011719 -2.839844 C 1.941406 -2.839844 1.875 -2.828125 1.808594 -2.808594 C 1.742188 -2.785156 1.671875 -2.75 1.601562 -2.699219 C 1.53125 -2.648438 1.453125 -2.582031 1.367188 -2.492188 C 1.285156 -2.40625 1.191406 -2.296875 1.085938 -2.167969 L 1.085938 0 L 0.519531 0 Z "/>
</g>
<g id="glyph-4-14">
<path d="M 1.1875 -4.847656 C 2.1875 -3.921875 2.6875 -2.890625 2.6875 -1.753906 C 2.6875 -1.519531 2.664062 -1.277344 2.617188 -1.023438 C 2.570312 -0.773438 2.488281 -0.515625 2.375 -0.253906 C 2.257812 0.0117188 2.101562 0.277344 1.910156 0.550781 C 1.714844 0.820312 1.46875 1.09375 1.175781 1.367188 L 0.847656 1.03125 C 1.269531 0.613281 1.585938 0.175781 1.792969 -0.28125 C 2 -0.734375 2.105469 -1.214844 2.105469 -1.710938 C 2.105469 -2.746094 1.6875 -3.675781 0.847656 -4.5 Z "/>
</g>
</g>
</defs>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="30" y="24.951172"/>
<use xlink:href="#glyph-0-1" x="34" y="24.951172"/>
<use xlink:href="#glyph-0-2" x="38" y="24.951172"/>
<use xlink:href="#glyph-0-3" x="42" y="24.951172"/>
<use xlink:href="#glyph-0-4" x="46" y="24.951172"/>
<use xlink:href="#glyph-0-5" x="50" y="24.951172"/>
<use xlink:href="#glyph-0-6" x="54" y="24.951172"/>
<use xlink:href="#glyph-0-7" x="58" y="24.951172"/>
<use xlink:href="#glyph-0-8" x="62" y="24.951172"/>
<use xlink:href="#glyph-0-9" x="66" y="24.951172"/>
<use xlink:href="#glyph-0-2" x="70" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="74" y="24.951172"/>
<use xlink:href="#glyph-0-10" x="78" y="24.951172"/>
<use xlink:href="#glyph-0-11" x="82" y="24.951172"/>
<use xlink:href="#glyph-0-4" x="86" y="24.951172"/>
<use xlink:href="#glyph-0-6" x="90" y="24.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="30" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="34" y="42.951172"/>
<use xlink:href="#glyph-1-2" x="38" y="42.951172"/>
<use xlink:href="#glyph-1-3" x="42" y="42.951172"/>
<use xlink:href="#glyph-1-4" x="46" y="42.951172"/>
<use xlink:href="#glyph-1-5" x="50" y="42.951172"/>
<use xlink:href="#glyph-1-2" x="54" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="58" y="42.951172"/>
<use xlink:href="#glyph-1-6" x="62" y="42.951172"/>
<use xlink:href="#glyph-1-7" x="66" y="42.951172"/>
<use xlink:href="#glyph-1-6" x="70" y="42.951172"/>
<use xlink:href="#glyph-1-8" x="74" y="42.951172"/>
<use xlink:href="#glyph-1-9" x="78" y="42.951172"/>
<use xlink:href="#glyph-1-2" x="82" y="42.951172"/>
<use xlink:href="#glyph-1-3" x="86" y="42.951172"/>
<use xlink:href="#glyph-1-10" x="90" y="42.951172"/>
<use xlink:href="#glyph-1-11" x="94" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="98" y="42.951172"/>
<use xlink:href="#glyph-1-0" x="102" y="42.951172"/>
<use xlink:href="#glyph-1-12" x="106" y="42.951172"/>
<use xlink:href="#glyph-1-13" x="110" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="114" y="42.951172"/>
<use xlink:href="#glyph-1-14" x="118" y="42.951172"/>
<use xlink:href="#glyph-1-15" x="122" y="42.951172"/>
<use xlink:href="#glyph-1-16" x="126" y="42.951172"/>
<use xlink:href="#glyph-1-17" x="130" y="42.951172"/>
<use xlink:href="#glyph-1-14" x="134" y="42.951172"/>
<use xlink:href="#glyph-1-14" x="138" y="42.951172"/>
<use xlink:href="#glyph-1-3" x="142" y="42.951172"/>
<use xlink:href="#glyph-1-2" x="146" y="42.951172"/>
<use xlink:href="#glyph-1-18" x="150" y="42.951172"/>
<use xlink:href="#glyph-1-19" x="154" y="42.951172"/>
<use xlink:href="#glyph-1-19" x="158" y="42.951172"/>
<use xlink:href="#glyph-1-17" x="162" y="42.951172"/>
<use xlink:href="#glyph-1-14" x="166" y="42.951172"/>
<use xlink:href="#glyph-1-14" x="170" y="42.951172"/>
<use xlink:href="#glyph-1-3" x="174" y="42.951172"/>
<use xlink:href="#glyph-1-20" x="178" y="42.951172"/>
<use xlink:href="#glyph-1-10" x="182" y="42.951172"/>
<use xlink:href="#glyph-1-5" x="186" y="42.951172"/>
<use xlink:href="#glyph-1-12" x="190" y="42.951172"/>
<use xlink:href="#glyph-1-4" x="194" y="42.951172"/>
<use xlink:href="#glyph-1-0" x="198" y="42.951172"/>
<use xlink:href="#glyph-1-13" x="202" y="42.951172"/>
<use xlink:href="#glyph-1-19" x="206" y="42.951172"/>
<use xlink:href="#glyph-1-17" x="210" y="42.951172"/>
<use xlink:href="#glyph-1-14" x="214" y="42.951172"/>
<use xlink:href="#glyph-1-21" x="218" y="42.951172"/>
<use xlink:href="#glyph-1-22" x="222" y="42.951172"/>
<use xlink:href="#glyph-1-16" x="226" y="42.951172"/>
<use xlink:href="#glyph-1-23" x="230" y="42.951172"/>
<use xlink:href="#glyph-1-6" x="234" y="42.951172"/>
<use xlink:href="#glyph-1-2" x="238" y="42.951172"/>
<use xlink:href="#glyph-1-14" x="242" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="246" y="42.951172"/>
<use xlink:href="#glyph-1-24" x="250" y="42.951172"/>
<use xlink:href="#glyph-1-22" x="254" y="42.951172"/>
<use xlink:href="#glyph-1-14" x="258" y="42.951172"/>
<use xlink:href="#glyph-1-17" x="262" y="42.951172"/>
<use xlink:href="#glyph-1-7" x="266" y="42.951172"/>
<use xlink:href="#glyph-1-25" x="270" y="42.951172"/>
<use xlink:href="#glyph-1-0" x="274" y="42.951172"/>
<use xlink:href="#glyph-1-26" x="278" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="282" y="42.951172"/>
<use xlink:href="#glyph-1-27" x="286" y="42.951172"/>
<use xlink:href="#glyph-1-6" x="290" y="42.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="30" y="51.951172"/>
<use xlink:href="#glyph-2-1" x="34" y="51.951172"/>
<use xlink:href="#glyph-2-0" x="38" y="51.951172"/>
<use xlink:href="#glyph-2-2" x="42" y="51.951172"/>
<use xlink:href="#glyph-2-3" x="46" y="51.951172"/>
<use xlink:href="#glyph-2-4" x="50" y="51.951172"/>
<use xlink:href="#glyph-2-5" x="54" y="51.951172"/>
<use xlink:href="#glyph-2-4" x="58" y="51.951172"/>
<use xlink:href="#glyph-2-6" x="62" y="51.951172"/>
<use xlink:href="#glyph-2-3" x="66" y="51.951172"/>
<use xlink:href="#glyph-2-7" x="70" y="51.951172"/>
<use xlink:href="#glyph-2-8" x="74" y="51.951172"/>
<use xlink:href="#glyph-2-9" x="78" y="51.951172"/>
<use xlink:href="#glyph-2-10" x="82" y="51.951172"/>
<use xlink:href="#glyph-2-7" x="86" y="51.951172"/>
<use xlink:href="#glyph-2-3" x="90" y="51.951172"/>
<use xlink:href="#glyph-2-11" x="94" y="51.951172"/>
<use xlink:href="#glyph-2-12" x="98" y="51.951172"/>
<use xlink:href="#glyph-2-1" x="102" y="51.951172"/>
<use xlink:href="#glyph-2-10" x="106" y="51.951172"/>
<use xlink:href="#glyph-2-13" x="110" y="51.951172"/>
<use xlink:href="#glyph-2-14" x="114" y="51.951172"/>
<use xlink:href="#glyph-2-15" x="118" y="51.951172"/>
<use xlink:href="#glyph-2-16" x="122" y="51.951172"/>
<use xlink:href="#glyph-2-17" x="126" y="51.951172"/>
<use xlink:href="#glyph-2-15" x="130" y="51.951172"/>
<use xlink:href="#glyph-2-18" x="134" y="51.951172"/>
<use xlink:href="#glyph-2-4" x="138" y="51.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-3-0" x="30" y="60.951172"/>
<use xlink:href="#glyph-3-1" x="34" y="60.951172"/>
<use xlink:href="#glyph-3-2" x="38" y="60.951172"/>
<use xlink:href="#glyph-3-1" x="42" y="60.951172"/>
<use xlink:href="#glyph-3-3" x="46" y="60.951172"/>
<use xlink:href="#glyph-3-4" x="50" y="60.951172"/>
<use xlink:href="#glyph-3-3" x="54" y="60.951172"/>
<use xlink:href="#glyph-3-5" x="58" y="60.951172"/>
<use xlink:href="#glyph-3-6" x="62" y="60.951172"/>
<use xlink:href="#glyph-3-7" x="66" y="60.951172"/>
<use xlink:href="#glyph-3-8" x="70" y="60.951172"/>
<use xlink:href="#glyph-3-9" x="74" y="60.951172"/>
<use xlink:href="#glyph-3-10" x="78" y="60.951172"/>
<use xlink:href="#glyph-3-7" x="82" y="60.951172"/>
<use xlink:href="#glyph-3-6" x="86" y="60.951172"/>
<use xlink:href="#glyph-3-11" x="90" y="60.951172"/>
<use xlink:href="#glyph-3-8" x="94" y="60.951172"/>
<use xlink:href="#glyph-3-12" x="98" y="60.951172"/>
<use xlink:href="#glyph-3-13" x="102" y="60.951172"/>
<use xlink:href="#glyph-3-14" x="106" y="60.951172"/>
<use xlink:href="#glyph-3-15" x="110" y="60.951172"/>
<use xlink:href="#glyph-3-2" x="114" y="60.951172"/>
<use xlink:href="#glyph-3-12" x="118" y="60.951172"/>
<use xlink:href="#glyph-3-2" x="122" y="60.951172"/>
<use xlink:href="#glyph-3-16" x="126" y="60.951172"/>
<use xlink:href="#glyph-3-6" x="130" y="60.951172"/>
<use xlink:href="#glyph-3-4" x="134" y="60.951172"/>
<use xlink:href="#glyph-3-17" x="138" y="60.951172"/>
<use xlink:href="#glyph-3-18" x="142" y="60.951172"/>
<use xlink:href="#glyph-3-19" x="146" y="60.951172"/>
<use xlink:href="#glyph-3-17" x="150" y="60.951172"/>
<use xlink:href="#glyph-3-20" x="154" y="60.951172"/>
<use xlink:href="#glyph-3-3" x="158" y="60.951172"/>
<use xlink:href="#glyph-3-16" x="162" y="60.951172"/>
<use xlink:href="#glyph-3-12" x="166" y="60.951172"/>
<use xlink:href="#glyph-3-10" x="170" y="60.951172"/>
<use xlink:href="#glyph-3-14" x="174" y="60.951172"/>
<use xlink:href="#glyph-3-7" x="178" y="60.951172"/>
<use xlink:href="#glyph-3-4" x="182" y="60.951172"/>
<use xlink:href="#glyph-3-15" x="186" y="60.951172"/>
<use xlink:href="#glyph-3-17" x="190" y="60.951172"/>
<use xlink:href="#glyph-3-1" x="194" y="60.951172"/>
<use xlink:href="#glyph-3-17" x="198" y="60.951172"/>
<use xlink:href="#glyph-3-20" x="202" y="60.951172"/>
<use xlink:href="#glyph-3-3" x="206" y="60.951172"/>
<use xlink:href="#glyph-3-17" x="210" y="60.951172"/>
<use xlink:href="#glyph-3-18" x="214" y="60.951172"/>
<use xlink:href="#glyph-3-5" x="218" y="60.951172"/>
<use xlink:href="#glyph-3-6" x="222" y="60.951172"/>
<use xlink:href="#glyph-3-21" x="226" y="60.951172"/>
<use xlink:href="#glyph-3-17" x="230" y="60.951172"/>
<use xlink:href="#glyph-3-22" x="234" y="60.951172"/>
<use xlink:href="#glyph-3-22" x="238" y="60.951172"/>
<use xlink:href="#glyph-3-3" x="242" y="60.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-4-0" x="30" y="69.951172"/>
<use xlink:href="#glyph-4-1" x="34" y="69.951172"/>
<use xlink:href="#glyph-4-2" x="38" y="69.951172"/>
<use xlink:href="#glyph-4-1" x="42" y="69.951172"/>
<use xlink:href="#glyph-4-3" x="46" y="69.951172"/>
<use xlink:href="#glyph-4-4" x="50" y="69.951172"/>
<use xlink:href="#glyph-4-1" x="54" y="69.951172"/>
<use xlink:href="#glyph-4-5" x="58" y="69.951172"/>
<use xlink:href="#glyph-4-6" x="62" y="69.951172"/>
<use xlink:href="#glyph-4-7" x="66" y="69.951172"/>
<use xlink:href="#glyph-4-8" x="70" y="69.951172"/>
<use xlink:href="#glyph-4-9" x="74" y="69.951172"/>
<use xlink:href="#glyph-4-10" x="78" y="69.951172"/>
<use xlink:href="#glyph-4-2" x="82" y="69.951172"/>
<use xlink:href="#glyph-4-11" x="86" y="69.951172"/>
<use xlink:href="#glyph-4-10" x="90" y="69.951172"/>
<use xlink:href="#glyph-4-2" x="94" y="69.951172"/>
<use xlink:href="#glyph-4-3" x="98" y="69.951172"/>
<use xlink:href="#glyph-4-12" x="102" y="69.951172"/>
<use xlink:href="#glyph-4-4" x="106" y="69.951172"/>
<use xlink:href="#glyph-4-9" x="110" y="69.951172"/>
<use xlink:href="#glyph-4-13" x="114" y="69.951172"/>
<use xlink:href="#glyph-4-8" x="118" y="69.951172"/>
<use xlink:href="#glyph-4-14" x="122" y="69.951172"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 111 KiB

View File

@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920" height="1080" viewBox="0 0 1920 1080">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.246094 0 L 0.574219 0 L 0.574219 -0.527344 L 1.667969 -0.527344 L 1.667969 -3.632812 L 0.648438 -3.078125 L 0.4375 -3.5625 L 1.792969 -4.273438 L 2.296875 -4.273438 L 2.296875 -0.527344 L 3.246094 -0.527344 Z "/>
</g>
<g id="glyph-0-1">
</g>
<g id="glyph-1-0">
<path d="M 3.28125 0 L 0.476562 0 L 0.476562 -0.507812 L 1.578125 -1.601562 C 1.757812 -1.78125 1.90625 -1.933594 2.019531 -2.0625 C 2.132812 -2.195312 2.21875 -2.3125 2.28125 -2.421875 C 2.34375 -2.527344 2.386719 -2.628906 2.410156 -2.722656 C 2.429688 -2.820312 2.441406 -2.921875 2.441406 -3.035156 C 2.441406 -3.136719 2.425781 -3.238281 2.398438 -3.332031 C 2.371094 -3.425781 2.328125 -3.507812 2.269531 -3.582031 C 2.210938 -3.652344 2.132812 -3.707031 2.039062 -3.75 C 1.949219 -3.792969 1.835938 -3.8125 1.707031 -3.8125 C 1.527344 -3.8125 1.363281 -3.773438 1.214844 -3.691406 C 1.066406 -3.609375 0.929688 -3.507812 0.808594 -3.378906 L 0.496094 -3.753906 C 0.65625 -3.921875 0.839844 -4.058594 1.050781 -4.160156 C 1.257812 -4.261719 1.503906 -4.3125 1.78125 -4.3125 C 1.96875 -4.3125 2.140625 -4.285156 2.296875 -4.226562 C 2.453125 -4.171875 2.585938 -4.089844 2.699219 -3.984375 C 2.8125 -3.878906 2.898438 -3.746094 2.960938 -3.59375 C 3.023438 -3.441406 3.054688 -3.265625 3.054688 -3.074219 C 3.054688 -2.910156 3.03125 -2.757812 2.988281 -2.621094 C 2.945312 -2.480469 2.878906 -2.34375 2.792969 -2.207031 C 2.703125 -2.066406 2.59375 -1.925781 2.460938 -1.777344 C 2.324219 -1.628906 2.167969 -1.46875 1.984375 -1.292969 L 1.214844 -0.539062 L 3.28125 -0.539062 Z "/>
</g>
<g id="glyph-1-1">
</g>
<g id="glyph-2-0">
<path d="M 3.199219 -1.292969 C 3.199219 -1.105469 3.160156 -0.929688 3.085938 -0.765625 C 3.011719 -0.601562 2.894531 -0.460938 2.742188 -0.335938 C 2.59375 -0.214844 2.402344 -0.117188 2.171875 -0.046875 C 1.941406 0.0234375 1.671875 0.0585938 1.367188 0.0585938 C 1.199219 0.0585938 1.046875 0.0546875 0.910156 0.0429688 C 0.777344 0.03125 0.652344 0.015625 0.535156 0 L 0.535156 -0.507812 C 0.667969 -0.484375 0.808594 -0.464844 0.960938 -0.453125 C 1.109375 -0.4375 1.261719 -0.433594 1.417969 -0.433594 C 1.632812 -0.433594 1.8125 -0.453125 1.964844 -0.488281 C 2.117188 -0.527344 2.238281 -0.582031 2.335938 -0.652344 C 2.429688 -0.726562 2.5 -0.8125 2.542969 -0.914062 C 2.585938 -1.015625 2.605469 -1.132812 2.605469 -1.257812 C 2.605469 -1.375 2.582031 -1.480469 2.527344 -1.566406 C 2.476562 -1.652344 2.402344 -1.726562 2.308594 -1.785156 C 2.214844 -1.84375 2.101562 -1.886719 1.972656 -1.914062 C 1.839844 -1.945312 1.695312 -1.960938 1.539062 -1.960938 L 1.054688 -1.960938 L 1.054688 -2.425781 L 1.546875 -2.425781 C 1.675781 -2.425781 1.789062 -2.441406 1.894531 -2.476562 C 2 -2.507812 2.089844 -2.558594 2.167969 -2.621094 C 2.242188 -2.683594 2.296875 -2.761719 2.339844 -2.851562 C 2.378906 -2.945312 2.398438 -3.050781 2.398438 -3.167969 C 2.398438 -3.394531 2.328125 -3.5625 2.191406 -3.664062 C 2.050781 -3.769531 1.847656 -3.820312 1.578125 -3.820312 C 1.433594 -3.820312 1.289062 -3.808594 1.136719 -3.777344 C 0.984375 -3.75 0.820312 -3.707031 0.648438 -3.652344 L 0.648438 -4.148438 C 0.722656 -4.171875 0.800781 -4.195312 0.882812 -4.21875 C 0.96875 -4.238281 1.050781 -4.253906 1.132812 -4.269531 C 1.21875 -4.285156 1.300781 -4.292969 1.382812 -4.300781 C 1.464844 -4.308594 1.546875 -4.3125 1.621094 -4.3125 C 1.847656 -4.3125 2.046875 -4.289062 2.21875 -4.238281 C 2.386719 -4.191406 2.53125 -4.121094 2.644531 -4.03125 C 2.761719 -3.9375 2.847656 -3.828125 2.90625 -3.699219 C 2.964844 -3.566406 2.996094 -3.421875 2.996094 -3.257812 C 2.996094 -3.015625 2.933594 -2.8125 2.808594 -2.644531 C 2.683594 -2.480469 2.511719 -2.351562 2.296875 -2.253906 C 2.40625 -2.234375 2.515625 -2.199219 2.621094 -2.148438 C 2.730469 -2.097656 2.824219 -2.03125 2.910156 -1.949219 C 2.996094 -1.867188 3.066406 -1.769531 3.121094 -1.660156 C 3.171875 -1.550781 3.199219 -1.425781 3.199219 -1.292969 Z "/>
</g>
<g id="glyph-2-1">
</g>
<g id="glyph-3-0">
<path d="M 3.492188 -0.941406 L 2.765625 -0.941406 L 2.765625 0 L 2.1875 0 L 2.1875 -0.941406 L 0.140625 -0.941406 L 0.140625 -1.4375 L 1.953125 -4.253906 L 2.765625 -4.253906 L 2.765625 -1.4375 L 3.492188 -1.4375 L 3.492188 -0.941406 M 2.1875 -3.707031 L 0.707031 -1.4375 L 2.1875 -1.4375 Z "/>
</g>
<g id="glyph-3-1">
</g>
<g id="glyph-4-0">
<path d="M 3.171875 -1.359375 C 3.171875 -1.148438 3.128906 -0.957031 3.035156 -0.785156 C 2.945312 -0.609375 2.820312 -0.460938 2.660156 -0.335938 C 2.5 -0.210938 2.3125 -0.113281 2.097656 -0.046875 C 1.878906 0.0234375 1.644531 0.0585938 1.394531 0.0585938 C 1.332031 0.0585938 1.261719 0.0585938 1.191406 0.0546875 C 1.117188 0.0507812 1.046875 0.046875 0.972656 0.0390625 C 0.902344 0.0351562 0.832031 0.0273438 0.761719 0.0234375 C 0.695312 0.015625 0.632812 0.0078125 0.578125 0 L 0.578125 -0.515625 C 0.695312 -0.484375 0.832031 -0.464844 0.980469 -0.453125 C 1.132812 -0.4375 1.285156 -0.433594 1.4375 -0.433594 C 1.613281 -0.433594 1.769531 -0.453125 1.90625 -0.496094 C 2.046875 -0.535156 2.164062 -0.59375 2.261719 -0.671875 C 2.359375 -0.75 2.433594 -0.84375 2.488281 -0.953125 C 2.539062 -1.0625 2.566406 -1.183594 2.566406 -1.320312 C 2.566406 -1.585938 2.46875 -1.777344 2.28125 -1.898438 C 2.089844 -2.019531 1.816406 -2.078125 1.460938 -2.078125 L 0.652344 -2.078125 L 0.652344 -4.253906 L 2.945312 -4.253906 L 2.945312 -3.757812 L 1.1875 -3.757812 L 1.1875 -2.566406 L 1.558594 -2.566406 C 1.761719 -2.566406 1.960938 -2.546875 2.15625 -2.507812 C 2.347656 -2.472656 2.519531 -2.410156 2.671875 -2.316406 C 2.820312 -2.222656 2.941406 -2.101562 3.035156 -1.945312 C 3.128906 -1.789062 3.171875 -1.59375 3.171875 -1.359375 Z "/>
</g>
<g id="glyph-4-1">
</g>
<g id="glyph-5-0">
<path d="M 3.332031 -1.347656 C 3.332031 -1.152344 3.296875 -0.96875 3.226562 -0.796875 C 3.15625 -0.625 3.054688 -0.476562 2.925781 -0.351562 C 2.796875 -0.222656 2.640625 -0.125 2.457031 -0.0507812 C 2.273438 0.0234375 2.070312 0.0585938 1.84375 0.0585938 C 1.609375 0.0585938 1.402344 0.0195312 1.222656 -0.0546875 C 1.042969 -0.128906 0.894531 -0.242188 0.769531 -0.398438 C 0.648438 -0.554688 0.558594 -0.75 0.496094 -0.984375 C 0.433594 -1.222656 0.398438 -1.503906 0.398438 -1.824219 C 0.398438 -2.042969 0.414062 -2.253906 0.441406 -2.457031 C 0.472656 -2.660156 0.515625 -2.855469 0.582031 -3.035156 C 0.648438 -3.214844 0.734375 -3.378906 0.84375 -3.527344 C 0.953125 -3.679688 1.085938 -3.808594 1.25 -3.914062 C 1.410156 -4.023438 1.601562 -4.105469 1.820312 -4.164062 C 2.039062 -4.226562 2.292969 -4.253906 2.582031 -4.253906 L 3 -4.253906 L 3 -3.757812 L 2.546875 -3.757812 C 2.292969 -3.757812 2.070312 -3.730469 1.882812 -3.667969 C 1.699219 -3.609375 1.542969 -3.523438 1.414062 -3.410156 C 1.289062 -3.300781 1.195312 -3.167969 1.125 -3.011719 C 1.058594 -2.855469 1.015625 -2.679688 1 -2.488281 L 0.984375 -2.351562 C 1.125 -2.433594 1.28125 -2.5 1.460938 -2.546875 C 1.640625 -2.597656 1.832031 -2.621094 2.039062 -2.621094 C 2.257812 -2.621094 2.445312 -2.589844 2.605469 -2.527344 C 2.765625 -2.464844 2.902344 -2.375 3.007812 -2.265625 C 3.117188 -2.152344 3.199219 -2.019531 3.25 -1.863281 C 3.304688 -1.707031 3.332031 -1.535156 3.332031 -1.347656 M 2.742188 -1.3125 C 2.742188 -1.441406 2.726562 -1.558594 2.695312 -1.664062 C 2.664062 -1.769531 2.613281 -1.859375 2.546875 -1.933594 C 2.476562 -2.003906 2.394531 -2.0625 2.289062 -2.101562 C 2.1875 -2.140625 2.0625 -2.160156 1.921875 -2.160156 C 1.839844 -2.160156 1.753906 -2.152344 1.667969 -2.140625 C 1.585938 -2.125 1.503906 -2.101562 1.421875 -2.074219 C 1.339844 -2.046875 1.261719 -2.015625 1.1875 -1.980469 C 1.113281 -1.949219 1.046875 -1.910156 0.984375 -1.871094 C 0.984375 -1.589844 1.007812 -1.359375 1.046875 -1.171875 C 1.085938 -0.984375 1.140625 -0.832031 1.21875 -0.71875 C 1.296875 -0.605469 1.390625 -0.527344 1.503906 -0.476562 C 1.617188 -0.429688 1.746094 -0.40625 1.894531 -0.40625 C 2.019531 -0.40625 2.132812 -0.425781 2.234375 -0.46875 C 2.335938 -0.507812 2.425781 -0.566406 2.5 -0.644531 C 2.578125 -0.722656 2.636719 -0.816406 2.675781 -0.929688 C 2.71875 -1.042969 2.742188 -1.167969 2.742188 -1.3125 Z "/>
</g>
</g>
</defs>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="30" y="24.951172"/>
<use xlink:href="#glyph-0-1" x="34" y="24.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="30" y="33.951172"/>
<use xlink:href="#glyph-1-1" x="34" y="33.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="30" y="42.951172"/>
<use xlink:href="#glyph-2-1" x="34" y="42.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-3-0" x="30" y="51.951172"/>
<use xlink:href="#glyph-3-1" x="34" y="51.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-4-0" x="30" y="60.951172"/>
<use xlink:href="#glyph-4-1" x="34" y="60.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-5-0" x="30" y="69.951172"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.1 KiB

View File

@@ -0,0 +1,419 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920" height="1080" viewBox="0 0 1920 1080">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-0-1">
</g>
<g id="glyph-1-0">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-1-1">
</g>
<g id="glyph-2-0">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-2-1">
</g>
<g id="glyph-3-0">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-3-1">
</g>
<g id="glyph-4-0">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
</g>
</defs>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="30" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="34" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="38" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="42" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="46" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="50" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="54" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="58" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="62" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="66" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="70" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="74" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="78" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="82" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="86" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="90" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="94" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="98" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="102" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="106" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="110" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="114" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="118" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="122" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="126" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="130" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="134" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="138" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="142" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="146" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="150" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="154" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="158" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="162" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="166" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="170" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="174" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="178" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="182" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="186" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="190" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="194" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="198" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="202" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="206" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="210" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="214" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="218" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="222" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="226" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="230" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="234" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="238" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="242" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="246" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="250" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="254" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="258" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="262" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="266" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="270" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="274" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="278" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="282" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="286" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="290" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="294" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="298" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="302" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="306" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="310" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="314" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="318" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="322" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="326" y="24.951172"/>
<use xlink:href="#glyph-0-1" x="330" y="24.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="30" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="34" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="38" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="42" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="46" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="50" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="54" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="58" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="62" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="66" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="70" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="74" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="78" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="82" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="86" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="90" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="94" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="98" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="102" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="106" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="110" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="114" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="118" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="122" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="126" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="130" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="134" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="138" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="142" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="146" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="150" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="154" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="158" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="162" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="166" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="170" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="174" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="178" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="182" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="186" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="190" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="194" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="198" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="202" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="206" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="210" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="214" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="218" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="222" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="226" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="230" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="234" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="238" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="242" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="246" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="250" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="254" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="258" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="262" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="266" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="270" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="274" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="278" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="282" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="286" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="290" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="294" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="298" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="302" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="306" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="310" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="314" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="318" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="322" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="326" y="33.951172"/>
<use xlink:href="#glyph-1-1" x="330" y="33.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="30" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="34" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="38" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="42" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="46" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="50" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="54" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="58" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="62" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="66" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="70" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="74" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="78" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="82" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="86" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="90" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="94" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="98" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="102" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="106" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="110" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="114" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="118" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="122" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="126" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="130" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="134" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="138" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="142" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="146" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="150" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="154" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="158" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="162" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="166" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="170" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="174" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="178" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="182" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="186" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="190" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="194" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="198" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="202" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="206" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="210" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="214" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="218" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="222" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="226" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="230" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="234" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="238" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="242" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="246" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="250" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="254" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="258" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="262" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="266" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="270" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="274" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="278" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="282" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="286" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="290" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="294" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="298" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="302" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="306" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="310" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="314" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="318" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="322" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="326" y="42.951172"/>
<use xlink:href="#glyph-2-1" x="330" y="42.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-3-0" x="30" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="34" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="38" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="42" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="46" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="50" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="54" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="58" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="62" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="66" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="70" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="74" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="78" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="82" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="86" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="90" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="94" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="98" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="102" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="106" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="110" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="114" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="118" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="122" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="126" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="130" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="134" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="138" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="142" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="146" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="150" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="154" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="158" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="162" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="166" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="170" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="174" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="178" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="182" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="186" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="190" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="194" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="198" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="202" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="206" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="210" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="214" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="218" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="222" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="226" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="230" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="234" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="238" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="242" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="246" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="250" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="254" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="258" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="262" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="266" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="270" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="274" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="278" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="282" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="286" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="290" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="294" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="298" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="302" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="306" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="310" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="314" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="318" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="322" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="326" y="51.951172"/>
<use xlink:href="#glyph-3-1" x="330" y="51.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-4-0" x="30" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="34" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="38" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="42" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="46" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="50" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="54" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="58" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="62" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="66" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="70" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="74" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="78" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="82" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="86" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="90" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="94" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="98" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="102" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="106" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="110" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="114" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="118" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="122" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="126" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="130" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="134" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="138" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="142" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="146" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="150" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="154" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="158" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="162" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="166" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="170" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="174" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="178" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="182" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="186" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="190" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="194" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="198" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="202" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="206" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="210" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="214" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="218" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="222" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="226" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="230" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="234" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="238" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="242" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="246" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="250" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="254" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="258" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="262" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="266" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="270" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="274" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="278" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="282" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="286" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="290" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="294" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="298" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="302" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="306" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="310" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="314" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="318" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="322" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="326" y="60.951172"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

View File

@@ -0,0 +1,276 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920" height="1080" viewBox="0 0 1920 1080">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 1.632812 -2.800781 L 0.667969 -2.800781 L 0.667969 -3.269531 L 2.207031 -3.269531 L 2.207031 -0.472656 L 3.179688 -0.472656 L 3.179688 0 L 0.558594 0 L 0.558594 -0.472656 L 1.632812 -0.472656 L 1.632812 -2.800781 M 1.832031 -4.640625 C 1.894531 -4.640625 1.953125 -4.628906 2.007812 -4.605469 C 2.0625 -4.582031 2.109375 -4.550781 2.148438 -4.507812 C 2.191406 -4.46875 2.222656 -4.421875 2.246094 -4.367188 C 2.265625 -4.3125 2.277344 -4.253906 2.277344 -4.191406 C 2.277344 -4.132812 2.265625 -4.074219 2.246094 -4.019531 C 2.222656 -3.964844 2.191406 -3.917969 2.148438 -3.875 C 2.109375 -3.835938 2.0625 -3.804688 2.007812 -3.78125 C 1.953125 -3.757812 1.894531 -3.746094 1.832031 -3.746094 C 1.769531 -3.746094 1.710938 -3.757812 1.65625 -3.78125 C 1.601562 -3.804688 1.554688 -3.835938 1.515625 -3.875 C 1.476562 -3.917969 1.445312 -3.964844 1.421875 -4.019531 C 1.398438 -4.074219 1.386719 -4.132812 1.386719 -4.191406 C 1.386719 -4.253906 1.398438 -4.3125 1.421875 -4.367188 C 1.445312 -4.421875 1.476562 -4.46875 1.515625 -4.507812 C 1.554688 -4.550781 1.601562 -4.582031 1.65625 -4.605469 C 1.710938 -4.628906 1.769531 -4.640625 1.832031 -4.640625 Z "/>
</g>
<g id="glyph-0-1">
<path d="M 2.851562 0 L 2.851562 -2.347656 C 2.851562 -2.449219 2.847656 -2.53125 2.839844 -2.597656 C 2.832031 -2.664062 2.820312 -2.714844 2.804688 -2.753906 C 2.789062 -2.789062 2.765625 -2.816406 2.742188 -2.832031 C 2.71875 -2.847656 2.6875 -2.855469 2.648438 -2.855469 C 2.605469 -2.855469 2.566406 -2.839844 2.527344 -2.816406 C 2.492188 -2.789062 2.453125 -2.746094 2.410156 -2.6875 C 2.367188 -2.628906 2.320312 -2.550781 2.269531 -2.457031 C 2.21875 -2.359375 2.160156 -2.242188 2.089844 -2.101562 L 2.089844 0 L 1.570312 0 L 1.570312 -2.285156 C 1.570312 -2.40625 1.570312 -2.5 1.5625 -2.574219 C 1.554688 -2.648438 1.542969 -2.707031 1.523438 -2.746094 C 1.507812 -2.789062 1.488281 -2.816406 1.460938 -2.832031 C 1.433594 -2.847656 1.402344 -2.855469 1.367188 -2.855469 C 1.328125 -2.855469 1.292969 -2.84375 1.257812 -2.820312 C 1.222656 -2.800781 1.183594 -2.761719 1.140625 -2.703125 C 1.097656 -2.648438 1.050781 -2.570312 1 -2.472656 C 0.945312 -2.375 0.886719 -2.25 0.8125 -2.101562 L 0.8125 0 L 0.292969 0 L 0.292969 -3.269531 L 0.726562 -3.269531 L 0.75 -2.644531 C 0.808594 -2.769531 0.863281 -2.875 0.917969 -2.960938 C 0.96875 -3.050781 1.023438 -3.117188 1.082031 -3.171875 C 1.136719 -3.226562 1.199219 -3.265625 1.261719 -3.289062 C 1.324219 -3.3125 1.394531 -3.328125 1.472656 -3.328125 C 1.648438 -3.328125 1.785156 -3.269531 1.875 -3.152344 C 1.964844 -3.039062 2.011719 -2.859375 2.011719 -2.621094 C 2.0625 -2.734375 2.113281 -2.832031 2.164062 -2.921875 C 2.214844 -3.007812 2.269531 -3.082031 2.324219 -3.144531 C 2.382812 -3.203125 2.445312 -3.25 2.515625 -3.28125 C 2.585938 -3.3125 2.664062 -3.328125 2.757812 -3.328125 C 3.167969 -3.328125 3.371094 -3.011719 3.371094 -2.378906 L 3.371094 0 Z "/>
</g>
<g id="glyph-0-2">
<path d="M 3.3125 -1.691406 C 3.3125 -1.402344 3.273438 -1.148438 3.191406 -0.929688 C 3.109375 -0.714844 2.996094 -0.535156 2.855469 -0.390625 C 2.710938 -0.246094 2.542969 -0.140625 2.347656 -0.0703125 C 2.152344 0.00390625 1.941406 0.0390625 1.710938 0.0390625 C 1.609375 0.0390625 1.503906 0.0351562 1.402344 0.0234375 C 1.296875 0.0117188 1.195312 -0.0078125 1.085938 -0.03125 L 1.085938 1.335938 L 0.519531 1.335938 L 0.519531 -3.269531 L 1.023438 -3.269531 L 1.0625 -2.722656 C 1.222656 -2.945312 1.398438 -3.101562 1.582031 -3.191406 C 1.765625 -3.28125 1.964844 -3.328125 2.179688 -3.328125 C 2.367188 -3.328125 2.53125 -3.289062 2.671875 -3.210938 C 2.8125 -3.132812 2.933594 -3.019531 3.027344 -2.878906 C 3.121094 -2.738281 3.195312 -2.566406 3.242188 -2.363281 C 3.289062 -2.164062 3.3125 -1.941406 3.3125 -1.691406 M 2.734375 -1.667969 C 2.734375 -1.839844 2.722656 -1.996094 2.695312 -2.140625 C 2.671875 -2.28125 2.632812 -2.40625 2.578125 -2.507812 C 2.523438 -2.609375 2.453125 -2.6875 2.371094 -2.746094 C 2.285156 -2.804688 2.183594 -2.832031 2.066406 -2.832031 C 1.996094 -2.832031 1.921875 -2.820312 1.847656 -2.796875 C 1.773438 -2.773438 1.699219 -2.738281 1.621094 -2.683594 C 1.539062 -2.628906 1.457031 -2.558594 1.367188 -2.472656 C 1.28125 -2.382812 1.1875 -2.273438 1.085938 -2.144531 L 1.085938 -0.558594 C 1.191406 -0.515625 1.300781 -0.480469 1.414062 -0.457031 C 1.53125 -0.433594 1.644531 -0.417969 1.753906 -0.417969 C 2.0625 -0.417969 2.300781 -0.523438 2.472656 -0.730469 C 2.648438 -0.9375 2.734375 -1.25 2.734375 -1.667969 Z "/>
</g>
<g id="glyph-0-3">
<path d="M 3.367188 -1.660156 C 3.367188 -1.40625 3.328125 -1.171875 3.257812 -0.960938 C 3.1875 -0.75 3.082031 -0.570312 2.949219 -0.417969 C 2.816406 -0.265625 2.652344 -0.148438 2.457031 -0.0664062 C 2.265625 0.015625 2.046875 0.0585938 1.800781 0.0585938 C 1.566406 0.0585938 1.355469 0.0234375 1.171875 -0.0507812 C 0.984375 -0.125 0.828125 -0.230469 0.699219 -0.371094 C 0.570312 -0.511719 0.46875 -0.6875 0.402344 -0.894531 C 0.332031 -1.101562 0.300781 -1.34375 0.300781 -1.613281 C 0.300781 -1.867188 0.335938 -2.101562 0.40625 -2.308594 C 0.476562 -2.519531 0.582031 -2.699219 0.714844 -2.851562 C 0.851562 -3 1.015625 -3.117188 1.207031 -3.203125 C 1.402344 -3.285156 1.621094 -3.328125 1.863281 -3.328125 C 2.101562 -3.328125 2.308594 -3.289062 2.496094 -3.21875 C 2.679688 -3.144531 2.839844 -3.039062 2.96875 -2.898438 C 3.097656 -2.757812 3.195312 -2.585938 3.261719 -2.375 C 3.332031 -2.167969 3.367188 -1.929688 3.367188 -1.660156 M 2.785156 -1.632812 C 2.785156 -1.835938 2.765625 -2.011719 2.71875 -2.164062 C 2.675781 -2.3125 2.613281 -2.441406 2.527344 -2.539062 C 2.445312 -2.640625 2.347656 -2.71875 2.226562 -2.769531 C 2.109375 -2.820312 1.976562 -2.84375 1.832031 -2.84375 C 1.664062 -2.84375 1.519531 -2.8125 1.398438 -2.746094 C 1.277344 -2.679688 1.179688 -2.589844 1.101562 -2.480469 C 1.023438 -2.371094 0.96875 -2.242188 0.933594 -2.09375 C 0.898438 -1.949219 0.878906 -1.792969 0.878906 -1.632812 C 0.878906 -1.433594 0.902344 -1.253906 0.945312 -1.101562 C 0.988281 -0.953125 1.054688 -0.824219 1.136719 -0.722656 C 1.21875 -0.625 1.316406 -0.546875 1.433594 -0.496094 C 1.550781 -0.445312 1.683594 -0.417969 1.832031 -0.417969 C 2 -0.417969 2.148438 -0.453125 2.265625 -0.519531 C 2.386719 -0.585938 2.488281 -0.671875 2.5625 -0.785156 C 2.640625 -0.894531 2.695312 -1.023438 2.734375 -1.171875 C 2.769531 -1.316406 2.785156 -1.472656 2.785156 -1.632812 Z "/>
</g>
<g id="glyph-0-4">
<path d="M 0.652344 -3.269531 L 1.171875 -3.269531 L 1.1875 -2.664062 C 1.382812 -2.898438 1.570312 -3.066406 1.757812 -3.171875 C 1.945312 -3.273438 2.136719 -3.328125 2.328125 -3.328125 C 2.664062 -3.328125 2.921875 -3.21875 3.097656 -2.996094 C 3.273438 -2.777344 3.351562 -2.453125 3.339844 -2.023438 L 2.765625 -2.023438 C 2.773438 -2.308594 2.730469 -2.515625 2.640625 -2.644531 C 2.550781 -2.773438 2.417969 -2.839844 2.246094 -2.839844 C 2.171875 -2.839844 2.09375 -2.824219 2.015625 -2.796875 C 1.941406 -2.769531 1.859375 -2.726562 1.777344 -2.667969 C 1.699219 -2.609375 1.609375 -2.53125 1.519531 -2.4375 C 1.429688 -2.34375 1.332031 -2.230469 1.226562 -2.101562 L 1.226562 0 L 0.652344 0 Z "/>
</g>
<g id="glyph-0-5">
<path d="M 3.152344 -0.046875 C 3.027344 -0.0117188 2.894531 0.0117188 2.757812 0.0234375 C 2.621094 0.0390625 2.480469 0.046875 2.339844 0.046875 C 1.929688 0.046875 1.625 -0.046875 1.421875 -0.234375 C 1.21875 -0.417969 1.121094 -0.703125 1.121094 -1.085938 L 1.121094 -2.792969 L 0.203125 -2.792969 L 0.203125 -3.269531 L 1.121094 -3.269531 L 1.121094 -4.167969 L 1.6875 -4.3125 L 1.6875 -3.269531 L 3.152344 -3.269531 L 3.152344 -2.792969 L 1.6875 -2.792969 L 1.6875 -1.132812 C 1.6875 -0.898438 1.75 -0.722656 1.875 -0.605469 C 2 -0.492188 2.183594 -0.433594 2.425781 -0.433594 C 2.527344 -0.433594 2.644531 -0.441406 2.765625 -0.457031 C 2.890625 -0.472656 3.019531 -0.5 3.152344 -0.535156 Z "/>
</g>
<g id="glyph-0-6">
</g>
<g id="glyph-0-7">
<path d="M 3.058594 -0.121094 C 2.914062 -0.0625 2.761719 -0.0234375 2.605469 0.00390625 C 2.449219 0.03125 2.289062 0.046875 2.125 0.046875 C 1.609375 0.046875 1.210938 -0.09375 0.933594 -0.375 C 0.652344 -0.652344 0.515625 -1.0625 0.515625 -1.601562 C 0.515625 -1.859375 0.554688 -2.09375 0.632812 -2.304688 C 0.714844 -2.515625 0.828125 -2.695312 0.972656 -2.84375 C 1.117188 -2.996094 1.292969 -3.109375 1.492188 -3.191406 C 1.695312 -3.273438 1.917969 -3.3125 2.160156 -3.3125 C 2.332031 -3.3125 2.488281 -3.300781 2.636719 -3.277344 C 2.785156 -3.253906 2.925781 -3.214844 3.058594 -3.160156 L 3.058594 -2.621094 C 2.917969 -2.695312 2.773438 -2.746094 2.628906 -2.78125 C 2.480469 -2.816406 2.332031 -2.832031 2.175781 -2.832031 C 2.027344 -2.832031 1.890625 -2.804688 1.761719 -2.75 C 1.632812 -2.695312 1.519531 -2.613281 1.421875 -2.507812 C 1.324219 -2.40625 1.246094 -2.277344 1.191406 -2.128906 C 1.136719 -1.980469 1.105469 -1.808594 1.105469 -1.621094 C 1.105469 -1.226562 1.203125 -0.929688 1.394531 -0.734375 C 1.585938 -0.539062 1.851562 -0.4375 2.195312 -0.4375 C 2.347656 -0.4375 2.496094 -0.457031 2.640625 -0.492188 C 2.785156 -0.527344 2.925781 -0.578125 3.058594 -0.648438 Z "/>
</g>
<g id="glyph-0-8">
<path d="M 3.421875 -4.070312 C 3.125 -4.136719 2.867188 -4.167969 2.652344 -4.167969 C 2.144531 -4.167969 1.886719 -3.898438 1.886719 -3.367188 L 1.886719 -2.792969 L 3.320312 -2.792969 L 3.320312 -2.320312 L 1.886719 -2.320312 L 1.886719 0 L 1.3125 0 L 1.3125 -2.320312 L 0.261719 -2.320312 L 0.261719 -2.792969 L 1.3125 -2.792969 L 1.3125 -3.332031 C 1.3125 -4.203125 1.765625 -4.640625 2.671875 -4.640625 C 2.898438 -4.640625 3.148438 -4.613281 3.421875 -4.5625 Z "/>
</g>
<g id="glyph-0-9">
<path d="M 3.109375 -0.890625 C 3.109375 -0.777344 3.089844 -0.671875 3.050781 -0.582031 C 3.011719 -0.492188 2.957031 -0.410156 2.890625 -0.339844 C 2.824219 -0.269531 2.746094 -0.210938 2.65625 -0.160156 C 2.566406 -0.109375 2.472656 -0.0664062 2.371094 -0.0351562 C 2.269531 -0.00390625 2.167969 0.0195312 2.0625 0.0351562 C 1.953125 0.0507812 1.851562 0.0585938 1.746094 0.0585938 C 1.527344 0.0585938 1.324219 0.046875 1.136719 0.0273438 C 0.953125 0.0078125 0.769531 -0.0234375 0.59375 -0.0664062 L 0.59375 -0.585938 C 0.785156 -0.53125 0.972656 -0.492188 1.164062 -0.460938 C 1.351562 -0.433594 1.539062 -0.417969 1.726562 -0.417969 C 1.996094 -0.417969 2.195312 -0.457031 2.328125 -0.53125 C 2.457031 -0.605469 2.523438 -0.710938 2.523438 -0.847656 C 2.523438 -0.90625 2.511719 -0.957031 2.492188 -1.003906 C 2.472656 -1.050781 2.433594 -1.09375 2.378906 -1.136719 C 2.324219 -1.179688 2.242188 -1.222656 2.128906 -1.269531 C 2.011719 -1.316406 1.859375 -1.367188 1.660156 -1.425781 C 1.511719 -1.46875 1.375 -1.519531 1.25 -1.574219 C 1.125 -1.628906 1.019531 -1.695312 0.925781 -1.769531 C 0.835938 -1.847656 0.765625 -1.9375 0.710938 -2.039062 C 0.660156 -2.140625 0.632812 -2.261719 0.632812 -2.398438 C 0.632812 -2.492188 0.65625 -2.589844 0.699219 -2.699219 C 0.742188 -2.808594 0.8125 -2.90625 0.914062 -3 C 1.015625 -3.09375 1.15625 -3.171875 1.328125 -3.234375 C 1.5 -3.296875 1.71875 -3.328125 1.980469 -3.328125 C 2.105469 -3.328125 2.25 -3.320312 2.40625 -3.304688 C 2.5625 -3.292969 2.722656 -3.265625 2.894531 -3.230469 L 2.894531 -2.726562 C 2.714844 -2.769531 2.546875 -2.804688 2.386719 -2.824219 C 2.226562 -2.84375 2.089844 -2.855469 1.972656 -2.855469 C 1.832031 -2.855469 1.710938 -2.84375 1.617188 -2.820312 C 1.519531 -2.800781 1.441406 -2.769531 1.382812 -2.734375 C 1.320312 -2.695312 1.277344 -2.648438 1.253906 -2.597656 C 1.226562 -2.546875 1.214844 -2.492188 1.214844 -2.433594 C 1.214844 -2.375 1.226562 -2.324219 1.25 -2.273438 C 1.269531 -2.226562 1.3125 -2.179688 1.375 -2.136719 C 1.4375 -2.09375 1.523438 -2.046875 1.632812 -2.003906 C 1.746094 -1.960938 1.890625 -1.910156 2.066406 -1.859375 C 2.261719 -1.800781 2.421875 -1.742188 2.554688 -1.679688 C 2.6875 -1.621094 2.796875 -1.550781 2.878906 -1.472656 C 2.960938 -1.398438 3.019531 -1.3125 3.054688 -1.21875 C 3.089844 -1.121094 3.109375 -1.011719 3.109375 -0.890625 Z "/>
</g>
<g id="glyph-0-10">
<path d="M 0.355469 -1.566406 C 0.355469 -1.84375 0.394531 -2.089844 0.46875 -2.304688 C 0.542969 -2.523438 0.652344 -2.703125 0.792969 -2.851562 C 0.933594 -3 1.101562 -3.113281 1.296875 -3.191406 C 1.492188 -3.269531 1.710938 -3.308594 1.953125 -3.308594 C 2.058594 -3.308594 2.160156 -3.300781 2.261719 -3.289062 C 2.363281 -3.273438 2.460938 -3.253906 2.558594 -3.226562 L 2.558594 -4.601562 L 3.128906 -4.601562 L 3.128906 0 L 2.621094 0 L 2.601562 -0.617188 C 2.441406 -0.386719 2.269531 -0.21875 2.085938 -0.105469 C 1.902344 0.00390625 1.703125 0.0585938 1.488281 0.0585938 C 1.300781 0.0585938 1.136719 0.0195312 0.996094 -0.0585938 C 0.851562 -0.136719 0.734375 -0.246094 0.640625 -0.390625 C 0.546875 -0.53125 0.472656 -0.703125 0.425781 -0.902344 C 0.378906 -1.101562 0.355469 -1.324219 0.355469 -1.566406 M 0.933594 -1.601562 C 0.933594 -1.207031 0.992188 -0.910156 1.109375 -0.71875 C 1.222656 -0.523438 1.390625 -0.425781 1.601562 -0.425781 C 1.746094 -0.425781 1.894531 -0.492188 2.054688 -0.617188 C 2.214844 -0.746094 2.382812 -0.9375 2.558594 -1.1875 L 2.558594 -2.703125 C 2.464844 -2.75 2.363281 -2.78125 2.25 -2.804688 C 2.136719 -2.828125 2.023438 -2.839844 1.914062 -2.839844 C 1.605469 -2.839844 1.367188 -2.738281 1.191406 -2.539062 C 1.019531 -2.339844 0.933594 -2.027344 0.933594 -1.601562 Z "/>
</g>
<g id="glyph-0-11">
<path d="M 3.28125 -1.804688 C 3.28125 -1.726562 3.28125 -1.660156 3.277344 -1.605469 C 3.277344 -1.550781 3.273438 -1.5 3.269531 -1.453125 L 0.972656 -1.453125 C 0.972656 -1.117188 1.066406 -0.859375 1.253906 -0.683594 C 1.441406 -0.503906 1.707031 -0.414062 2.0625 -0.414062 C 2.15625 -0.414062 2.25 -0.417969 2.347656 -0.425781 C 2.441406 -0.433594 2.535156 -0.441406 2.625 -0.457031 C 2.710938 -0.46875 2.796875 -0.484375 2.878906 -0.5 C 2.960938 -0.515625 3.035156 -0.535156 3.105469 -0.554688 L 3.105469 -0.0859375 C 2.953125 -0.0429688 2.777344 -0.0078125 2.582031 0.0195312 C 2.390625 0.046875 2.1875 0.0585938 1.980469 0.0585938 C 1.699219 0.0585938 1.457031 0.0195312 1.257812 -0.0546875 C 1.054688 -0.132812 0.890625 -0.242188 0.761719 -0.386719 C 0.632812 -0.53125 0.535156 -0.707031 0.472656 -0.917969 C 0.410156 -1.125 0.378906 -1.363281 0.378906 -1.628906 C 0.378906 -1.859375 0.414062 -2.074219 0.480469 -2.28125 C 0.546875 -2.484375 0.644531 -2.664062 0.769531 -2.820312 C 0.898438 -2.976562 1.050781 -3.097656 1.238281 -3.191406 C 1.421875 -3.28125 1.628906 -3.328125 1.863281 -3.328125 C 2.09375 -3.328125 2.296875 -3.289062 2.46875 -3.21875 C 2.644531 -3.148438 2.792969 -3.046875 2.914062 -2.914062 C 3.035156 -2.785156 3.125 -2.625 3.1875 -2.4375 C 3.25 -2.25 3.28125 -2.039062 3.28125 -1.804688 M 2.691406 -1.886719 C 2.699219 -2.035156 2.683594 -2.167969 2.648438 -2.285156 C 2.613281 -2.40625 2.5625 -2.511719 2.488281 -2.597656 C 2.414062 -2.683594 2.324219 -2.753906 2.21875 -2.800781 C 2.109375 -2.851562 1.980469 -2.875 1.839844 -2.875 C 1.714844 -2.875 1.601562 -2.851562 1.5 -2.800781 C 1.398438 -2.753906 1.3125 -2.6875 1.238281 -2.601562 C 1.164062 -2.515625 1.101562 -2.410156 1.058594 -2.289062 C 1.011719 -2.167969 0.984375 -2.035156 0.972656 -1.886719 Z "/>
</g>
<g id="glyph-1-0">
<path d="M 0.652344 -3.269531 L 1.171875 -3.269531 L 1.1875 -2.664062 C 1.382812 -2.898438 1.570312 -3.066406 1.757812 -3.171875 C 1.945312 -3.273438 2.136719 -3.328125 2.328125 -3.328125 C 2.664062 -3.328125 2.921875 -3.21875 3.097656 -2.996094 C 3.273438 -2.777344 3.351562 -2.453125 3.339844 -2.023438 L 2.765625 -2.023438 C 2.773438 -2.308594 2.730469 -2.515625 2.640625 -2.644531 C 2.550781 -2.773438 2.417969 -2.839844 2.246094 -2.839844 C 2.171875 -2.839844 2.09375 -2.824219 2.015625 -2.796875 C 1.941406 -2.769531 1.859375 -2.726562 1.777344 -2.667969 C 1.699219 -2.609375 1.609375 -2.53125 1.519531 -2.4375 C 1.429688 -2.34375 1.332031 -2.230469 1.226562 -2.101562 L 1.226562 0 L 0.652344 0 Z "/>
</g>
<g id="glyph-1-1">
<path d="M 3.28125 -1.804688 C 3.28125 -1.726562 3.28125 -1.660156 3.277344 -1.605469 C 3.277344 -1.550781 3.273438 -1.5 3.269531 -1.453125 L 0.972656 -1.453125 C 0.972656 -1.117188 1.066406 -0.859375 1.253906 -0.683594 C 1.441406 -0.503906 1.707031 -0.414062 2.0625 -0.414062 C 2.15625 -0.414062 2.25 -0.417969 2.347656 -0.425781 C 2.441406 -0.433594 2.535156 -0.441406 2.625 -0.457031 C 2.710938 -0.46875 2.796875 -0.484375 2.878906 -0.5 C 2.960938 -0.515625 3.035156 -0.535156 3.105469 -0.554688 L 3.105469 -0.0859375 C 2.953125 -0.0429688 2.777344 -0.0078125 2.582031 0.0195312 C 2.390625 0.046875 2.1875 0.0585938 1.980469 0.0585938 C 1.699219 0.0585938 1.457031 0.0195312 1.257812 -0.0546875 C 1.054688 -0.132812 0.890625 -0.242188 0.761719 -0.386719 C 0.632812 -0.53125 0.535156 -0.707031 0.472656 -0.917969 C 0.410156 -1.125 0.378906 -1.363281 0.378906 -1.628906 C 0.378906 -1.859375 0.414062 -2.074219 0.480469 -2.28125 C 0.546875 -2.484375 0.644531 -2.664062 0.769531 -2.820312 C 0.898438 -2.976562 1.050781 -3.097656 1.238281 -3.191406 C 1.421875 -3.28125 1.628906 -3.328125 1.863281 -3.328125 C 2.09375 -3.328125 2.296875 -3.289062 2.46875 -3.21875 C 2.644531 -3.148438 2.792969 -3.046875 2.914062 -2.914062 C 3.035156 -2.785156 3.125 -2.625 3.1875 -2.4375 C 3.25 -2.25 3.28125 -2.039062 3.28125 -1.804688 M 2.691406 -1.886719 C 2.699219 -2.035156 2.683594 -2.167969 2.648438 -2.285156 C 2.613281 -2.40625 2.5625 -2.511719 2.488281 -2.597656 C 2.414062 -2.683594 2.324219 -2.753906 2.21875 -2.800781 C 2.109375 -2.851562 1.980469 -2.875 1.839844 -2.875 C 1.714844 -2.875 1.601562 -2.851562 1.5 -2.800781 C 1.398438 -2.753906 1.3125 -2.6875 1.238281 -2.601562 C 1.164062 -2.515625 1.101562 -2.410156 1.058594 -2.289062 C 1.011719 -2.167969 0.984375 -2.035156 0.972656 -1.886719 Z "/>
</g>
<g id="glyph-1-2">
<path d="M 3.109375 -0.890625 C 3.109375 -0.777344 3.089844 -0.671875 3.050781 -0.582031 C 3.011719 -0.492188 2.957031 -0.410156 2.890625 -0.339844 C 2.824219 -0.269531 2.746094 -0.210938 2.65625 -0.160156 C 2.566406 -0.109375 2.472656 -0.0664062 2.371094 -0.0351562 C 2.269531 -0.00390625 2.167969 0.0195312 2.0625 0.0351562 C 1.953125 0.0507812 1.851562 0.0585938 1.746094 0.0585938 C 1.527344 0.0585938 1.324219 0.046875 1.136719 0.0273438 C 0.953125 0.0078125 0.769531 -0.0234375 0.59375 -0.0664062 L 0.59375 -0.585938 C 0.785156 -0.53125 0.972656 -0.492188 1.164062 -0.460938 C 1.351562 -0.433594 1.539062 -0.417969 1.726562 -0.417969 C 1.996094 -0.417969 2.195312 -0.457031 2.328125 -0.53125 C 2.457031 -0.605469 2.523438 -0.710938 2.523438 -0.847656 C 2.523438 -0.90625 2.511719 -0.957031 2.492188 -1.003906 C 2.472656 -1.050781 2.433594 -1.09375 2.378906 -1.136719 C 2.324219 -1.179688 2.242188 -1.222656 2.128906 -1.269531 C 2.011719 -1.316406 1.859375 -1.367188 1.660156 -1.425781 C 1.511719 -1.46875 1.375 -1.519531 1.25 -1.574219 C 1.125 -1.628906 1.019531 -1.695312 0.925781 -1.769531 C 0.835938 -1.847656 0.765625 -1.9375 0.710938 -2.039062 C 0.660156 -2.140625 0.632812 -2.261719 0.632812 -2.398438 C 0.632812 -2.492188 0.65625 -2.589844 0.699219 -2.699219 C 0.742188 -2.808594 0.8125 -2.90625 0.914062 -3 C 1.015625 -3.09375 1.15625 -3.171875 1.328125 -3.234375 C 1.5 -3.296875 1.71875 -3.328125 1.980469 -3.328125 C 2.105469 -3.328125 2.25 -3.320312 2.40625 -3.304688 C 2.5625 -3.292969 2.722656 -3.265625 2.894531 -3.230469 L 2.894531 -2.726562 C 2.714844 -2.769531 2.546875 -2.804688 2.386719 -2.824219 C 2.226562 -2.84375 2.089844 -2.855469 1.972656 -2.855469 C 1.832031 -2.855469 1.710938 -2.84375 1.617188 -2.820312 C 1.519531 -2.800781 1.441406 -2.769531 1.382812 -2.734375 C 1.320312 -2.695312 1.277344 -2.648438 1.253906 -2.597656 C 1.226562 -2.546875 1.214844 -2.492188 1.214844 -2.433594 C 1.214844 -2.375 1.226562 -2.324219 1.25 -2.273438 C 1.269531 -2.226562 1.3125 -2.179688 1.375 -2.136719 C 1.4375 -2.09375 1.523438 -2.046875 1.632812 -2.003906 C 1.746094 -1.960938 1.890625 -1.910156 2.066406 -1.859375 C 2.261719 -1.800781 2.421875 -1.742188 2.554688 -1.679688 C 2.6875 -1.621094 2.796875 -1.550781 2.878906 -1.472656 C 2.960938 -1.398438 3.019531 -1.3125 3.054688 -1.21875 C 3.089844 -1.121094 3.109375 -1.011719 3.109375 -0.890625 Z "/>
</g>
<g id="glyph-1-3">
<path d="M 3.3125 -1.691406 C 3.3125 -1.402344 3.273438 -1.148438 3.191406 -0.929688 C 3.109375 -0.714844 2.996094 -0.535156 2.855469 -0.390625 C 2.710938 -0.246094 2.542969 -0.140625 2.347656 -0.0703125 C 2.152344 0.00390625 1.941406 0.0390625 1.710938 0.0390625 C 1.609375 0.0390625 1.503906 0.0351562 1.402344 0.0234375 C 1.296875 0.0117188 1.195312 -0.0078125 1.085938 -0.03125 L 1.085938 1.335938 L 0.519531 1.335938 L 0.519531 -3.269531 L 1.023438 -3.269531 L 1.0625 -2.722656 C 1.222656 -2.945312 1.398438 -3.101562 1.582031 -3.191406 C 1.765625 -3.28125 1.964844 -3.328125 2.179688 -3.328125 C 2.367188 -3.328125 2.53125 -3.289062 2.671875 -3.210938 C 2.8125 -3.132812 2.933594 -3.019531 3.027344 -2.878906 C 3.121094 -2.738281 3.195312 -2.566406 3.242188 -2.363281 C 3.289062 -2.164062 3.3125 -1.941406 3.3125 -1.691406 M 2.734375 -1.667969 C 2.734375 -1.839844 2.722656 -1.996094 2.695312 -2.140625 C 2.671875 -2.28125 2.632812 -2.40625 2.578125 -2.507812 C 2.523438 -2.609375 2.453125 -2.6875 2.371094 -2.746094 C 2.285156 -2.804688 2.183594 -2.832031 2.066406 -2.832031 C 1.996094 -2.832031 1.921875 -2.820312 1.847656 -2.796875 C 1.773438 -2.773438 1.699219 -2.738281 1.621094 -2.683594 C 1.539062 -2.628906 1.457031 -2.558594 1.367188 -2.472656 C 1.28125 -2.382812 1.1875 -2.273438 1.085938 -2.144531 L 1.085938 -0.558594 C 1.191406 -0.515625 1.300781 -0.480469 1.414062 -0.457031 C 1.53125 -0.433594 1.644531 -0.417969 1.753906 -0.417969 C 2.0625 -0.417969 2.300781 -0.523438 2.472656 -0.730469 C 2.648438 -0.9375 2.734375 -1.25 2.734375 -1.667969 Z "/>
</g>
<g id="glyph-1-4">
<path d="M 3.367188 -1.660156 C 3.367188 -1.40625 3.328125 -1.171875 3.257812 -0.960938 C 3.1875 -0.75 3.082031 -0.570312 2.949219 -0.417969 C 2.816406 -0.265625 2.652344 -0.148438 2.457031 -0.0664062 C 2.265625 0.015625 2.046875 0.0585938 1.800781 0.0585938 C 1.566406 0.0585938 1.355469 0.0234375 1.171875 -0.0507812 C 0.984375 -0.125 0.828125 -0.230469 0.699219 -0.371094 C 0.570312 -0.511719 0.46875 -0.6875 0.402344 -0.894531 C 0.332031 -1.101562 0.300781 -1.34375 0.300781 -1.613281 C 0.300781 -1.867188 0.335938 -2.101562 0.40625 -2.308594 C 0.476562 -2.519531 0.582031 -2.699219 0.714844 -2.851562 C 0.851562 -3 1.015625 -3.117188 1.207031 -3.203125 C 1.402344 -3.285156 1.621094 -3.328125 1.863281 -3.328125 C 2.101562 -3.328125 2.308594 -3.289062 2.496094 -3.21875 C 2.679688 -3.144531 2.839844 -3.039062 2.96875 -2.898438 C 3.097656 -2.757812 3.195312 -2.585938 3.261719 -2.375 C 3.332031 -2.167969 3.367188 -1.929688 3.367188 -1.660156 M 2.785156 -1.632812 C 2.785156 -1.835938 2.765625 -2.011719 2.71875 -2.164062 C 2.675781 -2.3125 2.613281 -2.441406 2.527344 -2.539062 C 2.445312 -2.640625 2.347656 -2.71875 2.226562 -2.769531 C 2.109375 -2.820312 1.976562 -2.84375 1.832031 -2.84375 C 1.664062 -2.84375 1.519531 -2.8125 1.398438 -2.746094 C 1.277344 -2.679688 1.179688 -2.589844 1.101562 -2.480469 C 1.023438 -2.371094 0.96875 -2.242188 0.933594 -2.09375 C 0.898438 -1.949219 0.878906 -1.792969 0.878906 -1.632812 C 0.878906 -1.433594 0.902344 -1.253906 0.945312 -1.101562 C 0.988281 -0.953125 1.054688 -0.824219 1.136719 -0.722656 C 1.21875 -0.625 1.316406 -0.546875 1.433594 -0.496094 C 1.550781 -0.445312 1.683594 -0.417969 1.832031 -0.417969 C 2 -0.417969 2.148438 -0.453125 2.265625 -0.519531 C 2.386719 -0.585938 2.488281 -0.671875 2.5625 -0.785156 C 2.640625 -0.894531 2.695312 -1.023438 2.734375 -1.171875 C 2.769531 -1.316406 2.785156 -1.472656 2.785156 -1.632812 Z "/>
</g>
<g id="glyph-1-5">
<path d="M 0.519531 -3.269531 L 1.023438 -3.269531 L 1.046875 -2.742188 C 1.144531 -2.855469 1.234375 -2.949219 1.324219 -3.023438 C 1.414062 -3.097656 1.5 -3.15625 1.585938 -3.203125 C 1.671875 -3.25 1.761719 -3.28125 1.847656 -3.300781 C 1.9375 -3.316406 2.03125 -3.328125 2.125 -3.328125 C 2.460938 -3.328125 2.714844 -3.226562 2.890625 -3.027344 C 3.0625 -2.832031 3.148438 -2.53125 3.148438 -2.132812 L 3.148438 0 L 2.582031 0 L 2.582031 -2.085938 C 2.582031 -2.34375 2.535156 -2.53125 2.4375 -2.65625 C 2.34375 -2.777344 2.199219 -2.839844 2.011719 -2.839844 C 1.941406 -2.839844 1.875 -2.828125 1.808594 -2.808594 C 1.742188 -2.785156 1.671875 -2.75 1.601562 -2.699219 C 1.53125 -2.648438 1.453125 -2.582031 1.367188 -2.492188 C 1.285156 -2.40625 1.191406 -2.296875 1.085938 -2.167969 L 1.085938 0 L 0.519531 0 Z "/>
</g>
<g id="glyph-1-6">
</g>
<g id="glyph-1-7">
<path d="M 3.230469 -2.101562 L 0.433594 -2.101562 L 0.433594 -2.582031 L 3.230469 -2.582031 L 3.230469 -2.101562 M 3.230469 -0.96875 L 0.433594 -0.96875 L 0.433594 -1.449219 L 3.230469 -1.449219 Z "/>
</g>
<g id="glyph-1-8">
<path d="M 3.058594 -0.121094 C 2.914062 -0.0625 2.761719 -0.0234375 2.605469 0.00390625 C 2.449219 0.03125 2.289062 0.046875 2.125 0.046875 C 1.609375 0.046875 1.210938 -0.09375 0.933594 -0.375 C 0.652344 -0.652344 0.515625 -1.0625 0.515625 -1.601562 C 0.515625 -1.859375 0.554688 -2.09375 0.632812 -2.304688 C 0.714844 -2.515625 0.828125 -2.695312 0.972656 -2.84375 C 1.117188 -2.996094 1.292969 -3.109375 1.492188 -3.191406 C 1.695312 -3.273438 1.917969 -3.3125 2.160156 -3.3125 C 2.332031 -3.3125 2.488281 -3.300781 2.636719 -3.277344 C 2.785156 -3.253906 2.925781 -3.214844 3.058594 -3.160156 L 3.058594 -2.621094 C 2.917969 -2.695312 2.773438 -2.746094 2.628906 -2.78125 C 2.480469 -2.816406 2.332031 -2.832031 2.175781 -2.832031 C 2.027344 -2.832031 1.890625 -2.804688 1.761719 -2.75 C 1.632812 -2.695312 1.519531 -2.613281 1.421875 -2.507812 C 1.324219 -2.40625 1.246094 -2.277344 1.191406 -2.128906 C 1.136719 -1.980469 1.105469 -1.808594 1.105469 -1.621094 C 1.105469 -1.226562 1.203125 -0.929688 1.394531 -0.734375 C 1.585938 -0.539062 1.851562 -0.4375 2.195312 -0.4375 C 2.347656 -0.4375 2.496094 -0.457031 2.640625 -0.492188 C 2.785156 -0.527344 2.925781 -0.578125 3.058594 -0.648438 Z "/>
</g>
<g id="glyph-1-9">
<path d="M 3.421875 -4.070312 C 3.125 -4.136719 2.867188 -4.167969 2.652344 -4.167969 C 2.144531 -4.167969 1.886719 -3.898438 1.886719 -3.367188 L 1.886719 -2.792969 L 3.320312 -2.792969 L 3.320312 -2.320312 L 1.886719 -2.320312 L 1.886719 0 L 1.3125 0 L 1.3125 -2.320312 L 0.261719 -2.320312 L 0.261719 -2.792969 L 1.3125 -2.792969 L 1.3125 -3.332031 C 1.3125 -4.203125 1.765625 -4.640625 2.671875 -4.640625 C 2.898438 -4.640625 3.148438 -4.613281 3.421875 -4.5625 Z "/>
</g>
<g id="glyph-1-10">
<path d="M 1.632812 -2.800781 L 0.667969 -2.800781 L 0.667969 -3.269531 L 2.207031 -3.269531 L 2.207031 -0.472656 L 3.179688 -0.472656 L 3.179688 0 L 0.558594 0 L 0.558594 -0.472656 L 1.632812 -0.472656 L 1.632812 -2.800781 M 1.832031 -4.640625 C 1.894531 -4.640625 1.953125 -4.628906 2.007812 -4.605469 C 2.0625 -4.582031 2.109375 -4.550781 2.148438 -4.507812 C 2.191406 -4.46875 2.222656 -4.421875 2.246094 -4.367188 C 2.265625 -4.3125 2.277344 -4.253906 2.277344 -4.191406 C 2.277344 -4.132812 2.265625 -4.074219 2.246094 -4.019531 C 2.222656 -3.964844 2.191406 -3.917969 2.148438 -3.875 C 2.109375 -3.835938 2.0625 -3.804688 2.007812 -3.78125 C 1.953125 -3.757812 1.894531 -3.746094 1.832031 -3.746094 C 1.769531 -3.746094 1.710938 -3.757812 1.65625 -3.78125 C 1.601562 -3.804688 1.554688 -3.835938 1.515625 -3.875 C 1.476562 -3.917969 1.445312 -3.964844 1.421875 -4.019531 C 1.398438 -4.074219 1.386719 -4.132812 1.386719 -4.191406 C 1.386719 -4.253906 1.398438 -4.3125 1.421875 -4.367188 C 1.445312 -4.421875 1.476562 -4.46875 1.515625 -4.507812 C 1.554688 -4.550781 1.601562 -4.582031 1.65625 -4.605469 C 1.710938 -4.628906 1.769531 -4.640625 1.832031 -4.640625 Z "/>
</g>
<g id="glyph-1-11">
<path d="M 0.355469 -1.566406 C 0.355469 -1.84375 0.394531 -2.089844 0.46875 -2.304688 C 0.542969 -2.523438 0.652344 -2.703125 0.792969 -2.851562 C 0.933594 -3 1.101562 -3.113281 1.296875 -3.191406 C 1.492188 -3.269531 1.710938 -3.308594 1.953125 -3.308594 C 2.058594 -3.308594 2.160156 -3.300781 2.261719 -3.289062 C 2.363281 -3.273438 2.460938 -3.253906 2.558594 -3.226562 L 2.558594 -4.601562 L 3.128906 -4.601562 L 3.128906 0 L 2.621094 0 L 2.601562 -0.617188 C 2.441406 -0.386719 2.269531 -0.21875 2.085938 -0.105469 C 1.902344 0.00390625 1.703125 0.0585938 1.488281 0.0585938 C 1.300781 0.0585938 1.136719 0.0195312 0.996094 -0.0585938 C 0.851562 -0.136719 0.734375 -0.246094 0.640625 -0.390625 C 0.546875 -0.53125 0.472656 -0.703125 0.425781 -0.902344 C 0.378906 -1.101562 0.355469 -1.324219 0.355469 -1.566406 M 0.933594 -1.601562 C 0.933594 -1.207031 0.992188 -0.910156 1.109375 -0.71875 C 1.222656 -0.523438 1.390625 -0.425781 1.601562 -0.425781 C 1.746094 -0.425781 1.894531 -0.492188 2.054688 -0.617188 C 2.214844 -0.746094 2.382812 -0.9375 2.558594 -1.1875 L 2.558594 -2.703125 C 2.464844 -2.75 2.363281 -2.78125 2.25 -2.804688 C 2.136719 -2.828125 2.023438 -2.839844 1.914062 -2.839844 C 1.605469 -2.839844 1.367188 -2.738281 1.191406 -2.539062 C 1.019531 -2.339844 0.933594 -2.027344 0.933594 -1.601562 Z "/>
</g>
<g id="glyph-1-12">
<path d="M 1.804688 -1.023438 C 1.878906 -1.023438 1.949219 -1.011719 2.015625 -0.984375 C 2.082031 -0.953125 2.140625 -0.914062 2.1875 -0.867188 C 2.238281 -0.816406 2.277344 -0.757812 2.304688 -0.691406 C 2.332031 -0.625 2.347656 -0.554688 2.347656 -0.476562 C 2.347656 -0.40625 2.332031 -0.335938 2.304688 -0.269531 C 2.277344 -0.203125 2.238281 -0.148438 2.1875 -0.0976562 C 2.140625 -0.0507812 2.082031 -0.0117188 2.015625 0.015625 C 1.949219 0.0429688 1.878906 0.0585938 1.804688 0.0585938 C 1.730469 0.0585938 1.660156 0.0429688 1.59375 0.015625 C 1.53125 -0.0117188 1.472656 -0.0507812 1.425781 -0.0976562 C 1.375 -0.148438 1.335938 -0.203125 1.308594 -0.269531 C 1.28125 -0.335938 1.265625 -0.40625 1.265625 -0.476562 C 1.265625 -0.554688 1.28125 -0.625 1.308594 -0.691406 C 1.335938 -0.757812 1.375 -0.816406 1.425781 -0.867188 C 1.472656 -0.914062 1.53125 -0.953125 1.59375 -0.984375 C 1.660156 -1.011719 1.730469 -1.023438 1.804688 -1.023438 Z "/>
</g>
<g id="glyph-1-13">
<path d="M 2.875 -2.804688 C 2.933594 -2.730469 2.980469 -2.640625 3.015625 -2.539062 C 3.050781 -2.441406 3.066406 -2.332031 3.066406 -2.214844 C 3.066406 -2.042969 3.035156 -1.890625 2.972656 -1.75 C 2.910156 -1.609375 2.824219 -1.488281 2.710938 -1.390625 C 2.597656 -1.289062 2.464844 -1.210938 2.304688 -1.15625 C 2.148438 -1.101562 1.976562 -1.074219 1.785156 -1.074219 C 1.648438 -1.074219 1.523438 -1.089844 1.402344 -1.117188 C 1.285156 -1.148438 1.1875 -1.183594 1.121094 -1.226562 C 1.078125 -1.167969 1.042969 -1.109375 1.015625 -1.054688 C 0.988281 -1 0.972656 -0.941406 0.972656 -0.871094 C 0.972656 -0.789062 1.011719 -0.722656 1.09375 -0.667969 C 1.171875 -0.613281 1.277344 -0.582031 1.40625 -0.578125 L 2.265625 -0.546875 C 2.429688 -0.542969 2.578125 -0.523438 2.714844 -0.484375 C 2.855469 -0.449219 2.972656 -0.394531 3.070312 -0.324219 C 3.171875 -0.257812 3.246094 -0.171875 3.300781 -0.0703125 C 3.359375 0.0351562 3.386719 0.152344 3.386719 0.285156 C 3.386719 0.433594 3.355469 0.570312 3.289062 0.699219 C 3.226562 0.828125 3.132812 0.945312 3 1.042969 C 2.867188 1.140625 2.703125 1.21875 2.5 1.277344 C 2.296875 1.335938 2.058594 1.367188 1.78125 1.367188 C 1.515625 1.367188 1.289062 1.347656 1.105469 1.304688 C 0.917969 1.261719 0.765625 1.203125 0.648438 1.128906 C 0.527344 1.054688 0.441406 0.964844 0.386719 0.859375 C 0.332031 0.757812 0.304688 0.644531 0.304688 0.519531 C 0.304688 0.363281 0.34375 0.222656 0.417969 0.105469 C 0.492188 -0.015625 0.605469 -0.128906 0.757812 -0.242188 C 0.703125 -0.265625 0.652344 -0.300781 0.613281 -0.339844 C 0.570312 -0.378906 0.539062 -0.421875 0.511719 -0.46875 C 0.484375 -0.515625 0.464844 -0.5625 0.453125 -0.617188 C 0.4375 -0.667969 0.433594 -0.71875 0.433594 -0.769531 C 0.433594 -0.910156 0.464844 -1.039062 0.53125 -1.15625 C 0.597656 -1.273438 0.675781 -1.382812 0.769531 -1.488281 C 0.726562 -1.539062 0.691406 -1.585938 0.660156 -1.632812 C 0.628906 -1.683594 0.601562 -1.734375 0.578125 -1.789062 C 0.554688 -1.84375 0.539062 -1.902344 0.527344 -1.96875 C 0.515625 -2.03125 0.507812 -2.105469 0.507812 -2.1875 C 0.507812 -2.355469 0.539062 -2.511719 0.601562 -2.652344 C 0.664062 -2.792969 0.75 -2.910156 0.859375 -3.011719 C 0.972656 -3.109375 1.105469 -3.1875 1.265625 -3.242188 C 1.421875 -3.300781 1.597656 -3.328125 1.785156 -3.328125 C 1.867188 -3.328125 1.945312 -3.320312 2.019531 -3.308594 C 2.09375 -3.300781 2.15625 -3.285156 2.214844 -3.269531 L 3.398438 -3.269531 L 3.398438 -2.804688 L 2.875 -2.804688 M 0.90625 0.472656 C 0.90625 0.625 0.988281 0.738281 1.148438 0.808594 C 1.308594 0.878906 1.53125 0.914062 1.820312 0.914062 C 2 0.914062 2.152344 0.898438 2.273438 0.867188 C 2.394531 0.832031 2.496094 0.789062 2.570312 0.738281 C 2.644531 0.683594 2.699219 0.625 2.730469 0.554688 C 2.761719 0.488281 2.78125 0.417969 2.78125 0.34375 C 2.78125 0.210938 2.726562 0.113281 2.617188 0.0507812 C 2.507812 -0.0117188 2.34375 -0.046875 2.117188 -0.0585938 L 1.265625 -0.0859375 C 1.195312 -0.0390625 1.136719 0.0078125 1.089844 0.0507812 C 1.042969 0.0976562 1.007812 0.144531 0.980469 0.191406 C 0.953125 0.238281 0.933594 0.285156 0.925781 0.332031 C 0.914062 0.378906 0.90625 0.425781 0.90625 0.472656 M 1.082031 -2.199219 C 1.082031 -2.097656 1.097656 -2 1.132812 -1.914062 C 1.167969 -1.828125 1.214844 -1.753906 1.277344 -1.691406 C 1.34375 -1.632812 1.417969 -1.585938 1.503906 -1.550781 C 1.589844 -1.515625 1.683594 -1.5 1.785156 -1.5 C 1.898438 -1.5 2 -1.519531 2.089844 -1.558594 C 2.175781 -1.59375 2.25 -1.648438 2.308594 -1.710938 C 2.371094 -1.777344 2.414062 -1.851562 2.445312 -1.9375 C 2.476562 -2.023438 2.492188 -2.109375 2.492188 -2.199219 C 2.492188 -2.304688 2.476562 -2.398438 2.441406 -2.488281 C 2.40625 -2.574219 2.359375 -2.648438 2.296875 -2.707031 C 2.230469 -2.769531 2.15625 -2.816406 2.070312 -2.851562 C 1.984375 -2.882812 1.890625 -2.898438 1.785156 -2.898438 C 1.675781 -2.898438 1.574219 -2.878906 1.484375 -2.839844 C 1.398438 -2.800781 1.324219 -2.75 1.265625 -2.6875 C 1.203125 -2.625 1.160156 -2.546875 1.128906 -2.464844 C 1.097656 -2.378906 1.082031 -2.292969 1.082031 -2.199219 Z "/>
</g>
<g id="glyph-1-14">
<path d="M 3.152344 -0.046875 C 3.027344 -0.0117188 2.894531 0.0117188 2.757812 0.0234375 C 2.621094 0.0390625 2.480469 0.046875 2.339844 0.046875 C 1.929688 0.046875 1.625 -0.046875 1.421875 -0.234375 C 1.21875 -0.417969 1.121094 -0.703125 1.121094 -1.085938 L 1.121094 -2.792969 L 0.203125 -2.792969 L 0.203125 -3.269531 L 1.121094 -3.269531 L 1.121094 -4.167969 L 1.6875 -4.3125 L 1.6875 -3.269531 L 3.152344 -3.269531 L 3.152344 -2.792969 L 1.6875 -2.792969 L 1.6875 -1.132812 C 1.6875 -0.898438 1.75 -0.722656 1.875 -0.605469 C 2 -0.492188 2.183594 -0.433594 2.425781 -0.433594 C 2.527344 -0.433594 2.644531 -0.441406 2.765625 -0.457031 C 2.890625 -0.472656 3.019531 -0.5 3.152344 -0.535156 Z "/>
</g>
<g id="glyph-1-15">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-1-16">
<path d="M 1.558594 -4.601562 L 1.46875 -3.074219 L 0.933594 -3.074219 L 0.839844 -4.601562 L 1.558594 -4.601562 M 2.824219 -4.601562 L 2.734375 -3.074219 L 2.199219 -3.074219 L 2.105469 -4.601562 Z "/>
</g>
<g id="glyph-1-17">
<path d="M 3.148438 0 L 2.582031 0 L 2.582031 -2.085938 C 2.582031 -2.339844 2.535156 -2.527344 2.441406 -2.652344 C 2.34375 -2.777344 2.210938 -2.839844 2.035156 -2.839844 C 1.957031 -2.839844 1.886719 -2.828125 1.820312 -2.808594 C 1.753906 -2.785156 1.6875 -2.75 1.613281 -2.699219 C 1.542969 -2.648438 1.464844 -2.582031 1.378906 -2.492188 C 1.296875 -2.40625 1.199219 -2.296875 1.085938 -2.167969 L 1.085938 0 L 0.519531 0 L 0.519531 -4.601562 L 1.085938 -4.601562 L 1.085938 -3.269531 L 1.066406 -2.753906 C 1.15625 -2.859375 1.242188 -2.949219 1.328125 -3.023438 C 1.414062 -3.09375 1.5 -3.152344 1.585938 -3.199219 C 1.671875 -3.246094 1.761719 -3.277344 1.847656 -3.296875 C 1.9375 -3.316406 2.03125 -3.328125 2.125 -3.328125 C 2.453125 -3.328125 2.703125 -3.226562 2.878906 -3.027344 C 3.058594 -2.832031 3.148438 -2.53125 3.148438 -2.132812 Z "/>
</g>
<g id="glyph-1-18">
<path d="M 1.832031 -3.328125 C 1.898438 -3.328125 1.964844 -3.3125 2.023438 -3.285156 C 2.085938 -3.257812 2.140625 -3.222656 2.183594 -3.175781 C 2.230469 -3.132812 2.265625 -3.078125 2.292969 -3.015625 C 2.320312 -2.957031 2.335938 -2.894531 2.335938 -2.824219 C 2.335938 -2.757812 2.320312 -2.691406 2.292969 -2.632812 C 2.265625 -2.570312 2.230469 -2.519531 2.183594 -2.472656 C 2.140625 -2.429688 2.085938 -2.390625 2.023438 -2.367188 C 1.964844 -2.339844 1.898438 -2.328125 1.832031 -2.328125 C 1.761719 -2.328125 1.699219 -2.339844 1.640625 -2.367188 C 1.578125 -2.390625 1.527344 -2.429688 1.480469 -2.472656 C 1.433594 -2.519531 1.398438 -2.570312 1.375 -2.632812 C 1.347656 -2.691406 1.335938 -2.757812 1.335938 -2.824219 C 1.335938 -2.894531 1.347656 -2.957031 1.375 -3.015625 C 1.398438 -3.078125 1.433594 -3.132812 1.480469 -3.175781 C 1.527344 -3.222656 1.578125 -3.257812 1.640625 -3.285156 C 1.699219 -3.3125 1.761719 -3.328125 1.832031 -3.328125 M 1.832031 -0.941406 C 1.898438 -0.941406 1.964844 -0.925781 2.023438 -0.898438 C 2.085938 -0.871094 2.140625 -0.835938 2.183594 -0.789062 C 2.230469 -0.746094 2.265625 -0.691406 2.292969 -0.632812 C 2.320312 -0.570312 2.335938 -0.507812 2.335938 -0.4375 C 2.335938 -0.371094 2.320312 -0.304688 2.292969 -0.246094 C 2.265625 -0.1875 2.230469 -0.132812 2.183594 -0.0859375 C 2.140625 -0.0429688 2.085938 -0.0078125 2.023438 0.0195312 C 1.964844 0.046875 1.898438 0.0585938 1.832031 0.0585938 C 1.761719 0.0585938 1.699219 0.046875 1.640625 0.0195312 C 1.578125 -0.0078125 1.527344 -0.0429688 1.480469 -0.0859375 C 1.433594 -0.132812 1.398438 -0.1875 1.375 -0.246094 C 1.347656 -0.304688 1.335938 -0.371094 1.335938 -0.4375 C 1.335938 -0.507812 1.347656 -0.570312 1.375 -0.632812 C 1.398438 -0.691406 1.433594 -0.746094 1.480469 -0.789062 C 1.527344 -0.835938 1.578125 -0.871094 1.640625 -0.898438 C 1.699219 -0.925781 1.761719 -0.941406 1.832031 -0.941406 Z "/>
</g>
<g id="glyph-1-19">
<path d="M 3.148438 -4.601562 L 0.914062 0.699219 L 0.375 0.699219 L 2.605469 -4.601562 Z "/>
</g>
<g id="glyph-1-20">
<path d="M 3.546875 -3.269531 L 3.074219 0 L 2.386719 0 L 1.914062 -1.367188 L 1.820312 -1.699219 L 1.710938 -1.347656 L 1.257812 0 L 0.59375 0 L 0.121094 -3.269531 L 0.671875 -3.269531 L 0.945312 -1.046875 L 1.007812 -0.554688 L 1.144531 -0.984375 L 1.621094 -2.453125 L 2.027344 -2.453125 L 2.539062 -1.007812 L 2.683594 -0.574219 L 2.734375 -1.03125 L 2.988281 -3.269531 Z "/>
</g>
<g id="glyph-1-21">
<path d="M 2.851562 0 L 2.851562 -2.347656 C 2.851562 -2.449219 2.847656 -2.53125 2.839844 -2.597656 C 2.832031 -2.664062 2.820312 -2.714844 2.804688 -2.753906 C 2.789062 -2.789062 2.765625 -2.816406 2.742188 -2.832031 C 2.71875 -2.847656 2.6875 -2.855469 2.648438 -2.855469 C 2.605469 -2.855469 2.566406 -2.839844 2.527344 -2.816406 C 2.492188 -2.789062 2.453125 -2.746094 2.410156 -2.6875 C 2.367188 -2.628906 2.320312 -2.550781 2.269531 -2.457031 C 2.21875 -2.359375 2.160156 -2.242188 2.089844 -2.101562 L 2.089844 0 L 1.570312 0 L 1.570312 -2.285156 C 1.570312 -2.40625 1.570312 -2.5 1.5625 -2.574219 C 1.554688 -2.648438 1.542969 -2.707031 1.523438 -2.746094 C 1.507812 -2.789062 1.488281 -2.816406 1.460938 -2.832031 C 1.433594 -2.847656 1.402344 -2.855469 1.367188 -2.855469 C 1.328125 -2.855469 1.292969 -2.84375 1.257812 -2.820312 C 1.222656 -2.800781 1.183594 -2.761719 1.140625 -2.703125 C 1.097656 -2.648438 1.050781 -2.570312 1 -2.472656 C 0.945312 -2.375 0.886719 -2.25 0.8125 -2.101562 L 0.8125 0 L 0.292969 0 L 0.292969 -3.269531 L 0.726562 -3.269531 L 0.75 -2.644531 C 0.808594 -2.769531 0.863281 -2.875 0.917969 -2.960938 C 0.96875 -3.050781 1.023438 -3.117188 1.082031 -3.171875 C 1.136719 -3.226562 1.199219 -3.265625 1.261719 -3.289062 C 1.324219 -3.3125 1.394531 -3.328125 1.472656 -3.328125 C 1.648438 -3.328125 1.785156 -3.269531 1.875 -3.152344 C 1.964844 -3.039062 2.011719 -2.859375 2.011719 -2.621094 C 2.0625 -2.734375 2.113281 -2.832031 2.164062 -2.921875 C 2.214844 -3.007812 2.269531 -3.082031 2.324219 -3.144531 C 2.382812 -3.203125 2.445312 -3.25 2.515625 -3.28125 C 2.585938 -3.3125 2.664062 -3.328125 2.757812 -3.328125 C 3.167969 -3.328125 3.371094 -3.011719 3.371094 -2.378906 L 3.371094 0 Z "/>
</g>
<g id="glyph-1-22">
<path d="M 0.773438 0.667969 C 0.886719 0.671875 0.992188 0.660156 1.097656 0.636719 C 1.203125 0.613281 1.292969 0.578125 1.371094 0.53125 C 1.453125 0.484375 1.515625 0.425781 1.5625 0.359375 C 1.609375 0.289062 1.632812 0.210938 1.632812 0.121094 C 1.632812 0.03125 1.617188 -0.0429688 1.585938 -0.101562 C 1.554688 -0.15625 1.519531 -0.210938 1.480469 -0.257812 C 1.441406 -0.304688 1.40625 -0.355469 1.375 -0.410156 C 1.34375 -0.464844 1.328125 -0.539062 1.328125 -0.628906 C 1.328125 -0.671875 1.335938 -0.722656 1.355469 -0.769531 C 1.371094 -0.820312 1.398438 -0.867188 1.433594 -0.90625 C 1.46875 -0.949219 1.515625 -0.984375 1.570312 -1.007812 C 1.625 -1.035156 1.691406 -1.046875 1.765625 -1.046875 C 1.84375 -1.046875 1.917969 -1.03125 1.988281 -1 C 2.058594 -0.96875 2.121094 -0.921875 2.171875 -0.855469 C 2.226562 -0.789062 2.269531 -0.710938 2.300781 -0.613281 C 2.332031 -0.515625 2.347656 -0.398438 2.347656 -0.265625 C 2.347656 -0.0859375 2.3125 0.0859375 2.246094 0.253906 C 2.179688 0.417969 2.082031 0.566406 1.953125 0.691406 C 1.820312 0.820312 1.65625 0.921875 1.460938 1 C 1.261719 1.074219 1.035156 1.113281 0.773438 1.113281 Z "/>
</g>
<g id="glyph-1-23">
<path d="M 2.621094 0 L 2.605469 -0.4375 C 2.429688 -0.265625 2.25 -0.136719 2.066406 -0.0585938 C 1.882812 0.0195312 1.6875 0.0585938 1.488281 0.0585938 C 1.300781 0.0585938 1.140625 0.0351562 1.007812 -0.0117188 C 0.875 -0.0625 0.769531 -0.125 0.683594 -0.210938 C 0.597656 -0.292969 0.535156 -0.390625 0.492188 -0.503906 C 0.453125 -0.617188 0.433594 -0.738281 0.433594 -0.871094 C 0.433594 -1.199219 0.554688 -1.457031 0.800781 -1.640625 C 1.042969 -1.828125 1.402344 -1.921875 1.882812 -1.921875 L 2.558594 -1.921875 L 2.558594 -2.207031 C 2.558594 -2.398438 2.496094 -2.554688 2.375 -2.671875 C 2.25 -2.785156 2.0625 -2.84375 1.804688 -2.84375 C 1.621094 -2.84375 1.441406 -2.824219 1.261719 -2.78125 C 1.082031 -2.742188 0.898438 -2.683594 0.707031 -2.605469 L 0.707031 -3.117188 C 0.777344 -3.144531 0.859375 -3.171875 0.945312 -3.195312 C 1.035156 -3.21875 1.125 -3.242188 1.222656 -3.261719 C 1.320312 -3.28125 1.421875 -3.296875 1.53125 -3.308594 C 1.636719 -3.320312 1.742188 -3.328125 1.851562 -3.328125 C 2.050781 -3.328125 2.226562 -3.304688 2.386719 -3.261719 C 2.542969 -3.21875 2.679688 -3.152344 2.789062 -3.0625 C 2.898438 -2.972656 2.980469 -2.863281 3.039062 -2.726562 C 3.097656 -2.59375 3.128906 -2.433594 3.128906 -2.253906 L 3.128906 0 L 2.621094 0 M 2.558594 -1.488281 L 1.839844 -1.488281 C 1.699219 -1.488281 1.578125 -1.472656 1.472656 -1.445312 C 1.371094 -1.417969 1.289062 -1.375 1.222656 -1.324219 C 1.160156 -1.273438 1.109375 -1.210938 1.078125 -1.136719 C 1.046875 -1.066406 1.03125 -0.984375 1.03125 -0.890625 C 1.03125 -0.828125 1.042969 -0.769531 1.0625 -0.710938 C 1.082031 -0.652344 1.113281 -0.601562 1.15625 -0.558594 C 1.199219 -0.515625 1.253906 -0.476562 1.324219 -0.453125 C 1.394531 -0.425781 1.480469 -0.414062 1.578125 -0.414062 C 1.707031 -0.414062 1.859375 -0.453125 2.027344 -0.53125 C 2.195312 -0.613281 2.371094 -0.738281 2.558594 -0.90625 Z "/>
</g>
<g id="glyph-1-24">
<path d="M 3.246094 0 L 0.574219 0 L 0.574219 -0.527344 L 1.667969 -0.527344 L 1.667969 -3.632812 L 0.648438 -3.078125 L 0.4375 -3.5625 L 1.792969 -4.273438 L 2.296875 -4.273438 L 2.296875 -0.527344 L 3.246094 -0.527344 Z "/>
</g>
<g id="glyph-1-25">
<path d="M 3.199219 -1.292969 C 3.199219 -1.105469 3.160156 -0.929688 3.085938 -0.765625 C 3.011719 -0.601562 2.894531 -0.460938 2.742188 -0.335938 C 2.59375 -0.214844 2.402344 -0.117188 2.171875 -0.046875 C 1.941406 0.0234375 1.671875 0.0585938 1.367188 0.0585938 C 1.199219 0.0585938 1.046875 0.0546875 0.910156 0.0429688 C 0.777344 0.03125 0.652344 0.015625 0.535156 0 L 0.535156 -0.507812 C 0.667969 -0.484375 0.808594 -0.464844 0.960938 -0.453125 C 1.109375 -0.4375 1.261719 -0.433594 1.417969 -0.433594 C 1.632812 -0.433594 1.8125 -0.453125 1.964844 -0.488281 C 2.117188 -0.527344 2.238281 -0.582031 2.335938 -0.652344 C 2.429688 -0.726562 2.5 -0.8125 2.542969 -0.914062 C 2.585938 -1.015625 2.605469 -1.132812 2.605469 -1.257812 C 2.605469 -1.375 2.582031 -1.480469 2.527344 -1.566406 C 2.476562 -1.652344 2.402344 -1.726562 2.308594 -1.785156 C 2.214844 -1.84375 2.101562 -1.886719 1.972656 -1.914062 C 1.839844 -1.945312 1.695312 -1.960938 1.539062 -1.960938 L 1.054688 -1.960938 L 1.054688 -2.425781 L 1.546875 -2.425781 C 1.675781 -2.425781 1.789062 -2.441406 1.894531 -2.476562 C 2 -2.507812 2.089844 -2.558594 2.167969 -2.621094 C 2.242188 -2.683594 2.296875 -2.761719 2.339844 -2.851562 C 2.378906 -2.945312 2.398438 -3.050781 2.398438 -3.167969 C 2.398438 -3.394531 2.328125 -3.5625 2.191406 -3.664062 C 2.050781 -3.769531 1.847656 -3.820312 1.578125 -3.820312 C 1.433594 -3.820312 1.289062 -3.808594 1.136719 -3.777344 C 0.984375 -3.75 0.820312 -3.707031 0.648438 -3.652344 L 0.648438 -4.148438 C 0.722656 -4.171875 0.800781 -4.195312 0.882812 -4.21875 C 0.96875 -4.238281 1.050781 -4.253906 1.132812 -4.269531 C 1.21875 -4.285156 1.300781 -4.292969 1.382812 -4.300781 C 1.464844 -4.308594 1.546875 -4.3125 1.621094 -4.3125 C 1.847656 -4.3125 2.046875 -4.289062 2.21875 -4.238281 C 2.386719 -4.191406 2.53125 -4.121094 2.644531 -4.03125 C 2.761719 -3.9375 2.847656 -3.828125 2.90625 -3.699219 C 2.964844 -3.566406 2.996094 -3.421875 2.996094 -3.257812 C 2.996094 -3.015625 2.933594 -2.8125 2.808594 -2.644531 C 2.683594 -2.480469 2.511719 -2.351562 2.296875 -2.253906 C 2.40625 -2.234375 2.515625 -2.199219 2.621094 -2.148438 C 2.730469 -2.097656 2.824219 -2.03125 2.910156 -1.949219 C 2.996094 -1.867188 3.066406 -1.769531 3.121094 -1.660156 C 3.171875 -1.550781 3.199219 -1.425781 3.199219 -1.292969 Z "/>
</g>
<g id="glyph-1-26">
<path d="M 1.1875 -4.847656 C 2.1875 -3.921875 2.6875 -2.890625 2.6875 -1.753906 C 2.6875 -1.519531 2.664062 -1.277344 2.617188 -1.023438 C 2.570312 -0.773438 2.488281 -0.515625 2.375 -0.253906 C 2.257812 0.0117188 2.101562 0.277344 1.910156 0.550781 C 1.714844 0.820312 1.46875 1.09375 1.175781 1.367188 L 0.847656 1.03125 C 1.269531 0.613281 1.585938 0.175781 1.792969 -0.28125 C 2 -0.734375 2.105469 -1.214844 2.105469 -1.710938 C 2.105469 -2.746094 1.6875 -3.675781 0.847656 -4.5 Z "/>
</g>
<g id="glyph-2-0">
<path d="M 3.3125 -1.691406 C 3.3125 -1.402344 3.273438 -1.148438 3.191406 -0.929688 C 3.109375 -0.714844 2.996094 -0.535156 2.855469 -0.390625 C 2.710938 -0.246094 2.542969 -0.140625 2.347656 -0.0703125 C 2.152344 0.00390625 1.941406 0.0390625 1.710938 0.0390625 C 1.609375 0.0390625 1.503906 0.0351562 1.402344 0.0234375 C 1.296875 0.0117188 1.195312 -0.0078125 1.085938 -0.03125 L 1.085938 1.335938 L 0.519531 1.335938 L 0.519531 -3.269531 L 1.023438 -3.269531 L 1.0625 -2.722656 C 1.222656 -2.945312 1.398438 -3.101562 1.582031 -3.191406 C 1.765625 -3.28125 1.964844 -3.328125 2.179688 -3.328125 C 2.367188 -3.328125 2.53125 -3.289062 2.671875 -3.210938 C 2.8125 -3.132812 2.933594 -3.019531 3.027344 -2.878906 C 3.121094 -2.738281 3.195312 -2.566406 3.242188 -2.363281 C 3.289062 -2.164062 3.3125 -1.941406 3.3125 -1.691406 M 2.734375 -1.667969 C 2.734375 -1.839844 2.722656 -1.996094 2.695312 -2.140625 C 2.671875 -2.28125 2.632812 -2.40625 2.578125 -2.507812 C 2.523438 -2.609375 2.453125 -2.6875 2.371094 -2.746094 C 2.285156 -2.804688 2.183594 -2.832031 2.066406 -2.832031 C 1.996094 -2.832031 1.921875 -2.820312 1.847656 -2.796875 C 1.773438 -2.773438 1.699219 -2.738281 1.621094 -2.683594 C 1.539062 -2.628906 1.457031 -2.558594 1.367188 -2.472656 C 1.28125 -2.382812 1.1875 -2.273438 1.085938 -2.144531 L 1.085938 -0.558594 C 1.191406 -0.515625 1.300781 -0.480469 1.414062 -0.457031 C 1.53125 -0.433594 1.644531 -0.417969 1.753906 -0.417969 C 2.0625 -0.417969 2.300781 -0.523438 2.472656 -0.730469 C 2.648438 -0.9375 2.734375 -1.25 2.734375 -1.667969 Z "/>
</g>
<g id="glyph-2-1">
<path d="M 0.652344 -3.269531 L 1.171875 -3.269531 L 1.1875 -2.664062 C 1.382812 -2.898438 1.570312 -3.066406 1.757812 -3.171875 C 1.945312 -3.273438 2.136719 -3.328125 2.328125 -3.328125 C 2.664062 -3.328125 2.921875 -3.21875 3.097656 -2.996094 C 3.273438 -2.777344 3.351562 -2.453125 3.339844 -2.023438 L 2.765625 -2.023438 C 2.773438 -2.308594 2.730469 -2.515625 2.640625 -2.644531 C 2.550781 -2.773438 2.417969 -2.839844 2.246094 -2.839844 C 2.171875 -2.839844 2.09375 -2.824219 2.015625 -2.796875 C 1.941406 -2.769531 1.859375 -2.726562 1.777344 -2.667969 C 1.699219 -2.609375 1.609375 -2.53125 1.519531 -2.4375 C 1.429688 -2.34375 1.332031 -2.230469 1.226562 -2.101562 L 1.226562 0 L 0.652344 0 Z "/>
</g>
<g id="glyph-2-2">
<path d="M 1.632812 -2.800781 L 0.667969 -2.800781 L 0.667969 -3.269531 L 2.207031 -3.269531 L 2.207031 -0.472656 L 3.179688 -0.472656 L 3.179688 0 L 0.558594 0 L 0.558594 -0.472656 L 1.632812 -0.472656 L 1.632812 -2.800781 M 1.832031 -4.640625 C 1.894531 -4.640625 1.953125 -4.628906 2.007812 -4.605469 C 2.0625 -4.582031 2.109375 -4.550781 2.148438 -4.507812 C 2.191406 -4.46875 2.222656 -4.421875 2.246094 -4.367188 C 2.265625 -4.3125 2.277344 -4.253906 2.277344 -4.191406 C 2.277344 -4.132812 2.265625 -4.074219 2.246094 -4.019531 C 2.222656 -3.964844 2.191406 -3.917969 2.148438 -3.875 C 2.109375 -3.835938 2.0625 -3.804688 2.007812 -3.78125 C 1.953125 -3.757812 1.894531 -3.746094 1.832031 -3.746094 C 1.769531 -3.746094 1.710938 -3.757812 1.65625 -3.78125 C 1.601562 -3.804688 1.554688 -3.835938 1.515625 -3.875 C 1.476562 -3.917969 1.445312 -3.964844 1.421875 -4.019531 C 1.398438 -4.074219 1.386719 -4.132812 1.386719 -4.191406 C 1.386719 -4.253906 1.398438 -4.3125 1.421875 -4.367188 C 1.445312 -4.421875 1.476562 -4.46875 1.515625 -4.507812 C 1.554688 -4.550781 1.601562 -4.582031 1.65625 -4.605469 C 1.710938 -4.628906 1.769531 -4.640625 1.832031 -4.640625 Z "/>
</g>
<g id="glyph-2-3">
<path d="M 0.519531 -3.269531 L 1.023438 -3.269531 L 1.046875 -2.742188 C 1.144531 -2.855469 1.234375 -2.949219 1.324219 -3.023438 C 1.414062 -3.097656 1.5 -3.15625 1.585938 -3.203125 C 1.671875 -3.25 1.761719 -3.28125 1.847656 -3.300781 C 1.9375 -3.316406 2.03125 -3.328125 2.125 -3.328125 C 2.460938 -3.328125 2.714844 -3.226562 2.890625 -3.027344 C 3.0625 -2.832031 3.148438 -2.53125 3.148438 -2.132812 L 3.148438 0 L 2.582031 0 L 2.582031 -2.085938 C 2.582031 -2.34375 2.535156 -2.53125 2.4375 -2.65625 C 2.34375 -2.777344 2.199219 -2.839844 2.011719 -2.839844 C 1.941406 -2.839844 1.875 -2.828125 1.808594 -2.808594 C 1.742188 -2.785156 1.671875 -2.75 1.601562 -2.699219 C 1.53125 -2.648438 1.453125 -2.582031 1.367188 -2.492188 C 1.285156 -2.40625 1.191406 -2.296875 1.085938 -2.167969 L 1.085938 0 L 0.519531 0 Z "/>
</g>
<g id="glyph-2-4">
<path d="M 3.152344 -0.046875 C 3.027344 -0.0117188 2.894531 0.0117188 2.757812 0.0234375 C 2.621094 0.0390625 2.480469 0.046875 2.339844 0.046875 C 1.929688 0.046875 1.625 -0.046875 1.421875 -0.234375 C 1.21875 -0.417969 1.121094 -0.703125 1.121094 -1.085938 L 1.121094 -2.792969 L 0.203125 -2.792969 L 0.203125 -3.269531 L 1.121094 -3.269531 L 1.121094 -4.167969 L 1.6875 -4.3125 L 1.6875 -3.269531 L 3.152344 -3.269531 L 3.152344 -2.792969 L 1.6875 -2.792969 L 1.6875 -1.132812 C 1.6875 -0.898438 1.75 -0.722656 1.875 -0.605469 C 2 -0.492188 2.183594 -0.433594 2.425781 -0.433594 C 2.527344 -0.433594 2.644531 -0.441406 2.765625 -0.457031 C 2.890625 -0.472656 3.019531 -0.5 3.152344 -0.535156 Z "/>
</g>
<g id="glyph-2-5">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-2-6">
<path d="M 3.28125 -1.804688 C 3.28125 -1.726562 3.28125 -1.660156 3.277344 -1.605469 C 3.277344 -1.550781 3.273438 -1.5 3.269531 -1.453125 L 0.972656 -1.453125 C 0.972656 -1.117188 1.066406 -0.859375 1.253906 -0.683594 C 1.441406 -0.503906 1.707031 -0.414062 2.0625 -0.414062 C 2.15625 -0.414062 2.25 -0.417969 2.347656 -0.425781 C 2.441406 -0.433594 2.535156 -0.441406 2.625 -0.457031 C 2.710938 -0.46875 2.796875 -0.484375 2.878906 -0.5 C 2.960938 -0.515625 3.035156 -0.535156 3.105469 -0.554688 L 3.105469 -0.0859375 C 2.953125 -0.0429688 2.777344 -0.0078125 2.582031 0.0195312 C 2.390625 0.046875 2.1875 0.0585938 1.980469 0.0585938 C 1.699219 0.0585938 1.457031 0.0195312 1.257812 -0.0546875 C 1.054688 -0.132812 0.890625 -0.242188 0.761719 -0.386719 C 0.632812 -0.53125 0.535156 -0.707031 0.472656 -0.917969 C 0.410156 -1.125 0.378906 -1.363281 0.378906 -1.628906 C 0.378906 -1.859375 0.414062 -2.074219 0.480469 -2.28125 C 0.546875 -2.484375 0.644531 -2.664062 0.769531 -2.820312 C 0.898438 -2.976562 1.050781 -3.097656 1.238281 -3.191406 C 1.421875 -3.28125 1.628906 -3.328125 1.863281 -3.328125 C 2.09375 -3.328125 2.296875 -3.289062 2.46875 -3.21875 C 2.644531 -3.148438 2.792969 -3.046875 2.914062 -2.914062 C 3.035156 -2.785156 3.125 -2.625 3.1875 -2.4375 C 3.25 -2.25 3.28125 -2.039062 3.28125 -1.804688 M 2.691406 -1.886719 C 2.699219 -2.035156 2.683594 -2.167969 2.648438 -2.285156 C 2.613281 -2.40625 2.5625 -2.511719 2.488281 -2.597656 C 2.414062 -2.683594 2.324219 -2.753906 2.21875 -2.800781 C 2.109375 -2.851562 1.980469 -2.875 1.839844 -2.875 C 1.714844 -2.875 1.601562 -2.851562 1.5 -2.800781 C 1.398438 -2.753906 1.3125 -2.6875 1.238281 -2.601562 C 1.164062 -2.515625 1.101562 -2.410156 1.058594 -2.289062 C 1.011719 -2.167969 0.984375 -2.035156 0.972656 -1.886719 Z "/>
</g>
<g id="glyph-2-7">
<path d="M 3.109375 -0.890625 C 3.109375 -0.777344 3.089844 -0.671875 3.050781 -0.582031 C 3.011719 -0.492188 2.957031 -0.410156 2.890625 -0.339844 C 2.824219 -0.269531 2.746094 -0.210938 2.65625 -0.160156 C 2.566406 -0.109375 2.472656 -0.0664062 2.371094 -0.0351562 C 2.269531 -0.00390625 2.167969 0.0195312 2.0625 0.0351562 C 1.953125 0.0507812 1.851562 0.0585938 1.746094 0.0585938 C 1.527344 0.0585938 1.324219 0.046875 1.136719 0.0273438 C 0.953125 0.0078125 0.769531 -0.0234375 0.59375 -0.0664062 L 0.59375 -0.585938 C 0.785156 -0.53125 0.972656 -0.492188 1.164062 -0.460938 C 1.351562 -0.433594 1.539062 -0.417969 1.726562 -0.417969 C 1.996094 -0.417969 2.195312 -0.457031 2.328125 -0.53125 C 2.457031 -0.605469 2.523438 -0.710938 2.523438 -0.847656 C 2.523438 -0.90625 2.511719 -0.957031 2.492188 -1.003906 C 2.472656 -1.050781 2.433594 -1.09375 2.378906 -1.136719 C 2.324219 -1.179688 2.242188 -1.222656 2.128906 -1.269531 C 2.011719 -1.316406 1.859375 -1.367188 1.660156 -1.425781 C 1.511719 -1.46875 1.375 -1.519531 1.25 -1.574219 C 1.125 -1.628906 1.019531 -1.695312 0.925781 -1.769531 C 0.835938 -1.847656 0.765625 -1.9375 0.710938 -2.039062 C 0.660156 -2.140625 0.632812 -2.261719 0.632812 -2.398438 C 0.632812 -2.492188 0.65625 -2.589844 0.699219 -2.699219 C 0.742188 -2.808594 0.8125 -2.90625 0.914062 -3 C 1.015625 -3.09375 1.15625 -3.171875 1.328125 -3.234375 C 1.5 -3.296875 1.71875 -3.328125 1.980469 -3.328125 C 2.105469 -3.328125 2.25 -3.320312 2.40625 -3.304688 C 2.5625 -3.292969 2.722656 -3.265625 2.894531 -3.230469 L 2.894531 -2.726562 C 2.714844 -2.769531 2.546875 -2.804688 2.386719 -2.824219 C 2.226562 -2.84375 2.089844 -2.855469 1.972656 -2.855469 C 1.832031 -2.855469 1.710938 -2.84375 1.617188 -2.820312 C 1.519531 -2.800781 1.441406 -2.769531 1.382812 -2.734375 C 1.320312 -2.695312 1.277344 -2.648438 1.253906 -2.597656 C 1.226562 -2.546875 1.214844 -2.492188 1.214844 -2.433594 C 1.214844 -2.375 1.226562 -2.324219 1.25 -2.273438 C 1.269531 -2.226562 1.3125 -2.179688 1.375 -2.136719 C 1.4375 -2.09375 1.523438 -2.046875 1.632812 -2.003906 C 1.746094 -1.960938 1.890625 -1.910156 2.066406 -1.859375 C 2.261719 -1.800781 2.421875 -1.742188 2.554688 -1.679688 C 2.6875 -1.621094 2.796875 -1.550781 2.878906 -1.472656 C 2.960938 -1.398438 3.019531 -1.3125 3.054688 -1.21875 C 3.089844 -1.121094 3.109375 -1.011719 3.109375 -0.890625 Z "/>
</g>
<g id="glyph-2-8">
<path d="M 3.367188 -1.660156 C 3.367188 -1.40625 3.328125 -1.171875 3.257812 -0.960938 C 3.1875 -0.75 3.082031 -0.570312 2.949219 -0.417969 C 2.816406 -0.265625 2.652344 -0.148438 2.457031 -0.0664062 C 2.265625 0.015625 2.046875 0.0585938 1.800781 0.0585938 C 1.566406 0.0585938 1.355469 0.0234375 1.171875 -0.0507812 C 0.984375 -0.125 0.828125 -0.230469 0.699219 -0.371094 C 0.570312 -0.511719 0.46875 -0.6875 0.402344 -0.894531 C 0.332031 -1.101562 0.300781 -1.34375 0.300781 -1.613281 C 0.300781 -1.867188 0.335938 -2.101562 0.40625 -2.308594 C 0.476562 -2.519531 0.582031 -2.699219 0.714844 -2.851562 C 0.851562 -3 1.015625 -3.117188 1.207031 -3.203125 C 1.402344 -3.285156 1.621094 -3.328125 1.863281 -3.328125 C 2.101562 -3.328125 2.308594 -3.289062 2.496094 -3.21875 C 2.679688 -3.144531 2.839844 -3.039062 2.96875 -2.898438 C 3.097656 -2.757812 3.195312 -2.585938 3.261719 -2.375 C 3.332031 -2.167969 3.367188 -1.929688 3.367188 -1.660156 M 2.785156 -1.632812 C 2.785156 -1.835938 2.765625 -2.011719 2.71875 -2.164062 C 2.675781 -2.3125 2.613281 -2.441406 2.527344 -2.539062 C 2.445312 -2.640625 2.347656 -2.71875 2.226562 -2.769531 C 2.109375 -2.820312 1.976562 -2.84375 1.832031 -2.84375 C 1.664062 -2.84375 1.519531 -2.8125 1.398438 -2.746094 C 1.277344 -2.679688 1.179688 -2.589844 1.101562 -2.480469 C 1.023438 -2.371094 0.96875 -2.242188 0.933594 -2.09375 C 0.898438 -1.949219 0.878906 -1.792969 0.878906 -1.632812 C 0.878906 -1.433594 0.902344 -1.253906 0.945312 -1.101562 C 0.988281 -0.953125 1.054688 -0.824219 1.136719 -0.722656 C 1.21875 -0.625 1.316406 -0.546875 1.433594 -0.496094 C 1.550781 -0.445312 1.683594 -0.417969 1.832031 -0.417969 C 2 -0.417969 2.148438 -0.453125 2.265625 -0.519531 C 2.386719 -0.585938 2.488281 -0.671875 2.5625 -0.785156 C 2.640625 -0.894531 2.695312 -1.023438 2.734375 -1.171875 C 2.769531 -1.316406 2.785156 -1.472656 2.785156 -1.632812 Z "/>
</g>
<g id="glyph-2-9">
<path d="M 1.804688 -1.023438 C 1.878906 -1.023438 1.949219 -1.011719 2.015625 -0.984375 C 2.082031 -0.953125 2.140625 -0.914062 2.1875 -0.867188 C 2.238281 -0.816406 2.277344 -0.757812 2.304688 -0.691406 C 2.332031 -0.625 2.347656 -0.554688 2.347656 -0.476562 C 2.347656 -0.40625 2.332031 -0.335938 2.304688 -0.269531 C 2.277344 -0.203125 2.238281 -0.148438 2.1875 -0.0976562 C 2.140625 -0.0507812 2.082031 -0.0117188 2.015625 0.015625 C 1.949219 0.0429688 1.878906 0.0585938 1.804688 0.0585938 C 1.730469 0.0585938 1.660156 0.0429688 1.59375 0.015625 C 1.53125 -0.0117188 1.472656 -0.0507812 1.425781 -0.0976562 C 1.375 -0.148438 1.335938 -0.203125 1.308594 -0.269531 C 1.28125 -0.335938 1.265625 -0.40625 1.265625 -0.476562 C 1.265625 -0.554688 1.28125 -0.625 1.308594 -0.691406 C 1.335938 -0.757812 1.375 -0.816406 1.425781 -0.867188 C 1.472656 -0.914062 1.53125 -0.953125 1.59375 -0.984375 C 1.660156 -1.011719 1.730469 -1.023438 1.804688 -1.023438 Z "/>
</g>
<g id="glyph-2-10">
<path d="M 3.464844 0 L 2.714844 0 L 1.832031 -1.246094 L 0.960938 0 L 0.226562 0 L 1.492188 -1.640625 L 0.285156 -3.269531 L 1.011719 -3.269531 L 1.871094 -2.011719 L 2.714844 -3.269531 L 3.414062 -3.269531 L 2.1875 -1.628906 Z "/>
</g>
<g id="glyph-2-11">
<path d="M 1.1875 -4.847656 C 2.1875 -3.921875 2.6875 -2.890625 2.6875 -1.753906 C 2.6875 -1.519531 2.664062 -1.277344 2.617188 -1.023438 C 2.570312 -0.773438 2.488281 -0.515625 2.375 -0.253906 C 2.257812 0.0117188 2.101562 0.277344 1.910156 0.550781 C 1.714844 0.820312 1.46875 1.09375 1.175781 1.367188 L 0.847656 1.03125 C 1.269531 0.613281 1.585938 0.175781 1.792969 -0.28125 C 2 -0.734375 2.105469 -1.214844 2.105469 -1.710938 C 2.105469 -2.746094 1.6875 -3.675781 0.847656 -4.5 Z "/>
</g>
</g>
</defs>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="30" y="24.951172"/>
<use xlink:href="#glyph-0-1" x="34" y="24.951172"/>
<use xlink:href="#glyph-0-2" x="38" y="24.951172"/>
<use xlink:href="#glyph-0-3" x="42" y="24.951172"/>
<use xlink:href="#glyph-0-4" x="46" y="24.951172"/>
<use xlink:href="#glyph-0-5" x="50" y="24.951172"/>
<use xlink:href="#glyph-0-6" x="54" y="24.951172"/>
<use xlink:href="#glyph-0-7" x="58" y="24.951172"/>
<use xlink:href="#glyph-0-8" x="62" y="24.951172"/>
<use xlink:href="#glyph-0-9" x="66" y="24.951172"/>
<use xlink:href="#glyph-0-2" x="70" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="74" y="24.951172"/>
<use xlink:href="#glyph-0-10" x="78" y="24.951172"/>
<use xlink:href="#glyph-0-11" x="82" y="24.951172"/>
<use xlink:href="#glyph-0-4" x="86" y="24.951172"/>
<use xlink:href="#glyph-0-6" x="90" y="24.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="30" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="34" y="42.951172"/>
<use xlink:href="#glyph-1-2" x="38" y="42.951172"/>
<use xlink:href="#glyph-1-3" x="42" y="42.951172"/>
<use xlink:href="#glyph-1-4" x="46" y="42.951172"/>
<use xlink:href="#glyph-1-5" x="50" y="42.951172"/>
<use xlink:href="#glyph-1-2" x="54" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="58" y="42.951172"/>
<use xlink:href="#glyph-1-6" x="62" y="42.951172"/>
<use xlink:href="#glyph-1-7" x="66" y="42.951172"/>
<use xlink:href="#glyph-1-6" x="70" y="42.951172"/>
<use xlink:href="#glyph-1-8" x="74" y="42.951172"/>
<use xlink:href="#glyph-1-9" x="78" y="42.951172"/>
<use xlink:href="#glyph-1-2" x="82" y="42.951172"/>
<use xlink:href="#glyph-1-3" x="86" y="42.951172"/>
<use xlink:href="#glyph-1-10" x="90" y="42.951172"/>
<use xlink:href="#glyph-1-11" x="94" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="98" y="42.951172"/>
<use xlink:href="#glyph-1-0" x="102" y="42.951172"/>
<use xlink:href="#glyph-1-12" x="106" y="42.951172"/>
<use xlink:href="#glyph-1-13" x="110" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="114" y="42.951172"/>
<use xlink:href="#glyph-1-14" x="118" y="42.951172"/>
<use xlink:href="#glyph-1-15" x="122" y="42.951172"/>
<use xlink:href="#glyph-1-16" x="126" y="42.951172"/>
<use xlink:href="#glyph-1-17" x="130" y="42.951172"/>
<use xlink:href="#glyph-1-14" x="134" y="42.951172"/>
<use xlink:href="#glyph-1-14" x="138" y="42.951172"/>
<use xlink:href="#glyph-1-3" x="142" y="42.951172"/>
<use xlink:href="#glyph-1-2" x="146" y="42.951172"/>
<use xlink:href="#glyph-1-18" x="150" y="42.951172"/>
<use xlink:href="#glyph-1-19" x="154" y="42.951172"/>
<use xlink:href="#glyph-1-19" x="158" y="42.951172"/>
<use xlink:href="#glyph-1-20" x="162" y="42.951172"/>
<use xlink:href="#glyph-1-20" x="166" y="42.951172"/>
<use xlink:href="#glyph-1-20" x="170" y="42.951172"/>
<use xlink:href="#glyph-1-12" x="174" y="42.951172"/>
<use xlink:href="#glyph-1-8" x="178" y="42.951172"/>
<use xlink:href="#glyph-1-9" x="182" y="42.951172"/>
<use xlink:href="#glyph-1-2" x="186" y="42.951172"/>
<use xlink:href="#glyph-1-3" x="190" y="42.951172"/>
<use xlink:href="#glyph-1-10" x="194" y="42.951172"/>
<use xlink:href="#glyph-1-11" x="198" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="202" y="42.951172"/>
<use xlink:href="#glyph-1-0" x="206" y="42.951172"/>
<use xlink:href="#glyph-1-12" x="210" y="42.951172"/>
<use xlink:href="#glyph-1-8" x="214" y="42.951172"/>
<use xlink:href="#glyph-1-4" x="218" y="42.951172"/>
<use xlink:href="#glyph-1-21" x="222" y="42.951172"/>
<use xlink:href="#glyph-1-16" x="226" y="42.951172"/>
<use xlink:href="#glyph-1-22" x="230" y="42.951172"/>
<use xlink:href="#glyph-1-10" x="234" y="42.951172"/>
<use xlink:href="#glyph-1-21" x="238" y="42.951172"/>
<use xlink:href="#glyph-1-3" x="242" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="246" y="42.951172"/>
<use xlink:href="#glyph-1-0" x="250" y="42.951172"/>
<use xlink:href="#glyph-1-2" x="254" y="42.951172"/>
<use xlink:href="#glyph-1-4" x="258" y="42.951172"/>
<use xlink:href="#glyph-1-5" x="262" y="42.951172"/>
<use xlink:href="#glyph-1-23" x="266" y="42.951172"/>
<use xlink:href="#glyph-1-14" x="270" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="274" y="42.951172"/>
<use xlink:href="#glyph-1-7" x="278" y="42.951172"/>
<use xlink:href="#glyph-1-16" x="282" y="42.951172"/>
<use xlink:href="#glyph-1-8" x="286" y="42.951172"/>
<use xlink:href="#glyph-1-17" x="290" y="42.951172"/>
<use xlink:href="#glyph-1-0" x="294" y="42.951172"/>
<use xlink:href="#glyph-1-4" x="298" y="42.951172"/>
<use xlink:href="#glyph-1-21" x="302" y="42.951172"/>
<use xlink:href="#glyph-1-1" x="306" y="42.951172"/>
<use xlink:href="#glyph-1-24" x="310" y="42.951172"/>
<use xlink:href="#glyph-1-25" x="314" y="42.951172"/>
<use xlink:href="#glyph-1-24" x="318" y="42.951172"/>
<use xlink:href="#glyph-1-16" x="322" y="42.951172"/>
<use xlink:href="#glyph-1-26" x="326" y="42.951172"/>
<use xlink:href="#glyph-1-6" x="330" y="42.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="30" y="60.951172"/>
<use xlink:href="#glyph-2-1" x="34" y="60.951172"/>
<use xlink:href="#glyph-2-2" x="38" y="60.951172"/>
<use xlink:href="#glyph-2-3" x="42" y="60.951172"/>
<use xlink:href="#glyph-2-4" x="46" y="60.951172"/>
<use xlink:href="#glyph-2-5" x="50" y="60.951172"/>
<use xlink:href="#glyph-2-1" x="54" y="60.951172"/>
<use xlink:href="#glyph-2-6" x="58" y="60.951172"/>
<use xlink:href="#glyph-2-7" x="62" y="60.951172"/>
<use xlink:href="#glyph-2-0" x="66" y="60.951172"/>
<use xlink:href="#glyph-2-8" x="70" y="60.951172"/>
<use xlink:href="#glyph-2-3" x="74" y="60.951172"/>
<use xlink:href="#glyph-2-7" x="78" y="60.951172"/>
<use xlink:href="#glyph-2-6" x="82" y="60.951172"/>
<use xlink:href="#glyph-2-9" x="86" y="60.951172"/>
<use xlink:href="#glyph-2-4" x="90" y="60.951172"/>
<use xlink:href="#glyph-2-6" x="94" y="60.951172"/>
<use xlink:href="#glyph-2-10" x="98" y="60.951172"/>
<use xlink:href="#glyph-2-4" x="102" y="60.951172"/>
<use xlink:href="#glyph-2-11" x="106" y="60.951172"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 65 KiB

View File

@@ -0,0 +1,442 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920" height="1080" viewBox="0 0 1920 1080">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-0-1">
</g>
<g id="glyph-1-0">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-1-1">
</g>
<g id="glyph-2-0">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-2-1">
</g>
<g id="glyph-3-0">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-3-1">
</g>
<g id="glyph-4-0">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
<g id="glyph-4-1">
</g>
<g id="glyph-5-0">
<path d="M 2.476562 1.367188 C 1.476562 0.441406 0.976562 -0.582031 0.976562 -1.707031 C 0.976562 -1.96875 1.003906 -2.230469 1.054688 -2.492188 C 1.109375 -2.753906 1.195312 -3.015625 1.3125 -3.277344 C 1.433594 -3.539062 1.589844 -3.804688 1.78125 -4.066406 C 1.976562 -4.328125 2.210938 -4.589844 2.492188 -4.847656 L 2.820312 -4.511719 C 1.976562 -3.679688 1.554688 -2.757812 1.554688 -1.746094 C 1.554688 -1.246094 1.664062 -0.761719 1.875 -0.296875 C 2.085938 0.167969 2.402344 0.605469 2.820312 1.019531 Z "/>
</g>
</g>
</defs>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="30" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="34" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="38" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="42" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="46" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="50" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="54" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="58" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="62" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="66" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="70" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="74" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="78" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="82" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="86" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="90" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="94" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="98" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="102" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="106" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="110" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="114" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="118" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="122" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="126" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="130" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="134" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="138" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="142" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="146" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="150" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="154" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="158" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="162" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="166" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="170" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="174" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="178" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="182" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="186" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="190" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="194" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="198" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="202" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="206" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="210" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="214" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="218" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="222" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="226" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="230" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="234" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="238" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="242" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="246" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="250" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="254" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="258" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="262" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="266" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="270" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="274" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="278" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="282" y="24.951172"/>
<use xlink:href="#glyph-0-0" x="286" y="24.951172"/>
<use xlink:href="#glyph-0-1" x="290" y="24.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="30" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="34" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="38" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="42" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="46" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="50" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="54" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="58" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="62" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="66" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="70" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="74" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="78" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="82" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="86" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="90" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="94" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="98" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="102" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="106" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="110" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="114" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="118" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="122" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="126" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="130" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="134" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="138" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="142" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="146" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="150" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="154" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="158" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="162" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="166" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="170" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="174" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="178" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="182" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="186" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="190" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="194" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="198" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="202" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="206" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="210" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="214" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="218" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="222" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="226" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="230" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="234" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="238" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="242" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="246" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="250" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="254" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="258" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="262" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="266" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="270" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="274" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="278" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="282" y="33.951172"/>
<use xlink:href="#glyph-1-0" x="286" y="33.951172"/>
<use xlink:href="#glyph-1-1" x="290" y="33.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="30" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="34" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="38" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="42" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="46" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="50" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="54" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="58" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="62" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="66" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="70" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="74" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="78" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="82" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="86" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="90" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="94" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="98" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="102" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="106" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="110" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="114" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="118" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="122" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="126" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="130" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="134" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="138" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="142" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="146" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="150" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="154" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="158" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="162" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="166" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="170" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="174" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="178" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="182" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="186" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="190" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="194" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="198" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="202" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="206" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="210" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="214" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="218" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="222" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="226" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="230" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="234" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="238" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="242" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="246" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="250" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="254" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="258" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="262" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="266" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="270" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="274" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="278" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="282" y="42.951172"/>
<use xlink:href="#glyph-2-0" x="286" y="42.951172"/>
<use xlink:href="#glyph-2-1" x="290" y="42.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-3-0" x="30" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="34" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="38" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="42" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="46" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="50" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="54" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="58" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="62" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="66" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="70" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="74" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="78" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="82" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="86" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="90" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="94" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="98" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="102" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="106" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="110" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="114" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="118" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="122" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="126" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="130" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="134" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="138" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="142" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="146" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="150" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="154" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="158" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="162" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="166" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="170" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="174" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="178" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="182" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="186" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="190" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="194" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="198" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="202" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="206" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="210" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="214" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="218" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="222" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="226" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="230" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="234" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="238" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="242" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="246" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="250" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="254" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="258" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="262" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="266" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="270" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="274" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="278" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="282" y="51.951172"/>
<use xlink:href="#glyph-3-0" x="286" y="51.951172"/>
<use xlink:href="#glyph-3-1" x="290" y="51.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-4-0" x="30" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="34" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="38" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="42" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="46" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="50" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="54" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="58" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="62" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="66" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="70" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="74" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="78" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="82" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="86" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="90" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="94" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="98" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="102" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="106" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="110" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="114" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="118" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="122" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="126" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="130" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="134" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="138" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="142" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="146" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="150" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="154" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="158" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="162" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="166" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="170" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="174" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="178" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="182" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="186" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="190" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="194" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="198" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="202" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="206" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="210" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="214" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="218" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="222" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="226" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="230" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="234" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="238" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="242" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="246" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="250" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="254" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="258" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="262" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="266" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="270" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="274" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="278" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="282" y="60.951172"/>
<use xlink:href="#glyph-4-0" x="286" y="60.951172"/>
<use xlink:href="#glyph-4-1" x="290" y="60.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-5-0" x="30" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="34" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="38" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="42" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="46" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="50" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="54" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="58" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="62" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="66" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="70" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="74" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="78" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="82" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="86" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="90" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="94" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="98" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="102" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="106" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="110" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="114" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="118" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="122" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="126" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="130" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="134" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="138" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="142" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="146" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="150" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="154" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="158" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="162" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="166" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="170" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="174" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="178" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="182" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="186" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="190" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="194" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="198" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="202" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="206" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="210" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="214" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="218" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="222" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="226" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="230" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="234" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="238" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="242" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="246" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="250" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="254" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="258" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="262" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="266" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="270" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="274" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="278" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="282" y="69.951172"/>
<use xlink:href="#glyph-5-0" x="286" y="69.951172"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920" height="1080" viewBox="0 0 1920 1080">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.246094 0 L 0.574219 0 L 0.574219 -0.527344 L 1.667969 -0.527344 L 1.667969 -3.632812 L 0.648438 -3.078125 L 0.4375 -3.5625 L 1.792969 -4.273438 L 2.296875 -4.273438 L 2.296875 -0.527344 L 3.246094 -0.527344 Z "/>
</g>
<g id="glyph-0-1">
</g>
<g id="glyph-1-0">
<path d="M 3.28125 0 L 0.476562 0 L 0.476562 -0.507812 L 1.578125 -1.601562 C 1.757812 -1.78125 1.90625 -1.933594 2.019531 -2.0625 C 2.132812 -2.195312 2.21875 -2.3125 2.28125 -2.421875 C 2.34375 -2.527344 2.386719 -2.628906 2.410156 -2.722656 C 2.429688 -2.820312 2.441406 -2.921875 2.441406 -3.035156 C 2.441406 -3.136719 2.425781 -3.238281 2.398438 -3.332031 C 2.371094 -3.425781 2.328125 -3.507812 2.269531 -3.582031 C 2.210938 -3.652344 2.132812 -3.707031 2.039062 -3.75 C 1.949219 -3.792969 1.835938 -3.8125 1.707031 -3.8125 C 1.527344 -3.8125 1.363281 -3.773438 1.214844 -3.691406 C 1.066406 -3.609375 0.929688 -3.507812 0.808594 -3.378906 L 0.496094 -3.753906 C 0.65625 -3.921875 0.839844 -4.058594 1.050781 -4.160156 C 1.257812 -4.261719 1.503906 -4.3125 1.78125 -4.3125 C 1.96875 -4.3125 2.140625 -4.285156 2.296875 -4.226562 C 2.453125 -4.171875 2.585938 -4.089844 2.699219 -3.984375 C 2.8125 -3.878906 2.898438 -3.746094 2.960938 -3.59375 C 3.023438 -3.441406 3.054688 -3.265625 3.054688 -3.074219 C 3.054688 -2.910156 3.03125 -2.757812 2.988281 -2.621094 C 2.945312 -2.480469 2.878906 -2.34375 2.792969 -2.207031 C 2.703125 -2.066406 2.59375 -1.925781 2.460938 -1.777344 C 2.324219 -1.628906 2.167969 -1.46875 1.984375 -1.292969 L 1.214844 -0.539062 L 3.28125 -0.539062 Z "/>
</g>
<g id="glyph-1-1">
</g>
<g id="glyph-2-0">
<path d="M 3.199219 -1.292969 C 3.199219 -1.105469 3.160156 -0.929688 3.085938 -0.765625 C 3.011719 -0.601562 2.894531 -0.460938 2.742188 -0.335938 C 2.59375 -0.214844 2.402344 -0.117188 2.171875 -0.046875 C 1.941406 0.0234375 1.671875 0.0585938 1.367188 0.0585938 C 1.199219 0.0585938 1.046875 0.0546875 0.910156 0.0429688 C 0.777344 0.03125 0.652344 0.015625 0.535156 0 L 0.535156 -0.507812 C 0.667969 -0.484375 0.808594 -0.464844 0.960938 -0.453125 C 1.109375 -0.4375 1.261719 -0.433594 1.417969 -0.433594 C 1.632812 -0.433594 1.8125 -0.453125 1.964844 -0.488281 C 2.117188 -0.527344 2.238281 -0.582031 2.335938 -0.652344 C 2.429688 -0.726562 2.5 -0.8125 2.542969 -0.914062 C 2.585938 -1.015625 2.605469 -1.132812 2.605469 -1.257812 C 2.605469 -1.375 2.582031 -1.480469 2.527344 -1.566406 C 2.476562 -1.652344 2.402344 -1.726562 2.308594 -1.785156 C 2.214844 -1.84375 2.101562 -1.886719 1.972656 -1.914062 C 1.839844 -1.945312 1.695312 -1.960938 1.539062 -1.960938 L 1.054688 -1.960938 L 1.054688 -2.425781 L 1.546875 -2.425781 C 1.675781 -2.425781 1.789062 -2.441406 1.894531 -2.476562 C 2 -2.507812 2.089844 -2.558594 2.167969 -2.621094 C 2.242188 -2.683594 2.296875 -2.761719 2.339844 -2.851562 C 2.378906 -2.945312 2.398438 -3.050781 2.398438 -3.167969 C 2.398438 -3.394531 2.328125 -3.5625 2.191406 -3.664062 C 2.050781 -3.769531 1.847656 -3.820312 1.578125 -3.820312 C 1.433594 -3.820312 1.289062 -3.808594 1.136719 -3.777344 C 0.984375 -3.75 0.820312 -3.707031 0.648438 -3.652344 L 0.648438 -4.148438 C 0.722656 -4.171875 0.800781 -4.195312 0.882812 -4.21875 C 0.96875 -4.238281 1.050781 -4.253906 1.132812 -4.269531 C 1.21875 -4.285156 1.300781 -4.292969 1.382812 -4.300781 C 1.464844 -4.308594 1.546875 -4.3125 1.621094 -4.3125 C 1.847656 -4.3125 2.046875 -4.289062 2.21875 -4.238281 C 2.386719 -4.191406 2.53125 -4.121094 2.644531 -4.03125 C 2.761719 -3.9375 2.847656 -3.828125 2.90625 -3.699219 C 2.964844 -3.566406 2.996094 -3.421875 2.996094 -3.257812 C 2.996094 -3.015625 2.933594 -2.8125 2.808594 -2.644531 C 2.683594 -2.480469 2.511719 -2.351562 2.296875 -2.253906 C 2.40625 -2.234375 2.515625 -2.199219 2.621094 -2.148438 C 2.730469 -2.097656 2.824219 -2.03125 2.910156 -1.949219 C 2.996094 -1.867188 3.066406 -1.769531 3.121094 -1.660156 C 3.171875 -1.550781 3.199219 -1.425781 3.199219 -1.292969 Z "/>
</g>
<g id="glyph-2-1">
</g>
<g id="glyph-3-0">
<path d="M 3.492188 -0.941406 L 2.765625 -0.941406 L 2.765625 0 L 2.1875 0 L 2.1875 -0.941406 L 0.140625 -0.941406 L 0.140625 -1.4375 L 1.953125 -4.253906 L 2.765625 -4.253906 L 2.765625 -1.4375 L 3.492188 -1.4375 L 3.492188 -0.941406 M 2.1875 -3.707031 L 0.707031 -1.4375 L 2.1875 -1.4375 Z "/>
</g>
<g id="glyph-3-1">
</g>
<g id="glyph-4-0">
<path d="M 3.171875 -1.359375 C 3.171875 -1.148438 3.128906 -0.957031 3.035156 -0.785156 C 2.945312 -0.609375 2.820312 -0.460938 2.660156 -0.335938 C 2.5 -0.210938 2.3125 -0.113281 2.097656 -0.046875 C 1.878906 0.0234375 1.644531 0.0585938 1.394531 0.0585938 C 1.332031 0.0585938 1.261719 0.0585938 1.191406 0.0546875 C 1.117188 0.0507812 1.046875 0.046875 0.972656 0.0390625 C 0.902344 0.0351562 0.832031 0.0273438 0.761719 0.0234375 C 0.695312 0.015625 0.632812 0.0078125 0.578125 0 L 0.578125 -0.515625 C 0.695312 -0.484375 0.832031 -0.464844 0.980469 -0.453125 C 1.132812 -0.4375 1.285156 -0.433594 1.4375 -0.433594 C 1.613281 -0.433594 1.769531 -0.453125 1.90625 -0.496094 C 2.046875 -0.535156 2.164062 -0.59375 2.261719 -0.671875 C 2.359375 -0.75 2.433594 -0.84375 2.488281 -0.953125 C 2.539062 -1.0625 2.566406 -1.183594 2.566406 -1.320312 C 2.566406 -1.585938 2.46875 -1.777344 2.28125 -1.898438 C 2.089844 -2.019531 1.816406 -2.078125 1.460938 -2.078125 L 0.652344 -2.078125 L 0.652344 -4.253906 L 2.945312 -4.253906 L 2.945312 -3.757812 L 1.1875 -3.757812 L 1.1875 -2.566406 L 1.558594 -2.566406 C 1.761719 -2.566406 1.960938 -2.546875 2.15625 -2.507812 C 2.347656 -2.472656 2.519531 -2.410156 2.671875 -2.316406 C 2.820312 -2.222656 2.941406 -2.101562 3.035156 -1.945312 C 3.128906 -1.789062 3.171875 -1.59375 3.171875 -1.359375 Z "/>
</g>
</g>
</defs>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="30" y="24.951172"/>
<use xlink:href="#glyph-0-1" x="34" y="24.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="30" y="33.951172"/>
<use xlink:href="#glyph-1-1" x="34" y="33.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="30" y="42.951172"/>
<use xlink:href="#glyph-2-1" x="34" y="42.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-3-0" x="30" y="51.951172"/>
<use xlink:href="#glyph-3-1" x="34" y="51.951172"/>
</g>
<g fill="rgb(100%, 100%, 100%)" fill-opacity="1">
<use xlink:href="#glyph-4-0" x="30" y="60.951172"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "cfspider"
version = "1.8.2"
version = "1.8.3"
description = "Cloudflare Workers proxy IP pool client"
readme = "README.md"
license = {text = "Apache-2.0"}

2078
vless_workers.js Normal file

File diff suppressed because it is too large Load Diff