diff --git a/article/.RData b/article/.RData
index e98699c949868b9ec4a46c57eb4ec9b233f0340e..7707416971adb9c17fd76c1962e608fcd5265f90 100644
Binary files a/article/.RData and b/article/.RData differ
diff --git a/article/article_figures.Rmd b/article/article_figures.Rmd
index f33b3457668b073084ee784808ee36e56efd34d3..d85762e7b32b476e89be10d9985790f24b46141c 100644
--- a/article/article_figures.Rmd
+++ b/article/article_figures.Rmd
@@ -289,21 +289,22 @@ colnames(peak5_tab) <- c("marker","chr","pos","allele\n1","allele\n2",
 
 
 narrow_grid <- ggdraw() +
-  draw_plot(pheno_before_annot_data2,.5,.8,.5,.16) +
-  draw_plot(pheno_before_annot_data3,0,.64,.5,.16) +
-  draw_plot(peak1,0,.48,.3,.16) +
-  draw_plot(tableGrob(peak1_tab,rows=NULL),.3,.48,.7,.16) +
-  draw_plot(peak3,0,.32,.3,.16) +
-  draw_plot(tableGrob(peak3_tab,rows=NULL),.3,.32,.7,.16) +
-  draw_plot(peak5,0,0,.3,.16) +
-  draw_plot(tableGrob(peak5_tab,rows=NULL),.3,0,.7,.16) +
+  draw_plot(pheno_before_annot_data2,0,.75,.5,.25) +
+  draw_plot(pheno_before_annot_data3,.5,.75,.5,.25) +
+  draw_plot(peak1,0,.5,.3,.25) +
+  draw_plot(tableGrob(peak1_tab,rows=NULL),.3,.5,.7,.25) +
+  draw_plot(peak3,0,.25,.3,.25) +
+  draw_plot(tableGrob(peak3_tab,rows=NULL),.3,.25,.7,.25) +
+  draw_plot(peak5,0,0,.3,.25) +
+  draw_plot(tableGrob(peak5_tab,rows=NULL),.3,0,.7,.25) +
   draw_plot_label(c("A","B","C","D","E","F","G","H"),
-                  c(0,.5,0,.5,0,.35,0,.35),c(.96,.96,.8,.8,.64,.615,.48,.45))
+                  c(0,.5,0,.3,0,.3,.5,.7),c(1,1,.75,.75,.5,.5,.25,.25))
 
 narrow_grid
-ggsave(narrow_grid,file="fig/figS3.pdf",width=10,height=17)
+ggsave(narrow_grid,file="figures/figS3.pdf",width=10,height=17)
+ggsave(narrow_grid,file="figures/figS3.png",width=10,height=17)
 
-rm(peak1,peak1_tab,peak2,peak2_tab,peak3,peak3_tab,peak4_tab,peak5,peak5_tab,peak6,peak6_tab,peak7,peak7_tab,peak11,peak11_tab)
+rm(peak1,peak1_tab,peak2,peak2_tab,peak3,peak3_tab,peak5,peak5_tab)
 ```
 
 
diff --git a/article/data1/.RData b/article/data1/.RData
index c4e56b79e9883cdcfb94d7e842772ad34f9b85c8..2960734e065e38ddfb0be96ebde9558528ef964c 100644
Binary files a/article/data1/.RData and b/article/data1/.RData differ
diff --git a/article/data1/data1.Rmd b/article/data1/data1.Rmd
index a3bb3d4696c7dc2de17d71274d764970da716b0d..3b6b6829f5a35ac02ebcce206d9bd43532c326f7 100644
--- a/article/data1/data1.Rmd
+++ b/article/data1/data1.Rmd
@@ -426,7 +426,7 @@ peak1 <- qtl_plot(pheno_before,lod=data.frame(group = c("alpha=0.05", "alpha=0.1
           strip.text.x = element_blank()) +
     xlab("Position (cM)") +
     xlim(c(15,35)) +
-    ggtitle("Peak 1")
+    ggtitle("Peak 1: 1 marker")
 peak1
 ```
 
diff --git a/article/data1/data1.rda b/article/data1/data1.rda
index ce8e4bd07cfb88cf186c9dea318ed9cc1c8f344d..7b52e74023001f64b76dc04ca52f74224bacca23 100644
Binary files a/article/data1/data1.rda and b/article/data1/data1.rda differ
diff --git a/article/data2/.RData b/article/data2/.RData
index e45601ea57fb6bcbe5515d84cc4ab6999187da71..d96aa25a90287e3653ab4f547d42768f2e2872d5 100644
Binary files a/article/data2/.RData and b/article/data2/.RData differ
diff --git a/article/data2/data2.Rmd b/article/data2/data2.Rmd
index 4a04e28176c201fb3c6660777e9dbf4f2a195a84..a140a19931d26f6a5e0ae9ab7fbfc2671e12f52a 100644
--- a/article/data2/data2.Rmd
+++ b/article/data2/data2.Rmd
@@ -363,7 +363,8 @@ pheno_before_annot_data2 <- pheno_before_plot +  geom_text(
                   y = lod,
                   label = label,
                   color="blue")
-)
+  ) +
+  ggtitle("Data 2")
 pheno_before_annot_data2
 
 rm(ann_dat_text)
