Last active
August 29, 2015 14:21
-
-
Save dceoy/b33beb466680808f3d6e to your computer and use it in GitHub Desktop.
[R] Logistic Regression using glm https://rawgit.com/dceoy/b33beb466680808f3d6e/raw/plot.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env Rscript | |
# Diabetes survey on Pima Indians | |
# | |
# variables: | |
# 'glucose' Plasma glucose concentration at 2 hours in an oral glucose tolerance test | |
# 'diabetes' Diabetes pedigree function | |
# 'test' test whether the patient shows signs of diabetes (coded 0 if negative, 1 if positive) | |
data(pima, package = 'faraway') | |
# | |
# Logistic Regression | |
# | |
m <- glm(factor(test) ~ glucose + diabetes, family = binomial, data = pima) | |
print(summary(m)) | |
# | |
# Call: | |
# glm(formula = test ~ glucose + diabetes, family = binomial, data = pima) | |
# | |
# Deviance Residuals: | |
# Min 1Q Median 3Q Max | |
# -2.7557 -0.7801 -0.5295 0.8460 3.2897 | |
# | |
# Coefficients: | |
# Estimate Std. Error z value Pr(>|z|) | |
# (Intercept) -5.724331 0.447126 -12.803 < 2e-16 *** | |
# glucose 0.037356 0.003284 11.375 < 2e-16 *** | |
# diabetes 0.918678 0.273089 3.364 0.000768 *** | |
# --- | |
# Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1 | |
# | |
# (Dispersion parameter for binomial family taken to be 1) | |
# | |
# Null deviance: 993.48 on 767 degrees of freedom | |
# Residual deviance: 796.99 on 765 degrees of freedom | |
# AIC: 802.99 | |
# | |
# Number of Fisher Scoring iterations: 4 | |
# | |
# Alpha Level | |
alpha <- 0.05 | |
results <- list() | |
# | |
# Profile Likelihood CI | |
# | |
results$profile_likelihood_ci <- confint(m, level = 1 - alpha) | |
# | |
# Wald CI | |
# | |
results$wald_ci <- confint.default(m, level = 1 - alpha) | |
# | |
# Wald CI (manual calculation) | |
# | |
wald_ci <- function(model, alpha) { | |
ce <- summary(model)$coefficients[,1:2] | |
ci <- cbind(ce[,1] - qnorm(1 - alpha / 2) * ce[,2], | |
ce[,1] + qnorm(1 - alpha / 2) * ce[,2]) | |
colnames(ci) <- c(paste((alpha / 2) * 100, '%'), | |
paste((1 - alpha / 2) * 100, '%')) | |
return(ci) | |
} | |
results$wald_ci_manual_calc <- wald_ci(m, alpha) | |
# | |
# Odds Ratio | |
# | |
results$odds_ratio <- exp(cbind(Estimate = m$coefficients, confint(m, level = 1 - alpha))) | |
print(results) | |
# | |
# $profile_likelihood_ci | |
# 2.5 % 97.5 % | |
# (Intercept) -6.62859431 -4.87394015 | |
# glucose 0.03109338 0.04398227 | |
# diabetes 0.38948850 1.46127936 | |
# | |
# $wald_ci | |
# 2.5 % 97.5 % | |
# (Intercept) -6.60068146 -4.84798018 | |
# glucose 0.03091909 0.04379221 | |
# diabetes 0.38343319 1.45392188 | |
# | |
# $wald_ci_manual_calc | |
# 2.5 % 97.5 % | |
# (Intercept) -6.60068146 -4.84798018 | |
# glucose 0.03091909 0.04379221 | |
# diabetes 0.38343319 1.45392188 | |
# | |
# $odds_ratio | |
# Estimate 2.5 % 97.5 % | |
# (Intercept) 0.003265538 0.00132202 0.007643191 | |
# glucose 1.038062146 1.03158183 1.044963828 | |
# diabetes 2.505974144 1.47622552 4.311471930 | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env R | |
sapply(c('dplyr', 'data.table', 'ggplot2'), function(p) require(p, character.only = TRUE)) | |
select <- dplyr::select | |
# Diabetes survey on Pima Indians | |
data(pima, package = 'faraway') | |
# | |
# Logistic Regression | |
# | |
m <- glm(factor(test) ~ glucose + diabetes, family = binomial, data = pima) | |
# Alpha Level | |
alpha = 0.05 | |
# | |
# New Data having various values of Glucose and Diabetes | |
# | |
new_d <- with(pima, data.table(glucose = rep(quantile(pima$glucose)[2:4], each = 100), | |
diabetes = rep(seq(from = min(diabetes), | |
to = max(diabetes), | |
length.out = 100)), 3)) | |
# | |
# Prediction of Probabilities | |
# | |
prd_p <- new_d %>% | |
predict(m, newdata = ., type = 'link', se.fit = TRUE) %>% | |
as.data.table() %>% | |
mutate(predicted_prob = plogis(fit), | |
lower_limit = plogis(fit - qnorm(1 - alpha / 2) * se.fit), | |
upper_limit = plogis(fit + qnorm(1 - alpha / 2) * se.fit)) %>% | |
cbind(new_d, .) %>% | |
select(glucose, diabetes, predicted_prob, lower_limit, upper_limit) | |
# | |
# Visualization | |
# | |
prd_p$glucose <- factor(prd_p$glucose) | |
ribbon <- ggplot(prd_p, aes(x = diabetes, y = predicted_prob)) + | |
geom_ribbon(aes(ymin = lower_limit, ymax = upper_limit, fill = glucose), alpha = 0.2) + | |
geom_line(aes(colour = glucose), size = 1) + | |
labs(x = 'diabetes pedigree function', y = 'test of diabetes') | |
svg('plot.svg', width = 6, height = 4) | |
plot(ribbon) | |
dev.off() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="432pt" height="288pt" viewBox="0 0 432 288" version="1.1"> | |
<defs> | |
<g> | |
<symbol overflow="visible" id="glyph0-0"> | |
<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph0-1"> | |
<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph0-2"> | |
<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph0-3"> | |
<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph0-4"> | |
<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph0-5"> | |
<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph0-6"> | |
<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph0-7"> | |
<path style="stroke:none;" d="M 1.28125 -1.625 C 1.300781 -1.15625 1.476562 -0.832031 1.8125 -0.65625 C 1.988281 -0.5625 2.179688 -0.515625 2.390625 -0.515625 C 2.796875 -0.515625 3.140625 -0.679688 3.421875 -1.015625 C 3.703125 -1.347656 3.90625 -2.03125 4.03125 -3.0625 C 3.84375 -2.769531 3.609375 -2.5625 3.328125 -2.4375 C 3.054688 -2.320312 2.757812 -2.265625 2.4375 -2.265625 C 1.789062 -2.265625 1.28125 -2.460938 0.90625 -2.859375 C 0.53125 -3.265625 0.34375 -3.785156 0.34375 -4.421875 C 0.34375 -5.023438 0.523438 -5.554688 0.890625 -6.015625 C 1.265625 -6.484375 1.816406 -6.71875 2.546875 -6.71875 C 3.523438 -6.71875 4.195312 -6.273438 4.5625 -5.390625 C 4.769531 -4.910156 4.875 -4.304688 4.875 -3.578125 C 4.875 -2.753906 4.75 -2.023438 4.5 -1.390625 C 4.09375 -0.335938 3.398438 0.1875 2.421875 0.1875 C 1.765625 0.1875 1.265625 0.015625 0.921875 -0.328125 C 0.585938 -0.671875 0.421875 -1.101562 0.421875 -1.625 Z M 2.546875 -3 C 2.878906 -3 3.1875 -3.109375 3.46875 -3.328125 C 3.75 -3.546875 3.890625 -3.929688 3.890625 -4.484375 C 3.890625 -4.972656 3.765625 -5.335938 3.515625 -5.578125 C 3.265625 -5.828125 2.945312 -5.953125 2.5625 -5.953125 C 2.144531 -5.953125 1.816406 -5.8125 1.578125 -5.53125 C 1.335938 -5.257812 1.21875 -4.890625 1.21875 -4.421875 C 1.21875 -3.984375 1.320312 -3.632812 1.53125 -3.375 C 1.75 -3.125 2.085938 -3 2.546875 -3 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph0-8"> | |
<path style="stroke:none;" d="M 3.171875 -2.375 L 3.171875 -5.421875 L 1.015625 -2.375 Z M 3.1875 0 L 3.1875 -1.640625 L 0.25 -1.640625 L 0.25 -2.46875 L 3.3125 -6.734375 L 4.03125 -6.734375 L 4.03125 -2.375 L 5.015625 -2.375 L 5.015625 -1.640625 L 4.03125 -1.640625 L 4.03125 0 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-0"> | |
<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-1"> | |
<path style="stroke:none;" d="M 1.4375 -3.0625 C 1.4375 -2.394531 1.578125 -1.832031 1.859375 -1.375 C 2.148438 -0.925781 2.609375 -0.703125 3.234375 -0.703125 C 3.722656 -0.703125 4.125 -0.910156 4.4375 -1.328125 C 4.757812 -1.742188 4.921875 -2.347656 4.921875 -3.140625 C 4.921875 -3.929688 4.753906 -4.515625 4.421875 -4.890625 C 4.097656 -5.273438 3.703125 -5.46875 3.234375 -5.46875 C 2.703125 -5.46875 2.269531 -5.265625 1.9375 -4.859375 C 1.601562 -4.453125 1.4375 -3.851562 1.4375 -3.0625 Z M 3.03125 -6.390625 C 3.507812 -6.390625 3.910156 -6.285156 4.234375 -6.078125 C 4.421875 -5.960938 4.632812 -5.757812 4.875 -5.46875 L 4.875 -8.640625 L 5.890625 -8.640625 L 5.890625 0 L 4.9375 0 L 4.9375 -0.875 C 4.695312 -0.488281 4.40625 -0.207031 4.0625 -0.03125 C 3.726562 0.132812 3.34375 0.21875 2.90625 0.21875 C 2.207031 0.21875 1.601562 -0.0703125 1.09375 -0.65625 C 0.582031 -1.25 0.328125 -2.03125 0.328125 -3 C 0.328125 -3.914062 0.5625 -4.707031 1.03125 -5.375 C 1.5 -6.050781 2.164062 -6.390625 3.03125 -6.390625 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-2"> | |
<path style="stroke:none;" d="M 0.78125 -6.25 L 1.84375 -6.25 L 1.84375 0 L 0.78125 0 Z M 0.78125 -8.609375 L 1.84375 -8.609375 L 1.84375 -7.40625 L 0.78125 -7.40625 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-3"> | |
<path style="stroke:none;" d="M 1.578125 -1.671875 C 1.578125 -1.367188 1.6875 -1.128906 1.90625 -0.953125 C 2.132812 -0.773438 2.398438 -0.6875 2.703125 -0.6875 C 3.078125 -0.6875 3.4375 -0.769531 3.78125 -0.9375 C 4.375 -1.226562 4.671875 -1.695312 4.671875 -2.34375 L 4.671875 -3.1875 C 4.535156 -3.113281 4.363281 -3.046875 4.15625 -2.984375 C 3.957031 -2.929688 3.757812 -2.894531 3.5625 -2.875 L 2.9375 -2.796875 C 2.550781 -2.742188 2.257812 -2.660156 2.0625 -2.546875 C 1.738281 -2.367188 1.578125 -2.078125 1.578125 -1.671875 Z M 4.140625 -3.796875 C 4.378906 -3.828125 4.539062 -3.929688 4.625 -4.109375 C 4.664062 -4.203125 4.6875 -4.335938 4.6875 -4.515625 C 4.6875 -4.867188 4.554688 -5.125 4.296875 -5.28125 C 4.046875 -5.445312 3.6875 -5.53125 3.21875 -5.53125 C 2.664062 -5.53125 2.273438 -5.382812 2.046875 -5.09375 C 1.910156 -4.925781 1.820312 -4.679688 1.78125 -4.359375 L 0.796875 -4.359375 C 0.816406 -5.128906 1.066406 -5.664062 1.546875 -5.96875 C 2.035156 -6.269531 2.597656 -6.421875 3.234375 -6.421875 C 3.972656 -6.421875 4.570312 -6.28125 5.03125 -6 C 5.488281 -5.71875 5.71875 -5.28125 5.71875 -4.6875 L 5.71875 -1.078125 C 5.71875 -0.972656 5.738281 -0.882812 5.78125 -0.8125 C 5.832031 -0.75 5.929688 -0.71875 6.078125 -0.71875 C 6.117188 -0.71875 6.164062 -0.71875 6.21875 -0.71875 C 6.28125 -0.726562 6.347656 -0.738281 6.421875 -0.75 L 6.421875 0.03125 C 6.253906 0.0703125 6.125 0.0976562 6.03125 0.109375 C 5.945312 0.128906 5.832031 0.140625 5.6875 0.140625 C 5.320312 0.140625 5.0625 0.0078125 4.90625 -0.25 C 4.8125 -0.382812 4.75 -0.578125 4.71875 -0.828125 C 4.5 -0.546875 4.1875 -0.300781 3.78125 -0.09375 C 3.382812 0.113281 2.945312 0.21875 2.46875 0.21875 C 1.882812 0.21875 1.40625 0.0390625 1.03125 -0.3125 C 0.664062 -0.664062 0.484375 -1.109375 0.484375 -1.640625 C 0.484375 -2.222656 0.664062 -2.675781 1.03125 -3 C 1.394531 -3.320312 1.867188 -3.519531 2.453125 -3.59375 Z M 3.265625 -6.421875 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-4"> | |
<path style="stroke:none;" d="M 0.6875 -8.640625 L 1.71875 -8.640625 L 1.71875 -5.515625 C 1.945312 -5.816406 2.222656 -6.046875 2.546875 -6.203125 C 2.867188 -6.359375 3.21875 -6.4375 3.59375 -6.4375 C 4.375 -6.4375 5.003906 -6.164062 5.484375 -5.625 C 5.972656 -5.09375 6.21875 -4.304688 6.21875 -3.265625 C 6.21875 -2.265625 5.976562 -1.4375 5.5 -0.78125 C 5.019531 -0.125 4.351562 0.203125 3.5 0.203125 C 3.019531 0.203125 2.617188 0.0859375 2.296875 -0.140625 C 2.097656 -0.285156 1.890625 -0.503906 1.671875 -0.796875 L 1.671875 0 L 0.6875 0 Z M 3.4375 -0.734375 C 4.007812 -0.734375 4.4375 -0.957031 4.71875 -1.40625 C 5 -1.863281 5.140625 -2.460938 5.140625 -3.203125 C 5.140625 -3.867188 5 -4.414062 4.71875 -4.84375 C 4.4375 -5.28125 4.019531 -5.5 3.46875 -5.5 C 2.988281 -5.5 2.566406 -5.320312 2.203125 -4.96875 C 1.835938 -4.613281 1.65625 -4.023438 1.65625 -3.203125 C 1.65625 -2.617188 1.726562 -2.140625 1.875 -1.765625 C 2.15625 -1.078125 2.675781 -0.734375 3.4375 -0.734375 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-5"> | |
<path style="stroke:none;" d="M 3.390625 -6.421875 C 3.835938 -6.421875 4.269531 -6.316406 4.6875 -6.109375 C 5.101562 -5.898438 5.421875 -5.628906 5.640625 -5.296875 C 5.847656 -4.972656 5.988281 -4.601562 6.0625 -4.1875 C 6.125 -3.894531 6.15625 -3.429688 6.15625 -2.796875 L 1.546875 -2.796875 C 1.566406 -2.160156 1.71875 -1.648438 2 -1.265625 C 2.28125 -0.878906 2.71875 -0.6875 3.3125 -0.6875 C 3.863281 -0.6875 4.300781 -0.867188 4.625 -1.234375 C 4.8125 -1.441406 4.945312 -1.6875 5.03125 -1.96875 L 6.0625 -1.96875 C 6.039062 -1.738281 5.953125 -1.484375 5.796875 -1.203125 C 5.640625 -0.921875 5.46875 -0.6875 5.28125 -0.5 C 4.957031 -0.1875 4.554688 0.0195312 4.078125 0.125 C 3.828125 0.1875 3.539062 0.21875 3.21875 0.21875 C 2.4375 0.21875 1.773438 -0.0625 1.234375 -0.625 C 0.691406 -1.195312 0.421875 -1.992188 0.421875 -3.015625 C 0.421875 -4.023438 0.691406 -4.84375 1.234375 -5.46875 C 1.785156 -6.101562 2.503906 -6.421875 3.390625 -6.421875 Z M 5.0625 -3.640625 C 5.019531 -4.097656 4.921875 -4.460938 4.765625 -4.734375 C 4.484375 -5.242188 4.003906 -5.5 3.328125 -5.5 C 2.835938 -5.5 2.425781 -5.320312 2.09375 -4.96875 C 1.769531 -4.625 1.597656 -4.179688 1.578125 -3.640625 Z M 3.28125 -6.421875 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-6"> | |
<path style="stroke:none;" d="M 0.984375 -8.03125 L 2.046875 -8.03125 L 2.046875 -6.28125 L 3.046875 -6.28125 L 3.046875 -5.421875 L 2.046875 -5.421875 L 2.046875 -1.3125 C 2.046875 -1.09375 2.125 -0.945312 2.28125 -0.875 C 2.351562 -0.832031 2.488281 -0.8125 2.6875 -0.8125 C 2.738281 -0.8125 2.789062 -0.8125 2.84375 -0.8125 C 2.90625 -0.820312 2.972656 -0.828125 3.046875 -0.828125 L 3.046875 0 C 2.929688 0.03125 2.804688 0.0507812 2.671875 0.0625 C 2.546875 0.0820312 2.40625 0.09375 2.25 0.09375 C 1.757812 0.09375 1.425781 -0.03125 1.25 -0.28125 C 1.070312 -0.53125 0.984375 -0.859375 0.984375 -1.265625 L 0.984375 -5.421875 L 0.140625 -5.421875 L 0.140625 -6.28125 L 0.984375 -6.28125 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-7"> | |
<path style="stroke:none;" d="M 1.40625 -1.96875 C 1.4375 -1.613281 1.523438 -1.34375 1.671875 -1.15625 C 1.929688 -0.820312 2.390625 -0.65625 3.046875 -0.65625 C 3.441406 -0.65625 3.785156 -0.738281 4.078125 -0.90625 C 4.378906 -1.070312 4.53125 -1.332031 4.53125 -1.6875 C 4.53125 -1.957031 4.410156 -2.164062 4.171875 -2.3125 C 4.015625 -2.394531 3.710938 -2.492188 3.265625 -2.609375 L 2.421875 -2.8125 C 1.890625 -2.945312 1.5 -3.097656 1.25 -3.265625 C 0.789062 -3.546875 0.5625 -3.941406 0.5625 -4.453125 C 0.5625 -5.046875 0.773438 -5.523438 1.203125 -5.890625 C 1.628906 -6.253906 2.207031 -6.4375 2.9375 -6.4375 C 3.875 -6.4375 4.550781 -6.160156 4.96875 -5.609375 C 5.238281 -5.253906 5.367188 -4.875 5.359375 -4.46875 L 4.359375 -4.46875 C 4.335938 -4.707031 4.253906 -4.925781 4.109375 -5.125 C 3.867188 -5.394531 3.445312 -5.53125 2.84375 -5.53125 C 2.445312 -5.53125 2.144531 -5.453125 1.9375 -5.296875 C 1.738281 -5.148438 1.640625 -4.953125 1.640625 -4.703125 C 1.640625 -4.429688 1.773438 -4.210938 2.046875 -4.046875 C 2.203125 -3.953125 2.429688 -3.867188 2.734375 -3.796875 L 3.421875 -3.625 C 4.179688 -3.4375 4.691406 -3.257812 4.953125 -3.09375 C 5.359375 -2.820312 5.5625 -2.394531 5.5625 -1.8125 C 5.5625 -1.257812 5.347656 -0.78125 4.921875 -0.375 C 4.503906 0.03125 3.863281 0.234375 3 0.234375 C 2.0625 0.234375 1.394531 0.0234375 1 -0.390625 C 0.613281 -0.816406 0.410156 -1.34375 0.390625 -1.96875 Z M 2.953125 -6.421875 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-8"> | |
<path style="stroke:none;" d=""/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-9"> | |
<path style="stroke:none;" d="M 3.421875 -0.703125 C 3.910156 -0.703125 4.316406 -0.910156 4.640625 -1.328125 C 4.972656 -1.742188 5.140625 -2.359375 5.140625 -3.171875 C 5.140625 -3.671875 5.066406 -4.101562 4.921875 -4.46875 C 4.648438 -5.15625 4.148438 -5.5 3.421875 -5.5 C 2.691406 -5.5 2.191406 -5.132812 1.921875 -4.40625 C 1.773438 -4.019531 1.703125 -3.523438 1.703125 -2.921875 C 1.703125 -2.429688 1.773438 -2.019531 1.921875 -1.6875 C 2.191406 -1.03125 2.691406 -0.703125 3.421875 -0.703125 Z M 0.6875 -6.25 L 1.71875 -6.25 L 1.71875 -5.421875 C 1.925781 -5.703125 2.15625 -5.921875 2.40625 -6.078125 C 2.757812 -6.304688 3.175781 -6.421875 3.65625 -6.421875 C 4.375 -6.421875 4.976562 -6.148438 5.46875 -5.609375 C 5.96875 -5.066406 6.21875 -4.289062 6.21875 -3.28125 C 6.21875 -1.90625 5.859375 -0.925781 5.140625 -0.34375 C 4.691406 0.03125 4.164062 0.21875 3.5625 0.21875 C 3.09375 0.21875 2.695312 0.113281 2.375 -0.09375 C 2.1875 -0.21875 1.976562 -0.421875 1.75 -0.703125 L 1.75 2.5 L 0.6875 2.5 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-10"> | |
<path style="stroke:none;" d="M 2.984375 -6.390625 C 3.484375 -6.390625 3.914062 -6.269531 4.28125 -6.03125 C 4.476562 -5.882812 4.679688 -5.679688 4.890625 -5.421875 L 4.890625 -6.21875 L 5.859375 -6.21875 L 5.859375 -0.515625 C 5.859375 0.285156 5.742188 0.914062 5.515625 1.375 C 5.078125 2.226562 4.25 2.65625 3.03125 2.65625 C 2.351562 2.65625 1.785156 2.503906 1.328125 2.203125 C 0.867188 1.898438 0.609375 1.425781 0.546875 0.78125 L 1.625 0.78125 C 1.675781 1.0625 1.773438 1.28125 1.921875 1.4375 C 2.160156 1.664062 2.535156 1.78125 3.046875 1.78125 C 3.859375 1.78125 4.390625 1.492188 4.640625 0.921875 C 4.785156 0.585938 4.851562 -0.0078125 4.84375 -0.875 C 4.632812 -0.550781 4.378906 -0.3125 4.078125 -0.15625 C 3.785156 0 3.394531 0.078125 2.90625 0.078125 C 2.226562 0.078125 1.632812 -0.160156 1.125 -0.640625 C 0.613281 -1.128906 0.359375 -1.929688 0.359375 -3.046875 C 0.359375 -4.097656 0.613281 -4.914062 1.125 -5.5 C 1.644531 -6.09375 2.265625 -6.390625 2.984375 -6.390625 Z M 4.890625 -3.171875 C 4.890625 -3.941406 4.726562 -4.515625 4.40625 -4.890625 C 4.082031 -5.265625 3.675781 -5.453125 3.1875 -5.453125 C 2.4375 -5.453125 1.925781 -5.101562 1.65625 -4.40625 C 1.507812 -4.039062 1.4375 -3.554688 1.4375 -2.953125 C 1.4375 -2.242188 1.578125 -1.703125 1.859375 -1.328125 C 2.148438 -0.960938 2.539062 -0.78125 3.03125 -0.78125 C 3.789062 -0.78125 4.320312 -1.125 4.625 -1.8125 C 4.800781 -2.195312 4.890625 -2.648438 4.890625 -3.171875 Z M 3.109375 -6.421875 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-11"> | |
<path style="stroke:none;" d="M 0.796875 -6.28125 L 1.8125 -6.28125 L 1.8125 -5.1875 C 1.882812 -5.40625 2.082031 -5.664062 2.40625 -5.96875 C 2.726562 -6.269531 3.097656 -6.421875 3.515625 -6.421875 C 3.535156 -6.421875 3.566406 -6.414062 3.609375 -6.40625 C 3.660156 -6.40625 3.742188 -6.398438 3.859375 -6.390625 L 3.859375 -5.28125 C 3.796875 -5.289062 3.738281 -5.296875 3.6875 -5.296875 C 3.632812 -5.296875 3.578125 -5.296875 3.515625 -5.296875 C 2.984375 -5.296875 2.570312 -5.125 2.28125 -4.78125 C 2 -4.445312 1.859375 -4.054688 1.859375 -3.609375 L 1.859375 0 L 0.796875 0 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-12"> | |
<path style="stroke:none;" d="M 1.03125 -7.234375 C 1.050781 -7.671875 1.128906 -7.988281 1.265625 -8.1875 C 1.515625 -8.550781 1.988281 -8.734375 2.6875 -8.734375 C 2.757812 -8.734375 2.828125 -8.726562 2.890625 -8.71875 C 2.960938 -8.71875 3.046875 -8.710938 3.140625 -8.703125 L 3.140625 -7.75 C 3.023438 -7.757812 2.941406 -7.765625 2.890625 -7.765625 C 2.847656 -7.765625 2.804688 -7.765625 2.765625 -7.765625 C 2.441406 -7.765625 2.25 -7.679688 2.1875 -7.515625 C 2.125 -7.347656 2.09375 -6.925781 2.09375 -6.25 L 3.140625 -6.25 L 3.140625 -5.421875 L 2.078125 -5.421875 L 2.078125 0 L 1.03125 0 L 1.03125 -5.421875 L 0.171875 -5.421875 L 0.171875 -6.25 L 1.03125 -6.25 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-13"> | |
<path style="stroke:none;" d="M 1.828125 -6.28125 L 1.828125 -2.109375 C 1.828125 -1.785156 1.878906 -1.523438 1.984375 -1.328125 C 2.171875 -0.953125 2.519531 -0.765625 3.03125 -0.765625 C 3.757812 -0.765625 4.257812 -1.09375 4.53125 -1.75 C 4.675781 -2.101562 4.75 -2.582031 4.75 -3.1875 L 4.75 -6.28125 L 5.796875 -6.28125 L 5.796875 0 L 4.8125 0 L 4.8125 -0.921875 C 4.675781 -0.679688 4.507812 -0.484375 4.3125 -0.328125 C 3.90625 0.00390625 3.414062 0.171875 2.84375 0.171875 C 1.945312 0.171875 1.335938 -0.128906 1.015625 -0.734375 C 0.835938 -1.046875 0.75 -1.472656 0.75 -2.015625 L 0.75 -6.28125 Z M 3.28125 -6.421875 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-14"> | |
<path style="stroke:none;" d="M 0.78125 -6.28125 L 1.78125 -6.28125 L 1.78125 -5.390625 C 2.070312 -5.753906 2.382812 -6.015625 2.71875 -6.171875 C 3.050781 -6.335938 3.421875 -6.421875 3.828125 -6.421875 C 4.710938 -6.421875 5.3125 -6.109375 5.625 -5.484375 C 5.800781 -5.140625 5.890625 -4.65625 5.890625 -4.03125 L 5.890625 0 L 4.8125 0 L 4.8125 -3.953125 C 4.8125 -4.335938 4.753906 -4.644531 4.640625 -4.875 C 4.453125 -5.269531 4.113281 -5.46875 3.625 -5.46875 C 3.375 -5.46875 3.171875 -5.441406 3.015625 -5.390625 C 2.722656 -5.304688 2.46875 -5.132812 2.25 -4.875 C 2.070312 -4.664062 1.957031 -4.453125 1.90625 -4.234375 C 1.851562 -4.015625 1.828125 -3.695312 1.828125 -3.28125 L 1.828125 0 L 0.78125 0 Z M 3.25 -6.421875 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-15"> | |
<path style="stroke:none;" d="M 3.1875 -6.453125 C 3.894531 -6.453125 4.46875 -6.28125 4.90625 -5.9375 C 5.351562 -5.59375 5.625 -5.003906 5.71875 -4.171875 L 4.6875 -4.171875 C 4.625 -4.554688 4.484375 -4.875 4.265625 -5.125 C 4.046875 -5.382812 3.6875 -5.515625 3.1875 -5.515625 C 2.519531 -5.515625 2.039062 -5.1875 1.75 -4.53125 C 1.5625 -4.101562 1.46875 -3.578125 1.46875 -2.953125 C 1.46875 -2.328125 1.597656 -1.796875 1.859375 -1.359375 C 2.128906 -0.929688 2.550781 -0.71875 3.125 -0.71875 C 3.5625 -0.71875 3.90625 -0.851562 4.15625 -1.125 C 4.414062 -1.394531 4.59375 -1.757812 4.6875 -2.21875 L 5.71875 -2.21875 C 5.601562 -1.382812 5.3125 -0.773438 4.84375 -0.390625 C 4.375 -0.00390625 3.773438 0.1875 3.046875 0.1875 C 2.222656 0.1875 1.566406 -0.113281 1.078125 -0.71875 C 0.585938 -1.320312 0.34375 -2.070312 0.34375 -2.96875 C 0.34375 -4.070312 0.609375 -4.925781 1.140625 -5.53125 C 1.679688 -6.144531 2.363281 -6.453125 3.1875 -6.453125 Z M 3.03125 -6.421875 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph1-16"> | |
<path style="stroke:none;" d="M 3.265625 -0.6875 C 3.960938 -0.6875 4.441406 -0.945312 4.703125 -1.46875 C 4.960938 -2 5.09375 -2.585938 5.09375 -3.234375 C 5.09375 -3.828125 5 -4.304688 4.8125 -4.671875 C 4.507812 -5.242188 4 -5.53125 3.28125 -5.53125 C 2.632812 -5.53125 2.164062 -5.285156 1.875 -4.796875 C 1.582031 -4.304688 1.4375 -3.710938 1.4375 -3.015625 C 1.4375 -2.347656 1.582031 -1.789062 1.875 -1.34375 C 2.164062 -0.90625 2.628906 -0.6875 3.265625 -0.6875 Z M 3.3125 -6.453125 C 4.113281 -6.453125 4.789062 -6.179688 5.34375 -5.640625 C 5.90625 -5.109375 6.1875 -4.316406 6.1875 -3.265625 C 6.1875 -2.253906 5.941406 -1.414062 5.453125 -0.75 C 4.960938 -0.09375 4.203125 0.234375 3.171875 0.234375 C 2.304688 0.234375 1.617188 -0.0546875 1.109375 -0.640625 C 0.597656 -1.234375 0.34375 -2.019531 0.34375 -3 C 0.34375 -4.050781 0.609375 -4.890625 1.140625 -5.515625 C 1.679688 -6.140625 2.40625 -6.453125 3.3125 -6.453125 Z M 3.265625 -6.421875 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph2-0"> | |
<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph2-1"> | |
<path style="stroke:none;" d="M -8.03125 -0.984375 L -8.03125 -2.046875 L -6.28125 -2.046875 L -6.28125 -3.046875 L -5.421875 -3.046875 L -5.421875 -2.046875 L -1.3125 -2.046875 C -1.09375 -2.046875 -0.945312 -2.125 -0.875 -2.28125 C -0.832031 -2.351562 -0.8125 -2.488281 -0.8125 -2.6875 C -0.8125 -2.738281 -0.8125 -2.789062 -0.8125 -2.84375 C -0.820312 -2.90625 -0.828125 -2.972656 -0.828125 -3.046875 L 0 -3.046875 C 0.03125 -2.929688 0.0507812 -2.804688 0.0625 -2.671875 C 0.0820312 -2.546875 0.09375 -2.40625 0.09375 -2.25 C 0.09375 -1.757812 -0.03125 -1.425781 -0.28125 -1.25 C -0.53125 -1.070312 -0.859375 -0.984375 -1.265625 -0.984375 L -5.421875 -0.984375 L -5.421875 -0.140625 L -6.28125 -0.140625 L -6.28125 -0.984375 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph2-2"> | |
<path style="stroke:none;" d="M -6.421875 -3.390625 C -6.421875 -3.835938 -6.316406 -4.269531 -6.109375 -4.6875 C -5.898438 -5.101562 -5.628906 -5.421875 -5.296875 -5.640625 C -4.972656 -5.847656 -4.601562 -5.988281 -4.1875 -6.0625 C -3.894531 -6.125 -3.429688 -6.15625 -2.796875 -6.15625 L -2.796875 -1.546875 C -2.160156 -1.566406 -1.648438 -1.71875 -1.265625 -2 C -0.878906 -2.28125 -0.6875 -2.71875 -0.6875 -3.3125 C -0.6875 -3.863281 -0.867188 -4.300781 -1.234375 -4.625 C -1.441406 -4.8125 -1.6875 -4.945312 -1.96875 -5.03125 L -1.96875 -6.0625 C -1.738281 -6.039062 -1.484375 -5.953125 -1.203125 -5.796875 C -0.921875 -5.640625 -0.6875 -5.46875 -0.5 -5.28125 C -0.1875 -4.957031 0.0195312 -4.554688 0.125 -4.078125 C 0.1875 -3.828125 0.21875 -3.539062 0.21875 -3.21875 C 0.21875 -2.4375 -0.0625 -1.773438 -0.625 -1.234375 C -1.195312 -0.691406 -1.992188 -0.421875 -3.015625 -0.421875 C -4.023438 -0.421875 -4.84375 -0.691406 -5.46875 -1.234375 C -6.101562 -1.785156 -6.421875 -2.503906 -6.421875 -3.390625 Z M -3.640625 -5.0625 C -4.097656 -5.019531 -4.460938 -4.921875 -4.734375 -4.765625 C -5.242188 -4.484375 -5.5 -4.003906 -5.5 -3.328125 C -5.5 -2.835938 -5.320312 -2.425781 -4.96875 -2.09375 C -4.625 -1.769531 -4.179688 -1.597656 -3.640625 -1.578125 Z M -6.421875 -3.28125 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph2-3"> | |
<path style="stroke:none;" d="M -1.96875 -1.40625 C -1.613281 -1.4375 -1.34375 -1.523438 -1.15625 -1.671875 C -0.820312 -1.929688 -0.65625 -2.390625 -0.65625 -3.046875 C -0.65625 -3.441406 -0.738281 -3.785156 -0.90625 -4.078125 C -1.070312 -4.378906 -1.332031 -4.53125 -1.6875 -4.53125 C -1.957031 -4.53125 -2.164062 -4.410156 -2.3125 -4.171875 C -2.394531 -4.015625 -2.492188 -3.710938 -2.609375 -3.265625 L -2.8125 -2.421875 C -2.945312 -1.890625 -3.097656 -1.5 -3.265625 -1.25 C -3.546875 -0.789062 -3.941406 -0.5625 -4.453125 -0.5625 C -5.046875 -0.5625 -5.523438 -0.773438 -5.890625 -1.203125 C -6.253906 -1.628906 -6.4375 -2.207031 -6.4375 -2.9375 C -6.4375 -3.875 -6.160156 -4.550781 -5.609375 -4.96875 C -5.253906 -5.238281 -4.875 -5.367188 -4.46875 -5.359375 L -4.46875 -4.359375 C -4.707031 -4.335938 -4.925781 -4.253906 -5.125 -4.109375 C -5.394531 -3.867188 -5.53125 -3.445312 -5.53125 -2.84375 C -5.53125 -2.445312 -5.453125 -2.144531 -5.296875 -1.9375 C -5.148438 -1.738281 -4.953125 -1.640625 -4.703125 -1.640625 C -4.429688 -1.640625 -4.210938 -1.773438 -4.046875 -2.046875 C -3.953125 -2.203125 -3.867188 -2.429688 -3.796875 -2.734375 L -3.625 -3.421875 C -3.4375 -4.179688 -3.257812 -4.691406 -3.09375 -4.953125 C -2.820312 -5.359375 -2.394531 -5.5625 -1.8125 -5.5625 C -1.257812 -5.5625 -0.78125 -5.347656 -0.375 -4.921875 C 0.03125 -4.503906 0.234375 -3.863281 0.234375 -3 C 0.234375 -2.0625 0.0234375 -1.394531 -0.390625 -1 C -0.816406 -0.613281 -1.34375 -0.410156 -1.96875 -0.390625 Z M -6.421875 -2.953125 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph2-4"> | |
<path style="stroke:none;" d=""/> | |
</symbol> | |
<symbol overflow="visible" id="glyph2-5"> | |
<path style="stroke:none;" d="M -0.6875 -3.265625 C -0.6875 -3.960938 -0.945312 -4.441406 -1.46875 -4.703125 C -2 -4.960938 -2.585938 -5.09375 -3.234375 -5.09375 C -3.828125 -5.09375 -4.304688 -5 -4.671875 -4.8125 C -5.242188 -4.507812 -5.53125 -4 -5.53125 -3.28125 C -5.53125 -2.632812 -5.285156 -2.164062 -4.796875 -1.875 C -4.304688 -1.582031 -3.710938 -1.4375 -3.015625 -1.4375 C -2.347656 -1.4375 -1.789062 -1.582031 -1.34375 -1.875 C -0.90625 -2.164062 -0.6875 -2.628906 -0.6875 -3.265625 Z M -6.453125 -3.3125 C -6.453125 -4.113281 -6.179688 -4.789062 -5.640625 -5.34375 C -5.109375 -5.90625 -4.316406 -6.1875 -3.265625 -6.1875 C -2.253906 -6.1875 -1.414062 -5.941406 -0.75 -5.453125 C -0.09375 -4.960938 0.234375 -4.203125 0.234375 -3.171875 C 0.234375 -2.304688 -0.0546875 -1.617188 -0.640625 -1.109375 C -1.234375 -0.597656 -2.019531 -0.34375 -3 -0.34375 C -4.050781 -0.34375 -4.890625 -0.609375 -5.515625 -1.140625 C -6.140625 -1.679688 -6.453125 -2.40625 -6.453125 -3.3125 Z M -6.421875 -3.265625 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph2-6"> | |
<path style="stroke:none;" d="M -7.234375 -1.03125 C -7.671875 -1.050781 -7.988281 -1.128906 -8.1875 -1.265625 C -8.550781 -1.515625 -8.734375 -1.988281 -8.734375 -2.6875 C -8.734375 -2.757812 -8.726562 -2.828125 -8.71875 -2.890625 C -8.71875 -2.960938 -8.710938 -3.046875 -8.703125 -3.140625 L -7.75 -3.140625 C -7.757812 -3.023438 -7.765625 -2.941406 -7.765625 -2.890625 C -7.765625 -2.847656 -7.765625 -2.804688 -7.765625 -2.765625 C -7.765625 -2.441406 -7.679688 -2.25 -7.515625 -2.1875 C -7.347656 -2.125 -6.925781 -2.09375 -6.25 -2.09375 L -6.25 -3.140625 L -5.421875 -3.140625 L -5.421875 -2.078125 L 0 -2.078125 L 0 -1.03125 L -5.421875 -1.03125 L -5.421875 -0.171875 L -6.25 -0.171875 L -6.25 -1.03125 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph2-7"> | |
<path style="stroke:none;" d="M -3.0625 -1.4375 C -2.394531 -1.4375 -1.832031 -1.578125 -1.375 -1.859375 C -0.925781 -2.148438 -0.703125 -2.609375 -0.703125 -3.234375 C -0.703125 -3.722656 -0.910156 -4.125 -1.328125 -4.4375 C -1.742188 -4.757812 -2.347656 -4.921875 -3.140625 -4.921875 C -3.929688 -4.921875 -4.515625 -4.753906 -4.890625 -4.421875 C -5.273438 -4.097656 -5.46875 -3.703125 -5.46875 -3.234375 C -5.46875 -2.703125 -5.265625 -2.269531 -4.859375 -1.9375 C -4.453125 -1.601562 -3.851562 -1.4375 -3.0625 -1.4375 Z M -6.390625 -3.03125 C -6.390625 -3.507812 -6.285156 -3.910156 -6.078125 -4.234375 C -5.960938 -4.421875 -5.757812 -4.632812 -5.46875 -4.875 L -8.640625 -4.875 L -8.640625 -5.890625 L 0 -5.890625 L 0 -4.9375 L -0.875 -4.9375 C -0.488281 -4.695312 -0.207031 -4.40625 -0.03125 -4.0625 C 0.132812 -3.726562 0.21875 -3.34375 0.21875 -2.90625 C 0.21875 -2.207031 -0.0703125 -1.601562 -0.65625 -1.09375 C -1.25 -0.582031 -2.03125 -0.328125 -3 -0.328125 C -3.914062 -0.328125 -4.707031 -0.5625 -5.375 -1.03125 C -6.050781 -1.5 -6.390625 -2.164062 -6.390625 -3.03125 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph2-8"> | |
<path style="stroke:none;" d="M -6.25 -0.78125 L -6.25 -1.84375 L 0 -1.84375 L 0 -0.78125 Z M -8.609375 -0.78125 L -8.609375 -1.84375 L -7.40625 -1.84375 L -7.40625 -0.78125 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph2-9"> | |
<path style="stroke:none;" d="M -1.671875 -1.578125 C -1.367188 -1.578125 -1.128906 -1.6875 -0.953125 -1.90625 C -0.773438 -2.132812 -0.6875 -2.398438 -0.6875 -2.703125 C -0.6875 -3.078125 -0.769531 -3.4375 -0.9375 -3.78125 C -1.226562 -4.375 -1.695312 -4.671875 -2.34375 -4.671875 L -3.1875 -4.671875 C -3.113281 -4.535156 -3.046875 -4.363281 -2.984375 -4.15625 C -2.929688 -3.957031 -2.894531 -3.757812 -2.875 -3.5625 L -2.796875 -2.9375 C -2.742188 -2.550781 -2.660156 -2.257812 -2.546875 -2.0625 C -2.367188 -1.738281 -2.078125 -1.578125 -1.671875 -1.578125 Z M -3.796875 -4.140625 C -3.828125 -4.378906 -3.929688 -4.539062 -4.109375 -4.625 C -4.203125 -4.664062 -4.335938 -4.6875 -4.515625 -4.6875 C -4.867188 -4.6875 -5.125 -4.554688 -5.28125 -4.296875 C -5.445312 -4.046875 -5.53125 -3.6875 -5.53125 -3.21875 C -5.53125 -2.664062 -5.382812 -2.273438 -5.09375 -2.046875 C -4.925781 -1.910156 -4.679688 -1.820312 -4.359375 -1.78125 L -4.359375 -0.796875 C -5.128906 -0.816406 -5.664062 -1.066406 -5.96875 -1.546875 C -6.269531 -2.035156 -6.421875 -2.597656 -6.421875 -3.234375 C -6.421875 -3.972656 -6.28125 -4.570312 -6 -5.03125 C -5.71875 -5.488281 -5.28125 -5.71875 -4.6875 -5.71875 L -1.078125 -5.71875 C -0.972656 -5.71875 -0.882812 -5.738281 -0.8125 -5.78125 C -0.75 -5.832031 -0.71875 -5.929688 -0.71875 -6.078125 C -0.71875 -6.117188 -0.71875 -6.164062 -0.71875 -6.21875 C -0.726562 -6.28125 -0.738281 -6.347656 -0.75 -6.421875 L 0.03125 -6.421875 C 0.0703125 -6.253906 0.0976562 -6.125 0.109375 -6.03125 C 0.128906 -5.945312 0.140625 -5.832031 0.140625 -5.6875 C 0.140625 -5.320312 0.0078125 -5.0625 -0.25 -4.90625 C -0.382812 -4.8125 -0.578125 -4.75 -0.828125 -4.71875 C -0.546875 -4.5 -0.300781 -4.1875 -0.09375 -3.78125 C 0.113281 -3.382812 0.21875 -2.945312 0.21875 -2.46875 C 0.21875 -1.882812 0.0390625 -1.40625 -0.3125 -1.03125 C -0.664062 -0.664062 -1.109375 -0.484375 -1.640625 -0.484375 C -2.222656 -0.484375 -2.675781 -0.664062 -3 -1.03125 C -3.320312 -1.394531 -3.519531 -1.867188 -3.59375 -2.453125 Z M -6.421875 -3.265625 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph2-10"> | |
<path style="stroke:none;" d="M -8.640625 -0.6875 L -8.640625 -1.71875 L -5.515625 -1.71875 C -5.816406 -1.945312 -6.046875 -2.222656 -6.203125 -2.546875 C -6.359375 -2.867188 -6.4375 -3.21875 -6.4375 -3.59375 C -6.4375 -4.375 -6.164062 -5.003906 -5.625 -5.484375 C -5.09375 -5.972656 -4.304688 -6.21875 -3.265625 -6.21875 C -2.265625 -6.21875 -1.4375 -5.976562 -0.78125 -5.5 C -0.125 -5.019531 0.203125 -4.351562 0.203125 -3.5 C 0.203125 -3.019531 0.0859375 -2.617188 -0.140625 -2.296875 C -0.285156 -2.097656 -0.503906 -1.890625 -0.796875 -1.671875 L 0 -1.671875 L 0 -0.6875 Z M -0.734375 -3.4375 C -0.734375 -4.007812 -0.957031 -4.4375 -1.40625 -4.71875 C -1.863281 -5 -2.460938 -5.140625 -3.203125 -5.140625 C -3.867188 -5.140625 -4.414062 -5 -4.84375 -4.71875 C -5.28125 -4.4375 -5.5 -4.019531 -5.5 -3.46875 C -5.5 -2.988281 -5.320312 -2.566406 -4.96875 -2.203125 C -4.613281 -1.835938 -4.023438 -1.65625 -3.203125 -1.65625 C -2.617188 -1.65625 -2.140625 -1.726562 -1.765625 -1.875 C -1.078125 -2.15625 -0.734375 -2.675781 -0.734375 -3.4375 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph3-0"> | |
<path style="stroke:none;" d="M 0.71875 0 L 0.71875 -6.90625 L 6.28125 -6.90625 L 6.28125 0 Z M 5.421875 -0.859375 L 5.421875 -6.046875 L 1.578125 -6.046875 L 1.578125 -0.859375 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph3-1"> | |
<path style="stroke:none;" d="M 2.8125 -1.09375 C 3.125 -1.09375 3.390625 -1.207031 3.609375 -1.4375 C 3.828125 -1.675781 3.9375 -2.054688 3.9375 -2.578125 C 3.9375 -3.054688 3.832031 -3.421875 3.625 -3.671875 C 3.414062 -3.929688 3.140625 -4.0625 2.796875 -4.0625 C 2.328125 -4.0625 2.003906 -3.84375 1.828125 -3.40625 C 1.734375 -3.164062 1.6875 -2.875 1.6875 -2.53125 C 1.6875 -2.238281 1.738281 -1.976562 1.84375 -1.75 C 2.019531 -1.3125 2.34375 -1.09375 2.8125 -1.09375 Z M 2.484375 -5.234375 C 2.734375 -5.234375 2.957031 -5.191406 3.15625 -5.109375 C 3.476562 -4.972656 3.738281 -4.726562 3.9375 -4.375 L 3.9375 -5.109375 L 5.234375 -5.109375 L 5.234375 -0.265625 C 5.234375 0.390625 5.125 0.890625 4.90625 1.234375 C 4.519531 1.804688 3.789062 2.09375 2.71875 2.09375 C 2.0625 2.09375 1.523438 1.960938 1.109375 1.703125 C 0.703125 1.453125 0.476562 1.070312 0.4375 0.5625 L 1.890625 0.5625 C 1.921875 0.71875 1.976562 0.828125 2.0625 0.890625 C 2.207031 1.015625 2.453125 1.078125 2.796875 1.078125 C 3.273438 1.078125 3.59375 0.914062 3.75 0.59375 C 3.863281 0.382812 3.921875 0.0390625 3.921875 -0.4375 L 3.921875 -0.765625 C 3.785156 -0.546875 3.644531 -0.382812 3.5 -0.28125 C 3.238281 -0.0820312 2.894531 0.015625 2.46875 0.015625 C 1.8125 0.015625 1.285156 -0.210938 0.890625 -0.671875 C 0.503906 -1.128906 0.3125 -1.75 0.3125 -2.53125 C 0.3125 -3.289062 0.5 -3.929688 0.875 -4.453125 C 1.25 -4.972656 1.785156 -5.234375 2.484375 -5.234375 Z M 2.90625 -5.234375 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph3-2"> | |
<path style="stroke:none;" d="M 1.984375 0 L 0.65625 0 L 0.65625 -6.90625 L 1.984375 -6.90625 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph3-3"> | |
<path style="stroke:none;" d="M 1.953125 -5.109375 L 1.953125 -2.03125 C 1.953125 -1.738281 1.988281 -1.519531 2.0625 -1.375 C 2.175781 -1.113281 2.410156 -0.984375 2.765625 -0.984375 C 3.222656 -0.984375 3.535156 -1.164062 3.703125 -1.53125 C 3.796875 -1.738281 3.84375 -2.003906 3.84375 -2.328125 L 3.84375 -5.109375 L 5.1875 -5.109375 L 5.1875 0 L 3.890625 0 L 3.890625 -0.71875 C 3.878906 -0.707031 3.847656 -0.660156 3.796875 -0.578125 C 3.753906 -0.503906 3.695312 -0.4375 3.625 -0.375 C 3.414062 -0.1875 3.210938 -0.0625 3.015625 0 C 2.816406 0.0703125 2.585938 0.109375 2.328125 0.109375 C 1.578125 0.109375 1.070312 -0.160156 0.8125 -0.703125 C 0.65625 -1.003906 0.578125 -1.445312 0.578125 -2.03125 L 0.578125 -5.109375 Z M 2.890625 -5.234375 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph3-4"> | |
<path style="stroke:none;" d="M 3.671875 -3.28125 C 3.648438 -3.46875 3.585938 -3.640625 3.484375 -3.796875 C 3.328125 -3.992188 3.09375 -4.09375 2.78125 -4.09375 C 2.332031 -4.09375 2.023438 -3.867188 1.859375 -3.421875 C 1.773438 -3.191406 1.734375 -2.878906 1.734375 -2.484375 C 1.734375 -2.109375 1.773438 -1.804688 1.859375 -1.578125 C 2.015625 -1.148438 2.316406 -0.9375 2.765625 -0.9375 C 3.078125 -0.9375 3.296875 -1.019531 3.421875 -1.1875 C 3.554688 -1.363281 3.632812 -1.582031 3.65625 -1.84375 L 5.03125 -1.84375 C 5 -1.4375 4.851562 -1.054688 4.59375 -0.703125 C 4.164062 -0.117188 3.539062 0.171875 2.71875 0.171875 C 1.90625 0.171875 1.300781 -0.0664062 0.90625 -0.546875 C 0.519531 -1.035156 0.328125 -1.671875 0.328125 -2.453125 C 0.328125 -3.328125 0.539062 -4.007812 0.96875 -4.5 C 1.394531 -4.988281 1.988281 -5.234375 2.75 -5.234375 C 3.382812 -5.234375 3.90625 -5.085938 4.3125 -4.796875 C 4.71875 -4.503906 4.960938 -4 5.046875 -3.28125 Z M 2.765625 -5.234375 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph3-5"> | |
<path style="stroke:none;" d="M 2.90625 -0.9375 C 3.300781 -0.9375 3.601562 -1.078125 3.8125 -1.359375 C 4.019531 -1.640625 4.125 -2.035156 4.125 -2.546875 C 4.125 -3.054688 4.019531 -3.445312 3.8125 -3.71875 C 3.601562 -4 3.300781 -4.140625 2.90625 -4.140625 C 2.519531 -4.140625 2.222656 -4 2.015625 -3.71875 C 1.804688 -3.445312 1.703125 -3.054688 1.703125 -2.546875 C 1.703125 -2.035156 1.804688 -1.640625 2.015625 -1.359375 C 2.222656 -1.078125 2.519531 -0.9375 2.90625 -0.9375 Z M 5.53125 -2.546875 C 5.53125 -1.796875 5.3125 -1.15625 4.875 -0.625 C 4.445312 -0.09375 3.796875 0.171875 2.921875 0.171875 C 2.046875 0.171875 1.390625 -0.09375 0.953125 -0.625 C 0.523438 -1.15625 0.3125 -1.796875 0.3125 -2.546875 C 0.3125 -3.285156 0.523438 -3.921875 0.953125 -4.453125 C 1.390625 -4.992188 2.046875 -5.265625 2.921875 -5.265625 C 3.796875 -5.265625 4.445312 -4.992188 4.875 -4.453125 C 5.3125 -3.921875 5.53125 -3.285156 5.53125 -2.546875 Z M 2.921875 -5.234375 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph3-6"> | |
<path style="stroke:none;" d="M 1.65625 -1.625 C 1.6875 -1.394531 1.75 -1.226562 1.84375 -1.125 C 2.007812 -0.945312 2.316406 -0.859375 2.765625 -0.859375 C 3.023438 -0.859375 3.234375 -0.894531 3.390625 -0.96875 C 3.546875 -1.050781 3.625 -1.171875 3.625 -1.328125 C 3.625 -1.472656 3.5625 -1.585938 3.4375 -1.671875 C 3.3125 -1.742188 2.847656 -1.878906 2.046875 -2.078125 C 1.460938 -2.210938 1.050781 -2.390625 0.8125 -2.609375 C 0.582031 -2.816406 0.46875 -3.125 0.46875 -3.53125 C 0.46875 -4 0.648438 -4.398438 1.015625 -4.734375 C 1.390625 -5.078125 1.910156 -5.25 2.578125 -5.25 C 3.210938 -5.25 3.726562 -5.117188 4.125 -4.859375 C 4.53125 -4.609375 4.765625 -4.171875 4.828125 -3.546875 L 3.5 -3.546875 C 3.476562 -3.722656 3.425781 -3.859375 3.34375 -3.953125 C 3.195312 -4.140625 2.945312 -4.234375 2.59375 -4.234375 C 2.3125 -4.234375 2.109375 -4.1875 1.984375 -4.09375 C 1.859375 -4 1.796875 -3.894531 1.796875 -3.78125 C 1.796875 -3.625 1.859375 -3.507812 1.984375 -3.4375 C 2.117188 -3.363281 2.582031 -3.242188 3.375 -3.078125 C 3.90625 -2.953125 4.304688 -2.757812 4.578125 -2.5 C 4.835938 -2.25 4.96875 -1.929688 4.96875 -1.546875 C 4.96875 -1.035156 4.78125 -0.617188 4.40625 -0.296875 C 4.03125 0.015625 3.445312 0.171875 2.65625 0.171875 C 1.851562 0.171875 1.257812 0.00390625 0.875 -0.328125 C 0.5 -0.671875 0.3125 -1.101562 0.3125 -1.625 Z M 2.6875 -5.234375 Z "/> | |
</symbol> | |
<symbol overflow="visible" id="glyph3-7"> | |
<path style="stroke:none;" d="M 2.640625 -4.140625 C 2.328125 -4.140625 2.082031 -4.039062 1.90625 -3.84375 C 1.738281 -3.65625 1.632812 -3.394531 1.59375 -3.0625 L 3.671875 -3.0625 C 3.648438 -3.414062 3.539062 -3.679688 3.34375 -3.859375 C 3.15625 -4.046875 2.921875 -4.140625 2.640625 -4.140625 Z M 2.640625 -5.234375 C 3.066406 -5.234375 3.445312 -5.15625 3.78125 -5 C 4.125 -4.84375 4.40625 -4.59375 4.625 -4.25 C 4.820312 -3.945312 4.953125 -3.59375 5.015625 -3.1875 C 5.046875 -2.957031 5.0625 -2.625 5.0625 -2.1875 L 1.5625 -2.1875 C 1.582031 -1.675781 1.742188 -1.316406 2.046875 -1.109375 C 2.234375 -0.972656 2.457031 -0.90625 2.71875 -0.90625 C 2.988281 -0.90625 3.207031 -0.984375 3.375 -1.140625 C 3.46875 -1.234375 3.550781 -1.351562 3.625 -1.5 L 5 -1.5 C 4.957031 -1.195312 4.796875 -0.890625 4.515625 -0.578125 C 4.078125 -0.078125 3.46875 0.171875 2.6875 0.171875 C 2.03125 0.171875 1.453125 -0.0351562 0.953125 -0.453125 C 0.460938 -0.878906 0.21875 -1.5625 0.21875 -2.5 C 0.21875 -3.382812 0.441406 -4.0625 0.890625 -4.53125 C 1.335938 -5 1.921875 -5.234375 2.640625 -5.234375 Z M 2.734375 -5.234375 Z "/> | |
</symbol> | |
</g> | |
<clipPath id="clip1"> | |
<path d="M 48.769531 14.398438 L 341 14.398438 L 341 252 L 48.769531 252 Z "/> | |
</clipPath> | |
<clipPath id="clip2"> | |
<path d="M 48.769531 231 L 341 231 L 341 233 L 48.769531 233 Z "/> | |
</clipPath> | |
<clipPath id="clip3"> | |
<path d="M 48.769531 168 L 341 168 L 341 170 L 48.769531 170 Z "/> | |
</clipPath> | |
<clipPath id="clip4"> | |
<path d="M 48.769531 105 L 341 105 L 341 106 L 48.769531 106 Z "/> | |
</clipPath> | |
<clipPath id="clip5"> | |
<path d="M 48.769531 41 L 341 41 L 341 43 L 48.769531 43 Z "/> | |
</clipPath> | |
<clipPath id="clip6"> | |
<path d="M 81 14.398438 L 82 14.398438 L 82 252 L 81 252 Z "/> | |
</clipPath> | |
<clipPath id="clip7"> | |
<path d="M 137 14.398438 L 139 14.398438 L 139 252 L 137 252 Z "/> | |
</clipPath> | |
<clipPath id="clip8"> | |
<path d="M 194 14.398438 L 195 14.398438 L 195 252 L 194 252 Z "/> | |
</clipPath> | |
<clipPath id="clip9"> | |
<path d="M 250 14.398438 L 252 14.398438 L 252 252 L 250 252 Z "/> | |
</clipPath> | |
<clipPath id="clip10"> | |
<path d="M 307 14.398438 L 309 14.398438 L 309 252 L 307 252 Z "/> | |
</clipPath> | |
<clipPath id="clip11"> | |
<path d="M 48.769531 199 L 341 199 L 341 201 L 48.769531 201 Z "/> | |
</clipPath> | |
<clipPath id="clip12"> | |
<path d="M 48.769531 136 L 341 136 L 341 138 L 48.769531 138 Z "/> | |
</clipPath> | |
<clipPath id="clip13"> | |
<path d="M 48.769531 73 L 341 73 L 341 75 L 48.769531 75 Z "/> | |
</clipPath> | |
<clipPath id="clip14"> | |
<path d="M 52 14.398438 L 54 14.398438 L 54 252 L 52 252 Z "/> | |
</clipPath> | |
<clipPath id="clip15"> | |
<path d="M 109 14.398438 L 111 14.398438 L 111 252 L 109 252 Z "/> | |
</clipPath> | |
<clipPath id="clip16"> | |
<path d="M 165 14.398438 L 167 14.398438 L 167 252 L 165 252 Z "/> | |
</clipPath> | |
<clipPath id="clip17"> | |
<path d="M 222 14.398438 L 224 14.398438 L 224 252 L 222 252 Z "/> | |
</clipPath> | |
<clipPath id="clip18"> | |
<path d="M 278 14.398438 L 281 14.398438 L 281 252 L 278 252 Z "/> | |
</clipPath> | |
<clipPath id="clip19"> | |
<path d="M 335 14.398438 L 337 14.398438 L 337 252 L 335 252 Z "/> | |
</clipPath> | |
</defs> | |
<g id="surface1"> | |
<rect x="0" y="0" width="432" height="288" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/> | |
<rect x="0" y="0" width="432" height="288" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 288 L 432 288 L 432 0 L 0 0 Z "/> | |
<g clip-path="url(#clip1)" clip-rule="nonzero"> | |
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 48.769531 251.027344 L 340.246094 251.027344 L 340.246094 14.398438 L 48.769531 14.398438 Z "/> | |
</g> | |
<g clip-path="url(#clip2)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.769531 232.027344 L 340.242188 232.027344 "/> | |
</g> | |
<g clip-path="url(#clip3)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.769531 168.753906 L 340.242188 168.753906 "/> | |
</g> | |
<g clip-path="url(#clip4)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.769531 105.484375 L 340.242188 105.484375 "/> | |
</g> | |
<g clip-path="url(#clip5)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.769531 42.210938 L 340.242188 42.210938 "/> | |
</g> | |
<g clip-path="url(#clip6)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 81.476562 251.027344 L 81.476562 14.398438 "/> | |
</g> | |
<g clip-path="url(#clip7)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.046875 251.027344 L 138.046875 14.398438 "/> | |
</g> | |
<g clip-path="url(#clip8)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.617188 251.027344 L 194.617188 14.398438 "/> | |
</g> | |
<g clip-path="url(#clip9)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.191406 251.027344 L 251.191406 14.398438 "/> | |
</g> | |
<g clip-path="url(#clip10)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 307.761719 251.027344 L 307.761719 14.398438 "/> | |
</g> | |
<g clip-path="url(#clip11)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.769531 200.390625 L 340.242188 200.390625 "/> | |
</g> | |
<g clip-path="url(#clip12)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.769531 137.117188 L 340.242188 137.117188 "/> | |
</g> | |
<g clip-path="url(#clip13)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.769531 73.847656 L 340.242188 73.847656 "/> | |
</g> | |
<g clip-path="url(#clip14)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 53.191406 251.027344 L 53.191406 14.398438 "/> | |
</g> | |
<g clip-path="url(#clip15)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.761719 251.027344 L 109.761719 14.398438 "/> | |
</g> | |
<g clip-path="url(#clip16)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.332031 251.027344 L 166.332031 14.398438 "/> | |
</g> | |
<g clip-path="url(#clip17)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.90625 251.027344 L 222.90625 14.398438 "/> | |
</g> | |
<g clip-path="url(#clip18)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.476562 251.027344 L 279.476562 14.398438 "/> | |
</g> | |
<g clip-path="url(#clip19)" clip-rule="nonzero"> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.046875 251.027344 L 336.046875 14.398438 "/> | |
</g> | |
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.2;" d="M 62.015625 222.003906 L 64.695312 221.535156 L 67.371094 221.050781 L 70.046875 220.550781 L 72.722656 220.035156 L 75.398438 219.5 L 78.078125 218.949219 L 80.753906 218.371094 L 83.429688 217.777344 L 86.105469 217.152344 L 88.78125 216.507812 L 91.460938 215.832031 L 94.136719 215.128906 L 96.8125 214.394531 L 99.488281 213.625 L 102.164062 212.824219 L 104.839844 211.984375 L 107.519531 211.109375 L 110.195312 210.195312 L 112.871094 209.246094 L 115.546875 208.25 L 118.222656 207.21875 L 120.902344 206.144531 L 123.578125 205.027344 L 126.253906 203.867188 L 128.929688 202.667969 L 131.605469 201.429688 L 134.285156 200.148438 L 136.960938 198.828125 L 139.636719 197.46875 L 142.3125 196.066406 L 144.988281 194.632812 L 147.667969 193.15625 L 150.34375 191.648438 L 153.019531 190.101562 L 155.695312 188.519531 L 158.371094 186.90625 L 161.050781 185.257812 L 163.726562 183.582031 L 166.402344 181.871094 L 169.078125 180.132812 L 171.753906 178.363281 L 174.433594 176.566406 L 177.109375 174.746094 L 179.785156 172.898438 L 182.460938 171.023438 L 185.136719 169.128906 L 187.8125 167.210938 L 190.492188 165.269531 L 193.167969 163.3125 L 195.84375 161.332031 L 198.519531 159.335938 L 201.195312 157.320312 L 203.875 155.292969 L 206.550781 153.25 L 209.226562 151.195312 L 211.902344 149.128906 L 214.578125 147.054688 L 217.257812 144.96875 L 219.933594 142.875 L 222.609375 140.773438 L 227.960938 136.5625 L 230.640625 134.449219 L 233.316406 132.339844 L 235.992188 130.226562 L 238.667969 128.117188 L 241.34375 126.011719 L 244.023438 123.910156 L 246.699219 121.8125 L 249.375 119.722656 L 252.050781 117.640625 L 254.726562 115.566406 L 257.40625 113.503906 L 260.082031 111.453125 L 262.757812 109.414062 L 265.433594 107.390625 L 268.109375 105.378906 L 270.789062 103.382812 L 273.464844 101.40625 L 276.140625 99.445312 L 278.816406 97.507812 L 281.492188 95.585938 L 284.167969 93.683594 L 286.847656 91.804688 L 289.523438 89.945312 L 292.199219 88.109375 L 294.875 86.296875 L 297.550781 84.507812 L 300.230469 82.746094 L 302.90625 81.003906 L 305.582031 79.292969 L 308.257812 77.605469 L 310.933594 75.941406 L 313.613281 74.308594 L 316.289062 72.699219 L 318.964844 71.117188 L 321.640625 69.566406 L 324.316406 68.039062 L 326.996094 66.539062 L 326.996094 188.667969 L 324.316406 189.164062 L 321.640625 189.660156 L 316.289062 190.644531 L 313.613281 191.132812 L 310.933594 191.625 L 308.257812 192.109375 L 305.582031 192.597656 L 302.90625 193.082031 L 300.230469 193.5625 L 297.550781 194.042969 L 292.199219 195.003906 L 286.847656 195.957031 L 284.167969 196.429688 L 278.816406 197.375 L 270.789062 198.78125 L 268.109375 199.246094 L 262.757812 200.175781 L 257.40625 201.097656 L 254.726562 201.558594 L 252.050781 202.015625 L 249.375 202.476562 L 246.699219 202.929688 L 244.023438 203.386719 L 241.34375 203.839844 L 238.667969 204.296875 L 235.992188 204.746094 L 230.640625 205.652344 L 227.960938 206.101562 L 217.257812 207.898438 L 214.578125 208.347656 L 211.902344 208.792969 L 209.226562 209.242188 L 206.550781 209.6875 L 203.875 210.136719 L 201.195312 210.585938 L 190.492188 212.382812 L 187.8125 212.835938 L 185.136719 213.289062 L 182.460938 213.746094 L 179.785156 214.199219 L 174.433594 215.121094 L 171.753906 215.585938 L 169.078125 216.050781 L 163.726562 216.996094 L 161.050781 217.476562 L 158.371094 217.960938 L 155.695312 218.449219 L 153.019531 218.941406 L 150.34375 219.441406 L 147.667969 219.949219 L 144.988281 220.464844 L 142.3125 220.984375 L 139.636719 221.515625 L 136.960938 222.058594 L 134.285156 222.605469 L 131.605469 223.164062 L 128.929688 223.734375 L 126.253906 224.316406 L 123.578125 224.910156 L 120.902344 225.511719 L 118.222656 226.128906 L 115.546875 226.753906 L 112.871094 227.394531 L 110.195312 228.042969 L 107.519531 228.699219 L 104.839844 229.367188 L 102.164062 230.042969 L 99.488281 230.722656 L 96.8125 231.410156 L 91.460938 232.800781 L 88.78125 233.496094 L 86.105469 234.195312 L 83.429688 234.890625 L 78.078125 236.273438 L 75.398438 236.957031 L 72.722656 237.636719 L 70.046875 238.308594 L 67.371094 238.972656 L 64.695312 239.628906 L 62.015625 240.273438 Z "/> | |
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,72.941176%,21.960784%);fill-opacity:0.2;" d="M 62.015625 195.535156 L 64.695312 194.929688 L 67.371094 194.308594 L 70.046875 193.667969 L 72.722656 193.011719 L 75.398438 192.328125 L 78.078125 191.625 L 80.753906 190.894531 L 83.429688 190.132812 L 86.105469 189.339844 L 88.78125 188.511719 L 91.460938 187.644531 L 94.136719 186.734375 L 96.8125 185.777344 L 99.488281 184.773438 L 102.164062 183.714844 L 104.839844 182.605469 L 107.519531 181.4375 L 110.195312 180.210938 L 112.871094 178.925781 L 115.546875 177.582031 L 118.222656 176.183594 L 120.902344 174.722656 L 123.578125 173.210938 L 126.253906 171.644531 L 128.929688 170.03125 L 131.605469 168.367188 L 134.285156 166.660156 L 136.960938 164.910156 L 139.636719 163.125 L 142.3125 161.300781 L 144.988281 159.445312 L 147.667969 157.5625 L 150.34375 155.648438 L 153.019531 153.707031 L 155.695312 151.746094 L 158.371094 149.765625 L 161.050781 147.761719 L 163.726562 145.746094 L 166.402344 143.710938 L 169.078125 141.667969 L 171.753906 139.609375 L 174.433594 137.546875 L 177.109375 135.472656 L 179.785156 133.394531 L 185.136719 129.230469 L 187.8125 127.144531 L 190.492188 125.0625 L 193.167969 122.980469 L 195.84375 120.902344 L 198.519531 118.832031 L 201.195312 116.765625 L 203.875 114.710938 L 206.550781 112.660156 L 209.226562 110.625 L 211.902344 108.601562 L 214.578125 106.585938 L 217.257812 104.589844 L 219.933594 102.609375 L 222.609375 100.640625 L 225.285156 98.691406 L 227.960938 96.761719 L 230.640625 94.851562 L 233.316406 92.960938 L 235.992188 91.089844 L 238.667969 89.242188 L 241.34375 87.417969 L 244.023438 85.613281 L 246.699219 83.835938 L 249.375 82.082031 L 252.050781 80.351562 L 254.726562 78.648438 L 257.40625 76.96875 L 260.082031 75.320312 L 262.757812 73.691406 L 265.433594 72.09375 L 268.109375 70.523438 L 270.789062 68.980469 L 273.464844 67.464844 L 276.140625 65.976562 L 278.816406 64.515625 L 281.492188 63.082031 L 284.167969 61.675781 L 286.847656 60.300781 L 289.523438 58.949219 L 292.199219 57.628906 L 294.875 56.335938 L 297.550781 55.070312 L 300.230469 53.832031 L 302.90625 52.621094 L 305.582031 51.4375 L 308.257812 50.277344 L 310.933594 49.148438 L 313.613281 48.042969 L 316.289062 46.964844 L 318.964844 45.914062 L 321.640625 44.886719 L 324.316406 43.886719 L 326.996094 42.90625 L 326.996094 148.601562 L 324.316406 149.183594 L 321.640625 149.765625 L 318.964844 150.34375 L 316.289062 150.925781 L 313.613281 151.503906 L 310.933594 152.085938 L 302.90625 153.820312 L 300.230469 154.402344 L 297.550781 154.980469 L 294.875 155.554688 L 286.847656 157.289062 L 284.167969 157.863281 L 281.492188 158.441406 L 278.816406 159.015625 L 276.140625 159.59375 L 270.789062 160.742188 L 268.109375 161.316406 L 262.757812 162.464844 L 260.082031 163.035156 L 257.40625 163.609375 L 254.726562 164.183594 L 252.050781 164.753906 L 249.375 165.328125 L 244.023438 166.46875 L 241.34375 167.042969 L 230.640625 169.324219 L 227.960938 169.894531 L 225.285156 170.46875 L 217.257812 172.179688 L 214.578125 172.753906 L 211.902344 173.324219 L 209.226562 173.898438 L 206.550781 174.46875 L 203.875 175.042969 L 201.195312 175.617188 L 190.492188 177.929688 L 187.8125 178.511719 L 182.460938 179.683594 L 177.109375 180.863281 L 174.433594 181.460938 L 171.753906 182.058594 L 169.078125 182.664062 L 166.402344 183.273438 L 163.726562 183.886719 L 161.050781 184.507812 L 158.371094 185.136719 L 155.695312 185.769531 L 153.019531 186.414062 L 150.34375 187.070312 L 147.667969 187.734375 L 144.988281 188.410156 L 142.3125 189.101562 L 139.636719 189.808594 L 136.960938 190.535156 L 134.285156 191.277344 L 131.605469 192.042969 L 128.929688 192.828125 L 126.253906 193.640625 L 123.578125 194.480469 L 120.902344 195.347656 L 118.222656 196.246094 L 115.546875 197.175781 L 112.871094 198.140625 L 110.195312 199.132812 L 107.519531 200.160156 L 104.839844 201.21875 L 102.164062 202.304688 L 99.488281 203.417969 L 96.8125 204.550781 L 94.136719 205.707031 L 91.460938 206.878906 L 88.78125 208.0625 L 86.105469 209.257812 L 83.429688 210.457031 L 80.753906 211.660156 L 78.078125 212.859375 L 75.398438 214.054688 L 72.722656 215.246094 L 70.046875 216.429688 L 67.371094 217.601562 L 64.695312 218.761719 L 62.015625 219.90625 Z "/> | |
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(38.039216%,61.176471%,100%);fill-opacity:0.2;" d="M 62.015625 145.054688 L 64.695312 144.269531 L 67.371094 143.46875 L 70.046875 142.648438 L 72.722656 141.804688 L 75.398438 140.9375 L 78.078125 140.046875 L 80.753906 139.125 L 83.429688 138.171875 L 86.105469 137.1875 L 88.78125 136.164062 L 91.460938 135.101562 L 94.136719 133.996094 L 96.8125 132.847656 L 99.488281 131.652344 L 102.164062 130.40625 L 104.839844 129.113281 L 107.519531 127.765625 L 110.195312 126.371094 L 112.871094 124.925781 L 115.546875 123.433594 L 118.222656 121.894531 L 120.902344 120.316406 L 123.578125 118.695312 L 126.253906 117.042969 L 128.929688 115.355469 L 131.605469 113.644531 L 134.285156 111.910156 L 136.960938 110.15625 L 139.636719 108.382812 L 142.3125 106.601562 L 144.988281 104.8125 L 147.667969 103.015625 L 153.019531 99.414062 L 155.695312 97.617188 L 158.371094 95.828125 L 161.050781 94.042969 L 163.726562 92.265625 L 166.402344 90.5 L 169.078125 88.75 L 171.753906 87.011719 L 174.433594 85.289062 L 177.109375 83.582031 L 179.785156 81.894531 L 182.460938 80.222656 L 185.136719 78.574219 L 187.8125 76.945312 L 190.492188 75.339844 L 193.167969 73.753906 L 195.84375 72.195312 L 198.519531 70.65625 L 201.195312 69.144531 L 203.875 67.652344 L 206.550781 66.191406 L 209.226562 64.75 L 211.902344 63.335938 L 214.578125 61.949219 L 217.257812 60.589844 L 219.933594 59.253906 L 222.609375 57.941406 L 225.285156 56.660156 L 227.960938 55.402344 L 230.640625 54.171875 L 233.316406 52.964844 L 235.992188 51.785156 L 238.667969 50.632812 L 241.34375 49.503906 L 244.023438 48.402344 L 246.699219 47.324219 L 249.375 46.273438 L 252.050781 45.246094 L 254.726562 44.242188 L 257.40625 43.265625 L 260.082031 42.308594 L 262.757812 41.378906 L 265.433594 40.472656 L 268.109375 39.585938 L 270.789062 38.722656 L 273.464844 37.882812 L 276.140625 37.066406 L 278.816406 36.269531 L 281.492188 35.492188 L 284.167969 34.738281 L 286.847656 34.003906 L 289.523438 33.289062 L 292.199219 32.59375 L 294.875 31.917969 L 297.550781 31.261719 L 300.230469 30.621094 L 302.90625 30 L 305.582031 29.398438 L 308.257812 28.8125 L 310.933594 28.242188 L 313.613281 27.6875 L 316.289062 27.152344 L 318.964844 26.628906 L 321.640625 26.125 L 324.316406 25.632812 L 326.996094 25.15625 L 326.996094 95.605469 L 324.316406 96.128906 L 321.640625 96.65625 L 313.613281 98.25 L 310.933594 98.785156 L 308.257812 99.320312 L 302.90625 100.398438 L 300.230469 100.941406 L 297.550781 101.484375 L 289.523438 103.125 L 286.847656 103.675781 L 284.167969 104.230469 L 281.492188 104.785156 L 273.464844 106.460938 L 270.789062 107.023438 L 268.109375 107.589844 L 265.433594 108.15625 L 260.082031 109.296875 L 257.40625 109.871094 L 254.726562 110.445312 L 252.050781 111.019531 L 249.375 111.601562 L 246.699219 112.179688 L 244.023438 112.765625 L 241.34375 113.351562 L 238.667969 113.9375 L 235.992188 114.527344 L 233.316406 115.121094 L 230.640625 115.71875 L 227.960938 116.316406 L 225.285156 116.914062 L 219.933594 118.125 L 217.257812 118.734375 L 214.578125 119.347656 L 211.902344 119.960938 L 209.226562 120.578125 L 203.875 121.828125 L 201.195312 122.457031 L 198.519531 123.089844 L 195.84375 123.726562 L 193.167969 124.367188 L 190.492188 125.015625 L 187.8125 125.667969 L 185.136719 126.324219 L 182.460938 126.988281 L 179.785156 127.65625 L 177.109375 128.332031 L 174.433594 129.015625 L 171.753906 129.707031 L 169.078125 130.40625 L 166.402344 131.113281 L 163.726562 131.832031 L 161.050781 132.5625 L 158.371094 133.304688 L 155.695312 134.058594 L 153.019531 134.828125 L 150.34375 135.613281 L 147.667969 136.414062 L 144.988281 137.234375 L 142.3125 138.074219 L 139.636719 138.9375 L 136.960938 139.828125 L 134.285156 140.746094 L 131.605469 141.691406 L 128.929688 142.671875 L 126.253906 143.6875 L 123.578125 144.742188 L 120.902344 145.835938 L 118.222656 146.976562 L 115.546875 148.160156 L 112.871094 149.390625 L 110.195312 150.667969 L 107.519531 151.996094 L 104.839844 153.375 L 102.164062 154.800781 L 99.488281 156.269531 L 96.8125 157.78125 L 94.136719 159.335938 L 91.460938 160.925781 L 88.78125 162.550781 L 86.105469 164.203125 L 83.429688 165.882812 L 80.753906 167.582031 L 78.078125 169.296875 L 75.398438 171.027344 L 72.722656 172.769531 L 70.046875 174.515625 L 67.371094 176.265625 L 64.695312 178.019531 L 62.015625 179.769531 Z "/> | |
<path style="fill:none;stroke-width:2.125984;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:1;stroke-miterlimit:1;" d="M 62.015625 232.261719 L 64.695312 231.660156 L 67.371094 231.046875 L 70.046875 230.425781 L 72.722656 229.792969 L 75.398438 229.148438 L 78.078125 228.496094 L 80.753906 227.832031 L 83.429688 227.160156 L 86.105469 226.476562 L 88.78125 225.78125 L 91.460938 225.074219 L 94.136719 224.359375 L 96.8125 223.632812 L 99.488281 222.894531 L 102.164062 222.144531 L 104.839844 221.386719 L 107.519531 220.613281 L 110.195312 219.832031 L 112.871094 219.039062 L 115.546875 218.234375 L 118.222656 217.417969 L 120.902344 216.59375 L 123.578125 215.753906 L 126.253906 214.902344 L 128.929688 214.042969 L 131.605469 213.171875 L 134.285156 212.285156 L 136.960938 211.390625 L 139.636719 210.484375 L 142.3125 209.566406 L 144.988281 208.632812 L 147.667969 207.691406 L 150.34375 206.738281 L 153.019531 205.773438 L 155.695312 204.800781 L 158.371094 203.8125 L 161.050781 202.8125 L 163.726562 201.804688 L 166.402344 200.78125 L 169.078125 199.75 L 171.753906 198.707031 L 174.433594 197.648438 L 177.109375 196.585938 L 179.785156 195.507812 L 182.460938 194.417969 L 185.136719 193.320312 L 187.8125 192.210938 L 190.492188 191.09375 L 193.167969 189.960938 L 195.84375 188.820312 L 198.519531 187.671875 L 201.195312 186.511719 L 203.875 185.339844 L 206.550781 184.160156 L 209.226562 182.96875 L 211.902344 181.769531 L 214.578125 180.5625 L 217.257812 179.34375 L 219.933594 178.117188 L 222.609375 176.882812 L 225.285156 175.640625 L 227.960938 174.386719 L 230.640625 173.128906 L 233.316406 171.859375 L 235.992188 170.585938 L 238.667969 169.304688 L 241.34375 168.015625 L 244.023438 166.71875 L 246.699219 165.414062 L 249.375 164.105469 L 252.050781 162.789062 L 254.726562 161.46875 L 257.40625 160.140625 L 260.082031 158.808594 L 262.757812 157.472656 L 268.109375 154.785156 L 270.789062 153.433594 L 276.140625 150.722656 L 278.816406 149.363281 L 281.492188 147.996094 L 284.167969 146.632812 L 286.847656 145.261719 L 289.523438 143.894531 L 292.199219 142.519531 L 294.875 141.148438 L 297.550781 139.773438 L 300.230469 138.398438 L 308.257812 134.273438 L 310.933594 132.902344 L 313.613281 131.527344 L 318.964844 128.785156 L 324.316406 126.050781 L 326.996094 124.6875 "/> | |
<path style="fill:none;stroke-width:2.125984;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,72.941176%,21.960784%);stroke-opacity:1;stroke-miterlimit:1;" d="M 62.015625 208.691406 L 64.695312 207.75 L 67.371094 206.796875 L 70.046875 205.832031 L 72.722656 204.859375 L 75.398438 203.871094 L 78.078125 202.875 L 80.753906 201.863281 L 83.429688 200.84375 L 86.105469 199.8125 L 88.78125 198.769531 L 91.460938 197.714844 L 94.136719 196.648438 L 96.8125 195.574219 L 99.488281 194.484375 L 102.164062 193.386719 L 104.839844 192.28125 L 107.519531 191.160156 L 110.195312 190.03125 L 112.871094 188.890625 L 115.546875 187.742188 L 118.222656 186.582031 L 120.902344 185.410156 L 123.578125 184.230469 L 126.253906 183.042969 L 128.929688 181.84375 L 131.605469 180.636719 L 134.285156 179.417969 L 136.960938 178.191406 L 139.636719 176.957031 L 142.3125 175.714844 L 144.988281 174.464844 L 147.667969 173.207031 L 150.34375 171.9375 L 153.019531 170.664062 L 155.695312 169.382812 L 158.371094 168.09375 L 161.050781 166.796875 L 163.726562 165.492188 L 166.402344 164.183594 L 169.078125 162.871094 L 171.753906 161.546875 L 174.433594 160.222656 L 177.109375 158.890625 L 179.785156 157.554688 L 185.136719 154.867188 L 187.8125 153.515625 L 190.492188 152.160156 L 193.167969 150.804688 L 195.84375 149.445312 L 198.519531 148.082031 L 201.195312 146.714844 L 203.875 145.347656 L 209.226562 142.605469 L 214.578125 139.855469 L 217.257812 138.484375 L 227.960938 132.984375 L 230.640625 131.609375 L 235.992188 128.867188 L 241.34375 126.132812 L 244.023438 124.769531 L 246.699219 123.410156 L 252.050781 120.699219 L 254.726562 119.351562 L 257.40625 118.003906 L 262.757812 115.324219 L 268.109375 112.667969 L 270.789062 111.347656 L 273.464844 110.03125 L 276.140625 108.722656 L 278.816406 107.421875 L 281.492188 106.125 L 284.167969 104.835938 L 286.847656 103.554688 L 289.523438 102.277344 L 292.199219 101.011719 L 294.875 99.753906 L 297.550781 98.5 L 300.230469 97.257812 L 302.90625 96.023438 L 305.582031 94.796875 L 308.257812 93.582031 L 310.933594 92.375 L 313.613281 91.175781 L 316.289062 89.984375 L 318.964844 88.808594 L 321.640625 87.636719 L 324.316406 86.476562 L 326.996094 85.328125 "/> | |
<path style="fill:none;stroke-width:2.125984;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(38.039216%,61.176471%,100%);stroke-opacity:1;stroke-miterlimit:1;" d="M 62.015625 162.917969 L 64.695312 161.597656 L 67.371094 160.269531 L 70.046875 158.9375 L 72.722656 157.601562 L 75.398438 156.261719 L 78.078125 154.914062 L 80.753906 153.566406 L 86.105469 150.855469 L 88.78125 149.492188 L 91.460938 148.128906 L 94.136719 146.765625 L 96.8125 145.394531 L 99.488281 144.027344 L 102.164062 142.65625 L 104.839844 141.28125 L 107.519531 139.90625 L 118.222656 134.40625 L 120.902344 133.035156 L 123.578125 131.660156 L 128.929688 128.917969 L 131.605469 127.550781 L 134.285156 126.183594 L 136.960938 124.820312 L 142.3125 122.101562 L 144.988281 120.75 L 147.667969 119.398438 L 153.019531 116.710938 L 155.695312 115.375 L 158.371094 114.042969 L 161.050781 112.714844 L 163.726562 111.394531 L 166.402344 110.078125 L 169.078125 108.769531 L 171.753906 107.46875 L 174.433594 106.171875 L 177.109375 104.882812 L 179.785156 103.601562 L 182.460938 102.324219 L 185.136719 101.058594 L 187.8125 99.796875 L 190.492188 98.546875 L 193.167969 97.304688 L 195.84375 96.070312 L 198.519531 94.84375 L 201.195312 93.625 L 203.875 92.417969 L 206.550781 91.21875 L 209.226562 90.03125 L 211.902344 88.851562 L 214.578125 87.679688 L 217.257812 86.519531 L 219.933594 85.367188 L 222.609375 84.230469 L 225.285156 83.097656 L 227.960938 81.980469 L 230.640625 80.871094 L 233.316406 79.773438 L 235.992188 78.6875 L 238.667969 77.609375 L 241.34375 76.542969 L 244.023438 75.488281 L 246.699219 74.445312 L 249.375 73.414062 L 252.050781 72.394531 L 254.726562 71.382812 L 257.40625 70.386719 L 260.082031 69.398438 L 262.757812 68.421875 L 265.433594 67.457031 L 268.109375 66.507812 L 270.789062 65.566406 L 273.464844 64.636719 L 276.140625 63.71875 L 278.816406 62.808594 L 281.492188 61.914062 L 284.167969 61.03125 L 286.847656 60.160156 L 289.523438 59.296875 L 292.199219 58.449219 L 294.875 57.613281 L 297.550781 56.785156 L 300.230469 55.96875 L 302.90625 55.164062 L 305.582031 54.371094 L 308.257812 53.589844 L 310.933594 52.820312 L 313.613281 52.0625 L 316.289062 51.3125 L 318.964844 50.574219 L 321.640625 49.847656 L 324.316406 49.132812 L 326.996094 48.429688 "/> | |
<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;"> | |
<use xlink:href="#glyph0-1" x="23.007812" y="203.828125"/> | |
<use xlink:href="#glyph0-2" x="28.343399" y="203.828125"/> | |
<use xlink:href="#glyph0-3" x="31.00885" y="203.828125"/> | |
<use xlink:href="#glyph0-4" x="36.344437" y="203.828125"/> | |
</g> | |
<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;"> | |
<use xlink:href="#glyph0-1" x="23.007812" y="140.554688"/> | |
<use xlink:href="#glyph0-2" x="28.343399" y="140.554688"/> | |
<use xlink:href="#glyph0-4" x="31.00885" y="140.554688"/> | |
<use xlink:href="#glyph0-1" x="36.344437" y="140.554688"/> | |
</g> | |
<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;"> | |
<use xlink:href="#glyph0-1" x="23.007812" y="77.285156"/> | |
<use xlink:href="#glyph0-2" x="28.343399" y="77.285156"/> | |
<use xlink:href="#glyph0-5" x="31.00885" y="77.285156"/> | |
<use xlink:href="#glyph0-4" x="36.344437" y="77.285156"/> | |
</g> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.515625 200.390625 L 48.769531 200.390625 "/> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.515625 137.117188 L 48.769531 137.117188 "/> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.515625 73.847656 L 48.769531 73.847656 "/> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 53.191406 255.28125 L 53.191406 251.027344 "/> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.761719 255.28125 L 109.761719 251.027344 "/> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.332031 255.28125 L 166.332031 251.027344 "/> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.90625 255.28125 L 222.90625 251.027344 "/> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.476562 255.28125 L 279.476562 251.027344 "/> | |
<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.046875 255.28125 L 336.046875 251.027344 "/> | |
<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;"> | |
<use xlink:href="#glyph0-1" x="46.523438" y="264.992188"/> | |
<use xlink:href="#glyph0-2" x="51.859024" y="264.992188"/> | |
<use xlink:href="#glyph0-1" x="54.524475" y="264.992188"/> | |
</g> | |
<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;"> | |
<use xlink:href="#glyph0-1" x="103.09375" y="264.992188"/> | |
<use xlink:href="#glyph0-2" x="108.429337" y="264.992188"/> | |
<use xlink:href="#glyph0-4" x="111.094788" y="264.992188"/> | |
</g> | |
<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;"> | |
<use xlink:href="#glyph0-6" x="159.664062" y="264.992188"/> | |
<use xlink:href="#glyph0-2" x="164.999649" y="264.992188"/> | |
<use xlink:href="#glyph0-1" x="167.6651" y="264.992188"/> | |
</g> | |
<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;"> | |
<use xlink:href="#glyph0-6" x="216.238281" y="264.992188"/> | |
<use xlink:href="#glyph0-2" x="221.573868" y="264.992188"/> | |
<use xlink:href="#glyph0-4" x="224.239319" y="264.992188"/> | |
</g> | |
<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;"> | |
<use xlink:href="#glyph0-3" x="272.808594" y="264.992188"/> | |
<use xlink:href="#glyph0-2" x="278.14418" y="264.992188"/> | |
<use xlink:href="#glyph0-1" x="280.809631" y="264.992188"/> | |
</g> | |
<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;"> | |
<use xlink:href="#glyph0-3" x="329.378906" y="264.992188"/> | |
<use xlink:href="#glyph0-2" x="334.714493" y="264.992188"/> | |
<use xlink:href="#glyph0-4" x="337.379944" y="264.992188"/> | |
</g> | |
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> | |
<use xlink:href="#glyph1-1" x="124.117188" y="277.199219"/> | |
<use xlink:href="#glyph1-2" x="130.791016" y="277.199219"/> | |
<use xlink:href="#glyph1-3" x="133.457031" y="277.199219"/> | |
<use xlink:href="#glyph1-4" x="140.130859" y="277.199219"/> | |
<use xlink:href="#glyph1-5" x="146.804688" y="277.199219"/> | |
<use xlink:href="#glyph1-6" x="153.478516" y="277.199219"/> | |
<use xlink:href="#glyph1-5" x="156.8125" y="277.199219"/> | |
<use xlink:href="#glyph1-7" x="163.486328" y="277.199219"/> | |
<use xlink:href="#glyph1-8" x="169.486328" y="277.199219"/> | |
<use xlink:href="#glyph1-9" x="172.820312" y="277.199219"/> | |
<use xlink:href="#glyph1-5" x="179.494141" y="277.199219"/> | |
<use xlink:href="#glyph1-1" x="186.167969" y="277.199219"/> | |
<use xlink:href="#glyph1-2" x="192.841797" y="277.199219"/> | |
<use xlink:href="#glyph1-10" x="195.507812" y="277.199219"/> | |
<use xlink:href="#glyph1-11" x="202.181641" y="277.199219"/> | |
<use xlink:href="#glyph1-5" x="206.177734" y="277.199219"/> | |
<use xlink:href="#glyph1-5" x="212.851562" y="277.199219"/> | |
<use xlink:href="#glyph1-8" x="219.525391" y="277.199219"/> | |
<use xlink:href="#glyph1-12" x="222.859375" y="277.199219"/> | |
<use xlink:href="#glyph1-13" x="226.193359" y="277.199219"/> | |
<use xlink:href="#glyph1-14" x="232.867188" y="277.199219"/> | |
<use xlink:href="#glyph1-15" x="239.541016" y="277.199219"/> | |
<use xlink:href="#glyph1-6" x="245.541016" y="277.199219"/> | |
<use xlink:href="#glyph1-2" x="248.875" y="277.199219"/> | |
<use xlink:href="#glyph1-16" x="251.541016" y="277.199219"/> | |
<use xlink:href="#glyph1-14" x="258.214844" y="277.199219"/> | |
</g> | |
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> | |
<use xlink:href="#glyph2-1" x="19.410156" y="173.410156"/> | |
<use xlink:href="#glyph2-2" x="19.410156" y="170.076172"/> | |
<use xlink:href="#glyph2-3" x="19.410156" y="163.402344"/> | |
<use xlink:href="#glyph2-1" x="19.410156" y="157.402344"/> | |
<use xlink:href="#glyph2-4" x="19.410156" y="154.068359"/> | |
<use xlink:href="#glyph2-5" x="19.410156" y="150.734375"/> | |
<use xlink:href="#glyph2-6" x="19.410156" y="144.060547"/> | |
<use xlink:href="#glyph2-4" x="19.410156" y="140.726562"/> | |
<use xlink:href="#glyph2-7" x="19.410156" y="137.392578"/> | |
<use xlink:href="#glyph2-8" x="19.410156" y="130.71875"/> | |
<use xlink:href="#glyph2-9" x="19.410156" y="128.052734"/> | |
<use xlink:href="#glyph2-10" x="19.410156" y="121.378906"/> | |
<use xlink:href="#glyph2-2" x="19.410156" y="114.705078"/> | |
<use xlink:href="#glyph2-1" x="19.410156" y="108.03125"/> | |
<use xlink:href="#glyph2-2" x="19.410156" y="104.697266"/> | |
<use xlink:href="#glyph2-3" x="19.410156" y="98.023438"/> | |
</g> | |
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 350.277344 168.5 L 407.566406 168.5 L 407.566406 96.929688 L 350.277344 96.929688 Z "/> | |
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> | |
<use xlink:href="#glyph3-1" x="354.53125" y="108.085938"/> | |
<use xlink:href="#glyph3-2" x="360.391495" y="108.085938"/> | |
<use xlink:href="#glyph3-3" x="363.056946" y="108.085938"/> | |
<use xlink:href="#glyph3-4" x="368.917191" y="108.085938"/> | |
<use xlink:href="#glyph3-5" x="374.252777" y="108.085938"/> | |
<use xlink:href="#glyph3-6" x="380.113022" y="108.085938"/> | |
<use xlink:href="#glyph3-7" x="385.448608" y="108.085938"/> | |
</g> | |
<path style="fill-rule:nonzero;fill:rgb(94.901961%,94.901961%,94.901961%);fill-opacity:1;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 354.53125 129.6875 L 371.8125 129.6875 L 371.8125 112.40625 L 354.53125 112.40625 Z "/> | |
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.2;" d="M 354.53125 129.6875 L 371.8125 129.6875 L 371.8125 112.40625 L 354.53125 112.40625 Z "/> | |
<path style="fill:none;stroke-width:2.125984;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.257812 121.046875 L 370.082031 121.046875 "/> | |
<path style="fill-rule:nonzero;fill:rgb(94.901961%,94.901961%,94.901961%);fill-opacity:1;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 354.53125 146.96875 L 371.8125 146.96875 L 371.8125 129.6875 L 354.53125 129.6875 Z "/> | |
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,72.941176%,21.960784%);fill-opacity:0.2;" d="M 354.53125 146.96875 L 371.8125 146.96875 L 371.8125 129.6875 L 354.53125 129.6875 Z "/> | |
<path style="fill:none;stroke-width:2.125984;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,72.941176%,21.960784%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.257812 138.328125 L 370.082031 138.328125 "/> | |
<path style="fill-rule:nonzero;fill:rgb(94.901961%,94.901961%,94.901961%);fill-opacity:1;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 354.53125 164.246094 L 371.8125 164.246094 L 371.8125 146.964844 L 354.53125 146.964844 Z "/> | |
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(38.039216%,61.176471%,100%);fill-opacity:0.2;" d="M 354.53125 164.246094 L 371.8125 164.246094 L 371.8125 146.964844 L 354.53125 146.964844 Z "/> | |
<path style="fill:none;stroke-width:2.125984;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(38.039216%,61.176471%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.257812 155.609375 L 370.082031 155.609375 "/> | |
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> | |
<use xlink:href="#glyph0-7" x="373.96875" y="124.484375"/> | |
<use xlink:href="#glyph0-7" x="379.304337" y="124.484375"/> | |
</g> | |
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> | |
<use xlink:href="#glyph0-6" x="373.96875" y="141.765625"/> | |
<use xlink:href="#glyph0-6" x="379.304337" y="141.765625"/> | |
<use xlink:href="#glyph0-5" x="384.639923" y="141.765625"/> | |
</g> | |
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> | |
<use xlink:href="#glyph0-6" x="373.96875" y="159.046875"/> | |
<use xlink:href="#glyph0-8" x="379.304337" y="159.046875"/> | |
<use xlink:href="#glyph0-1" x="384.639923" y="159.046875"/> | |
<use xlink:href="#glyph0-2" x="389.97551" y="159.046875"/> | |
<use xlink:href="#glyph0-3" x="392.640961" y="159.046875"/> | |
<use xlink:href="#glyph0-4" x="397.976547" y="159.046875"/> | |
</g> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment