finsihed all but report

This commit is contained in:
Christopher Sanden
2026-01-28 20:46:08 +01:00
parent e971c07034
commit 39b8792f5a
9 changed files with 1471 additions and 9 deletions

BIN
Oblig1/Coop_raw_98.xlsx Normal file

Binary file not shown.

Binary file not shown.

BIN
Oblig1/Laban_raw_98.xlsx Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,13 +1,148 @@
library(readxl)
b1 <- read_excel("Book1.xlsx")
library(dplyr)
library(ggplot2)
laban <- read_excel("Laban_raw_98.xlsx")
coop <- read_excel("Coop_raw_98.xlsx")
#Finner kolonne-navn
names(laban)
names(coop)
#Frekvenser
freq_laban <- laban %>%
count(Lengde) %>%
arrange(Lengde)
#Velger å trekke fra de tre første radene i coop tabellen
#Gjør dette for å få et mer representativt bilde av dataen
#De tre første strekkene var ikke like metode som resten
freq_coop <- coop %>%
slice(4:n()) %>%
count(Lengde) %>%
arrange(Lengde)
freq_laban
freq_coop
freq_diag_laban <- ggplot(freq_laban, aes(x=`Lengde`, y=n)) +
geom_col() +
geom_vline(aes(xintercept=mid_laban, color="Middelverdi (x̄)"), linewidth=0.9) +
geom_vline(aes(xintercept=med_laban, color="Median (x̃)"), linewidth=0.9) +
geom_vline(aes(xintercept=type_laban, color="Typetall (x_max)"), linewidth=0.9) +
geom_vline(aes(xintercept=mid_laban - sd_laban, color=" s"), linewidth=0.9, linetype="dashed") +
geom_vline(aes(xintercept=mid_laban + sd_laban, color="x̄ + s"), linewidth=0.9, linetype="dashed") +
labs(title="Frekvensdiagram - Laban", x="Lengde", y="Antall", color="Linjer") +
theme_minimal() + theme(legend.position="bottom")
freq_diag_coop <- ggplot(freq_coop, aes(x=`Lengde`, y=n)) +
geom_col() +
geom_vline(aes(xintercept=mid_coop, color="Middelverdi (x̄)"), linewidth=0.9) +
geom_vline(aes(xintercept=med_coop, color="Median (x̃)"), linewidth=0.9) +
geom_vline(aes(xintercept=type_coop, color="Typetall (x_max)"), linewidth=0.9) +
geom_vline(aes(xintercept=mid_coop - sd_laban, color=" s"), linewidth=0.9, linetype="dashed") +
geom_vline(aes(xintercept=mid_coop + sd_laban, color="x̄ + s"), linewidth=0.9, linetype="dashed") +
labs(title="Frekvensdiagram - Coop", x="Lengde", y="Antall", color="Linjer") +
theme_minimal() + theme(legend.position="bottom")
freq_diag_laban
freq_diag_coop
#Kumulative frekvenser
cum_laban <- freq_laban %>%
mutate(Kumulativ_frekvens = cumsum(n))
cum_coop <- freq_coop %>%
mutate(Kumulativ_frekvens = cumsum(n))
cum_laban
cum_coop
#Kumulative frekvensdiagrammer
cum_diag_laban <- ggplot(cum_laban, aes(x=`Lengde`, y=Kumulativ_frekvens)) +
geom_step(linewidth=0.9) +
geom_vline(aes(xintercept=mid_laban, color="Middelverdi (x̄)"), linewidth=0.9) +
geom_vline(aes(xintercept=med_laban, color="Median (x̃)"), linewidth=0.9) +
geom_vline(aes(xintercept=type_laban, color="Typetall (x_max)"), linewidth=0.9) +
geom_vline(aes(xintercept=mid_laban - sd_laban, color=" s"), linewidth=0.9, linetype="dashed") +
geom_vline(aes(xintercept=mid_laban + sd_laban, color="x̄ + s"), linewidth=0.9, linetype="dashed") +
labs(title="Kumulativt frekvensdiagram - Laban", x="Lengde", y="Kumulativ frekvens", color="Linjer") +
theme_minimal() + theme(legend.position="bottom")
cum_diag_coop <- ggplot(cum_coop, aes(x=`Lengde`, y=Kumulativ_frekvens)) +
geom_step(linewidth=0.9) +
geom_vline(aes(xintercept=mid_coop, color="Middelverdi (x̄)"), linewidth=0.9) +
geom_vline(aes(xintercept=med_coop, color="Median (x̃)"), linewidth=0.9) +
geom_vline(aes(xintercept=type_coop, color="Typetall (x_max)"), linewidth=0.9) +
geom_vline(aes(xintercept=mid_coop - sd_laban, color=" s"), linewidth=0.9, linetype="dashed") +
geom_vline(aes(xintercept=mid_coop + sd_laban, color="x̄ + s"), linewidth=0.9, linetype="dashed") +
labs(title="Kumulativt frekvensdiagram - Laban", x="Lengde", y="Kumulativ frekvens", color="Linjer") +
theme_minimal() + theme(legend.position="bottom")
cum_diag_laban
cum_diag_laban
#Medianer
mid_laban <- sum(cum_laban$Lengde*cum_laban$n) / sum(cum_laban$n)
mid_laban
mid_coop <- sum(cum_coop$Lengde*cum_coop$n) / sum(cum_coop$n)
mid_coop
med_pos_laban <- sum(cum_laban$n + 1) / 2
med_pos_laban
med_laban <- cum_laban$Lengde[which(cumsum(cum_laban$n) >= med_pos_laban)[1]]
med_pos_coop <- sum(cum_coop$n + 1) /2
med_pos_coop
med_coop <- cum_coop$Lengde[which(cumsum(cum_coop$n) >= med_pos_coop)[1]]
med_coop
med_laban
#Typetall
type_laban <- freq_laban$Lengde[which.max(freq_laban$n)]
type_coop <- freq_coop$Lengde[which.max(freq_coop$n)]
type_laban
type_coop
#Standardavvik
sd_laban <- sd(laban$Lengde)
sd_coop <- sd(coop$Lengde)
sd_laban
sd_coop
#Oppsummering
tabell_laban <- data.frame(Mål = c("Middelverdi", "Median", "Typetall", "Standardavvik"),
Verdi = c(mid_laban, med_laban, type_laban, sd_laban))
tabell_coop <- data.frame(Mål = c("Middelverdi", "Median", "Typetall", "Standardavvik"),
Verdi = c(mid_coop, med_coop, type_coop, sd_coop))
tabell_laban
tabell_coop
oppsummering <- data.frame(Mål = c("Middelverdi", "Median", "Typetall", "Standardavvik"),
Laban = c(mid_laban, med_laban, type_laban, sd_laban),
Coop = c(mid_coop, med_coop, type_coop, sd_coop))
oppsummering$Laban <- round(oppsummering$Laban, 2)
oppsummering$Coop <- round(oppsummering$Coop, 2)
oppsummering
write.csv2(oppsummering, "oppsummering.csv", row.names = FALSE)
list1 = c(b1$Entry)
list2 = c(b1$Data)
mean.default(list1)
mean(list2)
summary(b1)
BookLaban <- read_excel("Laban_raw_XY.xlsx")
View(BookLaban)

523
Oblig1/cumlab.svg Normal file
View File