@@ -388,7 +389,7 @@ peak3 <- qtl_plot(pheno_before,lod=data.frame(group = c("alpha=0.05", "alpha=0.1
           strip.text.x = element_blank()) +
     xlab("Position (cM)") +
     xlim(c(11,31)) +
-    ggtitle("Peak 3")
+    ggtitle("Peak 3: 1 pseudomarker")
 peak3
 ```
 
@@ -448,6 +449,46 @@ pheno_data2 <- phenos %>% ggplot(aes(x=Pheno)) +
 pheno_data2
 ```
 
+## Missing genotypes
+
+```{r}
+na_plot <- tab2 %>% mutate(prop_NA=n_NA/176) %>% ggplot(aes(x=prop_NA)) +
+  geom_histogram() +
+  scale_y_log10() +
+  theme_classic() +
+  labs(title="Proportion of missing genotyped",
+       x="Proportion of NA",y="Number of markers") +
+  theme(
+    aspect.ratio=0.8,
+    plot.title = element_text(hjust = 0.4,face="bold",size=14))
+
+na_plot
+```
+
+## Genotype proportions
+
+```{r}
+prop_plot <- tab2 %>% filter(n_NA<88) %>% filter(!chr %in% c("M","X","Y")) %>%
+  ggplot(aes(x=n_HM1/(n_HM1+n_HM2+n_HT),y=n_HM2/(n_HM1+n_HM2+n_HT),color=as.factor(exclude_prop))) +
+  geom_point() +
+  scale_color_manual(values=c("#66bd63","#b2182b"),labels = c("Retained", "Excluded")) +
+  geom_hline(yintercept = 0.1,linetype="dashed",size=.3) +
+  geom_vline(xintercept = 0.1,linetype="dashed",size=.3) +
+  geom_abline(intercept = 0.9, slope=-1,linetype="dashed",size=.3) +
+  labs(title="Exclusion of markers with mark_prop()",
+       x="Proportion of homozygous individuals AA",
+       y="Proportion of homozygous individuals BB",
+       color="Exclusion") +
+  theme_classic() +
+  theme(aspect.ratio=0.8,
+        legend.position=c(0.8,0.8),
+        legend.title = element_blank()) +
+  theme(plot.title = element_text(hjust = 0.4,face="bold",size=14))
+
+prop_plot
+```
+
+
 ```{r save_narrow}
 tab2_data2 <- tab2
 save(pheno_before_annot_data2,pheno_data2,peak3,peak3_tab,tab2_data2,
diff --git a/article/data2/data2.rda b/article/data2/data2.rda
index 71008b9bfc001c84249cf18ecfcdaca658f12d23..82298732fdfd63549aea0badd642c61a3a6f0759 100644
Binary files a/article/data2/data2.rda and b/article/data2/data2.rda differ
diff --git a/article/data3/.RData b/article/data3/.RData
index 7d39fc8ef76a1245bf928e72e768c13c9b9e0b49..5431637c11b1d396a7f99d780671978f859934f8 100644
Binary files a/article/data3/.RData and b/article/data3/.RData differ
diff --git a/article/data3/data3.Rmd b/article/data3/data3.Rmd
index 6f43e5a2efe3f01fadf7e642d84a697df59b74c6..96ba4038d11a5c8e95481df892448b88aa8fc237 100644
--- a/article/data3/data3.Rmd
+++ b/article/data3/data3.Rmd
@@ -373,7 +373,8 @@ pheno_before_annot_data3 <- pheno_before_plot +  geom_text(
                   y = lod,
                   label = label,
                   color="blue")
-)
+  ) +
+  ggtitle("Data 3")
 pheno_before_annot_data3
 ```
 
@@ -454,7 +455,7 @@ peak5 <- qtl_plot(pheno_before,lod=data.frame(group = c("alpha=0.05", "alpha=0.1
           strip.text.x = element_blank()) +
     xlab("Position (cM)") +
     xlim(c(22,42)) +
-    ggtitle("")
+    ggtitle("Peak 5: 1 marker and 1 pseudomarker")
 peak5
 ```
 
@@ -509,6 +510,44 @@ pheno_data3 <- phenos %>% ggplot(aes(x=Pheno)) +
 pheno_data3
 ```
 
+## Missing genotypes
+
+```{r}
+na_plot <- tab2 %>% mutate(prop_NA=n_NA/176) %>% ggplot(aes(x=prop_NA)) +
+  geom_histogram() +
+  scale_y_log10() +
+  theme_classic() +
+  labs(title="Proportion of missing genotyped",
+       x="Proportion of NA",y="Number of markers") +
+  theme(
+    aspect.ratio=0.8,
+    plot.title = element_text(hjust = 0.4,face="bold",size=14))
+
+na_plot
+```
+
+## Genotype proportions
+
+```{r}
+prop_plot <- tab2 %>% filter(n_NA<88) %>% filter(!chr %in% c("M","X","Y")) %>%
+  ggplot(aes(x=n_HM1/(n_HM1+n_HM2+n_HT),y=n_HM2/(n_HM1+n_HM2+n_HT),color=as.factor(exclude_prop))) +
+  geom_point() +
+  scale_color_manual(values=c("#66bd63","#b2182b"),labels = c("Retained", "Excluded")) +
+  geom_hline(yintercept = 0.1,linetype="dashed",size=.3) +
+  geom_vline(xintercept = 0.1,linetype="dashed",size=.3) +
+  geom_abline(intercept = 0.9, slope=-1,linetype="dashed",size=.3) +
+  labs(title="Exclusion of markers with mark_prop()",
+       x="Proportion of homozygous individuals AA",
+       y="Proportion of homozygous individuals BB",
+       color="Exclusion") +
+  theme_classic() +
+  theme(aspect.ratio=0.8,
+        legend.position=c(0.8,0.8),
+        legend.title = element_blank()) +
+  theme(plot.title = element_text(hjust = 0.4,face="bold",size=14))
+
+prop_plot
+```
 
 ```{r}
 tab2_data3 <- tab2
diff --git a/article/data3/data3.rda b/article/data3/data3.rda
index 3110c1c0b98bdf872b7a625177a2699ffef03402..1bae884904de6b32a14eabc2b8325d56e9d029f6 100644
Binary files a/article/data3/data3.rda and b/article/data3/data3.rda differ
diff --git a/article/figures/figS3.pdf b/article/figures/figS3.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..0f882e5afccd2a08ce3791e84d12f74ba81606c6
Binary files /dev/null and b/article/figures/figS3.pdf differ
diff --git a/article/figures/figS3.png b/article/figures/figS3.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa387ce86856cad959c5e5917bae9ad5d774da5e
Binary files /dev/null and b/article/figures/figS3.png differ
diff --git a/article/figures/figS3.svg b/article/figures/figS3.svg
new file mode 100644
index 0000000000000000000000000000000000000000..a77e80dfa5344ebe3069d39ddc136f43e673f080
--- /dev/null
+++ b/article/figures/figS3.svg
@@ -0,0 +1,10464 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   version="1.1"
+   id="svg25"
+   width="960"
+   height="1632"
+   viewBox="0 0 960 1632"
+   sodipodi:docname="figS3.svg"
+   inkscape:version="1.2 (1:1.2+202206011327+fc4e4096c5)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg">
+  <defs
+     id="defs29">
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath65">
+      <path
+         d="m 0,918 h 360 v 306 H 0 Z"
+         id="path63" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath75">
+      <path
+         d="m 40.98,959.3 h 15.68 v 242.49 H 40.98 Z"
+         id="path73" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath95">
+      <path
+         d="m 56.66,959.3 h 15.68 v 242.49 H 56.66 Z"
+         id="path93" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath115">
+      <path
+         d="m 72.34,959.3 h 15.68 v 242.49 H 72.34 Z"
+         id="path113" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath135">
+      <path
+         d="m 88.01,959.3 h 15.68 v 242.49 H 88.01 Z"
+         id="path133" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath155">
+      <path
+         d="m 103.69,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path153" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath175">
+      <path
+         d="m 119.37,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path173" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath195">
+      <path
+         d="m 135.04,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path193" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath215">
+      <path
+         d="m 150.72,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path213" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath235">
+      <path
+         d="m 166.4,959.3 h 15.68 v 242.49 H 166.4 Z"
+         id="path233" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath255">
+      <path
+         d="m 182.07,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path253" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath275">
+      <path
+         d="m 197.75,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path273" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath299">
+      <path
+         d="m 213.43,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path297" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath319">
+      <path
+         d="m 229.11,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path317" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath339">
+      <path
+         d="m 244.78,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path337" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath359">
+      <path
+         d="m 260.46,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path357" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath379">
+      <path
+         d="m 276.14,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path377" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath399">
+      <path
+         d="m 291.81,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path397" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath419">
+      <path
+         d="m 307.49,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path417" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath439">
+      <path
+         d="m 323.17,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path437" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath459">
+      <path
+         d="m 338.84,959.3 h 15.68 v 242.49 h -15.68 z"
+         id="path457" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath479">
+      <path
+         d="M 40.98,939.28 H 56.66 V 959.3 H 40.98 Z"
+         id="path477" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath487">
+      <path
+         d="M 40.98,939.28 H 56.66 V 959.3 H 40.98 Z"
+         id="path485" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath499">
+      <path
+         d="M 40.98,939.28 H 56.66 V 959.3 H 40.98 Z"
+         id="path497" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath507">
+      <path
+         d="M 40.98,939.28 H 56.66 V 959.3 H 40.98 Z"
+         id="path505" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath517">
+      <path
+         d="M 56.66,939.28 H 72.34 V 959.3 H 56.66 Z"
+         id="path515" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath525">
+      <path
+         d="M 56.66,939.28 H 72.34 V 959.3 H 56.66 Z"
+         id="path523" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath537">
+      <path
+         d="M 56.66,939.28 H 72.34 V 959.3 H 56.66 Z"
+         id="path535" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath545">
+      <path
+         d="M 56.66,939.28 H 72.34 V 959.3 H 56.66 Z"
+         id="path543" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath555">
+      <path
+         d="M 72.34,939.28 H 88.02 V 959.3 H 72.34 Z"
+         id="path553" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath563">
+      <path
+         d="M 72.34,939.28 H 88.02 V 959.3 H 72.34 Z"
+         id="path561" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath575">
+      <path
+         d="M 72.34,939.28 H 88.02 V 959.3 H 72.34 Z"
+         id="path573" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath583">
+      <path
+         d="M 72.34,939.28 H 88.02 V 959.3 H 72.34 Z"
+         id="path581" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath593">
+      <path
+         d="m 88.01,939.28 h 15.68 V 959.3 H 88.01 Z"
+         id="path591" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath601">
+      <path
+         d="m 88.01,939.28 h 15.68 V 959.3 H 88.01 Z"
+         id="path599" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath613">
+      <path
+         d="m 88.01,939.28 h 15.68 V 959.3 H 88.01 Z"
+         id="path611" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath621">
+      <path
+         d="m 88.01,939.28 h 15.68 V 959.3 H 88.01 Z"
+         id="path619" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath631">
+      <path
+         d="m 103.69,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path629" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath639">
+      <path
+         d="m 103.69,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path637" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath651">
+      <path
+         d="m 103.69,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path649" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath659">
+      <path
+         d="m 103.69,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path657" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath669">
+      <path
+         d="m 119.37,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path667" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath677">
+      <path
+         d="m 119.37,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path675" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath689">
+      <path
+         d="m 119.37,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path687" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath697">
+      <path
+         d="m 119.37,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path695" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath707">
+      <path
+         d="m 135.04,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path705" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath715">
+      <path
+         d="m 135.04,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path713" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath727">
+      <path
+         d="m 135.04,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path725" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath735">
+      <path
+         d="m 135.04,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path733" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath745">
+      <path
+         d="M 150.72,939.28 H 166.4 V 959.3 H 150.72 Z"
+         id="path743" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath753">
+      <path
+         d="M 150.72,939.28 H 166.4 V 959.3 H 150.72 Z"
+         id="path751" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath765">
+      <path
+         d="M 150.72,939.28 H 166.4 V 959.3 H 150.72 Z"
+         id="path763" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath773">
+      <path
+         d="M 150.72,939.28 H 166.4 V 959.3 H 150.72 Z"
+         id="path771" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath783">
+      <path
+         d="m 166.4,939.28 h 15.68 V 959.3 H 166.4 Z"
+         id="path781" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath791">
+      <path
+         d="m 166.4,939.28 h 15.68 V 959.3 H 166.4 Z"
+         id="path789" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath803">
+      <path
+         d="m 166.4,939.28 h 15.68 V 959.3 H 166.4 Z"
+         id="path801" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath811">
+      <path
+         d="m 166.4,939.28 h 15.68 V 959.3 H 166.4 Z"
+         id="path809" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath821">
+      <path
+         d="m 182.07,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path819" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath829">
+      <path
+         d="m 182.07,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path827" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath841">
+      <path
+         d="m 182.07,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path839" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath849">
+      <path
+         d="m 182.07,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path847" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath859">
+      <path
+         d="m 197.75,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path857" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath867">
+      <path
+         d="m 197.75,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path865" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath879">
+      <path
+         d="m 197.75,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path877" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath887">
+      <path
+         d="m 197.75,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path885" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath897">
+      <path
+         d="m 213.43,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path895" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath905">
+      <path
+         d="m 213.43,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path903" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath917">
+      <path
+         d="m 213.43,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path915" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath925">
+      <path
+         d="m 213.43,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path923" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath935">
+      <path
+         d="m 229.11,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path933" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath943">
+      <path
+         d="m 229.11,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path941" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath955">
+      <path
+         d="m 229.11,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path953" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath963">
+      <path
+         d="m 229.11,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path961" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath973">
+      <path
+         d="m 244.78,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path971" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath981">
+      <path
+         d="m 244.78,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path979" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath993">
+      <path
+         d="m 244.78,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path991" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1001">
+      <path
+         d="m 244.78,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path999" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1011">
+      <path
+         d="m 260.46,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1009" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1019">
+      <path
+         d="m 260.46,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1017" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1031">
+      <path
+         d="m 260.46,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1029" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1039">
+      <path
+         d="m 260.46,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1037" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1049">
+      <path
+         d="m 276.14,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1047" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1057">
+      <path
+         d="m 276.14,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1055" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1069">
+      <path
+         d="m 276.14,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1067" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1077">
+      <path
+         d="m 276.14,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1075" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1087">
+      <path
+         d="m 291.81,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1085" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1095">
+      <path
+         d="m 291.81,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1093" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1107">
+      <path
+         d="m 291.81,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1105" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1115">
+      <path
+         d="m 291.81,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1113" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1125">
+      <path
+         d="m 307.49,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1123" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1133">
+      <path
+         d="m 307.49,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1131" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1145">
+      <path
+         d="m 307.49,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1143" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1153">
+      <path
+         d="m 307.49,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1151" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1163">
+      <path
+         d="m 323.17,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1161" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1171">
+      <path
+         d="m 323.17,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1169" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1183">
+      <path
+         d="m 323.17,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1181" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1191">
+      <path
+         d="m 323.17,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1189" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1201">
+      <path
+         d="m 338.84,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1199" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1209">
+      <path
+         d="m 338.84,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1207" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1221">
+      <path
+         d="m 338.84,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1219" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1229">
+      <path
+         d="m 338.84,939.28 h 15.68 v 20.02 h -15.68 z"
+         id="path1227" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1857">
+      <path
+         d="m 360,918 h 360 v 306 H 360 Z"
+         id="path1855" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1867">
+      <path
+         d="m 393.48,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path1865" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1887">
+      <path
+         d="m 409.53,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path1885" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1907">
+      <path
+         d="m 425.58,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path1905" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1927">
+      <path
+         d="m 441.63,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path1925" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1947">
+      <path
+         d="m 457.69,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path1945" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1971">
+      <path
+         d="m 473.74,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path1969" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1991">
+      <path
+         d="m 489.79,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path1989" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2011">
+      <path
+         d="m 505.84,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path2009" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2031">
+      <path
+         d="m 521.89,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path2029" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2051">
+      <path
+         d="M 537.95,959.3 H 554 v 242.49 h -16.05 z"
+         id="path2049" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2075">
+      <path
+         d="m 554,959.3 h 16.05 v 242.49 H 554 Z"
+         id="path2073" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2095">
+      <path
+         d="m 570.05,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path2093" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2115">
+      <path
+         d="m 586.1,959.3 h 16.05 v 242.49 H 586.1 Z"
+         id="path2113" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2135">
+      <path
+         d="m 602.16,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path2133" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2155">
+      <path
+         d="m 618.21,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path2153" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2175">
+      <path
+         d="m 634.26,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path2173" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2195">
+      <path
+         d="m 650.31,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path2193" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2215">
+      <path
+         d="m 666.36,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path2213" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2235">
+      <path
+         d="m 682.42,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path2233" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2255">
+      <path
+         d="m 698.47,959.3 h 16.05 v 242.49 h -16.05 z"
+         id="path2253" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2275">
+      <path
+         d="m 393.48,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2273" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2283">
+      <path
+         d="m 393.48,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2281" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2295">
+      <path
+         d="m 393.48,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2293" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2303">
+      <path
+         d="m 393.48,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2301" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2313">
+      <path
+         d="m 409.53,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2311" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2321">
+      <path
+         d="m 409.53,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2319" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2333">
+      <path
+         d="m 409.53,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2331" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2341">
+      <path
+         d="m 409.53,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2339" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2351">
+      <path
+         d="m 425.58,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2349" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2359">
+      <path
+         d="m 425.58,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2357" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2371">
+      <path
+         d="m 425.58,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2369" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2379">
+      <path
+         d="m 425.58,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2377" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2389">
+      <path
+         d="m 441.63,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2387" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2397">
+      <path
+         d="m 441.63,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2395" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2409">
+      <path
+         d="m 441.63,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2407" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2417">
+      <path
+         d="m 441.63,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2415" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2427">
+      <path
+         d="m 457.69,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2425" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2435">
+      <path
+         d="m 457.69,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2433" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2447">
+      <path
+         d="m 457.69,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2445" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2455">
+      <path
+         d="m 457.69,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2453" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2465">
+      <path
+         d="m 473.74,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2463" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2473">
+      <path
+         d="m 473.74,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2471" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2485">
+      <path
+         d="m 473.74,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2483" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2493">
+      <path
+         d="m 473.74,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2491" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2503">
+      <path
+         d="m 489.79,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2501" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2511">
+      <path
+         d="m 489.79,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2509" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2523">
+      <path
+         d="m 489.79,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2521" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2531">
+      <path
+         d="m 489.79,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2529" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2541">
+      <path
+         d="m 505.84,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2539" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2549">
+      <path
+         d="m 505.84,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2547" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2561">
+      <path
+         d="m 505.84,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2559" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2569">
+      <path
+         d="m 505.84,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2567" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2579">
+      <path
+         d="m 521.89,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2577" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2587">
+      <path
+         d="m 521.89,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2585" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2599">
+      <path
+         d="m 521.89,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2597" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2607">
+      <path
+         d="m 521.89,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2605" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2617">
+      <path
+         d="M 537.95,939.28 H 554 v 20.02 h -16.05 z"
+         id="path2615" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2625">
+      <path
+         d="M 537.95,939.28 H 554 v 20.02 h -16.05 z"
+         id="path2623" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2637">
+      <path
+         d="M 537.95,939.28 H 554 v 20.02 h -16.05 z"
+         id="path2635" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2645">
+      <path
+         d="M 537.95,939.28 H 554 v 20.02 h -16.05 z"
+         id="path2643" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2655">
+      <path
+         d="m 554,939.28 h 16.05 V 959.3 H 554 Z"
+         id="path2653" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2663">
+      <path
+         d="m 554,939.28 h 16.05 V 959.3 H 554 Z"
+         id="path2661" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2675">
+      <path
+         d="m 554,939.28 h 16.05 V 959.3 H 554 Z"
+         id="path2673" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2683">
+      <path
+         d="m 554,939.28 h 16.05 V 959.3 H 554 Z"
+         id="path2681" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2693">
+      <path
+         d="M 570.05,939.28 H 586.1 V 959.3 H 570.05 Z"
+         id="path2691" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2701">
+      <path
+         d="M 570.05,939.28 H 586.1 V 959.3 H 570.05 Z"
+         id="path2699" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2713">
+      <path
+         d="M 570.05,939.28 H 586.1 V 959.3 H 570.05 Z"
+         id="path2711" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2721">
+      <path
+         d="M 570.05,939.28 H 586.1 V 959.3 H 570.05 Z"
+         id="path2719" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2731">
+      <path
+         d="m 586.1,939.28 h 16.05 V 959.3 H 586.1 Z"
+         id="path2729" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2739">
+      <path
+         d="m 586.1,939.28 h 16.05 V 959.3 H 586.1 Z"
+         id="path2737" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2751">
+      <path
+         d="m 586.1,939.28 h 16.05 V 959.3 H 586.1 Z"
+         id="path2749" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2759">
+      <path
+         d="m 586.1,939.28 h 16.05 V 959.3 H 586.1 Z"
+         id="path2757" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2769">
+      <path
+         d="m 602.16,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2767" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2777">
+      <path
+         d="m 602.16,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2775" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2789">
+      <path
+         d="m 602.16,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2787" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2797">
+      <path
+         d="m 602.16,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2795" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2807">
+      <path
+         d="m 618.21,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2805" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2815">
+      <path
+         d="m 618.21,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2813" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2827">
+      <path
+         d="m 618.21,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2825" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2835">
+      <path
+         d="m 618.21,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2833" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2845">
+      <path
+         d="m 634.26,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2843" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2853">
+      <path
+         d="m 634.26,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2851" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2865">
+      <path
+         d="m 634.26,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2863" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2873">
+      <path
+         d="m 634.26,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2871" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2883">
+      <path
+         d="m 650.31,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2881" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2891">
+      <path
+         d="m 650.31,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2889" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2903">
+      <path
+         d="m 650.31,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2901" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2911">
+      <path
+         d="m 650.31,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2909" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2921">
+      <path
+         d="m 666.36,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2919" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2929">
+      <path
+         d="m 666.36,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2927" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2941">
+      <path
+         d="m 666.36,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2939" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2949">
+      <path
+         d="m 666.36,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2947" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2959">
+      <path
+         d="m 682.42,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2957" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2967">
+      <path
+         d="m 682.42,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2965" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2979">
+      <path
+         d="m 682.42,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2977" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2987">
+      <path
+         d="m 682.42,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2985" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2997">
+      <path
+         d="m 698.47,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path2995" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3005">
+      <path
+         d="m 698.47,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path3003" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3017">
+      <path
+         d="m 698.47,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path3015" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3025">
+      <path
+         d="m 698.47,939.28 h 16.05 v 20.02 h -16.05 z"
+         id="path3023" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3649">
+      <path
+         d="M 0,612 H 216 V 918 H 0 Z"
+         id="path3647" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3659">
+      <path
+         d="M 33.48,633.28 H 210.52 V 895.79 H 33.48 Z"
+         id="path3657" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3759">
+      <path
+         d="m 33.48,633.28 h 177.04 v 0 z"
+         id="path3757" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3881">
+      <path
+         d="m 267.31,756.36 h 107.37 v 37.23 H 267.31 Z"
+         id="path3879" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3893">
+      <path
+         d="m 374.68,756.36 h 29.89 v 37.23 h -29.89 z"
+         id="path3891" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3905">
+      <path
+         d="m 404.57,756.36 h 48.03 v 37.23 h -48.03 z"
+         id="path3903" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3917">
+      <path
+         d="m 452.61,756.36 h 41.36 v 37.23 h -41.36 z"
+         id="path3915" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3929">
+      <path
+         d="m 493.97,756.36 h 41.36 v 37.23 h -41.36 z"
+         id="path3927" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3941">
+      <path
+         d="M 535.33,756.36 H 572 v 37.23 h -36.67 z"
+         id="path3939" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3953">
+      <path
+         d="m 572,756.36 h 36.67 v 37.23 H 572 Z"
+         id="path3951" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3965">
+      <path
+         d="m 608.67,756.36 h 31.35 v 37.23 h -31.35 z"
+         id="path3963" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3977">
+      <path
+         d="m 640.03,756.36 h 28.67 v 37.23 h -28.67 z"
+         id="path3975" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3989">
+      <path
+         d="m 267.31,736.41 h 107.37 v 19.95 H 267.31 Z"
+         id="path3987" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4001">
+      <path
+         d="m 374.68,736.41 h 29.89 v 19.95 h -29.89 z"
+         id="path3999" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4013">
+      <path
+         d="m 404.57,736.41 h 48.03 v 19.95 h -48.03 z"
+         id="path4011" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4025">
+      <path
+         d="m 452.61,736.41 h 41.36 v 19.95 h -41.36 z"
+         id="path4023" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4037">
+      <path
+         d="m 493.97,736.41 h 41.36 v 19.95 h -41.36 z"
+         id="path4035" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4049">
+      <path
+         d="M 535.33,736.41 H 572 v 19.95 h -36.67 z"
+         id="path4047" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4061">
+      <path
+         d="m 572,736.41 h 36.67 v 19.95 H 572 Z"
+         id="path4059" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4073">
+      <path
+         d="m 608.67,736.41 h 31.35 v 19.95 h -31.35 z"
+         id="path4071" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4085">
+      <path
+         d="m 640.03,736.41 h 28.67 v 19.95 h -28.67 z"
+         id="path4083" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4097">
+      <path
+         d="m 267.31,756.36 h 107.37 v 37.23 H 267.31 Z"
+         id="path4095" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4111">
+      <path
+         d="m 267.31,736.41 h 107.37 v 19.95 H 267.31 Z"
+         id="path4109" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4125">
+      <path
+         d="m 374.68,756.36 h 29.89 v 37.23 h -29.89 z"
+         id="path4123" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4139">
+      <path
+         d="m 374.68,736.41 h 29.89 v 19.95 h -29.89 z"
+         id="path4137" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4153">
+      <path
+         d="m 404.57,756.36 h 48.03 v 37.23 h -48.03 z"
+         id="path4151" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4167">
+      <path
+         d="m 404.57,736.41 h 48.03 v 19.95 h -48.03 z"
+         id="path4165" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4181">
+      <path
+         d="m 452.61,756.36 h 41.36 v 37.23 h -41.36 z"
+         id="path4179" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4199">
+      <path
+         d="m 452.61,736.41 h 41.36 v 19.95 h -41.36 z"
+         id="path4197" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4213">
+      <path
+         d="m 493.97,756.36 h 41.36 v 37.23 h -41.36 z"
+         id="path4211" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4231">
+      <path
+         d="m 493.97,736.41 h 41.36 v 19.95 h -41.36 z"
+         id="path4229" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4245">
+      <path
+         d="M 535.33,756.36 H 572 v 37.23 h -36.67 z"
+         id="path4243" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4263">
+      <path
+         d="M 535.33,736.41 H 572 v 19.95 h -36.67 z"
+         id="path4261" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4277">
+      <path
+         d="m 572,756.36 h 36.67 v 37.23 H 572 Z"
+         id="path4275" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4295">
+      <path
+         d="m 572,736.41 h 36.67 v 19.95 H 572 Z"
+         id="path4293" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4309">
+      <path
+         d="m 608.67,756.36 h 31.35 v 37.23 h -31.35 z"
+         id="path4307" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4327">
+      <path
+         d="m 608.67,736.41 h 31.35 v 19.95 h -31.35 z"
+         id="path4325" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4341">
+      <path
+         d="m 640.03,756.36 h 28.67 v 37.23 h -28.67 z"
+         id="path4339" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4359">
+      <path
+         d="m 640.03,736.41 h 28.67 v 19.95 h -28.67 z"
+         id="path4357" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4391">
+      <path
+         d="M 0,306 H 216 V 612 H 0 Z"
+         id="path4389" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4401">
+      <path
+         d="M 40.98,327.28 H 210.52 V 589.79 H 40.98 Z"
+         id="path4399" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4503">
+      <path
+         d="m 40.98,327.28 h 169.54 v 0 z"
+         id="path4501" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4625">
+      <path
+         d="m 274.76,460.34 h 96.48 v 37.23 h -96.48 z"
+         id="path4623" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4637">
+      <path
+         d="m 371.24,460.34 h 29.89 v 37.23 h -29.89 z"
+         id="path4635" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4649">
+      <path
+         d="m 401.13,460.34 h 48.03 v 37.23 h -48.03 z"
+         id="path4647" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4661">
+      <path
+         d="m 449.17,460.34 h 41.36 v 37.23 h -41.36 z"
+         id="path4659" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4673">
+      <path
+         d="m 490.53,460.34 h 41.36 v 37.23 h -41.36 z"
+         id="path4671" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4685">
+      <path
+         d="m 531.89,460.34 h 36.67 v 37.23 h -36.67 z"
+         id="path4683" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4697">
+      <path
+         d="m 568.56,460.34 h 36.67 v 37.23 h -36.67 z"
+         id="path4695" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4709">
+      <path
+         d="m 605.23,460.34 h 27.33 v 37.23 h -27.33 z"
+         id="path4707" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4721">
+      <path
+         d="m 632.57,460.34 h 28.67 v 37.23 h -28.67 z"
+         id="path4719" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4733">
+      <path
+         d="m 274.76,440.38 h 96.48 v 19.95 h -96.48 z"
+         id="path4731" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4745">
+      <path
+         d="m 274.76,420.43 h 96.48 v 19.95 h -96.48 z"
+         id="path4743" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4757">
+      <path
+         d="m 371.24,440.38 h 29.89 v 19.95 h -29.89 z"
+         id="path4755" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4769">
+      <path
+         d="m 371.24,420.43 h 29.89 v 19.95 h -29.89 z"
+         id="path4767" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4781">
+      <path
+         d="m 401.13,440.38 h 48.03 v 19.95 h -48.03 z"
+         id="path4779" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4793">
+      <path
+         d="m 401.13,420.43 h 48.03 v 19.95 h -48.03 z"
+         id="path4791" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4805">
+      <path
+         d="m 449.17,440.38 h 41.36 v 19.95 h -41.36 z"
+         id="path4803" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4817">
+      <path
+         d="m 449.17,420.43 h 41.36 v 19.95 h -41.36 z"
+         id="path4815" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4829">
+      <path
+         d="m 490.53,440.38 h 41.36 v 19.95 h -41.36 z"
+         id="path4827" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4841">
+      <path
+         d="m 490.53,420.43 h 41.36 v 19.95 h -41.36 z"
+         id="path4839" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4853">
+      <path
+         d="m 531.89,440.38 h 36.67 v 19.95 h -36.67 z"
+         id="path4851" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4865">
+      <path
+         d="m 531.89,420.43 h 36.67 v 19.95 h -36.67 z"
+         id="path4863" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4877">
+      <path
+         d="m 568.56,440.38 h 36.67 v 19.95 h -36.67 z"
+         id="path4875" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4889">
+      <path
+         d="m 568.56,420.43 h 36.67 v 19.95 h -36.67 z"
+         id="path4887" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4901">
+      <path
+         d="m 605.23,440.38 h 27.33 v 19.95 h -27.33 z"
+         id="path4899" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4913">
+      <path
+         d="m 605.23,420.43 h 27.33 v 19.95 h -27.33 z"
+         id="path4911" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4925">
+      <path
+         d="m 632.57,440.38 h 28.67 v 19.95 h -28.67 z"
+         id="path4923" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4937">
+      <path
+         d="m 632.57,420.43 h 28.67 v 19.95 h -28.67 z"
+         id="path4935" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4949">
+      <path
+         d="m 274.76,460.34 h 96.48 v 37.23 h -96.48 z"
+         id="path4947" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4963">
+      <path
+         d="m 274.76,440.38 h 96.48 v 19.95 h -96.48 z"
+         id="path4961" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4977">
+      <path
+         d="m 371.24,460.34 h 29.89 v 37.23 h -29.89 z"
+         id="path4975" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4991">
+      <path
+         d="m 274.76,420.43 h 96.48 v 19.95 h -96.48 z"
+         id="path4989" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5005">
+      <path
+         d="m 401.13,460.34 h 48.03 v 37.23 h -48.03 z"
+         id="path5003" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5019">
+      <path
+         d="m 371.24,440.38 h 29.89 v 19.95 h -29.89 z"
+         id="path5017" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5033">
+      <path
+         d="m 449.17,460.34 h 41.36 v 37.23 h -41.36 z"
+         id="path5031" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5051">
+      <path
+         d="m 371.24,420.43 h 29.89 v 19.95 h -29.89 z"
+         id="path5049" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5065">
+      <path
+         d="m 490.53,460.34 h 41.36 v 37.23 h -41.36 z"
+         id="path5063" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5083">
+      <path
+         d="m 401.13,440.38 h 48.03 v 19.95 h -48.03 z"
+         id="path5081" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5097">
+      <path
+         d="m 531.89,460.34 h 36.67 v 37.23 h -36.67 z"
+         id="path5095" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5115">
+      <path
+         d="m 401.13,420.43 h 48.03 v 19.95 h -48.03 z"
+         id="path5113" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5129">
+      <path
+         d="m 568.56,460.34 h 36.67 v 37.23 h -36.67 z"
+         id="path5127" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5147">
+      <path
+         d="m 449.17,440.38 h 41.36 v 19.95 h -41.36 z"
+         id="path5145" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5161">
+      <path
+         d="m 605.23,460.34 h 27.33 v 37.23 h -27.33 z"
+         id="path5159" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5179">
+      <path
+         d="m 449.17,420.43 h 41.36 v 19.95 h -41.36 z"
+         id="path5177" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5193">
+      <path
+         d="m 632.57,460.34 h 28.67 v 37.23 h -28.67 z"
+         id="path5191" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5211">
+      <path
+         d="m 490.53,440.38 h 41.36 v 19.95 h -41.36 z"
+         id="path5209" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5225">
+      <path
+         d="m 490.53,420.43 h 41.36 v 19.95 h -41.36 z"
+         id="path5223" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5239">
+      <path
+         d="m 531.89,440.38 h 36.67 v 19.95 h -36.67 z"
+         id="path5237" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5253">
+      <path
+         d="m 531.89,420.43 h 36.67 v 19.95 h -36.67 z"
+         id="path5251" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5267">
+      <path
+         d="m 568.56,440.38 h 36.67 v 19.95 h -36.67 z"
+         id="path5265" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5281">
+      <path
+         d="m 568.56,420.43 h 36.67 v 19.95 h -36.67 z"
+         id="path5279" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5295">
+      <path
+         d="m 605.23,440.38 h 27.33 v 19.95 h -27.33 z"
+         id="path5293" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5309">
+      <path
+         d="m 605.23,420.43 h 27.33 v 19.95 h -27.33 z"
+         id="path5307" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5323">
+      <path
+         d="m 632.57,440.38 h 28.67 v 19.95 h -28.67 z"
+         id="path5321" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5337">
+      <path
+         d="m 632.57,420.43 h 28.67 v 19.95 h -28.67 z"
+         id="path5335" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5369">
+      <path
+         d="M 0,0 H 216 V 306 H 0 Z"
+         id="path5367" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5379">
+      <path
+         d="M 33.48,21.28 H 210.52 V 283.79 H 33.48 Z"
+         id="path5377" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5471">
+      <path
+         d="m 33.48,21.28 h 177.04 v 0 z"
+         id="path5469" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5589">
+      <path
+         d="m 274.97,154.34 h 96.06 v 37.23 h -96.06 z"
+         id="path5587" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5601">
+      <path
+         d="m 371.03,154.34 h 29.89 v 37.23 h -29.89 z"
+         id="path5599" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5613">
+      <path
+         d="m 400.92,154.34 h 48.03 v 37.23 h -48.03 z"
+         id="path5611" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5625">
+      <path
+         d="m 448.96,154.34 h 41.36 v 37.23 h -41.36 z"
+         id="path5623" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5637">
+      <path
+         d="m 490.32,154.34 h 41.36 v 37.23 h -41.36 z"
+         id="path5635" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5649">
+      <path
+         d="m 531.68,154.34 h 36.67 v 37.23 h -36.67 z"
+         id="path5647" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5661">
+      <path
+         d="m 568.35,154.34 h 36.67 v 37.23 h -36.67 z"
+         id="path5659" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5673">
+      <path
+         d="m 605.02,154.34 h 27.33 v 37.23 h -27.33 z"
+         id="path5671" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5685">
+      <path
+         d="m 632.36,154.34 h 28.67 v 37.23 h -28.67 z"
+         id="path5683" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5697">
+      <path
+         d="m 274.97,134.38 h 96.06 v 19.95 h -96.06 z"
+         id="path5695" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5709">
+      <path
+         d="m 274.97,114.43 h 96.06 v 19.95 h -96.06 z"
+         id="path5707" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5721">
+      <path
+         d="m 371.03,134.38 h 29.89 v 19.95 h -29.89 z"
+         id="path5719" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5733">
+      <path
+         d="m 371.03,114.43 h 29.89 v 19.95 h -29.89 z"
+         id="path5731" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5745">
+      <path
+         d="m 400.92,134.38 h 48.03 v 19.95 h -48.03 z"
+         id="path5743" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5757">
+      <path
+         d="m 400.92,114.43 h 48.03 v 19.95 h -48.03 z"
+         id="path5755" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5769">
+      <path
+         d="m 448.96,134.38 h 41.36 v 19.95 h -41.36 z"
+         id="path5767" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5781">
+      <path
+         d="m 448.96,114.43 h 41.36 v 19.95 h -41.36 z"
+         id="path5779" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5793">
+      <path
+         d="m 490.32,134.38 h 41.36 v 19.95 h -41.36 z"
+         id="path5791" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5805">
+      <path
+         d="m 490.32,114.43 h 41.36 v 19.95 h -41.36 z"
+         id="path5803" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5817">
+      <path
+         d="m 531.68,134.38 h 36.67 v 19.95 h -36.67 z"
+         id="path5815" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5829">
+      <path
+         d="m 531.68,114.43 h 36.67 v 19.95 h -36.67 z"
+         id="path5827" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5841">
+      <path
+         d="m 568.35,134.38 h 36.67 v 19.95 h -36.67 z"
+         id="path5839" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5853">
+      <path
+         d="m 568.35,114.43 h 36.67 v 19.95 h -36.67 z"
+         id="path5851" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5865">
+      <path
+         d="m 605.02,134.38 h 27.33 v 19.95 h -27.33 z"
+         id="path5863" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5877">
+      <path
+         d="m 605.02,114.43 h 27.33 v 19.95 h -27.33 z"
+         id="path5875" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5889">
+      <path
+         d="m 632.36,134.38 h 28.67 v 19.95 h -28.67 z"
+         id="path5887" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5901">
+      <path
+         d="m 632.36,114.43 h 28.67 v 19.95 h -28.67 z"
+         id="path5899" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5913">
+      <path
+         d="m 274.97,154.34 h 96.06 v 37.23 h -96.06 z"
+         id="path5911" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5927">
+      <path
+         d="m 274.97,134.38 h 96.06 v 19.95 h -96.06 z"
+         id="path5925" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5941">
+      <path
+         d="m 371.03,154.34 h 29.89 v 37.23 h -29.89 z"
+         id="path5939" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5955">
+      <path
+         d="m 274.97,114.43 h 96.06 v 19.95 h -96.06 z"
+         id="path5953" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5969">
+      <path
+         d="m 400.92,154.34 h 48.03 v 37.23 h -48.03 z"
+         id="path5967" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5983">
+      <path
+         d="m 371.03,134.38 h 29.89 v 19.95 h -29.89 z"
+         id="path5981" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath5997">
+      <path
+         d="m 448.96,154.34 h 41.36 v 37.23 h -41.36 z"
+         id="path5995" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6015">
+      <path
+         d="m 371.03,114.43 h 29.89 v 19.95 h -29.89 z"
+         id="path6013" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6029">
+      <path
+         d="m 490.32,154.34 h 41.36 v 37.23 h -41.36 z"
+         id="path6027" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6047">
+      <path
+         d="m 400.92,134.38 h 48.03 v 19.95 h -48.03 z"
+         id="path6045" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6061">
+      <path
+         d="m 531.68,154.34 h 36.67 v 37.23 h -36.67 z"
+         id="path6059" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6079">
+      <path
+         d="m 400.92,114.43 h 48.03 v 19.95 h -48.03 z"
+         id="path6077" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6093">
+      <path
+         d="m 568.35,154.34 h 36.67 v 37.23 h -36.67 z"
+         id="path6091" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6111">
+      <path
+         d="m 448.96,134.38 h 41.36 v 19.95 h -41.36 z"
+         id="path6109" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6125">
+      <path
+         d="m 605.02,154.34 h 27.33 v 37.23 h -27.33 z"
+         id="path6123" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6143">
+      <path
+         d="m 448.96,114.43 h 41.36 v 19.95 h -41.36 z"
+         id="path6141" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6157">
+      <path
+         d="m 632.36,154.34 h 28.67 v 37.23 h -28.67 z"
+         id="path6155" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6175">
+      <path
+         d="m 490.32,134.38 h 41.36 v 19.95 h -41.36 z"
+         id="path6173" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6189">
+      <path
+         d="m 490.32,114.43 h 41.36 v 19.95 h -41.36 z"
+         id="path6187" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6203">
+      <path
+         d="m 531.68,134.38 h 36.67 v 19.95 h -36.67 z"
+         id="path6201" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6217">
+      <path
+         d="m 531.68,114.43 h 36.67 v 19.95 h -36.67 z"
+         id="path6215" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6231">
+      <path
+         d="m 568.35,134.38 h 36.67 v 19.95 h -36.67 z"
+         id="path6229" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6245">
+      <path
+         d="m 568.35,114.43 h 36.67 v 19.95 h -36.67 z"
+         id="path6243" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6259">
+      <path
+         d="m 605.02,134.38 h 27.33 v 19.95 h -27.33 z"
+         id="path6257" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6273">
+      <path
+         d="m 605.02,114.43 h 27.33 v 19.95 h -27.33 z"
+         id="path6271" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6287">
+      <path
+         d="m 632.36,134.38 h 28.67 v 19.95 h -28.67 z"
+         id="path6285" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath6301">
+      <path
+         d="m 632.36,114.43 h 28.67 v 19.95 h -28.67 z"
+         id="path6299" />
+    </clipPath>
+  </defs>
+  <sodipodi:namedview
+     id="namedview27"
+     pagecolor="#ffffff"
+     bordercolor="#000000"
+     borderopacity="0.25"
+     inkscape:showpageshadow="2"
+     inkscape:pageopacity="0.0"
+     inkscape:pagecheckerboard="0"
+     inkscape:deskcolor="#d1d1d1"
+     showgrid="false"
+     inkscape:zoom="0.49816176"
+     inkscape:cx="325.19557"
+     inkscape:cy="1255.6162"
+     inkscape:window-width="1848"
+     inkscape:window-height="1016"
+     inkscape:window-x="72"
+     inkscape:window-y="27"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g33">
+    <inkscape:page
+       x="0"
+       y="0"
+       id="page31"
+       width="960"
+       height="1632" />
+  </sodipodi:namedview>
+  <g
+     id="g33"
+     inkscape:groupmode="layer"
+     inkscape:label="Page 1"
+     transform="matrix(1.3333333,0,0,-1.3333333,0,1632)">
+    <g
+       id="g35" />
+    <g
+       id="g37" />
+    <g
+       id="g39" />
+    <g
+       id="g41" />
+    <g
+       id="g43" />
+    <g
+       id="g45" />
+    <g
+       id="g47" />
+    <g
+       id="g49" />
+    <g
+       id="g51" />
+    <g
+       id="g53" />
+    <g
+       id="g55" />
+    <g
+       id="g57" />
+    <g
+       id="g59">
+      <g
+         id="g61"
+         clip-path="url(#clipPath65)" />
+    </g>
+    <g
+       id="g67" />
+    <g
+       id="g69"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g71"
+         clip-path="url(#clipPath75)">
+        <path
+           d="M 40.98,1190.76 H 56.66"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path77" />
+        <path
+           d="M 40.98,1165.1 H 56.66"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path79" />
+        <path
+           d="M 40.98,1082.26 H 56.66"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path81" />
+        <path
+           d="m 41.7,984.03 v 0 l 0.03,0.19 0.03,7.19 v 0 h 0.02 v 0 0 l 0.05,1.43 v -4.25 l 0.01,-4.48 h 0.01 l 0.14,-2.24 0.11,-1.89 0.07,-0.38 0.03,0.12 0.03,-0.12 0.03,-0.05 0.02,-0.01 0.04,0.06 0.03,-0.4 0.05,0.41 0.18,0.15 v 0 l 0.08,2.25 0.18,6.91 0.03,0.48 0.16,0.57 h 0.04 v -0.01 l 0.03,0.01 0.02,0.54 v 0 h 0.01 0.02 l 0.02,0.61 0.18,4.57 h 0.11 0.05 l 0.08,-11.15 0.17,-0.16 0.02,0.03 0.03,-4.68 0.01,-8.61 0.1,0.01 0.13,0.84 0.12,5.5 0.08,0.29 0.1,-0.02 0.29,-1.16 0.11,-0.71 0.19,-0.46 0.01,-0.2 0.04,-0.03 0.2,36.88 0.04,-10.86 0.02,-0.17 0.03,-13.25 v 0 l 0.07,0.99 0.06,4.77 0.11,-9.36 0.09,-3.42 0.15,-2.6 0.06,0.51 0.29,-3.93 0.01,-0.14 0.15,-3.9 0.07,-0.06 h 0.03 0.04 0.02 l 0.04,0.82 0.03,-0.39 0.02,-0.21 h 0.03 0.01 l 0.03,-0.19 0.11,-0.05 0.19,0.02 0.11,-0.05 0.09,0.57 0.03,-0.68 0.11,0.06 0.01,1.37 h 0.02 v 0 h 0.02 l 0.01,0.25 0.01,0.12 0.12,-0.5 0.07,0.55 0.03,-0.58 0.07,-1.36 0.02,-0.04 v 0 h 0.01 l 0.12,1.59 0.11,-1.39 0.03,-0.12 0.04,0.37 h 0.07 l 0.02,-0.05 0.05,0.1 0.02,-0.22 0.07,-0.1 v 0 h 0.03 0.01 v 0 l 0.16,0.01 0.11,1.3 v -0.35 -0.93 h 0.01 v 0 h 0.02 l 0.08,0.67 h 0.03 0.04 0.03 0.03 l 0.03,1.14 0.01,0.01 v -0.01 h 0.03 0.01 0.01 l 0.09,0.08 h 0.01 l 0.03,-1.08 0.01,-0.19 h 0.01 v 0.34 h 0.02 0.06 0.02 0.02 0.04 v 0 l 0.03,0.86 v 0 l 0.02,0.54 v -0.46 l 0.02,1.29 v 0.07 l 0.07,-2.35 v -0.15 l 0.02,-0.49 h 0.04 0.05 0.02 0.09 l 0.06,-0.02 0.02,0.02 v 0 h 0.02 l 0.09,2.98 v 0.26 h 0.02 v 0.19 l 0.08,1.41 0.09,2.78 0.08,-3.38 0.02,0.12 0.09,0.24 h 0.01 l 0.12,3.73 h 0.08 0.04 l 0.02,-1.02 0.23,2.78 0.02,0.22 0.09,-1.44 h 0.01 l 0.04,-0.14 h 0.02 l 0.05,-1.18 v 0.28 l 0.01,1.23 h 0.01 v 0 h 0.01 0.04 0.01 0.03 l 0.15,3.69 0.07,-4.27 0.03,0.08 0.3,11.5 0.05,1.08 0.07,-1.5 0.1,3.02 0.07,-1.9 0.01,-0.11 h 0.02 v 0 h 0.01 l 0.09,-4.23 0.17,-4.79 0.19,-6.02 0.1,1.34 0.09,-0.54 0.2,-1.07 0.12,-1.7 v 1.81 h 0.05 v 0 h 0.01 v 0 h 0.01 v 0 0 l 0.01,-2.17 0.1,0.49 0.29,1.46 0.07,0.29 0.03,-0.01 0.08,-0.67 h 0.05 l 0.07,1.6 0.14,4.02 h 0.03 0.01 l 0.01,-0.03 0.01,0.03 h 0.07 v 0 l 0.01,-0.01 0.01,-9.73 v 0.02 -0.25 l 0.07,9.77 0.23,7.6 0.29,9.96 0.09,2.38 0.2,4.15 v 0 h 0.01 v 0 0 0 l 0.01,-10.09 0.21,11.47 0.07,2.19 0.14,-3.08 0.13,-14.57 h 0.02 l 0.01,-0.09 0.11,-4.6 0.1,-1.85 v 0 0 h 0.08 0.05 0.02 v 0 0 h 0.03 v 0 0 h 0.04 0.02 0.01 v 0 l 0.1,-6.52 0.01,-1.47 v -5.27 l 0.01,2.61 0.01,4.17 0.01,-2.73 0.06,-2.04 0.04,7.03 v 0"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path83" />
+        <path
+           d="m 40.98,959.3 h 15.68 v 242.49 H 40.98 Z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path85" />
+      </g>
+    </g>
+    <g
+       id="g87" />
+    <g
+       id="g89"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g91"
+         clip-path="url(#clipPath95)">
+        <path
+           d="M 56.66,1190.76 H 72.34"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path97" />
+        <path
+           d="M 56.66,1165.1 H 72.34"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path99" />
+        <path
+           d="M 56.66,1082.26 H 72.34"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path101" />
+        <path
+           d="m 57.37,971.2 0.05,0.61 0.13,0.96 0.1,-0.58 0.28,-0.98 0.17,-0.09 0.11,3.37 0.03,1.35 0.16,-3.85 h 0.1 l 0.28,0.01 0.09,-0.01 0.09,-0.48 0.1,4.62 0.03,0.05 h 0.02 l 0.09,-3.2 0.01,1.23 0.13,-3.16 0.28,0.55 0.07,0.4 0.06,0.27 0.02,-0.21 0.13,0.1 v 0.01 l 0.08,-0.81 0.19,8.77 0.01,0.42 0.03,-0.07 0.12,-9.47 0.07,-0.59 0.05,0.06 0.01,0.1 0.02,0.36 0.02,0.69 0.01,-0.87 h 0.07 0.01 v 0 h 0.03 l 0.12,0.52 0.01,0.02 h 0.04 l 0.06,0.33 0.01,0.02 0.05,0.44 0.02,0.24 0.01,0.35 0.06,-1.12 v 0 l 0.02,-0.04 0.02,-0.04 0.02,0.07 0.02,-0.01 v 0.02 h 0.12 0.01 0.03 0.02 v 0 h 0.01 0.03 0.03 0.04 0.01 v -0.37 l 0.08,-0.15 h 0.09 0.01 l 0.02,0.95 0.02,0.63 0.24,-1.04 0.03,0.45 0.05,1.52 0.04,-2.56 0.03,-0.18 0.06,4.48 0.03,-0.43 0.07,5.62 0.06,5.94 0.22,-10.42 0.02,-0.75 h 0.09 v 0 h 0.01 0.01 v 0 0 h 0.02 v 0.01 -0.01 0 h 0.01 v 0 h 0.02 0.01 l 0.09,-0.02 0.28,2.7 0.02,0.33 0.12,8.21 0.11,-8.93 h 0.01 l 0.02,0.45 0.06,1.24 h 0.01 l 0.03,0.3 0.02,3.97 0.12,-3.42 0.04,-1.04 0.13,-3.46 h 0.06 0.05 l 0.04,0.85 0.19,3.61 0.05,0.51 v -1.79 l 0.04,23.29 0.03,-10.27 0.2,-14.36 0.02,1.3 0.03,-3.37 0.01,-1.15 0.01,0.29 v -0.06 l 0.03,2.04 0.05,-6.13 0.05,0.2 0.04,10.45 0.06,0.01 0.01,1.72 h 0.01 0.01 0.02 0.01 0.03 l 0.01,-5.69 h 0.02 0.09 l 0.1,-5.56 0.06,-0.36 h 0.01 0.02 l 0.02,-0.02 0.09,3.37 0.01,-0.05 0.03,-0.81 v 0 l 0.04,0.58 0.06,0.96 0.03,-1.75 0.06,0.65 h 0.01 0.01 l 0.05,-0.17 0.02,0.3 0.04,-0.3 0.01,-0.01 v 0 h 0.01 v 0 l 0.03,-0.01 0.01,0.02 v 0 h 0.02 l 0.01,-0.06 v 0 l 0.07,-0.26 0.05,0.11 0.04,-0.15 0.01,1.68 0.03,0.82 0.05,1.37 0.05,0.09 h 0.02 0.01 0.02 0.12 0.01 0.02 0.04 l 0.06,0.5 h 0.05 l 0.11,0.3 0.19,0.56 h 0.01 v 0.02 l 0.08,-0.06 0.28,-1.17 0.09,-0.45 h 0.01 v 0 h 0.01 v 0 h 0.01 l 0.01,-0.02 v 0 l 0.15,0.55 0.14,0.71 0.14,-0.03 0.07,-0.01 v 0.04 0 h 0.04 l 0.04,2.75 0.13,-1.46 v 0 l 0.08,0.29 0.06,0.75 v 0 0 l 0.01,-0.05 0.01,0.05 v 0 0.07 l 0.12,-0.03 h 0.01 0.12 v 0 l 0.12,4.4 0.03,-1.36 0.1,-5.44 0.18,4.15 v -0.04 0.05 l 0.02,0.24 h 0.01 l 0.15,-2.43 0.08,5.97 0.01,0.04 0.02,0.09 0.24,-0.92 0.04,1.24 0.09,3.61 0.12,12.6 0.07,-8.29 0.06,-1.44 h 0.03 l 0.08,7.71 h 0.04 l 0.07,-1.57 0.02,-0.43 0.26,5.25 0.17,1.34 0.11,0.36 0.05,0.18 h 0.06 l 0.08,5.8 0.09,7.11 0.18,-14.3 0.1,-0.68 0.27,-1.35 0.01,-0.38 0.23,-16.83 h 0.04 0.01 0.1 l 0.08,6.94 0.01,-0.86 0.02,-2.79"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path103" />
+        <path
+           d="m 56.66,959.3 h 15.68 v 242.49 H 56.66 Z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path105" />
+      </g>
+    </g>
+    <g
+       id="g107" />
+    <g
+       id="g109"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g111"
+         clip-path="url(#clipPath115)">
+        <path
+           d="M 72.34,1190.76 H 88.01"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path117" />
+        <path
+           d="M 72.34,1165.1 H 88.01"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path119" />
+        <path
+           d="M 72.34,1082.26 H 88.01"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path121" />
+        <path
+           d="m 73.05,1009.85 0.04,3.11 0.02,0.55 0.01,-0.03 v 0.03 h 0.01 0.01 0.02 l 0.22,-6.26 0.03,9.45 0.06,0.85 0.12,-10.82 0.18,-8.99 0.03,-0.15 0.09,0.65 0.24,0.16 0.36,-0.47 0.02,-0.05 0.34,-9.52 0.32,-9.2 0.04,-0.01 h 0.15 l 0.05,-0.36 0.03,0.2 0.02,0.16 h 0.07 0.02 l 0.02,0.82 0.15,4.87 0.09,-1.72 0.01,-0.31 0.07,0.11 0.03,0.13 v 0.01 l 0.01,0.03 0.01,0.03 0.11,-6.46 h 0.12 l 0.06,-0.46 0.06,-1.71 0.03,24.16 0.01,-28.24 0.13,1.88 0.03,-1.47 0.1,11.6 0.06,0.54 0.09,0.74 0.22,1.1 0.05,-0.05 0.36,-9.74 0.1,-3.36 0.26,0.12 0.05,0.24 0.03,15.46 v 0 h 0.01 0.02 v 0 l 0.02,-0.22 0.03,-1 0.09,6.07 0.03,-1.16 0.02,0.01 0.06,-8.7 0.01,-2.29 0.19,5.8 0.03,0.25 0.03,5.52 0.1,-0.03 v 0 l 0.01,0.01 0.14,-0.04 v 0 l 0.04,0.82 0.01,-0.35 v -0.02 l 0.01,-0.37 h 0.11 l 0.04,-1.61 0.05,-1.67 v 0 0 0 h 0.01 v 0 0 h 0.01 0.01 l 0.05,-8.36 0.08,8.08 0.13,-5.5 0.03,0.77 0.07,3.02 0.09,-0.11 0.01,-0.11 0.03,0.22 v 0 0 0 0 h 0.01 0.01 l 0.02,0.34 0.05,5.36 h 0.03 v 0 l 0.04,-0.11 0.28,-9.6 0.03,0.76 0.02,-2.88 h 0.02 l 0.01,11.17 0.01,3.62 v 0 h 0.06 0.1 v -1.03 0 h 0.01 0.02 l 0.07,-0.63 v 0 0 l 0.09,2.61 0.06,1.64 h 0.01 0.05 l 0.17,-17.86 v 0 l 0.07,20.54 0.01,1.69 h 0.01 l 0.1,8.81 0.03,-0.26 0.01,0.61 v 0 h 0.02 v 0 l 0.04,-4.92 0.14,3.28 0.18,1.73 0.14,-0.45 h 0.02 0.02 0.03 0.02 0.02 0.03 l 0.07,4.65 0.03,9.55 0.13,-8.73 0.03,-1.72 0.03,-3.19 0.33,7.78 0.03,0.45 v 0 l 0.01,0.39 0.04,-0.49 0.28,10.36 0.01,0.25 v 0 l 0.1,-6.23 0.15,-0.24 0.03,-4.59 0.02,-0.23 h 0.03 0.02 0.03 l 0.05,-0.63 0.18,-3.43 v 0 l 0.1,-3.95 0.02,-0.97 0.34,-12.28 v -0.18 h 0.01 l 0.04,-1.1 0.04,0.84 h 0.03 v 0 0 0 h 0.01 v 0 0 0 0 0 0 0 0 0 0 h 0.04 l 0.01,0.11 0.01,-0.11 h 0.08 l 0.09,-2.96 0.02,-0.5 0.06,-0.03 h 0.07 l 0.21,-1.44 0.01,-0.07 h 0.04 l 0.06,0.22 0.17,4.96 0.08,-0.17 0.06,0.59 h 0.18 l 0.12,-0.65 0.02,0.01 h 0.02 l 0.27,3.96 0.05,-0.85 0.15,-2.94 h 0.06 l 0.1,1.43 0.05,0.67 0.36,4.51 0.14,1.53 0.15,4.96 0.07,-8.73 0.06,-0.17 v 0 h 0.01 0.01 0.08 l 0.08,-1.04 0.08,-14.66 0.04,-0.49 0.07,-0.78 0.08,15.27 0.21,-6.04 v -0.03 l 0.08,-20.43 0.12,0.79"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path123" />
+        <path
+           d="m 72.34,959.3 h 15.68 v 242.49 H 72.34 Z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path125" />
+      </g>
+    </g>
+    <g
+       id="g127" />
+    <g
+       id="g129"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g131"
+         clip-path="url(#clipPath135)">
+        <path
+           d="m 88.01,1190.76 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path137" />
+        <path
+           d="m 88.01,1165.1 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path139" />
+        <path
+           d="m 88.01,1082.26 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path141" />
+        <path
+           d="m 88.73,972.62 0.15,14.18 0.09,-1.83 0.02,3.17 0.07,-0.42 0.01,0.04 0.09,3.07 h 0.06 l 0.1,-0.81 0.04,0.81 h 0.02 v 0.34 l 0.03,1.79 h 0.03 l 0.02,0.64 0.03,0.62 0.07,1.44 v 0 l 0.05,0.38 0.09,8.95 0.01,2.76 0.04,12.07 0.08,-1.72 v -0.38 l 0.06,-6.06 0.1,-3.39 0.05,-0.72 0.04,-0.47 0.01,-8.04 0.02,0.05 0.03,-1.07 v -0.37 l 0.08,-6.51 0.15,6.44 v -0.42 l 0.08,-3.4 h 0.02 0.1 0.05 l 0.04,0.36 h 0.04 v 0 l 0.09,-0.15 0.24,-0.83 0.3,-3.33 h 0.03 0.19 0.12 v 0 0 0 h 0.01 0.01 0.01 0.02 l 0.19,-4.73 0.11,2.78 0.14,1.14 h 0.01 l 0.01,1.31 0.01,1.15 h 0.01 0.01 l 0.13,-0.44 0.01,-0.25 0.33,-5.85 0.01,-0.21 0.02,-0.03 0.16,1.82 0.01,-1.82 0.09,-8.95 0.04,0.61 0.24,8.12 0.04,0.25 0.01,-0.33 0.04,1.32 0.13,0.26 h 0.12 l 0.02,0.16 h 0.02 l 0.04,-0.81 0.09,-1.93 0.04,0.93 0.02,-0.79 0.04,-2.73 0.13,-2.76 v 0 0 l 0.01,0.1 0.12,2.24 0.01,0.25 h 0.02 v 0 l 0.1,1.22 v 0 h 0.01 0.05 l 0.01,-1.79 0.01,-0.15 v 0.01 l 0.06,0.14 0.01,-1.32 h 0.02 0.05 l 0.01,0.12 0.04,-0.07 0.02,-0.05 0.01,-0.01 0.02,-1.16 0.09,-0.61 0.07,-0.79 h 0.16 v 0 l 0.05,-2.66 0.01,1.05 0.04,0.04 0.03,0.02 0.01,-0.08 0.03,0.02 h 0.02 l 0.05,-2.86 0.19,2.47 0.01,0.19 h 0.01 l 0.04,-1.34 0.03,-0.51 0.03,-1.7 0.06,0.02 0.01,0.05 h 0.01 v 0 0 l 0.03,-0.3 0.07,0.69 0.03,-0.05 0.21,-0.51 h 0.01 l 0.01,-0.12 h 0.01 l 0.02,0.01 0.01,-0.04 h 0.01 l 0.05,-0.02 0.14,1.72 0.18,-1.39 0.04,-0.09 0.21,4.17 v 0 h 0.01 l 0.07,0.18 0.01,0.01 0.11,1.03 0.08,2.71 0.04,-1.67 v 0 l 0.09,1.55 0.13,2.15 0.05,-1.14 0.06,-4.56 0.09,0.21 0.25,0.33 0.08,1.71 0.11,2.38 0.09,-0.95 h 0.01 0.01 l 0.06,17.37 0.04,14.72 0.01,-0.15 0.33,-17.92 0.19,-14.54 0.02,-1.46 0.05,-1.01 0.01,0.11 0.06,4.69 v -0.1 l 0.21,-5.23 0.12,-1.39 0.02,0.63 0.06,1.9 0.25,-0.93 0.07,0.29 h 0.01 l 0.07,0.61 0.18,9.65 0.04,0.05 0.03,-7.15 0.23,-1.83 h 0.03 l 0.05,0.37 0.28,11.46 0.03,2.19 0.18,-0.97 h 0.12 0.02 l 0.14,15.78 0.17,1.26 0.08,0.69 0.14,0.01 0.02,2.24 h 0.08 0.01 0.02 l 0.06,0.57 0.03,-0.57 v 0 -0.07 l 0.02,0.07 h 0.06 l 0.14,-2.82 0.13,-0.01 0.13,-4.32 0.07,-5.11 0.09,-10.35 v 0 h 0.08 0.06 0.01 l 0.05,-0.37 0.04,-1.03 0.21,-6.71 0.09,-0.68 0.03,-1.14 0.17,-3.47 0.08,0.85 h 0.07 0.03 0.06"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path143" />
+        <path
+           d="m 88.01,959.3 h 15.68 v 242.49 H 88.01 Z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path145" />
+      </g>
+    </g>
+    <g
+       id="g147" />
+    <g
+       id="g149"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g151"
+         clip-path="url(#clipPath155)">
+        <path
+           d="m 103.69,1190.76 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path157" />
+        <path
+           d="m 103.69,1165.1 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path159" />
+        <path
+           d="m 103.69,1082.26 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path161" />
+        <path
+           d="m 104.4,976.46 0.09,-0.09 0.16,3.38 0.01,1.35 0.03,0.33 v -4.04 l 0.02,-0.01 h 0.02 v 0.01 h 0.01 l 0.27,0.45 0.04,-0.07 0.06,-0.07 h 0.01 l 0.04,-0.62 0.09,0.19 0.03,0.4 h 0.03 l 0.07,0.37 0.1,1.15 h 0.01 0.04 0.09 0.04 0.04 0.01 l 0.02,-2.73 0.08,0.65 0.02,-0.08 0.02,-0.05 0.18,0.67 0.07,0.26 0.02,0.41 0.12,3.44 0.11,0.82 0.03,0.18 0.15,5.34 0.1,-4.24 0.05,-0.17 0.24,-0.77 0.01,0.45 h 0.02 l 0.06,-1.82 v 0 l 0.32,0.77 0.14,0.55 0.05,4.11 0.03,0.19 0.11,2.37 0.07,1.45 0.07,0.79 v 4.65 l 0.18,-2.73 0.03,-1.51 0.07,0.47 h 0.04 l 0.19,5.6 0.1,-0.45 0.06,2.02 h 0.01 l 0.15,11.71 0.31,-39.98 0.02,-0.13 0.15,0.91 0.02,-1.41 0.01,-0.1 0.04,0.18 0.02,-0.13 0.03,0.26 0.03,-0.82 h 0.02 0.02 v 0 l 0.15,1.54 0.16,-0.1 0.2,5.44 0.08,31.97 0.04,-0.36 0.04,-0.31 v 12.27 h 0.01 l 0.16,-5.92 v 4.13 l 0.12,0.01 h 0.12 l 0.15,-4.65 0.03,3.12 v -0.12 l 0.02,1.69 0.33,18.03 0.02,0.31 0.04,0.52 H 111 l 0.07,25.58 v 0 0 h 0.01 0.02 0.03 0.02 l 0.09,-3.13 0.01,-0.49 h 0.04 v 0 l 0.03,-0.01 v 0.01 h 0.01 l 0.07,-14.45 0.06,-1.59 h 0.06 0.04 l 0.26,0.02 0.01,9.86 0.01,-0.04 v 0.03 l 0.04,-61.09 0.01,0.1 0.05,2.33 0.04,58.67 0.01,-2.2 0.05,-1.01 v 0 h 0.01 v 0 0 h 0.01 v 0 h 0.01 l 0.09,-0.97 v 0 h 0.05 0.07 0.02 v 0 l 0.02,-14.09 0.03,0.26 0.08,6.6 0.02,-0.4 v 0.68 l 0.01,-0.03 v 0 0 l 0.01,-0.05 0.03,0.05 0.02,-13.59 0.02,-0.03 0.12,-0.17 h 0.02 0.04 l 0.06,-0.75 0.06,-1.15 0.02,-0.29 0.1,-3.48 0.04,1.15 0.07,1.18 0.04,1.37 h 0.08 0.03 v 0 0.64 h 0.02 0.05 0.03 0.05 0.01 0.04 0.01 l 0.08,0.11 0.33,0.52 0.04,0.07 v 0 h 0.02 l 0.02,0.04 h 0.01 v 0 l 0.03,-11.44 0.18,-0.37 h 0.02 0.06 0.04 l 0.02,0.1 0.07,-0.1 h 0.02 l 0.12,0.09 0.03,0.28 0.14,10.18 0.07,-0.22 0.08,-0.01 0.12,0.03 0.21,0.05 0.03,0.01 0.26,0.1 h 0.03 l 0.18,0.01 0.13,3.77 0.02,-0.19 0.02,0.34 0.31,-9.79 0.23,-7.97 0.09,-4.81 0.06,-13.36 h 0.05 l 0.22,3.09 0.15,-0.93 0.11,-2.45 0.06,3.79 0.23,5.99 0.05,-1.77 0.03,-7.3 0.02,0.4 0.32,7.13 0.16,2.13 h 0.04 l 0.13,-6.45 0.32,-20.87 0.04,-1.55 0.22,-3.03"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path163" />
+        <path
+           d="m 103.69,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path165" />
+      </g>
+    </g>
+    <g
+       id="g167" />
+    <g
+       id="g169"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g171"
+         clip-path="url(#clipPath175)">
+        <path
+           d="m 119.37,1190.76 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path177" />
+        <path
+           d="m 119.37,1165.1 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path179" />
+        <path
+           d="m 119.37,1082.26 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path181" />
+        <path
+           d="m 120.08,970.36 h 0.01 0.02 l 0.12,0.32 0.04,0.19 h 0.08 l 0.1,1 0.06,0.86 h 0.08 0.01 l 0.01,-0.29 h 0.05 0.08 l 0.03,-1.78 0.05,0.3 0.23,1.77 0.11,-1.72 0.03,1.34 0.01,0.56 0.05,-2.2 v 0 h 0.02 l 0.02,2.3 h 0.03 l 0.24,-1.67 0.29,-1 v 0.02 l 0.08,-0.02 h 0.02 0.01 v 0 h 0.03 0.03 0.03 0.02 0.03 l 0.05,-0.01 0.04,0.01 0.11,0.03 0.03,0.05 h 0.01 l 0.1,0.02 0.06,-0.03 0.17,-0.01 0.36,4.28 0.01,0.03 0.2,2 0.17,0.09 0.29,1.39 0.04,-3 0.05,-2.27 0.01,2.12 0.36,-3.07 0.01,-0.07 0.08,2.97 0.02,0.27 0.05,0.11 0.21,-0.56 0.01,-0.02 0.19,-3.49 v 0 0 l 0.17,1.11 v 0 0 l 0.26,1.16 0.02,-0.25 h 0.01 l 0.08,5.26 v 0.32 l 0.11,-2.7 0.04,-0.01 0.09,-0.61 0.13,5.43 0.01,1.28 0.1,1.44 0.12,5.48 0.04,2.8 0.07,-2.8 0.03,-0.85 0.18,-7.3 h 0.04 l 0.04,-3.13 0.11,-0.81 h 0.01 l 0.05,0.42 0.06,-0.42 h 0.1 l 0.11,-2.28 0.04,0.83 v -0.08 l 0.08,-2.41 0.26,3.83 0.03,-0.11 0.01,-0.05 0.03,0.16 0.02,-0.49 h 0.05 v 0 l 0.01,0.08 0.06,-0.93 0.04,2.12 v 7.06 l 0.15,-0.72 0.18,-1.03 0.07,-9.92 0.12,4.26 0.21,8.42 0.03,-7.64 0.13,3.88 0.23,1.55 h 0.03 0.08 l 0.03,0.41 0.05,0.72 0.06,1.03 h 0.14 v 0 h 0.11 l 0.01,-0.53 0.02,-0.69 h 0.05 l 0.03,-4.37 0.24,-2.15 v -0.23 h 0.03 0.19 0.18 0.01 0.01 v 0 h 0.01 l 0.2,-4.62 0.11,1.13 0.03,0.02 h 0.01 0.03 0.01 v 0 l 0.06,1.9 0.1,-0.61 h 0.01 0.03 l 0.05,0.84 v 0 l 0.04,0.67 0.04,-0.05 0.01,-0.01 h 0.02 0.01 l 0.06,4.11 0.19,-6.03 0.08,4.29 0.04,-0.07 0.33,-1.31 0.23,-2.58 0.02,9.52 h 0.03 l 0.04,3.05 0.04,-11.36 0.01,0.13 0.37,-0.52 0.01,-0.02 0.03,0.03 0.09,5.26 v 0 h 0.01 l 0.03,1.25 0.01,0.54 0.15,-0.52 0.04,-5.69 0.01,-2.02 0.17,10.4 0.03,0.34 0.06,-1.55 0.03,-0.29 0.07,-2.16 0.01,-0.27 0.25,-6.21 0.05,2.5 0.06,-0.65 0.37,-3.34 0.37,-2.43 0.16,-0.68 0.02,17.53 h 0.1 l 0.09,-1.12 0.03,-0.36 h 0.03 l 0.01,-0.38 0.06,-15.62 0.04,1.05"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path183" />
+        <path
+           d="m 119.37,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path185" />
+      </g>
+    </g>
+    <g
+       id="g187" />
+    <g
+       id="g189"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g191"
+         clip-path="url(#clipPath195)">
+        <path
+           d="m 135.04,1190.76 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path197" />
+        <path
+           d="m 135.04,1165.1 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path199" />
+        <path
+           d="m 135.04,1082.26 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path201" />
+        <path
+           d="m 135.76,996.91 v 0 0.01 0 0 l 0.01,-0.04 v 0 0 0 0 h 0.01 v 0 0 h 0.02 v 0 0 0 0 0 h 0.01 v 0 l 0.06,4.59 0.02,-4.28 h 0.02 v 0 0 0 l 0.01,-16.25 v -0.05 16.3 h 0.01 l 0.1,-23.56 0.01,0.08 0.01,34.22 0.03,-0.72 0.05,-1.24 h 0.02 0.01 l 0.25,0.02 0.3,-0.02 v 0 0 0 0 l 0.03,2.98 0.02,-2.79 0.14,-7.72 h 0.02 0.03 0.04 l 0.02,-0.07 h 0.05 v 0 h 0.01 v 0 l 0.01,-9.45 0.03,-0.23 0.01,9.34 v 0.34 h 0.05 l 0.22,1.29 0.3,1.76 0.03,2.01 0.14,-6.82 0.17,-11.22 0.02,0.15 v 0 h 0.07 0.08 v 0 h 0.03 l 0.15,0.21 0.21,0.34 h 0.01 v 0 l 0.01,-0.2 0.09,-2.41 0.06,-1.5 h 0.05 0.01 l 0.21,-5.75 0.01,-0.29 v 0 l 0.02,0.24 v 0 h 0.08 v 0 h 0.01 l 0.03,-0.22 h 0.04 0.01 0.04 0.01 0.08 0.03 l 0.04,-0.04 0.03,0.04 h 0.1 l 0.02,-1.95 v 0 l 0.01,0.01 0.02,-0.07 v -2.44 l 0.08,-0.35 0.03,0.09 0.29,2.07 0.05,-0.4 0.01,0.12 0.04,0.55 0.05,-3.24 v 0 h 0.01 l 0.05,0.07 0.03,-0.08 v 0 l 0.09,0.09 v 0 l 0.12,0.84 0.09,3.38 0.07,2.33 0.05,0.49 0.11,1.1 0.03,-3.26 0.02,-0.79 v -0.09 l 0.02,-0.68 h 0.01 l 0.04,1.14 v 0 0.24 l 0.01,-3.99 v -0.18 l 0.01,0.03 0.02,-0.03 v 4.25 h 0.01 l 0.04,-3.31 0.01,0.05 v 0.04 l 0.03,0.52 0.01,0.17 v 0 h 0.01 l 0.04,1.07 h 0.01 l 0.01,-2.91 v 0 h 0.01 l 0.11,-0.02 0.03,1.32 v 0 l 0.06,-0.28 0.24,-1.08 0.09,0.18 0.01,0.04 0.1,-0.58 h 0.01 l 0.21,0.15 0.08,0.07 0.1,1.14 0.09,-1.14 0.03,0.15 0.03,-0.06 0.1,-0.17 0.18,-0.04 0.02,0.1 0.01,0.22 v 0 l 0.01,0.1 0.1,2.56 0.06,1.14 h 0.01 l 0.03,0.17 0.09,-2.79 h 0.04 0.11 0.08 l 0.05,-1.05 0.02,-0.01 0.07,-0.27 0.07,-0.16 v 0 h 0.01 v 0 h 0.01 v 0 h 0.04 l 0.08,-0.2 0.03,2.2 h 0.02 0.01 v 0 h 0.06 0.06 v 0 0 h 0.01 0.03 0.08 0.01 0.04 l 0.03,2.57 h 0.01 l 0.02,-0.06 0.03,-1.37 v -0.01 h 0.03 l 0.21,-1.92 0.09,0.79 v 0.01 h 0.01 v 2.2 -2.4 l 0.05,-1.63 h 0.01 0.01 0.01 l 0.02,-0.2 h 0.05 0.03 0.09 0.05 0.01 0.01 0.02 l 0.05,-0.06 v 0 l 0.15,0.19 v 0.03 l 0.09,0.03 0.12,0.01 h 0.02 l 0.06,2.11 v 0 h 0.02 l 0.09,-1.14 0.01,0.45 0.13,1.27 h 0.08 0.02 0.01 0.01 0.02 0.05 v 0 l 0.01,-0.19 0.01,-0.1 0.06,0.29 0.11,-1.01 0.02,-0.16 v 0 0 h 0.02 0.02 0.01 v 0 0 h 0.01 v 0 0 h 0.01 v 0 0.01 h 0.01 v -0.01 h 0.01 v 0 h 0.01 v 0 l 0.03,-0.43 0.26,-0.02 0.03,-0.02 0.04,-0.3 0.22,-0.29 0.1,0.29 0.02,0.32 v 0 0 h 0.05 0.01 v 0 l 0.05,-0.01 0.02,0.01 0.01,-0.01 0.02,0.01 v 0 h 0.01 v 0 0 h 0.02 0.12 0.09 0.05 v 0 h 0.01 0.06 0.05 0.06 0.01 0.06 0.27 0.06 l 0.02,0.09 0.24,-0.8 0.07,0.12 v 0 0 l 0.23,4.54 0.03,3.89 0.02,-1.4 0.03,-1.62 v 0 0 l 0.06,-5.67 0.05,-0.31 0.04,16.2 0.02,0.13 0.11,-5.55 0.04,-2.19 0.07,-0.55 0.22,-2.59 0.29,-3.84 0.03,2.68 0.04,2.06 v 0 h 0.01 0.01 0.06 l 0.03,-2.76 h 0.03 v 0 l 0.05,-2.54 0.1,3.31 0.33,8.55 0.05,0.2 0.05,-0.75 0.02,8.04 0.04,-2.31 0.01,0.01"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path203" />
+        <path
+           d="m 135.04,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path205" />
+      </g>
+    </g>
+    <g
+       id="g207" />
+    <g
+       id="g209"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g211"
+         clip-path="url(#clipPath215)">
+        <path
+           d="M 150.72,1190.76 H 166.4"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path217" />
+        <path
+           d="M 150.72,1165.1 H 166.4"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path219" />
+        <path
+           d="M 150.72,1082.26 H 166.4"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path221" />
+        <path
+           d="m 151.43,972.58 0.02,0.02 0.01,-0.03 h 0.02 0.03 0.01 0.02 l 0.04,0.52 0.08,-0.52 0.16,0.03 0.03,0.01 0.14,-0.83 0.09,1.21 0.06,-0.98 0.04,-1.25 0.02,0.47 0.06,1.77 h 0.01 l 0.02,0.04 0.25,0.15 0.03,-0.15 h 0.02 0.11 v 0 l 0.12,0.13 0.11,-0.13 0.04,0.05 0.1,0.23 h 0.16 l 0.06,0.66 0.01,0.05 0.01,-2.66 0.03,1.41 0.01,0.59 0.39,-0.28 0.14,2.82 0.16,-2.48 0.08,-0.07 0.12,-1.05 0.04,-0.27 h 0.1 l 0.13,1.08 0.04,0.41 0.01,-3.2 0.14,0.42 0.01,1.68 0.08,0.24 0.1,-0.09 0.21,-0.15 0.01,0.03 0.04,0.52 h 0.12 0.02 0.17 0.11 0.01 0.01 0.06 l 0.01,-0.02 0.02,-0.08 0.04,0.1 h 0.01 v 0 h 0.03 v 0 l 0.02,0.03 0.26,-0.86 0.03,-0.1 0.09,-0.25 0.01,-0.02 v 0 l 0.1,-0.17 0.05,-0.04 0.11,1.41 0.01,0.26 0.01,-0.01 0.02,0.01 h 0.04 0.1 0.03 v 0 h 0.01 v 0 h 0.04 0.08 l 0.02,0.24 h 0.02 0.14 0.02 0.02 l 0.03,4.22 0.01,-2.31 v 0.01 l 0.16,-2.7 0.27,5.15 0.05,-4.74 0.04,0.08 0.03,0.34 0.05,0.73 h 0.01 l 0.04,0.77 0.17,1.7 h 0.04 0.01 0.01 v 0 l 0.01,1.42 h 0.04 0.12 v 0 l 0.27,2.06 0.15,1.16 h 0.01 0.17 v 0 h 0.01 v 0 l 0.04,-1.55 0.07,-3.08 0.15,4.63 H 159 l 0.11,2.37 0.07,1.19 v 0 h 0.05 l 0.18,-0.07 0.05,0.95 0.04,-11.31 v 0.08 l 0.05,1.05 v 0 h 0.03 l 0.05,2.63 0.02,0.01 v -0.04 h 0.01 0.17 0.05 0.08 0.08 v 0 h 0.02 0.03 l 0.18,0.68 0.1,0.49 v -0.13 l 0.01,-0.24 h 0.07 0.06 0.07 0.04 l 0.03,0.63 0.08,1.61 0.3,-3 0.21,-1.54 v 0 l 0.05,8.02 0.02,-1.71 0.11,1.72 0.03,0.37 0.19,-1.86 0.16,1.37 0.17,1.3 0.16,2.26 0.06,-0.72 0.38,-5.25 0.08,-0.84 0.01,0.2 0.02,-0.22 v 0 h 0.05 l 0.02,1.01 0.06,-1.01 0.14,0.5 0.02,0.05 0.37,-2.51 0.08,-0.6 0.3,-1.07 0.21,-2.54 0.18,7.1 0.38,-0.23 0.12,-0.01 0.06,-0.08 h 0.02 0.01 l 0.18,1.07 0.02,0.18 h 0.01 0.02 v 0 l 0.01,0.07 0.03,-6.74 0.27,-2.63 0.02,-0.63 0.17,9.63 0.02,-0.01 0.11,3.59 0.08,1.55 0.05,0.82"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path223" />
+        <path
+           d="m 150.72,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path225" />
+      </g>
+    </g>
+    <g
+       id="g227" />
+    <g
+       id="g229"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g231"
+         clip-path="url(#clipPath235)">
+        <path
+           d="m 166.4,1190.76 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path237" />
+        <path
+           d="m 166.4,1165.1 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path239" />
+        <path
+           d="m 166.4,1082.26 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path241" />
+        <path
+           d="m 167.11,991.48 0.03,0.25 0.02,-0.26 0.06,-3.75 h 0.03 l 0.04,-0.09 0.04,1.35 0.03,-1.74 v 0 0 h 0.01 l 0.13,0.41 0.38,-0.57 0.02,-0.03 v 0.06 l 0.01,-0.11 0.32,2.19 h 0.04 0.01 v 0 h 0.03 0.03 l 0.01,-4.01 0.01,-1.29 h 0.01 l 0.02,-0.22 0.26,-3.05 0.08,-0.95 0.31,-0.44 0.26,-0.48 0.13,-1.85 v -0.44 l 0.29,2.8 0.09,-0.5 0.18,-6 0.16,1.22 0.05,13.32 0.11,-15.11 0.06,-0.32 0.1,-0.28 0.11,-0.13 0.1,-0.12 h 0.17 0.02 v 0 h 0.01 l 0.01,-0.01 0.01,0.01 h 0.01 l 0.06,-0.56 0.12,-0.4 h 0.27 0.05 l 0.02,0.16 h 0.09 l 0.11,0.07 0.02,-0.07 h 0.03 l 0.02,0.08 0.04,-0.02 0.04,-0.01 0.28,-0.25 0.07,0.05 0.15,0.42 0.05,-0.18 h 0.05 0.05 l 0.08,0.09 0.13,0.16 h 0.05 l 0.21,0.03 0.04,0.01 0.07,0.11 0.05,2.33 0.1,0.44 0.02,-1.13 0.1,-0.33 0.09,-0.24 0.24,3.63 0.06,1.51 0.01,0.54 0.06,-2.39 0.14,-0.94 0.04,1.56 0.14,-0.09 0.17,-0.1 0.16,0.58 0.05,-0.01 0.03,-0.24 0.08,-3.64 h 0.02 l 0.04,-0.92 v -0.01 l 0.04,-0.17 0.01,0.01 0.1,-0.36 0.03,0.81 0.04,-0.05 0.19,-0.09 0.02,1.4 0.06,0.07 h 0.07 l 0.04,2.07 0.05,1.9 0.03,3.78 0.03,3.21 h 0.28 0.01 l 0.06,2.67 0.05,4.82 0.09,-6.06 0.01,-0.35 h 0.03 0.08 0.05 l 0.01,-0.43 0.03,-1.95 v 0 l 0.01,0.06 0.08,-0.06 h 0.01 l 0.07,-1.72 0.12,2.26 0.06,1.63 0.39,9.83 0.14,3.06 0.24,-5.77 0.04,-1.15 h 0.15 l 0.01,0.47 0.08,-0.73 0.11,-12.19 0.02,-2.26 0.24,15.74 h 0.03 0.1 0.02 0.02 0.06 v 0 h 0.05 v 0 l 0.04,0.03 h 0.01 0.16 0.02 v 0 l 0.22,-1.12 0.17,-9.44 0.06,-3.26 h 0.08 l 0.18,-0.46 0.06,-1.64 0.19,-1.67 0.04,0.86 0.16,2.45 0.39,2.62 0.24,-3.98 0.1,-1.09 0.01,2.64 0.03,0.02 0.04,-0.04 0.2,-2.57 0.15,-0.08 0.03,-0.01 v 0 l 0.35,-2.75 0.05,0.49 0.14,0.14 0.17,-0.7"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path243" />
+        <path
+           d="m 166.4,959.3 h 15.68 v 242.49 H 166.4 Z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path245" />
+      </g>
+    </g>
+    <g
+       id="g247" />
+    <g
+       id="g249"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g251"
+         clip-path="url(#clipPath255)">
+        <path
+           d="m 182.07,1190.76 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path257" />
+        <path
+           d="m 182.07,1165.1 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path259" />
+        <path
+           d="m 182.07,1082.26 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path261" />
+        <path
+           d="m 182.79,986.77 0.02,-0.13 0.07,-3.21 0.06,-1.38 0.23,-4 0.01,-0.14 h 0.01 0.1 0.02 0.01 v 0 l 0.1,0.64 0.01,-0.27 0.07,0.95 h 0.03 v 0 l 0.02,0.75 0.03,1.38 v 0 l 0.04,4.39 v 0 -4.39 h 0.01 l 0.02,-7.8 0.02,-0.23 0.12,-0.81 0.14,1.25 0.21,3.67 0.15,-2.33 0.02,0.38 0.15,3.33 0.01,-0.24 0.12,-4.86 0.1,0.76 0.13,1.26 0.02,1.66 0.06,0.76 h 0.01 0.06 l 0.02,-0.02 0.08,-1.88 0.38,-3.55 0.13,-0.87 0.07,-0.98 0.18,0.57 0.02,0.26 0.36,1.39 0.38,4.16 0.15,0.69 h 0.02 0.02 v 0 0 h 0.01 v 0 l 0.04,1.12 0.07,-1.12 v 0 h 0.03 0.01 v 0 0 0 0 h 0.01 l 0.01,-0.01 v 0.01 h 0.01 v 0 0 h 0.01 0.03 v 0 h 0.04 0.01 l 0.26,1.09 v 0 l 0.03,-0.01 0.38,-3.69 0.04,-0.78 0.29,3.93 0.01,1.9 v 0 0 0 h 0.01 v 0 0 0 0 h 0.02 v 0 l 0.01,-0.03 0.04,-0.06 0.01,-1.13 0.33,-5.55 0.27,-1.88 0.03,0.87 0.08,0.74 0.11,-0.11 0.12,2.25 0.09,0.54 h 0.02 l 0.04,-0.69 0.21,-3 0.02,-1.26 0.14,0.4 0.01,0.1 0.38,1.7 0.03,0.04 0.14,-1.52 0.06,0.15 0.05,-0.47 0.03,0.43 h 0.03 v -0.01 l 0.04,-0.04 0.03,-0.01 0.11,2.02 0.21,3.57 0.03,-0.07 0.23,0.03 0.15,-0.28 0.32,1.5 h 0.07 0.02 l 0.03,-2.43 h 0.05 0.18 0.02 l 0.05,-1.21 0.03,-0.1 0.24,-1.8 0.14,3.32 0.38,8 0.07,0.32 h 0.09 l 0.07,-10.6 0.1,0.78 0.05,2.77 0.11,2.62 0.2,-5.48 0.04,-3.11 0.03,-0.01 0.38,0.46 0.38,1.34 0.14,0.47 h 0.09 l 0.15,0.12 0.38,0.01 0.14,-0.13 0.18,3.27 0.06,0.04 0.14,-0.34 0.24,3.07 0.27,2.63 0.11,-2.47 0.2,-9.67 0.18,0.77 0.15,1.1 h 0.01 l 0.02,22.85 0.2,-1.86 0.18,-3.02"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path263" />
+        <path
+           d="m 182.07,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path265" />
+      </g>
+    </g>
+    <g
+       id="g267" />
+    <g
+       id="g269"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g271"
+         clip-path="url(#clipPath275)">
+        <path
+           d="m 197.75,1190.76 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path277" />
+        <path
+           d="m 197.75,1165.1 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path279" />
+        <path
+           d="m 197.75,1082.26 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path281" />
+        <path
+           d="m 198.46,972.73 0.09,0.23 h 0.03 0.02 v 0 l 0.09,-1.67 h 0.03 v 0 h 0.01 v 0 l 0.06,0.42 0.01,-0.1 0.06,-0.32 h 0.02 v 0 l 0.22,0.4 0.01,-0.57 0.01,-0.21 h 0.02 v 0.08 l 0.12,3.84 0.04,0.14 0.07,-2.01 0.11,1.1 0.25,3.14 0.09,0.81 0.01,0.46 0.14,-0.81 0.08,-4.27 0.1,-0.53 0.26,-1.42 0.08,0.33 0.19,1.32 h 0.04 0.04 l 0.04,11.57 0.03,0.34 0.3,-1.25 0.02,-7.14 0.02,-3.02 0.05,-2.53 0.16,6.51 0.05,7.3 0.08,146.84 0.2,-154.15 0.13,-2.32 0.06,-1.01 h 0.14 v 0 0.01 l 0.02,-1.41 v -0.08 l 0.06,-0.23 0.06,0.06 0.01,0.03 h 0.01 0.07 0.1 v 0 h 0.05 v -0.08 h 0.02 0.08 0.16 l 0.14,2.06 0.04,0.72 0.34,6.78 0.1,1.52 0.16,-0.25 0.07,-3.65 0.02,-3.16 0.13,2.55 0.05,1.16 0.14,-6.07 0.07,-2.72 0.06,6.65 0.1,-1.06 0.1,3.03 0.01,-0.17 0.26,-6.63 0.02,2.69 0.03,0.82 0.02,-1.68 h 0.01 l 0.03,-0.01 0.15,-1.53 0.14,1.64 0.01,5.35 0.01,-3.01 0.03,-6.97 v 0 l 0.03,0.13 0.06,0.97 0.08,-0.05 0.01,2.68 0.12,-1.77 0.05,-0.63 0.04,0.02 0.05,-0.72 0.1,0.08 h 0.1 0.01 0.01 v 0 h 0.14 0.08 v 0 h 0.03 l 0.04,2.79 0.03,-0.4 0.2,-2.32 0.14,-0.9 0.29,0.35 0.03,-0.49 v 0 l 0.02,0.01 0.15,0.5 v 0 0 0 l 0.08,0.03 v -0.03 h 0.02 v 0 h 0.01 l 0.02,0.35 0.04,1.37 h 0.01 0.05 v 0 h 0.02 l 0.27,0.01 h 0.01 l 0.05,1.4 0.08,3.27 0.2,1.83 0.21,3.21 v -0.54 l 0.13,1.36 0.04,0.44 v 0 h 0.01 0.01 v 0 h 0.02 v 0 h 0.01 l 0.03,0.15 0.17,-0.15 0.03,-3.17 h 0.02 v 0 l 0.16,0.79 0.17,-0.32 0.13,-0.23 0.07,-1.88 0.14,1.91 0.04,0.44 0.14,6.42 h 0.01 l 0.15,1.77 0.03,-1.07 v 0 h 0.01 0.08 l 0.04,0.89 0.03,-0.8 0.04,-0.13 v 0 l 0.03,0.05 h 0.01 0.02 v 0 l 0.02,-0.26 0.01,-0.1 v 0 h 0.01 v 0 l 0.01,-0.01 0.04,-0.1 0.01,-3.44 h 0.01 v 0 0 h 0.01 v 0 0 0 l 0.19,-0.01 0.01,-0.3 0.07,-5.03 0.01,-1.22 0.22,-1.09 h 0.02 l 0.08,0.76 0.18,1.7 0.05,0.35 0.05,1.75 0.06,-1.05 0.3,-4.16 0.04,-0.27 0.34,-3.51 0.08,-0.4 0.15,-0.4 h 0.11 0.06 l 0.06,-0.27 0.06,0.02 v -0.12 l 0.15,2.51 0.01,0.19 h 0.11 0.03 l 0.13,-0.2 0.06,-0.24 0.34,-1.64 0.06,-0.23"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path283" />
+        <text
+           xml:space="preserve"
+           transform="scale(1,-1)"
+           style="font-variant:normal;font-weight:normal;font-size:11px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#e41a1c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text287"
+           x="198.74127"
+           y="-1137.7828"><tspan
+             x="198.74127 204.85727"
+             y="-1137.7828"
+             sodipodi:role="line"
+             id="tspan285">p3</tspan></text>
+        <path
+           d="m 197.75,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path289" />
+      </g>
+    </g>
+    <g
+       id="g291" />
+    <g
+       id="g293"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g295"
+         clip-path="url(#clipPath299)">
+        <path
+           d="m 213.43,1190.76 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path301" />
+        <path
+           d="m 213.43,1165.1 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path303" />
+        <path
+           d="m 213.43,1082.26 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path305" />
+        <path
+           d="m 214.14,973.95 0.21,-2.63 0.25,0.05 0.26,0.06 0.01,0.13 0.07,1.28 0.09,0.01 0.03,2.02 0.03,1.41 0.09,3.21 h 0.1 0.01 0.01 0.17 0.05 0.04 0.02 0.01 l 0.02,-0.52 0.03,0.52 0.03,-0.02 0.01,0.02 0.03,0.24 h 0.16 l 0.1,-0.21 0.01,-1.04 v 0 h 0.03 l 0.13,1.79 h 0.07 v 0 h 0.05 0.16 0.01 l 0.02,0.06 0.03,0.15 0.01,0.11 0.14,37.2 0.11,-37.93 h 0.14 l 0.02,0.01 0.01,-0.01 v 0 h 0.02 l 0.22,0.21 0.2,-0.23 0.02,-0.09 0.46,-2.83 0.07,-0.33 h 0.05 l 0.08,2.44 0.03,0.18 0.08,-3.47 0.15,0.93 0.25,0.19 0.08,0.63 0.06,-0.08 0.07,-0.7 0.03,-0.27 h 0.01 l 0.08,4.99 0.34,-0.32 0.46,0.5 0.05,0.19 0.01,0.49 v 0 l 0.03,-0.6 0.07,0.65 0.05,-0.94 0.01,0.04 0.06,-0.47 0.02,2.35 0.03,0.46 0.06,-0.79 0.07,0.26 0.2,-0.5 v 0 h 0.01 0.01 l 0.01,4.89 v -9.23 l 0.02,-2.1 h 0.01 v 0 l 0.09,0.05 h 0.02 v 0 l 0.09,-1.61 0.07,-1 h 0.01 0.01 0.01 v 0 h 0.03 0.01 v 0 h 0.02 l 0.09,2.19 v 0 l 0.03,-1.44 h 0.05 0.13 0.07 0.02 l 0.08,0.03 h 0.01 0.01 0.01 0.01 l 0.03,1.7 0.02,-0.73 0.13,1.41 h 0.03 0.04 0.01 l 0.37,-0.7 0.09,-0.16 0.02,0.38 0.29,-1.03 0.15,-1.17 0.26,-2.44 0.05,-1.27 0.15,-0.16 h 0.09 l 0.26,0.37 v 0 h 0.05 l 0.06,0.07 0.19,0.25 0.12,0.17 v 0 l 0.08,0.47 h 0.01 v 0 l 0.01,0.83 h 0.01 l 0.04,0.08 0.01,0.04 v 0 0 h 0.04 0.01 0.05 v 0 l 0.11,3.46 v 0 0 h 0.05 0.01 0.01 v 0 h 0.01 v -1.94 l 0.08,0.81 0.08,-0.72 0.46,2.94 0.14,1.61 h 0.09 0.23 0.01 v 0 0 0 h 0.01 l 0.23,0.22 h 0.06 0.02 l 0.04,0.19 h 0.09 0.32 0.02 l 0.12,1.04 0.27,2.07 0.16,4.19 0.03,-0.39 0.46,-1.62 0.35,-1.71 0.11,3.13 0.47,2.76 0.02,-0.55 0.17,0.6 v 0 -0.02 l 0.08,-0.04 0.02,-0.01 0.11,1.84 0.02,-2.46"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path307" />
+        <path
+           d="m 213.43,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path309" />
+      </g>
+    </g>
+    <g
+       id="g311" />
+    <g
+       id="g313"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g315"
+         clip-path="url(#clipPath319)">
+        <path
+           d="m 229.11,1190.76 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path321" />
+        <path
+           d="m 229.11,1165.1 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path323" />
+        <path
+           d="m 229.11,1082.26 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path325" />
+        <path
+           d="m 229.82,971.42 0.14,0.69 h 0.03 l 0.19,1.07 h 0.01 l 0.03,-1.17 0.03,0.73 0.1,9.91 0.12,-7.42 0.04,3.34 0.03,0.02 0.1,-1.76 v -0.06 h 0.04 v 0 h 0.01 0.02 0.07 l 0.11,1.35 0.07,-2.24 0.01,0.02 0.15,0.42 0.07,-1.81 0.35,0.97 0.01,-0.05 0.44,-2.03 0.19,-1.43 0.01,-0.72 h 0.05 0.02 l 0.03,-0.72 0.13,0.84 0.09,0.82 0.02,0.46 0.33,-1.27 0.43,-0.81 v 0 h 0.12 0.06 l 0.26,0.17 0.19,0.15 h 0.07 l 0.06,1.57 v 0 l 0.03,0.03 0.01,-0.03 v 0 l 0.03,0.75 v 0 l 0.04,0.14 0.43,2 0.06,0.26 h 0.09 l 0.07,-4.23 0.22,2.05 0.01,0.17 0.41,-1.6 h 0.01 0.07 l 0.13,1.84 0.06,2.17 0.16,-2.03 0.02,-1.32 0.02,1.55 H 236 l 0.01,-2.98 0.11,1.13 v 0.39 l 0.21,-0.67 0.11,0.42 0.01,0.02 0.04,-0.67 0.01,-0.68 0.05,0.29 v 0 l 0.21,1.25 h 0.01 0.02 0.04 l 0.05,-0.02 0.01,0.04 v -0.02 h 0.02 l 0.04,-0.65 0.16,-1.68 0.04,0.07 0.05,0.77 v 0 l 0.43,7.18 0.12,2.8 0.28,-6.54 0.04,0.08 0.21,0.4 h 0.02 0.07 l 0.02,0.79 0.07,1.77 0.04,1.13 0.37,8.62 h 0.03 0.04 v 0 l 0.07,-3.67 0.16,2.92 v 0 l 0.09,-1.03 h 0.01 l 0.1,-0.67 0.43,-3.36 0.44,-3.56 0.04,-0.28 h 0.05 0.04 l 0.28,-0.14 0.02,-0.45 0.23,-4.48 0.01,-1.59 0.2,0.05 h 0.01 l 0.07,5.05 0.18,5.53 0.05,-5.88 v 0 0.01 l 0.09,1.18 0.03,-0.35 0.08,-0.84 h 0.03 l 0.31,5.27 0.02,0.38 0.24,8.52 0.03,-17.11 0.16,-0.8 0.43,-1.08 0.13,0.13 0.06,14.46 0.25,1.06 0.15,-0.27 0.01,-12.73 v 0.01 9.76 h 0.02 v 0 h 0.01 0.03 v 0 l 0.04,-0.05 0.01,0.05 h 0.04 v 0 l 0.12,-3.49 0.36,-7.07 v 0.25 -0.35"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path327" />
+        <path
+           d="m 229.11,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path329" />
+      </g>
+    </g>
+    <g
+       id="g331" />
+    <g
+       id="g333"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g335"
+         clip-path="url(#clipPath339)">
+        <path
+           d="m 244.78,1190.76 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path341" />
+        <path
+           d="m 244.78,1165.1 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path343" />
+        <path
+           d="m 244.78,1082.26 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path345" />
+        <path
+           d="m 245.49,973.78 v 0 h 0.03 l 0.03,-0.07 0.01,0.07 h 0.07 0.11 0.09 v 0 l 0.05,0.05 0.01,-0.05 h 0.01 0.02 v 0 0 h 0.01 0.03 0.07 0.02 v 0 l 0.02,1.47 h 0.01 v 0 l 0.01,0.01 v -0.01 0 h 0.16 0.17 0.05 0.06 l 0.13,-0.76 0.07,0.76 0.14,-2.6 0.01,0.18 0.16,3.1 v 3.34 l 0.01,-0.03 v 0 0 l 0.01,-0.01 0.03,0.01 v 0 0 h 0.01 l 0.02,-0.54 h 0.01 v 0 0 h 0.01 l 0.01,3.46 v 0 l 0.04,3.13 0.06,-1.18 h 0.03 l 0.06,2.8 0.02,-8.2 0.36,-0.01 0.09,-1.39 0.14,-1.35 0.14,5.17 0.18,0.43 0.03,0.06 h 0.01 l 0.03,1.56 h 0.18 l 0.06,-3.13 0.15,1.62 0.14,0.6 0.15,-2.59 0.06,0.2 0.11,-0.46 0.08,-0.37 0.01,-0.11 v 0 0.01 l 0.03,-0.01 h 0.07 l 0.27,-6.68 0.01,-0.46 v 13.54 l 0.09,8.06 0.08,-17.41 h 0.06 0.13 l 0.03,1.19 0.05,-0.73 v 0 h 0.02 0.05 l 0.11,-0.46 0.13,-1.89 0.14,-0.94 0.02,0.96 h 0.01 0.21 0.03 l 0.05,1.81 0.03,0.02 0.14,-0.47 0.44,0.3 0.02,0.63 0.23,-4.71 0.2,-1.21 0.04,0.07 0.2,2.87 v -0.07 l 0.1,6.78 0.11,0.95 0.01,0.31 h 0.03 l 0.01,0.51 0.03,5.68 v 0 l 0.25,4.09 0.06,-1.35 h 0.03 0.09 0.03 0.02 0.03 l 0.13,-1.19 0.25,-2.75 0.16,-1.55 h 0.02 l 0.22,2.18 0.03,-5.61 0.03,-0.11 0.42,-1.42 0.05,-0.12 0.02,-0.06 0.08,9.85 0.02,-0.29 0.06,1.81 0.02,1.63 0.07,0.21 v 0 l 0.19,7.33 0.34,5.26 0.12,-0.15 0.46,0.27 0.23,-1.29 0.04,-0.27 0.1,0.07 0.09,-0.07 0.11,-0.08 0.09,0.35 0.27,-1.04 0.16,-0.56 0.3,4.74 0.38,4.43 v 0 0 l 0.01,2.65 v 0 h 0.01 l 0.06,-0.03 0.1,-0.04 0.03,0.07 h 0.07 l 0.1,6.58 v 0 h 0.07 l 0.03,-11.61 0.06,-0.66 0.32,-3.92 h 0.09 l 0.06,0.01 0.36,-0.01 0.1,-0.03 0.08,-0.02 0.01,-0.46 h 0.03 l 0.34,-9.9 0.05,-1.91 0.02,0.91 0.16,-1.67 0.07,-20.22 0.09,1.31"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path347" />
+        <path
+           d="m 244.78,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path349" />
+      </g>
+    </g>
+    <g
+       id="g351" />
+    <g
+       id="g353"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g355"
+         clip-path="url(#clipPath359)">
+        <path
+           d="m 260.46,1190.76 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path361" />
+        <path
+           d="m 260.46,1165.1 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path363" />
+        <path
+           d="m 260.46,1082.26 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path365" />
+        <path
+           d="m 261.17,989.53 v -0.09 l 0.37,-1.75 0.08,-0.15 0.06,6.99 0.22,-0.84 0.06,12.2 0.14,-4.95 0.07,1.2 h 0.02 v 0 l 0.39,-2.65 h 0.03 v 0 h 0.04 v 0 0 0 0 0 0 h 0.01 v 0 0 h 0.01 v 0 0 h 0.02 v 0 h 0.05 v 0 h 0.01 v 0.01 l 0.02,-0.01 h 0.03 v 1.48 0 l 0.09,-11.13 0.07,1.63 0.02,1.14 h 0.05 0.08 0.06 0.03 v 0.09 l 0.1,3.71 h 0.06 l 0.35,-6.95 0.04,-2.1 0.08,7.48 0.16,-3.14 0.01,-6.34 0.15,-0.01 h 0.01 0.06 v 0 h 0.01 0.02 0.11 0.03 v 0 0 h 0.02 0.08 l 0.06,-0.39 0.13,0.03 0.03,0.85 0.01,-0.02 0.05,-0.09 0.09,-10.07 0.09,4.34 0.03,-1.83 0.04,5.09 0.18,-0.17 h 0.01 l 0.02,0.63 0.06,1.57 0.15,-7.92 h 0.04 l 0.09,3.15 v 0 h 0.02 0.15 0.12 l 0.12,2.43 0.14,0.73 0.13,-0.22 0.14,-4.96 0.36,3.06 0.02,-0.2 0.3,1.46 0.11,-1.41 h 0.06 0.01 0.01 v 0.02 l 0.51,0.41 0.38,-0.85 0.02,0.99 0.11,-0.78 0.51,-4.82 0.08,-0.79 v -0.57 -0.1 l 0.06,-0.05 0.36,-0.26 0.05,-0.07 h 0.03 v 0 l 0.43,-2.02 0.23,-0.64 0.12,0.86 0.07,-0.15 0.08,-0.4 v 0 l 0.01,-0.01 v 0 l 0.02,0.01 0.41,-1.69 v 1.33 h 0.08 0.01 0.04 l 0.09,1.66 h 0.03 l 0.09,1.15 0.02,0.12 0.01,-1.9 0.21,-1.76 0.06,-0.51 v 2.48 h 0.02 l 0.43,3.46 0.32,3.87 0.19,-0.77 0.05,-0.19 h 0.04 v 0 h 0.01 l 0.09,-6.05 h 0.01 v 0 0 h 0.02 v 0 h 0.05 0.01 0.03 0.01 0.02 v 0 h 0.02 l 0.08,-0.21 h 0.03 0.03 0.01 0.01 v 0 h 0.05 0.01 v 0 l 0.02,0.04 0.01,-0.07 0.07,0.03 h 0.01 0.01 0.05 0.02 l 0.24,1.71 0.04,0.29 h 0.04 0.04 0.01 l 0.03,-0.38 v 0 h 0.07 l 0.01,0.03 0.08,-0.03 0.19,-0.24 0.1,-0.09 h 0.02 v 0 h 0.04 l 0.02,-0.13 h 0.01 0.07 l 0.25,3.93 0.01,0.11 h 0.03 l 0.18,1.92 h 0.19 0.06 l 0.04,-0.21 0.06,-0.31 0.01,-0.97 h 0.03 0.03 0.06 0.1 l 0.13,4.66 0.08,-10.13 0.04,2.87"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path367" />
+        <path
+           d="m 260.46,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path369" />
+      </g>
+    </g>
+    <g
+       id="g371" />
+    <g
+       id="g373"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g375"
+         clip-path="url(#clipPath379)">
+        <path
+           d="m 276.14,1190.76 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path381" />
+        <path
+           d="m 276.14,1165.1 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path383" />
+        <path
+           d="m 276.14,1082.26 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path385" />
+        <path
+           d="m 276.85,978.35 0.13,-0.76 0.1,0.85 h 0.01 l 0.31,-3.77 v 0.25 l 0.12,7 0.05,5.08 h 0.12 l 0.27,2.42 0.2,0.59 0.19,-5.79 0.16,-0.71 0.31,-2.21 0.11,-7.65 0.13,1.72 0.22,7.75 0.25,-10.52 0.09,0.04 0.55,0.57 0.55,0.83 0.25,0.49 0.31,-0.35 0.3,-0.04 0.1,0.79 h 0.09 l 0.06,0.12 0.16,0.36 v 0 0 0 0 h 0.05 v 0 0 l 0.02,0.01 h 0.01 v 0 0 l 0.01,-0.01 v 0 h 0.02 l 0.03,1.67 0.25,1.4 0.48,4.34 h 0.02 v 0 h 0.01 v 0 h 0.01 l 0.01,0.06 0.01,-0.06 h 0.02 0.04 v 0.06 l 0.23,5.86 0.04,-2.47 0.24,-2.5 0.07,-0.83 h 0.02 v 0.02 l 0.16,0.87 h 0.02 v 0 h 0.07 0.01 l 0.03,3.9 0.07,-0.01 v -8.24 l 0.07,-0.09 0.03,-0.19 0.26,1.1 0.06,-0.58 h 0.12 0.09 0.02 0.01 0.01 0.02 0.01 0.08 l 0.14,-2.84 0.1,4.75 0.19,-6.96 0.13,0.89 0.18,-3.04 0.1,7.01 h 0.02 0.02 v 0 0 l 0.01,0.77 0.01,1.29 v 0 l 0.01,1.39 h 0.07 0.04 l 0.03,-0.1 0.29,2.43 0.15,-5.75 h 0.03 0.02 0.08 l 0.27,1.81 0.1,-1.27 0.1,-1.81 0.45,-6.58 h 0.02 l 0.05,-0.2 0.03,0.06 0.09,0.14 h 0.12 0.07 l 0.22,-0.09 0.02,0.02 0.04,0.08 0.14,0.62 h 0.07 l 0.27,1.52 0.01,0.46 0.06,0.47 0.18,1.76 h 0.05 0.05 0.04 0.05 l 0.18,-2.24 0.08,-3.4 0.48,0.17 0.55,0.32 0.24,0.2 0.31,0.27 0.42,0.47"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path387" />
+        <path
+           d="m 276.14,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path389" />
+      </g>
+    </g>
+    <g
+       id="g391" />
+    <g
+       id="g393"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g395"
+         clip-path="url(#clipPath399)">
+        <path
+           d="m 291.81,1190.76 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path401" />
+        <path
+           d="m 291.81,1165.1 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path403" />
+        <path
+           d="m 291.81,1082.26 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path405" />
+        <path
+           d="m 292.53,975.19 h 0.04 l 0.05,-3.73 0.1,3.97 0.07,-1.99 0.12,2.67 0.1,-1.68 0.21,-2.79 0.28,1.33 0.4,5.31 0.02,-4.58 0.05,-0.05 v 0.53 l 0.01,0.11 0.06,0.41 0.09,-2.53 0.05,0.16 0.04,0.08 0.05,-0.15 0.06,-0.28 0.04,-0.25 v 0 h 0.01 l 0.05,0.09 0.04,-0.08 v -0.01 h 0.01 l 0.02,0.03 h 0.02 l 0.07,0.61 0.01,-0.06 0.03,-0.11 0.1,-0.15 0.09,-0.21 0.02,-0.04 0.02,-0.04 h 0.1 0.04 l 0.05,0.56 0.01,18.3 0.01,-1.46 0.01,-0.24 0.07,-17.18 0.07,0.34 0.16,-1.04 0.02,-0.27 0.04,0.28 0.36,7.11 0.07,21.68 0.06,-9.26 0.47,-13.93 0.01,-0.2 0.26,-3.12 h 0.02 0.01 0.03 l 0.01,0.72 0.02,0.12 0.03,-0.3 h 0.01 v 0 h 0.01 v 0 h 0.01 0.02 l 0.06,0.28 0.32,1.49 h 0.1 0.06 0.18 0.04 l 0.01,-0.01 v 0.01 l 0.26,-0.25 0.21,1.24 h 0.01 l 0.17,0.07 0.1,0.15 v 0 l 0.03,0.41 0.13,0.17 0.19,0.17 h 0.03 l 0.1,1 0.01,0.04 0.07,-1.04 0.14,0.7 0.2,0.98 0.07,6.98 0.02,3.19 0.07,-4.55 0.39,-5.49 0.16,-1.17 0.33,4.34 0.32,4.26 0.17,-4.05 0.48,-9.85 0.01,-0.1 h 0.07 l 0.12,1.45 0.06,3.13 0.03,-0.45 0.17,0.45 0.03,0.12 0.17,-0.07 h 0.03 0.03 0.11 0.02 0.07 v 0 h 0.05 0.49 0.01 0.16 l 0.04,0.03 0.01,-0.03 0.05,3.61 v 0 h 0.02 l 0.11,0.26 v -0.26 l 0.09,-0.39 0.1,-0.37 h 0.02 0.01 v 0 l 0.02,0.34 0.06,-0.21 0.13,0.78 0.14,-1.08 v 0.03 l 0.09,-4.59 0.01,0.04 h 0.01 v 0 l 0.01,-0.03 0.07,0.47 0.07,-0.62 h 0.15 0.08 v 0 h 0.02 l 0.23,0.01 h 0.01 l 0.13,0.32 0.09,1.02 v 0.05 l 0.14,1.73 0.35,-4.06 0.21,-1.87 0.08,1.22 v 0 h 0.03 l 0.17,-0.63 v -0.03 h 0.05 l 0.17,-0.26 0.03,0.22 0.09,-1.55 0.1,4.73 0.04,-0.76 0.03,-0.17 0.21,-3.1 0.2,0.45 v -0.87 l 0.05,1.18 0.09,2.16 h 0.03 0.02 v 0.03 0 l 0.01,0.32 v 0 0.17 l 0.01,0.81"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path407" />
+        <path
+           d="m 291.81,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path409" />
+      </g>
+    </g>
+    <g
+       id="g411" />
+    <g
+       id="g413"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g415"
+         clip-path="url(#clipPath419)">
+        <path
+           d="m 307.49,1190.76 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path421" />
+        <path
+           d="m 307.49,1165.1 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path423" />
+        <path
+           d="m 307.49,1082.26 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path425" />
+        <path
+           d="m 308.2,980.6 0.26,-7.18 0.07,0.18 h 0.02 l 0.07,0.29 0.09,-0.27 v -0.02 h 0.02 v 0 0 0 h 0.01 v 0 -0.01 h 0.01 l 0.03,0.01 0.01,-1.16 0.02,0.01 v -0.01 h 0.01 0.05 0.05 l 0.02,-0.03 0.03,0.03 h 0.02 l 0.06,-0.22 h 0.03 v 0 h 0.04 v 0 h 0.04 0.02 0.03 0.01 v 0 l 0.02,1.18 0.09,-0.4 0.05,1.58 0.02,0.29 0.13,0.07 h 0.02 l 0.01,-0.08 0.04,-0.2 0.01,-0.04 0.01,-0.03 0.06,0.11 0.02,0.03 0.01,-0.07 0.1,-0.68 0.19,-0.31 v 0 h 0.1 l 0.01,0.01 0.01,-0.01 h 0.01 0.05 l 0.03,0.75 v 0 0 -0.01 l 0.06,-0.26 0.02,0.08 0.04,-0.13 0.06,0.32 v 0 l 0.22,1.57 h 0.01 0.02 l 0.08,-0.09 0.46,-0.76 v 0 h 0.04 0.06 v 0 h 0.07 0.08 v 0 l 0.29,-1.97 0.2,-1.3 0.02,0.24 0.12,-0.09 h 0.01 0.02 l 0.01,0.02 0.01,0.05 0.02,-0.05 0.01,-0.07 0.04,-0.42 h 0.03 0.02 0.01 l 0.21,-0.05 0.05,-0.23 v 0 l 0.02,-0.04 0.11,0.32 h 0.01 0.01 l 0.08,0.23 0.2,2.92 h 0.06 l 0.18,-0.68 0.06,-0.03 0.12,-0.03 0.07,0.14 h 0.03 0.01 l 0.07,0.61 0.06,-0.07 0.02,0.19 h 0.07 0.05 0.01 v 0 h 0.05 0.06 0.02 l 0.01,2.73 h 0.01 0.02 v 0 h 0.01 0.04 0.01 0.01 l 0.26,4.68 0.01,0.26 0.18,-0.45 h 0.01 v 0 l 0.14,0.58 h 0.03 l 0.1,3.01 h 0.03 0.15 l 0.14,-2.57 0.2,-2.57 h 0.01 0.07 l 0.32,6.68 0.12,-0.88 0.36,-3.28 0.14,-0.51 v 0 0 h 0.11 l 0.07,-0.01 0.14,4.42 0.18,6.89 0.14,4.22 h 0.05 v 0 l 0.32,11.41 0.12,3.83 0.01,0.05 h 0.2 0.05 l 0.04,-14.63 0.08,5.41 0.16,1.43 0.34,0.24 0.05,0.15 0.16,-0.02 0.29,12.85 0.02,0.48 v 0 l 0.2,-16.55 h 0.27 l 0.02,-0.08 0.5,-3.66 0.49,-4.38 0.01,-0.19 0.11,-2.68 h 0.04 0.01 0.01 l 0.3,-1.16 0.04,-3.54 0.04,-5.16 0.13,-0.83 0.33,-1.13 0.5,-2 0.24,-1.01 h 0.04 l 0.04,-0.65 0.07,0.14 0.07,2.96 0.04,-0.24 0.12,-0.64 0.01,0.05 h 0.04"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path427" />
+        <path
+           d="m 307.49,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path429" />
+      </g>
+    </g>
+    <g
+       id="g431" />
+    <g
+       id="g433"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g435"
+         clip-path="url(#clipPath439)">
+        <path
+           d="m 323.17,1190.76 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path441" />
+        <path
+           d="m 323.17,1165.1 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path443" />
+        <path
+           d="m 323.17,1082.26 h 15.67"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path445" />
+        <path
+           d="m 323.88,972.13 0.54,-0.17 h 0.01 l 0.52,-0.07 0.54,-0.07 0.11,-0.02 0.42,1.92 0.23,0.66 0.14,0.57 h 0.01 l 0.01,-0.69 0.07,-0.13 0.02,0.82 h 0.02 v 0 l 0.04,-0.26 v 0.04 l 0.05,2.68 0.1,-1.74 0.08,-3.78 0.31,0.54 0.48,-0.1 h 0.04 l 0.01,0.05 0.35,1.11 0.19,-0.07 0.19,-0.81 0.11,1.63 0.03,1.03 h 0.01 0.01 0.05 0.04 v 0 l 0.08,-0.43 h 0.01 l 0.01,0.01 0.2,0.58 0.03,-0.06 h 0.05 0.04 v 0 h 0.04 l 0.17,-1.89 0.01,-0.03 0.04,0.82 h 0.09 v 0 h 0.15 l 0.04,0.29 0.09,0.79 0.12,0.07 0.02,0.02 h 0.04 v 0 h 0.12 l 0.14,-1.36 0.22,-0.74 v 0 l 0.53,-2.25 0.02,-0.07 0.24,3.97 0.28,1.22 0.18,1.78 v 0 h 0.01 0.03 0.01 0.04 0.01 v 0 0 h 0.01 v 0 0 0 0 0 h 0.01 v 0 h 0.01 l 0.01,-0.12 0.04,0.12 v 0 h 0.03 0.01 0.02 0.03 0.02 0.01 0.01 0.01 l 0.04,-0.11 0.06,-0.04 0.05,-0.64 0.08,1.31 0.02,-0.01 0.05,0.25 v 0 0 0 0 0 0 0 0 0 1.18 l 0.01,-1.42 0.02,-0.04 0.01,2.47 0.19,0.08 v 0 h 0.04 0.03 l 0.13,1.76 h 0.01 l 0.07,-0.01 0.01,0.01 h 0.01 0.01 v 0 h 0.08 0.01 0.01 v 0 h 0.01 v 0 h 0.01 0.03 0.12 0.17 0.03 l 0.01,-2.47 0.01,0.01 v 0 0 l 0.01,0.06 0.06,-0.06 0.01,-0.01 0.01,0.01 h 0.01 0.04 0.01 0.01 0.02 v 0 l 0.02,-0.02 v -0.01 -0.01 l 0.02,-1.78 0.01,3.05 0.04,0.09 v 0 h 0.04 v 0 h 0.05 l 0.16,-4.27 0.11,0.4 h 0.02 v 0 h 0.02 0.02 0.02 l 0.02,9.38 v 0 h 0.02 v 0 h 0.01 l 0.01,0.87 h 0.04 0.03 v 0 0 h 0.01 0.01 0.01 l 0.12,-0.58 h 0.02 0.08 l 0.3,-0.91 0.44,-1.49 h 0.03 0.02 0.01 v 0 h 0.03 0.17 l 0.25,-2.72 v 0 h 0.04 0.01 v 0 l 0.07,-0.1 0.03,-0.04 0.18,-1.58 0.19,0.68 0.14,-0.24 0.09,-0.14 h 0.01 0.05 v 0 h 0.37 0.01 0.01 v 0 l 0.03,9.49 0.03,1.48 h 0.05 v 0 l 0.03,-4.02 0.05,1.19 0.02,-3.22 h 0.01 v 0 0 h 0.01 v 0 0 h 0.02 0.28 v -0.34 l 0.01,-1.02 v 0 l 0.02,1.36 0.01,-0.05 0.22,-9.73 0.1,-1.92 0.18,1.04 0.27,1.89 0.03,55.32"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path447" />
+        <path
+           d="m 323.17,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path449" />
+      </g>
+    </g>
+    <g
+       id="g451" />
+    <g
+       id="g453"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g455"
+         clip-path="url(#clipPath459)">
+        <path
+           d="m 338.84,1190.76 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path461" />
+        <path
+           d="m 338.84,1165.1 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path463" />
+        <path
+           d="m 338.84,1082.26 h 15.68"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path465" />
+        <path
+           d="m 339.56,990.67 0.05,2.46 0.2,-4.58 0.09,1.95 0.03,-3.34 v 0 h 0.02 v 0.05 0.01 l 0.23,-0.69 0.11,-1.32 0.01,-0.29 0.18,-3.05 0.19,1.23 0.38,1.98 0.01,-0.28 0.36,0.28 0.22,0.09 0.15,-0.69 0.37,-1.04 0.38,-1.17 0.34,-1.18 0.03,-0.73 0.25,-6.94 0.12,-0.1 0.08,-0.05 h 0.11 l 0.01,-0.15 0.13,12.39 0.04,-0.32 0.05,-0.31 0.08,-9.56 h 0.01 0.01 l 0.06,0.36 0.02,-1.24 v 0 l 0.04,-0.29 h 0.11 0.05 l 0.15,0.13 0.12,-0.07 v 0 h 0.05 l 0.09,-0.01 0.01,0.01 0.04,1.24 v 0 h 0.01 v 0 l 0.22,-3.71 0.21,-1.24 h 0.04 0.07 v 0 h 0.01 0.02 0.01 0.01 0.02 0.11 l 0.07,2.44 0.17,0.93 0.01,0.42 0.02,2.8 0.11,-6.58 h 0.02 0.01 0.01 0.02 0.02 0.07 l 0.09,0.18 0.11,0.69 v 0 0 l 0.11,-0.41 v -0.01 l 0.07,1.63 v 0.23 h 0.02 0.01 v 0 h 0.01 l 0.04,0.03 0.11,-0.01 h 0.05 l 0.03,0.03 0.05,-0.08 0.02,-0.02 0.1,0.58 0.01,-0.51 0.05,-1.24 v 0 0 l 0.06,-0.14 0.27,0.09 0.21,0.37 0.16,-0.08 0.1,0.32 0.22,1.84 0.05,-0.08 0.13,-0.19 0.04,0.47 0.03,0.02 0.02,0.01 0.01,-0.03 0.07,-0.3 0.07,0.22 0.11,0.37 0.07,0.37 v 0 l 0.01,-1.34 v 3.3 1.11 l 0.01,-3.21 0.01,0.01 0.01,7.58 0.01,-0.72 v -0.01 l 0.15,-5.25 0.01,-0.44 0.31,0.08 0.05,-0.48 0.09,-0.48 h 0.08 v 0 h 0.02 v 0 h 0.18 0.06 0.03 0.05 l 0.09,0.74 h 0.01 l 0.07,1.58 0.06,2.04 0.04,1.18 0.08,-2.03 0.03,-0.43 v 0 h 0.02 l 0.03,0.34 0.18,3.74 0.33,16.84 0.04,-3.01 0.09,3.04 0.05,-21.38 0.04,0.28 0.03,-0.83 0.16,2.92 0.14,2.74 h 0.12 0.01 l 0.1,0.36 0.38,1.82 0.37,-5.04 0.07,0.38 0.08,-0.97 0.12,10.27 h 0.06 l 0.01,0.08 0.03,-0.06 v 0 l 0.07,-0.07 0.02,-2.6 0.12,-8.72 0.16,-0.76 0.01,-0.04 0.08,0.12 0.29,1.03 0.27,0.85 v 0.73 l 0.04,-0.03 0.03,-0.89 0.03,-0.73 0.01,-0.19 h 0.14 l 0.18,1.06 0.04,-0.85 0.04,-0.79 h 0.06"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path467" />
+        <path
+           d="m 338.84,959.3 h 15.68 v 242.49 h -15.68 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path469" />
+      </g>
+    </g>
+    <g
+       id="g471" />
+    <g
+       id="g473">
+      <g
+         id="g475"
+         clip-path="url(#clipPath479)" />
+    </g>
+    <g
+       id="g481"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g483"
+         clip-path="url(#clipPath487)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,45.49,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text491"><tspan
+             x="0"
+             y="0"
+             id="tspan489">1</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g493">
+      <g
+         id="g495"
+         clip-path="url(#clipPath499)" />
+    </g>
+    <g
+       id="g501">
+      <g
+         id="g503"
+         clip-path="url(#clipPath507)" />
+    </g>
+    <g
+       id="g509" />
+    <g
+       id="g511">
+      <g
+         id="g513"
+         clip-path="url(#clipPath517)" />
+    </g>
+    <g
+       id="g519"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g521"
+         clip-path="url(#clipPath525)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,61.16,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text529"><tspan
+             x="0"
+             y="0"
+             id="tspan527">2</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g531">
+      <g
+         id="g533"
+         clip-path="url(#clipPath537)" />
+    </g>
+    <g
+       id="g539">
+      <g
+         id="g541"
+         clip-path="url(#clipPath545)" />
+    </g>
+    <g
+       id="g547" />
+    <g
+       id="g549">
+      <g
+         id="g551"
+         clip-path="url(#clipPath555)" />
+    </g>
+    <g
+       id="g557"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g559"
+         clip-path="url(#clipPath563)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,76.84,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text567"><tspan
+             x="0"
+             y="0"
+             id="tspan565">3</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g569">
+      <g
+         id="g571"
+         clip-path="url(#clipPath575)" />
+    </g>
+    <g
+       id="g577">
+      <g
+         id="g579"
+         clip-path="url(#clipPath583)" />
+    </g>
+    <g
+       id="g585" />
+    <g
+       id="g587">
+      <g
+         id="g589"
+         clip-path="url(#clipPath593)" />
+    </g>
+    <g
+       id="g595"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g597"
+         clip-path="url(#clipPath601)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,92.52,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text605"><tspan
+             x="0"
+             y="0"
+             id="tspan603">4</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g607">
+      <g
+         id="g609"
+         clip-path="url(#clipPath613)" />
+    </g>
+    <g
+       id="g615">
+      <g
+         id="g617"
+         clip-path="url(#clipPath621)" />
+    </g>
+    <g
+       id="g623" />
+    <g
+       id="g625">
+      <g
+         id="g627"
+         clip-path="url(#clipPath631)" />
+    </g>
+    <g
+       id="g633"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g635"
+         clip-path="url(#clipPath639)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,108.19,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text643"><tspan
+             x="0"
+             y="0"
+             id="tspan641">5</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g645">
+      <g
+         id="g647"
+         clip-path="url(#clipPath651)" />
+    </g>
+    <g
+       id="g653">
+      <g
+         id="g655"
+         clip-path="url(#clipPath659)" />
+    </g>
+    <g
+       id="g661" />
+    <g
+       id="g663">
+      <g
+         id="g665"
+         clip-path="url(#clipPath669)" />
+    </g>
+    <g
+       id="g671"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g673"
+         clip-path="url(#clipPath677)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,123.87,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text681"><tspan
+             x="0"
+             y="0"
+             id="tspan679">6</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g683">
+      <g
+         id="g685"
+         clip-path="url(#clipPath689)" />
+    </g>
+    <g
+       id="g691">
+      <g
+         id="g693"
+         clip-path="url(#clipPath697)" />
+    </g>
+    <g
+       id="g699" />
+    <g
+       id="g701">
+      <g
+         id="g703"
+         clip-path="url(#clipPath707)" />
+    </g>
+    <g
+       id="g709"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g711"
+         clip-path="url(#clipPath715)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,139.55,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text719"><tspan
+             x="0"
+             y="0"
+             id="tspan717">7</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g721">
+      <g
+         id="g723"
+         clip-path="url(#clipPath727)" />
+    </g>
+    <g
+       id="g729">
+      <g
+         id="g731"
+         clip-path="url(#clipPath735)" />
+    </g>
+    <g
+       id="g737" />
+    <g
+       id="g739">
+      <g
+         id="g741"
+         clip-path="url(#clipPath745)" />
+    </g>
+    <g
+       id="g747"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g749"
+         clip-path="url(#clipPath753)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,155.22,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text757"><tspan
+             x="0"
+             y="0"
+             id="tspan755">8</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g759">
+      <g
+         id="g761"
+         clip-path="url(#clipPath765)" />
+    </g>
+    <g
+       id="g767">
+      <g
+         id="g769"
+         clip-path="url(#clipPath773)" />
+    </g>
+    <g
+       id="g775" />
+    <g
+       id="g777">
+      <g
+         id="g779"
+         clip-path="url(#clipPath783)" />
+    </g>
+    <g
+       id="g785"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g787"
+         clip-path="url(#clipPath791)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,170.9,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text795"><tspan
+             x="0"
+             y="0"
+             id="tspan793">9</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g797">
+      <g
+         id="g799"
+         clip-path="url(#clipPath803)" />
+    </g>
+    <g
+       id="g805">
+      <g
+         id="g807"
+         clip-path="url(#clipPath811)" />
+    </g>
+    <g
+       id="g813" />
+    <g
+       id="g815">
+      <g
+         id="g817"
+         clip-path="url(#clipPath821)" />
+    </g>
+    <g
+       id="g823"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g825"
+         clip-path="url(#clipPath829)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,183.24,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text833"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan831">10</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g835">
+      <g
+         id="g837"
+         clip-path="url(#clipPath841)" />
+    </g>
+    <g
+       id="g843">
+      <g
+         id="g845"
+         clip-path="url(#clipPath849)" />
+    </g>
+    <g
+       id="g851" />
+    <g
+       id="g853">
+      <g
+         id="g855"
+         clip-path="url(#clipPath859)" />
+    </g>
+    <g
+       id="g861"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g863"
+         clip-path="url(#clipPath867)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,198.92,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text871"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan869">11</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g873">
+      <g
+         id="g875"
+         clip-path="url(#clipPath879)" />
+    </g>
+    <g
+       id="g881">
+      <g
+         id="g883"
+         clip-path="url(#clipPath887)" />
+    </g>
+    <g
+       id="g889" />
+    <g
+       id="g891">
+      <g
+         id="g893"
+         clip-path="url(#clipPath897)" />
+    </g>
+    <g
+       id="g899"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g901"
+         clip-path="url(#clipPath905)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,214.59,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text909"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan907">12</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g911">
+      <g
+         id="g913"
+         clip-path="url(#clipPath917)" />
+    </g>
+    <g
+       id="g919">
+      <g
+         id="g921"
+         clip-path="url(#clipPath925)" />
+    </g>
+    <g
+       id="g927" />
+    <g
+       id="g929">
+      <g
+         id="g931"
+         clip-path="url(#clipPath935)" />
+    </g>
+    <g
+       id="g937"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g939"
+         clip-path="url(#clipPath943)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,230.27,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text947"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan945">13</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g949">
+      <g
+         id="g951"
+         clip-path="url(#clipPath955)" />
+    </g>
+    <g
+       id="g957">
+      <g
+         id="g959"
+         clip-path="url(#clipPath963)" />
+    </g>
+    <g
+       id="g965" />
+    <g
+       id="g967">
+      <g
+         id="g969"
+         clip-path="url(#clipPath973)" />
+    </g>
+    <g
+       id="g975"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g977"
+         clip-path="url(#clipPath981)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,245.95,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text985"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan983">14</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g987">
+      <g
+         id="g989"
+         clip-path="url(#clipPath993)" />
+    </g>
+    <g
+       id="g995">
+      <g
+         id="g997"
+         clip-path="url(#clipPath1001)" />
+    </g>
+    <g
+       id="g1003" />
+    <g
+       id="g1005">
+      <g
+         id="g1007"
+         clip-path="url(#clipPath1011)" />
+    </g>
+    <g
+       id="g1013"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g1015"
+         clip-path="url(#clipPath1019)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,261.63,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text1023"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan1021">15</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g1025">
+      <g
+         id="g1027"
+         clip-path="url(#clipPath1031)" />
+    </g>
+    <g
+       id="g1033">
+      <g
+         id="g1035"
+         clip-path="url(#clipPath1039)" />
+    </g>
+    <g
+       id="g1041" />
+    <g
+       id="g1043">
+      <g
+         id="g1045"
+         clip-path="url(#clipPath1049)" />
+    </g>
+    <g
+       id="g1051"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g1053"
+         clip-path="url(#clipPath1057)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,277.3,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text1061"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan1059">16</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g1063">
+      <g
+         id="g1065"
+         clip-path="url(#clipPath1069)" />
+    </g>
+    <g
+       id="g1071">
+      <g
+         id="g1073"
+         clip-path="url(#clipPath1077)" />
+    </g>
+    <g
+       id="g1079" />
+    <g
+       id="g1081">
+      <g
+         id="g1083"
+         clip-path="url(#clipPath1087)" />
+    </g>
+    <g
+       id="g1089"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g1091"
+         clip-path="url(#clipPath1095)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,292.98,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text1099"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan1097">17</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g1101">
+      <g
+         id="g1103"
+         clip-path="url(#clipPath1107)" />
+    </g>
+    <g
+       id="g1109">
+      <g
+         id="g1111"
+         clip-path="url(#clipPath1115)" />
+    </g>
+    <g
+       id="g1117" />
+    <g
+       id="g1119">
+      <g
+         id="g1121"
+         clip-path="url(#clipPath1125)" />
+    </g>
+    <g
+       id="g1127"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g1129"
+         clip-path="url(#clipPath1133)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,308.66,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text1137"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan1135">18</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g1139">
+      <g
+         id="g1141"
+         clip-path="url(#clipPath1145)" />
+    </g>
+    <g
+       id="g1147">
+      <g
+         id="g1149"
+         clip-path="url(#clipPath1153)" />
+    </g>
+    <g
+       id="g1155" />
+    <g
+       id="g1157">
+      <g
+         id="g1159"
+         clip-path="url(#clipPath1163)" />
+    </g>
+    <g
+       id="g1165"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g1167"
+         clip-path="url(#clipPath1171)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,324.33,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text1175"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan1173">19</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g1177">
+      <g
+         id="g1179"
+         clip-path="url(#clipPath1183)" />
+    </g>
+    <g
+       id="g1185">
+      <g
+         id="g1187"
+         clip-path="url(#clipPath1191)" />
+    </g>
+    <g
+       id="g1193" />
+    <g
+       id="g1195">
+      <g
+         id="g1197"
+         clip-path="url(#clipPath1201)" />
+    </g>
+    <g
+       id="g1203"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g1205"
+         clip-path="url(#clipPath1209)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,342.68,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text1213"><tspan
+             x="0"
+             y="0"
+             id="tspan1211">X</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g1215">
+      <g
+         id="g1217"
+         clip-path="url(#clipPath1221)" />
+    </g>
+    <g
+       id="g1223">
+      <g
+         id="g1225"
+         clip-path="url(#clipPath1229)" />
+    </g>
+    <g
+       id="g1231" />
+    <g
+       id="g1233" />
+    <g
+       id="g1235" />
+    <g
+       id="g1237" />
+    <g
+       id="g1239" />
+    <g
+       id="g1241" />
+    <g
+       id="g1243" />
+    <g
+       id="g1245" />
+    <g
+       id="g1247" />
+    <g
+       id="g1249" />
+    <g
+       id="g1251" />
+    <g
+       id="g1253" />
+    <g
+       id="g1255" />
+    <g
+       id="g1257" />
+    <g
+       id="g1259" />
+    <g
+       id="g1261" />
+    <g
+       id="g1263" />
+    <g
+       id="g1265" />
+    <g
+       id="g1267" />
+    <g
+       id="g1269" />
+    <g
+       id="g1271" />
+    <g
+       id="g1273" />
+    <g
+       id="g1275" />
+    <g
+       id="g1277" />
+    <g
+       id="g1279" />
+    <g
+       id="g1281" />
+    <g
+       id="g1283" />
+    <g
+       id="g1285" />
+    <g
+       id="g1287" />
+    <g
+       id="g1289" />
+    <g
+       id="g1291" />
+    <g
+       id="g1293" />
+    <g
+       id="g1295" />
+    <g
+       id="g1297" />
+    <g
+       id="g1299" />
+    <g
+       id="g1301" />
+    <g
+       id="g1303" />
+    <g
+       id="g1305" />
+    <g
+       id="g1307" />
+    <g
+       id="g1309" />
+    <g
+       id="g1311" />
+    <g
+       id="g1313" />
+    <g
+       id="g1315" />
+    <g
+       id="g1317" />
+    <g
+       id="g1319" />
+    <g
+       id="g1321" />
+    <g
+       id="g1323" />
+    <g
+       id="g1325" />
+    <g
+       id="g1327" />
+    <g
+       id="g1329" />
+    <g
+       id="g1331" />
+    <g
+       id="g1333" />
+    <g
+       id="g1335" />
+    <g
+       id="g1337" />
+    <g
+       id="g1339" />
+    <g
+       id="g1341" />
+    <g
+       id="g1343" />
+    <g
+       id="g1345" />
+    <g
+       id="g1347" />
+    <g
+       id="g1349" />
+    <g
+       id="g1351" />
+    <g
+       id="g1353" />
+    <g
+       id="g1355" />
+    <g
+       id="g1357" />
+    <g
+       id="g1359" />
+    <g
+       id="g1361" />
+    <g
+       id="g1363" />
+    <g
+       id="g1365" />
+    <g
+       id="g1367" />
+    <g
+       id="g1369" />
+    <g
+       id="g1371" />
+    <g
+       id="g1373" />
+    <g
+       id="g1375" />
+    <g
+       id="g1377" />
+    <g
+       id="g1379" />
+    <g
+       id="g1381" />
+    <g
+       id="g1383" />
+    <g
+       id="g1385" />
+    <g
+       id="g1387" />
+    <g
+       id="g1389" />
+    <g
+       id="g1391" />
+    <g
+       id="g1393" />
+    <g
+       id="g1395" />
+    <g
+       id="g1397" />
+    <g
+       id="g1399" />
+    <g
+       id="g1401" />
+    <g
+       id="g1403" />
+    <g
+       id="g1405" />
+    <g
+       id="g1407" />
+    <g
+       id="g1409" />
+    <g
+       id="g1411" />
+    <g
+       id="g1413" />
+    <g
+       id="g1415" />
+    <g
+       id="g1417" />
+    <g
+       id="g1419" />
+    <g
+       id="g1421" />
+    <g
+       id="g1423" />
+    <g
+       id="g1425" />
+    <g
+       id="g1427" />
+    <g
+       id="g1429" />
+    <g
+       id="g1431" />
+    <g
+       id="g1433" />
+    <g
+       id="g1435" />
+    <g
+       id="g1437" />
+    <g
+       id="g1439" />
+    <g
+       id="g1441" />
+    <g
+       id="g1443" />
+    <g
+       id="g1445" />
+    <g
+       id="g1447" />
+    <g
+       id="g1449" />
+    <g
+       id="g1451" />
+    <g
+       id="g1453" />
+    <g
+       id="g1455" />
+    <g
+       id="g1457" />
+    <g
+       id="g1459" />
+    <g
+       id="g1461" />
+    <g
+       id="g1463" />
+    <g
+       id="g1465" />
+    <g
+       id="g1467" />
+    <g
+       id="g1469" />
+    <g
+       id="g1471" />
+    <g
+       id="g1473" />
+    <g
+       id="g1475" />
+    <g
+       id="g1477" />
+    <g
+       id="g1479" />
+    <g
+       id="g1481" />
+    <g
+       id="g1483" />
+    <g
+       id="g1485" />
+    <g
+       id="g1487" />
+    <g
+       id="g1489" />
+    <g
+       id="g1491" />
+    <g
+       id="g1493" />
+    <g
+       id="g1495" />
+    <g
+       id="g1497" />
+    <g
+       id="g1499" />
+    <g
+       id="g1501" />
+    <g
+       id="g1503" />
+    <g
+       id="g1505" />
+    <g
+       id="g1507" />
+    <g
+       id="g1509" />
+    <g
+       id="g1511" />
+    <g
+       id="g1513" />
+    <g
+       id="g1515" />
+    <g
+       id="g1517" />
+    <g
+       id="g1519" />
+    <g
+       id="g1521" />
+    <g
+       id="g1523" />
+    <g
+       id="g1525" />
+    <g
+       id="g1527" />
+    <g
+       id="g1529" />
+    <g
+       id="g1531" />
+    <g
+       id="g1533" />
+    <g
+       id="g1535" />
+    <g
+       id="g1537" />
+    <g
+       id="g1539" />
+    <g
+       id="g1541" />
+    <g
+       id="g1543" />
+    <g
+       id="g1545" />
+    <g
+       id="g1547" />
+    <g
+       id="g1549" />
+    <g
+       id="g1551" />
+    <g
+       id="g1553" />
+    <g
+       id="g1555" />
+    <g
+       id="g1557" />
+    <g
+       id="g1559" />
+    <g
+       id="g1561" />
+    <g
+       id="g1563" />
+    <g
+       id="g1565" />
+    <g
+       id="g1567" />
+    <g
+       id="g1569" />
+    <g
+       id="g1571" />
+    <g
+       id="g1573" />
+    <g
+       id="g1575" />
+    <g
+       id="g1577" />
+    <g
+       id="g1579" />
+    <g
+       id="g1581" />
+    <g
+       id="g1583" />
+    <g
+       id="g1585" />
+    <g
+       id="g1587" />
+    <g
+       id="g1589" />
+    <g
+       id="g1591" />
+    <g
+       id="g1593" />
+    <g
+       id="g1595" />
+    <g
+       id="g1597" />
+    <g
+       id="g1599" />
+    <g
+       id="g1601" />
+    <g
+       id="g1603" />
+    <g
+       id="g1605" />
+    <g
+       id="g1607" />
+    <g
+       id="g1609" />
+    <g
+       id="g1611" />
+    <g
+       id="g1613" />
+    <g
+       id="g1615" />
+    <g
+       id="g1617" />
+    <g
+       id="g1619" />
+    <g
+       id="g1621" />
+    <g
+       id="g1623" />
+    <g
+       id="g1625" />
+    <g
+       id="g1627" />
+    <g
+       id="g1629" />
+    <g
+       id="g1631" />
+    <g
+       id="g1633" />
+    <g
+       id="g1635" />
+    <g
+       id="g1637" />
+    <g
+       id="g1639" />
+    <g
+       id="g1641" />
+    <g
+       id="g1643" />
+    <g
+       id="g1645" />
+    <g
+       id="g1647" />
+    <g
+       id="g1649" />
+    <g
+       id="g1651" />
+    <g
+       id="g1653" />
+    <g
+       id="g1655" />
+    <g
+       id="g1657" />
+    <g
+       id="g1659" />
+    <g
+       id="g1661" />
+    <g
+       id="g1663" />
+    <g
+       id="g1665" />
+    <g
+       id="g1667" />
+    <g
+       id="g1669" />
+    <g
+       id="g1671" />
+    <g
+       id="g1673" />
+    <g
+       id="g1675" />
+    <g
+       id="g1677"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,23.54,967.09)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text1681"><tspan
+           x="0 5.0040002 7.506"
+           y="0"
+           sodipodi:role="line"
+           id="tspan1679">0.0</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,23.54,1020.82)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text1685"><tspan
+           x="0 5.0040002 7.506"
+           y="0"
+           sodipodi:role="line"
+           id="tspan1683">2.5</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,23.54,1074.55)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text1689"><tspan
+           x="0 5.0040002 7.506"
+           y="0"
+           sodipodi:role="line"
+           id="tspan1687">5.0</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,23.54,1128.27)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text1693"><tspan
+           x="0 5.0040002 7.506"
+           y="0"
+           sodipodi:role="line"
+           id="tspan1691">7.5</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,18.54,1182)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text1697"><tspan
+           x="0 5.0040002 10.008 12.51"
+           y="0"
+           sodipodi:role="line"
+           id="tspan1695">10.0</tspan></text>
+    </g>
+    <g
+       id="g1699" />
+    <g
+       id="g1701" />
+    <g
+       id="g1703" />
+    <g
+       id="g1705" />
+    <g
+       id="g1707" />
+    <g
+       id="g1709" />
+    <g
+       id="g1711" />
+    <g
+       id="g1713" />
+    <g
+       id="g1715" />
+    <g
+       id="g1717" />
+    <g
+       id="g1719" />
+    <g
+       id="g1721" />
+    <g
+       id="g1723" />
+    <g
+       id="g1725" />
+    <g
+       id="g1727" />
+    <g
+       id="g1729" />
+    <g
+       id="g1731" />
+    <g
+       id="g1733" />
+    <g
+       id="g1735" />
+    <g
+       id="g1737" />
+    <g
+       id="g1739" />
+    <g
+       id="g1741" />
+    <g
+       id="g1743" />
+    <g
+       id="g1745" />
+    <g
+       id="g1747" />
+    <g
+       id="g1749" />
+    <g
+       id="g1751" />
+    <g
+       id="g1753" />
+    <g
+       id="g1755" />
+    <g
+       id="g1757" />
+    <g
+       id="g1759" />
+    <g
+       id="g1761" />
+    <g
+       id="g1763" />
+    <g
+       id="g1765" />
+    <g
+       id="g1767" />
+    <g
+       id="g1769" />
+    <g
+       id="g1771" />
+    <g
+       id="g1773" />
+    <g
+       id="g1775" />
+    <g
+       id="g1777" />
+    <g
+       id="g1779" />
+    <g
+       id="g1781" />
+    <g
+       id="g1783" />
+    <g
+       id="g1785" />
+    <g
+       id="g1787" />
+    <g
+       id="g1789" />
+    <g
+       id="g1791" />
+    <g
+       id="g1793"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,34.444977)">
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,164.75,925.9)"
+         style="font-variant:normal;font-weight:normal;font-size:11px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text1797"><tspan
+           x="0 7.9419999 14.058 17.721001 23.837 33 39.116001 44.616001 50.731998 59.895"
+           y="0"
+           sodipodi:role="line"
+           id="tspan1795">Chromosome</tspan></text>
+    </g>
+    <g
+       id="g1799" />
+    <g
+       id="g1801"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <text
+         xml:space="preserve"
+         transform="matrix(0,1,1,0,13.38,1054.26)"
+         style="font-variant:normal;font-weight:normal;font-size:11px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text1805"><tspan
+           x="0 6.1160002 14.674 22.615999 25.674 31.174 36.674 42.790001 46.452999"
+           y="0"
+           sodipodi:role="line"
+           id="tspan1803">LOD score</tspan></text>
+    </g>
+    <g
+       id="g1807" />
+    <g
+       id="g1809" />
+    <g
+       id="g1811" />
+    <g
+       id="g1813" />
+    <g
+       id="g1815" />
+    <g
+       id="g1817"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,179.75,1209.9)"
+         style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text1821"><tspan
+           x="0 8.6639996 15.336 19.332001 26.004 29.34"
+           y="0"
+           sodipodi:role="line"
+           id="tspan1819">Data 2</tspan></text>
+    </g>
+    <g
+       id="g1823" />
+    <g
+       id="g1825" />
+    <g
+       id="g1827" />
+    <g
+       id="g1829" />
+    <g
+       id="g1831" />
+    <g
+       id="g1833" />
+    <g
+       id="g1835" />
+    <g
+       id="g1837" />
+    <g
+       id="g1839" />
+    <g
+       id="g1841" />
+    <g
+       id="g1843" />
+    <g
+       id="g1845" />
+    <g
+       id="g1847" />
+    <g
+       id="g1849" />
+    <g
+       id="g1851">
+      <g
+         id="g1853"
+         clip-path="url(#clipPath1857)" />
+    </g>
+    <g
+       id="g1859" />
+    <g
+       id="g1861"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g1863"
+         clip-path="url(#clipPath1867)">
+        <path
+           d="m 393.48,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path1869" />
+        <path
+           d="m 393.48,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1871" />
+        <path
+           d="m 393.48,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1873" />
+        <path
+           d="m 394.21,974.56 v 0 0 h 0.03 0.01 0.03 0.01 0.01 l 0.05,-0.39 0.01,-1.47 0.15,0.5 0.12,0.43 h 0.06 0.07 0.02 0.02 0.01 0.03 0.01 l 0.03,0.01 0.05,-0.01 h 0.02 l 0.16,-0.42 0.01,-0.01 h 0.08 0.19 l 0.03,0.12 0.15,2.18 h 0.1 0.01 0.02 0.02 0.02 0.14 0.04 l 0.1,0.83 0.3,2.82 0.06,0.44 0.22,3.31 0.03,-0.46 0.2,-4.8 0.1,-1.61 0.05,-0.81 h 0.03 v 0 l 0.22,4.77 0.11,2.23 h 0.05 l 0.14,-3.42 0.31,-6.48 0.01,0.48 0.29,-0.19 0.09,-0.21 0.21,-0.96 0.3,-1.03 0.3,0.13 0.07,0.13 0.24,1.98 0.19,1.29 0.11,-3.58 0.15,3.39 h 0.04 l 0.11,0.4 0.12,0.36 h 0.08 l 0.1,4.36 0.16,14.89 0.06,-1.61 0.09,-3.08 0.29,-12.95 0.01,0.08 0.29,109.74 0.01,6.22 0.13,-113.94 0.17,0.49 0.13,-0.01 h 0.03 0.01 0.01 0.01 v 0 h 0.01 v 0 h 0.01 0.07 0.03 0.03 v 0 h 0.04 v 0 h 0.02 l 0.01,-1.3 0.01,-0.08 0.01,-0.01 0.06,-0.19 v -0.52 l 0.12,-0.62 0.02,-1.18 h 0.08 0.08 0.01 0.02 v 0.25 h 0.09 0.01 l 0.09,7.06 0.1,-1.53 0.07,1.46 0.03,-3.42 0.09,-8.18 0.01,-0.01 h 0.1 l 0.03,2.21 0.08,0.12 0.01,0.1 0.29,-0.02 0.09,0.07 0.21,2.55 0.3,2.37 0.31,-3.57 v -0.1 l 0.22,-2.64 0.08,2.55 v 0.13 h 0.03 v 0 h 0.1 l 0.17,-0.29 0.3,-0.79 0.09,-0.29 0.21,-0.79 0.12,-0.37 h 0.06 v 0 0 h 0.01 0.01 l 0.11,-0.1 0.3,-0.23 0.07,-0.04 h 0.02 0.09 0.04 0.01 0.07 0.07 l 0.08,-0.06 0.04,0.29 h 0.01 0.01 l 0.07,0.03 v 0 h 0.01 l 0.01,-0.02 0.14,-0.22 h 0.06 l 0.11,0.19 0.3,0.69 0.3,0.84 0.3,0.96 0.15,0.5 0.13,-2.62 0.02,2.54 0.01,-0.03 0.13,0.23 0.09,-0.71 0.01,0.71 h 0.03 0.01 v 0 h 0.01 0.01 v 0 0 h 0.01 0.03 v 0 0 h 0.02 0.02 v 0 0 h 0.03 v 0 l 0.04,2.05 h 0.02 0.01 l 0.01,-2.36 h 0.1 v 0 l 0.02,0.24 0.02,0.34 0.01,-1.48 h 0.01 v 0 0 0 0 0 0 h 0.01 v 0 h 0.01 0.02"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path1875" />
+        <path
+           d="m 393.48,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path1877" />
+      </g>
+    </g>
+    <g
+       id="g1879" />
+    <g
+       id="g1881"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g1883"
+         clip-path="url(#clipPath1887)">
+        <path
+           d="m 409.53,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path1889" />
+        <path
+           d="m 409.53,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1891" />
+        <path
+           d="m 409.53,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1893" />
+        <path
+           d="m 410.26,972.32 0.05,-1.03 0.13,-0.09 0.11,-0.44 0.28,-0.36 0.17,0.48 0.12,0.65 0.03,0.12 0.26,1.73 0.29,1.89 0.29,0.9 0.03,0.03 h 0.02 l 0.23,3.54 0.29,2.99 0.07,0.46 0.07,0.77 h 0.02 0.13 v 0 l 0.09,-0.71 0.2,-0.07 0.22,-0.96 h 0.06 0.01 0.01 0.03 0.01 0.07 0.01 0.03 0.01 0.12 v 0 h 0.04 0.07 l 0.08,0.39 h 0.01 0.06 0.02 0.03 0.01 l 0.02,-0.36 0.17,-1.86 0.03,-0.03 0.03,-0.4 0.08,-0.93 0.18,-1.81 0.03,-0.09 0.27,-2.99 0.02,-0.09 0.06,-0.2 0.07,0.54 h 0.06 0.03 0.07 0.02 l 0.05,1.34 0.21,-0.14 0.03,-0.02 h 0.01 l 0.04,-0.11 h 0.04 v 0 h 0.02 l 0.01,1.97 v 0 h 0.01 v -0.03 0.03 h 0.01 v 0 h 0.02 0.01 v 0 l 0.09,1.09 0.08,0.82 v 0 h 0.02 0.01 l 0.07,-6.82 h 0.03 l 0.07,-0.82 h 0.01 0.02 l 0.1,0.04 h 0.03 l 0.11,-0.17 0.03,0.36 0.06,1.3 h 0.01 0.03 0.02 0.12 0.05 0.02 0.07 l 0.19,-0.45 0.01,-0.01 h 0.12 0.03 v 0 h 0.04 0.01 v 0 l 0.02,-0.08 0.02,0.87 0.03,-1.16 h 0.01 0.03 v 0 l 0.15,0.47 h 0.03 0.08 0.01 v 0 h 0.01 l 0.14,0.62 0.09,2 h 0.01 0.02 v 0 h 0.01 0.02 0.01 l 0.19,-0.82 h 0.01 0.01 0.01 0.03 l 0.01,-0.05 0.03,-0.44 h 0.03 v 0 h 0.03 0.02 0.03 0.03 v 0.49 l 0.07,-1.79 v 0 l 0.04,-0.29 0.08,-0.53 0.06,-1.65 0.01,0.07 h 0.02 0.06 l 0.06,-0.07 h 0.01 l 0.05,0.13 0.02,0.14 h 0.01 v 0 l 0.09,-0.28 h 0.01 0.01 0.01 0.03 0.01 l 0.01,-0.05 v 0 h 0.03 0.01 0.01 l 0.03,0.16 v 0 h 0.06 0.02 v 0 h 0.02 0.01 l 0.13,0.06 0.12,0.21 0.05,-0.13 0.12,0.14 0.09,0.14 h 0.1 0.06 l 0.03,0.13 0.04,0.13 h 0.05 0.05 0.04 0.06 l 0.03,0.42 h 0.02 v 0 h 0.02 0.07 l 0.01,0.43 h 0.01 v 0 0 0 h 0.01 0.01 l 0.01,0.7 0.15,-0.7 0.09,-0.12 h 0.05 0.02 v 0 h 0.02 0.03 0.05 0.01 0.02 0.07 0.05 0.03 l 0.01,0.25 h 0.04 l 0.09,0.12 0.03,0.05 0.11,-0.58 v 0.09 l 0.02,-0.28 0.09,0.24 h 0.03 v 0 0 h 0.02 l 0.05,0.39 v 0 l 0.18,1.84 h 0.01 l 0.03,-0.36 0.21,-2.76 0.08,-0.01 v 0 0.01 l 0.02,0.03 h 0.1 l 0.06,0.23 h 0.09 0.02 0.12 l 0.08,0.15 0.05,-0.23 0.04,-0.06 0.1,0.09 0.19,1.72 0.09,1.41 0.08,0.36 0.11,0.21 0.29,1.87 0.17,0.78 h 0.01 0.11 0.05 0.01 l 0.23,0.38 0.19,0.33 0.1,-0.57 0.28,-1.65 v -0.02 l 0.23,-0.77 v 0 l 0.06,-1.45 0.11,0.52 v 0 h 0.01 l 0.06,-0.62 0.01,-0.28"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path1895" />
+        <path
+           d="m 409.53,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path1897" />
+      </g>
+    </g>
+    <g
+       id="g1899" />
+    <g
+       id="g1901"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g1903"
+         clip-path="url(#clipPath1907)">
+        <path
+           d="m 425.58,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path1909" />
+        <path
+           d="m 425.58,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1911" />
+        <path
+           d="m 425.58,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1913" />
+        <path
+           d="m 426.31,982.15 0.39,-1.87 0.39,-2.12 0.39,-2.32 0.39,-2.41 0.39,-2.03 0.38,-0.95 0.19,-0.11 0.2,0.13 0.39,0.84 0.39,1.35 0.13,0.48 0.26,0.29 0.39,0.43 0.04,0.05 h 0.13 l 0.22,0.04 0.39,0.05 0.39,-0.03 0.39,-0.21 0.38,-0.42 0.39,-0.52 0.39,-0.44 0.35,-0.24 h 0.04 0.02 l 0.19,-1.05 0.06,-0.16 v 0 l 0.12,0.22 0.22,0.49 h 0.02 l 0.05,-0.14 h 0.03 0.01 0.04 0.02 0.05 0.03 l 0.06,0.84 v 0 h 0.05 l 0.11,-0.14 0.09,-0.16 0.32,-0.44 0.07,-0.01 0.39,-0.14 0.11,-0.05 0.18,-0.33 0.1,-0.11 0.28,-0.25 h 0.1 0.27 v 0 l 0.04,0.09 h 0.05 0.03 v 0 0 0 h 0.01 v 0 h 0.01 v 0 0 0 0 0 0 0 0 0 l 0.33,0.19 h 0.04 0.03 l 0.24,0.6 h 0.04 0.08 0.01 0.1 l 0.07,-0.48 0.08,0.43 h 0.01 l 0.06,0.41 0.06,-0.17 0.28,-0.64 0.02,0.33 0.09,0.06 0.39,0.75 0.2,0.69 0.19,0.61 0.11,0.38 0.28,0.57 0.01,0.04 h 0.26 l 0.12,1.83 0.38,3.51 0.01,0.03 h 0.02 l 0.36,3 0.09,0.54 0.11,-1.42"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path1915" />
+        <path
+           d="m 425.58,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path1917" />
+      </g>
+    </g>
+    <g
+       id="g1919" />
+    <g
+       id="g1921"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g1923"
+         clip-path="url(#clipPath1927)">
+        <path
+           d="m 441.63,1190.76 h 16.06"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path1929" />
+        <path
+           d="m 441.63,1180.87 h 16.06"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1931" />
+        <path
+           d="m 441.63,1134.09 h 16.06"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1933" />
+        <path
+           d="m 442.36,971.5 0.16,0.15 0.12,-0.79 0.06,0.5 0.04,0.1 0.07,-0.22 h 0.08 l 0.15,2.37 0.02,0.49 0.03,-2.5 0.18,0.27 0.09,-0.44 h 0.02 l 0.18,0.04 0.15,0.23 0.05,0.07 v 0.06 l 0.02,0.71 h 0.03 v 0 l 0.23,-0.91 0.01,-0.01 0.08,-0.04 h 0.02 0.15 l 0.09,0.14 0.1,0.22 0.23,-0.56 0.18,-0.34 h 0.03 l 0.13,-0.1 0.31,-0.22 0.01,0.07 h 0.01 0.01 0.07 0.01 l 0.26,-0.25 0.14,-0.07 0.01,-0.13 h 0.01 0.01 0.01 l 0.01,0.04 0.06,0.08 0.07,-0.01 h 0.01 0.07 l 0.08,0.14 0.18,2.68 h 0.01 0.01 v 0 h 0.02 0.09 l 0.08,-1.68 0.14,1.49 0.09,0.47 h 0.14 l 0.02,0.2 h 0.03 v 0 l 0.06,-0.01 0.33,1.78 0.14,-2.23 0.19,-1.78 h 0.01 v 0 h 0.01 0.01 0.07 0.04 0.03 0.1 v 0 h 0.06 0.02 v 0 h 0.08 0.02 0.09 l 0.12,0.26 h 0.01 l 0.02,-0.22 0.14,-0.16 h 0.09 0.01 l 0.09,0.48 0.1,0.53 h 0.05 l 0.17,-0.02 h 0.02 0.07 0.12 0.02 v 0 0 h 0.1 l 0.03,0.09 0.22,0.75 h 0.03 l 0.03,-0.62 h 0.01 l 0.05,-0.23 0.28,-0.17 0.05,0.29 0.14,0.77 h 0.07 l 0.05,-0.82 h 0.03 l 0.05,0.69 0.01,0.1 0.19,-0.84 h 0.02 0.01 0.01 0.09 0.01 l 0.28,0.09 h 0.04 l 0.02,-0.01 0.25,-0.23 0.08,0.02 0.11,0.01 0.09,0.11 h 0.03 0.06 l 0.04,-1.19 0.01,0.03 0.27,1.16 0.07,-0.07 0.19,-0.11 h 0.06 v 0 h 0.02 0.06 v 0 h 0.05 l 0.17,0.82 0.12,-0.68 0.02,-0.1 0.02,3.52 0.22,-4.05 0.08,-0.66 0.05,-0.05 h 0.02 l 0.27,0.23 0.04,0.14 0.11,0.06 h 0.05 0.03 v 0 h 0.05 l 0.05,-0.37 v -0.01 l 0.06,-0.09 h 0.01 0.02 0.01 0.01 0.01 0.02 l 0.08,0.05 h 0.03 l 0.09,-0.67 0.03,0.14 h 0.18 l 0.13,0.03 0.27,0.15 h 0.01 l 0.06,-0.13 0.09,-0.06 0.16,0.12 h 0.08 v 0 h 0.03 v 0 l 0.05,0.03 0.03,-0.02 0.01,0.01 0.02,-0.02 h 0.2 0.27 0.07 0.09 l 0.16,-0.11 0.09,-0.02 0.33,0.19 0.26,0.38 0.08,0.14 0.03,0.05 h 0.06"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path1935" />
+        <path
+           d="m 441.63,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path1937" />
+      </g>
+    </g>
+    <g
+       id="g1939" />
+    <g
+       id="g1941"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g1943"
+         clip-path="url(#clipPath1947)">
+        <path
+           d="m 457.69,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path1949" />
+        <path
+           d="m 457.69,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1951" />
+        <path
+           d="m 457.69,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1953" />
+        <path
+           d="m 458.42,975.26 0.33,-2.24 0.34,2.96 0.08,1.31 0.26,-0.28 0.34,-0.57 0.34,-0.78 0.34,-0.93 0.34,-1.02 0.34,150.62 0.34,-7.25 0.34,-61.39 0.1,-80.18 0.24,32.76 0.24,-25.24 v 0 l 0.02,-8.51 h 0.05 l 0.03,0.15 0.14,1.48 v 0 h 0.01 0.03 v 0 h 0.01 0.03 0.05 v 0 l 0.05,-0.34 h 0.02 0.03 0.02 l 0.01,-1.37 v 0 0 h 0.07 l 0.04,-0.41 h 0.02 v 0 h 0.05 l 0.06,-0.01 0.02,0.01 h 0.02 0.02 0.02 0.01 0.01 0.01 0.01 v 0 0 h 0.01 v 0 h 0.04 0.03 v 0 h 0.02 v 0 h 0.03 0.01 v 0 h 0.01 v 0 l 0.01,0.54 h 0.05 0.05 0.02 l 0.25,-1.7 h 0.06 0.03 l 0.09,-0.27 0.14,0.21 h 0.08 0.01 0.08 0.01 l 0.08,0.17 0.06,-0.95 h 0.03 0.02 0.05 0.01 0.03 l 0.01,1.02 0.28,0.03 h 0.01 0.05 0.07 0.01 0.03 v 0 h 0.03 0.01 0.04 v 0 0 h 0.01 0.01 l 0.01,-2.02 v 0 l 0.03,0.07 h 0.02 0.02 v 0 h 0.04 l 0.04,0.1 0.02,-0.1 0.1,-0.23 0.1,0.02 h 0.04 0.03 l 0.06,0.21 h 0.01 l 0.24,-0.4 0.01,-0.01 0.06,-0.1 0.06,-0.15 0.04,0.24 h 0.03 l 0.03,0.47 v 0 h 0.01 v 0 0 h 0.1 0.01 v 0 l 0.13,-0.13 v 0 0 h 0.01 0.04 v 0 h 0.05 0.08 0.01 v 0 h 0.01 0.02 0.13 0.04 l 0.05,2.28 h 0.02 l 0.06,-0.74 0.02,-0.05 0.05,-0.12 0.29,-0.33 0.08,-0.1 0.01,0.19 h 0.01 v 0 0 h 0.05 0.02 v 0 l 0.1,0.41 h 0.04 l 0.03,-0.04 0.34,-0.44 0.11,-0.13 v 0 h 0.02 l 0.02,1.43 h 0.01 v 0 h 0.03 l 0.15,-1.32 0.04,-0.25 0.08,-0.15 0.04,-0.48 h 0.02 l 0.08,0.58 h 0.02 l 0.06,-0.42 0.1,-0.35 0.14,-0.63 h 0.07 l 0.03,-0.05 0.18,1.13 h 0.15 0.1 0.24 0.04 l 0.3,0.37 0.05,0.11 0.04,-0.22 0.25,0.01 h 0.34 l 0.14,-0.01 0.05,0.45 0.15,-0.01 0.23,-0.03 0.11,-0.5 0.3,-0.79 h 0.04 0.02 l 0.03,-0.34 0.29,-0.04 0.23,-0.03 h 0.04 l 0.07,0.01 0.34,0.17 0.11,0.1 0.23,4.27 V 975"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path1955" />
+        <text
+           xml:space="preserve"
+           transform="scale(1,-1)"
+           style="font-variant:normal;font-weight:normal;font-size:11px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#e41a1c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text1959"
+           x="458.17838"
+           y="-1128.069"><tspan
+             x="458.17838 464.29437"
+             y="-1128.069"
+             sodipodi:role="line"
+             id="tspan1957">p4</tspan></text>
+        <path
+           d="m 457.69,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path1961" />
+      </g>
+    </g>
+    <g
+       id="g1963" />
+    <g
+       id="g1965"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g1967"
+         clip-path="url(#clipPath1971)">
+        <path
+           d="m 473.74,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path1973" />
+        <path
+           d="m 473.74,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1975" />
+        <path
+           d="m 473.74,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1977" />
+        <path
+           d="m 474.47,977.68 h 0.11 0.07 0.09 l 0.09,-0.54 0.03,-4.07 v -0.24 l 0.18,2.81 h 0.21 v 0.06 l 0.08,0.68 0.04,-4.49 0.02,1.57 h 0.05 0.04 l 0.17,1.65 0.33,2.95 h 0.01 0.01 0.04 0.04 l 0.11,1.87 h 0.03 0.02 l 0.13,-5.26 0.06,0.22 0.4,1.36 0.39,1.41 0.23,0.8 0.17,-0.92 0.39,-2.05 0.39,-1.6 0.17,-0.46 0.06,-0.02 0.07,-0.45 0.1,-0.01 0.06,-0.01 h 0.33 0.03 v 0 l 0.02,0.03 h 0.01 l 0.29,0.62 h 0.01 l 0.03,0.02 0.06,0.03 0.12,-2.24 0.07,3.6 h 0.03 l 0.04,0.04 0.08,0.03 0.39,0.16 0.39,0.12 0.4,0.04 0.39,-0.05 0.24,-0.09 0.15,-0.59 0.4,-1.43 0.39,-1.19 0.39,-0.84 0.4,-0.5 0.39,-0.21 0.39,-0.01 0.06,0.01 0.34,1.07 0.39,2.92 0.39,2.93 0.4,1.2 0.39,-0.14 0.04,-0.04 0.36,0.08 0.39,-1.14 0.39,-2.07 0.34,-1.76 0.06,-0.2 0.39,-0.98 0.39,-0.1 0.14,0.15 h 0.05 0.02 0.02 0.01 l 0.16,-1.08 0.02,-0.15 0.01,-0.46 v 0"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path1979" />
+        <path
+           d="m 473.74,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path1981" />
+      </g>
+    </g>
+    <g
+       id="g1983" />
+    <g
+       id="g1985"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g1987"
+         clip-path="url(#clipPath1991)">
+        <path
+           d="m 489.79,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path1993" />
+        <path
+           d="m 489.79,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1995" />
+        <path
+           d="m 489.79,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path1997" />
+        <path
+           d="m 490.52,975.3 v 0 0 0 0 h 0.01 0.04 v 0 0 0 0 0 0 0 h 0.07 l 0.02,-0.98 v 0 0 l 0.03,0.12 h 0.01 l 0.15,5.23 0.03,0.62 h 0.02 0.02 0.02 0.25 0.07 0.13 l 0.11,1.67 0.03,-0.02 0.22,-0.15 0.06,-1.3 0.05,3.37 0.01,6.28 0.1,-11 h 0.04 l 0.19,-2.02 0.33,-3.23 v -0.01 l 0.15,-3.44 0.19,1.52 v 0.03 l 0.06,-0.08 h 0.01 l 0.12,0.64 0.03,-0.07 h 0.11 0.22 0.01 v 0 h 0.01 0.02 v 0 l 0.08,0.03 0.11,0.07 h 0.01 0.21 0.01 v 0 h 0.03 v 0 h 0.08 v 0 0 l 0.04,-0.18 h 0.01 0.03 0.01 0.04 0.01 0.08 0.01 0.03 l 0.03,0.55 0.04,-0.43 h 0.1 l 0.01,-0.35 v 0 h 0.02 0.02 0.07 0.04 l 0.3,0.82 0.15,-0.3 v 0 h 0.01 l 0.08,-0.52 h 0.09 0.01 l 0.21,0.68 0.07,-0.79 0.05,-0.2 0.12,-0.48 0.04,-0.37 0.03,-0.07 v 0 l 0.05,0.52 v 0 l 0.01,0.01 h 0.03 0.01 0.04 v -0.17 l 0.01,-0.41 0.03,3.98 0.01,0.12 h 0.01 0.05 v 0 h 0.02 v 0 h 0.12 l 0.02,-1.39 h 0.01 l 0.06,0.04 0.24,0.62 0.09,0.69 0.02,0.1 0.09,1.95 h 0.02 0.03 0.18 0.09 0.1 l 0.09,0.01 h 0.04 0.01 0.11 l 0.21,0.92 h 0.01 v 0 l 0.01,-0.13 0.3,-3.88 0.03,-0.08 0.24,-0.45 h 0.1 0.03 0.01 0.01 0.02 0.03 v 0 h 0.04 l 0.08,1.79 0.01,0.45 0.11,0.77 0.07,0.48 h 0.03 0.09 0.01 l 0.07,-0.76 h 0.02 l 0.02,-0.32 h 0.02 0.04 0.07 0.14 0.03 l 0.06,-4.29 v -0.04 l 0.1,1.43 0.01,0.34 h 0.04 0.01 0.04 0.08 l 0.05,-2.45 v 0.06 l 0.03,0.41 v 0 h 0.01 0.22 0.08 l 0.12,-0.01 0.09,-0.08 v 0 h 0.02 l 0.09,0.65 0.01,0.01 0.09,0.03 0.12,-0.11 h 0.07 v 0 l 0.05,0.89 0.01,0.02 0.21,1.18 v 0 l 0.01,-0.49 h 0.03 0.01 v 0 0 h 0.01 0.01 v 0 l 0.01,0.38 v 0 l 0.01,0.23 h 0.01 v 0 h 0.01 l 0.01,-0.1 0.03,-0.13 h 0.07 0.01 0.07 l 0.09,3.92 0.04,1.5 0.03,-0.07 0.1,-0.09 0.23,-1.45 0.07,-0.48 0.08,1.18 v 0 h 0.04 l 0.01,-1.14 v 0 h 0.05 l 0.07,0.23 0.02,-0.45 0.02,-0.55 h 0.04 l 0.08,-0.04 v 0 h 0.01 0.06 0.06 l 0.06,-0.53 0.07,-0.55 h 0.04 l 0.11,0.35 0.12,-0.12 0.33,-0.31 0.07,-0.07 v 0 0 0 h 0.01 0.03 0.15 0.03 l 0.05,0.02 0.16,0.08 v 0.09 h 0.07 l 0.1,-0.97 0.05,-0.45 h 0.07 l 0.22,0.07 h 0.01 l 0.05,-0.25 0.06,-2.92 0.21,-0.11 0.03,-0.01 0.02,-0.22 h 0.01 0.01 l 0.11,-0.03 v 0 h 0.06 0.1 0.02 l 0.31,0.91 0.01,0.03 h 0.05 l 0.07,-0.53 h 0.05 v 0"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path1999" />
+        <path
+           d="m 489.79,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2001" />
+      </g>
+    </g>
+    <g
+       id="g2003" />
+    <g
+       id="g2005"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2007"
+         clip-path="url(#clipPath2011)">
+        <path
+           d="m 505.84,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2013" />
+        <path
+           d="m 505.84,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2015" />
+        <path
+           d="m 505.84,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2017" />
+        <path
+           d="m 506.57,984.95 0.01,2.67 0.02,-0.14 h 0.02 0.03 0.02 0.01 l 0.05,4.77 0.08,-4.77 h 0.16 0.03 l 0.11,0.7 0.24,-13.01 0.02,3.48 0.06,3.63 0.34,-2.91 0.4,-3.36 0.4,-2.67 0.4,-1.61 0.31,-0.45 0.09,1.9 0.15,2.68 0.25,0.21 0.4,0.12 0.27,-0.08 h 0.13 0.02 l 0.29,-0.6 h 0.01 0.01 l 0.07,-0.1 0.02,-0.03 0.05,0.13 v 0 h 0.01 0.03 l 0.29,1.52 0.03,0.18 0.09,-0.01 0.01,0.14 v 0 l 0.1,-0.76 0.04,3.72 h 0.02 l 0.11,0.35 0.04,0.14 h 0.05 0.1 0.04 v 0 0 0 l 0.04,-4.94 h 0.08 l 0.03,3.49 h 0.02 0.06 l 0.12,1.27 h 0.01 0.03 v 0 0 h 0.04 l 0.14,-1.91 0.04,-0.7 0.22,-6.54 h 0.02 l 0.12,-0.88 0.05,0.09 h 0.01 0.05 0.17 0.04 0.01 l 0.01,-0.1 h 0.02 0.04 l 0.17,0.07 h 0.01 v 0 h 0.01 v 0 h 0.01 v 0 h 0.1 l 0.04,-0.07 h 0.06 0.05 l 0.1,0.12 v 0 l 0.25,0.16 0.4,0.84 0.26,0.82 h 0.05 l 0.04,-0.33 h 0.05 0.05 v 0 h 0.03 v 0 h 0.05 0.03 v 0 0 h 0.04 0.03 v 0 l 0.17,0.02 0.16,0.03 h 0.02 l 0.22,-0.27 0.1,0.51 h 0.01 l 0.08,1.43 h 0.06 0.07 0.06 0.01 0.06 0.05 0.03 l 0.26,0.51 0.29,1.02 0.11,0.27 0.04,0.09 h 0.19 l 0.17,-1.18 0.18,-0.01 h 0.16 l 0.06,-1.88 0.4,1.07 0.09,3.39 0.16,-1.07 0.06,-0.01 h 0.09 0.02 l 0.15,1.19 0.23,1.19 0.09,0.41 0.31,-0.95 0.4,-1.09 0.4,-0.87 0.4,-0.59 0.11,-0.11 v 0 h 0.01 0.02 v 0 h 0.05 l 0.21,-0.18 0.2,-0.15"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path2019" />
+        <path
+           d="m 505.84,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2021" />
+      </g>
+    </g>
+    <g
+       id="g2023" />
+    <g
+       id="g2025"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2027"
+         clip-path="url(#clipPath2031)">
+        <path
+           d="m 521.89,1190.76 h 16.06"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2033" />
+        <path
+           d="m 521.89,1180.87 h 16.06"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2035" />
+        <path
+           d="m 521.89,1134.09 h 16.06"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2037" />
+        <path
+           d="m 522.62,976.28 h 0.06 0.06 0.03 l 0.05,-1.83 0.04,0.02 0.02,-0.02 v 0 h 0.01 v 0.06 l 0.14,-1.53 0.41,-1.01 0.02,0.16 h 0.34 l 0.04,0.86 0.02,0.33 v 0 h 0.03 0.02 0.03 0.01 l 0.3,-2.38 0.08,-0.35 h 0.32 0.28 l 0.13,-0.06 0.41,-0.08 0.4,0.08 0.12,0.05 0.07,-0.17 0.1,0.09 0.12,0.2 0.1,0.25 0.18,-0.38 h 0.02 v 0 0 h 0.03 0.01 l 0.06,0.05 0.13,0.13 h 0.28 0.06 0.01 l 0.1,-0.27 0.12,-0.07 h 0.02 0.03 l 0.02,0.11 h 0.05 0.03 0.03 0.02 0.1 l 0.07,-0.03 h 0.02 0.03 v 0 h 0.03 0.07 0.1 0.11 l 0.2,0.06 0.4,0.2 0.41,0.27 0.4,0.28 0.41,0.21 0.41,0.08 0.17,0.01 0.16,0.35 0.07,-0.92 0.41,2.53 0.05,0.05 h 0.02 0.02 l 0.22,-2.84 0.09,-0.04 0.08,-0.04 h 0.05 0.03 0.07 v 0 h 0.04 0.08 0.05 0.01 v 0 h 0.04 0.1 v 0 h 0.08 0.09 0.03 l 0.07,-0.11 0.13,-0.12 h 0.17 0.06 0.04 0.02 l 0.03,-0.08 0.16,0.12 v 0 h 0.07 0.01 0.12 0.4 l 0.41,0.06 0.16,0.08 0.01,-0.08 0.24,0.53 0.4,1.3 0.41,0.28 0.24,-0.39 0.16,-0.16 0.41,0.35 0.37,0.17 h 0.04 0.03 0.12 l 0.25,-0.28 0.2,-0.17 h 0.03 0.03 0.03 l 0.1,0.02"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path2039" />
+        <path
+           d="m 521.89,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2041" />
+      </g>
+    </g>
+    <g
+       id="g2043" />
+    <g
+       id="g2045"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2047"
+         clip-path="url(#clipPath2051)">
+        <path
+           d="M 537.95,1190.76 H 554"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2053" />
+        <path
+           d="M 537.95,1180.87 H 554"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2055" />
+        <path
+           d="M 537.95,1134.09 H 554"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2057" />
+        <path
+           d="m 538.68,975.03 h 0.02 0.07 0.06 l 0.23,2.6 h 0.01 0.02 0.01 v 0 h 0.01 0.01 l 0.06,1.83 v 0 h 0.01 v 0 h 0.03 v 0 l 0.02,0.19 h 0.01 0.06 0.02 0.01 v 0 l 0.03,1.67 h 0.01 0.01 0.03 0.05 v 0 h 0.04 v 0 0 h 0.04 0.01 v 0 0.55 h 0.12 l 0.19,0.9 0.16,0.75 0.05,0.21 0.17,-8.08 0.01,-0.16 0.16,-1.47 0.01,-0.68 h 0.12 0.08 v 0 h 0.03 0.03 0.02 v 0 0 l 0.01,0.01 0.07,-0.01 h 0.06 0.03 0.01 0.03 v 0 h 0.06 l 0.07,0.73 0.4,4.47 0.4,2.72 0.03,0.16 0.36,0.39 0.4,6.22 0.16,-5.45 h 0.09 l 0.07,0.72 v 0 H 543 v 0 0 h 0.01 0.01 0.01 v 0 h 0.01 v 0 0 h 0.04 v 0 h 0.04 0.01 l 0.3,-0.14 0.34,-4.01 0.06,0.03 0.4,6.55 0.39,168.64 0.29,-45.25 0.11,-124.54 0.01,-0.43 0.39,-2.21 0.39,-3.53 0.4,-3.8 0.28,-2.57 0.04,0.96 h 0.03 v 0 l 0.05,-2.63 0.06,3.74 0.03,-0.01 h 0.01 l 0.27,-2.26 h 0.02 0.02 0.11 0.01 v 0 h 0.05 l 0.2,0.35 h 0.01 0.02 l 0.05,0.6 h 0.02 l 0.2,-1.75 h 0.03 l 0.08,1.39 0.02,0.79 0.03,0.03 h 0.05 0.19 l 0.1,0.43 0.09,0.46 0.12,0.32 0.05,-0.06 0.04,0.06 h 0.02 0.08 0.08 0.01 l 0.02,-1.61 h 0.18 l 0.1,0.05 0.18,0.05 h 0.03 0.04 0.13 0.02 v 0 l 0.12,0.41 0.25,-0.19 0.03,-0.02 0.07,-0.06 v 0 h 0.05 0.22 l 0.05,-0.19 0.13,-0.4 h 0.25 0.02 v 0 l 0.4,-0.35 0.2,-0.17 0.14,-1.19 h 0.01 0.04 0.15 l 0.04,-0.22 0.15,0.03 h 0.01 l 0.05,0.28 0.01,0.08 h 0.01 l 0.11,-0.01 h 0.02 l 0.25,-0.54 0.08,0.22 h 0.01 l 0.18,-0.13 0.08,0.38 h 0.01 0.03 0.02 0.02 l 0.05,0.08 h 0.06 0.06 0.07 v 0 0 0 h 0.02 0.01 0.03 v 0 h 0.06 0.09 0.04 v 0 h 0.01 v 0 0 h 0.01 0.01 v 0 l 0.16,-0.47"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path2059" />
+        <text
+           xml:space="preserve"
+           transform="scale(1,-1)"
+           style="font-variant:normal;font-weight:normal;font-size:11px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#e41a1c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2063"
+           x="539.55878"
+           y="-1158.6899"><tspan
+             x="539.55878 545.6748"
+             y="-1158.6899"
+             sodipodi:role="line"
+             id="tspan2061">p5</tspan></text>
+        <path
+           d="M 537.95,959.3 H 554 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2065" />
+      </g>
+    </g>
+    <g
+       id="g2067" />
+    <g
+       id="g2069"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2071"
+         clip-path="url(#clipPath2075)">
+        <path
+           d="m 554,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2077" />
+        <path
+           d="m 554,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2079" />
+        <path
+           d="m 554,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2081" />
+        <path
+           d="m 554.73,977.33 0.09,0.03 h 0.02 0.03 v 0 H 555 v 0 0 l 0.01,2.51 0.07,0.18 0.05,0.11 h 0.13 l 0.18,0.23 0.13,0.18 0.1,-0.57 h 0.05 0.07 v -0.01 l 0.06,-0.2 0.18,0.61 h 0.02 l 0.09,-0.33 0.17,-0.56 0.19,1.21 0.26,1.7 h 0.04 l 0.04,8.52 v 0 l 0.01,-16.05 0.01,6.12 0.16,-0.38 h 0.09 0.02 l 0.02,-0.07 v 0 l 0.02,-0.05 0.03,0.05 v 0 0 h 0.05 l 0.16,9.31 0.11,0.22 0.02,6.08 0.02,-0.16 0.04,1.33 h 0.01 0.04 0.02 0.03 l 0.07,-0.16 0.14,-5.87 0.05,-2.51 h 0.16 l 0.15,-0.49 0.06,-0.21 h 0.14 0.02 0.04 0.02 0.07 0.01 0.01 0.07 0.07 0.09 l 0.1,0.03 0.36,0.25 0.35,0.26 0.28,0.06 0.07,-4.52 0.02,-1.26 0.13,7.83 0.06,2.37 0.15,-1.27 0.13,-1.34 0.11,-10.89 0.11,2.63 v 0 l 0.08,-0.57 0.16,-2.03 0.02,0.4 h 0.01 v 0 0 l 0.06,-1.21 0.03,0.69 0.03,0.66 0.13,0.21 h 0.03 l 0.16,7.57 0.02,0.51 h 0.01 l 0.18,1.68 h 0.02 l 0.12,3.14 v 0 h 0.11 l 0.14,-0.68 h 0.11 0.01 v 0 l 0.15,4.8 h 0.05 0.04 v 0 l 0.03,-1.98 h 0.05 0.02 v 0 h 0.08 0.05 0.08 l 0.12,3.21 h 0.02 0.07 0.19 l 0.08,-0.56 v 0 l 0.02,0.01 0.15,-0.02 h 0.01 v 0 0 l 0.06,-4.71 h 0.03 0.02 l 0.03,-1.7 h 0.04 0.01 0.05 v 0 h 0.02 l 0.29,2.69 0.05,-2.17 0.09,0.11 0.07,-2.31 0.14,0.97 0.22,3.02 v -4.01 l 0.13,0.16 0.04,0.06 h 0.01 0.01 v 0 l 0.02,-1.08 h 0.01 v 0 0 h 0.01 0.01 0.02 0.09 0.05 l 0.04,1.9 h 0.05 v 0 l 0.35,6.51 0.13,2.04 0.08,-0.01 0.14,0.01 h 0.04 l 0.16,-2.97 0.16,9.9 v 0.08 h 0.01 0.02 l 0.13,0.09 h 0.03 0.01 v 0 l 0.04,2.61 h 0.04 0.01 0.01 v 0 h 0.01 0.02 v 0 h 0.01 0.01 v -0.67 l 0.07,-14.75 v 0 h 0.22 0.01 l 0.06,0.1 0.35,-0.1 0.28,-1.13 0.07,-0.39 0.26,-1.6 h 0.06 l 0.04,0.02 0.35,0.19 0.06,0.04 0.03,-0.19 0.15,-0.93 0.11,-0.06 0.07,-0.02 0.13,-12.6 v 0 l 0.16,0.83 0.01,0.03 0.11,2.59 h 0.04 l 0.14,-0.13 0.05,0.05 0.09,0.12"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path2083" />
+        <path
+           d="m 554,959.3 h 16.05 v 242.49 H 554 Z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2085" />
+      </g>
+    </g>
+    <g
+       id="g2087" />
+    <g
+       id="g2089"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2091"
+         clip-path="url(#clipPath2095)">
+        <path
+           d="M 570.05,1190.76 H 586.1"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2097" />
+        <path
+           d="M 570.05,1180.87 H 586.1"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2099" />
+        <path
+           d="M 570.05,1134.09 H 586.1"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2101" />
+        <path
+           d="m 570.78,981.76 h 0.06 l 0.15,-0.28 0.26,-1.05 0.03,-0.01 0.24,0.02 h 0.08 l 0.13,1.04 0.21,1.67 h 0.02 0.01 0.04 0.01 l 0.18,2.26 v 0.02 l 0.03,0.02 0.03,-0.01 0.03,-1.4 h 0.03 l 0.03,-0.82 0.01,0.27 0.07,-1.04 h 0.07 l 0.14,-6.55 h 0.02 0.01 0.03 0.13 0.08 v 0 l 0.04,1.79 h 0.17 0.01 l 0.01,0.03 0.48,0.87 0.45,0.79 0.02,-0.07 0.2,-1.23 h 0.27 0.01 0.01 0.05 l 0.14,-0.38 h 0.09 0.06 0.07 v 0 l 0.04,0.04 0.17,0.34 h 0.02 0.04 0.03 0.08 0.06 l 0.08,-0.07 0.07,-0.07 h 0.05 0.06 l 0.2,-0.44 0.09,0.55 0.19,1.35 h 0.01 0.16 l 0.08,0.03 0.03,-0.05 v 0.12 l 0.05,1.62 h 0.01 l 0.25,1.5 h 0.09 l 0.07,-0.4 0.23,-2 h 0.01 v 0 0 l 0.03,0.84 0.18,-4.5 0.03,0.56 0.06,1.6 h 0.06 0.02 v 0 h 0.01 v 0 h 0.13 l 0.19,-0.32 0.17,-0.26 v 0 h 0.02 l 0.01,0.02 h 0.01 l 0.03,-0.15 h 0.02 0.13 0.03 l 0.05,0.02 0.38,0.11 0.09,2.51 v 0 h 0.03 0.04 l 0.41,-0.43 0.32,-0.35 0.11,-4.96 h 0.04 v 0 l 0.41,-0.38 0.06,0.01 0.4,0.08 h 0.04 l 0.03,-0.14 0.01,-0.03 v 0 h 0.06 l 0.04,-0.03 h 0.01 l 0.11,1.35 v 0 h 0.08 v 0 h 0.08 0.09 0.11 0.09 0.05 l 0.22,-3.08 0.14,-1.45 h 0.33 0.01 v -0.05 h 0.09 v 0 h 0.05 l 0.11,3.16 h 0.01 0.04 0.07 0.09 0.02 l 0.46,-2.12 0.47,-1.19 0.15,-0.18 h 0.32 0.31 l 0.16,0.27 0.05,0.3 0.14,-0.18 h 0.1 l 0.19,0.05 0.02,0.01 0.17,2.62 h 0.01 l 0.08,-2.83 0.09,0.19 0.04,-0.44"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path2103" />
+        <path
+           d="m 570.05,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2105" />
+      </g>
+    </g>
+    <g
+       id="g2107" />
+    <g
+       id="g2109"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2111"
+         clip-path="url(#clipPath2115)">
+        <path
+           d="m 586.1,1190.76 h 16.06"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2117" />
+        <path
+           d="m 586.1,1180.87 h 16.06"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2119" />
+        <path
+           d="m 586.1,1134.09 h 16.06"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2121" />
+        <path
+           d="m 586.83,970.43 0.46,-0.01 h 0.37 l 0.08,-0.09 0.27,0.24 0.19,0.04 0.45,0.13 0.46,0.29 0.45,0.65 0.46,1.22 0.45,1.81 0.46,2.12 0.45,2.05 0.46,1.68 0.45,1.16 0.4,0.63 0.06,0.19 0.45,106.96 0.37,-32.73 0.06,-73.19 h 0.03 0.15 l 0.04,2.61 h 0.03 0.04 0.06 v 0 h 0.03 l 0.04,1.52 0.06,0.01 0.04,-0.01 0.11,-5.04 0.05,-0.49 0.26,-0.58 0.3,-1.28 0.15,-0.62 0.04,-0.15 h 0.38 0.02 l 0.02,0.09 0.45,1.94 0.04,0.13 h 0.09 0.07 l 0.25,0.3 v 0 0.01 -0.01 h 0.01 0.06 0.02 0.01 l 0.21,-0.17 0.15,1.65 0.08,0.7 0.22,-0.31 h 0.16 0.02 0.04 v 0 h 0.18 l 0.05,-2.22 h 0.04 0.01 0.11 0.03 l 0.2,-1.55 0.21,-0.11 0.01,0.06 h 0.01 0.13 0.08 l 0.24,-0.17 0.07,-0.02 h 0.01 v 0 h 0.03 0.06 l 0.21,-2.09 0.02,-0.15 h 0.01 v 0 0 h 0.05 0.19 v 0 h 0.02 l 0.24,0.04 v -0.07 l 0.13,-2.87 h 0.33 0.02 v 0 0 h 0.04 0.07 v 0 h 0.02 0.05 v 0 h 0.13 0.13 v 0 l 0.16,0.13 h 0.03 l 0.01,0.89 0.16,-3.25 v 0 0 h 0.01 v 0 0 h 0.01 v 0 0 h 0.01 v 0 0 l 0.02,0.47 h 0.02 v 0 0 h 0.02 0.01 0.02 v 0 h 0.01 0.01 0.01 0.16 0.02 0.12 l 0.07,-2.29 h 0.03 0.01 0.02"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path2123" />
+        <path
+           d="m 586.1,959.3 h 16.05 v 242.49 H 586.1 Z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2125" />
+      </g>
+    </g>
+    <g
+       id="g2127" />
+    <g
+       id="g2129"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2131"
+         clip-path="url(#clipPath2135)">
+        <path
+           d="m 602.16,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2137" />
+        <path
+           d="m 602.16,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2139" />
+        <path
+           d="m 602.16,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2141" />
+        <path
+           d="m 602.88,986.93 0.09,-0.54 0.14,-1.66 v 0 l 0.07,-2.22 h 0.03 v 0 l 0.1,-0.79 0.05,-0.78 0.05,-0.71 h 0.03 0.01 0.02 l 0.36,-0.35 0.1,-0.08 0.38,5.09 0.13,1.99 0.01,0.01 0.01,0.05 v 0 0 h 0.04 0.01 0.02 0.01 v 0 h 0.06 0.18 v 0 l 0.37,0.01 0.01,1.42 h 0.03 l 0.06,3.08 0.13,5.04 0.14,-2.88 0.21,0.34 0.47,0.5 0.13,0.06 0.15,-2.79 0.19,1.85 0.01,0.01 0.06,-2.1 v -6.53 h 0.01 0.03 l 0.2,-5.46 h 0.08 l 0.03,-1.47 h 0.05 v 0 h 0.01 0.08 l 0.35,-0.34 h 0.01 0.03 0.15 0.13 l 0.15,-0.12 0.01,0.12 h 0.04 0.19 0.03 l 0.06,4.11 h 0.02 l 0.17,-0.29 0.45,-0.74 0.03,-0.07 0.41,-0.96 0.06,-0.66 0.19,-1.86 v 0.05 l 0.1,-0.05 0.12,-0.31 h 0.01 l 0.03,-1.27 0.02,0.16 0.02,0.09 v 0 l 0.25,2.1 0.06,-2.1 h 0.04 0.11 v 0 h 0.02 l 0.04,-0.08 h 0.13 l 0.28,-0.04 0.14,-0.02 h 0.02 l 0.23,2.4 h 0.03 l 0.06,1.2 0.4,6.1 h 0.07 v 0 h 0.07 l 0.02,13.27 0.1,-6.05 0.07,-8.21 v 0 h 0.02 l 0.13,2.38 v 0 l 0.04,0.24 h 0.02 0.02 0.01 0.02 0.06 0.01 0.01 0.04 0.06 l 0.1,17.57 0.15,-29.55 0.47,-2.71 0.25,7.76 0.23,0.49 0.47,1.09 0.14,0.33 0.33,-2.97 0.48,-3.23 0.29,-0.82 v 0 h 0.01 l 0.06,-0.58 0.11,-0.15 0.3,-0.19 0.1,-0.01 0.08,0.43 0.47,3.13 0.47,3.37 0.04,0.23 0.09,-0.12 h 0.08 l 0.08,-0.29 0.07,0.14 v 0 l 0.02,8.19"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path2143" />
+        <path
+           d="m 602.16,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2145" />
+      </g>
+    </g>
+    <g
+       id="g2147" />
+    <g
+       id="g2149"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2151"
+         clip-path="url(#clipPath2155)">
+        <path
+           d="m 618.21,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2157" />
+        <path
+           d="m 618.21,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2159" />
+        <path
+           d="m 618.21,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2161" />
+        <path
+           d="m 618.94,981.96 v 1.06 l 0.03,-0.17 0.12,0.21 0.23,-0.04 h 0.04 0.03 0.07 l 0.23,-0.02 0.2,-1.68 h 0.07 0.02 v 0 l 0.4,-0.07 h 0.11 0.01 0.01 0.02 0.01 v 0 h 0.04 0.19 0.07 0.08 0.07 l 0.03,-0.28 0.16,-1.74 h 0.36 0.03 l 0.01,0.03 0.2,-0.03 0.28,0.18 v -0.02 h 0.01 l 0.02,1.7 h 0.09 l 0.02,-0.17 0.03,0.32 v 0 h 0.1 0.07 0.11 0.06 0.01 0.04 l 0.08,0.19 h 0.01 0.06 0.02 0.16 0.15 0.06 l 0.15,-2.43 h 0.04 l 0.1,0.78 h 0.01 0.01 0.15 0.12 0.13 l 0.27,-1.92 0.15,-1.02 h 0.29 l 0.08,-0.09 0.31,-0.34 h 0.12 0.07 l 0.02,-0.05 0.14,-0.27 h 0.03 l 0.35,-1.33 0.19,-0.66 h 0.02 0.09 0.08 0.02 0.01 v 0 h 0.01 0.1 0.05 l 0.25,-1.86 h 0.22 0.08 l 0.21,-1.55 h 0.23 v 0 l 0.05,0.08 h 0.03 l 0.44,-0.36 0.24,0.54 h 0.19 v 0 l 0.03,0.19 h 0.06 0.01 0.08 l 0.19,0.72 0.24,-0.07 0.14,-0.01 h 0.01 0.37 0.06 l 0.46,3.64 0.29,1.67 v 0 l 0.23,0.3 0.09,0.14 0.26,-0.47 v 0 h 0.1 0.06 0.01 0.02 v 0 h 0.05 v 0 0 l 0.02,-3.35 h 0.02 l 0.07,0.13 0.01,-0.7 h 0.01 0.05 0.02 l 0.25,0.52 0.04,0.11 h 0.04 0.04 0.01 l 0.03,-0.17 h 0.01 l 0.35,1.35 0.1,0.44 h 0.06 0.03 v 0 l 0.07,0.46 0.25,1.18 h 0.01 0.01 0.03 0.01 l 0.47,1.23 0.11,0.3 h 0.03 l 0.03,1.03 h 0.03 l 0.08,2.21 h 0.02 l 0.04,-0.02 0.09,-1.76 0.09,0.21 0.03,0.07"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path2163" />
+        <path
+           d="m 618.21,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2165" />
+      </g>
+    </g>
+    <g
+       id="g2167" />
+    <g
+       id="g2169"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2171"
+         clip-path="url(#clipPath2175)">
+        <path
+           d="m 634.26,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2177" />
+        <path
+           d="m 634.26,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2179" />
+        <path
+           d="m 634.26,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2181" />
+        <path
+           d="m 634.99,972.89 h 0.04 0.03 l 0.12,0.21 0.1,0.88 0.24,-0.55 0.06,-0.11 0.47,-0.92 0.53,-0.69 0.53,-0.04 0.54,0.54 0.09,0.12 0.44,2.33 0.53,3.61 v 0 h 0.14 0.08 0.16 l 0.15,-0.74 0.14,-0.61 h 0.22 0.17 0.01 l 0.21,-1.55 v 0 h 0.05 v 0 l 0.06,1.91 h 0.03 l 0.08,0.16 h 0.09 0.04 l 0.25,0.99 v 0 h 0.09 v 0 0 h 0.01 0.03 0.01 0.06 0.02 0.02 v 0 0 h 0.01 0.02 v 0 h 0.06 0.03 l 0.19,-0.61 h 0.06 l 0.16,-1.03 0.07,-0.36 0.07,1.93 h 0.02 l 0.15,0.98 h 0.03 0.06 0.1 0.01 0.02 0.01 0.01 l 0.01,-1.34 0.02,-0.63 0.18,0.64 0.27,1.09 h 0.04 0.05 0.02 v 0 h 0.02 0.01 0.02 l 0.41,1.66 0.14,1.01 0.01,-0.02 0.01,-0.01 h 0.01 0.02 0.05 0.26 v -0.36 l 0.03,-0.97 0.11,-2.9 h 0.02 l 0.28,-0.21 0.12,-1.03 0.03,-0.22 h 0.02 l 0.1,0.74 0.26,-0.02 0.09,-1.01 0.03,-0.21 0.5,-3.47 h 0.02 0.01 0.04 0.12 l 0.11,0.53 0.06,0.61 0.21,-1.09 v -0.04 l 0.02,-0.01 0.18,-0.72 h 0.07 l 0.25,-0.19 0.01,0.01 0.01,0.18 0.23,-0.4 h 0.04 0.05 0.01 0.08 l 0.11,0.12 0.42,0.58 h 0.05 l 0.06,-0.44 0.07,-0.44 0.18,0.75 h 0.03 l 0.25,-1.19 0.36,1.74 0.01,6.79 h 0.02 l 0.14,-0.48 0.47,-1.46 h 0.06 0.05 l 0.2,0.25 0.14,-0.69 0.14,-0.87 0.17,-1.06 0.08,0.19"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path2183" />
+        <path
+           d="m 634.26,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2185" />
+      </g>
+    </g>
+    <g
+       id="g2187" />
+    <g
+       id="g2189"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2191"
+         clip-path="url(#clipPath2195)">
+        <path
+           d="m 650.31,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2197" />
+        <path
+           d="m 650.31,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2199" />
+        <path
+           d="m 650.31,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2201" />
+        <path
+           d="m 651.04,995.04 h 0.02 l 0.04,7.98 0.43,-6.47 0.19,-2.52 0.16,0.84 0.14,-1.67 0.45,-5.34 0.05,-0.28 0.12,-0.77 h 0.05 0.09 l 0.06,-3.62 h 0.04 v 0 h 0.01 l 0.04,0.53 0.05,-0.53 h 0.01 0.02 v 0 h 0.02 0.08 0.03 0.11 0.08 0.03 0.02 l 0.12,0.88 0.02,0.12 h 0.04 0.1 l 0.19,12.3 0.14,-2.87 0.33,-8.01 0.02,-0.1 0.06,-0.05 h 0.08 0.03 l 0.27,-0.29 0.09,1.67 h 0.03 0.02 0.05 0.03 0.04 l 0.17,1.2 v 0 h 0.02 v 0 h 0.03 0.03 l 0.03,1.59 h 0.01 v 0 h 0.01 0.01 0.01 l 0.1,-0.15 0.3,-1.04 0.2,-0.01 0.14,0.01 0.03,-2.12 h 0.01 0.01 0.01 l 0.29,-7.41 0.18,-3.49 h 0.01 l 0.17,-4.39 0.1,0.11 h 0.03 0.13 l 0.19,0.51 0.04,0.24 0.11,-1.11 0.02,0.35 0.05,1.17 0.14,-1.17 0.2,0.35 0.1,-0.4 v 0 l 0.06,-0.48 0.43,0.31 0.13,0.02 0.06,-0.22 0.19,0.37 h 0.09 0.02 0.21 l 0.07,0.16 0.22,0.24 0.49,0.64 0.04,0.07 0.17,2.11 h 0.05 0.17 l 0.06,-0.31 0.15,-0.76 h 0.02 0.06 0.09 l 0.17,0.17 0.27,0.33 0.2,-0.55 h 0.01 l 0.01,0.01 0.08,0.17 h 0.06 0.01 0.01 v 0 h 0.02 0.02 l 0.07,-0.66 h 0.1 0.01 0.11 0.11 l 0.08,-0.66 h 0.13 l 0.06,2.25 h 0.01 v 0 0 h 0.08 v 0 h 0.02 0.06 0.01 0.01 0.01 v 0 l 0.3,-0.64 0.11,-0.04 0.23,-0.04 h 0.04 l 0.01,-0.02 0.08,0.02 0.13,-0.56 0.1,-0.47 0.39,-1.05 0.23,-0.48 h 0.04 v 0 l 0.02,0.21 0.12,-0.58 h 0.06 0.02 0.03 0.02 0.1 0.02 0.01 0.01 0.01 0.02 0.01 l 0.01,-0.24 0.08,0.26 0.05,-0.22 0.07,0.14 h 0.02 l 0.03,1.7 v 1.47 l 0.21,-2.01 0.16,-0.22 0.04,1.19 0.01,-0.19 0.07,0.55 0.06,0.45 h 0.03 l 0.01,-1.21 h 0.01 l 0.01,1.21 v 0 0 h 0.01 v 0 -2.83 0 l 0.19,1.53 0.02,0.44"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path2203" />
+        <path
+           d="m 650.31,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2205" />
+      </g>
+    </g>
+    <g
+       id="g2207" />
+    <g
+       id="g2209"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2211"
+         clip-path="url(#clipPath2215)">
+        <path
+           d="m 666.36,1190.76 h 16.06"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2217" />
+        <path
+           d="m 666.36,1180.87 h 16.06"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2219" />
+        <path
+           d="m 666.36,1134.09 h 16.06"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2221" />
+        <path
+           d="m 667.09,976.12 0.07,0.77 0.09,-0.78 v 0 l 0.17,-4.16 h 0.07 l 0.03,0.62 h 0.06 0.03 0.07 0.01 0.01 v 0 0 h 0.01 v 0 0 h 0.02 0.02 0.01 0.02 0.01 l 0.1,0.99 h 0.05 l 0.08,-0.01 0.04,0.33 0.03,-0.33 h 0.03 0.04 0.06 0.09 0.04 0.03 0.17 0.04 l 0.04,0.53 0.03,0.45 0.05,-0.98 h 0.09 0.19 0.12 v 0 h 0.03 0.03 0.04 v 0 h 0.06 0.02 l 0.04,-0.66 h 0.15 l 0.16,0.03 0.02,0.02 0.28,0.34 0.23,-0.59 0.03,-0.04 h 0.09 0.01 0.07 l 0.11,3.32 0.2,-0.02 0.05,-0.01 h 0.03 0.02 0.01 0.01 v 0 h 0.01 0.01 0.02 v 0 0 h 0.11 v 0 h 0.06 0.1 l 0.08,-0.1 0.02,-0.01 h 0.01 v 0 h 0.05 0.02 v 0 h 0.02 0.05 0.02 l 0.11,-0.28 0.04,0.28 v 0 h 0.01 l 0.02,0.48 0.12,-0.48 h 0.01 l 0.02,-0.18 0.01,-0.11 h 0.13 l 0.19,0.21 0.13,0.1 h 0.05 v 0 l 0.12,-0.5 h 0.06 l 0.11,-2.34 h 0.08 0.08 0.06 0.08 l 0.12,3.41 0.05,-1.06 v 0 l 0.05,0.09 h 0.01 0.21 0.26 0.06 0.09 l 0.1,0.2 0.22,0.42 0.06,-2.87 0.08,0.26 0.05,-0.3 0.1,0.09 0.13,0.13 0.38,0.3 0.19,0.29 h 0.33 0.06 l 0.08,-1.61 h 0.03 0.11 0.1 l 0.13,1.16 0.26,92.52 0.1,-92.98 0.12,2.08 0.03,0.03 0.19,0.21 h 0.02 0.04 l 0.26,0.13 0.52,0.34 0.11,0.06 0.36,0.43 0.04,3.21 0.07,3.67 h 0.01 v 0 l 0.18,-0.71 0.25,-0.92 0.05,-0.21 h 0.22 l 0.24,0.63 0.36,0.45 0.16,-1 0.05,-0.3 0.17,1.95 0.29,2.79 0.36,1.99 0.15,0.85 0.51,1.97 0.32,0.54 h 0.03 0.05 0.12 0.02 l 0.16,-0.54 0.02,2.89 h 0.04"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path2223" />
+        <path
+           d="m 666.36,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2225" />
+      </g>
+    </g>
+    <g
+       id="g2227" />
+    <g
+       id="g2229"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2231"
+         clip-path="url(#clipPath2235)">
+        <path
+           d="m 682.42,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2237" />
+        <path
+           d="m 682.42,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2239" />
+        <path
+           d="m 682.42,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2241" />
+        <path
+           d="m 683.15,971.5 0.39,0.31 0.27,-0.36 0.67,0.09 0.67,-0.24 0.22,-0.11 h 0.07 v 0 h 0.01 l 0.16,0.88 v 0 h 0.02 0.12 l 0.07,0.07 0.4,0.47 h 0.1 v 0 h 0.06 l 0.11,0.5 0.06,0.32 0.1,1.24 0.3,0.68 0.16,0.66 0.05,1.08 0.12,0.45 h 0.05 v 0 l 0.49,0.29 0.48,0.07 0.19,-0.11 0.42,-0.25 0.25,-0.13 0.25,-0.13 h 0.07 v 0 h 0.03 0.03 0.01 l 0.05,0.11 h 0.01 v 0 h 0.01 v 0 0 0 h 0.01 v 0 0 h 0.01 0.01 v 0 h 0.02 0.04 0.01 0.03 0.08 0.03 v 0 h 0.02 0.14 l 0.06,-0.35 0.1,0.35 h 0.02 0.06 v 0 0 0 0 0 l 0.02,-4.9 h 0.04 0.18 0.04 0.25 0.09 0.03 l 0.02,-0.78 h 0.1 l 0.01,0.12 h 0.03 v 0 h 0.01 v 0 h 0.09 0.31 l 0.05,0.34 h 0.01 l 0.09,-0.52 0.03,-0.1 0.07,0.13 h 0.02 0.02 0.02 v 0 h 0.01 0.02 l 0.01,0.13 0.05,0.52 h 0.01 l 0.31,-0.43 0.13,0.08 h 0.03 v 0 l 0.09,3.61 h 0.03 v 0 h 0.02 v 0 h 0.05 l 0.25,2.33 h 0.37 0.67 0.02 0.03 l 0.13,-0.5 h 0.13 l 0.2,-1.03 0.11,0.5 v 0 h 0.05 v 0 h 0.01 0.01 l 0.34,-1.24 0.24,8.82 0.07,6.68 0.21,2.34 h 0.01 0.07 v 0 h 0.37 0.1 0.01 0.01 l 0.03,-4.94 0.05,-3.26 0.05,0.37 v 0 h 0.04 0.09 0.01 v 0 0 h 0.01 v 0 h 0.01 0.01 0.25 0.1 0.02 v 0 l 0.03,-0.17 v 0 l 0.52,-0.35 0.44,-0.21 0.04,-2.58 h 0.08 v 0"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path2243" />
+        <path
+           d="m 682.42,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2245" />
+      </g>
+    </g>
+    <g
+       id="g2247" />
+    <g
+       id="g2249"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2251"
+         clip-path="url(#clipPath2255)">
+        <path
+           d="m 698.47,1190.76 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2257" />
+        <path
+           d="m 698.47,1180.87 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2259" />
+        <path
+           d="m 698.47,1134.09 h 16.05"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path2261" />
+        <path
+           d="m 699.2,970.32 h 0.09 0.03 0.01 0.04 0.03 0.1 0.05 v 0 h 0.03 0.11 0.08 0.13 0.07 0.06 0.04 0.03 0.01 0.24 v 0 h 0.05 0.17 0.11 0.06 0.14 0.1 0.14 0.07 0.01 0.24 0.03 0.03 0.14 0.03 0.11 0.07 0.01 0.03 0.02 0.01 0.02 0.33 0.3 v 0 h 0.01 0.06 0.02 0.04 0.13 0.05 0.08 0.06 0.02 0.02 0.07 0.01 0.05 0.04 0.03 0.01 0.02 0.04 0.04 0.01 0.04 0.01 0.18 v 0 h 0.04 0.16 v 0 h 0.16 0.12 v 0 h 0.02 0.02 0.02 v 0 h 0.05 0.09 0.01 0.28 0.16 0.22 0.08 0.24 0.02 0.03 v 0 0 h 0.01 v 0 h 0.01 v 0 h 0.01 0.01 0.15 0.07 0.14 0.06 v 0 0 h 0.12 v 0 h 0.07 0.03 v 0 0 0 h 0.01 v 0 0 0 h 0.1 0.14 0.06 0.08 0.03 0.01 0.05 0.01 v 0 0 h 0.05 0.34 0.09 v 0 h 0.07 0.07 v 0 0 h 0.1 0.01 0.04 0.05 0.06 0.04 0.13 0.05 0.06 0.05 0.07 0.01 0.04 0.01 0.02 0.01 0.04 0.07 0.06 v 0 h 0.02 0.03 0.01 0.06 0.01 0.01 0.01 0.01 0.01 0.17 0.04 0.29 0.1 0.04 0.08 v 0 h 0.02 0.01 0.23 0.19 0.01 0.05 0.02 0.1 0.02 0.12 0.02 0.24 0.24 0.15 0.04 v 0 h 0.04 0.01 0.07 0.15 0.01 0.04 0.02 0.05 0.02 0.07 0.09 0.06 0.05 0.04 0.01 0.05 0.04 0.04 0.01 0.06 0.02 0.16 0.23 0.09 0.04 0.02 0.01 v 0 h 0.01 0.02 0.04 0.03 v 0 h 0.02 0.09 0.09 0.02 0.03 0.03 0.03 0.27 0.02 0.02 0.03 0.01 0.02 0.02 0.03 0.01 0.01 0.04 0.01 0.03 0.02 0.05 0.02 0.02 0.01 0.07 0.02 0.01 0.07 0.01 0.02 0.12 0.08 0.08 0.21 0.06 0.03 0.01 0.02 0.04"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path2263" />
+        <path
+           d="m 698.47,959.3 h 16.05 v 242.49 h -16.05 z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path2265" />
+      </g>
+    </g>
+    <g
+       id="g2267" />
+    <g
+       id="g2269">
+      <g
+         id="g2271"
+         clip-path="url(#clipPath2275)" />
+    </g>
+    <g
+       id="g2277"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2279"
+         clip-path="url(#clipPath2283)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,398.17,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2287"><tspan
+             x="0"
+             y="0"
+             id="tspan2285">1</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2289">
+      <g
+         id="g2291"
+         clip-path="url(#clipPath2295)" />
+    </g>
+    <g
+       id="g2297">
+      <g
+         id="g2299"
+         clip-path="url(#clipPath2303)" />
+    </g>
+    <g
+       id="g2305" />
+    <g
+       id="g2307">
+      <g
+         id="g2309"
+         clip-path="url(#clipPath2313)" />
+    </g>
+    <g
+       id="g2315"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2317"
+         clip-path="url(#clipPath2321)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,414.22,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2325"><tspan
+             x="0"
+             y="0"
+             id="tspan2323">2</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2327">
+      <g
+         id="g2329"
+         clip-path="url(#clipPath2333)" />
+    </g>
+    <g
+       id="g2335">
+      <g
+         id="g2337"
+         clip-path="url(#clipPath2341)" />
+    </g>
+    <g
+       id="g2343" />
+    <g
+       id="g2345">
+      <g
+         id="g2347"
+         clip-path="url(#clipPath2351)" />
+    </g>
+    <g
+       id="g2353"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2355"
+         clip-path="url(#clipPath2359)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,430.27,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2363"><tspan
+             x="0"
+             y="0"
+             id="tspan2361">3</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2365">
+      <g
+         id="g2367"
+         clip-path="url(#clipPath2371)" />
+    </g>
+    <g
+       id="g2373">
+      <g
+         id="g2375"
+         clip-path="url(#clipPath2379)" />
+    </g>
+    <g
+       id="g2381" />
+    <g
+       id="g2383">
+      <g
+         id="g2385"
+         clip-path="url(#clipPath2389)" />
+    </g>
+    <g
+       id="g2391"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2393"
+         clip-path="url(#clipPath2397)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,446.32,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2401"><tspan
+             x="0"
+             y="0"
+             id="tspan2399">4</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2403">
+      <g
+         id="g2405"
+         clip-path="url(#clipPath2409)" />
+    </g>
+    <g
+       id="g2411">
+      <g
+         id="g2413"
+         clip-path="url(#clipPath2417)" />
+    </g>
+    <g
+       id="g2419" />
+    <g
+       id="g2421">
+      <g
+         id="g2423"
+         clip-path="url(#clipPath2427)" />
+    </g>
+    <g
+       id="g2429"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2431"
+         clip-path="url(#clipPath2435)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,462.38,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2439"><tspan
+             x="0"
+             y="0"
+             id="tspan2437">5</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2441">
+      <g
+         id="g2443"
+         clip-path="url(#clipPath2447)" />
+    </g>
+    <g
+       id="g2449">
+      <g
+         id="g2451"
+         clip-path="url(#clipPath2455)" />
+    </g>
+    <g
+       id="g2457" />
+    <g
+       id="g2459">
+      <g
+         id="g2461"
+         clip-path="url(#clipPath2465)" />
+    </g>
+    <g
+       id="g2467"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2469"
+         clip-path="url(#clipPath2473)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,478.43,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2477"><tspan
+             x="0"
+             y="0"
+             id="tspan2475">6</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2479">
+      <g
+         id="g2481"
+         clip-path="url(#clipPath2485)" />
+    </g>
+    <g
+       id="g2487">
+      <g
+         id="g2489"
+         clip-path="url(#clipPath2493)" />
+    </g>
+    <g
+       id="g2495" />
+    <g
+       id="g2497">
+      <g
+         id="g2499"
+         clip-path="url(#clipPath2503)" />
+    </g>
+    <g
+       id="g2505"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2507"
+         clip-path="url(#clipPath2511)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,494.48,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2515"><tspan
+             x="0"
+             y="0"
+             id="tspan2513">7</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2517">
+      <g
+         id="g2519"
+         clip-path="url(#clipPath2523)" />
+    </g>
+    <g
+       id="g2525">
+      <g
+         id="g2527"
+         clip-path="url(#clipPath2531)" />
+    </g>
+    <g
+       id="g2533" />
+    <g
+       id="g2535">
+      <g
+         id="g2537"
+         clip-path="url(#clipPath2541)" />
+    </g>
+    <g
+       id="g2543"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2545"
+         clip-path="url(#clipPath2549)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,510.53,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2553"><tspan
+             x="0"
+             y="0"
+             id="tspan2551">8</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2555">
+      <g
+         id="g2557"
+         clip-path="url(#clipPath2561)" />
+    </g>
+    <g
+       id="g2563">
+      <g
+         id="g2565"
+         clip-path="url(#clipPath2569)" />
+    </g>
+    <g
+       id="g2571" />
+    <g
+       id="g2573">
+      <g
+         id="g2575"
+         clip-path="url(#clipPath2579)" />
+    </g>
+    <g
+       id="g2581"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2583"
+         clip-path="url(#clipPath2587)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,526.58,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2591"><tspan
+             x="0"
+             y="0"
+             id="tspan2589">9</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2593">
+      <g
+         id="g2595"
+         clip-path="url(#clipPath2599)" />
+    </g>
+    <g
+       id="g2601">
+      <g
+         id="g2603"
+         clip-path="url(#clipPath2607)" />
+    </g>
+    <g
+       id="g2609" />
+    <g
+       id="g2611">
+      <g
+         id="g2613"
+         clip-path="url(#clipPath2617)" />
+    </g>
+    <g
+       id="g2619"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2621"
+         clip-path="url(#clipPath2625)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,539.3,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2629"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan2627">10</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2631">
+      <g
+         id="g2633"
+         clip-path="url(#clipPath2637)" />
+    </g>
+    <g
+       id="g2639">
+      <g
+         id="g2641"
+         clip-path="url(#clipPath2645)" />
+    </g>
+    <g
+       id="g2647" />
+    <g
+       id="g2649">
+      <g
+         id="g2651"
+         clip-path="url(#clipPath2655)" />
+    </g>
+    <g
+       id="g2657"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2659"
+         clip-path="url(#clipPath2663)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,555.35,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2667"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan2665">11</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2669">
+      <g
+         id="g2671"
+         clip-path="url(#clipPath2675)" />
+    </g>
+    <g
+       id="g2677">
+      <g
+         id="g2679"
+         clip-path="url(#clipPath2683)" />
+    </g>
+    <g
+       id="g2685" />
+    <g
+       id="g2687">
+      <g
+         id="g2689"
+         clip-path="url(#clipPath2693)" />
+    </g>
+    <g
+       id="g2695"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2697"
+         clip-path="url(#clipPath2701)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,571.4,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2705"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan2703">12</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2707">
+      <g
+         id="g2709"
+         clip-path="url(#clipPath2713)" />
+    </g>
+    <g
+       id="g2715">
+      <g
+         id="g2717"
+         clip-path="url(#clipPath2721)" />
+    </g>
+    <g
+       id="g2723" />
+    <g
+       id="g2725">
+      <g
+         id="g2727"
+         clip-path="url(#clipPath2731)" />
+    </g>
+    <g
+       id="g2733"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2735"
+         clip-path="url(#clipPath2739)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,587.46,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2743"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan2741">13</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2745">
+      <g
+         id="g2747"
+         clip-path="url(#clipPath2751)" />
+    </g>
+    <g
+       id="g2753">
+      <g
+         id="g2755"
+         clip-path="url(#clipPath2759)" />
+    </g>
+    <g
+       id="g2761" />
+    <g
+       id="g2763">
+      <g
+         id="g2765"
+         clip-path="url(#clipPath2769)" />
+    </g>
+    <g
+       id="g2771"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2773"
+         clip-path="url(#clipPath2777)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,603.51,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2781"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan2779">14</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2783">
+      <g
+         id="g2785"
+         clip-path="url(#clipPath2789)" />
+    </g>
+    <g
+       id="g2791">
+      <g
+         id="g2793"
+         clip-path="url(#clipPath2797)" />
+    </g>
+    <g
+       id="g2799" />
+    <g
+       id="g2801">
+      <g
+         id="g2803"
+         clip-path="url(#clipPath2807)" />
+    </g>
+    <g
+       id="g2809"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2811"
+         clip-path="url(#clipPath2815)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,619.56,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2819"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan2817">15</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2821">
+      <g
+         id="g2823"
+         clip-path="url(#clipPath2827)" />
+    </g>
+    <g
+       id="g2829">
+      <g
+         id="g2831"
+         clip-path="url(#clipPath2835)" />
+    </g>
+    <g
+       id="g2837" />
+    <g
+       id="g2839">
+      <g
+         id="g2841"
+         clip-path="url(#clipPath2845)" />
+    </g>
+    <g
+       id="g2847"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2849"
+         clip-path="url(#clipPath2853)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,635.61,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2857"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan2855">16</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2859">
+      <g
+         id="g2861"
+         clip-path="url(#clipPath2865)" />
+    </g>
+    <g
+       id="g2867">
+      <g
+         id="g2869"
+         clip-path="url(#clipPath2873)" />
+    </g>
+    <g
+       id="g2875" />
+    <g
+       id="g2877">
+      <g
+         id="g2879"
+         clip-path="url(#clipPath2883)" />
+    </g>
+    <g
+       id="g2885"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2887"
+         clip-path="url(#clipPath2891)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,651.67,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2895"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan2893">17</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2897">
+      <g
+         id="g2899"
+         clip-path="url(#clipPath2903)" />
+    </g>
+    <g
+       id="g2905">
+      <g
+         id="g2907"
+         clip-path="url(#clipPath2911)" />
+    </g>
+    <g
+       id="g2913" />
+    <g
+       id="g2915">
+      <g
+         id="g2917"
+         clip-path="url(#clipPath2921)" />
+    </g>
+    <g
+       id="g2923"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2925"
+         clip-path="url(#clipPath2929)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,667.72,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2933"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan2931">18</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2935">
+      <g
+         id="g2937"
+         clip-path="url(#clipPath2941)" />
+    </g>
+    <g
+       id="g2943">
+      <g
+         id="g2945"
+         clip-path="url(#clipPath2949)" />
+    </g>
+    <g
+       id="g2951" />
+    <g
+       id="g2953">
+      <g
+         id="g2955"
+         clip-path="url(#clipPath2959)" />
+    </g>
+    <g
+       id="g2961"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g2963"
+         clip-path="url(#clipPath2967)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,683.77,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text2971"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan2969">19</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g2973">
+      <g
+         id="g2975"
+         clip-path="url(#clipPath2979)" />
+    </g>
+    <g
+       id="g2981">
+      <g
+         id="g2983"
+         clip-path="url(#clipPath2987)" />
+    </g>
+    <g
+       id="g2989" />
+    <g
+       id="g2991">
+      <g
+         id="g2993"
+         clip-path="url(#clipPath2997)" />
+    </g>
+    <g
+       id="g2999"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <g
+         id="g3001"
+         clip-path="url(#clipPath3005)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,702.49,944.98)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text3009"><tspan
+             x="0"
+             y="0"
+             id="tspan3007">X</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g3011">
+      <g
+         id="g3013"
+         clip-path="url(#clipPath3017)" />
+    </g>
+    <g
+       id="g3019">
+      <g
+         id="g3021"
+         clip-path="url(#clipPath3025)" />
+    </g>
+    <g
+       id="g3027" />
+    <g
+       id="g3029" />
+    <g
+       id="g3031" />
+    <g
+       id="g3033" />
+    <g
+       id="g3035" />
+    <g
+       id="g3037" />
+    <g
+       id="g3039" />
+    <g
+       id="g3041" />
+    <g
+       id="g3043" />
+    <g
+       id="g3045" />
+    <g
+       id="g3047" />
+    <g
+       id="g3049" />
+    <g
+       id="g3051" />
+    <g
+       id="g3053" />
+    <g
+       id="g3055" />
+    <g
+       id="g3057" />
+    <g
+       id="g3059" />
+    <g
+       id="g3061" />
+    <g
+       id="g3063" />
+    <g
+       id="g3065" />
+    <g
+       id="g3067" />
+    <g
+       id="g3069" />
+    <g
+       id="g3071" />
+    <g
+       id="g3073" />
+    <g
+       id="g3075" />
+    <g
+       id="g3077" />
+    <g
+       id="g3079" />
+    <g
+       id="g3081" />
+    <g
+       id="g3083" />
+    <g
+       id="g3085" />
+    <g
+       id="g3087" />
+    <g
+       id="g3089" />
+    <g
+       id="g3091" />
+    <g
+       id="g3093" />
+    <g
+       id="g3095" />
+    <g
+       id="g3097" />
+    <g
+       id="g3099" />
+    <g
+       id="g3101" />
+    <g
+       id="g3103" />
+    <g
+       id="g3105" />
+    <g
+       id="g3107" />
+    <g
+       id="g3109" />
+    <g
+       id="g3111" />
+    <g
+       id="g3113" />
+    <g
+       id="g3115" />
+    <g
+       id="g3117" />
+    <g
+       id="g3119" />
+    <g
+       id="g3121" />
+    <g
+       id="g3123" />
+    <g
+       id="g3125" />
+    <g
+       id="g3127" />
+    <g
+       id="g3129" />
+    <g
+       id="g3131" />
+    <g
+       id="g3133" />
+    <g
+       id="g3135" />
+    <g
+       id="g3137" />
+    <g
+       id="g3139" />
+    <g
+       id="g3141" />
+    <g
+       id="g3143" />
+    <g
+       id="g3145" />
+    <g
+       id="g3147" />
+    <g
+       id="g3149" />
+    <g
+       id="g3151" />
+    <g
+       id="g3153" />
+    <g
+       id="g3155" />
+    <g
+       id="g3157" />
+    <g
+       id="g3159" />
+    <g
+       id="g3161" />
+    <g
+       id="g3163" />
+    <g
+       id="g3165" />
+    <g
+       id="g3167" />
+    <g
+       id="g3169" />
+    <g
+       id="g3171" />
+    <g
+       id="g3173" />
+    <g
+       id="g3175" />
+    <g
+       id="g3177" />
+    <g
+       id="g3179" />
+    <g
+       id="g3181" />
+    <g
+       id="g3183" />
+    <g
+       id="g3185" />
+    <g
+       id="g3187" />
+    <g
+       id="g3189" />
+    <g
+       id="g3191" />
+    <g
+       id="g3193" />
+    <g
+       id="g3195" />
+    <g
+       id="g3197" />
+    <g
+       id="g3199" />
+    <g
+       id="g3201" />
+    <g
+       id="g3203" />
+    <g
+       id="g3205" />
+    <g
+       id="g3207" />
+    <g
+       id="g3209" />
+    <g
+       id="g3211" />
+    <g
+       id="g3213" />
+    <g
+       id="g3215" />
+    <g
+       id="g3217" />
+    <g
+       id="g3219" />
+    <g
+       id="g3221" />
+    <g
+       id="g3223" />
+    <g
+       id="g3225" />
+    <g
+       id="g3227" />
+    <g
+       id="g3229" />
+    <g
+       id="g3231" />
+    <g
+       id="g3233" />
+    <g
+       id="g3235" />
+    <g
+       id="g3237" />
+    <g
+       id="g3239" />
+    <g
+       id="g3241" />
+    <g
+       id="g3243" />
+    <g
+       id="g3245" />
+    <g
+       id="g3247" />
+    <g
+       id="g3249" />
+    <g
+       id="g3251" />
+    <g
+       id="g3253" />
+    <g
+       id="g3255" />
+    <g
+       id="g3257" />
+    <g
+       id="g3259" />
+    <g
+       id="g3261" />
+    <g
+       id="g3263" />
+    <g
+       id="g3265" />
+    <g
+       id="g3267" />
+    <g
+       id="g3269" />
+    <g
+       id="g3271" />
+    <g
+       id="g3273" />
+    <g
+       id="g3275" />
+    <g
+       id="g3277" />
+    <g
+       id="g3279" />
+    <g
+       id="g3281" />
+    <g
+       id="g3283" />
+    <g
+       id="g3285" />
+    <g
+       id="g3287" />
+    <g
+       id="g3289" />
+    <g
+       id="g3291" />
+    <g
+       id="g3293" />
+    <g
+       id="g3295" />
+    <g
+       id="g3297" />
+    <g
+       id="g3299" />
+    <g
+       id="g3301" />
+    <g
+       id="g3303" />
+    <g
+       id="g3305" />
+    <g
+       id="g3307" />
+    <g
+       id="g3309" />
+    <g
+       id="g3311" />
+    <g
+       id="g3313" />
+    <g
+       id="g3315" />
+    <g
+       id="g3317" />
+    <g
+       id="g3319" />
+    <g
+       id="g3321" />
+    <g
+       id="g3323" />
+    <g
+       id="g3325" />
+    <g
+       id="g3327" />
+    <g
+       id="g3329" />
+    <g
+       id="g3331" />
+    <g
+       id="g3333" />
+    <g
+       id="g3335" />
+    <g
+       id="g3337" />
+    <g
+       id="g3339" />
+    <g
+       id="g3341" />
+    <g
+       id="g3343" />
+    <g
+       id="g3345" />
+    <g
+       id="g3347" />
+    <g
+       id="g3349" />
+    <g
+       id="g3351" />
+    <g
+       id="g3353" />
+    <g
+       id="g3355" />
+    <g
+       id="g3357" />
+    <g
+       id="g3359" />
+    <g
+       id="g3361" />
+    <g
+       id="g3363" />
+    <g
+       id="g3365" />
+    <g
+       id="g3367" />
+    <g
+       id="g3369" />
+    <g
+       id="g3371" />
+    <g
+       id="g3373" />
+    <g
+       id="g3375" />
+    <g
+       id="g3377" />
+    <g
+       id="g3379" />
+    <g
+       id="g3381" />
+    <g
+       id="g3383" />
+    <g
+       id="g3385" />
+    <g
+       id="g3387" />
+    <g
+       id="g3389" />
+    <g
+       id="g3391" />
+    <g
+       id="g3393" />
+    <g
+       id="g3395" />
+    <g
+       id="g3397" />
+    <g
+       id="g3399" />
+    <g
+       id="g3401" />
+    <g
+       id="g3403" />
+    <g
+       id="g3405" />
+    <g
+       id="g3407" />
+    <g
+       id="g3409" />
+    <g
+       id="g3411" />
+    <g
+       id="g3413" />
+    <g
+       id="g3415" />
+    <g
+       id="g3417" />
+    <g
+       id="g3419" />
+    <g
+       id="g3421" />
+    <g
+       id="g3423" />
+    <g
+       id="g3425" />
+    <g
+       id="g3427" />
+    <g
+       id="g3429" />
+    <g
+       id="g3431" />
+    <g
+       id="g3433" />
+    <g
+       id="g3435" />
+    <g
+       id="g3437" />
+    <g
+       id="g3439" />
+    <g
+       id="g3441" />
+    <g
+       id="g3443" />
+    <g
+       id="g3445" />
+    <g
+       id="g3447" />
+    <g
+       id="g3449" />
+    <g
+       id="g3451" />
+    <g
+       id="g3453" />
+    <g
+       id="g3455" />
+    <g
+       id="g3457" />
+    <g
+       id="g3459" />
+    <g
+       id="g3461" />
+    <g
+       id="g3463" />
+    <g
+       id="g3465" />
+    <g
+       id="g3467" />
+    <g
+       id="g3469" />
+    <g
+       id="g3471" />
+    <g
+       id="g3473"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,383.54,967.09)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3477"><tspan
+           x="0"
+           y="0"
+           id="tspan3475">0</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,383.54,1041.06)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3481"><tspan
+           x="0"
+           y="0"
+           id="tspan3479">5</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,378.54,1115.03)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3485"><tspan
+           x="0 5.0040002"
+           y="0"
+           sodipodi:role="line"
+           id="tspan3483">10</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,378.54,1189)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3489"><tspan
+           x="0 5.0040002"
+           y="0"
+           sodipodi:role="line"
+           id="tspan3487">15</tspan></text>
+    </g>
+    <g
+       id="g3491" />
+    <g
+       id="g3493" />
+    <g
+       id="g3495" />
+    <g
+       id="g3497" />
+    <g
+       id="g3499" />
+    <g
+       id="g3501" />
+    <g
+       id="g3503" />
+    <g
+       id="g3505" />
+    <g
+       id="g3507" />
+    <g
+       id="g3509" />
+    <g
+       id="g3511" />
+    <g
+       id="g3513" />
+    <g
+       id="g3515" />
+    <g
+       id="g3517" />
+    <g
+       id="g3519" />
+    <g
+       id="g3521" />
+    <g
+       id="g3523" />
+    <g
+       id="g3525" />
+    <g
+       id="g3527" />
+    <g
+       id="g3529" />
+    <g
+       id="g3531" />
+    <g
+       id="g3533" />
+    <g
+       id="g3535" />
+    <g
+       id="g3537" />
+    <g
+       id="g3539" />
+    <g
+       id="g3541" />
+    <g
+       id="g3543" />
+    <g
+       id="g3545" />
+    <g
+       id="g3547" />
+    <g
+       id="g3549" />
+    <g
+       id="g3551" />
+    <g
+       id="g3553" />
+    <g
+       id="g3555" />
+    <g
+       id="g3557" />
+    <g
+       id="g3559" />
+    <g
+       id="g3561" />
+    <g
+       id="g3563" />
+    <g
+       id="g3565" />
+    <g
+       id="g3567" />
+    <g
+       id="g3569" />
+    <g
+       id="g3571" />
+    <g
+       id="g3573" />
+    <g
+       id="g3575" />
+    <g
+       id="g3577" />
+    <g
+       id="g3579" />
+    <g
+       id="g3581" />
+    <g
+       id="g3583" />
+    <g
+       id="g3585"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,34.444977)">
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,520.99,925.9)"
+         style="font-variant:normal;font-weight:normal;font-size:11px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3589"><tspan
+           x="0 7.9419999 14.058 17.721001 23.837 33 39.116001 44.616001 50.731998 59.895"
+           y="0"
+           sodipodi:role="line"
+           id="tspan3587">Chromosome</tspan></text>
+    </g>
+    <g
+       id="g3591" />
+    <g
+       id="g3593"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <text
+         xml:space="preserve"
+         transform="matrix(0,1,1,0,373.38,1054.26)"
+         style="font-variant:normal;font-weight:normal;font-size:11px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3597"><tspan
+           x="0 6.1160002 14.674 22.615999 25.674 31.174 36.674 42.790001 46.452999"
+           y="0"
+           sodipodi:role="line"
+           id="tspan3595">LOD score</tspan></text>
+    </g>
+    <g
+       id="g3599" />
+    <g
+       id="g3601" />
+    <g
+       id="g3603" />
+    <g
+       id="g3605" />
+    <g
+       id="g3607" />
+    <g
+       id="g3609"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,28.490219)">
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,535.99,1209.9)"
+         style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3613"><tspan
+           x="0 8.6639996 15.336 19.332001 26.004 29.34"
+           y="0"
+           sodipodi:role="line"
+           id="tspan3611">Data 3</tspan></text>
+    </g>
+    <g
+       id="g3615" />
+    <g
+       id="g3617" />
+    <g
+       id="g3619" />
+    <g
+       id="g3621" />
+    <g
+       id="g3623" />
+    <g
+       id="g3625" />
+    <g
+       id="g3627" />
+    <g
+       id="g3629" />
+    <g
+       id="g3631" />
+    <g
+       id="g3633" />
+    <g
+       id="g3635" />
+    <g
+       id="g3637" />
+    <g
+       id="g3639" />
+    <g
+       id="g3641" />
+    <g
+       id="g3643">
+      <g
+         id="g3645"
+         clip-path="url(#clipPath3649)" />
+    </g>
+    <g
+       id="g3651" />
+    <g
+       id="g3653"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,25.546771)">
+      <g
+         id="g3655"
+         clip-path="url(#clipPath3659)">
+        <path
+           d="M 33.48,883.85 H 210.52"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3661" />
+        <path
+           d="M 33.48,876.65 H 210.52"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path3663" />
+        <path
+           d="M 33.48,823.05 H 210.52"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path3665" />
+        <path
+           d="m 44.03,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3667" />
+        <path
+           d="m 60.13,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3669" />
+        <path
+           d="m 60.76,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3671" />
+        <path
+           d="m 64.6,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3673" />
+        <path
+           d="m 67.35,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3675" />
+        <path
+           d="m 76.22,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3677" />
+        <path
+           d="m 87.75,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3679" />
+        <path
+           d="m 92.32,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3681" />
+        <path
+           d="m 95.7,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3683" />
+        <path
+           d="m 100.48,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3685" />
+        <path
+           d="m 103.99,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3687" />
+        <path
+           d="m 108.41,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3689" />
+        <path
+           d="m 114.51,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3691" />
+        <path
+           d="m 119.79,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3693" />
+        <path
+           d="m 124.51,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3695" />
+        <path
+           d="m 125.88,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3697" />
+        <path
+           d="m 132.49,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3699" />
+        <path
+           d="m 134,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3701" />
+        <path
+           d="m 140.03,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3703" />
+        <path
+           d="m 140.6,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3705" />
+        <path
+           d="m 148.62,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3707" />
+        <path
+           d="m 156.7,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3709" />
+        <path
+           d="m 160.5,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3711" />
+        <path
+           d="m 160.59,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3713" />
+        <path
+           d="m 168.4,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3715" />
+        <path
+           d="m 168.95,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3717" />
+        <path
+           d="m 169.51,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3719" />
+        <path
+           d="m 170.21,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3721" />
+        <path
+           d="m 171.42,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3723" />
+        <path
+           d="m 172.79,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3725" />
+        <path
+           d="m 174.65,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3727" />
+        <path
+           d="m 177.65,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3729" />
+        <path
+           d="m 178.22,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3731" />
+        <path
+           d="m 178.22,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3733" />
+        <path
+           d="m 178.74,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3735" />
+        <path
+           d="m 180.48,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3737" />
+        <path
+           d="m 182.9,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3739" />
+        <path
+           d="m 185.32,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3741" />
+        <path
+           d="m 188.89,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3743" />
+        <path
+           d="m 191.38,633.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3745" />
+        <path
+           d="m 44.03,645.59 16.1,1.03 0.63,0.04 3.84,0.52 2.75,-1.52 8.87,-0.41 11.53,1.49 4.57,-0.61 3.38,-0.5 4.78,-0.4 3.51,0.04 4.42,0.01 6.1,175.82 5.28,-175.86 4.72,0.13 1.37,0.03 6.61,0.29 1.51,1.19 6.03,-1.33 h 0.57 l 8.02,-0.34 h 8.08 3.8 0.09 l 7.81,0.04 0.55,1.21 0.56,-1.07 0.7,0.15 1.21,0.02 1.37,0.49 1.86,0.9 3,-0.42 0.57,-0.04 v 0 l 0.52,-1.24 1.74,-0.04 h 2.42 l 2.42,0.25 3.57,-0.23 2.49,0.21"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path3747" />
+        <path
+           d="M 33.48,633.28 H 210.52 V 895.79 H 33.48 Z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3749" />
+      </g>
+    </g>
+    <g
+       id="g3751" />
+    <g
+       id="g3753">
+      <g
+         id="g3755"
+         clip-path="url(#clipPath3759)" />
+    </g>
+    <g
+       id="g3761" />
+    <g
+       id="g3763" />
+    <g
+       id="g3765" />
+    <g
+       id="g3767" />
+    <g
+       id="g3769" />
+    <g
+       id="g3771" />
+    <g
+       id="g3773" />
+    <g
+       id="g3775" />
+    <g
+       id="g3777" />
+    <g
+       id="g3779" />
+    <g
+       id="g3781" />
+    <g
+       id="g3783" />
+    <g
+       id="g3785" />
+    <g
+       id="g3787" />
+    <g
+       id="g3789"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,25.546771)">
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,23.54,641.98)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3793"><tspan
+           x="0"
+           y="0"
+           id="tspan3791">0</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,23.54,703.5)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3797"><tspan
+           x="0"
+           y="0"
+           id="tspan3795">5</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,18.54,765.02)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3801"><tspan
+           x="0 5.0040002"
+           y="0"
+           sodipodi:role="line"
+           id="tspan3799">10</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,18.54,826.54)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3805"><tspan
+           x="0 5.0040002"
+           y="0"
+           sodipodi:role="line"
+           id="tspan3803">15</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,18.54,888.06)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3809"><tspan
+           x="0 5.0040002"
+           y="0"
+           sodipodi:role="line"
+           id="tspan3807">20</tspan></text>
+    </g>
+    <g
+       id="g3811" />
+    <g
+       id="g3813" />
+    <g
+       id="g3815" />
+    <g
+       id="g3817" />
+    <g
+       id="g3819" />
+    <g
+       id="g3821" />
+    <g
+       id="g3823" />
+    <g
+       id="g3825" />
+    <g
+       id="g3827" />
+    <g
+       id="g3829"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,30.046771)">
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,90.19,619.9)"
+         style="font-variant:normal;font-weight:normal;font-size:11px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3833"><tspan
+           x="0 6.7870002 12.903 18.403 20.844999 23.903 26.344999 32.460999 38.577 41.634998 45.298 50.798 59.960999"
+           y="0"
+           sodipodi:role="line"
+           id="tspan3831">Position (cM)</tspan></text>
+    </g>
+    <g
+       id="g3835" />
+    <g
+       id="g3837"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,25.546771)">
+      <text
+         xml:space="preserve"
+         transform="matrix(0,1,1,0,13.38,738.25)"
+         style="font-variant:normal;font-weight:normal;font-size:11px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3841"><tspan
+           x="0 6.1160002 14.674 22.615999 25.674 31.174 36.674 42.790001 46.452999"
+           y="0"
+           sodipodi:role="line"
+           id="tspan3839">LOD score</tspan></text>
+    </g>
+    <g
+       id="g3843" />
+    <g
+       id="g3845" />
+    <g
+       id="g3847" />
+    <g
+       id="g3849" />
+    <g
+       id="g3851" />
+    <g
+       id="g3853"
+       transform="matrix(0.95286614,0,0,0.97941206,47.270794,24.058082)">
+      <text
+         xml:space="preserve"
+         transform="scale(1,-1)"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:'Helvetica, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3857"
+         x="74.480003"
+         y="-899.34009"><tspan
+           x="74.480003 82.124001 88.795998 95.468002 102.14 105.476"
+           y="-899.34009"
+           sodipodi:role="line"
+           id="tspan3855">Peak 1</tspan></text>
+    </g>
+    <g
+       id="g3853-8"
+       transform="matrix(0.95286614,0,0,0.97941206,-46.72695,34.979818)">
+      <text
+         xml:space="preserve"
+         transform="scale(1,-1)"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:'Helvetica, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text3857-3"
+         x="98.039848"
+         y="-903.17731"><tspan
+           sodipodi:role="line"
+           id="tspan6771"
+           x="98.039848"
+           y="-903.17731">Case 1: one marker (peaks 1 and 2)</tspan><tspan
+           sodipodi:role="line"
+           x="98.039848"
+           y="-888.17731"
+           id="tspan6881" /><tspan
+           sodipodi:role="line"
+           id="tspan6773"
+           x="98.039848"
+           y="-873.17731"></tspan></text>
+    </g>
+    <g
+       id="g3859" />
+    <g
+       id="g3861" />
+    <g
+       id="g3863" />
+    <g
+       id="g3865" />
+    <g
+       id="g3867" />
+    <g
+       id="g3869" />
+    <g
+       id="g3871" />
+    <g
+       id="g3873" />
+    <g
+       id="g3875"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g3877"
+         clip-path="url(#clipPath3881)">
+        <path
+           d="m 267.31,756.36 h 107.37 v 37.23 H 267.31 Z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3883" />
+      </g>
+    </g>
+    <g
+       id="g3885" />
+    <g
+       id="g3887"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g3889"
+         clip-path="url(#clipPath3893)">
+        <path
+           d="m 374.68,756.36 h 29.89 v 37.23 h -29.89 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3895" />
+      </g>
+    </g>
+    <g
+       id="g3897" />
+    <g
+       id="g3899"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g3901"
+         clip-path="url(#clipPath3905)">
+        <path
+           d="m 404.57,756.36 h 48.03 v 37.23 h -48.03 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3907" />
+      </g>
+    </g>
+    <g
+       id="g3909" />
+    <g
+       id="g3911"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g3913"
+         clip-path="url(#clipPath3917)">
+        <path
+           d="m 452.61,756.36 h 41.36 v 37.23 h -41.36 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3919" />
+      </g>
+    </g>
+    <g
+       id="g3921" />
+    <g
+       id="g3923"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g3925"
+         clip-path="url(#clipPath3929)">
+        <path
+           d="m 493.97,756.36 h 41.36 v 37.23 h -41.36 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3931" />
+      </g>
+    </g>
+    <g
+       id="g3933" />
+    <g
+       id="g3935"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g3937"
+         clip-path="url(#clipPath3941)">
+        <path
+           d="M 535.33,756.36 H 572 v 37.23 h -36.67 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3943" />
+      </g>
+    </g>
+    <g
+       id="g3945" />
+    <g
+       id="g3947"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g3949"
+         clip-path="url(#clipPath3953)">
+        <path
+           d="m 572,756.36 h 36.67 v 37.23 H 572 Z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3955" />
+      </g>
+    </g>
+    <g
+       id="g3957" />
+    <g
+       id="g3959"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g3961"
+         clip-path="url(#clipPath3965)">
+        <path
+           d="m 608.67,756.36 h 31.35 v 37.23 h -31.35 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3967" />
+      </g>
+    </g>
+    <g
+       id="g3969" />
+    <g
+       id="g3971"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g3973"
+         clip-path="url(#clipPath3977)">
+        <path
+           d="m 640.03,756.36 h 28.67 v 37.23 h -28.67 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3979" />
+      </g>
+    </g>
+    <g
+       id="g3981" />
+    <g
+       id="g3983"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g3985"
+         clip-path="url(#clipPath3989)">
+        <path
+           d="m 267.31,736.41 h 107.37 v 19.95 H 267.31 Z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path3991" />
+      </g>
+    </g>
+    <g
+       id="g3993" />
+    <g
+       id="g3995"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g3997"
+         clip-path="url(#clipPath4001)">
+        <path
+           d="m 374.68,736.41 h 29.89 v 19.95 h -29.89 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4003" />
+      </g>
+    </g>
+    <g
+       id="g4005" />
+    <g
+       id="g4007"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4009"
+         clip-path="url(#clipPath4013)">
+        <path
+           d="m 404.57,736.41 h 48.03 v 19.95 h -48.03 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4015" />
+      </g>
+    </g>
+    <g
+       id="g4017" />
+    <g
+       id="g4019"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4021"
+         clip-path="url(#clipPath4025)">
+        <path
+           d="m 452.61,736.41 h 41.36 v 19.95 h -41.36 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4027" />
+      </g>
+    </g>
+    <g
+       id="g4029" />
+    <g
+       id="g4031"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4033"
+         clip-path="url(#clipPath4037)">
+        <path
+           d="m 493.97,736.41 h 41.36 v 19.95 h -41.36 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4039" />
+      </g>
+    </g>
+    <g
+       id="g4041" />
+    <g
+       id="g4043"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4045"
+         clip-path="url(#clipPath4049)">
+        <path
+           d="M 535.33,736.41 H 572 v 19.95 h -36.67 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4051" />
+      </g>
+    </g>
+    <g
+       id="g4053" />
+    <g
+       id="g4055"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4057"
+         clip-path="url(#clipPath4061)">
+        <path
+           d="m 572,736.41 h 36.67 v 19.95 H 572 Z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4063" />
+      </g>
+    </g>
+    <g
+       id="g4065" />
+    <g
+       id="g4067"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4069"
+         clip-path="url(#clipPath4073)">
+        <path
+           d="m 608.67,736.41 h 31.35 v 19.95 h -31.35 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4075" />
+      </g>
+    </g>
+    <g
+       id="g4077" />
+    <g
+       id="g4079"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4081"
+         clip-path="url(#clipPath4085)">
+        <path
+           d="m 640.03,736.41 h 28.67 v 19.95 h -28.67 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4087" />
+      </g>
+    </g>
+    <g
+       id="g4089" />
+    <g
+       id="g4091"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g4093"
+         clip-path="url(#clipPath4097)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,300.98,770.67)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4101"><tspan
+             x="0 10.668 17.34 22.007999 28.68 35.352001"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4099">marker</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4103" />
+    <g
+       id="g4105"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4107"
+         clip-path="url(#clipPath4111)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,272.98,742.07)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4115"><tspan
+             x="0 9.9960003 18.66 27.323999 35.987999 42.66 49.332001 56.004002 62.675999 69.348 76.019997 82.692001 89.363998"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4113">mUNC050096588</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4117" />
+    <g
+       id="g4119"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g4121"
+         clip-path="url(#clipPath4125)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,380.35,770.67)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4129"><tspan
+             x="0 6.552 13.884"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4127">chr</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4131" />
+    <g
+       id="g4133"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4135"
+         clip-path="url(#clipPath4139)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,386.29,742.07)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4143"><tspan
+             x="0"
+             y="0"
+             id="tspan4141">5</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4145" />
+    <g
+       id="g4147"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g4149"
+         clip-path="url(#clipPath4153)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,417.92,770.67)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4157"><tspan
+             x="0 7.3319998 14.664"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4155">pos</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4159" />
+    <g
+       id="g4161"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4163"
+         clip-path="url(#clipPath4167)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,410.24,742.07)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4171"><tspan
+             x="0 6.6719999 13.344 16.68 23.351999 30.024"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4169">24.069</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4173" />
+    <g
+       id="g4175"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g4177"
+         clip-path="url(#clipPath4181)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,458.28,779.31)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4185"><tspan
+             x="0 6.6719999 10.008 13.344 20.016001 23.351999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4183">allele</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,469.95,762.03)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4189"><tspan
+             x="0"
+             y="0"
+             id="tspan4187">1</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4191" />
+    <g
+       id="g4193"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4195"
+         clip-path="url(#clipPath4199)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,469.29,742.07)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4203"><tspan
+             x="0"
+             y="0"
+             id="tspan4201">A</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4205" />
+    <g
+       id="g4207"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g4209"
+         clip-path="url(#clipPath4213)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,499.64,779.31)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4217"><tspan
+             x="0 6.6719999 10.008 13.344 20.016001 23.351999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4215">allele</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,511.31,762.03)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4221"><tspan
+             x="0"
+             y="0"
+             id="tspan4219">2</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4223" />
+    <g
+       id="g4225"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4227"
+         clip-path="url(#clipPath4231)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,509.98,742.07)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4235"><tspan
+             x="0"
+             y="0"
+             id="tspan4233">G</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4237" />
+    <g
+       id="g4239"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g4241"
+         clip-path="url(#clipPath4245)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,550,779.31)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4249"><tspan
+             x="0"
+             y="0"
+             id="tspan4247">n</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,541,762.03)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4253"><tspan
+             x="0 8.6639996 18.66"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4251">HM1</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4255" />
+    <g
+       id="g4257"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4259"
+         clip-path="url(#clipPath4263)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,550.33,742.07)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4267"><tspan
+             x="0"
+             y="0"
+             id="tspan4265">0</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4269" />
+    <g
+       id="g4271"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g4273"
+         clip-path="url(#clipPath4277)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,586.67,779.31)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4281"><tspan
+             x="0"
+             y="0"
+             id="tspan4279">n</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,577.67,762.03)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4285"><tspan
+             x="0 8.6639996 18.66"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4283">HM2</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4287" />
+    <g
+       id="g4289"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4291"
+         clip-path="url(#clipPath4295)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,587,742.07)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4299"><tspan
+             x="0"
+             y="0"
+             id="tspan4297">0</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4301" />
+    <g
+       id="g4303"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g4305"
+         clip-path="url(#clipPath4309)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,620.68,779.31)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4313"><tspan
+             x="0"
+             y="0"
+             id="tspan4311">n</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,616.35,762.03)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4317"><tspan
+             x="0 8.6639996"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4315">HT</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4319" />
+    <g
+       id="g4321"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4323"
+         clip-path="url(#clipPath4327)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,614.34,742.07)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4331"><tspan
+             x="0 6.6719999 13.344"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4329">176</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4333" />
+    <g
+       id="g4335"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.64295)">
+      <g
+         id="g4337"
+         clip-path="url(#clipPath4341)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,650.69,779.31)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4345"><tspan
+             x="0"
+             y="0"
+             id="tspan4343">n</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,645.7,762.03)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4349"><tspan
+             x="0 8.6639996"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4347">NA</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4351" />
+    <g
+       id="g4353"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,125.4468)">
+      <g
+         id="g4355"
+         clip-path="url(#clipPath4359)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,651.02,742.07)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4363"><tspan
+             x="0"
+             y="0"
+             id="tspan4361">0</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4365" />
+    <g
+       id="g4367" />
+    <g
+       id="g4369" />
+    <g
+       id="g4371" />
+    <g
+       id="g4373" />
+    <g
+       id="g4375" />
+    <g
+       id="g4377" />
+    <g
+       id="g4379" />
+    <g
+       id="g4381" />
+    <g
+       id="g4383" />
+    <g
+       id="g4385">
+      <g
+         id="g4387"
+         clip-path="url(#clipPath4391)" />
+    </g>
+    <g
+       id="g4393" />
+    <g
+       id="g4395"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,15.114634)">
+      <g
+         id="g4397"
+         clip-path="url(#clipPath4401)">
+        <path
+           d="M 40.98,577.85 H 210.52"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4403" />
+        <path
+           d="M 40.98,550.07 H 210.52"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path4405" />
+        <path
+           d="M 40.98,460.39 H 210.52"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path4407" />
+        <path
+           d="m 51.02,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4409" />
+        <path
+           d="m 54.62,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4411" />
+        <path
+           d="m 59.2,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4413" />
+        <path
+           d="m 70.83,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4415" />
+        <path
+           d="m 74.61,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4417" />
+        <path
+           d="m 83.14,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4419" />
+        <path
+           d="m 85.04,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4421" />
+        <path
+           d="m 86.94,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4423" />
+        <path
+           d="m 88.53,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4425" />
+        <path
+           d="m 90.03,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4427" />
+        <path
+           d="m 103.87,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4429" />
+        <path
+           d="m 104.81,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4431" />
+        <path
+           d="m 105.44,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4433" />
+        <path
+           d="m 107.67,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4435" />
+        <path
+           d="m 114.99,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4437" />
+        <path
+           d="m 117.41,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4439" />
+        <path
+           d="m 120.85,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4441" />
+        <path
+           d="m 130.05,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4443" />
+        <path
+           d="m 136.26,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4445" />
+        <path
+           d="m 138.97,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4447" />
+        <path
+           d="m 144.99,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4449" />
+        <path
+           d="m 145.06,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4451" />
+        <path
+           d="m 145.23,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4453" />
+        <path
+           d="m 146.04,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4455" />
+        <path
+           d="m 146.29,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4457" />
+        <path
+           d="m 148.66,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4459" />
+        <path
+           d="m 151.68,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4461" />
+        <path
+           d="m 152.23,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4463" />
+        <path
+           d="m 152.39,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4465" />
+        <path
+           d="m 155.74,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4467" />
+        <path
+           d="m 160.13,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4469" />
+        <path
+           d="m 160.17,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4471" />
+        <path
+           d="m 162.4,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4473" />
+        <path
+           d="m 162.64,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4475" />
+        <path
+           d="m 163.28,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4477" />
+        <path
+           d="m 167.09,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4479" />
+        <path
+           d="m 174.56,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4481" />
+        <path
+           d="m 180.83,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4483" />
+        <path
+           d="m 182.5,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4485" />
+        <path
+           d="m 197.91,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4487" />
+        <path
+           d="m 202.67,327.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4489" />
+        <path
+           d="m 51.02,347.14 3.6,-4.62 4.58,-0.58 11.63,-1.53 3.78,0.36 8.53,1.42 h 1.9 1.9 l 1.59,12.53 1.5,0.37 13.84,-1.35 0.94,-7.73 0.63,-3.27 2.23,-2.75 7.32,7.05 2.42,7.91 3.44,158.97 9.2,-166.89 6.21,-2.5 2.71,-1.1 h 6.02 0.07 l 0.17,0.01 0.81,-1.52 0.25,-0.09 2.37,-0.25 3.02,0.07 0.55,0.03 h 0.16 3.35 4.39 0.04 2.23 l 0.24,-0.09 h 0.64 3.81 7.47 l 6.27,2.23 1.67,0.78 15.41,7.34 4.76,1.65"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path4491" />
+        <path
+           d="M 40.98,327.28 H 210.52 V 589.79 H 40.98 Z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4493" />
+      </g>
+    </g>
+    <g
+       id="g4495" />
+    <g
+       id="g4497">
+      <g
+         id="g4499"
+         clip-path="url(#clipPath4503)" />
+    </g>
+    <g
+       id="g4505" />
+    <g
+       id="g4507" />
+    <g
+       id="g4509" />
+    <g
+       id="g4511" />
+    <g
+       id="g4513" />
+    <g
+       id="g4515" />
+    <g
+       id="g4517" />
+    <g
+       id="g4519" />
+    <g
+       id="g4521" />
+    <g
+       id="g4523" />
+    <g
+       id="g4525" />
+    <g
+       id="g4527" />
+    <g
+       id="g4529" />
+    <g
+       id="g4531" />
+    <g
+       id="g4533"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,15.114634)">
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,23.54,335.97)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text4537"><tspan
+           x="0 5.0040002 7.506"
+           y="0"
+           sodipodi:role="line"
+           id="tspan4535">0.0</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,23.54,394.14)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text4541"><tspan
+           x="0 5.0040002 7.506"
+           y="0"
+           sodipodi:role="line"
+           id="tspan4539">2.5</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,23.54,452.3)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text4545"><tspan
+           x="0 5.0040002 7.506"
+           y="0"
+           sodipodi:role="line"
+           id="tspan4543">5.0</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,23.54,510.47)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text4549"><tspan
+           x="0 5.0040002 7.506"
+           y="0"
+           sodipodi:role="line"
+           id="tspan4547">7.5</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,18.54,568.63)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text4553"><tspan
+           x="0 5.0040002 10.008 12.51"
+           y="0"
+           sodipodi:role="line"
+           id="tspan4551">10.0</tspan></text>
+    </g>
+    <g
+       id="g4555" />
+    <g
+       id="g4557" />
+    <g
+       id="g4559" />
+    <g
+       id="g4561" />
+    <g
+       id="g4563" />
+    <g
+       id="g4565" />
+    <g
+       id="g4567" />
+    <g
+       id="g4569" />
+    <g
+       id="g4571" />
+    <g
+       id="g4573"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,18.114634)">
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,93.94,313.9)"
+         style="font-variant:normal;font-weight:normal;font-size:11px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text4577"><tspan
+           x="0 6.7870002 12.903 18.403 20.844999 23.903 26.344999 32.460999 38.577 41.634998 45.298 50.798 59.960999"
+           y="0"
+           sodipodi:role="line"
+           id="tspan4575">Position (cM)</tspan></text>
+    </g>
+    <g
+       id="g4579" />
+    <g
+       id="g4581"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,15.114634)">
+      <text
+         xml:space="preserve"
+         transform="matrix(0,1,1,0,13.38,432.25)"
+         style="font-variant:normal;font-weight:normal;font-size:11px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text4585"><tspan
+           x="0 6.1160002 14.674 22.615999 25.674 31.174 36.674 42.790001 46.452999"
+           y="0"
+           sodipodi:role="line"
+           id="tspan4583">LOD score</tspan></text>
+    </g>
+    <g
+       id="g4587" />
+    <g
+       id="g4589" />
+    <g
+       id="g4591" />
+    <g
+       id="g4593" />
+    <g
+       id="g4595" />
+    <g
+       id="g4597"
+       transform="matrix(0.95286614,0,0,0.97941206,26.401693,9.159875)">
+      <text
+         xml:space="preserve"
+         transform="scale(1,-1)"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:'Helvetica, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text4601"
+         x="96.381355"
+         y="-597.90002"><tspan
+           x="96.381355 104.02535 110.69737 117.36937 124.04139 127.37736"
+           y="-597.90002"
+           sodipodi:role="line"
+           id="tspan4599">Peak 3</tspan></text>
+    </g>
+    <g
+       id="g4603" />
+    <g
+       id="g4605" />
+    <g
+       id="g4607" />
+    <g
+       id="g4609" />
+    <g
+       id="g4611" />
+    <g
+       id="g4613" />
+    <g
+       id="g4615" />
+    <g
+       id="g4617" />
+    <g
+       id="g4619"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g4621"
+         clip-path="url(#clipPath4625)">
+        <path
+           d="m 274.76,460.34 h 96.48 v 37.23 h -96.48 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4627" />
+      </g>
+    </g>
+    <g
+       id="g4629" />
+    <g
+       id="g4631"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g4633"
+         clip-path="url(#clipPath4637)">
+        <path
+           d="m 371.24,460.34 h 29.89 v 37.23 h -29.89 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4639" />
+      </g>
+    </g>
+    <g
+       id="g4641" />
+    <g
+       id="g4643"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g4645"
+         clip-path="url(#clipPath4649)">
+        <path
+           d="m 401.13,460.34 h 48.03 v 37.23 h -48.03 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4651" />
+      </g>
+    </g>
+    <g
+       id="g4653" />
+    <g
+       id="g4655"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g4657"
+         clip-path="url(#clipPath4661)">
+        <path
+           d="m 449.17,460.34 h 41.36 v 37.23 h -41.36 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4663" />
+      </g>
+    </g>
+    <g
+       id="g4665" />
+    <g
+       id="g4667"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g4669"
+         clip-path="url(#clipPath4673)">
+        <path
+           d="m 490.53,460.34 h 41.36 v 37.23 h -41.36 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4675" />
+      </g>
+    </g>
+    <g
+       id="g4677" />
+    <g
+       id="g4679"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g4681"
+         clip-path="url(#clipPath4685)">
+        <path
+           d="m 531.89,460.34 h 36.67 v 37.23 h -36.67 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4687" />
+      </g>
+    </g>
+    <g
+       id="g4689" />
+    <g
+       id="g4691"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g4693"
+         clip-path="url(#clipPath4697)">
+        <path
+           d="m 568.56,460.34 h 36.67 v 37.23 h -36.67 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4699" />
+      </g>
+    </g>
+    <g
+       id="g4701" />
+    <g
+       id="g4703"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g4705"
+         clip-path="url(#clipPath4709)">
+        <path
+           d="m 605.23,460.34 h 27.33 v 37.23 h -27.33 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4711" />
+      </g>
+    </g>
+    <g
+       id="g4713" />
+    <g
+       id="g4715"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g4717"
+         clip-path="url(#clipPath4721)">
+        <path
+           d="m 632.57,460.34 h 28.67 v 37.23 h -28.67 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4723" />
+      </g>
+    </g>
+    <g
+       id="g4725" />
+    <g
+       id="g4727"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4729"
+         clip-path="url(#clipPath4733)">
+        <path
+           d="m 274.76,440.38 h 96.48 v 19.95 h -96.48 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4735" />
+      </g>
+    </g>
+    <g
+       id="g4737" />
+    <g
+       id="g4739"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4741"
+         clip-path="url(#clipPath4745)">
+        <path
+           d="m 274.76,420.43 h 96.48 v 19.95 h -96.48 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4747" />
+      </g>
+    </g>
+    <g
+       id="g4749" />
+    <g
+       id="g4751"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4753"
+         clip-path="url(#clipPath4757)">
+        <path
+           d="m 371.24,440.38 h 29.89 v 19.95 h -29.89 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4759" />
+      </g>
+    </g>
+    <g
+       id="g4761" />
+    <g
+       id="g4763"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4765"
+         clip-path="url(#clipPath4769)">
+        <path
+           d="m 371.24,420.43 h 29.89 v 19.95 h -29.89 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4771" />
+      </g>
+    </g>
+    <g
+       id="g4773" />
+    <g
+       id="g4775"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4777"
+         clip-path="url(#clipPath4781)">
+        <path
+           d="m 401.13,440.38 h 48.03 v 19.95 h -48.03 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4783" />
+      </g>
+    </g>
+    <g
+       id="g4785" />
+    <g
+       id="g4787"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4789"
+         clip-path="url(#clipPath4793)">
+        <path
+           d="m 401.13,420.43 h 48.03 v 19.95 h -48.03 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4795" />
+      </g>
+    </g>
+    <g
+       id="g4797" />
+    <g
+       id="g4799"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4801"
+         clip-path="url(#clipPath4805)">
+        <path
+           d="m 449.17,440.38 h 41.36 v 19.95 h -41.36 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4807" />
+      </g>
+    </g>
+    <g
+       id="g4809" />
+    <g
+       id="g4811"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4813"
+         clip-path="url(#clipPath4817)">
+        <path
+           d="m 449.17,420.43 h 41.36 v 19.95 h -41.36 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4819" />
+      </g>
+    </g>
+    <g
+       id="g4821" />
+    <g
+       id="g4823"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4825"
+         clip-path="url(#clipPath4829)">
+        <path
+           d="m 490.53,440.38 h 41.36 v 19.95 h -41.36 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4831" />
+      </g>
+    </g>
+    <g
+       id="g4833" />
+    <g
+       id="g4835"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4837"
+         clip-path="url(#clipPath4841)">
+        <path
+           d="m 490.53,420.43 h 41.36 v 19.95 h -41.36 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4843" />
+      </g>
+    </g>
+    <g
+       id="g4845" />
+    <g
+       id="g4847"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4849"
+         clip-path="url(#clipPath4853)">
+        <path
+           d="m 531.89,440.38 h 36.67 v 19.95 h -36.67 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4855" />
+      </g>
+    </g>
+    <g
+       id="g4857" />
+    <g
+       id="g4859"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4861"
+         clip-path="url(#clipPath4865)">
+        <path
+           d="m 531.89,420.43 h 36.67 v 19.95 h -36.67 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4867" />
+      </g>
+    </g>
+    <g
+       id="g4869" />
+    <g
+       id="g4871"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4873"
+         clip-path="url(#clipPath4877)">
+        <path
+           d="m 568.56,440.38 h 36.67 v 19.95 h -36.67 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4879" />
+      </g>
+    </g>
+    <g
+       id="g4881" />
+    <g
+       id="g4883"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4885"
+         clip-path="url(#clipPath4889)">
+        <path
+           d="m 568.56,420.43 h 36.67 v 19.95 h -36.67 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4891" />
+      </g>
+    </g>
+    <g
+       id="g4893" />
+    <g
+       id="g4895"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4897"
+         clip-path="url(#clipPath4901)">
+        <path
+           d="m 605.23,440.38 h 27.33 v 19.95 h -27.33 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4903" />
+      </g>
+    </g>
+    <g
+       id="g4905" />
+    <g
+       id="g4907"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4909"
+         clip-path="url(#clipPath4913)">
+        <path
+           d="m 605.23,420.43 h 27.33 v 19.95 h -27.33 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4915" />
+      </g>
+    </g>
+    <g
+       id="g4917" />
+    <g
+       id="g4919"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4921"
+         clip-path="url(#clipPath4925)">
+        <path
+           d="m 632.57,440.38 h 28.67 v 19.95 h -28.67 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4927" />
+      </g>
+    </g>
+    <g
+       id="g4929" />
+    <g
+       id="g4931"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4933"
+         clip-path="url(#clipPath4937)">
+        <path
+           d="m 632.57,420.43 h 28.67 v 19.95 h -28.67 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path4939" />
+      </g>
+    </g>
+    <g
+       id="g4941" />
+    <g
+       id="g4943"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g4945"
+         clip-path="url(#clipPath4949)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,302.99,474.65)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4953"><tspan
+             x="0 10.668 17.34 22.007999 28.68 35.352001"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4951">marker</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4955" />
+    <g
+       id="g4957"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4959"
+         clip-path="url(#clipPath4963)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,280.98,446.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4967"><tspan
+             x="0 8.0039997 16.667999 24 30.672001 37.344002 44.015999 50.688 57.360001 64.031998 70.704002 77.375999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4965">SNT111392585</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4969" />
+    <g
+       id="g4971"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g4973"
+         clip-path="url(#clipPath4977)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,376.91,474.65)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4981"><tspan
+             x="0 6.552 13.884"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4979">chr</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4983" />
+    <g
+       id="g4985"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g4987"
+         clip-path="url(#clipPath4991)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,280.43,426.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text4995"><tspan
+             x="0 9.9960003 15.756 23.76 31.764 38.436001 45.108002 51.779999 58.452 65.124001 71.795998 78.468002"
+             y="0"
+             sodipodi:role="line"
+             id="tspan4993">mJAX00308021</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g4997" />
+    <g
+       id="g4999"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g5001"
+         clip-path="url(#clipPath5005)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,414.48,474.65)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5009"><tspan
+             x="0 7.3319998 14.664"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5007">pos</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5011" />
+    <g
+       id="g5013"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5015"
+         clip-path="url(#clipPath5019)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,379.52,446.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5023"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5021">11</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5025" />
+    <g
+       id="g5027"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g5029"
+         clip-path="url(#clipPath5033)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,454.84,483.29)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5037"><tspan
+             x="0 6.6719999 10.008 13.344 20.016001 23.351999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5035">allele</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,466.51,466.01)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5041"><tspan
+             x="0"
+             y="0"
+             id="tspan5039">1</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5043" />
+    <g
+       id="g5045"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5047"
+         clip-path="url(#clipPath5051)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,379.52,426.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5055"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5053">11</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5057" />
+    <g
+       id="g5059"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g5061"
+         clip-path="url(#clipPath5065)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,496.2,483.29)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5069"><tspan
+             x="0 6.6719999 10.008 13.344 20.016001 23.351999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5067">allele</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,507.88,466.01)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5073"><tspan
+             x="0"
+             y="0"
+             id="tspan5071">2</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5075" />
+    <g
+       id="g5077"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5079"
+         clip-path="url(#clipPath5083)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,406.8,446.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5087"><tspan
+             x="0 6.6719999 13.344 16.68 23.351999 30.024"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5085">19.917</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5089" />
+    <g
+       id="g5091"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g5093"
+         clip-path="url(#clipPath5097)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,546.56,483.29)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5101"><tspan
+             x="0"
+             y="0"
+             id="tspan5099">n</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,537.56,466.01)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5105"><tspan
+             x="0 8.6639996 18.66"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5103">HM1</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5107" />
+    <g
+       id="g5109"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5111"
+         clip-path="url(#clipPath5115)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,406.8,426.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5119"><tspan
+             x="0 6.6719999 13.344 16.68 23.351999 30.024"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5117">21.558</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5121" />
+    <g
+       id="g5123"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g5125"
+         clip-path="url(#clipPath5129)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,583.23,483.29)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5133"><tspan
+             x="0"
+             y="0"
+             id="tspan5131">n</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,574.23,466.01)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5137"><tspan
+             x="0 8.6639996 18.66"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5135">HM2</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5139" />
+    <g
+       id="g5141"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5143"
+         clip-path="url(#clipPath5147)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,466.18,446.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5151"><tspan
+             x="0"
+             y="0"
+             id="tspan5149">T</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5153" />
+    <g
+       id="g5155"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g5157"
+         clip-path="url(#clipPath5161)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,615.24,483.29)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5165"><tspan
+             x="0"
+             y="0"
+             id="tspan5163">n</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,610.9,466.01)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5169"><tspan
+             x="0 8.6639996"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5167">HT</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5171" />
+    <g
+       id="g5173"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5175"
+         clip-path="url(#clipPath5179)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,466.18,426.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5183"><tspan
+             x="0"
+             y="0"
+             id="tspan5181">T</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5185" />
+    <g
+       id="g5187"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,105.43627)">
+      <g
+         id="g5189"
+         clip-path="url(#clipPath5193)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,643.24,483.29)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5197"><tspan
+             x="0"
+             y="0"
+             id="tspan5195">n</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,638.24,466.01)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5201"><tspan
+             x="0 8.6639996"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5199">NA</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5203" />
+    <g
+       id="g5205"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5207"
+         clip-path="url(#clipPath5211)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,506.88,446.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5215"><tspan
+             x="0"
+             y="0"
+             id="tspan5213">C</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5217" />
+    <g
+       id="g5219"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5221"
+         clip-path="url(#clipPath5225)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,506.54,426.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5229"><tspan
+             x="0"
+             y="0"
+             id="tspan5227">G</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5231" />
+    <g
+       id="g5233"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5235"
+         clip-path="url(#clipPath5239)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,548.556,446.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5243"><tspan
+             x="0"
+             y="0"
+             id="tspan5241">0</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5245" />
+    <g
+       id="g5247"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5249"
+         clip-path="url(#clipPath5253)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,543.56,426.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5257"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5255">14</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5259" />
+    <g
+       id="g5261"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5263"
+         clip-path="url(#clipPath5267)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,580.23,446.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5271"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5269">90</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5273" />
+    <g
+       id="g5275"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5277"
+         clip-path="url(#clipPath5281)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,580.23,426.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5285"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5283">24</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5287" />
+    <g
+       id="g5289"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5291"
+         clip-path="url(#clipPath5295)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,617.236,446.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5299"><tspan
+             x="0"
+             y="0"
+             id="tspan5297">1</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5301" />
+    <g
+       id="g5303"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5305"
+         clip-path="url(#clipPath5309)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,612.23,426.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5313"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5311">52</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5315" />
+    <g
+       id="g5317"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5319"
+         clip-path="url(#clipPath5323)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,643.57,446.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5327"><tspan
+             x="0"
+             y="0"
+             id="tspan5325">3</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5329" />
+    <g
+       id="g5331"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,104.89735)">
+      <g
+         id="g5333"
+         clip-path="url(#clipPath5337)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,643.57,426.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5341"><tspan
+             x="0"
+             y="0"
+             id="tspan5339">4</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5343" />
+    <g
+       id="g5345" />
+    <g
+       id="g5347" />
+    <g
+       id="g5349" />
+    <g
+       id="g5351" />
+    <g
+       id="g5353" />
+    <g
+       id="g5355" />
+    <g
+       id="g5357" />
+    <g
+       id="g5359" />
+    <g
+       id="g5361" />
+    <g
+       id="g5363">
+      <g
+         id="g5365"
+         clip-path="url(#clipPath5369)" />
+    </g>
+    <g
+       id="g5371" />
+    <g
+       id="g5373"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,-2.8853661)">
+      <g
+         id="g5375"
+         clip-path="url(#clipPath5379)">
+        <path
+           d="M 33.48,271.85 H 210.52"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5381" />
+        <path
+           d="M 33.48,261.14 H 210.52"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:2.13, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path5383" />
+        <path
+           d="M 33.48,210.49 H 210.52"
+           style="fill:none;stroke:#000000;stroke-width:1.07;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4.27, 2.13;stroke-dashoffset:0;stroke-opacity:1"
+           id="path5385" />
+        <path
+           d="m 43.4,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5387" />
+        <path
+           d="m 46.3,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5389" />
+        <path
+           d="m 46.3,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5391" />
+        <path
+           d="m 47.78,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5393" />
+        <path
+           d="m 47.91,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5395" />
+        <path
+           d="m 47.99,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5397" />
+        <path
+           d="m 48.08,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5399" />
+        <path
+           d="m 48.41,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5401" />
+        <path
+           d="m 48.99,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5403" />
+        <path
+           d="m 49.17,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5405" />
+        <path
+           d="m 49.32,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5407" />
+        <path
+           d="m 49.43,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5409" />
+        <path
+           d="m 49.6,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5411" />
+        <path
+           d="m 50.85,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5413" />
+        <path
+           d="m 51.1,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5415" />
+        <path
+           d="m 52.7,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5417" />
+        <path
+           d="m 53.18,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5419" />
+        <path
+           d="m 65.42,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5421" />
+        <path
+           d="m 79,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5423" />
+        <path
+           d="m 81.51,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5425" />
+        <path
+           d="m 97.61,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5427" />
+        <path
+           d="m 113.7,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5429" />
+        <path
+           d="m 125.19,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5431" />
+        <path
+           d="m 129.8,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5433" />
+        <path
+           d="m 130.24,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5435" />
+        <path
+           d="m 145.89,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5437" />
+        <path
+           d="m 161.99,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5439" />
+        <path
+           d="m 178.08,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5441" />
+        <path
+           d="m 189.65,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5443" />
+        <path
+           d="m 191.05,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5445" />
+        <path
+           d="m 192.27,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5447" />
+        <path
+           d="m 192.28,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5449" />
+        <path
+           d="m 194.18,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5451" />
+        <path
+           d="m 196.75,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5453" />
+        <path
+           d="m 198.17,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5455" />
+        <path
+           d="m 198.5,21.28 v 7.87"
+           style="fill:none;stroke:#000000;stroke-width:0.21;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5457" />
+        <path
+           d="m 43.4,46.43 2.9,0.79 v 0 h 1.48 0.13 0.08 0.09 0.33 0.58 0.18 0.15 0.11 0.17 1.25 0.25 1.6 0.48 L 65.42,47.06 79,42.72 l 2.51,0.04 16.1,7.09 16.09,182.6 11.49,-49 4.61,-134.85 0.44,-0.46 15.65,-2.4 16.1,-3.82 16.09,-4.11 11.57,-2.79 1.4,1.04 h 1.22 0.01 l 1.9,-2.85 2.57,4.05 h 1.42 0.33"
+           style="fill:none;stroke:#000000;stroke-width:1.28;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:0.6"
+           id="path5459" />
+        <path
+           d="M 33.48,21.28 H 210.52 V 283.79 H 33.48 Z"
+           style="fill:none;stroke:#d9d9d9;stroke-width:0.85;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5461" />
+      </g>
+    </g>
+    <g
+       id="g5463" />
+    <g
+       id="g5465">
+      <g
+         id="g5467"
+         clip-path="url(#clipPath5471)" />
+    </g>
+    <g
+       id="g5473" />
+    <g
+       id="g5475" />
+    <g
+       id="g5477" />
+    <g
+       id="g5479" />
+    <g
+       id="g5481" />
+    <g
+       id="g5483" />
+    <g
+       id="g5485" />
+    <g
+       id="g5487" />
+    <g
+       id="g5489" />
+    <g
+       id="g5491" />
+    <g
+       id="g5493" />
+    <g
+       id="g5495" />
+    <g
+       id="g5497" />
+    <g
+       id="g5499" />
+    <g
+       id="g5501"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,-2.8853661)">
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,23.54,29.93)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text5505"><tspan
+           x="0"
+           y="0"
+           id="tspan5503">0</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,23.54,110.02)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text5509"><tspan
+           x="0"
+           y="0"
+           id="tspan5507">5</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,18.54,190.12)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text5513"><tspan
+           x="0 5.0040002"
+           y="0"
+           sodipodi:role="line"
+           id="tspan5511">10</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,18.54,270.21)"
+         style="font-variant:normal;font-weight:normal;font-size:9px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text5517"><tspan
+           x="0 5.0040002"
+           y="0"
+           sodipodi:role="line"
+           id="tspan5515">15</tspan></text>
+    </g>
+    <g
+       id="g5519" />
+    <g
+       id="g5521" />
+    <g
+       id="g5523" />
+    <g
+       id="g5525" />
+    <g
+       id="g5527" />
+    <g
+       id="g5529" />
+    <g
+       id="g5531" />
+    <g
+       id="g5533" />
+    <g
+       id="g5535" />
+    <g
+       id="g5537"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,0.11463394)">
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,90.19,7.9)"
+         style="font-variant:normal;font-weight:normal;font-size:11px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text5541"><tspan
+           x="0 6.7870002 12.903 18.403 20.844999 23.903 26.344999 32.460999 38.577 41.634998 45.298 50.798 59.960999"
+           y="0"
+           sodipodi:role="line"
+           id="tspan5539">Position (cM)</tspan></text>
+    </g>
+    <g
+       id="g5543" />
+    <g
+       id="g5545"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,-2.8853661)">
+      <text
+         xml:space="preserve"
+         transform="matrix(0,1,1,0,13.38,126.25)"
+         style="font-variant:normal;font-weight:normal;font-size:11px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text5549"><tspan
+           x="0 6.1160002 14.674 22.615999 25.674 31.174 36.674 42.790001 46.452999"
+           y="0"
+           sodipodi:role="line"
+           id="tspan5547">LOD score</tspan></text>
+    </g>
+    <g
+       id="g5551" />
+    <g
+       id="g5553" />
+    <g
+       id="g5555" />
+    <g
+       id="g5557" />
+    <g
+       id="g5559" />
+    <g
+       id="g5561"
+       transform="matrix(0.95286614,0,0,0.97941206,104.77622,-7.3853661)">
+      <text
+         xml:space="preserve"
+         transform="matrix(1,0,0,-1,14.13,291.9)"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:'Helvetica, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text5565"><tspan
+           x="0 7.6440001 14.316 20.988001 27.66 30.996"
+           y="0"
+           sodipodi:role="line"
+           id="tspan5563">Peak 5</tspan></text>
+    </g>
+    <g
+       id="g5567" />
+    <g
+       id="g5569" />
+    <g
+       id="g5571" />
+    <g
+       id="g5573" />
+    <g
+       id="g5575" />
+    <g
+       id="g5577" />
+    <g
+       id="g5579" />
+    <g
+       id="g5581" />
+    <g
+       id="g5583"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5585"
+         clip-path="url(#clipPath5589)">
+        <path
+           d="m 274.97,154.34 h 96.06 v 37.23 h -96.06 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5591" />
+      </g>
+    </g>
+    <g
+       id="g5593" />
+    <g
+       id="g5595"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5597"
+         clip-path="url(#clipPath5601)">
+        <path
+           d="m 371.03,154.34 h 29.89 v 37.23 h -29.89 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5603" />
+      </g>
+    </g>
+    <g
+       id="g5605" />
+    <g
+       id="g5607"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5609"
+         clip-path="url(#clipPath5613)">
+        <path
+           d="m 400.92,154.34 h 48.03 v 37.23 h -48.03 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5615" />
+      </g>
+    </g>
+    <g
+       id="g5617" />
+    <g
+       id="g5619"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5621"
+         clip-path="url(#clipPath5625)">
+        <path
+           d="m 448.96,154.34 h 41.36 v 37.23 h -41.36 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5627" />
+      </g>
+    </g>
+    <g
+       id="g5629" />
+    <g
+       id="g5631"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5633"
+         clip-path="url(#clipPath5637)">
+        <path
+           d="m 490.32,154.34 h 41.36 v 37.23 h -41.36 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5639" />
+      </g>
+    </g>
+    <g
+       id="g5641" />
+    <g
+       id="g5643"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5645"
+         clip-path="url(#clipPath5649)">
+        <path
+           d="m 531.68,154.34 h 36.67 v 37.23 h -36.67 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5651" />
+      </g>
+    </g>
+    <g
+       id="g5653" />
+    <g
+       id="g5655"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5657"
+         clip-path="url(#clipPath5661)">
+        <path
+           d="m 568.35,154.34 h 36.67 v 37.23 h -36.67 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5663" />
+      </g>
+    </g>
+    <g
+       id="g5665" />
+    <g
+       id="g5667"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5669"
+         clip-path="url(#clipPath5673)">
+        <path
+           d="m 605.02,154.34 h 27.33 v 37.23 h -27.33 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5675" />
+      </g>
+    </g>
+    <g
+       id="g5677" />
+    <g
+       id="g5679"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5681"
+         clip-path="url(#clipPath5685)">
+        <path
+           d="m 632.36,154.34 h 28.67 v 37.23 h -28.67 z"
+           style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5687" />
+      </g>
+    </g>
+    <g
+       id="g5689" />
+    <g
+       id="g5691"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5693"
+         clip-path="url(#clipPath5697)">
+        <path
+           d="m 274.97,134.38 h 96.06 v 19.95 h -96.06 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5699" />
+      </g>
+    </g>
+    <g
+       id="g5701" />
+    <g
+       id="g5703"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5705"
+         clip-path="url(#clipPath5709)">
+        <path
+           d="m 274.97,114.43 h 96.06 v 19.95 h -96.06 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5711" />
+      </g>
+    </g>
+    <g
+       id="g5713" />
+    <g
+       id="g5715"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5717"
+         clip-path="url(#clipPath5721)">
+        <path
+           d="m 371.03,134.38 h 29.89 v 19.95 h -29.89 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5723" />
+      </g>
+    </g>
+    <g
+       id="g5725" />
+    <g
+       id="g5727"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5729"
+         clip-path="url(#clipPath5733)">
+        <path
+           d="m 371.03,114.43 h 29.89 v 19.95 h -29.89 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5735" />
+      </g>
+    </g>
+    <g
+       id="g5737" />
+    <g
+       id="g5739"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5741"
+         clip-path="url(#clipPath5745)">
+        <path
+           d="m 400.92,134.38 h 48.03 v 19.95 h -48.03 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5747" />
+      </g>
+    </g>
+    <g
+       id="g5749" />
+    <g
+       id="g5751"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5753"
+         clip-path="url(#clipPath5757)">
+        <path
+           d="m 400.92,114.43 h 48.03 v 19.95 h -48.03 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5759" />
+      </g>
+    </g>
+    <g
+       id="g5761" />
+    <g
+       id="g5763"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5765"
+         clip-path="url(#clipPath5769)">
+        <path
+           d="m 448.96,134.38 h 41.36 v 19.95 h -41.36 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5771" />
+      </g>
+    </g>
+    <g
+       id="g5773" />
+    <g
+       id="g5775"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5777"
+         clip-path="url(#clipPath5781)">
+        <path
+           d="m 448.96,114.43 h 41.36 v 19.95 h -41.36 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5783" />
+      </g>
+    </g>
+    <g
+       id="g5785" />
+    <g
+       id="g5787"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5789"
+         clip-path="url(#clipPath5793)">
+        <path
+           d="m 490.32,134.38 h 41.36 v 19.95 h -41.36 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5795" />
+      </g>
+    </g>
+    <g
+       id="g5797" />
+    <g
+       id="g5799"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5801"
+         clip-path="url(#clipPath5805)">
+        <path
+           d="m 490.32,114.43 h 41.36 v 19.95 h -41.36 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5807" />
+      </g>
+    </g>
+    <g
+       id="g5809" />
+    <g
+       id="g5811"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5813"
+         clip-path="url(#clipPath5817)">
+        <path
+           d="m 531.68,134.38 h 36.67 v 19.95 h -36.67 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5819" />
+      </g>
+    </g>
+    <g
+       id="g5821" />
+    <g
+       id="g5823"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5825"
+         clip-path="url(#clipPath5829)">
+        <path
+           d="m 531.68,114.43 h 36.67 v 19.95 h -36.67 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5831" />
+      </g>
+    </g>
+    <g
+       id="g5833" />
+    <g
+       id="g5835"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5837"
+         clip-path="url(#clipPath5841)">
+        <path
+           d="m 568.35,134.38 h 36.67 v 19.95 h -36.67 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5843" />
+      </g>
+    </g>
+    <g
+       id="g5845" />
+    <g
+       id="g5847"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5849"
+         clip-path="url(#clipPath5853)">
+        <path
+           d="m 568.35,114.43 h 36.67 v 19.95 h -36.67 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5855" />
+      </g>
+    </g>
+    <g
+       id="g5857" />
+    <g
+       id="g5859"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5861"
+         clip-path="url(#clipPath5865)">
+        <path
+           d="m 605.02,134.38 h 27.33 v 19.95 h -27.33 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5867" />
+      </g>
+    </g>
+    <g
+       id="g5869" />
+    <g
+       id="g5871"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5873"
+         clip-path="url(#clipPath5877)">
+        <path
+           d="m 605.02,114.43 h 27.33 v 19.95 h -27.33 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5879" />
+      </g>
+    </g>
+    <g
+       id="g5881" />
+    <g
+       id="g5883"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5885"
+         clip-path="url(#clipPath5889)">
+        <path
+           d="m 632.36,134.38 h 28.67 v 19.95 h -28.67 z"
+           style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5891" />
+      </g>
+    </g>
+    <g
+       id="g5893" />
+    <g
+       id="g5895"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5897"
+         clip-path="url(#clipPath5901)">
+        <path
+           d="m 632.36,114.43 h 28.67 v 19.95 h -28.67 z"
+           style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1.12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
+           id="path5903" />
+      </g>
+    </g>
+    <g
+       id="g5905" />
+    <g
+       id="g5907"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5909"
+         clip-path="url(#clipPath5913)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,302.99,168.65)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5917"><tspan
+             x="0 10.668 17.34 22.007999 28.68 35.352001"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5915">marker</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5919" />
+    <g
+       id="g5921"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5923"
+         clip-path="url(#clipPath5927)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,280.64,140.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5931"><tspan
+             x="0 8.0039997 16.007999 24.672001 31.344 38.015999 44.688 51.360001 58.032001 64.704002 71.375999 78.047997"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5929">SAH102097335</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5933" />
+    <g
+       id="g5935"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5937"
+         clip-path="url(#clipPath5941)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,376.7,168.65)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5945"><tspan
+             x="0 6.552 13.884"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5943">chr</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5947" />
+    <g
+       id="g5949"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5951"
+         clip-path="url(#clipPath5955)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,281.31,120.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5959"><tspan
+             x="0 8.0039997 14.676 23.34 30.011999 36.683998 43.355999 50.028 56.700001 63.372002 70.043999 76.716003"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5957">S2C102505843</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5961" />
+    <g
+       id="g5963"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5965"
+         clip-path="url(#clipPath5969)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,414.27,168.65)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5973"><tspan
+             x="0 7.3319998 14.664"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5971">pos</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5975" />
+    <g
+       id="g5977"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5979"
+         clip-path="url(#clipPath5983)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,379.31,140.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text5987"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5985">10</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g5989" />
+    <g
+       id="g5991"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g5993"
+         clip-path="url(#clipPath5997)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,454.63,177.29)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6001"><tspan
+             x="0 6.6719999 10.008 13.344 20.016001 23.351999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan5999">allele</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,466.3,160.01)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6005"><tspan
+             x="0"
+             y="0"
+             id="tspan6003">1</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6007" />
+    <g
+       id="g6009"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6011"
+         clip-path="url(#clipPath6015)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,379.31,120.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6019"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan6017">10</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6021" />
+    <g
+       id="g6023"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6025"
+         clip-path="url(#clipPath6029)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,495.99,177.29)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6033"><tspan
+             x="0 6.6719999 10.008 13.344 20.016001 23.351999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan6031">allele</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,507.67,160.01)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6037"><tspan
+             x="0"
+             y="0"
+             id="tspan6035">2</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6039" />
+    <g
+       id="g6041"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6043"
+         clip-path="url(#clipPath6047)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,406.59,140.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6051"><tspan
+             x="0 6.6719999 13.344 16.68 23.351999 30.024"
+             y="0"
+             sodipodi:role="line"
+             id="tspan6049">26.657</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6053" />
+    <g
+       id="g6055"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6057"
+         clip-path="url(#clipPath6061)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,546.35,177.29)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6065"><tspan
+             x="0"
+             y="0"
+             id="tspan6063">n</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,537.35,160.01)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6069"><tspan
+             x="0 8.6639996 18.66"
+             y="0"
+             sodipodi:role="line"
+             id="tspan6067">HM1</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6071" />
+    <g
+       id="g6073"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6075"
+         clip-path="url(#clipPath6079)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,406.59,120.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6083"><tspan
+             x="0 6.6719999 13.344 16.68 23.351999 30.024"
+             y="0"
+             sodipodi:role="line"
+             id="tspan6081">32.396</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6085" />
+    <g
+       id="g6087"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6089"
+         clip-path="url(#clipPath6093)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,583.02,177.29)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6097"><tspan
+             x="0"
+             y="0"
+             id="tspan6095">n</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,574.02,160.01)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6101"><tspan
+             x="0 8.6639996 18.66"
+             y="0"
+             sodipodi:role="line"
+             id="tspan6099">HM2</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6103" />
+    <g
+       id="g6105"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6107"
+         clip-path="url(#clipPath6111)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,465.64,140.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6115"><tspan
+             x="0"
+             y="0"
+             id="tspan6113">A</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6117" />
+    <g
+       id="g6119"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6121"
+         clip-path="url(#clipPath6125)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,615.03,177.29)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6129"><tspan
+             x="0"
+             y="0"
+             id="tspan6127">n</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,610.69,160.01)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6133"><tspan
+             x="0 8.6639996"
+             y="0"
+             sodipodi:role="line"
+             id="tspan6131">HT</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6135" />
+    <g
+       id="g6137"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6139"
+         clip-path="url(#clipPath6143)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,465.64,120.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6147"><tspan
+             x="0"
+             y="0"
+             id="tspan6145">A</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6149" />
+    <g
+       id="g6151"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6153"
+         clip-path="url(#clipPath6157)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,643.03,177.29)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6161"><tspan
+             x="0"
+             y="0"
+             id="tspan6159">n</tspan></text>
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,638.03,160.01)"
+           style="font-variant:normal;font-weight:bold;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6165"><tspan
+             x="0 8.6639996"
+             y="0"
+             sodipodi:role="line"
+             id="tspan6163">NA</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6167" />
+    <g
+       id="g6169"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6171"
+         clip-path="url(#clipPath6175)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,506.33,140.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6179"><tspan
+             x="0"
+             y="0"
+             id="tspan6177">G</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6181" />
+    <g
+       id="g6183"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6185"
+         clip-path="url(#clipPath6189)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,506.33,120.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6193"><tspan
+             x="0"
+             y="0"
+             id="tspan6191">G</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6195" />
+    <g
+       id="g6197"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6199"
+         clip-path="url(#clipPath6203)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,543.35,140.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6207"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan6205">17</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6209" />
+    <g
+       id="g6211"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6213"
+         clip-path="url(#clipPath6217)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,543.35,120.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6221"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan6219">89</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6223" />
+    <g
+       id="g6225"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6227"
+         clip-path="url(#clipPath6231)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,580.02,140.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6235"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan6233">32</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6237" />
+    <g
+       id="g6239"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6241"
+         clip-path="url(#clipPath6245)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,585.026,120.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6249"><tspan
+             x="0"
+             y="0"
+             id="tspan6247">0</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6251" />
+    <g
+       id="g6253"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6255"
+         clip-path="url(#clipPath6259)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,612.02,140.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6263"><tspan
+             x="0 6.6719999"
+             y="0"
+             sodipodi:role="line"
+             id="tspan6261">42</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6265" />
+    <g
+       id="g6267"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6269"
+         clip-path="url(#clipPath6273)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,617.026,120.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6277"><tspan
+             x="0"
+             y="0"
+             id="tspan6275">1</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6279" />
+    <g
+       id="g6281"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6283"
+         clip-path="url(#clipPath6287)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,643.36,140.05)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6291"><tspan
+             x="0"
+             y="0"
+             id="tspan6289">1</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6293" />
+    <g
+       id="g6295"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,87.43627)">
+      <g
+         id="g6297"
+         clip-path="url(#clipPath6301)">
+        <text
+           xml:space="preserve"
+           transform="matrix(1,0,0,-1,643.36,120.1)"
+           style="font-variant:normal;font-weight:normal;font-size:12px;font-family:Helvetica;-inkscape-font-specification:Helvetica;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="text6305"><tspan
+             x="0"
+             y="0"
+             id="tspan6303">2</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6307" />
+    <g
+       id="g6309" />
+    <g
+       id="g6311" />
+    <g
+       id="g6313"
+       transform="matrix(0.95286614,0,0,0.97941206,16.746463,12.114634)">
+      <text
+         xml:space="preserve"
+         transform="scale(1,-1)"
+         style="font-variant:normal;font-weight:bold;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text6317"
+         x="1.0574058"
+         y="-1218.9302"><tspan
+           x="1.0574058"
+           y="-1218.9302"
+           id="tspan6315">A</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="scale(1,-1)"
+         style="font-variant:normal;font-weight:bold;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text6321"
+         x="365.78"
+         y="-1218.9302"><tspan
+           x="365.78"
+           y="-1218.9302"
+           id="tspan6319">B</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="scale(1,-1)"
+         style="font-variant:normal;font-weight:bold;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text6325"
+         x="1.0574058"
+         y="-905.21368"><tspan
+           x="1.0574058"
+           y="-905.21368"
+           id="tspan6323">C</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="scale(1,-1)"
+         style="font-variant:normal;font-weight:bold;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text6329"
+         x="244.28"
+         y="-905.4057"><tspan
+           x="244.28"
+           y="-905.4057"
+           id="tspan6327">D</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="scale(1,-1)"
+         style="font-variant:normal;font-weight:bold;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text6333"
+         x="0.61740607"
+         y="-578.12628"><tspan
+           x="0.61740607"
+           y="-578.12628"
+           id="tspan6331">E</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="scale(1,-1)"
+         style="font-variant:normal;font-weight:bold;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text6337"
+         x="244.32776"
+         y="-578.12628"><tspan
+           x="244.32776"
+           y="-578.12628"
+           id="tspan6335">F</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="scale(1,-1)"
+         style="font-variant:normal;font-weight:bold;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text6341"
+         x="1.2091559"
+         y="-271.93427"><tspan
+           x="1.2091559"
+           y="-271.93427"
+           id="tspan6339">G</tspan></text>
+      <text
+         xml:space="preserve"
+         transform="scale(1,-1)"
+         style="font-variant:normal;font-weight:bold;font-size:16px;font-family:Helvetica;-inkscape-font-specification:Helvetica-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="text6345"
+         x="244.42375"
+         y="-272.12625"><tspan
+           x="244.42375"
+           y="-272.12625"
+           id="tspan6343">H</tspan></text>
+    </g>
+    <g
+       id="g6347" />
+    <g
+       id="g6349" />
+    <g
+       id="g6351" />
+    <g
+       id="g6353" />
+    <g
+       id="g6355" />
+    <g
+       id="g6357" />
+    <g
+       id="g6359" />
+    <g
+       id="g6361" />
+    <g
+       id="g6363" />
+    <g
+       id="g6365" />
+    <g
+       id="g6367" />
+    <g
+       id="g6369" />
+    <g
+       id="g6371" />
+    <g
+       id="g6373" />
+    <g
+       id="g6375" />
+    <g
+       id="g6377" />
+    <g
+       id="g6379" />
+    <g
+       id="g6381" />
+    <g
+       id="g6383" />
+    <g
+       id="g6385" />
+    <g
+       id="g6387" />
+    <g
+       id="g6389" />
+    <g
+       id="g6391" />
+    <g
+       id="g6393" />
+    <g
+       id="g6395" />
+    <g
+       id="g6397" />
+    <g
+       id="g6399" />
+    <g
+       id="g6401" />
+    <g
+       id="g6403" />
+    <g
+       id="g6405" />
+    <g
+       id="g6407" />
+    <g
+       id="g6409" />
+    <g
+       id="g6411" />
+    <g
+       id="g6413" />
+    <g
+       id="g6415" />
+    <g
+       id="g6417" />
+    <g
+       id="g6419" />
+    <g
+       id="g6421" />
+    <g
+       id="g6423" />
+    <g
+       id="g6425" />
+    <g
+       id="g6427" />
+    <g
+       id="g6429" />
+    <g
+       id="g6431" />
+    <g
+       id="g6433" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11.5926px;font-family:Helvetica;-inkscape-font-specification:'Helvetica, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#000000;stroke-width:0.735505"
+       x="47.252171"
+       y="-604.6192"
+       id="text6879"
+       transform="scale(0.98812383,-1.0120189)"><tspan
+         sodipodi:role="line"
+         id="tspan6877"
+         style="stroke-width:0.735505"
+         x="47.252171"
+         y="-604.6192">Case 2: one pseudomarker (peaks 3 and 4)</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11.5926px;font-family:Helvetica;-inkscape-font-specification:'Helvetica, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#000000;stroke-width:0.735505"
+       x="47.252411"
+       y="-292.81949"
+       id="text6879-4"
+       transform="scale(0.98812383,-1.0120189)"><tspan
+         sodipodi:role="line"
+         style="stroke-width:0.735505"
+         x="47.252411"
+         y="-292.81949"
+         id="tspan6916">Case 3: one marker and one pseudomarker (peak 5)</tspan></text>
+    <rect
+       style="fill:#ff0000;stroke-width:0.731478"
+       id="rect10188"
+       width="0.93699521"
+       height="7.4201827"
+       x="125.51591"
+       y="-653.63171"
+       transform="scale(1,-1)" />
+    <rect
+       style="fill:#ff0000;stroke-width:0.731478"
+       id="rect10188-0"
+       width="0.93699521"
+       height="7.4201827"
+       x="128.18433"
+       y="-343.4881"
+       transform="scale(1,-1)" />
+    <rect
+       style="fill:#ff0000;stroke-width:0.731478"
+       id="rect10188-0-9"
+       width="0.93699521"
+       height="7.4201827"
+       x="140.21916"
+       y="-343.48108"
+       transform="scale(1,-1)" />
+    <rect
+       style="fill:#ff0000;stroke-width:0.731478"
+       id="rect10188-0-8"
+       width="0.93699521"
+       height="7.4201827"
+       x="135.67877"
+       y="-25.799519"
+       transform="scale(1,-1)" />
+    <rect
+       style="fill:#ff0000;stroke-width:0.731478"
+       id="rect10188-0-8-0"
+       width="0.93699521"
+       height="7.4201827"
+       x="91.636803"
+       y="-25.799383"
+       transform="scale(1,-1)" />
+  </g>
+</svg>