@@ -0,0 +1,523 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="667pt" height="598pt" viewBox="0 0 667 598">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.277344 0 L 2.503906 0 L 2.503906 -4.929688 C 2.320312 -4.75 2.074219 -4.574219 1.773438 -4.394531 C 1.46875 -4.21875 1.199219 -4.085938 0.957031 -3.996094 L 0.957031 -4.742188 C 1.390625 -4.945312 1.769531 -5.195312 2.09375 -5.484375 C 2.417969 -5.773438 2.644531 -6.054688 2.78125 -6.324219 L 3.277344 -6.324219 Z M 3.277344 0 "/>
</g>
<g id="glyph-0-1">
<path d="M 0.367188 -3.105469 C 0.367188 -3.851562 0.441406 -4.449219 0.59375 -4.90625 C 0.75 -5.359375 0.976562 -5.710938 1.277344 -5.957031 C 1.582031 -6.203125 1.960938 -6.324219 2.417969 -6.324219 C 2.757812 -6.324219 3.054688 -6.257812 3.308594 -6.121094 C 3.5625 -5.984375 3.773438 -5.789062 3.941406 -5.53125 C 4.105469 -5.277344 4.238281 -4.964844 4.332031 -4.59375 C 4.425781 -4.226562 4.472656 -3.730469 4.472656 -3.105469 C 4.472656 -2.367188 4.398438 -1.769531 4.246094 -1.316406 C 4.09375 -0.863281 3.867188 -0.511719 3.5625 -0.265625 C 3.261719 -0.015625 2.878906 0.109375 2.417969 0.109375 C 1.8125 0.109375 1.335938 -0.109375 0.988281 -0.546875 C 0.574219 -1.070312 0.367188 -1.921875 0.367188 -3.105469 M 1.160156 -3.105469 C 1.160156 -2.074219 1.28125 -1.382812 1.523438 -1.042969 C 1.765625 -0.699219 2.0625 -0.527344 2.417969 -0.527344 C 2.773438 -0.527344 3.074219 -0.699219 3.316406 -1.042969 C 3.558594 -1.386719 3.679688 -2.074219 3.679688 -3.105469 C 3.679688 -4.144531 3.558594 -4.832031 3.316406 -5.171875 C 3.074219 -5.515625 2.773438 -5.683594 2.410156 -5.683594 C 2.054688 -5.683594 1.773438 -5.535156 1.558594 -5.234375 C 1.292969 -4.851562 1.160156 -4.140625 1.160156 -3.105469 Z M 1.160156 -3.105469 "/>
</g>
<g id="glyph-0-2">
<path d="M 4.429688 -0.742188 L 4.429688 0 L 0.265625 0 C 0.261719 -0.1875 0.289062 -0.367188 0.355469 -0.539062 C 0.460938 -0.820312 0.632812 -1.101562 0.867188 -1.375 C 1.097656 -1.648438 1.4375 -1.96875 1.878906 -2.328125 C 2.5625 -2.890625 3.023438 -3.335938 3.265625 -3.664062 C 3.507812 -3.992188 3.625 -4.300781 3.625 -4.59375 C 3.625 -4.898438 3.515625 -5.160156 3.296875 -5.367188 C 3.078125 -5.578125 2.792969 -5.683594 2.441406 -5.683594 C 2.066406 -5.683594 1.769531 -5.574219 1.546875 -5.351562 C 1.324219 -5.125 1.210938 -4.816406 1.207031 -4.421875 L 0.414062 -4.503906 C 0.46875 -5.097656 0.671875 -5.546875 1.027344 -5.859375 C 1.382812 -6.167969 1.859375 -6.324219 2.457031 -6.324219 C 3.0625 -6.324219 3.539062 -6.15625 3.894531 -5.824219 C 4.246094 -5.488281 4.421875 -5.070312 4.421875 -4.578125 C 4.421875 -4.324219 4.371094 -4.078125 4.265625 -3.832031 C 4.164062 -3.589844 3.992188 -3.332031 3.753906 -3.0625 C 3.515625 -2.792969 3.117188 -2.425781 2.5625 -1.957031 C 2.097656 -1.566406 1.800781 -1.300781 1.667969 -1.164062 C 1.535156 -1.023438 1.425781 -0.882812 1.339844 -0.742188 Z M 4.429688 -0.742188 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.371094 -1.664062 L 1.144531 -1.765625 C 1.230469 -1.328125 1.382812 -1.011719 1.597656 -0.820312 C 1.808594 -0.625 2.070312 -0.527344 2.375 -0.527344 C 2.738281 -0.527344 3.046875 -0.65625 3.296875 -0.90625 C 3.546875 -1.160156 3.671875 -1.472656 3.675781 -1.84375 C 3.671875 -2.199219 3.558594 -2.492188 3.324219 -2.722656 C 3.09375 -2.953125 2.796875 -3.066406 2.441406 -3.066406 C 2.292969 -3.066406 2.113281 -3.039062 1.894531 -2.980469 L 1.980469 -3.660156 C 2.03125 -3.65625 2.074219 -3.652344 2.105469 -3.652344 C 2.433594 -3.652344 2.730469 -3.738281 2.996094 -3.910156 C 3.257812 -4.082031 3.390625 -4.347656 3.390625 -4.703125 C 3.390625 -4.988281 3.292969 -5.222656 3.101562 -5.410156 C 2.910156 -5.597656 2.664062 -5.6875 2.359375 -5.6875 C 2.058594 -5.6875 1.808594 -5.59375 1.605469 -5.40625 C 1.40625 -5.214844 1.277344 -4.933594 1.21875 -4.554688 L 0.445312 -4.691406 C 0.542969 -5.210938 0.757812 -5.613281 1.089844 -5.898438 C 1.425781 -6.183594 1.84375 -6.324219 2.34375 -6.324219 C 2.6875 -6.324219 3.003906 -6.25 3.292969 -6.105469 C 3.582031 -5.957031 3.800781 -5.753906 3.957031 -5.5 C 4.109375 -5.246094 4.183594 -4.972656 4.183594 -4.6875 C 4.183594 -4.414062 4.113281 -4.167969 3.964844 -3.945312 C 3.820312 -3.722656 3.605469 -3.542969 3.316406 -3.410156 C 3.691406 -3.324219 3.980469 -3.148438 4.183594 -2.875 C 4.390625 -2.605469 4.496094 -2.265625 4.496094 -1.859375 C 4.496094 -1.3125 4.292969 -0.84375 3.894531 -0.460938 C 3.492188 -0.078125 2.984375 0.113281 2.371094 0.113281 C 1.820312 0.113281 1.359375 -0.0546875 0.996094 -0.382812 C 0.628906 -0.710938 0.421875 -1.140625 0.371094 -1.664062 Z M 0.371094 -1.664062 "/>
</g>
<g id="glyph-0-4">
<path d="M 2.84375 0 L 2.84375 -1.507812 L 0.113281 -1.507812 L 0.113281 -2.21875 L 2.988281 -6.300781 L 3.617188 -6.300781 L 3.617188 -2.21875 L 4.46875 -2.21875 L 4.46875 -1.507812 L 3.617188 -1.507812 L 3.617188 0 L 2.84375 0 M 2.84375 -2.21875 L 2.84375 -5.058594 L 0.871094 -2.21875 Z M 2.84375 -2.21875 "/>
</g>
<g id="glyph-0-5">
<path d="M 0.417969 -5.472656 L 0.417969 -6.21875 L 4.496094 -6.21875 L 4.496094 -5.617188 C 4.09375 -5.1875 3.695312 -4.621094 3.300781 -3.914062 C 2.910156 -3.207031 2.605469 -2.480469 2.390625 -1.730469 C 2.234375 -1.203125 2.136719 -0.628906 2.09375 0 L 1.296875 0 C 1.304688 -0.496094 1.402344 -1.09375 1.589844 -1.796875 C 1.777344 -2.496094 2.042969 -3.175781 2.390625 -3.828125 C 2.738281 -4.476562 3.109375 -5.027344 3.503906 -5.472656 Z M 0.417969 -5.472656 "/>
</g>
<g id="glyph-0-6">
<path d="M 1.554688 -3.417969 C 1.234375 -3.535156 0.996094 -3.699219 0.84375 -3.917969 C 0.6875 -4.136719 0.609375 -4.398438 0.609375 -4.699219 C 0.609375 -5.160156 0.773438 -5.542969 1.105469 -5.855469 C 1.433594 -6.167969 1.871094 -6.324219 2.417969 -6.324219 C 2.96875 -6.324219 3.410156 -6.164062 3.746094 -5.847656 C 4.082031 -5.527344 4.25 -5.136719 4.25 -4.679688 C 4.25 -4.386719 4.171875 -4.132812 4.019531 -3.917969 C 3.867188 -3.699219 3.632812 -3.535156 3.320312 -3.417969 C 3.707031 -3.289062 4.003906 -3.085938 4.203125 -2.804688 C 4.40625 -2.523438 4.507812 -2.191406 4.507812 -1.800781 C 4.507812 -1.261719 4.316406 -0.808594 3.9375 -0.441406 C 3.554688 -0.0742188 3.054688 0.109375 2.433594 0.109375 C 1.808594 0.109375 1.308594 -0.078125 0.929688 -0.445312 C 0.546875 -0.8125 0.355469 -1.273438 0.355469 -1.820312 C 0.355469 -2.230469 0.460938 -2.574219 0.667969 -2.851562 C 0.875 -3.128906 1.171875 -3.316406 1.554688 -3.417969 M 1.402344 -4.726562 C 1.402344 -4.429688 1.496094 -4.183594 1.6875 -3.996094 C 1.878906 -3.808594 2.128906 -3.710938 2.4375 -3.710938 C 2.734375 -3.710938 2.976562 -3.804688 3.167969 -3.992188 C 3.359375 -4.179688 3.453125 -4.410156 3.453125 -4.683594 C 3.453125 -4.96875 3.355469 -5.207031 3.160156 -5.398438 C 2.964844 -5.59375 2.71875 -5.6875 2.429688 -5.6875 C 2.132812 -5.6875 1.886719 -5.59375 1.691406 -5.40625 C 1.5 -5.214844 1.402344 -4.988281 1.402344 -4.726562 M 1.152344 -1.816406 C 1.152344 -1.597656 1.203125 -1.382812 1.308594 -1.175781 C 1.414062 -0.972656 1.570312 -0.8125 1.773438 -0.699219 C 1.980469 -0.585938 2.203125 -0.527344 2.441406 -0.527344 C 2.808594 -0.527344 3.117188 -0.648438 3.355469 -0.886719 C 3.597656 -1.121094 3.71875 -1.425781 3.71875 -1.792969 C 3.71875 -2.164062 3.59375 -2.472656 3.34375 -2.714844 C 3.097656 -2.960938 2.789062 -3.082031 2.414062 -3.082031 C 2.050781 -3.082031 1.75 -2.960938 1.511719 -2.71875 C 1.269531 -2.480469 1.152344 -2.179688 1.152344 -1.816406 Z M 1.152344 -1.816406 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.480469 -1.457031 L 1.226562 -1.527344 C 1.289062 -1.175781 1.40625 -0.921875 1.585938 -0.765625 C 1.761719 -0.605469 1.992188 -0.527344 2.269531 -0.527344 C 2.507812 -0.527344 2.714844 -0.582031 2.894531 -0.691406 C 3.074219 -0.800781 3.21875 -0.945312 3.335938 -1.128906 C 3.449219 -1.308594 3.542969 -1.554688 3.621094 -1.863281 C 3.699219 -2.175781 3.738281 -2.488281 3.738281 -2.808594 C 3.738281 -2.84375 3.738281 -2.894531 3.734375 -2.964844 C 3.578125 -2.71875 3.367188 -2.519531 3.101562 -2.367188 C 2.832031 -2.210938 2.542969 -2.136719 2.230469 -2.136719 C 1.707031 -2.136719 1.265625 -2.324219 0.90625 -2.703125 C 0.546875 -3.082031 0.367188 -3.578125 0.367188 -4.199219 C 0.367188 -4.835938 0.554688 -5.351562 0.929688 -5.742188 C 1.308594 -6.128906 1.777344 -6.324219 2.347656 -6.324219 C 2.753906 -6.324219 3.128906 -6.214844 3.46875 -5.996094 C 3.808594 -5.773438 4.066406 -5.460938 4.242188 -5.050781 C 4.417969 -4.644531 4.507812 -4.050781 4.507812 -3.277344 C 4.507812 -2.472656 4.421875 -1.832031 4.246094 -1.355469 C 4.070312 -0.878906 3.8125 -0.515625 3.464844 -0.265625 C 3.121094 -0.015625 2.714844 0.109375 2.25 0.109375 C 1.757812 0.109375 1.355469 -0.03125 1.042969 -0.304688 C 0.730469 -0.578125 0.542969 -0.960938 0.480469 -1.457031 M 3.648438 -4.238281 C 3.648438 -4.679688 3.53125 -5.03125 3.292969 -5.292969 C 3.058594 -5.554688 2.773438 -5.683594 2.441406 -5.683594 C 2.097656 -5.683594 1.796875 -5.542969 1.542969 -5.265625 C 1.289062 -4.984375 1.160156 -4.617188 1.160156 -4.171875 C 1.160156 -3.769531 1.28125 -3.445312 1.523438 -3.195312 C 1.765625 -2.945312 2.0625 -2.820312 2.417969 -2.820312 C 2.777344 -2.820312 3.070312 -2.945312 3.300781 -3.195312 C 3.53125 -3.445312 3.648438 -3.792969 3.648438 -4.238281 Z M 3.648438 -4.238281 "/>
</g>
<g id="glyph-0-8">
<path d="M 0.652344 0 L 0.652344 -6.300781 L 1.90625 -6.300781 L 3.398438 -1.839844 C 3.535156 -1.421875 3.636719 -1.113281 3.699219 -0.90625 C 3.769531 -1.136719 3.882812 -1.472656 4.035156 -1.917969 L 5.542969 -6.300781 L 6.664062 -6.300781 L 6.664062 0 L 5.859375 0 L 5.859375 -5.273438 L 4.03125 0 L 3.277344 0 L 1.457031 -5.363281 L 1.457031 0 Z M 0.652344 0 "/>
</g>
<g id="glyph-0-9">
<path d="M 3.703125 -1.46875 L 4.503906 -1.371094 C 4.378906 -0.902344 4.144531 -0.542969 3.804688 -0.285156 C 3.460938 -0.0273438 3.027344 0.101562 2.496094 0.101562 C 1.828125 0.101562 1.300781 -0.101562 0.910156 -0.511719 C 0.519531 -0.925781 0.320312 -1.5 0.320312 -2.242188 C 0.320312 -3.011719 0.519531 -3.605469 0.914062 -4.03125 C 1.3125 -4.453125 1.824219 -4.667969 2.453125 -4.667969 C 3.0625 -4.667969 3.5625 -4.457031 3.949219 -4.042969 C 4.335938 -3.628906 4.527344 -3.042969 4.527344 -2.289062 C 4.527344 -2.246094 4.527344 -2.175781 4.523438 -2.085938 L 1.121094 -2.085938 C 1.148438 -1.582031 1.292969 -1.199219 1.546875 -0.933594 C 1.800781 -0.664062 2.121094 -0.53125 2.5 -0.53125 C 2.785156 -0.53125 3.027344 -0.605469 3.226562 -0.757812 C 3.425781 -0.90625 3.585938 -1.144531 3.703125 -1.46875 M 1.164062 -2.71875 L 3.710938 -2.71875 C 3.679688 -3.105469 3.582031 -3.390625 3.421875 -3.582031 C 3.175781 -3.882812 2.855469 -4.03125 2.460938 -4.03125 C 2.105469 -4.03125 1.808594 -3.910156 1.566406 -3.675781 C 1.324219 -3.4375 1.191406 -3.117188 1.164062 -2.71875 Z M 1.164062 -2.71875 "/>
</g>
<g id="glyph-0-10">
<path d="M 3.539062 0 L 3.539062 -0.574219 C 3.25 -0.125 2.824219 0.101562 2.265625 0.101562 C 1.902344 0.101562 1.566406 0.00390625 1.261719 -0.199219 C 0.957031 -0.398438 0.71875 -0.679688 0.550781 -1.039062 C 0.382812 -1.398438 0.300781 -1.808594 0.300781 -2.277344 C 0.300781 -2.734375 0.375 -3.144531 0.527344 -3.515625 C 0.679688 -3.886719 0.90625 -4.171875 1.210938 -4.371094 C 1.515625 -4.566406 1.855469 -4.667969 2.230469 -4.667969 C 2.503906 -4.667969 2.75 -4.609375 2.964844 -4.492188 C 3.179688 -4.375 3.355469 -4.226562 3.488281 -4.039062 L 3.488281 -6.300781 L 4.257812 -6.300781 L 4.257812 0 L 3.539062 0 M 1.09375 -2.277344 C 1.09375 -1.691406 1.21875 -1.257812 1.464844 -0.96875 C 1.710938 -0.675781 2.003906 -0.53125 2.335938 -0.53125 C 2.675781 -0.53125 2.960938 -0.671875 3.199219 -0.949219 C 3.433594 -1.222656 3.554688 -1.644531 3.554688 -2.210938 C 3.554688 -2.835938 3.433594 -3.296875 3.191406 -3.589844 C 2.953125 -3.878906 2.65625 -4.027344 2.304688 -4.027344 C 1.960938 -4.027344 1.671875 -3.886719 1.441406 -3.605469 C 1.210938 -3.324219 1.09375 -2.882812 1.09375 -2.277344 Z M 1.09375 -2.277344 "/>
</g>
<g id="glyph-0-11">
<path d="M 0.585938 -5.410156 L 0.585938 -6.300781 L 1.359375 -6.300781 L 1.359375 -5.410156 L 0.585938 -5.410156 M 0.585938 0 L 0.585938 -4.5625 L 1.359375 -4.5625 L 1.359375 0 Z M 0.585938 0 "/>
</g>
<g id="glyph-0-12">
<path d="M 3.558594 -0.5625 C 3.269531 -0.320312 2.996094 -0.148438 2.730469 -0.046875 C 2.464844 0.0546875 2.179688 0.101562 1.878906 0.101562 C 1.375 0.101562 0.992188 -0.0195312 0.722656 -0.265625 C 0.453125 -0.507812 0.316406 -0.820312 0.316406 -1.203125 C 0.316406 -1.425781 0.367188 -1.628906 0.46875 -1.816406 C 0.570312 -2 0.707031 -2.148438 0.871094 -2.261719 C 1.035156 -2.371094 1.21875 -2.457031 1.425781 -2.515625 C 1.578125 -2.554688 1.808594 -2.59375 2.113281 -2.628906 C 2.738281 -2.703125 3.199219 -2.792969 3.492188 -2.894531 C 3.496094 -3.003906 3.496094 -3.070312 3.496094 -3.097656 C 3.496094 -3.414062 3.425781 -3.636719 3.277344 -3.765625 C 3.082031 -3.9375 2.789062 -4.027344 2.398438 -4.027344 C 2.035156 -4.027344 1.765625 -3.960938 1.59375 -3.835938 C 1.417969 -3.707031 1.289062 -3.480469 1.207031 -3.160156 L 0.453125 -3.261719 C 0.519531 -3.585938 0.632812 -3.847656 0.789062 -4.046875 C 0.949219 -4.246094 1.175781 -4.398438 1.472656 -4.503906 C 1.773438 -4.613281 2.117188 -4.667969 2.507812 -4.667969 C 2.898438 -4.667969 3.214844 -4.621094 3.460938 -4.527344 C 3.703125 -4.4375 3.882812 -4.320312 3.996094 -4.183594 C 4.109375 -4.042969 4.191406 -3.867188 4.238281 -3.65625 C 4.261719 -3.523438 4.273438 -3.289062 4.273438 -2.945312 L 4.273438 -1.914062 C 4.273438 -1.191406 4.292969 -0.738281 4.324219 -0.546875 C 4.359375 -0.355469 4.421875 -0.175781 4.519531 0 L 3.710938 0 C 3.632812 -0.160156 3.582031 -0.347656 3.558594 -0.5625 M 3.492188 -2.289062 C 3.210938 -2.175781 2.792969 -2.078125 2.230469 -2 C 1.910156 -1.953125 1.6875 -1.902344 1.554688 -1.84375 C 1.421875 -1.785156 1.320312 -1.703125 1.25 -1.59375 C 1.179688 -1.480469 1.144531 -1.359375 1.144531 -1.226562 C 1.144531 -1.019531 1.222656 -0.847656 1.378906 -0.710938 C 1.535156 -0.570312 1.761719 -0.503906 2.0625 -0.503906 C 2.359375 -0.503906 2.625 -0.566406 2.859375 -0.699219 C 3.089844 -0.828125 3.261719 -1.007812 3.367188 -1.234375 C 3.453125 -1.40625 3.492188 -1.664062 3.492188 -2.007812 Z M 3.492188 -2.289062 "/>
</g>
<g id="glyph-0-13">
<path d="M 0.578125 0 L 0.578125 -4.5625 L 1.277344 -4.5625 L 1.277344 -3.914062 C 1.609375 -4.414062 2.09375 -4.667969 2.726562 -4.667969 C 3.003906 -4.667969 3.257812 -4.617188 3.488281 -4.519531 C 3.71875 -4.417969 3.890625 -4.289062 4.003906 -4.128906 C 4.121094 -3.96875 4.199219 -3.777344 4.246094 -3.558594 C 4.273438 -3.414062 4.289062 -3.164062 4.289062 -2.804688 L 4.289062 0 L 3.515625 0 L 3.515625 -2.777344 C 3.515625 -3.089844 3.484375 -3.328125 3.425781 -3.484375 C 3.363281 -3.640625 3.257812 -3.761719 3.105469 -3.855469 C 2.953125 -3.949219 2.773438 -3.996094 2.566406 -3.996094 C 2.234375 -3.996094 1.953125 -3.890625 1.710938 -3.683594 C 1.472656 -3.472656 1.351562 -3.078125 1.351562 -2.492188 L 1.351562 0 Z M 0.578125 0 "/>
</g>
<g id="glyph-0-14">
</g>
<g id="glyph-0-15">
<path d="M 2.058594 1.851562 C 1.632812 1.3125 1.269531 0.683594 0.976562 -0.0390625 C 0.679688 -0.761719 0.53125 -1.507812 0.53125 -2.28125 C 0.53125 -2.964844 0.644531 -3.617188 0.863281 -4.242188 C 1.121094 -4.964844 1.519531 -5.6875 2.058594 -6.40625 L 2.613281 -6.40625 C 2.265625 -5.8125 2.035156 -5.386719 1.925781 -5.128906 C 1.75 -4.734375 1.613281 -4.324219 1.511719 -3.894531 C 1.390625 -3.355469 1.328125 -2.820312 1.328125 -2.277344 C 1.328125 -0.898438 1.757812 0.476562 2.613281 1.851562 Z M 2.058594 1.851562 "/>
</g>
<g id="glyph-0-16">
<path d="M 0.0625 0 L 1.730469 -2.371094 L 0.1875 -4.5625 L 1.15625 -4.5625 L 1.855469 -3.492188 C 1.988281 -3.289062 2.09375 -3.121094 2.175781 -2.980469 C 2.300781 -3.171875 2.417969 -3.339844 2.523438 -3.484375 L 3.292969 -4.5625 L 4.214844 -4.5625 L 2.636719 -2.414062 L 4.335938 0 L 3.386719 0 L 2.449219 -1.417969 L 2.199219 -1.800781 L 1 0 Z M 0.0625 0 "/>
</g>
<g id="glyph-0-17">
<path d="M -3.90625 -6.648438 C -3.910156 -6.941406 -3.828125 -7.175781 -3.667969 -7.355469 C -3.503906 -7.535156 -3.292969 -7.628906 -3.035156 -7.628906 C -2.855469 -7.628906 -2.613281 -7.550781 -2.308594 -7.394531 C -2.136719 -7.308594 -2.003906 -7.265625 -1.902344 -7.265625 C -1.730469 -7.265625 -1.625 -7.390625 -1.589844 -7.640625 L -1.03125 -7.640625 C -1.046875 -6.988281 -1.328125 -6.660156 -1.875 -6.660156 C -2.054688 -6.660156 -2.292969 -6.742188 -2.585938 -6.902344 C -2.777344 -7.003906 -2.917969 -7.054688 -3.007812 -7.054688 C -3.230469 -7.054688 -3.339844 -6.917969 -3.335938 -6.648438 Z M -3.90625 -6.648438 "/>
</g>
<g id="glyph-0-18">
<path d="M 1.085938 1.851562 L 0.53125 1.851562 C 1.390625 0.476562 1.816406 -0.898438 1.816406 -2.277344 C 1.816406 -2.816406 1.757812 -3.351562 1.632812 -3.878906 C 1.535156 -4.308594 1.398438 -4.722656 1.226562 -5.117188 C 1.113281 -5.375 0.882812 -5.804688 0.53125 -6.40625 L 1.085938 -6.40625 C 1.625 -5.6875 2.023438 -4.964844 2.28125 -4.242188 C 2.503906 -3.617188 2.613281 -2.964844 2.613281 -2.28125 C 2.613281 -1.507812 2.464844 -0.761719 2.167969 -0.0390625 C 1.871094 0.683594 1.511719 1.3125 1.085938 1.851562 Z M 1.085938 1.851562 "/>
</g>
<g id="glyph-0-19">
<path d="M 0.5625 0 L 0.5625 -6.300781 L 1.335938 -6.300781 L 1.335938 0 Z M 0.5625 0 "/>
</g>
<g id="glyph-0-20">
<path d="M 1.847656 0 L 0.113281 -4.5625 L 0.929688 -4.5625 L 1.90625 -1.832031 C 2.015625 -1.535156 2.109375 -1.230469 2.199219 -0.910156 C 2.269531 -1.152344 2.363281 -1.441406 2.488281 -1.777344 L 3.503906 -4.5625 L 4.296875 -4.5625 L 2.570312 0 Z M 1.847656 0 "/>
</g>
<g id="glyph-0-21">
<path d="M 0.570312 0 L 0.570312 -4.5625 L 1.265625 -4.5625 L 1.265625 -3.871094 C 1.445312 -4.195312 1.609375 -4.410156 1.757812 -4.511719 C 1.910156 -4.613281 2.074219 -4.667969 2.257812 -4.667969 C 2.515625 -4.667969 2.78125 -4.582031 3.050781 -4.417969 L 2.785156 -3.699219 C 2.59375 -3.8125 2.40625 -3.867188 2.21875 -3.867188 C 2.046875 -3.867188 1.894531 -3.816406 1.761719 -3.714844 C 1.628906 -3.613281 1.53125 -3.472656 1.472656 -3.292969 C 1.386719 -3.015625 1.34375 -2.714844 1.34375 -2.390625 L 1.34375 0 Z M 0.570312 0 "/>
</g>
<g id="glyph-0-22">
<path d="M 1.332031 -5.273438 L -1.347656 -5.273438 L -1.347656 -5.910156 L 1.332031 -5.910156 Z M 1.332031 -5.273438 "/>
</g>
<g id="glyph-0-23">
<path d="M 2.28125 0 L 2.28125 -5.554688 L 0.207031 -5.554688 L 0.207031 -6.300781 L 5.199219 -6.300781 L 5.199219 -5.554688 L 3.117188 -5.554688 L 3.117188 0 Z M 2.28125 0 "/>
</g>
<g id="glyph-0-24">
<path d="M 0.546875 1.757812 L 0.460938 1.03125 C 0.628906 1.078125 0.777344 1.101562 0.902344 1.101562 C 1.074219 1.101562 1.210938 1.070312 1.316406 1.015625 C 1.417969 0.957031 1.503906 0.875 1.570312 0.773438 C 1.617188 0.695312 1.695312 0.503906 1.804688 0.199219 C 1.820312 0.15625 1.84375 0.0898438 1.875 0.0078125 L 0.140625 -4.5625 L 0.976562 -4.5625 L 1.925781 -1.921875 C 2.046875 -1.585938 2.160156 -1.234375 2.257812 -0.863281 C 2.34375 -1.21875 2.449219 -1.566406 2.574219 -1.902344 L 3.550781 -4.5625 L 4.324219 -4.5625 L 2.585938 0.078125 C 2.402344 0.578125 2.257812 0.925781 2.152344 1.113281 C 2.015625 1.367188 1.859375 1.554688 1.679688 1.671875 C 1.503906 1.792969 1.289062 1.851562 1.042969 1.851562 C 0.894531 1.851562 0.730469 1.820312 0.546875 1.757812 Z M 0.546875 1.757812 "/>
</g>
<g id="glyph-0-25">
<path d="M 0.578125 1.75 L 0.578125 -4.5625 L 1.285156 -4.5625 L 1.285156 -3.96875 C 1.449219 -4.203125 1.636719 -4.375 1.847656 -4.492188 C 2.058594 -4.609375 2.308594 -4.667969 2.609375 -4.667969 C 2.996094 -4.667969 3.339844 -4.566406 3.640625 -4.367188 C 3.9375 -4.164062 4.164062 -3.882812 4.3125 -3.515625 C 4.464844 -3.152344 4.542969 -2.75 4.542969 -2.316406 C 4.542969 -1.847656 4.457031 -1.429688 4.289062 -1.054688 C 4.121094 -0.679688 3.878906 -0.394531 3.558594 -0.195312 C 3.242188 0.00390625 2.90625 0.101562 2.550781 0.101562 C 2.292969 0.101562 2.0625 0.046875 1.859375 -0.0585938 C 1.652344 -0.167969 1.484375 -0.304688 1.351562 -0.472656 L 1.351562 1.75 L 0.578125 1.75 M 1.28125 -2.257812 C 1.28125 -1.667969 1.398438 -1.234375 1.636719 -0.953125 C 1.875 -0.671875 2.164062 -0.53125 2.5 -0.53125 C 2.84375 -0.53125 3.140625 -0.679688 3.382812 -0.96875 C 3.628906 -1.257812 3.75 -1.710938 3.75 -2.320312 C 3.75 -2.902344 3.632812 -3.335938 3.390625 -3.625 C 3.152344 -3.914062 2.867188 -4.058594 2.535156 -4.0625 C 2.207031 -4.058594 1.914062 -3.90625 1.660156 -3.597656 C 1.40625 -3.289062 1.28125 -2.84375 1.28125 -2.257812 Z M 1.28125 -2.257812 "/>
</g>
<g id="glyph-0-26">
<path d="M 2.269531 -0.691406 L 2.378906 -0.0078125 C 2.164062 0.0390625 1.96875 0.0585938 1.796875 0.0585938 C 1.515625 0.0585938 1.296875 0.015625 1.144531 -0.0742188 C 0.988281 -0.160156 0.878906 -0.277344 0.816406 -0.421875 C 0.753906 -0.566406 0.722656 -0.871094 0.722656 -1.335938 L 0.722656 -3.960938 L 0.15625 -3.960938 L 0.15625 -4.5625 L 0.722656 -4.5625 L 0.722656 -5.695312 L 1.492188 -6.15625 L 1.492188 -4.5625 L 2.269531 -4.5625 L 2.269531 -3.960938 L 1.492188 -3.960938 L 1.492188 -1.292969 C 1.492188 -1.074219 1.503906 -0.929688 1.53125 -0.867188 C 1.558594 -0.804688 1.601562 -0.753906 1.664062 -0.71875 C 1.726562 -0.679688 1.816406 -0.660156 1.929688 -0.660156 C 2.015625 -0.660156 2.128906 -0.671875 2.269531 -0.691406 Z M 2.269531 -0.691406 "/>
</g>
<g id="glyph-0-27">
<path d="M -0.132812 1.75 L -0.132812 1.191406 L 4.992188 1.191406 L 4.992188 1.75 Z M -0.132812 1.75 "/>
</g>
<g id="glyph-0-28">
<path d="M 0.578125 0 L 0.578125 -4.5625 L 1.273438 -4.5625 L 1.273438 -3.921875 C 1.414062 -4.148438 1.605469 -4.328125 1.84375 -4.460938 C 2.082031 -4.597656 2.351562 -4.667969 2.65625 -4.667969 C 2.992188 -4.667969 3.269531 -4.597656 3.488281 -4.457031 C 3.703125 -4.316406 3.855469 -4.121094 3.945312 -3.867188 C 4.304688 -4.398438 4.773438 -4.667969 5.355469 -4.667969 C 5.804688 -4.667969 6.15625 -4.542969 6.398438 -4.289062 C 6.640625 -4.039062 6.761719 -3.652344 6.761719 -3.132812 L 6.761719 0 L 5.996094 0 L 5.996094 -2.875 C 5.996094 -3.183594 5.96875 -3.40625 5.917969 -3.542969 C 5.867188 -3.679688 5.777344 -3.789062 5.644531 -3.871094 C 5.515625 -3.953125 5.359375 -3.996094 5.183594 -3.996094 C 4.859375 -3.996094 4.59375 -3.890625 4.382812 -3.675781 C 4.171875 -3.460938 4.066406 -3.121094 4.066406 -2.652344 L 4.066406 0 L 3.292969 0 L 3.292969 -2.964844 C 3.292969 -3.308594 3.226562 -3.566406 3.101562 -3.738281 C 2.976562 -3.910156 2.769531 -3.996094 2.484375 -3.996094 C 2.265625 -3.996094 2.066406 -3.9375 1.878906 -3.824219 C 1.695312 -3.710938 1.5625 -3.542969 1.476562 -3.320312 C 1.394531 -3.101562 1.351562 -2.78125 1.351562 -2.367188 L 1.351562 0 Z M 0.578125 0 "/>
</g>
<g id="glyph-0-29">
<path d="M 4.648438 -2.746094 L 0.488281 -2.746094 L 0.488281 -3.46875 L 4.648438 -3.46875 Z M 4.648438 -2.746094 "/>
</g>
<g id="glyph-0-30">
<path d="M 0.269531 -1.363281 L 1.035156 -1.484375 C 1.078125 -1.175781 1.199219 -0.941406 1.394531 -0.777344 C 1.589844 -0.613281 1.863281 -0.53125 2.21875 -0.53125 C 2.574219 -0.53125 2.835938 -0.605469 3.007812 -0.75 C 3.179688 -0.894531 3.265625 -1.0625 3.265625 -1.257812 C 3.265625 -1.433594 3.191406 -1.570312 3.039062 -1.671875 C 2.933594 -1.742188 2.667969 -1.828125 2.246094 -1.933594 C 1.679688 -2.078125 1.285156 -2.199219 1.066406 -2.304688 C 0.847656 -2.410156 0.683594 -2.554688 0.570312 -2.738281 C 0.457031 -2.925781 0.398438 -3.128906 0.398438 -3.351562 C 0.398438 -3.554688 0.445312 -3.742188 0.539062 -3.917969 C 0.632812 -4.089844 0.757812 -4.234375 0.917969 -4.347656 C 1.039062 -4.4375 1.203125 -4.511719 1.410156 -4.574219 C 1.621094 -4.636719 1.84375 -4.667969 2.078125 -4.667969 C 2.4375 -4.667969 2.753906 -4.613281 3.023438 -4.511719 C 3.292969 -4.410156 3.492188 -4.269531 3.621094 -4.09375 C 3.75 -3.917969 3.839844 -3.679688 3.890625 -3.386719 L 3.132812 -3.28125 C 3.097656 -3.519531 3 -3.699219 2.832031 -3.832031 C 2.667969 -3.964844 2.4375 -4.03125 2.136719 -4.03125 C 1.78125 -4.03125 1.527344 -3.972656 1.375 -3.855469 C 1.222656 -3.738281 1.148438 -3.597656 1.148438 -3.441406 C 1.148438 -3.339844 1.179688 -3.25 1.242188 -3.171875 C 1.304688 -3.089844 1.402344 -3.019531 1.539062 -2.964844 C 1.617188 -2.9375 1.84375 -2.871094 2.222656 -2.765625 C 2.769531 -2.621094 3.148438 -2.5 3.367188 -2.410156 C 3.582031 -2.316406 3.753906 -2.179688 3.875 -2.003906 C 4 -1.824219 4.058594 -1.605469 4.0625 -1.339844 C 4.058594 -1.082031 3.984375 -0.839844 3.835938 -0.613281 C 3.683594 -0.382812 3.46875 -0.207031 3.183594 -0.0820312 C 2.902344 0.0390625 2.578125 0.101562 2.222656 0.101562 C 1.628906 0.101562 1.175781 -0.0195312 0.867188 -0.265625 C 0.554688 -0.511719 0.355469 -0.878906 0.269531 -1.363281 Z M 0.269531 -1.363281 "/>
</g>
<g id="glyph-0-31">
<path d="M 2.203125 -1.019531 L 2.203125 -2.746094 L 0.488281 -2.746094 L 0.488281 -3.46875 L 2.203125 -3.46875 L 2.203125 -5.183594 L 2.933594 -5.183594 L 2.933594 -3.46875 L 4.648438 -3.46875 L 4.648438 -2.746094 L 2.933594 -2.746094 L 2.933594 -1.019531 Z M 2.203125 -1.019531 "/>
</g>
<g id="glyph-1-0">
<path d="M 0.804688 0 L 0.804688 -7.875 L 1.847656 -7.875 L 1.847656 -0.929688 L 5.726562 -0.929688 L 5.726562 0 Z M 0.804688 0 "/>
</g>
<g id="glyph-1-1">
<path d="M 4.628906 -1.835938 L 5.628906 -1.714844 C 5.472656 -1.128906 5.179688 -0.675781 4.753906 -0.355469 C 4.328125 -0.03125 3.78125 0.128906 3.121094 0.128906 C 2.285156 0.128906 1.625 -0.128906 1.136719 -0.640625 C 0.648438 -1.15625 0.402344 -1.875 0.402344 -2.804688 C 0.402344 -3.761719 0.648438 -4.507812 1.144531 -5.039062 C 1.636719 -5.566406 2.277344 -5.832031 3.066406 -5.832031 C 3.828125 -5.832031 4.453125 -5.574219 4.9375 -5.054688 C 5.417969 -4.535156 5.660156 -3.804688 5.660156 -2.863281 C 5.660156 -2.804688 5.660156 -2.71875 5.65625 -2.605469 L 1.402344 -2.605469 C 1.4375 -1.976562 1.613281 -1.5 1.933594 -1.164062 C 2.253906 -0.832031 2.648438 -0.664062 3.125 -0.664062 C 3.480469 -0.664062 3.78125 -0.757812 4.035156 -0.945312 C 4.285156 -1.132812 4.484375 -1.429688 4.628906 -1.835938 M 1.457031 -3.398438 L 4.640625 -3.398438 C 4.597656 -3.878906 4.476562 -4.238281 4.273438 -4.480469 C 3.96875 -4.851562 3.566406 -5.039062 3.078125 -5.039062 C 2.632812 -5.039062 2.261719 -4.890625 1.957031 -4.59375 C 1.65625 -4.296875 1.488281 -3.898438 1.457031 -3.398438 Z M 1.457031 -3.398438 "/>
</g>
<g id="glyph-1-2">
<path d="M 0.726562 0 L 0.726562 -5.703125 L 1.59375 -5.703125 L 1.59375 -4.894531 C 2.015625 -5.519531 2.621094 -5.832031 3.410156 -5.832031 C 3.753906 -5.832031 4.070312 -5.769531 4.359375 -5.648438 C 4.648438 -5.523438 4.863281 -5.363281 5.007812 -5.160156 C 5.148438 -4.960938 5.25 -4.722656 5.304688 -4.445312 C 5.34375 -4.269531 5.359375 -3.953125 5.359375 -3.507812 L 5.359375 0 L 4.394531 0 L 4.394531 -3.46875 C 4.394531 -3.863281 4.355469 -4.15625 4.28125 -4.351562 C 4.207031 -4.546875 4.070312 -4.703125 3.878906 -4.820312 C 3.6875 -4.9375 3.464844 -4.996094 3.207031 -4.996094 C 2.792969 -4.996094 2.4375 -4.863281 2.140625 -4.601562 C 1.839844 -4.339844 1.691406 -3.84375 1.691406 -3.117188 L 1.691406 0 Z M 0.726562 0 "/>
</g>
<g id="glyph-1-3">
<path d="M 0.546875 0.472656 L 1.488281 0.613281 C 1.527344 0.902344 1.636719 1.113281 1.816406 1.246094 C 2.054688 1.425781 2.382812 1.515625 2.796875 1.515625 C 3.246094 1.515625 3.589844 1.425781 3.835938 1.246094 C 4.078125 1.066406 4.242188 0.816406 4.328125 0.492188 C 4.378906 0.296875 4.402344 -0.117188 4.398438 -0.746094 C 3.976562 -0.25 3.449219 0 2.820312 0 C 2.035156 0 1.429688 -0.28125 1 -0.847656 C 0.570312 -1.414062 0.355469 -2.09375 0.355469 -2.882812 C 0.355469 -3.429688 0.453125 -3.929688 0.648438 -4.390625 C 0.847656 -4.851562 1.132812 -5.207031 1.507812 -5.457031 C 1.878906 -5.707031 2.320312 -5.832031 2.824219 -5.832031 C 3.5 -5.832031 4.054688 -5.5625 4.492188 -5.015625 L 4.492188 -5.703125 L 5.382812 -5.703125 L 5.382812 -0.773438 C 5.382812 0.113281 5.292969 0.742188 5.109375 1.113281 C 4.929688 1.484375 4.644531 1.777344 4.25 1.992188 C 3.859375 2.207031 3.375 2.316406 2.804688 2.316406 C 2.125 2.316406 1.574219 2.160156 1.15625 1.855469 C 0.734375 1.550781 0.535156 1.089844 0.546875 0.472656 M 1.347656 -2.953125 C 1.347656 -2.207031 1.496094 -1.660156 1.792969 -1.316406 C 2.089844 -0.972656 2.464844 -0.800781 2.910156 -0.800781 C 3.355469 -0.800781 3.726562 -0.972656 4.027344 -1.3125 C 4.328125 -1.65625 4.480469 -2.191406 4.480469 -2.921875 C 4.480469 -3.621094 4.324219 -4.148438 4.015625 -4.5 C 3.707031 -4.855469 3.332031 -5.03125 2.894531 -5.03125 C 2.464844 -5.03125 2.101562 -4.859375 1.800781 -4.507812 C 1.5 -4.160156 1.347656 -3.640625 1.347656 -2.953125 Z M 1.347656 -2.953125 "/>
</g>
<g id="glyph-1-4">
<path d="M 4.425781 0 L 4.425781 -0.71875 C 4.0625 -0.152344 3.53125 0.128906 2.832031 0.128906 C 2.375 0.128906 1.957031 0.00390625 1.578125 -0.246094 C 1.195312 -0.496094 0.898438 -0.847656 0.691406 -1.296875 C 0.480469 -1.746094 0.375 -2.261719 0.375 -2.847656 C 0.375 -3.414062 0.472656 -3.933594 0.660156 -4.394531 C 0.851562 -4.859375 1.136719 -5.214844 1.515625 -5.460938 C 1.894531 -5.710938 2.320312 -5.832031 2.789062 -5.832031 C 3.132812 -5.832031 3.4375 -5.761719 3.707031 -5.617188 C 3.976562 -5.46875 4.191406 -5.28125 4.359375 -5.046875 L 4.359375 -7.875 L 5.324219 -7.875 L 5.324219 0 L 4.425781 0 M 1.371094 -2.847656 C 1.371094 -2.117188 1.523438 -1.570312 1.832031 -1.207031 C 2.140625 -0.847656 2.503906 -0.664062 2.921875 -0.664062 C 3.34375 -0.664062 3.703125 -0.839844 4 -1.183594 C 4.292969 -1.53125 4.441406 -2.058594 4.441406 -2.765625 C 4.441406 -3.546875 4.292969 -4.121094 3.992188 -4.484375 C 3.691406 -4.851562 3.320312 -5.03125 2.878906 -5.03125 C 2.449219 -5.03125 2.089844 -4.855469 1.800781 -4.507812 C 1.515625 -4.15625 1.371094 -3.601562 1.371094 -2.847656 Z M 1.371094 -2.847656 "/>
</g>
<g id="glyph-1-5">
<path d="M 0.730469 -6.761719 L 0.730469 -7.875 L 1.695312 -7.875 L 1.695312 -6.761719 L 0.730469 -6.761719 M 0.730469 0 L 0.730469 -5.703125 L 1.695312 -5.703125 L 1.695312 0 Z M 0.730469 0 "/>
</g>
<g id="glyph-1-6">
<path d="M 0.71875 -6.75 L 0.71875 -7.875 L 1.6875 -7.875 L 1.6875 -6.75 L 0.71875 -6.75 M -0.503906 2.210938 L -0.320312 1.390625 C -0.128906 1.441406 0.0234375 1.464844 0.132812 1.464844 C 0.332031 1.464844 0.476562 1.402344 0.574219 1.269531 C 0.671875 1.140625 0.71875 0.8125 0.71875 0.289062 L 0.71875 -5.703125 L 1.6875 -5.703125 L 1.6875 0.3125 C 1.6875 1.011719 1.59375 1.503906 1.414062 1.777344 C 1.179688 2.136719 0.792969 2.316406 0.253906 2.316406 C -0.0078125 2.316406 -0.261719 2.28125 -0.503906 2.210938 Z M -0.503906 2.210938 "/>
</g>
<g id="glyph-1-7">
<path d="M 0.714844 0 L 0.714844 -5.703125 L 1.585938 -5.703125 L 1.585938 -4.839844 C 1.804688 -5.242188 2.011719 -5.511719 2.199219 -5.640625 C 2.386719 -5.769531 2.59375 -5.832031 2.820312 -5.832031 C 3.144531 -5.832031 3.476562 -5.730469 3.8125 -5.523438 L 3.480469 -4.625 C 3.242188 -4.765625 3.007812 -4.832031 2.773438 -4.835938 C 2.558594 -4.832031 2.371094 -4.769531 2.203125 -4.644531 C 2.035156 -4.515625 1.914062 -4.339844 1.84375 -4.113281 C 1.734375 -3.769531 1.679688 -3.394531 1.679688 -2.984375 L 1.679688 0 Z M 0.714844 0 "/>
</g>
<g id="glyph-2-0">
<path d="M 0 -0.804688 L -7.875 -0.804688 L -7.875 -1.847656 L -3.96875 -1.847656 L -7.875 -5.757812 L -7.875 -7.171875 L -4.683594 -3.867188 L 0 -7.316406 L 0 -5.941406 L -3.984375 -3.136719 L -2.726562 -1.847656 L 0 -1.847656 Z M 0 -0.804688 "/>
</g>
<g id="glyph-2-1">
<path d="M 0 -4.464844 L -0.835938 -4.464844 C -0.191406 -4.019531 0.128906 -3.414062 0.128906 -2.652344 C 0.128906 -2.316406 0.0625 -2.003906 -0.0625 -1.710938 C -0.191406 -1.417969 -0.355469 -1.203125 -0.550781 -1.0625 C -0.746094 -0.917969 -0.984375 -0.820312 -1.265625 -0.761719 C -1.457031 -0.722656 -1.757812 -0.703125 -2.171875 -0.703125 L -5.703125 -0.703125 L -5.703125 -1.671875 L -2.539062 -1.671875 C -2.035156 -1.671875 -1.695312 -1.691406 -1.519531 -1.730469 C -1.265625 -1.789062 -1.066406 -1.917969 -0.921875 -2.117188 C -0.777344 -2.3125 -0.703125 -2.554688 -0.703125 -2.847656 C -0.703125 -3.136719 -0.777344 -3.410156 -0.925781 -3.664062 C -1.074219 -3.917969 -1.277344 -4.097656 -1.535156 -4.203125 C -1.789062 -4.308594 -2.160156 -4.359375 -2.648438 -4.359375 L -5.703125 -4.359375 L -5.703125 -5.328125 L 0 -5.328125 Z M 0 -4.464844 "/>
</g>
<g id="glyph-2-2">
<path d="M 0 -0.726562 L -5.703125 -0.726562 L -5.703125 -1.589844 L -4.902344 -1.589844 C -5.183594 -1.769531 -5.40625 -2.007812 -5.578125 -2.304688 C -5.746094 -2.601562 -5.832031 -2.941406 -5.832031 -3.320312 C -5.832031 -3.742188 -5.746094 -4.089844 -5.570312 -4.359375 C -5.394531 -4.628906 -5.148438 -4.820312 -4.835938 -4.929688 C -5.5 -5.382812 -5.832031 -5.96875 -5.832031 -6.691406 C -5.832031 -7.257812 -5.675781 -7.691406 -5.363281 -7.996094 C -5.050781 -8.300781 -4.566406 -8.453125 -3.914062 -8.453125 L 0 -8.453125 L 0 -7.492188 L -3.59375 -7.492188 C -3.980469 -7.492188 -4.257812 -7.460938 -4.429688 -7.398438 C -4.597656 -7.335938 -4.734375 -7.222656 -4.839844 -7.058594 C -4.941406 -6.894531 -4.996094 -6.699219 -4.996094 -6.476562 C -4.996094 -6.078125 -4.863281 -5.742188 -4.59375 -5.476562 C -4.328125 -5.214844 -3.902344 -5.082031 -3.3125 -5.082031 L 0 -5.082031 L 0 -4.113281 L -3.707031 -4.113281 C -4.136719 -4.113281 -4.457031 -4.035156 -4.671875 -3.878906 C -4.886719 -3.71875 -4.996094 -3.460938 -4.996094 -3.105469 C -4.996094 -2.832031 -4.921875 -2.582031 -4.78125 -2.351562 C -4.636719 -2.117188 -4.425781 -1.953125 -4.152344 -1.847656 C -3.875 -1.742188 -3.480469 -1.691406 -2.960938 -1.691406 L 0 -1.691406 Z M 0 -0.726562 "/>
</g>
<g id="glyph-2-3">
<path d="M 0 -0.703125 L -7.875 -0.703125 L -7.875 -1.671875 L 0 -1.671875 Z M 0 -0.703125 "/>
</g>
<g id="glyph-2-4">
<path d="M -0.703125 -4.445312 C -0.398438 -4.089844 -0.183594 -3.746094 -0.0585938 -3.414062 C 0.0664062 -3.082031 0.128906 -2.726562 0.128906 -2.347656 C 0.128906 -1.71875 -0.0234375 -1.238281 -0.332031 -0.902344 C -0.636719 -0.566406 -1.027344 -0.398438 -1.503906 -0.398438 C -1.78125 -0.398438 -2.039062 -0.460938 -2.269531 -0.589844 C -2.5 -0.714844 -2.6875 -0.882812 -2.824219 -1.085938 C -2.964844 -1.292969 -3.070312 -1.527344 -3.140625 -1.785156 C -3.191406 -1.972656 -3.242188 -2.257812 -3.289062 -2.640625 C -3.378906 -3.421875 -3.492188 -3.996094 -3.621094 -4.367188 C -3.753906 -4.371094 -3.835938 -4.371094 -3.871094 -4.371094 C -4.265625 -4.371094 -4.542969 -4.28125 -4.703125 -4.097656 C -4.921875 -3.851562 -5.03125 -3.484375 -5.03125 -2.996094 C -5.03125 -2.542969 -4.953125 -2.207031 -4.792969 -1.988281 C -4.632812 -1.773438 -4.351562 -1.613281 -3.949219 -1.507812 L -4.078125 -0.5625 C -4.480469 -0.648438 -4.808594 -0.792969 -5.058594 -0.988281 C -5.304688 -1.183594 -5.496094 -1.46875 -5.632812 -1.84375 C -5.765625 -2.214844 -5.832031 -2.644531 -5.832031 -3.136719 C -5.832031 -3.625 -5.777344 -4.019531 -5.660156 -4.324219 C -5.546875 -4.628906 -5.402344 -4.851562 -5.230469 -4.996094 C -5.054688 -5.136719 -4.835938 -5.238281 -4.570312 -5.296875 C -4.40625 -5.328125 -4.109375 -5.34375 -3.679688 -5.34375 L -2.390625 -5.34375 C -1.492188 -5.34375 -0.921875 -5.363281 -0.683594 -5.40625 C -0.445312 -5.445312 -0.21875 -5.527344 0 -5.648438 L 0 -4.640625 C -0.199219 -4.539062 -0.433594 -4.476562 -0.703125 -4.445312 M -2.863281 -4.367188 C -2.71875 -4.015625 -2.597656 -3.488281 -2.496094 -2.789062 C -2.441406 -2.390625 -2.375 -2.109375 -2.304688 -1.945312 C -2.234375 -1.78125 -2.128906 -1.652344 -1.988281 -1.5625 C -1.851562 -1.472656 -1.699219 -1.429688 -1.53125 -1.429688 C -1.273438 -1.429688 -1.058594 -1.527344 -0.886719 -1.722656 C -0.714844 -1.917969 -0.628906 -2.203125 -0.628906 -2.578125 C -0.628906 -2.949219 -0.710938 -3.28125 -0.871094 -3.570312 C -1.035156 -3.863281 -1.257812 -4.074219 -1.542969 -4.210938 C -1.761719 -4.316406 -2.082031 -4.367188 -2.507812 -4.367188 Z M -2.863281 -4.367188 "/>
</g>
<g id="glyph-2-5">
<path d="M -0.863281 -2.835938 L -0.0117188 -2.976562 C 0.046875 -2.703125 0.0742188 -2.460938 0.0742188 -2.246094 C 0.0742188 -1.894531 0.0195312 -1.621094 -0.0898438 -1.429688 C -0.203125 -1.234375 -0.347656 -1.097656 -0.527344 -1.019531 C -0.710938 -0.941406 -1.089844 -0.902344 -1.671875 -0.902344 L -4.953125 -0.902344 L -4.953125 -0.195312 L -5.703125 -0.195312 L -5.703125 -0.902344 L -7.117188 -0.902344 L -7.695312 -1.863281 L -5.703125 -1.863281 L -5.703125 -2.835938 L -4.953125 -2.835938 L -4.953125 -1.863281 L -1.617188 -1.863281 C -1.339844 -1.863281 -1.164062 -1.878906 -1.085938 -1.914062 C -1.007812 -1.949219 -0.945312 -2.003906 -0.898438 -2.082031 C -0.851562 -2.160156 -0.828125 -2.269531 -0.828125 -2.410156 C -0.828125 -2.519531 -0.839844 -2.660156 -0.863281 -2.835938 Z M -0.863281 -2.835938 "/>
</g>
<g id="glyph-2-6">
<path d="M -6.761719 -0.730469 L -7.875 -0.730469 L -7.875 -1.699219 L -6.761719 -1.699219 L -6.761719 -0.730469 M 0 -0.730469 L -5.703125 -0.730469 L -5.703125 -1.699219 L 0 -1.695312 Z M 0 -0.730469 "/>
</g>
<g id="glyph-2-7">
<path d="M 0 -2.308594 L -5.703125 -0.140625 L -5.703125 -1.160156 L -2.289062 -2.382812 C -1.917969 -2.515625 -1.535156 -2.640625 -1.136719 -2.75 C -1.4375 -2.835938 -1.800781 -2.957031 -2.222656 -3.109375 L -5.703125 -4.378906 L -5.703125 -5.371094 L 0 -3.210938 Z M 0 -2.308594 "/>
</g>
<g id="glyph-2-8">
</g>
<g id="glyph-2-9">
<path d="M 0 -0.957031 L -4.953125 -0.957031 L -4.953125 -0.101562 L -5.703125 -0.101562 L -5.703125 -0.957031 L -6.3125 -0.957031 C -6.695312 -0.957031 -6.980469 -0.988281 -7.164062 -1.058594 C -7.414062 -1.152344 -7.617188 -1.316406 -7.773438 -1.550781 C -7.929688 -1.785156 -8.007812 -2.113281 -8.007812 -2.535156 C -8.007812 -2.808594 -7.976562 -3.109375 -7.910156 -3.4375 L -7.070312 -3.292969 C -7.105469 -3.09375 -7.121094 -2.902344 -7.121094 -2.722656 C -7.121094 -2.429688 -7.058594 -2.222656 -6.933594 -2.101562 C -6.808594 -1.976562 -6.574219 -1.917969 -6.230469 -1.917969 L -5.703125 -1.917969 L -5.703125 -3.03125 L -4.953125 -3.03125 L -4.953125 -1.917969 L 0 -1.917969 Z M 0 -0.957031 "/>
</g>
<g id="glyph-2-10">
<path d="M 0 -0.714844 L -5.703125 -0.714844 L -5.703125 -1.585938 L -4.839844 -1.585938 C -5.242188 -1.804688 -5.511719 -2.011719 -5.640625 -2.199219 C -5.769531 -2.386719 -5.832031 -2.59375 -5.832031 -2.820312 C -5.832031 -3.144531 -5.730469 -3.476562 -5.523438 -3.8125 L -4.625 -3.480469 C -4.765625 -3.246094 -4.832031 -3.007812 -4.835938 -2.773438 C -4.832031 -2.558594 -4.769531 -2.371094 -4.644531 -2.203125 C -4.515625 -2.035156 -4.339844 -1.914062 -4.113281 -1.84375 C -3.769531 -1.734375 -3.394531 -1.679688 -2.984375 -1.679688 L 0 -1.679688 Z M 0 -0.714844 "/>
</g>
<g id="glyph-2-11">
<path d="M -1.835938 -4.628906 L -1.714844 -5.628906 C -1.128906 -5.472656 -0.675781 -5.179688 -0.355469 -4.753906 C -0.03125 -4.328125 0.128906 -3.78125 0.128906 -3.121094 C 0.128906 -2.285156 -0.128906 -1.625 -0.640625 -1.136719 C -1.15625 -0.648438 -1.875 -0.402344 -2.804688 -0.402344 C -3.761719 -0.402344 -4.507812 -0.648438 -5.039062 -1.144531 C -5.566406 -1.636719 -5.832031 -2.277344 -5.832031 -3.066406 C -5.832031 -3.828125 -5.574219 -4.453125 -5.054688 -4.9375 C -4.535156 -5.417969 -3.804688 -5.660156 -2.863281 -5.660156 C -2.804688 -5.660156 -2.71875 -5.660156 -2.605469 -5.65625 L -2.605469 -1.402344 C -1.976562 -1.4375 -1.5 -1.613281 -1.164062 -1.933594 C -0.832031 -2.253906 -0.664062 -2.648438 -0.664062 -3.125 C -0.664062 -3.480469 -0.757812 -3.78125 -0.945312 -4.035156 C -1.132812 -4.285156 -1.429688 -4.484375 -1.835938 -4.628906 M -3.398438 -1.457031 L -3.398438 -4.640625 C -3.878906 -4.597656 -4.238281 -4.476562 -4.480469 -4.273438 C -4.851562 -3.96875 -5.039062 -3.566406 -5.039062 -3.078125 C -5.039062 -2.632812 -4.890625 -2.261719 -4.59375 -1.957031 C -4.296875 -1.65625 -3.898438 -1.488281 -3.398438 -1.457031 Z M -3.398438 -1.457031 "/>
</g>
<g id="glyph-2-12">
<path d="M 0 -0.730469 L -7.875 -0.730469 L -7.875 -1.699219 L -3.382812 -1.699219 L -5.703125 -3.984375 L -5.703125 -5.238281 L -3.585938 -3.054688 L 0 -5.457031 L 0 -4.265625 L -2.917969 -2.378906 L -2.261719 -1.699219 L 0 -1.695312 Z M 0 -0.730469 "/>
</g>
<g id="glyph-2-13">
<path d="M 0 -0.726562 L -5.703125 -0.726562 L -5.703125 -1.59375 L -4.894531 -1.59375 C -5.519531 -2.015625 -5.832031 -2.621094 -5.832031 -3.410156 C -5.832031 -3.753906 -5.769531 -4.070312 -5.648438 -4.359375 C -5.523438 -4.648438 -5.363281 -4.863281 -5.160156 -5.007812 C -4.960938 -5.148438 -4.722656 -5.25 -4.445312 -5.304688 C -4.269531 -5.34375 -3.953125 -5.359375 -3.507812 -5.359375 L 0 -5.359375 L 0 -4.394531 L -3.46875 -4.394531 C -3.863281 -4.394531 -4.15625 -4.355469 -4.351562 -4.28125 C -4.546875 -4.207031 -4.703125 -4.070312 -4.820312 -3.878906 C -4.9375 -3.6875 -4.996094 -3.464844 -4.996094 -3.207031 C -4.996094 -2.792969 -4.863281 -2.4375 -4.601562 -2.140625 C -4.339844 -1.839844 -3.84375 -1.691406 -3.117188 -1.691406 L 0 -1.691406 Z M 0 -0.726562 "/>
</g>
<g id="glyph-2-14">
<path d="M -1.703125 -0.339844 L -1.851562 -1.292969 C -1.46875 -1.347656 -1.175781 -1.496094 -0.972656 -1.742188 C -0.769531 -1.988281 -0.664062 -2.332031 -0.664062 -2.773438 C -0.664062 -3.214844 -0.757812 -3.546875 -0.9375 -3.757812 C -1.117188 -3.976562 -1.332031 -4.082031 -1.574219 -4.082031 C -1.792969 -4.082031 -1.964844 -3.988281 -2.089844 -3.796875 C -2.175781 -3.664062 -2.285156 -3.335938 -2.417969 -2.808594 C -2.597656 -2.101562 -2.75 -1.609375 -2.882812 -1.335938 C -3.011719 -1.0625 -3.191406 -0.851562 -3.425781 -0.710938 C -3.65625 -0.570312 -3.910156 -0.5 -4.1875 -0.5 C -4.445312 -0.5 -4.679688 -0.558594 -4.894531 -0.675781 C -5.113281 -0.789062 -5.292969 -0.949219 -5.4375 -1.148438 C -5.546875 -1.300781 -5.640625 -1.503906 -5.71875 -1.765625 C -5.792969 -2.023438 -5.832031 -2.300781 -5.832031 -2.601562 C -5.832031 -3.046875 -5.769531 -3.441406 -5.640625 -3.777344 C -5.511719 -4.117188 -5.335938 -4.367188 -5.117188 -4.527344 C -4.894531 -4.6875 -4.601562 -4.800781 -4.234375 -4.859375 L -4.101562 -3.914062 C -4.398438 -3.871094 -4.625 -3.75 -4.789062 -3.542969 C -4.957031 -3.335938 -5.039062 -3.046875 -5.039062 -2.667969 C -5.039062 -2.226562 -4.964844 -1.910156 -4.816406 -1.71875 C -4.671875 -1.527344 -4.5 -1.433594 -4.300781 -1.433594 C -4.175781 -1.433594 -4.0625 -1.472656 -3.964844 -1.550781 C -3.859375 -1.632812 -3.773438 -1.753906 -3.707031 -1.921875 C -3.671875 -2.019531 -3.585938 -2.304688 -3.460938 -2.777344 C -3.277344 -3.460938 -3.125 -3.9375 -3.011719 -4.207031 C -2.894531 -4.480469 -2.726562 -4.691406 -2.503906 -4.84375 C -2.28125 -5 -2.003906 -5.074219 -1.675781 -5.074219 C -1.351562 -5.074219 -1.050781 -4.980469 -0.765625 -4.792969 C -0.480469 -4.605469 -0.261719 -4.335938 -0.105469 -3.980469 C 0.0507812 -3.625 0.128906 -3.222656 0.128906 -2.777344 C 0.128906 -2.035156 -0.0234375 -1.472656 -0.332031 -1.082031 C -0.640625 -0.695312 -1.097656 -0.445312 -1.703125 -0.339844 Z M -1.703125 -0.339844 "/>
</g>
<g id="glyph-3-0">
<path d="M 0.96875 0 L 0.96875 -9.449219 L 2.21875 -9.449219 L 2.21875 -4.761719 L 6.910156 -9.449219 L 8.605469 -9.449219 L 4.640625 -5.621094 L 8.777344 0 L 7.128906 0 L 3.765625 -4.78125 L 2.21875 -3.273438 L 2.21875 0 Z M 0.96875 0 "/>
</g>
<g id="glyph-3-1">
<path d="M 5.355469 0 L 5.355469 -1.003906 C 4.824219 -0.230469 4.097656 0.15625 3.183594 0.15625 C 2.78125 0.15625 2.402344 0.078125 2.054688 -0.078125 C 1.703125 -0.230469 1.441406 -0.425781 1.273438 -0.660156 C 1.101562 -0.894531 0.984375 -1.183594 0.914062 -1.519531 C 0.867188 -1.75 0.84375 -2.109375 0.84375 -2.605469 L 0.84375 -6.84375 L 2.003906 -6.84375 L 2.003906 -3.046875 C 2.003906 -2.441406 2.027344 -2.035156 2.074219 -1.824219 C 2.148438 -1.519531 2.304688 -1.28125 2.539062 -1.105469 C 2.777344 -0.929688 3.066406 -0.84375 3.414062 -0.84375 C 3.765625 -0.84375 4.089844 -0.933594 4.394531 -1.113281 C 4.699219 -1.289062 4.917969 -1.53125 5.042969 -1.839844 C 5.171875 -2.148438 5.234375 -2.59375 5.234375 -3.175781 L 5.234375 -6.84375 L 6.394531 -6.84375 L 6.394531 0 Z M 5.355469 0 "/>
</g>
<g id="glyph-3-2">
<path d="M 0.871094 0 L 0.871094 -6.84375 L 1.90625 -6.84375 L 1.90625 -5.882812 C 2.121094 -6.21875 2.410156 -6.488281 2.765625 -6.695312 C 3.121094 -6.898438 3.527344 -7 3.984375 -7 C 4.488281 -7 4.90625 -6.894531 5.230469 -6.683594 C 5.554688 -6.472656 5.785156 -6.179688 5.917969 -5.800781 C 6.457031 -6.601562 7.164062 -7 8.03125 -7 C 8.710938 -7 9.230469 -6.8125 9.597656 -6.4375 C 9.960938 -6.058594 10.144531 -5.480469 10.144531 -4.699219 L 10.144531 0 L 8.992188 0 L 8.992188 -4.3125 C 8.992188 -4.777344 8.953125 -5.109375 8.878906 -5.3125 C 8.804688 -5.519531 8.667969 -5.683594 8.46875 -5.808594 C 8.269531 -5.933594 8.039062 -5.992188 7.773438 -5.992188 C 7.292969 -5.992188 6.890625 -5.835938 6.574219 -5.515625 C 6.257812 -5.195312 6.097656 -4.679688 6.097656 -3.976562 L 6.097656 0 L 4.9375 0 L 4.9375 -4.445312 C 4.9375 -4.960938 4.84375 -5.347656 4.652344 -5.609375 C 4.464844 -5.863281 4.15625 -5.992188 3.726562 -5.992188 C 3.398438 -5.992188 3.097656 -5.90625 2.820312 -5.734375 C 2.542969 -5.5625 2.339844 -5.3125 2.21875 -4.980469 C 2.09375 -4.652344 2.03125 -4.175781 2.03125 -3.550781 L 2.03125 0 Z M 0.871094 0 "/>
</g>
<g id="glyph-3-3">
<path d="M 0.84375 0 L 0.84375 -9.449219 L 2.003906 -9.449219 L 2.003906 0 Z M 0.84375 0 "/>
</g>
<g id="glyph-3-4">
<path d="M 5.335938 -0.84375 C 4.90625 -0.480469 4.492188 -0.222656 4.097656 -0.0703125 C 3.699219 0.078125 3.273438 0.15625 2.816406 0.15625 C 2.066406 0.15625 1.488281 -0.0273438 1.082031 -0.394531 C 0.679688 -0.765625 0.476562 -1.234375 0.476562 -1.804688 C 0.476562 -2.140625 0.554688 -2.445312 0.707031 -2.722656 C 0.859375 -3 1.058594 -3.222656 1.304688 -3.390625 C 1.550781 -3.558594 1.832031 -3.683594 2.140625 -3.769531 C 2.367188 -3.832031 2.710938 -3.886719 3.171875 -3.945312 C 4.109375 -4.054688 4.796875 -4.1875 5.238281 -4.34375 C 5.246094 -4.503906 5.246094 -4.605469 5.246094 -4.648438 C 5.246094 -5.121094 5.136719 -5.453125 4.917969 -5.644531 C 4.621094 -5.90625 4.179688 -6.039062 3.597656 -6.039062 C 3.050781 -6.039062 2.648438 -5.945312 2.386719 -5.753906 C 2.128906 -5.5625 1.9375 -5.222656 1.8125 -4.738281 L 0.675781 -4.890625 C 0.78125 -5.378906 0.949219 -5.769531 1.1875 -6.066406 C 1.421875 -6.367188 1.765625 -6.597656 2.210938 -6.757812 C 2.65625 -6.917969 3.175781 -7 3.765625 -7 C 4.347656 -7 4.824219 -6.929688 5.1875 -6.792969 C 5.554688 -6.65625 5.820312 -6.484375 5.992188 -6.273438 C 6.164062 -6.066406 6.285156 -5.804688 6.355469 -5.484375 C 6.394531 -5.289062 6.414062 -4.929688 6.414062 -4.414062 L 6.414062 -2.867188 C 6.414062 -1.789062 6.4375 -1.109375 6.488281 -0.820312 C 6.535156 -0.535156 6.632812 -0.261719 6.78125 0 L 5.570312 0 C 5.449219 -0.242188 5.371094 -0.523438 5.335938 -0.84375 M 5.238281 -3.433594 C 4.820312 -3.261719 4.1875 -3.117188 3.34375 -2.996094 C 2.867188 -2.929688 2.53125 -2.851562 2.332031 -2.765625 C 2.136719 -2.679688 1.984375 -2.554688 1.875 -2.386719 C 1.769531 -2.222656 1.714844 -2.039062 1.714844 -1.835938 C 1.714844 -1.527344 1.832031 -1.269531 2.066406 -1.0625 C 2.300781 -0.855469 2.640625 -0.753906 3.09375 -0.753906 C 3.539062 -0.753906 3.9375 -0.851562 4.285156 -1.046875 C 4.632812 -1.242188 4.890625 -1.511719 5.054688 -1.851562 C 5.175781 -2.113281 5.238281 -2.5 5.238281 -3.011719 Z M 5.238281 -3.433594 "/>
</g>
<g id="glyph-3-5">
<path d="M 3.402344 -1.039062 L 3.570312 -0.0117188 C 3.242188 0.0546875 2.953125 0.0898438 2.695312 0.0898438 C 2.273438 0.0898438 1.945312 0.0234375 1.714844 -0.109375 C 1.484375 -0.242188 1.320312 -0.417969 1.226562 -0.636719 C 1.128906 -0.851562 1.082031 -1.308594 1.082031 -2.003906 L 1.082031 -5.941406 L 0.230469 -5.941406 L 0.230469 -6.84375 L 1.082031 -6.84375 L 1.082031 -8.539062 L 2.238281 -9.234375 L 2.238281 -6.84375 L 3.402344 -6.84375 L 3.402344 -5.941406 L 2.238281 -5.941406 L 2.238281 -1.941406 C 2.238281 -1.609375 2.257812 -1.394531 2.296875 -1.300781 C 2.339844 -1.207031 2.40625 -1.132812 2.496094 -1.078125 C 2.589844 -1.019531 2.722656 -0.992188 2.894531 -0.992188 C 3.023438 -0.992188 3.191406 -1.007812 3.402344 -1.039062 Z M 3.402344 -1.039062 "/>
</g>
<g id="glyph-3-6">
<path d="M 0.875 -8.113281 L 0.875 -9.449219 L 2.035156 -9.449219 L 2.035156 -8.113281 L 0.875 -8.113281 M 0.875 0 L 0.875 -6.84375 L 2.035156 -6.84375 L 2.035156 0 Z M 0.875 0 "/>
</g>
<g id="glyph-3-7">
<path d="M 2.773438 0 L 0.167969 -6.84375 L 1.390625 -6.84375 L 2.863281 -2.746094 C 3.019531 -2.304688 3.167969 -1.84375 3.300781 -1.367188 C 3.402344 -1.726562 3.546875 -2.160156 3.730469 -2.667969 L 5.253906 -6.84375 L 6.445312 -6.84375 L 3.855469 0 Z M 2.773438 0 "/>
</g>
<g id="glyph-3-8">
</g>
<g id="glyph-3-9">
<path d="M 1.148438 0 L 1.148438 -5.941406 L 0.121094 -5.941406 L 0.121094 -6.84375 L 1.148438 -6.84375 L 1.148438 -7.574219 C 1.148438 -8.03125 1.1875 -8.375 1.269531 -8.597656 C 1.382812 -8.898438 1.578125 -9.144531 1.859375 -9.328125 C 2.140625 -9.515625 2.535156 -9.609375 3.042969 -9.609375 C 3.367188 -9.609375 3.730469 -9.570312 4.125 -9.492188 L 3.949219 -8.480469 C 3.710938 -8.523438 3.484375 -8.546875 3.269531 -8.546875 C 2.914062 -8.546875 2.667969 -8.472656 2.519531 -8.320312 C 2.375 -8.171875 2.300781 -7.890625 2.300781 -7.476562 L 2.300781 -6.84375 L 3.636719 -6.84375 L 3.636719 -5.941406 L 2.300781 -5.941406 L 2.300781 0 Z M 1.148438 0 "/>
</g>
<g id="glyph-3-10">
<path d="M 0.855469 0 L 0.855469 -6.84375 L 1.902344 -6.84375 L 1.902344 -5.808594 C 2.167969 -6.292969 2.414062 -6.613281 2.640625 -6.765625 C 2.863281 -6.921875 3.113281 -7 3.382812 -7 C 3.773438 -7 4.171875 -6.875 4.578125 -6.625 L 4.175781 -5.550781 C 3.894531 -5.71875 3.609375 -5.800781 3.324219 -5.800781 C 3.070312 -5.800781 2.84375 -5.722656 2.640625 -5.570312 C 2.441406 -5.417969 2.296875 -5.207031 2.210938 -4.9375 C 2.082031 -4.523438 2.015625 -4.074219 2.015625 -3.582031 L 2.015625 0 Z M 0.855469 0 "/>
</g>
<g id="glyph-3-11">
<path d="M 5.554688 -2.203125 L 6.753906 -2.054688 C 6.566406 -1.355469 6.214844 -0.8125 5.703125 -0.425781 C 5.191406 -0.0390625 4.539062 0.15625 3.746094 0.15625 C 2.742188 0.15625 1.949219 -0.152344 1.363281 -0.769531 C 0.777344 -1.386719 0.484375 -2.25 0.484375 -3.363281 C 0.484375 -4.515625 0.78125 -5.410156 1.371094 -6.046875 C 1.964844 -6.679688 2.734375 -7 3.679688 -7 C 4.59375 -7 5.34375 -6.6875 5.921875 -6.066406 C 6.503906 -5.441406 6.792969 -4.566406 6.792969 -3.433594 C 6.792969 -3.367188 6.792969 -3.261719 6.785156 -3.125 L 1.683594 -3.125 C 1.726562 -2.375 1.9375 -1.796875 2.320312 -1.398438 C 2.703125 -1 3.179688 -0.800781 3.75 -0.800781 C 4.175781 -0.800781 4.539062 -0.910156 4.839844 -1.132812 C 5.140625 -1.359375 5.378906 -1.714844 5.554688 -2.203125 M 1.746094 -4.078125 L 5.570312 -4.078125 C 5.515625 -4.65625 5.371094 -5.085938 5.128906 -5.375 C 4.761719 -5.820312 4.28125 -6.046875 3.691406 -6.046875 C 3.160156 -6.046875 2.710938 -5.867188 2.347656 -5.511719 C 1.984375 -5.152344 1.785156 -4.675781 1.746094 -4.078125 Z M 1.746094 -4.078125 "/>
</g>
<g id="glyph-3-12">
<path d="M 0.875 0 L 0.875 -9.449219 L 2.035156 -9.449219 L 2.035156 -4.0625 L 4.78125 -6.84375 L 6.285156 -6.84375 L 3.667969 -4.304688 L 6.546875 0 L 5.117188 0 L 2.855469 -3.5 L 2.035156 -2.714844 L 2.035156 0 Z M 0.875 0 "/>
</g>
<g id="glyph-3-13">
<path d="M 0.871094 0 L 0.871094 -6.84375 L 1.914062 -6.84375 L 1.914062 -5.871094 C 2.417969 -6.625 3.144531 -7 4.09375 -7 C 4.503906 -7 4.882812 -6.925781 5.230469 -6.777344 C 5.578125 -6.628906 5.835938 -6.433594 6.007812 -6.195312 C 6.179688 -5.953125 6.300781 -5.667969 6.367188 -5.335938 C 6.410156 -5.121094 6.433594 -4.746094 6.433594 -4.207031 L 6.433594 0 L 5.273438 0 L 5.273438 -4.164062 C 5.273438 -4.636719 5.226562 -4.988281 5.136719 -5.222656 C 5.046875 -5.457031 4.886719 -5.644531 4.65625 -5.785156 C 4.425781 -5.925781 4.15625 -5.992188 3.847656 -5.992188 C 3.355469 -5.992188 2.925781 -5.835938 2.570312 -5.523438 C 2.210938 -5.210938 2.03125 -4.613281 2.03125 -3.738281 L 2.03125 0 Z M 0.871094 0 "/>
</g>
<g id="glyph-3-14">
<path d="M 0.40625 -2.042969 L 1.554688 -2.222656 C 1.617188 -1.765625 1.796875 -1.410156 2.089844 -1.167969 C 2.386719 -0.921875 2.796875 -0.800781 3.324219 -0.800781 C 3.859375 -0.800781 4.253906 -0.90625 4.511719 -1.125 C 4.769531 -1.339844 4.898438 -1.597656 4.898438 -1.886719 C 4.898438 -2.152344 4.785156 -2.355469 4.558594 -2.507812 C 4.398438 -2.609375 4.003906 -2.742188 3.371094 -2.898438 C 2.519531 -3.113281 1.929688 -3.300781 1.601562 -3.457031 C 1.273438 -3.613281 1.023438 -3.832031 0.855469 -4.109375 C 0.683594 -4.386719 0.597656 -4.691406 0.597656 -5.027344 C 0.597656 -5.332031 0.667969 -5.613281 0.808594 -5.875 C 0.949219 -6.136719 1.136719 -6.351562 1.378906 -6.523438 C 1.558594 -6.65625 1.804688 -6.769531 2.117188 -6.859375 C 2.429688 -6.953125 2.761719 -7 3.121094 -7 C 3.65625 -7 4.128906 -6.921875 4.535156 -6.765625 C 4.941406 -6.613281 5.238281 -6.402344 5.433594 -6.140625 C 5.625 -5.875 5.761719 -5.519531 5.832031 -5.078125 L 4.699219 -4.925781 C 4.648438 -5.277344 4.496094 -5.550781 4.25 -5.75 C 4.003906 -5.945312 3.65625 -6.046875 3.203125 -6.046875 C 2.671875 -6.046875 2.289062 -5.957031 2.0625 -5.78125 C 1.835938 -5.605469 1.722656 -5.398438 1.722656 -5.164062 C 1.722656 -5.011719 1.769531 -4.875 1.863281 -4.757812 C 1.957031 -4.632812 2.105469 -4.527344 2.308594 -4.445312 C 2.421875 -4.402344 2.765625 -4.304688 3.332031 -4.152344 C 4.152344 -3.929688 4.726562 -3.753906 5.050781 -3.613281 C 5.375 -3.472656 5.628906 -3.269531 5.8125 -3.003906 C 6 -2.738281 6.089844 -2.40625 6.089844 -2.011719 C 6.089844 -1.625 5.976562 -1.261719 5.753906 -0.917969 C 5.527344 -0.578125 5.203125 -0.3125 4.777344 -0.125 C 4.351562 0.0625 3.871094 0.15625 3.332031 0.15625 C 2.441406 0.15625 1.765625 -0.03125 1.296875 -0.398438 C 0.832031 -0.769531 0.535156 -1.316406 0.40625 -2.042969 Z M 0.40625 -2.042969 "/>
</g>
<g id="glyph-3-15">
<path d="M 5.3125 0 L 5.3125 -0.863281 C 4.875 -0.183594 4.238281 0.15625 3.398438 0.15625 C 2.851562 0.15625 2.347656 0.00390625 1.890625 -0.296875 C 1.433594 -0.597656 1.078125 -1.015625 0.828125 -1.554688 C 0.578125 -2.097656 0.453125 -2.714844 0.453125 -3.414062 C 0.453125 -4.097656 0.566406 -4.71875 0.792969 -5.277344 C 1.019531 -5.832031 1.363281 -6.257812 1.816406 -6.554688 C 2.273438 -6.851562 2.78125 -7 3.34375 -7 C 3.757812 -7 4.125 -6.914062 4.445312 -6.738281 C 4.769531 -6.566406 5.03125 -6.335938 5.234375 -6.058594 L 5.234375 -9.449219 L 6.386719 -9.449219 L 6.386719 0 L 5.3125 0 M 1.644531 -3.414062 C 1.644531 -2.539062 1.828125 -1.882812 2.199219 -1.449219 C 2.566406 -1.015625 3.003906 -0.800781 3.507812 -0.800781 C 4.011719 -0.800781 4.445312 -1.007812 4.796875 -1.421875 C 5.152344 -1.835938 5.332031 -2.46875 5.332031 -3.320312 C 5.332031 -4.257812 5.148438 -4.945312 4.789062 -5.382812 C 4.429688 -5.820312 3.984375 -6.039062 3.453125 -6.039062 C 2.9375 -6.039062 2.507812 -5.828125 2.164062 -5.40625 C 1.816406 -4.988281 1.644531 -4.324219 1.644531 -3.414062 Z M 1.644531 -3.414062 "/>
</g>
<g id="glyph-3-16">
<path d="M 0.65625 0.566406 L 1.785156 0.734375 C 1.832031 1.082031 1.964844 1.335938 2.179688 1.496094 C 2.464844 1.710938 2.859375 1.816406 3.359375 1.816406 C 3.894531 1.816406 4.308594 1.710938 4.601562 1.496094 C 4.894531 1.28125 5.09375 0.980469 5.195312 0.59375 C 5.253906 0.355469 5.28125 -0.140625 5.277344 -0.894531 C 4.773438 -0.296875 4.140625 0 3.382812 0 C 2.441406 0 1.714844 -0.339844 1.199219 -1.019531 C 0.683594 -1.695312 0.425781 -2.511719 0.425781 -3.460938 C 0.425781 -4.113281 0.542969 -4.71875 0.78125 -5.269531 C 1.015625 -5.820312 1.359375 -6.246094 1.808594 -6.546875 C 2.257812 -6.847656 2.785156 -7 3.390625 -7 C 4.199219 -7 4.863281 -6.671875 5.386719 -6.019531 L 5.386719 -6.84375 L 6.457031 -6.84375 L 6.457031 -0.929688 C 6.457031 0.136719 6.351562 0.894531 6.132812 1.335938 C 5.914062 1.78125 5.570312 2.132812 5.101562 2.390625 C 4.632812 2.648438 4.050781 2.777344 3.363281 2.777344 C 2.546875 2.777344 1.886719 2.59375 1.386719 2.226562 C 0.882812 1.859375 0.640625 1.304688 0.65625 0.566406 M 1.617188 -3.546875 C 1.617188 -2.648438 1.796875 -1.992188 2.152344 -1.578125 C 2.507812 -1.167969 2.957031 -0.960938 3.492188 -0.960938 C 4.027344 -0.960938 4.472656 -1.164062 4.835938 -1.574219 C 5.195312 -1.984375 5.375 -2.628906 5.375 -3.507812 C 5.375 -4.34375 5.191406 -4.976562 4.816406 -5.402344 C 4.445312 -5.828125 4 -6.039062 3.472656 -6.039062 C 2.957031 -6.039062 2.519531 -5.828125 2.160156 -5.410156 C 1.796875 -4.992188 1.617188 -4.371094 1.617188 -3.546875 Z M 1.617188 -3.546875 "/>
</g>
<g id="glyph-3-17">
<path d="M 0.417969 -2.835938 L 0.417969 -4.003906 L 3.984375 -4.003906 L 3.984375 -2.835938 Z M 0.417969 -2.835938 "/>
</g>
<g id="glyph-3-18">
<path d="M 0.96875 0 L 0.96875 -9.449219 L 2.21875 -9.449219 L 2.21875 -1.113281 L 6.871094 -1.113281 L 6.871094 0 Z M 0.96875 0 "/>
</g>
<g id="glyph-3-19">
<path d="M 1.941406 0 L 0.863281 0 L 0.863281 -9.449219 L 2.023438 -9.449219 L 2.023438 -6.078125 C 2.515625 -6.691406 3.140625 -7 3.898438 -7 C 4.320312 -7 4.71875 -6.914062 5.09375 -6.746094 C 5.472656 -6.574219 5.78125 -6.335938 6.023438 -6.03125 C 6.265625 -5.722656 6.457031 -5.351562 6.59375 -4.917969 C 6.730469 -4.484375 6.800781 -4.019531 6.800781 -3.527344 C 6.800781 -2.351562 6.507812 -1.445312 5.929688 -0.804688 C 5.351562 -0.164062 4.652344 0.15625 3.839844 0.15625 C 3.035156 0.15625 2.398438 -0.183594 1.941406 -0.855469 L 1.941406 0 M 1.925781 -3.472656 C 1.925781 -2.652344 2.039062 -2.058594 2.261719 -1.695312 C 2.628906 -1.097656 3.121094 -0.800781 3.746094 -0.800781 C 4.25 -0.800781 4.691406 -1.019531 5.058594 -1.460938 C 5.429688 -1.898438 5.613281 -2.554688 5.613281 -3.429688 C 5.613281 -4.324219 5.4375 -4.980469 5.082031 -5.40625 C 4.726562 -5.832031 4.300781 -6.046875 3.796875 -6.046875 C 3.289062 -6.046875 2.851562 -5.824219 2.480469 -5.386719 C 2.113281 -4.945312 1.925781 -4.308594 1.925781 -3.472656 Z M 1.925781 -3.472656 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 34.773438 411 L 661.519531 411 L 661.519531 412 L 34.773438 412 Z M 34.773438 411 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 34.773438 259 L 661.519531 259 L 661.519531 261 L 34.773438 261 Z M 34.773438 259 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 34.773438 107 L 661.519531 107 L 661.519531 109 L 34.773438 109 Z M 34.773438 107 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 144 24.40625 L 145 24.40625 L 145 525.527344 L 144 525.527344 Z M 144 24.40625 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 307 24.40625 L 308 24.40625 L 308 525.527344 L 307 525.527344 Z M 307 24.40625 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 469 24.40625 L 471 24.40625 L 471 525.527344 L 469 525.527344 Z M 469 24.40625 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 632 24.40625 L 634 24.40625 L 634 525.527344 L 632 525.527344 Z M 632 24.40625 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 34.773438 487 L 661.519531 487 L 661.519531 489 L 34.773438 489 Z M 34.773438 487 "/>
</clipPath>
<clipPath id="clip-8">
<path clip-rule="nonzero" d="M 34.773438 335 L 661.519531 335 L 661.519531 337 L 34.773438 337 Z M 34.773438 335 "/>
</clipPath>
<clipPath id="clip-9">
<path clip-rule="nonzero" d="M 34.773438 183 L 661.519531 183 L 661.519531 185 L 34.773438 185 Z M 34.773438 183 "/>
</clipPath>
<clipPath id="clip-10">
<path clip-rule="nonzero" d="M 34.773438 31 L 661.519531 31 L 661.519531 33 L 34.773438 33 Z M 34.773438 31 "/>
</clipPath>
<clipPath id="clip-11">
<path clip-rule="nonzero" d="M 62 24.40625 L 64 24.40625 L 64 525.527344 L 62 525.527344 Z M 62 24.40625 "/>
</clipPath>
<clipPath id="clip-12">
<path clip-rule="nonzero" d="M 225 24.40625 L 227 24.40625 L 227 525.527344 L 225 525.527344 Z M 225 24.40625 "/>
</clipPath>
<clipPath id="clip-13">
<path clip-rule="nonzero" d="M 388 24.40625 L 390 24.40625 L 390 525.527344 L 388 525.527344 Z M 388 24.40625 "/>
</clipPath>
<clipPath id="clip-14">
<path clip-rule="nonzero" d="M 551 24.40625 L 553 24.40625 L 553 525.527344 L 551 525.527344 Z M 551 24.40625 "/>
</clipPath>
<clipPath id="clip-15">
<path clip-rule="nonzero" d="M 239 24.40625 L 242 24.40625 L 242 525.527344 L 239 525.527344 Z M 239 24.40625 "/>
</clipPath>
<clipPath id="clip-16">
<path clip-rule="nonzero" d="M 225 24.40625 L 228 24.40625 L 228 525.527344 L 225 525.527344 Z M 225 24.40625 "/>
</clipPath>
<clipPath id="clip-17">
<path clip-rule="nonzero" d="M 62 24.40625 L 65 24.40625 L 65 525.527344 L 62 525.527344 Z M 62 24.40625 "/>
</clipPath>
<clipPath id="clip-18">
<path clip-rule="nonzero" d="M 82 24.40625 L 85 24.40625 L 85 525.527344 L 82 525.527344 Z M 82 24.40625 "/>
</clipPath>
<clipPath id="clip-19">
<path clip-rule="nonzero" d="M 396 24.40625 L 399 24.40625 L 399 525.527344 L 396 525.527344 Z M 396 24.40625 "/>
</clipPath>
</defs>
<rect x="-66.7" y="-59.8" width="800.4" height="717.6" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-66.7" y="-59.8" width="800.4" height="717.6" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<g clip-path="url(#clip-0)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 411.636719 L 661.519531 411.636719 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 259.78125 L 661.519531 259.78125 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 107.925781 L 661.519531 107.925781 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 144.660156 525.527344 L 144.660156 24.40625 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 307.449219 525.527344 L 307.449219 24.40625 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 470.242188 525.527344 L 470.242188 24.40625 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 633.03125 525.527344 L 633.03125 24.40625 "/>
</g>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 487.5625 L 661.519531 487.5625 "/>
</g>
<g clip-path="url(#clip-8)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 335.710938 L 661.519531 335.710938 "/>
</g>
<g clip-path="url(#clip-9)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 183.855469 L 661.519531 183.855469 "/>
</g>
<g clip-path="url(#clip-10)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 32 L 661.519531 32 "/>
</g>
<g clip-path="url(#clip-11)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 63.261719 525.527344 L 63.261719 24.40625 "/>
</g>
<g clip-path="url(#clip-12)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 226.054688 525.527344 L 226.054688 24.40625 "/>
</g>
<g clip-path="url(#clip-13)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 388.84375 525.527344 L 388.84375 24.40625 "/>
</g>
<g clip-path="url(#clip-14)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(92.156863%, 92.156863%, 92.156863%)" stroke-opacity="1" stroke-miterlimit="10" d="M 551.636719 525.527344 L 551.636719 24.40625 "/>
</g>
<path fill="none" stroke-width="1.920561" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 63.261719 502.75 L 144.660156 502.75 L 144.660156 366.082031 L 226.054688 366.082031 L 226.054688 259.78125 L 307.449219 259.78125 L 307.449219 229.410156 L 388.84375 229.410156 L 388.84375 123.113281 L 470.242188 123.113281 L 470.242188 77.558594 L 551.636719 77.558594 L 551.636719 62.371094 L 633.03125 62.371094 L 633.03125 47.1875 "/>
<g clip-path="url(#clip-15)">
<path fill="none" stroke-width="1.920561" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(63.921569%, 64.705882%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 240.664062 525.527344 L 240.664062 24.40625 "/>
</g>
<g clip-path="url(#clip-16)">
<path fill="none" stroke-width="1.920561" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(97.254902%, 46.27451%, 42.745098%)" stroke-opacity="1" stroke-miterlimit="10" d="M 226.054688 525.527344 L 226.054688 24.40625 "/>
</g>
<g clip-path="url(#clip-17)">
<path fill="none" stroke-width="1.920561" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(0%, 74.901961%, 49.019608%)" stroke-opacity="1" stroke-miterlimit="10" d="M 63.261719 525.527344 L 63.261719 24.40625 "/>
</g>
<g clip-path="url(#clip-18)">
<path fill="none" stroke-width="1.920561" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(0%, 69.019608%, 96.470588%)" stroke-opacity="1" stroke-dasharray="7.682244 7.682244" stroke-miterlimit="10" d="M 83.460938 525.527344 L 83.460938 24.40625 "/>
</g>
<g clip-path="url(#clip-19)">
<path fill="none" stroke-width="1.920561" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(90.588235%, 41.960784%, 95.294118%)" stroke-opacity="1" stroke-dasharray="7.682244 7.682244" stroke-miterlimit="10" d="M 397.867188 525.527344 L 397.867188 24.40625 "/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="20.054688" y="491.214844"/>
<use xlink:href="#glyph-0-1" x="24.948828" y="491.214844"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="20.054688" y="339.359375"/>
<use xlink:href="#glyph-0-1" x="24.948828" y="339.359375"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="20.054688" y="187.503906"/>
<use xlink:href="#glyph-0-1" x="24.948828" y="187.503906"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="20.054688" y="35.648438"/>
<use xlink:href="#glyph-0-1" x="24.948828" y="35.648438"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="60.816406" y="537.757812"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-6" x="223.609375" y="537.757812"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="386.398438" y="537.757812"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="546.742188" y="537.757812"/>
<use xlink:href="#glyph-0-1" x="551.636328" y="537.757812"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="329.796875" y="551.074219"/>
<use xlink:href="#glyph-1-1" x="335.914551" y="551.074219"/>
<use xlink:href="#glyph-1-2" x="342.032227" y="551.074219"/>
<use xlink:href="#glyph-1-3" x="348.149902" y="551.074219"/>
<use xlink:href="#glyph-1-4" x="354.267578" y="551.074219"/>
<use xlink:href="#glyph-1-1" x="360.385254" y="551.074219"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="14.351562" y="321.429688"/>
<use xlink:href="#glyph-2-1" x="14.351562" y="314.092773"/>
<use xlink:href="#glyph-2-2" x="14.351562" y="307.975098"/>
<use xlink:href="#glyph-2-1" x="14.351563" y="298.812012"/>
<use xlink:href="#glyph-2-3" x="14.351563" y="292.694336"/>
<use xlink:href="#glyph-2-4" x="14.351563" y="290.250488"/>
<use xlink:href="#glyph-2-5" x="14.351563" y="284.132812"/>
<use xlink:href="#glyph-2-6" x="14.351563" y="281.07666"/>
<use xlink:href="#glyph-2-7" x="14.351563" y="278.632812"/>
<use xlink:href="#glyph-2-8" x="14.351563" y="273.132812"/>
<use xlink:href="#glyph-2-9" x="14.351563" y="270.07666"/>
<use xlink:href="#glyph-2-10" x="14.351563" y="267.020508"/>
<use xlink:href="#glyph-2-11" x="14.351563" y="263.357422"/>
<use xlink:href="#glyph-2-12" x="14.351563" y="257.239746"/>
<use xlink:href="#glyph-2-7" x="14.351563" y="251.739746"/>
<use xlink:href="#glyph-2-11" x="14.351563" y="246.239746"/>
<use xlink:href="#glyph-2-13" x="14.351563" y="240.12207"/>
<use xlink:href="#glyph-2-14" x="14.351563" y="234.004395"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="162.425781" y="582.839844"/>
<use xlink:href="#glyph-1-5" x="168.543457" y="582.839844"/>
<use xlink:href="#glyph-1-2" x="170.987305" y="582.839844"/>
<use xlink:href="#glyph-1-6" x="177.10498" y="582.839844"/>
<use xlink:href="#glyph-1-1" x="179.548828" y="582.839844"/>
<use xlink:href="#glyph-1-7" x="185.666504" y="582.839844"/>
</g>
<path fill="none" stroke-width="1.920561" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(97.254902%, 46.27451%, 42.745098%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.792969 587.042969 L 202.792969 569.761719 "/>
<path fill="none" stroke-width="1.920561" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(63.921569%, 64.705882%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 273.035156 587.042969 L 273.035156 569.761719 "/>
<path fill="none" stroke-width="1.920561" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(0%, 74.901961%, 49.019608%)" stroke-opacity="1" stroke-miterlimit="10" d="M 359.773438 587.042969 L 359.773438 569.761719 "/>
<path fill="none" stroke-width="1.920561" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(0%, 69.019608%, 96.470588%)" stroke-opacity="1" stroke-dasharray="7.682244 7.682244" stroke-miterlimit="10" d="M 454.011719 587.042969 L 454.011719 569.761719 "/>
<path fill="none" stroke-width="1.920561" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(90.588235%, 41.960784%, 95.294118%)" stroke-opacity="1" stroke-dasharray="7.682244 7.682244" stroke-miterlimit="10" d="M 501 587.042969 L 501 569.761719 "/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="216.914062" y="582.050781"/>
<use xlink:href="#glyph-0-9" x="224.244531" y="582.050781"/>
<use xlink:href="#glyph-0-10" x="229.138672" y="582.050781"/>
<use xlink:href="#glyph-0-11" x="234.032813" y="582.050781"/>
<use xlink:href="#glyph-0-12" x="235.987891" y="582.050781"/>
<use xlink:href="#glyph-0-13" x="240.882031" y="582.050781"/>
<use xlink:href="#glyph-0-14" x="245.776172" y="582.050781"/>
<use xlink:href="#glyph-0-15" x="248.221094" y="582.050781"/>
<use xlink:href="#glyph-0-16" x="251.151563" y="582.050781"/>
<use xlink:href="#glyph-0-17" x="255.551563" y="582.050781"/>
<use xlink:href="#glyph-0-18" x="255.551563" y="582.050781"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="287.152344" y="582.050781"/>
<use xlink:href="#glyph-0-11" x="294.482813" y="582.050781"/>
<use xlink:href="#glyph-0-10" x="296.437891" y="582.050781"/>
<use xlink:href="#glyph-0-10" x="301.332031" y="582.050781"/>
<use xlink:href="#glyph-0-9" x="306.226172" y="582.050781"/>
<use xlink:href="#glyph-0-19" x="311.120312" y="582.050781"/>
<use xlink:href="#glyph-0-20" x="313.075391" y="582.050781"/>
<use xlink:href="#glyph-0-9" x="317.475391" y="582.050781"/>
<use xlink:href="#glyph-0-21" x="322.369531" y="582.050781"/>
<use xlink:href="#glyph-0-10" x="325.3" y="582.050781"/>
<use xlink:href="#glyph-0-11" x="330.194141" y="582.050781"/>
<use xlink:href="#glyph-0-14" x="332.149219" y="582.050781"/>
<use xlink:href="#glyph-0-15" x="334.594141" y="582.050781"/>
<use xlink:href="#glyph-0-16" x="337.524609" y="582.050781"/>
<use xlink:href="#glyph-0-22" x="341.924609" y="582.050781"/>
<use xlink:href="#glyph-0-18" x="341.924609" y="582.050781"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-23" x="373.890625" y="582.050781"/>
<use xlink:href="#glyph-0-24" x="379.266016" y="582.050781"/>
<use xlink:href="#glyph-0-25" x="383.666016" y="582.050781"/>
<use xlink:href="#glyph-0-9" x="388.560156" y="582.050781"/>
<use xlink:href="#glyph-0-26" x="393.454297" y="582.050781"/>
<use xlink:href="#glyph-0-12" x="395.899219" y="582.050781"/>
<use xlink:href="#glyph-0-19" x="400.793359" y="582.050781"/>
<use xlink:href="#glyph-0-19" x="402.748437" y="582.050781"/>
<use xlink:href="#glyph-0-14" x="404.703516" y="582.050781"/>
<use xlink:href="#glyph-0-15" x="407.148437" y="582.050781"/>
<use xlink:href="#glyph-0-16" x="410.078906" y="582.050781"/>
<use xlink:href="#glyph-0-27" x="414.478906" y="582.050781"/>
<use xlink:href="#glyph-0-28" x="419.373047" y="582.050781"/>
<use xlink:href="#glyph-0-12" x="426.703516" y="582.050781"/>
<use xlink:href="#glyph-0-16" x="431.597656" y="582.050781"/>
<use xlink:href="#glyph-0-18" x="435.997656" y="582.050781"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-16" x="468.132812" y="582.050781"/>
<use xlink:href="#glyph-0-22" x="472.532812" y="582.050781"/>
<use xlink:href="#glyph-0-14" x="472.532812" y="582.050781"/>
<use xlink:href="#glyph-0-29" x="474.977734" y="582.050781"/>
<use xlink:href="#glyph-0-14" x="480.116797" y="582.050781"/>
<use xlink:href="#glyph-0-30" x="482.561719" y="582.050781"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-16" x="515.121094" y="582.050781"/>
<use xlink:href="#glyph-0-22" x="519.521094" y="582.050781"/>
<use xlink:href="#glyph-0-14" x="519.521094" y="582.050781"/>
<use xlink:href="#glyph-0-31" x="521.966016" y="582.050781"/>
<use xlink:href="#glyph-0-14" x="527.105078" y="582.050781"/>
<use xlink:href="#glyph-0-30" x="529.55" y="582.050781"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-0" x="34.773438" y="15.929688"/>
<use xlink:href="#glyph-3-1" x="43.577734" y="15.929688"/>
<use xlink:href="#glyph-3-2" x="50.918945" y="15.929688"/>
<use xlink:href="#glyph-3-1" x="61.914648" y="15.929688"/>
<use xlink:href="#glyph-3-3" x="69.255859" y="15.929688"/>
<use xlink:href="#glyph-3-4" x="72.188477" y="15.929688"/>
<use xlink:href="#glyph-3-5" x="79.529687" y="15.929688"/>
<use xlink:href="#glyph-3-6" x="83.19707" y="15.929688"/>
<use xlink:href="#glyph-3-7" x="86.129687" y="15.929688"/>
<use xlink:href="#glyph-3-5" x="92.729687" y="15.929688"/>
<use xlink:href="#glyph-3-8" x="96.39707" y="15.929688"/>
<use xlink:href="#glyph-3-9" x="100.064453" y="15.929688"/>
<use xlink:href="#glyph-3-10" x="103.731836" y="15.929688"/>
<use xlink:href="#glyph-3-11" x="108.127539" y="15.929688"/>
<use xlink:href="#glyph-3-12" x="115.46875" y="15.929688"/>
<use xlink:href="#glyph-3-7" x="122.06875" y="15.929688"/>
<use xlink:href="#glyph-3-11" x="128.66875" y="15.929688"/>
<use xlink:href="#glyph-3-13" x="136.009961" y="15.929688"/>
<use xlink:href="#glyph-3-14" x="143.351172" y="15.929688"/>
<use xlink:href="#glyph-3-15" x="149.951172" y="15.929688"/>
<use xlink:href="#glyph-3-6" x="157.292383" y="15.929688"/>
<use xlink:href="#glyph-3-4" x="160.225" y="15.929688"/>
<use xlink:href="#glyph-3-16" x="167.566211" y="15.929688"/>
<use xlink:href="#glyph-3-10" x="174.907422" y="15.929688"/>
<use xlink:href="#glyph-3-4" x="179.303125" y="15.929688"/>
<use xlink:href="#glyph-3-2" x="186.644336" y="15.929688"/>
<use xlink:href="#glyph-3-8" x="197.640039" y="15.929688"/>
<use xlink:href="#glyph-3-17" x="201.307422" y="15.929688"/>
<use xlink:href="#glyph-3-8" x="205.703125" y="15.929688"/>
<use xlink:href="#glyph-3-18" x="209.370508" y="15.929688"/>
<use xlink:href="#glyph-3-4" x="216.711719" y="15.929688"/>
<use xlink:href="#glyph-3-19" x="224.05293" y="15.929688"/>
<use xlink:href="#glyph-3-4" x="231.394141" y="15.929688"/>
<use xlink:href="#glyph-3-13" x="238.735352" y="15.929688"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 75 KiB

411
Oblig1/kum_coop.svg Normal file
View File

@@ -0,0 +1,411 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="667pt" height="598pt" viewBox="0 0 667 598">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 0.367188 -3.105469 C 0.367188 -3.851562 0.441406 -4.449219 0.59375 -4.90625 C 0.75 -5.359375 0.976562 -5.710938 1.277344 -5.957031 C 1.582031 -6.203125 1.960938 -6.324219 2.417969 -6.324219 C 2.757812 -6.324219 3.054688 -6.257812 3.308594 -6.121094 C 3.5625 -5.984375 3.773438 -5.789062 3.941406 -5.53125 C 4.105469 -5.277344 4.238281 -4.964844 4.332031 -4.59375 C 4.425781 -4.226562 4.472656 -3.730469 4.472656 -3.105469 C 4.472656 -2.367188 4.398438 -1.769531 4.246094 -1.316406 C 4.09375 -0.863281 3.867188 -0.511719 3.5625 -0.265625 C 3.261719 -0.015625 2.878906 0.109375 2.417969 0.109375 C 1.8125 0.109375 1.335938 -0.109375 0.988281 -0.546875 C 0.574219 -1.070312 0.367188 -1.921875 0.367188 -3.105469 M 1.160156 -3.105469 C 1.160156 -2.074219 1.28125 -1.382812 1.523438 -1.042969 C 1.765625 -0.699219 2.0625 -0.527344 2.417969 -0.527344 C 2.773438 -0.527344 3.074219 -0.699219 3.316406 -1.042969 C 3.558594 -1.386719 3.679688 -2.074219 3.679688 -3.105469 C 3.679688 -4.144531 3.558594 -4.832031 3.316406 -5.171875 C 3.074219 -5.515625 2.773438 -5.683594 2.410156 -5.683594 C 2.054688 -5.683594 1.773438 -5.535156 1.558594 -5.234375 C 1.292969 -4.851562 1.160156 -4.140625 1.160156 -3.105469 Z M 1.160156 -3.105469 "/>
</g>
<g id="glyph-0-1">
<path d="M 3.277344 0 L 2.503906 0 L 2.503906 -4.929688 C 2.320312 -4.75 2.074219 -4.574219 1.773438 -4.394531 C 1.46875 -4.21875 1.199219 -4.085938 0.957031 -3.996094 L 0.957031 -4.742188 C 1.390625 -4.945312 1.769531 -5.195312 2.09375 -5.484375 C 2.417969 -5.773438 2.644531 -6.054688 2.78125 -6.324219 L 3.277344 -6.324219 Z M 3.277344 0 "/>
</g>
<g id="glyph-0-2">
<path d="M 4.429688 -0.742188 L 4.429688 0 L 0.265625 0 C 0.261719 -0.1875 0.289062 -0.367188 0.355469 -0.539062 C 0.460938 -0.820312 0.632812 -1.101562 0.867188 -1.375 C 1.097656 -1.648438 1.4375 -1.96875 1.878906 -2.328125 C 2.5625 -2.890625 3.023438 -3.335938 3.265625 -3.664062 C 3.507812 -3.992188 3.625 -4.300781 3.625 -4.59375 C 3.625 -4.898438 3.515625 -5.160156 3.296875 -5.367188 C 3.078125 -5.578125 2.792969 -5.683594 2.441406 -5.683594 C 2.066406 -5.683594 1.769531 -5.574219 1.546875 -5.351562 C 1.324219 -5.125 1.210938 -4.816406 1.207031 -4.421875 L 0.414062 -4.503906 C 0.46875 -5.097656 0.671875 -5.546875 1.027344 -5.859375 C 1.382812 -6.167969 1.859375 -6.324219 2.457031 -6.324219 C 3.0625 -6.324219 3.539062 -6.15625 3.894531 -5.824219 C 4.246094 -5.488281 4.421875 -5.070312 4.421875 -4.578125 C 4.421875 -4.324219 4.371094 -4.078125 4.265625 -3.832031 C 4.164062 -3.589844 3.992188 -3.332031 3.753906 -3.0625 C 3.515625 -2.792969 3.117188 -2.425781 2.5625 -1.957031 C 2.097656 -1.566406 1.800781 -1.300781 1.667969 -1.164062 C 1.535156 -1.023438 1.425781 -0.882812 1.339844 -0.742188 Z M 4.429688 -0.742188 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.371094 -1.664062 L 1.144531 -1.765625 C 1.230469 -1.328125 1.382812 -1.011719 1.597656 -0.820312 C 1.808594 -0.625 2.070312 -0.527344 2.375 -0.527344 C 2.738281 -0.527344 3.046875 -0.65625 3.296875 -0.90625 C 3.546875 -1.160156 3.671875 -1.472656 3.675781 -1.84375 C 3.671875 -2.199219 3.558594 -2.492188 3.324219 -2.722656 C 3.09375 -2.953125 2.796875 -3.066406 2.441406 -3.066406 C 2.292969 -3.066406 2.113281 -3.039062 1.894531 -2.980469 L 1.980469 -3.660156 C 2.03125 -3.65625 2.074219 -3.652344 2.105469 -3.652344 C 2.433594 -3.652344 2.730469 -3.738281 2.996094 -3.910156 C 3.257812 -4.082031 3.390625 -4.347656 3.390625 -4.703125 C 3.390625 -4.988281 3.292969 -5.222656 3.101562 -5.410156 C 2.910156 -5.597656 2.664062 -5.6875 2.359375 -5.6875 C 2.058594 -5.6875 1.808594 -5.59375 1.605469 -5.40625 C 1.40625 -5.214844 1.277344 -4.933594 1.21875 -4.554688 L 0.445312 -4.691406 C 0.542969 -5.210938 0.757812 -5.613281 1.089844 -5.898438 C 1.425781 -6.183594 1.84375 -6.324219 2.34375 -6.324219 C 2.6875 -6.324219 3.003906 -6.25 3.292969 -6.105469 C 3.582031 -5.957031 3.800781 -5.753906 3.957031 -5.5 C 4.109375 -5.246094 4.183594 -4.972656 4.183594 -4.6875 C 4.183594 -4.414062 4.113281 -4.167969 3.964844 -3.945312 C 3.820312 -3.722656 3.605469 -3.542969 3.316406 -3.410156 C 3.691406 -3.324219 3.980469 -3.148438 4.183594 -2.875 C 4.390625 -2.605469 4.496094 -2.265625 4.496094 -1.859375 C 4.496094 -1.3125 4.292969 -0.84375 3.894531 -0.460938 C 3.492188 -0.078125 2.984375 0.113281 2.371094 0.113281 C 1.820312 0.113281 1.359375 -0.0546875 0.996094 -0.382812 C 0.628906 -0.710938 0.421875 -1.140625 0.371094 -1.664062 Z M 0.371094 -1.664062 "/>
</g>
<g id="glyph-0-4">
<path d="M 2.84375 0 L 2.84375 -1.507812 L 0.113281 -1.507812 L 0.113281 -2.21875 L 2.988281 -6.300781 L 3.617188 -6.300781 L 3.617188 -2.21875 L 4.46875 -2.21875 L 4.46875 -1.507812 L 3.617188 -1.507812 L 3.617188 0 L 2.84375 0 M 2.84375 -2.21875 L 2.84375 -5.058594 L 0.871094 -2.21875 Z M 2.84375 -2.21875 "/>
</g>
<g id="glyph-1-0">
<path d="M 0.492188 -2.53125 L 1.476562 -2.617188 C 1.523438 -2.222656 1.632812 -1.898438 1.800781 -1.644531 C 1.972656 -1.394531 2.234375 -1.191406 2.59375 -1.035156 C 2.953125 -0.878906 3.355469 -0.800781 3.804688 -0.800781 C 4.199219 -0.800781 4.550781 -0.859375 4.855469 -0.976562 C 5.160156 -1.09375 5.386719 -1.257812 5.535156 -1.464844 C 5.683594 -1.667969 5.757812 -1.894531 5.757812 -2.136719 C 5.757812 -2.382812 5.6875 -2.601562 5.542969 -2.785156 C 5.398438 -2.96875 5.164062 -3.125 4.835938 -3.25 C 4.621094 -3.332031 4.15625 -3.460938 3.433594 -3.632812 C 2.707031 -3.808594 2.203125 -3.972656 1.914062 -4.125 C 1.535156 -4.320312 1.257812 -4.566406 1.070312 -4.859375 C 0.886719 -5.148438 0.796875 -5.476562 0.796875 -5.839844 C 0.796875 -6.234375 0.90625 -6.605469 1.132812 -6.953125 C 1.359375 -7.296875 1.6875 -7.5625 2.121094 -7.738281 C 2.554688 -7.917969 3.035156 -8.007812 3.566406 -8.007812 C 4.148438 -8.007812 4.664062 -7.914062 5.109375 -7.726562 C 5.554688 -7.539062 5.898438 -7.261719 6.140625 -6.898438 C 6.378906 -6.53125 6.507812 -6.117188 6.527344 -5.65625 L 5.527344 -5.582031 C 5.472656 -6.078125 5.292969 -6.453125 4.980469 -6.707031 C 4.671875 -6.960938 4.214844 -7.089844 3.609375 -7.089844 C 2.980469 -7.089844 2.519531 -6.972656 2.230469 -6.742188 C 1.945312 -6.511719 1.800781 -6.234375 1.800781 -5.90625 C 1.800781 -5.625 1.902344 -5.390625 2.105469 -5.210938 C 2.304688 -5.027344 2.828125 -4.839844 3.675781 -4.648438 C 4.523438 -4.457031 5.105469 -4.289062 5.417969 -4.148438 C 5.878906 -3.933594 6.214844 -3.667969 6.433594 -3.34375 C 6.652344 -3.019531 6.761719 -2.644531 6.761719 -2.222656 C 6.761719 -1.804688 6.640625 -1.410156 6.402344 -1.039062 C 6.164062 -0.667969 5.816406 -0.378906 5.367188 -0.175781 C 4.917969 0.03125 4.414062 0.132812 3.851562 0.132812 C 3.136719 0.132812 2.542969 0.03125 2.058594 -0.175781 C 1.578125 -0.386719 1.199219 -0.699219 0.925781 -1.113281 C 0.652344 -1.53125 0.507812 -2.003906 0.492188 -2.53125 Z M 0.492188 -2.53125 "/>
</g>
<g id="glyph-1-1">
<path d="M 2.835938 -0.863281 L 2.976562 -0.0117188 C 2.703125 0.046875 2.460938 0.0742188 2.246094 0.0742188 C 1.894531 0.0742188 1.621094 0.0195312 1.429688 -0.0898438 C 1.234375 -0.203125 1.097656 -0.347656 1.019531 -0.527344 C 0.941406 -0.710938 0.902344 -1.089844 0.902344 -1.671875 L 0.902344 -4.953125 L 0.195312 -4.953125 L 0.195312 -5.703125 L 0.902344 -5.703125 L 0.902344 -7.117188 L 1.863281 -7.695312 L 1.863281 -5.703125 L 2.835938 -5.703125 L 2.835938 -4.953125 L 1.863281 -4.953125 L 1.863281 -1.617188 C 1.863281 -1.339844 1.878906 -1.164062 1.914062 -1.085938 C 1.949219 -1.007812 2.003906 -0.945312 2.082031 -0.898438 C 2.160156 -0.851562 2.269531 -0.828125 2.410156 -0.828125 C 2.519531 -0.828125 2.660156 -0.839844 2.835938 -0.863281 Z M 2.835938 -0.863281 "/>
</g>
<g id="glyph-1-2">
<path d="M 0.714844 0 L 0.714844 -5.703125 L 1.585938 -5.703125 L 1.585938 -4.839844 C 1.804688 -5.242188 2.011719 -5.511719 2.199219 -5.640625 C 2.386719 -5.769531 2.59375 -5.832031 2.820312 -5.832031 C 3.144531 -5.832031 3.476562 -5.730469 3.8125 -5.523438 L 3.480469 -4.625 C 3.242188 -4.765625 3.007812 -4.832031 2.773438 -4.835938 C 2.558594 -4.832031 2.371094 -4.769531 2.203125 -4.644531 C 2.035156 -4.515625 1.914062 -4.339844 1.84375 -4.113281 C 1.734375 -3.769531 1.679688 -3.394531 1.679688 -2.984375 L 1.679688 0 Z M 0.714844 0 "/>
</g>
<g id="glyph-1-3">
<path d="M 4.628906 -1.835938 L 5.628906 -1.714844 C 5.472656 -1.128906 5.179688 -0.675781 4.753906 -0.355469 C 4.328125 -0.03125 3.78125 0.128906 3.121094 0.128906 C 2.285156 0.128906 1.625 -0.128906 1.136719 -0.640625 C 0.648438 -1.15625 0.402344 -1.875 0.402344 -2.804688 C 0.402344 -3.761719 0.648438 -4.507812 1.144531 -5.039062 C 1.636719 -5.566406 2.277344 -5.832031 3.066406 -5.832031 C 3.828125 -5.832031 4.453125 -5.574219 4.9375 -5.054688 C 5.417969 -4.535156 5.660156 -3.804688 5.660156 -2.863281 C 5.660156 -2.804688 5.660156 -2.71875 5.65625 -2.605469 L 1.402344 -2.605469 C 1.4375 -1.976562 1.613281 -1.5 1.933594 -1.164062 C 2.253906 -0.832031 2.648438 -0.664062 3.125 -0.664062 C 3.480469 -0.664062 3.78125 -0.757812 4.035156 -0.945312 C 4.285156 -1.132812 4.484375 -1.429688 4.628906 -1.835938 M 1.457031 -3.398438 L 4.640625 -3.398438 C 4.597656 -3.878906 4.476562 -4.238281 4.273438 -4.480469 C 3.96875 -4.851562 3.566406 -5.039062 3.078125 -5.039062 C 2.632812 -5.039062 2.261719 -4.890625 1.957031 -4.59375 C 1.65625 -4.296875 1.488281 -3.898438 1.457031 -3.398438 Z M 1.457031 -3.398438 "/>
</g>
<g id="glyph-1-4">
<path d="M 0.730469 0 L 0.730469 -7.875 L 1.695312 -7.875 L 1.695312 -3.382812 L 3.984375 -5.703125 L 5.238281 -5.703125 L 3.054688 -3.585938 L 5.457031 0 L 4.265625 0 L 2.378906 -2.917969 L 1.695312 -2.261719 L 1.695312 0 Z M 0.730469 0 "/>
</g>
<g id="glyph-1-5">
<path d="M 4.425781 0 L 4.425781 -0.71875 C 4.0625 -0.152344 3.53125 0.128906 2.832031 0.128906 C 2.375 0.128906 1.957031 0.00390625 1.578125 -0.246094 C 1.195312 -0.496094 0.898438 -0.847656 0.691406 -1.296875 C 0.480469 -1.746094 0.375 -2.261719 0.375 -2.847656 C 0.375 -3.414062 0.472656 -3.933594 0.660156 -4.394531 C 0.851562 -4.859375 1.136719 -5.214844 1.515625 -5.460938 C 1.894531 -5.710938 2.320312 -5.832031 2.789062 -5.832031 C 3.132812 -5.832031 3.4375 -5.761719 3.707031 -5.617188 C 3.976562 -5.46875 4.191406 -5.28125 4.359375 -5.046875 L 4.359375 -7.875 L 5.324219 -7.875 L 5.324219 0 L 4.425781 0 M 1.371094 -2.847656 C 1.371094 -2.117188 1.523438 -1.570312 1.832031 -1.207031 C 2.140625 -0.847656 2.503906 -0.664062 2.921875 -0.664062 C 3.34375 -0.664062 3.703125 -0.839844 4 -1.183594 C 4.292969 -1.53125 4.441406 -2.058594 4.441406 -2.765625 C 4.441406 -3.546875 4.292969 -4.121094 3.992188 -4.484375 C 3.691406 -4.851562 3.320312 -5.03125 2.878906 -5.03125 C 2.449219 -5.03125 2.089844 -4.855469 1.800781 -4.507812 C 1.515625 -4.15625 1.371094 -3.601562 1.371094 -2.847656 Z M 1.371094 -2.847656 "/>
</g>
<g id="glyph-1-6">
<path d="M 0.730469 -6.761719 L 0.730469 -7.875 L 1.695312 -7.875 L 1.695312 -6.761719 L 0.730469 -6.761719 M 0.730469 0 L 0.730469 -5.703125 L 1.695312 -5.703125 L 1.695312 0 Z M 0.730469 0 "/>
</g>
<g id="glyph-1-7">
<path d="M 0.957031 0 L 0.957031 -4.953125 L 0.101562 -4.953125 L 0.101562 -5.703125 L 0.957031 -5.703125 L 0.957031 -6.3125 C 0.957031 -6.695312 0.988281 -6.980469 1.058594 -7.164062 C 1.152344 -7.414062 1.316406 -7.617188 1.550781 -7.773438 C 1.785156 -7.929688 2.113281 -8.007812 2.535156 -8.007812 C 2.808594 -8.007812 3.109375 -7.976562 3.4375 -7.910156 L 3.292969 -7.070312 C 3.09375 -7.105469 2.902344 -7.121094 2.722656 -7.121094 C 2.429688 -7.121094 2.222656 -7.058594 2.101562 -6.933594 C 1.976562 -6.808594 1.917969 -6.574219 1.917969 -6.230469 L 1.917969 -5.703125 L 3.03125 -5.703125 L 3.03125 -4.953125 L 1.917969 -4.953125 L 1.917969 0 Z M 0.957031 0 "/>
</g>
<g id="glyph-1-8">
<path d="M 4.445312 -0.703125 C 4.089844 -0.398438 3.746094 -0.183594 3.414062 -0.0585938 C 3.082031 0.0664062 2.726562 0.128906 2.347656 0.128906 C 1.71875 0.128906 1.238281 -0.0234375 0.902344 -0.332031 C 0.566406 -0.636719 0.398438 -1.027344 0.398438 -1.503906 C 0.398438 -1.78125 0.460938 -2.039062 0.589844 -2.269531 C 0.714844 -2.5 0.882812 -2.6875 1.085938 -2.824219 C 1.292969 -2.964844 1.523438 -3.070312 1.78125 -3.140625 C 1.972656 -3.191406 2.257812 -3.242188 2.640625 -3.289062 C 3.421875 -3.378906 3.996094 -3.492188 4.367188 -3.621094 C 4.371094 -3.753906 4.371094 -3.835938 4.371094 -3.871094 C 4.371094 -4.265625 4.28125 -4.542969 4.097656 -4.703125 C 3.851562 -4.921875 3.484375 -5.03125 2.996094 -5.03125 C 2.542969 -5.03125 2.207031 -4.953125 1.988281 -4.792969 C 1.773438 -4.632812 1.613281 -4.351562 1.507812 -3.949219 L 0.5625 -4.078125 C 0.648438 -4.480469 0.792969 -4.808594 0.988281 -5.058594 C 1.183594 -5.304688 1.46875 -5.496094 1.84375 -5.632812 C 2.214844 -5.765625 2.644531 -5.832031 3.136719 -5.832031 C 3.625 -5.832031 4.019531 -5.777344 4.324219 -5.660156 C 4.628906 -5.546875 4.851562 -5.402344 4.996094 -5.230469 C 5.136719 -5.054688 5.238281 -4.835938 5.296875 -4.570312 C 5.328125 -4.40625 5.34375 -4.109375 5.34375 -3.679688 L 5.34375 -2.390625 C 5.34375 -1.492188 5.363281 -0.921875 5.40625 -0.683594 C 5.445312 -0.445312 5.527344 -0.21875 5.648438 0 L 4.640625 0 C 4.539062 -0.199219 4.476562 -0.433594 4.445312 -0.703125 M 4.367188 -2.863281 C 4.015625 -2.71875 3.488281 -2.597656 2.789062 -2.496094 C 2.390625 -2.441406 2.109375 -2.375 1.945312 -2.304688 C 1.78125 -2.234375 1.652344 -2.128906 1.5625 -1.988281 C 1.472656 -1.851562 1.429688 -1.699219 1.429688 -1.53125 C 1.429688 -1.273438 1.527344 -1.058594 1.722656 -0.886719 C 1.917969 -0.714844 2.203125 -0.628906 2.578125 -0.628906 C 2.949219 -0.628906 3.28125 -0.710938 3.570312 -0.871094 C 3.863281 -1.035156 4.074219 -1.257812 4.210938 -1.542969 C 4.316406 -1.761719 4.367188 -2.082031 4.367188 -2.507812 Z M 4.367188 -2.863281 "/>
</g>
<g id="glyph-1-9">
<path d="M 0.726562 0 L 0.726562 -5.703125 L 1.59375 -5.703125 L 1.59375 -4.894531 C 2.015625 -5.519531 2.621094 -5.832031 3.410156 -5.832031 C 3.753906 -5.832031 4.070312 -5.769531 4.359375 -5.648438 C 4.648438 -5.523438 4.863281 -5.363281 5.007812 -5.160156 C 5.148438 -4.960938 5.25 -4.722656 5.304688 -4.445312 C 5.34375 -4.269531 5.359375 -3.953125 5.359375 -3.507812 L 5.359375 0 L 4.394531 0 L 4.394531 -3.46875 C 4.394531 -3.863281 4.355469 -4.15625 4.28125 -4.351562 C 4.207031 -4.546875 4.070312 -4.703125 3.878906 -4.820312 C 3.6875 -4.9375 3.464844 -4.996094 3.207031 -4.996094 C 2.792969 -4.996094 2.4375 -4.863281 2.140625 -4.601562 C 1.839844 -4.339844 1.691406 -3.84375 1.691406 -3.117188 L 1.691406 0 Z M 0.726562 0 "/>
</g>
<g id="glyph-1-10">
<path d="M 4.445312 -2.089844 L 5.398438 -1.964844 C 5.292969 -1.3125 5.027344 -0.796875 4.601562 -0.425781 C 4.171875 -0.0546875 3.648438 0.128906 3.023438 0.128906 C 2.242188 0.128906 1.617188 -0.125 1.140625 -0.636719 C 0.667969 -1.148438 0.429688 -1.878906 0.429688 -2.832031 C 0.429688 -3.445312 0.53125 -3.984375 0.734375 -4.445312 C 0.941406 -4.910156 1.25 -5.253906 1.667969 -5.488281 C 2.085938 -5.71875 2.539062 -5.832031 3.03125 -5.832031 C 3.648438 -5.832031 4.15625 -5.675781 4.550781 -5.363281 C 4.941406 -5.050781 5.195312 -4.605469 5.304688 -4.027344 L 4.367188 -3.882812 C 4.277344 -4.265625 4.117188 -4.554688 3.890625 -4.75 C 3.664062 -4.941406 3.390625 -5.039062 3.066406 -5.039062 C 2.578125 -5.039062 2.183594 -4.863281 1.878906 -4.515625 C 1.574219 -4.164062 1.421875 -3.613281 1.421875 -2.859375 C 1.421875 -2.089844 1.570312 -1.535156 1.863281 -1.1875 C 2.15625 -0.839844 2.539062 -0.664062 3.011719 -0.664062 C 3.394531 -0.664062 3.710938 -0.78125 3.964844 -1.015625 C 4.21875 -1.246094 4.378906 -1.605469 4.445312 -2.089844 Z M 4.445312 -2.089844 "/>
</g>
<g id="glyph-1-11">
</g>
<g id="glyph-1-12">
<path d="M 2.574219 2.316406 C 2.039062 1.640625 1.589844 0.855469 1.21875 -0.046875 C 0.851562 -0.949219 0.664062 -1.886719 0.664062 -2.851562 C 0.664062 -3.703125 0.804688 -4.519531 1.078125 -5.300781 C 1.402344 -6.207031 1.898438 -7.109375 2.574219 -8.007812 L 3.265625 -8.007812 C 2.832031 -7.261719 2.546875 -6.730469 2.40625 -6.414062 C 2.1875 -5.917969 2.015625 -5.402344 1.890625 -4.867188 C 1.738281 -4.195312 1.660156 -3.523438 1.660156 -2.847656 C 1.660156 -1.125 2.195312 0.597656 3.265625 2.316406 Z M 2.574219 2.316406 "/>
</g>
<g id="glyph-1-13">
<path d="M 0.726562 0 L 0.726562 -5.703125 L 1.589844 -5.703125 L 1.589844 -4.902344 C 1.769531 -5.183594 2.007812 -5.40625 2.304688 -5.578125 C 2.601562 -5.746094 2.941406 -5.832031 3.320312 -5.832031 C 3.742188 -5.832031 4.089844 -5.746094 4.359375 -5.570312 C 4.628906 -5.394531 4.820312 -5.148438 4.929688 -4.835938 C 5.382812 -5.5 5.96875 -5.832031 6.691406 -5.832031 C 7.257812 -5.832031 7.691406 -5.675781 7.996094 -5.363281 C 8.300781 -5.050781 8.453125 -4.566406 8.453125 -3.914062 L 8.453125 0 L 7.492188 0 L 7.492188 -3.59375 C 7.492188 -3.980469 7.460938 -4.257812 7.398438 -4.429688 C 7.335938 -4.597656 7.222656 -4.734375 7.058594 -4.839844 C 6.894531 -4.941406 6.699219 -4.996094 6.476562 -4.996094 C 6.078125 -4.996094 5.742188 -4.863281 5.476562 -4.59375 C 5.214844 -4.328125 5.082031 -3.902344 5.082031 -3.3125 L 5.082031 0 L 4.113281 0 L 4.113281 -3.707031 C 4.113281 -4.136719 4.035156 -4.457031 3.878906 -4.671875 C 3.71875 -4.886719 3.460938 -4.996094 3.105469 -4.996094 C 2.832031 -4.996094 2.582031 -4.921875 2.351562 -4.78125 C 2.117188 -4.636719 1.953125 -4.425781 1.847656 -4.152344 C 1.742188 -3.875 1.691406 -3.480469 1.691406 -2.960938 L 1.691406 0 Z M 0.726562 0 "/>
</g>
<g id="glyph-1-14">
<path d="M 1.359375 2.316406 L 0.664062 2.316406 C 1.738281 0.597656 2.273438 -1.125 2.273438 -2.847656 C 2.273438 -3.519531 2.195312 -4.1875 2.039062 -4.851562 C 1.917969 -5.386719 1.75 -5.902344 1.53125 -6.398438 C 1.390625 -6.71875 1.101562 -7.257812 0.664062 -8.007812 L 1.359375 -8.007812 C 2.03125 -7.109375 2.53125 -6.207031 2.851562 -5.300781 C 3.128906 -4.519531 3.265625 -3.703125 3.265625 -2.851562 C 3.265625 -1.886719 3.082031 -0.949219 2.710938 -0.046875 C 2.339844 0.855469 1.890625 1.640625 1.359375 2.316406 Z M 1.359375 2.316406 "/>
</g>
<g id="glyph-2-0">
<path d="M 0 -0.804688 L -7.875 -0.804688 L -7.875 -1.847656 L -3.96875 -1.847656 L -7.875 -5.757812 L -7.875 -7.171875 L -4.683594 -3.867188 L 0 -7.316406 L 0 -5.941406 L -3.984375 -3.136719 L -2.726562 -1.847656 L 0 -1.847656 Z M 0 -0.804688 "/>
</g>
<g id="glyph-2-1">
<path d="M 0 -4.464844 L -0.835938 -4.464844 C -0.191406 -4.019531 0.128906 -3.414062 0.128906 -2.652344 C 0.128906 -2.316406 0.0625 -2.003906 -0.0625 -1.710938 C -0.191406 -1.417969 -0.355469 -1.203125 -0.550781 -1.0625 C -0.746094 -0.917969 -0.984375 -0.820312 -1.265625 -0.761719 C -1.457031 -0.722656 -1.757812 -0.703125 -2.171875 -0.703125 L -5.703125 -0.703125 L -5.703125 -1.671875 L -2.539062 -1.671875 C -2.035156 -1.671875 -1.695312 -1.691406 -1.519531 -1.730469 C -1.265625 -1.789062 -1.066406 -1.917969 -0.921875 -2.117188 C -0.777344 -2.3125 -0.703125 -2.554688 -0.703125 -2.847656 C -0.703125 -3.136719 -0.777344 -3.410156 -0.925781 -3.664062 C -1.074219 -3.917969 -1.277344 -4.097656 -1.535156 -4.203125 C -1.789062 -4.308594 -2.160156 -4.359375 -2.648438 -4.359375 L -5.703125 -4.359375 L -5.703125 -5.328125 L 0 -5.328125 Z M 0 -4.464844 "/>
</g>
<g id="glyph-2-2">
<path d="M 0 -0.726562 L -5.703125 -0.726562 L -5.703125 -1.589844 L -4.902344 -1.589844 C -5.183594 -1.769531 -5.40625 -2.007812 -5.578125 -2.304688 C -5.746094 -2.601562 -5.832031 -2.941406 -5.832031 -3.320312 C -5.832031 -3.742188 -5.746094 -4.089844 -5.570312 -4.359375 C -5.394531 -4.628906 -5.148438 -4.820312 -4.835938 -4.929688 C -5.5 -5.382812 -5.832031 -5.96875 -5.832031 -6.691406 C -5.832031 -7.257812 -5.675781 -7.691406 -5.363281 -7.996094 C -5.050781 -8.300781 -4.566406 -8.453125 -3.914062 -8.453125 L 0 -8.453125 L 0 -7.492188 L -3.59375 -7.492188 C -3.980469 -7.492188 -4.257812 -7.460938 -4.429688 -7.398438 C -4.597656 -7.335938 -4.734375 -7.222656 -4.839844 -7.058594 C -4.941406 -6.894531 -4.996094 -6.699219 -4.996094 -6.476562 C -4.996094 -6.078125 -4.863281 -5.742188 -4.59375 -5.476562 C -4.328125 -5.214844 -3.902344 -5.082031 -3.3125 -5.082031 L 0 -5.082031 L 0 -4.113281 L -3.707031 -4.113281 C -4.136719 -4.113281 -4.457031 -4.035156 -4.671875 -3.878906 C -4.886719 -3.71875 -4.996094 -3.460938 -4.996094 -3.105469 C -4.996094 -2.832031 -4.921875 -2.582031 -4.78125 -2.351562 C -4.636719 -2.117188 -4.425781 -1.953125 -4.152344 -1.847656 C -3.875 -1.742188 -3.480469 -1.691406 -2.960938 -1.691406 L 0 -1.691406 Z M 0 -0.726562 "/>
</g>
<g id="glyph-2-3">
<path d="M 0 -0.703125 L -7.875 -0.703125 L -7.875 -1.671875 L 0 -1.671875 Z M 0 -0.703125 "/>
</g>
<g id="glyph-2-4">
<path d="M -0.703125 -4.445312 C -0.398438 -4.089844 -0.183594 -3.746094 -0.0585938 -3.414062 C 0.0664062 -3.082031 0.128906 -2.726562 0.128906 -2.347656 C 0.128906 -1.71875 -0.0234375 -1.238281 -0.332031 -0.902344 C -0.636719 -0.566406 -1.027344 -0.398438 -1.503906 -0.398438 C -1.78125 -0.398438 -2.039062 -0.460938 -2.269531 -0.589844 C -2.5 -0.714844 -2.6875 -0.882812 -2.824219 -1.085938 C -2.964844 -1.292969 -3.070312 -1.527344 -3.140625 -1.785156 C -3.191406 -1.972656 -3.242188 -2.257812 -3.289062 -2.640625 C -3.378906 -3.421875 -3.492188 -3.996094 -3.621094 -4.367188 C -3.753906 -4.371094 -3.835938 -4.371094 -3.871094 -4.371094 C -4.265625 -4.371094 -4.542969 -4.28125 -4.703125 -4.097656 C -4.921875 -3.851562 -5.03125 -3.484375 -5.03125 -2.996094 C -5.03125 -2.542969 -4.953125 -2.207031 -4.792969 -1.988281 C -4.632812 -1.773438 -4.351562 -1.613281 -3.949219 -1.507812 L -4.078125 -0.5625 C -4.480469 -0.648438 -4.808594 -0.792969 -5.058594 -0.988281 C -5.304688 -1.183594 -5.496094 -1.46875 -5.632812 -1.84375 C -5.765625 -2.214844 -5.832031 -2.644531 -5.832031 -3.136719 C -5.832031 -3.625 -5.777344 -4.019531 -5.660156 -4.324219 C -5.546875 -4.628906 -5.402344 -4.851562 -5.230469 -4.996094 C -5.054688 -5.136719 -4.835938 -5.238281 -4.570312 -5.296875 C -4.40625 -5.328125 -4.109375 -5.34375 -3.679688 -5.34375 L -2.390625 -5.34375 C -1.492188 -5.34375 -0.921875 -5.363281 -0.683594 -5.40625 C -0.445312 -5.445312 -0.21875 -5.527344 0 -5.648438 L 0 -4.640625 C -0.199219 -4.539062 -0.433594 -4.476562 -0.703125 -4.445312 M -2.863281 -4.367188 C -2.71875 -4.015625 -2.597656 -3.488281 -2.496094 -2.789062 C -2.441406 -2.390625 -2.375 -2.109375 -2.304688 -1.945312 C -2.234375 -1.78125 -2.128906 -1.652344 -1.988281 -1.5625 C -1.851562 -1.472656 -1.699219 -1.429688 -1.53125 -1.429688 C -1.273438 -1.429688 -1.058594 -1.527344 -0.886719 -1.722656 C -0.714844 -1.917969 -0.628906 -2.203125 -0.628906 -2.578125 C -0.628906 -2.949219 -0.710938 -3.28125 -0.871094 -3.570312 C -1.035156 -3.863281 -1.257812 -4.074219 -1.542969 -4.210938 C -1.761719 -4.316406 -2.082031 -4.367188 -2.507812 -4.367188 Z M -2.863281 -4.367188 "/>
</g>
<g id="glyph-2-5">
<path d="M -0.863281 -2.835938 L -0.0117188 -2.976562 C 0.046875 -2.703125 0.0742188 -2.460938 0.0742188 -2.246094 C 0.0742188 -1.894531 0.0195312 -1.621094 -0.0898438 -1.429688 C -0.203125 -1.234375 -0.347656 -1.097656 -0.527344 -1.019531 C -0.710938 -0.941406 -1.089844 -0.902344 -1.671875 -0.902344 L -4.953125 -0.902344 L -4.953125 -0.195312 L -5.703125 -0.195312 L -5.703125 -0.902344 L -7.117188 -0.902344 L -7.695312 -1.863281 L -5.703125 -1.863281 L -5.703125 -2.835938 L -4.953125 -2.835938 L -4.953125 -1.863281 L -1.617188 -1.863281 C -1.339844 -1.863281 -1.164062 -1.878906 -1.085938 -1.914062 C -1.007812 -1.949219 -0.945312 -2.003906 -0.898438 -2.082031 C -0.851562 -2.160156 -0.828125 -2.269531 -0.828125 -2.410156 C -0.828125 -2.519531 -0.839844 -2.660156 -0.863281 -2.835938 Z M -0.863281 -2.835938 "/>
</g>
<g id="glyph-2-6">
<path d="M -6.761719 -0.730469 L -7.875 -0.730469 L -7.875 -1.699219 L -6.761719 -1.699219 L -6.761719 -0.730469 M 0 -0.730469 L -5.703125 -0.730469 L -5.703125 -1.699219 L 0 -1.695312 Z M 0 -0.730469 "/>
</g>
<g id="glyph-2-7">
<path d="M 0 -2.308594 L -5.703125 -0.140625 L -5.703125 -1.160156 L -2.289062 -2.382812 C -1.917969 -2.515625 -1.535156 -2.640625 -1.136719 -2.75 C -1.4375 -2.835938 -1.800781 -2.957031 -2.222656 -3.109375 L -5.703125 -4.378906 L -5.703125 -5.371094 L 0 -3.210938 Z M 0 -2.308594 "/>
</g>
<g id="glyph-2-8">
</g>
<g id="glyph-2-9">
<path d="M 0 -0.957031 L -4.953125 -0.957031 L -4.953125 -0.101562 L -5.703125 -0.101562 L -5.703125 -0.957031 L -6.3125 -0.957031 C -6.695312 -0.957031 -6.980469 -0.988281 -7.164062 -1.058594 C -7.414062 -1.152344 -7.617188 -1.316406 -7.773438 -1.550781 C -7.929688 -1.785156 -8.007812 -2.113281 -8.007812 -2.535156 C -8.007812 -2.808594 -7.976562 -3.109375 -7.910156 -3.4375 L -7.070312 -3.292969 C -7.105469 -3.09375 -7.121094 -2.902344 -7.121094 -2.722656 C -7.121094 -2.429688 -7.058594 -2.222656 -6.933594 -2.101562 C -6.808594 -1.976562 -6.574219 -1.917969 -6.230469 -1.917969 L -5.703125 -1.917969 L -5.703125 -3.03125 L -4.953125 -3.03125 L -4.953125 -1.917969 L 0 -1.917969 Z M 0 -0.957031 "/>
</g>
<g id="glyph-2-10">
<path d="M 0 -0.714844 L -5.703125 -0.714844 L -5.703125 -1.585938 L -4.839844 -1.585938 C -5.242188 -1.804688 -5.511719 -2.011719 -5.640625 -2.199219 C -5.769531 -2.386719 -5.832031 -2.59375 -5.832031 -2.820312 C -5.832031 -3.144531 -5.730469 -3.476562 -5.523438 -3.8125 L -4.625 -3.480469 C -4.765625 -3.246094 -4.832031 -3.007812 -4.835938 -2.773438 C -4.832031 -2.558594 -4.769531 -2.371094 -4.644531 -2.203125 C -4.515625 -2.035156 -4.339844 -1.914062 -4.113281 -1.84375 C -3.769531 -1.734375 -3.394531 -1.679688 -2.984375 -1.679688 L 0 -1.679688 Z M 0 -0.714844 "/>
</g>
<g id="glyph-2-11">
<path d="M -1.835938 -4.628906 L -1.714844 -5.628906 C -1.128906 -5.472656 -0.675781 -5.179688 -0.355469 -4.753906 C -0.03125 -4.328125 0.128906 -3.78125 0.128906 -3.121094 C 0.128906 -2.285156 -0.128906 -1.625 -0.640625 -1.136719 C -1.15625 -0.648438 -1.875 -0.402344 -2.804688 -0.402344 C -3.761719 -0.402344 -4.507812 -0.648438 -5.039062 -1.144531 C -5.566406 -1.636719 -5.832031 -2.277344 -5.832031 -3.066406 C -5.832031 -3.828125 -5.574219 -4.453125 -5.054688 -4.9375 C -4.535156 -5.417969 -3.804688 -5.660156 -2.863281 -5.660156 C -2.804688 -5.660156 -2.71875 -5.660156 -2.605469 -5.65625 L -2.605469 -1.402344 C -1.976562 -1.4375 -1.5 -1.613281 -1.164062 -1.933594 C -0.832031 -2.253906 -0.664062 -2.648438 -0.664062 -3.125 C -0.664062 -3.480469 -0.757812 -3.78125 -0.945312 -4.035156 C -1.132812 -4.285156 -1.429688 -4.484375 -1.835938 -4.628906 M -3.398438 -1.457031 L -3.398438 -4.640625 C -3.878906 -4.597656 -4.238281 -4.476562 -4.480469 -4.273438 C -4.851562 -3.96875 -5.039062 -3.566406 -5.039062 -3.078125 C -5.039062 -2.632812 -4.890625 -2.261719 -4.59375 -1.957031 C -4.296875 -1.65625 -3.898438 -1.488281 -3.398438 -1.457031 Z M -3.398438 -1.457031 "/>
</g>
<g id="glyph-2-12">
<path d="M 0 -0.730469 L -7.875 -0.730469 L -7.875 -1.699219 L -3.382812 -1.699219 L -5.703125 -3.984375 L -5.703125 -5.238281 L -3.585938 -3.054688 L 0 -5.457031 L 0 -4.265625 L -2.917969 -2.378906 L -2.261719 -1.699219 L 0 -1.695312 Z M 0 -0.730469 "/>
</g>
<g id="glyph-2-13">
<path d="M 0 -0.726562 L -5.703125 -0.726562 L -5.703125 -1.59375 L -4.894531 -1.59375 C -5.519531 -2.015625 -5.832031 -2.621094 -5.832031 -3.410156 C -5.832031 -3.753906 -5.769531 -4.070312 -5.648438 -4.359375 C -5.523438 -4.648438 -5.363281 -4.863281 -5.160156 -5.007812 C -4.960938 -5.148438 -4.722656 -5.25 -4.445312 -5.304688 C -4.269531 -5.34375 -3.953125 -5.359375 -3.507812 -5.359375 L 0 -5.359375 L 0 -4.394531 L -3.46875 -4.394531 C -3.863281 -4.394531 -4.15625 -4.355469 -4.351562 -4.28125 C -4.546875 -4.207031 -4.703125 -4.070312 -4.820312 -3.878906 C -4.9375 -3.6875 -4.996094 -3.464844 -4.996094 -3.207031 C -4.996094 -2.792969 -4.863281 -2.4375 -4.601562 -2.140625 C -4.339844 -1.839844 -3.84375 -1.691406 -3.117188 -1.691406 L 0 -1.691406 Z M 0 -0.726562 "/>
</g>
<g id="glyph-2-14">
<path d="M -1.703125 -0.339844 L -1.851562 -1.292969 C -1.46875 -1.347656 -1.175781 -1.496094 -0.972656 -1.742188 C -0.769531 -1.988281 -0.664062 -2.332031 -0.664062 -2.773438 C -0.664062 -3.214844 -0.757812 -3.546875 -0.9375 -3.757812 C -1.117188 -3.976562 -1.332031 -4.082031 -1.574219 -4.082031 C -1.792969 -4.082031 -1.964844 -3.988281 -2.089844 -3.796875 C -2.175781 -3.664062 -2.285156 -3.335938 -2.417969 -2.808594 C -2.597656 -2.101562 -2.75 -1.609375 -2.882812 -1.335938 C -3.011719 -1.0625 -3.191406 -0.851562 -3.425781 -0.710938 C -3.65625 -0.570312 -3.910156 -0.5 -4.1875 -0.5 C -4.445312 -0.5 -4.679688 -0.558594 -4.894531 -0.675781 C -5.113281 -0.789062 -5.292969 -0.949219 -5.4375 -1.148438 C -5.546875 -1.300781 -5.640625 -1.503906 -5.71875 -1.765625 C -5.792969 -2.023438 -5.832031 -2.300781 -5.832031 -2.601562 C -5.832031 -3.046875 -5.769531 -3.441406 -5.640625 -3.777344 C -5.511719 -4.117188 -5.335938 -4.367188 -5.117188 -4.527344 C -4.894531 -4.6875 -4.601562 -4.800781 -4.234375 -4.859375 L -4.101562 -3.914062 C -4.398438 -3.871094 -4.625 -3.75 -4.789062 -3.542969 C -4.957031 -3.335938 -5.039062 -3.046875 -5.039062 -2.667969 C -5.039062 -2.226562 -4.964844 -1.910156 -4.816406 -1.71875 C -4.671875 -1.527344 -4.5 -1.433594 -4.300781 -1.433594 C -4.175781 -1.433594 -4.0625 -1.472656 -3.964844 -1.550781 C -3.859375 -1.632812 -3.773438 -1.753906 -3.707031 -1.921875 C -3.671875 -2.019531 -3.585938 -2.304688 -3.460938 -2.777344 C -3.277344 -3.460938 -3.125 -3.9375 -3.011719 -4.207031 C -2.894531 -4.480469 -2.726562 -4.691406 -2.503906 -4.84375 C -2.28125 -5 -2.003906 -5.074219 -1.675781 -5.074219 C -1.351562 -5.074219 -1.050781 -4.980469 -0.765625 -4.792969 C -0.480469 -4.605469 -0.261719 -4.335938 -0.105469 -3.980469 C 0.0507812 -3.625 0.128906 -3.222656 0.128906 -2.777344 C 0.128906 -2.035156 -0.0234375 -1.472656 -0.332031 -1.082031 C -0.640625 -0.695312 -1.097656 -0.445312 -1.703125 -0.339844 Z M -1.703125 -0.339844 "/>
</g>
<g id="glyph-3-0">
<path d="M 0.96875 0 L 0.96875 -9.449219 L 2.21875 -9.449219 L 2.21875 -4.761719 L 6.910156 -9.449219 L 8.605469 -9.449219 L 4.640625 -5.621094 L 8.777344 0 L 7.128906 0 L 3.765625 -4.78125 L 2.21875 -3.273438 L 2.21875 0 Z M 0.96875 0 "/>
</g>
<g id="glyph-3-1">
<path d="M 5.355469 0 L 5.355469 -1.003906 C 4.824219 -0.230469 4.097656 0.15625 3.183594 0.15625 C 2.78125 0.15625 2.402344 0.078125 2.054688 -0.078125 C 1.703125 -0.230469 1.441406 -0.425781 1.273438 -0.660156 C 1.101562 -0.894531 0.984375 -1.183594 0.914062 -1.519531 C 0.867188 -1.75 0.84375 -2.109375 0.84375 -2.605469 L 0.84375 -6.84375 L 2.003906 -6.84375 L 2.003906 -3.046875 C 2.003906 -2.441406 2.027344 -2.035156 2.074219 -1.824219 C 2.148438 -1.519531 2.304688 -1.28125 2.539062 -1.105469 C 2.777344 -0.929688 3.066406 -0.84375 3.414062 -0.84375 C 3.765625 -0.84375 4.089844 -0.933594 4.394531 -1.113281 C 4.699219 -1.289062 4.917969 -1.53125 5.042969 -1.839844 C 5.171875 -2.148438 5.234375 -2.59375 5.234375 -3.175781 L 5.234375 -6.84375 L 6.394531 -6.84375 L 6.394531 0 Z M 5.355469 0 "/>
</g>
<g id="glyph-3-2">
<path d="M 0.871094 0 L 0.871094 -6.84375 L 1.90625 -6.84375 L 1.90625 -5.882812 C 2.121094 -6.21875 2.410156 -6.488281 2.765625 -6.695312 C 3.121094 -6.898438 3.527344 -7 3.984375 -7 C 4.488281 -7 4.90625 -6.894531 5.230469 -6.683594 C 5.554688 -6.472656 5.785156 -6.179688 5.917969 -5.800781 C 6.457031 -6.601562 7.164062 -7 8.03125 -7 C 8.710938 -7 9.230469 -6.8125 9.597656 -6.4375 C 9.960938 -6.058594 10.144531 -5.480469 10.144531 -4.699219 L 10.144531 0 L 8.992188 0 L 8.992188 -4.3125 C 8.992188 -4.777344 8.953125 -5.109375 8.878906 -5.3125 C 8.804688 -5.519531 8.667969 -5.683594 8.46875 -5.808594 C 8.269531 -5.933594 8.039062 -5.992188 7.773438 -5.992188 C 7.292969 -5.992188 6.890625 -5.835938 6.574219 -5.515625 C 6.257812 -5.195312 6.097656 -4.679688 6.097656 -3.976562 L 6.097656 0 L 4.9375 0 L 4.9375 -4.445312 C 4.9375 -4.960938 4.84375 -5.347656 4.652344 -5.609375 C 4.464844 -5.863281 4.15625 -5.992188 3.726562 -5.992188 C 3.398438 -5.992188 3.097656 -5.90625 2.820312 -5.734375 C 2.542969 -5.5625 2.339844 -5.3125 2.21875 -4.980469 C 2.09375 -4.652344 2.03125 -4.175781 2.03125 -3.550781 L 2.03125 0 Z M 0.871094 0 "/>
</g>
<g id="glyph-3-3">
<path d="M 0.84375 0 L 0.84375 -9.449219 L 2.003906 -9.449219 L 2.003906 0 Z M 0.84375 0 "/>
</g>
<g id="glyph-3-4">
<path d="M 5.335938 -0.84375 C 4.90625 -0.480469 4.492188 -0.222656 4.097656 -0.0703125 C 3.699219 0.078125 3.273438 0.15625 2.816406 0.15625 C 2.066406 0.15625 1.488281 -0.0273438 1.082031 -0.394531 C 0.679688 -0.765625 0.476562 -1.234375 0.476562 -1.804688 C 0.476562 -2.140625 0.554688 -2.445312 0.707031 -2.722656 C 0.859375 -3 1.058594 -3.222656 1.304688 -3.390625 C 1.550781 -3.558594 1.832031 -3.683594 2.140625 -3.769531 C 2.367188 -3.832031 2.710938 -3.886719 3.171875 -3.945312 C 4.109375 -4.054688 4.796875 -4.1875 5.238281 -4.34375 C 5.246094 -4.503906 5.246094 -4.605469 5.246094 -4.648438 C 5.246094 -5.121094 5.136719 -5.453125 4.917969 -5.644531 C 4.621094 -5.90625 4.179688 -6.039062 3.597656 -6.039062 C 3.050781 -6.039062 2.648438 -5.945312 2.386719 -5.753906 C 2.128906 -5.5625 1.9375 -5.222656 1.8125 -4.738281 L 0.675781 -4.890625 C 0.78125 -5.378906 0.949219 -5.769531 1.1875 -6.066406 C 1.421875 -6.367188 1.765625 -6.597656 2.210938 -6.757812 C 2.65625 -6.917969 3.175781 -7 3.765625 -7 C 4.347656 -7 4.824219 -6.929688 5.1875 -6.792969 C 5.554688 -6.65625 5.820312 -6.484375 5.992188 -6.273438 C 6.164062 -6.066406 6.285156 -5.804688 6.355469 -5.484375 C 6.394531 -5.289062 6.414062 -4.929688 6.414062 -4.414062 L 6.414062 -2.867188 C 6.414062 -1.789062 6.4375 -1.109375 6.488281 -0.820312 C 6.535156 -0.535156 6.632812 -0.261719 6.78125 0 L 5.570312 0 C 5.449219 -0.242188 5.371094 -0.523438 5.335938 -0.84375 M 5.238281 -3.433594 C 4.820312 -3.261719 4.1875 -3.117188 3.34375 -2.996094 C 2.867188 -2.929688 2.53125 -2.851562 2.332031 -2.765625 C 2.136719 -2.679688 1.984375 -2.554688 1.875 -2.386719 C 1.769531 -2.222656 1.714844 -2.039062 1.714844 -1.835938 C 1.714844 -1.527344 1.832031 -1.269531 2.066406 -1.0625 C 2.300781 -0.855469 2.640625 -0.753906 3.09375 -0.753906 C 3.539062 -0.753906 3.9375 -0.851562 4.285156 -1.046875 C 4.632812 -1.242188 4.890625 -1.511719 5.054688 -1.851562 C 5.175781 -2.113281 5.238281 -2.5 5.238281 -3.011719 Z M 5.238281 -3.433594 "/>
</g>
<g id="glyph-3-5">
<path d="M 3.402344 -1.039062 L 3.570312 -0.0117188 C 3.242188 0.0546875 2.953125 0.0898438 2.695312 0.0898438 C 2.273438 0.0898438 1.945312 0.0234375 1.714844 -0.109375 C 1.484375 -0.242188 1.320312 -0.417969 1.226562 -0.636719 C 1.128906 -0.851562 1.082031 -1.308594 1.082031 -2.003906 L 1.082031 -5.941406 L 0.230469 -5.941406 L 0.230469 -6.84375 L 1.082031 -6.84375 L 1.082031 -8.539062 L 2.238281 -9.234375 L 2.238281 -6.84375 L 3.402344 -6.84375 L 3.402344 -5.941406 L 2.238281 -5.941406 L 2.238281 -1.941406 C 2.238281 -1.609375 2.257812 -1.394531 2.296875 -1.300781 C 2.339844 -1.207031 2.40625 -1.132812 2.496094 -1.078125 C 2.589844 -1.019531 2.722656 -0.992188 2.894531 -0.992188 C 3.023438 -0.992188 3.191406 -1.007812 3.402344 -1.039062 Z M 3.402344 -1.039062 "/>
</g>
<g id="glyph-3-6">
<path d="M 0.875 -8.113281 L 0.875 -9.449219 L 2.035156 -9.449219 L 2.035156 -8.113281 L 0.875 -8.113281 M 0.875 0 L 0.875 -6.84375 L 2.035156 -6.84375 L 2.035156 0 Z M 0.875 0 "/>
</g>
<g id="glyph-3-7">
<path d="M 2.773438 0 L 0.167969 -6.84375 L 1.390625 -6.84375 L 2.863281 -2.746094 C 3.019531 -2.304688 3.167969 -1.84375 3.300781 -1.367188 C 3.402344 -1.726562 3.546875 -2.160156 3.730469 -2.667969 L 5.253906 -6.84375 L 6.445312 -6.84375 L 3.855469 0 Z M 2.773438 0 "/>
</g>
<g id="glyph-3-8">
</g>
<g id="glyph-3-9">
<path d="M 1.148438 0 L 1.148438 -5.941406 L 0.121094 -5.941406 L 0.121094 -6.84375 L 1.148438 -6.84375 L 1.148438 -7.574219 C 1.148438 -8.03125 1.1875 -8.375 1.269531 -8.597656 C 1.382812 -8.898438 1.578125 -9.144531 1.859375 -9.328125 C 2.140625 -9.515625 2.535156 -9.609375 3.042969 -9.609375 C 3.367188 -9.609375 3.730469 -9.570312 4.125 -9.492188 L 3.949219 -8.480469 C 3.710938 -8.523438 3.484375 -8.546875 3.269531 -8.546875 C 2.914062 -8.546875 2.667969 -8.472656 2.519531 -8.320312 C 2.375 -8.171875 2.300781 -7.890625 2.300781 -7.476562 L 2.300781 -6.84375 L 3.636719 -6.84375 L 3.636719 -5.941406 L 2.300781 -5.941406 L 2.300781 0 Z M 1.148438 0 "/>
</g>
<g id="glyph-3-10">
<path d="M 0.855469 0 L 0.855469 -6.84375 L 1.902344 -6.84375 L 1.902344 -5.808594 C 2.167969 -6.292969 2.414062 -6.613281 2.640625 -6.765625 C 2.863281 -6.921875 3.113281 -7 3.382812 -7 C 3.773438 -7 4.171875 -6.875 4.578125 -6.625 L 4.175781 -5.550781 C 3.894531 -5.71875 3.609375 -5.800781 3.324219 -5.800781 C 3.070312 -5.800781 2.84375 -5.722656 2.640625 -5.570312 C 2.441406 -5.417969 2.296875 -5.207031 2.210938 -4.9375 C 2.082031 -4.523438 2.015625 -4.074219 2.015625 -3.582031 L 2.015625 0 Z M 0.855469 0 "/>
</g>
<g id="glyph-3-11">
<path d="M 5.554688 -2.203125 L 6.753906 -2.054688 C 6.566406 -1.355469 6.214844 -0.8125 5.703125 -0.425781 C 5.191406 -0.0390625 4.539062 0.15625 3.746094 0.15625 C 2.742188 0.15625 1.949219 -0.152344 1.363281 -0.769531 C 0.777344 -1.386719 0.484375 -2.25 0.484375 -3.363281 C 0.484375 -4.515625 0.78125 -5.410156 1.371094 -6.046875 C 1.964844 -6.679688 2.734375 -7 3.679688 -7 C 4.59375 -7 5.34375 -6.6875 5.921875 -6.066406 C 6.503906 -5.441406 6.792969 -4.566406 6.792969 -3.433594 C 6.792969 -3.367188 6.792969 -3.261719 6.785156 -3.125 L 1.683594 -3.125 C 1.726562 -2.375 1.9375 -1.796875 2.320312 -1.398438 C 2.703125 -1 3.179688 -0.800781 3.75 -0.800781 C 4.175781 -0.800781 4.539062 -0.910156 4.839844 -1.132812 C 5.140625 -1.359375 5.378906 -1.714844 5.554688 -2.203125 M 1.746094 -4.078125 L 5.570312 -4.078125 C 5.515625 -4.65625 5.371094 -5.085938 5.128906 -5.375 C 4.761719 -5.820312 4.28125 -6.046875 3.691406 -6.046875 C 3.160156 -6.046875 2.710938 -5.867188 2.347656 -5.511719 C 1.984375 -5.152344 1.785156 -4.675781 1.746094 -4.078125 Z M 1.746094 -4.078125 "/>
</g>
<g id="glyph-3-12">
<path d="M 0.875 0 L 0.875 -9.449219 L 2.035156 -9.449219 L 2.035156 -4.0625 L 4.78125 -6.84375 L 6.285156 -6.84375 L 3.667969 -4.304688 L 6.546875 0 L 5.117188 0 L 2.855469 -3.5 L 2.035156 -2.714844 L 2.035156 0 Z M 0.875 0 "/>
</g>
<g id="glyph-3-13">
<path d="M 0.871094 0 L 0.871094 -6.84375 L 1.914062 -6.84375 L 1.914062 -5.871094 C 2.417969 -6.625 3.144531 -7 4.09375 -7 C 4.503906 -7 4.882812 -6.925781 5.230469 -6.777344 C 5.578125 -6.628906 5.835938 -6.433594 6.007812 -6.195312 C 6.179688 -5.953125 6.300781 -5.667969 6.367188 -5.335938 C 6.410156 -5.121094 6.433594 -4.746094 6.433594 -4.207031 L 6.433594 0 L 5.273438 0 L 5.273438 -4.164062 C 5.273438 -4.636719 5.226562 -4.988281 5.136719 -5.222656 C 5.046875 -5.457031 4.886719 -5.644531 4.65625 -5.785156 C 4.425781 -5.925781 4.15625 -5.992188 3.847656 -5.992188 C 3.355469 -5.992188 2.925781 -5.835938 2.570312 -5.523438 C 2.210938 -5.210938 2.03125 -4.613281 2.03125 -3.738281 L 2.03125 0 Z M 0.871094 0 "/>
</g>
<g id="glyph-3-14">
<path d="M 0.40625 -2.042969 L 1.554688 -2.222656 C 1.617188 -1.765625 1.796875 -1.410156 2.089844 -1.167969 C 2.386719 -0.921875 2.796875 -0.800781 3.324219 -0.800781 C 3.859375 -0.800781 4.253906 -0.90625 4.511719 -1.125 C 4.769531 -1.339844 4.898438 -1.597656 4.898438 -1.886719 C 4.898438 -2.152344 4.785156 -2.355469 4.558594 -2.507812 C 4.398438 -2.609375 4.003906 -2.742188 3.371094 -2.898438 C 2.519531 -3.113281 1.929688 -3.300781 1.601562 -3.457031 C 1.273438 -3.613281 1.023438 -3.832031 0.855469 -4.109375 C 0.683594 -4.386719 0.597656 -4.691406 0.597656 -5.027344 C 0.597656 -5.332031 0.667969 -5.613281 0.808594 -5.875 C 0.949219 -6.136719 1.136719 -6.351562 1.378906 -6.523438 C 1.558594 -6.65625 1.804688 -6.769531 2.117188 -6.859375 C 2.429688 -6.953125 2.761719 -7 3.121094 -7 C 3.65625 -7 4.128906 -6.921875 4.535156 -6.765625 C 4.941406 -6.613281 5.238281 -6.402344 5.433594 -6.140625 C 5.625 -5.875 5.761719 -5.519531 5.832031 -5.078125 L 4.699219 -4.925781 C 4.648438 -5.277344 4.496094 -5.550781 4.25 -5.75 C 4.003906 -5.945312 3.65625 -6.046875 3.203125 -6.046875 C 2.671875 -6.046875 2.289062 -5.957031 2.0625 -5.78125 C 1.835938 -5.605469 1.722656 -5.398438 1.722656 -5.164062 C 1.722656 -5.011719 1.769531 -4.875 1.863281 -4.757812 C 1.957031 -4.632812 2.105469 -4.527344 2.308594 -4.445312 C 2.421875 -4.402344 2.765625 -4.304688 3.332031 -4.152344 C 4.152344 -3.929688 4.726562 -3.753906 5.050781 -3.613281 C 5.375 -3.472656 5.628906 -3.269531 5.8125 -3.003906 C 6 -2.738281 6.089844 -2.40625 6.089844 -2.011719 C 6.089844 -1.625 5.976562 -1.261719 5.753906 -0.917969 C 5.527344 -0.578125 5.203125 -0.3125 4.777344 -0.125 C 4.351562 0.0625 3.871094 0.15625 3.332031 0.15625 C 2.441406 0.15625 1.765625 -0.03125 1.296875 -0.398438 C 0.832031 -0.769531 0.535156 -1.316406 0.40625 -2.042969 Z M 0.40625 -2.042969 "/>
</g>
<g id="glyph-3-15">
<path d="M 5.3125 0 L 5.3125 -0.863281 C 4.875 -0.183594 4.238281 0.15625 3.398438 0.15625 C 2.851562 0.15625 2.347656 0.00390625 1.890625 -0.296875 C 1.433594 -0.597656 1.078125 -1.015625 0.828125 -1.554688 C 0.578125 -2.097656 0.453125 -2.714844 0.453125 -3.414062 C 0.453125 -4.097656 0.566406 -4.71875 0.792969 -5.277344 C 1.019531 -5.832031 1.363281 -6.257812 1.816406 -6.554688 C 2.273438 -6.851562 2.78125 -7 3.34375 -7 C 3.757812 -7 4.125 -6.914062 4.445312 -6.738281 C 4.769531 -6.566406 5.03125 -6.335938 5.234375 -6.058594 L 5.234375 -9.449219 L 6.386719 -9.449219 L 6.386719 0 L 5.3125 0 M 1.644531 -3.414062 C 1.644531 -2.539062 1.828125 -1.882812 2.199219 -1.449219 C 2.566406 -1.015625 3.003906 -0.800781 3.507812 -0.800781 C 4.011719 -0.800781 4.445312 -1.007812 4.796875 -1.421875 C 5.152344 -1.835938 5.332031 -2.46875 5.332031 -3.320312 C 5.332031 -4.257812 5.148438 -4.945312 4.789062 -5.382812 C 4.429688 -5.820312 3.984375 -6.039062 3.453125 -6.039062 C 2.9375 -6.039062 2.507812 -5.828125 2.164062 -5.40625 C 1.816406 -4.988281 1.644531 -4.324219 1.644531 -3.414062 Z M 1.644531 -3.414062 "/>
</g>
<g id="glyph-3-16">
<path d="M 0.65625 0.566406 L 1.785156 0.734375 C 1.832031 1.082031 1.964844 1.335938 2.179688 1.496094 C 2.464844 1.710938 2.859375 1.816406 3.359375 1.816406 C 3.894531 1.816406 4.308594 1.710938 4.601562 1.496094 C 4.894531 1.28125 5.09375 0.980469 5.195312 0.59375 C 5.253906 0.355469 5.28125 -0.140625 5.277344 -0.894531 C 4.773438 -0.296875 4.140625 0 3.382812 0 C 2.441406 0 1.714844 -0.339844 1.199219 -1.019531 C 0.683594 -1.695312 0.425781 -2.511719 0.425781 -3.460938 C 0.425781 -4.113281 0.542969 -4.71875 0.78125 -5.269531 C 1.015625 -5.820312 1.359375 -6.246094 1.808594 -6.546875 C 2.257812 -6.847656 2.785156 -7 3.390625 -7 C 4.199219 -7 4.863281 -6.671875 5.386719 -6.019531 L 5.386719 -6.84375 L 6.457031 -6.84375 L 6.457031 -0.929688 C 6.457031 0.136719 6.351562 0.894531 6.132812 1.335938 C 5.914062 1.78125 5.570312 2.132812 5.101562 2.390625 C 4.632812 2.648438 4.050781 2.777344 3.363281 2.777344 C 2.546875 2.777344 1.886719 2.59375 1.386719 2.226562 C 0.882812 1.859375 0.640625 1.304688 0.65625 0.566406 M 1.617188 -3.546875 C 1.617188 -2.648438 1.796875 -1.992188 2.152344 -1.578125 C 2.507812 -1.167969 2.957031 -0.960938 3.492188 -0.960938 C 4.027344 -0.960938 4.472656 -1.164062 4.835938 -1.574219 C 5.195312 -1.984375 5.375 -2.628906 5.375 -3.507812 C 5.375 -4.34375 5.191406 -4.976562 4.816406 -5.402344 C 4.445312 -5.828125 4 -6.039062 3.472656 -6.039062 C 2.957031 -6.039062 2.519531 -5.828125 2.160156 -5.410156 C 1.796875 -4.992188 1.617188 -4.371094 1.617188 -3.546875 Z M 1.617188 -3.546875 "/>
</g>
<g id="glyph-3-17">
<path d="M 0.417969 -2.835938 L 0.417969 -4.003906 L 3.984375 -4.003906 L 3.984375 -2.835938 Z M 0.417969 -2.835938 "/>
</g>
<g id="glyph-3-18">
<path d="M 7.761719 -3.3125 L 9.011719 -2.996094 C 8.75 -1.96875 8.277344 -1.1875 7.597656 -0.648438 C 6.914062 -0.109375 6.082031 0.160156 5.097656 0.160156 C 4.078125 0.160156 3.25 -0.046875 2.613281 -0.460938 C 1.976562 -0.875 1.488281 -1.476562 1.15625 -2.261719 C 0.824219 -3.046875 0.65625 -3.894531 0.65625 -4.796875 C 0.65625 -5.777344 0.84375 -6.636719 1.222656 -7.371094 C 1.597656 -8.101562 2.132812 -8.660156 2.828125 -9.039062 C 3.519531 -9.417969 4.285156 -9.609375 5.117188 -9.609375 C 6.0625 -9.609375 6.859375 -9.371094 7.503906 -8.886719 C 8.148438 -8.40625 8.597656 -7.730469 8.847656 -6.859375 L 7.617188 -6.566406 C 7.398438 -7.253906 7.082031 -7.753906 6.664062 -8.070312 C 6.246094 -8.382812 5.722656 -8.539062 5.09375 -8.539062 C 4.367188 -8.539062 3.757812 -8.367188 3.269531 -8.019531 C 2.785156 -7.671875 2.441406 -7.203125 2.242188 -6.617188 C 2.046875 -6.03125 1.945312 -5.425781 1.945312 -4.800781 C 1.945312 -4 2.0625 -3.296875 2.296875 -2.699219 C 2.53125 -2.097656 2.894531 -1.648438 3.390625 -1.351562 C 3.882812 -1.058594 4.417969 -0.910156 4.996094 -0.910156 C 5.695312 -0.910156 6.289062 -1.109375 6.773438 -1.515625 C 7.257812 -1.917969 7.589844 -2.519531 7.761719 -3.3125 Z M 7.761719 -3.3125 "/>
</g>
<g id="glyph-3-19">
<path d="M 0.4375 -3.421875 C 0.4375 -4.691406 0.789062 -5.628906 1.496094 -6.238281 C 2.082031 -6.746094 2.800781 -7 3.648438 -7 C 4.589844 -7 5.359375 -6.691406 5.957031 -6.074219 C 6.550781 -5.457031 6.851562 -4.605469 6.851562 -3.519531 C 6.851562 -2.636719 6.71875 -1.945312 6.453125 -1.441406 C 6.191406 -0.9375 5.804688 -0.542969 5.300781 -0.265625 C 4.796875 0.015625 4.246094 0.15625 3.648438 0.15625 C 2.691406 0.15625 1.914062 -0.152344 1.324219 -0.765625 C 0.734375 -1.382812 0.4375 -2.265625 0.4375 -3.421875 M 1.628906 -3.421875 C 1.628906 -2.546875 1.820312 -1.890625 2.203125 -1.453125 C 2.585938 -1.015625 3.066406 -0.800781 3.648438 -0.800781 C 4.222656 -0.800781 4.703125 -1.019531 5.085938 -1.457031 C 5.46875 -1.894531 5.660156 -2.5625 5.660156 -3.460938 C 5.660156 -4.308594 5.464844 -4.949219 5.082031 -5.386719 C 4.699219 -5.820312 4.21875 -6.039062 3.648438 -6.039062 C 3.066406 -6.039062 2.585938 -5.820312 2.203125 -5.386719 C 1.820312 -4.953125 1.628906 -4.300781 1.628906 -3.421875 Z M 1.628906 -3.421875 "/>
</g>
<g id="glyph-3-20">
<path d="M 0.871094 2.625 L 0.871094 -6.84375 L 1.925781 -6.84375 L 1.925781 -5.957031 C 2.175781 -6.304688 2.457031 -6.566406 2.773438 -6.738281 C 3.085938 -6.914062 3.464844 -7 3.914062 -7 C 4.496094 -7 5.011719 -6.847656 5.460938 -6.546875 C 5.90625 -6.246094 6.242188 -5.824219 6.472656 -5.277344 C 6.699219 -4.726562 6.8125 -4.128906 6.8125 -3.472656 C 6.8125 -2.773438 6.6875 -2.144531 6.4375 -1.582031 C 6.183594 -1.023438 5.820312 -0.59375 5.339844 -0.292969 C 4.859375 0.00390625 4.355469 0.15625 3.828125 0.15625 C 3.441406 0.15625 3.09375 0.0742188 2.789062 -0.0898438 C 2.480469 -0.253906 2.226562 -0.460938 2.03125 -0.710938 L 2.03125 2.625 L 0.871094 2.625 M 1.921875 -3.382812 C 1.921875 -2.503906 2.097656 -1.851562 2.457031 -1.429688 C 2.8125 -1.007812 3.242188 -0.800781 3.75 -0.800781 C 4.265625 -0.800781 4.707031 -1.015625 5.074219 -1.453125 C 5.441406 -1.890625 5.625 -2.566406 5.625 -3.480469 C 5.625 -4.351562 5.449219 -5.003906 5.089844 -5.441406 C 4.730469 -5.875 4.300781 -6.089844 3.804688 -6.089844 C 3.308594 -6.089844 2.871094 -5.859375 2.492188 -5.398438 C 2.109375 -4.9375 1.921875 -4.265625 1.921875 -3.382812 Z M 1.921875 -3.382812 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 34.773438 24.40625 L 661.519531 24.40625 L 661.519531 564.722656 L 34.773438 564.722656 Z M 34.773438 24.40625 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 34.773438 503 L 661.519531 503 L 661.519531 505 L 34.773438 505 Z M 34.773438 503 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 34.773438 384 L 661.519531 384 L 661.519531 385 L 34.773438 385 Z M 34.773438 384 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 34.773438 264 L 661.519531 264 L 661.519531 265 L 34.773438 265 Z M 34.773438 264 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 34.773438 144 L 661.519531 144 L 661.519531 146 L 34.773438 146 Z M 34.773438 144 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 34.773438 24.40625 L 661.519531 24.40625 L 661.519531 26 L 34.773438 26 Z M 34.773438 24.40625 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 62 24.40625 L 64 24.40625 L 64 564.722656 L 62 564.722656 Z M 62 24.40625 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 225 24.40625 L 227 24.40625 L 227 564.722656 L 225 564.722656 Z M 225 24.40625 "/>
</clipPath>
<clipPath id="clip-8">
<path clip-rule="nonzero" d="M 388 24.40625 L 390 24.40625 L 390 564.722656 L 388 564.722656 Z M 388 24.40625 "/>
</clipPath>
<clipPath id="clip-9">
<path clip-rule="nonzero" d="M 551 24.40625 L 552 24.40625 L 552 564.722656 L 551 564.722656 Z M 551 24.40625 "/>
</clipPath>
<clipPath id="clip-10">
<path clip-rule="nonzero" d="M 34.773438 563 L 661.519531 563 L 661.519531 564.722656 L 34.773438 564.722656 Z M 34.773438 563 "/>
</clipPath>
<clipPath id="clip-11">
<path clip-rule="nonzero" d="M 34.773438 443 L 661.519531 443 L 661.519531 445 L 34.773438 445 Z M 34.773438 443 "/>
</clipPath>
<clipPath id="clip-12">
<path clip-rule="nonzero" d="M 34.773438 323 L 661.519531 323 L 661.519531 326 L 34.773438 326 Z M 34.773438 323 "/>
</clipPath>
<clipPath id="clip-13">
<path clip-rule="nonzero" d="M 34.773438 204 L 661.519531 204 L 661.519531 206 L 34.773438 206 Z M 34.773438 204 "/>
</clipPath>
<clipPath id="clip-14">
<path clip-rule="nonzero" d="M 34.773438 84 L 661.519531 84 L 661.519531 86 L 34.773438 86 Z M 34.773438 84 "/>
</clipPath>
<clipPath id="clip-15">
<path clip-rule="nonzero" d="M 144 24.40625 L 146 24.40625 L 146 564.722656 L 144 564.722656 Z M 144 24.40625 "/>
</clipPath>
<clipPath id="clip-16">
<path clip-rule="nonzero" d="M 306 24.40625 L 308 24.40625 L 308 564.722656 L 306 564.722656 Z M 306 24.40625 "/>
</clipPath>
<clipPath id="clip-17">
<path clip-rule="nonzero" d="M 469 24.40625 L 471 24.40625 L 471 564.722656 L 469 564.722656 Z M 469 24.40625 "/>
</clipPath>
<clipPath id="clip-18">
<path clip-rule="nonzero" d="M 632 24.40625 L 634 24.40625 L 634 564.722656 L 632 564.722656 Z M 632 24.40625 "/>
</clipPath>
</defs>
<rect x="-66.7" y="-59.8" width="800.4" height="717.6" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-66.7" y="-59.8" width="800.4" height="717.6" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.066978" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 598 L 667 598 L 667 0 L 0 0 Z M 0 598 "/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(92.156863%, 92.156863%, 92.156863%)" fill-opacity="1" d="M 34.773438 564.726562 L 661.519531 564.726562 L 661.519531 24.410156 L 34.773438 24.410156 Z M 34.773438 564.726562 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 504.222656 L 661.519531 504.222656 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 384.417969 L 661.519531 384.417969 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 264.617188 L 661.519531 264.617188 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 144.8125 L 661.519531 144.8125 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 25.007812 L 661.519531 25.007812 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 63.261719 564.726562 L 63.261719 24.40625 "/>
</g>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 226.054688 564.726562 L 226.054688 24.40625 "/>
</g>
<g clip-path="url(#clip-8)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 388.84375 564.726562 L 388.84375 24.40625 "/>
</g>
<g clip-path="url(#clip-9)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 551.636719 564.726562 L 551.636719 24.40625 "/>
</g>
<g clip-path="url(#clip-10)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 564.125 L 661.519531 564.125 "/>
</g>
<g clip-path="url(#clip-11)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 444.320312 L 661.519531 444.320312 "/>
</g>
<g clip-path="url(#clip-12)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 324.519531 L 661.519531 324.519531 "/>
</g>
<g clip-path="url(#clip-13)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 204.714844 L 661.519531 204.714844 "/>
</g>
<g clip-path="url(#clip-14)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 84.910156 L 661.519531 84.910156 "/>
</g>
<g clip-path="url(#clip-15)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 144.660156 564.726562 L 144.660156 24.40625 "/>
</g>
<g clip-path="url(#clip-16)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 307.449219 564.726562 L 307.449219 24.40625 "/>
</g>
<g clip-path="url(#clip-17)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 470.242188 564.726562 L 470.242188 24.40625 "/>
</g>
<g clip-path="url(#clip-18)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 633.03125 564.726562 L 633.03125 24.40625 "/>
</g>
<path fill="none" stroke-width="3.200935" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 63.261719 540.164062 L 226.054688 492.242188 L 307.449219 372.4375 L 388.84375 300.558594 L 470.242188 108.871094 L 551.636719 72.929688 L 633.03125 48.96875 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="24.949219" y="567.777344"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="20.054688" y="447.972656"/>
<use xlink:href="#glyph-0-0" x="24.948828" y="447.972656"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="20.054688" y="328.167969"/>
<use xlink:href="#glyph-0-0" x="24.948828" y="328.167969"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="20.054688" y="208.363281"/>
<use xlink:href="#glyph-0-0" x="24.948828" y="208.363281"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="20.054688" y="88.558594"/>
<use xlink:href="#glyph-0-0" x="24.948828" y="88.558594"/>
</g>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32.035156 564.125 L 34.773438 564.125 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32.035156 444.320312 L 34.773438 444.320312 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32.035156 324.519531 L 34.773438 324.519531 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32.035156 204.714844 L 34.773438 204.714844 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32.035156 84.910156 L 34.773438 84.910156 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 144.660156 567.464844 L 144.660156 564.726562 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 307.449219 567.464844 L 307.449219 564.726562 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 470.242188 567.464844 L 470.242188 564.726562 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 633.03125 567.464844 L 633.03125 564.726562 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="139.765625" y="576.957031"/>
<use xlink:href="#glyph-0-0" x="144.659766" y="576.957031"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="302.554688" y="576.957031"/>
<use xlink:href="#glyph-0-1" x="307.448828" y="576.957031"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="465.347656" y="576.957031"/>
<use xlink:href="#glyph-0-2" x="470.241797" y="576.957031"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="628.136719" y="576.957031"/>
<use xlink:href="#glyph-0-3" x="633.030859" y="576.957031"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="295.886719" y="590.269531"/>
<use xlink:href="#glyph-1-1" x="303.223633" y="590.269531"/>
<use xlink:href="#glyph-1-2" x="306.279785" y="590.269531"/>
<use xlink:href="#glyph-1-3" x="309.942871" y="590.269531"/>
<use xlink:href="#glyph-1-4" x="316.060547" y="590.269531"/>
<use xlink:href="#glyph-1-4" x="321.560547" y="590.269531"/>
<use xlink:href="#glyph-1-5" x="327.060547" y="590.269531"/>
<use xlink:href="#glyph-1-6" x="333.178223" y="590.269531"/>
<use xlink:href="#glyph-1-7" x="335.62207" y="590.269531"/>
<use xlink:href="#glyph-1-7" x="338.678223" y="590.269531"/>
<use xlink:href="#glyph-1-3" x="341.734375" y="590.269531"/>
<use xlink:href="#glyph-1-2" x="347.852051" y="590.269531"/>
<use xlink:href="#glyph-1-8" x="351.515137" y="590.269531"/>
<use xlink:href="#glyph-1-9" x="357.632812" y="590.269531"/>
<use xlink:href="#glyph-1-10" x="363.750488" y="590.269531"/>
<use xlink:href="#glyph-1-3" x="369.250488" y="590.269531"/>
<use xlink:href="#glyph-1-11" x="375.368164" y="590.269531"/>
<use xlink:href="#glyph-1-12" x="378.424316" y="590.269531"/>
<use xlink:href="#glyph-1-10" x="382.087402" y="590.269531"/>
<use xlink:href="#glyph-1-13" x="387.587402" y="590.269531"/>
<use xlink:href="#glyph-1-14" x="396.750488" y="590.269531"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="14.351562" y="341.027344"/>
<use xlink:href="#glyph-2-1" x="14.351562" y="333.69043"/>
<use xlink:href="#glyph-2-2" x="14.351563" y="327.572754"/>
<use xlink:href="#glyph-2-1" x="14.351563" y="318.409668"/>
<use xlink:href="#glyph-2-3" x="14.351563" y="312.291992"/>
<use xlink:href="#glyph-2-4" x="14.351563" y="309.848145"/>
<use xlink:href="#glyph-2-5" x="14.351563" y="303.730469"/>
<use xlink:href="#glyph-2-6" x="14.351563" y="300.674316"/>
<use xlink:href="#glyph-2-7" x="14.351563" y="298.230469"/>
<use xlink:href="#glyph-2-8" x="14.351563" y="292.730469"/>
<use xlink:href="#glyph-2-9" x="14.351563" y="289.674316"/>
<use xlink:href="#glyph-2-10" x="14.351563" y="286.618164"/>
<use xlink:href="#glyph-2-11" x="14.351563" y="282.955078"/>
<use xlink:href="#glyph-2-12" x="14.351563" y="276.837402"/>
<use xlink:href="#glyph-2-7" x="14.351563" y="271.337402"/>
<use xlink:href="#glyph-2-11" x="14.351563" y="265.837402"/>
<use xlink:href="#glyph-2-13" x="14.351563" y="259.719727"/>
<use xlink:href="#glyph-2-14" x="14.351563" y="253.602051"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-0" x="34.773438" y="15.929688"/>
<use xlink:href="#glyph-3-1" x="43.577734" y="15.929688"/>
<use xlink:href="#glyph-3-2" x="50.918945" y="15.929688"/>
<use xlink:href="#glyph-3-1" x="61.914648" y="15.929688"/>
<use xlink:href="#glyph-3-3" x="69.255859" y="15.929688"/>
<use xlink:href="#glyph-3-4" x="72.188477" y="15.929688"/>
<use xlink:href="#glyph-3-5" x="79.529687" y="15.929688"/>
<use xlink:href="#glyph-3-6" x="83.19707" y="15.929688"/>
<use xlink:href="#glyph-3-7" x="86.129687" y="15.929688"/>
<use xlink:href="#glyph-3-8" x="92.729687" y="15.929688"/>
<use xlink:href="#glyph-3-9" x="96.39707" y="15.929688"/>
<use xlink:href="#glyph-3-10" x="100.064453" y="15.929688"/>
<use xlink:href="#glyph-3-11" x="104.460156" y="15.929688"/>
<use xlink:href="#glyph-3-12" x="111.801367" y="15.929688"/>
<use xlink:href="#glyph-3-7" x="118.401367" y="15.929688"/>
<use xlink:href="#glyph-3-11" x="125.001367" y="15.929688"/>
<use xlink:href="#glyph-3-13" x="132.342578" y="15.929688"/>
<use xlink:href="#glyph-3-14" x="139.683789" y="15.929688"/>
<use xlink:href="#glyph-3-15" x="146.283789" y="15.929688"/>
<use xlink:href="#glyph-3-6" x="153.625" y="15.929688"/>
<use xlink:href="#glyph-3-4" x="156.557617" y="15.929688"/>
<use xlink:href="#glyph-3-16" x="163.898828" y="15.929688"/>
<use xlink:href="#glyph-3-10" x="171.240039" y="15.929688"/>
<use xlink:href="#glyph-3-4" x="175.635742" y="15.929688"/>
<use xlink:href="#glyph-3-2" x="182.976953" y="15.929688"/>
<use xlink:href="#glyph-3-8" x="193.972656" y="15.929688"/>
<use xlink:href="#glyph-3-17" x="197.640039" y="15.929688"/>
<use xlink:href="#glyph-3-8" x="202.035742" y="15.929688"/>
<use xlink:href="#glyph-3-18" x="205.703125" y="15.929688"/>
<use xlink:href="#glyph-3-19" x="215.235742" y="15.929688"/>
<use xlink:href="#glyph-3-19" x="222.576953" y="15.929688"/>
<use xlink:href="#glyph-3-20" x="229.918164" y="15.929688"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 62 KiB

393
Oblig1/kum_laban.svg Normal file
View File

@@ -0,0 +1,393 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="667pt" height="598pt" viewBox="0 0 667 598">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 3.277344 0 L 2.503906 0 L 2.503906 -4.929688 C 2.320312 -4.75 2.074219 -4.574219 1.773438 -4.394531 C 1.46875 -4.21875 1.199219 -4.085938 0.957031 -3.996094 L 0.957031 -4.742188 C 1.390625 -4.945312 1.769531 -5.195312 2.09375 -5.484375 C 2.417969 -5.773438 2.644531 -6.054688 2.78125 -6.324219 L 3.277344 -6.324219 Z M 3.277344 0 "/>
</g>
<g id="glyph-0-1">
<path d="M 0.367188 -3.105469 C 0.367188 -3.851562 0.441406 -4.449219 0.59375 -4.90625 C 0.75 -5.359375 0.976562 -5.710938 1.277344 -5.957031 C 1.582031 -6.203125 1.960938 -6.324219 2.417969 -6.324219 C 2.757812 -6.324219 3.054688 -6.257812 3.308594 -6.121094 C 3.5625 -5.984375 3.773438 -5.789062 3.941406 -5.53125 C 4.105469 -5.277344 4.238281 -4.964844 4.332031 -4.59375 C 4.425781 -4.226562 4.472656 -3.730469 4.472656 -3.105469 C 4.472656 -2.367188 4.398438 -1.769531 4.246094 -1.316406 C 4.09375 -0.863281 3.867188 -0.511719 3.5625 -0.265625 C 3.261719 -0.015625 2.878906 0.109375 2.417969 0.109375 C 1.8125 0.109375 1.335938 -0.109375 0.988281 -0.546875 C 0.574219 -1.070312 0.367188 -1.921875 0.367188 -3.105469 M 1.160156 -3.105469 C 1.160156 -2.074219 1.28125 -1.382812 1.523438 -1.042969 C 1.765625 -0.699219 2.0625 -0.527344 2.417969 -0.527344 C 2.773438 -0.527344 3.074219 -0.699219 3.316406 -1.042969 C 3.558594 -1.386719 3.679688 -2.074219 3.679688 -3.105469 C 3.679688 -4.144531 3.558594 -4.832031 3.316406 -5.171875 C 3.074219 -5.515625 2.773438 -5.683594 2.410156 -5.683594 C 2.054688 -5.683594 1.773438 -5.535156 1.558594 -5.234375 C 1.292969 -4.851562 1.160156 -4.140625 1.160156 -3.105469 Z M 1.160156 -3.105469 "/>
</g>
<g id="glyph-0-2">
<path d="M 4.429688 -0.742188 L 4.429688 0 L 0.265625 0 C 0.261719 -0.1875 0.289062 -0.367188 0.355469 -0.539062 C 0.460938 -0.820312 0.632812 -1.101562 0.867188 -1.375 C 1.097656 -1.648438 1.4375 -1.96875 1.878906 -2.328125 C 2.5625 -2.890625 3.023438 -3.335938 3.265625 -3.664062 C 3.507812 -3.992188 3.625 -4.300781 3.625 -4.59375 C 3.625 -4.898438 3.515625 -5.160156 3.296875 -5.367188 C 3.078125 -5.578125 2.792969 -5.683594 2.441406 -5.683594 C 2.066406 -5.683594 1.769531 -5.574219 1.546875 -5.351562 C 1.324219 -5.125 1.210938 -4.816406 1.207031 -4.421875 L 0.414062 -4.503906 C 0.46875 -5.097656 0.671875 -5.546875 1.027344 -5.859375 C 1.382812 -6.167969 1.859375 -6.324219 2.457031 -6.324219 C 3.0625 -6.324219 3.539062 -6.15625 3.894531 -5.824219 C 4.246094 -5.488281 4.421875 -5.070312 4.421875 -4.578125 C 4.421875 -4.324219 4.371094 -4.078125 4.265625 -3.832031 C 4.164062 -3.589844 3.992188 -3.332031 3.753906 -3.0625 C 3.515625 -2.792969 3.117188 -2.425781 2.5625 -1.957031 C 2.097656 -1.566406 1.800781 -1.300781 1.667969 -1.164062 C 1.535156 -1.023438 1.425781 -0.882812 1.339844 -0.742188 Z M 4.429688 -0.742188 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.371094 -1.664062 L 1.144531 -1.765625 C 1.230469 -1.328125 1.382812 -1.011719 1.597656 -0.820312 C 1.808594 -0.625 2.070312 -0.527344 2.375 -0.527344 C 2.738281 -0.527344 3.046875 -0.65625 3.296875 -0.90625 C 3.546875 -1.160156 3.671875 -1.472656 3.675781 -1.84375 C 3.671875 -2.199219 3.558594 -2.492188 3.324219 -2.722656 C 3.09375 -2.953125 2.796875 -3.066406 2.441406 -3.066406 C 2.292969 -3.066406 2.113281 -3.039062 1.894531 -2.980469 L 1.980469 -3.660156 C 2.03125 -3.65625 2.074219 -3.652344 2.105469 -3.652344 C 2.433594 -3.652344 2.730469 -3.738281 2.996094 -3.910156 C 3.257812 -4.082031 3.390625 -4.347656 3.390625 -4.703125 C 3.390625 -4.988281 3.292969 -5.222656 3.101562 -5.410156 C 2.910156 -5.597656 2.664062 -5.6875 2.359375 -5.6875 C 2.058594 -5.6875 1.808594 -5.59375 1.605469 -5.40625 C 1.40625 -5.214844 1.277344 -4.933594 1.21875 -4.554688 L 0.445312 -4.691406 C 0.542969 -5.210938 0.757812 -5.613281 1.089844 -5.898438 C 1.425781 -6.183594 1.84375 -6.324219 2.34375 -6.324219 C 2.6875 -6.324219 3.003906 -6.25 3.292969 -6.105469 C 3.582031 -5.957031 3.800781 -5.753906 3.957031 -5.5 C 4.109375 -5.246094 4.183594 -4.972656 4.183594 -4.6875 C 4.183594 -4.414062 4.113281 -4.167969 3.964844 -3.945312 C 3.820312 -3.722656 3.605469 -3.542969 3.316406 -3.410156 C 3.691406 -3.324219 3.980469 -3.148438 4.183594 -2.875 C 4.390625 -2.605469 4.496094 -2.265625 4.496094 -1.859375 C 4.496094 -1.3125 4.292969 -0.84375 3.894531 -0.460938 C 3.492188 -0.078125 2.984375 0.113281 2.371094 0.113281 C 1.820312 0.113281 1.359375 -0.0546875 0.996094 -0.382812 C 0.628906 -0.710938 0.421875 -1.140625 0.371094 -1.664062 Z M 0.371094 -1.664062 "/>
</g>
<g id="glyph-0-4">
<path d="M 2.84375 0 L 2.84375 -1.507812 L 0.113281 -1.507812 L 0.113281 -2.21875 L 2.988281 -6.300781 L 3.617188 -6.300781 L 3.617188 -2.21875 L 4.46875 -2.21875 L 4.46875 -1.507812 L 3.617188 -1.507812 L 3.617188 0 L 2.84375 0 M 2.84375 -2.21875 L 2.84375 -5.058594 L 0.871094 -2.21875 Z M 2.84375 -2.21875 "/>
</g>
<g id="glyph-0-5">
<path d="M 0.417969 -5.472656 L 0.417969 -6.21875 L 4.496094 -6.21875 L 4.496094 -5.617188 C 4.09375 -5.1875 3.695312 -4.621094 3.300781 -3.914062 C 2.910156 -3.207031 2.605469 -2.480469 2.390625 -1.730469 C 2.234375 -1.203125 2.136719 -0.628906 2.09375 0 L 1.296875 0 C 1.304688 -0.496094 1.402344 -1.09375 1.589844 -1.796875 C 1.777344 -2.496094 2.042969 -3.175781 2.390625 -3.828125 C 2.738281 -4.476562 3.109375 -5.027344 3.503906 -5.472656 Z M 0.417969 -5.472656 "/>
</g>
<g id="glyph-0-6">
<path d="M 1.554688 -3.417969 C 1.234375 -3.535156 0.996094 -3.699219 0.84375 -3.917969 C 0.6875 -4.136719 0.609375 -4.398438 0.609375 -4.699219 C 0.609375 -5.160156 0.773438 -5.542969 1.105469 -5.855469 C 1.433594 -6.167969 1.871094 -6.324219 2.417969 -6.324219 C 2.96875 -6.324219 3.410156 -6.164062 3.746094 -5.847656 C 4.082031 -5.527344 4.25 -5.136719 4.25 -4.679688 C 4.25 -4.386719 4.171875 -4.132812 4.019531 -3.917969 C 3.867188 -3.699219 3.632812 -3.535156 3.320312 -3.417969 C 3.707031 -3.289062 4.003906 -3.085938 4.203125 -2.804688 C 4.40625 -2.523438 4.507812 -2.191406 4.507812 -1.800781 C 4.507812 -1.261719 4.316406 -0.808594 3.9375 -0.441406 C 3.554688 -0.0742188 3.054688 0.109375 2.433594 0.109375 C 1.808594 0.109375 1.308594 -0.078125 0.929688 -0.445312 C 0.546875 -0.8125 0.355469 -1.273438 0.355469 -1.820312 C 0.355469 -2.230469 0.460938 -2.574219 0.667969 -2.851562 C 0.875 -3.128906 1.171875 -3.316406 1.554688 -3.417969 M 1.402344 -4.726562 C 1.402344 -4.429688 1.496094 -4.183594 1.6875 -3.996094 C 1.878906 -3.808594 2.128906 -3.710938 2.4375 -3.710938 C 2.734375 -3.710938 2.976562 -3.804688 3.167969 -3.992188 C 3.359375 -4.179688 3.453125 -4.410156 3.453125 -4.683594 C 3.453125 -4.96875 3.355469 -5.207031 3.160156 -5.398438 C 2.964844 -5.59375 2.71875 -5.6875 2.429688 -5.6875 C 2.132812 -5.6875 1.886719 -5.59375 1.691406 -5.40625 C 1.5 -5.214844 1.402344 -4.988281 1.402344 -4.726562 M 1.152344 -1.816406 C 1.152344 -1.597656 1.203125 -1.382812 1.308594 -1.175781 C 1.414062 -0.972656 1.570312 -0.8125 1.773438 -0.699219 C 1.980469 -0.585938 2.203125 -0.527344 2.441406 -0.527344 C 2.808594 -0.527344 3.117188 -0.648438 3.355469 -0.886719 C 3.597656 -1.121094 3.71875 -1.425781 3.71875 -1.792969 C 3.71875 -2.164062 3.59375 -2.472656 3.34375 -2.714844 C 3.097656 -2.960938 2.789062 -3.082031 2.414062 -3.082031 C 2.050781 -3.082031 1.75 -2.960938 1.511719 -2.71875 C 1.269531 -2.480469 1.152344 -2.179688 1.152344 -1.816406 Z M 1.152344 -1.816406 "/>
</g>
<g id="glyph-0-7">
<path d="M 0.480469 -1.457031 L 1.226562 -1.527344 C 1.289062 -1.175781 1.40625 -0.921875 1.585938 -0.765625 C 1.761719 -0.605469 1.992188 -0.527344 2.269531 -0.527344 C 2.507812 -0.527344 2.714844 -0.582031 2.894531 -0.691406 C 3.074219 -0.800781 3.21875 -0.945312 3.335938 -1.128906 C 3.449219 -1.308594 3.542969 -1.554688 3.621094 -1.863281 C 3.699219 -2.175781 3.738281 -2.488281 3.738281 -2.808594 C 3.738281 -2.84375 3.738281 -2.894531 3.734375 -2.964844 C 3.578125 -2.71875 3.367188 -2.519531 3.101562 -2.367188 C 2.832031 -2.210938 2.542969 -2.136719 2.230469 -2.136719 C 1.707031 -2.136719 1.265625 -2.324219 0.90625 -2.703125 C 0.546875 -3.082031 0.367188 -3.578125 0.367188 -4.199219 C 0.367188 -4.835938 0.554688 -5.351562 0.929688 -5.742188 C 1.308594 -6.128906 1.777344 -6.324219 2.347656 -6.324219 C 2.753906 -6.324219 3.128906 -6.214844 3.46875 -5.996094 C 3.808594 -5.773438 4.066406 -5.460938 4.242188 -5.050781 C 4.417969 -4.644531 4.507812 -4.050781 4.507812 -3.277344 C 4.507812 -2.472656 4.421875 -1.832031 4.246094 -1.355469 C 4.070312 -0.878906 3.8125 -0.515625 3.464844 -0.265625 C 3.121094 -0.015625 2.714844 0.109375 2.25 0.109375 C 1.757812 0.109375 1.355469 -0.03125 1.042969 -0.304688 C 0.730469 -0.578125 0.542969 -0.960938 0.480469 -1.457031 M 3.648438 -4.238281 C 3.648438 -4.679688 3.53125 -5.03125 3.292969 -5.292969 C 3.058594 -5.554688 2.773438 -5.683594 2.441406 -5.683594 C 2.097656 -5.683594 1.796875 -5.542969 1.542969 -5.265625 C 1.289062 -4.984375 1.160156 -4.617188 1.160156 -4.171875 C 1.160156 -3.769531 1.28125 -3.445312 1.523438 -3.195312 C 1.765625 -2.945312 2.0625 -2.820312 2.417969 -2.820312 C 2.777344 -2.820312 3.070312 -2.945312 3.300781 -3.195312 C 3.53125 -3.445312 3.648438 -3.792969 3.648438 -4.238281 Z M 3.648438 -4.238281 "/>
</g>
<g id="glyph-1-0">
<path d="M 0.492188 -2.53125 L 1.476562 -2.617188 C 1.523438 -2.222656 1.632812 -1.898438 1.800781 -1.644531 C 1.972656 -1.394531 2.234375 -1.191406 2.59375 -1.035156 C 2.953125 -0.878906 3.355469 -0.800781 3.804688 -0.800781 C 4.199219 -0.800781 4.550781 -0.859375 4.855469 -0.976562 C 5.160156 -1.09375 5.386719 -1.257812 5.535156 -1.464844 C 5.683594 -1.667969 5.757812 -1.894531 5.757812 -2.136719 C 5.757812 -2.382812 5.6875 -2.601562 5.542969 -2.785156 C 5.398438 -2.96875 5.164062 -3.125 4.835938 -3.25 C 4.621094 -3.332031 4.15625 -3.460938 3.433594 -3.632812 C 2.707031 -3.808594 2.203125 -3.972656 1.914062 -4.125 C 1.535156 -4.320312 1.257812 -4.566406 1.070312 -4.859375 C 0.886719 -5.148438 0.796875 -5.476562 0.796875 -5.839844 C 0.796875 -6.234375 0.90625 -6.605469 1.132812 -6.953125 C 1.359375 -7.296875 1.6875 -7.5625 2.121094 -7.738281 C 2.554688 -7.917969 3.035156 -8.007812 3.566406 -8.007812 C 4.148438 -8.007812 4.664062 -7.914062 5.109375 -7.726562 C 5.554688 -7.539062 5.898438 -7.261719 6.140625 -6.898438 C 6.378906 -6.53125 6.507812 -6.117188 6.527344 -5.65625 L 5.527344 -5.582031 C 5.472656 -6.078125 5.292969 -6.453125 4.980469 -6.707031 C 4.671875 -6.960938 4.214844 -7.089844 3.609375 -7.089844 C 2.980469 -7.089844 2.519531 -6.972656 2.230469 -6.742188 C 1.945312 -6.511719 1.800781 -6.234375 1.800781 -5.90625 C 1.800781 -5.625 1.902344 -5.390625 2.105469 -5.210938 C 2.304688 -5.027344 2.828125 -4.839844 3.675781 -4.648438 C 4.523438 -4.457031 5.105469 -4.289062 5.417969 -4.148438 C 5.878906 -3.933594 6.214844 -3.667969 6.433594 -3.34375 C 6.652344 -3.019531 6.761719 -2.644531 6.761719 -2.222656 C 6.761719 -1.804688 6.640625 -1.410156 6.402344 -1.039062 C 6.164062 -0.667969 5.816406 -0.378906 5.367188 -0.175781 C 4.917969 0.03125 4.414062 0.132812 3.851562 0.132812 C 3.136719 0.132812 2.542969 0.03125 2.058594 -0.175781 C 1.578125 -0.386719 1.199219 -0.699219 0.925781 -1.113281 C 0.652344 -1.53125 0.507812 -2.003906 0.492188 -2.53125 Z M 0.492188 -2.53125 "/>
</g>
<g id="glyph-1-1">
<path d="M 2.835938 -0.863281 L 2.976562 -0.0117188 C 2.703125 0.046875 2.460938 0.0742188 2.246094 0.0742188 C 1.894531 0.0742188 1.621094 0.0195312 1.429688 -0.0898438 C 1.234375 -0.203125 1.097656 -0.347656 1.019531 -0.527344 C 0.941406 -0.710938 0.902344 -1.089844 0.902344 -1.671875 L 0.902344 -4.953125 L 0.195312 -4.953125 L 0.195312 -5.703125 L 0.902344 -5.703125 L 0.902344 -7.117188 L 1.863281 -7.695312 L 1.863281 -5.703125 L 2.835938 -5.703125 L 2.835938 -4.953125 L 1.863281 -4.953125 L 1.863281 -1.617188 C 1.863281 -1.339844 1.878906 -1.164062 1.914062 -1.085938 C 1.949219 -1.007812 2.003906 -0.945312 2.082031 -0.898438 C 2.160156 -0.851562 2.269531 -0.828125 2.410156 -0.828125 C 2.519531 -0.828125 2.660156 -0.839844 2.835938 -0.863281 Z M 2.835938 -0.863281 "/>
</g>
<g id="glyph-1-2">
<path d="M 0.714844 0 L 0.714844 -5.703125 L 1.585938 -5.703125 L 1.585938 -4.839844 C 1.804688 -5.242188 2.011719 -5.511719 2.199219 -5.640625 C 2.386719 -5.769531 2.59375 -5.832031 2.820312 -5.832031 C 3.144531 -5.832031 3.476562 -5.730469 3.8125 -5.523438 L 3.480469 -4.625 C 3.242188 -4.765625 3.007812 -4.832031 2.773438 -4.835938 C 2.558594 -4.832031 2.371094 -4.769531 2.203125 -4.644531 C 2.035156 -4.515625 1.914062 -4.339844 1.84375 -4.113281 C 1.734375 -3.769531 1.679688 -3.394531 1.679688 -2.984375 L 1.679688 0 Z M 0.714844 0 "/>
</g>
<g id="glyph-1-3">
<path d="M 4.628906 -1.835938 L 5.628906 -1.714844 C 5.472656 -1.128906 5.179688 -0.675781 4.753906 -0.355469 C 4.328125 -0.03125 3.78125 0.128906 3.121094 0.128906 C 2.285156 0.128906 1.625 -0.128906 1.136719 -0.640625 C 0.648438 -1.15625 0.402344 -1.875 0.402344 -2.804688 C 0.402344 -3.761719 0.648438 -4.507812 1.144531 -5.039062 C 1.636719 -5.566406 2.277344 -5.832031 3.066406 -5.832031 C 3.828125 -5.832031 4.453125 -5.574219 4.9375 -5.054688 C 5.417969 -4.535156 5.660156 -3.804688 5.660156 -2.863281 C 5.660156 -2.804688 5.660156 -2.71875 5.65625 -2.605469 L 1.402344 -2.605469 C 1.4375 -1.976562 1.613281 -1.5 1.933594 -1.164062 C 2.253906 -0.832031 2.648438 -0.664062 3.125 -0.664062 C 3.480469 -0.664062 3.78125 -0.757812 4.035156 -0.945312 C 4.285156 -1.132812 4.484375 -1.429688 4.628906 -1.835938 M 1.457031 -3.398438 L 4.640625 -3.398438 C 4.597656 -3.878906 4.476562 -4.238281 4.273438 -4.480469 C 3.96875 -4.851562 3.566406 -5.039062 3.078125 -5.039062 C 2.632812 -5.039062 2.261719 -4.890625 1.957031 -4.59375 C 1.65625 -4.296875 1.488281 -3.898438 1.457031 -3.398438 Z M 1.457031 -3.398438 "/>
</g>
<g id="glyph-1-4">
<path d="M 0.730469 0 L 0.730469 -7.875 L 1.695312 -7.875 L 1.695312 -3.382812 L 3.984375 -5.703125 L 5.238281 -5.703125 L 3.054688 -3.585938 L 5.457031 0 L 4.265625 0 L 2.378906 -2.917969 L 1.695312 -2.261719 L 1.695312 0 Z M 0.730469 0 "/>
</g>
<g id="glyph-1-5">
<path d="M 4.425781 0 L 4.425781 -0.71875 C 4.0625 -0.152344 3.53125 0.128906 2.832031 0.128906 C 2.375 0.128906 1.957031 0.00390625 1.578125 -0.246094 C 1.195312 -0.496094 0.898438 -0.847656 0.691406 -1.296875 C 0.480469 -1.746094 0.375 -2.261719 0.375 -2.847656 C 0.375 -3.414062 0.472656 -3.933594 0.660156 -4.394531 C 0.851562 -4.859375 1.136719 -5.214844 1.515625 -5.460938 C 1.894531 -5.710938 2.320312 -5.832031 2.789062 -5.832031 C 3.132812 -5.832031 3.4375 -5.761719 3.707031 -5.617188 C 3.976562 -5.46875 4.191406 -5.28125 4.359375 -5.046875 L 4.359375 -7.875 L 5.324219 -7.875 L 5.324219 0 L 4.425781 0 M 1.371094 -2.847656 C 1.371094 -2.117188 1.523438 -1.570312 1.832031 -1.207031 C 2.140625 -0.847656 2.503906 -0.664062 2.921875 -0.664062 C 3.34375 -0.664062 3.703125 -0.839844 4 -1.183594 C 4.292969 -1.53125 4.441406 -2.058594 4.441406 -2.765625 C 4.441406 -3.546875 4.292969 -4.121094 3.992188 -4.484375 C 3.691406 -4.851562 3.320312 -5.03125 2.878906 -5.03125 C 2.449219 -5.03125 2.089844 -4.855469 1.800781 -4.507812 C 1.515625 -4.15625 1.371094 -3.601562 1.371094 -2.847656 Z M 1.371094 -2.847656 "/>
</g>
<g id="glyph-1-6">
<path d="M 0.730469 -6.761719 L 0.730469 -7.875 L 1.695312 -7.875 L 1.695312 -6.761719 L 0.730469 -6.761719 M 0.730469 0 L 0.730469 -5.703125 L 1.695312 -5.703125 L 1.695312 0 Z M 0.730469 0 "/>
</g>
<g id="glyph-1-7">
<path d="M 0.957031 0 L 0.957031 -4.953125 L 0.101562 -4.953125 L 0.101562 -5.703125 L 0.957031 -5.703125 L 0.957031 -6.3125 C 0.957031 -6.695312 0.988281 -6.980469 1.058594 -7.164062 C 1.152344 -7.414062 1.316406 -7.617188 1.550781 -7.773438 C 1.785156 -7.929688 2.113281 -8.007812 2.535156 -8.007812 C 2.808594 -8.007812 3.109375 -7.976562 3.4375 -7.910156 L 3.292969 -7.070312 C 3.09375 -7.105469 2.902344 -7.121094 2.722656 -7.121094 C 2.429688 -7.121094 2.222656 -7.058594 2.101562 -6.933594 C 1.976562 -6.808594 1.917969 -6.574219 1.917969 -6.230469 L 1.917969 -5.703125 L 3.03125 -5.703125 L 3.03125 -4.953125 L 1.917969 -4.953125 L 1.917969 0 Z M 0.957031 0 "/>
</g>
<g id="glyph-1-8">
<path d="M 4.445312 -0.703125 C 4.089844 -0.398438 3.746094 -0.183594 3.414062 -0.0585938 C 3.082031 0.0664062 2.726562 0.128906 2.347656 0.128906 C 1.71875 0.128906 1.238281 -0.0234375 0.902344 -0.332031 C 0.566406 -0.636719 0.398438 -1.027344 0.398438 -1.503906 C 0.398438 -1.78125 0.460938 -2.039062 0.589844 -2.269531 C 0.714844 -2.5 0.882812 -2.6875 1.085938 -2.824219 C 1.292969 -2.964844 1.523438 -3.070312 1.78125 -3.140625 C 1.972656 -3.191406 2.257812 -3.242188 2.640625 -3.289062 C 3.421875 -3.378906 3.996094 -3.492188 4.367188 -3.621094 C 4.371094 -3.753906 4.371094 -3.835938 4.371094 -3.871094 C 4.371094 -4.265625 4.28125 -4.542969 4.097656 -4.703125 C 3.851562 -4.921875 3.484375 -5.03125 2.996094 -5.03125 C 2.542969 -5.03125 2.207031 -4.953125 1.988281 -4.792969 C 1.773438 -4.632812 1.613281 -4.351562 1.507812 -3.949219 L 0.5625 -4.078125 C 0.648438 -4.480469 0.792969 -4.808594 0.988281 -5.058594 C 1.183594 -5.304688 1.46875 -5.496094 1.84375 -5.632812 C 2.214844 -5.765625 2.644531 -5.832031 3.136719 -5.832031 C 3.625 -5.832031 4.019531 -5.777344 4.324219 -5.660156 C 4.628906 -5.546875 4.851562 -5.402344 4.996094 -5.230469 C 5.136719 -5.054688 5.238281 -4.835938 5.296875 -4.570312 C 5.328125 -4.40625 5.34375 -4.109375 5.34375 -3.679688 L 5.34375 -2.390625 C 5.34375 -1.492188 5.363281 -0.921875 5.40625 -0.683594 C 5.445312 -0.445312 5.527344 -0.21875 5.648438 0 L 4.640625 0 C 4.539062 -0.199219 4.476562 -0.433594 4.445312 -0.703125 M 4.367188 -2.863281 C 4.015625 -2.71875 3.488281 -2.597656 2.789062 -2.496094 C 2.390625 -2.441406 2.109375 -2.375 1.945312 -2.304688 C 1.78125 -2.234375 1.652344 -2.128906 1.5625 -1.988281 C 1.472656 -1.851562 1.429688 -1.699219 1.429688 -1.53125 C 1.429688 -1.273438 1.527344 -1.058594 1.722656 -0.886719 C 1.917969 -0.714844 2.203125 -0.628906 2.578125 -0.628906 C 2.949219 -0.628906 3.28125 -0.710938 3.570312 -0.871094 C 3.863281 -1.035156 4.074219 -1.257812 4.210938 -1.542969 C 4.316406 -1.761719 4.367188 -2.082031 4.367188 -2.507812 Z M 4.367188 -2.863281 "/>
</g>
<g id="glyph-1-9">
<path d="M 0.726562 0 L 0.726562 -5.703125 L 1.59375 -5.703125 L 1.59375 -4.894531 C 2.015625 -5.519531 2.621094 -5.832031 3.410156 -5.832031 C 3.753906 -5.832031 4.070312 -5.769531 4.359375 -5.648438 C 4.648438 -5.523438 4.863281 -5.363281 5.007812 -5.160156 C 5.148438 -4.960938 5.25 -4.722656 5.304688 -4.445312 C 5.34375 -4.269531 5.359375 -3.953125 5.359375 -3.507812 L 5.359375 0 L 4.394531 0 L 4.394531 -3.46875 C 4.394531 -3.863281 4.355469 -4.15625 4.28125 -4.351562 C 4.207031 -4.546875 4.070312 -4.703125 3.878906 -4.820312 C 3.6875 -4.9375 3.464844 -4.996094 3.207031 -4.996094 C 2.792969 -4.996094 2.4375 -4.863281 2.140625 -4.601562 C 1.839844 -4.339844 1.691406 -3.84375 1.691406 -3.117188 L 1.691406 0 Z M 0.726562 0 "/>
</g>
<g id="glyph-1-10">
<path d="M 4.445312 -2.089844 L 5.398438 -1.964844 C 5.292969 -1.3125 5.027344 -0.796875 4.601562 -0.425781 C 4.171875 -0.0546875 3.648438 0.128906 3.023438 0.128906 C 2.242188 0.128906 1.617188 -0.125 1.140625 -0.636719 C 0.667969 -1.148438 0.429688 -1.878906 0.429688 -2.832031 C 0.429688 -3.445312 0.53125 -3.984375 0.734375 -4.445312 C 0.941406 -4.910156 1.25 -5.253906 1.667969 -5.488281 C 2.085938 -5.71875 2.539062 -5.832031 3.03125 -5.832031 C 3.648438 -5.832031 4.15625 -5.675781 4.550781 -5.363281 C 4.941406 -5.050781 5.195312 -4.605469 5.304688 -4.027344 L 4.367188 -3.882812 C 4.277344 -4.265625 4.117188 -4.554688 3.890625 -4.75 C 3.664062 -4.941406 3.390625 -5.039062 3.066406 -5.039062 C 2.578125 -5.039062 2.183594 -4.863281 1.878906 -4.515625 C 1.574219 -4.164062 1.421875 -3.613281 1.421875 -2.859375 C 1.421875 -2.089844 1.570312 -1.535156 1.863281 -1.1875 C 2.15625 -0.839844 2.539062 -0.664062 3.011719 -0.664062 C 3.394531 -0.664062 3.710938 -0.78125 3.964844 -1.015625 C 4.21875 -1.246094 4.378906 -1.605469 4.445312 -2.089844 Z M 4.445312 -2.089844 "/>
</g>
<g id="glyph-1-11">
</g>
<g id="glyph-1-12">
<path d="M 2.574219 2.316406 C 2.039062 1.640625 1.589844 0.855469 1.21875 -0.046875 C 0.851562 -0.949219 0.664062 -1.886719 0.664062 -2.851562 C 0.664062 -3.703125 0.804688 -4.519531 1.078125 -5.300781 C 1.402344 -6.207031 1.898438 -7.109375 2.574219 -8.007812 L 3.265625 -8.007812 C 2.832031 -7.261719 2.546875 -6.730469 2.40625 -6.414062 C 2.1875 -5.917969 2.015625 -5.402344 1.890625 -4.867188 C 1.738281 -4.195312 1.660156 -3.523438 1.660156 -2.847656 C 1.660156 -1.125 2.195312 0.597656 3.265625 2.316406 Z M 2.574219 2.316406 "/>
</g>
<g id="glyph-1-13">
<path d="M 0.726562 0 L 0.726562 -5.703125 L 1.589844 -5.703125 L 1.589844 -4.902344 C 1.769531 -5.183594 2.007812 -5.40625 2.304688 -5.578125 C 2.601562 -5.746094 2.941406 -5.832031 3.320312 -5.832031 C 3.742188 -5.832031 4.089844 -5.746094 4.359375 -5.570312 C 4.628906 -5.394531 4.820312 -5.148438 4.929688 -4.835938 C 5.382812 -5.5 5.96875 -5.832031 6.691406 -5.832031 C 7.257812 -5.832031 7.691406 -5.675781 7.996094 -5.363281 C 8.300781 -5.050781 8.453125 -4.566406 8.453125 -3.914062 L 8.453125 0 L 7.492188 0 L 7.492188 -3.59375 C 7.492188 -3.980469 7.460938 -4.257812 7.398438 -4.429688 C 7.335938 -4.597656 7.222656 -4.734375 7.058594 -4.839844 C 6.894531 -4.941406 6.699219 -4.996094 6.476562 -4.996094 C 6.078125 -4.996094 5.742188 -4.863281 5.476562 -4.59375 C 5.214844 -4.328125 5.082031 -3.902344 5.082031 -3.3125 L 5.082031 0 L 4.113281 0 L 4.113281 -3.707031 C 4.113281 -4.136719 4.035156 -4.457031 3.878906 -4.671875 C 3.71875 -4.886719 3.460938 -4.996094 3.105469 -4.996094 C 2.832031 -4.996094 2.582031 -4.921875 2.351562 -4.78125 C 2.117188 -4.636719 1.953125 -4.425781 1.847656 -4.152344 C 1.742188 -3.875 1.691406 -3.480469 1.691406 -2.960938 L 1.691406 0 Z M 0.726562 0 "/>
</g>
<g id="glyph-1-14">
<path d="M 1.359375 2.316406 L 0.664062 2.316406 C 1.738281 0.597656 2.273438 -1.125 2.273438 -2.847656 C 2.273438 -3.519531 2.195312 -4.1875 2.039062 -4.851562 C 1.917969 -5.386719 1.75 -5.902344 1.53125 -6.398438 C 1.390625 -6.71875 1.101562 -7.257812 0.664062 -8.007812 L 1.359375 -8.007812 C 2.03125 -7.109375 2.53125 -6.207031 2.851562 -5.300781 C 3.128906 -4.519531 3.265625 -3.703125 3.265625 -2.851562 C 3.265625 -1.886719 3.082031 -0.949219 2.710938 -0.046875 C 2.339844 0.855469 1.890625 1.640625 1.359375 2.316406 Z M 1.359375 2.316406 "/>
</g>
<g id="glyph-2-0">
<path d="M 0 -0.804688 L -7.875 -0.804688 L -7.875 -1.847656 L -3.96875 -1.847656 L -7.875 -5.757812 L -7.875 -7.171875 L -4.683594 -3.867188 L 0 -7.316406 L 0 -5.941406 L -3.984375 -3.136719 L -2.726562 -1.847656 L 0 -1.847656 Z M 0 -0.804688 "/>
</g>
<g id="glyph-2-1">
<path d="M 0 -4.464844 L -0.835938 -4.464844 C -0.191406 -4.019531 0.128906 -3.414062 0.128906 -2.652344 C 0.128906 -2.316406 0.0625 -2.003906 -0.0625 -1.710938 C -0.191406 -1.417969 -0.355469 -1.203125 -0.550781 -1.0625 C -0.746094 -0.917969 -0.984375 -0.820312 -1.265625 -0.761719 C -1.457031 -0.722656 -1.757812 -0.703125 -2.171875 -0.703125 L -5.703125 -0.703125 L -5.703125 -1.671875 L -2.539062 -1.671875 C -2.035156 -1.671875 -1.695312 -1.691406 -1.519531 -1.730469 C -1.265625 -1.789062 -1.066406 -1.917969 -0.921875 -2.117188 C -0.777344 -2.3125 -0.703125 -2.554688 -0.703125 -2.847656 C -0.703125 -3.136719 -0.777344 -3.410156 -0.925781 -3.664062 C -1.074219 -3.917969 -1.277344 -4.097656 -1.535156 -4.203125 C -1.789062 -4.308594 -2.160156 -4.359375 -2.648438 -4.359375 L -5.703125 -4.359375 L -5.703125 -5.328125 L 0 -5.328125 Z M 0 -4.464844 "/>
</g>
<g id="glyph-2-2">
<path d="M 0 -0.726562 L -5.703125 -0.726562 L -5.703125 -1.589844 L -4.902344 -1.589844 C -5.183594 -1.769531 -5.40625 -2.007812 -5.578125 -2.304688 C -5.746094 -2.601562 -5.832031 -2.941406 -5.832031 -3.320312 C -5.832031 -3.742188 -5.746094 -4.089844 -5.570312 -4.359375 C -5.394531 -4.628906 -5.148438 -4.820312 -4.835938 -4.929688 C -5.5 -5.382812 -5.832031 -5.96875 -5.832031 -6.691406 C -5.832031 -7.257812 -5.675781 -7.691406 -5.363281 -7.996094 C -5.050781 -8.300781 -4.566406 -8.453125 -3.914062 -8.453125 L 0 -8.453125 L 0 -7.492188 L -3.59375 -7.492188 C -3.980469 -7.492188 -4.257812 -7.460938 -4.429688 -7.398438 C -4.597656 -7.335938 -4.734375 -7.222656 -4.839844 -7.058594 C -4.941406 -6.894531 -4.996094 -6.699219 -4.996094 -6.476562 C -4.996094 -6.078125 -4.863281 -5.742188 -4.59375 -5.476562 C -4.328125 -5.214844 -3.902344 -5.082031 -3.3125 -5.082031 L 0 -5.082031 L 0 -4.113281 L -3.707031 -4.113281 C -4.136719 -4.113281 -4.457031 -4.035156 -4.671875 -3.878906 C -4.886719 -3.71875 -4.996094 -3.460938 -4.996094 -3.105469 C -4.996094 -2.832031 -4.921875 -2.582031 -4.78125 -2.351562 C -4.636719 -2.117188 -4.425781 -1.953125 -4.152344 -1.847656 C -3.875 -1.742188 -3.480469 -1.691406 -2.960938 -1.691406 L 0 -1.691406 Z M 0 -0.726562 "/>
</g>
<g id="glyph-2-3">
<path d="M 0 -0.703125 L -7.875 -0.703125 L -7.875 -1.671875 L 0 -1.671875 Z M 0 -0.703125 "/>
</g>
<g id="glyph-2-4">
<path d="M -0.703125 -4.445312 C -0.398438 -4.089844 -0.183594 -3.746094 -0.0585938 -3.414062 C 0.0664062 -3.082031 0.128906 -2.726562 0.128906 -2.347656 C 0.128906 -1.71875 -0.0234375 -1.238281 -0.332031 -0.902344 C -0.636719 -0.566406 -1.027344 -0.398438 -1.503906 -0.398438 C -1.78125 -0.398438 -2.039062 -0.460938 -2.269531 -0.589844 C -2.5 -0.714844 -2.6875 -0.882812 -2.824219 -1.085938 C -2.964844 -1.292969 -3.070312 -1.527344 -3.140625 -1.785156 C -3.191406 -1.972656 -3.242188 -2.257812 -3.289062 -2.640625 C -3.378906 -3.421875 -3.492188 -3.996094 -3.621094 -4.367188 C -3.753906 -4.371094 -3.835938 -4.371094 -3.871094 -4.371094 C -4.265625 -4.371094 -4.542969 -4.28125 -4.703125 -4.097656 C -4.921875 -3.851562 -5.03125 -3.484375 -5.03125 -2.996094 C -5.03125 -2.542969 -4.953125 -2.207031 -4.792969 -1.988281 C -4.632812 -1.773438 -4.351562 -1.613281 -3.949219 -1.507812 L -4.078125 -0.5625 C -4.480469 -0.648438 -4.808594 -0.792969 -5.058594 -0.988281 C -5.304688 -1.183594 -5.496094 -1.46875 -5.632812 -1.84375 C -5.765625 -2.214844 -5.832031 -2.644531 -5.832031 -3.136719 C -5.832031 -3.625 -5.777344 -4.019531 -5.660156 -4.324219 C -5.546875 -4.628906 -5.402344 -4.851562 -5.230469 -4.996094 C -5.054688 -5.136719 -4.835938 -5.238281 -4.570312 -5.296875 C -4.40625 -5.328125 -4.109375 -5.34375 -3.679688 -5.34375 L -2.390625 -5.34375 C -1.492188 -5.34375 -0.921875 -5.363281 -0.683594 -5.40625 C -0.445312 -5.445312 -0.21875 -5.527344 0 -5.648438 L 0 -4.640625 C -0.199219 -4.539062 -0.433594 -4.476562 -0.703125 -4.445312 M -2.863281 -4.367188 C -2.71875 -4.015625 -2.597656 -3.488281 -2.496094 -2.789062 C -2.441406 -2.390625 -2.375 -2.109375 -2.304688 -1.945312 C -2.234375 -1.78125 -2.128906 -1.652344 -1.988281 -1.5625 C -1.851562 -1.472656 -1.699219 -1.429688 -1.53125 -1.429688 C -1.273438 -1.429688 -1.058594 -1.527344 -0.886719 -1.722656 C -0.714844 -1.917969 -0.628906 -2.203125 -0.628906 -2.578125 C -0.628906 -2.949219 -0.710938 -3.28125 -0.871094 -3.570312 C -1.035156 -3.863281 -1.257812 -4.074219 -1.542969 -4.210938 C -1.761719 -4.316406 -2.082031 -4.367188 -2.507812 -4.367188 Z M -2.863281 -4.367188 "/>
</g>
<g id="glyph-2-5">
<path d="M -0.863281 -2.835938 L -0.0117188 -2.976562 C 0.046875 -2.703125 0.0742188 -2.460938 0.0742188 -2.246094 C 0.0742188 -1.894531 0.0195312 -1.621094 -0.0898438 -1.429688 C -0.203125 -1.234375 -0.347656 -1.097656 -0.527344 -1.019531 C -0.710938 -0.941406 -1.089844 -0.902344 -1.671875 -0.902344 L -4.953125 -0.902344 L -4.953125 -0.195312 L -5.703125 -0.195312 L -5.703125 -0.902344 L -7.117188 -0.902344 L -7.695312 -1.863281 L -5.703125 -1.863281 L -5.703125 -2.835938 L -4.953125 -2.835938 L -4.953125 -1.863281 L -1.617188 -1.863281 C -1.339844 -1.863281 -1.164062 -1.878906 -1.085938 -1.914062 C -1.007812 -1.949219 -0.945312 -2.003906 -0.898438 -2.082031 C -0.851562 -2.160156 -0.828125 -2.269531 -0.828125 -2.410156 C -0.828125 -2.519531 -0.839844 -2.660156 -0.863281 -2.835938 Z M -0.863281 -2.835938 "/>
</g>
<g id="glyph-2-6">
<path d="M -6.761719 -0.730469 L -7.875 -0.730469 L -7.875 -1.699219 L -6.761719 -1.699219 L -6.761719 -0.730469 M 0 -0.730469 L -5.703125 -0.730469 L -5.703125 -1.699219 L 0 -1.695312 Z M 0 -0.730469 "/>
</g>
<g id="glyph-2-7">
<path d="M 0 -2.308594 L -5.703125 -0.140625 L -5.703125 -1.160156 L -2.289062 -2.382812 C -1.917969 -2.515625 -1.535156 -2.640625 -1.136719 -2.75 C -1.4375 -2.835938 -1.800781 -2.957031 -2.222656 -3.109375 L -5.703125 -4.378906 L -5.703125 -5.371094 L 0 -3.210938 Z M 0 -2.308594 "/>
</g>
<g id="glyph-2-8">
</g>
<g id="glyph-2-9">
<path d="M 0 -0.957031 L -4.953125 -0.957031 L -4.953125 -0.101562 L -5.703125 -0.101562 L -5.703125 -0.957031 L -6.3125 -0.957031 C -6.695312 -0.957031 -6.980469 -0.988281 -7.164062 -1.058594 C -7.414062 -1.152344 -7.617188 -1.316406 -7.773438 -1.550781 C -7.929688 -1.785156 -8.007812 -2.113281 -8.007812 -2.535156 C -8.007812 -2.808594 -7.976562 -3.109375 -7.910156 -3.4375 L -7.070312 -3.292969 C -7.105469 -3.09375 -7.121094 -2.902344 -7.121094 -2.722656 C -7.121094 -2.429688 -7.058594 -2.222656 -6.933594 -2.101562 C -6.808594 -1.976562 -6.574219 -1.917969 -6.230469 -1.917969 L -5.703125 -1.917969 L -5.703125 -3.03125 L -4.953125 -3.03125 L -4.953125 -1.917969 L 0 -1.917969 Z M 0 -0.957031 "/>
</g>
<g id="glyph-2-10">
<path d="M 0 -0.714844 L -5.703125 -0.714844 L -5.703125 -1.585938 L -4.839844 -1.585938 C -5.242188 -1.804688 -5.511719 -2.011719 -5.640625 -2.199219 C -5.769531 -2.386719 -5.832031 -2.59375 -5.832031 -2.820312 C -5.832031 -3.144531 -5.730469 -3.476562 -5.523438 -3.8125 L -4.625 -3.480469 C -4.765625 -3.246094 -4.832031 -3.007812 -4.835938 -2.773438 C -4.832031 -2.558594 -4.769531 -2.371094 -4.644531 -2.203125 C -4.515625 -2.035156 -4.339844 -1.914062 -4.113281 -1.84375 C -3.769531 -1.734375 -3.394531 -1.679688 -2.984375 -1.679688 L 0 -1.679688 Z M 0 -0.714844 "/>
</g>
<g id="glyph-2-11">
<path d="M -1.835938 -4.628906 L -1.714844 -5.628906 C -1.128906 -5.472656 -0.675781 -5.179688 -0.355469 -4.753906 C -0.03125 -4.328125 0.128906 -3.78125 0.128906 -3.121094 C 0.128906 -2.285156 -0.128906 -1.625 -0.640625 -1.136719 C -1.15625 -0.648438 -1.875 -0.402344 -2.804688 -0.402344 C -3.761719 -0.402344 -4.507812 -0.648438 -5.039062 -1.144531 C -5.566406 -1.636719 -5.832031 -2.277344 -5.832031 -3.066406 C -5.832031 -3.828125 -5.574219 -4.453125 -5.054688 -4.9375 C -4.535156 -5.417969 -3.804688 -5.660156 -2.863281 -5.660156 C -2.804688 -5.660156 -2.71875 -5.660156 -2.605469 -5.65625 L -2.605469 -1.402344 C -1.976562 -1.4375 -1.5 -1.613281 -1.164062 -1.933594 C -0.832031 -2.253906 -0.664062 -2.648438 -0.664062 -3.125 C -0.664062 -3.480469 -0.757812 -3.78125 -0.945312 -4.035156 C -1.132812 -4.285156 -1.429688 -4.484375 -1.835938 -4.628906 M -3.398438 -1.457031 L -3.398438 -4.640625 C -3.878906 -4.597656 -4.238281 -4.476562 -4.480469 -4.273438 C -4.851562 -3.96875 -5.039062 -3.566406 -5.039062 -3.078125 C -5.039062 -2.632812 -4.890625 -2.261719 -4.59375 -1.957031 C -4.296875 -1.65625 -3.898438 -1.488281 -3.398438 -1.457031 Z M -3.398438 -1.457031 "/>
</g>
<g id="glyph-2-12">
<path d="M 0 -0.730469 L -7.875 -0.730469 L -7.875 -1.699219 L -3.382812 -1.699219 L -5.703125 -3.984375 L -5.703125 -5.238281 L -3.585938 -3.054688 L 0 -5.457031 L 0 -4.265625 L -2.917969 -2.378906 L -2.261719 -1.699219 L 0 -1.695312 Z M 0 -0.730469 "/>
</g>
<g id="glyph-2-13">
<path d="M 0 -0.726562 L -5.703125 -0.726562 L -5.703125 -1.59375 L -4.894531 -1.59375 C -5.519531 -2.015625 -5.832031 -2.621094 -5.832031 -3.410156 C -5.832031 -3.753906 -5.769531 -4.070312 -5.648438 -4.359375 C -5.523438 -4.648438 -5.363281 -4.863281 -5.160156 -5.007812 C -4.960938 -5.148438 -4.722656 -5.25 -4.445312 -5.304688 C -4.269531 -5.34375 -3.953125 -5.359375 -3.507812 -5.359375 L 0 -5.359375 L 0 -4.394531 L -3.46875 -4.394531 C -3.863281 -4.394531 -4.15625 -4.355469 -4.351562 -4.28125 C -4.546875 -4.207031 -4.703125 -4.070312 -4.820312 -3.878906 C -4.9375 -3.6875 -4.996094 -3.464844 -4.996094 -3.207031 C -4.996094 -2.792969 -4.863281 -2.4375 -4.601562 -2.140625 C -4.339844 -1.839844 -3.84375 -1.691406 -3.117188 -1.691406 L 0 -1.691406 Z M 0 -0.726562 "/>
</g>
<g id="glyph-2-14">
<path d="M -1.703125 -0.339844 L -1.851562 -1.292969 C -1.46875 -1.347656 -1.175781 -1.496094 -0.972656 -1.742188 C -0.769531 -1.988281 -0.664062 -2.332031 -0.664062 -2.773438 C -0.664062 -3.214844 -0.757812 -3.546875 -0.9375 -3.757812 C -1.117188 -3.976562 -1.332031 -4.082031 -1.574219 -4.082031 C -1.792969 -4.082031 -1.964844 -3.988281 -2.089844 -3.796875 C -2.175781 -3.664062 -2.285156 -3.335938 -2.417969 -2.808594 C -2.597656 -2.101562 -2.75 -1.609375 -2.882812 -1.335938 C -3.011719 -1.0625 -3.191406 -0.851562 -3.425781 -0.710938 C -3.65625 -0.570312 -3.910156 -0.5 -4.1875 -0.5 C -4.445312 -0.5 -4.679688 -0.558594 -4.894531 -0.675781 C -5.113281 -0.789062 -5.292969 -0.949219 -5.4375 -1.148438 C -5.546875 -1.300781 -5.640625 -1.503906 -5.71875 -1.765625 C -5.792969 -2.023438 -5.832031 -2.300781 -5.832031 -2.601562 C -5.832031 -3.046875 -5.769531 -3.441406 -5.640625 -3.777344 C -5.511719 -4.117188 -5.335938 -4.367188 -5.117188 -4.527344 C -4.894531 -4.6875 -4.601562 -4.800781 -4.234375 -4.859375 L -4.101562 -3.914062 C -4.398438 -3.871094 -4.625 -3.75 -4.789062 -3.542969 C -4.957031 -3.335938 -5.039062 -3.046875 -5.039062 -2.667969 C -5.039062 -2.226562 -4.964844 -1.910156 -4.816406 -1.71875 C -4.671875 -1.527344 -4.5 -1.433594 -4.300781 -1.433594 C -4.175781 -1.433594 -4.0625 -1.472656 -3.964844 -1.550781 C -3.859375 -1.632812 -3.773438 -1.753906 -3.707031 -1.921875 C -3.671875 -2.019531 -3.585938 -2.304688 -3.460938 -2.777344 C -3.277344 -3.460938 -3.125 -3.9375 -3.011719 -4.207031 C -2.894531 -4.480469 -2.726562 -4.691406 -2.503906 -4.84375 C -2.28125 -5 -2.003906 -5.074219 -1.675781 -5.074219 C -1.351562 -5.074219 -1.050781 -4.980469 -0.765625 -4.792969 C -0.480469 -4.605469 -0.261719 -4.335938 -0.105469 -3.980469 C 0.0507812 -3.625 0.128906 -3.222656 0.128906 -2.777344 C 0.128906 -2.035156 -0.0234375 -1.472656 -0.332031 -1.082031 C -0.640625 -0.695312 -1.097656 -0.445312 -1.703125 -0.339844 Z M -1.703125 -0.339844 "/>
</g>
<g id="glyph-3-0">
<path d="M 0.96875 0 L 0.96875 -9.449219 L 2.21875 -9.449219 L 2.21875 -4.761719 L 6.910156 -9.449219 L 8.605469 -9.449219 L 4.640625 -5.621094 L 8.777344 0 L 7.128906 0 L 3.765625 -4.78125 L 2.21875 -3.273438 L 2.21875 0 Z M 0.96875 0 "/>
</g>
<g id="glyph-3-1">
<path d="M 5.355469 0 L 5.355469 -1.003906 C 4.824219 -0.230469 4.097656 0.15625 3.183594 0.15625 C 2.78125 0.15625 2.402344 0.078125 2.054688 -0.078125 C 1.703125 -0.230469 1.441406 -0.425781 1.273438 -0.660156 C 1.101562 -0.894531 0.984375 -1.183594 0.914062 -1.519531 C 0.867188 -1.75 0.84375 -2.109375 0.84375 -2.605469 L 0.84375 -6.84375 L 2.003906 -6.84375 L 2.003906 -3.046875 C 2.003906 -2.441406 2.027344 -2.035156 2.074219 -1.824219 C 2.148438 -1.519531 2.304688 -1.28125 2.539062 -1.105469 C 2.777344 -0.929688 3.066406 -0.84375 3.414062 -0.84375 C 3.765625 -0.84375 4.089844 -0.933594 4.394531 -1.113281 C 4.699219 -1.289062 4.917969 -1.53125 5.042969 -1.839844 C 5.171875 -2.148438 5.234375 -2.59375 5.234375 -3.175781 L 5.234375 -6.84375 L 6.394531 -6.84375 L 6.394531 0 Z M 5.355469 0 "/>
</g>
<g id="glyph-3-2">
<path d="M 0.871094 0 L 0.871094 -6.84375 L 1.90625 -6.84375 L 1.90625 -5.882812 C 2.121094 -6.21875 2.410156 -6.488281 2.765625 -6.695312 C 3.121094 -6.898438 3.527344 -7 3.984375 -7 C 4.488281 -7 4.90625 -6.894531 5.230469 -6.683594 C 5.554688 -6.472656 5.785156 -6.179688 5.917969 -5.800781 C 6.457031 -6.601562 7.164062 -7 8.03125 -7 C 8.710938 -7 9.230469 -6.8125 9.597656 -6.4375 C 9.960938 -6.058594 10.144531 -5.480469 10.144531 -4.699219 L 10.144531 0 L 8.992188 0 L 8.992188 -4.3125 C 8.992188 -4.777344 8.953125 -5.109375 8.878906 -5.3125 C 8.804688 -5.519531 8.667969 -5.683594 8.46875 -5.808594 C 8.269531 -5.933594 8.039062 -5.992188 7.773438 -5.992188 C 7.292969 -5.992188 6.890625 -5.835938 6.574219 -5.515625 C 6.257812 -5.195312 6.097656 -4.679688 6.097656 -3.976562 L 6.097656 0 L 4.9375 0 L 4.9375 -4.445312 C 4.9375 -4.960938 4.84375 -5.347656 4.652344 -5.609375 C 4.464844 -5.863281 4.15625 -5.992188 3.726562 -5.992188 C 3.398438 -5.992188 3.097656 -5.90625 2.820312 -5.734375 C 2.542969 -5.5625 2.339844 -5.3125 2.21875 -4.980469 C 2.09375 -4.652344 2.03125 -4.175781 2.03125 -3.550781 L 2.03125 0 Z M 0.871094 0 "/>
</g>
<g id="glyph-3-3">
<path d="M 0.84375 0 L 0.84375 -9.449219 L 2.003906 -9.449219 L 2.003906 0 Z M 0.84375 0 "/>
</g>
<g id="glyph-3-4">
<path d="M 5.335938 -0.84375 C 4.90625 -0.480469 4.492188 -0.222656 4.097656 -0.0703125 C 3.699219 0.078125 3.273438 0.15625 2.816406 0.15625 C 2.066406 0.15625 1.488281 -0.0273438 1.082031 -0.394531 C 0.679688 -0.765625 0.476562 -1.234375 0.476562 -1.804688 C 0.476562 -2.140625 0.554688 -2.445312 0.707031 -2.722656 C 0.859375 -3 1.058594 -3.222656 1.304688 -3.390625 C 1.550781 -3.558594 1.832031 -3.683594 2.140625 -3.769531 C 2.367188 -3.832031 2.710938 -3.886719 3.171875 -3.945312 C 4.109375 -4.054688 4.796875 -4.1875 5.238281 -4.34375 C 5.246094 -4.503906 5.246094 -4.605469 5.246094 -4.648438 C 5.246094 -5.121094 5.136719 -5.453125 4.917969 -5.644531 C 4.621094 -5.90625 4.179688 -6.039062 3.597656 -6.039062 C 3.050781 -6.039062 2.648438 -5.945312 2.386719 -5.753906 C 2.128906 -5.5625 1.9375 -5.222656 1.8125 -4.738281 L 0.675781 -4.890625 C 0.78125 -5.378906 0.949219 -5.769531 1.1875 -6.066406 C 1.421875 -6.367188 1.765625 -6.597656 2.210938 -6.757812 C 2.65625 -6.917969 3.175781 -7 3.765625 -7 C 4.347656 -7 4.824219 -6.929688 5.1875 -6.792969 C 5.554688 -6.65625 5.820312 -6.484375 5.992188 -6.273438 C 6.164062 -6.066406 6.285156 -5.804688 6.355469 -5.484375 C 6.394531 -5.289062 6.414062 -4.929688 6.414062 -4.414062 L 6.414062 -2.867188 C 6.414062 -1.789062 6.4375 -1.109375 6.488281 -0.820312 C 6.535156 -0.535156 6.632812 -0.261719 6.78125 0 L 5.570312 0 C 5.449219 -0.242188 5.371094 -0.523438 5.335938 -0.84375 M 5.238281 -3.433594 C 4.820312 -3.261719 4.1875 -3.117188 3.34375 -2.996094 C 2.867188 -2.929688 2.53125 -2.851562 2.332031 -2.765625 C 2.136719 -2.679688 1.984375 -2.554688 1.875 -2.386719 C 1.769531 -2.222656 1.714844 -2.039062 1.714844 -1.835938 C 1.714844 -1.527344 1.832031 -1.269531 2.066406 -1.0625 C 2.300781 -0.855469 2.640625 -0.753906 3.09375 -0.753906 C 3.539062 -0.753906 3.9375 -0.851562 4.285156 -1.046875 C 4.632812 -1.242188 4.890625 -1.511719 5.054688 -1.851562 C 5.175781 -2.113281 5.238281 -2.5 5.238281 -3.011719 Z M 5.238281 -3.433594 "/>
</g>
<g id="glyph-3-5">
<path d="M 3.402344 -1.039062 L 3.570312 -0.0117188 C 3.242188 0.0546875 2.953125 0.0898438 2.695312 0.0898438 C 2.273438 0.0898438 1.945312 0.0234375 1.714844 -0.109375 C 1.484375 -0.242188 1.320312 -0.417969 1.226562 -0.636719 C 1.128906 -0.851562 1.082031 -1.308594 1.082031 -2.003906 L 1.082031 -5.941406 L 0.230469 -5.941406 L 0.230469 -6.84375 L 1.082031 -6.84375 L 1.082031 -8.539062 L 2.238281 -9.234375 L 2.238281 -6.84375 L 3.402344 -6.84375 L 3.402344 -5.941406 L 2.238281 -5.941406 L 2.238281 -1.941406 C 2.238281 -1.609375 2.257812 -1.394531 2.296875 -1.300781 C 2.339844 -1.207031 2.40625 -1.132812 2.496094 -1.078125 C 2.589844 -1.019531 2.722656 -0.992188 2.894531 -0.992188 C 3.023438 -0.992188 3.191406 -1.007812 3.402344 -1.039062 Z M 3.402344 -1.039062 "/>
</g>
<g id="glyph-3-6">
<path d="M 0.875 -8.113281 L 0.875 -9.449219 L 2.035156 -9.449219 L 2.035156 -8.113281 L 0.875 -8.113281 M 0.875 0 L 0.875 -6.84375 L 2.035156 -6.84375 L 2.035156 0 Z M 0.875 0 "/>
</g>
<g id="glyph-3-7">
<path d="M 2.773438 0 L 0.167969 -6.84375 L 1.390625 -6.84375 L 2.863281 -2.746094 C 3.019531 -2.304688 3.167969 -1.84375 3.300781 -1.367188 C 3.402344 -1.726562 3.546875 -2.160156 3.730469 -2.667969 L 5.253906 -6.84375 L 6.445312 -6.84375 L 3.855469 0 Z M 2.773438 0 "/>
</g>
<g id="glyph-3-8">
</g>
<g id="glyph-3-9">
<path d="M 1.148438 0 L 1.148438 -5.941406 L 0.121094 -5.941406 L 0.121094 -6.84375 L 1.148438 -6.84375 L 1.148438 -7.574219 C 1.148438 -8.03125 1.1875 -8.375 1.269531 -8.597656 C 1.382812 -8.898438 1.578125 -9.144531 1.859375 -9.328125 C 2.140625 -9.515625 2.535156 -9.609375 3.042969 -9.609375 C 3.367188 -9.609375 3.730469 -9.570312 4.125 -9.492188 L 3.949219 -8.480469 C 3.710938 -8.523438 3.484375 -8.546875 3.269531 -8.546875 C 2.914062 -8.546875 2.667969 -8.472656 2.519531 -8.320312 C 2.375 -8.171875 2.300781 -7.890625 2.300781 -7.476562 L 2.300781 -6.84375 L 3.636719 -6.84375 L 3.636719 -5.941406 L 2.300781 -5.941406 L 2.300781 0 Z M 1.148438 0 "/>
</g>
<g id="glyph-3-10">
<path d="M 0.855469 0 L 0.855469 -6.84375 L 1.902344 -6.84375 L 1.902344 -5.808594 C 2.167969 -6.292969 2.414062 -6.613281 2.640625 -6.765625 C 2.863281 -6.921875 3.113281 -7 3.382812 -7 C 3.773438 -7 4.171875 -6.875 4.578125 -6.625 L 4.175781 -5.550781 C 3.894531 -5.71875 3.609375 -5.800781 3.324219 -5.800781 C 3.070312 -5.800781 2.84375 -5.722656 2.640625 -5.570312 C 2.441406 -5.417969 2.296875 -5.207031 2.210938 -4.9375 C 2.082031 -4.523438 2.015625 -4.074219 2.015625 -3.582031 L 2.015625 0 Z M 0.855469 0 "/>
</g>
<g id="glyph-3-11">
<path d="M 5.554688 -2.203125 L 6.753906 -2.054688 C 6.566406 -1.355469 6.214844 -0.8125 5.703125 -0.425781 C 5.191406 -0.0390625 4.539062 0.15625 3.746094 0.15625 C 2.742188 0.15625 1.949219 -0.152344 1.363281 -0.769531 C 0.777344 -1.386719 0.484375 -2.25 0.484375 -3.363281 C 0.484375 -4.515625 0.78125 -5.410156 1.371094 -6.046875 C 1.964844 -6.679688 2.734375 -7 3.679688 -7 C 4.59375 -7 5.34375 -6.6875 5.921875 -6.066406 C 6.503906 -5.441406 6.792969 -4.566406 6.792969 -3.433594 C 6.792969 -3.367188 6.792969 -3.261719 6.785156 -3.125 L 1.683594 -3.125 C 1.726562 -2.375 1.9375 -1.796875 2.320312 -1.398438 C 2.703125 -1 3.179688 -0.800781 3.75 -0.800781 C 4.175781 -0.800781 4.539062 -0.910156 4.839844 -1.132812 C 5.140625 -1.359375 5.378906 -1.714844 5.554688 -2.203125 M 1.746094 -4.078125 L 5.570312 -4.078125 C 5.515625 -4.65625 5.371094 -5.085938 5.128906 -5.375 C 4.761719 -5.820312 4.28125 -6.046875 3.691406 -6.046875 C 3.160156 -6.046875 2.710938 -5.867188 2.347656 -5.511719 C 1.984375 -5.152344 1.785156 -4.675781 1.746094 -4.078125 Z M 1.746094 -4.078125 "/>
</g>
<g id="glyph-3-12">
<path d="M 0.875 0 L 0.875 -9.449219 L 2.035156 -9.449219 L 2.035156 -4.0625 L 4.78125 -6.84375 L 6.285156 -6.84375 L 3.667969 -4.304688 L 6.546875 0 L 5.117188 0 L 2.855469 -3.5 L 2.035156 -2.714844 L 2.035156 0 Z M 0.875 0 "/>
</g>
<g id="glyph-3-13">
<path d="M 0.871094 0 L 0.871094 -6.84375 L 1.914062 -6.84375 L 1.914062 -5.871094 C 2.417969 -6.625 3.144531 -7 4.09375 -7 C 4.503906 -7 4.882812 -6.925781 5.230469 -6.777344 C 5.578125 -6.628906 5.835938 -6.433594 6.007812 -6.195312 C 6.179688 -5.953125 6.300781 -5.667969 6.367188 -5.335938 C 6.410156 -5.121094 6.433594 -4.746094 6.433594 -4.207031 L 6.433594 0 L 5.273438 0 L 5.273438 -4.164062 C 5.273438 -4.636719 5.226562 -4.988281 5.136719 -5.222656 C 5.046875 -5.457031 4.886719 -5.644531 4.65625 -5.785156 C 4.425781 -5.925781 4.15625 -5.992188 3.847656 -5.992188 C 3.355469 -5.992188 2.925781 -5.835938 2.570312 -5.523438 C 2.210938 -5.210938 2.03125 -4.613281 2.03125 -3.738281 L 2.03125 0 Z M 0.871094 0 "/>
</g>
<g id="glyph-3-14">
<path d="M 0.40625 -2.042969 L 1.554688 -2.222656 C 1.617188 -1.765625 1.796875 -1.410156 2.089844 -1.167969 C 2.386719 -0.921875 2.796875 -0.800781 3.324219 -0.800781 C 3.859375 -0.800781 4.253906 -0.90625 4.511719 -1.125 C 4.769531 -1.339844 4.898438 -1.597656 4.898438 -1.886719 C 4.898438 -2.152344 4.785156 -2.355469 4.558594 -2.507812 C 4.398438 -2.609375 4.003906 -2.742188 3.371094 -2.898438 C 2.519531 -3.113281 1.929688 -3.300781 1.601562 -3.457031 C 1.273438 -3.613281 1.023438 -3.832031 0.855469 -4.109375 C 0.683594 -4.386719 0.597656 -4.691406 0.597656 -5.027344 C 0.597656 -5.332031 0.667969 -5.613281 0.808594 -5.875 C 0.949219 -6.136719 1.136719 -6.351562 1.378906 -6.523438 C 1.558594 -6.65625 1.804688 -6.769531 2.117188 -6.859375 C 2.429688 -6.953125 2.761719 -7 3.121094 -7 C 3.65625 -7 4.128906 -6.921875 4.535156 -6.765625 C 4.941406 -6.613281 5.238281 -6.402344 5.433594 -6.140625 C 5.625 -5.875 5.761719 -5.519531 5.832031 -5.078125 L 4.699219 -4.925781 C 4.648438 -5.277344 4.496094 -5.550781 4.25 -5.75 C 4.003906 -5.945312 3.65625 -6.046875 3.203125 -6.046875 C 2.671875 -6.046875 2.289062 -5.957031 2.0625 -5.78125 C 1.835938 -5.605469 1.722656 -5.398438 1.722656 -5.164062 C 1.722656 -5.011719 1.769531 -4.875 1.863281 -4.757812 C 1.957031 -4.632812 2.105469 -4.527344 2.308594 -4.445312 C 2.421875 -4.402344 2.765625 -4.304688 3.332031 -4.152344 C 4.152344 -3.929688 4.726562 -3.753906 5.050781 -3.613281 C 5.375 -3.472656 5.628906 -3.269531 5.8125 -3.003906 C 6 -2.738281 6.089844 -2.40625 6.089844 -2.011719 C 6.089844 -1.625 5.976562 -1.261719 5.753906 -0.917969 C 5.527344 -0.578125 5.203125 -0.3125 4.777344 -0.125 C 4.351562 0.0625 3.871094 0.15625 3.332031 0.15625 C 2.441406 0.15625 1.765625 -0.03125 1.296875 -0.398438 C 0.832031 -0.769531 0.535156 -1.316406 0.40625 -2.042969 Z M 0.40625 -2.042969 "/>
</g>
<g id="glyph-3-15">
<path d="M 5.3125 0 L 5.3125 -0.863281 C 4.875 -0.183594 4.238281 0.15625 3.398438 0.15625 C 2.851562 0.15625 2.347656 0.00390625 1.890625 -0.296875 C 1.433594 -0.597656 1.078125 -1.015625 0.828125 -1.554688 C 0.578125 -2.097656 0.453125 -2.714844 0.453125 -3.414062 C 0.453125 -4.097656 0.566406 -4.71875 0.792969 -5.277344 C 1.019531 -5.832031 1.363281 -6.257812 1.816406 -6.554688 C 2.273438 -6.851562 2.78125 -7 3.34375 -7 C 3.757812 -7 4.125 -6.914062 4.445312 -6.738281 C 4.769531 -6.566406 5.03125 -6.335938 5.234375 -6.058594 L 5.234375 -9.449219 L 6.386719 -9.449219 L 6.386719 0 L 5.3125 0 M 1.644531 -3.414062 C 1.644531 -2.539062 1.828125 -1.882812 2.199219 -1.449219 C 2.566406 -1.015625 3.003906 -0.800781 3.507812 -0.800781 C 4.011719 -0.800781 4.445312 -1.007812 4.796875 -1.421875 C 5.152344 -1.835938 5.332031 -2.46875 5.332031 -3.320312 C 5.332031 -4.257812 5.148438 -4.945312 4.789062 -5.382812 C 4.429688 -5.820312 3.984375 -6.039062 3.453125 -6.039062 C 2.9375 -6.039062 2.507812 -5.828125 2.164062 -5.40625 C 1.816406 -4.988281 1.644531 -4.324219 1.644531 -3.414062 Z M 1.644531 -3.414062 "/>
</g>
<g id="glyph-3-16">
<path d="M 0.65625 0.566406 L 1.785156 0.734375 C 1.832031 1.082031 1.964844 1.335938 2.179688 1.496094 C 2.464844 1.710938 2.859375 1.816406 3.359375 1.816406 C 3.894531 1.816406 4.308594 1.710938 4.601562 1.496094 C 4.894531 1.28125 5.09375 0.980469 5.195312 0.59375 C 5.253906 0.355469 5.28125 -0.140625 5.277344 -0.894531 C 4.773438 -0.296875 4.140625 0 3.382812 0 C 2.441406 0 1.714844 -0.339844 1.199219 -1.019531 C 0.683594 -1.695312 0.425781 -2.511719 0.425781 -3.460938 C 0.425781 -4.113281 0.542969 -4.71875 0.78125 -5.269531 C 1.015625 -5.820312 1.359375 -6.246094 1.808594 -6.546875 C 2.257812 -6.847656 2.785156 -7 3.390625 -7 C 4.199219 -7 4.863281 -6.671875 5.386719 -6.019531 L 5.386719 -6.84375 L 6.457031 -6.84375 L 6.457031 -0.929688 C 6.457031 0.136719 6.351562 0.894531 6.132812 1.335938 C 5.914062 1.78125 5.570312 2.132812 5.101562 2.390625 C 4.632812 2.648438 4.050781 2.777344 3.363281 2.777344 C 2.546875 2.777344 1.886719 2.59375 1.386719 2.226562 C 0.882812 1.859375 0.640625 1.304688 0.65625 0.566406 M 1.617188 -3.546875 C 1.617188 -2.648438 1.796875 -1.992188 2.152344 -1.578125 C 2.507812 -1.167969 2.957031 -0.960938 3.492188 -0.960938 C 4.027344 -0.960938 4.472656 -1.164062 4.835938 -1.574219 C 5.195312 -1.984375 5.375 -2.628906 5.375 -3.507812 C 5.375 -4.34375 5.191406 -4.976562 4.816406 -5.402344 C 4.445312 -5.828125 4 -6.039062 3.472656 -6.039062 C 2.957031 -6.039062 2.519531 -5.828125 2.160156 -5.410156 C 1.796875 -4.992188 1.617188 -4.371094 1.617188 -3.546875 Z M 1.617188 -3.546875 "/>
</g>
<g id="glyph-3-17">
<path d="M 0.417969 -2.835938 L 0.417969 -4.003906 L 3.984375 -4.003906 L 3.984375 -2.835938 Z M 0.417969 -2.835938 "/>
</g>
<g id="glyph-3-18">
<path d="M 0.96875 0 L 0.96875 -9.449219 L 2.21875 -9.449219 L 2.21875 -1.113281 L 6.871094 -1.113281 L 6.871094 0 Z M 0.96875 0 "/>
</g>
<g id="glyph-3-19">
<path d="M 1.941406 0 L 0.863281 0 L 0.863281 -9.449219 L 2.023438 -9.449219 L 2.023438 -6.078125 C 2.515625 -6.691406 3.140625 -7 3.898438 -7 C 4.320312 -7 4.71875 -6.914062 5.09375 -6.746094 C 5.472656 -6.574219 5.78125 -6.335938 6.023438 -6.03125 C 6.265625 -5.722656 6.457031 -5.351562 6.59375 -4.917969 C 6.730469 -4.484375 6.800781 -4.019531 6.800781 -3.527344 C 6.800781 -2.351562 6.507812 -1.445312 5.929688 -0.804688 C 5.351562 -0.164062 4.652344 0.15625 3.839844 0.15625 C 3.035156 0.15625 2.398438 -0.183594 1.941406 -0.855469 L 1.941406 0 M 1.925781 -3.472656 C 1.925781 -2.652344 2.039062 -2.058594 2.261719 -1.695312 C 2.628906 -1.097656 3.121094 -0.800781 3.746094 -0.800781 C 4.25 -0.800781 4.691406 -1.019531 5.058594 -1.460938 C 5.429688 -1.898438 5.613281 -2.554688 5.613281 -3.429688 C 5.613281 -4.324219 5.4375 -4.980469 5.082031 -5.40625 C 4.726562 -5.832031 4.300781 -6.046875 3.796875 -6.046875 C 3.289062 -6.046875 2.851562 -5.824219 2.480469 -5.386719 C 2.113281 -4.945312 1.925781 -4.308594 1.925781 -3.472656 Z M 1.925781 -3.472656 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 34.773438 24.40625 L 661.519531 24.40625 L 661.519531 564.722656 L 34.773438 564.722656 Z M 34.773438 24.40625 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 34.773438 441 L 661.519531 441 L 661.519531 443 L 34.773438 443 Z M 34.773438 441 "/>
</clipPath>
<clipPath id="clip-2">
<path clip-rule="nonzero" d="M 34.773438 277 L 661.519531 277 L 661.519531 279 L 34.773438 279 Z M 34.773438 277 "/>
</clipPath>
<clipPath id="clip-3">
<path clip-rule="nonzero" d="M 34.773438 114 L 661.519531 114 L 661.519531 115 L 34.773438 115 Z M 34.773438 114 "/>
</clipPath>
<clipPath id="clip-4">
<path clip-rule="nonzero" d="M 144 24.40625 L 145 24.40625 L 145 564.722656 L 144 564.722656 Z M 144 24.40625 "/>
</clipPath>
<clipPath id="clip-5">
<path clip-rule="nonzero" d="M 307 24.40625 L 308 24.40625 L 308 564.722656 L 307 564.722656 Z M 307 24.40625 "/>
</clipPath>
<clipPath id="clip-6">
<path clip-rule="nonzero" d="M 469 24.40625 L 471 24.40625 L 471 564.722656 L 469 564.722656 Z M 469 24.40625 "/>
</clipPath>
<clipPath id="clip-7">
<path clip-rule="nonzero" d="M 632 24.40625 L 634 24.40625 L 634 564.722656 L 632 564.722656 Z M 632 24.40625 "/>
</clipPath>
<clipPath id="clip-8">
<path clip-rule="nonzero" d="M 34.773438 523 L 661.519531 523 L 661.519531 525 L 34.773438 525 Z M 34.773438 523 "/>
</clipPath>
<clipPath id="clip-9">
<path clip-rule="nonzero" d="M 34.773438 359 L 661.519531 359 L 661.519531 361 L 34.773438 361 Z M 34.773438 359 "/>
</clipPath>
<clipPath id="clip-10">
<path clip-rule="nonzero" d="M 34.773438 195 L 661.519531 195 L 661.519531 197 L 34.773438 197 Z M 34.773438 195 "/>
</clipPath>
<clipPath id="clip-11">
<path clip-rule="nonzero" d="M 34.773438 32 L 661.519531 32 L 661.519531 34 L 34.773438 34 Z M 34.773438 32 "/>
</clipPath>
<clipPath id="clip-12">
<path clip-rule="nonzero" d="M 62 24.40625 L 64 24.40625 L 64 564.722656 L 62 564.722656 Z M 62 24.40625 "/>
</clipPath>
<clipPath id="clip-13">
<path clip-rule="nonzero" d="M 225 24.40625 L 227 24.40625 L 227 564.722656 L 225 564.722656 Z M 225 24.40625 "/>
</clipPath>
<clipPath id="clip-14">
<path clip-rule="nonzero" d="M 388 24.40625 L 390 24.40625 L 390 564.722656 L 388 564.722656 Z M 388 24.40625 "/>
</clipPath>
<clipPath id="clip-15">
<path clip-rule="nonzero" d="M 551 24.40625 L 553 24.40625 L 553 564.722656 L 551 564.722656 Z M 551 24.40625 "/>
</clipPath>
</defs>
<rect x="-66.7" y="-59.8" width="800.4" height="717.6" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<rect x="-66.7" y="-59.8" width="800.4" height="717.6" fill="rgb(100%, 100%, 100%)" fill-opacity="1"/>
<path fill="none" stroke-width="1.066978" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0 598 L 667 598 L 667 0 L 0 0 Z M 0 598 "/>
<g clip-path="url(#clip-0)">
<path fill-rule="nonzero" fill="rgb(92.156863%, 92.156863%, 92.156863%)" fill-opacity="1" d="M 34.773438 564.726562 L 661.519531 564.726562 L 661.519531 24.410156 L 34.773438 24.410156 Z M 34.773438 564.726562 "/>
</g>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 441.925781 L 661.519531 441.925781 "/>
</g>
<g clip-path="url(#clip-2)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 278.191406 L 661.519531 278.191406 "/>
</g>
<g clip-path="url(#clip-3)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 114.460938 L 661.519531 114.460938 "/>
</g>
<g clip-path="url(#clip-4)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 144.660156 564.726562 L 144.660156 24.40625 "/>
</g>
<g clip-path="url(#clip-5)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 307.449219 564.726562 L 307.449219 24.40625 "/>
</g>
<g clip-path="url(#clip-6)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 470.242188 564.726562 L 470.242188 24.40625 "/>
</g>
<g clip-path="url(#clip-7)">
<path fill="none" stroke-width="0.533489" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 633.03125 564.726562 L 633.03125 24.40625 "/>
</g>
<g clip-path="url(#clip-8)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 523.792969 L 661.519531 523.792969 "/>
</g>
<g clip-path="url(#clip-9)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 360.058594 L 661.519531 360.058594 "/>
</g>
<g clip-path="url(#clip-10)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 196.328125 L 661.519531 196.328125 "/>
</g>
<g clip-path="url(#clip-11)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34.773438 32.59375 L 661.519531 32.59375 "/>
</g>
<g clip-path="url(#clip-12)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 63.261719 564.726562 L 63.261719 24.40625 "/>
</g>
<g clip-path="url(#clip-13)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 226.054688 564.726562 L 226.054688 24.40625 "/>
</g>
<g clip-path="url(#clip-14)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 388.84375 564.726562 L 388.84375 24.40625 "/>
</g>
<g clip-path="url(#clip-15)">
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(100%, 100%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 551.636719 564.726562 L 551.636719 24.40625 "/>
</g>
<path fill="none" stroke-width="3.200935" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 63.261719 540.164062 L 144.660156 392.804688 L 226.054688 278.191406 L 307.449219 245.445312 L 388.84375 130.832031 L 470.242188 81.714844 L 551.636719 65.339844 L 633.03125 48.96875 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="20.054688" y="527.441406"/>
<use xlink:href="#glyph-0-1" x="24.948828" y="527.441406"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="20.054688" y="363.710938"/>
<use xlink:href="#glyph-0-1" x="24.948828" y="363.710938"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="20.054688" y="199.976562"/>
<use xlink:href="#glyph-0-1" x="24.948828" y="199.976562"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="20.054688" y="36.242188"/>
<use xlink:href="#glyph-0-1" x="24.948828" y="36.242188"/>
</g>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32.035156 523.792969 L 34.773438 523.792969 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32.035156 360.058594 L 34.773438 360.058594 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32.035156 196.328125 L 34.773438 196.328125 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32.035156 32.59375 L 34.773438 32.59375 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 63.261719 567.464844 L 63.261719 564.726562 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 226.054688 567.464844 L 226.054688 564.726562 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 388.84375 567.464844 L 388.84375 564.726562 "/>
<path fill="none" stroke-width="1.066978" stroke-linecap="butt" stroke-linejoin="round" stroke="rgb(20%, 20%, 20%)" stroke-opacity="1" stroke-miterlimit="10" d="M 551.636719 567.464844 L 551.636719 564.726562 "/>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="60.816406" y="576.957031"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-6" x="223.609375" y="576.957031"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="386.398438" y="576.957031"/>
</g>
<g fill="rgb(30.196078%, 30.196078%, 30.196078%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="546.742188" y="576.957031"/>
<use xlink:href="#glyph-0-1" x="551.636328" y="576.957031"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="295.886719" y="590.269531"/>
<use xlink:href="#glyph-1-1" x="303.223633" y="590.269531"/>
<use xlink:href="#glyph-1-2" x="306.279785" y="590.269531"/>
<use xlink:href="#glyph-1-3" x="309.942871" y="590.269531"/>
<use xlink:href="#glyph-1-4" x="316.060547" y="590.269531"/>
<use xlink:href="#glyph-1-4" x="321.560547" y="590.269531"/>
<use xlink:href="#glyph-1-5" x="327.060547" y="590.269531"/>
<use xlink:href="#glyph-1-6" x="333.178223" y="590.269531"/>
<use xlink:href="#glyph-1-7" x="335.62207" y="590.269531"/>
<use xlink:href="#glyph-1-7" x="338.678223" y="590.269531"/>
<use xlink:href="#glyph-1-3" x="341.734375" y="590.269531"/>
<use xlink:href="#glyph-1-2" x="347.852051" y="590.269531"/>
<use xlink:href="#glyph-1-8" x="351.515137" y="590.269531"/>
<use xlink:href="#glyph-1-9" x="357.632812" y="590.269531"/>
<use xlink:href="#glyph-1-10" x="363.750488" y="590.269531"/>
<use xlink:href="#glyph-1-3" x="369.250488" y="590.269531"/>
<use xlink:href="#glyph-1-11" x="375.368164" y="590.269531"/>
<use xlink:href="#glyph-1-12" x="378.424316" y="590.269531"/>
<use xlink:href="#glyph-1-10" x="382.087402" y="590.269531"/>
<use xlink:href="#glyph-1-13" x="387.587402" y="590.269531"/>
<use xlink:href="#glyph-1-14" x="396.750488" y="590.269531"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="14.351562" y="341.027344"/>
<use xlink:href="#glyph-2-1" x="14.351562" y="333.69043"/>
<use xlink:href="#glyph-2-2" x="14.351563" y="327.572754"/>
<use xlink:href="#glyph-2-1" x="14.351563" y="318.409668"/>
<use xlink:href="#glyph-2-3" x="14.351563" y="312.291992"/>
<use xlink:href="#glyph-2-4" x="14.351563" y="309.848145"/>
<use xlink:href="#glyph-2-5" x="14.351563" y="303.730469"/>
<use xlink:href="#glyph-2-6" x="14.351563" y="300.674316"/>
<use xlink:href="#glyph-2-7" x="14.351563" y="298.230469"/>
<use xlink:href="#glyph-2-8" x="14.351563" y="292.730469"/>
<use xlink:href="#glyph-2-9" x="14.351563" y="289.674316"/>
<use xlink:href="#glyph-2-10" x="14.351563" y="286.618164"/>
<use xlink:href="#glyph-2-11" x="14.351563" y="282.955078"/>
<use xlink:href="#glyph-2-12" x="14.351563" y="276.837402"/>
<use xlink:href="#glyph-2-7" x="14.351563" y="271.337402"/>
<use xlink:href="#glyph-2-11" x="14.351563" y="265.837402"/>
<use xlink:href="#glyph-2-13" x="14.351563" y="259.719727"/>
<use xlink:href="#glyph-2-14" x="14.351563" y="253.602051"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-0" x="34.773438" y="15.929688"/>
<use xlink:href="#glyph-3-1" x="43.577734" y="15.929688"/>
<use xlink:href="#glyph-3-2" x="50.918945" y="15.929688"/>
<use xlink:href="#glyph-3-1" x="61.914648" y="15.929688"/>
<use xlink:href="#glyph-3-3" x="69.255859" y="15.929688"/>
<use xlink:href="#glyph-3-4" x="72.188477" y="15.929688"/>
<use xlink:href="#glyph-3-5" x="79.529687" y="15.929688"/>
<use xlink:href="#glyph-3-6" x="83.19707" y="15.929688"/>
<use xlink:href="#glyph-3-7" x="86.129687" y="15.929688"/>
<use xlink:href="#glyph-3-8" x="92.729687" y="15.929688"/>
<use xlink:href="#glyph-3-9" x="96.39707" y="15.929688"/>
<use xlink:href="#glyph-3-10" x="100.064453" y="15.929688"/>
<use xlink:href="#glyph-3-11" x="104.460156" y="15.929688"/>
<use xlink:href="#glyph-3-12" x="111.801367" y="15.929688"/>
<use xlink:href="#glyph-3-7" x="118.401367" y="15.929688"/>
<use xlink:href="#glyph-3-11" x="125.001367" y="15.929688"/>
<use xlink:href="#glyph-3-13" x="132.342578" y="15.929688"/>
<use xlink:href="#glyph-3-14" x="139.683789" y="15.929688"/>
<use xlink:href="#glyph-3-15" x="146.283789" y="15.929688"/>
<use xlink:href="#glyph-3-6" x="153.625" y="15.929688"/>
<use xlink:href="#glyph-3-4" x="156.557617" y="15.929688"/>
<use xlink:href="#glyph-3-16" x="163.898828" y="15.929688"/>
<use xlink:href="#glyph-3-10" x="171.240039" y="15.929688"/>
<use xlink:href="#glyph-3-4" x="175.635742" y="15.929688"/>
<use xlink:href="#glyph-3-2" x="182.976953" y="15.929688"/>
<use xlink:href="#glyph-3-8" x="193.972656" y="15.929688"/>
<use xlink:href="#glyph-3-17" x="197.640039" y="15.929688"/>
<use xlink:href="#glyph-3-8" x="202.035742" y="15.929688"/>
<use xlink:href="#glyph-3-18" x="205.703125" y="15.929688"/>
<use xlink:href="#glyph-3-4" x="213.044336" y="15.929688"/>
<use xlink:href="#glyph-3-19" x="220.385547" y="15.929688"/>
<use xlink:href="#glyph-3-4" x="227.726758" y="15.929688"/>
<use xlink:href="#glyph-3-13" x="235.067969" y="15.929688"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 62 KiB